diff --git a/Mitochondria/OSD-514/Proteomics/01.GENERAL_PATHWAY/GEN_PROTEOMICS_SCRIPT.r b/Mitochondria/OSD-514/Proteomics/01.GENERAL_PATHWAY/GEN_PROTEOMICS_SCRIPT.r deleted file mode 100644 index 20b0bfc..0000000 --- a/Mitochondria/OSD-514/Proteomics/01.GENERAL_PATHWAY/GEN_PROTEOMICS_SCRIPT.r +++ /dev/null @@ -1,533 +0,0 @@ -# LIMMA DIFFERENTIAL ANALYSIS - -# PACKAGES -if (!requireNamespace("BiocManager", quietly = TRUE)) { - install.packages("BiocManager") -} - -BiocManager::install("limma", ask = FALSE, update = FALSE) - -install.packages(c("pheatmap", "matrixStats", "ggrepel"), dependencies = TRUE) - -suppressPackageStartupMessages({ -library(dplyr) -library(tibble) -library(readr) -library(stringr) -library(ggplot2) -library(ggrepel) -library(limma) -library(pheatmap) -library(matrixStats) -library(data.table) -library(fgsea) -library(AnnotationDbi) -library(org.Dm.eg.db) -library(GO.db) -library(enrichR) -library(tidyr) -library(igraph) -library(ggraph) -}) - -select <- dplyr::select -filter <- dplyr::filter - -# WORKING DIRECTORY -setwd("/Volumes/Marians_SSD/ADBR_Mito/OSD-514/Proteomics") - -# Output dirs -OUT_DIR <- "/Volumes/Marians_SSD/ADBR_Mito/OSD-514/Proteomics/RESULTS_OSD514" -dir.create(OUT_DIR, recursive = TRUE, showWarnings = FALSE) -dir.create(file.path(OUT_DIR, "figs"), recursive = TRUE, showWarnings = FALSE) -dir.create(file.path(OUT_DIR, "tables"), recursive = TRUE, showWarnings = FALSE) - -FIG_DIR <- file.path(OUT_DIR, "figs") -TAB_DIR <- file.path(OUT_DIR, "tables") - -# LOAD EXPRESSION MATRIX (FROM QC SCRIPT) -expr_mat <- read.csv("TMT_expression_matrix.csv", row.names = 1) -expr_mat <- as.matrix(expr_mat) -mode(expr_mat) <- "numeric" - -# LOAD METADATA -meta <- read_tsv( - "a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt", - show_col_types = FALSE -) %>% - transmute( - sample = str_replace_all(`Sample Name`, " ", "_"), - tmt_run = factor(`Parameter Value[Run Number]`), - condition = case_when( - str_detect(`Sample Name`, "^Earth") ~ "Earth", - str_detect(`Sample Name`, "^SF1g") ~ "SF1g", - str_detect(`Sample Name`, "^SFug") ~ "SFug", - TRUE ~ NA_character_ - ), - sex = case_when( - str_detect(`Sample Name`, "_M") ~ "Male", - str_detect(`Sample Name`, "_F") ~ "Female", - TRUE ~ NA_character_ - ) - ) %>% - filter(!is.na(condition)) - -meta$condition <- factor(meta$condition, levels = c("Earth", "SF1g", "SFug")) - -# ALIGN METADATA WITH EXPRESSION MATRIX -common_samples <- intersect(colnames(expr_mat), meta$sample) - -expr_limma <- expr_mat[, common_samples] -meta_limma <- meta %>% - filter(sample %in% common_samples) %>% - arrange(match(sample, common_samples)) - -stopifnot(all(colnames(expr_limma) == meta_limma$sample)) - -# DESIGN MATRIX -design <- model.matrix(~0 + condition, meta_limma) -colnames(design) <- levels(meta_limma$condition) - -contrast_matrix <- makeContrasts( - SF1g_vs_Earth = SF1g - Earth, - SFug_vs_Earth = SFug - Earth, - SF1g_vs_SFug = SF1g - SFug, - levels = design -) - -# LIMMA fitting -fit <- lmFit(expr_limma, design) -fit2 <- contrasts.fit(fit, contrast_matrix) -fit2 <- eBayes(fit2) - -# Volcano Plots -save_volcano <- function(fit_obj, contrast_name, - pval_cut = 0.05, - logfc_cut = 1, - top_n = 5) { - - tt <- topTable(fit_obj, coef = contrast_name, - number = Inf, adjust.method = "BH") %>% - rownames_to_column("protein_id") %>% - mutate( - sig = case_when( - adj.P.Val < pval_cut & logFC >= logfc_cut ~ "Up", - adj.P.Val < pval_cut & logFC <= -logfc_cut ~ "Down", - TRUE ~ "NotSig" - ) - ) - - top_labels <- bind_rows( - tt %>% filter(sig == "Up") %>% arrange(desc(logFC)) %>% slice_head(n = top_n), - tt %>% filter(sig == "Down") %>% arrange(logFC) %>% slice_head(n = top_n) - ) - - p <- ggplot(tt, aes(x = logFC, y = -log10(P.Value), color = sig)) + - geom_point(alpha = 0.7, size = 2) + - geom_vline(xintercept = c(-logfc_cut, logfc_cut), - linetype = "dashed") + - geom_hline(yintercept = -log10(pval_cut), - linetype = "dashed") + - geom_text_repel( - data = top_labels, - aes(label = protein_id), - max.overlaps = 50, - show.legend = FALSE - ) + - scale_color_manual(values = c( - Down = "blue", - Up = "red", - NotSig = "grey70" - )) + - theme_minimal(base_size = 14) + - labs( - title = paste("Volcano Plot:", contrast_name), - x = "Log2 Fold Change", - y = expression(-log[10](italic(p))) - ) - - ggsave(file.path(FIG_DIR, paste0("Volcano_", contrast_name, ".png")), - p, width = 8, height = 6, dpi = 300) -} - -# Save volcano plots -save_volcano(fit2, "SF1g_vs_Earth") -save_volcano(fit2, "SFug_vs_Earth") -save_volcano(fit2, "SF1g_vs_SFug") - -results_SF1g_vs_Earth <- topTable(fit2, coef="SF1g_vs_Earth", number=Inf, adjust.method="BH") %>% - rownames_to_column("protein_id") - -results_SFug_vs_Earth <- topTable(fit2, coef="SFug_vs_Earth", number=Inf, adjust.method="BH") %>% - rownames_to_column("protein_id") - -results_SF1g_vs_SFug <- topTable(fit2, coef="SF1g_vs_SFug", number=Inf, adjust.method="BH") %>% - rownames_to_column("protein_id") - -top_proteins <- results_SF1g_vs_Earth %>% - arrange(adj.P.Val) %>% - slice_head(n = 50) %>% - pull(protein_id) - -heat_mat <- expr_limma[top_proteins, ] - -ann <- meta_limma %>% - dplyr::select(sample, condition, sex, tmt_run) %>% # <-- add dplyr:: - column_to_rownames("sample") - -# Order columns -ord <- order(ann$condition, ann$sex, ann$tmt_run) -heat_mat <- heat_mat[, ord] -ann <- ann[ord, , drop=FALSE] - -heat_z <- t(scale(t(heat_mat))) -heat_z[is.na(heat_z)] <- 0 - -png(file.path(FIG_DIR, "Heatmap_Top50.png"), 2200, 1500, res=200) -pheatmap( - heat_z, - scale = "none", - cluster_rows = TRUE, - cluster_cols = FALSE, - annotation_col = ann, - show_rownames = TRUE, - fontsize_row = 7, - fontsize_col = 9, - border_color = NA, - main = "Top 50 Differential Proteins across Earth, SF1g, SFug" -) -dev.off() - -# Save LIMMA Results Tables - -write.csv(results_SF1g_vs_Earth, - file.path(TAB_DIR, "Limma_SF1g_vs_Earth_results.csv"), - row.names = FALSE) - -write.csv(results_SFug_vs_Earth, - file.path(TAB_DIR, "Limma_SFug_vs_Earth_results.csv"), - row.names = FALSE) - -write.csv(results_SF1g_vs_SFug, - file.path(TAB_DIR, "Limma_SF1g_vs_SFug_results.csv"), - row.names = FALSE) - -# Save Only Sig Results Tables - -sig_SF1g_vs_Earth <- results_SF1g_vs_Earth %>% - filter(adj.P.Val < 0.05, abs(logFC) >= 1) - -write.csv(sig_SF1g_vs_Earth, - file.path(TAB_DIR, "Limma_SF1g_vs_Earth_significant.csv"), - row.names = FALSE) - -sig_SFug_vs_Earth <- results_SFug_vs_Earth %>% - filter(adj.P.Val < 0.05, abs(logFC) >= 1) - -write.csv(sig_SFug_vs_Earth, - file.path(TAB_DIR, "Limma_SFug_vs_Earth_significant.csv"), - row.names = FALSE) - -sig_SF1g_vs_SFug <- results_SF1g_vs_SFug %>% - filter(adj.P.Val < 0.05, abs(logFC) >= 1) - -write.csv(sig_SF1g_vs_SFug, - file.path(TAB_DIR, "Limma_SF1g_vs_SFug_significant.csv"), - row.names = FALSE) - -# Quick Summary (In-Console) - -cat("SF1g vs Earth:", nrow(sig_SF1g_vs_Earth), "significant proteins\n") -cat("SFug vs Earth:", nrow(sig_SFug_vs_Earth), "significant proteins\n") -cat("SF1g vs SFug:", nrow(sig_SF1g_vs_SFug), "significant proteins\n") - -## GSEA - -# PATHS - -BASE_DIR <- "/Volumes/Marians_SSD/ADBR_Mito/OSD-514/Proteomics" - -GSEA_DIR <- file.path(BASE_DIR, "GSEA") -TBL_DIR <- file.path(BASE_DIR, "RESULTS_OSD514", "tables") - -dir.create(file.path(GSEA_DIR, "tables"), recursive=TRUE, showWarnings=FALSE) -dir.create(file.path(GSEA_DIR, "figs"), recursive=TRUE, showWarnings=FALSE) - -# PARAMETERS - -PADJ_CUT <- 0.05 -LFC_CUT <- 1 -CONTRASTS <- c("SF1g_vs_Earth","SFug_vs_Earth","SF1g_vs_SFug") - -# HELPERS - -`%||%` <- function(a,b) if (!is.null(a) && length(a)) a else b -wrap_terms <- function(x,w=40) stringr::str_wrap(x,w) - -# LOAD DE - -load_de <- function(tag) { - f <- file.path(TBL_DIR, paste0("Limma_", tag, "_results.csv")) - if (!file.exists(f)) stop("Missing DE file: ", f) - - df <- read.csv(f, stringsAsFactors=FALSE, check.names=FALSE) - - rownames(df) <- df$protein_id - df -} - -# RANKS - -build_ranks <- function(res) { - - ids <- rownames(res) - - pv <- res$P.Value %||% res$adj.P.Val - lfc <- res$logFC %||% 0 - - pv[!is.finite(pv)] <- 1 - lfc[!is.finite(lfc)] <- 0 - - score <- sign(lfc) * (-log10(pmax(pv, 1e-300))) - - keep <- is.finite(score) & nzchar(ids) - ranks <- tapply(score[keep], ids[keep], mean) - - sort(ranks, decreasing = TRUE) -} - -# GO BP SETS (RESTORED) - -build_go_bp_sets <- function(ranks) { - - genes <- names(ranks) - - m <- AnnotationDbi::select( - org.Dm.eg.db, - keys=genes, - keytype="UNIPROT", - columns=c("GOALL","ONTOLOGYALL") - ) - - m <- m[m$ONTOLOGYALL=="BP", ] - - if (nrow(m)==0) return(NULL) - - paths <- split(m$UNIPROT, m$GOALL) - paths <- lapply(paths, function(x) unique(na.omit(x))) - - lens <- lengths(paths) - - paths[lens >= 10 & lens <= 500] -} - -# GO TERM MAP - -get_go_terms <- function(ids) { - - if (!length(ids)) return(setNames(character(0),character(0))) - - tbl <- AnnotationDbi::select( - GO.db, - keys=ids, - keytype="GOID", - columns="TERM" - ) - - tbl <- unique(tbl) - setNames(tbl$TERM, tbl$GOID) -} - -# SIGNIFICANT PROTEINS - -get_sig <- function(res) { - res <- res[ - !is.na(res$adj.P.Val) & - res$adj.P.Val < PADJ_CUT & - !is.na(res$logFC) & - abs(res$logFC) >= LFC_CUT, - ] - unique(rownames(res)) -} - -# SYMBOL CONVERSION - -uniprot_to_symbol <- function(ids) { - tbl <- AnnotationDbi::select( - org.Dm.eg.db, - keys = ids, - keytype = "UNIPROT", - columns = "SYMBOL" - ) - - tbl <- tbl[!duplicated(tbl$UNIPROT), ] - map <- setNames(tbl$SYMBOL, tbl$UNIPROT) - - out <- map[ids] - out[is.na(out)] <- ids[is.na(out)] - - out -} - -# FGSEA PLOT - -save_fgsea <- function(dt, tag) { - - if (is.null(dt) || nrow(dt)==0) return() - - dt <- dt[order(padj)][1:min(15,nrow(dt))] - - term_map <- get_go_terms(dt$pathway) - - dt$term <- term_map[dt$pathway] - dt$term[is.na(dt$term)] <- dt$pathway - - dt$label <- wrap_terms(dt$term) - - p <- ggplot(dt, aes(reorder(label, NES), NES, fill=-log10(padj))) + - geom_col() + - coord_flip() + - theme_minimal() + - labs(title=paste("GSEA:",tag)) - - ggsave(file.path(GSEA_DIR,"figs",paste0("fgsea_",tag,".png")), - p,width=10,height=6) -} - -save_enrichment_plots <- function(pathways, ranks, fg_dt, tag) { - - if (is.null(fg_dt) || nrow(fg_dt) == 0) return() - - # top pathways (by padj) - top <- fg_dt[order(padj)][1:min(5, nrow(fg_dt))] - - term_map <- get_go_terms(top$pathway) - - for (i in seq_len(nrow(top))) { - - pw <- top$pathway[i] - term_name <- term_map[pw] - if (is.na(term_name)) term_name <- pw - - p <- plotEnrichment(pathways[[pw]], ranks) + - labs(title = paste0(tag, " | ", term_name)) - - ggsave( - file.path(GSEA_DIR, "figs", - paste0("enrichment_", tag, "_", i, ".png")), - p, - width = 8, - height = 6 - ) - } -} - -# ENRICHR - -run_enrichr <- function(tag, genes) { - - if (!length(genes)) return(NULL) - - setEnrichrSite("FlyEnrichr") - - dbs <- grep("^GO_", listEnrichrDbs()$libraryName, value=TRUE) - - enrich <- enrichr(genes, dbs) - - for (d in names(enrich)) { - fwrite(as.data.table(enrich[[d]]), - file.path(GSEA_DIR,"tables",paste0(tag,"_",d,".csv"))) - } - - enrich -} - -# NETWORK - -run_network <- function(enrich_bp, tag) { - - if (is.null(enrich_bp) || nrow(enrich_bp)==0) return() - - top <- enrich_bp %>% - arrange(Adjusted.P.value) %>% - head(12) - - edge_list <- lapply(seq_len(nrow(top)), function(i) { - - genes <- unlist(strsplit(top$Genes[i], ";")) - - genes <- genes[genes != "" & !is.na(genes)] - - if (!length(genes)) return(NULL) - - data.frame( - from = rep(top$Term[i], length(genes)), - to = genes, - stringsAsFactors=FALSE - ) - }) - - edge_list <- edge_list[!sapply(edge_list,is.null)] - if (!length(edge_list)) return() - - edges <- do.call(rbind, edge_list) - - g <- graph_from_data_frame(edges) - - p <- ggraph(g, layout="fr") + - geom_edge_link(alpha=0.3) + - geom_node_point(size=3) + - geom_node_text(aes(label=name), repel=TRUE, size=3) + - theme_void() - - ggsave(file.path(GSEA_DIR,"figs",paste0("network_",tag,".png")), - p,width=10,height=8) -} - -# MAIN - -run_analysis <- function(tag) { - message("\nRUNNING: ", tag) - - res <- load_de(tag) - ranks_uniprot <- build_ranks(res) # keep original UniProt IDs - - # Build GO sets using clean UniProt ranks - pathways <- build_go_bp_sets(ranks_uniprot) - - if (is.null(pathways) || length(pathways) < 10) { - message("Skipping ", tag, ": too few pathways") - return(NULL) - } - - # convert to symbols for fgsea - ranks_named <- ranks_uniprot - names(ranks_named) <- uniprot_to_symbol(names(ranks_uniprot)) - - fg <- fgseaMultilevel(pathways, ranks_uniprot) # use UniProt ranks here - fg_dt <- as.data.table(fg) - - if (nrow(fg_dt) > 0) { - fwrite(fg_dt, file.path(GSEA_DIR, "tables", paste0("fgsea_", tag, ".csv"))) - save_fgsea(fg_dt, tag) - save_enrichment_plots(pathways, ranks_uniprot, fg_dt, tag) - } - - sig <- get_sig(res) - sig_symbols <- uniprot_to_symbol(sig) - - enrich <- run_enrichr(tag, sig_symbols) - - if (!is.null(enrich[["GO_Biological_Process_2018"]])) { - run_network(enrich[["GO_Biological_Process_2018"]], tag) - } -} - -# RUN ALL - -for (t in CONTRASTS) { - tryCatch(run_analysis(t), - error=function(e) message("ERROR: ", e$message)) -} - -message("\nDONE → ", GSEA_DIR) diff --git a/Mitochondria/OSD-514/Proteomics/CombineTMT.r b/Mitochondria/OSD-514/Proteomics/CombineTMT.r deleted file mode 100644 index 6571fe8..0000000 --- a/Mitochondria/OSD-514/Proteomics/CombineTMT.r +++ /dev/null @@ -1,114 +0,0 @@ -# Load libraries -library(dplyr) -library(tidyr) -library(stringr) -library(readr) -library(purrr) -library(tibble) - -# Paths -BASE_DIR <- "/Volumes/Marians_SSD/ADBR_Mito/OSD-514/Proteomics" -TMT_DIR <- file.path(BASE_DIR, "TMT_all") -meta_file <- file.path(BASE_DIR, "a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt") - -# Load and clean metadata -meta <- read_tsv(meta_file, show_col_types = FALSE) %>% - transmute( - raw_name = `Sample Name`, - sample = str_replace_all(raw_name, " ", "_"), - batch = `Parameter Value[Run Number]`, - label = Label, - condition = case_when( - str_detect(sample, "^Earth") ~ "Earth", - str_detect(sample, "^SF1g") ~ "SF1g", - str_detect(sample, "^SFug") ~ "SFug", - TRUE ~ NA_character_ - ), - sex = case_when( - str_detect(sample, "_M") ~ "Male", - str_detect(sample, "_F") ~ "Female", - TRUE ~ NA_character_ - ) - ) %>% - filter(!is.na(condition), !is.na(sex)) - -cat("Metadata samples:", nrow(meta), "\n") - -# List TMT files -files <- list.files(TMT_DIR, pattern="\\.txt$", full.names = TRUE) - -cat("Total files:", length(files), "\n") - -# Function to read ONE sample file -read_tmt <- function(f){ - - df <- read.delim(f, check.names = FALSE) - - # extract CLEAN sample name (REMOVE batch suffix HERE) - sample_name <- basename(f) %>% - str_remove("\\.txt$") %>% - str_remove("_TMT[a-c]$") - - # remove pool files - if(str_detect(sample_name, "^pool")) return(NULL) - - # find abundance column (should be exactly one) - ab_col <- grep("^Abundance:", colnames(df), value = TRUE) - - if(length(ab_col) != 1){ - stop(paste("Unexpected abundance columns in:", sample_name)) - } - - tibble( - protein = df$Accession, - sample = sample_name, - value = as.numeric(df[[ab_col]]) - ) %>% - group_by(protein, sample) %>% - summarise(value = median(value, na.rm = TRUE), .groups = "drop") -} - -# Read all files -expr_long <- map_dfr(files, read_tmt) - -cat("Samples detected:", length(unique(expr_long$sample)), "\n") - -# Convert to matrix -expr_mat <- expr_long %>% - pivot_wider(names_from = sample, values_from = value) %>% - column_to_rownames("protein") %>% - as.matrix() - -# replace NA and log transform -expr_mat[is.na(expr_mat)] <- 0 -expr_mat <- log2(expr_mat + 1) - -cat("Expression matrix:", nrow(expr_mat), "proteins x", ncol(expr_mat), "samples\n") - -# Align metadata with matrix -common <- intersect(meta$sample, colnames(expr_mat)) - -meta <- meta %>% filter(sample %in% common) -expr_mat <- expr_mat[, meta$sample, drop = FALSE] - -cat("Samples after alignment:", length(common), "\n") - -# Final sanity checks -cat("\nMissing in matrix:\n") -print(setdiff(meta$sample, colnames(expr_mat))) - -cat("\nMissing in metadata:\n") -print(setdiff(colnames(expr_mat), meta$sample)) - -# Create output directory -out_dir <- file.path(BASE_DIR) - -# Convert matrix to dataframe for writing -expr_df <- as.data.frame(expr_mat) %>% - rownames_to_column("protein") - -# Save file -out_file <- file.path(out_dir, "TMT_expression_matrix.csv") -write.csv(expr_df, out_file, row.names = FALSE) - -cat("Saved combined matrix to:", out_file, "\n") \ No newline at end of file diff --git a/Mitochondria/OSD-514/Proteomics/GEN_PROTEOMICS_SCRIPT_ms3fix.r b/Mitochondria/OSD-514/Proteomics/GEN_PROTEOMICS_SCRIPT_ms3fix.r new file mode 100644 index 0000000..d11b614 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/GEN_PROTEOMICS_SCRIPT_ms3fix.r @@ -0,0 +1,898 @@ +# LIMMA + GSEA + ENRICHR DIFFERENTIAL ANALYSIS (MS3FIX) + +# PACKAGES +cran_pkgs <- c("dplyr", "tibble", "readr", "stringr", "ggplot2", "ggrepel", "pheatmap", + "matrixStats", "data.table", "tidyr", "purrr", "igraph", "ggraph", "enrichR") +bioc_pkgs <- c("limma", "fgsea", "AnnotationDbi", "org.Dm.eg.db", "GO.db") + +for (p in cran_pkgs) { + if (!requireNamespace(p, quietly = TRUE)) install.packages(p, dependencies = TRUE) +} + +if (!requireNamespace("BiocManager", quietly = TRUE)) { + install.packages("BiocManager") +} + +for (p in bioc_pkgs) { + if (!requireNamespace(p, quietly = TRUE)) { + BiocManager::install(p, ask = FALSE, update = FALSE) + } +} + +suppressPackageStartupMessages({ + library(dplyr) + library(tibble) + library(readr) + library(stringr) + library(ggplot2) + library(ggrepel) + library(limma) + library(pheatmap) + library(matrixStats) + library(data.table) + library(fgsea) + library(AnnotationDbi) + library(org.Dm.eg.db) + library(GO.db) + library(enrichR) + library(tidyr) + library(igraph) + library(ggraph) + library(purrr) +}) + +select <- dplyr::select +filter <- dplyr::filter + +# PATHS +BASE_DIR <- "/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics" +TMT_DIR <- file.path(BASE_DIR, "TMT_all_from_psm_pdlike_ms3fix") +META_FILE <- file.path(BASE_DIR, "a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt") + +# Output dirs +OUT_DIR <- file.path(BASE_DIR, "RESULTS_OSD514_ms3fix") +dir.create(OUT_DIR, recursive = TRUE, showWarnings = FALSE) +dir.create(file.path(OUT_DIR, "figs"), recursive = TRUE, showWarnings = FALSE) +dir.create(file.path(OUT_DIR, "tables"), recursive = TRUE, showWarnings = FALSE) + +FIG_DIR <- file.path(OUT_DIR, "figs") +TAB_DIR <- file.path(OUT_DIR, "tables") + +# LOAD METADATA +meta <- read_tsv(META_FILE, show_col_types = FALSE) %>% + transmute( + sample = str_replace_all(`Sample Name`, " ", "_"), + tmt_run = factor(`Parameter Value[Run Number]`), + condition = case_when( + str_detect(`Sample Name`, "^Earth") ~ "Earth", + str_detect(`Sample Name`, "^SF1g") ~ "SF1g", + str_detect(`Sample Name`, "^SFug") ~ "SFug", + TRUE ~ NA_character_ + ), + sex = case_when( + str_detect(`Sample Name`, "_M") ~ "Male", + str_detect(`Sample Name`, "_F") ~ "Female", + TRUE ~ NA_character_ + ) + ) %>% + filter(!is.na(condition), !is.na(sex)) %>% + distinct(sample, .keep_all = TRUE) + +meta$condition <- factor(meta$condition, levels = c("Earth", "SF1g", "SFug")) + +# BUILD EXPRESSION MATRIX FROM MS3FIX TXT FILES +files <- list.files(TMT_DIR, pattern = "\\.txt$", full.names = TRUE) + +read_tmt <- function(f) { + sample_name <- basename(f) %>% + str_remove("\\.txt$") %>% + str_remove("_TMT[a-c]$") + + run_id <- basename(f) %>% str_extract("TMT[a-c](?=\\.txt$)") + + if (str_detect(sample_name, "^pool")) return(NULL) + + df <- read.delim(f, check.names = FALSE) + + ab_col <- grep("^Abundance:", colnames(df), value = TRUE) + if (length(ab_col) != 1) { + stop("Unexpected abundance columns in: ", basename(f)) + } + + df <- df %>% + mutate(`# Unique Peptides` = suppressWarnings(as.numeric(`# Unique Peptides`))) %>% + filter(`# Unique Peptides` >= 2) + + tibble( + protein = df$Accession, + sample = sample_name, + run = run_id, + value = suppressWarnings(as.numeric(df[[ab_col]])) + ) %>% + filter(!is.na(value), is.finite(value), value > 0) %>% + group_by(protein, sample, run) %>% + summarise(value = median(value, na.rm = TRUE), .groups = "drop") +} + +expr_long <- map_dfr(files, read_tmt) + +cat("Metadata samples:", nrow(meta), "\n") +cat("Total txt files:", length(files), "\n") +cat("Rows after read/filter:", nrow(expr_long), "\n") + +# Keep proteins found across all TMT runs for robust run normalization +proteins_all_runs <- expr_long %>% + group_by(protein) %>% + summarise(n_runs = n_distinct(run), .groups = "drop") %>% + filter(n_runs == 3) %>% + pull(protein) + +expr_long <- expr_long %>% + filter(protein %in% proteins_all_runs) + +# Within-run scaling +sample_medians <- expr_long %>% + group_by(run, sample) %>% + summarise(sample_median = median(value, na.rm = TRUE), .groups = "drop") + +run_reference <- sample_medians %>% + group_by(run) %>% + summarise(run_median = median(sample_median, na.rm = TRUE), .groups = "drop") + +scaling_tbl <- sample_medians %>% + inner_join(run_reference, by = "run") %>% + mutate(scale_factor = ifelse(sample_median > 0, run_median / sample_median, 1)) %>% + select(run, sample, scale_factor) + +expr_long <- expr_long %>% + inner_join(scaling_tbl, by = c("run", "sample")) %>% + mutate(value = value * scale_factor) %>% + select(protein, sample, value) + +expr_mat <- expr_long %>% + pivot_wider(names_from = sample, values_from = value) %>% + column_to_rownames("protein") %>% + as.matrix() + +common_samples <- intersect(colnames(expr_mat), meta$sample) + +expr_limma <- expr_mat[, common_samples, drop = FALSE] +meta_limma <- meta %>% + filter(sample %in% common_samples) %>% + arrange(match(sample, common_samples)) + +stopifnot(all(colnames(expr_limma) == meta_limma$sample)) + +expr_limma <- expr_limma[complete.cases(expr_limma), , drop = FALSE] +expr_limma <- log2(expr_limma + 1) +mode(expr_limma) <- "numeric" + +write.csv( + data.frame(protein_id = rownames(expr_limma), expr_limma, check.names = FALSE), + file.path(TAB_DIR, "TMT_expression_matrix_ms3fix.csv"), + row.names = FALSE +) + +write.csv( + meta_limma, + file.path(TAB_DIR, "sample_metadata_ms3fix.csv"), + row.names = FALSE +) + +cat("Expression matrix:", nrow(expr_limma), "proteins x", ncol(expr_limma), "samples\n") + +meta_limma$tmt_run <- factor(meta_limma$tmt_run) +meta_limma$sex <- factor(meta_limma$sex, levels = c("Female", "Male")) +meta_limma$group <- factor( + paste(meta_limma$condition, meta_limma$sex, sep = "_"), + levels = c("Earth_Female", "Earth_Male", "SF1g_Female", "SF1g_Male", "SFug_Female", "SFug_Male") +) + +# PCA (raw and batch-corrected) +plot_pca <- function(mat, meta_df, title, subtitle, out_file) { + pca <- prcomp(t(mat), center = TRUE, scale. = TRUE) + percent_var <- (pca$sdev^2) / sum(pca$sdev^2) + + pca_df <- as.data.frame(pca$x[, 1:2]) %>% + rownames_to_column("sample") %>% + left_join(meta_df %>% select(sample, condition, sex, tmt_run), by = "sample") + + p <- ggplot(pca_df, aes(x = PC1, y = PC2, color = condition, shape = tmt_run)) + + geom_point(size = 3, alpha = 0.9) + + theme_bw(base_size = 12) + + labs( + title = title, + subtitle = subtitle, + x = paste0("PC1 (", round(percent_var[1] * 100, 1), "%)"), + y = paste0("PC2 (", round(percent_var[2] * 100, 1), "%)") + ) + + ggsave(out_file, p, width = 8, height = 6, dpi = 300) +} + +plot_pca( + mat = expr_limma, + meta_df = meta_limma, + title = "TMT proteomics PCA (ms3fix, raw)", + subtitle = "Color = condition, shape = TMT run batch", + out_file = file.path(FIG_DIR, "PCA_TMT_condition_batch_ms3fix_raw.png") +) + +design_keep <- model.matrix(~ condition + sex, data = meta_limma) +expr_batch_corrected <- removeBatchEffect( + expr_limma, + batch = meta_limma$tmt_run, + design = design_keep +) + +write.csv( + data.frame(protein_id = rownames(expr_batch_corrected), expr_batch_corrected, check.names = FALSE), + file.path(TAB_DIR, "TMT_expression_matrix_ms3fix_batch_corrected.csv"), + row.names = FALSE +) + +plot_pca( + mat = expr_batch_corrected, + meta_df = meta_limma, + title = "TMT proteomics PCA (ms3fix, batch-corrected)", + subtitle = "Batch removed with limma::removeBatchEffect (batch = tmt_run)", + out_file = file.path(FIG_DIR, "PCA_TMT_condition_batch_ms3fix_batch_corrected.png") +) + +# LIMMA model specs +CONTRAST_NAMES <- c("SF1g_vs_Earth", "SFug_vs_Earth", "SF1g_vs_SFug") + +LIMMA_PADJ_CUT <- 0.05 +LIMMA_LOGFC_CUT <- 0.5 +LIMMA_FC_CUT <- 2^LIMMA_LOGFC_CUT + +MODEL_SPECS <- tibble::tribble( + ~model_id, ~formula_str, + "condition_only", "~0 + condition", + "condition_batch", "~0 + condition + tmt_run", + "condition_batch_sex", "~0 + condition + tmt_run + sex" +) + +MODEL_OUT_DIR <- file.path(TAB_DIR, "model_outputs") +MODEL_FIG_DIR <- file.path(FIG_DIR, "model_outputs") +dir.create(MODEL_OUT_DIR, recursive = TRUE, showWarnings = FALSE) +dir.create(MODEL_FIG_DIR, recursive = TRUE, showWarnings = FALSE) + +build_design <- function(formula_str, meta_df, condition_levels = levels(meta_df$condition)) { + design <- model.matrix(as.formula(formula_str), data = meta_df) + cond_cols <- grep("^condition", colnames(design)) + + if (length(cond_cols) != length(condition_levels)) { + stop( + "Could not find expected number of condition columns (", + length(condition_levels), ") in design for formula: ", + formula_str + ) + } + + colnames(design)[cond_cols] <- condition_levels + design +} + +pairwise_conditions_from_contrast <- function(contrast_name) { + parts <- strsplit(contrast_name, "_vs_", fixed = TRUE)[[1]] + if (length(parts) != 2) stop("Unexpected contrast format: ", contrast_name) + parts +} + +save_volcano <- function(fit_obj, contrast_name, + fig_dir, + title_prefix = "", + pval_cut = LIMMA_PADJ_CUT, + logfc_cut = LIMMA_LOGFC_CUT, + top_n = 5) { + + tt <- topTable(fit_obj, coef = contrast_name, + number = Inf, adjust.method = "BH") %>% + rownames_to_column("protein_id") %>% + filter(!is.na(P.Value), !is.na(adj.P.Val), !is.na(logFC)) %>% + mutate( + sig = case_when( + adj.P.Val < pval_cut & logFC >= logfc_cut ~ "Up", + adj.P.Val < pval_cut & logFC <= -logfc_cut ~ "Down", + TRUE ~ "NotSig" + ), + sig = factor(sig, levels = c("Down", "NotSig", "Up")) + ) + + top_labels <- bind_rows( + tt %>% filter(sig == "Up") %>% arrange(desc(logFC)) %>% slice_head(n = top_n), + tt %>% filter(sig == "Down") %>% arrange(logFC) %>% slice_head(n = top_n) + ) + + p <- ggplot(tt, aes(x = logFC, y = -log10(adj.P.Val), color = sig)) + + geom_point(alpha = 0.7, size = 2) + + geom_vline(xintercept = c(-logfc_cut, logfc_cut), linetype = "dashed") + + geom_hline(yintercept = -log10(pval_cut), linetype = "dashed") + + geom_text_repel( + data = top_labels, + aes(label = protein_id), + max.overlaps = 50, + show.legend = FALSE + ) + + scale_color_manual(values = c(Down = "blue", NotSig = "grey70", Up = "red"), drop = FALSE) + + theme_minimal(base_size = 14) + + labs( + title = paste0("Volcano Plot: ", title_prefix, contrast_name), + x = "Log2 Fold Change", + y = expression(-log[10](adjusted~italic(p))) + ) + + ggsave(file.path(fig_dir, paste0("Volcano_", contrast_name, ".png")), + p, width = 8, height = 6, dpi = 300) +} + +run_limma_model <- function(model_id, formula_str) { + cat("\nRunning limma model:", model_id, "with", formula_str, "\n") + + model_tab_dir <- file.path(MODEL_OUT_DIR, model_id) + model_fig_dir <- file.path(MODEL_FIG_DIR, model_id) + dir.create(model_tab_dir, recursive = TRUE, showWarnings = FALSE) + dir.create(model_fig_dir, recursive = TRUE, showWarnings = FALSE) + + results <- list() + sig <- list() + + for (cn in CONTRAST_NAMES) { + cond_pair <- pairwise_conditions_from_contrast(cn) + + meta_sub <- meta_limma %>% + filter(condition %in% cond_pair) %>% + droplevels() + + meta_sub$condition <- factor(meta_sub$condition, levels = cond_pair) + + expr_sub <- expr_limma[, meta_sub$sample, drop = FALSE] + + design <- build_design( + formula_str = formula_str, + meta_df = meta_sub, + condition_levels = cond_pair + ) + + contrast_matrix <- makeContrasts( + contrasts = paste0(cond_pair[[1]], " - ", cond_pair[[2]]), + levels = design + ) + colnames(contrast_matrix) <- cn + + fit <- lmFit(expr_sub, design) + fit2 <- contrasts.fit(fit, contrast_matrix) + fit2 <- eBayes(fit2) + + write.csv( + data.frame(sample = meta_sub$sample, design, check.names = FALSE), + file.path(model_tab_dir, paste0("design_matrix_", cn, ".csv")), + row.names = FALSE + ) + + write.csv( + meta_sub %>% dplyr::select(sample, condition, sex, tmt_run), + file.path(model_tab_dir, paste0("model_metadata_", cn, ".csv")), + row.names = FALSE + ) + + tt <- topTable(fit2, coef = cn, number = Inf, adjust.method = "BH") %>% + rownames_to_column("protein_id") + + tt_sig <- tt %>% filter(adj.P.Val < LIMMA_PADJ_CUT, abs(logFC) >= LIMMA_LOGFC_CUT) + + results[[cn]] <- tt + sig[[cn]] <- tt_sig + + write.csv( + tt, + file.path(model_tab_dir, paste0("Limma_", cn, "_results.csv")), + row.names = FALSE + ) + + write.csv( + tt_sig, + file.path(model_tab_dir, paste0("Limma_", cn, "_significant.csv")), + row.names = FALSE + ) + + save_volcano( + fit_obj = fit2, + contrast_name = cn, + fig_dir = model_fig_dir, + title_prefix = paste0(model_id, " | ") + ) + } + + summary_tbl <- tibble( + model = model_id, + contrast = CONTRAST_NAMES, + n_significant = vapply(sig[CONTRAST_NAMES], nrow, integer(1)) + ) + + write.csv( + summary_tbl, + file.path(model_tab_dir, "significant_counts_summary.csv"), + row.names = FALSE + ) + + summary_tbl +} + +run_sex_stratified_limma <- function() { + model_id <- "sex_stratified_condition_batch" + cat("\nRunning limma model:", model_id, "with ~0 + group + tmt_run\n") + + model_tab_dir <- file.path(MODEL_OUT_DIR, model_id) + model_fig_dir <- file.path(MODEL_FIG_DIR, model_id) + dir.create(model_tab_dir, recursive = TRUE, showWarnings = FALSE) + dir.create(model_fig_dir, recursive = TRUE, showWarnings = FALSE) + + sex_contrast_groups <- list( + SFug_females_vs_Earth_females = c("SFug_Female", "Earth_Female"), + SFug_males_vs_Earth_males = c("SFug_Male", "Earth_Male"), + SF1g_females_vs_Earth_females = c("SF1g_Female", "Earth_Female"), + SF1g_males_vs_Earth_males = c("SF1g_Male", "Earth_Male") + ) + + sex_contrasts <- names(sex_contrast_groups) + summary_tbl <- tibble( + model = character(), + contrast = character(), + n_significant_fdr05 = integer(), + n_significant_fdr05_lfc1 = integer() + ) + + summary_detailed_tbl <- tibble( + model = character(), + contrast = character(), + n_tested = integer(), + n_significant_fdr05 = integer(), + n_significant_fdr05_lfc1 = integer(), + n_up_fdr05_lfc1 = integer(), + n_down_fdr05_lfc1 = integer() + ) + + for (cn in sex_contrasts) { + group_pair <- sex_contrast_groups[[cn]] + + meta_sub <- meta_limma %>% + filter(group %in% group_pair) %>% + droplevels() + + meta_sub$group <- factor(meta_sub$group, levels = group_pair) + + expr_sub <- expr_limma[, meta_sub$sample, drop = FALSE] + + design <- model.matrix(~0 + group + tmt_run, data = meta_sub) + group_cols <- grep("^group", colnames(design)) + colnames(design)[group_cols] <- group_pair + + contrast_matrix <- makeContrasts( + contrasts = paste0(group_pair[[1]], " - ", group_pair[[2]]), + levels = design + ) + colnames(contrast_matrix) <- cn + + fit <- lmFit(expr_sub, design) + fit2 <- contrasts.fit(fit, contrast_matrix) + fit2 <- eBayes(fit2) + + write.csv( + data.frame(sample = meta_sub$sample, design, check.names = FALSE), + file.path(model_tab_dir, paste0("design_matrix_", cn, ".csv")), + row.names = FALSE + ) + + write.csv( + meta_sub %>% dplyr::select(sample, condition, sex, tmt_run, group), + file.path(model_tab_dir, paste0("model_metadata_", cn, ".csv")), + row.names = FALSE + ) + + tt <- topTable(fit2, coef = cn, number = Inf, adjust.method = "BH") %>% + rownames_to_column("protein_id") + + tt_sig_fdr <- tt %>% filter(adj.P.Val < LIMMA_PADJ_CUT) + tt_sig <- tt_sig_fdr %>% filter(abs(logFC) >= LIMMA_LOGFC_CUT) + + write.csv( + tt, + file.path(model_tab_dir, paste0("Limma_", cn, "_results.csv")), + row.names = FALSE + ) + + write.csv( + tt_sig_fdr, + file.path(model_tab_dir, paste0("Limma_", cn, "_significant_fdr_only.csv")), + row.names = FALSE + ) + + write.csv( + tt_sig, + file.path(model_tab_dir, paste0("Limma_", cn, "_significant.csv")), + row.names = FALSE + ) + + save_volcano( + fit_obj = fit2, + contrast_name = cn, + fig_dir = model_fig_dir, + title_prefix = paste0(model_id, " | ") + ) + + summary_tbl <- bind_rows( + summary_tbl, + tibble( + model = model_id, + contrast = cn, + n_significant_fdr05 = nrow(tt_sig_fdr), + n_significant_fdr05_lfc1 = nrow(tt_sig) + ) + ) + + summary_detailed_tbl <- bind_rows( + summary_detailed_tbl, + tibble( + model = model_id, + contrast = cn, + n_tested = nrow(tt), + n_significant_fdr05 = nrow(tt_sig_fdr), + n_significant_fdr05_lfc1 = nrow(tt_sig), + n_up_fdr05_lfc1 = sum(tt_sig$logFC > 0, na.rm = TRUE), + n_down_fdr05_lfc1 = sum(tt_sig$logFC < 0, na.rm = TRUE) + ) + ) + } + + write.csv( + summary_tbl, + file.path(model_tab_dir, "significant_counts_summary.csv"), + row.names = FALSE + ) + + write.csv( + summary_detailed_tbl, + file.path(model_tab_dir, "significant_counts_direction_summary.csv"), + row.names = FALSE + ) + + write.csv( + summary_tbl, + file.path(TAB_DIR, "sex_stratified_significant_counts_summary.csv"), + row.names = FALSE + ) + + write.csv( + summary_detailed_tbl, + file.path(TAB_DIR, "sex_stratified_significant_counts_direction_summary.csv"), + row.names = FALSE + ) + + summary_tbl +} + +model_summaries <- list() +for (i in seq_len(nrow(MODEL_SPECS))) { + model_id <- MODEL_SPECS$model_id[i] + formula_str <- MODEL_SPECS$formula_str[i] + model_summaries[[model_id]] <- run_limma_model(model_id, formula_str) +} + +all_model_summary <- bind_rows(model_summaries) +write.csv( + all_model_summary, + file.path(MODEL_OUT_DIR, "all_model_significant_counts_summary.csv"), + row.names = FALSE +) + +sex_model_summary <- run_sex_stratified_limma() +write.csv( + sex_model_summary, + file.path(MODEL_OUT_DIR, "sex_stratified_significant_counts_summary.csv"), + row.names = FALSE +) + +PRIMARY_MODEL <- "condition_batch_sex" +primary_tab_dir <- file.path(MODEL_OUT_DIR, PRIMARY_MODEL) + +results_SF1g_vs_Earth <- read.csv( + file.path(primary_tab_dir, "Limma_SF1g_vs_Earth_results.csv"), + stringsAsFactors = FALSE, + check.names = FALSE +) + +results_SFug_vs_Earth <- read.csv( + file.path(primary_tab_dir, "Limma_SFug_vs_Earth_results.csv"), + stringsAsFactors = FALSE, + check.names = FALSE +) + +results_SF1g_vs_SFug <- read.csv( + file.path(primary_tab_dir, "Limma_SF1g_vs_SFug_results.csv"), + stringsAsFactors = FALSE, + check.names = FALSE +) + +top_proteins <- results_SF1g_vs_Earth %>% + arrange(adj.P.Val) %>% + slice_head(n = 50) %>% + pull(protein_id) + +top_proteins <- top_proteins[top_proteins %in% rownames(expr_limma)] +heat_mat <- expr_limma[top_proteins, , drop = FALSE] + +ann <- meta_limma %>% + dplyr::select(sample, condition, sex, tmt_run) %>% + column_to_rownames("sample") + +ord <- order(ann$condition, ann$sex, ann$tmt_run) +heat_mat <- heat_mat[, ord, drop = FALSE] +ann <- ann[ord, , drop = FALSE] + +heat_z <- t(scale(t(heat_mat))) +heat_z[is.na(heat_z)] <- 0 + +png(file.path(FIG_DIR, "Heatmap_Top50_ms3fix.png"), 2200, 1500, res = 200) +pheatmap( + heat_z, + scale = "none", + cluster_rows = TRUE, + cluster_cols = FALSE, + annotation_col = ann, + show_rownames = TRUE, + fontsize_row = 7, + fontsize_col = 9, + border_color = NA, + main = "Top 50 Differential Proteins across Earth, SF1g, SFug (ms3fix)" +) +dev.off() + +write.csv(results_SF1g_vs_Earth, file.path(TAB_DIR, "Limma_SF1g_vs_Earth_results.csv"), row.names = FALSE) +write.csv(results_SFug_vs_Earth, file.path(TAB_DIR, "Limma_SFug_vs_Earth_results.csv"), row.names = FALSE) +write.csv(results_SF1g_vs_SFug, file.path(TAB_DIR, "Limma_SF1g_vs_SFug_results.csv"), row.names = FALSE) + +sig_SF1g_vs_Earth <- results_SF1g_vs_Earth %>% filter(adj.P.Val < 0.05, abs(logFC) >= 1) +sig_SFug_vs_Earth <- results_SFug_vs_Earth %>% filter(adj.P.Val < 0.05, abs(logFC) >= 1) +sig_SF1g_vs_SFug <- results_SF1g_vs_SFug %>% filter(adj.P.Val < 0.05, abs(logFC) >= 1) + +write.csv(sig_SF1g_vs_Earth, file.path(TAB_DIR, "Limma_SF1g_vs_Earth_significant.csv"), row.names = FALSE) +write.csv(sig_SFug_vs_Earth, file.path(TAB_DIR, "Limma_SFug_vs_Earth_significant.csv"), row.names = FALSE) +write.csv(sig_SF1g_vs_SFug, file.path(TAB_DIR, "Limma_SF1g_vs_SFug_significant.csv"), row.names = FALSE) + +cat("SF1g vs Earth:", nrow(sig_SF1g_vs_Earth), "significant proteins\n") +cat("SFug vs Earth:", nrow(sig_SFug_vs_Earth), "significant proteins\n") +cat("SF1g vs SFug:", nrow(sig_SF1g_vs_SFug), "significant proteins\n") + +## GSEA + +GSEA_DIR <- file.path(OUT_DIR, "GSEA") +TBL_DIR <- TAB_DIR + +dir.create(file.path(GSEA_DIR, "tables"), recursive = TRUE, showWarnings = FALSE) +dir.create(file.path(GSEA_DIR, "figs"), recursive = TRUE, showWarnings = FALSE) + +PADJ_CUT <- 0.05 +LFC_CUT <- 1 +CONTRASTS <- c("SF1g_vs_Earth", "SFug_vs_Earth", "SF1g_vs_SFug") + +`%||%` <- function(a, b) if (!is.null(a) && length(a)) a else b +wrap_terms <- function(x, w = 40) stringr::str_wrap(x, w) + +load_de <- function(tag) { + f <- file.path(TBL_DIR, paste0("Limma_", tag, "_results.csv")) + if (!file.exists(f)) stop("Missing DE file: ", f) + + df <- read.csv(f, stringsAsFactors = FALSE, check.names = FALSE) + rownames(df) <- df$protein_id + df +} + +build_ranks <- function(res) { + ids <- rownames(res) + pv <- res$P.Value %||% res$adj.P.Val + lfc <- res$logFC %||% 0 + + pv[!is.finite(pv)] <- 1 + lfc[!is.finite(lfc)] <- 0 + + score <- sign(lfc) * (-log10(pmax(pv, 1e-300))) + + keep <- is.finite(score) & nzchar(ids) + ranks <- tapply(score[keep], ids[keep], mean) + + sort(ranks, decreasing = TRUE) +} + +build_go_bp_sets <- function(ranks) { + genes <- names(ranks) + + m <- AnnotationDbi::select( + org.Dm.eg.db, + keys = genes, + keytype = "UNIPROT", + columns = c("GOALL", "ONTOLOGYALL") + ) + + m <- m[m$ONTOLOGYALL == "BP", ] + if (nrow(m) == 0) return(NULL) + + paths <- split(m$UNIPROT, m$GOALL) + paths <- lapply(paths, function(x) unique(na.omit(x))) + + lens <- lengths(paths) + paths[lens >= 10 & lens <= 500] +} + +get_go_terms <- function(ids) { + if (!length(ids)) return(setNames(character(0), character(0))) + + tbl <- AnnotationDbi::select( + GO.db, + keys = ids, + keytype = "GOID", + columns = "TERM" + ) + + tbl <- unique(tbl) + setNames(tbl$TERM, tbl$GOID) +} + +get_sig <- function(res) { + res <- res[ + !is.na(res$adj.P.Val) & + res$adj.P.Val < PADJ_CUT & + !is.na(res$logFC) & + abs(res$logFC) >= LFC_CUT, + ] + unique(rownames(res)) +} + +uniprot_to_symbol <- function(ids) { + tbl <- AnnotationDbi::select( + org.Dm.eg.db, + keys = ids, + keytype = "UNIPROT", + columns = "SYMBOL" + ) + + tbl <- tbl[!duplicated(tbl$UNIPROT), ] + map <- setNames(tbl$SYMBOL, tbl$UNIPROT) + + out <- map[ids] + out[is.na(out)] <- ids[is.na(out)] + out +} + +save_fgsea <- function(dt, tag) { + if (is.null(dt) || nrow(dt) == 0) return() + + dt <- dt[order(padj)][1:min(15, nrow(dt))] + term_map <- get_go_terms(dt$pathway) + + dt$term <- term_map[dt$pathway] + dt$term[is.na(dt$term)] <- dt$pathway + dt$label <- wrap_terms(dt$term) + + p <- ggplot(dt, aes(reorder(label, NES), NES, fill = -log10(padj))) + + geom_col() + + coord_flip() + + theme_minimal() + + labs(title = paste("GSEA:", tag)) + + ggsave(file.path(GSEA_DIR, "figs", paste0("fgsea_", tag, ".png")), + p, width = 10, height = 6) +} + +save_enrichment_plots <- function(pathways, ranks, fg_dt, tag) { + if (is.null(fg_dt) || nrow(fg_dt) == 0) return() + + top <- fg_dt[order(padj)][1:min(5, nrow(fg_dt))] + term_map <- get_go_terms(top$pathway) + + for (i in seq_len(nrow(top))) { + pw <- top$pathway[i] + term_name <- term_map[pw] + if (is.na(term_name)) term_name <- pw + + p <- plotEnrichment(pathways[[pw]], ranks) + + labs(title = paste0(tag, " | ", term_name)) + + ggsave( + file.path(GSEA_DIR, "figs", paste0("enrichment_", tag, "_", i, ".png")), + p, + width = 8, + height = 6 + ) + } +} + +run_enrichr <- function(tag, genes) { + if (!length(genes)) return(NULL) + + setEnrichrSite("FlyEnrichr") + + dbs <- grep("^GO_", listEnrichrDbs()$libraryName, value = TRUE) + enrich <- enrichr(genes, dbs) + + for (d in names(enrich)) { + fwrite(as.data.table(enrich[[d]]), + file.path(GSEA_DIR, "tables", paste0(tag, "_", d, ".csv"))) + } + + enrich +} + +run_network <- function(enrich_bp, tag) { + if (is.null(enrich_bp) || nrow(enrich_bp) == 0) return() + + top <- enrich_bp %>% + arrange(Adjusted.P.value) %>% + head(12) + + edge_list <- lapply(seq_len(nrow(top)), function(i) { + genes <- unlist(strsplit(top$Genes[i], ";")) + genes <- genes[genes != "" & !is.na(genes)] + + if (!length(genes)) return(NULL) + + data.frame( + from = rep(top$Term[i], length(genes)), + to = genes, + stringsAsFactors = FALSE + ) + }) + + edge_list <- edge_list[!sapply(edge_list, is.null)] + if (!length(edge_list)) return() + + edges <- do.call(rbind, edge_list) + g <- graph_from_data_frame(edges) + + p <- ggraph(g, layout = "fr") + + geom_edge_link(alpha = 0.3) + + geom_node_point(size = 3) + + geom_node_text(aes(label = name), repel = TRUE, size = 3) + + theme_void() + + ggsave(file.path(GSEA_DIR, "figs", paste0("network_", tag, ".png")), + p, width = 10, height = 8) +} + +run_analysis <- function(tag) { + message("\nRUNNING: ", tag) + + res <- load_de(tag) + ranks_uniprot <- build_ranks(res) + + pathways <- build_go_bp_sets(ranks_uniprot) + if (is.null(pathways) || length(pathways) < 10) { + message("Skipping ", tag, ": too few pathways") + return(NULL) + } + + fg <- fgseaMultilevel(pathways, ranks_uniprot) + fg_dt <- as.data.table(fg) + + if (nrow(fg_dt) > 0) { + fwrite(fg_dt, file.path(GSEA_DIR, "tables", paste0("fgsea_", tag, ".csv"))) + save_fgsea(fg_dt, tag) + save_enrichment_plots(pathways, ranks_uniprot, fg_dt, tag) + } + + sig <- get_sig(res) + sig_symbols <- uniprot_to_symbol(sig) + + enrich <- run_enrichr(tag, sig_symbols) + + if (!is.null(enrich[["GO_Biological_Process_2018"]])) { + run_network(enrich[["GO_Biological_Process_2018"]], tag) + } +} + +for (t in CONTRASTS) { + tryCatch(run_analysis(t), error = function(e) message("ERROR: ", e$message)) +} + +cat("\nDONE → ", OUT_DIR, "\n") diff --git a/Mitochondria/OSD-514/Proteomics/Proteomics_QC.r b/Mitochondria/OSD-514/Proteomics/Proteomics_QC.r deleted file mode 100644 index f121f0a..0000000 --- a/Mitochondria/OSD-514/Proteomics/Proteomics_QC.r +++ /dev/null @@ -1,70 +0,0 @@ -# INSTALL & LOAD PACKAGES -if (!requireNamespace("BiocManager", quietly = TRUE)) { - install.packages("BiocManager") -} - -BiocManager::install("limma", ask = FALSE, update = FALSE) - -install.packages(c("pheatmap","matrixStats","ggrepel"), dependencies = TRUE) - -library(dplyr) -library(tidyr) -library(readr) -library(stringr) -library(purrr) -library(ggplot2) -library(ggrepel) -library(limma) -library(pheatmap) -library(matrixStats) -library(tibble) - -# SET WORKING DIRECTORY -setwd("/Volumes/Marians_SSD/ADBR_Mito/OSD-514/Proteomics") - -# READ METADATA -meta <- read_tsv("a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt", - show_col_types = FALSE) %>% - transmute( - sample = str_replace_all(`Sample Name`, " ", "_"), - tmt_run = factor(`Parameter Value[Run Number]`), - label = Label, - condition = if_else(str_detect(sample, "^Earth"), "Earth", "Flight"), - sex = case_when( - str_detect(sample, "_M") ~ "Male", - str_detect(sample, "_F") ~ "Female", - TRUE ~ NA_character_ - ) - ) %>% - mutate(condition = factor(condition), - sex = factor(sex)) - -tmt_runs <- levels(meta$tmt_run) - -# BUILD EXPRESSION MATRIX -expr_mat <- read.csv("TMT_expression_matrix.csv", row.names = 1) -expr_mat <- as.matrix(expr_mat) -mode(expr_mat) <- "numeric" - -# LOG TRANSFORM & FILTER -expr_log <- log2(expr_mat) - -keep_proteins <- rowSums(!is.na(expr_log)) >= 0.7 * ncol(expr_log) -expr_filt <- expr_log[keep_proteins, ] -expr_filt <- expr_filt[rowVars(expr_filt, na.rm=TRUE) > 0, ] -expr_filt <- expr_filt[, colSums(!is.na(expr_filt)) > 0] - -pca_mat <- expr_filt[rowVars(expr_filt, na.rm = TRUE) > 1e-6, ] -pca_mat[is.na(pca_mat)] <- 0 - -pca <- prcomp(t(pca_mat), center = TRUE, scale = FALSE) - -pca_df <- as.data.frame(pca$x) %>% - rownames_to_column("sample") %>% - left_join(meta %>% select(sample, condition, tmt_run), by = "sample") - -png("PCA_TMT_samples.png", 800, 600) -ggplot(pca_df, aes(PC1, PC2, color = condition, shape = tmt_run)) + - geom_point(size = 4) + - theme_minimal() -dev.off() \ No newline at end of file diff --git a/Mitochondria/OSD-514/Proteomics/README.md b/Mitochondria/OSD-514/Proteomics/README.md index e718c19..f533cdf 100644 --- a/Mitochondria/OSD-514/Proteomics/README.md +++ b/Mitochondria/OSD-514/Proteomics/README.md @@ -1,77 +1,409 @@ -# PLEASE NOTE THIS FILE IS INCOMPLETE, UPDATES COMING SOON -# FOLDER PATHS -``` -OSD-514/ -└── RNA_Seq/ - ├── RawCounts/ - ├── Collapsed_Counts/ - ├── counts_DESeq_ready.csv - ├── metadata_from_filenames.csv - └── OSD514_RSEM_expected_counts.csv - ├── RESULTS_OSD514/ # General pathway, sex factored out - ├── tables/ - ├── figs/ - ├── GSEA/ # General pathway, sex factored out - ├── tables/ - └── figs/ - ├── RESULTS_Sex_Strat/ # Sex-stratified DEG, sex as interaction term - ├── tables/ - └── figs/ - └── GSEA_Sex_Strat/ # Sex-stratified GSEA, sex as interaction term - ├── tables/ - └── figs/ -└── Proteomics/ - ├── TMT_all/ - ├── RESULTS_OSD514/ # General pathway, sex factored out - ├── tables/ - ├── figs/ - ├── GSEA/ # General pathway, sex factored out - ├── tables/ - └── figs/ - ├── RESULTS_Sex_Strat/ # Sex-stratified LIMMA, sex as interaction term - ├── tables/ - └── figs/ - └── GSEA_Sex_Strat/ # Sex-stratified GSEA, sex as interaction term - ├── tables/ - └── figs/ -``` -# Data Collection -The following processed proteomic files from OSD-514 were used for analysis: - -1. GLDS-514_proteomics_TMTc.tar.gz -2. GLDS-514_proteomics_TMTb.tar.gz -3. GLDS-514_proteomics_TMTa.tar.gz -4. OSD-514_metadata_OSD-514-ISA.zip (contained metadata) - -The TMT files were manually added to a folder called "TMT_all" in order to be combined into one matrix using [this script.](Mitochondria/OSD-514/Proteomics/CombineTMT.r) - -# QC -From here, we ran QC for downstream analysis. That script can be [found here.](Mitochondria/OSD-514/Proteomics/Proteomics_QC.r) - -# Downstream Analysis -After QC, the pathway was split into two: -1. **General:** Tests what changes with condition (after accounting for sex differences) -2. **Sex-Stratified:** Tests what changes with condition (including sex-specific effects) - -## 01. General Pathway -The script for the full pathway can be found here. - -The following processes were run on the data: -1. Quality Control -2. LIMMA -3. Visualization (Volcano Plots, Heatmaps, etc) -4. GSEA - -We also created a script that would quantify the DEGs and DEPs by sex and condition. This was done to create a comparative figure for the manuscript, and can be found here. - -## 02. Sex-Stratified Pathway -The script for the full pathway can be found here. - -The following processes were run on the data: -1. Quality Control -2. LIMMA -3. Visualization (Volcano Plots, Heatmaps, etc) -4. GSEA - -## 03. RNA_Seq -The RNA_Seq processing followed the same logic— one general, one sex-stratified— and can be found here. +# OSD514 TMT proteomics processing workflow + +This repository documents and preserves the processing workflow used to generate +the files in `RESULTS_OSD514_ms3fix` from the NASA/OSD514 Drosophila TMT +proteomics raw data. + +The workflow starts from Thermo RAW files named like `NASA_Flies_TMT*.raw`, +converts them to `mzML`, processes the multiplexed TMT data with FragPipe, exports +Proteome Discoverer-like per-sample protein abundance tables, and then performs +limma differential expression and GO enrichment analysis in R. + +## Repository layout + +```text +. +|-- a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt +|-- fragpipe_dmel_tmt/ +| |-- run_fragpipe_dmel_tmt.sh +| |-- build_tmt_annotation.py +| |-- extract_tmt_protein_matrix.py +| `-- export_tmt_all_like_from_psm.py +|-- TMT_all_from_psm_pdlike_ms3fix/ +|-- TMT_expression_matrix_ms3fix.csv +|-- TMT_expression_matrix_ms3fix_batch_corrected.csv +|-- sample_metadata_ms3fix.csv +|-- GEN_PROTEOMICS_SCRIPT_ms3fix.r +`-- RESULTS_OSD514_ms3fix/ +``` + +## Inputs + +The workflow uses these main inputs: + +- `NASA_Flies_TMT*.raw`: Thermo Orbitrap Fusion raw files for the TMT plexes. + These raw files are not stored in this repository. +- `mzML/*.mzML`: converted raw files. The FragPipe runner expects the file names + to contain `TMTA`, `TMTB`, or `TMTC` so files can be assigned to the correct + TMT plex. +- `a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt`: + assay metadata mapping each sample to its TMT run and reporter channel. +- `dmel_UP000000803_uniprot_target_decoy.fasta`: D. melanogaster target-decoy + FASTA used by FragPipe. + +## Processing overview + +```text +NASA_Flies_TMT*.raw + -> mzML conversion + -> FragPipe TMT10-MS3 workflow + -> FragPipe per-plex protein.tsv and psm.tsv + -> PD-like per-sample TMT_all files + -> protein x sample expression matrix + -> limma differential expression + -> PCA, heatmap, volcano plots, fgsea, FlyEnrichr outputs + -> RESULTS_OSD514_ms3fix/ +``` + +## 1. Convert RAW files to mzML + +The raw-to-mzML conversion is required before running FragPipe, but the exact +conversion command is not currently scripted in this repository. One typical +approach is ProteoWizard `msconvert`: + +```bash +mkdir -p mzML +msconvert NASA_Flies_TMT*.raw \ + --mzML \ + --filter "peakPicking true 1-" \ + --outdir mzML +``` + +The downstream FragPipe script assumes converted files are in an `mzML` +directory and that each filename identifies the TMT plex, for example `TMTA`, +`TMTB`, or `TMTC`. + +## 2. Run FragPipe TMT processing + +FragPipe processing is configured in: + +```text +fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh +``` + +Important implementation details: + +- The runner uses the built-in FragPipe `TMT10-MS3.workflow` template. +- The workflow is patched to use reporter-ion mode: + - `tmtintegrator.ms1_int=false` + - `tmtintegrator.log2transformed=false` + - `tmtintegrator.ref_tag=ctrl_pool` + - relaxed TMT-Integrator peptide summarization gates +- `build_tmt_annotation.py` reads the assay metadata and writes one annotation + file per plex: + - `TMTA_annotation.txt` + - `TMTB_annotation.txt` + - `TMTC_annotation.txt` +- A FragPipe manifest is built by assigning every `.mzML` file to `TMTA`, + `TMTB`, or `TMTC` from the filename. + +The runner was originally written for the shared cluster path: + +```text +/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics +``` + +Before rerunning elsewhere, update the path variables at the top of +`fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh`, especially `BASE_DIR`, +`MZML_DIR`, `ASSAY_LABEL_FILE`, `TOOLS_DIR`, `SIF`, and `FALLBACK_DB`. + +Run: + +```bash +bash fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh +``` + +Expected FragPipe-stage outputs: + +```text +fragpipe_dmel_tmt/work/results/ +fragpipe_dmel_tmt/logs/fragpipe_tmt_run.log +fragpipe_dmel_tmt/work/protein_abundance_tmt_matrix.tsv +TMT_all_from_psm_pdlike_ms3fix/ +``` + +## 3. Export PD-like per-sample TMT files + +The final step of `run_fragpipe_dmel_tmt.sh` calls: + +```text +fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py +``` + +This script converts FragPipe outputs into per-sample tables that mimic the +published `TMT_all`/Proteome Discoverer layout. It reads each plex's +`psm.tsv` and `protein.tsv`, applies PD-like PSM filters, aggregates reporter +ion intensities to the protein level, and writes one text file per biological +sample plus one pool file per plex. + +Default PSM filters: + +- `Qvalue <= 0.01` +- `Probability >= 0.90` +- `Purity >= 0.50` when a `Purity` column is present + +The resulting directory in this repository is: + +```text +TMT_all_from_psm_pdlike_ms3fix/ +``` + +It contains 18 biological sample files and 3 pool files: + +```text +Earth_F1_TMTa.txt Earth_M1_TMTa.txt +Earth_F2_TMTb.txt Earth_M2_TMTb.txt +Earth_F3_TMTc.txt Earth_M3_TMTc.txt +SF1g_F1_TMTa.txt SF1g_M1_TMTa.txt +SF1g_F2_TMTb.txt SF1g_M2_TMTb.txt +SF1g_F3_TMTc.txt SF1g_M3_TMTc.txt +SFug_F1_TMTa.txt SFug_M1_TMTa.txt +SFug_F2_TMTb.txt SFug_M2_TMTb.txt +SFug_F3_TMTc.txt SFug_M3_TMTc.txt +pool_TMTa.txt pool_TMTb.txt pool_TMTc.txt +``` + +Each sample table includes protein accession, description, coverage, peptide +counts, PSM counts, unique peptide counts, reporter abundance, and reporter +abundance count. + +## 4. Build the expression matrix + +The downstream R workflow is: + +```text +GEN_PROTEOMICS_SCRIPT_ms3fix.r +``` + +This script reads the assay metadata and all files in +`TMT_all_from_psm_pdlike_ms3fix/`, then builds a protein x sample matrix using +these processing rules: + +1. Remove pool files from the analysis matrix. +2. Keep proteins with at least 2 unique peptides in each source table. +3. Keep finite, positive abundance values. +4. Collapse duplicate protein/sample/run rows using the median abundance. +5. Keep proteins observed in all three TMT runs. +6. Apply within-run median scaling by sample. +7. Keep only complete-case proteins across the 18 biological samples. +8. Transform abundance values with `log2(value + 1)`. + +The resulting matrix has 1,668 proteins and 18 biological samples. + +Outputs: + +```text +RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix.csv +RESULTS_OSD514_ms3fix/tables/sample_metadata_ms3fix.csv +TMT_expression_matrix_ms3fix.csv +sample_metadata_ms3fix.csv +``` + +The repository-level copies are convenience copies of the same processed matrix +and metadata. + +## 5. PCA and batch-corrected matrix + +The R script generates PCA plots from the raw log2 matrix and a batch-corrected +matrix. Batch correction uses: + +```r +limma::removeBatchEffect( + expr_limma, + batch = meta_limma$tmt_run, + design = model.matrix(~ condition + sex, data = meta_limma) +) +``` + +Outputs: + +```text +RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_raw.png +RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_batch_corrected.png +RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix_batch_corrected.csv +TMT_expression_matrix_ms3fix_batch_corrected.csv +``` + +The batch-corrected matrix is used for visualization/export. Differential +expression is modeled with limma design matrices that include batch terms rather +than using the batch-corrected matrix directly. + +## 6. limma differential expression + +The R script tests three condition-level contrasts: + +- `SF1g_vs_Earth` +- `SFug_vs_Earth` +- `SF1g_vs_SFug` + +It runs three model specifications: + +```text +condition_only ~0 + condition +condition_batch ~0 + condition + tmt_run +condition_batch_sex ~0 + condition + tmt_run + sex +``` + +For each model and contrast, the script writes: + +- the limma design matrix +- the model metadata +- the full limma result table from `topTable` +- significant proteins +- a volcano plot +- a per-model significant-count summary + +Model-specific outputs are stored under: + +```text +RESULTS_OSD514_ms3fix/tables/model_outputs/ +RESULTS_OSD514_ms3fix/figs/model_outputs/ +``` + +Model-output significance uses: + +```text +adj.P.Val < 0.05 and abs(logFC) >= 0.5 +``` + +The primary model for top-level results is: + +```text +condition_batch_sex +``` + +Primary-model tables are copied to: + +```text +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results.csv +RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results.csv +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results.csv +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant.csv +RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant.csv +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant.csv +``` + +The top-level primary-model significant files use a stricter fold-change cutoff: + +```text +adj.P.Val < 0.05 and abs(logFC) >= 1 +``` + +## 7. Sex-stratified limma models + +The R script also runs sex-stratified contrasts with a group model: + +```text +~0 + group + tmt_run +``` + +Contrasts: + +- `SFug_females_vs_Earth_females` +- `SFug_males_vs_Earth_males` +- `SF1g_females_vs_Earth_females` +- `SF1g_males_vs_Earth_males` + +Outputs: + +```text +RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/ +RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/ +RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_summary.csv +RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_direction_summary.csv +``` + +The sex-stratified output includes both FDR-only significant tables and +FDR-plus-fold-change significant tables. + +## 8. Heatmap + +The heatmap uses the top 50 proteins from the primary `SF1g_vs_Earth` limma +results, ordered by adjusted p-value. Values are row-scaled z-scores from the +raw log2 expression matrix, with columns ordered by condition, sex, and TMT run. + +Output: + +```text +RESULTS_OSD514_ms3fix/figs/Heatmap_Top50_ms3fix.png +``` + +## 9. GSEA and FlyEnrichr enrichment + +The R script runs GO enrichment analyses for: + +- `SF1g_vs_Earth` +- `SFug_vs_Earth` +- `SF1g_vs_SFug` + +Ranked gene lists are built from limma results as: + +```text +sign(logFC) * -log10(P.Value) +``` + +The script then: + +1. maps protein IDs through `org.Dm.eg.db` using `UNIPROT` +2. builds GO Biological Process gene sets +3. runs `fgseaMultilevel` +4. saves fgsea result tables and plots +5. selects significant proteins using `adj.P.Val < 0.05` and `abs(logFC) >= 1` +6. maps UniProt IDs to fly gene symbols +7. submits those gene lists to FlyEnrichr GO libraries +8. writes FlyEnrichr tables and biological-process network plots + +Outputs: + +```text +RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_Earth.csv +RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SFug_vs_Earth.csv +RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_SFug.csv +RESULTS_OSD514_ms3fix/GSEA/tables/*GO*.csv +RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_*.png +RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_*.png +RESULTS_OSD514_ms3fix/GSEA/figs/network_*.png +``` + +FlyEnrichr requires network access when rerunning the enrichment step. + +## Reproducing `RESULTS_OSD514_ms3fix` + +After the FragPipe stage has produced `TMT_all_from_psm_pdlike_ms3fix/`, run: + +```bash +Rscript GEN_PROTEOMICS_SCRIPT_ms3fix.r +``` + +Before rerunning on a new machine, update the `BASE_DIR` value near the top of +`GEN_PROTEOMICS_SCRIPT_ms3fix.r`. The current script also installs missing CRAN +and Bioconductor packages automatically. + +The script writes: + +```text +RESULTS_OSD514_ms3fix/tables/ +RESULTS_OSD514_ms3fix/figs/ +RESULTS_OSD514_ms3fix/GSEA/ +``` + +## Notes on retained output files + +Some files in `RESULTS_OSD514_ms3fix/tables/` have `_ms3fix` in the filename +and some do not. The current main R script writes the expression-matrix files +with `_ms3fix` names, while the primary limma result files are written without +the suffix and are copied from the `condition_batch_sex` model output. The +`_ms3fix`-suffixed limma tables are retained analysis artifacts from the same +MS3-fixed workflow. + +## Key scripts + +- `fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh`: end-to-end FragPipe TMT runner. +- `fragpipe_dmel_tmt/build_tmt_annotation.py`: creates per-plex TMT reporter + annotation files from the assay metadata. +- `fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py`: exports FragPipe PSM + reporter intensities into PD-like per-sample protein abundance tables. +- `fragpipe_dmel_tmt/extract_tmt_protein_matrix.py`: extracts a sample matrix + from FragPipe TMT protein report output. +- `GEN_PROTEOMICS_SCRIPT_ms3fix.r`: builds the final expression matrix, runs + limma models, generates plots, and runs GO enrichment. diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/.DS_Store b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/.DS_Store new file mode 100644 index 0000000..00e121c Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/.DS_Store differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/.DS_Store b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/.DS_Store new file mode 100644 index 0000000..6eb0790 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/.DS_Store differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_1.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_1.png new file mode 100644 index 0000000..43cf523 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_1.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_2.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_2.png new file mode 100644 index 0000000..6e98f32 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_2.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_3.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_3.png new file mode 100644 index 0000000..ea4dcca Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_3.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_4.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_4.png new file mode 100644 index 0000000..fe4b09d Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_4.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_5.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_5.png new file mode 100644 index 0000000..1b084c3 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_Earth_5.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_1.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_1.png new file mode 100644 index 0000000..7323a0c Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_1.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_2.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_2.png new file mode 100644 index 0000000..fcbc340 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_2.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_3.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_3.png new file mode 100644 index 0000000..f55c7a9 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_3.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_4.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_4.png new file mode 100644 index 0000000..19d6bd9 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_4.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_5.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_5.png new file mode 100644 index 0000000..2d4f163 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SF1g_vs_SFug_5.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_1.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_1.png new file mode 100644 index 0000000..9f5116c Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_1.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_2.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_2.png new file mode 100644 index 0000000..7156891 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_2.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_3.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_3.png new file mode 100644 index 0000000..44ccf0f Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_3.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_4.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_4.png new file mode 100644 index 0000000..872aac4 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_4.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_5.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_5.png new file mode 100644 index 0000000..0b9dd91 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_SFug_vs_Earth_5.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SF1g_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SF1g_vs_Earth.png new file mode 100644 index 0000000..eda6d28 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SF1g_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SF1g_vs_SFug.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SF1g_vs_SFug.png new file mode 100644 index 0000000..dd41d6f Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SF1g_vs_SFug.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SFug_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SFug_vs_Earth.png new file mode 100644 index 0000000..8b6d8e3 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_SFug_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/network_SF1g_vs_SFug.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/network_SF1g_vs_SFug.png new file mode 100644 index 0000000..b574551 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/network_SF1g_vs_SFug.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/network_SFug_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/network_SFug_vs_Earth.png new file mode 100644 index 0000000..b542c34 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/figs/network_SFug_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_2018.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_2018.csv new file mode 100644 index 0000000..72421fc --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_2018.csv @@ -0,0 +1,26 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +detection of light stimulus (GO:0009583),1/8,0.000799859993014768,0.00357062495978944,0.00228310428735186,0.00996466589797848,-4.27039087648958,30.4524727271628,ninaE +optomotor response (GO:0071632),1/6,0.000599924996256889,0.00357062495978944,0.00177597327083102,0.00996466589797848,-4.00544496729281,29.7152182782742,ninaE +negative regulation of compound eye retinal cell programmed cell death (GO:0046673),1/9,0.000899819991017392,0.00357062495978944,0.00253662147595971,0.00996466589797848,-3.81843062966553,26.7798599602672,ninaE +negative regulation of retinal cell programmed cell death (GO:0046671),1/9,0.000899819991017392,0.00357062495978944,0.00253662147595971,0.00996466589797848,-3.71465716064166,26.0520638477858,ninaE +cellular response to mechanical stimulus (GO:0071260),1/8,0.000799859993014768,0.00357062495978944,0.00228310428735186,0.00996466589797848,-3.57271850566364,25.4773195246679,Gat +phospholipase C-activating G-protein coupled receptor signaling pathway (GO:0007200),1/10,0.000999774988741042,0.00357062495978944,0.00279010645143397,0.00996466589797848,-3.13099698709795,21.6288655549501,ninaE +rhodopsin mediated signaling pathway (GO:0016056),1/14,0.00139954497719391,0.00403644220685945,0.00380372422229251,0.0107236829159979,-3.1568852392971,20.7458126455771,ninaE +photoreceptor cell morphogenesis (GO:0008594),1/19,0.00189914495729583,0.00403644220685945,0.00507002164076211,0.0107236829159979,-2.82240412043879,17.6861763405024,ninaE +phototaxis (GO:0042331),1/21,0.00209894994756691,0.00403644220685945,0.00557631511631889,0.0107236829159979,-2.64544268903162,16.312641094289,ninaE +regulation of compound eye retinal cell programmed cell death (GO:0046669),1/19,0.00189914495729583,0.00403644220685945,0.00507002164076211,0.0107236829159979,-2.56719806335523,16.0869654776574,ninaE +cellular response to radiation (GO:0071478),1/24,0.00239861993086724,0.00426172043917758,0.00633551373143749,0.0111767654328848,-2.63451068520967,15.8936387054262,ninaE +monocarboxylic acid transport (GO:0015718),1/17,0.00169931996600167,0.00403644220685945,0.00456359931269449,0.0107236829159979,-2.33917114066283,14.918127406491,Gat +detection of visible light (GO:0009584),1/21,0.00209894994756691,0.00403644220685945,0.00557631511631889,0.0107236829159979,-2.22727423828362,13.7340814141683,ninaE +response to UV (GO:0009411),1/28,0.00279810990540494,0.00426172043917758,0.00734732756797592,0.0111767654328848,-2.23640275614388,13.1473893994958,ninaE +sodium ion transmembrane transport (GO:0035725),1/27,0.00269824491234428,0.00426172043917758,0.00709442242843885,0.0111767654328848,-2.20671577786734,13.053063108194,Gat +amino acid transport (GO:0006865),1/40,0.0039960998051053,0.00525802605934908,0.0103796766189969,0.0136574692355222,-2.30754772606002,12.7432856546369,Gat +photoreceptor cell development (GO:0042461),1/29,0.00289796989864075,0.00426172043917758,0.00760020049436163,0.0111767654328848,-2.10650088083525,12.309853615088,ninaE +cellular response to light stimulus (GO:0071482),1/32,0.00319751987613326,0.00444099982796286,0.00835862599491499,0.0116092027707153,-2.03663739833409,11.7012553853855,ninaE +detection of UV (GO:0009589),1/7,0.000699894994744389,0.00357062495978944,0.00202955488564349,0.00996466589797848,-1.39963617517883,10.1677693037463,ninaE +inorganic cation transmembrane transport (GO:0098662),1/79,0.00788459422959602,0.00821311898916252,0.0202027750951586,0.0210445573907902,-2.01360417042174,9.75157192407778,Gat +rhabdomere development (GO:0042052),1/43,0.00429548477423691,0.00536935596779614,0.0111370390865537,0.0139212988581921,-1.72183763860252,9.38434376113683,ninaE +sodium ion transport (GO:0006814),1/63,0.00629023451194767,0.00714799376357689,0.0161787131893287,0.0183849013515099,-1.67239735307341,8.4769756658568,Gat +response to light stimulus (GO:0009416),1/62,0.00619054452708525,0.00714799376357689,0.0159269355084296,0.0183849013515099,-1.39529575159516,7.09470527477889,ninaE +compound eye photoreceptor development (GO:0042051),1/78,0.00778498424914037,0.00821311898916252,0.0199515128239767,0.0210445573907902,-1.3505283048028,6.55756918572974,ninaE +cell morphogenesis involved in neuron differentiation (GO:0048667),1/160,0.0159363968198154,0.0159363968198154,0.0404480392845008,0.0404480392845008,-0.952258956153385,3.9415423513617,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_AutoRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_AutoRIF.csv new file mode 100644 index 0000000..d432e4a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_AutoRIF.csv @@ -0,0 +1,331 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +ER-associated_misfolded_protein_catabolic_process_(GO:0071712),1/9,0.000899819991017392,0.0221209874058013,0.00205761316872945,0.0460347352995582,-16.9249557214196,118.700059792114,ninaE +eye_photoreceptor_cell_fate_commitment_(GO:0042706),1/9,0.000899819991017392,0.0221209874058013,0.00205761316872945,0.0460347352995582,-6.01890965556164,42.2125143343405,ninaE +compound_eye_photoreceptor_fate_commitment_(GO:0001752),1/5,0.00049994999751729,0.0221209874058013,0.0012345679012294,0.0460347352995582,-5.44034485924809,41.3520747101217,ninaE +R7_cell_fate_commitment_(GO:0007465),1/8,0.000799859993014768,0.0221209874058013,0.00185185185184683,0.0460347352995582,-5.78858678089332,41.2788398468279,ninaE +R8_cell_fate_commitment_(GO:0007460),1/9,0.000899819991017392,0.0221209874058013,0.00205761316872945,0.0460347352995582,-5.82484441358143,40.8514735017509,ninaE +deactivation_of_rhodopsin_mediated_signaling_(GO:0016059),1/11,0.00109972498628654,0.0221209874058013,0.00246913580245473,0.0460347352995582,-5.38573903376073,36.6913981562444,ninaE +metarhodopsin_inactivation_(GO:0016060),1/12,0.00119966998350231,0.0221209874058013,0.00267489711933148,0.0460347352995582,-5.08147092979671,34.1764936161374,ninaE +N-glycan_processing_(GO:0006491),1/20,0.00199904995245516,0.0221209874058013,0.00432098765428782,0.0460347352995582,-4.99681176662534,31.0556010394744,ninaE +basement_membrane_organization_(GO:0071711),1/29,0.00289796989864075,0.0221209874058013,0.00617283950618727,0.0460347352995582,-5.2421416030217,30.6337378492685,ninaE +regulation_of_clathrin-dependent_endocytosis_(GO:2000369),1/15,0.00149947497376899,0.0221209874058013,0.00329218106997728,0.0460347352995582,-4.63349573489488,30.1299558622244,ninaE +negative_phototaxis_(GO:0046957),1/14,0.00139954497719391,0.0221209874058013,0.00308641975309872,0.0460347352995582,-4.48161734427842,29.4514328922106,ninaE +regulation_of_rhodopsin_mediated_signaling_pathway_(GO:0022400),1/31,0.00309767488375283,0.0221209874058013,0.0065843621398479,0.0460347352995582,-4.01295897810461,23.1832793032243,ninaE +rhabdomere_membrane_biogenesis_(GO:0045313),1/22,0.0021988449422977,0.0221209874058013,0.00473251028802669,0.0460347352995582,-3.51692483354896,21.5229577765467,ninaE +G-protein_coupled_glutamate_receptor_signaling_pathway_(GO:0007216),1/23,0.00229873493679307,0.0221209874058013,0.00493827160497319,0.0460347352995582,-3.47968214765284,21.1404481662892,ninaE +metaphase/anaphase_transition_of_cell_cycle_(GO:0044784),1/27,0.00269824491234428,0.0221209874058013,0.00576131687236578,0.0460347352995582,-3.48928086864082,20.6396328142449,ninaE +compound_eye_pigmentation_(GO:0048072),1/29,0.00289796989864075,0.0221209874058013,0.00617283950618727,0.0460347352995582,-3.2669789491105,19.091391317709,ninaE +cellular_response_to_light_stimulus_(GO:0071482),1/30,0.00299782489129492,0.0221209874058013,0.00637860082299873,0.0460347352995582,-3.1891795571014,18.5287131783727,ninaE +cilium_organization_(GO:0044782),1/25,0.00249849992505482,0.0221209874058013,0.00534979423873201,0.0460347352995582,-3.04663156877722,18.2556136513701,ninaE +tetrahydrofolate_metabolic_process_(GO:0046653),1/25,0.00249849992505482,0.0221209874058013,0.00534979423873201,0.0460347352995582,-2.91817098053442,17.4858694878743,ninaE +neuron_fate_commitment_(GO:0048663),1/33,0.00329735986796975,0.0221209874058013,0.00699588477363488,0.0460347352995582,-3.04728372035607,17.414108628947,ninaE +cilium_movement_(GO:0003341),1/30,0.00299782489129492,0.0221209874058013,0.00637860082299873,0.0460347352995582,-2.99410069106749,17.3953306606478,ninaE +ion_transmembrane_transport_(GO:0034220),1/50,0.00499387469355275,0.0221209874058013,0.0104938271604678,0.0460347352995582,-3.18498016678085,16.8789399175993,ninaE +compound_eye_cone_cell_differentiation_(GO:0042675),1/29,0.00289796989864075,0.0221209874058013,0.00617283950618727,0.0460347352995582,-2.75706501476652,16.1115844041799,ninaE +rhodopsin_mediated_signaling_pathway_(GO:0016056),1/40,0.0039960998051053,0.0221209874058013,0.00843621399182984,0.0460347352995582,-2.89253633003027,15.9738480395062,ninaE +clathrin-dependent_endocytosis_(GO:0072583),1/31,0.00309767488375283,0.0221209874058013,0.0065843621398479,0.0460347352995582,-2.70659174002854,15.6362605776046,ninaE +entrainment_of_circadian_clock_by_photoperiod_(GO:0043153),1/24,0.00239861993086724,0.0221209874058013,0.0051440329217908,0.0460347352995582,-2.46393921245148,14.8646045941998,ninaE +stabilization_of_membrane_potential_(GO:0030322),1/35,0.00349702485128982,0.0221209874058013,0.00740740740736291,0.0460347352995582,-2.62089443465549,14.8233666936317,ninaE +ERAD_pathway_(GO:0036503),1/47,0.004694594729793,0.0221209874058013,0.0098765432097864,0.0460347352995582,-2.74551512433235,14.7196496373842,ninaE +R8_cell_fate_specification_(GO:0045464),1/52,0.00519336966850864,0.0221209874058013,0.0109053497942963,0.0460347352995582,-2.76492559097317,14.5445386282636,ninaE +microvillus_organization_(GO:0032528),1/28,0.00279810990540494,0.0221209874058013,0.00596707818937439,0.0460347352995582,-2.44024251846131,14.3457248616237,ninaE +cellular_response_to_misfolded_protein_(GO:0071218),1/39,0.0038962948148227,0.0221209874058013,0.00823045267489068,0.0460347352995582,-2.57533878497308,14.2872822414369,ninaE +regulation_of_protein_serine/threonine_phosphatase_activity_(GO:0080163),1/57,0.00569201960094544,0.0221209874058013,0.0119341563785555,0.0460347352995582,-2.74127940342017,14.1688238650144,ninaE +regulation_of_membrane_potential_in_photoreceptor_cell_(GO:0016057),1/57,0.00569201960094544,0.0221209874058013,0.0119341563785555,0.0460347352995582,-2.68154716113621,13.8600864123753,ninaE +detection_of_visible_light_(GO:0009584),1/50,0.00499387469355275,0.0221209874058013,0.0104938271604678,0.0460347352995582,-2.6015749133433,13.7871585862458,ninaE +long-chain_fatty-acyl-CoA_metabolic_process_(GO:0035336),1/37,0.00369666983364024,0.0221209874058013,0.00781893004118917,0.0460347352995582,-2.43305294485477,13.6258821472857,ninaE +optomotor_response_(GO:0071632),1/30,0.00299782489129492,0.0221209874058013,0.00637860082299873,0.0460347352995582,-2.27442443277972,13.2141063889049,ninaE +regulation_of_cell_fate_commitment_(GO:0010453),1/66,0.00658927446395104,0.0221209874058013,0.0137860082303662,0.0460347352995582,-2.60461291159783,13.081178767345,ninaE +response_to_lipopolysaccharide_(GO:0032496),1/49,0.00489411970613004,0.0221209874058013,0.0102880658437144,0.0460347352995582,-2.45026724182648,13.0347377454121,ninaE +cell_cycle_G2/M_phase_transition_(GO:0044839),1/59,0.00589144457219757,0.0221209874058013,0.0123456790123542,0.0460347352995582,-2.4937180828917,12.8033821740063,ninaE +sulfur_compound_transport_(GO:0072348),1/54,0.0053928446422504,0.0221209874058013,0.0113168724279594,0.0460347352995582,-2.40393295628426,12.554978029868,ninaE +response_to_UV_(GO:0009411),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-2.65876096222311,12.44311734004,ninaE +cytosolic_calcium_ion_transport_(GO:0060401),1/43,0.00429548477423691,0.0221209874058013,0.00905349794241041,0.0460347352995582,-2.28079285053304,12.4307563486166,ninaE +aspartate_family_amino_acid_biosynthetic_process_(GO:0009067),1/50,0.00499387469355275,0.0221209874058013,0.0104938271604678,0.0460347352995582,-2.30703637904991,12.2262389059262,ninaE +aspartate_family_amino_acid_catabolic_process_(GO:0009068),1/50,0.00499387469355275,0.0221209874058013,0.0104938271604678,0.0460347352995582,-2.30440546145331,12.212296244523,ninaE +cellular_response_to_radiation_(GO:0071478),1/67,0.00668894444714724,0.0221209874058013,0.0139917695472467,0.0460347352995582,-2.43751865021241,12.2053851822849,ninaE +negative_regulation_of_neuron_death_(GO:1901215),1/45,0.00449504975258798,0.0221209874058013,0.0094650205760378,0.0460347352995582,-2.22422855560119,12.0214627713537,ninaE +negative_regulation_of_synaptic_transmission_(GO:0050805),1/47,0.004694594729793,0.0221209874058013,0.0098765432097864,0.0460347352995582,-2.2276700256056,11.9433041887143,ninaE +Malpighian_tubule_development_(GO:0072002),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-2.54520637571406,11.9116769192921,ninaE +sensory_perception_of_light_stimulus_(GO:0050953),1/41,0.00409589979518808,0.0221209874058013,0.00864197530843565,0.0460347352995582,-2.14006677689508,11.7655924749386,ninaE +response_to_salt_stress_(GO:0009651),1/54,0.0053928446422504,0.0221209874058013,0.0113168724279594,0.0460347352995582,-2.24928284185149,11.7472896191142,ninaE +isoprenoid_biosynthetic_process_(GO:0008299),1/47,0.004694594729793,0.0221209874058013,0.0098765432097864,0.0460347352995582,-2.17454243259517,11.6584689138108,ninaE +isoprenoid_metabolic_process_(GO:0006720),1/47,0.004694594729793,0.0221209874058013,0.0098765432097864,0.0460347352995582,-2.17072027837184,11.6379770321494,ninaE +phospholipid_dephosphorylation_(GO:0046839),1/16,0.00159939997004094,0.0221209874058013,0.0034979423868232,0.0460347352995582,-1.79503563864187,11.5566669422354,ninaE +eclosion_rhythm_(GO:0008062),1/47,0.004694594729793,0.0221209874058013,0.0098765432097864,0.0460347352995582,-2.13632077934416,11.4535495019925,ninaE +cation_transport_(GO:0006812),1/94,0.00937814390799243,0.0221209874058013,0.0195473251028482,0.0460347352995582,-2.4439868867818,11.4118873912435,ninaE +response_to_light_stimulus_(GO:0009416),1/48,0.00479435971791243,0.0221209874058013,0.0100823045267683,0.0460347352995582,-2.12280818781213,11.3364646426169,ninaE +eye-antennal_disc_morphogenesis_(GO:0007455),1/63,0.00629023451194767,0.0221209874058013,0.0131687242798657,0.0460347352995582,-2.1950826403859,11.1263403358658,ninaE +coenzyme_A_biosynthetic_process_(GO:0015937),1/77,0.0076853692688853,0.0221209874058013,0.0160493827159597,0.0460347352995582,-2.27511862627898,11.0762713640832,ninaE +coenzyme_A_metabolic_process_(GO:0015936),1/77,0.0076853692688853,0.0221209874058013,0.0160493827159597,0.0460347352995582,-2.2710576603128,11.0565008077165,ninaE +phosphatidylinositol_dephosphorylation_(GO:0046856),1/24,0.00239861993086724,0.0221209874058013,0.0051440329217908,0.0460347352995582,-1.81454398313484,10.9468929638275,ninaE +cell_cycle_G1/S_phase_transition_(GO:0044843),1/65,0.00648959948022479,0.0221209874058013,0.0135802469136356,0.0460347352995582,-2.16947783977243,10.9288627752991,ninaE +synaptic_target_recognition_(GO:0008039),1/56,0.00559229961500852,0.0221209874058013,0.0117283950616304,0.0460347352995582,-2.09971795470834,10.8899030724112,ninaE +fatty-acyl-CoA_biosynthetic_process_(GO:0046949),1/72,0.00718721936134809,0.0221209874058013,0.0150205761317067,0.0460347352995582,-2.18208429155064,10.769569922066,ninaE +fatty-acyl-CoA_metabolic_process_(GO:0035337),1/72,0.00718721936134809,0.0221209874058013,0.0150205761317067,0.0460347352995582,-2.18089258089246,10.763688292603,ninaE +regulation_of_rhodopsin_gene_expression_(GO:0007468),1/81,0.0080837991899106,0.0221209874058013,0.0168724279836319,0.0460347352995582,-2.22637979027214,10.726460319749,ninaE +cellular_response_to_nutrient_levels_(GO:0031669),1/79,0.00788459422959602,0.0221209874058013,0.0164609053495147,0.0460347352995582,-2.20113853143547,10.6597716768019,ninaE +regulation_of_neuron_apoptotic_process_(GO:0043523),1/106,0.0105721736088264,0.0221209874058013,0.0220164609052608,0.0460347352995582,-2.3391737977384,10.6421410424259,ninaE +cellular_response_to_hypoxia_(GO:0071456),1/84,0.00838256912844064,0.0221209874058013,0.0174897119339756,0.0460347352995582,-2.20652931988321,10.5507424337738,ninaE +nucleoside_transport_(GO:0015858),1/71,0.00708757437873258,0.0221209874058013,0.0148148148147014,0.0460347352995582,-2.12028981819202,10.4941881148055,ninaE +amine_transport_(GO:0015837),1/90,0.0089799739990483,0.0221209874058013,0.0187242798352242,0.0460347352995582,-2.22440241929559,10.4830709465051,ninaE +regulation_of_endocytic_recycling_(GO:2001135),1/54,0.0053928446422504,0.0221209874058013,0.0113168724279594,0.0460347352995582,-1.98425869088996,10.3631526846759,ninaE +regulation_of_compound_eye_photoreceptor_development_(GO:0045314),1/97,0.00967671883617474,0.0221209874058013,0.0201646090537968,0.0460347352995582,-2.19228546888249,10.1678910311303,ninaE +negative_regulation_of_macroautophagy_(GO:0016242),1/58,0.00579173458653026,0.0221209874058013,0.0121399176955067,0.0460347352995582,-1.95204116108404,10.0555954066957,ninaE +eye_photoreceptor_cell_differentiation_(GO:0001754),1/104,0.0103732186603728,0.0221209874058013,0.0216049382715801,0.0460347352995582,-2.19957747768188,10.048831125575,ninaE +R8_cell_differentiation_(GO:0045465),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-2.13875343660821,10.0094594253699,ninaE +very_long-chain_fatty_acid_biosynthetic_process_(GO:0042761),1/70,0.0069879243960139,0.0221209874058013,0.0146090534978321,0.0460347352995582,-2.00760700630965,9.96490133305577,ninaE +very_long-chain_fatty_acid_metabolic_process_(GO:0000038),1/70,0.0069879243960139,0.0221209874058013,0.0146090534978321,0.0460347352995582,-2.00122520843042,9.93322482166977,ninaE +negative_regulation_of_autophagy_(GO:0010507),1/58,0.00579173458653026,0.0221209874058013,0.0121399176955067,0.0460347352995582,-1.92239486376703,9.90287774014761,ninaE +long-chain_fatty_acid_metabolic_process_(GO:0001676),1/70,0.0069879243960139,0.0221209874058013,0.0146090534978321,0.0460347352995582,-1.98038450361757,9.82978048893,ninaE +sensory_perception_of_taste_(GO:0050909),1/103,0.0102737336871188,0.0221209874058013,0.0213991769545462,0.0460347352995582,-2.12973651135789,9.75028466211266,ninaE +sodium_ion_transport_(GO:0006814),1/73,0.00728685934326461,0.0221209874058013,0.0152263374483744,0.0460347352995582,-1.97608080241551,9.72564258621709,ninaE +positive_regulation_of_phagocytosis_(GO:0050766),1/38,0.00379648482436267,0.0221209874058013,0.00802469135810984,0.0460347352995582,-1.73238078061666,9.65573556636104,ninaE +regulation_of_Rab_protein_signal_transduction_(GO:0032483),1/49,0.00489411970613004,0.0221209874058013,0.0102880658437144,0.0460347352995582,-1.80217307461548,9.587057688428,ninaE +acyl-CoA_biosynthetic_process_(GO:0071616),1/86,0.00858172408627986,0.0221209874058013,0.0179012345678596,0.0460347352995582,-2.0061823366395,9.54565718877449,ninaE +acyl-CoA_metabolic_process_(GO:0006637),1/86,0.00858172408627986,0.0221209874058013,0.0179012345678596,0.0460347352995582,-2.00471512227434,9.53867600610904,ninaE +cellular_response_to_alcohol_(GO:0097306),1/84,0.00838256912844064,0.0221209874058013,0.0174897119339756,0.0460347352995582,-1.95312381905418,9.33905847994802,ninaE +establishment_of_planar_polarity_(GO:0001736),1/91,0.00907952397701686,0.0221209874058013,0.0189300411520444,0.0460347352995582,-1.98544442971485,9.33503061375056,ninaE +regulation_of_synaptic_vesicle_endocytosis_(GO:1900242),1/63,0.00629023451194767,0.0221209874058013,0.0131687242798657,0.0460347352995582,-1.83009834870876,9.27632367966795,ninaE +response_to_sucrose_(GO:0009744),1/87,0.00868129406489913,0.0221209874058013,0.018106995884791,0.0460347352995582,-1.95317464624256,9.27090884463358,ninaE +regulation_of_photoreceptor_cell_differentiation_(GO:0046532),1/107,0.010671643581834,0.0221209874058013,0.0222222222220849,0.0460347352995582,-2.0362401356245,9.24486657790786,ninaE +protein_deglycosylation_(GO:0006517),1/39,0.0038962948148227,0.0221209874058013,0.00823045267489068,0.0460347352995582,-1.66291517878527,9.22540313589188,ninaE +inositol_phosphate_catabolic_process_(GO:0071545),1/62,0.00619054452708525,0.0221209874058013,0.0129629629628612,0.0460347352995582,-1.76424300014252,8.97070323964876,ninaE +inositol_phosphate_metabolic_process_(GO:0043647),1/62,0.00619054452708525,0.0221209874058013,0.0129629629628612,0.0460347352995582,-1.76278911579483,8.96331062705126,ninaE +compound_eye_photoreceptor_cell_differentiation_(GO:0001751),1/100,0.00997524876197719,0.0221209874058013,0.0207818930040935,0.0460347352995582,-1.9452436079556,8.96299855495913,ninaE +trehalose_metabolic_process_(GO:0005991),1/105,0.0104726986347653,0.0221209874058013,0.0218106995882394,0.0460347352995582,-1.9551295980026,8.91340365204829,ninaE +rhabdomere_morphogenesis_(GO:0061541),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-1.89824758385372,8.88388153803392,ninaE +"phototransduction,_UV_(GO:0007604)",1/39,0.0038962948148227,0.0221209874058013,0.00823045267489068,0.0460347352995582,-1.59899276629712,8.87077890000466,ninaE +cation_homeostasis_(GO:0055080),1/87,0.00868129406489913,0.0221209874058013,0.018106995884791,0.0460347352995582,-1.85906468937147,8.82420796552747,ninaE +regulation_of_metal_ion_transport_(GO:0010959),1/92,0.00917906895393888,0.0221209874058013,0.0191358024689929,0.0460347352995582,-1.88101721753096,8.82353105519238,ninaE +Golgi_vesicle_transport_(GO:0048193),1/97,0.00967671883617474,0.0221209874058013,0.0201646090537968,0.0460347352995582,-1.89494819035962,8.78883110010112,ninaE +negative_regulation_of_cell_communication_(GO:0010648),1/91,0.00907952397701686,0.0221209874058013,0.0189300411520444,0.0460347352995582,-1.86758779662518,8.78090013220207,ninaE +glycolipid_metabolic_process_(GO:0006664),1/87,0.00868129406489913,0.0221209874058013,0.018106995884791,0.0460347352995582,-1.8414793860142,8.740737834096,ninaE +protein_prenylation_(GO:0018342),1/57,0.00569201960094544,0.0221209874058013,0.0119341563785555,0.0460347352995582,-1.69079812467393,8.73921162137354,ninaE +glycolipid_biosynthetic_process_(GO:0009247),1/87,0.00868129406489913,0.0221209874058013,0.018106995884791,0.0460347352995582,-1.84012305179571,8.73429987887952,ninaE +rhabdomere_development_(GO:0042052),1/104,0.0103732186603728,0.0221209874058013,0.0216049382715801,0.0460347352995582,-1.90924131683022,8.72242226766977,ninaE +protein_N-linked_glycosylation_(GO:0006487),1/73,0.00728685934326461,0.0221209874058013,0.0152263374483744,0.0460347352995582,-1.75349740256177,8.63015773055921,ninaE +sphingolipid_biosynthetic_process_(GO:0030148),1/95,0.00947767388311177,0.0221209874058013,0.0197530864195403,0.0460347352995582,-1.83001261628082,8.52569272269567,ninaE +sphingolipid_catabolic_process_(GO:0030149),1/95,0.00947767388311177,0.0221209874058013,0.0197530864195403,0.0460347352995582,-1.8295114094617,8.5233576921651,ninaE +regulation_of_eye_photoreceptor_cell_development_(GO:0042478),1/115,0.0114672233607767,0.0221209874058013,0.0238683127570716,0.0460347352995582,-1.90651772044069,8.51882155107526,ninaE +eye_pigment_biosynthetic_process_(GO:0006726),1/105,0.0104726986347653,0.0221209874058013,0.0218106995882394,0.0460347352995582,-1.8656088641034,8.50528009988769,ninaE +eye_pigment_metabolic_process_(GO:0042441),1/105,0.0104726986347653,0.0221209874058013,0.0218106995882394,0.0460347352995582,-1.8626841423951,8.49194634176619,ninaE +eye_morphogenesis_(GO:0048592),1/103,0.0102737336871188,0.0221209874058013,0.0213991769545462,0.0460347352995582,-1.84272665858928,8.43630626600545,ninaE +regulation_of_eye_pigmentation_(GO:0048073),1/102,0.0101742437131014,0.0221209874058013,0.0211934156380223,0.0460347352995582,-1.83565934812015,8.42181395732568,ninaE +sphingolipid_metabolic_process_(GO:0006665),1/95,0.00947767388311177,0.0221209874058013,0.0197530864195403,0.0460347352995582,-1.80596938384989,8.41367971800774,ninaE +ceramide_biosynthetic_process_(GO:0046513),1/101,0.0100747487371511,0.0221209874058013,0.020987654320901,0.0460347352995582,-1.82901201255596,8.40929079987823,ninaE +ceramide_metabolic_process_(GO:0006672),1/101,0.0100747487371511,0.0221209874058013,0.020987654320901,0.0460347352995582,-1.82810853263902,8.40513684938406,ninaE +cellular_protein_complex_localization_(GO:0034629),1/126,0.0125606230307462,0.0221562904571456,0.0261316872428419,0.0460884027376013,-1.90313244673572,8.33036948802064,ninaE +ion_transport_(GO:0006811),1/96,0.009577198859871,0.0221209874058013,0.0199588477365239,0.0460347352995582,-1.78977388142276,8.31953143973048,ninaE +positive_regulation_of_photoreceptor_cell_differentiation_(GO:0046534),1/49,0.00489411970613004,0.0221209874058013,0.0102880658437144,0.0460347352995582,-1.56052287760832,8.30154609591796,ninaE +cellular_response_to_UV_(GO:0034644),1/117,0.0116660683032434,0.0221209874058013,0.0242798353909734,0.0460347352995582,-1.86187241822662,8.28732594621731,ninaE +Rab_protein_signal_transduction_(GO:0032482),1/110,0.0109700235013053,0.0221209874058013,0.0228395061729276,0.0460347352995582,-1.83640914434097,8.28695945151167,ninaE +response_to_endoplasmic_reticulum_stress_(GO:0034976),1/130,0.0129580729037245,0.0221562904571456,0.0269547325101729,0.0460884027376013,-1.88110601939186,8.17535503467119,ninaE +oligosaccharide_catabolic_process_(GO:0009313),1/111,0.0110694734734167,0.0221209874058013,0.0230452674897226,0.0460347352995582,-1.81104480910681,8.15615637993467,ninaE +oligosaccharide_metabolic_process_(GO:0009311),1/111,0.0110694734734167,0.0221209874058013,0.0230452674897226,0.0460347352995582,-1.80778243514805,8.14146406970377,ninaE +cGMP_biosynthetic_process_(GO:0006182),1/108,0.0107711085559963,0.0221209874058013,0.0224279835389343,0.0460347352995582,-1.79019471661037,8.11117151411219,ninaE +adrenergic_receptor_signaling_pathway_(GO:0071875),1/76,0.00758574928768814,0.0221209874058013,0.015843621399189,0.0460347352995582,-1.66007343408119,8.10362171738667,ninaE +cGMP_metabolic_process_(GO:0046068),1/108,0.0107711085559963,0.0221209874058013,0.0224279835389343,0.0460347352995582,-1.77975075217659,8.06385108241631,ninaE +oligosaccharide_biosynthetic_process_(GO:0009312),1/111,0.0110694734734167,0.0221209874058013,0.0230452674897226,0.0460347352995582,-1.78228063597655,8.02661508255197,ninaE +neuroepithelial_cell_differentiation_(GO:0060563),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-1.7025405674753,7.96796416010252,ninaE +"phototransduction,_visible_light_(GO:0007603)",1/51,0.0050936246811851,0.0221209874058013,0.0106995884774464,0.0460347352995582,-1.49638127757645,7.90054236950773,ninaE +phosphatidylethanolamine_metabolic_process_(GO:0046337),1/45,0.00449504975258798,0.0221209874058013,0.0094650205760378,0.0460347352995582,-1.4536115796273,7.85644867497665,ninaE +protein_localization_to_organelle_(GO:0033365),1/113,0.01126835841763,0.0221209874058013,0.0234567901239048,0.0460347352995582,-1.74019455175857,7.80608923241833,ninaE +regulation_of_muscle_contraction_(GO:0006937),1/103,0.0102737336871188,0.0221209874058013,0.0213991769545462,0.0460347352995582,-1.7034347176906,7.7986048096716,ninaE +asparagine_metabolic_process_(GO:0006528),1/122,0.0121630931548898,0.0221562904571456,0.0253086419754852,0.0460884027376013,-1.76496456237608,7.78234484022492,ninaE +compound_eye_development_(GO:0048749),1/117,0.0116660683032434,0.0221209874058013,0.0242798353909734,0.0460347352995582,-1.72362646310653,7.671983412749,ninaE +cellular_modified_amino_acid_biosynthetic_process_(GO:0042398),1/109,0.0108705685283031,0.0221209874058013,0.0226337448558816,0.0460347352995582,-1.69498755190188,7.66421890249599,ninaE +cellular_modified_amino_acid_catabolic_process_(GO:0042219),1/109,0.0108705685283031,0.0221209874058013,0.0226337448558816,0.0460347352995582,-1.69418836723512,7.66060523216392,ninaE +R7_cell_differentiation_(GO:0045466),1/134,0.0133554427714707,0.0222003750182844,0.0277777777774746,0.0461728395058382,-1.7642346225856,7.61413896762273,ninaE +neuron_differentiation_(GO:0030182),1/107,0.010671643581834,0.0221209874058013,0.0222222222220849,0.0460347352995582,-1.67700802478269,7.61389345389848,ninaE +eye-antennal_disc_development_(GO:0035214),1/109,0.0108705685283031,0.0221209874058013,0.0226337448558816,0.0460347352995582,-1.66867643731768,7.54524803364466,ninaE +eye_photoreceptor_cell_development_(GO:0042462),1/112,0.0111689184464014,0.0221209874058013,0.0232510288061732,0.0460347352995582,-1.67718225388917,7.5382977359235,ninaE +metal_ion_transport_(GO:0030001),1/102,0.0101742437131014,0.0221209874058013,0.0211934156380223,0.0460347352995582,-1.63693804298533,7.51010130055399,ninaE +instar_larval_or_pupal_morphogenesis_(GO:0048707),1/105,0.0104726986347653,0.0221209874058013,0.0218106995882394,0.0460347352995582,-1.64684616147201,7.50794453985185,ninaE +cytoskeleton_organization_(GO:0007010),1/128,0.012759357967693,0.0221562904571456,0.0265432098761497,0.0460884027376013,-1.71600142301706,7.48432359275155,ninaE +positive_regulation_of_macroautophagy_(GO:0016239),1/52,0.00519336966850864,0.0221209874058013,0.0109053497942963,0.0460347352995582,-1.40809158345541,7.40708628635889,ninaE +receptor-mediated_endocytosis_(GO:0006898),1/59,0.00589144457219757,0.0221209874058013,0.0123456790123542,0.0460347352995582,-1.44115667218851,7.3992644851226,ninaE +regulation_of_neuron_differentiation_(GO:0045664),1/136,0.0135540977053117,0.0222300974197204,0.0281893004110417,0.0462238451285855,-1.71798079465981,7.38914940939063,ninaE +response_to_unfolded_protein_(GO:0006986),1/133,0.013256107805219,0.0222003750182844,0.0275720164610882,0.0461728395058382,-1.70652862932253,7.37782987545365,ninaE +protein_geranylgeranylation_(GO:0018344),1/60,0.00599114955729081,0.0221209874058013,0.0125514403290627,0.0460347352995582,-1.44069597223595,7.37272125885624,ninaE +GTP_metabolic_process_(GO:0046039),1/103,0.0102737336871188,0.0221209874058013,0.0213991769545462,0.0460347352995582,-1.59486267524327,7.30154411011421,ninaE +lipid_transport_(GO:0006869),1/88,0.00878085904308633,0.0221209874058013,0.0183127572018236,0.0460347352995582,-1.53487080167772,7.26789111162188,ninaE +cyclic_purine_nucleotide_metabolic_process_(GO:0052652),1/156,0.0155395469773325,0.0234157557192681,0.0323045267488333,0.0486780540050913,-1.73109547641186,7.20891702556788,ninaE +cyclic_nucleotide_biosynthetic_process_(GO:0009190),1/141,0.0140506475326004,0.0222300974197204,0.0292181069956161,0.0462238451285855,-1.67689656916712,7.15210941630922,ninaE +organelle_fusion_(GO:0048284),1/111,0.0110694734734167,0.0221209874058013,0.0230452674897226,0.0460347352995582,-1.58661204275724,7.14540903126401,ninaE +cyclic_nucleotide_metabolic_process_(GO:0009187),1/141,0.0140506475326004,0.0222300974197204,0.0292181069956161,0.0462238451285855,-1.67448101390559,7.14180686345698,ninaE +regulation_of_cell_fate_specification_(GO:0042659),1/112,0.0111689184464014,0.0221209874058013,0.0232510288061732,0.0460347352995582,-1.5769805267015,7.08792899904778,ninaE +Rho_protein_signal_transduction_(GO:0007266),1/128,0.012759357967693,0.0221562904571456,0.0265432098761497,0.0460884027376013,-1.61495124123829,7.04359420325666,ninaE +organelle_membrane_fusion_(GO:0090174),1/107,0.010671643581834,0.0221209874058013,0.0222222222220849,0.0460347352995582,-1.54469548907201,7.01317268534594,ninaE +regulation_of_endocytosis_(GO:0030100),1/114,0.0113677933898404,0.0221209874058013,0.0236625514402879,0.0460347352995582,-1.5493853194835,6.93655324086917,ninaE +cellular_response_to_unfolded_protein_(GO:0034620),1/144,0.0143485174254559,0.0222300974197204,0.0298353909466325,0.0462238451285855,-1.62361519532357,6.8907993067803,ninaE +neuron_fate_specification_(GO:0048665),1/101,0.0100747487371511,0.0221209874058013,0.020987654320901,0.0460347352995582,-1.49484424369428,6.8728799261315,ninaE +regulation_of_intracellular_protein_transport_(GO:0033157),1/116,0.0115666483324571,0.0221209874058013,0.024074074073975,0.0460347352995582,-1.54069051916976,6.870908836951,ninaE +neurotransmitter_transport_(GO:0006836),1/142,0.0141499424971415,0.0222300974197204,0.0294238683128895,0.0462238451285855,-1.60632929657952,6.83982197780541,ninaE +autophagy_of_mitochondrion_(GO:0000422),1/144,0.0143485174254559,0.0222300974197204,0.0298353909466325,0.0462238451285855,-1.60727407776049,6.821445828259,ninaE +establishment_of_protein_localization_to_membrane_(GO:0090150),1/109,0.0108705685283031,0.0221209874058013,0.0226337448558816,0.0460347352995582,-1.49608239115143,6.76483017771326,ninaE +positive_regulation_of_neuron_differentiation_(GO:0045666),1/108,0.0107711085559963,0.0221209874058013,0.0224279835389343,0.0460347352995582,-1.49192755844289,6.75975646720372,ninaE +activation_of_GTPase_activity_(GO:0090630),1/115,0.0114672233607767,0.0221209874058013,0.0238683127570716,0.0460347352995582,-1.509494465886,6.74481744877046,ninaE +misfolded_or_incompletely_synthesized_protein_catabolic_process_(GO:0006515),1/104,0.0103732186603728,0.0221209874058013,0.0216049382715801,0.0460347352995582,-1.46514799264013,6.69356951569279,ninaE +potassium_ion_transport_(GO:0006813),1/68,0.00678860943064854,0.0221209874058013,0.0141975308640776,0.0460347352995582,-1.33767668547512,6.678363098731,ninaE +endosomal_transport_(GO:0016197),1/115,0.0114672233607767,0.0221209874058013,0.0238683127570716,0.0460347352995582,-1.49459183629254,6.67822858846914,ninaE +regulation_of_calcium_ion_transport_(GO:0051924),1/125,0.012461248063109,0.0221562904571456,0.0259259259256797,0.0460884027376013,-1.52154287367508,6.67216574380716,ninaE +regulation_of_organ_growth_(GO:0046620),1/153,0.0152418570930958,0.0232861705588964,0.0316872427983259,0.0484110653863312,-1.58585776462195,6.63476879756088,ninaE +lipid_translocation_(GO:0034204),1/104,0.0103732186603728,0.0221209874058013,0.0216049382715801,0.0460347352995582,-1.45176175641576,6.63241412171799,ninaE +actin_filament_organization_(GO:0007015),1/135,0.0134547727383542,0.0222003750182844,0.0279835390944474,0.0461728395058382,-1.48380743968113,6.39286770500244,ninaE +compound_eye_photoreceptor_development_(GO:0042051),1/156,0.0155395469773325,0.0234157557192681,0.0323045267488333,0.0486780540050913,-1.53333950635179,6.38538857268981,ninaE +regulation_of_feeding_behavior_(GO:0060259),1/194,0.0193063903206851,0.0254405807263133,0.0401234567896433,0.0528717122922165,-1.59735881729968,6.30528502207387,ninaE +positive_regulation_of_autophagy_(GO:0010508),1/52,0.00519336966850864,0.0221209874058013,0.0109053497942963,0.0460347352995582,-1.19736142931547,6.29856717212493,ninaE +regulation_of_R7_cell_differentiation_(GO:0045676),1/88,0.00878085904308633,0.0221209874058013,0.0183127572018236,0.0460347352995582,-1.32631142782449,6.28032471983408,ninaE +endocytic_recycling_(GO:0032456),1/119,0.0118648932449298,0.0221209874058013,0.0246913580243085,0.0460347352995582,-1.40425564070068,6.22671018148397,ninaE +polarized_epithelial_cell_differentiation_(GO:0030859),1/62,0.00619054452708525,0.0221209874058013,0.0129629629628612,0.0460347352995582,-1.21869124052119,6.19671862583093,ninaE +purine_ribonucleotide_transport_(GO:0015868),1/119,0.0118648932449298,0.0221209874058013,0.0246913580243085,0.0460347352995582,-1.38175811342961,6.12695228978904,ninaE +negative_regulation_of_cell_migration_(GO:0030336),1/132,0.0131567678376675,0.0222003750182844,0.0273662551440666,0.0461728395058382,-1.41243696509895,6.11700882821507,ninaE +epithelial_cell_differentiation_(GO:0030855),1/171,0.0170273213665542,0.0244305045694038,0.0353909465019375,0.0507783145462581,-1.47660637684012,6.0141233967295,ninaE +calcium_ion_transport_(GO:0006816),1/128,0.012759357967693,0.0221562904571456,0.0265432098761497,0.0460884027376013,-1.37444670499413,5.99463599691019,ninaE +regulation_of_retinal_cell_programmed_cell_death_(GO:0046668),1/164,0.0163331666586851,0.0240622544525272,0.0339506172838725,0.0500165343914193,-1.44962272979116,5.96455603757733,ninaE +regulation_of_GTPase_activity_(GO:0043087),1/100,0.00997524876197719,0.0221209874058013,0.0207818930040935,0.0460347352995582,-1.27847057617151,5.89074287658299,ninaE +regulation_of_protein_modification_process_(GO:0031399),1/162,0.0161347917409106,0.0239841498851374,0.0335390946504506,0.049855410966886,-1.42333289446923,5.8737779658478,ninaE +regulation_of_gene_expression_(GO:0010468),1/210,0.0208902695145352,0.0264129844436652,0.0434156378594861,0.0548933352246376,-1.51701975781168,5.86854815600685,ninaE +glandular_epithelial_cell_differentiation_(GO:0002067),1/159,0.0158371918608632,0.0237557877912948,0.0329218106994543,0.0493827160491815,-1.40494285039905,5.82404192907793,ninaE +apical_protein_localization_(GO:0045176),1/119,0.0118648932449298,0.0221209874058013,0.0246913580243085,0.0460347352995582,-1.30917971016853,5.80512721076277,ninaE +mRNA_transport_(GO:0051028),1/186,0.0185139706997011,0.0249371850240872,0.0384773662553733,0.0518266565888701,-1.44980363852205,5.78359967443227,ninaE +aromatic_amino_acid_family_catabolic_process_(GO:0009074),1/144,0.0143485174254559,0.0222300974197204,0.0298353909466325,0.0462238451285855,-1.36037659686977,5.77358609211721,ninaE +cAMP_metabolic_process_(GO:0046058),1/168,0.0167298564935099,0.024428551517072,0.0347736625512606,0.0507757019553805,-1.4057576574813,5.75033652389432,ninaE +cAMP_biosynthetic_process_(GO:0006171),1/170,0.0169281714086556,0.0244305045694038,0.035185185184885,0.0507783145462581,-1.4058367925736,5.73409350668977,ninaE +positive_regulation_of_endocytosis_(GO:0045807),1/98,0.00977623381159071,0.0221209874058013,0.020370370370187,0.0460347352995582,-1.23723022318818,5.72565521453866,ninaE +negative_regulation_of_intracellular_protein_transport_(GO:0090317),1/144,0.0143485174254559,0.0222300974197204,0.0298353909466325,0.0462238451285855,-1.34842455301553,5.72286031932166,ninaE +endosome_to_lysosome_transport_(GO:0008333),1/143,0.0142492324620072,0.0222300974197204,0.0296296296293541,0.0462238451285855,-1.33142931487053,5.65997556610079,ninaE +synaptic_vesicle_recycling_(GO:0036465),1/127,0.0126599929995141,0.0221562904571456,0.0263374485600714,0.0460884027376013,-1.29369267335417,5.65254228440419,ninaE +DNA_replication_initiation_(GO:0006270),1/196,0.0195044452235069,0.0254405807263133,0.0405349794240327,0.0528717122922165,-1.4215880957186,5.59695280058753,ninaE +protein_autophosphorylation_(GO:0046777),1/172,0.0171264663226879,0.0244663804609827,0.0355967078194081,0.0508524397420115,-1.36471799100493,5.55048585643877,ninaE +regulation_of_protein_dephosphorylation_(GO:0035304),1/169,0.0168290164516037,0.0244305045694038,0.0349794238678937,0.0507783145462581,-1.35579234148944,5.53793815390691,ninaE +phosphatidylinositol_phosphorylation_(GO:0046854),1/98,0.00977623381159071,0.0221209874058013,0.020370370370187,0.0460347352995582,-1.19378580538752,5.52460309613667,ninaE +cytosolic_transport_(GO:0016482),1/154,0.0153410920552976,0.0233297713283327,0.0318930041147376,0.048500881833472,-1.32077048087574,5.51714925845297,ninaE +muscle_organ_development_(GO:0007517),1/110,0.0109700235013053,0.0221209874058013,0.0228395061729276,0.0460347352995582,-1.21193753778004,5.46897583487708,ninaE +phospholipid_catabolic_process_(GO:0009395),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-1.15578656299349,5.40913155703337,ninaE +amino_acid_transport_(GO:0006865),1/171,0.0170273213665542,0.0244305045694038,0.0353909465019375,0.0507783145462581,-1.32770061592796,5.40763974972934,ninaE +skeletal_muscle_tissue_development_(GO:0007519),1/110,0.0109700235013053,0.0221209874058013,0.0228395061729276,0.0460347352995582,-1.19433135127753,5.38952635375703,ninaE +phospholipid_biosynthetic_process_(GO:0008654),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-1.13835319853153,5.32754265050362,ninaE +head_involution_(GO:0008258),1/184,0.0183158157916945,0.0248733300874864,0.0380658436218009,0.051694355535779,-1.32938057923988,5.31750947710033,ninaE +phototaxis_(GO:0042331),1/82,0.00818339416993427,0.0221209874058013,0.0170781893004778,0.0460347352995582,-1.10440666763975,5.30739000191253,ninaE +regulation_of_Wnt_protein_secretion_(GO:0061356),1/122,0.0121630931548898,0.0221562904571456,0.0253086419754852,0.0460884027376013,-1.20059401145038,5.29383808003331,ninaE +inositol_metabolic_process_(GO:0006020),1/134,0.0133554427714707,0.0222003750182844,0.0277777777774746,0.0461728395058382,-1.22458521831144,5.28510318897083,ninaE +phospholipid_metabolic_process_(GO:0006644),1/93,0.00927860893004491,0.0221209874058013,0.0193415637859642,0.0460347352995582,-1.11881180318102,5.23608806741422,ninaE +photoreceptor_cell_differentiation_(GO:0046530),1/109,0.0108705685283031,0.0221209874058013,0.0226337448558816,0.0460347352995582,-1.1577553824987,5.23501820237948,ninaE +glutamate_biosynthetic_process_(GO:0006537),1/130,0.0129580729037245,0.0221562904571456,0.0269547325101729,0.0460884027376013,-1.20140340771075,5.22134281462483,ninaE +glutamate_catabolic_process_(GO:0006538),1/130,0.0129580729037245,0.0221562904571456,0.0269547325101729,0.0460884027376013,-1.19810233487613,5.20699623227374,ninaE +glutamate_metabolic_process_(GO:0006536),1/130,0.0129580729037245,0.0221562904571456,0.0269547325101729,0.0460884027376013,-1.19505364583111,5.1937465190325,ninaE +regulation_of_phosphoprotein_phosphatase_activity_(GO:0043666),1/168,0.0167298564935099,0.024428551517072,0.0347736625512606,0.0507757019553805,-1.25802584711549,5.14603063918758,ninaE +epithelial_cell_morphogenesis_(GO:0003382),1/176,0.0175229961496398,0.024606760550558,0.0364197530859838,0.0511426319930836,-1.24701338413073,5.04322289880247,ninaE +synaptic_vesicle_endocytosis_(GO:0048488),1/139,0.0138520426024091,0.0222300974197204,0.0288065843620169,0.0462238451285855,-1.16241143504047,4.97433349762077,ninaE +nuclear_migration_(GO:0007097),1/182,0.0181176408822925,0.0248409965969534,0.0376543209877294,0.0516273849607875,-1.23998894735172,4.97343345368546,ninaE +regulation_of_nervous_system_development_(GO:0051960),1/181,0.0180185459274039,0.0248409965969534,0.0374485596709318,0.0516273849607875,-1.23725439660271,4.96925130111681,ninaE +regulation_of_ATPase_activity_(GO:0043462),1/128,0.012759357967693,0.0221562904571456,0.0265432098761497,0.0460884027376013,-1.13928105798473,4.96896330427186,ninaE +enzyme_linked_receptor_protein_signaling_pathway_(GO:0007167),1/224,0.0222751137552907,0.0270249541884042,0.0462962962967749,0.0561683006541754,-1.30472573147515,4.96354878871702,ninaE +peptidyl-serine_phosphorylation_(GO:0018105),1/104,0.0103732186603728,0.0221209874058013,0.0216049382715801,0.0460347352995582,-1.07707302696674,4.92063819879958,ninaE +cellular_biogenic_amine_biosynthetic_process_(GO:0042401),1/193,0.019207355367651,0.0254405807263133,0.039917695473563,0.0528717122922165,-1.24211775816428,4.90942321537268,ninaE +regulation_of_cellular_carbohydrate_metabolic_process_(GO:0010675),1/174,0.0173247412370909,0.0245371871598283,0.0360082304523507,0.0509987813273636,-1.2085389427007,4.9013743077698,ninaE +Wnt_signaling_pathway_(GO:0016055),1/179,0.0178203410172076,0.0248131330619346,0.0370370370375952,0.051570557900449,-1.21081431682568,4.8764514031997,ninaE +protein_localization_to_Golgi_apparatus_(GO:0034067),1/111,0.0110694734734167,0.0221209874058013,0.0230452674897226,0.0460347352995582,-1.08265566808813,4.87580919596597,ninaE +R8_cell_development_(GO:0045463),1/145,0.0144477973895283,0.0222793137315156,0.0300411522629267,0.0463251413400272,-1.14949370866092,4.87065003730905,ninaE +protein_acylation_(GO:0043543),1/196,0.0195044452235069,0.0254405807263133,0.0405349794240327,0.0528717122922165,-1.23269818038537,4.85327188217592,ninaE +mitochondrial_translation_(GO:0032543),1/243,0.0241529776510283,0.0275795246534233,0.0502057613175465,0.0573283779750531,-1.30224866953391,4.84872446912735,ninaE +peripheral_nervous_system_neuron_differentiation_(GO:0048934),1/137,0.0136534176704873,0.0222300974197204,0.0283950617281085,0.0462238451285855,-1.12658807334099,4.83730490051792,ninaE +cellular_protein_modification_process_(GO:0006464),1/189,0.0188111655594366,0.0252344903846101,0.0390946502050631,0.0524440429580115,-1.19390316067177,4.74374100705633,ninaE +amino_acid_transmembrane_transport_(GO:0003333),1/173,0.01722560628096,0.0245019399686069,0.0358024691351392,0.0509259259249825,-1.16083795507504,4.71457882313293,ninaE +endoderm_development_(GO:0007492),1/209,0.0207913145666386,0.0263889761807336,0.043209876543089,0.0548433048431514,-1.21320450244603,4.69900788035373,ninaE +cellular_protein_catabolic_process_(GO:0044257),1/180,0.017919445972014,0.0248409965969534,0.0372427983542348,0.0516273849607875,-1.1569425979456,4.65307132494121,ninaE +R7_cell_development_(GO:0045467),1/192,0.0191083154164956,0.0254405807263133,0.0397119341561547,0.0528717122922165,-1.17127558647511,4.63547736300586,ninaE +octopamine_or_tyramine_signaling_pathway_(GO:0007211),1/183,0.0182167308377658,0.0248409965969534,0.0378600823045775,0.0516273849607875,-1.15306336447157,4.61849710041675,ninaE +protein_phosphorylation_(GO:0006468),1/135,0.0134547727383542,0.0222003750182844,0.0279835390944474,0.0461728395058382,-1.06666024880653,4.59562182696061,ninaE +peripheral_nervous_system_neuron_development_(GO:0048935),1/107,0.010671643581834,0.0221209874058013,0.0222222222220849,0.0460347352995582,-1.00333681507684,4.55531487952113,ninaE +protein_targeting_to_membrane_(GO:0006612),1/164,0.0163331666586851,0.0240622544525272,0.0339506172838725,0.0500165343914193,-1.10174433898397,4.53319040458215,ninaE +phosphorylation_(GO:0016310),1/104,0.0103732186603728,0.0221209874058013,0.0216049382715801,0.0460347352995582,-0.982678200058525,4.48939279628335,ninaE +regulation_of_ion_transport_(GO:0043269),1/178,0.0177212310621706,0.0247796875021877,0.0368312757200075,0.0515013601169597,-1.08824555008396,4.38888544863467,ninaE +retinal_cell_programmed_cell_death_(GO:0046666),1/224,0.0222751137552907,0.0270249541884042,0.0462962962967749,0.0561683006541754,-1.12213188429488,4.26890971850103,ninaE +lysosomal_transport_(GO:0007041),1/186,0.0185139706997011,0.0249371850240872,0.0384773662553733,0.0518266565888701,-1.06946660697356,4.26634790778556,ninaE +pupal_development_(GO:0035209),1/131,0.013057422871116,0.0222003750182844,0.0271604938268313,0.0461728395058382,-0.982339361390321,4.26177961640244,ninaE +photoreceptor_cell_fate_specification_(GO:0043704),1/140,0.0139513475680906,0.0222300974197204,0.0290123456789891,0.0462238451285855,-0.996834243369716,4.25865449596645,ninaE +phospholipid_transport_(GO:0015914),1/128,0.012759357967693,0.0221562904571456,0.0265432098761497,0.0460884027376013,-0.972388013550061,4.24106090677128,ninaE +photoreceptor_cell_development_(GO:0042461),1/123,0.0122624831239144,0.0221562904571456,0.0255144032922822,0.0460884027376013,-0.95208143618245,4.19031112827941,ninaE +positive_regulation_of_cell_death_(GO:0010942),1/149,0.0148448672427779,0.0227851450703103,0.0308641975306886,0.0473729543494291,-0.975168757821075,4.10555907334576,ninaE +sensory_organ_morphogenesis_(GO:0090596),1/209,0.0207913145666386,0.0263889761807336,0.043209876543089,0.0548433048431514,-1.05115604375409,4.07135855754183,ninaE +transmembrane_transport_(GO:0055085),1/209,0.0207913145666386,0.0263889761807336,0.043209876543089,0.0548433048431514,-1.04269047416999,4.03856954455418,ninaE +regulation_of_cell_communication_(GO:0010646),1/258,0.0256342267108608,0.0283868953509532,0.0532921810691243,0.0590148313852719,-1.09899853124261,4.0265403154111,ninaE +photoreceptor_cell_morphogenesis_(GO:0008594),1/125,0.012461248063109,0.0221562904571456,0.0259259259256797,0.0460884027376013,-0.918114447684132,4.02605268160235,ninaE +regulation_of_calcium-mediated_signaling_(GO:0050848),1/209,0.0207913145666386,0.0263889761807336,0.043209876543089,0.0548433048431514,-1.03262265029494,3.99957464828445,ninaE +instar_larval_development_(GO:0002168),1/175,0.0174238711939003,0.0245721260426799,0.0362139917695224,0.0510710140339418,-0.983554229741098,3.98331014832819,ninaE +terminal_region_determination_(GO:0007362),1/217,0.0215828141411773,0.0266753882643765,0.0448559670777948,0.055439959309634,-1.03651282710631,3.97591593972706,ninaE +positive_regulation_of_posttranscriptional_gene_silencing_(GO:0060148),1/224,0.0222751137552907,0.0270249541884042,0.0462962962967749,0.0561683006541754,-1.03853717400212,3.95089159943805,ninaE +negative_regulation_of_gene_expression_(GO:0010629),1/202,0.0200984899255576,0.0260098104918981,0.0417695473241906,0.0540547083018937,-1.01001959674731,3.94625826742833,ninaE +negative_regulation_of_transport_(GO:0051051),1/214,0.0212860393034425,0.0266753882643765,0.0442386831272124,0.055439959309634,-1.02133185431195,3.93182517465395,ninaE +positive_regulation_of_nervous_system_development_(GO:0051962),1/250,0.024844367218502,0.0280775382948824,0.0516460905344592,0.0583671571108615,-1.06108195179847,3.92082962312534,ninaE +compound_eye_morphogenesis_(GO:0001745),1/224,0.0222751137552907,0.0270249541884042,0.0462962962967749,0.0561683006541754,-1.02634514058609,3.90450962717043,ninaE +phospholipid_translocation_(GO:0045332),1/143,0.0142492324620072,0.0222300974197204,0.0296296296293541,0.0462238451285855,-0.916049492500825,3.89417424341288,ninaE +heart_morphogenesis_(GO:0003007),1/255,0.0253380669037321,0.0282485205345662,0.0526748971192895,0.0587253920586673,-1.05825770365164,3.88957051838466,ninaE +rhodopsin_biosynthetic_process_(GO:0016063),1/237,0.0235601630086221,0.027430925553723,0.0489711934151927,0.0570181098629265,-1.03215899152577,3.86873626911314,ninaE +rhodopsin_metabolic_process_(GO:0046154),1/237,0.0235601630086221,0.027430925553723,0.0489711934151927,0.0570181098629265,-1.02588192460254,3.84520857941715,ninaE +receptor_internalization_(GO:0031623),1/160,0.0159363968198154,0.0237964296404483,0.0331275720160167,0.0494665102501607,-0.928291260258011,3.84233647062335,ninaE +glutamate_receptor_signaling_pathway_(GO:0007215),1/195,0.0194054202714783,0.0254405807263133,0.0403292181069402,0.0528717122922165,-0.959312759489421,3.78180550073558,ninaE +negative_regulation_of_translation_(GO:0017148),1/265,0.0263250912551554,0.0287783592144801,0.0547325102880431,0.0598337611544627,-1.01971860449728,3.70895390863573,ninaE +anterior_head_development_(GO:0097065),1/232,0.0230660133009239,0.0272823813236734,0.0479423868312671,0.0567060489402084,-0.981886220677914,3.70111704077141,ninaE +TOR_signaling_(GO:0031929),1/262,0.0260290364510007,0.0287276990930777,0.0541152263368098,0.0597258350874489,-1.01173588761226,3.69136146316434,ninaE +cell_morphogenesis_involved_in_neuron_differentiation_(GO:0048667),1/237,0.0235601630086221,0.027430925553723,0.0489711934151927,0.0570181098629265,-0.979603623738893,3.6717483446141,ninaE +dephosphorylation_(GO:0016311),1/240,0.0238565928300561,0.027430925553723,0.0495884773656361,0.0570181098629265,-0.972504769389283,3.63298088444605,ninaE +protein_complex_localization_(GO:0031503),1/229,0.0227694634723471,0.0271260756168756,0.0473251028798092,0.0563800864633106,-0.953051388280442,3.60475958657348,ninaE +vesicle_fusion_(GO:0006906),1/216,0.0214838941948773,0.0266753882643765,0.0446502057607618,0.055439959309634,-0.937959326299461,3.60218751903023,ninaE +regulation_of_Rho_protein_signal_transduction_(GO:0035023),1/205,0.0203954447721119,0.0262910030265504,0.042386831275358,0.0546392746908912,-0.919054421996975,3.5773675935274,ninaE +membrane_assembly_(GO:0071709),1/310,0.0307605130272077,0.031721779059308,0.063991769546281,0.0659915123446022,-1.02266996839748,3.56044948282078,ninaE +regulation_of_cell_maturation_(GO:1903429),1/266,0.0264237661878408,0.0287783592144801,0.0549382716054612,0.0598337611544627,-0.979517219803247,3.55906743290969,ninaE +regulation_of_phagocytosis_(GO:0050764),1/275,0.0273116155797478,0.029357762675299,0.0567901234569499,0.0610447581133338,-0.98634595875814,3.5512825883899,ninaE +Wnt_protein_secretion_(GO:0061355),1/240,0.0238565928300561,0.027430925553723,0.0495884773656361,0.0570181098629265,-0.948980065820592,3.54509977468966,ninaE +intracellular_pH_reduction_(GO:0051452),1/193,0.019207355367651,0.0254405807263133,0.039917695473563,0.0528717122922165,-0.89218681641483,3.52633447204698,ninaE +ventral_cord_development_(GO:0007419),1/254,0.0252393369663343,0.0282338345725096,0.0524691358026813,0.0586942875080842,-0.94924217833509,3.49259564298827,ninaE +synaptic_vesicle_transport_(GO:0048489),1/227,0.0225717385879436,0.0271260756168756,0.0469135802470496,0.0563800864633106,-0.916859396468561,3.47586592144534,ninaE +negative_regulation_of_cell_proliferation_(GO:0008285),1/257,0.0255355117768667,0.0283727908631852,0.0530864197529844,0.0589849108366494,-0.945120820021125,3.46640562198163,ninaE +generation_of_neurons_(GO:0048699),1/238,0.0236589779499573,0.027430925553723,0.0491769547327449,0.0570181098629265,-0.909099494634662,3.40367997960804,ninaE +protein_complex_subunit_organization_(GO:0071822),1/183,0.0182167308377658,0.0248409965969534,0.0378600823045775,0.0516273849607875,-0.847310142868354,3.39382861217224,ninaE +proteasomal_protein_catabolic_process_(GO:0010498),1/240,0.0238565928300561,0.027430925553723,0.0495884773656361,0.0570181098629265,-0.907753068325443,3.39108829984924,ninaE +protein_stabilization_(GO:0050821),1/213,0.0211871043558376,0.0266753882643765,0.0440329218098084,0.055439959309634,-0.873182066164052,3.36556027042334,ninaE +negative_regulation_of_cell_death_(GO:0060548),1/229,0.0227694634723471,0.0271260756168756,0.0473251028798092,0.0563800864633106,-0.882522963413949,3.33799745937892,ninaE +axonal_transport_(GO:0098930),1/244,0.0242517625873186,0.0275968332890177,0.0504115226341703,0.0573648361009524,-0.891885440444126,3.31715917690349,ninaE +antennal_morphogenesis_(GO:0048800),1/229,0.0227694634723471,0.0271260756168756,0.0473251028798092,0.0563800864633106,-0.877003527032128,3.31712110218086,ninaE +neuron_maturation_(GO:0042551),1/252,0.0250418620924775,0.0282041450188313,0.0520576131679664,0.0586314414519758,-0.886263023569366,3.26783466670909,ninaE +membrane_fusion_(GO:0061025),1/243,0.0241529776510283,0.0275795246534233,0.0502057613175465,0.0573283779750531,-0.861784360583288,3.20872273785238,ninaE +neuron_migration_(GO:0001764),1/271,0.0269170658530456,0.0290282082728923,0.055967078189617,0.060356652949587,-0.883414723737494,3.1935396106491,ninaE +sensory_perception_of_smell_(GO:0007608),1/266,0.0264237661878408,0.0287783592144801,0.0549382716054612,0.0598337611544627,-0.862876620381353,3.1352548134226,ninaE +regulation_of_cytoskeleton_organization_(GO:0051493),1/290,0.0287904645222226,0.0302646818050752,0.0598765432095615,0.0629433666469445,-0.879712980981773,3.12096745434541,ninaE +negative_regulation_of_peptide_secretion_(GO:0002792),1/295,0.0292831641582293,0.0305805195323281,0.0609053497941832,0.0636036880762039,-0.876046092007032,3.09309319547733,ninaE +peripheral_nervous_system_development_(GO:0007422),1/197,0.0196034651726905,0.025469068925149,0.040740740740307,0.0529308836389815,-0.786167522054157,3.09124916691815,ninaE +negative_regulation_of_hydrolase_activity_(GO:0051346),1/314,0.031154282712825,0.0318294529264156,0.0648148148156722,0.066219470245114,-0.890163742881134,3.08780315711206,ninaE +Golgi_to_plasma_membrane_protein_transport_(GO:0043001),1/217,0.0215828141411773,0.0266753882643765,0.0448559670777948,0.055439959309634,-0.786190543902435,3.01571522649739,ninaE +organelle_assembly_(GO:0070925),1/355,0.035185809291707,0.0355086148815391,0.0732510288059871,0.073923056593198,-0.88063950714525,2.94759943436103,ninaE +protein_targeting_to_ER_(GO:0045047),1/218,0.0216817290860186,0.0266976514865155,0.0450617283957679,0.0554864566067292,-0.768460108662099,2.94418995691503,ninaE +cytoplasmic_translation_(GO:0002181),1/314,0.031154282712825,0.0318294529264156,0.0648148148156722,0.066219470245114,-0.837567064443867,2.90535561189241,ninaE +Golgi_to_plasma_membrane_transport_(GO:0006893),1/235,0.0233625181261782,0.027430925553723,0.0485596707818668,0.0570181098629265,-0.769680628037595,2.89139943451182,ninaE +RNA_transport_(GO:0050658),1/287,0.0284947847388071,0.0302356236778339,0.0592592592586106,0.0628795998564035,-0.807249540068928,2.87222147155872,ninaE +protein_modification_process_(GO:0036211),1/232,0.0230660133009239,0.0272823813236734,0.0479423868312671,0.0567060489402084,-0.755409831948844,2.84743806656317,ninaE +negative_regulation_of_nervous_system_development_(GO:0051961),1/305,0.0302681884089415,0.0315094705834406,0.0629629629626922,0.0655450403081654,-0.813312870773491,2.84469027341954,ninaE +protein_ubiquitination_(GO:0016567),1/265,0.0263250912551554,0.0287783592144801,0.0547325102880431,0.0598337611544627,-0.76624532570539,2.78701259662703,ninaE +regulation_of_macroautophagy_(GO:0016241),1/271,0.0269170658530456,0.0290282082728923,0.055967078189617,0.060356652949587,-0.770763051362142,2.78630440359424,ninaE +regulation_of_G-protein_coupled_receptor_protein_signaling_pathway_(GO:0008277),1/216,0.0214838941948773,0.0266753882643765,0.0446502057607618,0.055439959309634,-0.724496770470795,2.78239487682687,ninaE +regulation_of_Wnt_signaling_pathway_(GO:0030111),1/254,0.0252393369663343,0.0282338345725096,0.0524691358026813,0.0586942875080842,-0.755488260992217,2.77970687448609,ninaE +protein_dephosphorylation_(GO:0006470),1/247,0.0245480874060865,0.0278380372646342,0.0510288065837377,0.0578677188063005,-0.741205589296646,2.74773905284465,ninaE +regulation_of_autophagy_(GO:0010506),1/271,0.0269170658530456,0.0290282082728923,0.055967078189617,0.060356652949587,-0.742510419279185,2.6841712862286,ninaE +regulation_of_intracellular_transport_(GO:0032386),1/320,0.0317447872398181,0.0323326536701851,0.0660493827167322,0.0672725194337087,-0.762821728694538,2.63175536836805,ninaE +basal_protein_localization_(GO:0045175),1/284,0.0281990599542535,0.0300183541448505,0.0586419753085345,0.0624253285542464,-0.705803140745557,2.51863495972219,ninaE +neuron_development_(GO:0048666),1/331,0.0328269113456613,0.0333292471370244,0.0683127572026805,0.0693592365374061,-0.737014510071865,2.51801496164119,ninaE +"regulation_of_vesicle_targeting,_to,_from_or_within_Golgi_(GO:0048209)",1/288,0.0285933496680683,0.0302429659950723,0.0594650205768633,0.0628956948409131,-0.705900115186401,2.50917922013013,ninaE +receptor_clustering_(GO:0043113),1/226,0.0224728686435099,0.0271260756168756,0.0467078189290632,0.0563800864633106,-0.65580488230359,2.48907236846753,ninaE +RNA_splicing_(GO:0008380),1/278,0.0276074753753601,0.0295794379021715,0.0574074074078041,0.0615079365083615,-0.685890490524197,2.46211962271749,ninaE +intracellular_protein_transmembrane_transport_(GO:0065002),1/291,0.0288890144502991,0.0302646818050752,0.0600823045266288,0.0629433666469445,-0.678087438435931,2.40334115744526,ninaE +cellular_protein_localization_(GO:0034613),1/307,0.0304651332563588,0.031515655092785,0.0633744855965474,0.0655598126860835,-0.686378454242919,2.39626552996622,ninaE +intracellular_protein_transport_(GO:0006886),1/291,0.0288890144502991,0.0302646818050752,0.0600823045266288,0.0629433666469445,-0.675729201692656,2.39498287339095,ninaE +antennal_development_(GO:0007469),1/312,0.0309574078701267,0.0318253725767658,0.0644032921812426,0.0662089919620251,-0.644880261792657,2.24105110109645,ninaE +eye_development_(GO:0001654),1/332,0.0329252562626363,0.0333292471370244,0.0685185185187708,0.0693592365374061,-0.644549479304342,2.20017947579864,ninaE +regulation_of_neuron_death_(GO:1901214),1/279,0.0277060853027894,0.0295890231389013,0.0576131687247773,0.0615286267934515,-0.570146979932174,2.04460591142583,ninaE +regulation_of_cytoplasmic_translation_(GO:2000765),1/385,0.0381303815200845,0.0383628838464264,0.0794238683133344,0.0799081601932937,-0.6149698313672,2.00894894492817,ninaE +cell_morphogenesis_(GO:0000902),1/446,0.0441038001898689,0.0441038001898689,0.0919753086422608,0.0919753086422608,-0.541544508866644,1.69027377267544,ninaE +protein_localization_to_cell_surface_(GO:0034394),1/307,0.0304651332563588,0.031515655092785,0.0633744855965474,0.0655598126860835,-0.455557594736027,1.59043011101557,ninaE +protein_localization_to_membrane_(GO:0072657),1/389,0.0385226511327981,0.0386397412578218,0.0802469135803222,0.0804908251717517,-0.333794678032805,1.08700532963294,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_AutoRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_AutoRIF_Predicted_zscore.csv new file mode 100644 index 0000000..ed5444e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_AutoRIF_Predicted_zscore.csv @@ -0,0 +1,49 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +tetrahydrofolate_metabolic_process_(GO:0046653),1/96,0.009577198859871,0.0199004950251436,0.0104932929466962,0.0217438338379698,-1.64976243471283,7.66870641377833,ninaE +acyl-CoA_metabolic_process_(GO:0006637),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.80636873856877,7.07556562640687,ninaE +acyl-CoA_biosynthetic_process_(GO:0071616),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.80293341666404,7.06210943384455,ninaE +ER-associated_misfolded_protein_catabolic_process_(GO:0071712),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.76207813629498,6.90207886463442,ninaE +N-glycan_processing_(GO:0006491),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.73194005895419,6.78402769405924,ninaE +coenzyme_A_metabolic_process_(GO:0015936),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.72946073580935,6.77431615884173,ninaE +coenzyme_A_biosynthetic_process_(GO:0015937),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.72381486733641,6.75220123178093,ninaE +divalent_metal_ion_transport_(GO:0070838),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.67050486217444,6.54338537264109,ninaE +clathrin-dependent_endocytosis_(GO:0072583),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.65511808334481,6.48311519575887,ninaE +cellular_response_to_ketone_(GO:1901655),1/199,0.0198014900743818,0.0199004950251436,0.0216356555610624,0.0217438338379698,-1.65162010631593,6.4776508987949,ninaE +wax_metabolic_process_(GO:0010166),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.62188264156614,6.35293161562564,ninaE +rhabdomere_membrane_biogenesis_(GO:0045313),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.60979164610523,6.30557105737105,ninaE +wax_biosynthetic_process_(GO:0010025),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.60097703163265,6.27104411841308,ninaE +response_to_lipopolysaccharide_(GO:0032496),1/184,0.0183158157916945,0.0199004950251436,0.0200129813926229,0.0217438338379698,-1.55621559336202,6.22484734269662,ninaE +cellular_response_to_light_stimulus_(GO:0071482),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.58333897012732,6.20195564326461,ninaE +detection_of_visible_light_(GO:0009584),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.58124222923725,6.19374268682193,ninaE +deactivation_of_rhodopsin_mediated_signaling_(GO:0016059),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.56395324918546,6.12602156745236,ninaE +compound_eye_pigmentation_(GO:0048072),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.55094482109724,6.07506741580582,ninaE +sodium_ion_transport_(GO:0006814),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.54720083903381,6.06040219810786,ninaE +response_to_light_stimulus_(GO:0009416),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.49526377991892,5.85696418328641,ninaE +fatty-acyl-CoA_biosynthetic_process_(GO:0046949),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.49497356582898,5.85582741159896,ninaE +cytosolic_calcium_ion_transport_(GO:0060401),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.49063186198089,5.83882091129166,ninaE +sensory_perception_of_light_stimulus_(GO:0050953),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.49040593292541,5.83793594477024,ninaE +metarhodopsin_inactivation_(GO:0016060),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.4867781314398,5.82372580763547,ninaE +sensory_perception_of_chemical_stimulus_(GO:0007606),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.48530503610296,5.81795567748033,ninaE +fatty-acyl-CoA_metabolic_process_(GO:0035337),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.48384804662345,5.8122486341402,ninaE +entrainment_of_circadian_clock_by_photoperiod_(GO:0043153),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.48208543768795,5.80534447612943,ninaE +protein_deglycosylation_(GO:0006517),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.46309020548869,5.73093994888922,ninaE +"phototransduction,_UV_(GO:0007604)",1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.45650669123494,5.7051522532985,ninaE +regulation_of_rhodopsin_mediated_signaling_pathway_(GO:0022400),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.44734980548031,5.66928463407599,ninaE +receptor-mediated_endocytosis_(GO:0006898),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.44536849518061,5.66152382048767,ninaE +very_long-chain_fatty_acid_biosynthetic_process_(GO:0042761),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.44386581958388,5.65563782413884,ninaE +very_long-chain_fatty_acid_metabolic_process_(GO:0000038),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.43307430276498,5.61336733759294,ninaE +regulation_of_rhodopsin_gene_expression_(GO:0007468),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.42115764569911,5.56668966469224,ninaE +positive_regulation_of_phagocytosis_(GO:0050766),1/166,0.0165315215754182,0.0199004950251436,0.0180657723927188,0.0217438338379698,-1.33880141615417,5.49241449772154,ninaE +long-chain_fatty-acyl-CoA_metabolic_process_(GO:0035336),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.38566671869277,5.42767132485187,ninaE +rhodopsin_mediated_signaling_pathway_(GO:0016056),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.37336967414441,5.37950367012282,ninaE +phosphatidylethanolamine_metabolic_process_(GO:0046337),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.36401537690043,5.34286278798976,ninaE +phosphatidylinositol_dephosphorylation_(GO:0046856),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.36383239268234,5.34214603685471,ninaE +stabilization_of_membrane_potential_(GO:0030322),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.35341218998378,5.30132999168083,ninaE +phospholipid_dephosphorylation_(GO:0046839),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.35295902761444,5.299554949844,ninaE +regulation_of_clathrin-dependent_endocytosis_(GO:2000369),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.35195703225303,5.29563012332013,ninaE +eclosion_rhythm_(GO:0008062),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.345611241453,5.27077359303462,ninaE +negative_phototaxis_(GO:0046957),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.33964862152926,5.24741794716072,ninaE +long-chain_fatty_acid_metabolic_process_(GO:0001676),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.31891237506643,5.16619384847013,ninaE +regulation_of_metal_ion_transport_(GO:0010959),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.30824611198545,5.12441398215235,ninaE +regulation_of_membrane_potential_in_photoreceptor_cell_(GO:0016057),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.27561817245375,4.99660999480373,ninaE +photoperiodism_(GO:0009648),1/200,0.0199004950251436,0.0199004950251436,0.0217438338379698,0.0217438338379698,-1.18699102632249,4.64945651758528,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_GeneRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_GeneRIF.csv new file mode 100644 index 0000000..69d3295 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_GeneRIF.csv @@ -0,0 +1,72 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +Golgi_vesicle_transport_(GO:0048193),1/25,0.00249849992505482,0.0125972920864788,0.00779844031194652,0.0383323335331485,-704.333333333333,4220.41094397102,ninaE +glycolipid_metabolic_process_(GO:0006664),1/29,0.00289796989864075,0.0125972920864788,0.00899820035994259,0.0383323335331485,-657.101240264773,3839.93197037965,ninaE +glycolipid_biosynthetic_process_(GO:0009247),1/29,0.00289796989864075,0.0125972920864788,0.00899820035994259,0.0383323335331485,-637.668053147322,3726.36938378553,ninaE +Golgi_to_plasma_membrane_protein_transport_(GO:0043001),1/67,0.00668894444714724,0.0125972920864788,0.0203959208157079,0.0383323335331485,-687.666666666667,3443.35274848182,ninaE +Golgi_to_plasma_membrane_transport_(GO:0006893),1/68,0.00678860943064854,0.0125972920864788,0.0206958608279459,0.0383323335331485,-685.666666666667,3423.19711064572,ninaE +amino_acid_transmembrane_transport_(GO:0003333),1/42,0.00419569478464795,0.0125972920864788,0.0128974205158862,0.0383323335331485,-556.8,3047.75411692901,ninaE +endocytosis_(GO:0006897),1/45,0.00449504975258798,0.0125972920864788,0.0137972405519436,0.0383323335331485,-512.970797903184,2772.49356153415,ninaE +ERAD_pathway_(GO:0036503),1/6,0.000599924996256889,0.0125972920864788,0.00209958008399649,0.0383323335331485,-331.557988572318,2459.73121158395,ninaE +regulation_of_phosphate_metabolic_process_(GO:0019220),1/32,0.00319751987613326,0.0125972920864788,0.00989802039582633,0.0383323335331485,-310.739446116326,1785.31613938473,ninaE +eye_pigment_biosynthetic_process_(GO:0006726),1/72,0.00718721936134809,0.0125972920864788,0.0218956208758374,0.0383323335331485,-346.100291279895,1708.16100066304,ninaE +regulation_of_eye_pigmentation_(GO:0048073),1/14,0.00139954497719391,0.0125972920864788,0.0044991001799787,0.0383323335331485,-259.288273732329,1703.94092287108,ninaE +eye_pigment_metabolic_process_(GO:0042441),1/72,0.00718721936134809,0.0125972920864788,0.0218956208758374,0.0383323335331485,-273.630213069546,1350.48848655988,ninaE +regulation_of_protein_modification_process_(GO:0031399),1/41,0.00409589979518808,0.0125972920864788,0.012597480503956,0.0383323335331485,-218.375073823467,1200.5756797081,ninaE +cellular_response_to_radiation_(GO:0071478),1/12,0.00119966998350231,0.0125972920864788,0.00389922015600805,0.0383323335331485,-160.110628755334,1076.8574605919,ninaE +eye_morphogenesis_(GO:0048592),1/108,0.0107711085559963,0.0141620131014026,0.0326934613077191,0.042985847274964,-220.503658939122,999.077352060907,ninaE +transmembrane_transport_(GO:0055085),1/66,0.00658927446395104,0.0125972920864788,0.0200959808038449,0.0383323335331485,-135.158625646147,678.808791952613,ninaE +rhodopsin_mediated_signaling_pathway_(GO:0016056),1/9,0.000899819991017392,0.0125972920864788,0.00299940011998138,0.0383323335331485,-91.3056663968213,640.355475018786,ninaE +membrane_fusion_(GO:0061025),1/74,0.00738649432476992,0.0125972920864788,0.022495500899713,0.0383323335331485,-128.157894736842,629.012024283138,ninaE +regulation_of_endocytosis_(GO:0030100),1/153,0.0152418570930958,0.0183884639231768,0.0461907618478925,0.0557238552286763,-150.302927955697,628.82384462785,ninaE +regulation_of_rhodopsin_gene_expression_(GO:0007468),1/26,0.00259837491877617,0.0125972920864788,0.00809838032390602,0.0383323335331485,-104.96976360181,624.871258044561,ninaE +retinal_cell_programmed_cell_death_(GO:0046666),1/90,0.0089799739990483,0.0131560449462897,0.0272945410917176,0.0399838399665003,-120.624116937435,568.472307324277,ninaE +"regulation_of_vesicle_targeting,_to,_from_or_within_Golgi_(GO:0048209)",1/106,0.0105721736088264,0.0141620131014026,0.032093581283824,0.042985847274964,-113.674662522354,517.166271562497,ninaE +positive_regulation_of_endocytosis_(GO:0045807),1/23,0.00229873493679307,0.0125972920864788,0.00719856028798814,0.0383323335331485,-81.6816257238338,496.24824954708,ninaE +positive_regulation_of_protein_secretion_(GO:0050714),1/52,0.00519336966850864,0.0125972920864788,0.0158968206358298,0.0383323335331485,-94.1822382323305,495.433658879882,ninaE +positive_regulation_of_protein_metabolic_process_(GO:0051247),1/50,0.00499387469355275,0.0125972920864788,0.01529694061194,0.0383323335331485,-85.1508207316346,451.260451180832,ninaE +rhodopsin_biosynthetic_process_(GO:0016063),1/80,0.00798419920974011,0.0125972920864788,0.0242951409717139,0.0383323335331485,-83.3875388908573,402.786061035604,ninaE +positive_regulation_of_cellular_catabolic_process_(GO:0031331),1/50,0.00499387469355275,0.0125972920864788,0.01529694061194,0.0383323335331485,-72.2883048053723,383.094992641107,ninaE +positive_regulation_of_cellular_protein_metabolic_process_(GO:0032270),1/55,0.0054925746286396,0.0125972920864788,0.016796640671889,0.0383323335331485,-69.2723881598382,360.518319027487,ninaE +rhodopsin_metabolic_process_(GO:0046154),1/80,0.00798419920974011,0.0125972920864788,0.0242951409717139,0.0383323335331485,-73.3988940687376,354.538001955084,ninaE +positive_regulation_of_protein_catabolic_process_(GO:0045732),1/50,0.00499387469355275,0.0125972920864788,0.01529694061194,0.0383323335331485,-62.1482765612133,329.357475126545,ninaE +positive_regulation_of_cellular_process_(GO:0048522),1/65,0.00648959948022479,0.0125972920864788,0.0197960407917641,0.0383323335331485,-63.5232886577257,320.002026316535,ninaE +positive_regulation_of_secretion_by_cell_(GO:1903532),1/55,0.0054925746286396,0.0125972920864788,0.016796640671889,0.0383323335331485,-59.5863172179906,310.108536620701,ninaE +regulation_of_G-protein_coupled_receptor_protein_signaling_pathway_(GO:0008277),1/72,0.00718721936134809,0.0125972920864788,0.0218956208758374,0.0383323335331485,-51.6771291847887,255.049934726275,ninaE +phospholipid_translocation_(GO:0045332),1/31,0.00309767488375283,0.0125972920864788,0.00959808038395424,0.0383323335331485,-41.5176110613403,239.851535609841,ninaE +positive_regulation_of_cellular_biosynthetic_process_(GO:0031328),1/50,0.00499387469355275,0.0125972920864788,0.01529694061194,0.0383323335331485,-44.9943159800827,238.449320338751,ninaE +positive_regulation_of_peptide_secretion_(GO:0002793),1/79,0.00788459422959602,0.0125972920864788,0.0239952009597325,0.0383323335331485,-48.1768827024725,233.313152431852,ninaE +regulation_of_ATPase_activity_(GO:0043462),1/126,0.0125606230307462,0.0161770431376108,0.0380923815237313,0.0490562601768443,-35.381163239852,154.870021374224,ninaE +phosphatidylinositol_biosynthetic_process_(GO:0006661),1/38,0.00379648482436267,0.0125972920864788,0.0116976604678519,0.0383323335331485,-27.137082417284,151.253405022519,ninaE +phosphatidylinositol_metabolic_process_(GO:0046488),1/38,0.00379648482436267,0.0125972920864788,0.0116976604678519,0.0383323335331485,-26.7269915082983,148.96768965345,ninaE +positive_regulation_of_catabolic_process_(GO:0009896),1/44,0.00439526976377743,0.0125972920864788,0.0134973005398356,0.0383323335331485,-24.2314265332898,131.509437064905,ninaE +misfolded_or_incompletely_synthesized_protein_catabolic_process_(GO:0006515),1/23,0.00229873493679307,0.0125972920864788,0.00719856028798814,0.0383323335331485,-21.1559875055887,128.531008951563,ninaE +phospholipid_transport_(GO:0015914),1/30,0.00299782489129492,0.0125972920864788,0.00929814037185109,0.0383323335331485,-21.1343504416426,122.787792450395,ninaE +regulation_of_cell_maturation_(GO:1903429),1/94,0.00937814390799243,0.0133169643493493,0.0284943011397043,0.0404619076183801,-19.513541394321,91.1160113831832,ninaE +organelle_membrane_fusion_(GO:0090174),1/99,0.00987574378724874,0.0137485844881306,0.0299940011995237,0.0417563546111016,-8.47215863126315,39.1216636770126,ninaE +rhabdomere_morphogenesis_(GO:0061541),1/37,0.00369666983364024,0.0125972920864788,0.0113977204558715,0.0383323335331485,-6.9198930382176,38.7536355137574,ninaE +regulation_of_protein_dephosphorylation_(GO:0035304),1/58,0.00579173458653026,0.0125972920864788,0.0176964607078945,0.0383323335331485,-6.902005087504,35.5544606530493,ninaE +dephosphorylation_(GO:0016311),1/84,0.00838256912844064,0.0129383132199845,0.0254949010198852,0.0393508254872142,-6.92651417265914,33.1198259370867,ninaE +vesicle_fusion_(GO:0006906),1/67,0.00668894444714724,0.0125972920864788,0.0203959208157079,0.0383323335331485,-6.61012048729621,33.0988510146302,ninaE +synaptic_vesicle_transport_(GO:0048489),1/77,0.0076853692688853,0.0125972920864788,0.0233953209358355,0.0383323335331485,-6.56729392594497,31.972455770551,ninaE +protein_localization_to_cell_surface_(GO:0034394),1/107,0.010671643581834,0.0141620131014026,0.0323935212957531,0.042985847274964,-6.84971789174602,31.0988507188417,ninaE +neuron_maturation_(GO:0042551),1/53,0.00529310965565138,0.0125972920864788,0.0161967606477854,0.0383323335331485,-5.75264589420682,30.1516269289074,ninaE +photoreceptor_cell_morphogenesis_(GO:0008594),1/176,0.0175229961496398,0.0200666568810391,0.0530893821236742,0.0607959053351753,-7.16512849294614,28.9775078185527,ninaE +regulation_of_neuron_death_(GO:1901214),1/91,0.00907952397701686,0.0131560449462897,0.027594481103641,0.0399838399665003,-6.02997239903779,28.3513233121177,ninaE +regulation_of_eye_photoreceptor_cell_development_(GO:0042478),1/172,0.0171264663226879,0.0199340837526367,0.0518896220754893,0.0603961174977007,-6.65179788683652,27.0537285608642,ninaE +regulation_of_intracellular_protein_transport_(GO:0033157),1/196,0.0195044452235069,0.0219812001725236,0.0590881823632945,0.0665914436157763,-6.66918673577941,26.2573409913041,ninaE +regulation_of_cytoplasmic_translation_(GO:2000765),1/152,0.0151426171310597,0.0183884639231768,0.0458908218354781,0.0557238552286763,-6.20941052060766,26.0189339005199,ninaE +protein_dephosphorylation_(GO:0006470),1/88,0.00878085904308633,0.0131560449462897,0.0266946610676375,0.0399838399665003,-4.91095661570355,23.2542686314824,ninaE +organelle_fusion_(GO:0048284),1/128,0.012759357967693,0.0161770431376108,0.0386922615479336,0.0490562601768443,-4.63495085652075,20.2152932867104,ninaE +GTP_metabolic_process_(GO:0046039),1/156,0.0155395469773325,0.0183884639231768,0.0470905818833884,0.0557238552286763,-4.57202373281651,19.0395851516625,ninaE +protein_modification_process_(GO:0036211),1/64,0.00638991949615344,0.0125972920864788,0.0194961007798838,0.0383323335331485,-2.87887730705989,14.5470637890002,ninaE +proteasomal_protein_catabolic_process_(GO:0010498),1/75,0.00748612430618783,0.0125972920864788,0.0227954409118713,0.0383323335331485,-1.70906157800308,8.36535065230359,ninaE +protein_maturation_(GO:0051604),1/44,0.00439526976377743,0.0125972920864788,0.0134973005398356,0.0383323335331485,-1.32143670935509,7.17173615533707,ninaE +cellular_protein_complex_localization_(GO:0034629),1/293,0.029086099303291,0.0303693095666715,0.0881823635272395,0.0920727619181471,0.0228235797721413,-0.0807382971830467,ninaE +eye_photoreceptor_cell_development_(GO:0042462),1/285,0.0282976398822129,0.0303693095666715,0.0857828434314966,0.0920727619181471,0.139479432969259,-0.497240952961777,ninaE +peripheral_nervous_system_development_(GO:0007422),1/267,0.0265224361221713,0.0294017180856344,0.0803839232156999,0.0891144847951403,0.596453930905282,-2.16498715998711,ninaE +photoreceptor_cell_development_(GO:0042461),1/291,0.0288890144502991,0.0303693095666715,0.0875824835036985,0.0920727619181471,1.12308816269,-3.98055450054983,ninaE +peripheral_nervous_system_neuron_development_(GO:0048935),1/380,0.0376399319978948,0.0376399319978948,0.114277144571174,0.114277144571174,1.3000538689584,-4.26377337565645,ninaE +protein_complex_localization_(GO:0031503),1/271,0.0269170658530456,0.0294017180856344,0.0815836832631566,0.0891144847951403,1.3655484967262,-4.93645068095253,ninaE +protein_localization_to_organelle_(GO:0033365),1/156,0.0155395469773325,0.0183884639231768,0.0470905818833884,0.0557238552286763,2.17208395738947,-9.04535494127906,ninaE +cellular_modified_amino_acid_biosynthetic_process_(GO:0042398),1/331,0.0328269113456613,0.0332958672220279,0.0995800839831906,0.101002656611522,9.29131247041523,-31.7438306764241,ninaE +cellular_modified_amino_acid_catabolic_process_(GO:0042219),1/331,0.0328269113456613,0.0332958672220279,0.0995800839831906,0.101002656611522,9.47979901048076,-32.3877961906264,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_GeneRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_GeneRIF_Predicted_zscore.csv new file mode 100644 index 0000000..f12a6af --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Biological_Process_GeneRIF_Predicted_zscore.csv @@ -0,0 +1,23 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +cellular_amide_metabolic_process_(GO:0043603),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-79.0305988472829,309.563699093488,ninaE +calcium_ion_transport_(GO:0006816),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-78.1176612178166,305.987712656066,ninaE +metal_ion_transport_(GO:0030001),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-76.354603929642,299.08179844307,ninaE +amide_biosynthetic_process_(GO:0043604),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-48.3038140198005,189.206555010274,ninaE +eclosion_rhythm_(GO:0008062),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-32.8858252489612,128.814128455266,ninaE +positive_regulation_of_circadian_rhythm_(GO:0042753),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-21.0690425880225,82.5276646645418,ninaE +rhodopsin_biosynthetic_process_(GO:0016063),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-19.2692112892299,75.4777062595052,ninaE +rhodopsin_mediated_signaling_pathway_(GO:0016056),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-18.9488548547448,74.2228666868068,ninaE +ion_transmembrane_transport_(GO:0034220),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-18.9275536351455,74.1394295823114,ninaE +response_to_light_stimulus_(GO:0009416),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-18.8330832772317,73.7693881821827,ninaE +response_to_sucrose_(GO:0009744),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-18.4414104950069,72.2352017143053,ninaE +rhodopsin_metabolic_process_(GO:0046154),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-17.406957917249,68.1832399276265,ninaE +inositol_phosphate_metabolic_process_(GO:0043647),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-16.8275451579478,65.9136739659937,ninaE +inositol_phosphate_catabolic_process_(GO:0071545),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-16.7197547758813,65.4914578891082,ninaE +cytosolic_calcium_ion_transport_(GO:0060401),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-14.3264340602113,56.116795104488,ninaE +regulation_of_ion_transport_(GO:0043269),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-13.8176454513867,54.1238646939678,ninaE +sensory_perception_of_light_stimulus_(GO:0050953),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-10.319509395908,40.4216284328093,ninaE +regulation_of_membrane_potential_in_photoreceptor_cell_(GO:0016057),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-7.34158535544025,28.7570681861131,ninaE +regulation_of_rhodopsin_gene_expression_(GO:0007468),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-7.1500395113834,28.0067810707794,ninaE +regulation_of_metal_ion_transport_(GO:0010959),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-6.85671753757292,26.8578357690534,ninaE +regulation_of_calcium_ion_transport_(GO:0051924),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-1.90618951986467,7.46656469202287,ninaE +pteridine_metabolic_process_(GO:0019889),1/200,0.0199004950251436,0.0199004950251436,0.0220225703951694,0.0220225703951694,-1.80042109250881,7.05226863331719,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_2018.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_2018.csv new file mode 100644 index 0000000..cf69ece --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_2018.csv @@ -0,0 +1,14 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +inaD signaling complex (GO:0016027),1/10,0.000999774988741042,0.002859284964345,0.00213467882784624,0.00605472540263549,-4.37607649315027,30.2298502740666,ninaE +endoplasmic reticulum subcompartment (GO:0098827),1/6,0.000599924996256889,0.002859284964345,0.00135843198137803,0.00605472540263549,-4.02204504993874,29.838369409619,ninaE +rough endoplasmic reticulum (GO:0005791),1/7,0.000699894994744389,0.002859284964345,0.00155249369298117,0.00605472540263549,-3.74442255424031,27.2016581040394,ninaE +perinuclear endoplasmic reticulum (GO:0097038),1/7,0.000699894994744389,0.002859284964345,0.00155249369298117,0.00605472540263549,-3.56587906789617,25.9046146208629,ninaE +secondary lysosome (GO:0005767),1/11,0.00109972498628654,0.002859284964345,0.00232874053947519,0.00605472540263549,-2.56611446883375,17.4821555779566,ninaE +multivesicular body (GO:0005771),1/14,0.00139954497719391,0.00303234745058681,0.00291092567433021,0.00630700562771545,-2.22762867903156,14.6391026964898,ninaE +rhabdomere (GO:0016028),1/33,0.00329735986796975,0.00612366832622953,0.0065980981951921,0.0122536109339282,-1.93862360050649,11.0785227329983,ninaE +perinuclear region of cytoplasm (GO:0048471),1/70,0.0069879243960139,0.0077861543081271,0.0137783815254051,0.0153470470276229,-1.42139012036994,7.05517178449322,ninaE +late endosome (GO:0005770),1/62,0.00619054452708525,0.0077861543081271,0.0122258878320422,0.0153470470276229,-1.35624585789985,6.89614702183293,ninaE +cytoplasmic vesicle (GO:0031410),1/60,0.00599114955729081,0.0077861543081271,0.0118377644090936,0.0153470470276229,-1.302957150338,6.66784669826396,ninaE +lysosome (GO:0005764),1/72,0.00718721936134809,0.0077861543081271,0.014166504948575,0.0153470470276229,-1.34528528221379,6.63958948241737,ninaE +early endosome (GO:0005769),1/61,0.00609084954249059,0.0077861543081271,0.0120318261205844,0.0153470470276229,-1.27447271068088,6.50104414324011,ninaE +integral component of plasma membrane (GO:0005887),1/419,0.0414621231075529,0.0414621231075529,0.0815059188817449,0.0815059188817449,-0.912414193177761,2.90419153433072,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_AutoRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_AutoRIF.csv new file mode 100644 index 0000000..d450e1d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_AutoRIF.csv @@ -0,0 +1,41 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +inaD_signaling_complex_(GO:0016027),1/36,0.00359684984249829,0.0226245598012331,0.0115842204133241,0.0715627515880434,-187.736842105263,1056.52603688684,ninaE +late_endosome_membrane_(GO:0031902),1/129,0.0128587179352548,0.0226245598012331,0.0407013149656146,0.0715627515880434,-182.438596491228,794.288985293782,ninaE +coated_vesicle_(GO:0030135),1/107,0.010671643581834,0.0226245598012331,0.0338134001255254,0.0715627515880434,-165.001158833618,749.132517294747,ninaE +cortical_actin_cytoskeleton_(GO:0030864),1/129,0.0128587179352548,0.0226245598012331,0.0407013149656146,0.0715627515880434,-165.731446338414,721.550510008111,ninaE +cation_channel_complex_(GO:0034703),1/60,0.00599114955729081,0.0226245598012331,0.0190983093299004,0.0715627515880434,-137.779104395254,705.080705143177,ninaE +cytoplasmic_dynein_complex_(GO:0005868),1/76,0.00758574928768814,0.0226245598012331,0.0241077019411633,0.0715627515880434,-140.053660189455,683.669685334686,ninaE +secondary_lysosome_(GO:0005767),1/33,0.00329735986796975,0.0226245598012331,0.0106449592987227,0.0715627515880434,-116.55226225024,666.053423977872,ninaE +rhabdomere_microvillus_(GO:0035996),1/46,0.00459482474131015,0.0226245598012331,0.014715090795235,0.0715627515880434,-111.463034508815,599.98597139814,ninaE +ER_to_Golgi_transport_vesicle_membrane_(GO:0012507),1/42,0.00419569478464795,0.0226245598012331,0.0134627426424562,0.0715627515880434,-102.352695693146,560.247574851952,ninaE +autophagosome_membrane_(GO:0000421),1/127,0.0126599929995141,0.0226245598012331,0.0400751408892024,0.0715627515880434,-122.592236203804,535.643289286803,ninaE +polymeric_cytoskeletal_fiber_(GO:0099513),1/58,0.00579173458653026,0.0226245598012331,0.0184721352536554,0.0715627515880434,-96.8254751662925,498.779340694127,ninaE +MIS_complex_(GO:0036396),1/79,0.00788459422959602,0.0226245598012331,0.0250469630558564,0.0715627515880434,-101.65658164502,492.307019437525,ninaE +autophagosome_(GO:0005776),1/198,0.0197024801250038,0.0254225550000049,0.0623043206008017,0.08039267174297,-110.505677704837,433.956985000336,ninaE +polysome_(GO:0005844),1/132,0.0131567678376675,0.0226245598012331,0.0416405760802107,0.0715627515880434,-84.5201315540186,366.041390627021,ninaE +unconventional_myosin_complex_(GO:0016461),1/24,0.00239861993086724,0.0226245598012331,0.00782717595494386,0.0715627515880434,-51.245151507854,309.15491367834,ninaE +endoplasmic_reticulum_exit_site_(GO:0070971),1/22,0.0021988449422977,0.0226245598012331,0.00720100187851664,0.0715627515880434,-42.0817978048436,257.533157568468,ninaE +rough_endoplasmic_reticulum_(GO:0005791),1/58,0.00579173458653026,0.0226245598012331,0.0184721352536554,0.0715627515880434,-6.60659616390097,34.0327137378204,ninaE +dendrite_(GO:0030425),1/100,0.00997524876197719,0.0226245598012331,0.0316217908578323,0.0715627515880434,-6.69628608158877,30.8541317022763,ninaE +zonula_adherens_(GO:0005915),1/115,0.0114672233607767,0.0226245598012331,0.0363180964311464,0.0715627515880434,-6.85771200910643,30.6420571012263,ninaE +rhabdomere_membrane_(GO:0033583),1/109,0.0108705685283031,0.0226245598012331,0.0344395742015056,0.0715627515880434,-6.51586547984011,29.4627646797034,ninaE +trans-Golgi_network_(GO:0005802),1/105,0.0104726986347653,0.0226245598012331,0.0331872260489697,0.0715627515880434,-6.35015678971142,28.9502602683313,ninaE +rhabdomere_(GO:0016028),1/158,0.0157379818985599,0.0226245598012331,0.0497808390731657,0.0715627515880434,-6.5880484894235,27.3514576830679,ninaE +late_endosome_(GO:0005770),1/195,0.0194054202714783,0.0254225550000049,0.0613650594864661,0.08039267174297,-6.7212543554007,26.4965481191201,ninaE +recycling_endosome_(GO:0055037),1/173,0.01722560628096,0.0237594569392551,0.0544771446467999,0.0751408891679999,-6.44025307946498,26.1561750727727,ninaE +microvillus_membrane_(GO:0031528),1/108,0.0107711085559963,0.0226245598012331,0.0341264871636916,0.0715627515880434,-5.71858771469312,25.9102796706924,ninaE +microvillus_(GO:0005902),1/132,0.0131567678376675,0.0226245598012331,0.0416405760802107,0.0715627515880434,-5.96035240441178,25.8132073699342,ninaE +multivesicular_body_(GO:0005771),1/132,0.0131567678376675,0.0226245598012331,0.0416405760802107,0.0715627515880434,-4.97021255942988,21.5250909282228,ninaE +type_I_terminal_bouton_(GO:0061174),1/159,0.0158371918608632,0.0226245598012331,0.0500939261116304,0.0715627515880434,-3.7884971672652,15.704814145343,ninaE +type_Is_terminal_bouton_(GO:0061177),1/159,0.0158371918608632,0.0226245598012331,0.0500939261116304,0.0715627515880434,-3.71836202939312,15.4140763523056,ninaE +nuclear_periphery_(GO:0034399),1/153,0.0152418570930958,0.0226245598012331,0.0482154038822473,0.0715627515880434,-3.16529750264494,13.2426864338319,ninaE +nuclear_lamina_(GO:0005652),1/137,0.0136534176704873,0.0226245598012331,0.0432060112710212,0.0715627515880434,-2.27754861220777,9.77925945046444,ninaE +lysosome_(GO:0005764),1/220,0.0218795439782923,0.0257406399744615,0.0691922354417148,0.0814026299314292,0.315460505339217,-1.20575413518552,ninaE +cortical_cytoskeleton_(GO:0030863),1/237,0.0235601630086221,0.0269259005812824,0.0745147150901343,0.0851596743887249,0.343596889176703,-1.28786917328246,ninaE +cytoplasmic_vesicle_(GO:0031410),1/212,0.0210881644102314,0.0257406399744615,0.0666875391358647,0.0814026299314292,0.477928088640535,-1.8443451999658,ninaE +early_endosome_(GO:0005769),1/293,0.029086099303291,0.0294802090092247,0.0920475892298348,0.093299937382765,0.56095050416743,-1.9843595510697,ninaE +endocytic_vesicle_(GO:0030139),1/287,0.0284947847388071,0.0294802090092247,0.0901690670009711,0.093299937382765,0.60832130680387,-2.16442801424148,ninaE +sensory_dendrite_(GO:0071683),1/263,0.0261277263867701,0.0282461906884001,0.0826549780839904,0.0893567330637734,0.655000849795584,-2.38731972801964,ninaE +Golgi_membrane_(GO:0000139),1/297,0.0294802090092247,0.0294802090092247,0.093299937382765,0.093299937382765,0.783024021251003,-2.75940493514206,ninaE +lysosomal_membrane_(GO:0005765),1/217,0.0215828141411773,0.0257406399744615,0.0682529743272708,0.0814026299314292,0.989272544096741,-3.79470892587915,ninaE +dendrite_membrane_(GO:0032590),1/257,0.0255355117768667,0.0282461906884001,0.0807764558545902,0.0893567330637734,4.70035556401687,-17.2394244283567,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_AutoRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_AutoRIF_Predicted_zscore.csv new file mode 100644 index 0000000..2f59a18 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_AutoRIF_Predicted_zscore.csv @@ -0,0 +1,9 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +endoplasmic_reticulum_exit_site_(GO:0070971),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-59.3154972198341,232.339435620671,ninaE +secondary_lysosome_(GO:0005767),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-7.35618464462083,28.814253757636,ninaE +rough_endoplasmic_reticulum_(GO:0005791),1/187,0.018613040652374,0.0199004950251436,0.0393882254349146,0.042111879321878,-6.76925126575639,26.9679716063718,ninaE +rhabdomere_membrane_(GO:0033583),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-4.80654024749804,18.8272694444904,ninaE +rhabdomere_microvillus_(GO:0035996),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-4.79271360640094,18.7731103437561,ninaE +unconventional_myosin_complex_(GO:0016461),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-4.29673428746498,16.8303540584295,ninaE +microvillus_membrane_(GO:0031528),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-1.69435789057228,6.63681793943319,ninaE +inaD_signaling_complex_(GO:0016027),1/200,0.0199004950251436,0.0199004950251436,0.042111879321878,0.042111879321878,-1.29214208359752,5.06133433109582,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_GeneRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_GeneRIF.csv new file mode 100644 index 0000000..8e14f08 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_GeneRIF.csv @@ -0,0 +1,10 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +rhabdomere_microvillus_(GO:0035996),1/7,0.000699894994744389,0.0062990549526995,0.00408580183861838,0.0356230847803248,-2.91153093518053,21.1510501047559,ninaE +trans-Golgi_network_(GO:0005802),1/27,0.00269824491234428,0.00674510600541357,0.0143003064351144,0.0356230847803248,-2.14416234843147,12.6830499555036,ninaE +microvillus_membrane_(GO:0031528),1/20,0.00199904995245516,0.00674510600541357,0.0107252298263303,0.0356230847803248,-2.00025685842275,12.4317628665853,ninaE +rhabdomere_membrane_(GO:0033583),1/39,0.0038962948148227,0.00701333066668086,0.0204290091930766,0.0367722165475378,-1.99734967614999,11.0807551707399,ninaE +microvillus_(GO:0005902),1/30,0.00299782489129492,0.00674510600541357,0.0158324821245888,0.0356230847803248,-1.7553437160195,10.198315792901,ninaE +rhabdomere_(GO:0016028),1/54,0.0053928446422504,0.0080892669633756,0.0280898876403402,0.0421348314605104,-1.89874902398972,9.91656286341345,ninaE +cytoplasmic_vesicle_(GO:0031410),1/83,0.00828298414905333,0.0106495510487829,0.0429009193053359,0.0551583248211461,-1.32922914880131,6.37172900620038,ninaE +Golgi_membrane_(GO:0000139),1/111,0.0110694734734167,0.0124531576575938,0.0572012257404774,0.0643513789580371,-1.27388045447578,5.73700227835388,ninaE +early_endosome_(GO:0005769),1/136,0.0135540977053117,0.0135540977053117,0.069969356486421,0.069969356486421,-1.26604560401688,5.44534616234482,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_GeneRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_GeneRIF_Predicted_zscore.csv new file mode 100644 index 0000000..be1767b --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Cellular_Component_GeneRIF_Predicted_zscore.csv @@ -0,0 +1,3 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +rhabdomere_membrane_(GO:0033583),1/200,0.0199004950251436,0.0199004950251436,0.0428297464306148,0.0428297464306148,-38.2577940256208,149.856187482693,ninaE +rhabdomere_(GO:0016028),1/200,0.0199004950251436,0.0199004950251436,0.0428297464306148,0.0428297464306148,-5.82676700361699,22.8235085359924,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_2018.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_2018.csv new file mode 100644 index 0000000..20017fb --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_2018.csv @@ -0,0 +1,7 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +gamma-aminobutyric acid:sodium symporter activity (GO:0005332),1/9,0.000899819991017392,0.00194941497071977,0.00336275510426198,0.00705940701218385,-3.51297130918055,24.6375772741306,Gat +gamma-aminobutyric acid transmembrane transporter activity (GO:0015185),1/10,0.000999774988741042,0.00194941497071977,0.00369871911734345,0.00705940701218385,-3.53131356486105,24.3942445941299,Gat +anion:cation symporter activity (GO:0015296),1/13,0.00129960998047985,0.00194941497071977,0.0047062713414559,0.00705940701218385,-2.92496997591192,19.438446862226,Gat +sodium:amino acid symporter activity (GO:0005283),1/19,0.00189914495729583,0.00227897394875499,0.00671984662089474,0.00806381594507369,-2.34316940133464,14.6831231316481,Gat +G-protein coupled photoreceptor activity (GO:0008020),1/9,0.000899819991017392,0.00194941497071977,0.00336275510426198,0.00705940701218385,-1.61908214390484,11.3551344212161,ninaE +G-protein coupled receptor activity (GO:0004930),1/102,0.0101742437131014,0.0101742437131014,0.0343651200479775,0.0343651200479775,-1.13523756392254,5.20835174048721,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_AutoRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_AutoRIF.csv new file mode 100644 index 0000000..068f6c1 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_AutoRIF.csv @@ -0,0 +1,70 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +flavin_adenine_dinucleotide_binding_(GO:0050660),1/19,0.00189914495729583,0.0207555951336379,0.00558971492452502,0.0586098050173503,-308.280742421013,1931.79549780113,ninaE +guanyl_ribonucleotide_binding_(GO:0032561),1/13,0.00129960998047985,0.0207555951336379,0.0039128004471568,0.0586098050173503,-238.064109007938,1582.10052440324,ninaE +bitter_taste_receptor_activity_(GO:0033038),1/23,0.00229873493679307,0.0207555951336379,0.00670765790947166,0.0586098050173503,-239.587622018999,1455.58976068939,ninaE +dynein_complex_binding_(GO:0070840),1/92,0.00917906895393888,0.0207555951336379,0.0259921743993921,0.0586098050173503,-309.003537405614,1449.48290906213,ninaE +G-protein_coupled_photoreceptor_activity_(GO:0008020),1/79,0.00788459422959602,0.0207555951336379,0.0223588596981891,0.0586098050173503,-258.625,1252.48066422926,ninaE +G-protein_coupled_peptide_receptor_activity_(GO:0008528),1/98,0.00977623381159071,0.0207555951336379,0.0276690888765285,0.0586098050173503,-253.9375,1175.1722062651,ninaE +endonuclease_activity_(GO:0004519),1/174,0.0173247412370909,0.0213465561671299,0.048910005589823,0.0602641140303176,-275.848651417887,1118.73721658584,ninaE +antiporter_activity_(GO:0015297),1/86,0.00858172408627986,0.0207555951336379,0.0243152599217832,0.0586098050173503,-232.083552520018,1104.28149577868,ninaE +GTPase_activity_(GO:0003924),1/112,0.0111689184464014,0.0207555951336379,0.03158188932367,0.0586098050173503,-225.702656232265,1014.44778498118,ninaE +G-protein_coupled_receptor_activity_(GO:0004930),1/154,0.0153410920552976,0.0207555951336379,0.0433202906649981,0.0586098050173503,-229.71875,959.585824764114,ninaE +cyclic_nucleotide_binding_(GO:0030551),1/151,0.0150433721689695,0.0207555951336379,0.0424818334267231,0.0586098050173503,-220.703211258403,926.251159397537,ninaE +GTPase_regulator_activity_(GO:0030695),1/162,0.0161347917409106,0.0211348063627372,0.0455561766348406,0.0596728434770321,-190.066666666667,784.362817052101,ninaE +O-acetyltransferase_activity_(GO:0016413),1/79,0.00788459422959602,0.0207555951336379,0.0223588596981891,0.0586098050173503,-143.623577648205,695.546656092048,ninaE +taste_receptor_activity_(GO:0008527),1/46,0.00459482474131015,0.0207555951336379,0.0131358300727097,0.0586098050173503,-120.104671838662,646.502389963873,ninaE +calcium_ion_binding_(GO:0005509),1/96,0.009577198859871,0.0207555951336379,0.0271101173839822,0.0586098050173503,-121.289339536642,563.797742303116,ninaE +symporter_activity_(GO:0015293),1/86,0.00858172408627986,0.0207555951336379,0.0243152599217832,0.0586098050173503,-111.265970027566,529.416886621937,ninaE +protein_phosphatase_1_binding_(GO:0008157),1/63,0.00629023451194767,0.0207555951336379,0.0178870877583757,0.0586098050173503,-97.5281606859407,494.346539924355,ninaE +endoribonuclease_activity_(GO:0004521),1/131,0.013057422871116,0.0207555951336379,0.036892118501923,0.0586098050173503,-109.922963257146,476.889619408948,ninaE +calcium:cation_antiporter_activity_(GO:0015368),1/49,0.00489411970613004,0.0207555951336379,0.0139742873113251,0.0586098050173503,-81.0664573016034,431.250923506768,ninaE +ribonuclease_activity_(GO:0004540),1/171,0.0170273213665542,0.0213465561671299,0.0480715483510602,0.0602641140303176,-97.4416577000624,396.873643905103,ninaE +DNA-dependent_ATPase_activity_(GO:0008094),1/116,0.0115666483324571,0.0207555951336379,0.0326998323085465,0.0586098050173503,-88.760595267219,395.839366054648,ninaE +calcium_channel_activity_(GO:0005262),1/133,0.013256107805219,0.0207555951336379,0.0374510899945336,0.0586098050173503,-67.0382619488335,289.826307807646,ninaE +lipase_activity_(GO:0016298),1/56,0.00559229961500852,0.0207555951336379,0.0159306875350971,0.0586098050173503,-52.5201407815451,272.388603992226,ninaE +protein_serine/threonine_phosphatase_activity_(GO:0004722),1/105,0.0104726986347653,0.0207555951336379,0.0296254891000649,0.0586098050173503,-54.6627944840784,249.206780196728,ninaE +neuropeptide_receptor_activity_(GO:0008188),1/131,0.013057422871116,0.0207555951336379,0.036892118501923,0.0586098050173503,-41.2604297192711,179.004186590591,ninaE +adrenergic_receptor_activity_(GO:0004935),1/55,0.0054925746286396,0.0207555951336379,0.0156512017888034,0.0586098050173503,-30.3561314388077,157.984180554661,ninaE +protein_transporter_activity_(GO:0008565),1/149,0.0148448672427779,0.0207555951336379,0.041922861933968,0.0586098050173503,-30.6726340739077,129.134890874603,ninaE +peptidyl-prolyl_cis-trans_isomerase_activity_(GO:0003755),1/49,0.00489411970613004,0.0207555951336379,0.0139742873113251,0.0586098050173503,-22.4403566489778,119.376433247706,ninaE +neuropeptide_receptor_binding_(GO:0071855),1/115,0.0114672233607767,0.0207555951336379,0.0324203465625123,0.0586098050173503,-24.8597141625197,111.079727447953,ninaE +myosin_heavy_chain_binding_(GO:0032036),1/135,0.0134547727383542,0.0207555951336379,0.0380100614870149,0.0586098050173503,-19.9620582577526,86.0049586951714,ninaE +potassium_ion_symporter_activity_(GO:0022820),1/64,0.00638991949615344,0.0207555951336379,0.0181665735048729,0.0586098050173503,-16.9732177828839,85.7662399111991,ninaE +phospholipid_transporter_activity_(GO:0005548),1/63,0.00629023451194767,0.0207555951336379,0.0178870877583757,0.0586098050173503,-13.6238313646359,69.0558895836076,ninaE +"phosphatidylinositol-4,5-bisphosphate_binding_(GO:0005546)",1/75,0.00748612430618783,0.0207555951336379,0.0212409167133965,0.0586098050173503,-13.9333631240359,68.1996891151373,ninaE +alcohol_dehydrogenase_(NADP+)_activity_(GO:0008106),1/150,0.0149441222067318,0.0207555951336379,0.0422023476803314,0.0586098050173503,-15.6327660516882,65.7113506714013,ninaE +phosphatase_activity_(GO:0016791),1/132,0.0131567678376675,0.0207555951336379,0.037171604248105,0.0586098050173503,-14.3098401371533,61.9733273853965,ninaE +phosphatidylinositol_bisphosphate_binding_(GO:1902936),1/75,0.00748612430618783,0.0207555951336379,0.0212409167133965,0.0586098050173503,-12.1037379661573,59.2442154183885,ninaE +phospholipase_activity_(GO:0004620),1/120,0.0119642982152921,0.0207555951336379,0.03381777529358,0.0586098050173503,-9.1604544543277,40.5425977630337,ninaE +cation_channel_activity_(GO:0005261),1/83,0.00828298414905333,0.0207555951336379,0.0234768026832397,0.0586098050173503,-6.75900298479277,32.3996320800188,ninaE +channel_activity_(GO:0015267),1/100,0.00997524876197719,0.0207555951336379,0.0282280603690028,0.0586098050173503,-6.67048839506098,30.7352650337911,ninaE +phosphoprotein_phosphatase_activity_(GO:0004721),1/106,0.0105721736088264,0.0207555951336379,0.0299049748462798,0.0586098050173503,-6.74357733637943,30.680106460513,ninaE +GTP_binding_(GO:0005525),1/104,0.0103732186603728,0.0207555951336379,0.0293460033539107,0.0586098050173503,-6.60347575051064,30.1681633550115,ninaE +Rac_GTPase_binding_(GO:0048365),1/100,0.00997524876197719,0.0207555951336379,0.0282280603690028,0.0586098050173503,-6.34913231380241,29.2545692072282,ninaE +potassium_ion_antiporter_activity_(GO:0022821),1/64,0.00638991949615344,0.0207555951336379,0.0181665735048729,0.0586098050173503,-5.74974678472093,29.0536637469123,ninaE +ATPase_binding_(GO:0051117),1/113,0.01126835841763,0.0207555951336379,0.0318613750701418,0.0586098050173503,-6.44677636549002,28.9186697657484,ninaE +Rho_GTPase_binding_(GO:0017048),1/133,0.013256107805219,0.0207555951336379,0.0374510899945336,0.0586098050173503,-6.27517796391747,27.1294572270717,ninaE +small_GTPase_binding_(GO:0031267),1/129,0.0128587179352548,0.0207555951336379,0.0363331470096859,0.0586098050173503,-6.18266176415425,26.917660152581,ninaE +actin_binding_(GO:0003779),1/144,0.0143485174254559,0.0207555951336379,0.0405254332026537,0.0586098050173503,-6.20614629655695,26.3395592263899,ninaE +amino_acid_binding_(GO:0016597),1/174,0.0173247412370909,0.0213465561671299,0.048910005589823,0.0602641140303176,-6.43830506297895,26.1113166537691,ninaE +PDZ_domain_binding_(GO:0030165),1/196,0.0195044452235069,0.0232734602836425,0.0550586920063465,0.0656980985493515,-6.04339871366896,23.7935429097967,ninaE +myosin_binding_(GO:0017022),1/132,0.0131567678376675,0.0207555951336379,0.037171604248105,0.0586098050173503,-5.27731993104548,22.8551173646598,ninaE +myosin_light_chain_binding_(GO:0032027),1/125,0.012461248063109,0.0207555951336379,0.0352152040246552,0.0586098050173503,-4.88900048144298,21.4389105283316,ninaE +GTPase_binding_(GO:0051020),1/100,0.00997524876197719,0.0207555951336379,0.0282280603690028,0.0586098050173503,-4.60053519997044,21.1976485519519,ninaE +phosphoric_diester_hydrolase_activity_(GO:0008081),1/109,0.0108705685283031,0.0207555951336379,0.0307434320849687,0.0586098050173503,-4.49284794964555,20.3152938457138,ninaE +protein_kinase_C_binding_(GO:0005080),1/163,0.0162339816989141,0.0211348063627372,0.0458356623809087,0.0596728434770321,-3.82145703292495,15.7468815649418,ninaE +ion_channel_activity_(GO:0005216),1/113,0.01126835841763,0.0207555951336379,0.0318613750701418,0.0586098050173503,-3.10253648596413,13.9172235838776,ninaE +phosphatidylinositol_phosphate_binding_(GO:1901981),1/139,0.0138520426024091,0.0207555951336379,0.0391280044720436,0.0586098050173503,-2.60147710782912,11.1325597208336,ninaE +phosphatidic_acid_binding_(GO:0070300),1/140,0.0139513475680906,0.0207555951336379,0.0394074902178357,0.0586098050173503,-1.94484667644638,8.30873347068789,ninaE +Rab_GTPase_binding_(GO:0017137),1/235,0.0233625181261782,0.0255875198524809,0.0659586361097826,0.072240410977381,0.403917451167701,-1.51736531666833,ninaE +protein_phosphatase_binding_(GO:0019903),1/274,0.027212985648882,0.0280253135786994,0.0768585802124905,0.0791528661889828,0.550873680912432,-1.98538235263239,ninaE +ATPase_activity_(GO:0016887),1/300,0.0297757387862748,0.0297757387862748,0.0841252096148124,0.0841252096148124,0.887928088075131,-3.12023377743558,ninaE +kinase_binding_(GO:0019900),1/251,0.0249431171569079,0.0263865795557131,0.070430408049707,0.0745083591646443,1.61078397959062,-5.94565714211454,ninaE +sterol-transporting_ATPase_activity_(GO:0034041),1/300,0.0297757387862748,0.0297757387862748,0.0841252096148124,0.0841252096148124,1.90612935330512,-6.69825549188037,ninaE +phosphatidylinositol_binding_(GO:0035091),1/219,0.0217806390337847,0.0246371162841171,0.0614868641698361,0.0695507152085031,4.27861832020347,-16.3731334352703,ninaE +poly(U)_RNA_binding_(GO:0008266),1/248,0.0246468523406328,0.0263865795557131,0.0695919508105346,0.0745083591646443,10.0584184253602,-37.2473904335686,ninaE +phosphatase_binding_(GO:0019902),1/254,0.0252393369663343,0.0263865795557131,0.0712688652879206,0.0745083591646443,10.3128091070392,-37.9444497687503,ninaE +ribosome_binding_(GO:0043022),1/228,0.0226706035309953,0.0252301878006238,0.0640022358859428,0.0712282947762912,13.856406460546,-52.4698630199424,ninaE +calmodulin-dependent_protein_kinase_activity_(GO:0004683),1/200,0.0199004950251436,0.0232734602836425,0.0561766349914745,0.0656980985493515,14.1729023745857,-55.5154098534138,ninaE +"translation_factor_activity,_RNA_binding_(GO:0008135)",1/206,0.0204944197215938,0.0235685826798329,0.0578535494691272,0.0665315818894963,14.6464177084613,-56.9394521293938,ninaE +G-protein_coupled_receptor_binding_(GO:0001664),1/200,0.0199004950251436,0.0232734602836425,0.0561766349914745,0.0656980985493515,15.8431042592407,-62.0576084598777,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_AutoRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_AutoRIF_Predicted_zscore.csv new file mode 100644 index 0000000..457a523 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_AutoRIF_Predicted_zscore.csv @@ -0,0 +1,14 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +bitter_taste_receptor_activity_(GO:0033038),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-43.7969758066757,171.553221632822,ninaE +calcium-transporting_ATPase_activity_(GO:0005388),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-33.4090298981648,130.863526649797,ninaE +cation:chloride_symporter_activity_(GO:0015377),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-24.2106168017708,94.8332443864404,Gat +G-protein_coupled_photoreceptor_activity_(GO:0008020),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-21.8791034398067,85.7006816658899,ninaE +diacylglycerol_kinase_activity_(GO:0004143),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-18.8063973065195,73.664858950112,ninaE +calcium:cation_antiporter_activity_(GO:0015368),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-18.3871170041836,72.0225335313342,ninaE +FAD_binding_(GO:0071949),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-14.3658969964611,56.2713718469237,ninaE +flavin_adenine_dinucleotide_binding_(GO:0050660),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-3.2049774958006,12.5539310543327,ninaE +"phosphotransferase_activity,_for_other_substituted_phosphate_groups_(GO:0016780)",1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-2.1835106072945,8.5528343510356,ninaE +lipase_activity_(GO:0016298),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-1.71388285814872,6.7132974457991,ninaE +guanyl_ribonucleotide_binding_(GO:0032561),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-1.24900062382058,4.89234877274709,ninaE +"phosphatidylinositol-4,5-bisphosphate_phosphatase_activity_(GO:0106019)",1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-0.720744107372644,2.82316236030623,ninaE +phospholipid_transporter_activity_(GO:0005548),1/200,0.0199004950251436,0.0199004950251436,0.0597543126286061,0.0597543126286061,-0.557656089975309,2.18434485569766,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_GeneRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_GeneRIF.csv new file mode 100644 index 0000000..087ba44 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_GeneRIF.csv @@ -0,0 +1,14 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +G-protein_coupled_photoreceptor_activity_(GO:0008020),1/23,0.00229873493679307,0.0163331666586851,0.0106053910737937,0.0729120636321785,-1.94988825769806,11.8463439741837,ninaE +phosphatidylinositol_phosphate_binding_(GO:1901981),1/36,0.00359684984249829,0.0163331666586851,0.0163499779053821,0.0729120636321785,-1.93068048434482,10.8652845000764,ninaE +protein_kinase_binding_(GO:0019901),1/76,0.00758574928768814,0.0163331666586851,0.0340256296951209,0.0729120636321785,-1.79822442740436,8.77800356507393,ninaE +phosphatidylinositol_binding_(GO:0035091),1/64,0.00638991949615344,0.0163331666586851,0.0287229341581717,0.0729120636321785,-1.70612102535445,8.62108688227935,ninaE +G-protein_coupled_receptor_binding_(GO:0001664),1/55,0.0054925746286396,0.0163331666586851,0.0247459125055758,0.0729120636321785,-1.63013055063624,8.48378324354424,ninaE +Rac_GTPase_binding_(GO:0048365),1/78,0.00778498424914037,0.0163331666586851,0.0349094122846107,0.0729120636321785,-1.55631977394196,7.5568017023041,ninaE +Rho_GTPase_binding_(GO:0017048),1/104,0.0103732186603728,0.0163331666586851,0.0463985859476345,0.0729120636321785,-1.3961133840774,6.37818297882112,ninaE +Rab_GTPase_binding_(GO:0017137),1/89,0.00888041902124222,0.0163331666586851,0.0397702165266758,0.0729120636321785,-1.34370429107375,6.34753348307401,ninaE +small_GTPase_binding_(GO:0031267),1/125,0.012461248063109,0.0163331666586851,0.055678303137507,0.0729120636321785,-1.39388159252903,6.11235422511113,ninaE +DNA-dependent_ATPase_activity_(GO:0008094),1/155,0.0154403220162103,0.0163331666586851,0.0689350419799265,0.0729120636321785,-1.25674506491905,5.24159823211751,ninaE +GTPase_binding_(GO:0051020),1/162,0.0161347917409106,0.0163331666586851,0.072028281043127,0.0729120636321785,-1.2261056932835,5.05986521705087,ninaE +GTP_binding_(GO:0005525),1/152,0.0151426171310597,0.0163331666586851,0.0676093680952689,0.0729120636321785,-1.19012123724706,4.98689621225201,ninaE +GTPase_activity_(GO:0003924),1/164,0.0163331666586851,0.0163331666586851,0.0729120636321785,0.0729120636321785,-1.07656296267385,4.42958018447566,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_GeneRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_GeneRIF_Predicted_zscore.csv new file mode 100644 index 0000000..da89efb --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SF1g_vs_SFug_GO_Molecular_Function_GeneRIF_Predicted_zscore.csv @@ -0,0 +1,7 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +alcohol_dehydrogenase_(NADP+)_activity_(GO:0008106),1/200,0.0199004950251436,0.0199004950251436,0.036151079137103,0.036151079137103,-19.7011249502798,77.1695166791883,ninaE +G-protein_coupled_photoreceptor_activity_(GO:0008020),1/200,0.0199004950251436,0.0199004950251436,0.036151079137103,0.036151079137103,-18.8950935125278,74.0122829356059,ninaE +myosin_heavy_chain_binding_(GO:0032036),1/200,0.0199004950251436,0.0199004950251436,0.036151079137103,0.036151079137103,-6.44206653866597,25.2336433812102,ninaE +lipase_activity_(GO:0016298),1/200,0.0199004950251436,0.0199004950251436,0.036151079137103,0.036151079137103,-1.80343358226522,7.0640685878421,ninaE +phospholipase_activity_(GO:0004620),1/200,0.0199004950251436,0.0199004950251436,0.036151079137103,0.036151079137103,-0.738628175855672,2.8932144474117,ninaE +phosphoric_diester_hydrolase_activity_(GO:0008081),1/200,0.0199004950251436,0.0199004950251436,0.036151079137103,0.036151079137103,-0.658731493524046,2.58025829006726,ninaE diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_2018.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_2018.csv new file mode 100644 index 0000000..f766cd8 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_2018.csv @@ -0,0 +1,46 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +rhodopsin mediated signaling pathway (GO:0016056),2/14,4.5447689449359e-06,9.43252695069862e-05,2.31267904917466e-05,0.000438310693448671,-3.1682672813343,38.9745466331703,trp;ninaC +cellular response to UV (GO:0034644),2/17,6.79014384243993e-06,9.43252695069862e-05,3.29389319259579e-05,0.000438310693448671,-3.0144595437966,35.8721844233845,ninaC;TotC +"phototransduction, visible light (GO:0007603)",2/20,9.48338336070039e-06,9.43252695069862e-05,4.44738385730097e-05,0.000438310693448671,-2.62120584810731,30.3167866585679,trp;ninaC +detection of light stimulus (GO:0009583),1/8,0.00199860035007783,0.00899370157535025,0.00456041830464803,0.0205218823709161,-4.24631029073367,26.3921270354521,trp +detection of visible light (GO:0009584),2/21,1.04805855007762e-05,9.43252695069862e-05,4.87011881609634e-05,0.000438310693448671,-2.25260102992739,25.8282919002987,trp;ninaC +cellular response to mechanical stimulus (GO:0071260),1/8,0.00199860035007783,0.00899370157535025,0.00456041830464803,0.0205218823709161,-3.56340917734739,22.1476861672299,Gat +response to light stimulus (GO:0009416),3/62,2.82438481302166e-07,1.27097316585975e-05,2.12901734168981e-06,9.58057803760416e-05,-1.41969500581114,21.4087239541173,trp;ninaC;TotC +detection of light stimulus involved in sensory perception (GO:0050962),1/12,0.00299670148493004,0.00973830584938792,0.00658225625950804,0.0212617024327687,-3.66245563981535,21.2797576111591,trp +detection of light stimulus involved in visual perception (GO:0050908),1/9,0.0022482005399474,0.00919718402705753,0.00506616685371925,0.0207252280379424,-3.24411029733154,19.7813685149209,trp +inorganic cation transmembrane transport (GO:0098662),2/79,0.000152874718191476,0.00114656038643607,0.000617569588824864,0.00463177191618648,-2.08727036976036,18.3385316414029,trp;Gat +visual perception (GO:0007601),1/13,0.00324610194979597,0.00973830584938792,0.00708723414425622,0.0212617024327687,-2.91703052832907,16.7154612107615,trp +transition metal ion transport (GO:0000041),1/13,0.00324610194979597,0.00973830584938792,0.00708723414425622,0.0212617024327687,-2.91676770479523,16.7139551529597,trp +cation transmembrane transport (GO:0098655),1/15,0.00374475314943831,0.0100496954812542,0.00809661233165578,0.0215649964795989,-2.82639494300811,15.7921979143351,trp +sensory perception of light stimulus (GO:0050953),1/10,0.00249775078749318,0.00936656545309941,0.00557172266329918,0.0208939599873719,-2.53175216022167,15.1711821147383,trp +regulation of cytosolic calcium ion concentration (GO:0051480),1/17,0.00424320475875176,0.0100496954812542,0.00910522073583066,0.0215649964795989,-2.69576373337339,14.7254380937062,trp +regulation of rhodopsin mediated signaling pathway (GO:0022400),1/17,0.00424320475875176,0.0100496954812542,0.00910522073583066,0.0215649964795989,-2.68781523827394,14.6820199443053,ninaC +deactivation of rhodopsin mediated signaling (GO:0016059),1/18,0.00449235573603462,0.0101078004060779,0.00960923639176021,0.0216207818814605,-2.57175283397778,13.901296323956,ninaC +monocarboxylic acid transport (GO:0015718),1/17,0.00424320475875176,0.0100496954812542,0.00910522073583066,0.0215649964795989,-2.30815639162774,12.6081576195753,Gat +calcium ion transmembrane transport (GO:0070588),1/24,0.00598621448448723,0.0128276024667583,0.0126292937595031,0.0270627723417923,-2.44301895042221,12.5040942175713,trp +dsRNA transport (GO:0033227),1/27,0.00673247105008972,0.0130896067748069,0.0141367297080635,0.0274477960773139,-2.39829296896702,11.9934147369098,ninaC +response to UV (GO:0009411),1/28,0.00698112361323034,0.0130896067748069,0.0146388245745674,0.0274477960773139,-2.22427636148405,11.0425209766338,TotC +sodium ion transmembrane transport (GO:0035725),1/27,0.00673247105008972,0.0130896067748069,0.0141367297080635,0.0274477960773139,-2.19714165442087,10.9874946214597,Gat +amino acid transport (GO:0006865),1/40,0.00996107209224256,0.0149416081383638,0.0206490157537696,0.0309735236306544,-2.26826195928309,10.454579449283,Gat +cellular calcium ion homeostasis (GO:0006874),1/30,0.00747827934625269,0.0132920598966866,0.0156424389258944,0.0277421440462367,-2.07334434395396,10.1505808535107,trp +cellular response to light stimulus (GO:0071482),1/32,0.00797523593801193,0.0132920598966866,0.016645286427742,0.0277421440462367,-2.02603313366623,9.78860493974791,TotC +divalent metal ion transport (GO:0070838),1/36,0.0089685519384661,0.0144137441868205,0.0186486824462964,0.0299710967886906,-2.03411160305808,9.58886525553776,trp +"phototransduction, UV (GO:0007604)",1/6,0.00149925011245636,0.00899370157535025,0.00354834279197046,0.0205218823709161,-1.41756536816455,9.21813021359722,ninaC +cellular response to decreased oxygen levels (GO:0036294),1/32,0.00797523593801193,0.0132920598966866,0.016645286427742,0.0277421440462367,-1.90435205429926,9.20071326375638,trp +detection of UV (GO:0009589),1/7,0.00174895020992126,0.00899370157535025,0.00405447696705272,0.0205218823709161,-1.39125762878446,8.832732333622,ninaC +calcium ion transport (GO:0006816),1/42,0.0104570338759904,0.0150538221858286,0.0216480348669302,0.0311445811537492,-1.91858325850929,8.74966140149216,trp +RNA transport (GO:0050658),1/52,0.0129338622561549,0.0169473497866618,0.0266316706347507,0.034880123432308,-1.97049132557133,8.56751189636143,ninaC +olfactory learning (GO:0008355),1/40,0.00996107209224256,0.0149416081383638,0.0206490157537696,0.0309735236306544,-1.78013038992749,8.20474659702094,trp +cellular response to heat (GO:0034605),1/43,0.0107049402210337,0.0150538221858286,0.0221472577093328,0.0311445811537492,-1.62032175612906,7.35148072831522,TotC +associative learning (GO:0008306),1/49,0.0121913351012846,0.016624547865388,0.02513858383395,0.0342798870462955,-1.62124336667665,7.1448678578505,trp +cytoskeleton organization (GO:0007010),1/53,0.0131812720562925,0.0169473497866618,0.0271289848917951,0.034880123432308,-1.63786184239445,7.09023551932011,ninaC +sodium ion transport (GO:0006814),1/63,0.0156526425478549,0.019036997693337,0.0320916530148077,0.0390303888017932,-1.64674420159819,6.84570588345365,Gat +sensory perception of sound (GO:0007605),1/63,0.0156526425478549,0.019036997693337,0.0320916530148077,0.0390303888017932,-1.44944560379441,6.02551281978798,trp +sensory perception of mechanical stimulus (GO:0050954),1/72,0.0178726402057771,0.021164968664736,0.0365417990592061,0.0432731830964282,-1.49236232179939,6.00598860800354,trp +mitochondrion organization (GO:0007005),1/106,0.0262231794808492,0.0302575147855953,0.053215111448345,0.0614020516711673,-1.09138235227829,3.97384488434505,trp +cellular protein localization (GO:0034613),1/164,0.0403370588659645,0.0442723816821562,0.0811572178276395,0.0890749951766775,-1.17903769558827,3.78528243258512,ninaC +protein transport (GO:0015031),1/146,0.0359745211009436,0.0404713362385615,0.0725526485932359,0.0816217296673904,-1.13353084680645,3.76892697136993,ninaC +intracellular protein transport (GO:0006886),1/173,0.0425123971064417,0.045548996899759,0.0854369803663219,0.0915396218210592,-1.06508681885073,3.3635010900662,ninaC +protein phosphorylation (GO:0006468),1/235,0.0573911067901795,0.0600604605943739,0.114514925175157,0.119841200764699,-1.05561774933008,3.01681399207727,ninaC +phosphorylation (GO:0016310),1/258,0.0628633532579735,0.0642920658320184,0.125123560360261,0.127967277641176,-1.06151532744948,2.93699201414417,ninaC +cellular protein modification process (GO:0006464),1/391,0.0940110020971607,0.0940110020971607,0.184612139959793,0.184612139959792,-0.947367074831972,2.23990114757403,ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_AutoRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_AutoRIF.csv new file mode 100644 index 0000000..5f477fc --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_AutoRIF.csv @@ -0,0 +1,46 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +metarhodopsin_inactivation_(GO:0016060),1/12,0.00299670148493004,0.0337128917054629,0.00800160348617277,0.0900180392194436,-5.08958976536299,29.5717538172343,ninaC +divalent_metal_ion_transport_(GO:0070838),1/9,0.0022482005399474,0.0337128917054629,0.00615888242489924,0.0900180392194436,-4.73538520543317,28.8746038893402,trp +regulation_of_membrane_potential_in_photoreceptor_cell_(GO:0016057),2/57,7.93659127692549e-05,0.00178573303730824,0.000430974546272635,0.00969692729113428,-2.86767092874087,27.0749475790761,trp;ninaC +cytosolic_calcium_ion_transport_(GO:0060401),2/43,4.49673924526126e-05,0.00178573303730824,0.000249848417137175,0.00969692729113428,-2.36310882941903,23.6537102003559,trp;ninaC +cellular_response_to_cadmium_ion_(GO:0071276),1/18,0.00449235573603462,0.0404312016243116,0.0116802094648867,0.10512188518398,-4.10400941070848,22.183722393851,trp +regulation_of_rhodopsin_mediated_signaling_pathway_(GO:0022400),1/31,0.00772678253143501,0.0496721734163679,0.0196193007001131,0.126124075929299,-4.09801353349989,19.9288968998745,ninaC +response_to_cadmium_ion_(GO:0046686),1/26,0.00648376867908369,0.0486282650931277,0.0165708553445393,0.124281415084045,-3.53254252613627,17.7985507297579,trp +rhodopsin_mediated_signaling_pathway_(GO:0016056),1/40,0.00996107209224256,0.0560310305188644,0.0250906149613688,0.141134709157699,-2.99552243245243,13.8065742953611,ninaC +regulation_of_rhodopsin_gene_expression_(GO:0007468),1/81,0.0200886306479617,0.0615261448972494,0.0497579875335977,0.150825512042757,-2.45535559338045,9.59455061868245,ninaC +rhabdomere_development_(GO:0042052),1/104,0.0257335491481978,0.0615261448972494,0.0634118173454292,0.150825512042757,-2.34097580382225,8.56787715700406,ninaC +rhabdomere_morphogenesis_(GO:0061541),1/93,0.023037060506142,0.0615261448972494,0.0568981607402504,0.150825512042757,-2.24719015441507,8.47336987819922,ninaC +compound_eye_photoreceptor_cell_differentiation_(GO:0001751),1/100,0.0247536976191954,0.0615261448972494,0.0610466967173284,0.150825512042757,-2.20410738351223,8.15250919485616,ninaC +regulation_of_metal_ion_transport_(GO:0010959),1/92,0.0227916294308845,0.0615261448972494,0.0563045171161575,0.150825512042757,-2.13268135248496,8.06444009783107,ninaC +eye_pigment_biosynthetic_process_(GO:0006726),1/105,0.025978388927645,0.0615261448972494,0.064002476279674,0.150825512042757,-2.12279118667018,7.74922859698694,ninaC +eye_pigment_metabolic_process_(GO:0042441),1/105,0.025978388927645,0.0615261448972494,0.064002476279674,0.150825512042757,-2.12033404719508,7.74025883321235,ninaC +Rab_protein_signal_transduction_(GO:0032482),1/110,0.0272018495759093,0.0615261448972494,0.0669520462221204,0.150825512042757,-2.10609537793277,7.59135825742324,ninaC +protein_autophosphorylation_(GO:0046777),1/172,0.0422708878519296,0.0637752338688066,0.103013422268605,0.154061603868855,-2.25461738471336,7.13283530562175,ninaC +eye_photoreceptor_cell_development_(GO:0042462),1/112,0.0276908894616888,0.0615261448972494,0.0681301369676219,0.150825512042757,-1.97966842973142,7.1003813768658,ninaC +cellular_response_to_metal_ion_(GO:0071248),1/94,0.0232824422671293,0.0615261448972494,0.0574915553540085,0.150825512042757,-1.86716478703632,7.02064369974223,trp +regulation_of_calcium_ion_transport_(GO:0051924),1/125,0.0308648568431767,0.0615261448972494,0.075763563631498,0.150825512042757,-1.97929084187466,6.88424483223081,ninaC +regulation_of_protein_serine/threonine_kinase_activity_(GO:0071900),1/133,0.0328139439451997,0.0615261448972494,0.0804402730894705,0.150825512042757,-1.94479272732741,6.64516564159414,ninaC +metal_ion_transport_(GO:0030001),1/102,0.02524372187962,0.0615261448972494,0.0622297541139695,0.150825512042757,-1.78095241031646,6.5524405577268,ninaC +compound_eye_photoreceptor_development_(GO:0042051),1/156,0.0384001073383686,0.0632715648063828,0.0937978781524355,0.154061603868855,-1.99375114872437,6.49902069883503,ninaC +cytosolic_transport_(GO:0016482),1/154,0.037915381117681,0.0632715648063828,0.0926415165534376,0.154061603868855,-1.77897151590783,5.82150356895597,ninaC +calcium_ion_transport_(GO:0006816),1/128,0.03159613239068,0.0615261448972494,0.0775191832917181,0.150825512042757,-1.64923489696523,5.69764570447314,ninaC +rhodopsin_biosynthetic_process_(GO:0016063),1/237,0.0578679666491411,0.0637752338688066,0.139809156788272,0.154061603868855,-1.8542325245994,5.28380487127938,ninaC +rhodopsin_metabolic_process_(GO:0046154),1/237,0.0578679666491411,0.0637752338688066,0.139809156788272,0.154061603868855,-1.85172604995343,5.27666244293319,ninaC +terminal_region_determination_(GO:0007362),1/217,0.053090672879112,0.0637752338688066,0.12859672862364,0.154061603868855,-1.77394771399834,5.20787412937102,ninaC +regulation_of_ion_transport_(GO:0043269),1/178,0.0437192126935071,0.0637752338688066,0.106453077417786,0.154061603868855,-1.61156265946651,5.04413894779268,ninaC +receptor_internalization_(GO:0031623),1/160,0.0393689736573048,0.0632715648063828,0.096107653119533,0.154061603868855,-1.54160158899208,4.98673773865031,ninaC +regulation_of_calcium-mediated_signaling_(GO:0050848),1/209,0.0511743378973047,0.0637752338688066,0.124084616922128,0.154061603868855,-1.63790824333398,4.86871023783927,ninaC +regulation_of_Toll_signaling_pathway_(GO:0008592),1/203,0.0497350516148844,0.0637752338688066,0.120690330617651,0.154061603868855,-1.57586308372438,4.72923654904489,TotC +octopamine_or_tyramine_signaling_pathway_(GO:0007211),1/183,0.0449248111182253,0.0637752338688066,0.109312730515005,0.154061603868855,-1.45674464587398,4.51993637501421,ninaC +compound_eye_morphogenesis_(GO:0001745),1/224,0.0547649248758627,0.0637752338688066,0.132532092398687,0.154061603868855,-1.53132006598628,4.4480335835804,ninaC +phospholipid_transport_(GO:0015914),1/128,0.03159613239068,0.0615261448972494,0.0775191832917181,0.150825512042757,-1.23201232037184,4.25625829161228,ninaC +Toll_signaling_pathway_(GO:0008063),1/216,0.052851300482014,0.0637752338688066,0.128033564079694,0.154061603868855,-1.43872615219696,4.23024760204825,TotC +photoreceptor_cell_development_(GO:0042461),1/123,0.0303770944371513,0.0615261448972494,0.0745919139125719,0.150825512042757,-1.21023800781544,4.22865199182979,ninaC +phospholipid_translocation_(GO:0045332),1/143,0.0352458915724129,0.0632715648063828,0.0862639400537321,0.154061603868855,-1.21108381180793,4.05156742311954,ninaC +female_mating_behavior_(GO:0060180),1/260,0.0633379970118103,0.0670286532857111,0.15258405843946,0.161414963517455,-1.35836043176241,3.74808299997094,TotC +cell_junction_maintenance_(GO:0034331),1/207,0.0506947697162317,0.0637752338688066,0.122954160518413,0.154061603868855,-1.23041369891526,3.66901064045528,ninaC +generation_of_neurons_(GO:0048699),1/238,0.0581063241915794,0.0637752338688066,0.140367239080512,0.154061603868855,-1.28798190329968,3.6649277391512,ninaC +peripheral_nervous_system_development_(GO:0007422),1/197,0.0482940192477053,0.0637752338688066,0.117287286756338,0.154061603868855,-1.19511168507966,3.6217232793285,ninaC +neuron_migration_(GO:0001764),1/271,0.0659451011848538,0.0674438534845096,0.158648821063208,0.162254476087372,-1.26597273201822,3.44209463728001,ninaC +protein_localization_to_membrane_(GO:0072657),1/389,0.0935488335569495,0.0935488335569495,0.2218969045416,0.2218969045416,-1.38105151145433,3.27208625542404,ninaC +male_mating_behavior_(GO:0060179),1/263,0.0640496020285684,0.0670286532857111,0.154240965138901,0.161414963517455,-1.16586790341482,3.20391862885924,TotC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_AutoRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_AutoRIF_Predicted_zscore.csv new file mode 100644 index 0000000..82fb268 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_AutoRIF_Predicted_zscore.csv @@ -0,0 +1,76 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +tetrahydrofolate_metabolic_process_(GO:0046653),2/96,0.000225875346535214,0.00104516892990139,0.000111232310304767,0.000509030491603945,-1.64976243471283,13.8506255176757,trp;ninaC +ceramide_biosynthetic_process_(GO:0046513),2/137,0.000459565599931538,0.00104516892990139,0.00022445383718772,0.000509030491603945,-1.63756678430317,12.5850755152167,trp;ninaC +ceramide_metabolic_process_(GO:0006672),2/137,0.000459565599931538,0.00104516892990139,0.00022445383718772,0.000509030491603945,-1.63687073492536,12.5797262164485,trp;ninaC +acyl-CoA_metabolic_process_(GO:0006637),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.7971583984851,12.4589257205344,trp;ninaC +acyl-CoA_biosynthetic_process_(GO:0071616),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.79375444600594,12.4353275829802,trp;ninaC +phospholipid_biosynthetic_process_(GO:0008654),2/135,0.000446286517069375,0.00104516892990139,0.000218018136505191,0.000509030491603945,-1.58341747833691,12.2153523531001,trp;ninaC +phospholipid_metabolic_process_(GO:0006644),2/135,0.000446286517069375,0.00104516892990139,0.000218018136505191,0.000509030491603945,-1.58301003524347,12.2122091132292,trp;ninaC +phospholipid_catabolic_process_(GO:0009395),2/135,0.000446286517069375,0.00104516892990139,0.000218018136505191,0.000509030491603945,-1.5829922392228,12.2120718249487,trp;ninaC +ER-associated_misfolded_protein_catabolic_process_(GO:0071712),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.74843500876375,12.1211474290367,trp;ninaC +basement_membrane_organization_(GO:0071711),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.73509341844473,12.0286559252725,trp;ninaC +coenzyme_A_metabolic_process_(GO:0015936),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.7177248938315,11.9082474191475,trp;ninaC +coenzyme_A_biosynthetic_process_(GO:0015937),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.71208823558582,11.8691708934199,trp;ninaC +N-glycan_processing_(GO:0006491),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.70989354703127,11.8539560622153,trp;ninaC +glycolipid_biosynthetic_process_(GO:0009247),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.68335370586404,11.6699667655478,trp;ninaC +anion_transport_(GO:0006820),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.68079501682316,11.6522284756291,trp;ninaC +glycolipid_metabolic_process_(GO:0006664),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.66756440449296,11.5605063344989,trp;ninaC +divalent_metal_ion_transport_(GO:0070838),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.65769645210582,11.4920960675415,trp;ninaC +rhabdomere_development_(GO:0042052),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.65351966812628,11.4631402218043,trp;ninaC +cellular_response_to_ketone_(GO:1901655),2/199,0.0009658331609219,0.00104516892990139,0.000470391213360505,0.000509030491603945,-1.64403189323513,11.4137233950885,trp;ninaC +clathrin-dependent_endocytosis_(GO:0072583),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.64428919598766,11.3991493310528,trp;ninaC +lipid_transport_(GO:0006869),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.61246623199297,11.1785344175587,trp;ninaC +sensory_perception_of_sound_(GO:0007605),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.60150052937744,11.1025139207146,trp;ninaC +regulation_of_Rab_protein_signal_transduction_(GO:0032483),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.59623833506419,11.0660333922697,trp;ninaC +response_to_lipopolysaccharide_(GO:0032496),2/184,0.000826622804812111,0.00104516892990139,0.000402640837120416,0.000509030491603945,-1.54723777177807,10.982544461156,trp;ninaC +wax_metabolic_process_(GO:0010166),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.57719260610303,10.9339975502313,trp;ninaC +cellular_response_to_light_stimulus_(GO:0071482),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.57255978591491,10.9018802017276,trp;ninaC +rhabdomere_membrane_biogenesis_(GO:0045313),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.57120867848646,10.8925135554122,trp;ninaC +detection_of_visible_light_(GO:0009584),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.56880399023123,10.8758428866619,trp;ninaC +wax_biosynthetic_process_(GO:0010025),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.55646948172374,10.7903330476718,trp;ninaC +deactivation_of_rhodopsin_mediated_signaling_(GO:0016059),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.55217494067955,10.7605608428854,trp;ninaC +compound_eye_pigmentation_(GO:0048072),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.53820082092388,10.6636842847631,trp;ninaC +sodium_ion_transport_(GO:0006814),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.50269337484967,10.4175264427291,trp;ninaC +negative_regulation_of_neuron_death_(GO:1901215),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.50075509352924,10.4040891725268,trp;ninaC +fatty-acyl-CoA_biosynthetic_process_(GO:0046949),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.48244130356199,10.2771275485231,trp;ninaC +cytosolic_calcium_ion_transport_(GO:0060401),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.47853110408033,10.2500198183778,trp;ninaC +fatty-acyl-CoA_metabolic_process_(GO:0035337),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.47144958366704,10.2009266850781,trp;ninaC +metarhodopsin_inactivation_(GO:0016060),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.47070890784099,10.1957918983462,trp;ninaC +entrainment_of_circadian_clock_by_photoperiod_(GO:0043153),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.47017563647303,10.19209495746,trp;ninaC +response_to_light_stimulus_(GO:0009416),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.4562677497729,10.0956775646066,trp;ninaC +sensory_perception_of_light_stimulus_(GO:0050953),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.45097422406428,10.0589798290819,trp;ninaC +sensory_perception_of_chemical_stimulus_(GO:0007606),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.44579623821301,10.0230830816626,trp;ninaC +compound_eye_photoreceptor_fate_commitment_(GO:0001752),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.444663839403,10.0152326480715,trp;ninaC +"phototransduction,_UV_(GO:0007604)",2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.43337330853948,9.93696025678282,trp;ninaC +protein_deglycosylation_(GO:0006517),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.43303494243428,9.93461451020061,trp;ninaC +regulation_of_endocytic_recycling_(GO:2001135),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.43228405156096,9.92940890694222,trp;ninaC +receptor-mediated_endocytosis_(GO:0006898),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.41500219316692,9.80960122041573,trp;ninaC +regulation_of_rhodopsin_mediated_signaling_pathway_(GO:0022400),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.41145590360098,9.78501632109756,trp;ninaC +positive_regulation_of_phagocytosis_(GO:0050766),2/166,0.000673621169534991,0.00104516892990139,0.000328290942347261,0.000509030491603945,-1.33187366681055,9.72646384246696,trp;ninaC +very_long-chain_fatty_acid_biosynthetic_process_(GO:0042761),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.40263499999087,9.72386479268531,trp;ninaC +"phototransduction,_visible_light_(GO:0007603)",2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.39566417573883,9.67553906823036,trp;ninaC +microvillus_organization_(GO:0032528),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.39246165743883,9.6533373871476,trp;ninaC +very_long-chain_fatty_acid_metabolic_process_(GO:0000038),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.39185739817256,9.64914831771406,trp;ninaC +regulation_of_rhodopsin_gene_expression_(GO:0007468),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.38470649032568,9.59957415119996,trp;ninaC +long-chain_fatty-acyl-CoA_metabolic_process_(GO:0035336),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.37037453225937,9.50021685407554,trp;ninaC +phosphatidylethanolamine_metabolic_process_(GO:0046337),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.34225727549828,9.30529201397968,trp;ninaC +phosphatidylinositol_dephosphorylation_(GO:0046856),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.34202546697039,9.30368498522092,trp;ninaC +rhodopsin_mediated_signaling_pathway_(GO:0016056),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.33338857849587,9.24380915454775,trp;ninaC +eclosion_rhythm_(GO:0008062),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.33305596978094,9.24150332147437,trp;ninaC +phospholipid_dephosphorylation_(GO:0046839),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.33132552861197,9.22950691759248,trp;ninaC +regulation_of_clathrin-dependent_endocytosis_(GO:2000369),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.32329970803371,9.17386735765436,trp;ninaC +negative_phototaxis_(GO:0046957),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.32215024715485,9.16589864008305,trp;ninaC +stabilization_of_membrane_potential_(GO:0030322),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.31464660803966,9.11387913949329,trp;ninaC +long-chain_fatty_acid_metabolic_process_(GO:0001676),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.30423733700759,9.04171614334187,trp;ninaC +metal_ion_transport_(GO:0030001),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.27882250859608,8.86552607592983,trp;ninaC +regulation_of_metal_ion_transport_(GO:0010959),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.27387665853045,8.83123862600641,trp;ninaC +regulation_of_membrane_potential_in_photoreceptor_cell_(GO:0016057),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.2447023792033,8.62898590337857,trp;ninaC +phosphate_ion_transport_(GO:0006817),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.2430969512456,8.61785616228752,trp;ninaC +optomotor_response_(GO:0071632),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.24196413288455,8.61000282012969,trp;ninaC +photoperiodism_(GO:0009648),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.16540495596588,8.07925099588368,trp;ninaC +potassium_ion_transport_(GO:0006813),2/200,0.000975491001241299,0.00104516892990139,0.000475095125497016,0.000509030491603945,-1.14272568769399,7.92202538959671,trp;ninaC +rhabdomere_morphogenesis_(GO:0061541),1/147,0.0362172997519996,0.0377263539083329,0.0317627337349033,0.0330861809738577,-1.62488031299032,5.3917077208454,trp +phospholipid_translocation_(GO:0045332),1/200,0.0490147537911314,0.0490147537911314,0.0430125725499041,0.0430125725499041,-1.57914687553049,4.76212889579896,trp +phospholipid_transport_(GO:0015914),1/200,0.0490147537911314,0.0490147537911314,0.0430125725499041,0.0430125725499041,-1.40923822733382,4.24974661156608,trp +trehalose_metabolic_process_(GO:0005991),1/200,0.0490147537911314,0.0490147537911314,0.0430125725499041,0.0430125725499041,-1.34727921761803,4.06290091969621,ninaC +R7_cell_fate_commitment_(GO:0007465),1/132,0.0325704797018037,0.0344054363047223,0.0285668817900369,0.0301762835810248,-1.06312974020811,3.64052718989512,trp diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_GeneRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_GeneRIF.csv new file mode 100644 index 0000000..ead3883 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_GeneRIF.csv @@ -0,0 +1,40 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +metal_ion_transport_(GO:0030001),2/29,2.02462502658829e-05,0.000394801880184716,8.36414426256709e-05,0.00163100813120058,-450.848496825398,4872.56359331551,trp;ninaC +calcium_ion_transport_(GO:0006816),2/37,3.31852461797471e-05,0.000431408200336712,0.00013328668599038,0.00173272691787494,-402.344204385377,4149.53879883053,trp;ninaC +ion_transmembrane_transport_(GO:0034220),1/8,0.00199860035007783,0.00974317670662944,0.00539082588277675,0.0262802761785367,-474.11970061255,2946.80004800473,trp +courtship_behavior_(GO:0007619),1/100,0.0247536976191954,0.0301685689733943,0.0596613510876223,0.0727122716380397,-514.878446434917,1904.42230727667,trp +cAMP_metabolic_process_(GO:0046058),1/50,0.0124388937863538,0.0235604624104999,0.0303553682067083,0.0574709474466826,-326.508975948227,1432.3710813643,trp +cAMP_biosynthetic_process_(GO:0006171),1/51,0.012686402836423,0.0235604624104999,0.030945894778983,0.0574709474466826,-319.395838383267,1394.87333118155,trp +regulation_of_metal_ion_transport_(GO:0010959),1/16,0.00399400389908044,0.0159274430641227,0.0101704396750904,0.0402889300836109,-238.307692307692,1316.16410676181,ninaC +rhodopsin_mediated_signaling_pathway_(GO:0016056),2/9,1.79883009897504e-06,7.01543738600264e-05,9.8930738589386e-06,0.000385829880498605,-91.4987914579424,1210.38023847205,trp;ninaC +male_courtship_behavior_(GO:0008049),1/92,0.0227916294308845,0.0286733402517579,0.0550026126710839,0.0691968352958797,-292.844862047975,1107.35241586455,trp +branched-chain_amino_acid_catabolic_process_(GO:0009083),1/18,0.00449235573603462,0.0159274430641227,0.0113635443825569,0.0402889300836109,-182.313944692181,985.475795212921,trp +branched-chain_amino_acid_metabolic_process_(GO:0009081),1/18,0.00449235573603462,0.0159274430641227,0.0113635443825569,0.0402889300836109,-176.07107653184,951.730732677474,trp +response_to_light_stimulus_(GO:0009416),1/5,0.00124950004998265,0.00812175032488723,0.00359550278849436,0.0233707681252133,-137.085789228748,916.420114176859,trp +rhodopsin_biosynthetic_process_(GO:0016063),2/80,0.000156778871527963,0.00122287519791811,0.000597361787010511,0.00465942193868198,-91.1125413357003,798.207290817141,trp;ninaC +rhodopsin_metabolic_process_(GO:0046154),2/80,0.000156778871527963,0.00122287519791811,0.000597361787010511,0.00465942193868198,-80.2537989549144,703.077386520945,trp;ninaC +tryptophan_metabolic_process_(GO:0006568),1/21,0.00523950944696142,0.0170284057026246,0.0131518523880708,0.04274352026123,-127.62826083158,670.243309029663,trp +transmembrane_transport_(GO:0055085),1/66,0.0163930873477103,0.0277969741982913,0.039782208475773,0.0674567882850065,-138.051699528722,567.516115357146,trp +regulation_of_ion_transport_(GO:0043269),1/44,0.0109527968781184,0.0234992676388424,0.0268084314170268,0.0574561612571892,-108.731503622269,490.831451436931,ninaC +cytosolic_transport_(GO:0016482),1/32,0.00797523593801193,0.0188659966722007,0.0196951314382632,0.0465451137657858,-60.9116397653445,294.289351929928,ninaC +cytosolic_calcium_ion_transport_(GO:0060401),1/8,0.00199860035007783,0.00974317670662944,0.00539082588277675,0.0262802761785367,-40.8846678275619,254.110809909947,ninaC +phospholipid_translocation_(GO:0045332),1/31,0.00772678253143501,0.0188659966722007,0.0191011872587943,0.0465451137657858,-40.9470006839167,199.12783311185,ninaC +regulation_of_calcium_ion_transport_(GO:0051924),1/25,0.00623501649282992,0.0187050494784898,0.0155337448252435,0.0465451137657858,-30.8437089436091,156.611216281318,ninaC +phospholipid_transport_(GO:0015914),1/30,0.00747827934625269,0.0188659966722007,0.0185070632048992,0.0465451137657858,-20.8652601635468,102.151150597453,ninaC +regulation_of_calcium-mediated_signaling_(GO:0050848),1/60,0.014911751897497,0.0264344692728355,0.0362525395971325,0.0642658656494622,-10.5821265248695,44.5042511967421,ninaC +rhabdomere_development_(GO:0042052),1/33,0.00822363957506184,0.0188659966722007,0.0202888957440605,0.0465451137657858,-6.81508705489835,32.7174773651907,ninaC +generation_of_neurons_(GO:0048699),1/75,0.0186117486648066,0.0286733402517579,0.0450645702941401,0.0691968352958797,-6.91332711503262,27.5424342414405,trp +dephosphorylation_(GO:0016311),1/84,0.0208264045750021,0.0286733402517579,0.050332362312928,0.0691968352958797,-7.08425042180878,27.4269138691495,trp +negative_regulation_of_protein_phosphorylation_(GO:0001933),1/88,0.0218094118260827,0.0286733402517579,0.0526689264843666,0.0691968352958797,-7.06822942729201,27.0389014541846,trp +negative_regulation_of_phosphorylation_(GO:0042326),1/88,0.0218094118260827,0.0286733402517579,0.0526689264843666,0.0691968352958797,-7.06622651850833,27.0312394995493,trp +synaptic_vesicle_transport_(GO:0048489),1/77,0.0191042403777297,0.0286733402517579,0.0462364498614656,0.0691968352958797,-6.780477039829,26.8360768734976,trp +protein_dephosphorylation_(GO:0006470),1/88,0.0218094118260827,0.0286733402517579,0.0526689264843666,0.0691968352958797,-6.52995330219923,24.9797726085184,trp +regulation_of_neuron_death_(GO:1901214),1/91,0.0225461490326947,0.0286733402517579,0.0544194609351564,0.0691968352958797,-6.19869014943057,23.506617010223,trp +regulation_of_eye_photoreceptor_cell_development_(GO:0042478),1/172,0.0422708878519296,0.0499565038250077,0.101071959520762,0.119448679433628,-6.96385864153027,22.0312577728045,ninaC +neurotransmitter_transport_(GO:0006836),1/46,0.0114483611573848,0.0234992676388424,0.0279914631765794,0.0574561612571892,-1.88951846550734,8.44597500810339,trp +peripheral_nervous_system_development_(GO:0007422),1/267,0.0649977358750828,0.074556226444948,0.154284105697031,0.176972944770123,-0.120437812971259,0.329205060306176,ninaC +eye_photoreceptor_cell_development_(GO:0042462),1/285,0.0692548342882428,0.0765596173751049,0.164183475147777,0.181426173537215,-0.0352926940334503,0.0942301634924051,ninaC +photoreceptor_cell_development_(GO:0042461),1/291,0.0706704160385584,0.0765596173751049,0.167470314034353,0.181426173537215,0.448103031953473,-1.18735125695832,ninaC +peripheral_nervous_system_neuron_development_(GO:0048935),1/380,0.0914667404790649,0.0914667404790649,0.215464673181198,0.215464673181197,0.583030018447044,-1.3944794587026,ninaC +cellular_modified_amino_acid_biosynthetic_process_(GO:0042398),1/331,0.0800636737767819,0.0821706125603814,0.189217089115677,0.194196486197668,4.08973795933603,-10.3263144930573,trp +cellular_modified_amino_acid_catabolic_process_(GO:0042219),1/331,0.0800636737767819,0.0821706125603814,0.189217089115677,0.194196486197668,4.33472492066759,-10.9448901657684,trp diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_GeneRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_GeneRIF_Predicted_zscore.csv new file mode 100644 index 0000000..6685493 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Biological_Process_GeneRIF_Predicted_zscore.csv @@ -0,0 +1,29 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +membrane_lipid_biosynthetic_process_(GO:0046467),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-81.8738020975836,567.595833317405,trp;ninaC +membrane_lipid_metabolic_process_(GO:0006643),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-81.6982807754769,566.379019531631,trp;ninaC +metal_ion_transport_(GO:0030001),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-76.354603929642,529.333607756622,trp;ninaC +cellular_amide_metabolic_process_(GO:0043603),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-77.7371121688098,234.4266729532,ninaC +eclosion_rhythm_(GO:0008062),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-32.9541750541093,228.457112921557,trp;ninaC +positive_regulation_of_circadian_rhythm_(GO:0042753),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-21.0690425880225,146.062604625289,trp;ninaC +amide_biosynthetic_process_(GO:0043604),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-47.4932757645888,143.222333767224,ninaC +rhodopsin_biosynthetic_process_(GO:0016063),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-19.3963840142116,134.466782607324,trp;ninaC +rhodopsin_mediated_signaling_pathway_(GO:0016056),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-19.0745937721618,132.235949350405,trp;ninaC +ion_transmembrane_transport_(GO:0034220),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-18.9530161408765,131.393103956956,trp;ninaC +response_to_sucrose_(GO:0009744),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-18.6002786074725,128.94772644809,trp;ninaC +rhodopsin_metabolic_process_(GO:0046154),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-17.5231799277354,121.480664860285,trp;ninaC +inositol_phosphate_metabolic_process_(GO:0043647),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-16.8502100446849,116.81525429205,trp;ninaC +inositol_phosphate_catabolic_process_(GO:0071545),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-16.7422590221071,116.066876312187,trp;ninaC +cellular_response_to_radiation_(GO:0071478),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-16.6608926247986,115.502798097897,trp;ninaC +cytosolic_calcium_ion_transport_(GO:0060401),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-14.3566586046421,99.5285353261475,trp;ninaC +sensory_perception_of_light_stimulus_(GO:0050953),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-10.3996920640968,72.0965892890867,trp;ninaC +response_to_light_stimulus_(GO:0009416),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-18.4348534862051,55.5927696383441,ninaC +regulation_of_membrane_potential_in_photoreceptor_cell_(GO:0016057),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-7.36563326187492,51.0627654032899,trp;ninaC +regulation_of_rhodopsin_gene_expression_(GO:0007468),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-7.1813380180139,49.7851257940892,trp;ninaC +regulation_of_ion_transport_(GO:0043269),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-13.5374917910335,40.8241195506689,trp +rhabdomere_morphogenesis_(GO:0061541),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-5.78097059199674,40.0769811158513,trp;ninaC +regulation_of_metal_ion_transport_(GO:0010959),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-6.73273033854395,20.3034500397765,trp +negative_regulation_of_circadian_rhythm_(GO:0042754),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-6.70352463601263,20.2153763323199,trp +rhabdomere_development_(GO:0042052),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-5.48810573089896,16.5501178448231,trp +cellular_response_to_virus_(GO:0098586),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-5.08042024481711,15.3206876608726,TotC +phototaxis_(GO:0042331),1/200,0.0490147537911314,0.0490147537911314,0.0646164890345503,0.0646164890345503,-5.05362473440297,15.2398822105386,trp +regulation_of_calcium_ion_transport_(GO:0051924),2/200,0.000975491001241299,0.00143756568603981,0.00144038496602027,0.00212267258150355,-1.92287243181867,13.3304470091709,trp;ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_2018.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_2018.csv new file mode 100644 index 0000000..a9ba81f --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_2018.csv @@ -0,0 +1,10 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +inaD signaling complex (GO:0016027),2/10,2.24831270826504e-06,1.01174071871927e-05,4.97014860965188e-06,2.23656687434334e-05,-4.40807997787941,57.3285371172315,trp;ninaC +microvillus membrane (GO:0031528),1/6,0.00149925011245636,0.00269865020242145,0.00271475541484899,0.00488655974672818,-7.20975876993484,46.8835488242325,trp +rhabdomere membrane (GO:0033583),2/7,1.04952750260373e-06,9.44574752343354e-06,2.71099015073131e-06,2.23656687434334e-05,-3.1165420249319,42.9059654045728,trp;ninaC +rhabdomere (GO:0016028),2/33,2.63195598509423e-05,7.8958679552827e-05,4.48066427692595e-05,0.000134419928307778,-1.9823195090069,20.9039520679239,trp;ninaC +rhabdomere microvillus (GO:0035996),1/6,0.00149925011245636,0.00269865020242145,0.00271475541484899,0.00488655974672818,-2.68406597387432,17.4539179671798,trp +unconventional myosin complex (GO:0016461),1/9,0.0022482005399474,0.00337230080992109,0.00387709244192118,0.00581563866288178,-2.22173366396409,13.5472990499212,ninaC +cation channel complex (GO:0034703),1/29,0.00722972637648691,0.0092953624840546,0.0116086857411583,0.014925453095775,-2.36304303100675,11.6487484362267,trp +integral component of plasma membrane (GO:0005887),1/419,0.100461591741987,0.113019290709735,0.156354097785735,0.175898360008952,-0.978805388199064,2.24927500654283,trp +nucleus (GO:0005634),1/1776,0.371873103778041,0.371873103778041,0.570731578017493,0.570731578017493,-1.03636613239447,1.02517607456077,ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_AutoRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_AutoRIF.csv new file mode 100644 index 0000000..9dc42c6 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_AutoRIF.csv @@ -0,0 +1,10 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +inaD_signaling_complex_(GO:0016027),2/36,3.13945915302899e-05,0.000282551323772609,0.000137777895368573,0.00124000105831716,-190.368421052632,1973.90634740154,trp;ninaC +rhabdomere_microvillus_(GO:0035996),1/46,0.0114483611573848,0.0206070500832926,0.0292091098039313,0.0525763976470764,-112.360916210997,502.243035741313,ninaC +filopodium_(GO:0030175),1/144,0.035488817017172,0.035488817017172,0.0887207332217077,0.0887207332217077,-150.25732379613,501.639732039835,ninaC +unconventional_myosin_complex_(GO:0016461),1/24,0.00598621448448723,0.0134689825900963,0.0155906565811404,0.0350789773075659,-50.2415253521969,257.151000212174,ninaC +rhabdomere_(GO:0016028),2/158,0.000610561351219281,0.00183168405365784,0.00249293716797651,0.00747881150392954,-8.10451281345013,59.9825673131514,trp;ninaC +rhabdomere_membrane_(GO:0033583),2/109,0.000291177736855606,0.00131029981585023,0.00119649224926044,0.00538421512167196,-7.34021137463282,59.7608938836842,trp;ninaC +microvillus_(GO:0005902),1/132,0.0325704797018037,0.035488817017172,0.0815347242427903,0.0887207332217077,-8.79668597551188,30.122922220717,ninaC +microvillus_membrane_(GO:0031528),1/108,0.0267126129368425,0.035488817017172,0.0670780404965507,0.0887207332217077,-7.14112197207947,25.8695672114888,ninaC +multivesicular_body_(GO:0005771),1/132,0.0325704797018037,0.035488817017172,0.0815347242427903,0.0887207332217077,-6.55236298762493,22.4375771952739,ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_AutoRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_AutoRIF_Predicted_zscore.csv new file mode 100644 index 0000000..1fb6a0e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_AutoRIF_Predicted_zscore.csv @@ -0,0 +1,12 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +endoplasmic_reticulum_exit_site_(GO:0070971),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-59.0087035029632,409.081945380091,trp;ninaC +secondary_lysosome_(GO:0005767),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-7.14382365603478,49.5250548678175,trp;ninaC +rough_endoplasmic_reticulum_(GO:0005791),2/187,0.000853615151766805,0.000975491001241299,0.00155935789844625,0.0017818599963968,-6.76925126575639,47.8317332504518,trp;ninaC +cation_channel_complex_(GO:0034703),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-6.26277037724173,43.4170916712685,trp;ninaC +rhabdomere_membrane_(GO:0033583),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-4.66986137790094,32.3741391306986,trp;ninaC +rhabdomere_microvillus_(GO:0035996),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-4.65454196677762,32.2679362465072,trp;ninaC +unconventional_myosin_complex_(GO:0016461),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-4.13471564917444,28.6642041080067,trp;ninaC +rhabdomere_(GO:0016028),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-3.72546932289504,25.8270754582368,trp;ninaC +microvillus_(GO:0005902),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-2.16675736362125,15.0211962788219,trp;ninaC +microvillus_membrane_(GO:0031528),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-1.63410334254339,11.3285351928838,trp;ninaC +inaD_signaling_complex_(GO:0016027),2/200,0.000975491001241299,0.000975491001241299,0.0017818599963968,0.0017818599963968,-1.25640806579891,8.71013639068425,trp;ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_GeneRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_GeneRIF.csv new file mode 100644 index 0000000..4983506 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_GeneRIF.csv @@ -0,0 +1,4 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +rhabdomere_membrane_(GO:0033583),2/39,3.69149320629464e-05,0.000106773259752256,0.000427559661519631,0.00120446685135077,-2.11122365996698,21.5490370065748,trp;ninaC +rhabdomere_(GO:0016028),2/54,7.11821731681704e-05,0.000106773259752256,0.000802977900900516,0.00120446685135077,-2.0138596044074,19.2328992340072,trp;ninaC +microvillus_(GO:0005902),1/30,0.00747827934625269,0.00747827934625269,0.0314063427953892,0.0314063427953892,-1.77068762962107,8.66884847333344,trp diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_GeneRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_GeneRIF_Predicted_zscore.csv new file mode 100644 index 0000000..aca2ed2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Cellular_Component_GeneRIF_Predicted_zscore.csv @@ -0,0 +1,6 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +rhabdomere_membrane_(GO:0033583),2/200,0.000975491001241299,0.000975491001241299,0.00184312074544196,0.00184312074544196,-37.419909793785,259.416129920909,trp;ninaC +microvillus_membrane_(GO:0031528),2/200,0.000975491001241299,0.000975491001241299,0.00184312074544196,0.00184312074544196,-26.9768204271658,187.018685810648,trp;ninaC +rhabdomere_(GO:0016028),2/200,0.000975491001241299,0.000975491001241299,0.00184312074544196,0.00184312074544196,-5.68995632027309,39.4460183404669,trp;ninaC +rhabdomere_microvillus_(GO:0035996),2/200,0.000975491001241299,0.000975491001241299,0.00184312074544196,0.00184312074544196,-5.37428438789827,37.2576006913434,trp;ninaC +microvillus_(GO:0005902),2/200,0.000975491001241299,0.000975491001241299,0.00184312074544196,0.00184312074544196,-1.84586741760851,12.7966043868613,trp;ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_2018.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_2018.csv new file mode 100644 index 0000000..8ac61d5 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_2018.csv @@ -0,0 +1,19 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +store-operated calcium channel activity (GO:0015279),1/6,0.00149925011245636,0.0146074587740819,0.00352940856881571,0.0317272629110548,-3.50779077526217,22.8104275503635,trp +gamma-aminobutyric acid:sodium symporter activity (GO:0005332),1/9,0.0022482005399474,0.0146074587740819,0.00503946648529582,0.0317272629110548,-3.51297130918055,21.4207821806814,Gat +gamma-aminobutyric acid transmembrane transporter activity (GO:0015185),1/10,0.00249775078749318,0.0146074587740819,0.00554247989964343,0.0317272629110548,-3.53131356486105,21.1609185284796,Gat +anion:cation symporter activity (GO:0015296),1/13,0.00324610194979597,0.0146074587740819,0.00705050286912329,0.0317272629110548,-2.92496997591192,16.7609566304416,Gat +sodium:amino acid symporter activity (GO:0005283),1/19,0.00474145683828094,0.0170692446178114,0.0100619736510738,0.0362231051438655,-2.34316940133464,12.5392621357796,Gat +phosphatidylinositol binding (GO:0035091),1/28,0.00698112361323034,0.0179442808605268,0.0145677535077113,0.0372733330316534,-2.11009053891341,10.4756402765534,ninaC +calcium channel activity (GO:0005262),1/32,0.00797523593801193,0.0179442808605268,0.016565925791846,0.0372733330316534,-1.99434015559792,9.63548304034768,trp +calcium ion transmembrane transporter activity (GO:0015085),1/29,0.00722972637648691,0.0179442808605268,0.0150675500823505,0.0372733330316534,-1.90690854183105,9.40020879992954,trp +ion channel activity (GO:0005216),1/83,0.0205805293255688,0.038372412484353,0.0418063181101321,0.0778993997632426,-2.03996341191776,7.9220139636622,trp +"phosphotransferase activity, alcohol group as acceptor (GO:0016773)",1/158,0.0388846381681908,0.0437452179392147,0.0781342894173156,0.0879010755944801,-1.68763316418237,5.48000817521914,ninaC +"ATPase activity, coupled (GO:0042623)",1/107,0.0264679208134764,0.0419030034553435,0.0535331881215867,0.0846748183775772,-1.24480321616805,4.52090347538852,ninaC +cation channel activity (GO:0005261),1/86,0.0213180069357517,0.038372412484353,0.0432774443129126,0.0778993997632426,-1.14313752881759,4.39902545913312,trp +protein heterodimerization activity (GO:0046982),1/113,0.0279353356368957,0.0419030034553435,0.0564498789183848,0.0846748183775772,-1.10774062241028,3.96334405494065,trp +protein homodimerization activity (GO:0042803),1/139,0.0342737002738822,0.0437452179392147,0.0690196375662676,0.0879010755944801,-1.10268146679376,3.71976027060022,trp +ATPase activity (GO:0016887),1/148,0.0364600294916184,0.0437452179392147,0.0733445567001639,0.0879010755944801,-1.04826971888814,3.47138574303346,ninaC +kinase activity (GO:0016301),1/149,0.0367027103254553,0.0437452179392147,0.073824274789648,0.0879010755944801,-1.0103521371379,3.33911750225038,ninaC +protein serine/threonine kinase activity (GO:0004674),1/172,0.0422708878519296,0.044757410666749,0.0848121455008725,0.0898010952362179,-0.983015190046441,3.10992255318619,ninaC +protein kinase activity (GO:0004672),1/228,0.0557205764773271,0.0557205764773271,0.111201083789531,0.111201083789531,-0.890830662619374,2.5721896079509,ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_AutoRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_AutoRIF.csv new file mode 100644 index 0000000..adeb880 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_AutoRIF.csv @@ -0,0 +1,18 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +G-protein_coupled_amine_receptor_activity_(GO:0008227),1/14,0.00349545250210215,0.0159152008851128,0.00836583067710485,0.0379197889183389,-269.5625,1524.72433096618,trp +G-protein_coupled_photoreceptor_activity_(GO:0008020),1/79,0.0195965343527764,0.034986899853467,0.0442116932340164,0.0788732671531366,-263.3125,1035.45074568744,ninaC +GTPase_activator_activity_(GO:0005096),1/74,0.0183654286368031,0.034986899853467,0.0414777463282047,0.0788732671531366,-242.437596300992,969.092230189958,ninaC +calcium:cation_antiporter_activity_(GO:0015368),2/49,5.85270152661325e-05,0.000994959259524253,0.000199130665794002,0.00338522131849803,-81.7938369095137,797.164543055627,trp;ninaC +calcium-transporting_ATPase_activity_(GO:0005388),1/15,0.00374475314943831,0.0159152008851128,0.00892230327490328,0.0379197889183389,-104.741694954833,585.233702282667,trp +diacylglycerol_kinase_activity_(GO:0004143),1/32,0.00797523593801193,0.0271158021892406,0.0183584417579705,0.0624187019770997,-70.9190132317585,342.63911665958,trp +adrenergic_receptor_activity_(GO:0004935),1/55,0.0136759428236966,0.034986899853467,0.0310531388382896,0.0788732671531366,-30.443957302246,130.669026318631,trp +myosin_heavy_chain_binding_(GO:0032036),1/135,0.0333007253852793,0.0391190644159861,0.0745651415756485,0.0875516470756521,-26.68479902709,90.7863854536826,ninaC +phospholipid_transporter_activity_(GO:0005548),1/63,0.0156526425478549,0.034986899853467,0.0354493192150653,0.0788732671531366,-14.1102230591963,58.6578273173434,trp +PDZ_domain_binding_(GO:0030165),2/196,0.000937142152546397,0.00796570829664438,0.00304599637253794,0.0258909691665725,-7.70267851225019,53.7082783393698,trp;ninaC +cation_channel_activity_(GO:0005261),1/83,0.0205805293255688,0.034986899853467,0.046396039501845,0.0788732671531366,-6.86941843611961,26.6767670710419,trp +ATPase_binding_(GO:0051117),1/113,0.0279353356368957,0.0391190644159861,0.0626989842462189,0.0875516470756521,-6.92773550943884,24.786487730127,ninaC +myosin_binding_(GO:0017022),1/132,0.0325704797018037,0.0391190644159861,0.0729514803682505,0.0875516470756521,-6.99321152712241,23.9471964204419,ninaC +myosin_light_chain_binding_(GO:0032027),1/125,0.0308648568431767,0.0391190644159861,0.0691808045534019,0.0875516470756521,-6.28685623024726,21.8665476535351,ninaC +phosphatidic_acid_binding_(GO:0070300),1/140,0.0345168215435172,0.0391190644159861,0.077251453302046,0.0875516470756521,-4.44651667519484,14.9683468470954,ninaC +protein_kinase_activator_activity_(GO:0030295),1/264,0.0642867075660504,0.0642867075660504,0.142622849173599,0.142622849173599,-1.60301830274285,4.39932726825838,ninaC +Rab_GTPase_binding_(GO:0017137),1/235,0.0573911067901795,0.0609780509645657,0.127549516768085,0.135521361566091,-0.494951876714967,1.41450610131008,ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_AutoRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_AutoRIF_Predicted_zscore.csv new file mode 100644 index 0000000..af65524 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_AutoRIF_Predicted_zscore.csv @@ -0,0 +1,23 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +bitter_taste_receptor_activity_(GO:0033038),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-43.7969758066757,303.625584043886,trp;ninaC +G-protein_coupled_photoreceptor_activity_(GO:0008020),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-22.0334969437218,152.7487515941,trp;ninaC +diacylglycerol_kinase_activity_(GO:0004143),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-18.9241875940462,131.193248048933,trp;ninaC +calcium:cation_antiporter_activity_(GO:0015368),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-18.445208489727,127.872692060417,trp;ninaC +FAD_binding_(GO:0071949),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-14.4673224200452,100.295719931144,trp;ninaC +calcium-transporting_ATPase_activity_(GO:0005388),1/200,0.0490147537911314,0.0490147537911314,0.0882724027386232,0.0882724027386232,-31.5919275553545,95.2696885999292,ninaC +antiporter_activity_(GO:0015297),1/200,0.0490147537911314,0.0490147537911314,0.0882724027386232,0.0882724027386232,-31.3008039070373,94.3917662487002,ninaC +cation:chloride_symporter_activity_(GO:0015377),1/200,0.0490147537911314,0.0490147537911314,0.0882724027386232,0.0882724027386232,-23.0242580218237,69.4327336671733,Gat +flavin_adenine_dinucleotide_binding_(GO:0050660),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-3.29968723267414,22.8753114736778,trp;ninaC +potassium_ion_antiporter_activity_(GO:0022821),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-3.29093125412654,22.8146100427817,trp;ninaC +potassium_ion_symporter_activity_(GO:0022820),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-3.22902690903787,22.3854538605062,trp;ninaC +"phosphotransferase_activity,_for_other_substituted_phosphate_groups_(GO:0016780)",2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-1.95606158570133,13.5605331291812,trp;ninaC +lipase_activity_(GO:0016298),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-1.75396430946183,12.1594796910911,trp;ninaC +taste_receptor_activity_(GO:0008527),1/200,0.0490147537911314,0.0490147537911314,0.0882724027386232,0.0882724027386232,-3.19000367957086,9.6198833278799,ninaC +guanyl_ribonucleotide_binding_(GO:0032561),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-1.29024899316736,8.94474097576306,trp;ninaC +symporter_activity_(GO:0015293),1/200,0.0490147537911314,0.0490147537911314,0.0882724027386232,0.0882724027386232,-2.45604510981716,7.40653296288031,ninaC +"phosphatidylinositol-4,5-bisphosphate_phosphatase_activity_(GO:0106019)",2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-0.734477798443006,5.09181847404025,trp;ninaC +"phosphatidylinositol-4,5-bisphosphate_binding_(GO:0005546)",2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-0.608136417908839,4.21594805725795,trp;ninaC +phosphatidylinositol_bisphosphate_binding_(GO:1902936),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-0.595791328766793,4.13036486728216,trp;ninaC +phospholipid_transporter_activity_(GO:0005548),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-0.539526828272601,3.74030730031923,trp;ninaC +phospholipase_activity_(GO:0004620),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-0.519668273807837,3.60263648888589,trp;ninaC +phosphoric_diester_hydrolase_activity_(GO:0008081),2/200,0.000975491001241299,0.00126240011925345,0.00271813240691741,0.00351758311483429,-0.46392114447035,3.21616563348759,trp;ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_GeneRIF.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_GeneRIF.csv new file mode 100644 index 0000000..1d6f94d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_GeneRIF.csv @@ -0,0 +1,13 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +lipase_activity_(GO:0016298),1/7,0.00174895020992126,0.0140352825533434,0.00705620763582389,0.0503549964163755,-3.02273084055695,19.1905308397486,trp +cation_channel_activity_(GO:0005261),1/17,0.00424320475875176,0.0140352825533434,0.015841334480495,0.0503549964163755,-1.82658016827985,9.97757810085905,trp +protein_kinase_C_binding_(GO:0005080),1/45,0.0112006038536504,0.0140352825533434,0.0402320163516888,0.0503549964163755,-2.17307744527789,9.76100229348481,trp +amino_acid_transmembrane_transporter_activity_(GO:0015171),1/26,0.00648376867908369,0.0140352825533434,0.0237145725754912,0.0503549964163755,-1.886450553238,9.50479311220362,trp +protein_transmembrane_transporter_activity_(GO:0008320),1/41,0.0102090778353819,0.0140352825533434,0.0367663706673207,0.0503549964163755,-1.95633225727629,8.96876213671943,trp +myosin_light_chain_binding_(GO:0032027),1/27,0.00673247105008972,0.0140352825533434,0.0245874249916805,0.0503549964163755,-1.56030260539428,7.80278160496574,ninaC +P-P-bond-hydrolysis-driven_transmembrane_transporter_activity_(GO:0015405),1/41,0.0102090778353819,0.0140352825533434,0.0367663706673207,0.0503549964163755,-1.70064554110506,7.79657201904928,trp +P-P-bond-hydrolysis-driven_protein_transmembrane_transporter_activity_(GO:0015450),1/41,0.0102090778353819,0.0140352825533434,0.0367663706673207,0.0503549964163755,-1.68633991460479,7.7309881895027,trp +myosin_heavy_chain_binding_(GO:0032036),1/32,0.00797523593801193,0.0140352825533434,0.0289458316223224,0.0503549964163755,-1.47272981099554,7.11536749487327,ninaC +phosphatidic_acid_binding_(GO:0070300),1/47,0.0116960687944528,0.0140352825533434,0.0419624970136462,0.0503549964163755,-1.59775130887807,7.10760068251697,ninaC +phosphatase_binding_(GO:0019902),1/67,0.0166398032403185,0.018152512625802,0.0591814237019829,0.0645615531294359,-1.26018041367801,5.16164562866832,trp +myosin_binding_(GO:0017022),1/109,0.02695725585412,0.02695725585412,0.0948329166853986,0.0948329166853986,-1.20563610085489,4.35656940686372,ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_GeneRIF_Predicted_zscore.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_GeneRIF_Predicted_zscore.csv new file mode 100644 index 0000000..00c20f4 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/SFug_vs_Earth_GO_Molecular_Function_GeneRIF_Predicted_zscore.csv @@ -0,0 +1,8 @@ +Term,Overlap,P.value,Adjusted.P.value,Old.P.value,Old.Adjusted.P.value,Z.score,Combined.Score,Genes +G-protein_coupled_photoreceptor_activity_(GO:0008020),2/200,0.000975491001241299,0.00136568740173782,0.00131316633439472,0.0018384328681526,-18.9797565357043,131.578483605838,trp;ninaC +alcohol_dehydrogenase_(NADP+)_activity_(GO:0008106),1/200,0.0490147537911314,0.0490147537911314,0.0709889919392225,0.0709889919392225,-19.3426097925007,58.330230354341,ninaC +myosin_heavy_chain_binding_(GO:0032036),1/200,0.0490147537911314,0.0490147537911314,0.0709889919392225,0.0709889919392225,-5.90848841564008,17.8178381318462,trp +lipase_activity_(GO:0016298),2/200,0.000975491001241299,0.00136568740173782,0.00131316633439472,0.0018384328681526,-1.83422992076018,12.7159266297262,trp;ninaC +phospholipase_activity_(GO:0004620),2/200,0.000975491001241299,0.00136568740173782,0.00131316633439472,0.0018384328681526,-0.757743811876782,5.25311173201279,trp;ninaC +phosphoric_diester_hydrolase_activity_(GO:0008081),2/200,0.000975491001241299,0.00136568740173782,0.00131316633439472,0.0018384328681526,-0.676918448066399,4.69278427011651,trp;ninaC +phosphatidylinositol_bisphosphate_binding_(GO:1902936),2/200,0.000975491001241299,0.00136568740173782,0.00131316633439472,0.0018384328681526,-0.514956301079699,3.56997040988777,trp;ninaC diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_Earth.csv new file mode 100644 index 0000000..b8320f2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_Earth.csv @@ -0,0 +1,986 @@ +pathway,pval,padj,log2err,ES,NES,size,leadingEdge +GO:0000070,0.293216630196937,0.721862223250791,0.116234148779716,-0.442716782579073,-1.12092326357188,13,Q9VCC0|Q86BS3|A1Z6P3 +GO:0000165,0.463087248322148,0.821695726253576,0.0894366833718621,-0.331837392795707,-0.978312464184897,22,Q24276|Q9VD02|Q9VK60|Q95NU8 +GO:0000226,0.0224588839780356,0.254275870326035,0.352487857583619,-0.424778570458839,-1.48761987596515,48,Q9I7K0|Q9VHT3|Q9VB22|Q9VQQ0|Q9VJZ5|Q9VCC0|Q86BS3|P17210|A1Z6P3|Q24185|Q9VSY4|P92177|Q9VVC8 +GO:0000278,0.882838283828383,1,0.0425877779273254,0.224530987875035,0.783282663947184,65,P48596|Q94901|Q9W2E7|Q9VPL0|P48148|Q9VH81|Q9VGP6|Q7K012|Q9V3P3|Q9W4X7|Q9VXQ5|P45889|Q9VE85 +GO:0000280,0.592526690391459,0.899289352905373,0.0646484568421928,0.320499086318189,0.913249815837581,24,P21187|Q9W2E7|Q9VGP6 +GO:0000281,0.770925110132159,1,0.062249042949858,-0.32018503596684,-0.792781343530464,12,Q23983 +GO:0000302,0.479830148619958,0.836295292896314,0.0845557442441281,-0.4182244636783,-0.979086476814396,10,Q9VA37|Q9VTU2 +GO:0000375,0.0489864864864865,0.386013513513513,0.266350657088526,0.411287852690039,1.38300542383985,52,P21187|Q94901|Q9VPL0|Q9W3M7|Q9V3V0|Q8MZI3|Q4V5H1|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VXE0|Q9VN21|Q9VI10|P43332|Q24297|Q05856 +GO:0000377,0.0489864864864865,0.386013513513513,0.266350657088526,0.411287852690039,1.38300542383985,52,P21187|Q94901|Q9VPL0|Q9W3M7|Q9V3V0|Q8MZI3|Q4V5H1|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VXE0|Q9VN21|Q9VI10|P43332|Q24297|Q05856 +GO:0000380,0.0638686131386861,0.445313858459398,0.241339976815091,0.558771446147572,1.43747784365994,16,Q9W3M7|Q9V3V0|Q8MZI3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VI10|P43332 +GO:0000381,0.376146788990826,0.775114199071053,0.0899860794997137,0.45008719606719,1.09113746362149,13,Q9V3V0|A0A0B4KGY6|Q7KLW9|Q27268|P43332 +GO:0000398,0.0489864864864865,0.386013513513513,0.266350657088526,0.411287852690039,1.38300542383985,52,P21187|Q94901|Q9VPL0|Q9W3M7|Q9V3V0|Q8MZI3|Q4V5H1|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VXE0|Q9VN21|Q9VI10|P43332|Q24297|Q05856 +GO:0000578,0.261851015801354,0.684146553221045,0.126253987849115,-0.416820630118296,-1.15318198489237,18,Q9VQ91|Q7KM15|P17210 +GO:0000819,0.293216630196937,0.721862223250791,0.116234148779716,-0.442716782579073,-1.12092326357188,13,Q9VCC0|Q86BS3|A1Z6P3 +GO:0000902,0.995024875621891,1,0.0559428593065705,-0.168821163218533,-0.638973640739869,72,Q7KMS3|Q7K5M0|P17210|Q95NU8|Q9VWD0|Q9VVA6|M9PHA0|P06002|Q0KI81|P35220|Q8SX68|P92177|Q9W289|Q9VD29 +GO:0000910,0.495446265938069,0.845600493624654,0.0747385227439092,0.365644881597317,0.956736908781225,17,P21187|P48148 +GO:0000956,0.126605504587156,0.536527643429344,0.16823816568964,0.55278417967176,1.34010372436165,13,Q9VNH5|P23128|Q9VVI2|Q9W1H5|Q9W0C3|Q8IPX7|Q9W1M9|Q9VEN9 +GO:0001558,0.925182481751825,1,0.0450442767152795,0.265241295964791,0.627613635472325,12,Q9VSR5|Q9I7T7|P09208 +GO:0001654,0.523156089193825,0.857621286231346,0.0689567351672811,0.297853001183359,0.957841150381063,41,P21187|Q9VZU7|Q24253|Q9VBC7|P48148|Q9VFT4 +GO:0001666,0.439490445859873,0.810945777237912,0.0894366833718621,-0.43566650572542,-1.01991925676746,10,P91927|Q9VG69|O46067|Q9VF15 +GO:0001667,0.29136690647482,0.721862223250791,0.103958471559957,0.410255111112042,1.1282297499502,20,P48596|P12080|P48148|O76742|P08646|P09208 +GO:0001700,0.709821428571429,0.962551829238123,0.0668966276500666,-0.283284763515706,-0.842572714876033,23,Q7KM15|Q7K5M0|Q24478|A1Z6P3|Q7KN94|P35220 +GO:0001709,0.176220806794055,0.602446483180428,0.152144922367565,-0.540041399605675,-1.26426662520763,10,Q9VB22|Q9VQQ0 +GO:0001736,0.904587155963303,1,0.0463227785794633,0.268760797618758,0.651551471797129,13,P48148|Q9VFT4|P08646|Q9VHG4 +GO:0001738,0.963503649635036,1,0.0431901998334182,0.235854055855006,0.606750724229681,16,P48148|Q9VFT4|P08646|Q9VHG4 +GO:0001745,0.625222024866785,0.926789718129404,0.0619762736001998,0.293787506197212,0.907355858402641,36,P21187|Q9VZU7|Q9VBC7|P48148|Q9VFT4 +GO:0001751,0.444839857651246,0.816603389638897,0.0791316651768349,0.34147312753251,0.996997599432086,27,P21187|Q9VZU7|Q9VBC7 +GO:0001754,0.530141843971631,0.86329813829005,0.0699458736501659,0.321345221927766,0.947254633686513,28,P21187|Q9VZU7|Q9VBC7 +GO:0001763,0.97992700729927,1,0.0424170054438747,0.225687317047317,0.534021058134417,12,P35992|P08646|Q9VVA7 +GO:0001894,0.00599579134708521,0.107277298089043,0.407017918923954,-0.713942220249242,-1.76772806031739,12,Q9W3E2|P10676|Q9W266|P19334|Q7K5M6 +GO:0002009,0.861985472154964,1,0.0614364107201271,-0.225718656832044,-0.784964729824641,47,Q7K5M0|Q9VSD6|Q8SX89|Q7KN94|Q9VD64|P35220|Q9VU68|D0UGE6 +GO:0002064,0.157894736842105,0.5738978442416,0.14551614609036,0.413210804372052,1.25320584284675,32,P12080|Q9W414|P48148|Q9VFT4|Q9VAF5|O76742|Q7KY04|P08646|P09208|P23128 +GO:0002164,0.106498194945848,0.485651490841022,0.183023938384487,0.474621682875471,1.33388668554268,23,Q9VQE0|P48596|Q9VR79|Q9VW34 +GO:0002165,0.409240924092409,0.802049405693499,0.0795564677235957,0.295522649366877,1.03093907100987,65,P48596|Q9VHC3|Q9VR79|P12080|Q9VBC7|Q9VFC2|Q9VW34|P48148|Q9VY05|P14484|P12370|O61443 +GO:0002168,0.092896174863388,0.448542805100182,0.197822021315103,0.603980457521009,1.40361430374258,11,P48596|Q9VR79|Q9VW34 +GO:0002181,8.90556595734148e-07,0.000125314035256876,0.659444398037935,0.650908332921375,2.14771729274615,48,O16797|Q9VNE9|P41093|Q0E9B6|P09180|Q9VNB9|P50887|Q94901|O02195|A1ZA22|P29327|Q9V3G1|Q9V9M7|P55841|Q9VDV2|Q9GU68|Q9W1B9|Q9W0A8|P41094|Q9W229|Q9VVU2|P36241 +GO:0002218,0.994525547445255,1,0.0417397034728504,0.205314009661836,0.485813762704468,12,Q9VN50|Q9NHA8|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0002221,0.994525547445255,1,0.0417397034728504,0.205314009661836,0.485813762704468,12,Q9VN50|Q9NHA8|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0002252,0.938189845474614,1,0.0531298054705469,-0.238647192109648,-0.655500629087748,17,Q9V521 +GO:0002253,0.994525547445255,1,0.0417397034728504,0.205314009661836,0.485813762704468,12,Q9VN50|Q9NHA8|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0002376,0.764309764309764,1,0.0500922874402106,0.235149713594189,0.861383633235088,89,Q9VQE0|P17336|P45437|Q9VLY7|Q9VT23|Q9VFC2|P48148|Q7JWX3|Q00174|Q70PY2|Q9VCJ8|Q6NMY2|O61443|Q9VSL5|P48609|Q9VN50|Q9V3Z2|Q9VAF5|Q9V3U6|Q95RS6 +GO:0002440,0.985401459854015,1,0.0421619430092452,0.213164251207729,0.504388994807874,12,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|O18335|Q7KUA4 +GO:0002520,0.306967984934087,0.723008705207672,0.103576326612592,0.504235601049589,1.13512956229998,10,Q9VQE0 +GO:0002682,0.12991452991453,0.544535370067285,0.159646701919906,0.39720048705218,1.27076088049061,40,P17336|P45437|Q9VFC2|Q7JWX3|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0002683,0.903587443946188,1,0.0555947097758869,-0.246796017931047,-0.707899639314624,20,Q960M4|Q9VSL4|P08985|Q7KUA4|Q9VCE1|Q9W2D6|Q9W5R5|Q9VLU4|Q7KNM2|Q7YTY6|Q9V3N1 +GO:0002684,0.51520572450805,0.855780166341365,0.0718276293603809,0.335486139381537,0.963279392921583,25,P45437|Q9VCJ8|Q9VN50|Q9V3Z2|P08646|P22812|Q9NHA8 +GO:0002697,0.985401459854015,1,0.0421619430092452,0.213164251207729,0.504388994807874,12,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q9V3N1|Q7YTY6|Q7KNM2|O97102|Q7KUA4 +GO:0002700,0.998178506375228,1,0.041488040200221,0.213035606517803,0.495081953052202,11,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|Q7KUA4 +GO:0002757,0.994525547445255,1,0.0417397034728504,0.205314009661836,0.485813762704468,12,Q9VN50|Q9NHA8|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0002758,0.994525547445255,1,0.0417397034728504,0.205314009661836,0.485813762704468,12,Q9VN50|Q9NHA8|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0002759,0.998178506375228,1,0.041488040200221,0.213035606517803,0.495081953052202,11,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|Q7KUA4 +GO:0002764,0.994525547445255,1,0.0417397034728504,0.205314009661836,0.485813762704468,12,Q9VN50|Q9NHA8|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0002775,0.985401459854015,1,0.0421619430092452,0.213164251207729,0.504388994807874,12,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|O18335|Q7KUA4 +GO:0002784,0.998178506375228,1,0.041488040200221,0.213035606517803,0.495081953052202,11,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|Q7KUA4 +GO:0002831,0.555746140651801,0.881490927802761,0.065981614400873,0.293927384095486,0.945217078867716,41,P45437|Q9VFC2|Q7JWX3|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0002832,0.878103837471783,1,0.0572461135202885,-0.258685720011723,-0.715683655057499,18,Q960M4|Q9VSL4|P08985|Q7KUA4|Q9VCE1|Q9W2D6|Q9W5R5|Q9VLU4|Q7KNM2|Q7YTY6|Q9V3N1 +GO:0002833,0.772241992882562,1,0.0521630305460055,0.270684549934541,0.790316498513924,27,P45437|Q9VCJ8|Q9VN50|Q9V3Z2 +GO:0002920,0.998178506375228,1,0.041488040200221,0.213035606517803,0.495081953052202,11,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|Q7KUA4 +GO:0003002,0.971014492753623,1,0.0557104226766671,-0.189990531982184,-0.658910966794572,46,Q9VQ91|Q7KM15|P08182|Q9VSD6|P17210|Q9U6R9|P92177|Q9Y162|Q9VD29 +GO:0003006,0.373956594323873,0.775114199071053,0.0850427463764322,0.275582170983648,1.02944670246656,102,P21187|Q94901|Q9VED8|Q7K485|Q9W0S7|P12080|Q9W2E7|Q9W414|P48148|Q9VFT4|P12370|Q9VAF5|Q9VVG0|O76742|Q7KY04|Q9VT75|O44386|P08646|P09208|P23128|Q9XYZ5|Q9VN21|Q9VPX6|P20240|P43332|Q05856 +GO:0003008,0.502450980392157,0.845600493624654,0.0899860794997137,-0.269766535170538,-0.979951450178057,57,Q9W369|P29613|P18432|P19334|Q7K5M6|P09040|Q9V931|P13677|Q26377|A1Z6P3|Q9VII1|Q7KLE5|P06002 +GO:0005975,0.0926829268292683,0.448542805100182,0.231126709673834,-0.364266390754821,-1.2934429444227,52,Q9VG42|P29613|Q9Y119|Q9VEB1|Q9VWP2|Q9VAN7|Q9VTY2|P52029|Q9W401|Q9VM18|M9PF61|A1Z992 +GO:0005996,0.0681818181818182,0.448384728340676,0.261663521711573,-0.458145154990423,-1.41388524348622,27,Q9VG42|P29613|Q9VEB1|Q9VWP2|Q9VAN7|Q9VTY2|P52029 +GO:0006006,0.0207879823254027,0.240896030476726,0.352487857583619,-0.626950353163273,-1.58738783714349,13,Q9VG42|P29613|Q9VEB1|Q9VWP2|Q9VAN7|P52029 +GO:0006066,0.257336343115124,0.684146553221045,0.127505315300183,-0.3774716314836,-1.13168361253716,25,Q9VA37|P29613|Q9VWH4|Q9VTY2|Q9VV47|M9PF61|P00334|Q9VSU6 +GO:0006081,0.502202643171806,0.845600493624654,0.0840745577910723,-0.354249533353437,-0.955034547146188,16,Q9VA37|P29613|Q26377|P00334|Q9W1G0|P07486 +GO:0006082,0.147350993377483,0.570306038047974,0.14641623786055,0.308612593543911,1.16250413660323,111,Q9VNW6|Q9VAC1|Q7JYW9|Q7JWF1|P54385|Q9W1H8|Q7K511|Q7K2E1|Q7JXZ2|Q9VXY3|Q9VXZ8|Q9VCK6|Q94523|Q9VSA3|Q9VUY9|Q9VW68|Q9VSY6|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007 +GO:0006090,0.562913907284768,0.881490927802761,0.0780892306943345,-0.376452119353816,-0.902164089478136,11,P29613|Q9VAN7|P52029|Q9VVL7 +GO:0006091,6.7073146588779e-05,0.00367039163277485,0.538434096309916,-0.463627839475947,-1.81653460211267,93,Q9VA37|P29613|Q9VTU2|Q9VEB1|Q9VWH4|Q9W1N3|Q9VJZ4|Q9VAN7|Q8SYJ2|Q9W402|Q6IHY5|P52029|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q94522|Q9VXN2|Q9VWI0|Q9W401|A8Y535|Q24439|Q9VMB9|Q9VV75|A1Z992|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|P00334|Q9VZ64|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9W1G0|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1|P07486|Q9W141|Q9VCE1|Q9VKX2|Q9VMS1|P00408|Q9W385|Q9VIQ8|Q9V3L7|Q8SZA8 +GO:0006099,0.402625820568928,0.796358299719667,0.096240602328129,-0.392106926234002,-1.01592564865572,14,Q9VEB1|Q9VWH4|Q94522|Q9W401|P21914|Q4V5I9 +GO:0006119,4.28284277045814e-06,0.000527325016112659,0.610526878385931,-0.572895921732407,-2.09449254922099,59,Q9VA37|Q9VTU2|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q9VXN2|Q9VWI0|A8Y535|Q24439|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1|Q9W141|Q9VMS1|P00408|Q9W385|Q9VIQ8|Q9V3L7 +GO:0006120,0.000185529609921451,0.00830666662602858,0.518848077743792,-0.618361334251965,-1.94547259724784,31,Q9VTU2|Q9VJZ4|Q9W402|Q9VQD7|Q9W3X7|Q9VX36|Q9VZU4|Q9VWI0|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|Q9VQM2|Q9V3W2|O97418|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0006139,0.0395136778115502,0.347508684324794,0.282013350011725,0.30175860178502,1.25914987185488,253,Q9VC18|P21187|Q9VZU7|Q9V3N7|Q9W3J5|Q9VA09|Q9VKD3|Q94901|Q7JYW9|P54385|Q9VED8|Q01637|Q9VAJ9|Q9W0S7|Q7KVQ0|Q9VNH5|Q7K569|Q9W414|Q9VXZ8|Q9VTZ4|Q9VSC3|Q9VUY9|P28668|Q9VPL0|Q9W3M7|P32748|Q9VXN4|Q9V3V0|Q9VNZ3|Q9VF86|Q9VNC1|Q8MZI3|P35381|Q4V5H1|Q8MLS2|Q7JVK6|Q9VGU6|Q9VJ86|Q7K0E6|P12370|Q7K012 +GO:0006163,0.373927958833619,0.775114199071053,0.0865399737444125,0.325434252226703,1.04653744393307,41,Q9VC18|Q9VA09|Q7JYW9|P54385|Q9VAJ9|Q7K569|Q9VUY9|P35381|Q8MLS2|Q9VGU6 +GO:0006164,0.523381294964029,0.857621286231346,0.0713052987340038,0.350210262789613,0.963102290538461,20,Q9VC18|Q9VA09|P35381|Q9VGU6 +GO:0006259,0.158558558558559,0.574191838897721,0.147331213699377,0.458512109485281,1.28588429781421,22,Q9VZU7|Q9VED8|P12370|P54622|Q7KLW9|Q9XYZ5|Q9VIH1|Q7JXB9|Q9VUH8 +GO:0006325,0.328018223234624,0.747253988878756,0.11146266692298,-0.328987032709705,-1.09238086580428,36,Q9VQ91|Q9I7K6|Q7JXC4|Q24478|Q86BS3|Q9VHG6|P08985|Q03427|Q9W0H8|P53997|Q9W396|P05205 +GO:0006338,0.231678486997636,0.657646425627295,0.13880510939114,-0.365063560809995,-1.14855362790224,31,Q9VQ91|Q9I7K6|Q7JXC4|Q24478|Q86BS3|Q9VHG6|P08985|Q03427|Q9W0H8|P53997|Q9W396|P05205 +GO:0006351,1,1,0.0555947097758869,-0.145120684779814,-0.520388985153309,54,Q9VLR5|Q9V406|Q24478|Q9W403|Q9VHG6|Q9V3J4|Q9VCH5|Q9W0H8|Q7JWD6|Q9VY91|P05205|Q8IRH5|Q7K159|Q9VHM3|Q9VXN3|Q9V3T8|Q961D9|Q9VTT2|P92204 +GO:0006352,0.815693430656934,1,0.0508054139066364,0.308888882871779,0.730892503111115,12,Q9W414|Q9V3V0 +GO:0006355,0.963414634146341,1,0.0565299525056311,-0.195472899008538,-0.673840219843774,45,Q9VLR5|Q9V406|Q24478|Q9W403|Q9VHG6|Q9V3J4|Q9VCH5|Q9W0H8|Q9VY91|P05205|Q8IRH5|Q7K159|Q9VHM3|Q9VXN3|Q9V3T8|Q961D9|Q9VTT2|P92204 +GO:0006357,0.946759259259259,1,0.0549073703290958,-0.21652003279873,-0.689164970177444,32,Q9VLR5|Q9V406|Q24478|Q9W403|Q9V3J4|Q9VCH5|P05205|Q8IRH5|Q7K159|Q9VHM3|Q9V3T8|Q961D9|P92204|Q9V3W7 +GO:0006364,0.176146788990826,0.602446483180428,0.140406238523342,0.521459699534432,1.26416440836919,13,Q7KVQ0|Q9W1V3|Q8IPX7|Q95WY3|Q9W1M9|Q9W499 +GO:0006366,0.995249406175772,1,0.05378728077603,-0.160877181661252,-0.542174184620203,39,Q9VLR5|Q9V406|Q24478|Q9W403|Q9V3J4|Q9VCH5|Q7JWD6|P05205|Q8IRH5|Q7K159|Q9VHM3|Q9V3T8|Q961D9|P92204|Q9V3W7|Q7K180|Q9W5P1|O44226|Q9VP57 +GO:0006367,0.806921675774135,1,0.0512184348540341,0.316264838828896,0.734980488231504,11,Q9W414|Q9V3V0 +GO:0006396,0.0848585690515807,0.448542805100182,0.197822021315103,0.347574865691832,1.26843856044609,85,P21187|Q9VKD3|Q94901|Q7KVQ0|Q9VPL0|Q9W3M7|Q9V3V0|Q9VNC1|Q8MZI3|Q4V5H1|Q9VJ86|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q9W1V3|Q7KLW9|Q27268|Q9VXE0|Q9VN21|Q9VI10|Q9VIS4|P43332|Q24297|Q05856|Q8IPX7|Q95WY3|Q9VUH8|Q9V998|Q9W1M9|Q8SXG7|Q9W499 +GO:0006397,0.0483333333333333,0.386013513513513,0.266350657088526,0.405384301732486,1.38215945947978,56,P21187|Q94901|Q9VPL0|Q9W3M7|Q9V3V0|Q8MZI3|Q4V5H1|Q9VJ86|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VXE0|Q9VN21|Q9VI10|P43332|Q24297|Q05856 +GO:0006399,0.135087719298246,0.551995840872877,0.158514105424824,0.424755295990333,1.28821853901938,32,Q9W3J5|Q9VKD3|P28668|Q9VXN4|Q9VNZ3|Q7K0E6 +GO:0006401,0.284436493738819,0.721071179284632,0.105125131597001,0.412011925936679,1.14458419223831,21,Q9W0S7|Q9VNH5|Q9VSC3|Q9VJ86|P23128|Q9VVI2|Q9W1H5|Q9W0C3|Q8IPX7|Q9W1M9|Q9VEN9|Q9VD14 +GO:0006402,0.118067978533095,0.519182852031689,0.172324344900946,0.504567399022224,1.35680452101422,18,Q9W0S7|Q9VNH5|Q9VJ86|P23128|Q9VVI2|Q9W1H5|Q9W0C3|Q8IPX7|Q9W1M9|Q9VEN9|Q9VD14 +GO:0006403,1,1,0.0536769600638127,-0.150377111630121,-0.466310529623541,30,Q7KM15|P08182|P17210 +GO:0006405,0.572992700729927,0.886024819810013,0.0675188953767744,0.390578827705484,0.924187152317702,12,Q9W2E7|Q9W1X4|Q27268 +GO:0006412,5.47175198225582e-22,5.38967570252198e-19,1.21254456769062,0.697945281901032,2.70622409653719,138,O16797|Q9VNE9|Q9VXP3|P41093|P21187|Q0E9B6|Q9VXQ0|P09180|Q9VNB9|Q9W3J5|P50887|P22979|Q94901|Q9W253|Q9VAY9|Q8SXF0|O02195|Q9W1L1|A1Z9A8|Q9W4I3|Q9VSR5|Q9VV39|Q9VHT5|Q9VCX3|Q9VCK0|Q9VMD3|Q9VUX1|Q9VMY1|Q9U9Q4|A1ZA22|P29327|Q9V3G1|P28668|Q9NJH0|Q9VKU3|Q9W086|Q9VIN9|Q9W199|Q9VPL3|Q9VVN2|Q9V6Y3|Q9VXN4|Q9VPF6|Q9VY28|Q9VFB2|Q9VNC1|Q9V9M7|O77410|P55841|O77477|Q9VGP7|Q7K3V6|Q9VUN9|A1ZBA5|P13060|Q9VJ86|Q9VDV2|Q7K0E6|Q8IP62|Q9GU68|Q9W1B9|Q8MSS7|Q9V3E3|Q9W0A8|Q9VN50|P41094|Q9VHN6|Q9W229|Q9VFJ2|Q9W4Z2|Q9VVU2|Q9W158|Q9W4X7|P36241 +GO:0006413,0.023586731295429,0.261044160966265,0.352487857583619,0.547799307594412,1.53628773028461,22,P22979|O02195|Q9VCK0|Q9U9Q4|A1ZA22|O77410|Q9VUN9|Q9VN50|Q9W4X7|Q9VEA1|Q9W2D9 +GO:0006414,0.0510018214936248,0.398468540056346,0.271288554688953,0.653485165009916,1.51866027032769,11,Q9NJH0|Q9VNC1|Q7K3V6|P13060|Q9GU68 +GO:0006417,0.00254103559945881,0.061046830865047,0.431707695803346,0.610729122523776,1.74024913792658,24,Q9VNE9|P21187|P22979|Q94901|Q9VCK0|O77477|Q9VUN9|Q9VJ86|Q9GU68|Q9W158|Q7KN75|Q9I7T7|Q9W2D9|P23128 +GO:0006418,0.119266055045872,0.522120285423038,0.173747838999571,0.538181142918835,1.3323633604706,14,Q9W3J5|P28668|Q9VXN4|Q7K0E6 +GO:0006457,0.178660049627792,0.602446483180428,0.16440575583821,-0.327910598707178,-1.17585624641415,54,Q24276|Q9VAA6|Q9V9Q4|Q9VSA9|Q7JQR3|Q9VVW7|Q9VU35|Q8MR62|Q9VH95|P48604|Q9V3W0|Q9VVA6|Q9TVP3|Q9VJD4|Q9VSX2|Q8IQW5|Q9VFV9|Q9W227|Q9VFP0|O02649 +GO:0006468,0.864559819413093,1,0.0579754757571486,-0.254042420358767,-0.740047918071184,21,P10676|Q9VEN3|P13677|A8DYP0|Q9V400|Q9VRJ6|Q9VKF0 +GO:0006508,2.183594495253e-05,0.00143389371854947,0.575610261071129,0.45521970184643,1.76136567035768,132,Q9VZU7|Q9VHR8|Q9VFQ9|Q9VW54|Q9VXC9|Q7K485|Q9W5W7|O18413|Q7K148|Q9VBC7|Q9W414|Q9VT23|Q9VFC2|Q9U9Q4|Q7KUT2|Q9VUJ1|P40304|Q9VJ58|Q7JWX3|P40301|Q7K3W2|Q7KMQ0|Q9VCJ8|A0AQH0|Q9Y136|Q9V3G7|P12370|A1Z7H7|Q9V3V6|Q9V3H2|Q9VN01|Q9V3Z2|Q9VNA5|Q9V3P3|Q8MT58|Q9VJD0|Q9VC48|Q9V3U6|Q7JWQ7|Q9VKY3|Q95RS6|Q7KMP8|Q9VKC7|Q9VFF0|A0A0B4LFA6|Q9VBP9|Q95083|Q8T4G5|Q9VIM0|Q9VME3|Q9XYZ5|Q9VTF9|Q9VAG3|A0A0B4K692 +GO:0006511,0.0205367852276295,0.240818255347798,0.352487857583619,0.441734939582108,1.50233873789995,55,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q9VUJ1|P40304|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q7KMP8|A0A0B4LFA6|Q9VBP9|Q95083|Q9XYZ5|Q9VTF9|Q9W2N5|P18053 +GO:0006520,0.00211427973191788,0.0520641383984777,0.431707695803346,0.473470142264962,1.63073783397462,61,Q9W3J5|Q9VNW6|P54385|Q7JXZ2|Q9VXY3|Q9VCK6|Q9VW68|Q9VSY6|P28668|Q9VHB8|Q9VXN4|Q9VW26|Q9VZI8|Q9VM58|Q9VKR4|Q7K0E6|Q9W265|Q9VCW2|Q9VHD3|Q9VAN0|Q9VYF0|Q9VDC6|Q9V9A7|Q9VY42|Q9VCA5|Q9VI04|Q9VRD9|Q7KW39|Q9VHD2 +GO:0006575,0.766256590509666,1,0.0519512476197082,0.267017014499301,0.82023419288096,35,P48596|Q9VSL3|Q7JXZ2|Q9VF23|Q7JVI6|Q9VSL5|Q9VHD3 +GO:0006582,0.708520179372197,0.962551829238123,0.0672065093710464,-0.290191825173761,-0.83237440415247,20,Q9V521|A0A126GUP6|Q9VL01|A1Z6P3 +GO:0006605,0.873684210526316,1,0.0458620343117985,0.244256456671578,0.740792872342836,32,Q9V3D9|Q9VSS2|Q9VL10|Q7K3W2|Q8IRD0|Q9VKC8|Q9VFF0|Q9VSN9 +GO:0006606,0.969365426695843,1,0.0512184348540341,-0.242830967371673,-0.629160546614622,14,Q9VSD6|Q9V3J4|Q9VCH5|A0A0B4K7J2|Q9V6B9|Q9GYU8|Q7JXF5 +GO:0006612,0.368613138686131,0.775114199071053,0.0908241419007155,0.458909020926255,1.08586997332725,12,Q9V3D9|Q9VSS2 +GO:0006626,0.985401459854015,1,0.0421619430092452,0.211974571386819,0.545319113724704,16,Q9VL10|Q7K3W2|Q8IRD0|Q9VKC8|Q9VFF0 +GO:0006629,0.447986577181208,0.817160700969426,0.0756946307932749,0.278271984110197,0.995571726982828,75,Q7JWF1|Q9W1H8|Q7K3N4|Q7K2E1|Q9VXZ8|Q9VSA3|Q9VY05|Q9VG81|Q9VL10|Q9VDT1|Q9VM58|P20007|O97477|Q7JX94|Q9W5W8 +GO:0006631,0.394316163410302,0.794276934476784,0.0855356947987884,0.334653918409006,1.03357081904626,36,Q7JWF1|Q9W1H8|Q7K2E1|Q9VXZ8|Q9VSA3|Q9VDT1|P20007|Q9W5W8 +GO:0006635,0.144901610017889,0.570306038047974,0.154190966581424,0.484764400314754,1.3035533632343,18,Q7JWF1|Q9W1H8|Q9VSA3|Q9VDT1|Q9W5W8 +GO:0006637,0.691148775894539,0.962551829238123,0.059989249649033,0.368611871498807,0.829814934689368,10,Q9VXZ8 +GO:0006644,0.640969162995595,0.933085551738944,0.0713052987340038,-0.317250062708572,-0.855286292413238,16,Q9VAG9|Q9VCE0|Q9VFP6|Q86BN8|Q7K1C5|Q7KTW5|Q8SXX1 +GO:0006650,0.150984682713348,0.570306038047974,0.16823816568964,-0.517044569948961,-1.30911523928008,13,Q9VAG9|Q9VCE0|Q9VFP6|Q86BN8|Q7K1C5|Q7KTW5|Q8SXX1 +GO:0006726,0.505474452554745,0.845600493624654,0.0738052724171275,0.407960883541522,0.96531655192932,12,Q9VSL3|Q9VCW2|Q9VMY9|Q9VM10 +GO:0006734,0.462385321100918,0.821695726253576,0.0787113806986485,0.405301028289744,1.00339494826142,14,Q7JYW9|P54385|Q9VAJ9|Q7K569 +GO:0006749,0.918149466192171,1,0.0442407423477375,0.233450122532333,0.68160330340988,27,Q9VSL3|Q7JXZ2|Q7JVI6|Q9VSL5|Q9VHD3 +GO:0006753,0.173202614379085,0.598612544432978,0.132846300606183,0.338351011514593,1.19132037342751,67,Q9VC18|Q9VA09|Q7JYW9|P54385|Q01637|Q9VAJ9|Q7K569|Q9VXZ8|Q9VTZ4|Q9VUY9|P32748|Q9VF86|P35381|Q8MLS2|Q9VGU6 +GO:0006754,0.240618101545254,0.667630507104437,0.130777137971974,-0.501119856787072,-1.20092919145666,11,Q9VXN2|Q24439|Q94516|O77134|Q9W2X6|Q9VMX4|Q9W141 +GO:0006790,0.872268907563025,1,0.0439759278026345,0.230177662820641,0.777717639786773,53,Q9VZF6|Q9VSL3|Q7JXZ2|Q9VXZ8|Q9VE24|Q7JVI6|Q9VSL5|Q9VHD3|Q9VRP4|Q9V9A7|Q9VWP4|Q9VRD9|Q9V9T9|Q9VHD2 +GO:0006793,0.673300165837479,0.955620552377402,0.0552495663125249,0.240924225324699,0.91798130997411,122,Q9VC18|Q9VA09|Q7JYW9|P54385|Q01637|Q9VAJ9|Q7K569|Q9VXZ8|Q9VF23|Q9VTZ4|Q9VUY9|P32748|P48148|Q9VF86|Q9VL10|P35381|Q8MLS2|O97477|Q7JX94|Q9VGU6|P12370|O61443|P48609 +GO:0006796,0.673300165837479,0.955620552377402,0.0552495663125249,0.240924225324699,0.91798130997411,122,Q9VC18|Q9VA09|Q7JYW9|P54385|Q01637|Q9VAJ9|Q7K569|Q9VXZ8|Q9VF23|Q9VTZ4|Q9VUY9|P32748|P48148|Q9VF86|Q9VL10|P35381|Q8MLS2|O97477|Q7JX94|Q9VGU6|P12370|O61443|P48609 +GO:0006810,0.497041420118343,0.845600493624654,0.101713902282311,-0.221391487968092,-0.987472447493755,275,Q9VA42|Q9VWV6|Q9VFN7|P91927|Q9W1R3|Q9VAA6|Q9VH64|P10676|Q9W266|Q9VAM6|Q23983|Q8MSI2|Q9VLP0|Q9VH98|P19334|Q9VPN5|Q9VI75|Q94524|Q9VN02|Q7KM15|Q6NLJ9|Q9U9P7|Q9VXN2|Q7K2Q8|Q24439|P13677|Q7KTA1|Q9VE75|Q94516|Q24478|Q9VSD6|Q9VH76|Q9VIH9|P17210|Q9VE50|Q9VLP3|P36975|O77134|P48604|Q9U6R9|Q9VVA6|Q9W1I8|Q9VII1|Q7KLE5|Q9VLP2|Q24185|Q8I941|Q9VBV5|Q7K188|Q9VRR3|Q9W2M0|Q9W236|Q9VGF7|Q9Y162|Q9W289|Q9V7D2|Q0E8V7|Q9VD29|Q7KUA4|P19107|Q24583|O02649|Q9VN88|Q9VQ62|Q9VWX8|Q9W0B3|Q9U6P7|Q9V3J4|Q9XTL2|Q03427|Q9W141|Q9VCE1|Q9VF15|Q7K0X9|Q9VFM9 +GO:0006811,0.0432113539131503,0.366923996590112,0.321775918075361,-0.433209798228584,-1.44861213896215,38,Q9VWV6|P91927|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|Q9VII1|Q9VLP2|Q7K188 +GO:0006812,0.00208556256874969,0.0520641383984777,0.431707695803346,-0.557666324768299,-1.81971315998517,35,Q9VWV6|P91927|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|Q9VII1|Q9VLP2|Q7K188|Q9V7D2|Q24583|Q9W141 +GO:0006813,0.0268568334712293,0.275338781696848,0.352487857583619,-0.652723637537045,-1.61615023874602,12,P91927|Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0006836,0.239277652370203,0.667630507104437,0.132846300606183,-0.42239311236367,-1.16859889488235,18,P91927|Q23983|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q9VWX8|Q9U6P7 +GO:0006839,0.632054176072235,0.926789718129404,0.0732558655828455,-0.301073577071972,-0.90263745649214,25,P91927|Q9VAA6|Q9VAM6 +GO:0006869,0.577181208053691,0.888317953020134,0.0774767547848578,-0.31312866185916,-0.923155977719932,22,Q9VA42|Q9VFN7|Q6NLJ9|Q9U9P7 +GO:0006873,0.00622827072762676,0.107277298089043,0.407017918923954,-0.632185786158152,-1.74901434100251,18,Q9VAM6|P19334|Q9VE75|A1Z992|Q9W425|Q9VJZ6|Q9V6U9|Q9VMX4|A1Z933|Q9W385 +GO:0006886,0.882838283828383,1,0.0425877779273254,0.224241816209183,0.782273880460725,65,P32392|P45437|Q24253|Q9V3D9 +GO:0006887,0.0647321428571429,0.445882242757243,0.266350657088526,-0.475063397827593,-1.41297912347353,23,Q23983|Q8MSI2|Q9VPN5|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q7KLE5 +GO:0006888,0.62589928057554,0.926789718129404,0.0625237414724762,0.322590866286902,0.887147052039265,20,P45437|Q9V3A8|Q9W3M8|Q9Y0Y5|Q9W4K0|Q9W3N6|Q9W0N6|Q9W0M4 +GO:0006891,0.860640301318268,1,0.0497903187820785,0.313043315876298,0.704719621922633,10,P45437 +GO:0006897,0.780193236714976,1,0.066132620475844,-0.240829471945998,-0.835226779655759,46,Q9VH64|Q9W266|Q9VI75|P13677|Q7KTA1|Q9W1I8|Q24185|Q9W2M0|Q7KUA4|P19107|Q9VCE1|Q7K0X9|Q9VFM9|Q8SXX1|Q9W3K6|O18335 +GO:0006898,0.628635346756152,0.926789718129404,0.0730744399126987,-0.301272127921623,-0.88820092086091,22,Q9VH64|Q9VI75|P13677 +GO:0006906,0.21923937360179,0.650454165655912,0.13880510939114,-0.396530208416243,-1.16903776892399,22,Q23983|Q9VPN5|Q9VH76|Q9VE50|P36975|Q9W1I8 +GO:0006913,0.329159212880143,0.747253988878756,0.096240602328129,0.383027885247061,1.09978573020335,25,P32392|Q9W2E7|P12370|Q9W1X4 +GO:0006914,0.78829604130809,1,0.0496901392724606,0.254766220910569,0.805816691593833,38,P22979|Q24253|Q9W2E7|Q7JYX5 +GO:0006915,0.1125,0.505993150684932,0.176694268938498,0.429877593371745,1.3075823061382,33,Q9VZU7|Q9W253|Q9VED8|Q7K485|P55841|P12370|P48609|Q9V3U6|Q9W260|P08646|P22812 +GO:0006950,0.730769230769231,0.982002308741736,0.0480220415968251,0.221416348218476,0.903764442694777,211,Q9VC18|Q9VZU7|P17336|O97125|A1Z803|P22979|P45437|A1Z6L9|Q7K485|Q9VLY7|Q9W414|Q9VT23|Q9VIF2|Q9VFC2|A1ZA22|P48148|Q9VJ58|Q7JWX3|Q00174|Q70PY2|P20007|M9NDE3|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9W299|P12370|Q7K012|O61443|Q9VSL5|P48609|Q9VCW2|Q9VN50|Q9V3Z2|Q9VJ80|Q9VN91 +GO:0006952,0.952782462057336,1,0.0400845633477088,0.201169716150742,0.745247891090909,97,P45437|Q7K485|Q9VLY7|Q9VT23|Q9VIF2|Q9VFC2|P48148|Q7JWX3|Q00174|Q70PY2|Q9VCJ8|O61443|Q9VSL5|P48609|Q9VN50|Q9V3Z2 +GO:0006955,0.830820770519263,1,0.0460457683018055,0.230282535881942,0.825875868691456,76,P45437|Q9VLY7|Q9VT23|Q9VFC2|P48148|Q7JWX3|Q00174|Q70PY2|Q9VCJ8|Q6NMY2|O61443|Q9VSL5|P48609|Q9VN50|Q9V3Z2|Q9VAF5|Q9V3U6|Q95RS6 +GO:0006959,0.161434977578475,0.582223321923928,0.16440575583821,-0.445106790570182,-1.26086657964493,19,Q9V521|Q9V8F5|Q9VIX1 +GO:0006974,0.194495412844037,0.631010307497409,0.132846300606183,0.513491189402873,1.24484650728299,13,Q9VZU7|Q9W299|Q7K012|Q7KLW9|Q9XYZ5|Q9VIH1 +GO:0006979,0.0806451612903226,0.448542805100182,0.241339976815091,-0.419998586205564,-1.35883343918065,34,Q8IN44|Q9VA37|Q9VTU2|Q8IN43|Q9VQD7|Q960M4|Q9VXN2|Q9VEJ0 +GO:0006996,0.000389350868666748,0.0159796085681978,0.49849310876659,-0.324066573024125,-1.44346184200363,273,X2JAU8|P91927|Q9VQ91|Q9VTU2|P10676|Q9VFS4|Q9I7K0|Q9VHT3|P14318|Q9I7K6|Q23983|Q9VB22|Q9VJZ4|Q9VQQ0|Q9VPC2|Q7JXC4|P18432|Q9W402|Q6IHY5|P19334|Q7K5M6|Q9VPN5|Q9VJZ5|Q9VQD7|Q9VI75|Q7K3Z3|Q9VN02|Q9W3X7|Q9VWI0|Q7PL91|Q7JWD3|Q24478|Q9VSD6|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|Q86BS3|M9PDU4|P17210|Q9VE50|A1Z6P3|Q8SX89|Q9VF27|P36975|Q7JYH3|Q9VWD0|Q9W1I8|Q7KLE5|Q9VD64|P06002|Q24185|Q9VQM2|Q8SX68|Q9VU68|A8DYP0|M9NEW0|Q9VPC1|Q9VSY4|Q9VVH3|P92177|Q4V5I9|Q9W236|Q9Y162|Q9VVC8|Q9W289|Q6IGM9|Q0E8V7|Q9VD29|Q9VEC8|Q9VMX4|O02649|Q6IDF5|Q9VEX6|Q9W2E8|Q7JZK1|Q9U6P7|Q7JNE1|A0A0B4KHJ9|Q9V3J4|P14199|Q9VRY5|Q03427|Q24492|Q9VCE1|Q7K0X9|Q9I7J0|Q9VFM9|B7YZT2|Q9W2D6|Q8SY69|Q9VCH5|Q9V784 +GO:0006997,0.581497797356828,0.891755785661744,0.0762797180809272,-0.361685382400289,-0.895536615347405,12,Q7JXC4|Q7K3Z3|Q9VSD6|Q8SX89 +GO:0007005,0.114143920595534,0.509372979961215,0.208955027549354,-0.32158395519427,-1.22644881562013,77,P91927|Q9VTU2|Q9VJZ4|Q9VPC2|Q9W402|Q6IHY5|P19334|Q9VQD7|Q9W3X7|Q9VWI0|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VF27|Q7JYH3|Q9VQM2|M9NEW0|Q9VPC1|Q9VVH3|Q4V5I9|Q6IGM9|Q0E8V7|Q9VD29|Q9VMX4|O02649|Q6IDF5|Q9VEX6|Q9W2E8|Q7JZK1|P14199|B7YZT2|Q9W2D6|Q8SY69|Q9V784|Q9VL16 +GO:0007006,0.991189427312775,1,0.0504983044100709,-0.198236554032167,-0.534433329567842,16,Q9VVH3|Q0E8V7|Q9VD29|Q9W2D6|Q8SY69|Q9V784|Q9VEY5 +GO:0007007,0.979963570127505,1,0.042331839351853,0.232902850084068,0.541252233726519,11,Q9VL10|Q9VKC8|Q9Y171 +GO:0007010,0.0302514900044248,0.291230567444465,0.352487857583619,-0.351109613174336,-1.37035413552658,89,X2JAU8|P10676|Q9I7K0|Q9VHT3|P14318|Q9VB22|Q9VQQ0|P18432|Q7K5M6|Q9VJZ5|Q24478|Q9VCC0|Q86BS3|P17210|A1Z6P3|Q9VWD0|Q24185|Q8SX68|Q9VU68|A8DYP0|Q9VSY4|P92177|Q9Y162|Q9VVC8 +GO:0007015,0.956822107081175,1,0.0409883873374721,0.219033327430983,0.65981200326012,31,P32392|P12080|P48148|P45888|O61443 +GO:0007017,0.0308971609408434,0.292631764680104,0.352487857583619,-0.384188990650971,-1.40458493050165,59,Q9I7K0|Q9VHT3|Q9VB22|Q9VQQ0|Q9VJZ5|Q94524|Q7KMS3|Q9VCC0|Q86BS3|P17210|A1Z6P3|Q24185|Q9VSY4|P92177|Q9VVC8 +GO:0007018,0.596916299559471,0.900402075139478,0.0749278818393739,-0.327388524262334,-0.882618949557758,16,Q94524|Q7KMS3|P17210|P92177 +GO:0007028,0.28476821192053,0.721071179284632,0.118815039412263,-0.418334290024122,-1.14905349547879,17,Q9VQ91|Q7KM15|P17210 +GO:0007030,0.888402625820569,1,0.0552495663125249,-0.275500739658814,-0.713805977188938,14,Q7K3Z3|Q9W1I8|Q9W289|Q9VYT6|Q9VF70 +GO:0007033,0.511677282377919,0.852795470629866,0.0810802057550866,-0.405495049307808,-0.949286217503163,10,Q7K3Z3|Q9Y162|Q9VCE1|Q9W1E8 +GO:0007034,0.71523178807947,0.967724328651481,0.065981614400873,-0.30026640634787,-0.824752290253279,17,Q9VN02|Q9W236|Q9VN88|Q9W0B3|Q9XTL2|Q9VCE1|Q9W1E8 +GO:0007043,0.557798165137615,0.881490927802761,0.069119845655101,0.379057847843409,0.918942423325313,13,Q9VN14|M9NDE3 +GO:0007049,0.686046511627907,0.961245823546925,0.0544555953940371,0.243710714952448,0.891816651583349,86,P48596|P21187|Q94901|Q7K148|Q9W2E7|Q9VPL0|P48148|Q9VH81|Q9VGP6|Q7K012|P48609|Q9VNA5|Q9V3P3|Q9W4X7|Q9VXQ5|Q7KN75|P45889|Q9VE85 +GO:0007051,0.0275766301763258,0.275489251392894,0.352487857583619,-0.576481847829957,-1.58344295011266,17,Q9VQQ0|Q9VJZ5|Q9VCC0|Q86BS3|A1Z6P3 +GO:0007052,0.0196072438540487,0.238631533708731,0.352487857583619,-0.588385933347585,-1.58625161219664,16,Q9VQQ0|Q9VJZ5|Q9VCC0|Q86BS3|A1Z6P3 +GO:0007059,0.514348785871965,0.855780166341365,0.0828962134571565,-0.344691929687405,-0.946777436408101,17,Q9VCC0|Q86BS3|A1Z6P3 +GO:0007098,0.710176991150443,0.962551829238123,0.066436413766281,-0.313825374466981,-0.832720747597009,15,Q9VHT3|Q9VCC0|P17210 +GO:0007154,0.565217391304348,0.881490927802761,0.0928481214159878,-0.221208407383734,-0.961768752676933,222,X2JAU8|Q24276|P91927|Q9VA37|P10676|Q9W266|Q23983|Q9VD02|Q9VLP0|Q9VH98|P19334|Q9VJZ5|Q9VW66|Q9VI75|Q9VEN3|Q9VK60|Q9U9P7|Q9VXN2|P09040|P42325|P13677|Q9VH76|Q9VIH9|Q86BS3|Q26377|Q9VFP6|Q9VLP3|Q95NU8|P36975|Q9U6R9|P61851|M9PHA0|Q9W1I8|Q9VII1|Q9VLP2|P06002|Q0KI81|Q7K2L7|Q7K188|P07668 +GO:0007155,0.335042735042735,0.754319291163883,0.0925528864684773,0.336829506323454,1.07761640275778,40,Q9VHC3|Q9VN14|P12080|Q00174|A1ZBD8|Q9VAF5|Q9VVG0|Q9VCT4|Q7KY04|Q9W260|O44386 +GO:0007156,0.0513761467889908,0.398468540056346,0.271288554688953,0.604073215531294,1.49549093275633,14,Q9VN14|Q9VAF5|Q9VVG0|Q9VCT4|Q9W260 +GO:0007163,0.380410022779043,0.781221401988896,0.102080107662747,-0.315745030261297,-1.04841162488791,36,Q9VHT3|Q9VB22|Q7K5M0|Q9VSD6|P17210|A1Z6P3|Q9VWD0|P92177|Q9Y162|Q9VVC8 +GO:0007164,0.904587155963303,1,0.0463227785794633,0.268760797618758,0.651551471797129,13,P48148|Q9VFT4|P08646|Q9VHG4 +GO:0007165,1,1,0.059221919380382,-0.157142849347797,-0.665171038305171,180,Q24276|Q9VA37|P10676|Q9W266|Q9VD02|Q9VH98|P19334|Q9VJZ5|Q9VW66|Q9VEN3|Q9VK60|Q9U9P7|Q9VXN2|P09040|P42325|P13677|Q86BS3|Q26377|Q9VLP3|Q95NU8 +GO:0007166,0.509181969949917,0.850074983729945,0.0689567351672811,0.270510728434048,0.971751946001992,78,P12080|Q9VTZ4|Q9U9Q4|P48148|P12370|O61443|Q9VN50|Q9VF24|Q7JWQ7|P35992|A0A0B4LFA6|Q9W552|Q9VBP9|O44386|P08646|Q9VHI1|P09208|Q7KJ08|Q9VZI3|Q9XYZ5|P22812|Q9VTF9|Q9W3N6|P20240 +GO:0007167,0.990543735224586,1,0.05378728077603,-0.184454176515289,-0.580325007372129,31,Q24276 +GO:0007169,0.928571428571429,1,0.0541200569620232,-0.23501185994767,-0.698994814993627,23,Q24276 +GO:0007186,0.00274132523396498,0.0638826627887738,0.431707695803346,-0.611440771375836,-1.80263026631261,22,P10676|Q9VH98|P19334|Q9VXN2|P09040|P13677|Q26377|P06002 +GO:0007224,0.293577981651376,0.721862223250791,0.104732821580651,0.46388389370353,1.14842727511959,14,P12370|A0A0B4LFA6|Q9VBP9|Q9VHI1|Q9XYZ5|Q9VTF9 +GO:0007264,0.329246935201401,0.747253988878756,0.0949751525905595,0.362207874607986,1.07841947159321,29,Q9VLB7|Q9V3N7|P48148|Q95RG8|O76742|Q7KY04|P08646|Q9VIW6|Q9VM50|Q9VH66 +GO:0007267,0.0541101631555566,0.408932636935851,0.321775918075361,-0.36746151540929,-1.34342971725623,59,X2JAU8|P91927|Q9VA37|Q23983|Q9VLP0|Q9VI75|Q9VH76|Q9VIH9|Q9VFP6|Q95NU8|P36975|Q9U6R9|P61851|Q9W1I8|Q9VII1|Q9VLP2|Q7K2L7|Q7K188|P07668 +GO:0007268,0.0566999328989727,0.419920555680362,0.321775918075361,-0.396709874880132,-1.39735475969195,51,X2JAU8|P91927|Q9VA37|Q23983|Q9VLP0|Q9VI75|Q9VH76|Q9VIH9|Q9VFP6|Q95NU8|P36975|Q9U6R9|P61851|Q9W1I8|Q9VII1|Q9VLP2|Q7K188|P07668 +GO:0007269,0.239277652370203,0.667630507104437,0.132846300606183,-0.42239311236367,-1.16859889488235,18,P91927|Q23983|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q9VWX8|Q9U6P7 +GO:0007271,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0007274,0.0109031223342064,0.145129398637747,0.380730400722792,-0.691146051680413,-1.71128451950428,12,X2JAU8|Q9VA37|Q23983|Q95NU8|P36975|P07668 +GO:0007275,0.335423197492163,0.754319291163883,0.132147260608774,-0.230991181061074,-1.0359391581842,288,X2JAU8|Q24276|Q9W3E2|Q9W3Y3|Q9VFN7|Q9I7Q5|Q9W369|Q9VQ91|A1Z8Z3|Q9VSY0|Q9W266|Q9VHT3|Q9VEB1|Q23983|Q9VZG1|Q9VB22|Q9VLP0|P18432|Q9VJZ5|Q7K5J8|Q7K3Z3|Q9VEN3|Q7KM15|Q9VIK6|Q9V406|P13677|P08182|Q7KMS3|Q7K5M0|Q24478|A8DRW0|Q9VSD6|A1Z8H6|Q7K204|Q9VCC0|A1Z8H1|Q86BS3|P17210|A1Z6P3|Q95NU8|Q8SX89|Q7KN94|Q9U6R9|Q0E8P5|M9PFN0|Q9VWD0|Q9VVA6|M9PHA0|Q7KLE5|Q9VD64|Q9W425|P06002|Q0KI81|P35220|Q9VZF9|Q8SX68|Q9VU68 +GO:0007276,0.199004975124378,0.636122273249139,0.12384217120105,0.310154748708084,1.15258245909949,98,P21187|Q94901|Q9VED8|Q7K485|Q9W0S7|P12080|Q9W2E7|Q9W414|P48148|Q9VL10|Q9VFT4|P12370|Q9VAF5|O76742|Q7KY04|Q9VT75|O44386|P08646|P09208|P23128|Q9VN21|Q9VPX6|P20240|P43332|Q05856 +GO:0007281,0.369384359400998,0.775114199071053,0.0855356947987884,0.288540999789789,1.0495940080624,83,P21187|Q94901|Q9VED8|Q7K485|P12080|Q9W414|P48148|Q9VFT4|P12370|Q9VAF5|O76742|Q7KY04|Q9VT75|O44386|P08646|P09208|P23128|Q9VN21|Q9VPX6|P20240|P43332|Q05856 +GO:0007283,0.215302491103203,0.647796833105681,0.123257226381337,0.418214083930396,1.19168494212472,24,P21187|Q9W0S7|Q9W2E7 +GO:0007292,0.217028380634391,0.647796833105681,0.118287526124085,0.317633674246602,1.14135331699348,77,P21187|Q94901|Q9VED8|Q7K485|P12080|Q9W414|P48148|Q9VFT4|P12370|Q9VAF5|O76742|Q7KY04|Q9VT75|O44386|P08646|P09208|P23128|Q9VN21|Q9VPX6|P20240|P43332 +GO:0007293,0.214442013129103,0.647796833105681,0.13880510939114,-0.473581513376546,-1.19907027795255,13,P92177|O18335|Q9VY91|Q9V4S8|P53501|P02572|Q9VVU5|Q9VXF9|Q24298 +GO:0007297,0.370909090909091,0.775114199071053,0.0902635484340068,0.431252245448602,1.09096997971776,15,P12080|P48148|O76742|P08646|P09208 +GO:0007298,0.370909090909091,0.775114199071053,0.0902635484340068,0.431252245448602,1.09096997971776,15,P12080|P48148|O76742|P08646|P09208 +GO:0007308,0.204545454545455,0.640650406504065,0.14551614609036,-0.397358421243362,-1.18416146822717,24,Q9VQ91|Q7KM15|P08182|P17210|P92177 +GO:0007309,0.203125,0.639227236421725,0.144630528034484,-0.399291309176784,-1.18761050973656,23,Q9VQ91|Q7KM15|P08182|P17210|P92177 +GO:0007314,0.213656387665198,0.647796833105681,0.139599673451922,-0.455494179939568,-1.22798377106765,16,Q9VQ91|Q7KM15|P17210 +GO:0007315,0.212389380530973,0.647796833105681,0.140406238523342,-0.465602833522739,-1.23545503697036,15,Q9VQ91|Q7KM15|P17210 +GO:0007316,0.820568927789934,1,0.0589694466690997,-0.303056623011531,-0.767314979419114,13,Q7KM15|P17210 +GO:0007346,0.926605504587156,1,0.0452247443372884,0.261215395044467,0.63325930197125,13,Q9W2E7|Q9V3P3 +GO:0007349,0.998165137614679,1,0.0418238690062304,0.183574353982232,0.445035665845124,13,P48148 +GO:0007350,0.31390134529148,0.730952305229569,0.11331290842208,-0.383144984996703,-1.09899745935184,20,Q9VQ91|Q7KM15|P17210 +GO:0007351,0.261851015801354,0.684146553221045,0.126253987849115,-0.416820630118296,-1.15318198489237,18,Q9VQ91|Q7KM15|P17210 +GO:0007389,0.900854700854701,1,0.0432768714901103,0.225013806986542,0.746338207756904,49,P48596|P21187|P48148|Q9VFT4|P12370|Q9VF24|O76742|Q9VSN9|P08646|P22812|Q9VN21|Q9VPX6 +GO:0007391,0.943636363636364,1,0.0439759278026345,0.245460306131794,0.620958680281314,15,P48148|Q9VLT3|O44386|P08646|Q9VM50 +GO:0007399,0.89501312335958,1,0.0635007968065945,-0.207163837143753,-0.843898241273437,132,X2JAU8|Q24276|Q9W3E2|Q9W266|Q9VHT3|Q9VB22|Q9VLP0|Q7K3Z3|P08182|Q7KMS3|Q9VSD6|Q7K204|Q9VCC0|P17210|Q95NU8|Q0E8P5|Q9VVA6|M9PHA0|Q7KLE5|P06002|Q0KI81|Q8SX68|Q9VU68 +GO:0007405,0.0883002207505519,0.448542805100182,0.224966093540314,-0.595092808423389,-1.42613451768533,11,Q24276|Q9VHT3|Q9VB22 +GO:0007409,0.521440823327616,0.857621286231346,0.069119845655101,0.294995514622969,0.953736209314501,42,Q9VN14|P12080|P48148|Q00174|P48609|P35992|O44386|P09208|Q7KJ08|Q9VPX6|P16620 +GO:0007411,0.420774647887324,0.810623258603675,0.0815265143256594,0.332554177733908,1.01581458279346,34,Q9VN14|P12080|P48148|Q00174|P48609|P35992|O44386|P09208|Q7KJ08|Q9VPX6|P16620 +GO:0007416,0.34525939177102,0.767284085632826,0.0934449219410994,0.391238463556293,1.08687475432679,21,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:0007417,0.451438848920863,0.819750643803781,0.0789209638180035,0.368482934629985,1.00166591189799,19,Q9VN14|P12080|Q95RG8|P35992 +GO:0007420,0.496688741721854,0.845600493624654,0.0847985102819124,-0.403747477618613,-0.967577167981211,11,P08182|Q7KMS3 +GO:0007423,0.363945578231293,0.775114199071053,0.0875697115548511,0.316989504372318,1.04493275745277,46,P21187|Q9VZU7|P32392|Q24253|Q9VBC7 +GO:0007424,0.0276887673988797,0.275489251392894,0.352487857583619,0.470319941937118,1.49384609921735,39,P48596|Q9VR79|P12080|Q9VW34|P48148|Q00174|M9NDE3|Q9VV72|P35992|Q9VLT3|O44386|P08646|P09208 +GO:0007444,0.588333333333333,0.894302983539095,0.0618406035753285,0.269512860806415,0.929658239483897,62,Q9VHC3|P12080|Q9VFC2|P48148|P14484|P12370|O61443|Q9V3Z9|Q9VF24|O76742|Q9VW57|P08646|Q9VHI1|P09208|Q9XYZ5|Q9VPX6|Q9W4K0|Q9W3N6|Q9VVA7|Q9VHG4|Q9VM50 +GO:0007447,0.830508474576271,1,0.0514264916187015,0.321358543588718,0.723438769824875,10,P12370|O76742|P08646|Q9VPX6 +GO:0007472,0.741824440619621,0.990104436328357,0.0524827622635459,0.260200832068112,0.826458679164461,39,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0007476,0.456896551724138,0.819750643803781,0.0760837160951725,0.317737509342344,0.999124933893655,37,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0007498,0.53927813163482,0.867934413736441,0.0782955249944794,-0.398967683366551,-0.934005294751547,10,Q9VA42|Q7KTA1|Q95NU8 +GO:0007507,0.280858676207513,0.714847018254265,0.105920292736253,0.422231687622192,1.13540007497793,18,P17336|Q9VN14|Q00174|O61443 +GO:0007517,0.815286624203822,1,0.0578529757032509,-0.30964313301941,-0.724891608471147,10,Q9VSD6|Q95NU8|Q9VWD0|Q9V400|Q03427 +GO:0007528,0.574774774774775,0.887387387387387,0.0667426134241917,0.327701790224279,0.919030441503602,22,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:0007548,0.12691466083151,0.536527643429344,0.184706471207739,-0.514711001449247,-1.33358549169188,14,P13677|Q7K5M0|P20348|D0UGE6 +GO:0007552,0.94077834179357,1,0.0408229003677776,0.210247814416991,0.702371276439211,50,Q9VHC3|P12080|Q9VFC2|P48148|P14484|P12370|O61443|Q9VF24|Q9VW57|Q8MSV2|P08646|Q9VHI1 +GO:0007560,0.668918918918919,0.953524074001643,0.0564118388217596,0.26753259545453,0.878600175691014,45,Q9VHC3|P12080|Q9VFC2|P48148|P14484|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0007591,0.0108947428485319,0.145129398637747,0.380730400722792,0.641617328391206,1.62314573693029,15,P48596|Q9VR79|A8JTM7|Q9VW34|O61443|Q9VDC6|Q9VSN9 +GO:0007600,0.368303571428571,0.775114199071053,0.102821842840815,-0.35364368027947,-1.05184095358275,23,Q9W369|P19334|Q9V931|P13677|A1Z6P3|Q9VII1|P06002|Q8MKK0|P19107 +GO:0007602,0.165198237885463,0.58532469178842,0.160801401070022,-0.523941028112834,-1.29728321295141,12,P10676|P19334|P13677|P06002|P19107 +GO:0007606,0.660550458715596,0.94707744080766,0.0609039347452418,0.343920738561134,0.851437098817026,14,P12080|P54195|Q9VR94|Q9V8Y2 +GO:0007608,0.562841530054645,0.881490927802761,0.0683110858318647,0.395502668549361,0.919124444891385,11,P12080|P54195|Q9VR94|Q9V8Y2 +GO:0007610,0.708674304418985,0.962551829238123,0.0522693317499306,0.247598235879017,0.879469045670033,70,Q9V3N7|Q94901|Q9VBC7|Q7K569|Q9VW68|Q9VSY6|P48148|Q7JVK6|Q9VR94|Q9VDH3|P12370|P48609|Q9VCT4|Q9W158|Q9VDC6|P35992|Q9V8Y2|A0A0B7P9G0|O44386|Q8MSV2|P09208|Q7KJ08|P23128 +GO:0007611,0.226618705035971,0.655431430509169,0.120433371642259,0.434392114140689,1.19460816707154,20,Q9V3N7|P12370|Q9VCT4|Q9W158|P35992|A0A0B7P9G0|O44386|Q7KJ08|P23128|Q9VHG4 +GO:0007613,0.0836363636363636,0.448542805100182,0.208955027549354,0.55153428112069,1.39525614031753,15,Q9V3N7|P12370|Q9VCT4|Q9W158|P35992|A0A0B7P9G0|O44386 +GO:0007616,0.463276836158192,0.821695726253576,0.0799858801499946,0.447482813431303,1.00736831966985,10,Q9VCT4|Q9W158|P35992|A0A0B7P9G0|Q9VHG4|Q9VNE2|P54352 +GO:0007622,0.405109489051095,0.796472747934787,0.0855356947987884,0.405913083805502,1.04423922955431,16,Q94901|Q9VW68|P48148|Q7JVK6|P12370|Q9VDC6 +GO:0007623,0.307553956834532,0.723008705207672,0.100633389423036,0.409746509262793,1.11383478656853,19,Q94901|Q9VW68|P48148|Q7JVK6|P12370|O61443|Q9VDC6 +GO:0007626,0.763345195729538,1,0.0526973085708419,0.271968515737922,0.794065287863685,27,Q94901|Q9VBC7|Q7K569|P48148|Q9VDH3|P48609 +GO:0007635,0.420382165605096,0.810623258603675,0.0919686140000427,-0.441487503231297,-1.03354653215314,10,Q9VWV6|P19334 +GO:0008033,0.587570621468927,0.894302983539095,0.0678338263479455,0.406196392726186,0.914424789767597,10,Q9VKD3 +GO:0008037,0.261180679785331,0.684146553221045,0.110564716336619,0.402328577345123,1.15520369471736,25,P32392|Q9VN14|P12080|P48148 +GO:0008038,0.180505415162455,0.602704521813621,0.137250779610133,0.440314696082873,1.23746961368349,23,P32392|Q9VN14|P12080|P48148 +GO:0008039,0.630573248407643,0.926789718129404,0.0702812841717392,-0.37154090076919,-0.869797687890319,10,Q9W266|Q0E8P5|Q9VQ62 +GO:0008064,0.273522975929978,0.703446817992241,0.120985142145252,-0.448706857703506,-1.13608965170473,13,X2JAU8|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0008088,0.526431718061674,0.859925774943199,0.0815265143256594,-0.381592135642757,-0.944825934984838,12,Q94524|P17210 +GO:0008104,0.99236641221374,1,0.0571258510018113,-0.180785417216547,-0.752976056736511,148,Q9W3E2|Q9VAA6|P10676|Q23983|Q9VB22|Q9VQQ0|P19334|Q7K5M6|Q9VN02|Q7KM15|Q7JWD3|Q9VSD6|A1Z6P3|P48604|Q9U6R9|Q7KLE5|Q9VJD4|Q8SX68|Q9VBV5|A8DYP0|P92177|P08985|Q0E8V7|Q9VD29|Q9VEC8|O02649|Q9VN88|Q9V3J4|Q9XTL2|Q03427|Q9VCE1|Q7K0X9|Q9W2D6|Q7K1C5|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9VTC1|Q9VGV9|O18335|A1Z7S3|Q9VYT6|P05205|Q9W4A0 +GO:0008154,0.571106094808127,0.884496074506297,0.0785029047348687,-0.333277076409959,-0.922049180685921,18,X2JAU8|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0008202,0.879472693032015,1,0.0487989701682839,0.304130980605886,0.684656272144244,10,Q7K3N4|Q9VY05 +GO:0008219,0.327615780445969,0.747253988878756,0.0940503465727813,0.333599938376501,1.07854636726053,42,Q9VZU7|Q9W253|Q9VED8|Q7K485 +GO:0008277,0.13588110403397,0.551995840872877,0.175204047558551,-0.566628348256592,-1.32650813459933,10,P10676|Q9VXN2|P13677 +GO:0008283,0.125,0.533008658008658,0.190023305279108,-0.415471904222754,-1.28219100009025,27,Q24276|Q9W266|Q9VHT3|Q9VB22|Q7K5M6 +GO:0008286,0.215859030837004,0.647796833105681,0.13880510939114,-0.488795430368739,-1.21026236229045,12,Q24276 +GO:0008298,0.365426695842451,0.775114199071053,0.102080107662747,-0.404931876630669,-1.04915432986228,14,Q7KM15|P08182|P17210 +GO:0008340,0.346420323325635,0.767284085632826,0.108820126769161,-0.328197775764088,-1.0709375572999,35,Q9VG42|P29613|Q9VTU2|Q9W1N3|Q94524|Q960M4|Q9VXN2|Q9VEJ0|A1Z992 +GO:0008344,0.465783664459161,0.821695726253576,0.0883594442500905,-0.414890801280944,-0.994282042064117,11,Q9VA37|P09040|A1Z6P3|P06002 +GO:0008356,0.116997792494481,0.516783971332126,0.193813302725311,-0.48801269511486,-1.34044161937435,17,Q9VHT3|Q9VB22 +GO:0008358,0.213656387665198,0.647796833105681,0.139599673451922,-0.455494179939568,-1.22798377106765,16,Q9VQ91|Q7KM15|P17210 +GO:0008361,0.95264116575592,1,0.0436251240000606,0.24377506514568,0.63785550954949,17,O61443|Q9VAF5|P08646|P09208|Q7KJ08 +GO:0008380,0.0489864864864865,0.386013513513513,0.266350657088526,0.411287852690039,1.38300542383985,52,P21187|Q94901|Q9VPL0|Q9W3M7|Q9V3V0|Q8MZI3|Q4V5H1|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VXE0|Q9VN21|Q9VI10|P43332|Q24297|Q05856 +GO:0008582,0.227272727272727,0.655431430509169,0.120985142145252,0.472123729377324,1.19436552713425,15,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:0008587,0.278719397363465,0.714847018254265,0.109684061970549,0.520448115017439,1.171626992957,10,Q9VHC3|P12080 +GO:0008589,0.293577981651376,0.721862223250791,0.104732821580651,0.46388389370353,1.14842727511959,14,P12370|A0A0B4LFA6|Q9VBP9|Q9VHI1|Q9XYZ5|Q9VTF9 +GO:0008595,0.261851015801354,0.684146553221045,0.126253987849115,-0.416820630118296,-1.15318198489237,18,Q9VQ91|Q7KM15|P17210 +GO:0008610,0.643026004728132,0.933085551738944,0.0747385227439092,-0.284960072813819,-0.896534084945126,31,Q9VFN7|Q9VAG9|Q9VCE0|M9PDU4|Q9VFP6|Q86BN8|Q9V6U9|Q8T3L6|Q9VQ62|Q7JQW6|Q7K1C5|Q9W385|Q7KTW5|Q8SZA8|Q8SXX1 +GO:0008652,0.322992700729927,0.745076838920324,0.0985499803531691,0.430963502305232,1.10868314811178,16,Q9VNW6|Q7JXZ2|Q9VCK6|Q9VSY6 +GO:0008654,0.242825607064018,0.67186298583724,0.130105630751129,-0.499617174427465,-1.19732802681172,11,Q9VAG9|Q9VCE0|Q9VFP6|Q86BN8|Q7K1C5|Q7KTW5|Q8SXX1 +GO:0009056,0.000671010191010187,0.0254209630055783,0.477270815362862,0.368594745291192,1.51818522047113,221,Q9VZU7|P17336|Q9V3N7|Q9VW54|P22979|Q7JYW9|Q7JWF1|P54385|Q9VED8|Q9W1H8|Q24253|Q9W0S7|O18413|Q7K148|Q7K2E1|Q9W2E7|Q9VNH5|Q9W414|Q9VXY3|Q9VXZ8|Q9VCK6|Q9VSC3|Q9U9Q4|Q9VE24|Q9VSA3|Q9VUY9|Q9VW68|Q7KUT2|Q9VHB8|Q7JYX5|Q9VW26|Q9VUJ1|P40304|Q9VF86|Q9VJ58|P40301|Q9VDT1|Q9VZI8|Q70PY2|Q9VM58|Q9VKR4|P20007|Q7KMQ0|A0AQH0|Q9VJ86|Q9W5W8|Q9V3G7|P12370|Q9W265|Q9V3V6|Q9V3H2|Q9VHD3|Q9VNA5 +GO:0009057,0.000179729411947746,0.00830666662602858,0.518848077743792,0.466432118542713,1.73717439212124,100,Q9VZU7|Q9VW54|Q9VED8|Q9W0S7|O18413|Q7K148|Q9VNH5|Q9W414|Q9VSC3|Q9U9Q4|Q9VE24|Q9VUY9|Q7KUT2|Q9VUJ1|P40304|Q9VJ58|P40301|Q70PY2|Q7KMQ0|A0AQH0|Q9VJ86|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q9V3P3|Q9V3U6|Q9VKY3|Q7KMP8|Q9VKC7|A0A0B4LFA6|Q9VBP9|Q95083|Q9V9T9|P23128|Q9XYZ5|Q9VVI2|Q9VTF9|Q9W2N5|P18053|Q9VY87|Q9W1H5|Q7JXB9|Q9VB05|Q9V405|Q9W0C3|Q8IPX7 +GO:0009059,3.32915632663375e-13,1.09307299391141e-10,0.932595211336209,0.456066671278434,1.97339116939258,386,O16797|Q9VNE9|Q9VXP3|P41093|P21187|Q0E9B6|O97125|Q9VXQ0|P09180|Q9VNB9|Q9W3J5|P50887|P22979|Q9VKD3|Q94901|A1Z6L9|Q9W253|Q9VAY9|Q8SXF0|O02195|Q9W1L1|Q9W0S7|A1Z9A8|Q7KVQ0|Q9W4I3|Q9W2E7|Q9VSR5|Q9VNH5|Q9VBC7|Q9W414|Q9VV39|Q9VIF2|Q9VHT5|Q9VCX3|Q9VCK0|Q9VMD3|Q9VUX1|Q9VMY1|Q9VFC2|Q9U9Q4|A1ZA22|P29327|Q9VUY9|Q9V3G1|P28668|Q9NJH0|Q9VKU3|Q9W086|Q9VIN9|Q9W392|Q9W199|Q9VPL0|Q9W3M7|Q9VPL3|Q9VVN2|Q9V6Y3|Q9VMH8|Q9VXN4|Q9VPF6|Q9VY28|Q9VFB2|Q9V3V0|Q9VNZ3|Q7JWX3|Q9VNC1|Q9V9M7|O77410|P55841|O77477|Q8MZI3|Q9VGP7|Q4V5H1|Q7K3W2|Q7JVK6|Q9VCJ8|Q7K3V6|Q9VUN9|Q9VFT4|A1ZBA5|Q9VGP6|P13060|Q9VJ86|Q9VDV2|Q7K0E6|Q8IP62|Q9GU68|Q9W1B9|P12370|Q7K012|Q8MSS7|Q9V3E3|Q9W0A8|Q9V3L6|Q9VN50|P41094|Q9VHN6|Q9V3P3|P54622|Q9W229|Q9VJD0|A0A0B4KGY6|Q9VFJ2|Q9W4Z2|Q9VVU2|Q9V3U6|Q9W158|Q9W4X7|Q9VXQ5|P36241|Q9W1V3|Q9VKY3|Q95RS6|Q7KN75|Q9VFF0|Q9I7T7|Q7KLW9|Q9VYV3|Q7K3J0|Q9VT75|Q6WV19|Q9VCA5|Q9W3W4|Q9VEA1|Q8T4G5|Q27268|P08646|Q9VHI1|P48159|Q9VXE0|Q9W2D9|P23128|Q9XYZ5|P22812|Q9V597|Q9VN21|Q76NQ0|Q9VJZ1|Q9VVI2|A0A0B4K692|Q9VI10|Q8WTC1|P20240|Q9VIS4 +GO:0009060,7.96879128364773e-06,0.000603789185722539,0.593325476396405,-0.546588391043631,-2.04192857686356,69,Q9VA37|Q9VTU2|Q9VEB1|Q9VWH4|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q94522|Q9VXN2|Q9VWI0|Q9W401|A8Y535|Q24439|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1|Q9W141|Q9VKX2|Q9VMS1|P00408|Q9W385|Q9VIQ8|Q9V3L7 +GO:0009062,0.0447227191413238,0.373321003001728,0.287857117255149,0.548634261369394,1.52412603459507,21,Q7JWF1|Q9W1H8|Q7K2E1|Q9VSA3|Q9VDT1|P20007|Q9W5W8 +GO:0009063,0.0171482092467672,0.213809950735009,0.352487857583619,0.549391176375714,1.54402043093019,23,P54385|Q9VXY3|Q9VCK6|Q9VW68|Q9VHB8|Q9VW26|Q9VZI8|Q9VM58|Q9VKR4|Q9W265|Q9VHD3|Q9V9A7|Q9VY42|Q7KW39|Q9VHD2 +GO:0009100,0.140255009107468,0.557939708141321,0.158514105424824,0.574638020910992,1.3354242435848,11,Q9VE24|Q6WV19|Q9V9T9|Q76NQ0 +GO:0009117,0.253378378378378,0.684146553221045,0.108820126769161,0.347282218706889,1.14050483400665,45,Q9VC18|Q9VA09|Q7JYW9|P54385|Q01637|Q9VAJ9|Q7K569|Q9VUY9|P32748|P35381|Q8MLS2|Q9VGU6 +GO:0009132,0.304635761589404,0.723008705207672,0.114266502484433,-0.474829420509346,-1.1379243993806,11,P29613|Q9VBI2|Q9VAN7|P52029 +GO:0009135,0.53927813163482,0.867934413736441,0.0782955249944794,-0.399482306969704,-0.935210056916978,10,P29613|Q9VAN7|P52029 +GO:0009141,0.0894854586129754,0.448542805100182,0.224966093540314,-0.456473470733261,-1.34576059143226,22,P29613|Q9VAN7|Q8IQG9|P52029|Q9VMW7|Q9VXN2|Q24439|Q94516|O77134|Q9W2X6 +GO:0009142,0.361233480176211,0.775114199071053,0.103197466945307,-0.424645170172295,-1.05142567801882,12,Q9VXN2|Q24439|Q94516|O77134|Q9W2X6|Q9VMX4|Q9W141 +GO:0009144,0.123318385650224,0.528251292855775,0.190023305279108,-0.45729937549961,-1.31169889080391,20,P29613|Q9VAN7|Q8IQG9|P52029|Q9VXN2|Q24439|Q94516|O77134|Q9W2X6 +GO:0009145,0.240618101545254,0.667630507104437,0.130777137971974,-0.501119856787072,-1.20092919145666,11,Q9VXN2|Q24439|Q94516|O77134|Q9W2X6|Q9VMX4|Q9W141 +GO:0009150,0.658493870402802,0.946651100389587,0.0588438169595807,0.291784633284574,0.868744862011433,29,Q9VC18|Q9VA09|Q7JYW9|Q9VUY9|P35381|Q9VGU6 +GO:0009152,0.523381294964029,0.857621286231346,0.0713052987340038,0.350685769423305,0.953286972086709,19,Q9VC18|Q9VA09|P35381|Q9VGU6 +GO:0009165,0.296028880866426,0.721862223250791,0.103197466945307,0.396950745522287,1.11559866178163,23,Q9VC18|Q9VA09|Q01637|P32748|P35381|Q9VGU6 +GO:0009166,0.439490445859873,0.810945777237912,0.0894366833718621,-0.435483952330761,-1.01949188922794,10,P29613|Q9VAN7|P52029 +GO:0009179,0.53927813163482,0.867934413736441,0.0782955249944794,-0.399482306969704,-0.935210056916978,10,P29613|Q9VAN7|P52029 +GO:0009185,0.304635761589404,0.723008705207672,0.114266502484433,-0.474829420509346,-1.1379243993806,11,P29613|Q9VBI2|Q9VAN7|P52029 +GO:0009199,0.123318385650224,0.528251292855775,0.190023305279108,-0.45729937549961,-1.31169889080391,20,P29613|Q9VAN7|Q8IQG9|P52029|Q9VXN2|Q24439|Q94516|O77134|Q9W2X6 +GO:0009201,0.240618101545254,0.667630507104437,0.130777137971974,-0.501119856787072,-1.20092919145666,11,Q9VXN2|Q24439|Q94516|O77134|Q9W2X6|Q9VMX4|Q9W141 +GO:0009205,0.123318385650224,0.528251292855775,0.190023305279108,-0.45729937549961,-1.31169889080391,20,P29613|Q9VAN7|Q8IQG9|P52029|Q9VXN2|Q24439|Q94516|O77134|Q9W2X6 +GO:0009206,0.240618101545254,0.667630507104437,0.130777137971974,-0.501119856787072,-1.20092919145666,11,Q9VXN2|Q24439|Q94516|O77134|Q9W2X6|Q9VMX4|Q9W141 +GO:0009259,0.428070175438597,0.810945777237912,0.080419996876154,0.332194172669074,1.00749465828024,32,Q9VC18|Q9VA09|Q7JYW9|Q01637|Q9VUY9|P32748|P35381|Q9VGU6 +GO:0009260,0.313513513513514,0.730952305229569,0.0995791200495904,0.397358115258318,1.11437964330607,22,Q9VC18|Q9VA09|Q01637|P32748|P35381|Q9VGU6 +GO:0009266,0.607223476297968,0.910373096124047,0.0753093764172773,-0.30463313583847,-0.913309236800705,25,Q8IN44|Q8IN43|Q9VSA9|Q9VSX2|P06002|Q8IQW5|Q9VFV9|O02649|Q9V3J4 +GO:0009267,0.259023354564756,0.684146553221045,0.122679189568808,-0.503069423662446,-1.17771319562402,10,Q9VG42 +GO:0009306,0.681528662420382,0.959368389984751,0.066436413766281,-0.356483129874029,-0.8345466178674,10,Q9VCE1|Q9VSY8|Q9VSU7|Q960X8|O15971|Q7JXF7 +GO:0009314,0.00383188907552311,0.0810209384138362,0.431707695803346,-0.559457663796698,-1.7265465466157,27,Q8IN44|Q9W3E2|P10676|Q8IN43|P19334|Q9VI75|P13677 +GO:0009408,0.516930022573363,0.857198774805998,0.0838361057159929,-0.344125219002205,-0.952061808907733,18,Q8IN44|Q8IN43|Q9VSA9|Q9VSX2|Q8IQW5|Q9VFV9|O02649|Q9V3J4|Q9VCH5|Q7KK90 +GO:0009416,0.00383188907552311,0.0810209384138362,0.431707695803346,-0.559457663796698,-1.7265465466157,27,Q8IN44|Q9W3E2|P10676|Q8IN43|P19334|Q9VI75|P13677 +GO:0009581,0.165198237885463,0.58532469178842,0.160801401070022,-0.523941028112834,-1.29728321295141,12,P10676|P19334|P13677|P06002|P19107 +GO:0009582,0.165198237885463,0.58532469178842,0.160801401070022,-0.523941028112834,-1.29728321295141,12,P10676|P19334|P13677|P06002|P19107 +GO:0009583,0.165198237885463,0.58532469178842,0.160801401070022,-0.523941028112834,-1.29728321295141,12,P10676|P19334|P13677|P06002|P19107 +GO:0009605,0.039463282262327,0.347508684324794,0.321775918075361,-0.315620047259222,-1.28570317322262,132,Q8IN44|Q9VWV6|Q9V521|Q8SXD5|P29613|Q9V8F5|P10676|Q8IN43|A1ZAL1|Q9VI09|P19334|Q9VAQ4|Q9VI75|Q9VIX1|Q960M4|Q9VQT8|A0A126GUP6|Q9VL01|P13677|Q7K5M0|A1Z6P3|Q8IN51|A1ZBU5|Q95RA9|M9PHA0|Q9VXE8|P06002|Q9VSL4 +GO:0009607,0.152284263959391,0.570306038047974,0.181383128498408,-0.292782752705032,-1.16482859963793,104,Q8IN44|Q9VWV6|Q9V521|Q8SXD5|Q9V8F5|Q8IN43|A1ZAL1|Q9VI09|Q9VAQ4|Q9VIX1|Q960M4|Q9VQT8|A0A126GUP6|Q9VL01|Q7K5M0|A1Z6P3|Q8IN51|A1ZBU5|Q95RA9 +GO:0009611,0.53202846975089,0.864765747037337,0.0699458736501659,0.333634320299186,0.950678159711921,24,Q9VC18|P48148|P12370|Q9VN91|O44386|P08646|P09208 +GO:0009615,0.551876379690949,0.881034414903704,0.0791316651768349,-0.3806249484968,-0.912164236670268,11,Q8SXD5 +GO:0009617,0.204878048780488,0.640650406504065,0.151148761385484,-0.328115979266018,-1.16507948332689,52,Q8IN44|Q9V521|Q9V8F5|Q8IN43|A1ZAL1|Q9VI09|Q9VIX1|Q9VQT8|A1ZBU5|Q95RA9|Q9VXE8|Q9VSL4|Q9W0X2|P08985|Q9VQ62|Q9VCE1|Q9VTJ4|Q9W2D6 +GO:0009620,0.363431151241535,0.775114199071053,0.104343952581949,-0.366220772934812,-1.06683332721395,21,Q9VWV6|Q9V521|A0A126GUP6|A1ZBU5 +GO:0009628,0.0362509634935221,0.336860368312446,0.321775918075361,-0.373278836794268,-1.38900789532636,67,Q8IN44|Q9W3E2|P91927|P29613|P10676|Q8IN43|P19334|Q9VSA9|Q9VI75|C0HK95|Q8T3X9|Q9VG69|P13677 +GO:0009653,0.946428571428571,1,0.03863723737086,0.202386109866467,0.805815151669197,175,Q9VQE0|P21187|Q9VZU7|P17336|Q9VHC3|P32392|Q9VN14|P12080|Q9VBC7|Q9VTZ4|Q9VFC2|P48148|Q00174|Q9VFT4|P14484|P12370|Q7K012|O61443|P48609|Q9VF24|Q9VAF5|Q9VVG0|Q9VCT4 +GO:0009719,0.847619047619048,1,0.0614364107201271,-0.244853178146797,-0.759275224426976,30,Q24276|Q9VH98 +GO:0009725,0.0790067720090294,0.448542805100182,0.241339976815091,-0.5013638123585,-1.38708037585543,18,Q24276|Q9VH98 +GO:0009790,0.404761904761905,0.796472747934787,0.0817515582532145,0.299661044339086,1.02121242024109,59,Q9VQE0|P48596|P32392|Q94901|P12080|Q9VTZ4|P48148|Q00174 +GO:0009791,0.464106844741235,0.821695726253576,0.0736212741014394,0.277157411030821,0.99590993039283,77,Q9VQE0|P48596|Q9VHC3|Q9VR79|P12080|Q9VBC7|Q9VFC2|Q9VW34|P48148|Q9VY05|P14484|P12370|O61443 +GO:0009792,0.786476868327402,1,0.0513223330421143,0.275453769871619,0.784894919660639,24,P32392|Q94901|P48148 +GO:0009798,0.381489841986456,0.781221401988896,0.101350743797099,-0.349132096790917,-1.04671991109929,25,Q9VQ91|Q7KM15|P08182|P17210|P92177 +GO:0009880,0.846501128668172,1,0.0589694466690997,-0.260006181333454,-0.757420878409691,21,Q9VQ91|Q7KM15|P17210 +GO:0009886,0.896373056994819,1,0.0439759278026345,0.228902809567071,0.755280732478749,48,Q9VHC3|P12080|Q9VFC2|P48148|P14484|P12370|O61443|Q9VF24 +GO:0009887,0.271214642262895,0.701657511390311,0.103576326612592,0.301300744853481,1.09600873585849,83,P21187|Q9VZU7|P17336|Q9VHC3|Q9VN14|P12080|Q9VBC7|Q9VFC2|P48148|Q00174|Q9VFT4|P14484|P12370|O61443 +GO:0009888,0.983498349834984,1,0.0376142599562161,0.183753746632555,0.666093997338071,80,P12080|Q9W414|Q9VTZ4|P48148|Q00174|Q9VFT4|Q9VAF5|P35992|O76742|Q7KY04|Q9VW57|Q9VLT3|O44386|P08646|P09208|Q7KJ08|P23128|Q9VZI3|O97365|Q9VVA7|Q9VHG4|Q9VM50 +GO:0009889,0.13673805601318,0.551995840872877,0.152144922367565,0.303417174705884,1.18026523228876,142,Q9VNE9|P21187|P22979|Q94901|Q9W0S7|Q9W2E7|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VFC2|Q9V3V0|Q7JWX3|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3L6|P54622|A0A0B4KGY6|Q9VYF0|Q9W158|Q9VDC6|Q9VKY3|Q7KN75|Q9I7T7|Q7KLW9|Q9W3W4|Q27268|P08646|Q9VHI1|Q9W2D9|P23128|P22812|Q9VVI2 +GO:0009890,0.960330578512397,1,0.0387962208304479,0.202056019261536,0.7011627401195,64,Q9VNE9|Q9W0S7|Q9VNH5|Q9VFC2|Q7JWX3|Q7JVK6|Q9VJ86|Q9V3L6|Q9VDC6|Q7KN75|Q9I7T7|Q27268|P08646|P23128|Q9VVI2|P20240|Q9W1H5|Q9W0C3|Q9VGW7|Q8IPX7|Q9VUH8|Q9W1M9|Q9VJQ5|Q9VEN9|Q9VD14|Q9VNE2 +GO:0009891,0.0403120561176566,0.351392701556564,0.321775918075361,0.415622145984346,1.42603387129905,60,P21187|P22979|Q94901|Q9W2E7|Q9W414|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9GU68|P12370|Q7K012|P54622|A0A0B4KGY6|Q9VYF0|Q9W158|Q7KN75|Q9I7T7|Q27268|Q9VHI1 +GO:0009892,0.884488448844884,1,0.0425023180036553,0.218437546902254,0.794753704646096,81,Q9VNE9|Q9W0S7|Q9VNH5|Q9VFC2|Q9U9Q4|Q7JWX3|Q7JVK6|Q9VJ86|P12370|Q9V3L6|Q9VDC6|Q7KN75|Q9I7T7|Q27268|P08646|P09208|P23128|Q9VVI2|P20240|Q7K519|Q9W1H5|Q9W0C3|Q9VGW7|Q8IPX7|Q9VUH8|O18373|Q9W1M9 +GO:0009893,0.00844445798575345,0.122440204670591,0.380730400722792,0.408779640998942,1.51543108658643,95,P21187|Q9VZU7|P22979|Q94901|Q24253|Q9W2E7|Q9VNH5|Q9W414|Q7KUT2|P48148|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3Z2|P54622|A0A0B4KGY6|Q9VYF0|Q9W158|Q7KN75|Q9I7T7|Q27268|Q9VHI1|P23128|Q9XYZ5|P22812|Q9VTF9 +GO:0009894,0.00739310474632184,0.115590605954397,0.407017918923954,0.479635604050374,1.58301555522342,47,Q9VZU7|Q9VW54|P22979|Q24253|Q9W2E7|Q9VNH5|Q9U9Q4|Q7KUT2|Q9VJ86|P12370|Q9V3P3|P08646|P09208|P23128|Q9XYZ5|Q9VTF9|Q7K519|Q9W2N5 +GO:0009895,0.16970802919708,0.594884016936385,0.142901149386948,0.541945060510428,1.28234975031327,12,Q9U9Q4|P08646|P09208|Q7K519 +GO:0009896,0.136524822695035,0.551995840872877,0.158514105424824,0.439605857398,1.29586082817062,28,Q9VZU7|Q24253|Q9VNH5|Q7KUT2|P12370|P23128|Q9XYZ5|Q9VTF9|Q9W2N5|Q9W1H5|Q9W0C3 +GO:0009948,0.261851015801354,0.684146553221045,0.126253987849115,-0.416820630118296,-1.15318198489237,18,Q9VQ91|Q7KM15|P17210 +GO:0009952,0.261851015801354,0.684146553221045,0.126253987849115,-0.416820630118296,-1.15318198489237,18,Q9VQ91|Q7KM15|P17210 +GO:0009953,0.769090909090909,1,0.053347785067549,0.308174231979337,0.77961063196853,15,P21187|Q9VFT4|O76742|P22812|Q9VPX6 +GO:0009966,0.823821339950372,1,0.0647943366000727,-0.216000001439446,-0.858302317843119,102,Q24276|Q9VA37|P10676|Q9W266|Q9VD02|Q9VJZ5|Q9VW66|Q9VK60|Q9VXN2|P42325|P13677 +GO:0009967,0.875,1,0.0434506826723125,0.226380989219051,0.771846922434559,56,Q9W2E7|Q9VTZ4|Q9U9Q4|P12370|Q9VN50|Q95RG8|Q9VF24|Q9V3U6|Q7JWQ7|A0A0B4LFA6|P08646|Q9VHI1|P09208|Q7KJ08|Q9W3N6|P20240|Q7K519|Q9VHG4|Q9VB05 +GO:0009968,0.292978208232446,0.721862223250791,0.123257226381337,-0.31631402224964,-1.10002139167295,47,Q9VA37|P10676|Q9W266|Q9VD02|Q9VK60|P42325|P13677 +GO:0009994,0.761904761904762,1,0.0642140881844605,-0.269036288481184,-0.819311421847359,26,Q9VQ91|Q7KM15|P08182|P17210 +GO:0010256,0.558752997601919,0.881490927802761,0.0828962134571565,-0.274404176518619,-0.946710614717928,44,Q23983|Q7K3Z3|Q9VN02|Q7JWD3|Q9VH76|P36975|Q9W1I8|Q9W289|Q9VEC8|Q9U6P7|P14199|Q03427 +GO:0010257,0.00105705451885682,0.0325374594085614,0.45505986738723,-0.608405942293428,-1.88472710704085,28,Q9VTU2|Q9VJZ4|Q9W402|Q9VQD7|Q9W3X7|Q9VWI0|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VF27|Q7JYH3|Q9VQM2|M9NEW0|Q9VPC1|Q6IGM9|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0010467,7.10343878009369e-13,1.74922179959807e-10,0.921426003494898,0.461369427928404,1.98991342030717,369,O16797|Q9VNE9|Q9VXP3|P41093|P21187|Q0E9B6|O97125|Q9VXQ0|P09180|Q9VNB9|Q9W3J5|P50887|P22979|Q9VKD3|Q94901|A1Z6L9|Q9W253|Q9VAY9|Q8SXF0|O02195|Q9W1L1|Q9W0S7|A1Z9A8|Q7KVQ0|Q9W4I3|Q9W2E7|Q9VSR5|Q9VNH5|Q9VBC7|Q9W414|Q9VV39|Q9VIF2|Q9VHT5|Q9VCX3|Q9VCK0|Q9VMD3|Q9VUX1|Q9VMY1|Q9VFC2|Q9U9Q4|A1ZA22|P29327|Q9V3G1|P28668|Q9NJH0|Q9VKU3|Q9W086|Q9VIN9|Q9W392|Q9W199|Q9VPL0|Q9W3M7|Q9VPL3|Q9VVN2|Q9V6Y3|Q9VMH8|Q9VXN4|Q9VPF6|Q9VY28|Q9VFB2|Q9V3V0|Q9VNZ3|Q7JWX3|Q9VNC1|Q9V9M7|O77410|P55841|O77477|Q8MZI3|Q9VGP7|Q4V5H1|Q7K3W2|Q7JVK6|Q9VCJ8|Q7K3V6|Q9VUN9|Q9VFT4|A1ZBA5|Q9VGP6|P13060|Q9VJ86|Q9VDV2|Q7K0E6|Q8IP62|Q9GU68|Q9W1B9|P12370|Q7K012|Q8MSS7|Q9V3E3|Q9W0A8|Q9V3L6|Q9VN50|P41094|Q9VHN6|Q9V3P3|Q9W229|Q9VJD0|A0A0B4KGY6|Q9VFJ2|Q9W4Z2|Q9VVU2|Q9V3U6|Q9W158|Q9W4X7|Q9VXQ5|P36241|Q9W1V3|Q9VKY3|Q95RS6 +GO:0010468,0.0657051282051282,0.446341732979664,0.222056046145248,0.329168756776379,1.27515238483518,133,Q9VNE9|P21187|P22979|Q94901|Q9W0S7|Q9W2E7|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VFC2|Q9V3V0|Q7JWX3|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3L6|A0A0B4KGY6|Q9W158|Q9VKY3|Q7KN75|Q9I7T7|Q7KLW9|Q9W3W4|Q27268|P08646|Q9VHI1|Q9W2D9|P23128|P22812|Q9VVI2|P20240|P43332 +GO:0010498,0.000172596532100425,0.00830666662602858,0.518848077743792,0.561250227148736,1.85188414011385,48,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q9VUJ1|P40304|Q9VJ58|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q9V3P3|Q7KMP8|Q9VKC7|A0A0B4LFA6|Q95083|Q9XYZ5|Q9VTF9|Q9W2N5|P18053 +GO:0010506,0.148479427549195,0.570306038047974,0.152144922367565,0.480055090229419,1.29088981575378,18,P22979|Q24253|Q9W2E7 +GO:0010556,0.0615883306320908,0.445313858459398,0.231126709673834,0.332168316260468,1.28499009846353,135,Q9VNE9|P21187|P22979|Q94901|Q9W0S7|Q9W2E7|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VFC2|Q9V3V0|Q7JWX3|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3L6|P54622|A0A0B4KGY6|Q9W158|Q9VKY3|Q7KN75|Q9I7T7|Q7KLW9|Q9W3W4|Q27268|P08646|Q9VHI1|Q9W2D9|P23128|P22812|Q9VVI2|P20240|P43332 +GO:0010557,0.0482529118136439,0.386013513513513,0.266350657088526,0.409104414837192,1.3913624555876,55,P21187|Q94901|Q9W2E7|Q9W414|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9GU68|P12370|Q7K012|P54622|A0A0B4KGY6|Q9W158|Q7KN75|Q9I7T7|Q27268|Q9VHI1 +GO:0010558,0.933333333333333,1,0.0404934829859503,0.211356419801512,0.729053287284227,62,Q9VNE9|Q9W0S7|Q9VNH5|Q9VFC2|Q7JWX3|Q7JVK6|Q9VJ86|Q9V3L6|Q7KN75|Q9I7T7|Q27268|P08646|P23128|Q9VVI2|P20240|Q9W1H5|Q9W0C3|Q9VGW7|Q8IPX7|Q9VUH8|Q9W1M9|Q9VJQ5|Q9VEN9|Q9VD14|Q9VNE2 +GO:0010564,0.876363636363636,1,0.0473534245254193,0.278108859988587,0.703552087074843,15,Q9W2E7|P48609|Q9V3P3 +GO:0010604,0.00792268594125902,0.118240085638487,0.380730400722792,0.422695654548809,1.53791755197104,81,P21187|Q9VZU7|P22979|Q94901|Q9W2E7|Q9VNH5|Q9W414|Q7KUT2|P48148|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9GU68|P12370|Q7K012|P54622|A0A0B4KGY6|Q9W158|Q7KN75|Q9I7T7|Q27268|Q9VHI1|P23128|Q9XYZ5|P22812|Q9VTF9 +GO:0010605,0.8379705400982,1,0.0445961615888961,0.22615482885668,0.803302054241774,70,Q9VNE9|Q9W0S7|Q9VNH5|Q9VFC2|Q9U9Q4|Q7JWX3|Q7JVK6|Q9VJ86|P12370|Q9V3L6|Q7KN75|Q9I7T7|Q27268|P08646|P23128|Q9VVI2|P20240|Q9W1H5|Q9W0C3|Q9VGW7|Q8IPX7|Q9VUH8 +GO:0010608,0.00131317041873418,0.0390189827838464,0.45505986738723,0.594299678811783,1.82559496552559,35,Q9VNE9|P21187|P22979|Q94901|Q9VNH5|Q9VCK0|O77477|Q7JVK6|Q9VUN9|Q9VJ86|Q9GU68|Q9V3L6|Q9W158|Q7KN75|Q9I7T7 +GO:0010628,0.00845272478944184,0.122440204670591,0.380730400722792,0.528614449150961,1.61469709922734,34,P21187|Q94901|Q9W2E7|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9GU68|P12370|A0A0B4KGY6|Q9W158|Q7KN75|Q9I7T7 +GO:0010629,0.566835871404399,0.881490927802761,0.0643583367917361,0.279346769812562,0.933208974497496,50,Q9VNE9|Q9W0S7|Q9VNH5|Q9VFC2|Q7JWX3|Q7JVK6|Q9VJ86|Q9V3L6|Q7KN75|Q9I7T7|Q27268|P08646|P23128|Q9VVI2 +GO:0010631,0.155635062611807,0.570306038047974,0.148261500475107,0.473988306402948,1.27457596008311,18,P48596|P12080|P48148|O76742|P08646|P09208 +GO:0010638,0.560538116591928,0.881490927802761,0.0791316651768349,-0.32731973031593,-0.93887057406228,20,X2JAU8|Q9I7K0|Q9VCC0|Q8SX68|Q9U6P7|A0A0B4KHJ9|B7YZT2|Q9VCH5 +GO:0010646,0.821428571428571,1,0.0662842187012672,-0.214224807401733,-0.867387765596607,123,Q24276|Q9VA37|P10676|Q9W266|Q9VD02|Q9VLP0|Q9VJZ5|Q9VW66|Q9VK60|Q9VXN2|P42325|P13677|Q9VIH9|Q95NU8|P36975|P61851|Q9VII1|Q9VLP2|Q7K188|P92177|Q9Y162|P08985|Q7KUA4|P19107|Q9VWX8|Q9U6P7|Q9VRJ6|Q9V3J4|O96824 +GO:0010647,0.904761904761905,1,0.042845050912155,0.220349668212491,0.750927830712525,59,Q9W2E7|Q9VTZ4|Q9U9Q4|P12370|Q9VN50|Q95RG8|Q9VF24|Q9V3U6|Q7JWQ7|A0A0B4LFA6|P08646|Q9VHI1|P09208|Q7KJ08|Q9W3N6|P20240|Q7K519 +GO:0010648,0.437956204379562,0.810945777237912,0.09754492162472,-0.286069096607069,-1.00763817352782,51,Q9VA37|P10676|Q9W266|Q9VD02|Q9VK60|P42325|P13677 +GO:0010720,0.0612691466083151,0.445313858459398,0.271288554688953,-0.568190227980164,-1.47214697650127,14,Q24276|Q9W1F8|Q9VVA6|Q9W289|Q9VD29 +GO:0010817,0.919037199124726,1,0.0536769600638127,-0.266018371008745,-0.689237725834293,14,Q9VFN7 +GO:0010876,0.697727272727273,0.962551829238123,0.0686325631836726,-0.29100754768979,-0.867226932951998,24,Q9VA42|Q9VFN7|Q6NLJ9|Q9U9P7 +GO:0010927,0.887133182844244,1,0.0567672387487446,-0.256754976050682,-0.710342030885296,18,P18432|P17210|Q9VU68|A8DYP0|A0A0B4KHJ9|P83967|O97102|Q7K159 +GO:0010959,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0010970,0.919037199124726,1,0.0536769600638127,-0.263630211299084,-0.667490478007197,13,Q94524|P17210 +GO:0010975,0.342163355408389,0.764242415141185,0.106729884364606,-0.395014083298068,-1.08499906414753,17,Q9VCC0|Q9VVA6|M9PHA0|Q9W289|Q9VD29|Q9VFM9|Q94533|P13496|P51140|Q9VND8 +GO:0012501,0.327615780445969,0.747253988878756,0.0940503465727813,0.333599938376501,1.07854636726053,42,Q9VZU7|Q9W253|Q9VED8|Q7K485 +GO:0015031,0.952861952861953,1,0.0400031517498194,0.204292464391892,0.748349562203277,89,Q9VLB7|P32392|P45437|Q24253|Q9V3D9 +GO:0015931,0.792349726775956,1,0.0520570030732099,0.295379834959185,0.772883211110789,17,Q9W2E7|Q9W1X4|Q27268 +GO:0015980,9.80020206572024e-06,0.000689514216766746,0.593325476396405,-0.519521472597075,-1.97699977067776,75,Q9VA37|Q9VTU2|Q9VEB1|Q9VWH4|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q94522|Q9VXN2|Q9VWI0|Q9W401|A8Y535|Q24439|Q9VMB9|Q9VV75|A1Z992|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1|Q9W141|Q9VCE1|Q9VKX2|Q9VMS1|P00408|Q9W385|Q9VIQ8|Q9V3L7 +GO:0016032,0.753649635036496,0.999118291401008,0.0544555953940371,0.314164872569859,0.80821066768711,16,Q24253|Q9V3L6|O76742|Q9VVA7|Q9VM50 +GO:0016042,0.0640569395017794,0.445313858459398,0.237793834423688,0.496664424942038,1.45010895284399,27,Q7JWF1|Q9W1H8|Q7K2E1|Q9VXZ8|Q9VSA3|Q9VDT1|P20007|Q9W5W8 +GO:0016043,0.0946969696969697,0.452684793296567,0.287857117255149,-0.243271940007291,-1.12924859352827,449,X2JAU8|Q9VG42|P91927|Q9VQ91|Q9VTU2|Q9VH64|P10676|Q9VFS4|Q9W266|Q9I7K0|Q9VHT3|P14318|Q9I7K6|Q23983|Q9VXK6|Q9VB22|Q9VJZ4|Q9VQQ0|Q9VPC2|Q9VLP0|Q7JXC4|P18432|Q9W402|Q6IHY5|P19334|Q7K5M6|Q9VPN5|Q9VJZ5|Q9VQD7|Q9VI75|Q7K3Z3|Q9VN02|Q9W3X7|Q9VEN3|B7Z107|Q8T3X9|Q7KM15|Q6NLJ9|P09040|Q9VWI0|P13677|P08182|Q9VH95|Q7KMS3|Q7PL91|Q7JWD3|Q9VJI9|Q24478|Q9VSD6|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|Q86BS3|M9PDU4|P17210|Q9VE50|A1Z6P3|Q9VLP3|Q95NU8|Q8SX89|Q9VF27|P36975|Q7JYH3|Q9U6R9|Q0E8P5|P61851|Q9VWD0|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|Q9VD64|Q9VHG6|P06002|Q24185|Q0KI81|P35220|Q9VQM2|Q8SX68|Q9VU68|A8DYP0|M9NEW0|Q9VPC1|Q9VSY4|Q9VVH3|P92177|Q4V5I9|Q9W236|O46098|Q9Y162|Q9VVC8|Q9W289|Q6IGM9|P08985|Q9VNI4|Q0E8V7|Q9VD29|Q9VEC8|Q9VMX4|O02649|Q6IDF5|Q9VEX6|Q9W2E8|Q7JZK1|Q9VWX8|Q9U6P7|Q9VRJ6|Q7JNE1|A0A0B4KHJ9|Q9V3J4|P14199|Q9VRY5|Q03427|Q24492|Q9VCE1|Q9VC53|Q7K0X9|Q9I7J0|Q9VFM9|Q9W445|Q9VFS8|B7YZT2|Q9W2D6|Q8SY69|Q9VCH5|Q9V784|Q868Z9|Q9W1E8|Q9W385 +GO:0016049,0.670840787119857,0.954881756232744,0.0589694466690997,0.306312853825466,0.850948305855388,21,Q9VSR5|P48148|P12370|Q9I7T7|O44386|P09208 +GO:0016050,0.0538191048994868,0.408932636935851,0.321775918075361,-0.432828399126101,-1.4123562763671,35,Q23983|Q9VPN5|Q9VI75|Q9VN02|Q9VH76|Q9VE50|P36975|Q9W1I8|Q9W236|Q9VD29|Q9U6P7|Q9V3J4|P14199|Q7K0X9|O18335|A1Z7S3 +GO:0016051,0.00278878629433226,0.0638826627887738,0.431707695803346,-0.654339571614523,-1.85356618920836,19,Q9VG42|P29613|Q9Y119|Q9VEB1|Q9VAN7|Q9VTY2|P52029|Q9VM18|M9PF61|A1Z992 +GO:0016052,0.498896247240618,0.845600493624654,0.0845557442441281,-0.352370893901946,-0.967869517269714,17,P29613|Q9VAN7|P52029 +GO:0016053,0.667262969588551,0.952542065282207,0.059221919380382,0.29598717336024,0.849866242440414,25,Q9VNW6|Q7JXZ2|Q9VCK6|Q9VSY6 +GO:0016054,0.00642574678908991,0.107277298089043,0.407017918923954,0.465812603704718,1.54503294022464,49,Q7JWF1|P54385|Q9W1H8|Q7K2E1|Q9VXY3|Q9VCK6|Q9VSA3|Q9VW68|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007|Q9W5W8|Q9W265|Q9VHD3 +GO:0016055,0.653284671532847,0.942145536544442,0.0611692626746689,0.333483183128937,0.857908345686001,16,P48148|Q7JWQ7|Q9W552|Q9VHI1|Q9VHG4 +GO:0016070,0.22258064516129,0.655431430509169,0.114266502484433,0.280316989162851,1.10766151979171,162,P21187|Q9W3J5|Q9VKD3|Q94901|Q9W0S7|Q7KVQ0|Q9VNH5|Q9W414|Q9VSC3|P28668|Q9VPL0|Q9W3M7|Q9VXN4|Q9V3V0|Q9VNZ3|Q9VNC1|Q8MZI3|Q4V5H1|Q7JVK6|Q9VJ86|Q7K0E6|Q7K012|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q9W1V3|Q7KLW9|Q9VCA5|Q27268|Q9VHI1|Q9VXE0|P23128|Q9VN21|Q9VVI2|Q9VI10|P20240|Q9VIS4|P43332|Q24297|Q05856|Q9W1H5|Q9VE08|Q9VLM8|Q9W0C3|Q9VGW7|Q8IPX7|Q95WY3|Q9VUH8|Q9V998|Q9W1M9|Q8SXG7|Q9W499|Q24090|Q9VJQ5 +GO:0016071,0.0220954573975027,0.253070064378375,0.352487857583619,0.415465093733153,1.47911972884114,71,P21187|Q94901|Q9W0S7|Q9VNH5|Q9VPL0|Q9W3M7|Q9V3V0|Q8MZI3|Q4V5H1|Q9VJ86|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q7KLW9|Q27268|Q9VXE0|P23128|Q9VN21|Q9VVI2|Q9VI10|P43332|Q24297|Q05856|Q9W1H5|Q9W0C3|Q8IPX7|Q9VUH8|Q9V998|Q9W1M9|Q8SXG7 +GO:0016072,0.0748175182481752,0.448542805100182,0.222056046145248,0.548193203861712,1.4102645903421,16,Q7KVQ0|Q9W414|Q9W1V3|Q8IPX7|Q95WY3|Q9W1M9|Q9W499 +GO:0016079,0.0594713656387665,0.437158919061082,0.276500599254472,-0.596015363107057,-1.4757399854806,12,Q23983|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q9U6P7|Q9VV76|Q9W0C1|Q9VSJ8|Q9NHE5 +GO:0016192,0.824146981627297,1,0.0675188953767744,-0.217024976076784,-0.878694476987146,128,Q9W1R3|Q9VH64|Q9W266|Q23983|Q8MSI2|Q9VPN5|Q9VI75|Q9VN02|Q7K2Q8|P13677|Q7KTA1|Q9VH76|Q9VE50|Q9VLP3|P36975|Q9U6R9|Q9W1I8|Q7KLE5|Q24185|Q9W2M0|Q9W236|Q9Y162|Q9W289|Q9VD29|Q7KUA4|P19107|Q9VWX8|Q9W0B3|Q9U6P7|Q9V3J4|Q9XTL2|Q9VCE1|Q7K0X9|Q9VFM9|Q9VSY8|Q9W1E8|Q8SXX1|Q9VGV9|Q9W3K6|O18335|A1Z7S3|Q9VYT6|Q9W4A0 +GO:0016197,0.965197215777262,1,0.0541200569620232,-0.20606363019361,-0.641377114871979,29,Q9VI75|Q9VN02|Q9W236|Q9Y162|Q9W0B3|Q9XTL2 +GO:0016226,0.852422907488987,1,0.0574877409561325,-0.294846310856434,-0.730042407353392,12,Q8T3X9|Q9VJI9|O46098|Q9VC53|Q9W385|Q8SZA8 +GO:0016236,0.834467120181406,1,0.0598603117764473,-0.255350575274713,-0.777633545567212,26,Q7K3Z3|P61851|Q7K1Z5|Q9W1I8|Q9Y162|P14199|Q9VCE1|Q9VL16|Q9W4A0 +GO:0016310,0.856887298747764,1,0.0476387259290825,0.254215556668447,0.72992764336028,25,P48148|Q9VF86|Q9VL10|P12370|O61443|P48609 +GO:0016311,0.178343949044586,0.602446483180428,0.151148761385484,-0.53905582574937,-1.26195934259168,10,P82890|Q9VJZ5|Q86BN8|Q0KI81 +GO:0016331,0.963882618510158,1,0.0529129848430584,-0.212523221037351,-0.587969817621597,18,Q7K5M0|Q8SX89|P35220 +GO:0016358,0.568848758465011,0.882387444233128,0.0787113806986485,-0.313816134327789,-0.940840441896755,25,Q7KMS3|Q9VCC0|P17210|Q9VVA6|Q9W289|Q9VD29 +GO:0016477,0.397887323943662,0.796256568106209,0.0845557442441281,0.337323812632161,1.03038383198245,34,P48596|P12080|P48148|Q9VL10|Q00174 +GO:0016485,0.138686131386861,0.557574854759422,0.159646701919906,0.556735617599088,1.31734714870597,12,Q9VBC7|Q7K3W2|Q9VJD0|Q9V3U6|Q95RS6|Q9VFF0|Q8T4G5|A0A0B4K692|Q9W4W8 +GO:0016567,0.958149779735683,1,0.0520570030732099,-0.237256760264372,-0.587450105518217,12,Q7K738|Q9VXE8 +GO:0017004,0.962472406181016,1,0.0519512476197082,-0.242195610589828,-0.580419583979049,11,B7Z107 +GO:0018193,0.920993227990971,1,0.0550211117163117,-0.238469431036724,-0.659752977536257,18,Q9VSY4|Q7KUA4|Q9W227|Q9VGK3|P25007|O97102|Q7KNM2|Q9V3G3|Q8SX78|Q9W0Q2 +GO:0018958,0.465909090909091,0.821695726253576,0.0899860794997137,-0.331337785167613,-0.987414427849557,24,Q9V521|Q9W369|A0A126GUP6|Q9VL01|A1Z6P3 +GO:0019058,0.456880733944954,0.819750643803781,0.0793434960134973,0.417246654265743,1.01152278940215,13,Q24253|Q9V3L6|O76742|Q9VVA7|Q9VM50 +GO:0019094,0.820568927789934,1,0.0589694466690997,-0.303056623011531,-0.767314979419114,13,Q7KM15|P17210 +GO:0019219,0.849427168576105,1,0.0439759278026345,0.225016577050256,0.798316828006426,69,Q9VZU7|Q9VNH5|Q9W414|Q9V3V0|Q9VJ86|P12370|Q7K012|P54622|A0A0B4KGY6|Q7KLW9|Q27268|Q9VHI1|P23128|P20240|P43332|Q9W1H5|Q9W0C3|Q9VGW7|Q24090|Q9VJQ5|Q9VEN9|Q9V3F3|Q9VD14 +GO:0019222,0.114285714285714,0.509372979961215,0.16440575583821,0.29053556938555,1.17180775494669,197,Q9VNE9|P21187|Q9VZU7|Q9VW54|P22979|Q94901|Q24253|Q9W0S7|Q9W2E7|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VFC2|Q9U9Q4|Q9VW68|Q7KUT2|Q9V3V0|P48148|Q7JWX3|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3L6|Q9V3Z2|Q9V3P3|P54622|A0A0B4KGY6|Q9VYF0|Q9W158|Q9VDC6|Q9VKY3|Q7KN75|Q9I7T7|Q7KLW9|Q9W3W4|Q27268|P08646|Q9VHI1|P09208|Q9W2D9|P23128|Q9XYZ5|P22812|Q9VVI2|Q9VTF9|P20240|Q7K519|P43332 +GO:0019318,0.0260113071139067,0.275338781696848,0.352487857583619,-0.515504330279989,-1.5362461998709,24,Q9VG42|P29613|Q9VEB1|Q9VWP2|Q9VAN7|Q9VTY2|P52029|M9PF61 +GO:0019319,0.00518005099568367,0.098122119822085,0.407017918923954,-0.718638869773863,-1.77935701139869,12,Q9VG42|P29613|Q9VEB1|Q9VAN7|Q9VTY2|P52029|M9PF61 +GO:0019320,0.361233480176211,0.775114199071053,0.103197466945307,-0.425140157552312,-1.05265127171022,12,P29613|Q9VAN7|P52029 +GO:0019362,0.447841726618705,0.817160700969426,0.0793434960134973,0.370588114735626,1.00738853010375,19,Q7JYW9|P54385|Q9VAJ9|Q7K569|Q9VUY9 +GO:0019395,0.154676258992806,0.570306038047974,0.149207542435322,0.477118647121785,1.29697589722216,19,Q7JWF1|Q9W1H8|Q9VSA3|Q9VDT1|Q9W5W8 +GO:0019538,1.03393792288398e-16,5.09214427020359e-14,1.05746357275086,0.485362920280485,2.10778318758712,394,O16797|Q9VNE9|Q9VXP3|P41093|P21187|Q0E9B6|Q9VZU7|Q9VHR8|O97125|Q9VXQ0|P09180|Q9VNB9|Q9VFQ9|Q9W3J5|Q9VW54|P50887|P22979|Q94901|A1Z6L9|Q9W253|Q9VXC9|Q9VAY9|Q7K485|Q8SXF0|O02195|Q9W5W7|Q9W1L1|A1Z9A8|O18413|Q7K148|Q9W4I3|Q9VSR5|Q9VBC7|Q9W414|Q9VV39|Q9VT23|Q9VHT5|Q9VCX3|Q9VCK0|Q9VMD3|Q9VUX1|Q9VMY1|Q9VFC2|Q9U9Q4|Q9VE24|A1ZA22|P29327|Q9V3G1|P28668|Q9NJH0|Q9VKU3|Q9W086|Q9VIN9|Q9W392|Q9W199|Q7KUT2|Q9VPL3|Q9VVN2|Q9V6Y3|Q9VMH8|Q9VXN4|Q9VPF6|Q9VY28|Q9VFB2|P48148|Q9VUJ1|P40304|Q9VJ58|Q7JWX3|P40301|Q9VNC1|Q9V9M7|O77410|P55841|O77477|Q9VGP7|Q4V5H1|Q7K3W2|Q7KMQ0|Q9VCJ8|Q7K3V6|Q9VUN9|A1ZBA5|A0AQH0|Q9VGP6|P13060|Q9VJ86|Q9VDV2|Q7K0E6|Q8IP62|Q9GU68|Q9W1B9|Q9Y136|Q9V3G7|P12370|A1Z7H7|O61443|Q8MSS7|Q9V3E3|P48609|Q9VYY3|Q9V3V6|Q9W0A8|Q9V3H2|Q9VN50|Q9VN01|P41094|Q9V3Z2|Q9VNA5|Q9VHN6|Q9V3P3|Q9W229|Q8MT58|Q9VJD0|Q9VFJ2|Q9VC48|Q9W4Z2|Q9VVU2|Q9V3U6|Q9W158|Q9W4X7|Q7JWQ7|P35992|Q9VXQ5|P36241|Q9VKY3|Q95RS6|Q7KMP8|Q9VKC7|Q7KN75|Q9VFF0|Q9I7T7|Q7KLW9|A0A0B4LFA6|Q9VYV3|Q7K3J0|Q9VT75|Q6WV19|Q9VCA5|Q9VBP9|Q9VEA1|Q95083|Q8T4G5|Q9VIM0|P48159|Q9V9T9|P09208|Q95R98|Q7KJ08|Q9W2D9|Q9VME3|P23128|Q9XYZ5|Q9V597|Q76NQ0|Q9VJZ1|Q9VTF9|Q9VAG3|A0A0B4K692|Q8WTC1 +GO:0019637,0.297520661157025,0.721862223250791,0.09754492162472,0.295443156835797,1.09058705468874,92,Q9VC18|Q9VA09|Q7JYW9|P54385|Q01637|Q9VAJ9|Q7K569|Q9VXZ8|Q9VF23|Q9VTZ4|Q9VUY9|P32748|Q9VF86|P35381|Q8MLS2|O97477|Q7JX94|Q9VGU6 +GO:0019646,2.96091313353318e-05,0.00182281214783137,0.575610261071129,-0.574947678098196,-2.02517236256623,51,Q9VTU2|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|Q9VXI6|Q9VZU4|Q500Y7|Q9VWI0|A8Y535|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0019693,0.475,0.82956560283688,0.0758886900606117,0.325322599872871,0.989551635022721,33,Q9VC18|Q9VA09|Q7JYW9|Q01637|Q9VUY9|P32748|P35381|Q9VGU6 +GO:0019725,0.192399049881235,0.628052226585709,0.154190966581424,-0.359007320685758,-1.2004861497783,38,Q9VAM6|P42281|P19334|Q960M4|Q9VEJ0|Q9VE75|A1Z992|Q9VQI7|Q9W425|Q9W022|Q9VJZ6|Q9V6U9 +GO:0019730,0.472406181015453,0.827971687366941,0.0875697115548511,-0.357780954250838,-0.982729520149915,17,Q9V8F5|Q9VIX1|Q7KUA4|A1ZBU8|O18335|O97102|Q7KNM2|Q7YTY6 +GO:0019748,0.872767857142857,1,0.0570059526582387,-0.254404377591741,-0.756673901001866,23,Q9V521|A0A126GUP6|Q9VL01|A1Z6P3 +GO:0019751,0.524150268336315,0.857621286231346,0.0709609456938284,0.357133669648042,0.960348564976387,18,P48596|Q9VL10|P20007|O97477|P48611 +GO:0019752,0.230897009966777,0.657646425627295,0.11378726182188,0.295158238250366,1.10878146492856,110,Q9VNW6|Q9VAC1|Q7JYW9|Q7JWF1|P54385|Q9W1H8|Q7K2E1|Q7JXZ2|Q9VXY3|Q9VXZ8|Q9VCK6|Q94523|Q9VSA3|Q9VUY9|Q9VW68|Q9VSY6|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007 +GO:0019827,0.949227373068433,1,0.0525898950623616,-0.233797698364628,-0.642180354197787,17,P08985|Q9VCH5|O18335|Q94533|P51140|Q9V4S8|Q9VVU5|Q24298|Q9NBD7|A1Z8D0|Q02748|Q9VPQ2|Q9VCY3|Q24090|P20240|Q9W3N6|P09208 +GO:0019915,0.156308851224105,0.570306038047974,0.152144922367565,0.57780869509058,1.30075649118395,10,P45437|P35381|Q9VW57|P09208 +GO:0019941,0.0205367852276295,0.240818255347798,0.352487857583619,0.441734939582108,1.50233873789995,55,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q9VUJ1|P40304|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q7KMP8|A0A0B4LFA6|Q9VBP9|Q95083|Q9XYZ5|Q9VTF9|Q9W2N5|P18053 +GO:0019953,0.418679549114332,0.810623258603675,0.0770736734944102,0.26074539770482,1.00571230354445,128,P21187|Q94901|Q9VED8|Q7K485|Q9W0S7|P12080|Q9W2E7|Q9W414|Q9VF23|Q24238|Q9VSC3|P48148|Q9VL10|Q7JZW0|Q9VFT4|Q9VGP6|Q9GU68|P12370|Q9VDI5 +GO:0021700,0.966587112171838,1,0.0553642837725362,-0.200284831300478,-0.681383292043374,41,Q9VQ91|Q9VLP0|Q7KM15|P08182|P17210 +GO:0022008,0.929824561403509,1,0.059476028695732,-0.201035879051873,-0.806263439310197,114,Q24276|Q9W3E2|Q9W266|Q9VHT3|Q9VB22|Q7K3Z3|Q7KMS3|Q9VSD6|Q7K204|Q9VCC0|P17210|Q95NU8|Q0E8P5|Q9VVA6|M9PHA0|Q7KLE5|P06002|Q0KI81|Q8SX68|Q9VU68|P92177|Q9Y162|Q9W289|Q9VD29 +GO:0022402,0.782716049382716,1,0.0670512579829467,-0.233713641685551,-0.855387590205804,61,Q9VHT3|Q23983|Q9VB22|Q9VQQ0|Q9VJZ5|Q9VCC0|Q86BS3|P17210|A1Z6P3 +GO:0022411,0.0822898032200358,0.448542805100182,0.208955027549354,0.50202048951646,1.39463127232047,21,Q9VZU7|Q9VED8|Q9VR79|Q9VMD3|Q9VKU3|Q7JYX5|Q9GU68 +GO:0022412,0.294612794612795,0.721862223250791,0.0992333343771191,0.29579661827768,1.08354104224168,89,P21187|Q94901|Q9VED8|Q7K485|P12080|Q9W414|P48148|Q9VFT4|P12370|Q9VAF5|Q9VVG0|O76742|Q7KY04|Q9VT75|O44386|P08646|P09208|P23128|Q9XYZ5|Q9VN21|Q9VPX6|P20240|P43332|Q05856 +GO:0022414,0.919672131147541,1,0.0404114482034376,0.20695474933371,0.810645509885823,152,P21187|Q94901|Q9VED8|Q7K485|Q9W0S7|P12080|Q9W2E7|Q9W414|Q9VF23|Q24238|Q9VSC3|P48148|Q9VL10|Q7JZW0|Q9VFT4|Q9VGP6|Q9GU68|Q9VDH3|P12370|Q9VDI5|Q9VAF5|Q9VVG0|Q9VN73|O76742|Q7KY04|Q9VT75|Q9VAC4|O44386|Q8MSV2|P08646|P09208|P23128|Q9XYZ5|Q9VN21|Q9VPX6|A0A0B4K692|P20240|P43332 +GO:0022603,0.800453514739229,1,0.0618406035753285,-0.263316322475905,-0.801892085938584,26,Q7K5M0|Q9VWD0|Q9VVA6|M9PHA0|Q8SX68|P92177|Q9W289|Q9VD29|B7YZT2|Q9V3Y0|O18335 +GO:0022604,0.227571115973742,0.655431430509169,0.134273452883202,-0.465645010673439,-1.17897569183931,13,Q7K5M0|Q9VWD0|Q9VVA6|Q8SX68|P92177|Q9W289|Q9VD29 +GO:0022607,0.0919540229885057,0.448542805100182,0.252961123069611,-0.261044110478592,-1.14818371512757,240,X2JAU8|Q9VG42|Q9VQ91|Q9VTU2|Q9VFS4|Q9I7K0|Q9I7K6|Q23983|Q9VXK6|Q9VJZ4|Q9VPC2|Q7JXC4|P18432|Q9W402|Q6IHY5|Q9VQD7|Q9VI75|Q7K3Z3|Q9W3X7|Q9VEN3|B7Z107|Q8T3X9|Q7KM15|Q9VWI0|Q9VH95|Q7PL91|Q9VJI9|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|M9PDU4|P17210|A1Z6P3|Q95NU8|Q9VF27|P36975|Q7JYH3|Q9U6R9|Q9VWD0|Q9W1I8|Q9VD64|P35220|Q9VQM2|Q9VU68|A8DYP0|M9NEW0|Q9VPC1 +GO:0022613,0.636363636363636,0.931379170606511,0.059476028695732,0.279949390384037,0.900266390026574,41,Q9VNB9|Q7KVQ0|P29327|P55841|Q9VVU2|Q9W1V3|Q9VXE0|Q9VI10|Q24297|Q9VBU9|Q9VN25|Q8IPX7|Q95WY3|Q9W1M9|Q8SXG7|Q9W499|P38979 +GO:0022618,0.834451901565996,1,0.059221919380382,-0.262570341273541,-0.774101542412162,22,Q9VXK6|Q9VH95 +GO:0022898,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0022900,4.48757532906631e-05,0.00260015394066489,0.557332238758646,-0.532606652132485,-1.93474205687433,57,Q9VA37|Q9VTU2|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q9VWI0|A8Y535|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0022904,7.06338831312591e-06,0.000603789185722539,0.610526878385931,-0.590376457896764,-2.11100209845878,53,Q9VA37|Q9VTU2|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q9VWI0|A8Y535|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0023051,0.821428571428571,1,0.0662842187012672,-0.214224807401733,-0.867387765596607,123,Q24276|Q9VA37|P10676|Q9W266|Q9VD02|Q9VLP0|Q9VJZ5|Q9VW66|Q9VK60|Q9VXN2|P42325|P13677|Q9VIH9|Q95NU8|P36975|P61851|Q9VII1|Q9VLP2|Q7K188|P92177|Q9Y162|P08985|Q7KUA4|P19107|Q9VWX8|Q9U6P7|Q9VRJ6|Q9V3J4|O96824 +GO:0023052,0.566473988439307,0.881490927802761,0.0925528864684773,-0.221403646013168,-0.961510650413641,221,X2JAU8|Q24276|P91927|Q9VA37|P10676|Q9W266|Q23983|Q9VD02|Q9VLP0|Q9VH98|P19334|Q9VJZ5|Q9VW66|Q9VI75|Q9VEN3|Q9VK60|Q9U9P7|Q9VXN2|P09040|P42325|P13677|Q9VH76|Q9VIH9|Q86BS3|Q26377|Q9VFP6|Q9VLP3|Q95NU8|P36975|Q9U6R9|P61851|M9PHA0|Q9W1I8|Q9VII1|Q9VLP2|P06002|Q0KI81|Q7K2L7|Q7K188|P07668 +GO:0023056,0.904761904761905,1,0.042845050912155,0.220349668212491,0.750927830712525,59,Q9W2E7|Q9VTZ4|Q9U9Q4|P12370|Q9VN50|Q95RG8|Q9VF24|Q9V3U6|Q7JWQ7|A0A0B4LFA6|P08646|Q9VHI1|P09208|Q7KJ08|Q9W3N6|P20240|Q7K519 +GO:0023057,0.437956204379562,0.810945777237912,0.09754492162472,-0.286069096607069,-1.00763817352782,51,Q9VA37|P10676|Q9W266|Q9VD02|Q9VK60|P42325|P13677 +GO:0023061,0.292410714285714,0.721862223250791,0.11776578836269,-0.370085199571327,-1.10074289724715,23,P91927|Q23983|Q9VH76|P36975|Q9U6R9|Q9W1I8 +GO:0030001,0.00201778931241839,0.0520641383984777,0.431707695803346,-0.642141304539002,-1.87061410791351,21,Q9VWV6|P91927|Q9VLP0|P19334|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0030003,0.000619277636358163,0.0243995388725116,0.477270815362862,-0.683871143811236,-1.87841290325033,17,Q9VAM6|P19334|Q9VE75|A1Z992|Q9W425|Q9VJZ6|Q9V6U9|Q9VMX4|A1Z933|Q9W385 +GO:0030029,0.491606714628297,0.845600493624654,0.0899860794997137,-0.278725744709702,-0.977592644853259,49,X2JAU8|P10676|P14318|P18432|Q7K5M6|P17210|Q9VWD0|P35220|Q8SX68|Q9VU68|A8DYP0|Q9Y162|A0A0B4KHJ9|Q03427|Q9I7J0|Q9VFM9|Q9VCH5|P83967|O18335 +GO:0030030,0.957095709570957,1,0.038875878582578,0.200373914219202,0.726340898786864,80,P32392|Q9VN14|P12080|P48148|Q00174|P45888|P12370|Q7K012|P48609|Q9VAF5|Q9VV72|P35992|Q9W260|O44386|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0030031,0.701252236135957,0.962551829238123,0.0568864160475701,0.308772761790246,0.830303899885135,18,P32392|P48148|P45888|Q9VV72 +GO:0030036,0.567375886524823,0.881490927802761,0.0813027345384498,-0.267111594764061,-0.935453304630087,48,X2JAU8|P10676|P14318|P18432|Q7K5M6|P17210|Q9VWD0|Q8SX68|Q9VU68|A8DYP0|Q9Y162|A0A0B4KHJ9|Q03427|Q9I7J0|Q9VFM9|Q9VCH5|P83967|O18335 +GO:0030041,0.426048565121413,0.810945777237912,0.0934449219410994,-0.368510602114822,-1.01220102099833,17,X2JAU8|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0030097,0.0678899082568807,0.448384728340676,0.234392647294686,0.584599865890811,1.44728118422093,14,Q9VQE0|P12080|P48148 +GO:0030100,0.2152466367713,0.647796833105681,0.140406238523342,-0.421384892576194,-1.20868325173164,20,Q9VH64|Q9W266|Q9VI75|P13677|Q9W1I8 +GO:0030111,0.495412844036697,0.845600493624654,0.0751181635276302,0.400686473408293,0.97137627135898,13,P48148|Q7JWQ7|Q9W552|Q9VHI1|Q9VHG4 +GO:0030154,0.946091644204852,1,0.0621124188949471,-0.19058203527806,-0.819537428701059,196,Q24276|Q9W3E2|Q9VQ91|Q9W266|Q9VHT3|Q9VEB1|P14318|Q9VB22|Q9VQQ0|Q9W1F8|P18432|Q94524|Q7K3Z3|Q7KM15|P08182|Q7KMS3|Q9VSD6|Q7K204|Q9VCC0|P17210|Q95NU8|Q0E8P5|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|P06002|Q0KI81|P35220|Q8SX68|Q9VU68|A8DYP0 +GO:0030162,0.089126559714795,0.448542805100182,0.199915231309662,0.469312427351805,1.36146744525244,26,Q9VZU7|Q9VFC2|Q9U9Q4|Q7JWX3|P12370|Q9V3P3 +GO:0030163,0.00180922176022975,0.0509166695378943,0.45505986738723,0.47287802115623,1.68351859392736,71,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q9VE24|Q7KUT2|Q9VUJ1|P40304|Q9VJ58|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q9V3P3|Q9V3U6|Q9VKY3|Q7KMP8|Q9VKC7|A0A0B4LFA6|Q9VBP9|Q95083|Q9V9T9|Q9XYZ5|Q9VTF9|Q9W2N5|P18053|Q9VY87 +GO:0030182,0.909983633387889,1,0.0408229003677776,0.208620947894275,0.782760294078408,103,P21187|Q9VZU7|P32392|Q9VN14|P12080|Q9VBC7|P48148|Q00174|Q9VFT4|P12370|Q7K012|P48609|Q95RQ1|Q9VCT4|P35992|Q9W260|O44386|Q8MSV2|P08646|P09208|Q7KJ08|P23128|Q9VPX6 +GO:0030198,0.455045871559633,0.819750643803781,0.0795564677235957,0.417735631281139,1.01270820668354,13,Q9VR79|Q00174|A1ZBD8|Q9VAF5 +GO:0030258,0.107334525939177,0.487209714516541,0.181383128498408,0.483836582011312,1.34411571251914,21,Q7JWF1|Q9W1H8|Q9VSA3|Q9VL10|Q9VDT1|Q9W5W8 +GO:0030334,0.0809792843691149,0.448542805100182,0.216542836735348,0.628549885410616,1.4149844930122,10,P48596|P48148|Q00174|O44386|P09208 +GO:0030431,0.401766004415011,0.796256568106209,0.096887770327544,-0.374600700350358,-1.02892890783961,17,Q9VLP0|P42325|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0030534,0.54421768707483,0.87163320612798,0.0813027345384498,-0.309835765234977,-0.943560375393699,26,Q9VA37|P09040|Q26377|A1Z6P3|P00334|P06002|Q9VSY4 +GO:0030705,0.811816192560175,1,0.059476028695732,-0.298109480082084,-0.772383874550771,14,Q94524|P17210|Q24185 +GO:0030707,0.101374570446735,0.477349346818374,0.183023938384487,0.454648885955008,1.36512532452609,30,P12080|Q9W414|P48148|Q9VFT4|Q9VAF5|O76742|Q7KY04|P08646|P09208|P23128 +GO:0030718,0.978118161925602,1,0.0508054139066364,-0.233373639661427,-0.604657174840853,14,P08985|Q9VCH5|O18335|Q94533|Q9V4S8|Q9VVU5|Q24298|A1Z8D0|Q02748|Q9VPQ2|Q9VCY3|P20240|Q9W3N6|P09208 +GO:0030832,0.135667396061269,0.551995840872877,0.178219874951973,-0.511742302183522,-1.32589376903816,14,X2JAU8|P10676|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0030833,0.273522975929978,0.703446817992241,0.120985142145252,-0.448706857703506,-1.13608965170473,13,X2JAU8|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0030855,0.216696269982238,0.647796833105681,0.122679189568808,0.381698920644212,1.17886821082175,36,P12080|Q9W414|P48148|Q9VFT4|Q9VAF5|O76742|Q7KY04|P08646|P09208|P23128 +GO:0030951,0.62208067940552,0.926789718129404,0.0709609456938284,-0.375696231014659,-0.879525544587784,10,P17210|A1Z6P3|P92177 +GO:0030952,0.931718061674009,1,0.053347785067549,-0.25611565337132,-0.634144913005633,12,P17210|A1Z6P3|P92177 +GO:0031023,0.710176991150443,0.962551829238123,0.066436413766281,-0.313825374466981,-0.832720747597009,15,Q9VHT3|Q9VCC0|P17210 +GO:0031032,0.817180616740088,1,0.059476028695732,-0.279284239096789,-0.752932810626331,16,P18432|Q9VU68|A8DYP0|A0A0B4KHJ9|Q9I7J0|P83967|O18335 +GO:0031047,0.952554744525547,1,0.0437125833579551,0.244239041661716,0.628321674928127,16,Q9W0S7|Q7JVK6|Q9V3L6|Q27268|P23128|Q9W1H5|Q9VUH8 +GO:0031163,0.852422907488987,1,0.0574877409561325,-0.294846310856434,-0.730042407353392,12,Q8T3X9|Q9VJI9|O46098|Q9VC53|Q9W385|Q8SZA8 +GO:0031175,0.757425742574258,1,0.0495901956956338,0.242003142377047,0.844234766161467,65,P32392|Q9VN14|P12080|P48148|Q00174|P12370|Q7K012|P48609|P35992|Q9W260|O44386|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0031344,0.93169877408056,1,0.042845050912155,0.229228748310178,0.682494122730442,29,P32392|P48148|P45888|Q9VAF5|Q9VV72 +GO:0031346,0.914233576642336,1,0.0455878202571231,0.261236425985568,0.672048611109575,16,P32392 +GO:0031347,0.538593481989708,0.867934413736441,0.0675188953767744,0.29267567656336,0.946236049320465,42,P45437|Q9VFC2|Q7JWX3|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0031348,0.87219730941704,1,0.0572461135202885,-0.255056648855607,-0.72250617440886,19,Q960M4|Q9VSL4|P08985|Q7KUA4|Q9VCE1|Q9W2D6|Q9W5R5|Q9VLU4|Q7KNM2|Q7YTY6|Q9V3N1 +GO:0031349,0.772241992882562,1,0.0521630305460055,0.270684549934541,0.790316498513924,27,P45437|Q9VCJ8|Q9VN50|Q9V3Z2 +GO:0031399,0.200364298724954,0.636122273249139,0.130105630751129,0.5373229381398,1.24870623264458,11,P22979|P48148 +GO:0031507,0.214442013129103,0.647796833105681,0.13880510939114,-0.468251688273984,-1.21321218350525,14,Q24478|Q86BS3|Q9VHG6|P08985|Q03427|Q9W396|P05205|Q7KNM2|Q95RN0 +GO:0031647,0.170353982300885,0.59503075378146,0.158514105424824,-0.478954644768071,-1.27088343488391,15,Q24276|Q9VHT3|Q9I7K6 +GO:0031667,0.344144144144144,0.766927561045208,0.0940503465727813,0.384097761176872,1.07719135374065,22,O97125|P20007|Q7JVK6|Q9VFT4|O61443|P08646|P09208|Q7K519 +GO:0031669,0.259023354564756,0.684146553221045,0.122679189568808,-0.503069423662446,-1.17771319562402,10,Q9VG42 +GO:0031929,0.883259911894273,1,0.055826471778749,-0.276605797551266,-0.68487871442474,12,Q9VRJ6|Q9V3J4|O96824|Q8SXX1|Q94533|Q9VND8|Q08012 +GO:0032006,0.947019867549669,1,0.0526973085708419,-0.249059875882069,-0.596869733490601,11,Q9VRJ6|Q9V3J4|O96824|Q8SXX1|Q9VND8|Q08012 +GO:0032101,0.94077834179357,1,0.0408229003677776,0.210838755607951,0.70434542356529,50,P45437|Q9VFC2|Q7JWX3|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0032102,0.4,0.796256568106209,0.0988903007520636,-0.346786716236892,-1.03345353994462,24,P10676|Q960M4|P13677|Q9VSL4|P08985|Q7KUA4|P19107|Q9VCE1|Q9W2D6|Q9W5R5|Q9VLU4|Q7KNM2|Q7YTY6|Q9V3N1 +GO:0032103,0.772241992882562,1,0.0521630305460055,0.270684549934541,0.790316498513924,27,P45437|Q9VCJ8|Q9VN50|Q9V3Z2 +GO:0032222,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0032271,0.0682819383259912,0.448384728340676,0.257206466468838,-0.531349243104536,-1.4324842688177,16,X2JAU8|Q9I7K0|Q9VCC0|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0032386,0.214689265536723,0.647796833105681,0.127505315300183,0.550051797594744,1.23827047306133,10,Q9NJH0|P12370|Q9W1X4 +GO:0032409,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0032411,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0032412,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0032414,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0032434,0.0673952641165756,0.448384728340676,0.234392647294686,0.632635510725916,1.47020692615621,11,Q9VZU7|Q9U9Q4|P12370|Q9VTF9|Q9W2N5 +GO:0032446,0.908071748878924,1,0.0553642837725362,-0.240179872025201,-0.680364308421449,19,Q7K738|Q7K1Z5|Q9VXE8|Q7KUA4|P54353|O97102|Q9VDD1|Q7KNM2 +GO:0032482,0.84954128440367,1,0.0491927521045191,0.291238670694864,0.706044133730589,13,O76742|Q7KY04|Q9VIW6|Q9VM50|O18333|O18332|Q9V3I2|Q9VC31|O15971|Q9VC66|Q9W4A0|A1Z7S3|O18335 +GO:0032501,0.00912748478585462,0.13029815237778,0.380730400722792,-0.273357854721762,-1.25852416729883,387,X2JAU8|Q24276|Q9VG42|Q9VWV6|Q9W3E2|Q9V521|Q9W3Y3|Q9VFN7|Q9I7Q5|Q9W369|Q9VQ91|Q9VA37|P29613|A1Z8Z3|Q9VTU2|Q9VSY0|P10676|Q9W266|Q9VHT3|Q9VEB1|Q9W1N3|Q23983|Q9VZG1|Q9VB22|Q9VLP0|Q9W1F8|P18432|Q9VH98|P19334|Q7K5M6|Q9VJZ5|Q7K5J8|Q94524|Q7K3Z3|Q960M4|Q9VEN3|Q7KM15|Q9VIK6|Q9VXN2|P09040|Q9VEJ0|P42325|Q9V931|Q9V406|P13677|P08182|Q7KMS3|A1Z992|Q7K5M0|Q24478|A8DRW0|Q9VSD6|A1Z8H6|Q7K204|Q9VCC0|Q7K0P0|Q9VIH9|A1Z8H1|Q86BS3|Q26377|P17210|A1Z6P3|Q95NU8|Q8SX89|Q7KN94|Q9U6R9|Q0E8P5|M9PFN0|P61851|Q9VWD0|Q9VVA6|P00334|M9PHA0|Q9VII1|Q7KLE5|Q9VD64|Q9VLP2|Q9W425|P06002|Q24185|Q0KI81|P35220|Q9VZF9|Q8SX68|Q9VU68|Q7K188 +GO:0032502,0.36013986013986,0.775114199071053,0.135002033828631,-0.224783196502834,-1.02683952399883,355,Q9VA42|X2JAU8|Q24276|Q9W3E2|Q9W3Y3|Q9VFN7|Q9I7Q5|Q9W369|Q9VQ91|Q9VA37|A1Z8Z3|Q9VSY0|Q9W266|Q9VHT3|Q9VEB1|P14318|Q23983|Q9VZG1|Q9VB22|Q9VQQ0|Q9VLP0|Q9W1F8|P18432|Q9VJZ5|Q7K5J8|Q94524|Q7K3Z3|Q9VEN3|Q7KM15|Q9VIK6|Q9V406|P13677|P08182|Q7KTA1|Q7KMS3|Q7K5M0|Q24478|A8DRW0|Q9VSD6|A1Z8H6|Q7K204|Q9VCC0|A1Z8H1|Q86BS3|P17210|A1Z6P3|Q95NU8|Q8SX89|Q7KN94|Q9U6R9|Q0E8P5|M9PFN0|Q9VWD0|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|Q9VD64|Q9W425|P20348|P06002|Q0KI81|P35220|Q9VZF9|Q8SX68|Q9VU68|A8DYP0 +GO:0032509,0.312775330396476,0.730952305229569,0.112378519110475,-0.443471978216182,-1.09804104256999,12,Q9VN02|Q9W236|Q9W0B3|Q9XTL2|Q9VRJ5|Q8T0Q4|Q960X8 +GO:0032535,0.380952380952381,0.781221401988896,0.104732821580651,-0.339282818965694,-1.05209595588729,30,X2JAU8|P10676|Q9VCC0|M9PHA0|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0032543,9.88348228835592e-13,1.94704601080612e-10,0.910119734774459,0.769565947228849,2.55253878638601,49,Q9VXP3|Q9VXQ0|Q9W253|Q9VAY9|Q8SXF0|Q9W1L1|A1Z9A8|Q9W4I3|Q9VSR5|Q9VV39|Q9VHT5|Q9VCX3|Q9VUX1|Q9VMY1|Q9VKU3|Q9W086|Q9VIN9|Q9W199|Q9VPL3|Q9VVN2|Q9V6Y3|Q9VPF6|Q9VY28|Q9VFB2|Q9VNC1|O77477|Q9VGP7|Q7K3V6|A1ZBA5|Q9VJ86|Q8IP62|Q8MSS7|Q9V3E3|Q9VHN6|Q9VFJ2|Q9W4Z2 +GO:0032774,0.7,0.962551829238123,0.0521630305460055,0.235820711419706,0.908112198448306,130,P21187|Q9VKD3|Q94901|Q7KVQ0|Q9W414|Q9VPL0|Q9W3M7|Q9V3V0|Q9VNZ3|Q9VNC1|Q8MZI3|Q4V5H1|Q9VJ86|Q7K012|Q9V3L6|Q9V3P3|A0A0B4KGY6|Q9W1V3|Q7KLW9|Q27268|Q9VHI1|Q9VXE0|Q9VN21|Q9VI10|P20240|Q9VIS4|P43332|Q24297|Q05856|Q9VE08|Q9VGW7|Q8IPX7|Q95WY3|Q9VUH8|Q9V998|Q9W1M9|Q8SXG7|Q9W499|Q24090|Q9VJQ5 +GO:0032787,0.392255892255892,0.791746012032897,0.0828962134571565,0.304278842482796,1.03630828342422,57,Q9VAC1|Q7JYW9|Q7JWF1|Q9W1H8|Q7K2E1|Q9VXZ8|Q9VSA3|Q9VUY9|Q9VW68|Q9VDT1|Q9VZI8|P20007 +GO:0032868,0.192560175054705,0.628052226585709,0.147331213699377,-0.488520502642425,-1.23689459648148,13,Q24276 +GO:0032869,0.192560175054705,0.628052226585709,0.147331213699377,-0.488520502642425,-1.23689459648148,13,Q24276 +GO:0032870,0.0790067720090294,0.448542805100182,0.241339976815091,-0.5013638123585,-1.38708037585543,18,Q24276|Q9VH98 +GO:0032879,0.355721393034826,0.773478084192723,0.111918316325105,-0.276867293064158,-1.04791898644836,72,Q9VH64|Q9W266|Q9VQQ0|Q9VLP0|Q9VI75|Q7KM15|P13677|Q9VIH9|P17210|Q9W1I8|Q9VII1|Q9VLP2|Q7K188 +GO:0032880,0.37020316027088,0.775114199071053,0.103197466945307,-0.385563494085372,-1.06670554018696,18,Q9VQQ0|Q7KM15|Q9VGV9|O18335|P05205|O97102|A0A0B4K7J2|Q8IQC6|Q960X8|Q8SY33|P08928|Q9GYU8|Q7JXF7 +GO:0032886,0.200440528634361,0.636122273249139,0.144630528034484,-0.497883405760893,-1.23276428003188,12,Q9I7K0|Q9VCC0|A1Z6P3 +GO:0032940,0.16945107398568,0.594884016936385,0.165656695205483,-0.350815221711207,-1.19863043275213,42,P91927|Q23983|Q8MSI2|Q9VPN5|Q9VH76|Q9VLP3|P36975|Q9U6R9|Q9W1I8|Q7KLE5 +GO:0032956,0.632054176072235,0.926789718129404,0.0732558655828455,-0.305090599768717,-0.88875575529107,21,X2JAU8|P10676|Q8SX68|Q9VU68|A0A0B4KHJ9|Q03427|Q9VFM9|Q9VCH5 +GO:0032970,0.632054176072235,0.926789718129404,0.0732558655828455,-0.305090599768717,-0.88875575529107,21,X2JAU8|P10676|Q8SX68|Q9VU68|A0A0B4KHJ9|Q03427|Q9VFM9|Q9VCH5 +GO:0032981,0.00105705451885682,0.0325374594085614,0.45505986738723,-0.608405942293428,-1.88472710704085,28,Q9VTU2|Q9VJZ4|Q9W402|Q9VQD7|Q9W3X7|Q9VWI0|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VF27|Q7JYH3|Q9VQM2|M9NEW0|Q9VPC1|Q6IGM9|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0032984,0.304744525547445,0.723008705207672,0.102080107662747,0.435377741439649,1.12003908083899,16,Q9VZU7|Q9VMD3|Q9VKU3|Q7JYX5|Q9GU68 +GO:0032989,0.887133182844244,1,0.0567672387487446,-0.256754976050682,-0.710342030885296,18,P18432|P17210|Q9VU68|A8DYP0|A0A0B4KHJ9|P83967|O97102|Q7K159 +GO:0033036,0.997297297297297,1,0.0597317976364411,-0.168761383861204,-0.719528338860018,191,Q9VA42|Q9W3E2|Q9VFN7|Q9VAA6|P10676|Q23983|Q9VB22|Q9VQQ0|P19334|Q7K5M6|Q9VN02|Q7KM15|Q6NLJ9|Q9U9P7|P08182|Q7JWD3|Q9VSD6|P17210|A1Z6P3|P48604|Q9U6R9|Q7KLE5|Q9VJD4|Q8I941|Q8SX68|Q9VBV5|A8DYP0|Q9VRR3|P92177|P08985|Q0E8V7|Q9VD29|Q9VEC8|O02649|Q9VN88|Q9VQ62|Q9V3J4|Q9XTL2|Q03427|Q9VCE1|Q7K0X9|Q9W2D6|Q7K1C5|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9VTC1 +GO:0033043,0.383693045563549,0.782642589969042,0.104732821580651,-0.298249828662304,-1.04607071418066,49,X2JAU8|P10676|Q9I7K0|Q24478|Q9VCC0|Q86BS3|A1Z6P3|Q8SX68|Q9VU68|Q9VVH3|P92177|Q9VD29|Q9U6P7|A0A0B4KHJ9|Q03427|Q9VFM9|B7YZT2|Q9VCH5 +GO:0033108,0.00712904925538702,0.115116615025512,0.407017918923954,-0.465077857064739,-1.61736614749525,47,Q9VTU2|Q9VJZ4|Q9VPC2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VWI0|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VF27|Q7JYH3|Q9VQM2|M9NEW0|Q9VPC1|Q4V5I9|Q6IGM9|Q9VMX4|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0033365,0.874358974358975,1,0.0635007968065945,-0.21330973882054,-0.793746878114692,67,Q9VAA6|Q7JWD3|Q9VSD6|A1Z6P3|P48604|Q9VJD4|Q8SX68|Q9VBV5|A8DYP0|P08985|Q0E8V7|Q9VEC8|O02649|Q9VN88|Q9V3J4|Q9XTL2|Q03427|Q9W2D6|Q9VCH5|Q9V784 +GO:0033500,0.54014598540146,0.867934413736441,0.0704500850658419,0.399185472379414,0.944552184592846,12,Q7JYW9|Q9VBC7|P20007 +GO:0033554,0.753333333333333,0.999118291401008,0.0502948063662358,0.240369080750476,0.855505301717275,72,Q9VZU7|P17336|A1Z803|A1Z6L9|Q9W414|A1ZA22|Q9VJ58|M9NDE3|Q9W299|P12370|Q7K012|O61443|P48609|Q9VKC7|Q9VZJ8|Q7KLW9|Q8MSV2|P08646|Q9VRD9|P09208|Q9XYZ5|Q9VTF9|Q9VIH1|Q7K519 +GO:0034220,0.00465037808610413,0.0916124482962514,0.407017918923954,-0.534665200433859,-1.72313118626186,33,P91927|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|Q9VII1|Q9VLP2|Q7K188|Q9V7D2|Q24583|Q9W141 +GO:0034314,0.707006369426752,0.962551829238123,0.0646484568421928,-0.346588808220533,-0.811383466570633,10,X2JAU8|Q8SX68|Q9VU68 +GO:0034329,0.26140350877193,0.684146553221045,0.109250039480711,0.376421175146616,1.14162846439086,32,P32392|Q9VN14|Q9W2E7|Q00174|M9NDE3|P45888|P48609 +GO:0034330,0.743760399334443,0.991345051886909,0.0508054139066364,0.249164509197512,0.847407485202268,55,P32392|Q9VN14|Q9W2E7|P48148|Q00174|M9NDE3|P45888|O61443|P48609|Q9VCT4|Q9W260|Q9VLT3|O44386 +GO:0034440,0.154676258992806,0.570306038047974,0.149207542435322,0.477118647121785,1.29697589722216,19,Q7JWF1|Q9W1H8|Q9VSA3|Q9VDT1|Q9W5W8 +GO:0034504,0.777533039647577,1,0.0618406035753285,-0.290224213773595,-0.782426296933425,16,Q9VSD6|Q9V3J4|Q03427|Q9VCH5|A0A0B4K7J2|Q9V6B9|P08928|Q9GYU8|Q7JXF5 +GO:0034654,0.252836304700162,0.684146553221045,0.106323255932708,0.274446667908988,1.09149175349807,171,Q9VC18|P21187|Q9VA09|Q9VKD3|Q94901|Q01637|Q7KVQ0|Q9W414|Q9VXZ8|Q9VTZ4|Q9VPL0|Q9W3M7|P32748|Q9V3V0|Q9VNZ3|Q9VF86|Q9VNC1|Q8MZI3|P35381|Q4V5H1|Q9VGU6|Q9VJ86|Q7K012|Q9V3L6|Q9V3P3|Q9VRP4|P54622 +GO:0034655,0.401709401709402,0.796256568106209,0.0824344091527096,0.323314393779563,1.03437759294749,40,Q7JYW9|Q9VED8|Q9W0S7|Q9VNH5|Q9VSC3|Q9VUY9 +GO:0034762,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0034764,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0034765,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0034767,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0034976,0.0626118067978533,0.445313858459398,0.241339976815091,0.521592540641885,1.44900314584552,21,P17336|Q9W414|Q9VJ58|M9NDE3|P48609|Q9VKC7|Q9VZJ8|Q8MSV2|Q9VRD9|Q9VTF9 +GO:0035006,0.632286995515695,0.926789718129404,0.0728938564822936,-0.31230206641049,-0.884666885864892,19,Q9V521|A0A126GUP6|Q9VL01|A1Z6P3 +GO:0035088,0.583941605839416,0.891755785661744,0.0665892104103933,0.386738500464804,0.915100174620059,12,Q9VN14|P48148 +GO:0035107,0.456896551724138,0.819750643803781,0.0760837160951725,0.317737509342344,0.999124933893655,37,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0035114,0.456896551724138,0.819750643803781,0.0760837160951725,0.317737509342344,0.999124933893655,37,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0035120,0.456896551724138,0.819750643803781,0.0760837160951725,0.317737509342344,0.999124933893655,37,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0035152,0.0146648670061784,0.185190948731868,0.380730400722792,0.603885109322268,1.64157162208424,19,Q9VR79|P12080|Q9VW34|P48148|M9NDE3 +GO:0035220,0.692436974789916,0.962551829238123,0.0545680646670941,0.257737726344026,0.870836786506415,53,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9V3Z9|Q9VF24|O76742|Q9VW57|P08646|Q9VHI1|Q9XYZ5|Q9VPX6|Q9W4K0|Q9W3N6 +GO:0035239,0.988662131519274,1,0.0519512476197082,-0.178420339802714,-0.54335354949886,26,Q7KN94|Q9VD64|Q9W425|D0UGE6 +GO:0035282,0.297539149888143,0.721862223250791,0.116739204791222,-0.374032008656635,-1.1027092908067,22,Q9VQ91|Q7KM15|P17210 +GO:0035295,0.775474956822107,1,0.0506004243853618,0.267020344126042,0.804367217698987,31,P12080|P48148|Q9VAF5|P35992|O44386|P08646|Q7KJ08|O97365|Q9VVA7 +GO:0035383,0.691148775894539,0.962551829238123,0.059989249649033,0.368611871498807,0.829814934689368,10,Q9VXZ8 +GO:0035556,0.96969696969697,1,0.0391956336118146,0.197618355567095,0.720818667425285,87,Q9VZU7|Q9VLB7|Q9V3N7|Q9VA09|Q9W2E7 +GO:0035592,0.681528662420382,0.959368389984751,0.066436413766281,-0.356483129874029,-0.8345466178674,10,Q9VCE1|Q9VSY8|Q9VSU7|Q960X8|O15971|Q7JXF7 +GO:0036211,0.996683250414594,1,0.0372254009247509,0.159570534972447,0.580962007711845,82,Q9VZU7|P22979|Q9VMD3|P48148|Q4V5H1|P12370|O61443|P48609|Q9VYY3|P35992|Q7KLW9|Q9VT75|Q6WV19|P09208|Q95R98|Q7KJ08|Q9XYZ5|Q76NQ0|P16620|Q9VEV7|Q9VVA7|Q9VHI7|Q9VGW7|Q9V998|Q9W3V3|Q9NHD5 +GO:0036293,0.105032822757112,0.481196885654674,0.204294756516886,-0.544895955671062,-1.3796327064444,13,P91927|P19334|C0HK95|Q9VG69 +GO:0040003,0.840193704600484,1,0.0626618230932492,-0.231966080051843,-0.80669092184021,47,Q9I7Q5|A1Z8Z3|Q9VSY0|Q9VZG1|Q7K5J8|A8DRW0|A1Z8H6|A1Z8H1|Q9VZF9|Q9VD29|Q7JZV0|Q9VSN3|Q9VMM6|Q9W077|Q8IPD8|Q9V3J4|O97062|Q95RB2 +GO:0040007,0.564273789649416,0.881490927802761,0.0639271933359996,0.273241807058632,0.9269886359943,54,P32392|Q9W2E7|Q9VSR5|Q9VFC2|P48148|Q00174|P45888|P12370|O61443|P48609|Q95RG8|Q9I7T7|O44386|P08646|P09208|Q7KJ08|Q8WTC1 +GO:0040008,0.432478632478633,0.810945777237912,0.0785029047348687,0.316086785797291,1.01125435472702,40,P32392|Q9W2E7|Q9VSR5|Q00174|P45888|O61443|P48609|Q95RG8|Q9I7T7|O44386|P08646|P09208|Q7KJ08|Q8WTC1 +GO:0040011,0.838879159369527,1,0.0476387259290825,0.251313066245679,0.7482468579637,29,P48596|P48148|Q00174|Q9VDH3|O44386|Q8MSV2|P09208|P16620|Q9VM10|Q9VHG4 +GO:0040012,0.0844036697247707,0.448542805100182,0.208955027549354,0.568664597704224,1.40783058705594,14,P48596|P48148|Q00174|Q9VDH3|O44386|P09208 +GO:0040029,0.092511013215859,0.448542805100182,0.219250346703755,-0.521687416360959,-1.40643658925887,16,Q9VQ91|Q24478|Q86BS3|Q9VHG6|P08985|Q03427|Q9W0H8|Q9W396|P05205|Q7KNM2|Q95RN0 +GO:0042026,0.410546139359699,0.802357038232744,0.0865399737444125,0.466182281956282,1.04946435469359,10,O97125|P22979 +GO:0042051,0.505643340857788,0.845600493624654,0.0850427463764322,-0.34980606394601,-0.967778516706728,18,Q7K3Z3|Q9VSD6|Q95NU8|Q7KLE5|P06002|Q9Y162 +GO:0042052,0.0949227373068433,0.452684793296567,0.216542836735348,-0.590351077903353,-1.41477100350323,11,Q7K3Z3|Q9VSD6|Q7KLE5|P06002 +GO:0042060,0.710431654676259,0.962551829238123,0.0565299525056311,0.302442348833279,0.822144426972887,19,Q9VC18|P48148 +GO:0042127,0.348017621145374,0.767284085632826,0.105520936843198,-0.405282037914356,-1.09261498210599,16,Q24276|Q9W266|Q7K5M6 +GO:0042176,0.00583522836000047,0.106438887677786,0.407017918923954,0.658757729240625,1.72368837970913,17,Q9VZU7|Q9VW54|Q9U9Q4|Q7KUT2|P12370|Q9V3P3|Q9XYZ5|Q9VTF9|Q9W2N5 +GO:0042180,0.539449541284404,0.867934413736441,0.0707899094502623,0.385803671323819,0.935296189410573,13,Q9VPE2|Q9VMQ5|Q9VY05|Q9VCW2|Q8MKN0|Q9W3W4 +GO:0042221,0.300254452926209,0.723008705207672,0.125033367555272,-0.266386775063174,-1.06602889150047,112,Q8IN44|Q24276|Q9VWV6|P91927|Q9VA37|Q9VTU2|Q9V8F5|Q9VH98|P19334|Q960M4|Q9VG69|Q9V931|P13677|Q26377|Q9VQI7|P61851|P00334|M9PHA0|Q9VXE8 +GO:0042254,0.207513416815742,0.64276954579719,0.126253987849115,0.418093631043548,1.20046980134099,25,Q9VNB9|Q7KVQ0|P29327|P55841|Q9VVU2|Q9W1V3|Q9VBU9|Q8IPX7|Q95WY3|Q9W1M9|Q9W499|P38979 +GO:0042303,0.0108947428485319,0.145129398637747,0.380730400722792,0.641617328391206,1.62314573693029,15,P48596|Q9VR79|A8JTM7|Q9VW34|O61443|Q9VDC6|Q9VSN9 +GO:0042330,0.619469026548673,0.924510592652186,0.0732558655828455,-0.330365478099107,-0.876609128150267,15,Q9VI75|M9PHA0|P06002 +GO:0042335,0.751842751842752,0.999118291401008,0.0687943095604775,-0.2389023241025,-0.854240206839762,53,Q9I7Q5|Q9W369|A1Z8Z3|Q9VSY0|Q9VZG1|Q7K5J8|A8DRW0|A1Z8H6|A1Z8H1|Q9VZF9|Q9VD29|Q7JZV0|Q9VSN3|Q9VMM6|Q9W077|Q8IPD8|Q9V3J4|O97062 +GO:0042440,0.418244406196213,0.810623258603675,0.0806388495950661,0.323208065254414,1.02229586367017,38,P48596|Q9VSL3|P48148|Q00174|P48611|P48609|Q9VCW2|Q9V3Z2|Q9VDC6|Q95RS6|Q9V9S8|Q9VMY9 +GO:0042441,0.505474452554745,0.845600493624654,0.0738052724171275,0.407960883541522,0.96531655192932,12,Q9VSL3|Q9VCW2|Q9VMY9|Q9VM10 +GO:0042445,0.852097130242826,1,0.057609110864425,-0.299049926484704,-0.716670436332455,11,Q9VFN7 +GO:0042461,0.582392776523702,0.891755785661744,0.0774767547848578,-0.315715597798043,-0.919707309208754,21,Q7K3Z3|Q9VSD6|Q95NU8|Q7KLE5|P06002|Q9Y162 +GO:0042462,0.505643340857788,0.845600493624654,0.0850427463764322,-0.34980606394601,-0.967778516706728,18,Q7K3Z3|Q9VSD6|Q95NU8|Q7KLE5|P06002|Q9Y162 +GO:0042592,0.0641975308641975,0.445313858459398,0.282013350011725,-0.352210896946848,-1.34100826600712,76,Q9VG42|Q9W3E2|P29613|P10676|Q9W266|Q9VAM6|P42281|P19334|Q7K5M6|P52029|Q960M4|Q9VEJ0|Q9VE75|A1Z992|Q9VQI7|Q9W425|Q9W022|Q9VJZ6|Q9VVT6|Q4V5I9|Q9V6U9 +GO:0042594,0.359570661896243,0.775114199071053,0.0911073131586733,0.38844122614864,1.07910392654928,21,O97125|P20007|Q7JVK6|Q9VFT4|O61443|P08646|P09208|Q7K519 +GO:0042692,0.606440071556351,0.910373096124047,0.0637845390312975,0.32451008920943,0.901500890991298,21,P32392|P12080|Q7JYX5|P48148 +GO:0042742,0.866554054054054,1,0.0445070537769277,0.232465362044577,0.763436349082757,45,P45437|Q7K485|Q9VLY7|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0042752,0.148775894538606,0.570306038047974,0.156312403073186,0.585147022519816,1.31727645206221,10,Q94901|Q9VW68|P48148|Q7JVK6|P12370 +GO:0042773,7.06338831312591e-06,0.000603789185722539,0.610526878385931,-0.590376457896764,-2.11100209845878,53,Q9VA37|Q9VTU2|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q9VWI0|A8Y535|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0042775,7.06338831312591e-06,0.000603789185722539,0.610526878385931,-0.590376457896764,-2.11100209845878,53,Q9VA37|Q9VTU2|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q9VWI0|A8Y535|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0042981,0.699463327370304,0.962551829238123,0.0570059526582387,0.29926558492315,0.831370735216612,21,Q9VZU7|P55841|P12370|Q9V3U6|P08646 +GO:0043038,0.104014598540146,0.481006476817107,0.186432558434075,0.525222228975932,1.35117018300752,16,Q9W3J5|P28668|Q9VXN4|Q7K0E6|Q9VDC6|Q9VCA5 +GO:0043039,0.109090909090909,0.492910758965805,0.181383128498408,0.529672675045723,1.33995125509567,15,Q9W3J5|P28668|Q9VXN4|Q7K0E6 +GO:0043062,0.421818181818182,0.810623258603675,0.083129129135339,0.408638290420346,1.03376182296288,15,Q9VR79|Q00174|A1ZBD8|Q9VAF5 +GO:0043066,0.823853211009174,1,0.0506004243853618,0.307162757801188,0.744648582307456,13,Q9VZU7|P55841 +GO:0043067,0.773972602739726,1,0.0637845390312975,-0.260022312731078,-0.805500188562191,28,Q9VEB1|Q960M4|Q9VEJ0|Q9VSD6|P06002 +GO:0043069,0.910583941605839,1,0.04577044581081,0.265053430758462,0.681868117507063,16,Q9VZU7|P55841 +GO:0043161,0.000208269619002611,0.00891937281380748,0.518848077743792,0.58885167956599,1.8936400436405,41,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q9VUJ1|P40304|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q7KMP8|A0A0B4LFA6|Q95083|Q9XYZ5|Q9VTF9|Q9W2N5|P18053 +GO:0043207,0.152284263959391,0.570306038047974,0.181383128498408,-0.292782752705032,-1.16482859963793,104,Q8IN44|Q9VWV6|Q9V521|Q8SXD5|Q9V8F5|Q8IN43|A1ZAL1|Q9VI09|Q9VAQ4|Q9VIX1|Q960M4|Q9VQT8|A0A126GUP6|Q9VL01|Q7K5M0|A1Z6P3|Q8IN51|A1ZBU5|Q95RA9 +GO:0043254,0.910714285714286,1,0.0550211117163117,-0.245801771584987,-0.731087205098549,23,X2JAU8|Q9I7K0 +GO:0043266,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0043268,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0043269,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0043270,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0043297,0.435336976320583,0.810945777237912,0.0815265143256594,0.434616354595967,1.01002230180624,11,Q9VN14 +GO:0043324,0.505474452554745,0.845600493624654,0.0738052724171275,0.407960883541522,0.96531655192932,12,Q9VSL3|Q9VCW2|Q9VMY9|Q9VM10 +GO:0043408,0.419864559819413,0.810623258603675,0.0956031492204301,-0.374386118701769,-1.035782051762,18,Q24276|Q9VD02|Q9VK60|Q95NU8 +GO:0043410,0.48619957537155,0.843145390389043,0.0838361057159929,-0.415587275903651,-0.972912675157101,10,Q24276|Q95NU8 +GO:0043412,0.961602671118531,1,0.0391956336118146,0.200209459196556,0.735821451635488,91,Q9VZU7|P22979|Q9VKD3|Q7KVQ0|Q9VMD3|P48148|Q4V5H1|P12370|O61443|P48609|Q9VYY3|P35992|Q9W1V3|Q7KLW9|Q9VT75|Q6WV19|P09208|Q95R98|Q7KJ08|Q9XYZ5|Q76NQ0 +GO:0043434,0.192560175054705,0.628052226585709,0.147331213699377,-0.488520502642425,-1.23689459648148,13,Q24276 +GO:0043436,0.230897009966777,0.657646425627295,0.11378726182188,0.295158238250366,1.10878146492856,110,Q9VNW6|Q9VAC1|Q7JYW9|Q7JWF1|P54385|Q9W1H8|Q7K2E1|Q7JXZ2|Q9VXY3|Q9VXZ8|Q9VCK6|Q94523|Q9VSA3|Q9VUY9|Q9VW68|Q9VSY6|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007 +GO:0043455,0.941712204007286,1,0.0441523058441465,0.261229039964379,0.607080597527758,11,Q9V3Z2|Q9VDC6|Q9NHA8 +GO:0043473,0.209386281588448,0.64653757794552,0.126253987849115,0.431157044216842,1.21173275770816,23,P48596|A8JTM7|Q9VSL3|O61443|Q9VCW2|Q9VDC6|Q9VMY9 +GO:0043474,0.505474452554745,0.845600493624654,0.0738052724171275,0.407960883541522,0.96531655192932,12,Q9VSL3|Q9VCW2|Q9VMY9|Q9VM10 +GO:0043484,0.710091743119266,0.962551829238123,0.0574877409561325,0.330230274740892,0.81754391504063,14,Q9V3V0|A0A0B4KGY6|Q7KLW9|Q27268|P43332 +GO:0043487,0.0910746812386157,0.448542805100182,0.199915231309662,0.609504157936276,1.41645105171333,11,Q9VNH5|Q9VJ86|P23128|Q9W1H5|Q9W0C3|Q9VEN9|Q9VD14 +GO:0043488,0.0910746812386157,0.448542805100182,0.199915231309662,0.609504157936276,1.41645105171333,11,Q9VNH5|Q9VJ86|P23128|Q9W1H5|Q9W0C3|Q9VEN9|Q9VD14 +GO:0043603,0.517948717948718,0.857444516268046,0.0692836467392548,0.292301277461194,0.954680080907074,44,Q9VSL3|Q7JXZ2|Q9VBC7|Q9VXZ8|Q7JVI6|Q9VL10|Q9VSL5|Q9VHD3|Q9VRP4 +GO:0043604,0.295668549905838,0.721862223250791,0.105920292736253,0.512195139571191,1.15304798666218,10,Q7JXZ2|Q9VXZ8|Q9VL10|Q9VRP4 +GO:0043632,0.0205367852276295,0.240818255347798,0.352487857583619,0.441734939582108,1.50233873789995,55,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q9VUJ1|P40304|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q7KMP8|A0A0B4LFA6|Q9VBP9|Q95083|Q9XYZ5|Q9VTF9|Q9W2N5|P18053 +GO:0043648,0.473394495412844,0.828230156272915,0.0774767547848578,0.409591489362709,0.992964524939426,13,P54385|Q94523|Q9VW68|Q9VW26|P20007|Q9W265 +GO:0043687,0.943060498220641,1,0.0430173196927508,0.222531973579815,0.649725631586741,27,Q9VZU7 +GO:0043933,0.0124377107118094,0.161199276988582,0.380730400722792,-0.325007628378798,-1.34479330322208,143,X2JAU8|Q9VG42|Q9VTU2|Q9I7K0|Q9I7K6|Q23983|Q9VXK6|Q9VJZ4|Q9VPC2|Q7JXC4|Q9W402|Q6IHY5|Q9VQD7|Q9VI75|Q9W3X7|B7Z107|Q9VWI0|Q9VH95|Q7PL91|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|M9PDU4|P17210|Q9VF27|P36975|Q7JYH3|Q9U6R9|Q9W1I8|Q9VQM2|Q9VU68|M9NEW0|Q9VPC1|Q4V5I9|Q9Y162|Q6IGM9|Q9VNI4|Q9VD29|Q9VMX4|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0044085,0.294117647058824,0.721862223250791,0.137250779610133,-0.23695377212834,-1.05199844359497,260,X2JAU8|Q9VG42|Q9VQ91|Q9VTU2|Q9VFS4|Q9I7K0|Q9I7K6|Q23983|Q9VXK6|Q9VJZ4|Q9VPC2|Q7JXC4|P18432|Q9W402|Q6IHY5|Q9VPN5|Q9VQD7|Q9VI75|Q7K3Z3|Q9W3X7|Q9VEN3|B7Z107|Q8T3X9|Q7KM15|Q9VWI0|Q9VH95|Q7PL91|Q9VJI9|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|M9PDU4|P17210|A1Z6P3|Q95NU8|Q9VF27|P36975|Q7JYH3|Q9U6R9|Q9VWD0|Q9W1I8|Q7KLE5|Q9VD64|P35220|Q9VQM2|Q9VU68|A8DYP0|M9NEW0|Q9VPC1 +GO:0044087,0.0862944162436548,0.448542805100182,0.197822021315103,0.398974818785573,1.33284835095475,50,Q9VZU7|P32392|P12080|Q9W2E7|Q9W414|P48148|Q00174|P45888|P12370|O61443|P48609 +GO:0044089,0.249097472924188,0.679670390111703,0.114266502484433,0.41357960646129,1.16233275970125,23,P32392|Q9W414|P45888|P12370|O61443|Q9VV72 +GO:0044093,0.389380530973451,0.787556104740964,0.0988903007520636,-0.387418430187222,-1.02799643071025,15,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0044248,0.0245154505741665,0.26535954742367,0.352487857583619,0.436632411859949,1.47528098358845,53,Q7JWF1|P54385|Q9W1H8|Q7K2E1|Q9VXY3|Q9VCK6|Q9VE24|Q9VSA3|Q9VW68|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007|Q9W5W8|Q9W265|Q9VHD3 +GO:0044272,0.701818181818182,0.962551829238123,0.057609110864425,0.329145181759266,0.832662359576977,15,Q7JXZ2|Q9VXZ8 +GO:0044281,0.011964058009965,0.157127961864207,0.380730400722792,0.331253258480149,1.34342934924507,201,Q9VC18|Q9VN13|P48596|Q9V3N7|Q9VNW6|Q9VA09|Q9VAC1|Q7JYW9|Q7JWF1|P54385|Q01637|Q9W1H8|Q7K511|Q9VAJ9|Q7K2E1|Q7JXZ2|Q7K569|Q9VXY3|Q9VXZ8|Q9VPE2|Q9VTZ4|Q9VCK6|Q94523|Q9VSA3|Q9VUY9|Q9VW68|Q9VSY6|Q9VMQ5|P32748|Q9V396|Q9VHB8|Q9VW26|Q9VF86|Q9VL10|Q9VDT1|Q9VZI8|Q9VM58|P35381|Q9VKR4|P20007|Q8MLS2|O97477|P48611|Q9VGU6|Q9VVW3|Q9W5W8 +GO:0044282,0.0540098199672668,0.408932636935851,0.248911114434702,0.379168609503912,1.34680707220943,70,Q7JYW9|Q7JWF1|P54385|Q9W1H8|Q7K2E1|Q9VXY3|Q9VCK6|Q9VSA3|Q9VUY9|Q9VW68|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007|Q9W5W8|Q9W265|Q9VHD3 +GO:0044283,0.587804878048781,0.894302983539095,0.0810802057550866,-0.255646055777281,-0.930037538569734,58,Q9VG42|Q9VFN7|Q9VA37|P29613|Q9VEB1|Q9VAN7|Q9VTY2|P52029 +GO:0044403,0.644160583941606,0.933085551738944,0.0618406035753285,0.367500781260035,0.869579906577393,12,Q24253|O76742|Q9VVA7|Q9VM50 +GO:0044409,0.644160583941606,0.933085551738944,0.0618406035753285,0.367500781260035,0.869579906577393,12,Q24253|O76742|Q9VVA7|Q9VM50 +GO:0044419,0.28927680798005,0.721862223250791,0.126253987849115,-0.26440122400039,-1.06205488823088,115,Q8IN44|Q9VWV6|Q9V521|Q8SXD5|Q9V8F5|Q8IN43|A1ZAL1|Q9VI09|Q9VAQ4|Q9VIX1|Q960M4|Q9VQT8|A0A126GUP6|Q9VL01|Q7K5M0|A1Z6P3|Q8IN51|A1ZBU5|Q95RA9 +GO:0044770,0.728597449908925,0.980421431912966,0.0559428593065705,0.343717406833376,0.79877860726951,11,Q9W2E7|P48609|Q9V3P3 +GO:0045010,0.707006369426752,0.962551829238123,0.0646484568421928,-0.346588808220533,-0.811383466570633,10,X2JAU8|Q8SX68|Q9VU68 +GO:0045017,0.247240618101545,0.676543885241916,0.128788713061714,-0.497036791459049,-1.19114416243289,11,Q9VAG9|Q9VCE0|Q9VFP6|Q86BN8|Q7K1C5|Q7KTW5|Q8SXX1 +GO:0045047,0.38615664845173,0.782642589969042,0.0880945010398517,0.457740782005807,1.06376208208245,11,Q9V3D9|Q9VSS2 +GO:0045055,0.0243889812071053,0.26535954742367,0.352487857583619,-0.619626475598307,-1.56884436857585,13,Q23983|Q8MSI2|Q9VH76|P36975|Q9U6R9|Q9W1I8 +GO:0045087,0.445193929173693,0.816603389638897,0.0762797180809272,0.292009571505593,1.00190893034411,60,P45437|Q9VLY7|Q9VT23|Q9VFC2|P48148|Q7JWX3|Q00174|Q70PY2|Q9VCJ8|O61443|Q9VSL5|P48609|Q9VN50|Q9V3Z2 +GO:0045088,0.341968911917098,0.764242415141185,0.0919686140000427,0.358114351004101,1.07877714365942,31,P45437|Q9VFC2|Q7JWX3|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0045089,0.422182468694097,0.810623258603675,0.0822054920415869,0.381692616071162,1.02638868093078,18,P45437|Q9VN50|Q9V3Z2 +GO:0045165,0.564732142857143,0.881490927802761,0.0785029047348687,-0.311357659318929,-0.92606981418276,23,Q9VHT3|Q9VB22|Q9VQQ0|Q9VSD6|Q95NU8 +GO:0045184,0.995016611295681,1,0.0373806494758473,0.178521346946657,0.670627260014447,110,Q9VLB7|P32392|P45437|Q24253|Q9V3D9|Q9VSS2 +GO:0045216,0.352189781021898,0.769704132764195,0.0934449219410994,0.422626164990189,1.08723477642399,16,Q9VN14|P48148|M9NDE3 +GO:0045229,0.602517985611511,0.906076665385249,0.0643583367917361,0.330073727559546,0.907725434791557,20,Q9VR79|Q00174|A1ZBD8|Q9VAF5|Q9VVG0 +GO:0045333,7.96879128364773e-06,0.000603789185722539,0.593325476396405,-0.546588391043631,-2.04192857686356,69,Q9VA37|Q9VTU2|Q9VEB1|Q9VWH4|Q9W1N3|Q9VJZ4|Q8SYJ2|Q9W402|Q6IHY5|Q9VQD7|Q9W3X7|Q9VX36|B7Z107|Q9VXI6|Q9VZU4|Q500Y7|Q94522|Q9VXN2|Q9VWI0|Q9W401|A8Y535|Q24439|Q9VMB9|Q9VV75|Q7PL91|Q9VXZ0|Q9VQR2|M9PDU4|Q9VMU0|Q9VF27|Q7JYH3|P21914|Q9VQM2|Q9VVH5|Q4V5I9|Q9V3W2|Q9VRL0|O97418|Q6IDF5|Q9W2E8|Q7JZK1|Q9W141|Q9VKX2|Q9VMS1|P00408|Q9W385|Q9VIQ8|Q9V3L7 +GO:0045451,0.820568927789934,1,0.0589694466690997,-0.303056623011531,-0.767314979419114,13,Q7KM15|P17210 +GO:0045471,0.595706618962433,0.900402075139478,0.0646484568421928,0.336086022341664,0.903750490908688,18,Q9VLC5|Q9VSY6|P12370|Q9VCT4|O44386 +GO:0045475,0.703096539162113,0.962551829238123,0.057609110864425,0.352065624631355,0.818179363976267,11,Q94901|P48148 +GO:0045595,0.459090909090909,0.821695726253576,0.0908241419007155,-0.322466975243547,-0.995167782180342,27,Q24276|Q9W1F8|Q7K204|Q9VVA6|M9PHA0|Q9W289|Q9VD29|A0A0B4KHJ9 +GO:0045597,0.133182844243792,0.551995840872877,0.183023938384487,-0.476127742969153,-1.31726190122516,18,Q24276|Q9W1F8|Q9VVA6|Q9W289|Q9VD29|A0A0B4KHJ9 +GO:0045727,0.00698268912925934,0.114632479872007,0.407017918923954,0.72363678839059,1.68168842923869,11,P21187|Q94901|O77477|Q9VUN9|Q9GU68|Q9W158|Q7KN75|Q9I7T7 +GO:0045732,0.027114580532583,0.275338781696848,0.352487857583619,0.663557499912851,1.54206777162313,11,Q9VZU7|Q7KUT2|P12370|Q9XYZ5|Q9VTF9|Q9W2N5 +GO:0045807,0.123348017621145,0.528251292855775,0.188204146308491,-0.557175855647226,-1.37957297750945,12,Q9W266|Q9VI75|P13677 +GO:0045814,0.101769911504425,0.477349346818374,0.208955027549354,-0.514697678117983,-1.36572587872096,15,Q9VQ91|Q24478|Q86BS3|Q9VHG6|P08985|Q03427|Q9W396|P05205|Q7KNM2|Q95RN0 +GO:0045824,0.88256880733945,1,0.0474483193656297,0.278018398679142,0.673994490457761,13,Q9VFC2|Q7JWX3|Q9VSL5 +GO:0045861,0.0728597449908925,0.448542805100182,0.224966093540314,0.630462209401453,1.46515630442272,11,Q9VFC2|Q9U9Q4|Q7JWX3 +GO:0045862,0.502752293577982,0.845600493624654,0.0743625384422526,0.397444225473138,0.963516153987704,13,Q9VZU7|P12370|Q9VTF9|Q9W2N5|Q59E04 +GO:0045892,0.319383259911894,0.738480072800976,0.11101149245045,-0.44008831632964,-1.08966306198021,12,Q9VLR5|Q9W403|Q9VY91|P05205|Q8IRH5|Q7K159|P92204 +GO:0045893,0.997742663656885,1,0.0513223330421143,-0.181452016661934,-0.528585686480403,21,Q9VLR5|Q9V3J4|Q9VCH5|Q9W0H8|P05205|Q8IRH5|Q9VHM3|Q961D9|Q9VTT2|P92204 +GO:0045926,0.420131291028446,0.810623258603675,0.0937465422491719,-0.3864406706942,-1.0012447186604,14,X2JAU8|Q9VA37 +GO:0045927,0.18705035971223,0.622447987555901,0.134273452883202,0.457487670459832,1.24361201441633,19,P32392|Q9VSR5|P45888|O61443 +GO:0045934,0.684901531728665,0.961008559476831,0.0676760401641789,-0.33391146957406,-0.845436967712391,13,Q9VLR5|Q9W403|Q9VY91|P05205|Q8IRH5|Q7K159|P92204 +GO:0045935,0.558928571428571,0.881490927802761,0.0676760401641789,0.30960320479312,0.9417370869132,33,Q9VZU7|Q9VNH5|Q9W414|Q7K012|P54622|Q27268|Q9VHI1|P23128|Q9W1H5|Q9W0C3|Q24090|Q9VJQ5|Q9VEN9 +GO:0045944,0.910284463894967,1,0.0541200569620232,-0.27000677035888,-0.683635412360095,13,Q9VLR5|Q9V3J4|Q9VCH5|P05205|Q8IRH5|Q9VHM3|Q961D9|P92204 +GO:0046031,0.53927813163482,0.867934413736441,0.0782955249944794,-0.399482306969704,-0.935210056916978,10,P29613|Q9VAN7|P52029 +GO:0046034,0.123318385650224,0.528251292855775,0.190023305279108,-0.45729937549961,-1.31169889080391,20,P29613|Q9VAN7|Q8IQG9|P52029|Q9VXN2|Q24439|Q94516|O77134|Q9W2X6 +GO:0046148,0.0447227191413238,0.373321003001728,0.287857117255149,0.570020627595833,1.53281120835816,18,P48596|Q9VSL3|P48611|Q9VCW2|Q9VDC6|Q9V9S8|Q9VMY9 +GO:0046165,0.503649635036496,0.845600493624654,0.0739901439101342,0.409007163321245,0.967792257885606,12,P48596|Q9VL10|P20007|O97477|P48611 +GO:0046173,0.271402550091075,0.701657511390311,0.109250039480711,0.505659917472369,1.17512327452883,11,P48596|Q9VL10|P20007|O97477|P48611 +GO:0046364,0.00518005099568367,0.098122119822085,0.407017918923954,-0.718638869773863,-1.77935701139869,12,Q9VG42|P29613|Q9VEB1|Q9VAN7|Q9VTY2|P52029|M9PF61 +GO:0046365,0.426695842450766,0.810945777237912,0.0928481214159878,-0.396115664863391,-1.00293298398127,13,P29613|Q9VAN7|P52029 +GO:0046390,0.313513513513514,0.730952305229569,0.0995791200495904,0.397358115258318,1.11437964330607,22,Q9VC18|Q9VA09|Q01637|P32748|P35381|Q9VGU6 +GO:0046394,0.667262969588551,0.952542065282207,0.059221919380382,0.29598717336024,0.849866242440414,25,Q9VNW6|Q7JXZ2|Q9VCK6|Q9VSY6 +GO:0046395,0.00642574678908991,0.107277298089043,0.407017918923954,0.465812603704718,1.54503294022464,49,Q7JWF1|P54385|Q9W1H8|Q7K2E1|Q9VXY3|Q9VCK6|Q9VSA3|Q9VW68|Q9VHB8|Q9VW26|Q9VDT1|Q9VZI8|Q9VM58|Q9VKR4|P20007|Q9W5W8|Q9W265|Q9VHD3 +GO:0046434,0.201312910284464,0.636122273249139,0.143758989039275,-0.472710177130513,-1.22476386209225,14,P29613|Q9VAN7|P52029|Q9VMW7 +GO:0046474,0.0636942675159236,0.445313858459398,0.261663521711573,-0.636271910446522,-1.48954754491416,10,Q9VAG9|Q9VCE0|Q9VFP6|Q86BN8|Q7K1C5|Q7KTW5|Q8SXX1 +GO:0046486,0.807522123893805,1,0.0602484086158019,-0.288322483334396,-0.765050035482409,15,Q9VAG9|Q9VCE0|Q9VFP6|Q86BN8|Q7K1C5|Q7KTW5|Q8SXX1 +GO:0046496,0.447841726618705,0.817160700969426,0.0793434960134973,0.370588114735626,1.00738853010375,19,Q7JYW9|P54385|Q9VAJ9|Q7K569|Q9VUY9 +GO:0046530,0.721052631578947,0.972927180966114,0.0546808488785442,0.277805095732708,0.842540818055089,32,P21187|Q9VZU7|Q9VBC7 +GO:0046718,0.644160583941606,0.933085551738944,0.0618406035753285,0.367500781260035,0.869579906577393,12,Q24253|O76742|Q9VVA7|Q9VM50 +GO:0046903,0.168292682926829,0.594151586677157,0.16823816568964,-0.355016678121439,-1.22382446695645,45,P91927|Q23983|Q8MSI2|Q9VH98|Q9VPN5|Q9VH76|Q9VLP3|P36975|Q9U6R9|Q9W1I8|Q7KLE5 +GO:0046907,0.99737532808399,1,0.0583452776743612,-0.175381839627949,-0.714431765958383,132,Q9VA42|Q9VFN7|P10676|Q23983|Q9VI75|Q94524|Q9VN02|Q7K2Q8|Q24478|Q9VSD6|P17210|Q9VE50|Q9U6R9|Q9VVA6|Q24185|Q9VBV5|Q9W236|Q9Y162|Q0E8V7|Q9VD29|Q9VN88|Q9VQ62|Q9W0B3|Q9V3J4|Q9XTL2|Q03427|Q9VCE1|Q7K0X9|Q9W2D6|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9W385 +GO:0048024,0.376146788990826,0.775114199071053,0.0899860794997137,0.45008719606719,1.09113746362149,13,Q9V3V0|A0A0B4KGY6|Q7KLW9|Q27268|P43332 +GO:0048066,0.198198198198198,0.635912785749919,0.130105630751129,0.441385907572629,1.2378543468814,22,P48596|A8JTM7|Q9VSL3|O61443|Q9VCW2|Q9VDC6|Q9VMY9 +GO:0048069,0.178181818181818,0.602446483180428,0.13880510939114,0.496707018633567,1.2565556510451,15,P48596|Q9VSL3 +GO:0048149,0.988938053097345,1,0.0508054139066364,-0.20001077519442,-0.530719106223448,15,Q26377|P00334|Q9VSY4 +GO:0048193,0.691211401425178,0.962551829238123,0.0713052987340038,-0.259729032937886,-0.868509049179433,38,Q9W1R3|Q23983|Q7K2Q8|Q9VH76|Q9VE50|Q9VLP3|Q9W289|Q9VD29|Q9V3J4|Q9VSY8|Q9W1E8|Q9VGV9|O18335|Q9VYT6 +GO:0048232,0.25354609929078,0.684146553221045,0.111918316325105,0.388464152140914,1.14510639345775,28,P21187|Q9W0S7|Q9W2E7 +GO:0048284,0.252272727272727,0.684146553221045,0.129442887745046,-0.381679544952603,-1.1374371000597,24,Q23983|Q9VPN5|Q9VH76|Q9VE50|P36975|Q9W1I8|Q9U6P7|Q7K0X9|Q9VL16|O18335 +GO:0048285,0.179715302491103,0.602446483180428,0.136490437780413,0.423948657497751,1.2378010441465,27,Q9VQE0|P21187|Q9W2E7 +GO:0048468,0.992248062015504,1,0.0578529757032509,-0.169444463464609,-0.71873292829522,176,Q24276|Q9VQ91|Q9W266|Q9VEB1|Q9W1F8|P18432|Q94524|Q7K3Z3|Q7KM15|P08182|Q7KMS3|Q9VSD6|Q7K204|Q9VCC0|P17210|Q95NU8|Q0E8P5|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|P06002|Q0KI81|P35220|Q8SX68|Q9VU68|A8DYP0 +GO:0048469,0.434389140271493,0.810945777237912,0.0937465422491719,-0.313564785063386,-1.01056373150483,33,Q9VQ91|Q7KM15|P08182|P17210|P92177|Q9Y162|Q9XTL2|Q9VCE1 +GO:0048477,0.206375838926175,0.64276954579719,0.122107920287081,0.325333605624324,1.16394376039197,75,P21187|Q94901|Q9VED8|Q7K485|P12080|Q9W414|P48148|Q9VFT4|P12370|Q9VAF5|O76742|Q7KY04|Q9VT75|O44386|P08646|P09208|P23128|Q9VN21|Q9VPX6|P20240|P43332 +GO:0048511,0.307553956834532,0.723008705207672,0.100633389423036,0.409746509262793,1.11383478656853,19,Q94901|Q9VW68|P48148|Q7JVK6|P12370|O61443|Q9VDC6 +GO:0048512,0.405109489051095,0.796472747934787,0.0855356947987884,0.405913083805502,1.04423922955431,16,Q94901|Q9VW68|P48148|Q7JVK6|P12370|Q9VDC6 +GO:0048513,0.500810372771475,0.845600493624654,0.0683110858318647,0.253131114610367,0.979235405559571,135,Q9VQE0|P21187|Q9VZU7|P17336|Q9VHC3|P32392|Q9VN14|Q24253|P12080|Q9VBC7|Q9VTZ4|Q9VFC2|P48148|Q00174|Q9VFT4|P14484|P12370|O61443|Q9V3Z9|Q95RG8|Q9VF24|Q95RQ1|Q9VCT4 +GO:0048518,0.398782343987823,0.796256568106209,0.0766746872490091,0.247558897499003,1.02028686817971,228,Q9VQE0|P21187|Q9VZU7|Q9VHC3|P22979|P32392|P45437|Q94901|A1Z6L9|Q24253|Q9W2E7|Q9VSR5|Q9VNH5|Q9W414|Q9VTZ4|Q9U9Q4|Q7KUT2|P48148|Q7KTG2|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P45888|Q9VK99|P12370|Q7K012|O61443|Q9W1X4|Q9VN50|Q9V3Z2|Q95RG8|Q9VF24|P54622|Q9VAF5|A0A0B4KGY6|Q9VYF0|Q9VV72|Q9V3U6|Q9W158|Q7JWQ7|Q7KN75|Q9I7T7|Q9VW57|A0A0B4LFA6|Q9VYV3 +GO:0048519,0.955844155844156,1,0.0598603117764473,-0.194536011381376,-0.819564314986704,171,X2JAU8|Q9VQ91|Q9VA37|P10676|Q9W266|Q9VLR5|Q9VD02|Q7K5M6|Q960M4|Q2MGK7|Q9VK60|Q9VEJ0|P42325|Q8MR62|P13677|Q9VH95|Q24478|Q9VSD6|Q86BS3|Q9W403|Q95NU8|Q9V3W0|M9PHA0|Q9W1I8|Q9VII1|Q9VHG6|P06002|Q9VSL4|Q9VU68 +GO:0048522,0.443251533742331,0.816079926609713,0.0716527366829457,0.246035273661635,1.00679117787889,215,Q9VQE0|P21187|Q9VZU7|Q9VHC3|P22979|P32392|Q94901|Q24253|Q9W2E7|Q9VSR5|Q9VNH5|Q9W414|Q9VTZ4|Q9U9Q4|Q7KUT2|P48148|O77477|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P45888|Q9VK99|P12370|Q7K012|O61443|Q9W1X4|Q9VN50|Q9V3Z2|Q95RG8|Q9VF24|P54622|Q9VAF5|A0A0B4KGY6|Q9VYF0|Q9VV72|Q9V3U6|Q9W158|Q7JWQ7|Q7KN75|Q9I7T7|Q9VW57|A0A0B4LFA6|Q9VYV3 +GO:0048523,0.850785340314136,1,0.0658311958368866,-0.210825455506611,-0.884037790828575,161,X2JAU8|Q9VQ91|Q9VA37|P10676|Q9W266|Q9VLR5|Q9VD02|Q7K5M6|Q960M4|Q2MGK7|Q9VK60|Q9VEJ0|P42325|Q8MR62|P13677|Q9VH95|Q24478|Q9VSD6|Q86BS3|Q9W403|Q95NU8|Q9V3W0|M9PHA0|Q9W1I8|Q9VHG6|P06002 +GO:0048534,0.306967984934087,0.723008705207672,0.103576326612592,0.504235601049589,1.13512956229998,10,Q9VQE0 +GO:0048542,0.306967984934087,0.723008705207672,0.103576326612592,0.504235601049589,1.13512956229998,10,Q9VQE0 +GO:0048565,0.498175182481752,0.845600493624654,0.0745500777420554,0.411768120095969,0.974325230485003,12,P12080|P48148|O44386|Q7KJ08|O97365 +GO:0048583,0.998366013071895,1,0.0364548541965309,0.168005266467923,0.651266119123097,137,Q9VZU7|P45437|A1Z6L9|Q9W2E7|Q9VTZ4|Q9VFC2|Q9U9Q4|P48148|Q7JWX3|Q9VCJ8|P12370|O61443|Q9VSL5|Q9VN50|Q9V3Z2|Q95RG8|Q9VF24|Q9V3U6|Q7JWQ7|P35992|A0A0B4LFA6|Q9W552|Q9VBP9|P08646|Q9VHI1|P09208|Q7KJ08|P23128|Q9XYZ5|P22812|Q9VTF9|Q9W3N6|P20240|Q7K519 +GO:0048584,0.2220367278798,0.655431430509169,0.116739204791222,0.315046039419518,1.13173552730563,78,Q9VZU7|P45437|A1Z6L9|Q9W2E7|Q9VTZ4|Q9U9Q4|P48148|Q9VCJ8|P12370|Q9VN50|Q9V3Z2|Q95RG8|Q9VF24|Q9V3U6|Q7JWQ7|A0A0B4LFA6|P08646|Q9VHI1|P09208|Q7KJ08|P22812|Q9W3N6|P20240|Q7K519|Q9NHA8|Q9VHG4 +GO:0048585,0.577114427860697,0.888317953020134,0.083129129135339,-0.256156328700952,-0.941936381247173,62,Q9VA37|P10676|Q9W266|Q9VD02|Q960M4|Q9VK60|P42325|P13677 +GO:0048588,0.859744990892532,1,0.0483117581055019,0.298037277909125,0.692620731536164,11,P12370|O44386|P09208 +GO:0048589,0.65704584040747,0.946184433920114,0.0574877409561325,0.270863657906481,0.893973216729013,47,P32392|Q9W2E7|Q9VFC2|P48148|Q00174|P45888|P12370|O61443|P48609|Q95RG8 +GO:0048592,0.682758620689655,0.959368389984751,0.0564118388217596,0.276154084580271,0.868365941659869,37,P21187|Q9VZU7|Q9VBC7|P48148|Q9VFT4 +GO:0048598,0.75886524822695,1,0.052805004567129,0.270403499180625,0.797089703177447,28,Q9VQE0|Q9VTZ4|P48148|Q9VLT3|O44386|P08646|P09208|O97365|Q9VM50 +GO:0048599,0.761904761904762,1,0.0642140881844605,-0.269036288481184,-0.819311421847359,26,Q9VQ91|Q7KM15|P08182|P17210 +GO:0048608,0.2472647702407,0.676543885241916,0.128142916898415,-0.459977907972044,-1.16462704388872,13,P13677|Q7K5M0|D0UGE6 +GO:0048609,0.299159663865546,0.722235953204811,0.0982123351217438,0.281211482177642,1.06405156979784,116,P21187|Q94901|Q9VED8|Q7K485|Q9W0S7|P12080|Q9W2E7|Q9W414|P48148|Q9VL10|Q9VFT4|Q9VDH3|P12370|Q9VAF5|Q9VVG0|Q9VN73|O76742|Q7KY04|Q9VT75|O44386|Q8MSV2|P08646|P09208|P23128|Q9XYZ5|Q9VN21|Q9VPX6|A0A0B4K692|P20240|P43332 +GO:0048638,0.625215889464594,0.926789718129404,0.060640400949416,0.29482083880216,0.888112921145195,31,P32392|Q9W2E7|Q00174|P45888|O61443|P48609|Q95RG8|O44386|P08646|P09208 +GO:0048639,0.303636363636364,0.723008705207672,0.102080107662747,0.450584664666127,1.13987659811622,15,P32392|P45888|O61443 +GO:0048640,0.385120350109409,0.782642589969042,0.0988903007520636,-0.409029750808335,-1.03563041026614,13,X2JAU8|Q9VA37 +GO:0048646,0.739057239057239,0.987749498604316,0.0516355964484201,0.250329629499825,0.852568869134738,57,Q9VQE0|P32392|P12080|Q9VTZ4|P48148 +GO:0048666,0.996661101836394,1,0.037536290520292,0.174171441566902,0.640125014479877,91,P21187|P32392|Q9VN14|P12080|P48148|Q00174|P12370|Q7K012|P48609|Q95RQ1|P35992|Q9W260|O44386|Q8MSV2|P08646|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0048667,0.972789115646258,1,0.0395172228473919,0.200521310743496,0.683354933591454,59,Q9VN14|P12080|P48148|Q00174|Q7K012|P48609|P35992|O44386|P08646|P09208|Q7KJ08|Q9VPX6|P16620 +GO:0048699,0.9325,1,0.059221919380382,-0.198330478377911,-0.797343873717702,110,Q24276|Q9W3E2|Q9W266|Q9VHT3|Q9VB22|Q7K3Z3|Q7KMS3|Q9VSD6|Q9VCC0|P17210|Q95NU8|Q0E8P5|Q9VVA6|M9PHA0|Q7KLE5|P06002|Q0KI81|Q8SX68|Q9VU68|P92177|Q9Y162|Q9W289|Q9VD29 +GO:0048707,0.889643463497453,1,0.0435378240914002,0.229334918992561,0.756909497658975,47,Q9VHC3|P12080|Q9VFC2|P48148|P14484|P12370|O61443|Q9VF24 +GO:0048729,0.929440389294404,1,0.0580983576873206,-0.211475215490819,-0.741184685807227,50,Q7K5M0|Q9VSD6|Q95NU8|Q8SX89|Q7KN94|Q9VD64|P35220|Q9VU68|D0UGE6 +GO:0048731,0.732171156893819,0.982545762316638,0.0492917662312669,0.225714601377633,0.904448734112943,179,Q9VQE0|P48596|P21187|Q9VZU7|P17336|P32392|Q9VN14|Q9VR79|Q24253|P12080|Q9W2E7|Q9VBC7|Q9VTZ4|Q24238|Q9VW34|P48148|Q00174|M9NDE3|P29746|Q9VFT4|Q9VGP6|P45888|P12370|Q7K012|O61443|P48609 +GO:0048732,0.426229508196721,0.810945777237912,0.0826646449123753,0.387092491644374,1.01285616866947,17,Q9VQE0|P12080|P48148 +GO:0048736,0.456896551724138,0.819750643803781,0.0760837160951725,0.317737509342344,0.999124933893655,37,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0048737,0.456896551724138,0.819750643803781,0.0760837160951725,0.317737509342344,0.999124933893655,37,Q9VHC3|P12080|Q9VFC2|P48148|P12370|O61443|Q9VF24|Q9VW57|P08646|Q9VHI1 +GO:0048749,0.437606837606838,0.810945777237912,0.0778840111977068,0.313993659796785,1.00455783061367,40,P21187|Q9VZU7|Q24253|Q9VBC7|P48148|Q9VFT4 +GO:0048754,0.97992700729927,1,0.0424170054438747,0.225687317047317,0.534021058134417,12,P35992|P08646|Q9VVA7 +GO:0048812,0.974489795918367,1,0.0394366509525593,0.199788129476057,0.680856331151324,59,Q9VN14|P12080|P48148|Q00174|Q7K012|P48609|P35992|O44386|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0048813,0.840909090909091,1,0.0596037042575973,-0.259501302101677,-0.77333567498594,24,Q7KMS3|P17210|Q9VVA6|Q9W289|Q9VD29 +GO:0048856,0.431654676258993,0.810945777237912,0.12384217120105,-0.221207065796165,-0.999422099157374,340,Q9VA42|X2JAU8|Q24276|Q9W3E2|Q9W3Y3|Q9VFN7|Q9I7Q5|Q9W369|Q9VQ91|A1Z8Z3|Q9VSY0|Q9W266|Q9VHT3|Q9VEB1|P14318|Q23983|Q9VZG1|Q9VB22|Q9VLP0|Q9W1F8|P18432|Q9VJZ5|Q7K5J8|Q94524|Q7K3Z3|Q9VEN3|Q7KM15|Q9VIK6|Q9V406|P13677|P08182|Q7KTA1|Q7KMS3|Q7K5M0|Q24478|A8DRW0|Q9VSD6|A1Z8H6|Q7K204|Q9VCC0|A1Z8H1|Q86BS3|P17210|A1Z6P3|Q95NU8|Q8SX89|Q7KN94|Q9U6R9|Q0E8P5|M9PFN0|Q9VWD0|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|Q9VD64|Q9W425|P06002|Q0KI81|P35220|Q9VZF9|Q8SX68|Q9VU68|A8DYP0 +GO:0048858,0.974489795918367,1,0.0394366509525593,0.199788129476057,0.680856331151324,59,Q9VN14|P12080|P48148|Q00174|Q7K012|P48609|P35992|O44386|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0048869,0.946091644204852,1,0.0621124188949471,-0.19058203527806,-0.819537428701059,196,Q24276|Q9W3E2|Q9VQ91|Q9W266|Q9VHT3|Q9VEB1|P14318|Q9VB22|Q9VQQ0|Q9W1F8|P18432|Q94524|Q7K3Z3|Q7KM15|P08182|Q7KMS3|Q9VSD6|Q7K204|Q9VCC0|P17210|Q95NU8|Q0E8P5|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|P06002|Q0KI81|P35220|Q8SX68|Q9VU68|A8DYP0 +GO:0048870,0.397887323943662,0.796256568106209,0.0845557442441281,0.337323812632161,1.03038383198245,34,P48596|P12080|P48148|Q9VL10|Q00174 +GO:0048871,0.07847533632287,0.448542805100182,0.241339976815091,-0.493199908042937,-1.4146745151745,20,Q9W3E2|P10676|Q9W266|P19334|Q7K5M6 +GO:0048878,0.0623501199040767,0.445313858459398,0.282013350011725,-0.394723113456731,-1.36181805293565,44,Q9VG42|P29613|Q9VAM6|P42281|P19334|P52029|Q9VE75|A1Z992|Q9W425|Q9VJZ6|Q9VVT6|Q4V5I9|Q9V6U9|Q9VMX4|Q9VQ62|A1Z933|Q9Y125 +GO:0048880,0.523156089193825,0.857621286231346,0.0689567351672811,0.297853001183359,0.957841150381063,41,P21187|Q9VZU7|Q24253|Q9VBC7|P48148|Q9VFT4 +GO:0050657,0.792349726775956,1,0.0520570030732099,0.295379834959185,0.772883211110789,17,Q9W2E7|Q9W1X4|Q27268 +GO:0050658,0.792349726775956,1,0.0520570030732099,0.295379834959185,0.772883211110789,17,Q9W2E7|Q9W1X4|Q27268 +GO:0050684,0.376146788990826,0.775114199071053,0.0899860794997137,0.45008719606719,1.09113746362149,13,Q9V3V0|A0A0B4KGY6|Q7KLW9|Q27268|P43332 +GO:0050767,0.0355125250745014,0.333141306651275,0.321775918075361,-0.565597490545172,-1.55354650346135,17,Q24276|Q7K204|Q9VVA6|M9PHA0|Q9W289|Q9VD29 +GO:0050769,0.147577092511013,0.570306038047974,0.170932335370056,-0.533793881823796,-1.32167897704138,12,Q24276|Q9VVA6|Q9W289|Q9VD29 +GO:0050776,0.298275862068966,0.721871558078455,0.0999276973731092,0.34950582789288,1.09902034516384,37,P45437|Q9VFC2|Q7JWX3|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0050777,0.892727272727273,1,0.0465084048719157,0.270108076312093,0.683311926246949,15,Q9VFC2|Q7JWX3|Q9VSL5 +GO:0050778,0.530249110320285,0.86329813829005,0.070113215764256,0.33524170067402,0.95525832824894,24,P45437|Q9VCJ8|Q9VN50|Q9V3Z2 +GO:0050789,1,1,0.0270265157079683,0.173295376703198,0.760684849909624,482,Q9VNE9|Q9VQE0|P48596|P21187|Q9VZU7|P17336|Q9VLB7|Q9VHC3|Q9V3N7|Q9VW54|Q9VA09|P22979|P32392|P45437|Q94901|A1Z6L9|Q9VR79|Q24253|A8JTM7|Q9W0S7|P12080|Q9W2E7|Q9VSR5|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VTZ4|Q9VFC2|Q9U9Q4|Q9VW68|Q9NJH0|O17444|Q7KUT2|Q9V3V0|P48148|Q7KTG2|Q7JWX3|Q00174|P55841|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|Q9VDH3|P45888|Q9VK99|P12370|Q7K012|O61443|Q9VSL5|Q9W1X4|P48609|Q9V3L6|Q9VN50|Q9V3Z2|Q95RG8|Q9VF24|Q9V3P3|Q9VN91|P54622|Q9VAF5|A0A0B4KGY6|Q9VYF0|Q9VV72|Q9V3U6|Q9W158|Q9VDC6|Q7JWQ7|P35992|Q9VKY3|Q9V9A7|Q9VKC7|Q7KN75|O76742|Q7KY04|Q9I7T7|Q9VW57|Q7KLW9|A0A0B4LFA6|Q9VYV3 +GO:0050793,0.879799666110184,1,0.0432768714901103,0.222791330134859,0.800556251631531,77,Q9VQE0|P21187|P17336|P32392|Q94901|Q9W2E7 +GO:0050794,0.97192513368984,1,0.0280106629226489,0.188745974190484,0.826329150118334,442,Q9VNE9|Q9VQE0|P48596|P21187|Q9VZU7|P17336|Q9VLB7|Q9VHC3|Q9V3N7|Q9VW54|Q9VA09|P22979|P32392|P45437|Q94901|Q9VR79|Q24253|A8JTM7|Q9W0S7|P12080|Q9W2E7|Q9VSR5|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VTZ4|Q9VFC2|Q9U9Q4|Q9VW68|Q9NJH0|Q7KUT2|Q9V3V0|P48148|Q7JWX3|Q00174|P55841|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P45888|Q9VK99|P12370|Q7K012|O61443|Q9W1X4|P48609|Q9V3L6|Q9VN50|Q9V3Z2|Q95RG8|Q9VF24|Q9V3P3|Q9VN91|P54622|Q9VAF5|A0A0B4KGY6|Q9VYF0|Q9VV72|Q9V3U6|Q9W158|Q9VDC6|Q7JWQ7|P35992|Q9VKY3|Q9VKC7|Q7KN75|O76742|Q7KY04|Q9I7T7|Q9VW57|Q7KLW9|A0A0B4LFA6|Q9VYV3 +GO:0050795,0.148775894538606,0.570306038047974,0.156312403073186,0.578841428530987,1.30308136918888,10,Q9VW68|P48148|Q7JVK6|Q9VDH3|P12370|P09208|Q7KJ08|P23128 +GO:0050801,0.0019350089535884,0.0515130761968803,0.45505986738723,-0.642938913388658,-1.87293761265649,21,Q9VAM6|P19334|Q9VE75|A1Z992|Q9W425|Q9VJZ6|Q9VVT6|Q4V5I9|Q9V6U9|Q9VMX4|A1Z933|Q9W385 +GO:0050803,0.46797153024911,0.821695726253576,0.0764767053228531,0.336746732209881,0.983197963646164,27,P32392|Q9W2E7|Q00174|P45888|O61443|P48609 +GO:0050804,0.149659863945578,0.570306038047974,0.172324344900946,-0.409682608536385,-1.24762961309421,26,Q9VA37|Q9VLP0|Q9VIH9|Q95NU8|P36975|P61851|Q9VII1|Q9VLP2|Q7K188|Q9VWX8|Q9U6P7 +GO:0050807,0.481283422459893,0.836295292896314,0.0751181635276302,0.337455782623996,0.978953540282779,26,P32392|Q9W2E7|Q00174|P45888|O61443|P48609 +GO:0050808,0.951923076923077,1,0.0564118388217596,-0.200782933748108,-0.689553674708202,43,X2JAU8|Q9VLP0|P09040|P08182|Q95NU8|P61851 +GO:0050821,0.007790425487786,0.118054909314911,0.407017918923954,-0.700156618564992,-1.73359477300865,12,Q24276|Q9VHT3|Q9I7K6 +GO:0050829,0.43705035971223,0.810945777237912,0.0806388495950661,0.372098669927058,1.01149474914702,19,P45437|Q7K485|Q9VCJ8|Q9VSL5|Q9VN50 +GO:0050830,0.286975717439294,0.721862223250791,0.118287526124085,-0.479658094046552,-1.14949627171474,11,Q9V521|Q9V8F5 +GO:0050832,0.878587196467991,1,0.0561766586307176,-0.257540399915793,-0.707395266912456,17,Q9V521 +GO:0050877,0.907849829351536,1,0.042845050912155,0.226066765486807,0.735425538623812,43,Q9V3N7|P12080|P54195|Q9VR94|P12370|Q9VYY3|Q9VAF5|Q9VCT4|Q9W158|P35992|Q9V8Y2|A0A0B7P9G0|O44386|Q7KJ08|P23128 +GO:0050890,0.226618705035971,0.655431430509169,0.120433371642259,0.434392114140689,1.19460816707154,20,Q9V3N7|P12370|Q9VCT4|Q9W158|P35992|A0A0B7P9G0|O44386|Q7KJ08|P23128|Q9VHG4 +GO:0050896,0.800724637681159,1,0.0857844408075645,-0.201183385161825,-0.922008454402562,382,Q8IN44|Q24276|Q9VG42|Q9VWV6|Q9W3E2|Q9V521|P91927|Q8SXD5|Q9VA37|P29613|Q9VTU2|Q9V8F5|P10676|Q9W266|Q8IN43|Q9VD02|A1ZAL1|Q9VI09|Q9VH98|P19334|Q9VJZ5|Q9VSA9|Q9VW66|Q9VAQ4|Q9VQD7|Q9VI75|C0HK95|Q9VIX1|Q960M4|Q9VQT8|Q9VEN3|A0A126GUP6|Q8T3X9|Q9VG69|Q9VK60|Q9U9P7|Q9VXN2|P09040|Q9VEJ0|Q9VL01|P42325|Q9V931|P13677|Q7KTA1|Q7K5M0|Q86BS3|Q26377|Q9VQI7|A1Z6P3|Q9VLP3|Q8IN51|A1ZBU5|Q95RA9|Q95NU8 +GO:0051046,0.87746170678337,1,0.055826471778749,-0.283237289768206,-0.717134022710165,13,Q9W1I8|Q9VWX8|Q9U6P7 +GO:0051049,0.735941320293399,0.984921468055703,0.0696133438850965,-0.236962074856774,-0.868668631148585,60,Q9VH64|Q9W266|Q9VLP0|Q9VI75|P13677|Q9VIH9|Q9W1I8|Q9VII1|Q9VLP2|Q7K188 +GO:0051050,0.255924170616114,0.684146553221045,0.131457611642763,-0.345255805452422,-1.14158840653238,37,Q9W266|Q9VLP0|Q9VI75|P13677|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0051093,0.823660714285714,1,0.0597317976364411,-0.264876077384358,-0.787819834917029,23,X2JAU8|Q9VA37 +GO:0051094,0.910526315789474,1,0.0439759278026345,0.236703036261591,0.717884491218438,32,Q9VQE0|P32392 +GO:0051124,0.361510791366906,0.775114199071053,0.0911073131586733,0.395275183012767,1.0744966440324,19,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:0051128,0.897180762852405,1,0.042077210988939,0.212806860964814,0.808315836234506,117,Q9VQE0|Q9VZU7|P32392|Q9VR79|A8JTM7|P12080|Q9W2E7|Q9VSR5|Q9W414 +GO:0051129,0.880782918149466,1,0.0461379160269737,0.245750631230959,0.700256968878934,24,Q9VR79|Q9W2E7|Q00174 +GO:0051130,0.900744416873449,1,0.0605092988656667,-0.213066975243747,-0.764037925985598,54,X2JAU8|Q9W266|Q9I7K0|Q9VI75|P13677|Q9VCC0|Q9VVA6|Q8SX68|Q9W289|Q9VD29|Q9U6P7|A0A0B4KHJ9|Q7K0X9|Q9VFM9|B7YZT2|Q9VCH5 +GO:0051146,0.561818181818182,0.881490927802761,0.0683110858318647,0.362873887901566,0.917988305689314,15,P32392|P12080|P48148 +GO:0051168,0.196363636363636,0.634157973174367,0.131457611642763,0.487338054648801,1.23285430558821,15,P32392|Q9W2E7|Q9W1X4 +GO:0051169,0.329159212880143,0.747253988878756,0.096240602328129,0.383027885247061,1.09978573020335,25,P32392|Q9W2E7|P12370|Q9W1X4 +GO:0051170,0.969365426695843,1,0.0512184348540341,-0.242830967371673,-0.629160546614622,14,Q9VSD6|Q9V3J4|Q9VCH5|A0A0B4K7J2|Q9V6B9|Q9GYU8|Q7JXF5 +GO:0051179,0.385454545454545,0.782642589969042,0.132846300606183,-0.225585727643426,-1.01877962883198,335,Q9VA42|Q9VWV6|Q9W3E2|Q9VFN7|P91927|Q9W1R3|Q9VAA6|Q9VH64|P10676|Q9W266|Q9VAM6|Q23983|Q8MSI2|Q9VB22|Q9VQQ0|Q9VLP0|Q9VH98|P19334|Q7K5M6|Q9VPN5|Q9VI75|Q94524|Q9VN02|Q7KM15|Q6NLJ9|Q9U9P7|Q9VXN2|Q7K2Q8|Q24439|P13677|P08182|Q7KTA1|Q9VE75|Q94516|Q7JWD3|Q24478|Q9VSD6|Q9VH76|Q9VIH9|Q86BS3|P17210|Q9VE50|A1Z6P3|Q9VLP3|P36975|O77134|P48604|Q9U6R9|Q9VVA6|Q9W1I8|Q9VII1|Q7KLE5|Q9VJD4|Q9VLP2|Q24185|Q8I941|Q8SX68|Q9VBV5|Q7K188|A8DYP0|Q9VRR3|Q9W2M0|P92177|Q9W236|Q9VGF7|Q9Y162|Q9VVC8|Q9W289|P08985|Q9V7D2|Q0E8V7|Q9VD29|Q7KUA4|Q9VEC8|P19107|Q24583|O02649|Q9VN88|Q9VQ62|Q9VWX8|Q9W0B3|Q9U6P7|Q9V3J4|Q9XTL2|Q03427|Q9W141|Q9VCE1|Q9VF15|Q7K0X9|Q9VFM9|Q9W2D6|Q7K1C5|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9W385|Q9VTC1 +GO:0051223,0.913370998116761,1,0.0470699590082662,0.287092882991556,0.646300296788438,10,Q9W1X4|P45594|O18332|Q9U5L1|Q7JXF7|Q9GYU8|Q960X8|Q8IQC6|O18335|Q9VGV9 +GO:0051234,0.467105263157895,0.821695726253576,0.112378519110475,-0.221584033253366,-0.997392211281193,303,Q9VA42|Q9VWV6|Q9VFN7|P91927|Q9W1R3|Q9VAA6|Q9VH64|P10676|Q9W266|Q9VAM6|Q23983|Q8MSI2|Q9VB22|Q9VLP0|Q9VH98|P19334|Q9VPN5|Q9VI75|Q94524|Q9VN02|Q7KM15|Q6NLJ9|Q9U9P7|Q9VXN2|Q7K2Q8|Q24439|P13677|Q7KTA1|Q9VE75|Q94516|Q7JWD3|Q24478|Q9VSD6|Q9VH76|Q9VIH9|Q86BS3|P17210|Q9VE50|A1Z6P3|Q9VLP3|P36975|O77134|P48604|Q9U6R9|Q9VVA6|Q9W1I8|Q9VII1|Q7KLE5|Q9VJD4|Q9VLP2|Q24185|Q8I941|Q9VBV5|Q7K188|Q9VRR3|Q9W2M0|Q9W236|Q9VGF7|Q9Y162|Q9VVC8|Q9W289|Q9V7D2|Q0E8V7|Q9VD29|Q7KUA4|Q9VEC8|P19107|Q24583|O02649|Q9VN88|Q9VQ62|Q9VWX8|Q9W0B3|Q9U6P7|Q9V3J4|Q9XTL2|Q03427|Q9W141|Q9VCE1|Q9VF15|Q7K0X9|Q9VFM9 +GO:0051236,0.78175313059034,1,0.0518457624865066,0.289075610816187,0.77733737144019,18,Q9W2E7|Q9W1X4|Q27268 +GO:0051239,0.439542483660131,0.810945777237912,0.0753093764172773,0.289215764483109,1.01831713463129,67,P48596|P17336|P32392|Q94901|Q9W2E7|Q9VIF2|Q9VW68|P48148|Q00174|Q7JVK6|Q9VDH3|P45888|P12370|O61443 +GO:0051240,0.41324200913242,0.806026493060265,0.0972150808846466,-0.334026580952824,-1.03475148388727,28,Q24276|Q9W1F8|P42325|Q26377|M9PFN0|Q9VVA6|Q9W289|Q9VD29|Q9VRJ6|Q9W385|Q8SXX1 +GO:0051241,0.355191256830601,0.773478084192723,0.0928481214159878,0.409509431167472,1.07151175091083,17,Q94901|Q9W2E7|Q00174|Q7JVK6|Q9VDH3|Q95RG8|O44386|P09208 +GO:0051246,0.00011254152448938,0.00583438955905472,0.538434096309916,0.536870798806991,1.84910397809371,61,Q9VNE9|P21187|Q9VZU7|Q9VW54|P22979|Q94901|Q9VCK0|Q9VFC2|Q9U9Q4|Q7KUT2|P48148|Q7JWX3|O77477|Q9VUN9|Q9VJ86|Q9GU68|P12370|Q9V3P3|Q9W158|Q7KN75|Q9I7T7 +GO:0051247,0.0013468481367013,0.0390189827838464,0.45505986738723,0.586457718385301,1.76089353314899,30,P21187|Q9VZU7|P22979|Q94901|Q7KUT2|P48148|O77477|Q9VUN9|Q9GU68|P12370|Q9W158|Q7KN75|Q9I7T7 +GO:0051248,0.0719424460431655,0.448542805100182,0.224966093540314,0.518549834246318,1.42604768102124,20,Q9VNE9|Q9VFC2|Q9U9Q4|Q7JWX3|Q9VJ86 +GO:0051252,0.998347107438017,1,0.036993251998507,0.160757884916044,0.557852418826735,64,Q9VNH5|Q9W414|Q9V3V0|Q9VJ86|Q7K012|A0A0B4KGY6|Q7KLW9|Q27268|Q9VHI1|P23128|P20240|P43332|Q9W1H5|Q9W0C3|Q9VGW7|Q24090|Q9VJQ5|Q9VEN9|Q9V3F3|Q9VD14 +GO:0051253,0.319383259911894,0.738480072800976,0.11101149245045,-0.44008831632964,-1.08966306198021,12,Q9VLR5|Q9W403|Q9VY91|P05205|Q8IRH5|Q7K159|P92204 +GO:0051254,0.898625429553265,1,0.0436251240000606,0.237325714618206,0.712592405249236,30,Q9VNH5|Q9W414|Q7K012|Q27268|Q9VHI1|P23128|Q9W1H5|Q9W0C3|Q24090|Q9VJQ5|Q9VEN9 +GO:0051258,0.0654627539503386,0.446341732979664,0.266350657088526,-0.489902390344676,-1.42712875873513,21,X2JAU8|Q9I7K0|Q9VCC0|P17210|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0051276,0.678240740740741,0.959368389984751,0.0709609456938284,-0.275038534158597,-0.8754244156579,32,Q9I7K6|Q9VCC0|Q86BS3|A1Z6P3|Q7JNE1|Q9V3J4|Q24492|Q9VCH5|Q9W0H8|P05205|Q8IRH5|P53034|P13496 +GO:0051301,0.48729792147806,0.84356494315622,0.0883594442500905,-0.302167999015851,-0.986000158004857,35,Q9VHT3|Q23983|Q9VB22|Q9VIK6 +GO:0051321,0.150909090909091,0.570306038047974,0.152144922367565,0.50781000149733,1.28464366940912,15,P21187|Q9W2E7|Q9VGP6 +GO:0051493,0.14047619047619,0.557939708141321,0.183023938384487,-0.400184826531635,-1.24094947950772,30,X2JAU8|P10676|Q9I7K0|Q24478|Q9VCC0|A1Z6P3|Q8SX68|Q9VU68|A0A0B4KHJ9|Q03427|Q9VFM9|Q9VCH5 +GO:0051495,0.103752759381898,0.481006476817107,0.206587922696891,-0.583447411361463,-1.39822642925427,11,X2JAU8|Q9I7K0|Q9VCC0|Q8SX68|A0A0B4KHJ9|Q9VCH5 +GO:0051603,0.00567176964873632,0.105409303849156,0.407017918923954,0.460095639491019,1.62576225171636,68,Q9VZU7|Q9VW54|O18413|Q7K148|Q9W414|Q9U9Q4|Q7KUT2|Q9VUJ1|P40304|Q9VJ58|P40301|Q7KMQ0|A0AQH0|Q9V3G7|P12370|Q9V3V6|Q9V3H2|Q9VNA5|Q9V3P3|Q9V3U6|Q9VKY3|Q7KMP8|Q9VKC7|A0A0B4LFA6|Q9VBP9|Q95083|Q9XYZ5|Q9VTF9|Q9W2N5|P18053|Q9VY87 +GO:0051604,0.77020202020202,1,0.0689567351672811,-0.231747513747287,-0.885670922545263,81,Q24276|Q9VAA6|Q9V9Q4|Q9VSA9|A0A126GUP6|Q7JQR3|Q9VVW7|Q9VU35|Q9VL01|Q8MR62|Q9VH95|A1ZBU5|P48604|Q9V3W0|Q9VVA6|Q9TVP3|Q9VJD4|Q9VSX2 +GO:0051606,0.0951327433628319,0.452684793296567,0.216542836735348,-0.518278249967903,-1.37522675631173,15,P10676|P19334|P13677|A1ZBU5|P06002|P19107 +GO:0051640,0.429256594724221,0.810945777237912,0.0978773277424561,-0.291779658068824,-1.00665705222522,44,Q9VB22|Q9VPN5|Q9VI75|Q24478|Q86BS3|P17210|A1Z6P3|P36975|Q9VVA6|Q9VVC8|Q9VD29|Q03427|Q7K0X9|Q9VCH5|Q9W385 +GO:0051641,0.365217391304348,0.775114199071053,0.120433371642259,-0.236056168845191,-1.03066713880914,228,Q9VA42|Q9W3E2|Q9VFN7|P91927|Q9VAA6|P10676|Q23983|Q9VB22|Q9VQQ0|P19334|Q7K5M6|Q9VPN5|Q9VI75|Q94524|Q9VN02|Q7KM15|Q7K2Q8|P08182|Q7JWD3|Q24478|Q9VSD6|Q9VH76|Q86BS3|P17210|Q9VE50|A1Z6P3|P36975|P48604|Q9U6R9|Q9VVA6|Q9W1I8|Q7KLE5|Q9VJD4|Q24185|Q8SX68|Q9VBV5|A8DYP0|P92177|Q9W236|Q9Y162|Q9VVC8|P08985|Q0E8V7|Q9VD29|Q9VEC8|O02649|Q9VN88|Q9VQ62|Q9VWX8|Q9W0B3|Q9U6P7|Q9V3J4|Q9XTL2|Q03427|Q9VCE1|Q7K0X9|Q9VFM9|Q9W2D6|Q7K1C5|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9W385|Q9VTC1 +GO:0051648,0.352422907488987,0.769704132764195,0.104732821580651,-0.403219394639337,-1.0870542250672,16,Q9VPN5|Q9VI75|P17210|P36975|Q9VD29|O18335|P13496|Q9VSJ8|Q9NHE5 +GO:0051649,0.666666666666667,0.952542065282207,0.0766746872490091,-0.222249576413191,-0.933098240149439,159,Q9VA42|Q9VFN7|P91927|P10676|Q23983|Q9VB22|Q9VPN5|Q9VI75|Q94524|Q9VN02|Q7K2Q8|Q24478|Q9VSD6|Q9VH76|Q86BS3|P17210|Q9VE50|A1Z6P3|P36975|Q9U6R9|Q9VVA6|Q9W1I8|Q24185|Q9VBV5|Q9W236|Q9Y162|Q9VVC8|Q0E8V7|Q9VD29|Q9VN88|Q9VQ62|Q9VWX8|Q9W0B3|Q9U6P7|Q9V3J4|Q9XTL2|Q03427|Q9VCE1|Q7K0X9|Q9VFM9|Q9W2D6|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9W385 +GO:0051650,0.352422907488987,0.769704132764195,0.104732821580651,-0.403219394639337,-1.0870542250672,16,Q9VPN5|Q9VI75|P17210|P36975|Q9VD29|O18335|P13496|Q9VSJ8|Q9NHE5 +GO:0051656,0.0967741935483871,0.458281637717122,0.219250346703755,-0.409680474381758,-1.32545095686789,34,Q9VB22|Q9VPN5|Q9VI75|Q24478|Q86BS3|P17210|A1Z6P3|P36975|Q9VVA6|Q9VVC8|Q9VD29 +GO:0051668,0.998307952622674,1,0.0380842053196415,0.155957293878015,0.524326552554924,51,Q9V3D9|Q9VSS2|P48148|Q9VL10|Q9VKC8|O76742|Q9Y171|Q9W552 +GO:0051701,0.644160583941606,0.933085551738944,0.0618406035753285,0.367500781260035,0.869579906577393,12,Q24253|O76742|Q9VVA7|Q9VM50 +GO:0051707,0.152284263959391,0.570306038047974,0.181383128498408,-0.292782752705032,-1.16482859963793,104,Q8IN44|Q9VWV6|Q9V521|Q8SXD5|Q9V8F5|Q8IN43|A1ZAL1|Q9VI09|Q9VAQ4|Q9VIX1|Q960M4|Q9VQT8|A0A126GUP6|Q9VL01|Q7K5M0|A1Z6P3|Q8IN51|A1ZBU5|Q95RA9 +GO:0051716,1,1,0.062249042949858,-0.174836032791903,-0.769804606019442,239,Q8IN44|Q24276|Q9VG42|Q9W3E2|P91927|Q9VA37|P10676|Q9W266|Q8IN43|Q9VD02|Q9VH98|P19334|Q9VJZ5|Q9VW66|Q960M4|Q9VEN3|Q9VG69|Q9VK60|Q9U9P7|Q9VXN2|P09040|P42325|P13677 +GO:0051726,0.969424460431655,1,0.0422468188360053,0.210502600617252,0.578896618288341,20,Q9W2E7|P48609|Q9V3P3 +GO:0051960,0.60958904109589,0.912530707415581,0.0756946307932749,-0.294240005080752,-0.911500159681329,28,X2JAU8|Q24276|Q7K204|Q9VVA6|M9PHA0|Q9W289|Q9VD29 +GO:0051961,0.707006369426752,0.962551829238123,0.0646484568421928,-0.34660285592813,-0.811416353026909,10,X2JAU8 +GO:0051962,0.825991189427313,1,0.0589694466690997,-0.271428240971944,-0.731753531883127,16,Q24276|Q9VVA6|Q9W289|Q9VD29 +GO:0051963,0.227272727272727,0.655431430509169,0.120985142145252,0.472123729377324,1.19436552713425,15,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:0055001,0.920353982300885,1,0.0541200569620232,-0.251559969772467,-0.667502449252873,15,P18432|Q9W1I8|Q9VU68|A8DYP0 +GO:0055002,0.628450106157113,0.926789718129404,0.0704500850658419,-0.372099057316426,-0.871104363072679,10,P18432|Q9VU68|A8DYP0|A0A0B4KHJ9|P83967 +GO:0055080,0.0019350089535884,0.0515130761968803,0.45505986738723,-0.642938913388658,-1.87293761265649,21,Q9VAM6|P19334|Q9VE75|A1Z992|Q9W425|Q9VJZ6|Q9VVT6|Q4V5I9|Q9V6U9|Q9VMX4|A1Z933|Q9W385 +GO:0055082,0.171875,0.598222173144876,0.158514105424824,-0.409126301039993,-1.2168626858583,23,Q9VAM6|P42281|P19334|Q9VE75|A1Z992|Q9W425|Q9VJZ6|Q9V6U9|Q9VMX4|A1Z933|Q9W385 +GO:0055085,0.156327543424318,0.570306038047974,0.176694268938498,-0.332666852686243,-1.19291172120778,54,P91927|Q9VAA6|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|P48604|Q9VII1|Q9VLP2|Q9VBV5|Q7K188|Q9VGF7|Q9V7D2|Q24583|O02649 +GO:0055086,0.231155778894472,0.657646425627295,0.114266502484433,0.316334777408458,1.1344901083748,76,Q9VC18|Q9V3N7|Q9VA09|Q7JYW9|P54385|Q01637|Q9VAJ9|Q7K569|Q9VXZ8|Q9VTZ4|Q9VUY9|P32748|Q9VF86|P35381|Q8MLS2|Q9VGU6 +GO:0055088,0.544052863436123,0.87163320612798,0.0797705918628453,-0.375687070048735,-0.930204933659377,12,Q9VG42 +GO:0055123,0.498175182481752,0.845600493624654,0.0745500777420554,0.411768120095969,0.974325230485003,12,P12080|P48148|O44386|Q7KJ08|O97365 +GO:0060070,0.840366972477064,1,0.0496901392724606,0.298998897680119,0.724857098115727,13,P48148|Q7JWQ7|Q9VHI1 +GO:0060249,0.00640366221844416,0.107277298089043,0.407017918923954,-0.641236111735472,-1.72873238191134,16,Q9W3E2|P10676|Q9W266|P19334|Q7K5M6 +GO:0060255,0.0139198696561229,0.178065865081573,0.380730400722792,0.345494860106411,1.36918896814542,165,Q9VNE9|P21187|Q9VZU7|Q9VW54|P22979|Q94901|Q9W0S7|Q9W2E7|Q9VNH5|Q9W414|Q9VIF2|Q9VCK0|Q9VFC2|Q9U9Q4|Q7KUT2|Q9V3V0|P48148|Q7JWX3|O77477|Q7JVK6|Q9VCJ8|Q9VUN9|Q9VFT4|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3L6|Q9V3P3|P54622|A0A0B4KGY6|Q9W158|Q9VKY3|Q7KN75|Q9I7T7|Q7KLW9|Q9W3W4|Q27268|P08646|Q9VHI1|Q9W2D9|P23128|Q9XYZ5|P22812|Q9VVI2|Q9VTF9|P20240|P43332 +GO:0060284,0.230248306997743,0.657646425627295,0.135740943810425,-0.40437895348128,-1.17799146383899,21,Q24276|Q9W1F8|Q7K204|Q9VVA6|M9PHA0|Q9W289|Q9VD29 +GO:0060322,0.352422907488987,0.769704132764195,0.104732821580651,-0.428703091474393,-1.06147313164857,12,P08182|Q7KMS3|P35220|Q9VFM9 +GO:0060341,0.940909090909091,1,0.0543434390269162,-0.215252752238141,-0.664293154023785,27,Q9VQQ0|Q7KM15|P17210 +GO:0060429,0.920529801324503,1,0.0408229003677776,0.212389375818384,0.750484465041029,68,P12080|Q9W414|P48148|Q9VFT4|Q9VAF5|P35992|O76742|Q7KY04|Q9VW57|Q9VLT3|O44386|P08646|P09208|P23128|O97365|Q9VVA7|Q9VHG4|Q9VM50 +GO:0060446,0.97992700729927,1,0.0424170054438747,0.225687317047317,0.534021058134417,12,P35992|P08646|Q9VVA7 +GO:0060491,0.027114580532583,0.275338781696848,0.352487857583619,0.663331897247752,1.54154348458081,11,P32392|P48148|P45888|Q9VV72 +GO:0060541,0.128205128205128,0.539666885820732,0.160801401070022,0.387051382358951,1.26414173839762,44,P48596|Q9VR79|P12080|Q9VTZ4|Q9VW34|P48148|Q00174|M9NDE3|Q9VV72|P35992|Q9VLT3|O44386|P08646|P09208 +GO:0060560,0.680656934306569,0.959368389984751,0.059221919380382,0.329511058773965,0.847689783531651,16,Q9VFC2|P48148|Q00174|P12370 +GO:0060562,0.983606557377049,1,0.0421619430092452,0.218131277821747,0.570756641088473,17,P48148|P35992|P08646|O97365|Q9VVA7 +GO:0060627,0.334090909090909,0.754319291163883,0.110122263835536,-0.351208012251403,-1.08386571484483,27,Q9VH64|Q9W266|Q9VI75|P13677|Q9W1I8|Q9U6P7|Q7K0X9|Q8SXX1|Q9VGV9|O18335 +GO:0060810,0.365426695842451,0.775114199071053,0.102080107662747,-0.404931876630669,-1.04915432986228,14,Q7KM15|P08182|P17210 +GO:0060811,0.820568927789934,1,0.0589694466690997,-0.303056623011531,-0.767314979419114,13,Q7KM15|P17210 +GO:0060828,0.652094717668488,0.941808353230881,0.0611692626746689,0.36758859266329,0.854253809258141,11,P48148|Q7JWQ7|Q9VHI1 +GO:0061013,0.0910746812386157,0.448542805100182,0.199915231309662,0.609504157936276,1.41645105171333,11,Q9VNH5|Q9VJ86|P23128|Q9W1H5|Q9W0C3|Q9VEN9|Q9VD14 +GO:0061024,0.201492537313433,0.636122273249139,0.154190966581424,-0.300296995970943,-1.13659840484818,72,X2JAU8|Q23983|Q9VPN5|Q9VI75|Q7K3Z3|Q9VN02|Q6NLJ9|Q7JWD3|Q9VH76|Q9VE50|P36975|Q9W1I8|Q9VVH3|Q9W236|Q0E8V7|Q9VD29|Q9VEC8|Q9U6P7|Q9V3J4|Q03427|Q7K0X9|Q9W2D6|Q8SY69|Q9V784 +GO:0061025,0.104910714285714,0.481196885654674,0.206587922696891,-0.440908313727599,-1.31139179636211,23,Q23983|Q9VPN5|Q7K3Z3|Q9VH76|Q9VE50|P36975|Q9W1I8 +GO:0061057,1,1,0.0414044273760278,0.205190102595051,0.476849473194756,11,Q9VN50|Q7K4Z4|Q9NCC3|E1JJH5|Q9VS97|O77430|Q9VL00|Q9VRL1|Q7KNM2|Q9W5R5|P08985 +GO:0061061,0.706150341685649,0.962551829238123,0.0681513438679483,-0.258258058327333,-0.8575297300714,36,P14318|P18432|Q9V406|Q9VSD6|P17210|Q95NU8|Q9VWD0|Q9W1I8|Q9VU68|A8DYP0|Q9V400|A0A0B4KHJ9|Q03427 +GO:0061077,0.362030905077263,0.775114199071053,0.103197466945307,-0.385384939051284,-1.05855035525829,17,Q9VSA9|Q9VVW7|Q9VU35|Q8MR62|Q9TVP3|Q9VJD4|Q9VSX2|Q8IQW5|Q9VFP0|Q9VGK3 +GO:0061136,0.0477064220183486,0.386013513513513,0.282013350011725,0.612721011061032,1.51690009222664,14,Q9VZU7|Q9U9Q4|P12370|Q9V3P3|Q9VTF9|Q9W2N5 +GO:0061138,0.97992700729927,1,0.0424170054438747,0.225687317047317,0.534021058134417,12,P35992|P08646|Q9VVA7 +GO:0061245,0.583941605839416,0.891755785661744,0.0665892104103933,0.386738500464804,0.915100174620059,12,Q9VN14|P48148 +GO:0061351,0.0883002207505519,0.448542805100182,0.224966093540314,-0.595092808423389,-1.42613451768533,11,Q24276|Q9VHT3|Q9VB22 +GO:0061458,0.2472647702407,0.676543885241916,0.128142916898415,-0.459977907972044,-1.16462704388872,13,P13677|Q7K5M0|D0UGE6 +GO:0061564,0.153716216216216,0.570306038047974,0.144630528034484,0.372983363082333,1.22490961438626,45,P32392|Q9VN14|P12080|P48148|Q00174|P12370|P48609|P35992|Q9W260|O44386|P09208|Q7KJ08|Q9VPX6|P16620 +GO:0061640,0.495446265938069,0.845600493624654,0.0747385227439092,0.365644881597317,0.956736908781225,17,P21187|P48148 +GO:0061844,0.985401459854015,1,0.0421619430092452,0.213164251207729,0.504388994807874,12,Q9VCJ8|P22812|Q7KSM5|Q9VB68|Q7K4Z4|Q9VWU1|O77430|Q7YTY6|Q7KNM2|O97102|O18335|Q7KUA4 +GO:0061919,0.78829604130809,1,0.0496901392724606,0.254766220910569,0.805816691593833,38,P22979|Q24253|Q9W2E7|Q7JYX5 +GO:0065003,0.0029913433858311,0.0669653007964462,0.431707695803346,-0.357480671828702,-1.46633268275784,135,X2JAU8|Q9VG42|Q9VTU2|Q9I7K0|Q9I7K6|Q23983|Q9VXK6|Q9VJZ4|Q9VPC2|Q7JXC4|Q9W402|Q6IHY5|Q9VQD7|Q9VI75|Q9W3X7|B7Z107|Q9VWI0|Q9VH95|Q7PL91|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|M9PDU4|P17210|Q9VF27|P36975|Q7JYH3|Q9U6R9|Q9W1I8|Q9VQM2|Q9VU68|M9NEW0|Q9VPC1|Q4V5I9|Q6IGM9|Q9VNI4|Q9VD29|Q9VMX4|Q6IDF5|Q9W2E8|Q7JZK1 +GO:0065004,0.467091295116773,0.821695726253576,0.0860347242455604,-0.422844263016412,-0.98990168120909,10,Q9I7K6|Q7JXC4 +GO:0065008,0.718015665796345,0.970158341302331,0.0741758965588009,-0.222483167649064,-0.913882774620786,136,X2JAU8|Q24276|Q9V521|Q9VFN7|Q9VA37|P10676|Q9VHT3|Q9I7K6|Q9VH98|Q6NLJ9|P09040|P08182|Q9VE75|Q7K5M0|Q9VCC0|Q7K0P0|P36975|P61851|Q9VWD0|M9PHA0|Q9W425|Q494G8|Q9VU68 +GO:0065009,0.639013452914798,0.933085551738944,0.0723570851036907,-0.308503643166024,-0.884899276557582,20,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0070201,0.885209713024283,1,0.055826471778749,-0.28839187213488,-0.691128505755407,11,Q7KM15|Q9VGV9|O18335|Q8IQC6|Q960X8|Q9GYU8|Q7JXF7 +GO:0070482,0.280353200883002,0.714847018254265,0.119887845115423,-0.420262169096704,-1.15434886867682,17,P91927|P19334|C0HK95|Q9VG69 +GO:0070585,0.963570127504554,1,0.0431036828790402,0.23841506961774,0.623830684341818,17,Q9VL10|Q7K3W2|Q8IRD0|Q9VKC8|Q9VFF0|Q9Y171 +GO:0070646,0.0291634689806931,0.284416009366166,0.352487857583619,0.699972988165227,1.57577138548705,10,Q9VZU7 +GO:0070647,0.943060498220641,1,0.0430173196927508,0.222531973579815,0.649725631586741,27,Q9VZU7 +GO:0070727,0.987277353689568,1,0.0573667426768556,-0.17908136196165,-0.751859717290614,159,Q9W3E2|Q9VAA6|P10676|Q23983|Q9VB22|Q9VQQ0|P19334|Q7K5M6|Q9VN02|Q7KM15|P08182|Q7JWD3|Q9VSD6|P17210|A1Z6P3|P48604|Q9U6R9|Q7KLE5|Q9VJD4|Q8SX68|Q9VBV5|A8DYP0|P92177|P08985|Q0E8V7|Q9VD29|Q9VEC8|O02649|Q9VN88|Q9V3J4|Q9XTL2|Q03427|Q9VCE1|Q7K0X9|Q9W2D6|Q7K1C5|Q9VSY8|Q9VCH5|Q9V784|Q9W1E8|Q9VTC1|Q9VGV9|O18335|A1Z7S3|Q9VYT6|P05205|Q9W4A0 +GO:0070848,0.179816513761468,0.602446483180428,0.13880510939114,0.512861608731816,1.26968033989503,14,Q9VTZ4|O61443|Q9VF24|P35992|P08646|P20240 +GO:0070887,0.0829268292682927,0.448542805100182,0.245041785430996,-0.35079262731185,-1.27617971911036,58,Q8IN44|Q24276|P91927|Q9VA37|Q9VH98|P19334|Q960M4|Q9VG69|Q26377|Q9VQI7|P61851 +GO:0070925,0.373170731707317,0.775114199071053,0.107554375265169,-0.293871390469099,-1.0434832480216,52,Q9VFS4|Q7JXC4|P18432|Q7K3Z3|Q9VCC0|A1Z6P3|Q9VD64|Q9VU68|A8DYP0|Q9VVC8|A0A0B4KHJ9|Q9VRY5|Q9VCE1 +GO:0070972,0.428832116788321,0.810945777237912,0.0824344091527096,0.432747494098191,1.02396660001449,12,Q9V3D9|Q9VSS2 +GO:0071214,0.000818857213330757,0.028806226968957,0.477270815362862,-0.767352086312927,-1.89997142155972,12,Q8IN44|Q9W3E2|P10676|Q8IN43|P19334|P13677 +GO:0071363,0.179816513761468,0.602446483180428,0.13880510939114,0.512861608731816,1.26968033989503,14,Q9VTZ4|O61443|Q9VF24|P35992|P08646|P20240 +GO:0071375,0.192560175054705,0.628052226585709,0.147331213699377,-0.488520502642425,-1.23689459648148,13,Q24276 +GO:0071453,0.140127388535032,0.557939708141321,0.172324344900946,-0.565803051979026,-1.32457607061239,10,P91927|P19334|Q9VG69 +GO:0071478,0.000901219938131339,0.0295900546353123,0.477270815362862,-0.775177926141562,-1.8577068688615,11,Q8IN44|Q9W3E2|P10676|Q8IN43|P19334|P13677 +GO:0071482,0.000901219938131339,0.0295900546353123,0.477270815362862,-0.775177926141562,-1.8577068688615,11,Q8IN44|Q9W3E2|P10676|Q8IN43|P19334|P13677 +GO:0071495,0.847619047619048,1,0.0614364107201271,-0.244853178146797,-0.759275224426976,30,Q24276|Q9VH98 +GO:0071692,0.681528662420382,0.959368389984751,0.066436413766281,-0.356483129874029,-0.8345466178674,10,Q9VCE1|Q9VSY8|Q9VSU7|Q960X8|O15971|Q7JXF7 +GO:0071695,0.836405529953917,1,0.0605092988656667,-0.240808963894181,-0.779096128751503,34,Q9VQ91|Q7KM15|P08182|P17210|P92177|Q9Y162|Q9XTL2|Q9VCE1 +GO:0071705,0.692821368948247,0.962551829238123,0.0542315935495841,0.242144358345778,0.908205267841724,108,Q9VN13|Q9VLB7|P32392|P45437|Q24253|Q9V3D9|Q9W2E7 +GO:0071805,0.0268568334712293,0.275338781696848,0.352487857583619,-0.652723637537045,-1.61615023874602,12,P91927|Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:0071806,0.847682119205298,1,0.0578529757032509,-0.299854002592514,-0.718597397431568,11,Q9VAA6|P48604|Q9VBV5|O02649 +GO:0071824,0.467091295116773,0.821695726253576,0.0860347242455604,-0.422844263016412,-0.98990168120909,10,Q9I7K6|Q7JXC4 +GO:0071826,0.5625,0.881490927802761,0.0787113806986485,-0.311964463518875,-0.927874629435798,23,Q9VXK6|Q9VH95|P17210 +GO:0071840,0.375478927203065,0.775114199071053,0.13880510939114,-0.219717900739907,-1.02473149599311,465,X2JAU8|Q9VG42|P91927|Q9VQ91|Q9VTU2|Q9VH64|P10676|Q9VFS4|Q9W266|Q9I7K0|Q9VHT3|P14318|Q9I7K6|Q23983|Q9VXK6|Q9VB22|Q9VJZ4|Q9VQQ0|Q9VPC2|Q9VLP0|Q7JXC4|P18432|Q9W402|Q6IHY5|P19334|Q7K5M6|Q9VPN5|Q9VJZ5|Q9VQD7|Q9VI75|Q7K3Z3|Q9VN02|Q9W3X7|Q9VEN3|B7Z107|Q8T3X9|Q7KM15|Q6NLJ9|P09040|Q9VWI0|P13677|P08182|Q9VH95|Q7KMS3|Q7PL91|Q7JWD3|Q9VJI9|Q24478|Q9VSD6|Q9VXZ0|Q9VQR2|Q9VCC0|Q9VH76|Q86BS3|M9PDU4|P17210|Q9VE50|A1Z6P3|Q9VLP3|Q95NU8|Q8SX89|Q9VF27|P36975|Q7JYH3|Q9U6R9|Q0E8P5|P61851|Q9VWD0|Q9VVA6|M9PHA0|Q9W1I8|Q7KLE5|Q9VD64|Q9VHG6|P06002|Q24185|Q0KI81|P35220|Q9VQM2|Q8SX68|Q9VU68|A8DYP0|M9NEW0|Q9VPC1|Q9VSY4|Q9VVH3|P92177|Q4V5I9|Q9W236|O46098|Q9Y162|Q9VVC8|Q9W289|Q6IGM9|P08985|Q9VNI4|Q0E8V7|Q9VD29|Q9VEC8|Q9VMX4|O02649|Q6IDF5|Q9VEX6|Q9W2E8|Q7JZK1|Q9VWX8|Q9U6P7|Q9VRJ6|Q7JNE1|A0A0B4KHJ9|Q9V3J4|P14199|Q9VRY5|Q03427|Q24492|Q9VCE1|Q9VC53|Q7K0X9|Q9I7J0|Q9VFM9|Q9W445|Q9VFS8|B7YZT2|Q9W2D6|Q8SY69|Q9VCH5|Q9V784|Q868Z9|Q9W1E8|Q9W385 +GO:0071985,0.481400437636762,0.836295292896314,0.0860347242455604,-0.383310286118841,-0.970510795579025,13,Q9VN02|Q9W236|Q9W0B3|Q9XTL2|Q9VRJ5|Q8T0Q4|Q960X8 +GO:0072329,0.135231316725979,0.551995840872877,0.159646701919906,0.445710625896586,1.30133936825808,27,Q7JWF1|Q9W1H8|Q7K2E1|Q9VSA3|Q9VDT1|Q9VZI8|P20007|Q9W5W8 +GO:0072359,0.280858676207513,0.714847018254265,0.105920292736253,0.422231687622192,1.13540007497793,18,P17336|Q9VN14|Q00174|O61443 +GO:0072376,0.596715328467153,0.900402075139478,0.0655321029282414,0.38048617841739,0.900305937711932,12,Q9VFC2|Q7JWX3|Q9VCJ8|Q9V3U6 +GO:0072521,0.579931972789116,0.891159115752385,0.0635007968065945,0.273768060991846,0.932971934229249,59,Q9VC18|Q9VA09|Q7JYW9|P54385|Q9VAJ9|Q7K569|Q9VXZ8|Q9VUY9|P35381|Q8MLS2|Q9VGU6 +GO:0072522,0.409574468085106,0.802049405693499,0.0833634065110386,0.348680903536963,1.02783417650328,28,Q9VC18|Q9VA09|Q9VXZ8|P35381|Q9VGU6|Q9VRP4|O01666 +GO:0072523,0.264770240700219,0.689943616639459,0.123257226381337,-0.451956429629542,-1.14431730629538,13,P29613|Q9VAN7|P52029|Q9VZX9 +GO:0072524,0.43963963963964,0.810945777237912,0.080419996876154,0.359328622784397,1.00772700270088,22,Q7JYW9|P54385|Q9VAJ9|Q7K569|Q9VUY9 +GO:0072583,0.467991169977925,0.821695726253576,0.0880945010398517,-0.414415752467711,-0.993143591892066,11,Q9VI75|P13677 +GO:0072593,0.207505518763797,0.64276954579719,0.142056643575821,-0.519584312822508,-1.24517909286646,11,Q9VA37|Q960M4|Q9VZU4|Q9VEJ0|Q9VQI7|P61851 +GO:0072594,0.955094991364421,1,0.0410713282497468,0.205435896062125,0.677850020053009,48,Q9V3D9|Q9VSS2|Q9VL10|Q7K3W2|Q8IRD0|Q9W1X4|Q9VKC8|Q9VFF0|Q9Y171|Q9VSN9 +GO:0072599,0.38615664845173,0.782642589969042,0.0880945010398517,0.457740782005807,1.06376208208245,11,Q9V3D9|Q9VSS2 +GO:0072655,0.963570127504554,1,0.0431036828790402,0.23841506961774,0.623830684341818,17,Q9VL10|Q7K3W2|Q8IRD0|Q9VKC8|Q9VFF0|Q9Y171 +GO:0072657,0.997596153846154,1,0.0542315935495841,-0.169719469415267,-0.582871669519703,43,Q7K5M6|Q7JWD3|Q9VJD4|Q9VBV5|Q0E8V7|Q9VD29|Q9VEC8|Q9VN88|Q9W2D6|Q7K1C5|Q9V784|Q9VGV9|O18335|O97102 +GO:0072659,0.295805739514349,0.721862223250791,0.116234148779716,-0.476485646865228,-1.14189353081991,11,Q7K5M6|Q9VD29|Q7K1C5|Q9VGV9|O18335|O97102 +GO:0080090,0.0227663055756419,0.254827397636446,0.352487857583619,0.344727111269042,1.33384055428186,132,Q9VNE9|P21187|Q9VZU7|Q9VW54|P22979|Q94901|Q9VNH5|Q9W414|Q9VCK0|Q9VFC2|Q9U9Q4|Q9VW68|Q7KUT2|Q9V3V0|P48148|Q7JWX3|O77477|Q9VUN9|Q9VJ86|Q9GU68|P12370|Q7K012|Q9V3P3|P54622|A0A0B4KGY6|Q9W158|Q7KN75|Q9I7T7|Q7KLW9 +GO:0080134,0.0829103214890017,0.448542805100182,0.20207170902116,0.397872358257155,1.33764209915724,51,Q9VZU7|P45437|A1Z6L9|Q9VFC2|P48148|Q7JWX3|Q9VCJ8|O61443|Q9VSL5|Q9VN50|Q9V3Z2 +GO:0090066,0.938461538461539,1,0.0414044273760278,0.213509816086864,0.683080536727256,40,Q9VR79|Q9VW34|P48148|M9NDE3|O61443|Q9VAF5|Q9VW57|Q9VLT3|P08646|P09208|Q7KJ08|Q9W3N6 +GO:0090130,0.296762589928058,0.721862223250791,0.102821842840815,0.414998765552658,1.12811226210859,19,P48596|P12080|P48148|O76742|P08646|P09208 +GO:0090132,0.155635062611807,0.570306038047974,0.148261500475107,0.473988306402948,1.27457596008311,18,P48596|P12080|P48148|O76742|P08646|P09208 +GO:0090150,0.920552677029361,1,0.0427591434738678,0.232286959692711,0.699737003513058,31,Q9V3D9|Q9VSS2|Q9VL10|Q9VKC8|Q9Y171|Q9W552 +GO:0090174,0.21923937360179,0.650454165655912,0.13880510939114,-0.396530208416243,-1.16903776892399,22,Q23983|Q9VPN5|Q9VH76|Q9VE50|P36975|Q9W1I8 +GO:0090304,0.0674157303370787,0.448384728340676,0.219250346703755,0.309297510741588,1.23564426555237,177,P21187|Q9VZU7|Q9W3J5|Q9VKD3|Q94901|Q9VED8|Q9W0S7|Q7KVQ0|Q9VNH5|Q9W414|Q9VSC3|P28668|Q9VPL0|Q9W3M7|Q9VXN4|Q9V3V0|Q9VNZ3|Q9VNC1|Q8MZI3|Q4V5H1|Q7JVK6|Q9VJ86|Q7K0E6|P12370|Q7K012|Q9V3L6|Q9V3P3|P54622|A0A0B4KGY6|Q9W1V3|Q7KLW9|Q9VCA5|Q27268|Q9VHI1|Q9VXE0|P23128|Q9XYZ5|Q9VN21|Q9VVI2|Q9VIH1|Q9VI10|P20240|Q9VIS4|P43332|Q24297|Q05856|Q9W1H5|Q7JXB9|Q9VE08|Q9VLM8|Q9W0C3|Q9VGW7|Q8IPX7|Q95WY3|Q9VUH8|Q9V998|Q9W1M9|Q8SXG7|Q9W499|Q24090 +GO:0090407,0.433333333333333,0.810945777237912,0.0770736734944102,0.295608177543682,1.00787730838478,56,Q9VC18|Q9VA09|Q01637|Q9VXZ8|Q9VF23|Q9VTZ4|P32748|Q9VF86|P35381|O97477|Q9VGU6 +GO:0090596,0.682758620689655,0.959368389984751,0.0564118388217596,0.276154084580271,0.868365941659869,37,P21187|Q9VZU7|Q9VBC7|P48148|Q9VFT4 +GO:0097305,0.848754448398577,1,0.0478299633114229,0.255379876825314,0.727695133732136,24,Q9VLC5|Q9VSY6|P12370|Q9VCT4 +GO:0097435,0.347826086956522,0.767284085632826,0.11146266692298,-0.306160714004033,-1.06180371176513,46,X2JAU8|Q9I7K0|P14318|P18432|Q9VCC0|P17210|Q24185|Q8SX68|Q9VU68|A8DYP0|A0A0B4KHJ9|Q03427|Q9I7J0|Q9VFM9|Q9VCH5 +GO:0097485,0.330373001776199,0.748085992527715,0.0956031492204301,0.344495505068033,1.06396632982422,36,Q9VN14|P12080|P48148|Q00174|Q7K012|P48609|P35992|O44386|P09208|Q7KJ08|Q9VPX6|P16620 +GO:0098542,0.909090909090909,1,0.0596037042575973,-0.207682416989263,-0.818853177765834,95,Q9V521|Q8SXD5|Q9V8F5|A1ZAL1|Q9VAQ4|Q9VIX1|Q960M4|A0A126GUP6|Q9VL01|Q7K5M0|A1Z6P3|Q8IN51|A1ZBU5|Q95RA9 +GO:0098609,0.172905525846702,0.598612544432978,0.139599673451922,0.42582717014758,1.23531744669806,26,Q9VHC3|Q9VN14|P12080|Q9VAF5|Q9VVG0|Q9VCT4|Q7KY04|Q9W260|O44386 +GO:0098655,0.00465037808610413,0.0916124482962514,0.407017918923954,-0.534665200433859,-1.72313118626186,33,P91927|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|Q9VII1|Q9VLP2|Q7K188|Q9V7D2|Q24583|Q9W141 +GO:0098657,0.780193236714976,1,0.066132620475844,-0.240829471945998,-0.835226779655759,46,Q9VH64|Q9W266|Q9VI75|P13677|Q7KTA1|Q9W1I8|Q24185|Q9W2M0|Q7KUA4|P19107|Q9VCE1|Q7K0X9|Q9VFM9|Q8SXX1|Q9W3K6|O18335 +GO:0098660,0.00774059896395254,0.118054909314911,0.407017918923954,-0.520166695030462,-1.69734864432813,35,P91927|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|Q9VII1|Q9VLP2|Q7K188|Q9V7D2|Q24583|Q9W141 +GO:0098662,0.00465037808610413,0.0916124482962514,0.407017918923954,-0.534665200433859,-1.72313118626186,33,P91927|Q9VLP0|P19334|Q9VXN2|Q24439|Q9VE75|Q94516|Q9VIH9|O77134|Q9VII1|Q9VLP2|Q7K188|Q9V7D2|Q24583|Q9W141 +GO:0098727,0.949227373068433,1,0.0525898950623616,-0.233797698364628,-0.642180354197787,17,P08985|Q9VCH5|O18335|Q94533|P51140|Q9V4S8|Q9VVU5|Q24298|Q9NBD7|A1Z8D0|Q02748|Q9VPQ2|Q9VCY3|Q24090|P20240|Q9W3N6|P09208 +GO:0098742,0.143112701252236,0.56612855716246,0.155241966228839,0.485416903518359,1.30530797381426,18,Q9VN14|P12080|Q9VAF5|Q9VVG0|Q9VCT4|Q9W260|O44386 +GO:0098771,0.0196235068329008,0.238631533708731,0.352487857583619,-0.589883546926062,-1.67097978722976,19,Q9VAM6|P19334|A1Z992|Q9VJZ6|Q9VVT6|Q4V5I9|Q9V6U9|Q9VMX4|A1Z933|Q9W385 +GO:0098813,0.327433628318584,0.747253988878756,0.109684061970549,-0.410951463072292,-1.09044021738799,15,Q9VCC0|Q86BS3|A1Z6P3 +GO:0098876,0.922787193973635,1,0.0466015072985992,0.281134821006187,0.632887574085933,10,P48148|O76742|Q9W552 +GO:0098916,0.0566999328989727,0.419920555680362,0.321775918075361,-0.396709874880132,-1.39735475969195,51,X2JAU8|P91927|Q9VA37|Q23983|Q9VLP0|Q9VI75|Q9VH76|Q9VIH9|Q9VFP6|Q95NU8|P36975|Q9U6R9|P61851|Q9W1I8|Q9VII1|Q9VLP2|Q7K188|P07668 +GO:0098930,0.545253863134658,0.871875089590321,0.0797705918628453,-0.384932227149962,-0.922486590894037,11,Q94524|P17210 +GO:0099003,0.0414633791301727,0.355142856028001,0.321775918075361,-0.522359453367475,-1.49831456654513,20,Q23983|Q9VI75|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q9U6P7|Q9VFM9|O18335|Q9VV76|Q9W0C1|Q9VSJ8|Q9NHE5 +GO:0099111,0.919037199124726,1,0.0536769600638127,-0.263630211299084,-0.667490478007197,13,Q94524|P17210 +GO:0099177,0.149659863945578,0.570306038047974,0.172324344900946,-0.409682608536385,-1.24762961309421,26,Q9VA37|Q9VLP0|Q9VIH9|Q95NU8|P36975|P61851|Q9VII1|Q9VLP2|Q7K188|Q9VWX8|Q9U6P7 +GO:0099504,0.0414633791301727,0.355142856028001,0.321775918075361,-0.522359453367475,-1.49831456654513,20,Q23983|Q9VI75|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q9U6P7|Q9VFM9|O18335|Q9VV76|Q9W0C1|Q9VSJ8|Q9NHE5 +GO:0099536,0.0385036289199114,0.346951282762624,0.321775918075361,-0.40602753493845,-1.44172908518745,52,X2JAU8|P91927|Q9VA37|Q23983|Q9VLP0|Q9VI75|Q9VH76|Q9VIH9|Q9VFP6|Q95NU8|P36975|Q9U6R9|P61851|Q9W1I8|Q9VII1|Q9VLP2|Q7K2L7|Q7K188|P07668 +GO:0099537,0.0385036289199114,0.346951282762624,0.321775918075361,-0.40602753493845,-1.44172908518745,52,X2JAU8|P91927|Q9VA37|Q23983|Q9VLP0|Q9VI75|Q9VH76|Q9VIH9|Q9VFP6|Q95NU8|P36975|Q9U6R9|P61851|Q9W1I8|Q9VII1|Q9VLP2|Q7K2L7|Q7K188|P07668 +GO:0099643,0.239277652370203,0.667630507104437,0.132846300606183,-0.42239311236367,-1.16859889488235,18,P91927|Q23983|Q9VH76|P36975|Q9U6R9|Q9W1I8|Q9VWX8|Q9U6P7 +GO:0104004,0.000818857213330757,0.028806226968957,0.477270815362862,-0.767352086312927,-1.89997142155972,12,Q8IN44|Q9W3E2|P10676|Q8IN43|P19334|P13677 +GO:0110053,0.599118942731278,0.902342750138086,0.0747385227439092,-0.326597064783601,-0.880485224390359,16,X2JAU8|Q8SX68|Q9VU68|Q03427|Q9VFM9|Q9VCH5 +GO:0120031,0.561818181818182,0.881490927802761,0.0683110858318647,0.36275428644235,0.917685741232172,15,P32392|P48148|P45888|Q9VV72 +GO:0120032,0.027114580532583,0.275338781696848,0.352487857583619,0.663331897247752,1.54154348458081,11,P32392|P48148|P45888|Q9VV72 +GO:0120035,0.795373665480427,1,0.0508054139066364,0.266361879407245,0.777695616250092,27,P32392|P48148|P45888|Q9VAF5|Q9VV72 +GO:0120036,0.934891485809683,1,0.0404934829859503,0.212343655842148,0.76279917613727,78,P32392|Q9VN14|P12080|P48148|Q00174|P45888|P12370|Q7K012|P48609|Q9VAF5|Q9VV72|P35992|Q9W260|O44386|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0120039,0.974489795918367,1,0.0394366509525593,0.199788129476057,0.680856331151324,59,Q9VN14|P12080|P48148|Q00174|Q7K012|P48609|P35992|O44386|P09208|Q7KJ08|P23128|Q9VPX6|P16620 +GO:0120192,0.401129943502825,0.796256568106209,0.0878312634480124,0.469855621551384,1.0577337358283,10,Q9VN14|M9NDE3|Q9VLT3 +GO:0120193,0.401129943502825,0.796256568106209,0.0878312634480124,0.469855621551384,1.0577337358283,10,Q9VN14|M9NDE3|Q9VLT3 +GO:0140013,0.0746812386156649,0.448542805100182,0.222056046145248,0.628754635349275,1.461188004895,11,P21187|Q9W2E7|Q9VGP6 +GO:0140014,0.225663716814159,0.655431430509169,0.135740943810425,-0.458888457763879,-1.21763875933168,15,Q9VCC0|Q86BS3|A1Z6P3|P92177|Q7JNE1 +GO:0140029,0.0387458285318666,0.346951282762624,0.321775918075361,-0.637581677976984,-1.57865859580442,12,Q23983|Q9VPN5|Q9VH76|P36975|Q9U6R9|Q9W1I8 +GO:0140053,3.89921949233869e-12,6.40121866658936e-10,0.887074988399873,0.750188314332953,2.54505725067594,54,Q9VXP3|Q9VXQ0|Q9VKD3|Q9W253|Q9VAY9|Q8SXF0|Q9W1L1|A1Z9A8|Q9W4I3|Q9VSR5|Q9VV39|Q9VHT5|Q9VCX3|Q9VUX1|Q9VMY1|Q9VKU3|Q9W086|Q9VIN9|Q9W199|Q9VPL3|Q9VVN2|Q9V6Y3|Q9VPF6|Q9VY28|Q9VFB2|Q9VNC1|O77477|Q9VGP7|Q7K3V6|A1ZBA5|Q9VJ86|Q8IP62|Q8MSS7|Q9V3E3|Q9VHN6|Q9VFJ2|Q9W4Z2|Q9VKY3 +GO:0140352,0.197115384615385,0.634505404725993,0.153158808683073,-0.339583065308072,-1.16623831607931,43,P91927|Q23983|Q8MSI2|Q9VPN5|Q9VH76|Q9VLP3|P36975|Q9U6R9|Q9W1I8|Q7KLE5 +GO:0140546,0.735294117647059,0.984921468055703,0.0504983044100709,0.24107894630286,0.848829323871097,67,P45437|Q9VLY7|Q9VT23|Q9VFC2|P48148|Q7JWX3|Q00174|Q70PY2|Q9VCJ8|O61443|Q9VSL5|P48609|Q9VN50|Q9V3Z2 +GO:0140694,0.900237529691211,1,0.0584693210386381,-0.219322063229201,-0.733392006448577,38,Q7JXC4|P18432|Q9VCC0|A1Z6P3|Q9VU68|A8DYP0 +GO:0141124,0.723440134907251,0.974813314478307,0.0526973085708419,0.249866352792052,0.857312070162992,60,Q9VZU7|Q9VLB7|Q9V3N7|Q9VA09 +GO:0141187,0.624193548387097,0.926789718129404,0.0574877409561325,0.240411594526545,0.930374615507541,134,P21187|Q9VKD3|Q94901|Q7KVQ0|Q9W414|Q9VPL0|Q9W3M7|Q9V3V0|Q9VNZ3|Q9VNC1|Q8MZI3|Q4V5H1|Q9VJ86|Q7K012|Q9V3L6|Q9V3P3|P54622|A0A0B4KGY6|Q9W1V3|Q7KLW9|Q27268|Q9VHI1|Q9VXE0|Q9XYZ5|Q9VN21|Q9VI10|P20240|Q9VIS4|P43332|Q24297|Q05856|Q9VE08|Q9VGW7|Q8IPX7|Q95WY3|Q9VUH8|Q9V998|Q9W1M9|Q8SXG7|Q9W499|Q24090|Q9VJQ5 +GO:0141188,0.133451957295374,0.551995840872877,0.160801401070022,0.455074259794406,1.29671659512022,24,Q9VED8|Q9W0S7|Q9VNH5|Q9VSC3|Q9VJ86|P23128|Q9VVI2|Q9W1H5|Q7JXB9|Q9W0C3|Q8IPX7|Q9W1M9|Q9VEN9|Q9VD14 +GO:0150063,0.523156089193825,0.857621286231346,0.0689567351672811,0.297853001183359,0.957841150381063,41,P21187|Q9VZU7|Q24253|Q9VBC7|P48148|Q9VFT4 +GO:0160032,0.596715328467153,0.900402075139478,0.0655321029282414,0.38048617841739,0.900305937711932,12,Q9VFC2|Q7JWX3|Q9VCJ8|Q9V3U6 +GO:0170033,0.0543859649122807,0.408932636935851,0.257206466468838,0.473282698337515,1.43539480720066,32,Q9VNW6|P54385|Q9VXY3|Q9VCK6|Q9VW68|Q9VSY6|Q9VW26|Q9VZI8|Q9VM58|Q9W265|Q9VHD3|Q9VAN0|Q9VDC6|Q9V9A7|Q9VY42 +GO:0170035,0.0304535517226192,0.291230567444465,0.352487857583619,0.600654859710481,1.54522579575846,16,P54385|Q9VXY3|Q9VCK6|Q9VW26|Q9VZI8|Q9VM58|Q9W265|Q9VHD3|Q9V9A7|Q9VY42 +GO:0170038,0.16195856873823,0.582223321923928,0.149207542435322,0.574717680605722,1.29379803384386,10,Q9VNW6|Q9VCK6|Q9VSY6|Q9VAN0 +GO:0170039,0.00386597371111706,0.0810209384138362,0.431707695803346,0.56831187265807,1.72360391315664,32,Q9VNW6|P54385|Q9VXY3|Q9VCK6|Q9VW68|Q9VSY6|Q9VW26|Q9VZI8|Q9VM58|Q9VKR4|Q9W265|Q9VHD3|Q9VAN0|Q9VDC6|Q9V9A7|Q9VY42 +GO:0170040,0.00725385316275246,0.115242667182438,0.407017918923954,0.650981145082153,1.70334037140076,17,P54385|Q9VXY3|Q9VCK6|Q9VW26|Q9VZI8|Q9VM58|Q9VKR4|Q9W265|Q9VHD3|Q9V9A7|Q9VY42 +GO:0170041,0.70985401459854,0.962551829238123,0.0572461135202885,0.345831127402727,0.81830519768509,12,Q7JXZ2|Q9VW68|Q9VW26|Q9VCW2|Q9VYF0|Q9VI04|Q9VRD9 +GO:0170062,0.156308851224105,0.570306038047974,0.152144922367565,0.57780869509058,1.30075649118395,10,P45437|P35381|Q9VW57|P09208 +GO:1900424,0.982378854625551,1,0.0509082865515105,-0.213988105193579,-0.576898524618021,16,Q95RA9|P08985|Q9VQ62|Q9W5R5|Q7KNM2 +GO:1900426,0.76271186440678,1,0.0553642837725362,0.342305734326939,0.770594852030489,10,Q9VCJ8|Q9VN50 +GO:1901016,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1901018,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1901135,0.225375626043406,0.655431430509169,0.115734447701689,0.318405642559499,1.13490961198253,73,Q9VC18|Q9VA09|Q7JYW9|Q01637|Q7K569|Q9VTZ4|Q9VE24|Q9VUY9|Q9VW34|P32748|Q9VF86|Q9VG81|Q70PY2|P35381|Q8MLS2|Q9VGU6 +GO:1901136,0.554954954954955,0.881490927802761,0.0684714904492088,0.332700474444251,0.933049110618816,22,Q7JYW9|Q9VE24|Q9VUY9|Q9VF86|Q70PY2 +GO:1901137,0.34819897084048,0.767284085632826,0.0905428948469474,0.32638723478949,1.05522731243769,42,Q9VC18|Q9VA09|Q01637|Q9VTZ4|P32748|Q9VF86|Q9VG81|P35381|Q9VGU6 +GO:1901292,0.194748358862144,0.631010307497409,0.14641623786055,-0.485790714534893,-1.229982992687,13,P29613|Q9VAN7|P52029|Q9VMW7 +GO:1901293,0.133567662565905,0.551995840872877,0.159646701919906,0.413635910347136,1.27062433720325,35,Q9VC18|Q9VA09|Q01637|Q9VXZ8|Q9VTZ4|P32748|Q9VF86|P35381|Q9VGU6 +GO:1901379,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1901381,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1901605,0.0101503831880184,0.142830392002831,0.380730400722792,0.490372427447765,1.57694865640308,41,Q9VNW6|P54385|Q7JXZ2|Q9VXY3|Q9VCK6|Q9VW68|Q9VSY6|Q9VW26|Q9VZI8|Q9VM58|Q9VKR4|Q9W265|Q9VCW2|Q9VHD3|Q9VAN0|Q9VYF0|Q9VDC6|Q9V9A7|Q9VY42|Q9VRD9|Q7KW39|Q9VHD2 +GO:1901606,0.028933765933002,0.284416009366166,0.352487857583619,0.580069662263197,1.5952314359593,20,P54385|Q9VXY3|Q9VCK6|Q9VW26|Q9VZI8|Q9VM58|Q9VKR4|Q9W265|Q9VHD3|Q9V9A7|Q9VY42|Q7KW39|Q9VHD2 +GO:1901607,0.303636363636364,0.723008705207672,0.102080107662747,0.450821601081332,1.14047599329345,15,Q9VNW6|Q7JXZ2|Q9VCK6|Q9VSY6 +GO:1901698,0.75085910652921,0.999118291401008,0.0518457624865066,0.27121864684407,0.814359068565226,30,A1Z803|Q9W414|Q9VJ58|Q9VBT2|Q9VKC7|P09208|Q9VTF9 +GO:1901699,0.342163355408389,0.764242415141185,0.106729884364606,-0.39416532554351,-1.08266775139611,17,Q24276 +GO:1901700,0.611940298507463,0.91466038547777,0.0799858801499946,-0.257275663384071,-0.927932132437087,56,Q8IN44|Q24276|Q9VA37|Q9VTU2 +GO:1901701,0.650118203309693,0.940332496710789,0.0741758965588009,-0.28361736152799,-0.892309681076543,31,Q24276|Q9VA37 +GO:1901888,0.233576642335766,0.661129289369914,0.119348440591015,0.464622112970123,1.19527223102347,16,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:1901987,0.708097928436911,0.962551829238123,0.0588438169595807,0.361053966705491,0.812800663697625,10,Q9W2E7|P48609|Q9V3P3 +GO:1902531,0.906474820143885,1,0.0585937568945671,-0.218749584634402,-0.739724995079964,40,Q24276|Q9VA37|Q9VD02|Q9VK60 +GO:1902532,0.368653421633554,0.775114199071053,0.102080107662747,-0.380356074339635,-1.04473739583085,17,Q9VA37|Q9VD02|Q9VK60 +GO:1902533,0.988636363636364,1,0.0520570030732099,-0.193165376815109,-0.575649046279913,24,Q24276|Q95NU8|P92177|Q9VRJ6|Q9V3J4|O96824|Q9W5R5|Q9VX98|O97102|Q9VHM3 +GO:1902600,0.038252034106475,0.346951282762624,0.321775918075361,-0.575311497946066,-1.52656177495045,15,P91927|Q9VXN2|Q24439|Q9VE75|Q94516|O77134|Q9V7D2|Q24583|Q9W141 +GO:1902679,0.319383259911894,0.738480072800976,0.11101149245045,-0.44008831632964,-1.08966306198021,12,Q9VLR5|Q9W403|Q9VY91|P05205|Q8IRH5|Q7K159|P92204 +GO:1902680,0.997742663656885,1,0.0513223330421143,-0.181452016661934,-0.528585686480403,21,Q9VLR5|Q9V3J4|Q9VCH5|Q9W0H8|P05205|Q8IRH5|Q9VHM3|Q961D9|Q9VTT2|P92204 +GO:1902850,0.0104311163982294,0.144713375383887,0.380730400722792,-0.614836650449432,-1.74166514849045,19,Q9VB22|Q9VQQ0|Q9VJZ5|Q9VCC0|Q86BS3|A1Z6P3 +GO:1902903,0.177272727272727,0.602446483180428,0.157402899305283,-0.405509675287483,-1.20845288987762,24,X2JAU8|Q9I7K0|Q9VCC0|Q8SX68|Q9VU68|A0A0B4KHJ9|Q03427|Q9VFM9|Q9VCH5 +GO:1902905,0.103752759381898,0.481006476817107,0.206587922696891,-0.583447411361463,-1.39822642925427,11,X2JAU8|Q9I7K0|Q9VCC0|Q8SX68|A0A0B4KHJ9|Q9VCH5 +GO:1903046,0.115596330275229,0.512893627572527,0.176694268938498,0.547948186012421,1.3565434168127,14,P21187|Q9W2E7|Q9VGP6 +GO:1903047,0.258907363420428,0.684146553221045,0.130777137971974,-0.33766272394266,-1.13796133261292,39,Q23983|Q9VB22|Q9VQQ0|Q9VJZ5|Q9VCC0|Q86BS3|A1Z6P3 +GO:1903050,0.18978102189781,0.628052226585709,0.134273452883202,0.481213390327478,1.23795442919885,16,Q9VZU7|Q9U9Q4|P12370|Q9V3P3 +GO:1903052,0.435336976320583,0.810945777237912,0.0815265143256594,0.433717104333793,1.00793249821257,11,Q9VZU7|P12370|Q9VTF9|Q9W2N5 +GO:1903311,0.0889679715302491,0.448542805100182,0.199915231309662,0.49287449972624,1.40442692450972,24,Q9VNH5|Q9V3V0|Q9VJ86|A0A0B4KGY6|Q7KLW9|Q27268|P23128|P43332|Q9W1H5|Q9W0C3|Q9VEN9|Q9VD14 +GO:1903530,0.87746170678337,1,0.055826471778749,-0.283237289768206,-0.717134022710165,13,Q9W1I8|Q9VWX8|Q9U6P7 +GO:1903818,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1904062,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1904064,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:1904396,0.227272727272727,0.655431430509169,0.120985142145252,0.472123729377324,1.19436552713425,15,P32392|Q9W2E7|Q00174|P45888|P48609 +GO:1990542,0.65929203539823,0.946651100389587,0.070113215764256,-0.321221232406328,-0.852345305881484,15,P91927|Q9VAA6 +GO:1990778,0.270925110132159,0.701657511390311,0.122107920287081,-0.463999308076955,-1.14886691610582,12,Q7K5M6|Q9VD29|Q7K1C5|Q9VGV9|O18335|O97102 +GO:2000026,0.86551724137931,1,0.0454967810085007,0.240034318038472,0.754787411277905,37,P32392|Q94901|Q9W2E7|P48148|Q00174|P45888 +GO:2000058,0.245871559633028,0.676543885241916,0.116234148779716,0.491420269038093,1.1913404127372,13,Q9VZU7|Q9U9Q4|P12370 +GO:2000060,0.435336976320583,0.810945777237912,0.0815265143256594,0.433717104333793,1.00793249821257,11,Q9VZU7|P12370|Q9VTF9|Q9W2N5 +GO:2000145,0.0809792843691149,0.448542805100182,0.216542836735348,0.628549885410616,1.4149844930122,10,P48596|P48148|Q00174|O44386|P09208 +GO:2001141,0.963414634146341,1,0.0565299525056311,-0.195472899008538,-0.673840219843774,45,Q9VLR5|Q9V406|Q24478|Q9W403|Q9VHG6|Q9V3J4|Q9VCH5|Q9W0H8|Q9VY91|P05205|Q8IRH5|Q7K159|Q9VHM3|Q9VXN3|Q9V3T8|Q961D9|Q9VTT2|P92204 +GO:2001257,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 +GO:2001259,0.0927152317880795,0.448542805100182,0.219250346703755,-0.592820181467193,-1.42068818779833,11,Q9VLP0|Q9VIH9|Q9VII1|Q9VLP2|Q7K188 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_SFug.csv new file mode 100644 index 0000000..c63075f --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_SFug.csv @@ -0,0 +1,986 @@ +pathway,pval,padj,log2err,ES,NES,size,leadingEdge +GO:0000070,0.671201814058957,0.919630799332206,0.0704500850658419,0.347057523372505,0.841285382054376,13,Q7KND8|P25171|Q9VQ93|Q86BS3|A1Z6P3|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0000165,0.256055363321799,0.593410795859352,0.109684061970549,-0.446293392998995,-1.15444630957862,22,Q9V393|O62602|Q9VW73|Q9VHM3|Q08012|P40417|Q9VB05|Q9VZU7|Q7KJ08 +GO:0000226,0.750405186385737,0.948192876520521,0.0491927521045191,-0.279301441823637,-0.846028711276925,48,M9PF16|Q7K148|O97102|Q9NBD7 +GO:0000278,0.929577464788732,0.989105910682126,0.037770500132479,-0.228837825111265,-0.730887630359964,65,Q9VH81|O18332|O97102|Q9NBD7|Q9VP57|Q9VND8|P40797|Q02748|Q9VPL0|P40417|P91926|Q94524|Q9VB05|Q7K012 +GO:0000280,0.66824644549763,0.919630799332206,0.0728938564822936,0.307990995395193,0.866084709743458,24,M9NFC0|Q7KND8|P25171|Q9VQ93|Q86BS3|P92177|Q03427|Q9VU45|A1Z6P3|P08928|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0000281,0.661870503597122,0.916937336206984,0.0598603117764473,-0.382724117769996,-0.853065984823886,12,O18332|P40797|P91926|Q9VB05 +GO:0000302,0.442028985507246,0.77668444042419,0.080419996876154,-0.477501083726315,-1.02995398518442,10,Q9VXK7|P05031 +GO:0000375,0.0989583333333333,0.388634073823565,0.231126709673834,0.386163638003517,1.30929993124758,52,Q9V3B6|Q9V3V0|Q9W0R0|O97454|Q94901|Q9VND7|Q9V3P3|Q9U9Q2|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|Q9VLV5|Q9V3E7|Q9VG73|Q7K204|Q9W254|Q9VPU4 +GO:0000377,0.0989583333333333,0.388634073823565,0.231126709673834,0.386163638003517,1.30929993124758,52,Q9V3B6|Q9V3V0|Q9W0R0|O97454|Q94901|Q9VND7|Q9V3P3|Q9U9Q2|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|Q9VLV5|Q9V3E7|Q9VG73|Q7K204|Q9W254|Q9VPU4 +GO:0000380,0.896162528216704,0.987262699375867,0.0562940749700968,0.260179779358374,0.666370957706118,16,Q9V3V0 +GO:0000381,0.859410430839002,0.979893913968133,0.0584693210386381,0.296242278653642,0.718106601337929,13,Q9V3V0 +GO:0000398,0.0989583333333333,0.388634073823565,0.231126709673834,0.386163638003517,1.30929993124758,52,Q9V3B6|Q9V3V0|Q9W0R0|O97454|Q94901|Q9VND7|Q9V3P3|Q9U9Q2|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|Q9VLV5|Q9V3E7|Q9VG73|Q7K204|Q9W254|Q9VPU4 +GO:0000578,0.82129963898917,0.967491793250218,0.0499913914024592,-0.301703499625627,-0.737955414651302,18,Q7KM15|O62602|P40417 +GO:0000819,0.671201814058957,0.919630799332206,0.0704500850658419,0.347057523372505,0.841285382054376,13,Q7KND8|P25171|Q9VQ93|Q86BS3|A1Z6P3|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0000902,0.161144578313253,0.486502747943533,0.132147260608774,-0.374935361021628,-1.22240255993946,72,P06002|Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q0KI98|Q9Y105|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0000910,0.823104693140794,0.967491793250218,0.0498907356726307,-0.303628184270433,-0.734541466023333,17,O18332|P40797|P91926|Q9VB05|P42207|P21187|Q23983 +GO:0000956,0.090702947845805,0.388634073823565,0.224966093540314,0.58098150158524,1.40832920081394,13,Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9 +GO:0001558,0.860986547085202,0.979893913968133,0.0578529757032509,0.294101941436594,0.7091108903738,12,A1Z9J3|P09208 +GO:0001654,0.0306778752064693,0.234245791305211,0.352487857583619,-0.503880376706801,-1.48286726244066,41,P06002|Q9U4G1|Q5U117|Q24253|Q9VBC7 +GO:0001666,0.308888888888889,0.65029651735218,0.11378726182188,0.495324684819037,1.12681387712608,10,Q9Y0V3|Q9VF15|O46067|Q9NCC3|P91927 +GO:0001667,0.134275618374558,0.448344013894712,0.159646701919906,-0.518222906971151,-1.30905563524736,20,Q9VU68|Q9V3I2|O76742 +GO:0001700,0.848958333333333,0.979893913968133,0.0466948041282054,-0.279743448596815,-0.732880917953375,23,Q9V3I2|Q7KM15 +GO:0001709,0.224444444444444,0.566866096866097,0.136490437780413,0.540122924483037,1.22872537007471,10,A1Z9J3|Q7K9H6|P92177 +GO:0001736,0.308377896613191,0.65029651735218,0.0999276973731092,-0.490299460987804,-1.12115805767671,13,Q9VU68|P16378 +GO:0001738,0.309481216457961,0.65029651735218,0.0999276973731092,-0.467906797381064,-1.1218172048002,16,Q9VU68|P16378 +GO:0001745,0.00728183728358455,0.108686291344174,0.407017918923954,-0.553778412112792,-1.60133411013527,36,P06002|Q9U4G1|Q5U117|Q9VBC7|Q08012|P40417|P23625|Q9VZU7|Q9VSD6|Q7KJ08 +GO:0001751,0.0265765788841139,0.212828700819937,0.352487857583619,-0.552999542297899,-1.50675931551773,27,P06002|Q9U4G1|Q9VBC7|Q08012|P40417|Q9VZU7|Q9VSD6|Q7KJ08|P51140|O15943|P21187 +GO:0001754,0.0438448566610455,0.315234918329415,0.282013350011725,-0.542742702778496,-1.48599522243601,28,P06002|Q9U4G1|Q9VBC7|Q08012|P40417|Q9VZU7|Q9VSD6|Q7KJ08|P51140|O15943|P21187 +GO:0001763,0.712230215827338,0.929287737573099,0.0564118388217596,-0.371472608232188,-0.827987136590982,12,Q9W4P5|Q9VND8|P40417 +GO:0001894,0.596412556053812,0.887109920975341,0.0758886900606117,0.368181178030259,0.887723765768472,12,P10676|Q7K5M6|P45594|P19334 +GO:0002009,0.16260162601626,0.486816418316159,0.137250779610133,-0.404402877448407,-1.22163933742039,47,Q9VU68|Q9V3I2|Q9W4P5|P16378|Q24372|Q9VND8|O62602|Q9VVU5 +GO:0002064,0.340640809443508,0.680590663898286,0.0908241419007155,-0.385317588915748,-1.08629566890464,32,Q9VU68|Q9V3I2|O76742 +GO:0002164,0.199530516431925,0.525501493811353,0.150169802128406,0.439169482437212,1.22764858540852,23,P48596|O97365|Q9VCH5|Q9VR79|Q8IPX7 +GO:0002165,0.693270735524257,0.929213406058111,0.0512184348540341,-0.276678947895658,-0.883687915228269,65,Q9VU68|Q9V3I2|P16378|Q9VBC7|O97102|Q9V3J4|P40797|Q9VEB1|Q9VF24|Q08012|P40417 +GO:0002168,0.32244008714597,0.661673928830792,0.109684061970549,0.46836347734305,1.09818302676765,11,P48596|O97365|Q9VR79 +GO:0002181,0.00937902006523329,0.108686291344174,0.380730400722792,0.463541930930695,1.5534531993148,48,P36241|O16797|P55830|P09180|Q9V597|P32234|Q9VNE9|P41375|Q94901|P48159|P41094|Q9W0A8|Q9W445|Q9VVU2|Q9VN25 +GO:0002218,0.92152466367713,0.989105910682126,0.0546808488785442,0.273942892366628,0.66050529067845,12,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0002221,0.92152466367713,0.989105910682126,0.0546808488785442,0.273942892366628,0.66050529067845,12,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0002252,0.716517857142857,0.929287737573099,0.066436413766281,0.312312049949352,0.812702646344473,17,Q9V521|Q7KUA4|Q9VCJ8|P22812|Q9VB68|A1Z6P3|Q7K4Z4|P48609 +GO:0002253,0.92152466367713,0.989105910682126,0.0546808488785442,0.273942892366628,0.66050529067845,12,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0002376,0.301492537313433,0.645587280986373,0.136490437780413,0.287531809334572,1.06423532200166,89,P17336|Q70PY2|Q9V3U6|Q9V521|Q9VP13|Q9VAF5|Q9VCH5|Q7KUA4|Q9VCE1|Q7KSE4|Q8IPX7|P09208|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6 +GO:0002440,0.957399103139013,0.989105910682126,0.0529129848430584,0.23933464669803,0.577061149573976,12,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0002520,0.157777777777778,0.486502747943533,0.165656695205483,0.582430299278867,1.32497039578372,10,Q9VCH5|Q8IPX7|P09208 +GO:0002682,0.673267326732673,0.919630799332206,0.0747385227439092,0.279291248312538,0.889183189732494,40,P17336|Q7KUA4|Q9VCE1|Q7KSE4|Q9VLU4|Q9VER6 +GO:0002683,0.371559633027523,0.71064360927548,0.103958471559957,0.389793960141714,1.05678589409016,20,Q7KUA4|Q9VCE1|Q7KSE4|Q9VLU4 +GO:0002684,0.975961538461539,0.990619459939416,0.0552495663125249,0.194905075089768,0.55141208413409,25,Q7KUA4|Q9VER6|Q9VCJ8|Q9VN50|Q9NCC3|P22812|Q9VB68 +GO:0002697,0.955156950672646,0.989105910682126,0.0530212512043078,0.244284276220446,0.588995229915357,12,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0002700,0.958605664488017,0.989105910682126,0.051530912208539,0.244813647697318,0.574020404296706,11,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0002757,0.92152466367713,0.989105910682126,0.0546808488785442,0.273942892366628,0.66050529067845,12,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0002758,0.92152466367713,0.989105910682126,0.0546808488785442,0.273942892366628,0.66050529067845,12,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0002759,0.958605664488017,0.989105910682126,0.051530912208539,0.244813647697318,0.574020404296706,11,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0002764,0.92152466367713,0.989105910682126,0.0546808488785442,0.273942892366628,0.66050529067845,12,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0002775,0.957399103139013,0.989105910682126,0.0529129848430584,0.23933464669803,0.577061149573976,12,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0002784,0.958605664488017,0.989105910682126,0.051530912208539,0.244813647697318,0.574020404296706,11,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0002831,0.968215158924205,0.989105910682126,0.0564118388217596,0.199281023562151,0.640048904441508,41,Q9VCH5|Q7KUA4|Q9VCE1|Q9VLU4|Q9VER6 +GO:0002832,0.600446428571429,0.887109920975341,0.0753093764172773,0.339451242065353,0.894847728717748,18,Q7KUA4|Q9VCE1|Q9VLU4 +GO:0002833,0.992647058823529,0.997711584633853,0.0553642837725362,0.172770795103955,0.499776226561887,27,Q7KUA4|Q9VER6|Q9VCJ8|Q9VN50|Q9NCC3|P22812|Q9VB68 +GO:0002920,0.958605664488017,0.989105910682126,0.051530912208539,0.244813647697318,0.574020404296706,11,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0003002,0.288961038961039,0.631028363150188,0.0982123351217438,-0.366577189241138,-1.10714376306195,46,Q0E8E8|O76742|Q7KM15|Q9V3J4|O62602|Q8SXY6|Q9VF24|P40417 +GO:0003006,0.0538922155688623,0.349235739048219,0.237793834423688,-0.386741484878703,-1.33585633222412,102,Q9VU68|Q9V3I2|A0A0B4K7J2|O76742|O15971|Q9XYZ5|Q7KM15|O97102|Q9VAY3|Q9NBD7|Q9VJQ6|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|P13677|Q02748|Q9VHM3|Q08012|P40417|P91926|Q7K485|Q9W1F8|Q94524|Q9VB05|Q7KY04 +GO:0003008,0.269968051118211,0.607119932309219,0.101350743797099,-0.360350722975525,-1.12980305475939,57,P06002|A0A0B7P9G0|P46415|P19107|P05031|Q8IQ70|Q9V3N7|P16378 +GO:0005975,0.223300970873786,0.565427908253675,0.114266502484433,-0.373511949814578,-1.15154664175487,52,O62619|P07486|Q9VUY9|Q9VF86|Q7JYW9|Q9VVL5|Q9VH77|Q9VTZ4|O97479|Q9VEB1|Q9VZJ8|Q9VW68|O96299|Q8MLS2|Q9W330|Q9VG42|P52029|Q9NHA8|Q9VZV2 +GO:0005996,0.0301200219124115,0.234245791305211,0.352487857583619,-0.548148842249425,-1.49354260026613,27,O62619|P07486|Q9VUY9|Q7JYW9|Q9VH77|O97479|Q9VEB1|Q9VZJ8|O96299|Q8MLS2|Q9W330|Q9VG42|P52029 +GO:0006006,0.17825311942959,0.505804182746172,0.137250779610133,-0.552358273393041,-1.26306671374131,13,O62619|P07486|Q7JYW9|Q9VEB1|Q9W330|Q9VG42|P52029 +GO:0006066,0.455631399317406,0.79158738846752,0.0756946307932749,-0.371778676401743,-0.995249817684809,25,P46415|Q9VVL5|Q9VV47|O76752|O97479|Q7KTW5|O96299 +GO:0006081,0.0858676207513417,0.388634073823565,0.204294756516886,-0.580250080913451,-1.39116278604796,16,P46415|P07486|Q9VLC5 +GO:0006082,0.00224548567224457,0.0553643944700655,0.431707695803346,-0.452469631880719,-1.57928295403275,111,Q9VZX9|O62619|P07486|Q9VUY9|Q7K5K3|A1ZBJ2|Q94523|Q9VXZ8|Q9W1H8|P05031|Q5U117|Q9VNX4|Q7JYW9|Q9VJ31|Q9VZI8|Q9VSL9|Q9VDT1|Q9VNW6|Q9I7X6|O97479|Q7K511|P54385|Q9VEB1|Q9VW68|Q9VY42|Q9VHD3 +GO:0006090,0.0205262696347093,0.17735417184376,0.352487857583619,-0.726810979105902,-1.58125178093944,11,O62619|P07486|Q9VUY9|Q7K5K3|Q7JYW9 +GO:0006091,0.000633346740437772,0.0258097400910923,0.477270815362862,-0.49636426609986,-1.68787526607057,93,Q7JYH3|O62619|P07486|P00408|Q9VUY9|Q9VGS3|Q94523|Q9VXK7|P35381|Q7JYW9|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35 +GO:0006099,0.408849557522124,0.744393371828636,0.0833634065110386,-0.451916843102715,-1.04841104383763,14,Q9VGS3|Q94523|Q4V5I9|Q9VEB1 +GO:0006119,0.000295326026925863,0.0171115374424691,0.49849310876659,-0.576409565254855,-1.82130232161568,59,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0006120,0.00542809900891186,0.0938013600662839,0.407017918923954,-0.58990457945245,-1.65231600714539,31,Q7JYH3|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q9W125|Q9VPE2|Q9W3X7|Q9VQM2|Q9VTU2|Q9V3W2|Q9W402 +GO:0006139,0.178571428571429,0.505804182746172,0.115734447701689,-0.298112725354037,-1.13540287190176,253,Q9VZX9|Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q9VGW7|Q95TK5|Q9VXZ8|Q95RQ8|Q9VF86|P35381|Q9V3N7|Q7JYW9|Q9VA09|Q24492|Q9XYZ5|Q9W403|Q9V3J4|P54622|Q7K569|P56538|Q9VH77|Q9VP57|Q24297|Q9VC18|Q9W1G7|Q7KLW9|Q8MZI3|Q9VNZ3|Q9VTZ4|Q0KI98|P32748|Q9VKD3|P54385|Q9VEB1|Q27268|Q9VHG6|Q9Y105|Q02748|Q9VHM3|Q9VGF7 +GO:0006163,0.0152635639649066,0.140510378555448,0.380730400722792,-0.534853720271373,-1.57401857394918,41,Q9VAJ9|O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9|Q9VA09|Q7K569|Q9VC18|P54385|Q9VEB1|Q9VGF7 +GO:0006164,0.333922261484099,0.671251892983342,0.0946646223153342,-0.434203958970342,-1.09681978872555,20,O01666|P35381|Q9VA09|Q9VC18 +GO:0006259,0.198961937716263,0.525408870376727,0.126875729929857,-0.470115530372191,-1.21606805663599,22,Q95RQ8|Q24492|Q9XYZ5|P54622|Q9W1G7|Q7KLW9 +GO:0006325,0.735785953177258,0.941796934284413,0.051530912208539,-0.289812594086893,-0.838036987912788,36,Q9VGW7|Q9VP57|Q9W1G7|Q7KLW9|Q27268|Q9VHG6|Q7KN75|Q95RN0|Q7K012 +GO:0006338,0.904522613065327,0.988193754211198,0.0421619430092452,-0.239344911527212,-0.670402370688984,31,Q9VGW7|Q9W1G7|Q27268|Q9VHG6|Q7KN75|Q95RN0|Q7K012 +GO:0006351,0.344736842105263,0.681915387180491,0.11776578836269,0.310962028261871,1.05800714316792,54,Q9V3V0|Q9W0R0|Q27272|Q8IRH5|Q9VCH5|Q9VE08|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4 +GO:0006352,0.105381165919283,0.393183516782171,0.206587922696891,0.576709310747752,1.39050715147817,12,Q9V3V0|Q27272|Q9VCH5|Q9VJQ5 +GO:0006355,0.567774936061381,0.875127485306333,0.0855356947987884,0.283801487411135,0.936315156796778,45,Q9V3V0|Q9W0R0|Q8IRH5|Q9VCH5|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4 +GO:0006357,0.491442542787286,0.82010582010582,0.0911073131586733,0.319592234250303,0.965110526803521,32,Q9V3V0|Q9W0R0|Q8IRH5|Q9VCH5|Q9VJQ5|Q9VDQ3|Q7KSE4 +GO:0006364,0.165532879818594,0.492597844777387,0.163180127180689,0.532653921150053,1.29118064695146,13,Q9VM69|Q9VW14|Q9VEB3|Q8IPX7|Q9W1M9 +GO:0006366,0.265508684863524,0.602594595830808,0.132147260608774,0.35291616606053,1.12540152564256,39,Q9V3V0|Q9W0R0|Q27272|Q8IRH5|Q9VCH5|Q9VE08|Q9VJQ5|Q9VDQ3|Q7KSE4 +GO:0006367,0.150326797385621,0.482318877605331,0.16823816568964,0.582755566764981,1.36640088976647,11,Q9V3V0|Q27272|Q9VCH5|Q9VJQ5 +GO:0006396,0.00703558844457428,0.108686291344174,0.407017918923954,0.402396098403305,1.47337199669768,85,Q9V3B6|Q9V3V0|Q9W0R0|Q9VM69|Q9VP13|Q9VE52|Q9VW14|Q9VEB3|Q9VIS4|Q8IPX7|O97454|Q94901|Q9VND7|Q9VSK9|Q9W1M9|Q9V3P3|Q9U9Q2|Q9VLW8|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|O77263|P40796|Q9VLV5|Q9V3E7|Q9VG73|Q7K204|Q9W254|Q9VPU4|Q9VUH8|Q9W499 +GO:0006397,0.0506473251973178,0.339371532784748,0.321775918075361,0.402168471592024,1.38337833509206,56,Q9V3B6|Q9V3V0|Q9W0R0|Q9VE52|O97454|Q94901|Q9VND7|Q9V3P3|Q9U9Q2|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|Q9VLV5|Q9V3E7|Q9VG73|Q7K204|Q9W254|Q9VPU4|Q9VUH8 +GO:0006399,0.682151589242054,0.920437418360853,0.0734381410838857,0.285894903287006,0.863350704903753,32,P28668|Q9VIS4|Q8IPX7|Q9VSK9|Q7KN90|Q9W1M9|Q9VVL8|Q9VLM8|Q9VRJ6|O77263|P40796 +GO:0006401,0.10958904109589,0.398321791437092,0.204294756516886,0.498750066627901,1.37566238428424,21,Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9|Q9V3W0 +GO:0006402,0.107142857142857,0.396750805585392,0.204294756516886,0.522143026882834,1.37645247320073,18,Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9|Q9V3W0 +GO:0006403,0.802345058626466,0.956791625601778,0.0476387259290825,-0.280893815488928,-0.782584312005647,30,A0A0B4K7J2|Q7KM15|Q9GYU8|Q27268 +GO:0006405,0.609712230215827,0.887294031008771,0.0637845390312975,-0.397906146373011,-0.886905692280311,12,A0A0B4K7J2|Q9GYU8|Q27268 +GO:0006412,0.316455696202532,0.654103493674014,0.137250779610133,0.263313286144105,1.04548048760684,138,P36241|O16797|P55830|A1Z968|P09180|Q9W4X7|Q9V597|Q9VMY1|P32234|Q9VNE9|P41375|P28668|Q9W0C3|Q9VUX1|Q94901|Q9VHT5|P48159|Q7KN90|Q8IP62|P41094|Q9V3W0|Q9W086|Q9VPL3|Q9W0A8|Q9W4I3|Q9VCX3|Q9VVL8|Q9W158|Q9W445|Q9VLM8|Q9VN50|Q9W4Z2|Q9VVU2|Q9VNE2|Q9VXQ0 +GO:0006413,0.809688581314879,0.963216488641492,0.048701086452153,-0.293873271153573,-0.760174626577551,22,Q9U9Q4|P56538|O77410|Q02748|Q9VX98 +GO:0006414,0.0210773022654124,0.180531675925489,0.352487857583619,-0.72562765521514,-1.57867733852802,11,Q7K3V6|Q9VM33|A1Z9E3|P13060|Q9NJH0 +GO:0006417,0.599526066350711,0.887109920975341,0.0785029047348687,0.321360240059747,0.903679634783172,24,Q9VNE9|Q9W0C3|Q94901|Q9V3W0|Q9W158|Q9VNE2|Q9VN25|P40796 +GO:0006418,0.906178489702517,0.988193754211198,0.0564118388217596,0.271565925024678,0.669274020970323,14,P28668|Q7KN90|Q9VVL8|Q9VLM8 +GO:0006457,0.631578947368421,0.893829401088929,0.0813027345384498,0.268857204802009,0.914751054212768,54,Q9VH95|O02649|Q9VSA9|Q9W227|Q9VVW7|Q9V3W0|Q9VAY2|Q9VK69|Q3YMU0|Q8T9B6|Q24276|Q9VHL2|Q8MR62|Q7JQR3|Q9VP77|Q9VHA8|Q7K549|P22979|Q7JXF7|P48604|Q9V9Q4|Q9VFP0|Q9VGK3|Q4V5H1|Q9VNA3 +GO:0006468,0.545662100456621,0.855600826189061,0.0815265143256594,0.334953387384819,0.923875115705312,21,P10676|O61444|P09208|Q95SK3|A8DYP0|Q9VRJ6 +GO:0006508,0.716176470588235,0.929287737573099,0.0468819856878333,-0.250293188087101,-0.891920456926435,132,Q7K148|A0A0B4K692|Q9U9Q4|Q8T4G5|Q9VKZ8|Q9XYZ5|Q9VBP9|Q9VBC7|Q9VT23|Q9W4W8|Q9VY87|Q9VAQ4|Q7JV69|Q9VN01|Q0E8C8|Q9V3Z4 +GO:0006511,0.791530944625407,0.95678704856787,0.0469758727821845,-0.264715019363198,-0.819781770531925,55,Q7K148|Q9U9Q4|Q9VKZ8|Q9XYZ5|Q9VBP9 +GO:0006520,0.05320813771518,0.349235739048219,0.245041785430996,-0.43482252439952,-1.38005312291708,61,Q9VZX9|P05031|Q9VNX4|Q9VJ31|Q9VZI8|Q9VSL9|Q9VNW6|Q9VCR2|Q0KI98|Q9I7X6|P54385|Q9Y105|Q9VW68|Q9VY42|Q9VHD3|Q9W3J5|Q9VG42|Q7K0E6|Q9VHB8 +GO:0006575,0.206549118387909,0.539657510907402,0.153158808683073,0.384681627562508,1.18101522726138,35,A1ZB70|Q8MLS1|Q9VG92|Q9VSL3|P48596|A1ZB69|Q7JVZ8|Q9VG97 +GO:0006582,0.275229357798165,0.614741309367784,0.12384217120105,0.419213512954816,1.13654641272935,20,Q9V521|Q7KUA4|Q9VLU4|Q7K2W6|Q9VER6|A0A126GUP6|Q9VL01 +GO:0006605,0.557457212713937,0.86882176348612,0.0840745577910723,0.306641675147636,0.926002189433265,32,Q9Y0V3|O02649|Q9V784|P49963|Q9VPB8|Q9VBV5|Q0E8V7|Q8T9B6|Q9VQ93|Q9VEC8 +GO:0006606,0.612389380530973,0.887294031008771,0.0628003977812234,-0.38118424591036,-0.884317057991371,14,A0A0B4K7J2|Q9V3J4|Q9GYU8 +GO:0006612,0.775784753363229,0.949162300118836,0.0628003977812234,0.323846898252875,0.780829127625459,12,P49963|Q9VBV5|Q8T9B6|Q9VEC8 +GO:0006626,0.7313769751693,0.941796934284413,0.065981614400873,0.315642022209931,0.808420535796559,16,Q9Y0V3|O02649|Q9V784 +GO:0006629,0.0627871362940276,0.378494348201992,0.222056046145248,-0.413287633706345,-1.35570465203772,75,Q9VM10|Q9VG81|A1ZBJ2|Q9W2L6|Q9VXZ8|Q9W1H8|Q5U117|Q9VYT0|B7Z0Q1|Q9VDT1|Q86BN8|Q8SXX1|Q9VN86|Q7KTW5|P25455|Q9VJC0|P54352|Q9VFP6|Q7JQW6|Q9W0H3|Q9VUW2|Q9VZ49|Q9VL66 +GO:0006631,0.247491638795987,0.586007846668382,0.109684061970549,-0.396521730500783,-1.14660260958573,36,A1ZBJ2|Q9VXZ8|Q9W1H8|Q5U117 +GO:0006635,0.00987556438092927,0.109296976575453,0.380730400722792,-0.672762629154596,-1.64555209195694,18,A1ZBJ2|Q9W1H8|Q5U117|Q9VDT1 +GO:0006637,0.00775381153047123,0.108686291344174,0.407017918923954,-0.782647419745199,-1.68814450151675,10,Q7K5K3|Q95TK5|Q9VXZ8 +GO:0006644,0.0536672629695886,0.349235739048219,0.261663521711573,-0.614037386745037,-1.47216862139352,16,Q9W2L6|B7Z0Q1|Q86BN8|Q8SXX1|Q7KTW5|P25455|P54352|Q9VFP6|Q9VUW2 +GO:0006650,0.0623885918003565,0.378494348201992,0.241339976815091,-0.641827398371249,-1.46765398818071,13,Q9W2L6|B7Z0Q1|Q86BN8|Q8SXX1|Q7KTW5|P25455|P54352|Q9VFP6|Q9VUW2 +GO:0006726,0.251798561151079,0.587728869037472,0.11331290842208,-0.530211894551015,-1.18180619143087,12,Q9VM10|P15425|A1Z7S3 +GO:0006734,0.00262538243163755,0.0601395743061159,0.431707695803346,-0.756226885438471,-1.75438607885749,14,Q9VAJ9|O62619|P07486|Q7JYW9|Q7K569|P54385|Q9VEB1|Q9VGF7|Q9W330|P52029 +GO:0006749,0.154411764705882,0.486502747943533,0.176694268938498,0.439223566354326,1.27054747000233,27,A1ZB70|Q9VG92|Q9VSL3|A1ZB69|Q7JVZ8|Q9VG97|A1ZB73|Q7K0B6 +GO:0006753,0.000292899859693899,0.0171115374424691,0.49849310876659,-0.545840033654724,-1.75683458356965,67,Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q95TK5|Q9VXZ8|Q9VF86|P35381|Q7JYW9|Q9VA09|Q7K569|Q9VH77|Q9VC18|Q9VTZ4|P32748|P54385|Q9VEB1 +GO:0006754,0.0957642725598527,0.388634073823565,0.195789002148949,-0.652554845141,-1.41969995047298,11,O01666|P35381 +GO:0006790,0.5184,0.844006611570248,0.065981614400873,-0.313485551858227,-0.972177543750326,53,Q9VZX9|Q7K5K3|Q95TK5|Q9VXZ8|Q7K8X7|Q9VJ31 +GO:0006793,0.00156273728323309,0.0427582284440165,0.45505986738723,-0.44154553245665,-1.55546801951557,122,Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q9W2L6|Q95TK5|Q9VXZ8|Q9VF86|P35381|Q7JYW9|Q9VA09|Q7K569|Q9VH77|B7Z0Q1|O62602|Q86BN8|Q9VC18|Q8SXX1|Q9VKF0|Q9VTZ4|P32748|O97479|P54385|Q9VEB1|P13677|Q7KTW5|Q9VGF7|P25455|P40417|P81900|Q01637|Q0KI81|P54352|Q8MLS2|Q9VFP6|Q9VB64|Q9W330|Q9V470|P52029|Q7KJ08 +GO:0006796,0.00156273728323309,0.0427582284440165,0.45505986738723,-0.44154553245665,-1.55546801951557,122,Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q9W2L6|Q95TK5|Q9VXZ8|Q9VF86|P35381|Q7JYW9|Q9VA09|Q7K569|Q9VH77|B7Z0Q1|O62602|Q86BN8|Q9VC18|Q8SXX1|Q9VKF0|Q9VTZ4|P32748|O97479|P54385|Q9VEB1|P13677|Q7KTW5|Q9VGF7|P25455|P40417|P81900|Q01637|Q0KI81|P54352|Q8MLS2|Q9VFP6|Q9VB64|Q9W330|Q9V470|P52029|Q7KJ08 +GO:0006810,0.0013076265322637,0.0415487785251532,0.45505986738723,-0.382129028731048,-1.4676137347063,275,Q9V4E7|Q7JUS9|Q0E8E8|A0A0B7P9G0|Q9VAJ9|Q7JYX5|Q9V3A8|Q9U4G1|Q9V3I2|Q9VLB7|O76902|Q9W4P5|A0A0B4K7J2|Q9VXK7|P19107|Q9VKC8|Q8IQ70|P35381|Q9W3K6|Q9NHE5|Q24253|O76742|Q9VYT6|Q9VVW3|O18332|O17444|O15971|Q9V393|Q9W552|A1Z7S3|Q7KSQ0|Q9VN13|Q7KM15|Q9VAY3|Q9V3J4|P56538|Q9W4W8|Q9GYU8|Q9W0C1|Q9VJQ6|O61491|Q8SXX1|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q9U6P7|Q6NL44|Q9VW73|Q27268|P13677|Q9W2V2|A8JTM7|Q9VLT3|Q95TN1|A1Z7X8|Q9VF24|Q9VGF7|Q08012|P25455|Q95T12 +GO:0006811,0.00313807911700121,0.0702501802328681,0.431707695803346,-0.575915742997537,-1.68032952878905,38,Q9V4E7|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q8IQ70|P35381|Q9VVW3|Q9VN13|Q9VAY3 +GO:0006812,0.010765545542736,0.114022175909624,0.380730400722792,-0.541809494137386,-1.56274358081894,35,Q9V4E7|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q8IQ70|P35381|Q9VAY3 +GO:0006813,0.0672645739910314,0.380779341271069,0.261663521711573,0.614270748141927,1.48107175021628,12,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|P91927|Q9VLP1|Q7K188 +GO:0006836,0.312274368231047,0.65029651735218,0.0999276973731092,-0.461124266328805,-1.12789261505651,18,Q9VLB7|Q9NHE5|Q9W0C1|Q9U6P7 +GO:0006839,0.00224830028304835,0.0553643944700655,0.431707695803346,-0.682196160150507,-1.82623600306057,25,Q7JUS9|Q0E8E8|Q9VKC8|Q8IQ70|Q9VVW3|A1Z7S3|Q7KSQ0|Q9VN13|Q9VAY3|Q9W4W8 +GO:0006869,0.372641509433962,0.71064360927548,0.105520936843198,0.378438012010173,1.05083590559062,22,Q9VFN7|Q9VRR3|Q9VA42 +GO:0006873,0.180505415162455,0.506546535427402,0.137250779610133,-0.506670870171781,-1.23929789529559,18,A0A0B7P9G0|Q9W4P5|Q8IQ70 +GO:0006886,0.283255086071987,0.624175077809637,0.0972150808846466,-0.346163170579403,-1.10561433338066,65,Q9V3I2|A0A0B4K7J2|Q9VKC8|Q24253|Q9VYT6|O18332|Q9W552|A1Z7S3|Q9V3J4|Q9GYU8|Q9W4K0|Q8SXY6|Q6NL44 +GO:0006887,0.230902777777778,0.574341505331089,0.116739204791222,-0.454675032802387,-1.19117232979764,23,Q7JYX5|Q9NHE5|O76742|O15971|Q9W0C1|Q9U6P7 +GO:0006888,0.068904593639576,0.385630822357854,0.227987202850442,-0.566146320552194,-1.43011245030638,20,Q9V3A8|Q9VYT6|O18332|Q9V3J4|Q9W4K0|Q8SXY6|O18333|Q9W3M8 +GO:0006891,0.453333333333333,0.79158738846752,0.0902635484340068,0.447001339657959,1.01688312344974,10,Q9W0N6|Q9V564|Q9VQ93|Q9VE50|Q8SZ63 +GO:0006897,0.108766233766234,0.396795334295334,0.170932335370056,-0.430801201881754,-1.30111441132042,46,Q9V3I2|O76902|P19107|Q9W3K6|O76742|Q9V393|O61491|Q8SXX1|P13677|Q9W2V2|A8JTM7|Q9VLT3|Q08012|Q95T12|P91926|Q9VPX5 +GO:0006898,0.0218716592376482,0.182572748721046,0.352487857583619,-0.59175226142747,-1.53071101904321,22,Q9V3I2|P19107|O76742|Q9V393|O61491|Q8SXX1|P13677|Q9W2V2|A8JTM7|Q08012|Q95T12|P91926 +GO:0006906,0.397923875432526,0.727285241860043,0.0835990603684159,-0.407644332899969,-1.05447112397218,22,Q7JYX5|Q9V3I2|O76742|Q9W0C1|O18333|Q9U6P7 +GO:0006913,0.773037542662116,0.949162300118836,0.0501934252649434,-0.30308608355408,-0.81136006055937,25,A0A0B4K7J2|Q9V3J4|P56538|Q9GYU8 +GO:0006914,0.23993288590604,0.58190564604608,0.111918316325105,-0.391162087719531,-1.14128015170565,38,Q7JYX5|Q24253|O76742|O18332|A1Z7S3|Q9VND8|O18333|Q7K519|P40417|P91926 +GO:0006915,0.691747572815534,0.929213406058111,0.0723570851036907,0.284116777173077,0.864742539005317,33,Q9V431|Q9V3U6|O02649|Q9VDU7 +GO:0006950,0.563186813186813,0.875127485306333,0.0547939500773363,-0.255863255967146,-0.959333614011993,211,Q9VGS3|Q9VXK7|P05031|Q5U117|Q8IQ70|Q9W299|O18332|Q9V393|Q24492|Q9VKZ8|P15425|P16378|Q9XYZ5|O97102|Q9V3J4|Q9VT23|Q9GYU8|A1Z803|Q9VND8|Q9VAQ4|O62602|Q9VC18|Q9VLY7|Q9VIF2|Q0E8C8|Q7KLW9|Q0E8X8|Q9W074|Q9I7X6|Q7K519|Q9VZJ8|O97125|C0HK95|Q9VLT3|P05812|Q9VSL5|Q9V4N3|P40417|Q7K485|A1ZAL1|P54352|Q95RS6|Q9VZI3|P09040|Q9VZU7|Q9I7I3|Q9VG42|Q7K012|Q9VTU2|Q7JVK6 +GO:0006952,0.942511346444781,0.989105910682126,0.0355420211253902,-0.214831094121839,-0.735630030116217,97,O18332|Q9V393|Q9XYZ5|O97102|Q9VT23|Q9GYU8|Q9VAQ4|Q9VLY7|Q9VIF2|Q0E8C8|Q0E8X8|Q9W074|Q9VLT3|Q9VSL5|P40417|Q7K485|A1ZAL1|Q95RS6|Q9VZI3|Q9I7I3 +GO:0006955,0.922636103151862,0.989105910682126,0.0662842187012672,0.212786788649496,0.771143672617364,76,Q70PY2|Q9V3U6|Q9V521|Q9VP13|Q9VAF5|Q7KUA4|Q9VCE1|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6 +GO:0006959,0.876681614349776,0.98280533442935,0.0570059526582387,0.268001046176263,0.718006760923023,19,Q9V521|Q7KUA4|Q7K2W6|Q9VCJ8|P22812|Q9VB68|A1ZBU8|Q9VIX1|Q7K4Z4 +GO:0006974,0.196078431372549,0.523407194856262,0.130105630751129,-0.544698021925224,-1.24555016856773,13,Q9W299|Q24492|Q9XYZ5|Q7KLW9|Q9VZU7|Q7K012 +GO:0006979,0.118729096989967,0.417672001911132,0.165656695205483,-0.448345996487943,-1.28241864107435,34,Q9VGS3|Q9VXK7|P05031|Q5U117|Q8IQ70 +GO:0006996,0.075098814229249,0.388634073823565,0.186432558434075,-0.316609057670199,-1.21313619146016,273,P06002|Q9VU68|Q9W2N0|Q7JYH3|Q7JYX5|Q9V3I2|M9PF16|O76902|Q7K148|A0A0B4K7J2|Q9VXK7|Q9VKC8|O76742|Q9VYT6|O18332|Q24492|A1Z7S3|P16378|Q7K4T8|A1Z7B8|O97102|Q9V3J4|P54622|P56538|Q9NBD7|Q9W4W8|Q9W0C1|Q9VP57|Q9W4K0|Q7K1S1|Q8SXY6|Q9W1G7|O18333|Q4V5I9|Q9U6P7|P45888|Q9VBU9|Q9VW73 +GO:0006997,0.733812949640288,0.941796934284413,0.0550211117163117,-0.362678710085148,-0.808386136719441,12,A0A0B4K7J2|Q9W1G7 +GO:0007005,0.42015503875969,0.756395961383106,0.0749278818393739,-0.311470724689851,-1.02283764056128,77,Q7JYH3|Q9VXK7|Q9VKC8|Q7K4T8|A1Z7B8|P54622|Q9W4W8|Q7K1S1|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0007006,0.767441860465116,0.949162300118836,0.0526973085708419,-0.332999657242619,-0.798374263375166,16,Q9VKC8|Q9W4W8 +GO:0007007,0.762430939226519,0.949162300118836,0.0543434390269162,-0.352019674392302,-0.765854882576621,11,Q9VKC8 +GO:0007010,0.664167916041979,0.917539126649859,0.0512184348540341,-0.264750598727204,-0.897171756168733,89,Q9VU68|Q9W2N0|M9PF16|Q7K148|P16378|O97102|Q9NBD7 +GO:0007015,0.232830820770519,0.575764388489209,0.11378726182188,-0.417668029116915,-1.16988339168907,31,Q9VU68|Q9W2N0 +GO:0007017,0.299684542586751,0.645193444116935,0.0943563635421779,-0.347181626680356,-1.09700244550186,59,Q9U4G1|M9PF16|Q7K148|O18332|O97102|Q9NBD7|Q9VJQ6 +GO:0007018,0.311270125223614,0.65029651735218,0.0995791200495904,-0.466917728969987,-1.11944589075544,16,Q9U4G1|O18332|Q9VJQ6|Q9NJH0|Q94524 +GO:0007028,0.108303249097473,0.396795334295334,0.181383128498408,-0.557073677006259,-1.34768027669898,17,Q9V3I2|O76742|Q7KM15 +GO:0007030,0.601769911504425,0.887294031008771,0.0636424081651019,-0.388518427172322,-0.901331773751368,14,Q9VYT6|Q9W4K0|Q8SXY6 +GO:0007033,0.369565217391304,0.71064360927548,0.0902635484340068,-0.513304637268719,-1.1071810615441,10,O76742|O18332|Q9VW73 +GO:0007034,0.124548736462094,0.428952816136932,0.16823816568964,-0.548917640281783,-1.32794908083871,17,Q7JYX5|O76902|Q9W4P5|O76742 +GO:0007043,0.245989304812834,0.585264408793821,0.114266502484433,-0.523308718288535,-1.19663967196622,13,P16378|Q24372|Q9VLT3 +GO:0007049,0.673192771084337,0.919630799332206,0.0508054139066364,-0.262762063186943,-0.882796961944862,86,Q7K148|Q95RQ8|Q9VH81|O18332|Q24492|O97102|Q9NBD7|Q9VP57|Q9VND8|P40797|Q02748|Q9VPL0|P40417|Q7KN75|P91926|Q94524|Q9VB05 +GO:0007051,0.88086642599278,0.98280533442935,0.046788296531803,-0.285068345091333,-0.689641248632344,17,O97102|Q9NBD7 +GO:0007052,0.846153846153846,0.979893913968133,0.0482149710025565,-0.300888813976792,-0.721387785217828,16,O97102|Q9NBD7 +GO:0007059,0.875,0.98280533442935,0.0568864160475701,0.271338900246783,0.706081761246552,17,Q7KND8|P25171|Q9VQ93|Q86BS3|A1Z6P3|P08928|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0007098,0.353571428571429,0.696535714285714,0.0919686140000427,-0.465772709142773,-1.09910373670109,15,Q7K148|Q9NBD7 +GO:0007154,0.000977334722959403,0.0331956793832763,0.45505986738723,-0.400344028652096,-1.50302061437295,222,P06002|Q9VM10|Q9V3I2|Q9VLB7|M9PF16|A0A0B4K7J2|P19107|Q0KIE7|Q9U9Q4|Q9V3N7|Q9NHE5|Q9VW59|Q9VA09|O76742|O18332|O17444|O15971|Q9V393|Q9W552|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|Q9W3J1|O97102|Q9VH66|Q9V3J4|Q9W0C1|Q9VP57|Q9VND8|P29829|O61491|O62602|Q8SXX1|Q9VKF0|O18333|Q9VTZ4|Q9U6P7|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q7KTW5|Q9VF24|X2JAU8|Q9VHM3|Q08012|P25455|P40417|Q9VX98|P81900|P91926|Q0KI81|P23625|Q9VZI3|P09040|Q9VB05|Q9VFP6|Q9VZU7 +GO:0007155,0.513377926421405,0.839995444393827,0.0686325631836726,-0.331355400048321,-0.973877549723797,40,Q9U4G1|P16378|Q24372|O61491|A1Z877|Q9W260|Q9VZI3|P11046|Q7KTJ7|Q7KY04|Q9V400|Q00174|Q0E8P5|Q9VVG0|O15943 +GO:0007156,0.417699115044248,0.754924088657953,0.0822054920415869,-0.44921863706601,-1.0421514209654,14,Q9U4G1|Q24372|Q9W260|Q7KTJ7|Q9VVG0|O15943 +GO:0007163,0.936454849498328,0.989105910682126,0.0404934829859503,-0.233020754037281,-0.673814785205709,36,Q9V3I2|Q9NBD7 +GO:0007164,0.308377896613191,0.65029651735218,0.0999276973731092,-0.490299460987804,-1.12115805767671,13,Q9VU68|P16378 +GO:0007165,0.000177357758883767,0.0124783851786079,0.518848077743792,-0.436148221182454,-1.61888031365234,180,P06002|Q9VM10|Q9V3I2|Q9VLB7|A0A0B4K7J2|P19107|Q0KIE7|Q9U9Q4|Q9V3N7|Q9VW59|Q9VA09|O76742|O18332|O15971|Q9V393|Q9W552|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|Q9W3J1|O97102|Q9VH66|Q9V3J4|Q9VP57|Q9VND8|P29829|O61491|O62602|Q8SXX1|Q9VKF0|O18333|Q9VTZ4|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q7KTW5|Q9VF24|Q9VHM3|Q08012|P25455|P40417|Q9VX98|P81900|P91926|Q0KI81|P23625|Q9VZI3|P09040|Q9VB05|Q9VZU7|Q7KY04 +GO:0007166,0.121913580246914,0.424328185665053,0.156312403073186,-0.379004460822091,-1.25065321650765,78,Q9U9Q4|Q9V393|Q9W552|P16378|Q9XYZ5|Q9VBP9|O97102|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9VKF0|Q9VTZ4|Q02748|Q9VF24|Q08012|P25455|P40417|Q9VX98 +GO:0007167,0.234505862646566,0.576030610241565,0.11331290842208,-0.416329084408823,-1.1661330228143,31,Q9V393|Q9VND8|O62602|Q8SXX1|Q9VTZ4|Q02748|Q9VF24|Q08012|P40417|Q9VX98 +GO:0007169,0.149305555555556,0.480607752360203,0.149207542435322,-0.49002518567866,-1.28378380155759,23,Q9V393|Q9VND8|O62602|Q8SXX1|Q9VTZ4|Q08012|P40417|Q9VX98 +GO:0007186,0.055363321799308,0.35182498046657,0.252961123069611,-0.558765336539375,-1.44538232204972,22,P06002|P19107|Q9V393|P16378|Q9W3J1|P29829|P13677|Q9W2V2|P25455|P81900|P23625|P09040 +GO:0007224,0.0920353982300885,0.388634073823565,0.195789002148949,-0.611939940984451,-1.41965187198749,14,Q9V393|Q9XYZ5|Q9VBP9|O97102|P29829 +GO:0007264,7.9926324272164e-05,0.0124783851786079,0.538434096309916,-0.708612697718195,-1.96835367184487,29,Q9V3I2|Q9VLB7|Q9V3N7|Q9VW59|O76742|O18332|O15971|A1Z7S3|O97102|Q9VH66|Q9VND8|O18333 +GO:0007267,0.613564668769716,0.887294031008771,0.0572461135202885,-0.287150239203028,-0.907319081496745,59,Q9VLB7|M9PF16|Q9NHE5|O18332|O17444|Q9W0C1|Q9U6P7|X2JAU8|P25455|P40417|P23625|Q9VFP6 +GO:0007268,0.60702875399361,0.887294031008771,0.0583452776743612,-0.298230400353205,-0.916672731385913,51,Q9VLB7|M9PF16|Q9NHE5|O17444|Q9W0C1|Q9U6P7|X2JAU8|P25455|P40417|P23625|Q9VFP6|Q7KJ08|Q9VH25|Q9VFM9 +GO:0007269,0.312274368231047,0.65029651735218,0.0999276973731092,-0.461124266328805,-1.12789261505651,18,Q9VLB7|Q9NHE5|Q9W0C1|Q9U6P7 +GO:0007271,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0007274,0.169064748201439,0.498589152629992,0.142056643575821,-0.57552997542905,-1.28281710634213,12,M9PF16|X2JAU8|P25455|P23625|Q7KJ08|Q9VFM9 +GO:0007275,0.387728459530026,0.727285241860043,0.0702812841717392,-0.269141746794022,-1.03465277176541,288,P06002|Q9VU68|Q0E8E8|Q9U4G1|Q9V3I2|M9PF16|Q9W4P5|A0A0B4K7J2|P05031|Q5U117|Q24253|O76742|O18332|P16378|Q24372|Q9I7Q5|Q9VBC7|Q7KM15|O97102|Q7JZV0|Q9V3J4|Q9NBD7|Q9VND8|A1Z877|O62602|A8DRW0|Q8SXY6|Q9W074|Q9VTZ4|A1Z8Z3|Q09101|Q0KI98|P45888|P40797|Q9VEB1|Q7K5J8|A1Z8H1|P13677|A8JTM7|Q9Y105|Q9VLT3|Q02748|Q9VF24|X2JAU8|Q08012|Q95T12|Q9W260|Q9VLB1 +GO:0007276,0.104947526236882,0.393183516782171,0.166933848713193,-0.364116583948539,-1.25169416628716,98,Q9VU68|Q9V3I2|A0A0B4K7J2|O76742|O18332|O15971|Q7KM15|Q9VAY3|Q9NBD7|Q9VJQ6|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|Q02748|Q9VHM3|Q08012|P91926|Q7K485|Q9W1F8|Q94524|Q9VB05|Q7KY04 +GO:0007281,0.134969325153374,0.449137788094843,0.147331213699377,-0.368744077680944,-1.22699127303146,83,Q9VU68|Q9V3I2|A0A0B4K7J2|O76742|O15971|Q7KM15|Q9NBD7|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|Q02748|Q9VHM3|Q08012|P91926|Q7K485|Q9W1F8|Q94524|Q9VB05|Q7KY04 +GO:0007283,0.517241379310345,0.844006611570248,0.0697792517076235,-0.364421314589255,-0.964439395918602,24,Q9VAY3|Q9VJQ6|Q9VVU5|Q9W1G7|Q9W074|Q94524|Q9VB05 +GO:0007292,0.356589147286822,0.6996818925847,0.0835990603684159,-0.32251865030136,-1.05911788544408,77,Q9VU68|Q9V3I2|O76742|O15971|Q7KM15|Q9NBD7|O62602|Q9VVU5|Q8SXY6|Q02748|Q9VHM3|Q08012|P91926|Q7K485|Q9W1F8|Q9VB05|Q7KY04 +GO:0007293,0.804988662131519,0.958783352115534,0.0615706755421678,0.309855413115764,0.751105543172224,13,Q9VXF9|Q9V4S8 +GO:0007297,0.0125610749939068,0.122501572960379,0.380730400722792,-0.678674500548822,-1.60149717859126,15,Q9VU68|Q9V3I2|O76742 +GO:0007298,0.0125610749939068,0.122501572960379,0.380730400722792,-0.678674500548822,-1.60149717859126,15,Q9VU68|Q9V3I2|O76742 +GO:0007308,0.362068965517241,0.702043171327722,0.0886261133285098,-0.401547464318888,-1.06269358683603,24,Q7KM15|Q9NBD7|O62602|Q8SXY6 +GO:0007309,0.717013888888889,0.929287737573099,0.0544555953940371,-0.323138845878148,-0.846569580740727,23,Q7KM15|O62602|Q8SXY6 +GO:0007314,0.799642218246869,0.95678704856787,0.0508054139066364,-0.320319524702875,-0.767973356780412,16,Q7KM15|O62602 +GO:0007315,0.980357142857143,0.992447878431948,0.0414044273760278,-0.213789329722329,-0.504487803927144,15,Q7KM15 +GO:0007316,0.967914438502674,0.989105910682126,0.0419081748591401,-0.229543740760904,-0.524893121491197,13,Q7KM15 +GO:0007346,0.469387755102041,0.802685657596372,0.0894366833718621,0.409279643898571,0.992115019545968,13,Q7KND8|Q9V3P3|Q95SK3|P25171|Q86BS3|P92177 +GO:0007349,0.183600713012478,0.509420760150895,0.135002033828631,-0.550239751449334,-1.25822233161051,13,Q9V3I2|Q9W074|P40797|Q02748|O61604|P42207 +GO:0007350,0.756183745583039,0.948901184395995,0.052805004567129,-0.316832837718126,-0.800334771132403,20,Q7KM15|O62602|P40417|P51140|Q9V535|E1JJH5|Q9VKK1|P12370|Q961D9 +GO:0007351,0.82129963898917,0.967491793250218,0.0499913914024592,-0.301703499625627,-0.737955414651302,18,Q7KM15|O62602|P40417 +GO:0007389,0.458670988654781,0.794008653470931,0.0727141077934447,-0.326475750022791,-0.993477830769426,49,Q0E8E8|O76742|Q7KM15|Q9V3J4|O62602|Q8SXY6|Q9VF24|P40417 +GO:0007391,0.769642857142857,0.949162300118836,0.0524827622635459,-0.32731546924567,-0.77238027962199,15,Q9V3I2 +GO:0007399,0.179411764705882,0.506362717006573,0.122679189568808,-0.323423586676367,-1.15252083132516,132,P06002|Q9VU68|Q9U4G1|Q9V3I2|M9PF16|A0A0B4K7J2|O18332|P16378|Q9VBC7|O97102|Q9NBD7|Q9VND8|Q09101|Q0KI98|P45888|Q9Y105|X2JAU8|Q08012|Q95T12|Q9W260|P40417|P81900|Q0KI81|P23625|P54352|P11046|Q9VZU7|Q7KTJ7|Q9VSD6|Q7K012|Q7KJ08|Q9VFU7 +GO:0007405,0.908496732026144,0.988193754211198,0.0540088272801684,0.276589076269996,0.648525010259444,11,P09208|P38040|Q24276 +GO:0007409,0.26006711409396,0.595658290961149,0.106729884364606,-0.382244422035438,-1.13199168192867,42,Q9U4G1|Q9V3I2|M9PF16|O97102|Q9NBD7|Q9VND8|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7KJ08|Q00174 +GO:0007411,0.536789297658863,0.853814898419865,0.066436413766281,-0.334663543300044,-0.957249021465304,34,Q9U4G1|M9PF16|Q9NBD7|Q9VND8|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7KJ08|Q00174|P51140|O15943 +GO:0007416,0.26063829787234,0.595658290961149,0.110122263835536,-0.455151995627057,-1.15813904454694,21,M9PF16|P16378|Q9VND8|P45888|X2JAU8 +GO:0007417,0.651079136690647,0.912251706458446,0.060640400949416,-0.352322980059717,-0.873624083623957,19,A0A0B4K7J2|P16378|O97102 +GO:0007420,0.0893246187363835,0.388634073823565,0.222056046145248,0.617134259833663,1.44700943214183,11,A1Z9J3|Q8IPX7|Q95RG8|P45594|Q7KMS3 +GO:0007423,0.0844155844155844,0.388634073823565,0.195789002148949,-0.444454183994054,-1.34234942112592,46,P06002|Q9U4G1|Q5U117|Q24253|Q9VBC7 +GO:0007424,0.776674937965261,0.949162300118836,0.0676760401641789,0.260367089391555,0.830275141258657,39,A1Z9J3|Q9VRL2|P48596|Q9VR79|P09208|Q9XTL2 +GO:0007444,0.130094043887147,0.438844634345343,0.152144922367565,-0.393637411221409,-1.24969402760253,62,Q9VU68|Q0E8E8|Q9V3I2|P05031|O76742|P16378|Q9XYZ5|Q9W4K0|P40797|Q9VF24|Q08012|P40417 +GO:0007447,0.105072463768116,0.393183516782171,0.184706471207739,-0.649456936934407,-1.4008570518442,10,Q0E8E8|O76742 +GO:0007472,0.736227045075125,0.941796934284413,0.0514264916187015,-0.289011365613216,-0.848164142107155,39,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0007476,0.574829931972789,0.875127485306333,0.0639271933359996,-0.32309343633125,-0.936307133243649,37,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0007498,0.386666666666667,0.727285241860043,0.0995791200495904,0.46707369476088,1.06254571400857,10,O97365|Q9VA42|P38040 +GO:0007507,0.328125,0.666250166600027,0.110122263835536,0.410468923099947,1.08206168671049,18,M9NFC0|P17336|Q7JV09|Q9W3Y3|P38040 +GO:0007517,0.0317499589437589,0.240566996612327,0.321775918075361,0.686366410787213,1.56141460373777,10,M9NFC0|Q95RQ1|Q7JV09 +GO:0007528,0.257785467128028,0.593410795859352,0.109250039480711,-0.444214282752872,-1.14906818570653,22,M9PF16|P16378|Q9VND8|P45888|X2JAU8|P09040 +GO:0007548,0.746902654867257,0.947872241989889,0.053457214108991,-0.339381801038673,-0.787338718874834,14,Q9V3I2 +GO:0007552,0.523274478330658,0.846347062653035,0.0656813601934011,-0.311946728545309,-0.954420678670996,50,Q9VU68|Q9V3I2|P16378|P40797|Q9VEB1|Q9VF24|Q08012|P40417 +GO:0007560,0.499181669394435,0.823807367149759,0.0689567351672811,-0.326663386602638,-0.979320091555996,45,Q9VU68|Q9V3I2|P16378|P40797|Q9VF24|Q08012|P40417 +GO:0007591,0.771428571428571,0.949162300118836,0.0523759084097997,-0.325914629196116,-0.769074657581963,15,P05031|Q9V3J4|O62602|A8JTM7 +GO:0007600,0.300469483568075,0.645193444116935,0.119348440591015,0.398168450138599,1.11303483988517,23,Q23970|Q9VR94|P54195|P54192|Q7K084|Q9VKE2|Q9VAF5 +GO:0007602,0.214028776978417,0.550439543926217,0.124434168630393,-0.553102206040199,-1.23282713630161,12,P06002|Q9VM10|P19107 +GO:0007606,0.0709382151029748,0.388634073823565,0.257206466468838,0.583616395677149,1.43832217463792,14,Q23970|Q9VR94|P54195|P54192|Q7K084 +GO:0007608,0.0272161513504914,0.216192815163178,0.352487857583619,0.676185921109041,1.58546927209975,11,Q23970|Q9VR94|P54195|P54192|Q7K084 +GO:0007610,0.00331369175238605,0.0725330305800058,0.431707695803346,-0.500569649513271,-1.62556840074311,70,P06002|A0A0B7P9G0|P46415|A0A0B4K692|P05031|Q8IQ70|Q9V3N7|Q9VR25|Q9V393|Q9VBC7|Q7K569|Q7K0P0|Q9VW68|Q08012|P25455|Q9VDH3|P40417|P81900|Q9VCW6|Q9W1F8|P23625|P54352|P09040|P42325|Q7JVK6|Q7KJ08 +GO:0007611,0.00914014573277134,0.108686291344174,0.380730400722792,-0.644974641610343,-1.62923652705045,20,A0A0B7P9G0|P46415|P05031|Q8IQ70|Q9V3N7|Q08012|P81900|Q9VCW6|P54352 +GO:0007613,0.018033085567246,0.158594547176226,0.352487857583619,-0.661489347757753,-1.56094464024438,15,A0A0B7P9G0|P05031|Q8IQ70|Q9V3N7|Q08012|Q9VCW6|P54352 +GO:0007616,0.181159420289855,0.506937582345191,0.137250779610133,-0.602344485832008,-1.29923705888826,10,A0A0B7P9G0|P05031 +GO:0007622,0.871331828442438,0.98280533442935,0.057609110864425,0.270623248271759,0.693118710351417,16,P09208|Q94901|Q9VWW2 +GO:0007623,0.991007194244604,0.997711584633853,0.0412376090540066,-0.202264779786837,-0.501538057099559,19,Q9VW68|P25455|P81900|P42325|Q7JVK6 +GO:0007626,0.0341696830883564,0.251172670462918,0.321775918075361,-0.542368685835137,-1.47779339279628,27,P06002|Q9V393|Q9VBC7|Q7K569|P25455|Q9VDH3|P81900|P23625|P09040 +GO:0007635,0.573333333333333,0.875127485306333,0.0774767547848578,0.402735903774989,0.916183705555414,10,Q9VR94|P38040|P19334|Q9VWV6 +GO:0008033,0.713333333333333,0.929287737573099,0.066436413766281,0.356810293723615,0.811707558277846,10,Q9VIS4|Q9VSK9|O77263|P40796|Q24050 +GO:0008037,0.745733788395905,0.947803589122537,0.0518457624865066,-0.309840684857814,-0.829442097380683,25,Q9U4G1|M9PF16 +GO:0008038,0.685763888888889,0.924045732634139,0.0565299525056311,-0.327679411945948,-0.858465102314115,23,Q9U4G1|M9PF16 +GO:0008039,0.848888888888889,0.979893913968133,0.0580983576873206,0.300713970662259,0.684094061073729,10,Q95RQ1|A8DZ14|Q9VYS2 +GO:0008064,0.0641711229946524,0.378494348201992,0.237793834423688,-0.639577864195642,-1.46251002297643,13,Q9VU68|Q9W2N0 +GO:0008088,0.0989208633093525,0.388634073823565,0.190023305279108,-0.626219553102064,-1.39580072166768,12,Q9U4G1|O18332|Q9VJQ6 +GO:0008104,0.341463414634146,0.680853164806952,0.0817515582532145,-0.294908199163455,-1.05779386808304,148,Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9VKC8|Q0KIE7|Q24253|Q9VYT6|O18332|O15971|Q9W552|A1Z7S3|Q7KM15|O97102|Q9V3J4|Q9GYU8|Q9VND8|O61491|Q9W4K0|Q8SXY6|O18333|Q6NL44|Q9VL69|P40797 +GO:0008154,0.102888086642599,0.393183516782171,0.186432558434075,-0.561134691685444,-1.37251435462895,18,Q9VU68|Q9W2N0 +GO:0008202,0.144444444444444,0.474582104228122,0.173747838999571,0.59036763046308,1.3430270265147,10,Q9VFN7 +GO:0008219,0.38758389261745,0.727285241860043,0.0833634065110386,-0.353373401767161,-1.04649205679757,42,P06002|P15425|O62602|P40797|Q9VEB1|Q95T12|Q9W260|Q7K485|Q9VHJ7|P23625|Q9VZU7|Q9VSD6 +GO:0008277,0.510869565217391,0.837282066121681,0.0728938564822936,-0.445812706205501,-0.961603206884829,10,P19107|Q9V393|P29829|P13677|Q9W2V2|P23625 +GO:0008283,0.845588235294118,0.979893913968133,0.0629394692018967,0.259606734195698,0.750967626955205,27,P17336|Q9V4S8|P09208|Q7K5M6|P38040 +GO:0008286,0.464028776978417,0.799070533782764,0.0774767547848578,-0.448796865185138,-1.00033763750189,12,Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0008298,0.969911504424779,0.989105910682126,0.041488040200221,-0.226652518824491,-0.525815772250835,14,Q7KM15 +GO:0008340,0.624793388429752,0.893164380376657,0.0585937568945671,-0.314175355965229,-0.906177403863785,35,Q9VGS3|Q9W1H8|Q9VXK7|Q9W3W4|O97125|P40417|Q94524|Q9VW54|Q9VG42|Q9VTU2 +GO:0008344,0.0607734806629834,0.376489801591438,0.248911114434702,-0.694847524447121,-1.51171200917327,11,P06002|Q7K569|P25455|P23625|P09040 +GO:0008356,0.541516245487365,0.853814898419865,0.0697792517076235,-0.39081944071929,-0.945475748986062,17,P16378|Q9NBD7|Q9VVU5|Q02748|P91926|P54352|Q9VB05 +GO:0008358,0.799642218246869,0.95678704856787,0.0508054139066364,-0.320319524702875,-0.767973356780412,16,Q7KM15|O62602 +GO:0008361,0.714285714285714,0.929287737573099,0.0665892104103933,0.313412371713471,0.815565918541863,17,A1Z9J3|Q9VAF5|P09208 +GO:0008380,0.0989583333333333,0.388634073823565,0.231126709673834,0.386163638003517,1.30929993124758,52,Q9V3B6|Q9V3V0|Q9W0R0|O97454|Q94901|Q9VND7|Q9V3P3|Q9U9Q2|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|Q9VLV5|Q9V3E7|Q9VG73|Q7K204|Q9W254|Q9VPU4 +GO:0008582,0.114285714285714,0.407867494824017,0.175204047558551,-0.575880352704749,-1.35892944160563,15,M9PF16|P16378|Q9VND8|P45888|X2JAU8 +GO:0008587,0.831521739130435,0.973898826448845,0.0495901956956338,-0.323830868973193,-0.698492433612654,10,Q9V400|P51140|Q24090|Q961D9 +GO:0008589,0.0920353982300885,0.388634073823565,0.195789002148949,-0.611939940984451,-1.41965187198749,14,Q9V393|Q9XYZ5|Q9VBP9|O97102|P29829 +GO:0008595,0.82129963898917,0.967491793250218,0.0499913914024592,-0.301703499625627,-0.737955414651302,18,Q7KM15|O62602|P40417 +GO:0008610,0.500837520938024,0.823807367149759,0.0699458736501659,-0.348012302745367,-0.974778495605914,31,Q9VG81|Q9VXZ8|Q9VYT0|Q86BN8|Q8SXX1|Q9VN86|Q7KTW5|Q9VJC0|P54352|Q9VFP6|Q7JQW6 +GO:0008652,0.583184257602862,0.877918828110722,0.0656813601934011,-0.383095128096305,-0.918479295832011,16,Q9VJ31|Q9VNW6|Q9VG42|Q9VCK6|Q6AWN0|Q9VEJ3 +GO:0008654,0.316758747697974,0.654103493674014,0.10027910675413,-0.523631378160434,-1.1392137337971,11,Q86BN8|Q8SXX1|Q7KTW5|P54352|Q9VFP6|Q9VUW2 +GO:0009056,0.0179078466059687,0.158594547176226,0.352487857583619,-0.357682526427437,-1.34271075811506,221,Q9VZX9|P46415|Q7JYX5|O62619|P07486|Q9VUY9|A1ZBJ2|Q9W2L6|Q7K148|Q9VXZ8|Q9W1H8|Q5U117|Q9VNX4|Q9U9Q4|Q9VF86|Q9V3N7|Q7JYW9|Q24253|O76742|O18332|Q9VKZ8|A1Z7S3|Q9XYZ5|Q9VBP9|Q9VH77|Q9VZI8|Q9VY87|Q9VND8|Q9VSL9|Q9VDT1 +GO:0009057,0.284848484848485,0.62489032867652,0.142056643575821,0.285166850724716,1.07313159606812,100,Q9VVB4|Q70PY2|Q9VE24|Q9V3U6|Q7KMQ0|Q9VGE7|Q9VCE1|P18053|Q8IPX7|Q9W0C3|Q9VVI2|Q7K0S6|Q8T0Q4|Q9V3W9|Q9W1M9|Q9XTL2|Q9V3W0|Q9V436|Q9V3P3|Q9VJJ0|Q9VBI3|Q9VAY2 +GO:0009059,0.421052631578947,0.756395961383106,0.155241966228839,0.227382234628231,1.00537253167525,386,Q9V3B6|Q9V3V0|Q9W0R0|P36241|O16797|Q27272|P55830|Q9VD09|A1Z968|Q9V3U6|Q8IRH5|Q9VIE7|P09180|Q9VM69|Q9VH95|Q9VP13|Q9W4X7|Q9V597|O02649|Q9VE52|Q9VW14|Q9VSA9|Q9VCH5|Q9VE08|Q9VMY1|Q7KUA4|Q9VEB3|P32234|Q9W227|Q9VNE9|Q9VJQ5|P41375|P28668|Q9VXN3|Q9VDQ3|Q7KSE4|Q9VIS4|Q8IPX7|Q9W0C3|Q9VVI2|Q9V4W1|Q9VUX1|Q9VVW7|A1ZBU5|O97454|Q94901|Q9VER6|Q9VND7|Q9VHT5|A1Z992|Q9VSK9|P48159|Q7KN90|Q9W1M9|Q8IP62|P41094|Q9V3W0|Q9V3P3|Q9W086|Q9VPL3|P20240|Q9U9Q2|Q9VAY2|Q9W0A8|Q9VCJ8|Q9VFT4|Q9W4I3|Q9VCX3|Q9VK69|Q9VVL8|Q3YMU0|Q9W158|Q9VLW8|Q9W087|Q9VEP9|Q24478|Q9W445|Q8T9B6|Q24276|A0A126GUP6|Q6WV19|P05205|Q9VLM8|Q86BS3|Q9VN50|Q9W4Z2|Q9VTW6|Q9VVU2|Q9VNE2|Q9V3T8|Q7K180|Q9VXQ0|Q9VL01 +GO:0009060,0.00257082591438576,0.0601395743061159,0.431707695803346,-0.498647585020682,-1.61781161545302,69,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9VEB1|Q9W125|Q9VPE2|Q9W3X7|Q9VQM2|Q9VIQ8|Q9V470|Q9VTU2|Q9V3W2|Q9VGQ1|Q9W402|Q6IHY5 +GO:0009062,0.0957446808510638,0.388634073823565,0.191892240384838,-0.53498681927602,-1.36127959379357,21,A1ZBJ2|Q9W1H8|Q5U117|Q9VDT1 +GO:0009063,0.0763888888888889,0.388634073823565,0.213927855492356,-0.534540551881119,-1.40040659508191,23,Q9VZX9|Q9VNX4|Q9VZI8|Q9VSL9|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0009100,0.642725598526704,0.905487649605297,0.0623861492893626,-0.391589217308723,-0.851942478947994,11,Q24319|P15425 +GO:0009117,0.00524311026127702,0.0922225644171047,0.407017918923954,-0.521584797339006,-1.56368449123317,45,Q9VAJ9|O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9|Q9VA09|Q7K569|Q9VC18|P32748|P54385|Q9VEB1|Q9VGF7|Q01637|Q8MLS2|Q9W330 +GO:0009132,0.00897897347887526,0.108686291344174,0.380730400722792,-0.767144959239671,-1.66900248882962,11,O62619|P07486|Q9VUY9|Q7JYW9 +GO:0009135,0.00937196102309525,0.108686291344174,0.380730400722792,-0.778264813767591,-1.67869136591986,10,O62619|P07486|Q9VUY9|Q7JYW9 +GO:0009141,0.000816881832260493,0.0287367358848781,0.477270815362862,-0.699458357816096,-1.80931900976301,22,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9 +GO:0009142,0.100719424460432,0.390457988249451,0.188204146308491,-0.624403038164001,-1.39175183362369,12,O01666|P35381 +GO:0009144,0.000487581911926587,0.021830371965804,0.49849310876659,-0.735723886536483,-1.85847342273175,20,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9 +GO:0009145,0.0957642725598527,0.388634073823565,0.195789002148949,-0.652554845141,-1.41969995047298,11,O01666|P35381 +GO:0009150,0.00675008315388988,0.108686291344174,0.407017918923954,-0.597396514500212,-1.65942217328352,29,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9|Q9VA09 +GO:0009152,0.233812949640288,0.575764388489209,0.118287526124085,-0.478150249555419,-1.18562681756273,19,O01666|P35381|Q9VA09|Q9VC18 +GO:0009165,0.336805555555556,0.674295675248419,0.0931454575337804,-0.41154006550246,-1.07816594988337,23,O01666|P35381|Q9VA09|Q9VC18|P32748 +GO:0009166,0.00964165315567262,0.109161245498133,0.380730400722792,-0.775978404846376,-1.67375965778259,10,O62619|P07486|Q9VUY9|Q7JYW9 +GO:0009179,0.00937196102309525,0.108686291344174,0.380730400722792,-0.778264813767591,-1.67869136591986,10,O62619|P07486|Q9VUY9|Q7JYW9 +GO:0009185,0.00897897347887526,0.108686291344174,0.380730400722792,-0.767144959239671,-1.66900248882962,11,O62619|P07486|Q9VUY9|Q7JYW9 +GO:0009199,0.000487581911926587,0.021830371965804,0.49849310876659,-0.735723886536483,-1.85847342273175,20,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9 +GO:0009201,0.0957642725598527,0.388634073823565,0.195789002148949,-0.652554845141,-1.41969995047298,11,O01666|P35381 +GO:0009205,0.000487581911926587,0.021830371965804,0.49849310876659,-0.735723886536483,-1.85847342273175,20,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9 +GO:0009206,0.0957642725598527,0.388634073823565,0.195789002148949,-0.652554845141,-1.41969995047298,11,O01666|P35381 +GO:0009259,0.0114854909183607,0.117740745256845,0.380730400722792,-0.558139585362599,-1.57351917396171,32,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9|Q9VA09|Q9VC18|P32748 +GO:0009260,0.242214532871972,0.58190564604608,0.11331290842208,-0.450547474296856,-1.16545052459055,22,O01666|P35381|Q9VA09|Q9VC18|P32748 +GO:0009266,0.0699658703071672,0.387170686812133,0.222056046145248,-0.520512659811347,-1.39341001155237,25,P06002|Q9VM10|P05031|Q9V3J4 +GO:0009267,0.677536231884058,0.919630799332206,0.0590954798717342,-0.380537314833993,-0.820806354754352,10,Q9I7X6|Q7K519|P40417|Q9VG42 +GO:0009306,0.48731884057971,0.817732637088611,0.0753093764172773,-0.454688755228698,-0.980748549954614,10,O18332|O15971|O18333 +GO:0009314,0.0341696830883564,0.251172670462918,0.321775918075361,-0.541843279914565,-1.47636181789486,27,P06002|Q9VM10|P46415|Q9U4G1|P19107|A8WH76|P29829 +GO:0009408,0.441964285714286,0.77668444042419,0.0919686140000427,0.372639400324997,0.982337018367335,18,O02649|Q9VSA9|Q9VCH5|Q8IN43|Q9VAY2 +GO:0009416,0.0341696830883564,0.251172670462918,0.321775918075361,-0.541843279914565,-1.47636181789486,27,P06002|Q9VM10|P46415|Q9U4G1|P19107|A8WH76|P29829 +GO:0009581,0.214028776978417,0.550439543926217,0.124434168630393,-0.553102206040199,-1.23282713630161,12,P06002|Q9VM10|P19107 +GO:0009582,0.214028776978417,0.550439543926217,0.124434168630393,-0.553102206040199,-1.23282713630161,12,P06002|Q9VM10|P19107 +GO:0009583,0.214028776978417,0.550439543926217,0.124434168630393,-0.553102206040199,-1.23282713630161,12,P06002|Q9VM10|P19107 +GO:0009605,0.160294117647059,0.486502747943533,0.130777137971974,-0.32697212178024,-1.16516604582523,132,P06002|Q9V4E7|Q9VM10|P19107|P05031|O18332|Q9V393|Q9XYZ5|Q9VBP9|O97102|Q9VT23|Q9GYU8|Q9VND8|Q9VAQ4|P29829|Q9VLY7|Q0E8C8|Q0E8X8|Q9W074|P13677|Q9VLT3|Q9VSL5|P25455|P40417|Q7K485|P23625|A1ZAL1|P54352|Q95RS6|Q9VZI3 +GO:0009607,0.966565349544073,0.989105910682126,0.0668966276500666,0.193992538993847,0.737464034782403,104,Q8SXD5|Q70PY2|Q9V521|Q9VP13|Q9VCH5|Q7KUA4|Q9W4C2|Q9VCE1|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6|Q9VAI9|Q9W1M9|Q8IN43|Q9VVK7|Q9VBI3 +GO:0009611,0.395734597156398,0.727285241860043,0.102080107662747,0.37022601176258,1.04109241091753,24,A1Z9J3|Q9V521|P09208|Q9VLU4|Q7K2W6|Q9XTL2|E2QCN9 +GO:0009615,0.300653594771242,0.645193444116935,0.114266502484433,0.480313893996165,1.12620345399161,11,Q8SXD5|Q9VP13|Q9VCH5|Q9W1M9|Q9VLW8 +GO:0009617,0.869791666666667,0.98280533442935,0.0645031249656493,0.230332258025369,0.780948747934599,52,Q9V521|Q9W4C2|Q9VCE1|Q7K2W6|A1ZBU5|Q9VER6|Q8IN43|Q9VVK7|Q9VCJ8|Q9VN50|Q9VI09|Q9NCC3|P22812|Q9VB68 +GO:0009620,0.397260273972603,0.727285241860043,0.0995791200495904,0.37530903984147,1.03518488144271,21,Q9V521|Q7K2W6|A1ZBU5|Q9VER6|Q9VAI9|Q9VCJ8|A0A126GUP6|Q9VWV6|P22812|Q9VB68 +GO:0009628,0.0160706926834413,0.146570669381386,0.352487857583619,-0.458678427364483,-1.47629721941757,67,P06002|Q9V4E7|Q9VM10|P46415|Q9U4G1|Q9W4P5|P19107|P05031|Q9VA09|A8WH76|Q9V3J4|P29829 +GO:0009653,0.271349862258953,0.608837390262116,0.0922597260527354,-0.293697541284051,-1.08602001635699,175,P06002|Q9VU68|Q9U4G1|Q9V3I2|M9PF16|Q9W4P5|Q5U117|O18332|P16378|Q24372|Q9XYZ5|Q9VBC7|O97102|Q9NBD7|Q9VND8|A1Z877|O62602|Q9VVU5|Q9W074|Q9VTZ4|Q0KI98|P40797|Q9VEB1|Q9Y105|Q9VLT3|Q02748|Q9VF24|Q08012 +GO:0009719,0.0636515912897823,0.378494348201992,0.231126709673834,-0.499578898036151,-1.39185196203642,30,A0A0B4K7J2|O97102|Q9VP57|Q9VND8|Q8SXX1|Q9VTZ4|Q02748|Q9VF24|Q08012|P40417|Q9VX98 +GO:0009725,0.184115523465704,0.509420760150895,0.135740943810425,-0.505459894532337,-1.23633589441974,18,A0A0B4K7J2|Q9VP57|Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0009790,0.799684542586751,0.95678704856787,0.0450442767152795,-0.257736737331171,-0.814380167094146,59,Q9V3I2|Q24372|Q7KM15|O97102|Q9NBD7|A1Z877|O62602|Q9VTZ4 +GO:0009791,0.854263565891473,0.979893913968133,0.0412376090540066,-0.239803973217426,-0.787491442116017,77,Q9VU68|Q9V3I2|P16378|Q9VBC7|O97102|Q9V3J4|P40797|Q9VEB1|Q9VF24|Q08012|P40417 +GO:0009792,0.85781990521327,0.979893913968133,0.060640400949416,0.257399034971569,0.723817812288796,24,A1Z9J3|P09208|Q94901|P38040|P35220|Q24478 +GO:0009798,0.853242320819113,0.979893913968133,0.0456790414930062,-0.278465142199911,-0.745449913072895,25,Q7KM15|O62602|Q8SXY6|P40417 +GO:0009880,0.984042553191489,0.99515597011665,0.0409055783172035,-0.221076396644869,-0.562531218674388,21,Q7KM15|O62602|P40417|P51140|Q9V535|E1JJH5|Q9VKK1|P12370|Q961D9 +GO:0009886,0.474878444084279,0.807867473960302,0.0709609456938284,-0.324537935387374,-0.983054041696026,48,Q9VU68|Q9V3I2|P16378|P40797|Q9VEB1|Q9VF24|Q08012|P40417 +GO:0009887,0.093558282208589,0.388634073823565,0.179782316298324,-0.386398763514682,-1.28573701772882,83,P06002|Q9VU68|Q9U4G1|Q9V3I2|Q5U117|P16378|Q24372|Q9VBC7 +GO:0009888,0.634259259259259,0.896334821191349,0.0546808488785442,-0.275596247102781,-0.908554983332684,80,Q9VU68|Q9V3I2|Q9W4P5|O76742|P16378|Q24372|Q9VND8|O62602|Q9VVU5|Q9VTZ4|Q9VLT3|Q9VHM3|Q08012|P40417|P91926|Q9VZI3|P11046|Q7KY04|Q9VSD6 +GO:0009889,0.884984025559105,0.98280533442935,0.0738052724171275,0.215779590982767,0.857462897467836,142,Q9V3V0|Q9W0R0|Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q9VCH5|Q7KUA4|Q9VNE9|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4|Q8IPX7|Q9W0C3|Q9VVI2|Q94901|Q9W1M9|Q9V3W0|P20240|Q9VCJ8|Q9VFT4|Q9W158|Q9VLW8|Q9VEP9|Q24478|P05205|Q86BS3|Q9VTW6|Q9VNE2|Q9V3T8|Q7K180|Q9VN25|Q7K0D8|Q9W0H8|P40796|Q03427|P22812|Q9W1H5|Q9VB68|Q9W385|Q9VG73|Q7K204|Q9W254|Q9VUH8|Q9VYF0|Q9W0S7|P43332|Q9VMX4|P22979|Q7JXF7|P08928|Q9VEN9|Q7K159|Q7K4Z4 +GO:0009890,0.315068493150685,0.654103493674014,0.126875729929857,0.304499882262761,1.07248166120828,64,Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q9VNE9|Q9VJQ5|Q7KSE4|Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9|Q9V3W0|P20240|Q9VLW8|Q24478|P05205|Q86BS3|Q9VNE2 +GO:0009891,0.944968553459119,0.989105910682126,0.0372254009247509,-0.230951520831548,-0.72987758979862,60,A0A0B4K7J2|O97102|Q9V3J4|P54622|Q9VP57|Q9VND8|O77477|Q27268|Q9VHM3|Q7KN75 +GO:0009892,0.910662824207493,0.988977819012547,0.0672065093710464,0.215910606629255,0.790063247825363,81,Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q7KUA4|Q9VNE9|Q9VJQ5|Q7KSE4|Q8IPX7|Q9W0C3|P09208|Q9VVI2|Q9VLU4|Q9W1M9|Q9V3W0 +GO:0009893,0.869894099848714,0.98280533442935,0.0392758570896778,-0.232843261461819,-0.796250190778348,95,A0A0B4K7J2|Q24253|Q9V393|Q9XYZ5|O97102|Q9V3J4|P54622|Q9VP57|Q9VND8|O77477|Q27268|Q02748|Q9VHM3|Q7KN75|P91926 +GO:0009894,0.292682926829268,0.636407688580197,0.09754492162472,-0.363823502363499,-1.09905524206369,47,Q9U9Q4|Q24253|Q9VKZ8|A1Z7S3|Q9XYZ5|Q9VND8|Q7K519|Q02748|P40417|P91926|Q9VZU7|Q9VW54 +GO:0009895,0.22841726618705,0.570840323318591,0.119887845115423,-0.546231055165417,-1.21751180910974,12,Q9U9Q4|Q9VKZ8|Q9VND8|Q7K519|P40417|Q9VZ49|Q7JZN0 +GO:0009896,0.731871838111299,0.941796934284413,0.0521630305460055,-0.299000003225884,-0.818643113997515,28,Q24253|Q9XYZ5|Q9VND8|Q02748|P91926|Q9VZU7|Q9VZ49|Q494G8 +GO:0009948,0.82129963898917,0.967491793250218,0.0499913914024592,-0.301703499625627,-0.737955414651302,18,Q7KM15|O62602|P40417 +GO:0009952,0.82129963898917,0.967491793250218,0.0499913914024592,-0.301703499625627,-0.737955414651302,18,Q7KM15|O62602|P40417 +GO:0009953,0.146428571428571,0.477589877010407,0.153158808683073,-0.552855208070613,-1.30459602530901,15,Q0E8E8|O76742|Q8SXY6 +GO:0009966,0.137724550898204,0.455230478640035,0.143758989039275,-0.347701440602925,-1.20100684646889,102,P19107|Q9U9Q4|Q9V393|Q9W552|Q9XYZ5|Q9VBP9|O97102|Q9V3J4|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9VKF0|Q9VTZ4|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q9VF24|Q9VHM3|Q08012|P25455|Q9VX98|P91926|P23625|Q9VB05|Q9VZU7 +GO:0009967,0.528,0.852590163934426,0.0650877566917313,-0.307940852882848,-0.960207293425215,56,Q9U9Q4|O97102|Q9V3J4|Q9VP57|Q9VND8|Q9VKF0|Q9VTZ4|Q9VW73|Q7K519|Q9VF24|Q9VHM3|Q08012|P25455|Q9VX98|P91926 +GO:0009968,0.11219512195122,0.404806575538283,0.16823816568964,-0.425415310633353,-1.28511468931603,47,P19107|Q9V393|Q9XYZ5|Q9VBP9|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9I7X6|P13677|Q9W2V2|Q02748 +GO:0009994,0.396610169491525,0.727285241860043,0.0826646449123753,-0.384371280468931,-1.04474265799991,26,Q7KM15|Q9NBD7|O62602|Q8SXY6 +GO:0010256,0.0106074461456946,0.114022175909624,0.380730400722792,-0.528473464356466,-1.57688836093334,44,Q7JYX5|Q9V3I2|M9PF16|O76902|O76742|Q9VYT6|Q9W4K0|Q8SXY6|O18333|Q9U6P7 +GO:0010257,0.187183811129848,0.512155705452502,0.129442887745046,-0.450445224306751,-1.23329055897436,28,Q7JYH3|Q9VXK7|Q7K1S1|Q9W125|Q9VPE2|Q9W3X7|Q9VQM2|Q9VTU2 +GO:0010467,0.0836908020226347,0.388634073823565,0.287805130535564,0.252501634615294,1.11617357947151,369,Q9V3B6|Q9V3V0|Q9W0R0|P36241|O16797|Q27272|P55830|A1Z968|Q9V3U6|Q8IRH5|Q9VIE7|P09180|Q9VM69|Q9VH95|Q9VP13|Q9W4X7|Q9V597|O02649|Q9VE52|Q9VW14|Q9VSA9|Q9VCH5|Q9VE08|Q9VMY1|Q7KUA4|Q9VEB3|P32234|Q9W227|Q9VNE9|Q9VJQ5|P41375|P28668|Q9VXN3|Q9VDQ3|Q7KSE4|Q9VIS4|Q8IPX7|Q9W0C3|Q9VVI2|Q9V4W1|Q9VUX1|Q9VVW7|A1ZBU5|O97454|Q94901|Q9VER6|Q9VND7|Q9VHT5|Q9VSK9|P48159|Q7KN90|Q9W1M9|Q8IP62|P41094|Q9V3W0|Q9V3P3|Q9W086|Q9VPL3|P20240|Q9U9Q2|Q9VAY2|Q9W0A8|Q9VCJ8|Q9VFT4|Q9W4I3|Q9VCX3|Q9VK69|Q9VVL8|Q3YMU0|Q9W158|Q9VLW8|Q9W087|Q9VEP9|Q24478|Q9W445|Q8T9B6|Q24276|A0A126GUP6|P05205|Q9VLM8|Q86BS3|Q9VN50|Q9W4Z2|Q9VTW6|Q9VVU2|Q9VNE2|Q9V3T8|Q7K180|Q9VXQ0|Q9VL01|Q9VHL2|Q8MR62|Q9VN25|Q7K0D8|Q9W0H8|O77263|Q7JQR3 +GO:0010468,0.735384615384615,0.941796934284413,0.0815265143256594,0.228022714750281,0.90018640060356,133,Q9V3V0|Q9W0R0|Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q9VCH5|Q7KUA4|Q9VNE9|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4|Q8IPX7|Q9W0C3|Q9VVI2|Q94901|Q9W1M9|Q9V3W0|P20240|Q9VCJ8|Q9VFT4|Q9W158|Q9VLW8|Q9VEP9|Q24478|P05205|Q86BS3|Q9VTW6|Q9VNE2|Q9V3T8|Q7K180|Q9VN25|Q7K0D8|Q9W0H8|P40796|Q03427|P22812|Q9W1H5|Q9VB68|Q9VG73|Q7K204|Q9W254|Q9VUH8|Q9W0S7 +GO:0010498,0.79902755267423,0.95678704856787,0.0463227785794633,-0.270121323987615,-0.818221324349491,48,Q7K148|Q9U9Q4|Q9VKZ8|Q9XYZ5 +GO:0010506,0.157039711191336,0.486502747943533,0.148261500475107,-0.522275542337409,-1.27746633660559,18,Q24253|A1Z7S3|Q9VND8|Q7K519|P40417|P91926 +GO:0010556,0.854938271604938,0.979893913968133,0.0738052724171275,0.21668276244516,0.859093656737842,135,Q9V3V0|Q9W0R0|Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q9VCH5|Q7KUA4|Q9VNE9|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4|Q8IPX7|Q9W0C3|Q9VVI2|Q94901|Q9W1M9|Q9V3W0|P20240|Q9VCJ8|Q9VFT4|Q9W158|Q9VLW8|Q9VEP9|Q24478|P05205|Q86BS3|Q9VTW6|Q9VNE2|Q9V3T8|Q7K180|Q9VN25|Q7K0D8|Q9W0H8|P40796|Q03427|P22812|Q9W1H5|Q9VB68|Q9VG73|Q7K204|Q9W254 +GO:0010557,0.850162866449512,0.979893913968133,0.0437125833579551,-0.25098917114434,-0.777274926069621,55,A0A0B4K7J2|O97102|Q9V3J4|P54622|Q9VP57|Q9VND8|O77477|Q27268|Q9VHM3|Q7KN75 +GO:0010558,0.299450549450549,0.645193444116935,0.130777137971974,0.307798966203758,1.07781061025515,62,Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q9VNE9|Q9VJQ5|Q7KSE4|Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9|Q9V3W0|P20240|Q9VLW8|Q24478|P05205|Q86BS3|Q9VNE2 +GO:0010564,0.450226244343891,0.787696004757963,0.0916795246008379,0.393956238462315,0.990452393091505,15,Q7KND8|P53034|Q9V3P3|P25171|Q86BS3|P92177|P08928|Q4QQ70|P48609|Q9VCC0 +GO:0010604,0.893129770992367,0.987262699375867,0.0384786917635432,-0.231065413690531,-0.765248742562571,81,A0A0B4K7J2|Q9V393|Q9XYZ5|O97102|Q9V3J4|P54622|Q9VP57|Q9VND8|O77477|Q27268|Q02748|Q9VHM3 +GO:0010605,0.845697329376855,0.979893913968133,0.0723570851036907,0.233940041280028,0.827021151579805,70,Q8IRH5|Q9VIE7|Q9VH95|Q9VP13|Q9VNE9|Q9VJQ5|Q7KSE4|Q8IPX7|Q9W0C3|Q9VVI2|Q9VLU4|Q9W1M9|Q9V3W0|P20240|Q9VLW8|Q24478|P05205|Q86BS3|Q9VNE2 +GO:0010608,0.841309823677582,0.979893913968133,0.0645031249656493,0.248806756317806,0.763864314806906,35,Q9VP13|Q9VNE9|Q9W0C3|Q94901|Q9V3W0|Q9W158|Q9VNE2|Q9VN25|P40796|Q9W1H5 +GO:0010628,0.923267326732673,0.989105910682126,0.059221919380382,0.22479992707106,0.689506212020094,34,Q9VCH5|Q7KUA4|Q9VDQ3|Q7KSE4|Q94901|Q9VCJ8|Q9VFT4|Q9W158|P40796|P22812|Q9VB68|Q7K204 +GO:0010629,0.147757255936675,0.480332993721536,0.188204146308491,0.36325310680177,1.22066214449055,50,Q9VIE7|Q9VH95|Q9VP13|Q9VNE9|Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9|Q9V3W0|Q9VLW8|Q24478|P05205|Q86BS3|Q9VNE2 +GO:0010631,0.120938628158845,0.422427477788873,0.170932335370056,-0.547586907134228,-1.3393769830754,18,Q9VU68|Q9V3I2|O76742 +GO:0010638,0.575971731448763,0.875195392842452,0.0656813601934011,-0.365043178509661,-0.922116377930167,20,P54622|Q9NBD7|Q9W0C1|Q9U6P7|X2JAU8 +GO:0010646,0.1620029455081,0.486502747943533,0.130105630751129,-0.329610897928161,-1.16195848024142,123,M9PF16|P19107|Q9U9Q4|O18332|Q9V393|Q9W552|Q9XYZ5|Q9VBP9|O97102|Q9V3J4|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9VKF0|Q9VTZ4|Q9U6P7|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q9VF24|Q9VHM3|Q08012|P25455|P40417|Q9VX98|P91926 +GO:0010647,0.241324921135647,0.58190564604608,0.107554375265169,-0.366809172166725,-1.15902031667674,59,M9PF16|Q9U9Q4|O18332|O97102|Q9V3J4|Q9VP57|Q9VND8|Q9VKF0|Q9VTZ4|Q9VW73|Q7K519|Q9VF24|Q9VHM3|Q08012|P25455|Q9VX98|P91926 +GO:0010648,0.154952076677316,0.486502747943533,0.139599673451922,-0.397892401640377,-1.22300447632909,51,P19107|Q9V393|Q9XYZ5|Q9VBP9|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9I7X6|P13677|Q9W2V2|Q02748|P23625|Q9VZU7|P42325|Q7KJ08 +GO:0010720,0.711670480549199,0.929287737573099,0.0679922591544058,0.333307927423372,0.821437140125931,14,A1Z9J3|Q7KSE4|P09208 +GO:0010817,0.442477876106195,0.77668444042419,0.0791316651768349,-0.440336043643729,-1.02154451245122,14,O18332|Q9VYT0|Q9VBC7 +GO:0010876,0.279620853080569,0.620330045685496,0.125033367555272,0.406829997889283,1.14402448741971,24,Q9VFN7|Q9VRR3|Q9VA42|P09208 +GO:0010927,0.344765342960289,0.681915387180491,0.0940503465727813,-0.452681717182657,-1.10724245732354,18,Q9VU68|Q9XYZ5|O97102|A1Z877 +GO:0010959,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0010970,0.0998217468805704,0.388634073823565,0.188204146308491,-0.610518473986917,-1.39606049146349,13,Q9U4G1|O18332|Q9VJQ6|Q9NJH0|Q94524 +GO:0010975,0.774368231046931,0.949162300118836,0.0526973085708419,-0.322314480716689,-0.779747610568709,17,O18332|Q9VND8 +GO:0012501,0.38758389261745,0.727285241860043,0.0833634065110386,-0.353373401767161,-1.04649205679757,42,P06002|P15425|O62602|P40797|Q9VEB1|Q95T12|Q9W260|Q7K485|Q9VHJ7|P23625|Q9VZU7|Q9VSD6 +GO:0015031,0.197901049475262,0.525408870376727,0.117249716749792,-0.344530594419388,-1.16752566353059,89,Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9VKC8|Q24253|Q9VYT6|O18332|O15971|Q9W552|A1Z7S3|Q7KM15|Q9V3J4|Q9GYU8|Q9W4K0|Q8SXY6|O18333|Q6NL44 +GO:0015931,0.756317689530686,0.948901184395995,0.05378728077603,-0.327564394379864,-0.792448273677144,17,A0A0B4K7J2|Q9GYU8|Q27268 +GO:0015980,0.00872031848451739,0.108686291344174,0.380730400722792,-0.470661936368202,-1.54390919212654,75,Q7JYH3|P00408|Q9VUY9|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9VEB1|Q9W125|Q9VPE2|Q9W3X7 +GO:0016032,0.0930232558139535,0.388634073823565,0.195789002148949,-0.57297934789798,-1.37373103802908,16,Q9V3I2|Q24253|O76742|O15971|O18333 +GO:0016042,0.011967402871397,0.119069614427536,0.380730400722792,-0.584257200320903,-1.59192713900583,27,A1ZBJ2|Q9W2L6|Q9VXZ8|Q9W1H8|Q5U117|Q9VDT1 +GO:0016043,0.174334140435835,0.502466447894316,0.11146266692298,-0.281686277873165,-1.11924882917655,449,P06002|Q9VU68|Q9W2N0|Q7JYH3|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|O76902|Q9VGW7|Q7K148|A0A0B4K7J2|Q9VXK7|Q9VKC8|O76742|Q9VYT6|O18332|O15971|Q9V393|Q24492|A1Z7S3|P16378|Q24372|Q9XYZ5|Q7K4T8|A1Z7B8|Q7KM15|O97102|Q9V3J4|P54622|P56538|Q9NBD7|Q9W4W8|Q9W0C1|Q9VP57|Q9VND8|O61491|A1Z877|O62602|Q24297|Q8SXX1|Q9W4K0|Q7K1S1|Q8SXY6|Q9W1G7|Q7KLW9|O18333|Q4V5I9|Q9U6P7|Q0KI98|P45888|Q9VBU9|Q9VW73|Q9VKD3|Q27268|P13677|Q9VHG6|A8JTM7|Q9Y105|Q9VLT3|Q9W125|A1Z7X8|Q9VPE2|X2JAU8|Q9VHM3|Q08012|Q9W3X7|Q9W260|Q9VDH3|P40417|Q9VX98|Q7K1M4|P81900|Q7KN75|P91926|Q0KI81|Q9VPX5|Q95RN0|P23625|Q9VQD8|Q8T3X9|P11046|P09040|Q95R34|Q9VB05|Q9VQM2|Q9VZU7|Q7KTJ7|Q7KY04|Q9VSD6|Q9VG42|Q9W1F7|Q7K012|Q9VTU2|Q9W0H3 +GO:0016049,0.186170212765957,0.512155705452502,0.133554954557592,-0.488603308132731,-1.24325626138082,21,Q9U4G1|Q9V3I2|Q9VND8|Q8SXX1 +GO:0016050,0.128925619834711,0.438329748572276,0.157402899305283,-0.441087889873895,-1.27223180091158,35,Q7JYX5|Q9V3I2|O76902|O76742|A1Z7S3|Q9V3J4|Q9W0C1|O18333|Q9U6P7 +GO:0016051,0.656474820143885,0.914662931548777,0.0602484086158019,-0.350422282181906,-0.86891109146697,19,P07486|Q9VUY9|Q9VVL5|O97479|Q9VEB1|O96299|Q9VG42|P52029 +GO:0016052,0.0344657790602686,0.251472536106404,0.321775918075361,-0.627207422764208,-1.51734879594575,17,O62619|P07486|Q9VUY9|Q7JYW9|Q9VH77|O97479|O96299|Q9W330|P52029 +GO:0016053,0.750853242320819,0.948192876520521,0.051530912208539,-0.308790084501425,-0.826629645027912,25,O62619|Q9VJ31|Q9VNW6 +GO:0016054,0.0214590624261454,0.180659628117549,0.352487857583619,-0.482024727788299,-1.46681914631305,49,Q9VZX9|A1ZBJ2|Q9W1H8|Q5U117|Q9VNX4|Q9VZI8|Q9VSL9|Q9VDT1|O97479|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0016055,0.397137745974955,0.727285241860043,0.0855356947987884,-0.436904237627916,-1.04748786160922,16,Q9W552|P16378|O62602|Q9VKF0|P25455 +GO:0016070,0.0478638411412483,0.334367968256238,0.321775918075361,0.305761768463432,1.22475605804492,162,Q9V3B6|Q9V3V0|Q9W0R0|Q27272|Q8IRH5|Q9VM69|Q9VP13|Q9VE52|Q9VW14|Q9VCH5|Q9VE08|Q9VEB3|Q9VJQ5|P28668|Q9VXN3|Q9VDQ3|Q7KSE4|Q9VIS4|Q8IPX7|Q9W0C3|Q9VVI2|O97454|Q94901|Q9VND7|Q9VSK9|Q7KN90|Q9W1M9|Q9V3W0|Q9V3P3|P20240|Q9U9Q2|Q9VVL8|Q9VLW8|Q9W087|Q9VEP9|Q24478|P05205|Q9VLM8|Q9VRJ6|Q9VTW6|Q9V3T8|Q7K180 +GO:0016071,0.0133236930429799,0.12801172901806,0.380730400722792,0.417554959961408,1.48461463410749,71,Q9V3B6|Q9V3V0|Q9W0R0|Q9VE52|Q8IPX7|Q9W0C3|Q9VVI2|O97454|Q94901|Q9VND7|Q9W1M9|Q9V3W0|Q9V3P3|Q9U9Q2|Q9W087|Q9VEP9|Q9VTW6|Q9V3T8|Q9VLV5|Q9V3E7|Q9W1H5|Q9VG73|Q7K204|Q9W254|Q9VPU4|Q9VUH8|Q9W0S7 +GO:0016072,0.151241534988713,0.483678285597022,0.170932335370056,0.511349730591022,1.30966599532454,16,Q9VM69|Q9VW14|Q9VEB3|Q8IPX7|Q9W1M9 +GO:0016079,0.491007194244604,0.82010582010582,0.0745500777420554,-0.438930053251078,-0.978345185893027,12,Q9NHE5|Q9W0C1|Q9U6P7 +GO:0016192,0.0151175567629607,0.140479183127512,0.380730400722792,-0.394382441492596,-1.39543338085611,128,Q7JYX5|Q9V3A8|Q9V3I2|Q9VLB7|O76902|P19107|Q9W3K6|Q9NHE5|Q24253|O76742|Q9VYT6|O18332|O15971|Q9V393|Q9W552|A1Z7S3|Q9V3J4|Q9W0C1|O61491|Q8SXX1|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q9U6P7|Q9VW73|P13677|Q9W2V2|A8JTM7|Q9VLT3|Q95TN1|Q08012|Q95T12 +GO:0016197,0.718801996672213,0.92937143632908,0.0523759084097997,-0.300326632483881,-0.834234316864506,29,Q9V3I2|O76742|Q9W552|Q9VW73|Q95T12|Q9VPX5 +GO:0016226,0.861510791366906,0.979893913968133,0.0476387259290825,-0.315707556304595,-0.70369063492668,12,Q9VKD3|Q8T3X9|Q8SY96|A8JNT7 +GO:0016236,0.479661016949153,0.813194667289011,0.0727141077934447,-0.362381015349001,-0.984971886355657,26,Q7JYX5|O76742|O18332|Q9VND8|O18333 +GO:0016310,0.887019230769231,0.98280533442935,0.0597317976364411,0.252441958761456,0.71419149316371,25,P10676|O61444 +GO:0016311,0.550724637681159,0.859689014446818,0.069119845655101,-0.42696492155317,-0.920949161111622,10,B7Z0Q1|Q86BN8|Q0KI81 +GO:0016331,0.727436823104693,0.939089476747212,0.0555947097758869,-0.336845891061144,-0.823912382587753,18,Q9V3I2|Q24372 +GO:0016358,0.303754266211604,0.646215879521447,0.0982123351217438,-0.410471857579756,-1.09883128686904,25,Q9V3I2|O18332|O97102|Q0KI98|Q9Y105 +GO:0016477,0.103678929765886,0.393183516782171,0.178219874951973,-0.460369782550561,-1.31681066755341,34,Q9VU68|Q9V3I2|O76742|O18332|Q9NBD7|O62602|P13677|Q08012|Q9VQD8|P11046 +GO:0016485,0.18705035971223,0.512155705452502,0.134273452883202,-0.566514829693243,-1.26272296066806,12,A0A0B4K692|Q8T4G5|Q9VBC7|Q9W4W8 +GO:0016567,0.233812949640288,0.575764388489209,0.118287526124085,-0.541309595701042,-1.20654221124585,12,Q9VKZ8|Q9XYZ5|Q7KLW9 +GO:0017004,0.950276243093923,0.989105910682126,0.0442407423477375,-0.264596951330765,-0.575657787995462,11,A1Z7B8 +GO:0018193,0.0263297709235181,0.212580527538241,0.352487857583619,-0.627481327633701,-1.53479573122109,18,P46415|Q9VGW7|Q9V393|P15425|O97102 +GO:0018958,0.691943127962085,0.929213406058111,0.0711327399327894,0.30454666611195,0.856399098890741,24,Q9V521|Q7KUA4|Q9VLU4|Q7K2W6|Q9XZ63|Q9VER6 +GO:0019058,0.0463458110516934,0.326075884899414,0.282013350011725,-0.667883981133477,-1.52723705943381,13,Q9V3I2|Q24253|O76742|O15971|O18333 +GO:0019094,0.967914438502674,0.989105910682126,0.0419081748591401,-0.229543740760904,-0.524893121491197,13,Q7KM15 +GO:0019219,0.941176470588235,0.989105910682126,0.0354665010333725,-0.219954847483108,-0.713621238371405,69,Q9VGW7|Q95RQ8|Q9W403|Q9V3J4|P54622|Q9VP57|Q7KLW9|Q27268|Q9VHG6|Q02748|Q9VHM3 +GO:0019222,0.621508379888268,0.893164380376657,0.051011413203915,-0.253759263657736,-0.942514510569303,197,P46415|Q9VGW7|A0A0B4K7J2|Q95RQ8|Q9U9Q4|Q24253|Q9V393|Q9VKZ8|A1Z7S3|Q9XYZ5|Q9W403|O97102|Q9V3J4|P54622|Q9VP57|Q9W3W4|Q9VND8|Q7JV69|Q9VKF0|Q9VIF2|Q0E8C8|Q7KLW9|Q9W074|Q9VW73|O77477|Q7K519|Q27268|Q9VHG6|Q02748|Q9VHM3|Q9VW68|P40417|P81900|Q7KN75|P91926|Q9W5P1|Q95RN0|Q9VZU7|Q9VW54|Q9VG42|Q7K012|Q9W0H3|Q7JVK6 +GO:0019318,0.0620689655172414,0.378494348201992,0.237793834423688,-0.533413000517756,-1.41167514467235,24,O62619|P07486|Q9VUY9|Q7JYW9|Q9VH77|O97479|Q9VEB1|O96299|Q9W330|Q9VG42|P52029 +GO:0019319,0.467625899280576,0.801063497028464,0.0770736734944102,-0.447794087476647,-0.998102514305478,12,P07486|O97479|Q9VEB1|O96299|Q9VG42|P52029 +GO:0019320,0.00984004076804823,0.109296976575453,0.380730400722792,-0.735142472518359,-1.63858248850056,12,O62619|P07486|Q9VUY9|Q7JYW9|Q9VH77 +GO:0019362,0.0117143076499196,0.117740745256845,0.380730400722792,-0.651175200389022,-1.61466146097562,19,Q9VAJ9|O62619|P07486|Q9VUY9|Q7JYW9|Q7K569|P54385|Q9VEB1|Q9VGF7|Q8MLS2|Q9W330|P52029 +GO:0019395,0.00850128198721852,0.108686291344174,0.380730400722792,-0.666033329357287,-1.651503847192,19,A1ZBJ2|Q9W1H8|Q5U117|Q9VDT1 +GO:0019538,0.977611940298507,0.990686997113199,0.0238622865877092,-0.199648652294362,-0.786706787220558,394,Q9VM10|P46415|Q9V3I2|Q9VGW7|Q7K148|A0A0B4K692|Q95R98|Q9U9Q4|Q8T4G5|Q24319|Q9V393|Q9VKZ8|P15425|Q9XYZ5|Q9VBP9|Q7K3V6|Q9VBC7|O97102|Q9VT23|P56538|Q9W4W8|Q9VY87|O77410|Q9VND8|Q9VAQ4|Q7JV69|O62602|Q9VVU5|Q86BN8|Q9VKF0|Q9VN01|Q0E8C8|Q7KLW9|Q9W074|Q9V3Z4|Q4V5I9|Q8SXF0|Q0KI98|Q9VBU9|Q9VM33|A1Z9E3|Q7K3J0|O77477|Q9VQ35|P13677|Q9Y105|O97125|Q9W1B9|Q02748|P13060|P05812|Q9VF89|Q9NJH0|P40417|Q9VX98|P81900|Q9VXC9|Q7KN75|Q7K485|Q8WTC1|Q0KI81|Q9VAG3 +GO:0019637,0.00012970459024831,0.0124783851786079,0.518848077743792,-0.524162542593602,-1.78269129310336,92,Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q9W2L6|Q95TK5|Q9VXZ8|Q9VF86|P35381|Q7JYW9|Q9VA09|Q7K569|Q9VH77|B7Z0Q1|Q86BN8|Q9VC18|Q8SXX1|Q9VTZ4|P32748|O97479|P54385|Q9VEB1|Q7KTW5|Q9VGF7|P25455|Q01637|P54352|Q8MLS2|Q9VFP6|Q9VB64|Q9W330|Q9V470 +GO:0019646,0.000143403815480376,0.0124783851786079,0.518848077743792,-0.612468158857108,-1.88254738417519,51,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0019693,0.0110392458531446,0.115677203886675,0.380730400722792,-0.54700140233011,-1.54693542149548,33,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9|Q9VA09 +GO:0019725,0.598993288590604,0.887109920975341,0.0613026075396207,-0.316263957205174,-0.922752455797693,38,A0A0B7P9G0|Q9W4P5|Q8IQ70|Q7JYW9 +GO:0019730,0.882671480144404,0.98280533442935,0.0466948041282054,-0.284541718046634,-0.688367225265935,17,O97102|Q9GYU8 +GO:0019748,0.622065727699531,0.893164380376657,0.0760837160951725,0.317492618127118,0.887514681936332,23,Q9V521|Q7KUA4|Q9VLU4|Q7K2W6|Q9VER6 +GO:0019751,0.546875,0.855600826189061,0.0802023444698144,0.351219622331695,0.925871060044949,18,P20007|P48611|P48596 +GO:0019752,0.00413632929077596,0.0831486602329454,0.407017918923954,-0.447206147708439,-1.55956164723371,110,Q9VZX9|O62619|P07486|Q9VUY9|Q7K5K3|A1ZBJ2|Q94523|Q9VXZ8|Q9W1H8|P05031|Q5U117|Q9VNX4|Q7JYW9|Q9VJ31|Q9VZI8|Q9VSL9|Q9VDT1|Q9VNW6|Q9I7X6|O97479|P54385|Q9VEB1|Q9VW68|Q9VY42|Q9VHD3 +GO:0019827,0.767857142857143,0.949162300118836,0.0630790410571939,0.300345743962511,0.781563762833412,17,Q9VCH5|Q9V4S8|P09208|P20240 +GO:0019915,0.614130434782609,0.887294031008771,0.0637845390312975,-0.403750358248614,-0.870876118756921,10,P35381|A1Z7S3 +GO:0019941,0.791530944625407,0.95678704856787,0.0469758727821845,-0.264715019363198,-0.819781770531925,55,Q7K148|Q9U9Q4|Q9VKZ8|Q9XYZ5|Q9VBP9 +GO:0019953,0.282934131736527,0.624175077809637,0.0946646223153342,-0.306683720430074,-1.08513122245911,128,Q9VU68|Q9V3I2|A0A0B4K7J2|Q5U117|O76742|O18332|O15971|Q24492|Q7KM15|Q9VAY3|Q9NBD7|Q9VJQ6|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074 +GO:0021700,0.883642495784148,0.98280533442935,0.0435378240914002,-0.251824875815748,-0.741094278479207,41,P05031|Q7KM15|Q9NBD7|O62602|Q8SXY6|A8JTM7 +GO:0022008,0.133233532934132,0.44637765285755,0.14641623786055,-0.34497922198877,-1.20365089322129,114,P06002|Q9VU68|Q9U4G1|Q9V3I2|M9PF16|O18332|P16378|Q9VBC7|O97102|Q9NBD7|Q9VND8|Q09101|Q0KI98|Q9Y105|Q08012|Q95T12|Q9W260|P40417|P81900|Q0KI81|P23625|P54352|P11046|Q9VZU7|Q7KTJ7|Q9VSD6|Q7K012 +GO:0022402,0.741784037558686,0.947674808035415,0.0481183992657975,-0.265859055124427,-0.843791659107195,61,Q7K148|Q95RQ8|O18332|O97102|Q9NBD7|Q9VND8 +GO:0022411,0.0078527898179633,0.108686291344174,0.380730400722792,-0.648849711376961,-1.65100492145134,21,Q9VU68|Q9W2N0|Q7JYX5|M9PF16|O18332 +GO:0022412,0.0449775112443778,0.32103513460661,0.261663521711573,-0.407900783923381,-1.38227095392604,89,Q9VU68|Q9V3I2|A0A0B4K7J2|O76742|O15971|Q9XYZ5|Q7KM15|O97102|Q9VAY3|Q9NBD7|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|Q02748|Q9VHM3|Q08012|P40417|P91926|Q7K485|Q9W1F8|Q94524|Q9VB05|Q7KY04 +GO:0022414,0.0803443328550933,0.388634073823565,0.188204146308491,-0.348527843223682,-1.25630594717333,152,Q9VU68|Q9V3I2|A0A0B4K7J2|A0A0B4K692|Q5U117|O76742|Q9VR25|O18332|O15971|Q24492|Q9XYZ5|Q7KM15|O97102|Q9VAY3|Q9NBD7|Q9VJQ6|Q7K0P0|O62602|Q9VVU5|Q9VK11|Q8SXY6|Q9VN73|Q9W1G7|Q9W074|P13677|Q02748|Q9VHM3|Q08012|Q9VDH3|P40417|P91926|Q7K485 +GO:0022603,0.883495145631068,0.98280533442935,0.0603786357920401,0.248308921727333,0.711795974616478,26,A1Z9J3|Q9V3Y0|P38040 +GO:0022604,0.568627450980392,0.875127485306333,0.0667426134241917,-0.409705674873871,-0.936865844672301,13,O18332 +GO:0022607,0.483827493261456,0.816044659011188,0.0610363728309177,-0.264456921917844,-0.999320532462211,240,Q9VU68|Q9W2N0|Q7JYH3|Q9V3I2|M9PF16|A0A0B4K7J2|Q9VXK7|O76742|O18332|P16378|Q24372|Q9XYZ5|A1Z7B8|Q7KM15|O97102|P56538|Q9NBD7|Q9VND8|O61491|A1Z877|Q24297|Q7K1S1|Q9W1G7|Q4V5I9|P45888|Q9VBU9|Q9VKD3|Q9VLT3|Q9W125|Q9VPE2|X2JAU8|Q9VHM3|Q9W3X7|Q9VDH3|P40417|Q9VX98|Q9VQD8|Q8T3X9|P11046|Q9VB05|Q9VQM2|Q9VZU7|Q7KTJ7|Q9VG42|Q9VTU2|Q9VFU7|Q9V9U7|O61604|Q9VPC2|Q8SY96|Q9VH25|Q00174 +GO:0022613,0.787286063569682,0.95678704856787,0.0662842187012672,0.25948631739362,0.833415697072383,41,Q9VM69|Q9VH95|Q9VW14|Q9VEB3|P41375|Q8IPX7|Q9W1M9|Q9VLW8|Q9W445|Q9VVU2|Q9VN25 +GO:0022618,0.865566037735849,0.982539590941691,0.059989249649033,0.25863464912522,0.718169335810028,22,Q9VH95|Q9VEB3|P41375|Q9VLW8|Q9W445|Q9VN25|Q9VLV5 +GO:0022898,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0022900,4.80155041528347e-05,0.0124783851786079,0.557332238758646,-0.615593422690916,-1.93006225630141,57,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|P35381|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0022904,0.000152666684471212,0.0124783851786079,0.518848077743792,-0.607449558464748,-1.88381511109499,53,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0023051,0.1620029455081,0.486502747943533,0.130105630751129,-0.329610897928161,-1.16195848024142,123,M9PF16|P19107|Q9U9Q4|O18332|Q9V393|Q9W552|Q9XYZ5|Q9VBP9|O97102|Q9V3J4|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9VKF0|Q9VTZ4|Q9U6P7|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q9VF24|Q9VHM3|Q08012|P25455|P40417|Q9VX98|P91926 +GO:0023052,0.000758780158087057,0.0286609755926455,0.477270815362862,-0.401653859859058,-1.50777552389215,221,P06002|Q9VM10|Q9V3I2|Q9VLB7|M9PF16|A0A0B4K7J2|P19107|Q0KIE7|Q9U9Q4|Q9V3N7|Q9NHE5|Q9VW59|Q9VA09|O76742|O18332|O17444|O15971|Q9V393|Q9W552|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|Q9W3J1|O97102|Q9VH66|Q9V3J4|Q9W0C1|Q9VP57|Q9VND8|P29829|O61491|O62602|Q8SXX1|Q9VKF0|O18333|Q9VTZ4|Q9U6P7|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q7KTW5|Q9VF24|X2JAU8|Q9VHM3|Q08012|P25455|P40417|Q9VX98|P81900|P91926|Q0KI81|P23625|Q9VZI3|P09040|Q9VB05|Q9VFP6|Q9VZU7 +GO:0023056,0.241324921135647,0.58190564604608,0.107554375265169,-0.366809172166725,-1.15902031667674,59,M9PF16|Q9U9Q4|O18332|O97102|Q9V3J4|Q9VP57|Q9VND8|Q9VKF0|Q9VTZ4|Q9VW73|Q7K519|Q9VF24|Q9VHM3|Q08012|P25455|Q9VX98|P91926 +GO:0023057,0.154952076677316,0.486502747943533,0.139599673451922,-0.397892401640377,-1.22300447632909,51,P19107|Q9V393|Q9XYZ5|Q9VBP9|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9I7X6|P13677|Q9W2V2|Q02748|P23625|Q9VZU7|P42325|Q7KJ08 +GO:0023061,0.25,0.587728869037472,0.11146266692298,-0.445452775928281,-1.16701156350481,23,Q9VLB7|Q9NHE5|O18332|Q9W0C1|Q9U6P7 +GO:0030001,0.0762411347517731,0.388634073823565,0.216542836735348,-0.544311683653215,-1.38500680937011,21,Q9V4E7|A0A0B7P9G0|Q8IQ70|Q9VAY3 +GO:0030003,0.624548736462094,0.893164380376657,0.0628003977812234,-0.370029052461754,-0.895179356684474,17,Q9W4P5|Q8IQ70 +GO:0030029,0.695299837925446,0.929213406058111,0.0526973085708419,-0.287828380634409,-0.875872450577377,49,Q9VU68|Q9W2N0|M9PF16 +GO:0030030,0.188271604938272,0.513326384752829,0.122679189568808,-0.355856329719282,-1.17314747612058,80,Q9VU68|Q9U4G1|Q9V3I2|M9PF16|O18332|P16378|O97102|Q9NBD7|Q9VND8|Q0KI98|P45888|Q9Y105|Q9W260|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0030031,0.254464285714286,0.5925468591692,0.127505315300183,0.438428763607777,1.15576829512209,18,A1Z9J3|P45594|Q9VD64|Q9VNE2|Q9VMH2|Q9NCC3|P32392|Q9VQV7 +GO:0030036,0.679092382495948,0.919630799332206,0.05378728077603,-0.293003442200322,-0.887533279405586,48,Q9VU68|Q9W2N0|M9PF16 +GO:0030041,0.101083032490975,0.390457988249451,0.188204146308491,-0.5664376954695,-1.37033383854267,17,Q9VU68|Q9W2N0 +GO:0030097,0.105263157894737,0.393183516782171,0.208955027549354,0.559854907469449,1.37976200455929,14,Q7K486|Q9VCH5|Q9VCE1|Q8IPX7 +GO:0030100,0.69434628975265,0.929213406058111,0.0567672387487446,-0.330438931216917,-0.834704408461627,20,Q9V393|O61491|Q8SXX1|P13677|A8JTM7|Q08012|P91926|Q9VPX5|Q7KY04 +GO:0030111,0.60427807486631,0.887294031008771,0.0637845390312975,-0.39471344656962,-0.902583413416972,13,Q9W552|O62602|Q9VKF0|P25455 +GO:0030154,0.0733056708160443,0.388634073823565,0.193813302725311,-0.329438293419561,-1.22501496597991,196,P06002|Q9VU68|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|A0A0B4K7J2|O76742|O18332|O15971|P16378|Q9VBC7|Q7KM15|O97102|Q9VAY3|Q9NBD7|Q9VND8|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|O18333|Q9VTZ4|Q09101|Q0KI98|Q9VEB1|Q9Y105|Q02748|Q9VHM3|Q08012|Q95T12|Q9W260|P40417|P81900|P91926|Q7K485|Q0KI81|Q9W1F8|P23625|P54352|Q94524|P11046|Q9VB05|Q9VZU7|Q7KTJ7|Q7KY04|Q9VSD6 +GO:0030162,0.710169491525424,0.929287737573099,0.05378728077603,-0.307885872066809,-0.836851036194156,26,Q9U9Q4|Q9VKZ8|Q7JV69|Q0E8C8|Q02748|Q9VZU7|Q7YTY6|Q494G8 +GO:0030163,0.715976331360947,0.929287737573099,0.0808589150280032,0.249505634947182,0.887116074418328,71,Q9VVB4|Q9VE24|Q9V3U6|Q7KMQ0|Q9VGE7|P18053|Q7K0S6|Q8T0Q4|Q9V3W9|Q9XTL2|Q9V436|Q9V3P3|Q9VJJ0|Q9VBI3|Q9VAY2 +GO:0030182,0.0719640179910045,0.388634073823565,0.204294756516886,-0.37731023325701,-1.30361943657038,103,P06002|Q9VU68|Q9U4G1|Q9V3I2|M9PF16|O18332|P16378|Q9VBC7|O97102|Q9NBD7|Q9VND8|Q09101|Q0KI98|Q9Y105|Q08012|Q95T12|Q9W260|P40417|P81900|Q0KI81|P23625|P11046|Q9VZU7|Q7KTJ7|Q9VSD6|Q7K012|Q7KJ08 +GO:0030198,0.464852607709751,0.799092179047302,0.0899860794997137,0.411774234125672,0.998162035244928,13,O97365|A1ZBD8|Q9VAF5|Q9VR79 +GO:0030258,0.0039727651228108,0.0831486602329454,0.407017918923954,-0.66777115937352,-1.69915074507667,21,A1ZBJ2|Q9W1H8|Q5U117|B7Z0Q1|Q9VDT1 +GO:0030334,0.586666666666667,0.878216818642351,0.0762797180809272,0.39863052619762,0.906844384163201,10,P48596|P09208|Q9XTL2|Q960X8 +GO:0030431,0.390625,0.727285241860043,0.0992333343771191,0.40008306107763,1.04110156027639,17,Q9VK99|P09208|Q9VKA1|Q9VVE2|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0030534,0.0694915254237288,0.386718375945609,0.222056046145248,-0.515955397688682,-1.402395654881,26,P06002|Q7K569|P25455|P40417|P81900|Q9VCW6|P23625|P09040 +GO:0030705,0.0920353982300885,0.388634073823565,0.195789002148949,-0.607972406563115,-1.41044750846881,14,Q9U4G1|O18332|Q9VJQ6|Q9NJH0|Q94524 +GO:0030707,0.303182579564489,0.646215879521447,0.0972150808846466,-0.405130825163888,-1.12871487587329,30,Q9VU68|Q9V3I2|O76742 +GO:0030718,0.372997711670481,0.71064360927548,0.103576326612592,0.427429443033503,1.05339954559521,14,Q9VCH5|Q9V4S8|P09208|P20240 +GO:0030832,0.24070796460177,0.58190564604608,0.115240003147781,-0.5146200607293,-1.1938775092885,14,Q9VU68|Q9W2N0 +GO:0030833,0.0641711229946524,0.378494348201992,0.237793834423688,-0.639577864195642,-1.46251002297643,13,Q9VU68|Q9W2N0 +GO:0030855,0.32943143812709,0.666250166600027,0.0922597260527354,-0.377762778717996,-1.09235826075756,36,Q9VU68|Q9V3I2|O76742|P16378 +GO:0030951,0.972826086956522,0.989105910682126,0.0424170054438747,-0.238605968461725,-0.514665152564968,10,Q9NBD7 +GO:0030952,0.952914798206278,0.989105910682126,0.0531298054705469,0.252802843577067,0.609534396890782,12,Q9VLS5|P38040|P92177|A1Z6P3|Q7K2D2|P17210 +GO:0031023,0.353571428571429,0.696535714285714,0.0919686140000427,-0.465772709142773,-1.09910373670109,15,Q7K148|Q9NBD7 +GO:0031032,0.522361359570662,0.846259768383392,0.0711327399327894,-0.401104364343312,-0.961656849952368,16,Q9VU68 +GO:0031047,0.501128668171558,0.823807367149759,0.0855356947987884,0.379730129249779,0.972562627741727,16,Q9VH95|Q9VP13|Q9VLW8|P05205|Q9W1H5|Q9VUH8|Q9W0S7 +GO:0031163,0.861510791366906,0.979893913968133,0.0476387259290825,-0.315707556304595,-0.70369063492668,12,Q9VKD3|Q8T3X9|Q8SY96|A8JNT7 +GO:0031175,0.244131455399061,0.584078667786727,0.106323255932708,-0.356042072729013,-1.13716666691283,65,Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q0KI98|Q9Y105|Q9W260|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08|Q00174|Q9VFM9|P51140 +GO:0031344,0.972568578553616,0.989105910682126,0.0571258510018113,0.197399262924012,0.582232253382493,29,A1Z9J3|Q9VAF5 +GO:0031346,0.851520572450805,0.979893913968133,0.047925896705813,-0.298227172813484,-0.715006439901376,16,O18332|Q9VND8 +GO:0031347,1,1,0.0376142599562161,-0.177242393285886,-0.524891674851315,42,Q9V393|O97102|Q0E8C8|Q9W074|Q9VSL5 +GO:0031348,0.942446043165468,0.989105910682126,0.0435378240914002,-0.252558762100082,-0.626247589820816,19,Q9V393|Q0E8C8|Q9VSL5 +GO:0031349,0.992647058823529,0.997711584633853,0.0553642837725362,0.172770795103955,0.499776226561887,27,Q7KUA4|Q9VER6|Q9VCJ8|Q9VN50|Q9NCC3|P22812|Q9VB68 +GO:0031399,0.160220994475138,0.486502747943533,0.148261500475107,-0.603238548634691,-1.31240729265448,11,P46415|Q9V393|Q9VKF0|P81900 +GO:0031507,0.665903890160183,0.918648924100533,0.0713052987340038,0.344593574362871,0.849250608644722,14,Q9VIE7|Q24478|P05205|Q86BS3|Q03427|Q9VUH8|P08928 +GO:0031647,0.676785714285714,0.919630799332206,0.0584693210386381,-0.35368648139407,-0.834609082263176,15,Q9V393|Q9VVU5|Q9VZU7|Q7JVK6|Q494G8 +GO:0031667,0.885813148788927,0.98280533442935,0.0445961615888961,-0.274334382989989,-0.709632544423604,22,P16378|Q9VND8|Q9I7X6|Q7K519|O97125|P40417|Q9VG42|Q7JVK6 +GO:0031669,0.677536231884058,0.919630799332206,0.0590954798717342,-0.380537314833993,-0.820806354754352,10,Q9I7X6|Q7K519|P40417|Q9VG42 +GO:0031929,0.0719424460431655,0.388634073823565,0.224966093540314,-0.655271685484515,-1.46055594552572,12,Q9V3J4|Q9VND8|Q8SXX1|Q9I7X6|Q9VW73|Q7K519|Q08012 +GO:0032006,0.0847145488029466,0.388634073823565,0.208955027549354,-0.671908323973015,-1.46180542734421,11,Q9V3J4|Q9VND8|Q8SXX1|Q9I7X6|Q9VW73|Q7K519|Q08012 +GO:0032101,0.841091492776886,0.979893913968133,0.0435378240914002,-0.258327614612645,-0.790369619863635,50,P19107|Q9V393|O97102|Q9VND8|P29829|Q0E8C8|Q9W074|P13677|Q9VSL5 +GO:0032102,0.718965517241379,0.92937143632908,0.0540088272801684,-0.316456521660423,-0.837500783752672,24,P19107|Q9V393|P29829|Q0E8C8|P13677|Q9VSL5|P23625 +GO:0032103,0.992647058823529,0.997711584633853,0.0553642837725362,0.172770795103955,0.499776226561887,27,Q7KUA4|Q9VER6|Q9VCJ8|Q9VN50|Q9NCC3|P22812|Q9VB68 +GO:0032222,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0032271,0.0983899821109124,0.388634073823565,0.190023305279108,-0.570388306983266,-1.36751895841678,16,Q9VU68|Q9W2N0|Q9NBD7 +GO:0032386,0.47463768115942,0.807867473960302,0.0766746872490091,-0.463596510625099,-0.999962282618789,10,A0A0B4K7J2|Q9GYU8|Q9NJH0 +GO:0032409,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0032411,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0032412,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0032414,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0032434,0.622467771639042,0.893164380376657,0.0639271933359996,-0.39921263392543,-0.868528003174444,11,Q9U9Q4|Q02748|Q9VZU7 +GO:0032446,0.656474820143885,0.914662931548777,0.0602484086158019,-0.351122284847077,-0.870646826067053,19,Q9VKZ8|Q9XYZ5|O97102|Q7KLW9 +GO:0032482,0.0018886557540678,0.0489559452041259,0.45505986738723,-0.767001758372517,-1.75388771572184,13,Q9V3I2|O76742|O18332|O15971|A1Z7S3|O18333 +GO:0032501,0.148883374689826,0.480607752360203,0.12384217120105,-0.287433909626037,-1.1333861117089,387,P06002|Q9VU68|Q0E8E8|A0A0B7P9G0|P46415|Q9U4G1|Q9V3I2|M9PF16|Q9VGS3|Q9W4P5|Q9W1H8|A0A0B4K7J2|Q9VXK7|P19107|A0A0B4K692|P05031|Q5U117|Q8IQ70|Q9V3N7|Q24253|O76742|Q9VR25|O18332|Q9V393|P16378|Q24372|Q9I7Q5|Q9VBC7|Q7KM15|O97102|Q9VAY3|Q7JZV0|Q9V3J4|Q7K569|Q9NBD7|Q9W3W4|Q9VND8|Q7K0P0|A1Z877|O62602|A8DRW0|Q9VVU5|Q8SXX1|Q9VIF2|Q8SXY6|Q9W074|Q9VTZ4|A1Z8Z3|Q09101|Q0KI98|P45888|P40797|Q9VEB1|Q7K5J8|A1Z8H1|P13677|A8JTM7|Q9Y105|O97125|Q9VLT3|Q02748|Q9VF24|X2JAU8|Q9VW68|Q08012|P25455|Q95T12|Q9W260|Q9VLB1|Q9VDH3|P40417|P81900|Q9VCW6 +GO:0032502,0.370744010088272,0.71064360927548,0.0707899094502623,-0.265556624657042,-1.03782493468802,355,P06002|Q9VU68|Q0E8E8|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|Q9W4P5|A0A0B4K7J2|P05031|Q5U117|Q24253|O76742|O18332|O15971|P16378|Q24372|Q9XYZ5|Q9I7Q5|Q9VBC7|Q7KM15|O97102|Q9VAY3|Q7JZV0|Q9V3J4|Q9NBD7|Q9VJQ6|Q9VND8|A1Z877|O62602|A8DRW0|Q9VVU5|Q8SXX1|Q9W4K0|Q9VKF0|Q8SXY6|Q9W1G7|Q9W074|O18333|Q9VTZ4|A1Z8Z3|Q09101|Q0KI98|P45888|P40797|Q9VEB1|Q7K5J8|A1Z8H1|P13677|A8JTM7|Q9Y105|Q9VLT3|Q02748|Q9VF24|X2JAU8|Q9VHM3|Q08012|Q95T12|Q9W260|Q9VLB1|P40417|P81900|P91926|Q7K485|Q0KI81|Q9W1F8|P23625|P54352|Q94524|Q9VZI3|P11046|Q9VB05|Q9VZU7|Q7KTJ7|Q7KY04|Q9VSD6 +GO:0032509,0.428057553956835,0.762453328476459,0.0817515582532145,-0.459866951595307,-1.02501210594302,12,Q9V3I2|O76742 +GO:0032535,0.541038525963149,0.853814898419865,0.066132620475844,-0.33979641473393,-0.946689919048859,30,Q9VU68|Q9W2N0|Q9VND8|O62602|X2JAU8|Q08012|P40417|Q9VQD8 +GO:0032543,1,1,0.035996889024589,-0.195514372777606,-0.594957496652604,49,Q7K3V6|Q8SXF0|Q9VM33|A1Z9E3|O77477|Q9VQ35|Q9VF89|Q8WTC1|Q9VV39 +GO:0032774,0.0856269113149847,0.388634073823565,0.271288554688953,0.313235225637688,1.23572732611539,130,Q9V3B6|Q9V3V0|Q9W0R0|Q27272|Q8IRH5|Q9VM69|Q9VP13|Q9VE52|Q9VW14|Q9VCH5|Q9VE08|Q9VEB3|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4|Q9VIS4|Q8IPX7|O97454|Q94901|Q9VND7|Q9VSK9|Q9W1M9|Q9V3P3|P20240|Q9U9Q2|Q9VLW8|Q9W087|Q9VEP9|Q24478|P05205|Q9VTW6|Q9V3T8|Q7K180|Q7K0D8|Q9W0H8|O77263 +GO:0032787,0.00636160604848418,0.106750984681727,0.407017918923954,-0.506129746426659,-1.58686217942256,57,O62619|P07486|Q9VUY9|Q7K5K3|A1ZBJ2|Q9VXZ8|Q9W1H8|Q5U117|Q7JYW9|Q9VZI8|Q9VDT1 +GO:0032868,0.532976827094474,0.853629552338304,0.0699458736501659,-0.424693622927049,-0.971138488362354,13,Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0032869,0.532976827094474,0.853629552338304,0.0699458736501659,-0.424693622927049,-0.971138488362354,13,Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0032870,0.184115523465704,0.509420760150895,0.135740943810425,-0.505459894532337,-1.23633589441974,18,A0A0B4K7J2|Q9VP57|Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0032879,0.228915662650602,0.570840323318591,0.107972360317345,-0.352427029705943,-1.14901859918077,72,A0A0B4K7J2|Q9NHE5|O18332|Q9V393|Q7KM15|O97102|Q9GYU8|Q9W0C1|O61491|Q8SXX1|O18333|Q9U6P7|P13677|A8JTM7|Q08012|P25455|Q9NJH0|P91926|Q9VPX5 +GO:0032880,0.0263297709235181,0.212580527538241,0.352487857583619,-0.626837685111942,-1.53322140581678,18,A0A0B4K7J2|O18332|Q7KM15|O97102|Q9GYU8|O18333 +GO:0032886,0.757194244604317,0.948901184395995,0.0535669384770951,-0.353352481899286,-0.787598609457191,12,M9PF16|Q9NBD7 +GO:0032940,0.194630872483221,0.520954916836884,0.126253987849115,-0.402379206333094,-1.19161951958555,42,Q7JYX5|Q9VLB7|Q9NHE5|O76742|O18332|O15971|Q9W0C1|O18333|Q9U6P7 +GO:0032956,0.267730496453901,0.603465764318289,0.108394255853397,-0.450751681552754,-1.14694239905997,21,Q9VU68|Q9W2N0 +GO:0032970,0.267730496453901,0.603465764318289,0.108394255853397,-0.450751681552754,-1.14694239905997,21,Q9VU68|Q9W2N0 +GO:0032981,0.187183811129848,0.512155705452502,0.129442887745046,-0.450445224306751,-1.23329055897436,28,Q7JYH3|Q9VXK7|Q7K1S1|Q9W125|Q9VPE2|Q9W3X7|Q9VQM2|Q9VTU2 +GO:0032984,0.00506832428615689,0.0922225644171047,0.407017918923954,-0.712810182256846,-1.70897864850052,16,Q9VU68|Q9W2N0|Q7JYX5|M9PF16 +GO:0032989,0.344765342960289,0.681915387180491,0.0940503465727813,-0.452681717182657,-1.10724245732354,18,Q9VU68|Q9XYZ5|O97102|A1Z877 +GO:0033036,0.878116343490305,0.98280533442935,0.0347156757446657,-0.225248246691665,-0.834915719160126,191,Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9VKC8|Q0KIE7|Q24253|Q9VYT6|O18332|O15971|Q9W552|A1Z7S3|Q7KM15|O97102|Q9V3J4|Q9GYU8|Q9VND8|O61491|Q9W4K0|Q8SXY6|O18333|Q6NL44|Q9VL69|P40797|Q27268 +GO:0033043,0.419773095623987,0.756395961383106,0.077274697304471,-0.335007182611872,-1.01943929694682,49,Q9VU68|Q9W2N0|M9PF16|P54622|Q9NBD7|Q9W0C1 +GO:0033108,0.330081300813008,0.666250166600027,0.0905428948469474,-0.355133216002453,-1.07280321403885,47,Q7JYH3|Q9VXK7|A1Z7B8|Q7K1S1|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7|Q9VQM2|Q9VTU2|Q9VPC2|Q9W402|Q6IHY5 +GO:0033365,0.88169014084507,0.98280533442935,0.0676760401641789,0.219841939273092,0.779573094791107,67,Q9Y0V3|O02649|Q9VCH5|Q9VN44|Q9V784|P49963|Q9VGL0|Q9XTL2|P25171|Q9VPB8|Q9VBV5|Q0E8V7|Q9W0M4|Q9VQ93|P05205|A8DYP0|Q9VEC8|Q7K0D8|Q03427|Q9V455|Q6IGW6|Q9VL10|Q9VNQ3|Q9VGE4|A1Z6P3 +GO:0033500,0.183453237410072,0.509420760150895,0.135740943810425,-0.568403710357014,-1.26693314698463,12,O62619|Q7JYW9|O18332|Q9VBC7|Q9VND8|Q6NL44 +GO:0033554,0.703313253012048,0.929287737573099,0.0487989701682839,-0.26796946249323,-0.873661412049185,72,Q5U117|Q9W299|Q24492|Q9VKZ8|P15425|Q9XYZ5|Q9V3J4|A1Z803|O62602|Q7KLW9|Q9I7X6|Q7K519|Q9VZJ8 +GO:0034220,0.00876834319448911,0.108686291344174,0.380730400722792,-0.55746589633678,-1.57652930622409,33,Q9V4E7|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q8IQ70|P35381|Q9VAY3 +GO:0034314,0.190217391304348,0.513326384752829,0.133554954557592,-0.594998238016852,-1.28339144623682,10,Q9VU68|P45888|X2JAU8|Q9VQD8 +GO:0034329,0.0792580101180438,0.388634073823565,0.206587922696891,-0.48397325385202,-1.36442785029492,32,M9PF16|P16378|Q24372|Q9VND8|O61491|P45888|Q9VLT3|X2JAU8 +GO:0034330,0.0222948836586271,0.183793192240014,0.352487857583619,-0.474231031377392,-1.46862069057872,55,M9PF16|Q9VXK7|O18332|P16378|Q24372|O97102|Q9VND8|O61491|O18333|P45888|Q9VLT3|X2JAU8|Q9W260 +GO:0034440,0.00850128198721852,0.108686291344174,0.380730400722792,-0.666033329357287,-1.651503847192,19,A1ZBJ2|Q9W1H8|Q5U117|Q9VDT1 +GO:0034504,0.694096601073345,0.929213406058111,0.0573667426768556,-0.350969917356122,-0.841458371327641,16,A0A0B4K7J2|Q9V3J4|Q9GYU8 +GO:0034654,0.659279778393352,0.914662931548777,0.047925896705813,-0.24937472743133,-0.920206834571197,171,O01666|Q7K5K3|Q9VGW7|Q9VXZ8|Q95RQ8|Q9VF86|P35381|Q9VA09|Q24492|Q9XYZ5|Q9W403|Q9V3J4|P54622|P56538|Q9VH77|Q9VP57|Q24297|Q9VC18|Q7KLW9|Q8MZI3|Q9VNZ3|Q9VTZ4|P32748|Q9VKD3|Q27268|Q9VHG6|Q02748|Q9VHM3 +GO:0034655,0.0141352423295566,0.133877054755896,0.380730400722792,-0.524603829029858,-1.54184869634482,40,Q9VZX9|O62619|P07486|Q9VUY9|Q7JYW9 +GO:0034762,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0034764,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0034765,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0034767,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0034976,0.623287671232877,0.893164380376657,0.0745500777420554,0.313382961410884,0.864379136434659,21,P17336|Q7K1Z5|Q9V438|P41375 +GO:0035006,0.266816143497758,0.603465764318289,0.124434168630393,0.430631377673751,1.15371281212086,19,Q9V521|Q7KUA4|Q9VLU4|Q7K2W6|Q9VER6|A0A126GUP6|Q9VL01 +GO:0035088,0.160071942446043,0.486502747943533,0.14641623786055,-0.579332687582293,-1.29129309266593,12,Q9V3I2 +GO:0035107,0.574829931972789,0.875127485306333,0.0639271933359996,-0.32309343633125,-0.936307133243649,37,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0035114,0.574829931972789,0.875127485306333,0.0639271933359996,-0.32309343633125,-0.936307133243649,37,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0035120,0.574829931972789,0.875127485306333,0.0639271933359996,-0.32309343633125,-0.936307133243649,37,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0035152,0.228699551569507,0.570840323318591,0.135740943810425,0.452085360012027,1.21119058911981,19,A1Z9J3|Q9VRL2|Q9VR79 +GO:0035220,0.0656,0.380779341271069,0.222056046145248,-0.437874485398939,-1.35793097692297,53,Q9VU68|Q0E8E8|Q9V3I2|P05031|O76742|P16378|Q9XYZ5|Q9W4K0|P40797|Q9VF24|Q08012|P40417 +GO:0035239,0.371359223300971,0.71064360927548,0.107554375265169,0.368129285799776,1.05526995142952,26,A1Z9J3|Q9VRL2|O97365|Q9VAF5 +GO:0035282,0.927335640138408,0.989105910682126,0.0425023180036553,-0.259452196878045,-0.671136153697437,22,Q7KM15|O62602|P40417|P51140|Q9V535|E1JJH5|Q9VKK1|P12370|Q961D9 +GO:0035295,0.397530864197531,0.727285241860043,0.104343952581949,0.347051446293939,1.03738360522969,31,A1Z9J3|Q9VRL2|O97365|Q9VAF5|P38040|Q9VAY2|Q9VD64 +GO:0035383,0.00775381153047123,0.108686291344174,0.407017918923954,-0.782647419745199,-1.68814450151675,10,Q7K5K3|Q95TK5|Q9VXZ8 +GO:0035556,0.00011684267373801,0.0124783851786079,0.538434096309916,-0.528674789638033,-1.77565399911752,87,Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9V3N7|Q9VW59|Q9VA09|O76742|O18332|O15971|Q9V393|P15425|A1Z7S3|P16378|O97102|Q9VH66|Q9V3J4|Q9VP57|Q9VND8|O61491|O62602|Q8SXX1|O18333|Q9I7X6|Q9VW73|Q7K519|P13677|Q9VHM3|Q08012|P25455|P40417|Q9VX98 +GO:0035592,0.48731884057971,0.817732637088611,0.0753093764172773,-0.454688755228698,-0.980748549954614,10,O18332|O15971|O18333 +GO:0036211,0.204855842185129,0.536656927000936,0.115734447701689,-0.350410808401719,-1.1668630554572,82,P46415|Q9VGW7|Q95R98|Q24319|Q9V393|Q9VKZ8|P15425|Q9XYZ5|O97102|O62602|Q9VVU5|Q86BN8|Q9VKF0|Q7KLW9|Q4V5I9 +GO:0036293,0.310657596371882,0.65029651735218,0.114750719227023,0.461013722586882,1.11752110131476,13,Q9Y0V3|P09208|Q9VF15|P19334|O46067|Q9NCC3|P91927 +GO:0040003,0.591731266149871,0.882037793419445,0.0838361057159929,0.279123679512272,0.929375754323788,47,Q9VV46|Q9V3Z9|A1Z8Y3|P48596|Q8SZM2|Q9VR79|A1Z8Z7 +GO:0040007,0.0562700964630225,0.355295160359469,0.241339976815091,-0.446899553221816,-1.39007974355577,54,Q9U4G1|Q9V3I2|M9PF16|O15971|P16378|Q9VND8|O62602|Q8SXX1|Q9VKF0|P45888|P40797|X2JAU8|Q95T12|Q8WTC1 +GO:0040008,0.359531772575251,0.700230329570336,0.0873098257637931,-0.361476361738,-1.06240524041902,40,M9PF16|P16378|Q9VND8|O62602|Q8SXX1|P45888|P40797|X2JAU8|Q95T12|Q8WTC1|Q7KJ08|Q00174|Q9VVA7|P51140|O15943 +GO:0040011,0.00434440155948439,0.0839065791390613,0.407017918923954,-0.609906284743495,-1.69417127144615,29,P06002|Q9VU68|Q9VM10|P05031|O18332|Q9VND8 +GO:0040012,0.915044247787611,0.989105910682126,0.0441523058441465,-0.27565146893259,-0.639489429725256,14,O18332|Q9VND8|Q9VDH3|Q00174|P51140 +GO:0040029,0.54176072234763,0.853814898419865,0.0813027345384498,0.363413931581821,0.930773675914141,16,Q9VIE7|Q24478|P05205|Q86BS3|Q9W0H8|Q03427|Q9VUH8|P08928 +GO:0042026,0.535555555555556,0.853814898419865,0.0810802057550866,0.411583860778442,0.936311918505974,10,O02649|Q9VSA9 +GO:0042051,0.00484666898661997,0.0900748858834089,0.407017918923954,-0.694771211368968,-1.69938425642983,18,P06002|Q9U4G1 +GO:0042052,0.0534069981583794,0.349235739048219,0.266350657088526,-0.701682214664574,-1.52658157827611,11,P06002 +GO:0042060,0.257847533632287,0.593410795859352,0.126875729929857,0.433942229126943,1.16258297797178,19,A1Z9J3|Q9V521|P09208|Q7K2W6|Q9XTL2|E2QCN9 +GO:0042127,0.851015801354402,0.979893913968133,0.0587185879555941,0.281975084307871,0.722192967658275,16,P17336|P09208|Q7K5M6 +GO:0042176,0.225631768953069,0.568407397490467,0.120985142145252,-0.50097642941335,-1.21196904624855,17,Q9U9Q4|Q9VKZ8|Q9XYZ5|Q02748|Q9VZU7|Q9VW54 +GO:0042180,0.521541950113379,0.846259768383392,0.0835990603684159,0.391942332030028,0.950088479111436,13,Q9VFN7 +GO:0042221,0.0818452380952381,0.388634073823565,0.190023305279108,-0.361341772904576,-1.26052824856531,112,A0A0B7P9G0|P46415|O62619|Q9W4P5|A0A0B4K7J2|Q9VXK7|P05031|Q5U117|Q9VKZ8|Q9W3J1|Q9VLC5|Q9V3J4|Q9VP57|A1Z803|Q9VND8|O62602|Q8SXX1|Q9I7X6|Q9VW73|Q7K519|P13677|Q8IMT6|Q08012|Q9V4N3|P40417|Q9VX98|P81900|Q9VCW6 +GO:0042254,0.764423076923077,0.949162300118836,0.0668966276500666,0.282523740741857,0.799296809629382,25,Q9VM69|Q9VW14|Q9VEB3|Q8IPX7|Q9W1M9 +GO:0042303,0.771428571428571,0.949162300118836,0.0523759084097997,-0.325914629196116,-0.769074657581963,15,P05031|Q9V3J4|O62602|A8JTM7 +GO:0042330,0.00426567449619545,0.0839065791390613,0.407017918923954,-0.721502931169463,-1.70256125385411,15,P06002|Q9VM10|P05031|Q9VND8 +GO:0042335,0.673740053050398,0.919630799332206,0.0782955249944794,0.264061757937712,0.89622457262365,53,Q9VV46|Q9V3Z9|O61444|A1Z8Y3|P48596|Q8SZM2|Q9VR79|A1Z8Z7 +GO:0042440,0.455665024630542,0.79158738846752,0.0959206777921745,0.316578375557219,1.0024220975077,38,P48611|Q9VD09|Q9VSL3|Q9V521|P48596|Q7KUA4|Q9VLU4|Q7K2W6|Q9VER6 +GO:0042441,0.251798561151079,0.587728869037472,0.11331290842208,-0.530211894551015,-1.18180619143087,12,Q9VM10|P15425|A1Z7S3 +GO:0042445,0.659300184162063,0.914662931548777,0.0611692626746689,-0.38310789905811,-0.833490501784696,11,Q9VYT0|Q9VBC7 +GO:0042461,0.00515472100562703,0.0922225644171047,0.407017918923954,-0.659684891900331,-1.67857515236188,21,P06002|Q9U4G1 +GO:0042462,0.00484666898661997,0.0900748858834089,0.407017918923954,-0.694771211368968,-1.69938425642983,18,P06002|Q9U4G1 +GO:0042592,0.218989280245023,0.557609956081482,0.111918316325105,-0.352668480173365,-1.15903915543,76,A0A0B7P9G0|O62619|Q9W4P5|P19107|Q5U117|Q8IQ70|Q7JYW9|O18332|Q24372|Q9VBC7|O97102|Q9VAY3|Q9VND8|Q4V5I9|Q6NL44|Q9VW73 +GO:0042594,0.820921985815603,0.967491793250218,0.0491927521045191,-0.300878667484273,-0.765588936954399,21,P16378|Q9VND8|Q9I7X6|Q7K519|O97125|P40417|Q9VG42|Q7JVK6 +GO:0042692,0.221631205673759,0.562646230898589,0.120985142145252,-0.47326691881919,-1.20423265731661,21,Q9VU68|Q7JYX5|O76742 +GO:0042742,0.969309462915601,0.989105910682126,0.0584693210386381,0.200023322206599,0.659915034284406,45,Q9V521|Q9W4C2|Q9VCE1|Q7K2W6|Q9VER6|Q9VVK7|Q9VCJ8 +GO:0042752,0.920289855072464,0.989105910682126,0.0449543067640062,-0.278837548442654,-0.601443334947845,10,Q9VW68|P25455|P42325|Q7JVK6 +GO:0042773,0.000152666684471212,0.0124783851786079,0.518848077743792,-0.607449558464748,-1.88381511109499,53,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0042775,0.000152666684471212,0.0124783851786079,0.518848077743792,-0.607449558464748,-1.88381511109499,53,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9W125|Q9VPE2|Q9W3X7 +GO:0042981,0.488584474885845,0.81846208803156,0.0875697115548511,0.347601128330803,0.958760367116302,21,Q9V431|Q9V3U6|Q9VDU7 +GO:0043038,0.918735891647855,0.989105910682126,0.0551351763385257,0.248022940271546,0.635234931205724,16,P28668|Q7KN90|Q9VVL8|Q9VLM8 +GO:0043039,0.907239819004525,0.988193754211198,0.055826471778749,0.25970559758591,0.652930466673722,15,P28668|Q7KN90|Q9VVL8|Q9VLM8 +GO:0043062,0.251131221719457,0.587728869037472,0.129442887745046,0.468957968793064,1.17901557864238,15,Q9VXF9|O97365|A1ZBD8|Q9VAF5|Q9VR79 +GO:0043066,0.392290249433107,0.727285241860043,0.0999276973731092,0.433204325640992,1.05010968516974,13,Q9V431|Q9VDU7 +GO:0043067,0.397976391231029,0.727285241860043,0.0822054920415869,-0.38021182783024,-1.04099595771071,28,P06002|O62602|P40797|Q9VEB1|Q95T12|Q9VHJ7|P23625|Q9VZU7|Q9VSD6 +GO:0043069,0.241502683363149,0.58190564604608,0.115734447701689,-0.496932216698724,-1.19140630876138,16,P06002 +GO:0043161,0.591905564924115,0.882037793419445,0.0621124188949471,-0.315037455800655,-0.927122291807804,41,Q7K148|Q9U9Q4|Q9VKZ8|Q9XYZ5|Q9V3Z4|Q02748|Q9VZU7|Q9VW54 +GO:0043207,0.966565349544073,0.989105910682126,0.0668966276500666,0.193992538993847,0.737464034782403,104,Q8SXD5|Q70PY2|Q9V521|Q9VP13|Q9VCH5|Q7KUA4|Q9W4C2|Q9VCE1|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6|Q9VAI9|Q9W1M9|Q8IN43|Q9VVK7|Q9VBI3 +GO:0043254,0.116319444444444,0.413626905334938,0.170932335370056,-0.507364855761423,-1.3292108290394,23,Q9VU68|Q9W2N0|Q9NBD7 +GO:0043266,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0043268,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0043269,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0043270,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:0043297,0.130755064456722,0.43956907334427,0.165656695205483,-0.621220190262411,-1.35152819707866,11,P16378|Q24372|Q9VLT3 +GO:0043324,0.251798561151079,0.587728869037472,0.11331290842208,-0.530211894551015,-1.18180619143087,12,Q9VM10|P15425|A1Z7S3 +GO:0043408,0.17870036101083,0.505804182746172,0.138022242496643,-0.508484693268375,-1.2437344383818,18,Q9V393|Q9VW73|Q9VHM3|Q08012|Q9VB05|Q9VZU7|Q7KJ08 +GO:0043410,0.543478260869565,0.85515349354077,0.0697792517076235,-0.432077429986942,-0.931976672074656,10,Q9VW73|Q9VHM3|Q08012|Q9VB05|Q7KJ08 +GO:0043412,0.247005988023952,0.586007846668382,0.102821842840815,-0.332557822686097,-1.12971401277951,91,P46415|Q9VGW7|Q95R98|Q24319|Q9V393|Q9VKZ8|P15425|Q9XYZ5|O97102|O62602|Q9VVU5|Q86BN8|Q9VKF0|Q7KLW9|Q4V5I9|Q9VKD3|P13677 +GO:0043434,0.532976827094474,0.853629552338304,0.0699458736501659,-0.424693622927049,-0.971138488362354,13,Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0043436,0.00413632929077596,0.0831486602329454,0.407017918923954,-0.447206147708439,-1.55956164723371,110,Q9VZX9|O62619|P07486|Q9VUY9|Q7K5K3|A1ZBJ2|Q94523|Q9VXZ8|Q9W1H8|P05031|Q5U117|Q9VNX4|Q7JYW9|Q9VJ31|Q9VZI8|Q9VSL9|Q9VDT1|Q9VNW6|Q9I7X6|O97479|P54385|Q9VEB1|Q9VW68|Q9VY42|Q9VHD3 +GO:0043455,0.42483660130719,0.758378623188406,0.0928481214159878,0.43824789893734,1.02757031111771,11,Q7KUA4|Q9VLU4|Q9VER6 +GO:0043473,0.256944444444444,0.593410795859352,0.109684061970549,-0.437035075468956,-1.14495860008197,23,Q9VM10|P05031|P15425|A1Z7S3|O62602|O18333|A8JTM7 +GO:0043474,0.251798561151079,0.587728869037472,0.11331290842208,-0.530211894551015,-1.18180619143087,12,Q9VM10|P15425|A1Z7S3 +GO:0043484,0.778032036613272,0.949642572570103,0.0636424081651019,0.311188898022377,0.766924808559225,14,Q9V3V0|Q9VEP9|Q9VTW6|Q9V3T8|Q7K204|Q9W254|P43332 +GO:0043487,0.886710239651416,0.98280533442935,0.0551351763385257,0.283121116174203,0.663840840165019,11,Q9W0C3|Q9W1H5|Q9VEN9 +GO:0043488,0.886710239651416,0.98280533442935,0.0551351763385257,0.283121116174203,0.663840840165019,11,Q9W0C3|Q9W1H5|Q9VEN9 +GO:0043603,0.762767710049423,0.949162300118836,0.0491927521045191,-0.276964920205904,-0.826423252095264,44,Q7K5K3|Q95TK5|Q9VXZ8|Q7K8X7|Q9VBC7 +GO:0043604,0.0978260869565217,0.388634073823565,0.191892240384838,-0.658556327090914,-1.4204841343239,10,Q7K5K3|Q9VXZ8 +GO:0043632,0.791530944625407,0.95678704856787,0.0469758727821845,-0.264715019363198,-0.819781770531925,55,Q7K148|Q9U9Q4|Q9VKZ8|Q9XYZ5|Q9VBP9 +GO:0043648,0.547237076648841,0.855600826189061,0.0686325631836726,-0.416744139302744,-0.952960561750315,13,Q94523|Q9VNX4|P54385|Q9VEB1|Q9VW68 +GO:0043687,0.393939393939394,0.727285241860043,0.0826646449123753,-0.381200696599712,-1.03865854625617,27,Q9V393|Q9VKZ8|Q9XYZ5|O97102|Q9VVU5|Q7KLW9 +GO:0043933,0.358381502890173,0.700230329570336,0.0795564677235957,-0.293092415408992,-1.04993416579582,143,Q9VU68|Q9W2N0|Q7JYH3|Q7JYX5|M9PF16|A0A0B4K7J2|Q9VXK7|A1Z7B8|P56538|Q9NBD7|Q24297|Q7K1S1|Q9W1G7|Q4V5I9|Q9VBU9|Q9W125|Q9VPE2|X2JAU8|Q9VHM3|Q9W3X7|Q9VDH3|Q9VX98 +GO:0044085,0.747712418300654,0.947872241989889,0.0395172228473919,-0.232712245225485,-0.890286806821163,260,Q9VU68|Q9W2N0|Q7JYH3|Q9V3I2|M9PF16|A0A0B4K7J2|Q9VXK7|O76742|O18332|P16378|Q24372|Q9XYZ5|A1Z7B8|Q7KM15|O97102|P56538|Q9NBD7|Q9GYU8|Q9VND8|O61491|A1Z877|Q24297|Q7K1S1|Q9W1G7|Q4V5I9|P45888|Q9VBU9|Q9VKD3|Q9VLT3|Q9W125|Q9VPE2|X2JAU8|Q9VHM3|Q9W3X7|Q9VDH3|P40417|Q9VX98 +GO:0044087,0.157303370786517,0.486502747943533,0.13880510939114,-0.399156501726684,-1.22124447674273,50,Q9VU68|Q9W2N0|M9PF16|P16378|Q9NBD7|Q9VND8|O61491 +GO:0044089,0.838028169014084,0.979893913968133,0.0613026075396207,0.267665141306721,0.748227609679932,23,A1Z9J3|Q9VIE7|Q9VCH5|Q9VGQ8|P05205|Q9VNE2|P32392|Q9I7K0 +GO:0044093,0.518099547511312,0.844006611570248,0.0838361057159929,0.374682302794268,0.941995448276465,15,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9W1H5|Q9VLP1|Q7K188 +GO:0044248,0.0736,0.388634073823565,0.208955027549354,-0.434944421043797,-1.34884429732665,53,Q9VZX9|A1ZBJ2|Q9W1H8|Q5U117|Q9VNX4|Q9VZI8|Q9VSL9|Q9VDT1|O97479|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0044272,0.0660714285714286,0.380779341271069,0.234392647294686,-0.618019467945105,-1.45836690995193,15,Q7K5K3|Q9VXZ8|Q9VJ31|Q9VCW6|Q7JQW6 +GO:0044281,2.84170367238309e-05,0.0124783851786079,0.575610261071129,-0.448188156879114,-1.67144340161119,201,Q9VZX9|P46415|Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|A1ZBJ2|Q95TK5|Q94523|Q9VXZ8|Q9W1H8|Q9V396|P05031|Q5U117|Q9VNX4|Q9VF86|P35381|Q9V3N7|Q7JYW9|Q9VVL5|Q9VA09|Q9VVW3|Q9VV47|Q9VJ31|Q9VN13|Q7K569|Q9VH77|Q9VZI8|Q9W3W4|Q9VSL9|Q9VDT1|Q9VC18|Q9VNW6|O76752|Q9VTZ4|Q9I7X6|P32748|O97479|Q7K511|P54385|Q9VEB1|Q9VZJ8|Q9VPE2|Q7KTW5|Q9VW68|Q9VGF7|Q9VY42 +GO:0044282,0.000655069545459196,0.0258097400910923,0.477270815362862,-0.533389620728945,-1.73214918959712,70,Q9VZX9|P46415|O62619|P07486|Q9VUY9|A1ZBJ2|Q9W1H8|Q5U117|Q9VNX4|Q7JYW9|Q9VH77|Q9VZI8|Q9VSL9|Q9VDT1|O97479|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0044283,0.715421303656598,0.929287737573099,0.0504983044100709,-0.271384173442143,-0.853320567172231,58,O62619|P07486|Q9VVL5|Q9VJ31|Q9W3W4|Q9VNW6|O76752|O97479|Q9VEB1|Q9VPE2 +GO:0044403,0.0503597122302158,0.339371532784748,0.271288554688953,-0.674952232445589,-1.50442254393359,12,Q9V3I2|Q24253|O76742|O15971|O18333 +GO:0044409,0.0503597122302158,0.339371532784748,0.271288554688953,-0.674952232445589,-1.50442254393359,12,Q9V3I2|Q24253|O76742|O15971|O18333 +GO:0044419,0.62874251497006,0.893786048316364,0.0536769600638127,-0.263621137136032,-0.92131252333695,115,Q9V3I2|Q24253|O76742|O18332|O15971|Q9XYZ5|Q9VBP9|O97102|Q9VT23|Q9GYU8|Q9VAQ4|Q9VLY7|Q0E8C8|Q0E8X8|Q9W074|O18333|Q9VLT3|Q9VSL5|P40417|Q7K485|Q9VPX5|A1ZAL1|Q95RS6|Q9VZI3 +GO:0044770,0.586056644880174,0.878216818642351,0.0753093764172773,0.381345768073254,0.894150526431803,11,Q7KND8|P53034|Q9V3P3|Q86BS3|P92177|Q4QQ70|P48609 +GO:0045010,0.190217391304348,0.513326384752829,0.133554954557592,-0.594998238016852,-1.28339144623682,10,Q9VU68|P45888|X2JAU8|Q9VQD8 +GO:0045017,0.801104972375691,0.95678704856787,0.0520570030732099,-0.337030583920332,-0.733244579919084,11,Q86BN8|Q8SXX1|Q7KTW5|P54352|Q9VFP6|Q9VUW2 +GO:0045047,0.938997821350763,0.989105910682126,0.0524827622635459,0.253624879232679,0.594680309231961,11,P49963|Q9VBV5|Q9VEC8 +GO:0045055,0.625668449197861,0.893164380376657,0.0621124188949471,-0.380071076566101,-0.869100996202286,13,Q9NHE5|Q9W0C1|Q9U6P7 +GO:0045087,0.882513661202186,0.98280533442935,0.066132620475844,0.22593725918458,0.788881115532747,60,Q70PY2|Q9V521|Q9VP13|Q7KUA4|Q9VCE1|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6 +GO:0045088,0.933333333333333,0.989105910682126,0.0585937568945671,0.227618229149618,0.680381602476417,31,Q7KUA4|Q9VCE1|Q9VLU4|Q9VER6 +GO:0045089,1,1,0.0507027937029348,0.125762608849038,0.331530337616246,18,Q9VER6|Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97 +GO:0045165,0.885416666666667,0.98280533442935,0.044774889329693,-0.267939872932107,-0.701957529356878,23,Q9VBC7|Q9VTZ4|Q08012|P40417|P54352|Q9VSD6 +GO:0045184,0.284023668639053,0.62447168216399,0.0937465422491719,-0.31405203284527,-1.09520745224769,110,Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9VKC8|Q24253|Q9VYT6|O18332|O15971|Q9W552|A1Z7S3|Q7KM15|Q9V3J4|Q9GYU8|Q9W4K0|Q8SXY6|O18333|Q6NL44|Q9VL69 +GO:0045216,0.21824686940966,0.557609956081482,0.122679189568808,-0.509723496106816,-1.22207369250472,16,P16378|Q24372|Q9VLT3 +GO:0045229,0.77208480565371,0.949162300118836,0.0518457624865066,-0.313440594499805,-0.791765803915135,20,O15971|Q9XYZ5|O97102|A1Z877|P40417|P11046|Q00174|Q0E8P5|Q9VVG0 +GO:0045333,0.00257082591438576,0.0601395743061159,0.431707695803346,-0.498647585020682,-1.61781161545302,69,Q7JYH3|P00408|Q9VGS3|Q94523|Q9VXK7|Q9V4E0|Q9V3L7|Q9VMI3|Q7K4T8|Q9XY35|Q4V5I9|Q9VEB1|Q9W125|Q9VPE2|Q9W3X7|Q9VQM2|Q9VIQ8|Q9V470|Q9VTU2|Q9V3W2|Q9VGQ1|Q9W402|Q6IHY5 +GO:0045451,0.967914438502674,0.989105910682126,0.0419081748591401,-0.229543740760904,-0.524893121491197,13,Q7KM15 +GO:0045471,0.472924187725632,0.807331585632144,0.0766746872490091,-0.406678433241272,-0.99472015473702,18,Q9VLC5|P13677|P40417|P81900|Q9VCW6|Q26377|Q9VSY4|Q9VQF7|E1JJH5|P12370 +GO:0045475,0.745098039215686,0.947803589122537,0.0633597010643758,0.330231466186666,0.774301602524753,11,Q94901|Q9VWW2 +GO:0045595,0.968137254901961,0.989105910682126,0.0565299525056311,0.209303276698586,0.605454190174433,27,A1Z9J3|Q7KSE4|P09208|P25171|Q24276 +GO:0045597,0.859375,0.979893913968133,0.0577308549299813,0.276453905560068,0.728776680799272,18,A1Z9J3|Q7KSE4|P09208 +GO:0045727,0.771639042357275,0.949162300118836,0.05378728077603,-0.347646942532702,-0.756341556224467,11,Q9VND8|O77477|Q7KN75 +GO:0045732,0.583793738489871,0.877918828110722,0.0670512579829467,-0.411269786341307,-0.8947595740763,11,Q9XYZ5|Q02748|Q9VZU7 +GO:0045807,0.606115107913669,0.887294031008771,0.0640703750499722,-0.401070863259575,-0.893959630619122,12,Q9V393|O61491|P13677|Q08012|P91926 +GO:0045814,0.658371040723982,0.914662931548777,0.0713052987340038,0.339374360986927,0.853227123158136,15,Q9VIE7|Q24478|P05205|Q86BS3|Q03427|Q9VUH8|P08928 +GO:0045824,0.492063492063492,0.82010582010582,0.086794975677172,0.403183505696885,0.977337665330375,13,Q7KUA4|Q9VCE1|Q9VLU4 +GO:0045861,0.125230202578269,0.429797036723327,0.169570644405628,-0.627495669422034,-1.36518114520777,11,Q9U9Q4|Q9VKZ8|Q7JV69|Q0E8C8 +GO:0045862,0.755102040816326,0.948901184395995,0.0646484568421928,0.328377865343627,0.796004925118127,13,Q9VVB4 +GO:0045892,0.568345323741007,0.875127485306333,0.0672065093710464,-0.412612012261165,-0.919684065484649,12,Q9VGW7|Q9W403|Q9VP57 +GO:0045893,0.894977168949772,0.987262699375867,0.0568864160475701,0.249823766066078,0.689068895771662,21,Q8IRH5|Q9VCH5|Q9VJQ5 +GO:0045926,0.679646017699115,0.919630799332206,0.0578529757032509,-0.357764806861997,-0.829985826674098,14,P16378|X2JAU8|Q00174|Q9VVA7 +GO:0045927,0.796762589928058,0.95678704856787,0.0512184348540341,-0.31404747041085,-0.778715692929251,19,Q9VND8|O62602|Q8SXX1|P45888|P40797 +GO:0045934,0.577540106951872,0.875195392842452,0.065981614400873,-0.404076935563985,-0.92399471807729,13,Q9VGW7|Q9W403|Q9VP57 +GO:0045935,0.959322033898305,0.989105910682126,0.0400031517498194,-0.215364010452742,-0.609055506741853,33,Q9V3J4|P54622|Q9VP57|Q27268|Q9VHM3|Q9VZU7|Q7K012|Q9VZ49 +GO:0045944,0.64172335600907,0.905487649605297,0.0727141077934447,0.353598006066883,0.857139850296096,13,Q8IRH5|Q9VCH5|Q9VJQ5 +GO:0046031,0.00937196102309525,0.108686291344174,0.380730400722792,-0.778264813767591,-1.67869136591986,10,O62619|P07486|Q9VUY9|Q7JYW9 +GO:0046034,0.000487581911926587,0.021830371965804,0.49849310876659,-0.735723886536483,-1.85847342273175,20,O62619|P07486|Q9VUY9|O01666|P35381|Q7JYW9 +GO:0046148,0.581227436823105,0.877918828110722,0.0662842187012672,-0.378699257955075,-0.92628414413208,18,Q9VM10|P15425|A1Z7S3 +GO:0046165,0.244394618834081,0.584078667786727,0.130777137971974,0.491046853416344,1.18396590563271,12,P20007|P48611|P48596 +GO:0046173,0.276688453159041,0.615783106473284,0.119887845115423,0.49284222273197,1.15557892547259,11,P20007|P48611|P48596 +GO:0046364,0.467625899280576,0.801063497028464,0.0770736734944102,-0.447794087476647,-0.998102514305478,12,P07486|O97479|Q9VEB1|O96299|Q9VG42|P52029 +GO:0046365,0.00650259805167883,0.106750984681727,0.407017918923954,-0.731311415111649,-1.6722753153175,13,O62619|P07486|Q9VUY9|Q7JYW9|Q9VH77 +GO:0046390,0.242214532871972,0.58190564604608,0.11331290842208,-0.450547474296856,-1.16545052459055,22,O01666|P35381|Q9VA09|Q9VC18|P32748 +GO:0046394,0.750853242320819,0.948192876520521,0.051530912208539,-0.308790084501425,-0.826629645027912,25,O62619|Q9VJ31|Q9VNW6 +GO:0046395,0.0214590624261454,0.180659628117549,0.352487857583619,-0.482024727788299,-1.46681914631305,49,Q9VZX9|A1ZBJ2|Q9W1H8|Q5U117|Q9VNX4|Q9VZI8|Q9VSL9|Q9VDT1|O97479|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0046434,0.00370354259216398,0.0793041185495983,0.431707695803346,-0.746534392711575,-1.73190026853136,14,O62619|P07486|Q9VUY9|Q9W2L6|Q7JYW9 +GO:0046474,0.331521739130435,0.667789188227972,0.0965629554309422,-0.526069735253021,-1.13471495411163,10,Q86BN8|Q8SXX1|Q7KTW5|P54352|Q9VFP6|Q9VUW2 +GO:0046486,0.158928571428571,0.486502747943533,0.14641623786055,-0.546786796899836,-1.29027613652481,15,Q9W2L6|Q9VXZ8|B7Z0Q1|Q86BN8|Q8SXX1|Q7KTW5|P25455|P54352|Q9VFP6|Q9VUW2 +GO:0046496,0.0117143076499196,0.117740745256845,0.380730400722792,-0.651175200389022,-1.61466146097562,19,Q9VAJ9|O62619|P07486|Q9VUY9|Q7JYW9|Q7K569|P54385|Q9VEB1|Q9VGF7|Q8MLS2|Q9W330|P52029 +GO:0046530,0.0113599676837096,0.117740745256845,0.380730400722792,-0.558432971590768,-1.57434629475283,32,P06002|Q9U4G1|Q9VBC7|Q08012|Q95T12|P40417|Q9VZU7|Q7KTJ7|Q9VSD6|Q7KJ08|P51140|Q9W3E2|O15943|P21187 +GO:0046718,0.0503597122302158,0.339371532784748,0.271288554688953,-0.674952232445589,-1.50442254393359,12,Q9V3I2|Q24253|O76742|O15971|O18333 +GO:0046903,0.20949263502455,0.544459750657472,0.119348440591015,-0.392864560320897,-1.1777878175572,45,Q7JYX5|Q9VLB7|Q9NHE5|O76742|O18332|O15971|Q9W0C1|O18333|Q9U6P7 +GO:0046907,0.0955882352941176,0.388634073823565,0.173747838999571,-0.347251090975337,-1.23743020774159,132,Q7JYX5|Q9V3A8|Q9U4G1|Q9V3I2|O76902|Q9W4P5|A0A0B4K7J2|Q9VKC8|Q24253|O76742|Q9VYT6|O18332|Q9W552|A1Z7S3|Q9V3J4|P56538|Q9GYU8|Q9VJQ6|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q6NL44|Q9VW73|Q27268 +GO:0048024,0.859410430839002,0.979893913968133,0.0584693210386381,0.296242278653642,0.718106601337929,13,Q9V3V0 +GO:0048066,0.342560553633218,0.681660899653979,0.0919686140000427,-0.41969985037838,-1.08565564940172,22,Q9VM10|P05031|P15425|A1Z7S3|O62602 +GO:0048069,0.382142857142857,0.723866758241758,0.0875697115548511,-0.452559940720956,-1.06792500325552,15,Q9VM10|P15425|A1Z7S3 +GO:0048149,0.901785714285714,0.988193754211198,0.0452247443372884,-0.279894843853608,-0.660479806403965,15,P40417|P81900|Q9VCW6|Q26377|Q9VSY4|Q9VQF7|E1JJH5 +GO:0048193,0.26510067114094,0.602594595830808,0.105520936843198,-0.386058786106352,-1.12639042434673,38,Q9V3A8|Q9VYT6|O18332|Q9V3J4|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q95TN1 +GO:0048232,0.421585160202361,0.756395961383106,0.0791316651768349,-0.372800978880387,-1.02070552160296,28,O18332|Q9VAY3|Q9VJQ6|Q9VVU5|Q9W1G7|Q9W074 +GO:0048284,0.432758620689655,0.767685851318945,0.0789209638180035,-0.385004395818476,-1.01891242927898,24,Q7JYX5|Q9V3I2|O76742|Q9W0C1|O18333|Q9U6P7 +GO:0048285,0.745098039215686,0.947803589122537,0.069119845655101,0.282579194322853,0.817420347915856,27,M9NFC0|Q7KND8|P25171|Q9VQ93|Q86BS3|P92177|Q03427|Q9VU45|A1Z6P3|P08928|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0048468,0.116918844566713,0.414262812583496,0.150169802128406,-0.324970020294845,-1.2035575851488,176,P06002|Q9VU68|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|A0A0B4K7J2|O76742|O18332|O15971|P16378|Q7KM15|O97102|Q9NBD7|Q9VND8|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|O18333|Q09101|Q0KI98|Q9VEB1|Q9Y105|Q02748|Q9VHM3|Q08012|Q9W260|P40417|P81900|P91926|Q7K485|Q0KI81|Q9W1F8|P23625|Q94524|P11046|Q9VB05|Q7KTJ7|Q7KY04|Q9VSD6 +GO:0048469,0.933898305084746,0.989105910682126,0.0412376090540066,-0.233332831824813,-0.659871841297073,33,Q7KM15|Q9NBD7|O62602|Q8SXY6 +GO:0048477,0.329249617151608,0.666250166600027,0.0873098257637931,-0.329252138805698,-1.08004358192197,75,Q9VU68|Q9V3I2|O76742|O15971|Q7KM15|Q9NBD7|O62602|Q9VVU5|Q8SXY6|Q02748|Q9VHM3|Q08012|P91926|Q7K485|Q9W1F8|Q9VB05|Q7KY04 +GO:0048511,0.991007194244604,0.997711584633853,0.0412376090540066,-0.202264779786837,-0.501538057099559,19,Q9VW68|P25455|P81900|P42325|Q7JVK6 +GO:0048512,0.871331828442438,0.98280533442935,0.057609110864425,0.270623248271759,0.693118710351417,16,P09208|Q94901|Q9VWW2 +GO:0048513,0.144542772861357,0.474582104228122,0.13880510939114,-0.334843588576354,-1.19012338636051,135,P06002|Q9VU68|Q0E8E8|Q9U4G1|Q9V3I2|A0A0B4K7J2|P05031|Q5U117|Q24253|O76742|P16378|Q24372|Q9XYZ5|Q9VBC7|Q9NBD7 +GO:0048518,0.650472334682861,0.912251706458446,0.0473534245254193,-0.246438336178152,-0.930688670436204,228,M9PF16|A0A0B4K7J2|Q9U9Q4|Q9NHE5|Q24253|O18332|Q9V393|Q9XYZ5|O97102|Q9V3J4|P54622|Q9NBD7|Q9W0C1|Q9VP57|Q9VND8|O61491|O62602|Q8SXX1|Q9VKF0|Q9W074|Q9VTZ4|Q9U6P7|P45888|P40797|Q9VW73|O77477|Q9VEB1|Q7K519|Q27268|P13677|Q02748|Q9VF24|X2JAU8|Q9VHM3|Q08012|P25455|Q95T12|P40417|Q9VX98|Q7KN75|P91926 +GO:0048519,0.110803324099723,0.401254684699364,0.155241966228839,-0.328912459449735,-1.21370555981706,171,P06002|Q9VU68|Q9W2N0|M9PF16|Q9VGW7|P19107|Q5U117|Q9U9Q4|Q9V393|Q9VKZ8|P16378|Q9XYZ5|Q9VBP9|Q9W403|Q9GYU8|Q9VP57|Q9VND8|Q7JV69|P29829|O62602|Q8SXX1|Q0E8C8|Q9W074|Q9I7X6|Q7K519|Q27268|P13677|Q9W2V2|Q9VHG6|Q02748|X2JAU8|Q9VSL5|P25455|Q9VDH3|P40417 +GO:0048522,0.603851444291609,0.887294031008771,0.0516355964484201,-0.251187968641614,-0.941542394358057,215,M9PF16|A0A0B4K7J2|Q9U9Q4|Q9NHE5|Q24253|O18332|Q9V393|Q9XYZ5|O97102|Q9V3J4|P54622|Q9NBD7|Q9W0C1|Q9VP57|Q9VND8|O61491|O62602|Q8SXX1|Q9VKF0|Q9VTZ4|Q9U6P7|P45888|P40797|Q9VW73|O77477|Q9VEB1|Q7K519|Q27268|P13677|Q02748|Q9VF24|X2JAU8|Q9VHM3|Q08012|P25455|Q95T12|P40417|Q9VX98|Q7KN75|P91926 +GO:0048523,0.0920502092050209,0.388634073823565,0.172324344900946,-0.341605560383477,-1.24902469051988,161,P06002|Q9VU68|Q9W2N0|M9PF16|Q9VGW7|P19107|Q5U117|Q9U9Q4|Q9V393|Q9VKZ8|P16378|Q9XYZ5|Q9VBP9|Q9W403|Q9GYU8|Q9VP57|Q9VND8|Q7JV69|P29829|O62602|Q8SXX1|Q0E8C8|Q9W074|Q9I7X6|Q7K519|Q27268|P13677|Q9W2V2|Q9VHG6|Q02748|X2JAU8|P25455 +GO:0048534,0.157777777777778,0.486502747943533,0.165656695205483,0.582430299278867,1.32497039578372,10,Q9VCH5|Q8IPX7|P09208 +GO:0048542,0.157777777777778,0.486502747943533,0.165656695205483,0.582430299278867,1.32497039578372,10,Q9VCH5|Q8IPX7|P09208 +GO:0048565,0.414798206278027,0.752442418386476,0.0959206777921745,0.430904384173786,1.03895605052755,12,O97365|Q9VAY2|Q9VMV5|P08928 +GO:0048583,0.15712187958884,0.486502747943533,0.132147260608774,-0.328057749604622,-1.16810108143381,137,P19107|Q5U117|Q9U9Q4|Q9V393|Q9W552|Q9VKZ8|Q9XYZ5|Q9VBP9|O97102|Q9V3J4|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q9VKF0|Q0E8C8|Q9W074|Q9VTZ4|Q9I7X6|Q9VW73|Q7K519|P13677|Q9W2V2|Q02748|Q9VF24|Q9VHM3|Q9VSL5|Q08012|P25455|P40417|Q9VX98|P91926 +GO:0048584,0.677469135802469,0.919630799332206,0.0516355964484201,-0.269694585549703,-0.889948366731137,78,Q9U9Q4|O97102|Q9V3J4|Q9VP57|Q9VND8|Q9VKF0|Q9W074|Q9VTZ4|Q9VW73|Q7K519|Q9VF24|Q9VHM3|Q08012|P25455|P40417|Q9VX98|P91926|Q9VB05|Q9VZU7|Q7KJ08|Q9NHA8 +GO:0048585,0.054858934169279,0.35182498046657,0.241339976815091,-0.431485075060941,-1.3698502884422,62,P19107|Q5U117|Q9V393|Q9VKZ8|Q9XYZ5|Q9VBP9|Q9VP57|Q9VND8|P29829|O62602|Q8SXX1|Q0E8C8|Q9I7X6|P13677|Q9W2V2|Q02748|Q9VSL5 +GO:0048588,0.191528545119705,0.514048002569236,0.134273452883202,-0.574375364900113,-1.24961247805216,11,Q9U4G1|Q9V3I2 +GO:0048589,0.0178799334911334,0.158594547176226,0.352487857583619,-0.483407954029294,-1.46030160910375,47,Q9U4G1|Q9V3I2|M9PF16|O15971|P16378|Q9VND8|O62602|Q8SXX1|Q9VKF0|P45888|P40797|X2JAU8 +GO:0048592,0.00791203726804474,0.108686291344174,0.380730400722792,-0.545714104354718,-1.58144967109495,37,P06002|Q9U4G1|Q5U117|Q9VBC7|Q08012|P40417|P23625|Q9VZU7|Q9VSD6|Q7KJ08 +GO:0048598,0.706576728499157,0.929287737573099,0.05378728077603,-0.307485830515686,-0.841876772868482,28,Q9V3I2|Q24372|A1Z877|Q9VTZ4|Q9VLT3 +GO:0048599,0.396610169491525,0.727285241860043,0.0826646449123753,-0.384371280468931,-1.04474265799991,26,Q7KM15|Q9NBD7|O62602|Q8SXY6 +GO:0048608,0.629233511586453,0.893786048316364,0.0618406035753285,-0.37935688296646,-0.86746786385626,13,Q9V3I2 +GO:0048609,0.0133859980597565,0.12801172901806,0.380730400722792,-0.41344643128189,-1.44229537825339,116,Q9VU68|Q9V3I2|A0A0B4K7J2|A0A0B4K692|O76742|Q9VR25|O18332|O15971|Q9XYZ5|Q7KM15|O97102|Q9VAY3|Q9NBD7|Q9VJQ6|Q7K0P0|O62602|Q9VVU5|Q9VK11|Q8SXY6|Q9VN73|Q9W1G7|Q9W074|Q02748|Q9VHM3|Q08012|Q9VDH3|P40417|P91926|Q7K485|Q9W1F8|Q94524|Q9VB05|Q7KY04 +GO:0048638,0.324958123953099,0.665454786057801,0.0931454575337804,-0.395007353131206,-1.1064110963923,31,M9PF16|P16378|Q9VND8|O62602|Q8SXX1|P45888|P40797|X2JAU8 +GO:0048639,0.65,0.912251706458446,0.0603786357920401,-0.36067156443068,-0.851092080764388,15,Q9VND8|O62602|Q8SXX1|P45888|P40797 +GO:0048640,0.64349376114082,0.905487649605297,0.0607719451853533,-0.37503635991082,-0.857588209435573,13,P16378|X2JAU8|Q00174|Q9VVA7 +GO:0048646,0.458466453674121,0.794008653470931,0.072003313661988,-0.318152480725666,-0.997499440642303,57,Q9VU68|Q9V3I2|Q9XYZ5|O97102|Q9NBD7|A1Z877|Q9VVU5|Q9W074|Q9VTZ4|P40797|Q02748 +GO:0048666,0.276946107784431,0.615783106473284,0.0959206777921745,-0.32377794276652,-1.09988836232404,91,P06002|Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q09101|Q0KI98|Q9Y105|Q9W260|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q9VSD6|Q7K012|Q7KJ08|Q00174|Q9VFM9|Q9VVA7|P51140|Q0E8P5 +GO:0048667,0.055205047318612,0.35182498046657,0.241339976815091,-0.443349025690541,-1.40086608281598,59,P06002|Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q0KI98|Q9Y105|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0048699,0.0828402366863906,0.388634073823565,0.188204146308491,-0.364310340797255,-1.27047545770427,110,P06002|Q9VU68|Q9U4G1|Q9V3I2|M9PF16|O18332|P16378|Q9VBC7|O97102|Q9NBD7|Q9VND8|Q09101|Q0KI98|Q9Y105|Q08012|Q95T12|Q9W260|P40417|P81900|Q0KI81|P23625|P54352|P11046|Q9VZU7|Q7KTJ7|Q9VSD6|Q7K012 +GO:0048707,0.482926829268293,0.815922687528762,0.0702812841717392,-0.325429970179665,-0.983074244316533,47,Q9VU68|Q9V3I2|P16378|P40797|Q9VEB1|Q9VF24|Q08012|P40417 +GO:0048729,0.178170144462279,0.505804182746172,0.129442887745046,-0.391941463861633,-1.19916961361494,50,Q9VU68|Q9V3I2|Q9W4P5|P16378|Q24372|Q9VND8|O62602|Q9VVU5|Q9VTZ4 +GO:0048731,0.335180055401662,0.672408054115351,0.0808589150280032,-0.285760001707875,-1.05984248201288,179,P06002|Q9VU68|Q9U4G1|Q9V3I2|M9PF16|Q9W4P5|A0A0B4K7J2|Q5U117|Q24253|O18332|P16378|Q24372|Q9VBC7|O97102|Q9NBD7|Q9VND8|Q9VTZ4|Q09101|Q0KI98|P45888|Q9VEB1|P13677|Q9Y105|Q9VLT3|X2JAU8|Q08012|Q95T12|Q9W260|P40417|P81900|Q0KI81|P23625|P54352|Q9VZI3|P11046|Q9VZU7|Q7KTJ7|Q9VSD6 +GO:0048732,0.359375,0.700230329570336,0.104343952581949,0.406869475477948,1.05876125974435,17,Q9VCH5|Q8IPX7|P09208 +GO:0048736,0.574829931972789,0.875127485306333,0.0639271933359996,-0.32309343633125,-0.936307133243649,37,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0048737,0.574829931972789,0.875127485306333,0.0639271933359996,-0.32309343633125,-0.936307133243649,37,Q9VU68|P16378|P40797|Q9VF24|Q08012|P40417|Q9VSD6|Q9V400|P42207|P51140 +GO:0048749,0.0223910488008138,0.183793192240014,0.352487857583619,-0.508969851348012,-1.49589930220483,40,P06002|Q9U4G1|Q5U117|Q24253|Q9VBC7 +GO:0048754,0.712230215827338,0.929287737573099,0.0564118388217596,-0.371472608232188,-0.827987136590982,12,Q9W4P5|Q9VND8|P40417 +GO:0048812,0.173501577287066,0.502466447894316,0.130105630751129,-0.379359293099818,-1.19867539141842,59,Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q0KI98|Q9Y105|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0048813,0.282758620689655,0.624175077809637,0.103197466945307,-0.420698989489704,-1.11337801342474,24,Q9V3I2|O18332|O97102|Q0KI98|Q9Y105 +GO:0048856,0.424396442185515,0.758378623188406,0.0645031249656493,-0.259755291480687,-1.0120761587227,340,P06002|Q9VU68|Q0E8E8|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|Q9W4P5|A0A0B4K7J2|P05031|Q5U117|Q24253|O76742|O18332|O15971|P16378|Q24372|Q9XYZ5|Q9I7Q5|Q9VBC7|Q7KM15|O97102|Q7JZV0|Q9V3J4|Q9NBD7|Q9VND8|A1Z877|O62602|A8DRW0|Q9VVU5|Q9W4K0|Q8SXY6|Q9W1G7|Q9W074|O18333|Q9VTZ4|A1Z8Z3|Q09101|Q0KI98|P45888|P40797|Q9VEB1|Q7K5J8|A1Z8H1|P13677|A8JTM7|Q9Y105|Q9VLT3|Q02748|Q9VF24|X2JAU8|Q9VHM3|Q08012|Q95T12|Q9W260|Q9VLB1|P40417|P81900|P91926|Q7K485|Q0KI81|Q9W1F8|P23625|P54352|Q94524|Q9VZI3|P11046|Q9VB05|Q9VZU7|Q7KTJ7|Q7KY04|Q9VSD6 +GO:0048858,0.173501577287066,0.502466447894316,0.130105630751129,-0.379359293099818,-1.19867539141842,59,Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q0KI98|Q9Y105|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0048869,0.0733056708160443,0.388634073823565,0.193813302725311,-0.329438293419561,-1.22501496597991,196,P06002|Q9VU68|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|A0A0B4K7J2|O76742|O18332|O15971|P16378|Q9VBC7|Q7KM15|O97102|Q9VAY3|Q9NBD7|Q9VND8|O62602|Q9VVU5|Q8SXY6|Q9W1G7|Q9W074|O18333|Q9VTZ4|Q09101|Q0KI98|Q9VEB1|Q9Y105|Q02748|Q9VHM3|Q08012|Q95T12|Q9W260|P40417|P81900|P91926|Q7K485|Q0KI81|Q9W1F8|P23625|P54352|Q94524|P11046|Q9VB05|Q9VZU7|Q7KTJ7|Q7KY04|Q9VSD6 +GO:0048870,0.103678929765886,0.393183516782171,0.178219874951973,-0.460369782550561,-1.31681066755341,34,Q9VU68|Q9V3I2|O76742|O18332|Q9NBD7|O62602|P13677|Q08012|Q9VQD8|P11046 +GO:0048871,0.302752293577982,0.646215879521447,0.117249716749792,0.410065037171209,1.11174361651099,20,P10676|P17336|P09208|Q7K5M6|P45594|P20240|P19334|Q7K9H6 +GO:0048878,0.0188549837398994,0.164355389237176,0.352487857583619,-0.513435251011091,-1.53201650795879,44,A0A0B7P9G0|O62619|Q9W4P5|Q5U117|Q8IQ70|Q7JYW9|O18332|Q9VBC7|O97102|Q9VAY3|Q9VND8|Q4V5I9|Q6NL44|Q9VW73 +GO:0048880,0.0306778752064693,0.234245791305211,0.352487857583619,-0.503880376706801,-1.48286726244066,41,P06002|Q9U4G1|Q5U117|Q24253|Q9VBC7 +GO:0050657,0.756317689530686,0.948901184395995,0.05378728077603,-0.327564394379864,-0.792448273677144,17,A0A0B4K7J2|Q9GYU8|Q27268 +GO:0050658,0.756317689530686,0.948901184395995,0.05378728077603,-0.327564394379864,-0.792448273677144,17,A0A0B4K7J2|Q9GYU8|Q27268 +GO:0050684,0.859410430839002,0.979893913968133,0.0584693210386381,0.296242278653642,0.718106601337929,13,Q9V3V0 +GO:0050767,0.678571428571429,0.919630799332206,0.069119845655101,0.322915686305793,0.840295572487256,17,A1Z9J3|Q7KSE4|P09208|P25171|Q24276 +GO:0050769,0.614349775784753,0.887294031008771,0.0743625384422526,0.362996532607788,0.875223037232502,12,A1Z9J3|Q7KSE4|P09208 +GO:0050776,1,1,0.0543434390269162,0.159147738966506,0.501260250819781,37,Q7KUA4|Q9VCE1|Q9VLU4|Q9VER6|Q9VCJ8|Q9VN50|Q9NCC3|P22812|Q9VB68 +GO:0050777,0.540723981900452,0.853814898419865,0.0815265143256594,0.368756970322677,0.927098464415372,15,Q7KUA4|Q9VCE1|Q9VLU4 +GO:0050778,0.966824644549763,0.989105910682126,0.0550211117163117,0.200622195821746,0.564158754100654,24,Q7KUA4|Q9VER6|Q9VCJ8|Q9VN50|Q9NCC3|P22812|Q9VB68 +GO:0050789,0.0167926410744646,0.151750013379336,0.352487857583619,-0.313529069342629,-1.25189206242948,482,P06002|Q9VU68|Q9W2N0|Q9VM10|P46415|Q9V3I2|Q9VLB7|M9PF16|Q9VGW7|A0A0B4K7J2|Q9VXK7|P19107|P05031|Q0KIE7|Q5U117|Q95RQ8|Q9U9Q4|Q9V3N7|Q9NHE5|Q24253|Q9VW59|Q9VA09|O76742|O18332|O17444|O15971|Q9V393|Q9W552|Q9VKZ8|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|Q9W3J1|Q9W403|Q7KM15|O97102|Q9VH66|Q9V3J4|P54622|Q9NBD7|Q9GYU8|Q9W0C1|Q9VP57|Q9W3W4|Q9VND8|Q7JV69|P29829|O61491|A1Z877|O62602|Q8SXX1|Q9VKF0|Q9VIF2|Q0E8C8|Q7KLW9|Q9W074|O18333|Q9VTZ4|Q9U6P7|P45888|Q9I7X6|P40797|Q9VW73|O77477|Q9VEB1|Q7K519|Q27268|P13677|Q9W2V2|Q9VHG6|A8JTM7|Q02748|Q7KTW5|Q9VF24|X2JAU8|Q9VHM3|Q9VW68|Q9VSL5|Q08012|P25455|Q95T12|Q9VDH3|Q9NJH0|P40417|Q9VX98|P81900|Q7KN75|P91926|Q8WTC1|Q0KI81|Q9VHJ7|Q9VPX5|Q9W5P1|Q9W1F8|Q95RN0|P23625|Q9VQD8|Q9VZI3|P09040|Q9VB05|Q9VFP6|Q9VZU7|Q9VW54|Q7KY04|Q9VSD6|Q9VG42 +GO:0050793,0.68062015503876,0.919630799332206,0.0516355964484201,-0.271206319441126,-0.890613498776466,77,P06002|M9PF16|O18332|P16378|Q9VND8|O62602|Q8SXX1|P45888|P40797|X2JAU8|P40417|Q9W1F8|P23625 +GO:0050794,0.00839537598904246,0.108686291344174,0.380730400722792,-0.323763661542173,-1.28597063798492,442,P06002|Q9VU68|Q9W2N0|Q9VM10|P46415|Q9V3I2|Q9VLB7|M9PF16|Q9VGW7|A0A0B4K7J2|Q9VXK7|P19107|Q0KIE7|Q5U117|Q95RQ8|Q9U9Q4|Q9V3N7|Q9NHE5|Q24253|Q9VW59|Q9VA09|O76742|O18332|O15971|Q9V393|Q9W552|Q9VKZ8|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|Q9W3J1|Q9W403|Q7KM15|O97102|Q9VH66|Q9V3J4|P54622|Q9NBD7|Q9GYU8|Q9W0C1|Q9VP57|Q9W3W4|Q9VND8|Q7JV69|P29829|O61491|A1Z877|O62602|Q8SXX1|Q9VKF0|Q9VIF2|Q0E8C8|Q7KLW9|Q9W074|O18333|Q9VTZ4|Q9U6P7|P45888|Q9I7X6|P40797|Q9VW73|O77477|Q9VEB1|Q7K519|Q27268|P13677|Q9W2V2|Q9VHG6|A8JTM7|Q02748|Q7KTW5|Q9VF24|X2JAU8|Q9VHM3|Q9VW68|Q08012|P25455|Q95T12|Q9NJH0|P40417|Q9VX98|P81900|Q7KN75|P91926|Q0KI81|Q9VHJ7|Q9VPX5|Q9W5P1|Q9W1F8|Q95RN0|P23625 +GO:0050795,0.501811594202899,0.823807367149759,0.0738052724171275,-0.449216203350246,-0.968944437234377,10,Q9VW68|Q9VDH3|P42325|Q7JVK6|Q7KJ08 +GO:0050801,0.189716312056738,0.513326384752829,0.132147260608774,-0.487997893697115,-1.24171577797581,21,A0A0B7P9G0|Q9W4P5|Q8IQ70|Q9VAY3|Q4V5I9|P25455 +GO:0050803,0.00150484960505277,0.0427582284440165,0.45505986738723,-0.649768390329572,-1.77042565169184,27,Q9V3I2|M9PF16|Q9VXK7|O18332|P16378|Q9VND8|O18333|P45888|X2JAU8 +GO:0050804,0.898058252427185,0.987262699375867,0.0596037042575973,0.242765562905356,0.695905524656445,26,P17336|Q9VK99|Q7K1U0|Q9VKA1|Q9VLP0|P36975 +GO:0050807,0.00649745141010742,0.106750984681727,0.407017918923954,-0.612548883202351,-1.6649421559565,26,M9PF16|Q9VXK7|O18332|P16378|Q9VND8|O18333|P45888|X2JAU8 +GO:0050808,0.0668896321070234,0.380779341271069,0.224966093540314,-0.459898935000864,-1.36528135579189,43,M9PF16|Q9VXK7|O18332|P16378|O97102|Q9VND8|O18333|P45888|X2JAU8|Q9W260 +GO:0050821,0.964125560538117,0.989105910682126,0.0525898950623616,0.231147295023147,0.557320578642616,12,Q9V4S8|Q24276|Q9VG51 +GO:0050829,0.932735426008969,0.989105910682126,0.0541200569620232,0.242578344477433,0.649896311500808,19,Q9W4C2|Q9VCE1|Q9VVK7|Q9VCJ8|Q9VN50 +GO:0050830,0.540305010893246,0.853814898419865,0.0795564677235957,0.40347706213385,0.946042299965521,11,Q9V521|Q7K2W6|Q9VER6|Q9VCJ8 +GO:0050832,0.662946428571429,0.917137966492777,0.0702812841717392,0.32878169953212,0.85556019155431,17,Q9V521|Q7K2W6|A1ZBU5|Q9VER6|Q9VCJ8 +GO:0050877,0.123745819397993,0.428952816136932,0.161978948883402,-0.429447913901193,-1.27488277425978,43,P06002|A0A0B7P9G0|P46415|P19107|P05031|Q8IQ70|Q9V3N7|P16378 +GO:0050890,0.00914014573277134,0.108686291344174,0.380730400722792,-0.644974641610343,-1.62923652705045,20,A0A0B7P9G0|P46415|P05031|Q8IQ70|Q9V3N7|Q08012|P81900|Q9VCW6|P54352 +GO:0050896,0.00109544199191342,0.0359670120678238,0.45505986738723,-0.359430222179676,-1.41808353111352,382,P06002|Q9V4E7|Q9VM10|A0A0B7P9G0|P46415|Q9U4G1|O62619|Q9V3I2|Q9VLB7|Q9VGS3|Q9W4P5|A0A0B4K7J2|Q9VXK7|P19107|P05031|Q0KIE7|Q5U117|Q8IQ70|Q9W299|Q9U9Q4|Q9V3N7|Q9VW59|Q9VA09|O76742|O18332|O15971|Q9V393|Q9W552|Q24492|Q9VKZ8|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|A8WH76|Q9W3J1|Q9VLC5|O97102|Q9VH66|Q9V3J4|Q9VT23|Q9GYU8|Q9VP57|A1Z803|Q9VND8|Q9VAQ4|P29829|O61491|O62602|Q9VC18|Q8SXX1|Q9VLY7|Q9VKF0|Q9VIF2|Q0E8C8|Q7KLW9|Q0E8X8|Q9W074|O18333|Q9VTZ4|Q9I7X6|Q9VW73|Q7K519|P13677|Q8IMT6|Q9W2V2|Q9VZJ8|O97125|C0HK95|Q9VLT3|Q02748|P05812|Q7KTW5|Q9VF24|Q9VHM3|Q9VSL5|Q6NMY2|Q08012|P25455|Q9V4N3|P40417|Q9VX98|P81900|Q9VCW6|P91926|Q7K485|Q0KI81|P23625|A1ZAL1|P54352|Q95RS6|Q8T3X9|Q9VZI3|P09040|Q9VB05|Q9VZU7|Q9I7I3|Q7KY04|Q9VG42|P42325|Q7K012|Q9VTU2|Q7JVK6|Q9VJU8|Q7KJ08|Q9NHA8 +GO:0051046,0.600713012477718,0.887109920975341,0.0640703750499722,-0.395688090228133,-0.904812111749423,13,Q9NHE5|O18332|Q9U6P7 +GO:0051049,0.460691823899371,0.796107800948913,0.0709609456938284,-0.314149939972207,-0.992810093636649,60,A0A0B4K7J2|Q9NHE5|O18332|Q9V393|Q9GYU8|Q9W0C1|O61491|Q8SXX1|Q9U6P7|P13677|A8JTM7|Q08012|Q9NJH0|P91926|Q9VPX5 +GO:0051050,0.244897959183673,0.584078667786727,0.11146266692298,-0.395845250995026,-1.14713791891234,37,A0A0B4K7J2|Q9NHE5|O18332|Q9V393|Q9W0C1|O61491|Q9U6P7|P13677|Q08012|P91926 +GO:0051093,0.272569444444444,0.610183869949495,0.105920292736253,-0.430923725527846,-1.12894788820563,23,P06002|P16378 +GO:0051094,0.69814502529511,0.929287737573099,0.0543434390269162,-0.306782048283025,-0.864886576512898,32,O18332|Q9VND8|O62602|Q8SXX1|P45888|P40797|P40417|Q9W1F8 +GO:0051124,0.20863309352518,0.54366030984736,0.126253987849115,-0.491123992491138,-1.21779665865987,19,M9PF16|P16378|Q9VND8|P45888|X2JAU8 +GO:0051128,0.227204783258595,0.570840323318591,0.107972360317345,-0.321540575252888,-1.12577715016568,117,Q9VU68|Q9W2N0|M9PF16|Q9VXK7|O18332|O15971|Q9V393|P16378|P54622|Q9NBD7|Q9W0C1|Q9VND8|O61491|A1Z877|Q8SXX1|O18333|Q9U6P7|P45888|P13677|A8JTM7|X2JAU8|Q08012 +GO:0051129,0.0568965517241379,0.356962442345706,0.248911114434702,-0.544506424370682,-1.44103384179314,24,Q9VU68|Q9W2N0|M9PF16|P16378|Q8SXX1 +GO:0051130,0.477491961414791,0.810913072402705,0.0702812841717392,-0.317188340231256,-0.986613397728541,54,O18332|Q9V393|P54622|Q9NBD7|Q9W0C1|Q9VND8|O61491|Q9U6P7|P45888|P13677|X2JAU8|Q08012|P91926 +GO:0051146,0.530357142857143,0.853629552338304,0.0702812841717392,-0.407391342723859,-0.961338735177409,15,Q9VU68 +GO:0051168,0.4375,0.772289426523298,0.0802023444698144,-0.434308330997895,-1.02485590097955,15,A0A0B4K7J2|P56538|Q9GYU8|Q27268 +GO:0051169,0.773037542662116,0.949162300118836,0.0501934252649434,-0.30308608355408,-0.81136006055937,25,A0A0B4K7J2|Q9V3J4|P56538|Q9GYU8 +GO:0051170,0.612389380530973,0.887294031008771,0.0628003977812234,-0.38118424591036,-0.884317057991371,14,A0A0B4K7J2|Q9V3J4|Q9GYU8 +GO:0051179,0.00155899793839993,0.0427582284440165,0.45505986738723,-0.367126938556866,-1.42809825399089,335,Q9V4E7|Q7JUS9|Q0E8E8|A0A0B7P9G0|Q9VAJ9|Q7JYX5|Q9V3A8|Q9U4G1|Q9V3I2|Q9VLB7|O76902|Q9W4P5|A0A0B4K7J2|Q9VXK7|P19107|Q9VKC8|Q0KIE7|Q8IQ70|P35381|Q9V3N7|Q9W3K6|Q9NHE5|Q24253|O76742|Q9VYT6|Q9VVW3|O18332|O17444|O15971|Q9V393|Q9W552|A1Z7S3|Q7KSQ0|Q9VN13|Q7KM15|O97102|Q9VAY3|Q9V3J4|P56538|Q9NBD7|Q9W4W8|Q9GYU8|Q9W0C1|Q9VJQ6|Q9VND8|O61491|Q8SXX1|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q9U6P7|Q6NL44|Q9VL69|P40797|Q9VW73|Q27268|P13677|Q9W2V2|A8JTM7|Q9VLT3|Q95TN1|A1Z7X8|Q9VF24|Q9VGF7|Q08012|P25455|Q95T12 +GO:0051223,0.394927536231884,0.727285241860043,0.0865399737444125,-0.496455549503734,-1.07083813860277,10,O18332|Q9GYU8 +GO:0051234,0.00140743053491557,0.0427582284440165,0.45505986738723,-0.367148623621489,-1.41618903398039,303,Q9V4E7|Q7JUS9|Q0E8E8|A0A0B7P9G0|Q9VAJ9|Q7JYX5|Q9V3A8|Q9U4G1|Q9V3I2|Q9VLB7|O76902|Q9W4P5|A0A0B4K7J2|Q9VXK7|P19107|Q9VKC8|Q8IQ70|P35381|Q9W3K6|Q9NHE5|Q24253|O76742|Q9VYT6|Q9VVW3|O18332|O17444|O15971|Q9V393|Q9W552|A1Z7S3|Q7KSQ0|Q9VN13|Q7KM15|Q9VAY3|Q9V3J4|P56538|Q9NBD7|Q9W4W8|Q9GYU8|Q9W0C1|Q9VJQ6|O61491|Q8SXX1|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q9U6P7|Q6NL44|Q9VL69|Q9VW73|Q27268|P13677|Q9W2V2|A8JTM7|Q9VLT3|Q95TN1|A1Z7X8|Q9VF24|Q9VGF7|Q08012|P25455|Q95T12 +GO:0051236,0.794223826714801,0.95678704856787,0.051530912208539,-0.316104350078184,-0.773179353320341,18,A0A0B4K7J2|Q9GYU8|Q27268 +GO:0051239,0.847887323943662,0.979893913968133,0.0696133438850965,0.229095690894561,0.812387469581605,67,P17336|A1Z9J3|P48596|Q7KSE4|Q8IPX7|P09208|Q7K5M6|Q94901|Q9VGQ8|Q9XTL2|Q95RG8|P38040 +GO:0051240,0.81956155143339,0.967491793250218,0.0469758727821845,-0.282587318111059,-0.773706219326948,28,O18332|Q9VND8|O62602|Q8SXX1|P45888|P40417|Q9W1F8|P42325|Q26377|P51140 +GO:0051241,0.945848375451263,0.989105910682126,0.0435378240914002,-0.266278249264381,-0.644183991202134,17,P16378|X2JAU8|Q9VDH3|Q7JVK6|Q00174|O15943 +GO:0051246,0.298904538341158,0.645193444116935,0.0940503465727813,-0.345656402013515,-1.09705493687061,61,P46415|Q9U9Q4|Q9V393|Q9VKZ8|Q9XYZ5|Q9VND8|Q7JV69|Q9VKF0|Q0E8C8|O77477|Q02748|P81900|Q7KN75|Q9VZU7|Q9VW54 +GO:0051247,0.733668341708543,0.941796934284413,0.0517405459873163,-0.297023200623855,-0.827521591051538,30,Q9V393|Q9XYZ5|Q9VND8|O77477|Q02748|Q7KN75|Q9VZU7 +GO:0051248,0.482332155477032,0.815922687528762,0.0745500777420554,-0.39301631634991,-0.992777850498703,20,Q9U9Q4|Q9VKZ8|Q7JV69|Q0E8C8 +GO:0051252,0.821917808219178,0.967491793250218,0.0697792517076235,0.232390960947995,0.818506207605767,64,Q9V3V0|Q9W0R0|Q8IRH5|Q9VCH5|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4|Q9W0C3|P20240|Q9VEP9|Q24478|P05205|Q9VTW6|Q9V3T8|Q7K180|Q7K0D8|Q9W0H8 +GO:0051253,0.568345323741007,0.875127485306333,0.0672065093710464,-0.412612012261165,-0.919684065484649,12,Q9VGW7|Q9W403|Q9VP57 +GO:0051254,0.948148148148148,0.989105910682126,0.0578529757032509,0.224822430073341,0.668695480966076,30,Q8IRH5|Q9VCH5|Q9VJQ5|Q9W0C3 +GO:0051258,0.163120567375887,0.48689017837954,0.143758989039275,-0.498057953216653,-1.26731370533191,21,Q9VU68|Q9W2N0|Q9NBD7 +GO:0051276,0.902200488997555,0.988193754211198,0.0597317976364411,0.239940813746232,0.724577697263218,32,Q8IRH5|Q9VIE7|Q9VCH5|Q7KND8|P53034|P25171|Q9VQ93|P05205|Q86BS3|Q7K0D8|Q9W0H8 +GO:0051301,0.434710743801653,0.768743415879045,0.0764767053228531,-0.355459812339496,-1.02525434859175,35,O18332|P16378|Q9NBD7|Q9VVU5|Q9W074|P40797|Q02748|P91926|P54352|Q9VB05|O61604|P42207 +GO:0051321,0.416071428571429,0.75336462710084,0.0828962134571565,-0.443271877825135,-1.04600756491032,15,O18332|Q24492 +GO:0051493,0.326633165829146,0.666250166600027,0.0928481214159878,-0.399156705639742,-1.11207067810231,30,Q9VU68|Q9W2N0|M9PF16 +GO:0051495,0.969498910675381,0.989105910682126,0.051011413203915,0.236122267144056,0.553641516820431,11,Q9VCH5|Q9I7K0|A0A0B4KHJ9|Q7K549|P08928|O61443|Q9VCC0 +GO:0051603,0.964831804281346,0.989105910682126,0.0349401058848478,-0.21395553831031,-0.692570916260157,68,Q7K148|Q9U9Q4|Q9VKZ8|Q9XYZ5|Q9VBP9|Q9VY87 +GO:0051604,0.997118155619597,1,0.0628003977812234,0.180318150918675,0.659822813620723,81,Q9V3U6|Q9VH95|O02649|Q9VSA9|Q9W227|Q9VVW7|A1ZBU5|Q9VER6|Q9V3W0|Q9VAY2|Q9VCJ8|Q9VK69|Q3YMU0|Q8T9B6|Q24276|A0A126GUP6|Q9VL01|Q9VHL2|Q8MR62|Q7JQR3 +GO:0051606,0.232142857142857,0.575764388489209,0.118287526124085,-0.513722158315935,-1.21225209796076,15,P06002|Q9VM10|P19107 +GO:0051640,0.680395387149918,0.919630799332206,0.0544555953940371,-0.293115075990905,-0.874612980439789,44,Q9NHE5|O76742|P56538|Q9NBD7|Q9GYU8|Q9W0C1 +GO:0051641,0.124156545209177,0.428952816136932,0.143758989039275,-0.312869532853097,-1.18156993780605,228,Q7JYX5|Q9V3A8|Q9U4G1|Q9V3I2|Q9VLB7|O76902|Q9W4P5|A0A0B4K7J2|Q9VKC8|Q0KIE7|Q9NHE5|Q24253|O76742|Q9VYT6|O18332|O15971|Q9W552|A1Z7S3|Q7KM15|O97102|Q9V3J4|P56538|Q9NBD7|Q9GYU8|Q9W0C1|Q9VJQ6|Q9VND8|O61491|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q9U6P7|Q6NL44|Q9VL69|P40797|Q9VW73 +GO:0051648,0.792486583184258,0.95678704856787,0.0512184348540341,-0.321782865055682,-0.771481748608541,16,Q9NHE5|O76742 +GO:0051649,0.0875,0.388634073823565,0.176694268938498,-0.342128940764259,-1.25038217848813,159,Q7JYX5|Q9V3A8|Q9U4G1|Q9V3I2|Q9VLB7|O76902|Q9W4P5|A0A0B4K7J2|Q9VKC8|Q9NHE5|Q24253|O76742|Q9VYT6|O18332|Q9W552|A1Z7S3|Q9V3J4|P56538|Q9NBD7|Q9GYU8|Q9W0C1|Q9VJQ6|Q9W4K0|Q8SXY6|O18333|Q9W3M8|Q9U6P7|Q6NL44|Q9VW73|Q27268 +GO:0051650,0.792486583184258,0.95678704856787,0.0512184348540341,-0.321782865055682,-0.771481748608541,16,Q9NHE5|O76742 +GO:0051656,0.625418060200669,0.893164380376657,0.0590954798717342,-0.317396793043443,-0.907860373917881,34,Q9NHE5|O76742|P56538|Q9NBD7|Q9GYU8 +GO:0051668,0.300319488817891,0.645193444116935,0.0949751525905595,-0.358896485471456,-1.10314247384669,51,Q9VKC8|Q0KIE7|O76742|O18332|Q9W552|O97102|O61491|O18333|Q9VL69 +GO:0051701,0.0503597122302158,0.339371532784748,0.271288554688953,-0.674952232445589,-1.50442254393359,12,Q9V3I2|Q24253|O76742|O15971|O18333 +GO:0051707,0.966565349544073,0.989105910682126,0.0668966276500666,0.193992538993847,0.737464034782403,104,Q8SXD5|Q70PY2|Q9V521|Q9VP13|Q9VCH5|Q7KUA4|Q9W4C2|Q9VCE1|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6|Q9VAI9|Q9W1M9|Q8IN43|Q9VVK7|Q9VBI3 +GO:0051716,0.000209802468332771,0.013777028753852,0.518848077743792,-0.410236436207486,-1.55046463188333,239,P06002|Q9V4E7|Q9VM10|A0A0B7P9G0|P46415|Q9V3I2|Q9VLB7|Q9W4P5|A0A0B4K7J2|P19107|Q0KIE7|Q5U117|Q9W299|Q9U9Q4|Q9V3N7|Q9VW59|Q9VA09|O76742|O18332|O15971|Q9V393|Q9W552|Q24492|Q9VKZ8|P15425|A1Z7S3|P16378|Q9XYZ5|Q9VBP9|Q9W3J1|O97102|Q9VH66|Q9V3J4|Q9VP57|A1Z803|Q9VND8|P29829|O61491|O62602|Q8SXX1|Q9VKF0|Q7KLW9|O18333|Q9VTZ4|Q9I7X6|Q9VW73|Q7K519|P13677|Q8IMT6|Q9W2V2|Q9VZJ8|Q02748|Q7KTW5|Q9VF24|Q9VHM3|Q08012|P25455|Q9V4N3|P40417|Q9VX98|P81900 +GO:0051726,0.5,0.823807367149759,0.0865399737444125,0.35112965588628,0.951961562468662,20,Q7KND8|P53034|Q9XTL2|Q9V3P3|Q95SK3|P25171|Q960X8|Q86BS3 +GO:0051960,0.90893760539629,0.988193754211198,0.0422468188360053,-0.254253840588325,-0.696130948359252,28,O18332|P16378|Q9VND8|P45888|X2JAU8 +GO:0051961,0.286231884057971,0.626529790660226,0.105520936843198,-0.548372761815388,-1.18282184197526,10,P16378|X2JAU8|Q00174|O15943 +GO:0051962,0.702031602708804,0.929287737573099,0.0679922591544058,0.321727335176657,0.824006204442982,16,A1Z9J3|Q7KSE4|P09208|Q9VGQ8 +GO:0051963,0.114285714285714,0.407867494824017,0.175204047558551,-0.575880352704749,-1.35892944160563,15,M9PF16|P16378|Q9VND8|P45888|X2JAU8 +GO:0055001,0.166071428571429,0.492711919104991,0.142901149386948,-0.543296895601592,-1.28204086751414,15,Q9VU68|Q7JYX5|O76742 +GO:0055002,0.394927536231884,0.727285241860043,0.0865399737444125,-0.498762497023259,-1.07581414781473,10,Q9VU68 +GO:0055080,0.189716312056738,0.513326384752829,0.132147260608774,-0.487997893697115,-1.24171577797581,21,A0A0B7P9G0|Q9W4P5|Q8IQ70|Q9VAY3|Q4V5I9|P25455 +GO:0055082,0.239583333333333,0.58190564604608,0.114266502484433,-0.451721634890785,-1.18343492260046,23,A0A0B7P9G0|Q9W4P5|Q8IQ70|Q7JYW9 +GO:0055085,8.35505254548155e-05,0.0124783851786079,0.538434096309916,-0.606562336381358,-1.88671036014458,54,Q9V4E7|Q7JUS9|Q0E8E8|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q9VKC8|Q8IQ70|P35381|Q9VVW3|O17444|Q7KSQ0|Q9VN13|Q9VAY3 +GO:0055086,0.000127099123452225,0.0124783851786079,0.518848077743792,-0.560628776524776,-1.84249724651776,76,Q9VZX9|Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q95TK5|Q9VXZ8|Q9VF86|P35381|Q9V3N7|Q7JYW9|Q9VA09|Q7K569|Q9VH77|Q9VC18|Q9VTZ4|P32748|P54385|Q9VEB1 +GO:0055088,0.289568345323741,0.631028363150188,0.104343952581949,-0.508570407638892,-1.13356879146425,12,Q5U117|O97102|Q9VND8|Q9VW73 +GO:0055123,0.414798206278027,0.752442418386476,0.0959206777921745,0.430904384173786,1.03895605052755,12,O97365|Q9VAY2|Q9VMV5|P08928 +GO:0060070,0.825396825396825,0.96902964602607,0.0603786357920401,0.305619147075029,0.740836615243701,13,Q7JWQ7 +GO:0060249,0.367945823927765,0.70924977802123,0.103576326612592,0.412650869968212,1.05687903993577,16,P10676|P09208|Q7K5M6|P45594|P20240|P19334 +GO:0060255,0.629733520336606,0.893786048316364,0.0506004243853618,-0.254555967733138,-0.93292364396603,165,P46415|Q9VGW7|A0A0B4K7J2|Q95RQ8|Q9U9Q4|Q9V393|Q9VKZ8|Q9XYZ5|Q9W403|O97102|Q9V3J4|P54622|Q9VP57|Q9W3W4|Q9VND8|Q7JV69|Q9VKF0|Q9VIF2|Q0E8C8|Q7KLW9|Q9W074|Q9VW73|O77477|Q27268|Q9VHG6|Q02748|Q9VHM3 +GO:0060284,0.801369863013699,0.95678704856787,0.0621124188949471,0.276705329952079,0.763214161593338,21,A1Z9J3|Q7KSE4|P09208|P25171|Q24276 +GO:0060322,0.0677567624224544,0.381373777063529,0.287805130535564,0.636490172128264,1.53464513177773,12,A1Z9J3|Q8IPX7|Q95RG8|P45594|P35220|Q7KMS3 +GO:0060341,0.175084175084175,0.502792747690707,0.134273452883202,-0.457882149325825,-1.24759270331242,27,A0A0B4K7J2|O18332|Q7KM15|O97102|Q9GYU8|O18333 +GO:0060429,0.374617737003058,0.712352260517398,0.0802023444698144,-0.321801051761294,-1.04166524985468,68,Q9VU68|Q9V3I2|Q9W4P5|O76742|P16378|Q24372|Q9VND8|O62602|Q9VVU5|Q9VLT3|Q9VHM3|Q08012|P40417|P91926 +GO:0060446,0.712230215827338,0.929287737573099,0.0564118388217596,-0.371472608232188,-0.827987136590982,12,Q9W4P5|Q9VND8|P40417 +GO:0060491,0.540305010893246,0.853814898419865,0.0795564677235957,0.403644438627476,0.946434751625976,11,A1Z9J3|P45594|Q9VNE2|P32392|Q9VQV7 +GO:0060541,0.69620253164557,0.929213406058111,0.0741758965588009,0.264467030130209,0.870081304187066,44,A1Z9J3|Q9VRL2|P48596|O97365|Q9VR79|P09208|Q9XTL2 +GO:0060560,0.590339892665474,0.882037793419445,0.0650877566917313,-0.381329892381079,-0.914247102995848,16,Q9V3I2 +GO:0060562,0.902527075812274,0.988193754211198,0.0456790414930062,-0.276355575570743,-0.668563197159107,17,Q9W4P5|Q9VND8 +GO:0060627,0.31986531986532,0.657760626445386,0.0943563635421779,-0.408864405083347,-1.11403392592878,27,Q9NHE5|Q9V393|Q9W0C1|O61491|Q8SXX1|Q9U6P7|P13677|A8JTM7|Q08012|P91926|Q9VPX5|Q7KY04 +GO:0060810,0.969911504424779,0.989105910682126,0.041488040200221,-0.226652518824491,-0.525815772250835,14,Q7KM15 +GO:0060811,0.967914438502674,0.989105910682126,0.0419081748591401,-0.229543740760904,-0.524893121491197,13,Q7KM15 +GO:0060828,0.801104972375691,0.95678704856787,0.0520570030732099,-0.337570253983039,-0.734418687455029,11,O62602|Q9VKF0|P25455 +GO:0061013,0.886710239651416,0.98280533442935,0.0551351763385257,0.283121116174203,0.663840840165019,11,Q9W0C3|Q9W1H5|Q9VEN9 +GO:0061024,0.408132530120482,0.744393371828636,0.0749278818393739,-0.313779223807067,-1.02301507489834,72,Q7JYX5|Q9V3I2|M9PF16|Q9VKC8|O76742|Q9V3J4|Q9W4W8|Q9W0C1|O18333|Q9U6P7|A1Z7X8|X2JAU8|Q7K1M4|P91926 +GO:0061025,0.361111111111111,0.701566951566952,0.0891647117820678,-0.405628145398275,-1.06267771073227,23,Q7JYX5|Q9V3I2|O76742|Q9W0C1|O18333|Q9U6P7 +GO:0061057,0.544662309368192,0.855600826189061,0.0791316651768349,0.398520371473528,0.93442022904107,11,Q9VN50|Q9NCC3|Q7K4Z4|Q9VRL1|Q9VL00|Q9VS97|Q7KNM2 +GO:0061061,0.583612040133779,0.877918828110722,0.0623861492893626,-0.318465855028979,-0.920892229485156,36,Q9VU68|Q7JYX5|O76742 +GO:0061077,0.96875,0.989105910682126,0.0521630305460055,0.219180584321969,0.570354685112786,17,Q9VSA9|Q9VVW7|Q8MR62|P22979|Q7JXF7|Q9VFP0|Q9VGK3|Q9VNA3 +GO:0061136,0.500884955752212,0.823807367149759,0.0727141077934447,-0.423208389777281,-0.981809721100385,14,Q9U9Q4|Q9VKZ8|Q02748|Q9VZU7 +GO:0061138,0.712230215827338,0.929287737573099,0.0564118388217596,-0.371472608232188,-0.827987136590982,12,Q9W4P5|Q9VND8|P40417 +GO:0061245,0.160071942446043,0.486502747943533,0.14641623786055,-0.579332687582293,-1.29129309266593,12,Q9V3I2 +GO:0061351,0.908496732026144,0.988193754211198,0.0540088272801684,0.276589076269996,0.648525010259444,11,P09208|P38040|Q24276 +GO:0061458,0.629233511586453,0.893786048316364,0.0618406035753285,-0.37935688296646,-0.86746786385626,13,Q9V3I2 +GO:0061564,0.25531914893617,0.59313528703332,0.106323255932708,-0.379062727050137,-1.13641062875458,45,Q9U4G1|Q9V3I2|M9PF16|O97102|Q9NBD7|Q9VND8|Q9W260|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7KJ08|Q00174 +GO:0061640,0.823104693140794,0.967491793250218,0.0498907356726307,-0.303628184270433,-0.734541466023333,17,O18332|P40797|P91926|Q9VB05|P42207|P21187|Q23983 +GO:0061844,0.957399103139013,0.989105910682126,0.0529129848430584,0.23933464669803,0.577061149573976,12,Q7KUA4|Q9VCJ8|P22812|Q9VB68|Q7K4Z4 +GO:0061919,0.23993288590604,0.58190564604608,0.111918316325105,-0.391162087719531,-1.14128015170565,38,Q7JYX5|Q24253|O76742|O18332|A1Z7S3|Q9VND8|O18333|Q7K519|P40417|P91926 +GO:0065003,0.564896755162242,0.875127485306333,0.0579754757571486,-0.268887790799459,-0.95569889660371,135,Q9VU68|Q9W2N0|Q7JYH3|A0A0B4K7J2|Q9VXK7|A1Z7B8|P56538|Q9NBD7|Q24297|Q7K1S1|Q9W1G7|Q4V5I9|Q9VBU9|Q9W125|Q9VPE2|X2JAU8|Q9VHM3|Q9W3X7|Q9VDH3|Q9VX98|Q9VQD8|Q9VB05|Q9VQM2|Q9VZU7|Q9VG42|Q9VTU2|Q9V9U7|Q9VPC2 +GO:0065004,0.433333333333333,0.767685851318945,0.0928481214159878,0.452122887908141,1.028534130996,10,Q27272|Q9VJQ5 +GO:0065008,0.0812407680945347,0.388634073823565,0.190023305279108,-0.353279985396287,-1.25355604003597,136,Q9VU68|Q9W2N0|Q9V3I2|M9PF16|Q9W4P5|Q9VXK7|O18332|Q9V393|Q9VYT0|P16378|Q24372|A8WH76|Q9VBC7|Q9W4W8|Q9VND8|Q7K0P0|O62602|Q9VVU5|O18333|Q9U6P7|P45888|Q9VLT3|X2JAU8|Q08012|Q95T12|P40417|P23625|Q9VQD8|P09040|Q9VZU7|Q9W0H3|Q7JVK6|Q7KJ08|Q9VZ49|Q9VZV2|Q00174|Q9VE75|Q9VFM9|Q494G8|Q6NLJ9|P51140 +GO:0065009,0.630742049469965,0.893829401088929,0.0613026075396207,-0.349210020163343,-0.882121069196805,20,P54622|Q9VY87|Q9VKF0|Q0E8X8 +GO:0070201,0.180478821362799,0.506546535427402,0.13880510939114,-0.587476064042374,-1.2781143918176,11,O18332|Q7KM15|Q9GYU8 +GO:0070482,0.772563176895307,0.949162300118836,0.052805004567129,-0.323943079327293,-0.783687538655001,17,Q9W4P5|Q9VA09 +GO:0070585,0.716517857142857,0.929287737573099,0.066436413766281,0.312268208849121,0.812588562439666,17,Q9Y0V3|O02649|Q9V784 +GO:0070646,0.318840579710145,0.657025043963374,0.0988903007520636,-0.535422119430003,-1.15488773629443,10,Q9V393|Q9VKZ8|Q9VVU5 +GO:0070647,0.393939393939394,0.727285241860043,0.0826646449123753,-0.381200696599712,-1.03865854625617,27,Q9V393|Q9VKZ8|Q9XYZ5|O97102|Q9VVU5|Q7KLW9 +GO:0070727,0.425,0.758378623188406,0.0687943095604775,-0.279116771991517,-1.02009095353264,159,Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9VKC8|Q0KIE7|Q24253|Q9VYT6|O18332|O15971|Q9W552|A1Z7S3|Q7KM15|O97102|Q9V3J4|Q9GYU8|Q9VND8|O61491|Q9W4K0|Q8SXY6|O18333|Q6NL44|Q9VL69|P40797 +GO:0070848,0.171681415929204,0.501798797300491,0.139599673451922,-0.55109941670983,-1.27850670659722,14,O97102|Q9VTZ4|Q02748|Q9VF24|Q08012|P40417 +GO:0070887,0.0461049284578696,0.326075884899414,0.266350657088526,-0.454666905203065,-1.42962139796644,58,A0A0B7P9G0|P46415|Q9W4P5|A0A0B4K7J2|Q5U117|Q9W3J1|Q9V3J4|Q9VP57|A1Z803|Q9VND8|Q8SXX1|Q9I7X6|Q9VW73|Q7K519|Q8IMT6|Q08012|Q9V4N3|P40417|Q9VX98|P81900 +GO:0070925,0.326860841423948,0.666250166600027,0.0908241419007155,-0.35065072148648,-1.08106490557299,52,Q9VU68|Q9V3I2|O76742|O18332|P56538|Q9NBD7|Q9W1G7|Q9VBU9 +GO:0070972,0.789237668161435,0.95678704856787,0.0619762736001998,0.315581469398162,0.760900304354667,12,P49963|Q9VBV5|Q9W0M4|Q9VEC8 +GO:0071214,0.129496402877698,0.438329748572276,0.16440575583821,-0.598550216324243,-1.33412765500721,12,P06002|Q9V4E7|P19107 +GO:0071363,0.171681415929204,0.501798797300491,0.139599673451922,-0.55109941670983,-1.27850670659722,14,O97102|Q9VTZ4|Q02748|Q9VF24|Q08012|P40417 +GO:0071375,0.532976827094474,0.853629552338304,0.0699458736501659,-0.424693622927049,-0.971138488362354,13,Q9VND8|Q8SXX1|Q08012|P40417|Q9VX98 +GO:0071453,0.771739130434783,0.949162300118836,0.0530212512043078,-0.350950970087501,-0.756989591364228,10,Q9W4P5 +GO:0071478,0.366482504604052,0.707814249088217,0.0916795246008379,-0.507230775906254,-1.10353254258174,11,P06002|P19107|P29829|P13677 +GO:0071482,0.366482504604052,0.707814249088217,0.0916795246008379,-0.507230775906254,-1.10353254258174,11,P06002|P19107|P29829|P13677 +GO:0071495,0.0636515912897823,0.378494348201992,0.231126709673834,-0.499578898036151,-1.39185196203642,30,A0A0B4K7J2|O97102|Q9VP57|Q9VND8|Q8SXX1|Q9VTZ4|Q02748|Q9VF24|Q08012|P40417|Q9VX98 +GO:0071692,0.48731884057971,0.817732637088611,0.0753093764172773,-0.454688755228698,-0.980748549954614,10,O18332|O15971|O18333 +GO:0071695,0.939799331103679,0.989105910682126,0.0403295396423143,-0.231483166470398,-0.662118832557789,34,Q7KM15|Q9NBD7|O62602|Q8SXY6 +GO:0071705,0.0991253644314869,0.388634073823565,0.169570644405628,-0.3599177499744,-1.25835760779815,108,Q9V4E7|Q9V3I2|Q9VLB7|A0A0B4K7J2|Q9VKC8|Q24253|Q9VYT6|Q9VVW3|O18332|O15971|Q9W552|A1Z7S3|Q9VN13|Q7KM15|Q9V3J4|Q9GYU8|Q9W4K0|Q8SXY6|O18333|Q6NL44|Q27268 +GO:0071805,0.0672645739910314,0.380779341271069,0.261663521711573,0.614270748141927,1.48107175021628,12,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|P91927|Q9VLP1|Q7K188 +GO:0071806,0.841620626151013,0.979893913968133,0.0497903187820785,-0.318976812807122,-0.693966750406169,11,Q9VKC8 +GO:0071824,0.433333333333333,0.767685851318945,0.0928481214159878,0.452122887908141,1.028534130996,10,Q27272|Q9VJQ5 +GO:0071826,0.896713615023474,0.987262699375867,0.0580983576873206,0.248405737749681,0.69439012670776,23,Q9VH95|Q9VEB3|P41375|Q9VLW8|Q9W445|Q9VN25|Q9VLV5 +GO:0071840,0.26271186440678,0.599007376020088,0.086794975677172,-0.269832615658775,-1.07404800022164,465,P06002|Q9VU68|Q9W2N0|Q7JYH3|Q7JYX5|Q9U4G1|Q9V3I2|M9PF16|O76902|Q9VGW7|Q7K148|A0A0B4K7J2|Q9VXK7|Q9VKC8|O76742|Q9VYT6|O18332|O15971|Q9V393|Q24492|A1Z7S3|P16378|Q24372|Q9XYZ5|Q7K4T8|A1Z7B8|Q7KM15|O97102|Q9V3J4|P54622|P56538|Q9NBD7|Q9W4W8|Q9GYU8|Q9W0C1|Q9VP57|Q9VND8|O61491|A1Z877|O62602|Q24297|Q8SXX1|Q9W4K0|Q7K1S1|Q8SXY6|Q9W1G7|Q7KLW9|O18333|Q4V5I9|Q9U6P7|Q0KI98|P45888|Q9VBU9|Q9VW73|Q9VKD3|Q27268|P13677|Q9VHG6|A8JTM7|Q9Y105|Q9VLT3|Q9W125|A1Z7X8|Q9VPE2|X2JAU8|Q9VHM3|Q08012|Q9W3X7|Q9W260|Q9VDH3|P40417|Q9VX98|Q7K1M4|P81900|Q7KN75|P91926|Q0KI81|Q9VPX5|Q95RN0|P23625|Q9VQD8|Q8T3X9|P11046|P09040|Q95R34|Q9VB05|Q9VQM2|Q9VZU7|Q7KTJ7|Q7KY04|Q9VSD6|Q9VG42|Q9W1F7|Q7K012|Q9VTU2|Q9W0H3 +GO:0071985,0.49554367201426,0.823120601912389,0.0736212741014394,-0.432661316828788,-0.9893580560548,13,Q9V3I2|O76742 +GO:0072329,0.107744107744108,0.396795334295334,0.175204047558551,-0.488115047745811,-1.32996836159981,27,A1ZBJ2|Q9W1H8|Q5U117|Q9VZI8|Q9VDT1|O97479 +GO:0072359,0.328125,0.666250166600027,0.110122263835536,0.410468923099947,1.08206168671049,18,M9NFC0|P17336|Q7JV09|Q9W3Y3|P38040 +GO:0072376,0.15695067264574,0.486502747943533,0.166933848713193,0.546688371833051,1.31812349219434,12,Q9V3U6|A1ZBU5|Q9VER6|Q9VCJ8|A0A126GUP6 +GO:0072521,0.000586374092826757,0.0251121078884502,0.477270815362862,-0.562118823859182,-1.77614734492816,59,Q9VZX9|Q9VAJ9|O62619|P07486|Q9VUY9|O01666|Q7K5K3|Q95TK5|Q9VXZ8|P35381|Q7JYW9|Q9VA09 +GO:0072522,0.06070826306914,0.376489801591438,0.237793834423688,-0.514294841024507,-1.40810677467147,28,O01666|Q7K5K3|Q9VXZ8|P35381|Q9VA09|Q9VC18 +GO:0072523,0.00010064697227645,0.0124783851786079,0.538434096309916,-0.827591821625662,-1.89243781221704,13,Q9VZX9|O62619|P07486|Q9VUY9|Q7JYW9 +GO:0072524,0.0107533116618736,0.114022175909624,0.380730400722792,-0.618442555478794,-1.59975195030609,22,Q9VAJ9|O62619|P07486|Q9VUY9|Q7JYW9|Q7K569|P54385|Q9VEB1|Q9VGF7|Q8MLS2|Q9W330|P52029 +GO:0072583,0.149171270718232,0.480607752360203,0.154190966581424,-0.61428109850582,-1.33643149172659,11,Q9V3I2|O76742|Q8SXX1|P13677|Q95T12|P91926 +GO:0072593,0.612200435729848,0.887294031008771,0.0730744399126987,0.373015140384632,0.874617504809658,11,P17336|Q9VQI7 +GO:0072594,0.794805194805195,0.95678704856787,0.0687943095604775,0.242189713217079,0.811642614688197,48,Q9Y0V3|O02649|Q9VCH5|Q9VN44|Q9V784|P49963|Q9VGL0|Q9XTL2|P25171|Q9VPB8|Q9VBV5|Q0E8V7|Q9VQ93|Q9VEC8|Q7K0D8|Q9V455|Q6IGW6|Q9VL10 +GO:0072599,0.938997821350763,0.989105910682126,0.0524827622635459,0.253624879232679,0.594680309231961,11,P49963|Q9VBV5|Q9VEC8 +GO:0072655,0.716517857142857,0.929287737573099,0.066436413766281,0.312268208849121,0.812588562439666,17,Q9Y0V3|O02649|Q9V784 +GO:0072657,0.306020066889632,0.649633116134241,0.0965629554309422,-0.370134330183754,-1.0988011966965,43,Q9VKC8|Q0KIE7|O18332|Q9W552|O97102|O61491|O18333|Q9VL69 +GO:0072659,0.191528545119705,0.514048002569236,0.134273452883202,-0.575885372235035,-1.2528976537804,11,Q0KIE7|Q9W552|O97102|O61491 +GO:0080090,0.580882352941177,0.877918828110722,0.0565299525056311,-0.267918086619649,-0.954726830813692,132,P46415|Q9VGW7|Q95RQ8|Q9U9Q4|Q9V393|Q9VKZ8|Q9XYZ5|Q9W403|Q9V3J4|P54622|Q9VP57|Q9VND8|Q7JV69|Q9VKF0|Q0E8C8|Q7KLW9|O77477|Q27268|Q9VHG6|Q02748|Q9VHM3|Q9VW68|P81900|Q7KN75|Q9W5P1|Q9VZU7|Q9VW54|Q9VG42|Q7K012|Q9W0H3 +GO:0080134,0.854632587859425,0.979893913968133,0.0425877779273254,-0.254598215942028,-0.782560200895532,51,Q5U117|Q9V393|Q9VKZ8|O97102|Q0E8C8|Q9W074|Q9VSL5|P40417 +GO:0090066,0.44314381270903,0.77668444042419,0.0760837160951725,-0.344368272225366,-1.01212332470981,40,Q9VU68|Q9W2N0|Q24372|Q9VND8|O62602|Q9VLT3|X2JAU8|Q08012|P40417 +GO:0090130,0.106115107913669,0.394427853943261,0.183023938384487,-0.545694799145377,-1.35311105384309,19,Q9VU68|Q9V3I2|O76742 +GO:0090132,0.120938628158845,0.422427477788873,0.170932335370056,-0.547586907134228,-1.3393769830754,18,Q9VU68|Q9V3I2|O76742 +GO:0090150,0.933333333333333,0.989105910682126,0.0585937568945671,0.228429377147428,0.682806233300835,31,Q9Y0V3|Q9V784|P49963|Q9VBV5|Q0E8V7|Q8T9B6|Q9VQ93|Q9VEC8 +GO:0090174,0.397923875432526,0.727285241860043,0.0835990603684159,-0.407644332899969,-1.05447112397218,22,Q7JYX5|Q9V3I2|O76742|Q9W0C1|O18333|Q9U6P7 +GO:0090304,0.1985559566787,0.525408870376727,0.190023305279108,0.274559994430736,1.10837690716423,177,Q9V3B6|Q9V3V0|Q9W0R0|Q27272|Q8IRH5|Q9VM69|Q9VP13|Q9VE52|Q9VW14|Q9VCH5|Q9VE08|Q9VEB3|Q9VJQ5|P28668|Q9VXN3|Q9VDQ3|Q7KSE4|Q9VIS4|Q8IPX7|Q9W0C3|Q9VVI2|Q9V3W9|O97454|Q94901|Q9VND7|Q9VSK9|P53034|Q7KN90|Q9W1M9|Q9V3W0|Q9V3P3|P20240|Q9U9Q2|Q9VVL8|Q9VLW8|Q9W087|Q9VEP9|Q24478|P05205|Q9VLM8|Q9VRJ6|Q9VTW6|Q9V3T8|Q7K180 +GO:0090407,0.0496,0.339371532784748,0.257206466468838,-0.449010648246877,-1.40008477354012,56,O01666|Q7K5K3|Q9VXZ8|Q9VF86|P35381|Q9VA09|Q9VH77|Q86BN8|Q9VC18|Q8SXX1|Q9VTZ4|P32748|O97479|Q7KTW5|Q01637|P54352|Q9VFP6 +GO:0090596,0.00791203726804474,0.108686291344174,0.380730400722792,-0.545714104354718,-1.58144967109495,37,P06002|Q9U4G1|Q5U117|Q9VBC7|Q08012|P40417|P23625|Q9VZU7|Q9VSD6|Q7KJ08 +GO:0097305,0.258620689655172,0.593802748975163,0.108820126769161,-0.434959279083126,-1.15111780670935,24,Q9VLC5|Q9V3J4|Q9VP57|P13677|P40417|Q9VX98|P81900|Q9VCW6 +GO:0097435,0.454545454545455,0.79158738846752,0.0732558655828455,-0.332740301350627,-1.00494891709525,46,Q9VU68|Q9W2N0|M9PF16 +GO:0097485,0.496655518394649,0.823578595317726,0.0702812841717392,-0.338961991945897,-0.980159912105438,36,Q9U4G1|M9PF16|Q9NBD7|Q9VND8|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08|Q00174|P51140|O15943 +GO:0098542,0.976539589442815,0.990619459939416,0.0646484568421928,0.19489286388704,0.730357684635816,95,Q8SXD5|Q70PY2|Q9V521|Q9VP13|Q9VCH5|Q7KUA4|Q9W4C2|Q9VCE1|Q9VLU4|Q7K2W6|A1ZBU5|Q9VER6|Q9W1M9|Q9VVK7|Q9VBI3 +GO:0098609,0.520338983050848,0.845765508754265,0.0686325631836726,-0.352223908866831,-0.957364302326946,26,Q9U4G1|Q24372|O61491|Q9W260|Q7KTJ7|Q7KY04 +GO:0098655,0.00876834319448911,0.108686291344174,0.380730400722792,-0.55746589633678,-1.57652930622409,33,Q9V4E7|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q8IQ70|P35381|Q9VAY3 +GO:0098657,0.108766233766234,0.396795334295334,0.170932335370056,-0.430801201881754,-1.30111441132042,46,Q9V3I2|O76902|P19107|Q9W3K6|O76742|Q9V393|O61491|Q8SXX1|P13677|Q9W2V2|A8JTM7|Q9VLT3|Q08012|Q95T12|P91926|Q9VPX5 +GO:0098660,0.000395835000375284,0.0216609708538697,0.49849310876659,-0.632080094514218,-1.82311148282509,35,Q9V4E7|Q7JUS9|Q0E8E8|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q8IQ70|P35381|Q9VAY3 +GO:0098662,0.00876834319448911,0.108686291344174,0.380730400722792,-0.55746589633678,-1.57652930622409,33,Q9V4E7|A0A0B7P9G0|Q9W4P5|Q9VXK7|Q8IQ70|P35381|Q9VAY3 +GO:0098727,0.767857142857143,0.949162300118836,0.0630790410571939,0.300345743962511,0.781563762833412,17,Q9VCH5|Q9V4S8|P09208|P20240 +GO:0098742,0.537906137184116,0.853814898419865,0.070113215764256,-0.389224015781694,-0.952027305996907,18,Q9U4G1|Q24372 +GO:0098771,0.174460431654676,0.502466447894316,0.139599673451922,-0.504687091496971,-1.2514278737968,19,A0A0B7P9G0|Q9W4P5|Q8IQ70|Q9VAY3|Q4V5I9|P25455|Q9VWP4 +GO:0098813,0.762443438914027,0.949162300118836,0.0640703750499722,0.31726621792883,0.797644647083712,15,Q7KND8|P25171|Q9VQ93|Q86BS3|A1Z6P3|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0098876,0.380434782608696,0.72201977046159,0.0886261133285098,-0.506380770456317,-1.0922465106931,10,O76742|Q9W552 +GO:0098916,0.60702875399361,0.887294031008771,0.0583452776743612,-0.298230400353205,-0.916672731385913,51,Q9VLB7|M9PF16|Q9NHE5|O17444|Q9W0C1|Q9U6P7|X2JAU8|P25455|P40417|P23625|Q9VFP6|Q7KJ08|Q9VH25|Q9VFM9 +GO:0098930,0.117863720073665,0.416113850439283,0.175204047558551,-0.629764346781637,-1.37011688533606,11,Q9U4G1|O18332|Q9VJQ6 +GO:0099003,0.219081272084806,0.557609956081482,0.121543282035469,-0.476902353197175,-1.2046779571445,20,Q9V3I2|Q9NHE5|Q9W0C1|Q9U6P7|Q95T12|P91926|Q9VPX5|Q9VH25|Q9VFM9 +GO:0099111,0.0998217468805704,0.388634073823565,0.188204146308491,-0.610518473986917,-1.39606049146349,13,Q9U4G1|O18332|Q9VJQ6|Q9NJH0|Q94524 +GO:0099177,0.898058252427185,0.987262699375867,0.0596037042575973,0.242765562905356,0.695905524656445,26,P17336|Q9VK99|Q7K1U0|Q9VKA1|Q9VLP0|P36975 +GO:0099504,0.219081272084806,0.557609956081482,0.121543282035469,-0.476902353197175,-1.2046779571445,20,Q9V3I2|Q9NHE5|Q9W0C1|Q9U6P7|Q95T12|P91926|Q9VPX5|Q9VH25|Q9VFM9 +GO:0099536,0.656957928802589,0.914662931548777,0.0552495663125249,-0.290406656594325,-0.895330953428583,52,Q9VLB7|M9PF16|Q9NHE5|O17444|Q9W0C1|Q9U6P7|X2JAU8|P25455|P40417|P23625|Q9VFP6|Q7KJ08|Q9VH25|Q9VFM9 +GO:0099537,0.656957928802589,0.914662931548777,0.0552495663125249,-0.290406656594325,-0.895330953428583,52,Q9VLB7|M9PF16|Q9NHE5|O17444|Q9W0C1|Q9U6P7|X2JAU8|P25455|P40417|P23625|Q9VFP6|Q7KJ08|Q9VH25|Q9VFM9 +GO:0099643,0.312274368231047,0.65029651735218,0.0999276973731092,-0.461124266328805,-1.12789261505651,18,Q9VLB7|Q9NHE5|Q9W0C1|Q9U6P7 +GO:0104004,0.129496402877698,0.438329748572276,0.16440575583821,-0.598550216324243,-1.33412765500721,12,P06002|Q9V4E7|P19107 +GO:0110053,0.0661896243291592,0.380779341271069,0.234392647294686,-0.597049341665254,-1.43143939635749,16,Q9VU68|Q9W2N0 +GO:0120031,0.355203619909502,0.698354422376966,0.105920292736253,0.424835180237808,1.06808569037611,15,A1Z9J3|P45594|Q9VD64|Q9VNE2|Q9NCC3|P32392|Q9VQV7 +GO:0120032,0.540305010893246,0.853814898419865,0.0795564677235957,0.403644438627476,0.946434751625976,11,A1Z9J3|P45594|Q9VNE2|P32392|Q9VQV7 +GO:0120035,0.973039215686275,0.989105910682126,0.0562940749700968,0.207981068730805,0.601629422750806,27,A1Z9J3|Q9VAF5 +GO:0120036,0.177469135802469,0.505804182746172,0.126875729929857,-0.361954745712999,-1.19439192344669,78,Q9VU68|Q9U4G1|Q9V3I2|M9PF16|O18332|P16378|O97102|Q9NBD7|Q9VND8|Q0KI98|P45888|Q9Y105|Q9W260|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0120039,0.173501577287066,0.502466447894316,0.130105630751129,-0.379359293099818,-1.19867539141842,59,Q9U4G1|Q9V3I2|M9PF16|O18332|O97102|Q9NBD7|Q9VND8|Q0KI98|Q9Y105|P81900|Q0KI81|P23625|P11046|Q7KTJ7|Q7K012|Q7KJ08 +GO:0120192,0.105072463768116,0.393183516782171,0.184706471207739,-0.65384869339236,-1.41032992472342,10,P16378|Q24372|Q9VLT3 +GO:0120193,0.105072463768116,0.393183516782171,0.184706471207739,-0.65384869339236,-1.41032992472342,10,P16378|Q24372|Q9VLT3 +GO:0140013,0.716390423572744,0.929287737573099,0.0572461135202885,-0.365652442992781,-0.795514367983903,11,O18332 +GO:0140014,0.493212669683258,0.820632566956097,0.0865399737444125,0.383279456923947,0.963609706537112,15,Q7KND8|P25171|Q9VQ93|Q86BS3|P92177|A1Z6P3|P08928|Q7JNE1|Q7K2D2|Q9VCC0 +GO:0140029,0.775784753363229,0.949162300118836,0.0628003977812234,0.323546586215789,0.780105043537583,12,Q9VPN5|Q9W1I8|P36975 +GO:0140053,0.958199356913183,0.989105910682126,0.0376142599562161,-0.21337123115136,-0.663690585821291,54,Q7K3V6|Q8SXF0|Q9VM33|A1Z9E3|O77477|Q9VKD3|Q9VQ35|Q9VF89|Q8WTC1|Q9VV39 +GO:0140352,0.0869565217391304,0.388634073823565,0.195789002148949,-0.448829586736932,-1.33242027772593,43,A0A0B7P9G0|Q7JYX5|Q9VLB7|Q9NHE5|O76742|O18332|O15971|Q9W0C1|O18333|Q9U6P7 +GO:0140546,0.992272024729521,0.997711584633853,0.0341204536062472,-0.194958679900652,-0.627491810967475,67,O18332|O97102|Q9VT23|Q9GYU8|Q9VAQ4|Q9VLY7|Q0E8C8|Q9W074 +GO:0140694,0.780201342281879,0.951111784836202,0.0489954089862481,-0.279468355505983,-0.815395195961551,38,Q9VU68|P56538|Q9NBD7 +GO:0141124,0.000785630803047135,0.0286609755926455,0.477270815362862,-0.557021590840993,-1.76035894773498,60,Q9V3I2|Q9VLB7|Q9V3N7|Q9VW59|Q9VA09|O76742|O18332|O15971|Q9V393|A1Z7S3|P16378|O97102|Q9VH66|Q9VND8|O62602|Q8SXX1|O18333|Q9VW73|P13677|Q9VHM3|Q08012|P40417|Q9VB05|Q9VZU7|Q7KY04 +GO:0141187,0.198757763975155,0.525408870376727,0.175204047558551,0.281686504435984,1.11166954719247,134,Q9V3B6|Q9V3V0|Q9W0R0|Q27272|Q8IRH5|Q9VM69|Q9VP13|Q9VE52|Q9VW14|Q9VCH5|Q9VE08|Q9VEB3|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4|Q9VIS4|Q8IPX7|O97454|Q94901|Q9VND7|Q9VSK9|Q9W1M9|Q9V3P3|P20240|Q9U9Q2|Q9VLW8|Q9W087|Q9VEP9|Q24478 +GO:0141188,0.137440758293839,0.455230478640035,0.184706471207739,0.463753475642407,1.30409590004053,24,Q8IPX7|Q9W0C3|Q9VVI2|Q9W1M9|Q9V3W0 +GO:0150063,0.0306778752064693,0.234245791305211,0.352487857583619,-0.503880376706801,-1.48286726244066,41,P06002|Q9U4G1|Q5U117|Q24253|Q9VBC7 +GO:0160032,0.15695067264574,0.486502747943533,0.166933848713193,0.546688371833051,1.31812349219434,12,Q9V3U6|A1ZBU5|Q9VER6|Q9VCJ8|A0A126GUP6 +GO:0170033,0.00922607532383611,0.108686291344174,0.380730400722792,-0.564748596312641,-1.59215144037596,32,Q9VZX9|P05031|Q9VNX4|Q9VJ31|Q9VZI8|Q9VSL9|Q9VNW6|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0170035,0.0858676207513417,0.388634073823565,0.204294756516886,-0.58040203994121,-1.39152711127836,16,Q9VZX9|Q9VNX4|Q9VZI8|Q9VSL9|P54385|Q9VY42|Q9VHD3 +GO:0170038,0.202898550724638,0.532946859903382,0.128788713061714,-0.586910338578785,-1.26594611565662,10,Q9VJ31|Q9VNW6|Q9VCK6|Q6AWN0|Q9VEJ3 +GO:0170039,0.0522765598650928,0.347921699102138,0.257206466468838,-0.510674337618294,-1.43970412234879,32,P05031|Q9VNX4|Q9VJ31|Q9VZI8|Q9VSL9|Q9VNW6|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:0170040,0.315884476534296,0.654103493674014,0.0992333343771191,-0.465280726279888,-1.12561351185247,17,Q9VNX4|Q9VZI8|Q9VSL9|P54385|Q9VY42|Q9VHD3 +GO:0170041,0.359712230215827,0.700230329570336,0.0913924325943768,-0.489519220358783,-1.09110499290913,12,Q9VZX9 +GO:0170062,0.614130434782609,0.887294031008771,0.0637845390312975,-0.403750358248614,-0.870876118756921,10,P35381|A1Z7S3 +GO:1900424,0.613995485327314,0.887294031008771,0.0747385227439092,0.34895085338599,0.893730923043405,16,Q9VCJ8|Q9VN50|Q9NCC3|Q9VB68|Q7K4Z4|Q9VL00|Q9VS97|Q95RA9|Q7KNM2 +GO:1900426,0.462222222222222,0.797353570733606,0.0891647117820678,0.444512124250476,1.01122040856741,10,Q9VCJ8|Q9VN50|Q9VB68|Q7K4Z4|Q9VL00|Q9VS97|Q95RA9 +GO:1901016,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1901018,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1901135,0.00178640227302143,0.0475569253763814,0.45505986738723,-0.49643303302987,-1.62029227750005,73,Q9VZX9|O62619|P07486|Q9VUY9|Q9VG81|O01666|Q9VF86|P35381|Q7JYW9|Q24319|Q9VA09|P15425|Q7K569|Q9VH77|Q9VC18|Q9VN86|Q9VTZ4|P32748|O97479 +GO:1901136,0.0106245310347554,0.114022175909624,0.380730400722792,-0.618962845495378,-1.60109780686363,22,Q9VZX9|O62619|P07486|Q9VUY9|Q9VF86|Q7JYW9 +GO:1901137,0.00955430867515076,0.109161245498133,0.380730400722792,-0.535794674891764,-1.58672064321955,42,Q9VG81|O01666|Q9VF86|P35381|Q24319|Q9VA09|Q9VH77|Q9VC18|Q9VN86|Q9VTZ4|P32748|O97479 +GO:1901292,0.0148008385878618,0.138845961990894,0.380730400722792,-0.707105600071829,-1.61692435792536,13,O62619|P07486|Q9VUY9|Q7JYW9 +GO:1901293,0.00793578128992225,0.108686291344174,0.380730400722792,-0.553635561878275,-1.59685356163024,35,O01666|Q7K5K3|Q9VXZ8|Q9VF86|P35381|Q9VA09|Q9VH77|Q9VC18|Q9VTZ4|P32748 +GO:1901379,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1901381,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1901605,0.033213181279039,0.249732698930178,0.321775918075361,-0.501940700678729,-1.4771589987044,41,Q9VZX9|P05031|Q9VNX4|Q9VJ31|Q9VZI8|Q9VSL9|Q9VNW6|P54385|Q9VW68|Q9VY42|Q9VHD3 +GO:1901606,0.0989399293286219,0.388634073823565,0.188204146308491,-0.545965491719371,-1.37913471977344,20,Q9VZX9|Q9VNX4|Q9VZI8|Q9VSL9|P54385|Q9VY42|Q9VHD3 +GO:1901607,0.576785714285714,0.875195392842452,0.066132620475844,-0.387373601484744,-0.914102017000599,15,Q9VJ31|Q9VNW6|Q9VG42|Q9VCK6|Q6AWN0|Q9VEJ3 +GO:1901698,0.0653266331658292,0.380779341271069,0.227987202850442,-0.496734695744783,-1.3839278712567,30,Q9VKZ8|Q9W3J1|A1Z803|Q9VND8|Q8SXX1|Q9I7X6|Q8IMT6|Q08012|P40417|Q9VX98|P81900 +GO:1901699,0.146209386281588,0.477589877010407,0.154190966581424,-0.531942142486254,-1.28688172384363,17,Q9W3J1|Q9VND8|Q8SXX1|Q9I7X6|Q8IMT6|Q08012|P40417|Q9VX98 +GO:1901700,0.0305504665590221,0.234245791305211,0.352487857583619,-0.466899853418122,-1.45586608712096,56,A0A0B7P9G0|P46415|O62619|Q9VXK7|P05031|Q9W3J1|Q9VLC5|Q9V3J4|Q9VP57|Q9VND8|Q8SXX1|Q9I7X6|P13677|Q08012|P40417|Q9VX98|P81900|Q9VCW6|P23625 +GO:1901701,0.0720268006700168,0.388634073823565,0.216542836735348,-0.489352504409903,-1.37067079039068,31,A0A0B7P9G0|P46415|Q9W3J1|Q9V3J4|Q9VP57|Q9VND8|Q8SXX1|Q9I7X6|Q08012|P40417|Q9VX98|P81900|P23625 +GO:1901888,0.0626118067978533,0.378494348201992,0.241339976815091,-0.605833893746365,-1.45250056006832,16,M9PF16|P16378|Q9VND8|O61491|P45888|X2JAU8 +GO:1901987,0.166666666666667,0.492992992992993,0.160801401070022,0.577541824540284,1.31384960705213,10,Q7KND8|P53034|Q9V3P3|Q86BS3|P92177|Q4QQ70|P48609 +GO:1902531,0.0369580591518082,0.26767417841567,0.321775918075361,-0.4920176049403,-1.44607542068231,40,Q9V393|O97102|Q9V3J4|Q9VP57|Q9VND8|O62602|Q8SXX1|Q9I7X6|Q9VW73|Q7K519|Q9VHM3|Q08012|Q9VX98|Q9VB05|Q9VZU7|Q7KJ08 +GO:1902532,0.0794223826714802,0.388634073823565,0.213927855492356,-0.586210339868967,-1.41816809094991,17,Q9V393|Q9VND8|O62602|Q8SXX1|Q9I7X6 +GO:1902533,0.170689655172414,0.501798797300491,0.138022242496643,-0.475190077294704,-1.25758843609125,24,O97102|Q9V3J4|Q9VP57|Q9VND8|Q9VW73|Q7K519|Q9VHM3|Q08012|Q9VX98|Q9VB05|Q7KJ08 +GO:1902600,0.160714285714286,0.486502747943533,0.14551614609036,-0.544507929065555,-1.28489859485493,15,Q9W4P5|Q9VXK7|P35381 +GO:1902679,0.568345323741007,0.875127485306333,0.0672065093710464,-0.412612012261165,-0.919684065484649,12,Q9VGW7|Q9W403|Q9VP57 +GO:1902680,0.894977168949772,0.987262699375867,0.0568864160475701,0.249823766066078,0.689068895771662,21,Q8IRH5|Q9VCH5|Q9VJQ5 +GO:1902850,0.908273381294964,0.988193754211198,0.0452247443372884,-0.268894572573385,-0.666754051966929,19,O97102|Q9NBD7 +GO:1902903,0.129310344827586,0.438329748572276,0.160801401070022,-0.491771012539503,-1.30146980781969,24,Q9VU68|Q9W2N0|M9PF16 +GO:1902905,0.969498910675381,0.989105910682126,0.051011413203915,0.236122267144056,0.553641516820431,11,Q9VCH5|Q9I7K0|A0A0B4KHJ9|Q7K549|P08928|O61443|Q9VCC0 +GO:1903046,0.886725663716814,0.98280533442935,0.0455878202571231,-0.288713848347915,-0.669793108481286,14,O18332 +GO:1903047,0.93322203672788,0.989105910682126,0.0405756447890657,-0.230802987673039,-0.677339514382473,39,O18332|O97102|Q9NBD7|Q9VND8|P40797 +GO:1903050,0.865831842576029,0.982539590941691,0.0471642455670861,-0.295153864992978,-0.707638114397264,16,Q9U9Q4|Q9VKZ8 +GO:1903052,0.708061002178649,0.929287737573099,0.0658311958368866,0.343472765599456,0.805348793373121,11,Q9VVB4 +GO:1903311,0.744075829383886,0.947803589122537,0.0675188953767744,0.285336350134365,0.802378815225699,24,Q9V3V0|Q9W0C3|Q9VEP9|Q9VTW6|Q9V3T8|Q9W1H5|Q9W254|P43332|Q9VEN9|A0A0B4KGY6 +GO:1903530,0.600713012477718,0.887109920975341,0.0640703750499722,-0.395688090228133,-0.904812111749423,13,Q9NHE5|O18332|Q9U6P7 +GO:1903818,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1904062,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1904064,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:1904396,0.114285714285714,0.407867494824017,0.175204047558551,-0.575880352704749,-1.35892944160563,15,M9PF16|P16378|Q9VND8|P45888|X2JAU8 +GO:1990542,0.00016837053499694,0.0124783851786079,0.518848077743792,-0.809732764093608,-1.91076095545088,15,Q7JUS9|Q0E8E8|Q9VKC8|Q8IQ70|Q9VVW3|Q7KSQ0|Q9VN13|Q9VAY3 +GO:1990778,0.0953237410071942,0.388634073823565,0.193813302725311,-0.628393809091025,-1.40064699014245,12,Q0KIE7|O18332|Q9W552|O97102|O61491 +GO:2000026,0.828502415458937,0.971517713365539,0.0632191170859458,0.249129621225249,0.784672011257964,37,A1Z9J3|Q7KSE4|Q8IPX7|P09208|Q94901|Q9VGQ8|P38040|P25171 +GO:2000058,0.970521541950113,0.989105910682126,0.052805004567129,0.234457091868036,0.568336113825865,13,Q9VVB4 +GO:2000060,0.708061002178649,0.929287737573099,0.0658311958368866,0.343472765599456,0.805348793373121,11,Q9VVB4 +GO:2000145,0.586666666666667,0.878216818642351,0.0762797180809272,0.39863052619762,0.906844384163201,10,P48596|P09208|Q9XTL2|Q960X8 +GO:2001141,0.567774936061381,0.875127485306333,0.0855356947987884,0.283801487411135,0.936315156796778,45,Q9V3V0|Q9W0R0|Q8IRH5|Q9VCH5|Q9VJQ5|Q9VXN3|Q9VDQ3|Q7KSE4 +GO:2001257,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 +GO:2001259,0.0958605664488017,0.388634073823565,0.213927855492356,0.60847849265239,1.42671404818908,11,Q9VK99|Q9VKA1|Q9VLP0|Q9VII1|Q9VIH9|Q9VLP1|Q7K188 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SFug_vs_Earth.csv new file mode 100644 index 0000000..f6d7ba8 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SFug_vs_Earth.csv @@ -0,0 +1,986 @@ +pathway,pval,padj,log2err,ES,NES,size,leadingEdge +GO:0000070,0.260485651214128,0.68160280883556,0.125033367555272,-0.440113315963486,-1.18114091441673,13,Q86BS3|A1Z6P3|Q7JNE1|Q9VCC0|Q7KND8|P25171|Q9VQ93 +GO:0000165,0.450244698205546,0.807816079658403,0.0739901439101342,0.348205667158391,0.99609579157832,22,Q9VZU7|Q9V393|Q9VW73|O62602|O61443|Q7KJ08|Q9VB05 +GO:0000226,0.350877192982456,0.7557726373898,0.12384217120105,-0.279610442865271,-1.04672180196815,48,Q9VHT3|Q9VJZ5|Q9I7K0|Q9VB22|Q86BS3|A1Z6P3|P17210|M9PGG8|A1Z9J3|Q9VCC0 +GO:0000278,0.758208955223881,0.976515065270188,0.0449543067640062,0.234278286414791,0.836832698519071,65,Q9W2E7|Q9VH81|P48596|Q94901|Q9VPL0|Q7K012|O18332|Q9VP57|Q9VE85|Q02748|P48148|Q9NBD7|Q9VB05|P40797|Q9VGP6 +GO:0000280,0.833060556464812,1,0.0448645113168564,0.254593186805737,0.742553172232378,24,P21187|Q9W2E7 +GO:0000281,0.947019867549669,1,0.0526973085708419,-0.228660677158825,-0.592073110281319,12,P83967|Q23983|Q8T0Q4 +GO:0000302,0.750915750915751,0.975293507473243,0.0547939500773363,0.339974349893649,0.785571809837454,10,P17336|Q9VXK7|P05031|O61443 +GO:0000375,0.437596302003082,0.79820806939451,0.0725351864394589,0.295430060086175,1.0136217568422,52,P21187|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q9VXE0|Q24297|Q02748|Q27268 +GO:0000377,0.437596302003082,0.79820806939451,0.0725351864394589,0.295430060086175,1.0136217568422,52,P21187|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q9VXE0|Q24297|Q02748|Q27268 +GO:0000380,0.179930795847751,0.574809904237254,0.134273452883202,0.477861845133643,1.25054109615496,16,Q7KLW9|Q9W3M7|Q8MZI3|Q02748|Q27268 +GO:0000381,0.56648451730419,0.899979434749398,0.0679922591544058,0.374837153427816,0.918618254481136,13,Q7KLW9|Q02748|Q27268|A0A0B4KGY6 +GO:0000398,0.437596302003082,0.79820806939451,0.0725351864394589,0.295430060086175,1.0136217568422,52,P21187|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q9VXE0|Q24297|Q02748|Q27268 +GO:0000578,0.957547169811321,1,0.0552495663125249,-0.205811009157449,-0.603030525052979,18,Q9VQ91|P17210 +GO:0000819,0.260485651214128,0.68160280883556,0.125033367555272,-0.440113315963486,-1.18114091441673,13,Q86BS3|A1Z6P3|Q7JNE1|Q9VCC0|Q7KND8|P25171|Q9VQ93 +GO:0000902,0.636764705882353,0.938236326264601,0.0522693317499306,0.247482806141563,0.895430836917012,72,Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|O18332|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|Q0KI98|O44386|P08646|P35992|Q24090|O97102 +GO:0000910,0.860103626943005,1,0.0458620343117985,0.272126817234997,0.720628026341051,17,P21187|O18332|P48148|Q9VB05|P40797 +GO:0000956,0.761384335154827,0.976515065270188,0.0538979025357319,0.321450151057402,0.78778203805753,13,Q9VNH5|P23128|Q9VKK1|Q9VJI7|Q9VEN9|Q9W1H5|Q9W0C3|Q7K1Q7|Q9W2K2|Q8SY33|Q8IPX7|Q9W1M9|Q9VVI2 +GO:0001558,0.91832229580574,1,0.0541200569620232,-0.247825135233049,-0.641695810781677,12,Q9VRJ6|A1Z9J3|M9PHA0|Q94533 +GO:0001654,0.0107065479400119,0.210918994418235,0.380730400722792,0.488602900617245,1.61835179943612,41,Q9VZU7|P21187|Q24253|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0001666,0.24780701754386,0.66984942402507,0.128142916898415,-0.498397457479729,-1.21491303761475,10,P91927|Q9VF15|O46067|Q9VG69|Q9Y0V3 +GO:0001667,0.017029558039895,0.226451508042196,0.352487857583619,0.571385675639325,1.58584112137146,20,Q9VU68|Q9V3I2|P48596|P12080|O76742 +GO:0001700,0.928455284552846,1,0.0395979123961192,0.229448134168168,0.663729886370672,23,P32392|Q9V3I2 +GO:0001709,0.357456140350877,0.762108870661502,0.103576326612592,-0.449079832738853,-1.09469447633865,10,Q9VB22|A1Z9J3|P92177|Q9VQQ0 +GO:0001736,0.46448087431694,0.819916955559473,0.0780892306943345,0.409695413701554,1.00404584327291,13,Q9VU68|P16378|P48148|P08646 +GO:0001738,0.508650519031142,0.857912262406977,0.0707899094502623,0.370578761296114,0.96978650855329,16,Q9VU68|P16378|P48148 +GO:0001745,0.0138701807408459,0.226451508042196,0.380730400722792,0.501016595635372,1.60600399405685,36,Q9VZU7|P21187|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0001751,0.00948345095931849,0.210918994418235,0.380730400722792,0.541208008033529,1.63486928067867,27,Q9VZU7|P21187|Q9VBC7|P06002|Q9VPX6|Q9U4G1 +GO:0001754,0.0180437216555887,0.23081903676305,0.352487857583619,0.514231405240348,1.56714152813563,28,Q9VZU7|P21187|Q9VBC7|P06002|Q9VPX6|Q9U4G1 +GO:0001763,0.632058287795993,0.938236326264601,0.0626618230932492,0.36809352996482,0.883156285064142,12,Q9W4P5|Q9VVA7|Q9VND8|P08646|P35992|P40417 +GO:0001894,0.0115844536522927,0.212667264080604,0.380730400722792,-0.680479634299328,-1.76197192525085,12,P10676|P19334|Q7K5M6|Q9W3E2|Q9W266 +GO:0002009,0.638036809815951,0.938236326264601,0.0541200569620232,0.266116080023821,0.89884944549438,47,Q9VU68|Q9V3I2|Q9W4P5|Q9VLT3|P16378|O62602|P48148|Q9VVA7|Q9VW57|Q9VND8|Q24372|O44386|P08646|P35992|P40417|Q9VM50 +GO:0002064,0.117370892018779,0.489353662717877,0.160801401070022,0.418064242655224,1.3139452869796,32,Q9VU68|Q9V3I2|P12080|O76742|Q9W414|Q7KY04|P48148 +GO:0002164,0.240650406504065,0.658198474024396,0.109684061970549,0.41211246937591,1.19212720322377,23,Q9VQE0|P48596|Q9VW34|Q9VSN9|Q9VR79 +GO:0002165,0.204477611940299,0.619724454649828,0.114750719227023,0.329178789532837,1.17581351202257,65,Q9VU68|Q9VBC7|Q9VHC3|Q9V3I2|P48596|P12080|Q9VW34|Q9VSN9|Q9VR79|P16378|P12370|Q9VF24|Q9VFC2|Q9VY05|O61443|P48148|P40797|Q9VW57|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|O97102|Q9VM50 +GO:0002168,0.0635208711433757,0.366612762462139,0.241339976815091,0.613599191270093,1.45994596393523,11,P48596|Q9VW34|Q9VSN9|Q9VR79 +GO:0002181,0.00109043976886001,0.0488219623785049,0.45505986738723,0.52989771240859,1.79986928990194,48,O16797|P41093|Q9VNE9|Q0E9B6|Q9VNB9|O02195|P50887|Q94901|P29327|P09180|Q9V9M7|Q9W1B9|A1ZA22|Q9VBU9|Q9V3G1|Q02748|Q9VDV2 +GO:0002218,0.948998178506375,1,0.0438002031299891,0.255434782608696,0.612857372707483,12,Q9NHA8|Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0002221,0.948998178506375,1,0.0438002031299891,0.255434782608696,0.612857372707483,12,Q9NHA8|Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0002252,0.170212765957447,0.56833754056978,0.16440575583821,-0.441654980615289,-1.2729081303267,17,Q9V521|A1Z6P3|Q7KUA4 +GO:0002253,0.948998178506375,1,0.0438002031299891,0.255434782608696,0.612857372707483,12,Q9NHA8|Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0002376,0.748407643312102,0.975107842146059,0.0824344091527096,-0.209937590660136,-0.871263738755967,89,Q9V521|A1ZBU5|Q8IN43|Q8IN44|Q9VCE1|Q9VL01|Q9VCH5|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q9VSL4|Q9VQX3|Q9VIX1|Q7KSE4|Q960M4|Q7JNE1|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0002440,0.823399558498896,0.999853164621612,0.059221919380382,-0.281158667866386,-0.728006621140974,12,Q7KUA4 +GO:0002520,0.688644688644689,0.953614292486963,0.0588438169595807,0.360425792303217,0.832828541507054,10,Q9VQE0 +GO:0002682,0.814701378254211,0.999229021262782,0.042845050912155,0.239237788251441,0.784083079377626,40,P45437|P17336|Q7JWX3|Q9VSL5|Q9VFC2|O61443|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50|P08646|Q9VCJ8|O97102 +GO:0002683,0.669926650366748,0.953614292486963,0.0743625384422526,-0.287034107047603,-0.857692934217748,20,Q9VCE1|Q7KUA4|Q9VSL4|Q7KSE4|Q960M4|Q9VLU4|P08985|Q9W2D6 +GO:0002684,0.92520325203252,1,0.03975964750879,0.225828502304839,0.664729273572173,25,P45437|Q9NHA8|Q9V3Z2|Q9VN50|P08646|Q9VCJ8|O97102|Q9W074 +GO:0002697,0.768211920529801,0.982712651586824,0.0625237414724762,-0.298361011498399,-0.772548801392016,12,Q7KUA4 +GO:0002700,0.700665188470067,0.953614292486963,0.0672065093710464,-0.325117900465116,-0.818815903166232,11,Q7KUA4 +GO:0002757,0.948998178506375,1,0.0438002031299891,0.255434782608696,0.612857372707483,12,Q9NHA8|Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0002758,0.948998178506375,1,0.0438002031299891,0.255434782608696,0.612857372707483,12,Q9NHA8|Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0002759,0.700665188470067,0.953614292486963,0.0672065093710464,-0.325117900465116,-0.818815903166232,11,Q7KUA4 +GO:0002764,0.948998178506375,1,0.0438002031299891,0.255434782608696,0.612857372707483,12,Q9NHA8|Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0002775,0.823399558498896,0.999853164621612,0.059221919380382,-0.281158667866386,-0.728006621140974,12,Q7KUA4 +GO:0002784,0.700665188470067,0.953614292486963,0.0672065093710464,-0.325117900465116,-0.818815903166232,11,Q7KUA4 +GO:0002831,0.995433789954338,1,0.0332359307785383,0.163364840002297,0.54109744835391,41,P45437|Q7JWX3|Q9VSL5|Q9VFC2|O61443|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50|Q9VCJ8|O97102|Q9VA41|Q9W074|P23128 +GO:0002832,0.780660377358491,0.985745703835836,0.0649407684612899,-0.26962723509177,-0.790013390496453,18,Q9VCE1|Q7KUA4|Q9VSL4|Q960M4|Q9VLU4|P08985|Q9W2D6 +GO:0002833,0.99198717948718,1,0.0358449292332649,0.173427902040993,0.523887202795796,27,P45437 +GO:0002920,0.700665188470067,0.953614292486963,0.0672065093710464,-0.325117900465116,-0.818815903166232,11,Q7KUA4 +GO:0003002,0.376160990712074,0.783634489644732,0.0806388495950661,0.314279674938813,1.05794572515339,46,P21187|Q0E8E8|Q9VPX6|O76742|Q9VSN9|P12370|Q9VF24|O62602|Q8SXY6|P48148 +GO:0003006,0.0400572246065808,0.303471176228947,0.271288554688953,0.362672727036527,1.37455960671702,102,P21187|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9V3I2|Q9W0S7|P12080|Q9VPX6|Q94901|Q9XYZ5|O76742|Q9W414|Q9VJQ6|Q9VAY3|P12370|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9VVG0|Q9NBD7|Q9VB05 +GO:0003008,0.290229885057471,0.720091780306321,0.136490437780413,-0.280059220309569,-1.09327996726695,57,P19334|P29613|P18432|Q7K5M6|Q9W369|Q23970|P54192|A1Z6P3|M9NFC0|Q7KLE5|Q9VKE2|A0A0B4KHJ9|Q9W385|Q7K1U0|Q9VAI9 +GO:0005975,0.587057010785824,0.922980604181006,0.0582216241124161,0.269508797625073,0.92468579823417,52,Q7JYW9|Q9VTZ4|Q9VUY9|Q9VF86|Q9VW68|O62619|Q8MLS2|Q9VW34|Q9VVL5|Q9VZJ8|Q9VH77|P07486 +GO:0005996,0.607371794871795,0.938236326264601,0.0584693210386381,0.296289617764724,0.89502517900209,27,Q7JYW9|Q9VUY9|O62619|Q8MLS2|Q9VZJ8|Q9VH77|P07486 +GO:0006006,0.724061810154525,0.969253360784789,0.0653834195468773,-0.302873070144989,-0.812826520006806,13,P29613|Q9VWP2|Q9VAN7 +GO:0006066,0.400516795865633,0.786653249636622,0.106729884364606,-0.324690127138844,-1.02305576276669,25,P29613|Q9VTY2|Q9VA37|Q9VWH4 +GO:0006081,0.633217993079585,0.938236326264601,0.0601186142531851,0.338326737947008,0.885384539568036,16,Q9VLC5|P46415|Q8MLS2|P07486 +GO:0006082,0.00510738716423595,0.157211761149138,0.407017918923954,0.393886372107045,1.51246065333199,111,Q7JYW9|Q94523|Q9W1H8|Q9VUY9|P54385|Q9VXZ8|Q9VNW6|Q7JWF1|Q9VAC1|Q7K5K3|Q9VZI8|Q9VW68|Q9VHB8|O62619|Q5U117|Q7JXZ2|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q7K511|Q9VCK6|Q9VSY6|Q9VHD3|P05031|Q9VSA3|Q9VDC6|P07486|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0006090,0.165154264972777,0.557889884088514,0.144630528034484,0.544822960384461,1.29630562326216,11,Q7JYW9|Q9VUY9|Q7K5K3|O62619 +GO:0006091,0.092948717948718,0.436807095343681,0.266350657088526,-0.300937303789336,-1.25828245347278,93,P29613|Q9VJZ4|Q24439|Q8SYJ2|Q9VGZ3|Q9VA37|Q9VWH4|A1Z992|Q9VCE1|Q9VZ64|Q9W1G0|Q9VWI0|Q6IHY5|Q500Y7|Q9VXN2|Q9VAN7|Q9VTU2|Q9W1N3|Q9VXZ0|Q9W401|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9W385|Q9VZU4|Q9VQR2|Q9VEB1|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q94522|Q9VRL0|Q6IDF5|Q9W2E8|Q9VZW7|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0006099,0.410434782608696,0.790203233318891,0.0822054920415869,0.4129933438996,1.04778435279373,14,Q9VIE8|Q94523|Q9VGS3 +GO:0006119,0.0202509747083332,0.246261852934669,0.352487857583619,-0.378587642347688,-1.48325530809128,59,Q9VJZ4|Q24439|Q8SYJ2|Q9VA37|Q9VWI0|Q6IHY5|Q500Y7|Q9VXN2|Q9VTU2|Q9W1N3|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9W385|Q9VZU4|Q9VQR2|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0006120,0.151351351351351,0.54352324458546,0.188204146308491,-0.380148240221869,-1.2757136902991,31,Q9VJZ4|Q9VWI0|Q9VTU2|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9W3X7|Q9VX36|Q9VZU4|Q9VQR2|Q9VF27|Q9W402|Q7JZK1|Q6IDF5|Q9W2E8|Q9VMU0 +GO:0006139,0.00808293289022497,0.19904222242179,0.380730400722792,0.328356910571903,1.38810558312954,253,Q9VC18|Q9W3J5|Q7JYW9|Q9VZU7|Q9V3N7|Q9VAJ9|Q9VA09|P21187|Q7K569|Q9VTZ4|Q9VED8|Q9VUY9|P54385|Q9VKD3|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q9W0S7|P54622|Q7K5K3|P32748|O62619|Q94901|Q9XYZ5|Q9VPL0|Q7KLW9|Q9W3M7|Q9VGW7|Q8MLS2|Q8MZI3|Q7JVK6|Q7K012|Q9V3L6|Q9W414|Q9VNZ3|Q9VXN4|Q7KVQ0|Q7K0E6|Q9VNH5|P12370|Q9VP57|Q9VH77 +GO:0006163,0.0254011359878163,0.287587574114932,0.352487857583619,0.459343869710445,1.52143996109468,41,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VUY9|P54385|O01666|P35381|O62619|Q8MLS2 +GO:0006164,0.143338954468803,0.535659465480795,0.150169802128406,0.466063489668791,1.29352673438946,20,Q9VC18|Q9VA09|O01666|P35381 +GO:0006259,0.099510603588907,0.451695596935822,0.179782316298324,0.479466993094625,1.37158897475675,22,Q9VZU7|Q9VED8|P54622|Q9XYZ5|Q7KLW9|P12370 +GO:0006325,0.811320754716981,0.999229021262782,0.0696133438850965,-0.234674750983337,-0.810544306576287,36,Q9VQ91|Q86BS3|Q9I7K6|Q7JXC4|Q9VAA9|Q03427|Q24478|Q9VIE7|P05205|Q9W0H8|P08985 +GO:0006338,0.343243243243243,0.7557726373898,0.119887845115423,-0.314577688616314,-1.05566992443857,31,Q9VQ91|Q86BS3|Q9I7K6|Q7JXC4|Q9VAA9|Q03427|Q24478|Q9VIE7|P05205|Q9W0H8|P08985 +GO:0006351,0.624277456647399,0.938236326264601,0.0870515867946735,-0.231973871113834,-0.896557137899214,54,Q9VXN3|Q9VCH5|Q27272|Q9VLR5|Q9VDQ3|Q8IRH5|Q9W0R0|Q7KSE4|Q24478|Q9V406|Q9VY91|P05205|Q9W0H8|Q7K180|Q7JWD6|Q9V3T8|Q9VE08 +GO:0006352,0.247240618101545,0.66984942402507,0.128788713061714,-0.467934280185709,-1.21162636321752,12,Q9VCH5|Q27272|Q9VLR5 +GO:0006355,0.6991643454039,0.953614292486963,0.0789209638180035,-0.235192456298952,-0.867714190919834,45,Q9VXN3|Q9VCH5|Q9VLR5|Q9VDQ3|Q8IRH5|Q9W0R0|Q7KSE4|Q24478|Q9V406|Q9VY91|P05205|Q9W0H8|Q7K180|Q9V3T8 +GO:0006357,0.774104683195592,0.98564413926848,0.0730744399126987,-0.246015025307395,-0.827466690728772,32,Q9VCH5|Q9VLR5|Q9VDQ3|Q8IRH5|Q9W0R0|Q7KSE4|Q24478|Q9V406|P05205|Q7K180|Q9V3T8 +GO:0006364,0.992714025500911,1,0.0417397034728504,0.2,0.490142583829027,13,Q7KVQ0|P56538|Q9W1V3|Q95WY3|Q9W499|Q7K1Q7|A1Z8D0|Q8I937|Q8IPX7|Q9W1M9|Q9VEB3|Q9VW14|Q9VM69 +GO:0006366,0.724233983286908,0.969253360784789,0.0770736734944102,-0.244035505335389,-0.856851296865205,39,Q9VCH5|Q27272|Q9VLR5|Q9VDQ3|Q8IRH5|Q9W0R0|Q7KSE4|Q24478|Q9V406|P05205|Q7K180|Q7JWD6|Q9V3T8|Q9VE08 +GO:0006367,0.274944567627494,0.696196398748283,0.121543282035469,-0.46825328637637,-1.17930522141755,11,Q9VCH5|Q27272|Q9VLR5 +GO:0006396,0.891970802919708,1,0.0364548541965309,0.205350331196021,0.760277101091078,85,P21187|Q9VKD3|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q7KVQ0|Q9VXE0|Q24297|Q9VJ86|Q02748|Q27268 +GO:0006397,0.404511278195489,0.786653249636622,0.0753093764172773,0.295844037697152,1.02895730162666,56,P21187|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q9VXE0|Q24297|Q9VJ86|Q02748|Q27268 +GO:0006399,0.424100156494523,0.79721117203646,0.0749278818393739,0.321270576284942,1.00972988475111,32,Q9W3J5|Q9VKD3|Q9VNZ3|Q9VXN4|Q7K0E6 +GO:0006401,0.674457429048414,0.953614292486963,0.0554793308704233,0.304360596706082,0.855229967212072,21,Q9W0S7|Q9VNH5|Q9VJ86|Q9VSC3 +GO:0006402,0.598615916955017,0.932969427532741,0.0628003977812234,0.340463736434339,0.914924413670515,18,Q9W0S7|Q9VNH5|Q9VJ86 +GO:0006403,0.988919667590028,1,0.0613026075396207,-0.174603330606823,-0.571418523447605,30,Q9VCH5|Q9VGL0|P08182|P17210|Q7K1U0 +GO:0006405,0.848816029143898,1,0.0488970772260102,0.306271285034842,0.734827939896263,12,Q9W2E7|Q9GYU8|Q27268|Q9W1X4 +GO:0006412,2.67343550466807e-14,2.63333397209804e-11,0.97599468306432,0.606806932131025,2.39913292791665,138,Q9W3J5|Q9VXP3|P21187|O16797|Q9VXQ0|A1Z9A8|Q9U9Q4|Q8SXF0|P41093|Q9VNE9|Q9W253|Q0E9B6|O77410|Q9VAY9|Q9VNB9|Q9VV39|O02195|Q9W199|P50887|Q9NJH0|Q7K3V6|Q94901|P22979|O77477|P29327|Q9VCX3|Q9W4I3|P13060|Q9VAD4|Q9VMD3|P09180|Q9VPF6|Q9VXN4|Q9VGP7|Q7K0E6|Q9VCK0|Q9V9M7|Q9VSR5|Q9VHN6|Q9W1B9|Q9W1L1|A1ZA22|Q7KN75|Q9VIN9|Q9W086|Q9VBU9|Q9VVN2|Q9VJ86|Q9V3G1|Q9VKU3|Q02748|Q8MSS7|Q9VDV2|Q9V6Y3|Q9VUN9|Q9VUX1|Q8WTC1|Q9VHT5|A1ZBA5|Q9VY28|P55841|Q9VFB2|Q9VNC1|Q9VND8|P28668|Q9W229|P56538|Q9V3E3|Q9VN50|Q0KI98|Q9VF89|Q9VEA1 +GO:0006413,0.0717781402936378,0.386346820706193,0.213927855492356,0.50192028962247,1.4358200780612,22,Q9U9Q4|O77410|O02195|P22979|Q9VAD4|Q9VCK0|A1ZA22|Q02748|Q9VUN9|P56538|Q9VN50|Q9VEA1 +GO:0006414,0.0461134160810354,0.329142861158115,0.321775918075361,0.638072404949298,1.51817545648316,11,Q9NJH0|Q7K3V6|P13060 +GO:0006417,0.0126102346291611,0.217913703679363,0.380730400722792,0.553602317344386,1.61465105196604,24,P21187|Q9VNE9|Q94901|P22979|O77477|Q9VCK0|Q7KN75|Q9VJ86|Q9VUN9|Q9VND8 +GO:0006418,0.304347826086957,0.737082351180454,0.0992333343771191,0.445235409747424,1.12958405391751,14,Q9W3J5|Q9VXN4|Q7K0E6|P28668|Q0KI98|Q9VCA5 +GO:0006457,0.176300578034682,0.571546052631579,0.179782316298324,-0.310449288731395,-1.19985722715849,54,Q24276|Q9VSA9|Q9VVW7|Q9VH95|Q7JQR3|Q9V9Q4|O02649|Q8MR62|Q9W227|Q9V3W0|Q9VU35|Q9VFP0|Q9VVA6|Q9VJD4|Q9VSX2|P48604|Q9VAA6|Q9VNA3|Q9VAY2|P25007|Q9VFV9|Q8T9B6|Q9VHL2|Q9VGK3|Q3YMU0|Q9VP77 +GO:0006468,0.210918114143921,0.627656623660912,0.150169802128406,-0.396318926975265,-1.1982897705706,21,P10676|A8DYP0|Q9VEN3|Q9VRJ6 +GO:0006508,0.000356853267277194,0.0195278037926686,0.49849310876659,0.427669134983313,1.68316876226316,132,Q9VZU7|Q9VHR8|Q9VW54|Q7K148|Q9VFQ9|Q9U9Q4|Q7K485|Q9VBC7|Q9VBP9|O18413|Q9XYZ5|A0A0B4K692|Q9VT23|Q8T4G5|Q9VXC9|Q7JWX3|Q7KUT2|Q9VN01|Q9W5W7|Q9W414|Q9VJD0|Q7K3W2|P40301|P12370|Q9VUJ1|Q9VFC2|Q9W4W8|P40304|Q8MT58|Q9VFF0|Q95RS6|Q9VAG3|Q9VY87|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9Y136|Q9V3G7|Q9VNA5|Q9VC48|Q7KMP8|Q95083|Q0E8C8|Q7JV69|Q9V3Z2|Q9VKC7|Q9VKW5 +GO:0006511,0.0277740152632615,0.294165645530243,0.352487857583619,0.435144713064005,1.5014375542663,55,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|Q9VBP9|O18413|Q9XYZ5|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8|Q95083 +GO:0006520,0.000110353262347757,0.0090581636177117,0.538434096309916,0.531574580234928,1.87711538953944,61,Q9W3J5|P54385|Q9VNW6|Q9VZI8|Q9VW68|Q9VHB8|Q7JXZ2|Q9VNX4|Q9VCK6|Q9VSY6|Q9VHD3|Q9VXN4|P05031|Q7K0E6|Q9VCR2|Q9VDC6|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|Q9VCW2|Q9VJ31 +GO:0006575,0.485013623978202,0.834787998380895,0.0982123351217438,-0.281517760672087,-0.969611691478995,35,A1ZB70|Q9VGA0|Q8MLS1|Q9VG92|Q9VSL4|P20432|A1ZB68|Q7JVZ8|A1ZB69|A1ZB71|A1ZB73|Q9VSL2|Q7K0B6|Q7KK90 +GO:0006582,0.383863080684597,0.786653249636622,0.105920292736253,-0.347723972754444,-1.03904165800112,20,Q9V521|Q9VL01|A1Z6P3|Q7KUA4|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6 +GO:0006605,0.838810641627543,1,0.0425023180036553,0.243323646233695,0.764748394047951,32,Q9V3D9|Q9VKC8|Q8IRD0|Q9VSS2|Q9VSN9|Q7K3W2 +GO:0006606,0.819672131147541,0.999229021262782,0.062249042949858,-0.275989164847063,-0.74321640912499,14,Q9VCH5|Q9VGL0 +GO:0006612,0.80327868852459,0.993687408367459,0.0514264916187015,0.31629797962398,0.758884701626529,12,Q9V3D9|Q9VSS2 +GO:0006626,0.89622641509434,1,0.0583452776743612,-0.231259787356097,-0.649595209719068,16,Q9V784|O02649|P48604|Q0E8V7|Q9VAA6|Q9Y0V3 +GO:0006629,0.383941605839416,0.786653249636622,0.0764767053228531,0.285185973151432,1.03991590250287,75,Q9W1H8|Q9W2L6|Q9VXZ8|Q9VM10|Q7JWF1|Q9VG81|Q7K3N4|Q5U117|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VN86|B7Z0Q1|Q9VYT0|Q9VSA3|Q9VM58|Q9VY05|O97477|Q9W5W8 +GO:0006631,0.274167987321712,0.696196398748283,0.0999276973731092,0.35328459450357,1.13245045125094,36,Q9W1H8|Q9VXZ8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1|Q7K2E1 +GO:0006635,0.124567474048443,0.498776268039497,0.16440575583821,0.489346000793854,1.31501406742234,18,Q9W1H8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1 +GO:0006637,0.0769230769230769,0.396697543294402,0.219250346703755,0.624929112547639,1.44401097940987,10,Q9VXZ8|Q7K5K3|Q95TK5 +GO:0006644,0.783737024221453,0.986428236940246,0.0501934252649434,0.296904128051759,0.77698359374756,16,Q9W2L6|B7Z0Q1|O97477|P25455|P54352 +GO:0006650,0.85792349726776,1,0.0484087618816951,0.293781094991254,0.71997312489567,13,Q9W2L6|B7Z0Q1|P25455|P54352 +GO:0006726,0.48816029143898,0.834787998380895,0.0755015292281669,0.405411191933923,0.972691484759345,12,Q9VM10|P15425|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0006734,0.0452173913043478,0.327493606138107,0.282013350011725,0.599709706727492,1.52149291558641,14,Q7JYW9|Q9VAJ9|Q7K569|P54385|O62619 +GO:0006749,0.201058201058201,0.616836643406692,0.159646701919906,-0.375928376155972,-1.20956553858933,27,A1ZB70|Q9VGA0|Q9VG92|Q9VSL4|P20432|A1ZB68|Q7JVZ8|A1ZB69|A1ZB71|A1ZB73|Q9VSL2|Q7K0B6|Q7KK90 +GO:0006753,0.000816335735334718,0.0382900333002237,0.477270815362862,0.477846048911726,1.70419188470345,67,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VTZ4|Q9VUY9|P54385|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748|O62619 +GO:0006754,0.667876588021779,0.953614292486963,0.0598603117764473,0.358329548953334,0.852578989992304,11,O01666|P35381 +GO:0006790,0.576923076923077,0.913616126638635,0.0589694466690997,0.270283923443742,0.927886556267834,53,Q9VZF6|Q9VXZ8|Q7K5K3|Q7JXZ2|Q9VHD3|Q9VSL5|Q7K8X7|Q9VWP4|Q95TK5|Q9VZX9|Q9VRP4|Q9VJ31|Q7JVI6|Q9V9T9|Q9VSL3 +GO:0006793,0.159944367176634,0.552052683200224,0.126875729929857,0.306129457717833,1.18896069736659,122,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VTZ4|Q9VUY9|P54385|Q9W2L6|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748|O62619 +GO:0006796,0.159944367176634,0.552052683200224,0.126875729929857,0.306129457717833,1.18896069736659,122,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VTZ4|Q9VUY9|P54385|Q9W2L6|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748|O62619 +GO:0006810,0.393865030674847,0.786653249636622,0.066436413766281,0.241439849889833,1.02739491894118,275,Q7JUS9|Q9VLB7|Q9VAJ9|Q9V4E7|O17444|Q7JYX5|Q9V3A8|Q9VN13|Q24253|Q0E8E8|Q9VQE0|P45437|Q9W2E7|P35381|A0A0B7P9G0|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q7KSQ0|Q9NJH0|A8JTM7|Q94901|A1Z7X8|Q9U4G1|O76902|Q9VVW3|Q9W552|O76742|Q24238|O18333|Q8IQ70|Q9W3M8|Q9VZD9|Q9VXK7|Q8I099|Q9W4P5|Q9V393|Q9VLT3|O18332|Q9VJQ6|Q9VAY3|Q9W4K0|Q7KTG2|Q9VW73|P12370|Q9VF24|Q95TN1|Q9W4W8|O61491 +GO:0006811,0.404724409448819,0.786653249636622,0.0776798560117236,0.315290463381901,1.02340389379694,38,Q9V4E7|Q9VN13|P35381|A0A0B7P9G0|Q9VVW3|Q8IQ70|Q9VXK7|Q9W4P5|Q9VAY3 +GO:0006812,0.485013623978202,0.834787998380895,0.0982123351217438,-0.281639480194757,-0.970030921413122,35,P19334|Q9VLP0|Q9VWV6|Q24439|P91927|Q9VXN2|Q7K188|Q24583 +GO:0006813,0.0275766301763258,0.294165645530243,0.352487857583619,-0.646209673884226,-1.67323641416822,12,Q9VLP0|P91927|Q7K188|Q9VIH9|Q9VII1 +GO:0006836,0.351415094339623,0.7557726373898,0.109250039480711,-0.367758584148974,-1.07754027833583,18,P91927|Q9W1I8|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q23983 +GO:0006839,0.16260162601626,0.555566117849855,0.137250779610133,0.430018853321448,1.26576635399569,25,Q7JUS9|Q9VN13|Q0E8E8|Q9VKC8|Q7KSQ0|Q9VVW3|Q8IQ70|Q9VAY3|Q9W4W8 +GO:0006869,0.611825192802057,0.938236326264601,0.0817515582532145,-0.292277707878172,-0.889177384080062,22,Q9VFN7|Q9VA42 +GO:0006873,0.360849056603774,0.765921213289634,0.107554375265169,-0.364387336606268,-1.06766245312092,18,P19334|Q9VAM6|A1Z992|Q9VJZ6|Q9W385|Q9VQR9|Q9W425|Q9VMX4|Q9VE75|Q9V6U9 +GO:0006886,0.747761194029851,0.975107842146059,0.0455878202571231,0.235404153005202,0.840854249092299,65,Q24253|P45437|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q9W552|O18332|Q9W4K0|Q8SXY6|Q9GYU8|Q9VH25|Q9W1X4|Q9VYT6|Q9VKC7|Q9VL10|Q9W3N6|A1Z7S3|Q95RF6|Q6NL44 +GO:0006887,0.219638242894057,0.632828466784031,0.150169802128406,-0.389839619847639,-1.20029422610985,23,Q8MSI2|Q9VPN5|Q9W1I8|Q7KLE5|P36975|Q9VH76|Q9U6R9|Q23983 +GO:0006888,0.249578414839798,0.66984942402507,0.109684061970549,0.420793082526819,1.16788187438026,20,Q9V3A8|P45437|O18333|Q9W3M8|O18332|Q9W4K0 +GO:0006891,0.71978021978022,0.967235356730582,0.0567672387487446,0.352884930129092,0.81540402478185,10,P45437 +GO:0006897,0.693498452012384,0.953614292486963,0.0507027937029348,0.258813625262267,0.871232823156559,46,Q9VQE0|Q9V3I2|A8JTM7|O76902|O76742|Q9V393|Q9VLT3|O61491|Q7KY04|P48148|Q9VVA7|P19107 +GO:0006898,0.484502446982055,0.834787998380895,0.0702812841717392,0.336848760053744,0.963607614505832,22,Q9V3I2|A8JTM7|O76742|Q9V393|O61491|Q9VVA7|P19107 +GO:0006906,0.727569331158238,0.969764264128369,0.0509082865515105,0.283971591538234,0.812344352598846,22,Q7JYX5|Q9V3I2|O76742|O18333 +GO:0006913,0.705691056910569,0.953614292486963,0.0521630305460055,0.285214269025009,0.839532087076813,25,Q9W2E7|P32392|P12370|Q9GYU8|Q27268|Q9W1X4|P56538 +GO:0006914,0.444094488188976,0.800325005078204,0.0728938564822936,0.30896118748386,1.00285964539345,38,Q7JYX5|Q24253|Q9W2E7|P22979|O76742|O18333|O18332 +GO:0006915,0.128526645768025,0.505040706738264,0.153158808683073,0.412343005878221,1.29872434885776,33,Q9VZU7|Q9VED8|Q7K485|Q9W253|Q9W260|P12370|P15425|P40797|P55841|Q7K3D4|P08646|P42207 +GO:0006950,0.698473282442748,0.953614292486963,0.0414044273760278,0.218544278387959,0.90739731921746,211,Q9VC18|Q9VZU7|O97125|A1Z803|Q9W299|P45437|Q7K485|Q9VIF2|Q00174|Q9VLY7|Q5U117|Q9XYZ5|P17336|P22979|Q9VT23|Q7KLW9|Q7JWX3|Q9VGS3|Q7JVK6|Q7K012|Q8IQ70|Q9VXK7|Q9VZI3|A1Z6L9|Q9W414|Q9V393|P05031|Q9VLT3|Q9VSL5|O18332|P16378|P12370|Q9VZJ8|Q9VFC2|A1ZA22|P15425|O62602|Q7K519|M9NDE3|Q95RS6|O61443|Q9GYU8|Q9VCW2|P48148|Q9VKZ8 +GO:0006952,0.984034833091437,1,0.0314928902471297,0.181260394704081,0.680951142029987,97,P45437|Q7K485|Q9VIF2|Q00174|Q9VLY7|Q9XYZ5|Q9VT23|Q7JWX3|Q9VZI3|Q9V393|Q9VLT3|Q9VSL5|O18332 +GO:0006955,0.95859872611465,1,0.0696133438850965,-0.185247177813919,-0.751204709577847,76,Q9V521|A1ZBU5|Q9VCE1|Q9VL01|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q9VSL4|Q9VQX3|Q9VIX1|Q960M4|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0006959,0.0735294117647059,0.389511501506049,0.261663521711573,-0.481904767138069,-1.41142575033227,19,Q9V521|Q9V8F5|Q7KUA4|A1ZBU8|Q9VIX1|Q7K2W6 +GO:0006974,0.0224819816426327,0.263627999023728,0.352487857583619,0.656772144707171,1.60955997996852,13,Q9VZU7|Q9W299|Q9XYZ5|Q7KLW9|Q7K012 +GO:0006979,0.741239892183288,0.974117713542991,0.0741758965588009,-0.245665918325553,-0.841770291200476,34,Q8IN43|Q8IN44|Q9VA37|Q9VCE1|Q9VXN2|Q9VTU2|Q9VQD7|Q9W385|Q960M4|Q9VVT6|Q9VEJ0|Q7JZK1|Q9VDU7|P61851|P25007|Q9V429|Q94533 +GO:0006996,0.0314769861628444,0.303471176228947,0.321775918075361,-0.251652149304164,-1.21642094493262,273,P10676|P19334|A8DYP0|Q9VHT3|Q9VPN5|Q9V784|P18432|Q7K5M6|Q9VQ91|P83967|Q9VJZ5|Q9I7K0|X2JAU8|Q9VJZ4|Q9VB22|P14318|P91927|Q9VCE1|Q9W1I8|Q9VFS4|O02649|Q9VWI0|Q9VCH5|Q86BS3|Q9VE50|A1Z6P3|Q8SX89|Q6IHY5|Q9I7K6|Q9I7J0|Q9VTU2|M9NFC0|Q7JXC4|Q7KLE5|Q9VI75|Q9VXZ0|Q9VN02|P36975|Q9VH76|Q7K3Z3|Q8IRH5|P17210|Q7PL91|Q9VQD7|Q7JWD3|Q8SX68|M9PGG8|A1Z9J3|Q9W3N7|Q03427|Q9VF70|A0A0B4KHJ9|Q9W3X7|Q7JNE1|Q9VCC0|Q9VEX6|Q9VEC8|Q23983|Q24478|Q9VPC1|Q9VQR2|Q9VL16|Q8T0Q4|Q9VF27|P92177|Q6IGM9|Q9W1E8|Q9VRL2|Q9VD64|Q0E8V7|Q7K1H0|Q9W402|M9NEW0|Q7JZK1|Q9VD29|Q9VIE7|Q9Y162|Q9VPC2|Q6IDF5|Q9Y0V3|Q9VRY5|P53034|Q9W2E8|Q7K2N0|P05205 +GO:0006997,0.666666666666667,0.953614292486963,0.0694481442003175,-0.326471998432856,-0.845336828061775,12,Q8SX89|Q7JXC4|Q7K3Z3|Q03427 +GO:0007005,0.452307692307692,0.810041958041958,0.110122263835536,-0.242902838554704,-0.993080177395584,77,P19334|Q9V784|Q9VJZ4|P91927|O02649|Q9VWI0|Q6IHY5|Q9VTU2|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9W3X7|Q9VEX6|Q9VPC1|Q9VQR2|Q9VL16|Q9VF27|Q6IGM9|Q0E8V7|Q9W402|M9NEW0|Q7JZK1|Q9VD29|Q9VPC2|Q6IDF5|Q9Y0V3|Q9W2E8 +GO:0007006,0.903301886792453,1,0.0579754757571486,-0.227243721348308,-0.638314315317146,16,Q9V784|Q0E8V7|Q9VD29|Q9Y0V3|Q9W2D6|Q9VVH3 +GO:0007007,0.972776769509982,1,0.0425023180036553,0.220230787412055,0.523998489227113,11,Q9VKC8 +GO:0007010,0.0269199837996014,0.294165645530243,0.352487857583619,-0.319273641644119,-1.32502019209802,89,P10676|A8DYP0|Q9VHT3|P18432|Q7K5M6|P83967|Q9VJZ5|Q9I7K0|X2JAU8|Q9VB22|P14318|Q9VCH5|Q86BS3|A1Z6P3|Q9I7J0|M9NFC0|P17210|Q8SX68|M9PGG8|A1Z9J3|Q03427|A0A0B4KHJ9 +GO:0007015,0.348101265822785,0.7557726373898,0.0860347242455604,0.343763323696996,1.06752011547673,31,Q9W2N0|Q9VU68|P32392|P12080|Q9VPX6|P45888 +GO:0007017,0.626470588235294,0.938236326264601,0.0878312634480124,-0.232795762404293,-0.912062391012254,59,Q9VHT3|Q9VJZ5|Q9I7K0|Q9VB22|Q86BS3|A1Z6P3|P17210|M9PGG8|A1Z9J3|Q9W385|Q7KMS3|Q9VCC0 +GO:0007018,0.313148788927336,0.742438342435816,0.0972150808846466,0.430286253176269,1.12603809696707,16,Q9NJH0|Q9U4G1|O18332|Q9VJQ6 +GO:0007028,0.753022452504318,0.975293507473243,0.0519512476197082,0.302286084510588,0.800493779645081,17,Q9V3I2|O76742|P12370 +GO:0007030,0.925058548009368,1,0.0565299525056311,-0.232585406978971,-0.626333613805365,14,Q9W1I8|Q7K3Z3|Q9VF70 +GO:0007033,0.791208791208791,0.98775748965863,0.0523759084097997,0.328308188052924,0.758615047146558,10,O76742|O18332|Q9VW73 +GO:0007034,0.677029360967185,0.953614292486963,0.0568864160475701,0.328068280117523,0.868768464675187,17,Q7JYX5|O76902|O76742|Q9W4P5 +GO:0007043,0.400728597449909,0.786653249636622,0.0860347242455604,0.426881553680151,1.04616413854869,13,Q9VN14|Q9VLT3|P16378|M9NDE3|Q24372 +GO:0007049,0.753284671532847,0.975293507473243,0.0442407423477375,0.230349838162294,0.854618933027175,86,P21187|Q7K148|Q9W2E7|Q9VH81|P48596|Q94901|Q9VPL0|Q7K012|O18332|Q9VP57|Q9VE85|Q7KN75|Q95RQ8|Q02748|P48148|Q9NBD7|Q9VB05|P40797|Q9VGP6|Q9VNA5 +GO:0007051,0.252955082742317,0.677067273101038,0.132147260608774,-0.406206566714457,-1.1707411080083,17,Q9VJZ5|Q86BS3|A1Z6P3|Q9VCC0|Q9VQQ0|P25171|Q9VQ93|Q24050|P08928 +GO:0007052,0.226415094339623,0.639141810570382,0.140406238523342,-0.428280283755306,-1.20301425477046,16,Q9VJZ5|Q86BS3|A1Z6P3|Q9VCC0|Q9VQQ0|P25171|Q9VQ93|Q24050 +GO:0007059,0.581560283687943,0.918007819603564,0.0799858801499946,-0.319687248869307,-0.921380978610501,17,Q86BS3|A1Z6P3|Q7JNE1|Q9VCC0|Q7KND8|P25171|Q9VQ93|P08928|Q7KNM2 +GO:0007098,0.736470588235294,0.973722858270825,0.0676760401641789,-0.291524426603293,-0.806901078897665,15,Q9VHT3|P17210|M9PGG8|Q9VCC0 +GO:0007154,0.544654088050315,0.889692001209884,0.0522693317499306,0.23187719262744,0.968279395548832,222,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|O17444|P21187|Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VBP9|Q9VM10|Q9V3I2|P06002|P12080|Q9VPX6|Q9XYZ5|P17336|Q9W552|Q9VH66|M9PF16|O76742|O18333|Q9VZI3|Q9V393|O18332|P16378|Q9VW73|P12370|Q9VP57|Q0KIE7|Q9VF24|O61491|P15425|O62602|Q7K519|Q7KY04|P29829|O61443|Q02748|P48148|Q7KJ08|Q9VB05|P19107|P25455|Q9VH25|Q9NHA8|Q9VW59|Q9VND8|O15971|P16620|Q9VKC7|Q9VN50|Q9VN91|Q9W3N6|A1Z7S3|O44386|A0A0B4LFA6|P08646|P35992|Q9W0C1|Q9VHI1|Q9W2V2 +GO:0007155,0.0658499234303216,0.374925864617727,0.216542836735348,0.426836894235157,1.39892442941387,40,Q9VHC3|Q00174|P12080|Q9VN14|Q9U4G1|Q9W260|Q9VZI3|P16378|O61491|A1Z877|Q7KY04|Q9VVG0|P11046|Q24372|O44386 +GO:0007156,0.0530786178673427,0.347442680776014,0.321775918075361,0.60747123806951,1.54118430096589,14,Q9VN14|Q9U4G1|Q9W260|Q9VVG0|Q24372|Q9VCT4 +GO:0007163,0.946117274167987,1,0.037536290520292,0.20824831857271,0.667538030270753,36,Q9V3I2|Q9VN14|Q9VPX6|P12370|P48148|Q9NBD7|Q9VVA7|Q9VGP6 +GO:0007164,0.46448087431694,0.819916955559473,0.0780892306943345,0.409695413701554,1.00404584327291,13,Q9VU68|P16378|P48148|P08646 +GO:0007165,0.176395939086294,0.571546052631579,0.11378726182188,0.280320854606729,1.1551220944286,180,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VBP9|Q9VM10|Q9V3I2|P06002|P12080|Q9VPX6|Q9XYZ5|Q9W552|Q9VH66|O76742|O18333|Q9VZI3|Q9V393|O18332|P16378|Q9VW73|P12370|Q9VP57|Q0KIE7|Q9VF24|O61491|P15425|O62602|Q7K519|Q7KY04|P29829|O61443|Q02748|P48148|Q7KJ08|Q9VB05|P19107|P25455|Q9NHA8|Q9VW59|Q9VND8|O15971|P16620|Q9VKC7|Q9VN50|Q9VN91|Q9W3N6|A1Z7S3|O44386|A0A0B4LFA6|P08646|P35992|Q9VHI1|Q9W2V2 +GO:0007166,0.0577777777777778,0.36245216367383,0.227987202850442,0.370362781128643,1.35249171204109,78,Q9VTZ4|Q9U9Q4|Q9VBP9|P12080|Q9XYZ5|Q9W552|Q9VZI3|Q9V393|P16378|P12370|Q9VP57|Q9VF24|O62602|P29829|O61443|Q02748|P48148|Q7KJ08|P25455|Q9VND8|Q9VN50|Q9W3N6|O44386|A0A0B4LFA6|P08646|P35992|Q9VHI1|P40417|O97102 +GO:0007167,0.694620253164557,0.953614292486963,0.0516355964484201,0.276505533324691,0.858658264326373,31,Q9VTZ4|Q9V393|Q9VF24|O62602|O61443|Q02748|Q7KJ08|Q9VND8|P08646|P35992|P40417 +GO:0007169,0.866666666666667,1,0.0427591434738678,0.252514723207497,0.730455138147231,23,Q9VTZ4|Q9V393|O62602|Q7KJ08|Q9VND8|P08646|P35992|P40417 +GO:0007186,0.282776349614396,0.70694087403599,0.130105630751129,-0.372910666392702,-1.13448176819844,22,P10676|P19334|Q9VH98|Q9VXN2 +GO:0007224,0.0973913043478261,0.447607591553061,0.188204146308491,0.549803760628731,1.39487908462268,14,Q9VBP9|Q9XYZ5|Q9V393|P12370|P29829|A0A0B4LFA6|Q9VHI1|O97102 +GO:0007264,0.0215915750258628,0.256237366270781,0.352487857583619,0.525260901277495,1.61580918833588,29,Q9VLB7|Q9V3N7|Q9V3I2|Q9VH66|O76742|O18333|O18332|Q7KY04|P48148|Q9VW59|Q9VND8|O15971|A1Z7S3|P08646|O97102|Q9VM50 +GO:0007267,0.897058823529412,1,0.0689567351672811,-0.200333291446058,-0.784878809255664,59,X2JAU8|Q9VLP0|P91927|Q9VA37|Q9W1I8|Q7K188|Q9VI75|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q7K1U0|Q7K2L7|Q23983 +GO:0007268,0.79940119760479,0.992951046205194,0.0756946307932749,-0.222285076464485,-0.839251313556852,51,X2JAU8|Q9VLP0|P91927|Q9VA37|Q9W1I8|Q7K188|Q9VI75|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q7K1U0 +GO:0007269,0.351415094339623,0.7557726373898,0.109250039480711,-0.367758584148974,-1.07754027833583,18,P91927|Q9W1I8|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q23983 +GO:0007271,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0007274,0.481236203090508,0.834787998380895,0.0865399737444125,-0.372001769630485,-0.963227466619857,12,X2JAU8|Q9VA37|P36975|Q23983 +GO:0007275,0.904126213592233,1,0.0267456741432593,0.194412766987276,0.833745663016223,288,Q9VZU7|P21187|Q9VTZ4|Q24253|Q0E8E8|Q9VQE0|Q9VU68|Q9W2E7|Q9VBC7|P32392|Q9VHC3|Q9V3I2|P06002|P48596|Q00174|P12080|Q9VN14|Q9VPX6|A8JTM7|Q94901|Q5U117|Q9U4G1|P17336|P45888|M9PF16|O76742|Q7K012|Q24238|Q9W260|Q9VW34|Q9VSN9|Q9W4P5|Q9VZI3|Q9VR79|P05031|Q9VLT3|O18332|P16378|P12370|Q7JZW0|Q9VF24|Q9VFC2|Q9VLB1|Q9VDC6|A1Z877|Q9VY05|O62602|M9NDE3|Q8SXY6|O61443|Q09101|Q02748|P48148|Q9NBD7|Q7KJ08|Q9VVA7|P40797|Q9VW57|Q9VGP6 +GO:0007276,0.0363372093023256,0.303471176228947,0.287857117255149,0.366883097889835,1.37726146642301,98,P21187|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9V3I2|Q9W0S7|P12080|Q9VPX6|Q94901|O76742|Q9W414|O18332|Q9VJQ6|Q9VAY3|P12370|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9NBD7|Q9VB05 +GO:0007281,0.104719764011799,0.464634988971272,0.165656695205483,0.342074959448109,1.2563380402091,83,P21187|Q9VU68|Q9VED8|Q7K485|Q9V3I2|P12080|Q9VPX6|Q94901|O76742|Q9W414|P12370|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9NBD7|Q9VB05 +GO:0007283,0.198036006546645,0.611490490433997,0.123257226381337,0.420940518891533,1.2277261679534,24,P21187|Q9W2E7|Q9W0S7|Q9VJQ6|Q9VAY3 +GO:0007292,0.0886262924667651,0.428387144331417,0.181383128498408,0.359418448219006,1.30773652581731,77,P21187|Q9VU68|Q9VED8|Q7K485|Q9V3I2|P12080|Q9VPX6|Q94901|O76742|Q9W414|P12370|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9NBD7|Q9VB05 +GO:0007293,0.560706401766004,0.899532021984867,0.0782955249944794,-0.342572238621416,-0.919367972980524,13,Q9VXF9|Q9V4S8|P92177|Q9VY91 +GO:0007297,0.0169832198117657,0.226451508042196,0.352487857583619,0.637788106591172,1.64355188855795,15,Q9VU68|Q9V3I2|P12080|O76742 +GO:0007298,0.0169832198117657,0.226451508042196,0.352487857583619,0.637788106591172,1.64355188855795,15,Q9VU68|Q9V3I2|P12080|O76742 +GO:0007308,0.978723404255319,1,0.0374584205912161,0.192842008560313,0.562448064666343,24,Q9VPX6|P12370|O62602|Q8SXY6|Q9NBD7 +GO:0007309,0.996747967479675,1,0.0363018462359236,0.176086837087294,0.50937043700543,23,Q9VPX6|P12370|O62602|Q8SXY6 +GO:0007314,0.867924528301887,1,0.0598603117764473,-0.245577496721842,-0.689812817477293,16,Q9VQ91|P17210 +GO:0007315,0.727058823529412,0.969764264128369,0.0683110858318647,-0.294720227764982,-0.815746634089575,15,Q9VQ91|P17210 +GO:0007316,1,1,0.0501934252649434,-0.137764350453172,-0.369720944507362,13,P17210|Q9VLS5|Q9VHC7|O18335|A0A6H2EG56|Q7KM15|Q7K2D2|Q9W1H5|Q9VKK1|P49028|Q9V535|Q9VN21|P12370 +GO:0007346,0.965391621129326,1,0.0430173196927508,0.239075495201264,0.585905404740759,13,Q9W2E7|Q9VP57 +GO:0007349,0.400728597449909,0.786653249636622,0.0860347242455604,0.42593787219602,1.04385144614397,13,Q9V3I2|Q02748|P48148|P40797|O61604|P42207|Q9W074|P23128 +GO:0007350,0.970660146699266,1,0.0562940749700968,-0.202006133775435,-0.603618975424066,20,Q9VQ91|P17210 +GO:0007351,0.957547169811321,1,0.0552495663125249,-0.205811009157449,-0.603030525052979,18,Q9VQ91|P17210 +GO:0007389,0.234939759036145,0.651875106058035,0.106323255932708,0.341691822528092,1.16762509635533,49,P21187|Q0E8E8|P48596|Q9VPX6|O76742|Q9VSN9|P12370|Q9VF24|O62602|Q8SXY6|P48148 +GO:0007391,0.78682842287695,0.986428236940246,0.0500922874402106,0.295980495690125,0.762728714506507,15,Q9V3I2|Q9VLT3|P48148|O44386|P08646|Q9VM50 +GO:0007399,0.398639455782313,0.786653249636622,0.0709609456938284,0.260960791973809,1.02705810940251,132,Q9VZU7|P21187|Q9VU68|Q9W2E7|Q9VBC7|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|P45888|M9PF16|Q7K012|Q24238|Q9W260 +GO:0007405,0.0931263858093126,0.436807095343681,0.219250346703755,-0.554842718164098,-1.3973824287706,11,Q9VHT3|Q24276|Q9VB22 +GO:0007409,0.151745068285281,0.54352324458546,0.137250779610133,0.371528708444505,1.23578171943264,42,Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|O44386|P35992 +GO:0007411,0.207606973058637,0.622606432422383,0.11776578836269,0.37534358032548,1.18627340459119,34,Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|O44386|P35992 +GO:0007416,0.113522537562604,0.479912873386976,0.169570644405628,0.485942496997606,1.36546120053625,21,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378 +GO:0007417,0.760942760942761,0.976515065270188,0.0502948063662358,0.293539885996289,0.806804242727796,19,P12080|Q9VN14|P16378|P54352|P35992|O97102|A0A0B4K7J2 +GO:0007420,0.226164079822616,0.639141810570382,0.135740943810425,-0.487870707863672,-1.22871208788027,11,P08182|A1Z9J3|Q7KMS3 +GO:0007423,0.00800823914047767,0.19904222242179,0.380730400722792,0.47095931007516,1.5853694290355,46,Q9VZU7|P21187|Q24253|Q9VBC7|P32392|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0007424,0.124416796267496,0.498776268039497,0.155241966228839,0.391379102376563,1.27789550701651,39,P48596|Q00174|P12080|Q9VW34|Q9W4P5|Q9VR79|Q9VLT3|M9NDE3|P48148|Q9VVA7|Q9VND8|Q24372|O44386|P08646|P35992|P40417 +GO:0007444,0.0179393535658579,0.23081903676305,0.352487857583619,0.408792555367019,1.45118606293555,62,Q0E8E8|Q9VU68|Q9VHC3|Q9V3I2|P12080|Q9VPX6|Q9XYZ5|O76742|P05031|Q9W4K0|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|Q9VVA7|P40797|Q9VW57|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|Q9VM50 +GO:0007447,0.163003663003663,0.555566117849855,0.14641623786055,0.555724729541915,1.28410182031155,10,Q0E8E8|Q9VPX6|O76742|P12370 +GO:0007472,0.152410575427683,0.543929046363288,0.13880510939114,0.378268722825462,1.23508868615689,39,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0007476,0.053968253968254,0.347442680776014,0.245041785430996,0.450056192184624,1.45251205902559,37,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0007498,0.54029304029304,0.888229710488847,0.0706196247122591,0.41245458872783,0.953050422315805,10,Q9VTZ4|Q00174 +GO:0007507,0.636678200692042,0.938236326264601,0.0598603117764473,0.330803964762694,0.888965816653897,18,Q00174|Q9VN14|P17336|Q9VZI3|P16378|O61443 +GO:0007517,0.802631578947369,0.993687408367459,0.0601186142531851,-0.305725152999134,-0.745247530321759,10,M9NFC0|Q03427|Q7JV09|Q95NU8|Q9VWD0|Q9V400 +GO:0007528,0.145187601957586,0.535659465480795,0.14641623786055,0.455175411474473,1.30209917460479,22,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378 +GO:0007548,0.801739130434783,0.993687408367459,0.0493910105981501,0.289962191352365,0.735648289466499,14,Q9V3I2 +GO:0007552,0.357142857142857,0.762108870661502,0.0813027345384498,0.311063268575603,1.06860740740948,50,Q9VU68|Q9VHC3|Q9V3I2|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|Q9VM50 +GO:0007560,0.088646967340591,0.428387144331417,0.186432558434075,0.398913754465551,1.33290851384962,45,Q9VU68|Q9VHC3|Q9V3I2|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|Q9VM50 +GO:0007591,0.0118039794013655,0.212667264080604,0.380730400722792,0.650259620753712,1.67569043181893,15,P48596|A8JTM7|Q9VW34|Q9VSN9|Q9VR79|P05031|Q9VDC6|O62602|O61443 +GO:0007600,0.245478036175711,0.667944380201864,0.141225119642531,-0.379379323934379,-1.16808756432161,23,P19334|Q9W369|Q23970|P54192|A1Z6P3|Q9VKE2|Q9VAI9|P13677|Q9VII1|Q7K084 +GO:0007602,0.322295805739514,0.742438342435816,0.110564716336619,-0.42831153424924,-1.10903083732307,12,P10676|P19334 +GO:0007606,0.730679156908665,0.971287532807226,0.0678338263479455,-0.301224638599931,-0.81117349068494,14,Q23970|P54192 +GO:0007608,0.578713968957871,0.914981154772878,0.0768736734126542,-0.363493121434109,-0.915464660961409,11,Q23970|P54192 +GO:0007610,0.0887218045112782,0.428387144331417,0.183023938384487,0.364454451276728,1.30556647121714,70,Q9V3N7|Q7K569|P46415|A0A0B7P9G0|Q9VBC7|P06002|Q9VW68|Q94901|A0A0B4K692|Q9VDH3|Q7JVK6|Q9VSY6|Q8IQ70|Q9V393|P05031|P12370|Q9VDC6|Q9VR25 +GO:0007611,0.11973018549747,0.489353662717877,0.165656695205483,0.484681337867018,1.34519927453699,20,Q9V3N7|P46415|A0A0B7P9G0|Q8IQ70|P05031|P12370|Q7KJ08|P54352|O44386|P35992|Q9VCT4 +GO:0007613,0.01724250061235,0.226451508042196,0.352487857583619,0.637390926031381,1.64252837173097,15,Q9V3N7|A0A0B7P9G0|Q8IQ70|P05031|P12370|P54352|O44386|P35992|Q9VCT4 +GO:0007616,0.141025641025641,0.534270216962525,0.158514105424824,0.572431557128097,1.32270594673352,10,A0A0B7P9G0|P05031|P54352|P35992|Q9VCT4 +GO:0007622,0.363321799307959,0.765921213289634,0.0886261133285098,0.410974333309114,1.07549974642608,16,Q9VW68|Q94901|Q7JVK6|P12370|Q9VDC6|P48148 +GO:0007623,0.328282828282828,0.744342361691127,0.0928481214159878,0.396156687903686,1.08884997178791,19,Q9VW68|Q94901|Q7JVK6|P12370|Q9VDC6|O61443|P48148|P25455 +GO:0007626,0.397435897435897,0.786653249636622,0.0795564677235957,0.347150751265812,1.04866537557559,27,Q7K569|Q9VBC7|P06002|Q94901|Q9VDH3|Q9V393|Q9VDC6|P48148|P25455 +GO:0007635,0.175438596491228,0.571546052631579,0.155241966228839,-0.521871925234335,-1.27213531372818,10,P19334|Q9VWV6 +GO:0008033,0.804029304029304,0.993687408367459,0.0516355964484201,0.322042849495896,0.74413785687903,10,Q9VKD3 +GO:0008037,0.172357723577236,0.571546052631579,0.132846300606183,0.422079473486369,1.24239668127271,25,P32392|P12080|Q9VN14|Q9U4G1|M9PF16|Q9VLT3|Q09101|P48148 +GO:0008038,0.190243902439024,0.595100785412204,0.12563992130984,0.429365786488257,1.24203626981091,23,P32392|P12080|Q9VN14|Q9U4G1|M9PF16 +GO:0008039,0.927631578947368,1,0.053347785067549,-0.24750590741824,-0.603330031677217,10,Q9W266|Q9VYS2|Q9VIH3|Q9VQ62|Q0E8P5|A8DZ14 +GO:0008064,0.397085610200364,0.786653249636622,0.0865399737444125,0.428110513805895,1.04917596700597,13,Q9W2N0|Q9VU68 +GO:0008088,0.335154826958106,0.74992489433765,0.096240602328129,0.461412827674346,1.10705460867178,12,Q9U4G1|O18332|Q9VJQ6 +GO:0008104,0.968379446640316,1,0.0802023444698144,-0.170359323352928,-0.761839935435348,148,P10676|P19334|A8DYP0|Q9V784|Q7K5M6|Q9VB22|Q9W3E2|Q9VCE1|O02649|Q9VCH5|A1Z6P3|Q9VGL0|Q7KLE5|Q9VN02|Q7JWD3|Q8SX68|Q9VBV5|Q03427|Q9U6R9|Q9VJD4|Q7K1C5|Q9XTL2|Q9VEC8|Q23983|P92177|O62530|P48604|Q9W1E8|Q0E8V7|Q9VAA6|Q9VN88|Q9VD29|Q9Y0V3|P05205|Q9VN44|Q9VGV9|Q9VRJ5|P08985|Q9VQQ0|Q9VBI3|Q7K0X9|Q9W2D6|Q9VSY8|Q9VSU7|Q9W329|Q9VGE4|P25171|Q8T9B6 +GO:0008154,0.307958477508651,0.737082351180454,0.0982123351217438,0.414836793003924,1.11478630171607,18,Q9W2N0|Q9VU68|Q9VPX6 +GO:0008202,0.5,0.849137931034483,0.0840745577910723,-0.401385297422668,-0.978432421007099,10,Q9VFN7 +GO:0008219,0.139605462822458,0.533467752460001,0.143758989039275,0.376554315077049,1.25249793183937,42,Q9VZU7|Q9VED8|Q7K485|Q9W253|P06002|Q9W260|P12370|P15425|O62602|P40797|P55841|Q7K3D4 +GO:0008277,0.475877192982456,0.829626610774725,0.086794975677172,-0.407789759191494,-0.994044186246025,10,P10676|Q9VXN2 +GO:0008283,0.28042328042328,0.702842064165219,0.132846300606183,-0.355930005012521,-1.14521992890063,27,Q9VHT3|Q24276|Q7K5M6|Q9VB22|Q9W266 +GO:0008286,0.309050772626932,0.737082351180454,0.11331290842208,-0.433549291051338,-1.12259300725647,12,Q24276|Q8IPW2 +GO:0008298,0.936768149882904,1,0.0559428593065705,-0.225123408425319,-0.606239057654894,14,P08182|P17210|Q9VLS5|Q9VHC7|O18335 +GO:0008340,0.439370078740158,0.799962158149825,0.0734381410838857,0.317046613276891,1.01103480129862,35,O97125|Q9VW54|Q9W1H8|Q9W3W4|P17336|Q9VGS3|Q9VXK7 +GO:0008344,0.511796733212341,0.861743217460096,0.0728938564822936,0.408926010955747,0.972963927816171,11,Q7K569|P06002 +GO:0008356,0.74468085106383,0.974117713542991,0.0673623868166279,-0.277949923689056,-0.801088481317667,17,Q9VHT3|Q9VB22 +GO:0008358,0.867924528301887,1,0.0598603117764473,-0.245577496721842,-0.689812817477293,16,Q9VQ91|P17210 +GO:0008361,0.917098445595855,1,0.0429311093452583,0.247664643201995,0.655848934105571,17,O62602|O61443|Q7KJ08|Q9VND8|P08646|P40417|Q9VU84|O15943|Q08012 +GO:0008380,0.437596302003082,0.79820806939451,0.0725351864394589,0.295430060086175,1.0136217568422,52,P21187|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q9VXE0|Q24297|Q02748|Q27268 +GO:0008582,0.0341341707079205,0.303471176228947,0.321775918075361,0.600094627372653,1.54641745109246,15,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378 +GO:0008587,0.265567765567766,0.684775521162956,0.11101149245045,0.512071668837326,1.18323358153596,10,Q9VHC3|P12080 +GO:0008589,0.0973913043478261,0.447607591553061,0.188204146308491,0.549803760628731,1.39487908462268,14,Q9VBP9|Q9XYZ5|Q9V393|P12370|P29829|A0A0B4LFA6|Q9VHI1|O97102 +GO:0008595,0.957547169811321,1,0.0552495663125249,-0.205811009157449,-0.603030525052979,18,Q9VQ91|P17210 +GO:0008610,0.835135135135135,1,0.0683110858318647,-0.230406413747313,-0.773205253241775,31,Q9VFN7|Q8T3L6|Q9VAG9 +GO:0008652,0.105536332179931,0.466158238552609,0.179782316298324,0.516870147595093,1.35262391740561,16,Q9VNW6|Q7JXZ2|Q9VCK6|Q9VSY6|Q9VAN0|Q9VJ31 +GO:0008654,0.463414634146342,0.819916955559473,0.088894528862045,-0.39340563387047,-0.990799918883259,11,Q9VAG9|Q9VCE0|Q7K1C5 +GO:0009056,3.41103469725024e-05,0.00479981310970212,0.557332238758646,0.401840407767718,1.67970726214702,221,Q7JYW9|Q9VZU7|Q9V3N7|Q7JYX5|Q9VW54|Q24253|Q7K148|Q9W1H8|Q9VED8|Q9VUY9|P54385|Q9U9Q4|Q9W2L6|Q9VF86|Q9W2E7|Q9VXZ8|P46415|Q9VBP9|O18413|Q7JWF1|Q9W0S7|Q9VZI8|Q9VW68|Q9VHB8|O62619|Q5U117|Q9XYZ5|P17336|Q9VNX4|P22979|A1ZBJ2|Q9VDT1|Q7K2E1|O76742|Q7KUT2|Q9VCK6|O18333|Q9W414|Q9VHD3|O18332|P40301|Q9VNH5|P12370|Q9VUJ1|Q9VH77|Q9VSA3|P07486|P40304|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|Q9VJ86|Q7K519|Q9VY87|Q9VSC3|O96299|Q02748|Q9VKZ8|Q9W5W8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8 +GO:0009057,0.0143563100336594,0.226451508042196,0.380730400722792,0.386101489301206,1.45828087807638,100,Q9VZU7|Q9VW54|Q7K148|Q9VED8|Q9VUY9|Q9U9Q4|Q9VBP9|O18413|Q9W0S7|Q9XYZ5|Q7KUT2|Q9W414|P40301|Q9VNH5|P12370|Q9VUJ1|P40304|Q9VJ86|Q9VY87|Q9VSC3|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8|Q9V9T9|Q95083 +GO:0009059,1.08299122603958e-05,0.00213349271529798,0.593325476396405,0.365859374522482,1.60106376555617,386,Q9W3J5|Q9VXP3|P21187|O97125|O16797|Q9VXQ0|Q9VUY9|A1Z9A8|Q9U9Q4|Q9VKD3|Q8SXF0|Q9W2E7|P41093|Q9VNE9|Q9W253|Q9VBC7|Q9VIF2|Q0E9B6|O77410|Q9VM10|Q9VAY9|Q9VNB9|Q9VV39|O02195|Q9W0S7|P54622|Q9W199|P50887|Q9NJH0|Q7K3V6|Q94901|Q9XYZ5|Q9W3W4|A0A0B4K692|Q9VPL0|P22979|O77477|Q7KLW9|Q8T4G5|P29327|Q9W3M7|Q7JWX3|Q9VGW7|Q7K3J0|Q8MZI3|Q7JVK6|Q7K012|Q9VCX3|Q9W4I3|P13060|Q9VAD4|Q9VMD3|P09180|Q9V3L6|A1Z6L9|Q24319|Q9W414|Q9VPF6|Q9VNZ3|Q9VJD0|Q9VXN4|Q9VGP7|Q7KVQ0|Q9W392|Q7K0E6|Q9VCK0|Q7K3W2|Q9V9M7|Q9VSR5|Q9VNH5|P12370|Q9VP57|Q9VMH8|Q9VFC2|Q9VHN6|Q9W4W8|Q9W1B9|Q9W1L1|A1ZA22|P15425|Q7KN75|Q9VIN9|Q9W086|Q9VBU9|Q9VXE0|Q9VVN2|Q24297|Q9VJ86|Q9V3G1|Q9VFF0|Q95RS6|Q95RQ8|Q9VKU3|Q9GYU8|Q02748|Q8MSS7|Q9VDV2|Q9V6Y3|Q27268|Q9VUN9|Q9VUX1|Q9VGP6|Q8WTC1|Q9VHT5|A1ZBA5|Q9NHA8|Q9VY28|P55841|Q9VFB2|Q9VNC1|Q9VND8|Q76NQ0|Q7K3D4|Q9VJZ1|P28668|Q9W229|P56538|Q9V3E3|Q9W1V3|Q9VN50|Q9NHD5|Q4V5H1|Q0KI98|Q9VF89|Q9VEA1|Q9VKY3 +GO:0009060,0.00989446149058799,0.210918994418235,0.380730400722792,-0.378877856240051,-1.5175757797302,69,Q9VJZ4|Q24439|Q8SYJ2|Q9VGZ3|Q9VA37|Q9VWH4|Q9VWI0|Q6IHY5|Q500Y7|Q9VXN2|Q9VTU2|Q9W1N3|Q9VXZ0|Q9W401|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9W385|Q9VZU4|Q9VQR2|Q9VEB1|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q94522|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0009062,0.0684474123539232,0.38280301190187,0.222056046145248,0.509625357163585,1.43200822384491,21,Q9W1H8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1|Q7K2E1 +GO:0009063,0.000186362158099447,0.0131119089805682,0.518848077743792,0.677992024909904,1.96124309872947,23,P54385|Q9VZI8|Q9VW68|Q9VHB8|Q9VNX4|Q9VCK6|Q9VHD3|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0009100,0.335753176043557,0.74992489433765,0.0959206777921745,0.468236217944279,1.11408161269095,11,Q24319|P15425|Q9V9T9|Q76NQ0 +GO:0009117,0.0100135611359823,0.210918994418235,0.380730400722792,0.475284924038942,1.58809094613604,45,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VUY9|P54385|Q01637|O01666|P35381|P32748|O62619 +GO:0009132,0.47005444646098,0.822386553755001,0.077274697304471,0.422234942817118,1.0046300734561,11,Q7JYW9|Q9VUY9|O62619 +GO:0009135,0.344322344322344,0.7557726373898,0.0949751525905595,0.474996930570114,1.09756573850918,10,Q7JYW9|Q9VUY9|O62619 +GO:0009141,0.398042414355628,0.786653249636622,0.080419996876154,0.362105860966471,1.03585943088765,22,Q7JYW9|Q9VUY9|O01666|P35381|O62619 +GO:0009142,0.717668488160291,0.965715110434272,0.0566484183613995,0.344427346508515,0.826374687558436,12,O01666|P35381 +GO:0009144,0.323777403035413,0.742438342435816,0.0937465422491719,0.396970190220215,1.10176309706309,20,Q7JYW9|Q9VUY9|O01666|P35381|O62619 +GO:0009145,0.667876588021779,0.953614292486963,0.0598603117764473,0.358329548953334,0.852578989992304,11,O01666|P35381 +GO:0009150,0.082018927444795,0.412186956801648,0.195789002148949,0.450324752988823,1.38529038016103,29,Q9VC18|Q7JYW9|Q9VA09|Q9VUY9|O01666|P35381|O62619 +GO:0009152,0.13973063973064,0.533467752460001,0.152144922367565,0.480511568711494,1.32070219691072,19,Q9VC18|Q9VA09|O01666|P35381 +GO:0009165,0.0878048780487805,0.428387144331417,0.191892240384838,0.489090057289146,1.4148020393647,23,Q9VC18|Q9VA09|Q01637|O01666|P35381|P32748 +GO:0009166,0.274725274725275,0.696196398748283,0.108820126769161,0.505528176705637,1.16811366746552,10,Q7JYW9|Q9VUY9|O62619 +GO:0009179,0.344322344322344,0.7557726373898,0.0949751525905595,0.474996930570114,1.09756573850918,10,Q7JYW9|Q9VUY9|O62619 +GO:0009185,0.47005444646098,0.822386553755001,0.077274697304471,0.422234942817118,1.0046300734561,11,Q7JYW9|Q9VUY9|O62619 +GO:0009199,0.323777403035413,0.742438342435816,0.0937465422491719,0.396970190220215,1.10176309706309,20,Q7JYW9|Q9VUY9|O01666|P35381|O62619 +GO:0009201,0.667876588021779,0.953614292486963,0.0598603117764473,0.358329548953334,0.852578989992304,11,O01666|P35381 +GO:0009205,0.323777403035413,0.742438342435816,0.0937465422491719,0.396970190220215,1.10176309706309,20,Q7JYW9|Q9VUY9|O01666|P35381|O62619 +GO:0009206,0.667876588021779,0.953614292486963,0.0598603117764473,0.358329548953334,0.852578989992304,11,O01666|P35381 +GO:0009259,0.0369395318055145,0.303471176228947,0.321775918075361,0.480206457188675,1.5092537146751,32,Q9VC18|Q7JYW9|Q9VA09|Q9VUY9|Q01637|O01666|P35381|P32748|O62619 +GO:0009260,0.0717781402936378,0.386346820706193,0.213927855492356,0.501618726300305,1.43495740986124,22,Q9VC18|Q9VA09|Q01637|O01666|P35381|P32748 +GO:0009266,0.695934959349594,0.953614292486963,0.052805004567129,0.288372100164945,0.848827206064405,25,Q9VM10|P06002|P22979|A1Z6L9|P05031|P12370 +GO:0009267,0.875,1,0.0560595875032335,-0.276099975846051,-0.673032045622198,10,Q9VCE1 +GO:0009306,0.956043956043956,1,0.0437125833579551,0.250950094997097,0.579865276211043,10,O18333|O18332 +GO:0009314,0.261904761904762,0.68160280883556,0.138022242496643,-0.359987313946866,-1.15827449295503,27,P10676|P19334|Q8IN43|Q8IN44|Q9W3E2|Q9VD09|Q9VI75 +GO:0009408,0.155660377358491,0.552052683200224,0.172324344900946,-0.438517292717188,-1.28486476187363,18,Q8IN43|Q9VSA9|Q8IN44|O02649|Q9VCH5 +GO:0009416,0.261904761904762,0.68160280883556,0.138022242496643,-0.359987313946866,-1.15827449295503,27,P10676|P19334|Q8IN43|Q8IN44|Q9W3E2|Q9VD09|Q9VI75 +GO:0009581,0.322295805739514,0.742438342435816,0.110564716336619,-0.42831153424924,-1.10903083732307,12,P10676|P19334 +GO:0009582,0.322295805739514,0.742438342435816,0.110564716336619,-0.42831153424924,-1.10903083732307,12,P10676|P19334 +GO:0009583,0.322295805739514,0.742438342435816,0.110564716336619,-0.42831153424924,-1.10903083732307,12,P10676|P19334 +GO:0009605,0.49063670411985,0.837568723670801,0.11776578836269,-0.224190025453508,-0.993651608102866,132,P10676|P19334|Q8SXD5|Q9V521|P29613|A1ZBU5|Q8IN43|Q9VWV6|Q8IN44|Q9VCE1|Q9VL01|Q9VI09|Q9VCH5|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q9VD09|Q9VI75|Q95RA9|Q9W4C2|Q9VSL4 +GO:0009607,0.43728813559322,0.79820806939451,0.118815039412263,-0.233041706689476,-0.988833811903747,104,Q8SXD5|Q9V521|A1ZBU5|Q8IN43|Q9VWV6|Q8IN44|Q9VCE1|Q9VL01|Q9VI09|Q9VCH5|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q95RA9|Q9W4C2|Q9VSL4|Q9VIX1|Q9VTJ4|Q960M4|Q9VAI9|A0A126GUP6|Q9VVK7|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0009611,0.92962356792144,1,0.0398406946073899,0.220571718116996,0.643325263521272,24,Q9VC18|P05031|P12370|O62602|P48148|Q9VN91|O44386|P08646|P40417 +GO:0009615,0.514412416851441,0.86466933549261,0.083129129135339,-0.378039666457107,-0.952100424122756,11,Q8SXD5|Q9VCH5 +GO:0009617,0.220963172804533,0.634544388374532,0.157402899305283,-0.301309192255883,-1.15642260719438,52,Q9V521|A1ZBU5|Q8IN43|Q8IN44|Q9VCE1|Q9VI09|Q9V8F5|Q95RA9|Q9W4C2|Q9VSL4|Q9VIX1|Q9VTJ4|Q9VVK7|Q7K2W6|Q9VER6|P08985|Q9V773|Q9W0X2|Q9W2D6|A1ZAL1|Q9VXE8 +GO:0009620,0.392059553349876,0.786653249636622,0.105520936843198,-0.340613034572907,-1.02986026472866,21,Q9V521|A1ZBU5|Q9VWV6|Q9VAI9|A0A126GUP6|Q7K2W6|Q9VER6 +GO:0009628,0.321739130434783,0.742438342435816,0.129442887745046,-0.263749637430876,-1.05466504963273,67,P10676|P19334|P29613|Q8IN43|Q9VSA9|Q8IN44|P91927|Q9W3E2|O02649|Q9VCH5|Q9VF15|Q9VD09|Q9VI75 +GO:0009653,0.42381562099872,0.79721117203646,0.0649407684612899,0.247762225172829,1.01752207009756,175,Q9VZU7|P21187|Q9VTZ4|Q9VQE0|Q9VU68|Q9VBC7|P32392|Q9VHC3|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q5U117|Q9XYZ5|Q9U4G1|P17336|M9PF16|Q7K012|Q9W4P5|Q9VLT3|O18332|P16378|P12370|Q9VF24|Q9VFC2|A1Z877|O62602|O61443|Q02748|P48148|Q9VVG0|Q9NBD7|Q7KJ08|Q9VVA7|P40797|Q9VW57 +GO:0009719,0.789391575663027,0.986739469578783,0.0451344222209097,0.251526357280556,0.783164639720969,30,Q9VTZ4|Q9VP57|Q9VF24|O61443|Q02748|Q9VND8|P08646|P35992|P40417|O97102|A0A0B4K7J2 +GO:0009725,0.346698113207547,0.7557726373898,0.110122263835536,-0.36905567844995,-1.08134079153754,18,Q24276|Q9VH98|Q8IPW2 +GO:0009790,0.321752265861027,0.742438342435816,0.0878312634480124,0.312165061025159,1.09465279272406,59,Q9VTZ4|Q9VQE0|P32392|Q9V3I2|P48596|Q00174|P12080|Q94901|Q9VLT3|P12370|A1Z877|O62602|P48148|Q9NBD7|O61604|Q24372|O44386|P08646|P40417|O97102|Q9VM50|Q9VN21 +GO:0009791,0.385524372230428,0.786653249636622,0.0768736734126542,0.285539302062763,1.03892879376165,77,Q9VQE0|Q9VU68|Q9VBC7|Q9VHC3|Q9V3I2|P48596|P12080|Q9VW34|Q9VSN9|Q9VR79|P16378|P12370|Q9VF24|Q9VFC2|Q9VY05|O61443|P48148|P40797|Q9VW57|Q9W3N6|O44386|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|O97102|Q9VM50 +GO:0009792,0.659574468085106,0.953614292486963,0.0555947097758869,0.294416835548342,0.858703871607741,24,P32392|Q9V3I2|Q94901|Q9VLT3 +GO:0009798,0.995121951219512,1,0.0363783055518278,0.162005247394458,0.476864653116422,25,Q9VPX6|P12370|O62602|Q8SXY6 +GO:0009880,0.974958263772955,1,0.0385579101998489,0.207959440760757,0.58435010191222,21,P48596|P12370|O62602|P08646|P40417|Q9VN21 +GO:0009886,0.212121212121212,0.629335523913837,0.11331290842208,0.349556499195163,1.18731595410603,48,Q9VU68|Q9VHC3|Q9V3I2|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|Q9VM50 +GO:0009887,0.0516224188790561,0.347442680776014,0.241339976815091,0.379555228569272,1.3939917519282,83,Q9VZU7|P21187|Q9VU68|Q9VBC7|Q9VHC3|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q5U117|Q9U4G1|P17336|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|Q7KJ08|P40797|Q9VW57|P11046|Q24372|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|Q9VCT4|Q9VM50 +GO:0009888,0.557352941176471,0.899532021984867,0.0584693210386381,0.258298327497919,0.946643585497909,80,Q9VTZ4|Q9VU68|Q9V3I2|Q00174|P12080|O76742|Q9W4P5|Q9VZI3|Q9W414|Q9VLT3|P16378|O62602|Q7KY04|P48148|Q7KJ08|Q9VVA7|Q9VW57|P11046|Q9VND8|Q24372|O44386|P08646|P35992 +GO:0009889,0.260053619302949,0.68160280883556,0.0931454575337804,0.275200186586775,1.09782965633878,142,P21187|Q9W2E7|Q9VNE9|Q9VIF2|Q9W0S7|P54622|Q94901|Q9W3W4|P22979|O77477|Q7KLW9|Q7JWX3|Q9VGW7|Q7JVK6|Q7K012|Q9V3L6|Q9W414|Q9VCK0|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q9VDC6|Q7KN75|Q9VJ86|Q95RQ8|Q02748|Q27268|Q9VUN9 +GO:0009890,0.739970282317979,0.974117713542991,0.0458620343117985,0.236951138855526,0.846449276816555,64,Q9VNE9|Q9W0S7|Q7JWX3|Q9VGW7|Q7JVK6|Q9V3L6|Q9VNH5|Q9VP57|Q9VFC2|Q9VDC6|Q7KN75|Q9VJ86 +GO:0009891,0.36390977443609,0.765921213289634,0.0808589150280032,0.301040003068852,1.06109245116601,60,P21187|Q9W2E7|P54622|Q94901|P22979|O77477|Q7K012|Q9W414|P12370|Q9VP57|Q7KN75|Q27268|Q9VUN9|Q9VND8|Q9VYF0|Q9VHI1|A0A0B4KGY6|Q24090|Q9VCJ8|Q9GU68|O97102 +GO:0009892,0.663204747774481,0.953614292486963,0.0508054139066364,0.244591724794796,0.895599124191391,81,Q9U9Q4|Q9VNE9|Q9W0S7|Q7JWX3|Q9VGW7|Q7JVK6|Q9V3L6|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q9VDC6|Q7KN75|Q9VJ86|Q7K519|Q9VKZ8|Q27268|Q0E8C8|Q9VND8|Q7JV69 +GO:0009893,0.0977011494252874,0.447607591553061,0.169570644405628,0.337667581778839,1.26720961750765,95,Q9VZU7|P21187|Q24253|Q9W2E7|P54622|Q94901|Q9XYZ5|P22979|O77477|Q7KUT2|Q7K012|Q9W414|Q9V393|Q9VNH5|P12370|Q9VP57|Q7KN75|Q9VJ86|Q02748|P48148|Q27268|Q9VUN9|Q9NHA8|Q9VND8|Q9V3Z2|Q9VYF0|Q9VHI1|A0A0B4KGY6|Q24090|Q9VCJ8|Q9GU68|O97102 +GO:0009894,0.00793454368826469,0.19904222242179,0.380730400722792,0.490361768247059,1.65627497384246,47,Q9VZU7|Q9VW54|Q24253|Q9U9Q4|Q9W2E7|Q9XYZ5|P22979|Q7KUT2|Q9VNH5|P12370|Q9VJ86|Q7K519|Q02748|Q9VKZ8 +GO:0009895,0.262295081967213,0.68160280883556,0.11146266692298,0.48833856611638,1.17165676328544,12,Q9U9Q4|Q7K519|Q9VKZ8|Q9VND8|P08646|P40417|Q9VZ49|Q7JZN0 +GO:0009896,0.060702875399361,0.366612762462139,0.231126709673834,0.471959160608706,1.43831510996152,28,Q9VZU7|Q24253|Q9XYZ5|Q7KUT2|Q9VNH5|P12370 +GO:0009948,0.957547169811321,1,0.0552495663125249,-0.205811009157449,-0.603030525052979,18,Q9VQ91|P17210 +GO:0009952,0.957547169811321,1,0.0552495663125249,-0.205811009157449,-0.603030525052979,18,Q9VQ91|P17210 +GO:0009953,0.164644714038128,0.557889884088514,0.141225119642531,0.497644366242988,1.28240763588458,15,P21187|Q0E8E8|Q9VPX6|O76742 +GO:0009966,0.759656652360515,0.976515065270188,0.0429311093452583,0.226350388431062,0.857886677733857,102,Q9VZU7|Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VBP9|Q9XYZ5|Q9W552|Q9V393|Q9VW73|P12370|Q9VP57|Q9VF24|O62602|Q7K519|P29829|O61443|Q02748|P48148|Q7KJ08|Q9VB05|P19107|P25455|Q9VND8|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|P35992|Q9VHI1|Q9W2V2 +GO:0009967,0.485714285714286,0.834787998380895,0.066132620475844,0.279424526693541,0.971849590861837,56,Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VW73|P12370|Q9VP57|Q9VF24|Q7K519|Q7KJ08|Q9VB05|P25455|Q9VND8|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|Q9VHI1 +GO:0009968,0.806748466257669,0.995798545443363,0.0433636987883266,0.23768060564014,0.802804101748696,47,Q9VZU7|Q9VBP9|Q9XYZ5|Q9V393|P12370|Q9VP57|O62602|P29829|O61443|Q02748|P48148|P19107 +GO:0009994,0.702302631578947,0.953614292486963,0.0529129848430584,0.280900625752068,0.834119032399394,26,P21187|Q9VPX6|P12370|O62602|Q8SXY6|Q9NBD7 +GO:0010256,0.432766615146832,0.79820806939451,0.0732558655828455,0.303738065488147,1.0108696748851,44,Q7JYX5|P32392|Q9V3I2|O76902|M9PF16|O76742|O18333|Q9W4K0 +GO:0010257,0.0691489361702128,0.38280301190187,0.282013350011725,-0.435125949305128,-1.40518064683392,28,Q9VJZ4|Q9VWI0|Q9VTU2|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9W3X7|Q9VPC1|Q9VQR2|Q9VF27|Q6IGM9|Q9W402|M9NEW0|Q7JZK1|Q6IDF5|Q9W2E8 +GO:0010467,2.58763572342713e-05,0.00424803531262621,0.575610261071129,0.357628595530408,1.55949726773655,369,Q9W3J5|Q9VXP3|P21187|O97125|O16797|Q9VXQ0|A1Z9A8|Q9U9Q4|Q9VKD3|Q8SXF0|Q9W2E7|P41093|Q9VNE9|Q9W253|Q9VBC7|Q9VIF2|Q0E9B6|O77410|Q9VAY9|Q9VNB9|Q9VV39|O02195|Q9W0S7|Q9W199|P50887|Q9NJH0|Q7K3V6|Q94901|Q9W3W4|A0A0B4K692|Q9VPL0|P22979|O77477|Q7KLW9|Q8T4G5|P29327|Q9W3M7|Q7JWX3|Q9VGW7|Q7K3J0|Q8MZI3|Q7JVK6|Q7K012|Q9VCX3|Q9W4I3|P13060|Q9VAD4|Q9VMD3|P09180|Q9V3L6|A1Z6L9|Q9W414|Q9VPF6|Q9VNZ3|Q9VJD0|Q9VXN4|Q9VGP7|Q7KVQ0|Q9W392|Q7K0E6|Q9VCK0|Q7K3W2|Q9V9M7|Q9VSR5|Q9VNH5|P12370|Q9VP57|Q9VMH8|Q9VFC2|Q9VHN6|Q9W4W8|Q9W1B9|Q9W1L1|A1ZA22|P15425|Q7KN75|Q9VIN9|Q9W086|Q9VBU9|Q9VXE0|Q9VVN2|Q24297|Q9VJ86|Q9V3G1|Q9VFF0|Q95RS6|Q95RQ8|Q9VKU3|Q9GYU8|Q02748|Q8MSS7|Q9VDV2|Q9V6Y3|Q27268|Q9VUN9|Q9VUX1|Q9VGP6|Q8WTC1|Q9VHT5|A1ZBA5|Q9NHA8|Q9VY28|P55841|Q9VFB2|Q9VNC1|Q9VND8|Q7K3D4|Q9VJZ1|P28668|Q9W229|P56538|Q9V3E3|Q9W1V3|Q9VN50|Q9NHD5|Q4V5H1|Q0KI98|Q9VF89|Q9VEA1|Q9VKY3 +GO:0010468,0.293956043956044,0.725680960643367,0.0875697115548511,0.277144432243276,1.08874310872241,133,P21187|Q9W2E7|Q9VNE9|Q9VIF2|Q9W0S7|Q94901|Q9W3W4|P22979|O77477|Q7KLW9|Q7JWX3|Q9VGW7|Q7JVK6|Q7K012|Q9V3L6|Q9W414|Q9VCK0|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q7KN75|Q9VJ86|Q95RQ8|Q02748|Q27268|Q9VUN9 +GO:0010498,0.00361936017859008,0.115002250835846,0.431707695803346,0.502332222617253,1.70623937345822,48,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|O18413|Q9XYZ5|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q02748|Q9VKZ8|Q9V3Z4|Q9V3G7|Q9VNA5|Q7KMP8|Q95083 +GO:0010506,0.280276816608997,0.702842064165219,0.103958471559957,0.422644252659997,1.1357672012471,18,Q24253|Q9W2E7|P22979|Q7K519|Q9VND8|A1Z7S3|P08646|P40417 +GO:0010556,0.208219178082192,0.622606432422383,0.107972360317345,0.289006621079972,1.13834531843616,135,P21187|Q9W2E7|Q9VNE9|Q9VIF2|Q9W0S7|P54622|Q94901|Q9W3W4|P22979|O77477|Q7KLW9|Q7JWX3|Q9VGW7|Q7JVK6|Q7K012|Q9V3L6|Q9W414|Q9VCK0|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q7KN75|Q9VJ86|Q95RQ8|Q02748|Q27268|Q9VUN9 +GO:0010557,0.377099236641221,0.783634489644732,0.0797705918628453,0.306952118189758,1.05911763092914,55,P21187|Q9W2E7|P54622|Q94901|O77477|Q7K012|Q9W414|P12370|Q9VP57|Q7KN75|Q27268|Q9VUN9|Q9VND8|Q9VHI1|A0A0B4KGY6|Q24090|Q9VCJ8|Q9GU68|O97102 +GO:0010558,0.796380090497738,0.992951046205194,0.0431901998334182,0.229756116045268,0.815618751128547,62,Q9VNE9|Q9W0S7|Q7JWX3|Q9VGW7|Q7JVK6|Q9V3L6|Q9VNH5|Q9VP57|Q9VFC2|Q7KN75|Q9VJ86 +GO:0010564,0.868235294117647,1,0.0597317976364411,-0.252267271478443,-0.698242462555371,15,Q86BS3|Q9VCC0|P92177|P53034|Q4QQ70|Q7KND8|P25171 +GO:0010604,0.072700296735905,0.3891836537221,0.20207170902116,0.361352706483441,1.32313212036209,81,Q9VZU7|P21187|Q9W2E7|P54622|Q94901|Q9XYZ5|P22979|O77477|Q7KUT2|Q7K012|Q9W414|Q9V393|Q9VNH5|P12370|Q9VP57|Q7KN75|Q02748|P48148|Q27268|Q9VUN9 +GO:0010605,0.6,0.933649289099526,0.0560595875032335,0.256137902204314,0.917549658000843,70,Q9U9Q4|Q9VNE9|Q9W0S7|Q7JWX3|Q9VGW7|Q7JVK6|Q9V3L6|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q7KN75|Q9VJ86|Q9VKZ8|Q27268 +GO:0010608,0.00195873809019242,0.0685007628375771,0.431707695803346,0.545576684117092,1.73979784460827,35,P21187|Q9VNE9|Q94901|P22979|O77477|Q7JVK6|Q9V3L6|Q9VCK0|Q9VNH5|Q7KN75|Q9VJ86|Q9VUN9 +GO:0010628,0.421553090332805,0.796986168863365,0.0758886900606117,0.324191556981969,1.02460743222844,34,P21187|Q9W2E7|Q94901|O77477|P12370|Q7KN75|Q9VUN9|Q9VND8|A0A0B4KGY6|Q9VCJ8|Q9GU68|O97102 +GO:0010629,0.678571428571429,0.953614292486963,0.0498907356726307,0.252008043053104,0.865732758375687,50,Q9VNE9|Q9W0S7|Q7JWX3|Q7JVK6|Q9V3L6|Q9VNH5|Q9VFC2|Q7KN75|Q9VJ86|Q27268 +GO:0010631,0.0119123380637254,0.212667264080604,0.380730400722792,0.622612855248034,1.67314060374648,18,Q9VU68|Q9V3I2|P48596|P12080|O76742 +GO:0010638,0.56479217603912,0.899979434749398,0.0833634065110386,-0.304075397710323,-0.908614390004679,20,Q9I7K0|X2JAU8|Q9VCH5|Q8SX68|A0A0B4KHJ9|Q9VCC0 +GO:0010646,0.903899721448468,1,0.0336033244336697,0.203612539354332,0.791688581744159,123,Q9VZU7|Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VBP9|Q9XYZ5|P17336|Q9W552|M9PF16|Q9V393|O18332|Q9VW73|P12370|Q9VP57|Q9VF24|O62602|Q7K519|P29829|O61443|Q02748|P48148|Q7KJ08|Q9VB05|P19107 +GO:0010647,0.321752265861027,0.742438342435816,0.0878312634480124,0.312223946178529,1.09485928219272,59,Q9VTZ4|Q9U9Q4|Q9W2E7|M9PF16|O18332|Q9VW73|P12370|Q9VP57|Q9VF24|Q7K519|Q7KJ08|Q9VB05|P25455|Q9VND8|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|Q9VHI1 +GO:0010648,0.754491017964072,0.975293507473243,0.0453152441270267,0.239839850040753,0.826803965316943,51,Q9VZU7|Q9VBP9|Q9XYZ5|Q9V393|P12370|Q9VP57|O62602|P29829|O61443|Q02748|P48148|Q7KJ08|P19107 +GO:0010720,0.14519906323185,0.535659465480795,0.178219874951973,-0.488425782284515,-1.31529096888538,14,Q24276|Q9W1F8|A1Z9J3|Q7KSE4|Q9VVA6|Q9VD29 +GO:0010817,0.732173913043478,0.971558024620652,0.0535669384770951,0.317436937780413,0.805353067593097,14,Q9VBC7|O18332|Q9VYT0|Q9VY05 +GO:0010876,0.647058823529412,0.942829794639749,0.0785029047348687,-0.278886262921966,-0.875095949848688,24,Q9VFN7|Q9VA42 +GO:0010927,0.433962264150943,0.79820806939451,0.096240602328129,-0.343859912546147,-1.00751667491578,18,A8DYP0|P18432|P83967|M9NFC0|P17210|A0A0B4KHJ9 +GO:0010959,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0010970,0.138433515482696,0.533467752460001,0.159646701919906,0.545228076350805,1.33619749059357,13,Q9NJH0|Q9U4G1|O18332|Q9VJQ6 +GO:0010975,0.865248226950355,1,0.0601186142531851,-0.239946221945936,-0.691556781111468,17,A1Z9J3|Q9VCC0|Q9VVA6|Q9VD29|M9PHA0|Q94533|Q9W289 +GO:0012501,0.139605462822458,0.533467752460001,0.143758989039275,0.376554315077049,1.25249793183937,42,Q9VZU7|Q9VED8|Q7K485|Q9W253|P06002|Q9W260|P12370|P15425|O62602|P40797|P55841|Q7K3D4 +GO:0015031,0.920058139534884,1,0.0347904098478036,0.200474971160623,0.746723191287843,89,Q9VLB7|Q24253|P45437|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q9W552|O18333|O18332|Q9W4K0 +GO:0015931,0.951640759930915,1,0.0412376090540066,0.23336349224356,0.617977583188021,17,Q9W2E7|Q9GYU8|Q27268|Q9W1X4|Q95RF6 +GO:0015980,0.0139715251019915,0.226451508042196,0.380730400722792,-0.370581436212148,-1.4944583880643,75,Q9VJZ4|Q24439|Q8SYJ2|Q9VGZ3|Q9VA37|Q9VWH4|A1Z992|Q9VCE1|Q9VWI0|Q6IHY5|Q500Y7|Q9VXN2|Q9VTU2|Q9W1N3|Q9VXZ0|Q9W401|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9W385|Q9VZU4|Q9VQR2|Q9VEB1|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q94522|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0016032,0.219723183391003,0.632828466784031,0.119887845115423,0.462816718690442,1.21116873549116,16,Q24253|Q9V3I2|O76742|O18333|Q9V3L6 +GO:0016042,0.01546428341958,0.226451508042196,0.380730400722792,0.523145280690809,1.5803057900807,27,Q9W1H8|Q9W2L6|Q9VXZ8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1|Q7K2E1 +GO:0016043,0.876923076923077,1,0.127505315300183,-0.177491151141973,-0.900785256284316,449,P10676|P19334|A8DYP0|Q9VHT3|Q9VPN5|Q9V784|P18432|Q7K5M6|Q9VQ91|P83967|Q9VJZ5|Q9I7K0|X2JAU8|Q9VLP0|Q9VH64|Q9VJZ4|Q9VH95|Q9VB22|P14318|P91927|Q9VFS8|Q9VCE1|Q9W1I8|Q9VFS4|O02649|Q9VWI0|Q9VCH5|Q9VEN3|Q86BS3|Q9W266|Q9VE50|A1Z6P3|Q8SX89|Q6IHY5|Q27272|Q9VRJ6|Q9I7K6|Q9I7J0|Q9VTU2|M9NFC0|Q7JXC4|Q7KLE5|Q9VI75|Q9VXF9|Q9VXZ0|Q9VN02|P36975|Q9VH76|Q7K3Z3|P08182|Q8IPW2|Q9VAA9|Q8IRH5|P17210|Q7PL91|Q9VXK6|Q9VQD7|Q7JWD3|Q8SX68|M9PGG8|P35220|A1Z9J3|Q9W3N7|Q03427|Q9VF70|A0A0B4KHJ9|Q9W3X7|Q9W385|Q9U6R9|P41375|Q7KSE4|Q7JNE1|Q7KMS3|Q9VCC0|Q9VVA6|Q9VEX6|Q9VEC8|Q9W445|Q23983|Q24478|Q9VPC1|Q9VQR2|Q9VL16|Q8T0Q4|Q9VJI9|Q9V4S8|Q9VF27|Q9VNI4|P92177|Q6IGM9|Q9W1E8|Q9VRL2|Q9VD64|Q0E8V7|Q7K1H0|Q9W402|B7Z107|M9NEW0|O46098|P13677|Q7JZK1|Q9VD29|Q9VIE7|Q9Y162|Q9VPC2|Q6IDF5|Q9Y0V3|Q9VRY5|P53034|Q868Z9|Q9W2E8|Q9V438|Q7K2N0|P05205|Q9W0H8|Q9VMX4|Q9VC53|Q8MLW4|P09040|P08985|Q95NU8|Q9VQQ0|M9PHA0|Q24185|Q9W236|P61851|Q7KND8|Q7K0X9 +GO:0016049,0.537562604340568,0.888229710488847,0.0662842187012672,0.332041784449348,0.9330119848,21,Q9V3I2|Q9U4G1|Q9VSR5|P12370|P48148|Q9VND8|O44386 +GO:0016050,0.881889763779528,1,0.0404934829859503,0.227929972274659,0.726849379802246,35,Q7JYX5|Q9V3I2|O76902|O76742|O18333 +GO:0016051,0.0882352941176471,0.428387144331417,0.237793834423688,-0.466467381256879,-1.36621199558997,19,Q9Y119|P29613|Q9VM18|Q9VTY2|A1Z992|Q9VAN7 +GO:0016052,0.42314335060449,0.79721117203646,0.0802023444698144,0.386758221553426,1.02418723998282,17,Q7JYW9|Q9VUY9|O62619|Q9VH77|P07486|O96299 +GO:0016053,0.468292682926829,0.822225120646928,0.0718276293603809,0.338348372162517,0.995933043643523,25,Q9VNW6|O62619|Q7JXZ2|Q9VCK6|Q9VSY6 +GO:0016054,0.00190094126499243,0.0685007628375771,0.45505986738723,0.505370035340964,1.72694427348075,49,Q9W1H8|P54385|Q7JWF1|Q9VZI8|Q9VW68|Q9VHB8|Q5U117|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VCK6|Q9VHD3|Q9VSA3|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0016055,0.0674740484429066,0.381965159288868,0.227987202850442,0.551101949289212,1.44220686957027,16,Q9W552|P16378|O62602|P48148|P25455|Q9VHI1 +GO:0016070,0.897503285151117,1,0.0311335139616949,0.198945881115555,0.804333517557342,162,Q9W3J5|P21187|Q9VKD3|Q9W0S7|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q9VGW7|Q8MZI3|Q7JVK6|Q7K012|Q9V3L6|Q9W414|Q9VNZ3|Q9VXN4|Q7KVQ0|Q7K0E6|Q9VNH5|Q9VP57|Q9VXE0|Q24297|Q9VJ86|Q95RQ8|Q9VSC3|Q02748 +GO:0016071,0.376681614349776,0.783634489644732,0.0787113806986485,0.290554516725915,1.04446429653349,71,P21187|Q9W0S7|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q8MZI3|Q9V3L6|Q9VNH5|Q9VXE0|Q24297|Q9VJ86|Q02748|Q27268 +GO:0016072,0.799307958477509,0.992951046205194,0.0492917662312669,0.292915527624526,0.766545621347817,16,Q9W414|Q7KVQ0|P56538|Q9W1V3 +GO:0016079,0.187637969094923,0.592382690892625,0.150169802128406,-0.495360537481714,-1.28264141338875,12,Q9W1I8|P36975|Q9VH76|Q9U6R9|Q23983 +GO:0016192,0.918508287292818,1,0.0324330694656715,0.200451709332593,0.784636661714557,128,Q9VLB7|Q7JYX5|Q9V3A8|Q24253|Q9VQE0|P45437|Q9V3I2|A8JTM7|O76902|Q9W552|O76742|O18333|Q9W3M8|Q9V393|Q9VLT3|O18332|Q9W4K0|Q9VW73|Q95TN1|O61491|Q8SXY6|Q7KY04|P48148|Q9VVA7|Q9VB05|P19107 +GO:0016197,0.951086956521739,1,0.062249042949858,-0.201608086928532,-0.654939876527673,29,Q9VI75|Q9VN02|Q9XTL2|Q8T0Q4|Q9Y162|Q9VG51|Q9W0B3|Q9VRJ5|Q9W236|Q9VBI3|Q9VGE4|Q9VE12|Q960X8 +GO:0016226,0.90528233151184,1,0.0459538081039063,0.277056821352539,0.664734512233272,12,Q9VKD3 +GO:0016236,0.947368421052632,1,0.0391956336118146,0.220557530283905,0.654933513431152,26,Q7JYX5|O76742|O18333|O18332 +GO:0016310,0.431524547803618,0.79820806939451,0.102080107662747,-0.318372270301805,-1.00314902922224,25,P10676|A8DYP0|Q9VEN3|Q9VRJ6 +GO:0016311,0.300438596491228,0.732504993920445,0.114750719227023,-0.478305602484651,-1.16593634999917,10,Q9VJZ5|P82890 +GO:0016331,0.91522491349481,1,0.0431036828790402,0.248382691098413,0.667476044289219,18,Q9V3I2|Q9VLT3|P48148|Q24372|O44386|P08646|Q9VM50 +GO:0016358,0.982113821138211,1,0.036993251998507,0.186991922028402,0.550413270358657,25,Q9V3I2|Q7K012|O18332|P48148|P16620|Q0KI98|Q24090|O97102 +GO:0016477,0.05229793977813,0.347442680776014,0.248911114434702,0.462063555467957,1.46035189041243,34,Q9VU68|Q9V3I2|P48596|Q00174|P12080|O76742|O18332|O62602|P48148|Q9NBD7|P11046|Q9VL10|O44386|P08646 +GO:0016485,0.0205744440007259,0.247144235862378,0.352487857583619,0.67888665381591,1.62883334358251,12,Q9VBC7|A0A0B4K692|Q8T4G5|Q9VJD0|Q7K3W2|Q9W4W8|Q9VFF0|Q95RS6 +GO:0016567,0.652094717668488,0.945969509430723,0.0611692626746689,0.361938641480919,0.868389037052624,12,Q9XYZ5|Q7KLW9 +GO:0017004,0.885662431941924,1,0.046788296531803,0.282010813859555,0.670992653409669,11,A1Z7B8 +GO:0018193,0.610726643598616,0.938236326264601,0.0618406035753285,0.337294327417131,0.906407296055815,18,P46415|Q9VGW7|Q9V393|P15425 +GO:0018958,0.524296675191816,0.876187041711744,0.0899860794997137,-0.298432519244898,-0.93642865789852,24,Q9V521|Q9W369|Q9VL01|A1Z6P3|Q7KUA4|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6 +GO:0019058,0.111111111111111,0.473785473785474,0.179782316298324,0.557213413046887,1.36557011007496,13,Q24253|Q9V3I2|O76742|O18333|Q9V3L6 +GO:0019094,1,1,0.0501934252649434,-0.137764350453172,-0.369720944507362,13,P17210|Q9VLS5|Q9VHC7|O18335|A0A6H2EG56|Q7KM15|Q7K2D2|Q9W1H5|Q9VKK1|P49028|Q9V535|Q9VN21|P12370 +GO:0019219,0.671664167916042,0.953614292486963,0.0507027937029348,0.249595804255438,0.892990242152147,69,Q9VZU7|P54622|Q7KLW9|Q9VGW7|Q7K012|Q9W414|Q9VNH5|P12370|Q9VP57|Q9VJ86|Q95RQ8|Q02748|Q27268 +GO:0019222,0.091025641025641,0.435243963156585,0.165656695205483,0.297237251993733,1.22343363857468,197,Q9VZU7|P21187|Q9VW54|Q24253|Q9U9Q4|Q9W2E7|Q9VNE9|P46415|Q9VIF2|Q9W0S7|P54622|Q9VW68|Q94901|Q9XYZ5|Q9W3W4|P22979|O77477|Q7KLW9|Q7JWX3|Q9VGW7|Q7JVK6|Q7KUT2|Q7K012|Q9V3L6|Q9W414|Q9V393|Q9VCK0|Q9VW73|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q9VDC6|Q7KN75|Q9VJ86|Q7K519|Q95RQ8|Q02748|P48148|Q9VKZ8|Q27268|Q9VUN9 +GO:0019318,0.86088379705401,1,0.0433636987883266,0.249560092233888,0.727873516475039,24,Q7JYW9|Q9VUY9|O62619 +GO:0019319,0.233995584988962,0.651875106058035,0.132846300606183,-0.476461541426341,-1.23370607603765,12,P29613|Q9VTY2|Q9VAN7|M9PF61|Q9VEB1 +GO:0019320,0.249544626593807,0.66984942402507,0.114750719227023,0.494991464943373,1.18761887327829,12,Q7JYW9|Q9VUY9|O62619|Q9VH77|P07486 +GO:0019362,0.0622895622895623,0.366612762462139,0.234392647294686,0.540030737353156,1.4842926324004,19,Q7JYW9|Q9VAJ9|Q7K569|Q9VUY9|P54385|O62619|Q8MLS2 +GO:0019395,0.127946127946128,0.505040706738264,0.159646701919906,0.487374327624834,1.33956472044584,19,Q9W1H8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1 +GO:0019538,4.15796367485791e-10,2.04779710986752e-07,0.814035837847908,0.41905843305904,1.83830460825481,394,Q9W3J5|Q9VXP3|Q9VZU7|Q9VHR8|P21187|O97125|Q9VW54|O16797|Q7K148|Q9VFQ9|Q9VXQ0|A1Z9A8|Q9U9Q4|Q8SXF0|P41093|Q7K485|Q9VNE9|Q9W253|P46415|Q9VBC7|Q0E9B6|O77410|Q9VBP9|Q9VM10|Q9V3I2|Q9VAY9|Q9VNB9|Q9VV39|O02195|O18413|Q9W199|P50887|Q9NJH0|Q7K3V6|Q94901|Q9XYZ5|Q95R98|A0A0B4K692|P22979|Q9VT23|O77477|Q7KLW9|Q8T4G5|Q9VXC9|P29327|Q7JWX3|Q9VGW7|Q7K3J0|Q7KUT2|Q9VCX3|Q9W4I3|P13060|Q9VEV7|Q9VN01|Q9VAD4|Q9W5W7|Q9VMD3|P09180|A1Z6L9|Q24319|Q9W414|Q9V393|Q9VPF6|Q9VJD0|Q9VXN4|Q9VGP7|Q9W392|Q7K0E6|Q9VCK0|Q7K3W2|Q9V9M7|P40301|Q9VSR5|P12370|Q9VUJ1|Q9VMH8|Q9VFC2|Q9VHN6|Q9VYY3|Q9W4W8|Q9W1B9|Q9W1L1|A1ZA22|P15425|P40304|Q7KN75|Q9VIN9|Q9W086|Q9VBU9|Q8MT58|Q9VVN2|O62602|Q9VJ86|Q9V3G1|Q9VFF0|Q95RS6|O61443|Q9VKU3|Q9VAG3|Q9VY87|Q02748|P48148|Q9VKZ8|Q8MSS7|Q9V3Z4|Q9VDV2|Q9V6Y3|Q7KJ08|Q9VVA7|Q9VUN9|Q9VB05|Q9Y136|Q9VUX1|Q9VGP6|Q8WTC1|Q9VHT5|A1ZBA5|Q9V3G7|Q9VNA5|Q9VC48|Q7KMP8|Q9NHA8|Q9V9T9|Q9VY28|P55841|Q9VFB2|Q95083|Q9VNC1|Q0E8C8|Q9VND8|Q76NQ0|Q7K3D4|Q7JV69|Q9VJZ1|P28668|Q9W229|P56538|P16620|Q9V3E3|Q9V3Z2|Q9VKC7|Q9VN50|Q9VKW5|Q9NHD5|Q4V5H1|Q0KI98|Q9VF89|Q9VEA1|Q9VKY3|A0A0B4LFA6 +GO:0019637,0.00782119941499163,0.19904222242179,0.380730400722792,0.400778605571251,1.49537394093227,92,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VTZ4|Q9VUY9|P54385|Q9W2L6|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748|O62619 +GO:0019646,0.0778443113772455,0.39935753493014,0.282013350011725,-0.34673816121339,-1.30913177747728,51,Q9VJZ4|Q8SYJ2|Q9VWI0|Q6IHY5|Q500Y7|Q9VTU2|Q9W1N3|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9VZU4|Q9VQR2|Q9VF27|Q9VV75|Q9W402|Q7JZK1|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0019693,0.0365261323220655,0.303471176228947,0.321775918075361,0.478172077642122,1.50606100097436,33,Q9VC18|Q7JYW9|Q9VA09|Q9VUY9|Q01637|O01666|P35381|P32748|O62619 +GO:0019725,0.781102362204724,0.985745703835836,0.0460457683018055,0.248619137967149,0.806994893340069,38,Q7JYW9|Q9VZU7|A0A0B7P9G0|Q9VPX6|Q8IQ70|Q9W4P5 +GO:0019730,0.234042553191489,0.651875106058035,0.138022242496643,-0.416316223746356,-1.19987847811741,17,Q9V8F5|Q7KUA4|A1ZBU8|Q9VIX1 +GO:0019748,0.565891472868217,0.899979434749398,0.0862865626267245,-0.303590117673606,-0.934736868176857,23,Q9V521|Q9VL01|A1Z6P3|Q7KUA4|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6 +GO:0019751,0.634433962264151,0.938236326264601,0.0753093764172773,-0.301191131514761,-0.882496261605224,18,P29613|Q9VTY2 +GO:0019752,0.00788833250831817,0.19904222242179,0.380730400722792,0.386411445614567,1.48064760140529,110,Q7JYW9|Q94523|Q9W1H8|Q9VUY9|P54385|Q9VXZ8|Q9VNW6|Q7JWF1|Q9VAC1|Q7K5K3|Q9VZI8|Q9VW68|Q9VHB8|O62619|Q5U117|Q7JXZ2|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VCK6|Q9VSY6|Q9VHD3|P05031|Q9VSA3|Q9VDC6|P07486|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0019827,0.964539007092199,1,0.0550211117163117,-0.192610539067232,-0.55512907569552,17,Q9VCH5|Q9V4S8|P08985|Q94533|O18335|A1Z8D0|P09208|P51140|Q24298|Q9VCY3|P20240|Q9VPQ2|Q9VVU5|Q24090|Q9W3N6|Q9NBD7|Q02748 +GO:0019915,0.203296703296703,0.61804707638041,0.129442887745046,0.536888250808765,1.24057675233512,10,P45437|P35381 +GO:0019941,0.0277740152632615,0.294165645530243,0.352487857583619,0.435144713064005,1.5014375542663,55,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|Q9VBP9|O18413|Q9XYZ5|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8|Q95083 +GO:0019953,0.417127071823204,0.792218736995968,0.0694481442003175,0.259851282976711,1.01714694225329,128,P21187|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9V3I2|Q9W0S7|P12080|Q9VPX6|Q94901|Q5U117|O76742|Q24238|Q9W414|O18332|Q9VJQ6|Q9VAY3|P12370|Q7JZW0|O62602|Q8SXY6|Q7KY04|Q9VSC3|Q02748|P48148|Q9NBD7|Q9VB05|Q9VGP6|Q9VF23|Q9VAC4|O15971|Q9VL10|Q9VDI5|O44386|Q9W1G7|P08646|Q24492 +GO:0021700,0.701674277016743,0.953614292486963,0.0493910105981501,0.256361133113984,0.849120012501733,41,Q9VN14|Q9VPX6|A8JTM7|P05031|P12370|Q9VDC6|O62602|Q8SXY6|O61443|Q9NBD7|Q9VVA7 +GO:0022008,0.471167369901547,0.822872091051461,0.0643583367917361,0.257616033306186,0.992415473049531,114,Q9VZU7|P21187|Q9VU68|Q9VBC7|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|Q9W260|O18332|P16378|P12370 +GO:0022402,0.871345029239766,1,0.070113215764256,-0.202321328000016,-0.797989317521917,61,Q9VHT3|P83967|Q9VJZ5|Q9VB22|Q86BS3|A1Z6P3|P17210|M9PGG8|Q03427|Q7JNE1|Q9VCC0|Q23983|Q8T0Q4|P92177 +GO:0022411,0.00615190699849457,0.183625102833853,0.407017918923954,0.59610670471083,1.67501418725715,21,Q9VZU7|Q9W2N0|Q7JYX5|Q9VU68|Q9VED8|M9PF16|Q9VMD3|Q9VR79|O18332 +GO:0022412,0.0581395348837209,0.36245216367383,0.224966093540314,0.36502362322375,1.35962910108465,89,P21187|Q9VU68|Q9VED8|Q7K485|Q9V3I2|P12080|Q9VPX6|Q94901|Q9XYZ5|O76742|Q9W414|Q9VAY3|P12370|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9VVG0|Q9NBD7|Q9VB05 +GO:0022414,0.356200527704486,0.762108870661502,0.0751181635276302,0.258314989133077,1.03863835353365,152,P21187|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9V3I2|Q9W0S7|P12080|Q9VPX6|Q94901|Q5U117|Q9XYZ5|A0A0B4K692|O76742|Q9VDH3|Q24238|Q9W414|O18332|Q9VJQ6|Q9VAY3|Q9VN73|P12370|Q7JZW0|Q9VR25|O62602|Q8SXY6|Q7KY04|Q9VSC3|Q02748|P48148|Q9VVG0|Q9NBD7|Q9VB05|Q9VGP6 +GO:0022603,0.973684210526316,1,0.0379271467108098,0.197734755338496,0.587162532490242,26,Q9VQE0|Q9VPX6|O18332 +GO:0022604,0.958057395143488,1,0.0521630305460055,-0.211394126769791,-0.56732264882418,13,Q8SX68|Q9VVA6|P92177|Q7K5M0|Q9VD29 +GO:0022607,0.433497536945813,0.79820806939451,0.147331213699377,-0.211316090150025,-1.00592778399508,240,A8DYP0|Q9V784|P18432|Q9VQ91|P83967|Q9I7K0|X2JAU8|Q9VJZ4|Q9VH95|Q9VFS8|Q9VCE1|Q9W1I8|Q9VFS4|Q9VWI0|Q9VCH5|Q9VEN3|A1Z6P3|Q6IHY5|Q27272|Q9I7K6|Q9VTU2|M9NFC0|Q7JXC4|Q9VI75|Q9VXZ0|P36975|Q9VH76|Q7K3Z3|P17210|Q7PL91|Q9VXK6|Q9VQD7|M9PGG8|P35220|A1Z9J3|Q9W3N7|Q03427|Q9VF70|A0A0B4KHJ9|Q9W3X7|Q9W385|Q9U6R9|P41375|Q7KSE4|Q9VCC0|Q9W445|Q23983|Q9VPC1|Q9VQR2|Q9VJI9|Q9V4S8|Q9VF27|Q9VNI4|Q6IGM9|Q9VD64|Q7K1H0|Q9W402|B7Z107|M9NEW0|O46098|Q7JZK1|Q9VD29|Q9VPC2|Q6IDF5 +GO:0022613,0.777777777777778,0.98564413926848,0.0446854397644147,0.240837037069835,0.797701061169415,41,Q9VNB9|P29327|Q7KVQ0|Q9VBU9|Q9VXE0|Q24297|Q9GYU8|P55841|Q9VND8|P56538|Q9W1V3 +GO:0022618,0.825192802056555,0.999853164621612,0.066436413766281,-0.252803087825811,-0.769086325304061,22,Q9VH95|Q9VXK6|P41375|Q9W445 +GO:0022898,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0022900,0.140804597701149,0.534270216962525,0.20207170902116,-0.311625367017507,-1.21650617564335,57,Q9VJZ4|Q8SYJ2|Q9VA37|Q9VWI0|Q6IHY5|Q500Y7|Q9VTU2|Q9W1N3|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9VZU4|Q9VQR2|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0022904,0.0627867027635833,0.366612762462139,0.287805130535564,-0.366898698543059,-1.4118388539366,53,Q9VJZ4|Q8SYJ2|Q9VA37|Q9VWI0|Q6IHY5|Q500Y7|Q9VTU2|Q9W1N3|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9VZU4|Q9VQR2|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0023051,0.903899721448468,1,0.0336033244336697,0.203612539354332,0.791688581744159,123,Q9VZU7|Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VBP9|Q9XYZ5|P17336|Q9W552|M9PF16|Q9V393|O18332|Q9VW73|P12370|Q9VP57|Q9VF24|O62602|Q7K519|P29829|O61443|Q02748|P48148|Q7KJ08|Q9VB05|P19107 +GO:0023052,0.539424280350438,0.888229710488847,0.0524827622635459,0.232728052530816,0.972811574905901,221,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|O17444|P21187|Q9VTZ4|Q9U9Q4|Q9W2E7|Q9VBP9|Q9VM10|Q9V3I2|P06002|P12080|Q9VPX6|Q9XYZ5|P17336|Q9W552|Q9VH66|M9PF16|O76742|O18333|Q9VZI3|Q9V393|O18332|P16378|Q9VW73|P12370|Q9VP57|Q0KIE7|Q9VF24|O61491|P15425|O62602|Q7K519|Q7KY04|P29829|O61443|Q02748|P48148|Q7KJ08|Q9VB05|P19107|P25455|Q9VH25|Q9NHA8|Q9VW59|Q9VND8|O15971|P16620|Q9VKC7|Q9VN50|Q9VN91|Q9W3N6|A1Z7S3|O44386|A0A0B4LFA6|P08646|P35992|Q9W0C1|Q9VHI1|Q9W2V2 +GO:0023056,0.321752265861027,0.742438342435816,0.0878312634480124,0.312223946178529,1.09485928219272,59,Q9VTZ4|Q9U9Q4|Q9W2E7|M9PF16|O18332|Q9VW73|P12370|Q9VP57|Q9VF24|Q7K519|Q7KJ08|Q9VB05|P25455|Q9VND8|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|Q9VHI1 +GO:0023057,0.754491017964072,0.975293507473243,0.0453152441270267,0.239839850040753,0.826803965316943,51,Q9VZU7|Q9VBP9|Q9XYZ5|Q9V393|P12370|Q9VP57|O62602|P29829|O61443|Q02748|P48148|Q7KJ08|P19107 +GO:0023061,0.589147286821706,0.924060632992643,0.0840745577910723,-0.296624210082222,-0.913289231159306,23,P91927|Q9W1I8|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q23983 +GO:0030001,0.384615384615385,0.786653249636622,0.106729884364606,-0.342806111481859,-1.03649114063995,21,P19334|Q9VLP0|Q9VWV6|P91927|Q7K188 +GO:0030003,0.146572104018913,0.538707173353093,0.178219874951973,-0.453295816871663,-1.3064585616926,17,P19334|Q9VAM6|A1Z992|Q9VJZ6|Q9W385|Q9VQR9|Q9W425|Q9VMX4|Q9VE75|Q9V6U9 +GO:0030029,0.142011834319527,0.535659465480795,0.204294756516886,-0.334466079231879,-1.25823757562544,49,P10676|A8DYP0|P18432|Q7K5M6|P83967|X2JAU8|P14318|Q9VCH5|Q9I7J0|M9NFC0|P17210|Q8SX68|P35220|A1Z9J3|Q03427|A0A0B4KHJ9 +GO:0030030,0.166176470588235,0.558390022675737,0.128142916898415,0.325030617544844,1.19121231705122,80,Q9VU68|P32392|Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|P45888|M9PF16|Q7K012|Q9W260|O18332|P16378|P12370 +GO:0030031,0.813148788927336,0.999229021262782,0.048505983646947,0.27905044809831,0.749889166713292,18,P32392|P45888 +GO:0030036,0.166666666666667,0.558390022675737,0.186432558434075,-0.323665964043163,-1.21164366268774,48,P10676|A8DYP0|P18432|Q7K5M6|P83967|X2JAU8|P14318|Q9VCH5|Q9I7J0|M9NFC0|P17210|Q8SX68|A1Z9J3|Q03427|A0A0B4KHJ9 +GO:0030041,0.442141623488774,0.800325005078204,0.0778840111977068,0.382032888100418,1.01167392815768,17,Q9W2N0|Q9VU68 +GO:0030097,0.594782608695652,0.930650037792895,0.0633597010643758,0.358944337674981,0.910659375254204,14,Q9VQE0|P12080|P48148|Q9NBD7|P08646|P40417 +GO:0030100,0.562347188264059,0.899979434749398,0.0835990603684159,-0.304501412079883,-0.909887372920908,20,Q9VH64|Q9W1I8|Q9W266|Q9VI75|Q7KSE4|P13677|Q9V438|Q7K0X9|Q9VLS5 +GO:0030111,0.160291438979964,0.552052683200224,0.147331213699377,0.527169970238636,1.29194225664918,13,Q9W552|O62602|P48148|P25455|Q9VHI1 +GO:0030154,0.540127388535032,0.888229710488847,0.0532386494755899,0.236337301963695,0.973310960368497,196,Q9VZU7|P21187|Q7JYX5|Q9VTZ4|Q9VQE0|Q9VU68|Q9VED8|Q7K485|Q9VBC7|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q94901|Q9U4G1|M9PF16|O76742|Q7K012|O18333|Q9W260|Q9W414|O18332|Q9VAY3|P16378|P12370 +GO:0030162,0.0986842105263158,0.450018274853801,0.181383128498408,0.46086539618998,1.36851456741021,26,Q9VZU7|Q9U9Q4|Q7JWX3|P12370|Q9VFC2|Q02748|Q9VKZ8|Q0E8C8|Q7JV69 +GO:0030163,0.0334852130738422,0.303471176228947,0.321775918075361,0.396818845020154,1.42645559423939,71,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|Q9VBP9|O18413|Q9XYZ5|Q7KUT2|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q9VY87|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8|Q9V9T9|Q95083|Q9VKC7|Q9VKY3|A0A0B4LFA6 +GO:0030182,0.143465909090909,0.535659465480795,0.136490437780413,0.318363636223614,1.2100542830353,103,Q9VZU7|P21187|Q9VU68|Q9VBC7|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|Q9W260|O18332|P16378|P12370 +GO:0030198,0.331511839708561,0.748943032369112,0.096887770327544,0.450974039279796,1.10520790426206,13,Q00174|Q9VR79|A1Z877|P11046|O15971 +GO:0030258,0.108514190317195,0.46863563167911,0.173747838999571,0.488902020309709,1.37377723438742,21,Q9W1H8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1|B7Z0Q1|Q9VSA3|Q9W5W8 +GO:0030334,0.227106227106227,0.639141810570382,0.121543282035469,0.527193446062745,1.21817516435434,10,P48596|Q00174|O18332|P48148|O44386 +GO:0030431,0.784869976359338,0.986428236940246,0.0647943366000727,-0.266053857668473,-0.766802443978278,17,Q9VLP0|Q7K188|Q9VVE2|Q9VIH9|Q9VII1 +GO:0030534,0.703947368421053,0.953614292486963,0.052805004567129,0.280512632011176,0.832966906223588,26,Q7K569|P06002|Q9VSY6 +GO:0030705,0.175652173913043,0.571546052631579,0.136490437780413,0.502050082913887,1.27372566402389,14,Q9NJH0|Q9U4G1|O18332|Q9VJQ6 +GO:0030707,0.062402496099844,0.366612762462139,0.224966093540314,0.460698448257411,1.43445298596314,30,Q9VU68|Q9V3I2|P12080|O76742|Q9W414|Q7KY04|P48148 +GO:0030718,0.819672131147541,0.999229021262782,0.062249042949858,-0.275501612670745,-0.741903470706033,14,Q9VCH5|Q9V4S8|P08985|Q94533|O18335 +GO:0030832,0.540983606557377,0.888229710488847,0.0833634065110386,-0.352535720399845,-0.94935006723563,14,P10676|X2JAU8|Q9VCH5 +GO:0030833,0.397085610200364,0.786653249636622,0.0865399737444125,0.428110513805895,1.04917596700597,13,Q9W2N0|Q9VU68 +GO:0030855,0.101426307448494,0.458279416682418,0.175204047558551,0.415341217687955,1.33137237431701,36,Q9VU68|Q9V3I2|P12080|O76742|Q9W414|P16378|Q7KY04|P48148 +GO:0030951,0.93040293040293,1,0.0449543067640062,0.270230982884159,0.624417231373101,10,Q9VPX6|P12370|Q9NBD7 +GO:0030952,0.877959927140255,1,0.0473534245254193,0.295260698526487,0.70841055440724,12,Q9VPX6|P12370|P48148|Q9NBD7 +GO:0031023,0.736470588235294,0.973722858270825,0.0676760401641789,-0.291524426603293,-0.806901078897665,15,Q9VHT3|P17210|M9PGG8|Q9VCC0 +GO:0031032,0.254716981132076,0.679935572940635,0.131457611642763,-0.420444111671798,-1.18100290594853,16,A8DYP0|P18432|P83967|Q9I7J0|M9NFC0|A0A0B4KHJ9 +GO:0031047,0.832179930795848,1,0.0474483193656297,0.282173833017232,0.738435131494813,16,Q9W0S7|Q7JVK6|Q9V3L6 +GO:0031163,0.90528233151184,1,0.0459538081039063,0.277056821352539,0.664734512233272,12,Q9VKD3 +GO:0031175,0.238805970149254,0.658198474024396,0.104732821580651,0.321089337128182,1.14691831055544,65,P32392|Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|Q9W260|O18332|P12370|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|Q0KI98|O44386|P35992|Q24090|O97102 +GO:0031344,0.984227129337539,1,0.0354665010333725,0.190023754938319,0.58455165515777,29,P32392|P45888|O18332 +GO:0031346,0.951557093425606,1,0.0413209506074822,0.224905265888092,0.588566089966983,16,P32392|O18332 +GO:0031347,0.981790591805766,1,0.0337507376805299,0.18935921403215,0.629848110760509,42,P45437|Q7JWX3|Q9V393|Q9VSL5|Q9VFC2|O61443|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50|Q9VCJ8|O97102|Q9VA41|Q9W074|P23128 +GO:0031348,0.917508417508417,1,0.0417397034728504,0.230386205327814,0.633224228774101,19,Q7JWX3|Q9V393|Q9VSL5|Q9VFC2 +GO:0031349,0.99198717948718,1,0.0358449292332649,0.173427902040993,0.523887202795796,27,P45437 +GO:0031399,0.181488203266788,0.574809904237254,0.137250779610133,0.531550708654254,1.26472675122072,11,P46415|P22979|Q9V393|P48148 +GO:0031507,0.156908665105386,0.552052683200224,0.170932335370056,-0.481854335211406,-1.29759459555443,14,Q86BS3|Q03427|Q24478|Q9VIE7|P05205|P08985|Q9W396|P08928|Q7KNM2 +GO:0031647,0.625882352941177,0.938236326264601,0.0758886900606117,-0.31820332690511,-0.880744748493946,15,Q9VHT3|Q24276|Q9I7K6 +GO:0031667,0.274061990212072,0.696196398748283,0.101713902282311,0.404875991401252,1.15820995803161,22,O97125|Q7JVK6|P16378|Q7K519|O61443|Q9VND8|Q7K3D4|P08646|P40417|Q9I7X6 +GO:0031669,0.875,1,0.0560595875032335,-0.276099975846051,-0.673032045622198,10,Q9VCE1 +GO:0031929,0.934426229508197,1,0.0445070537769277,0.259752423810728,0.623216565830468,12,Q9VW73|Q7K519|Q9VND8|P08646|Q9I7X6|Q9V3J4 +GO:0032006,0.833030852994556,1,0.0495901956956338,0.304740980755173,0.72507488801976,11,Q9VW73|Q7K519|Q9VND8|P08646|Q9I7X6|Q9V3J4 +GO:0032101,0.981818181818182,1,0.065981614400873,-0.172808880058492,-0.651313895069198,50,P10676|Q9VCE1|Q9VCH5|Q7KUA4|Q95RA9|Q9VSL4|Q960M4|Q9VLU4|Q9VER6|P13677 +GO:0032102,0.603580562659847,0.93773951769708,0.0822054920415869,-0.283730440837986,-0.890296126545242,24,P10676|Q9VCE1|Q7KUA4|Q9VSL4|Q960M4|Q9VLU4|P13677|P08985|Q9W2D6 +GO:0032103,0.99198717948718,1,0.0358449292332649,0.173427902040993,0.523887202795796,27,P45437 +GO:0032222,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0032271,0.669550173010381,0.953614292486963,0.0574877409561325,0.327139234679856,0.856107390238341,16,Q9W2N0|Q9VU68 +GO:0032386,0.532967032967033,0.886777918027918,0.0713052987340038,0.414247038179694,0.957192198777424,10,Q9NJH0|P12370|Q9GYU8|Q9W1X4 +GO:0032409,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0032411,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0032412,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0032414,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0032434,0.0401105614751022,0.303471176228947,0.321775918075361,0.644123576463451,1.53257310164772,11,Q9VZU7|Q9U9Q4|P12370|Q02748 +GO:0032446,0.906862745098039,1,0.0596037042575973,-0.238577192003134,-0.69875630040969,19,Q7K1Z5|Q7KUA4|Q9VDD1 +GO:0032482,0.0947176684881603,0.442165419245677,0.195789002148949,0.568990171941843,1.39443156524449,13,Q9V3I2|O76742|O18333|O18332|Q7KY04|O15971|A1Z7S3|Q9VM50|Q9VIW6 +GO:0032501,0.617096018735363,0.938236326264601,0.0432768714901103,0.216280535571128,0.947281351666372,387,Q9VZU7|Q9V3N7|P21187|O97125|Q9VW54|Q7K569|Q9VTZ4|Q24253|Q0E8E8|Q9W1H8|Q9VQE0|Q9VU68|Q9W2E7|P46415|A0A0B7P9G0|Q9VBC7|Q9VIF2|P32392|Q9VHC3|Q9V3I2|P06002|P48596|Q00174|P12080|Q9VN14|Q9VPX6|Q9VW68|A8JTM7|Q94901|Q5U117|Q9U4G1|Q9W3W4|P17336|A0A0B4K692|P45888|Q9VGS3|M9PF16|O76742|Q9VDH3|Q7JVK6|Q7K012|Q9VSY6|Q24238|Q9W260|Q8IQ70|Q9VW34|Q9VXK7|Q9VSN9|Q9W4P5|Q9VZI3|Q9V393|Q9VR79|P05031|Q9VLT3|O18332|Q9VAY3|Q7KTG2|P16378|P12370|Q7JZW0|Q9VF24|Q9VFC2|Q9VYY3|Q9VLB1 +GO:0032502,0.957091775923719,1,0.0226556224333514,0.186226281030703,0.808962143033831,355,Q9VZU7|P21187|Q7JYX5|Q9VTZ4|Q24253|Q0E8E8|Q9VQE0|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9VBC7|P32392|Q9VHC3|Q9V3I2|P06002|P48596|Q00174|Q9W0S7|P12080|Q9VN14|Q9VPX6|A8JTM7|Q94901|Q5U117|Q9XYZ5|Q9U4G1|P17336|P45888|M9PF16|O76742|Q7K012|Q24238|O18333|Q9W260|Q9VW34|Q9VSN9|Q9W4P5|Q9VZI3|Q9W414|Q9VR79|P05031|Q9VLT3|O18332|Q9VJQ6|Q9VAY3|Q9W4K0|P16378|P12370|Q7JZW0|Q9VF24|Q9VFC2|Q9VLB1 +GO:0032509,0.814569536423841,0.999229021262782,0.0597317976364411,-0.286996989440785,-0.743123838741866,12,Q9VN02|Q9XTL2|Q8T0Q4|Q9W0B3|Q9VRJ5|Q9W236|Q9VBI3|Q960X8 +GO:0032535,0.759002770083102,0.976515065270188,0.0743625384422526,-0.248920900495599,-0.814635167164933,30,P10676|X2JAU8|Q9VCH5|A1Z9J3|Q03427|Q9VCC0 +GO:0032543,4.89243298807904e-09,1.60634883108595e-06,0.761460801445585,0.690796911065015,2.36058271420276,49,Q9VXP3|Q9VXQ0|A1Z9A8|Q8SXF0|Q9W253|Q9VAY9|Q9VV39|Q9W199|Q7K3V6|O77477|Q9VCX3|Q9W4I3|Q9VPF6|Q9VGP7|Q9VSR5|Q9VHN6|Q9W1L1|Q9VIN9|Q9W086|Q9VVN2|Q9VJ86|Q9VKU3|Q8MSS7|Q9V6Y3|Q9VUX1|Q8WTC1|Q9VHT5|A1ZBA5|Q9VY28|Q9VFB2|Q9VNC1 +GO:0032774,0.995862068965517,1,0.0283628487151644,0.162606056166527,0.636916929567982,130,P21187|Q9VKD3|Q94901|Q9VPL0|Q7KLW9|Q9W3M7|Q9VGW7|Q8MZI3|Q7K012|Q9V3L6|Q9W414|Q9VNZ3|Q7KVQ0|Q9VP57|Q9VXE0|Q24297|Q9VJ86|Q95RQ8|Q02748|Q27268 +GO:0032787,0.0412844036697248,0.303471176228947,0.276500599254472,0.405666954721909,1.40735191189468,57,Q7JYW9|Q9W1H8|Q9VUY9|Q9VXZ8|Q7JWF1|Q9VAC1|Q7K5K3|Q9VZI8|Q9VW68|O62619|Q5U117|A1ZBJ2|Q9VDT1|Q7K2E1 +GO:0032868,0.309050772626932,0.737082351180454,0.11331290842208,-0.417596375700465,-1.12071175118201,13,Q24276|Q8IPW2 +GO:0032869,0.309050772626932,0.737082351180454,0.11331290842208,-0.417596375700465,-1.12071175118201,13,Q24276|Q8IPW2 +GO:0032870,0.346698113207547,0.7557726373898,0.110122263835536,-0.36905567844995,-1.08134079153754,18,Q24276|Q9VH98|Q8IPW2 +GO:0032879,1,1,0.0662842187012672,-0.15311255802561,-0.615343531059948,72,Q9VLP0|Q9VH64|Q9W1I8|Q9VCH5|Q9W266|Q7K188|Q9VI75|P17210|Q7KSE4|Q9VIH9|P13677|Q9VII1|Q9V438|P05205|Q9VGV9|Q9VQQ0|Q7K0X9|Q9VLS5|P25171|Q960X8 +GO:0032880,0.922145328719723,1,0.0427591434738678,0.241818181818182,0.649835311484161,18,O18333|O18332|Q9GYU8|Q9W1X4|O97102|A0A0B4K7J2|Q9U5L1|Q7KM15|P45594|Q8SY33|Q7JXF7|Q8IQC6|P08928|O18335|Q960X8|Q9VQQ0|Q9VGV9|P05205 +GO:0032886,0.642384105960265,0.94019070486012,0.0713052987340038,-0.333151985711967,-0.862633378103197,12,Q9I7K0|A1Z6P3|A1Z9J3|Q9VCC0 +GO:0032940,0.399416909620991,0.786653249636622,0.114750719227023,-0.287541790594726,-1.02104812044487,42,Q8MSI2|Q9VPN5|P91927|Q9VCE1|Q9W1I8|Q7KLE5|P36975|Q9VH76|Q9U6R9|Q9VVE2 +GO:0032956,0.620347394540943,0.938236326264601,0.0791316651768349,-0.289473868105891,-0.875238479388698,21,P10676|X2JAU8|Q9VCH5|Q8SX68|Q03427|A0A0B4KHJ9 +GO:0032970,0.620347394540943,0.938236326264601,0.0791316651768349,-0.289473868105891,-0.875238479388698,21,P10676|X2JAU8|Q9VCH5|Q8SX68|Q03427|A0A0B4KHJ9 +GO:0032981,0.0691489361702128,0.38280301190187,0.282013350011725,-0.435125949305128,-1.40518064683392,28,Q9VJZ4|Q9VWI0|Q9VTU2|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9W3X7|Q9VPC1|Q9VQR2|Q9VF27|Q6IGM9|Q9W402|M9NEW0|Q7JZK1|Q6IDF5|Q9W2E8 +GO:0032984,0.0501730103806228,0.347442680776014,0.266350657088526,0.571900731928294,1.49663626732412,16,Q9VZU7|Q9W2N0|Q7JYX5|Q9VU68|M9PF16|Q9VMD3 +GO:0032989,0.433962264150943,0.79820806939451,0.096240602328129,-0.343859912546147,-1.00751667491578,18,A8DYP0|P18432|P83967|M9NFC0|P17210|A0A0B4KHJ9 +GO:0033036,0.993606138107417,1,0.0244973552519294,0.163665481843077,0.674369202724876,191,Q9VLB7|Q24253|P45437|Q9W2E7|P32392|Q9V3I2|Q9V3D9|Q9VKC8|P12080|Q94901|A1Z7X8|Q8IRD0|Q9W552|Q9VSS2|O18333|Q8I099|Q9VSN9|O18332|Q9W4K0|Q7KTG2|Q7K3W2|P12370|Q0KIE7|Q9VF24|O61491|Q9VFF0|Q8SXY6|Q9VJ43|Q9GYU8|P48148|Q9VVA7|Q27268|P40797|Q9VW57|Q9Y171|Q9VH25|Q9W1X4|Q7K1M4|Q9VND8|Q9VL69|Q95R34|O15971|Q9VYT6|Q9VKC7|Q9VL10|Q9W3N6|A1Z7S3|Q95RF6|Q9W503 +GO:0033043,0.571005917159763,0.905701817073055,0.0934449219410994,-0.243990750097325,-0.917875829389127,49,P10676|Q9I7K0|X2JAU8|Q9VCH5|Q86BS3|A1Z6P3|Q8SX68|A1Z9J3|Q03427|A0A0B4KHJ9|Q9VCC0|Q24478|P92177|Q7K1H0|Q9VD29|Q9VIE7 +GO:0033108,0.137142857142857,0.533467752460001,0.204294756516886,-0.33212001709851,-1.23822349574638,47,Q9V784|Q9VJZ4|Q9VWI0|Q6IHY5|Q9VTU2|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9W3X7|Q9VPC1|Q9VQR2|Q9VF27|Q6IGM9|Q9W402|M9NEW0|Q7JZK1|Q9VPC2|Q6IDF5|Q9W2E8|Q9VMX4 +GO:0033365,0.446376811594203,0.802337882153814,0.107140237276725,-0.247102999978187,-0.988099548780204,67,A8DYP0|Q9V784|O02649|Q9VCH5|A1Z6P3|Q9VGL0|Q7JWD3|Q8SX68|Q9VBV5|Q03427|Q9VJD4|Q9XTL2|Q9VEC8|P48604|Q0E8V7|Q9VAA6|Q9VN88|Q9Y0V3|P05205|Q9VN44|P08985|Q9W2D6|Q9VGE4|P25171 +GO:0033500,0.178506375227687,0.572732181105119,0.13880510939114,0.525187182252855,1.26006659472136,12,Q7JYW9|Q9VBC7|O62619|O18332 +GO:0033554,0.542647058823529,0.888229710488847,0.0597317976364411,0.262721967912582,0.950568466844853,72,Q9VZU7|A1Z803|Q9W299|Q5U117|Q9XYZ5|P17336|Q7KLW9|Q7K012|A1Z6L9|Q9W414|P12370|Q9VZJ8|A1ZA22|P15425|O62602|Q7K519|M9NDE3|O61443|Q9VKZ8 +GO:0034220,0.684952978056426,0.953614292486963,0.0518457624865066,0.272553919901691,0.858441654415969,33,Q9V4E7|P35381|A0A0B7P9G0|Q8IQ70|Q9VXK7|Q9W4P5|Q9VAY3 +GO:0034314,0.15018315018315,0.54352324458546,0.153158808683073,0.56585558579488,1.30751098363324,10,Q9VU68|P32392|P45888 +GO:0034329,0.0735524256651017,0.389511501506049,0.206587922696891,0.441313720260042,1.38701669181816,32,Q9W2E7|P32392|Q00174|Q9VN14|P45888|M9PF16|Q9VLT3|P16378|O61491|M9NDE3 +GO:0034330,0.0900763358778626,0.43280580897412,0.183023938384487,0.380628117945767,1.3133317108909,55,Q9W2E7|P32392|Q00174|Q9VN14|P45888|M9PF16|O18333|Q9W260|Q9VXK7|Q9VLT3|O18332|P16378|O61491|M9NDE3|O61443|P48148 +GO:0034440,0.127946127946128,0.505040706738264,0.159646701919906,0.487374327624834,1.33956472044584,19,Q9W1H8|Q7JWF1|Q5U117|A1ZBJ2|Q9VDT1 +GO:0034504,0.747641509433962,0.975107842146059,0.0670512579829467,-0.28553598103505,-0.802053861604544,16,Q9VCH5|Q9VGL0|Q03427|Q9VN44|P25171 +GO:0034654,0.170984455958549,0.568985436213415,0.117249716749792,0.285176909145785,1.16551195596522,171,Q9VC18|Q9VA09|P21187|Q9VTZ4|Q9VKD3|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|P54622|Q7K5K3|P32748|Q94901|Q9XYZ5|Q9VPL0|Q7KLW9|Q9W3M7|Q9VGW7|Q8MZI3|Q7K012|Q9V3L6|Q9W414|Q9VNZ3|Q7KVQ0|Q9VP57|Q9VH77 +GO:0034655,0.119448698315467,0.489353662717877,0.157402899305283,0.391134236612258,1.2819117704375,40,Q7JYW9|Q9VED8|Q9VUY9|Q9W0S7|O62619|Q9VNH5|P07486|Q9VZX9|Q9VJ86|Q9VSC3 +GO:0034762,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0034764,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0034765,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0034767,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0034976,0.606010016694491,0.938236326264601,0.0605092988656667,0.320409750975879,0.900326861581727,21,Q5U117|P17336|Q9W414|Q9VZJ8|P15425|M9NDE3|Q9VKZ8 +GO:0035006,0.291666666666667,0.721838358458962,0.124434168630393,-0.383073876953987,-1.12196510821725,19,Q9V521|Q9VL01|A1Z6P3|Q7KUA4|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6 +GO:0035088,0.406193078324226,0.786653249636622,0.0852884689790502,0.438281446649574,1.05155614735355,12,Q9V3I2|Q9VN14|P48148|Q9VVA7|P08646 +GO:0035107,0.053968253968254,0.347442680776014,0.245041785430996,0.450056192184624,1.45251205902559,37,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0035114,0.053968253968254,0.347442680776014,0.245041785430996,0.450056192184624,1.45251205902559,37,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0035120,0.053968253968254,0.347442680776014,0.245041785430996,0.450056192184624,1.45251205902559,37,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0035152,0.217171717171717,0.632828466784031,0.118815039412263,0.434577389167808,1.19445056055717,19,P12080|Q9VW34|Q9VR79|Q9VLT3|M9NDE3|P48148|Q24372 +GO:0035220,0.049743429536173,0.347442680776014,0.321775918075361,0.422602791216454,1.45079827025905,53,Q0E8E8|Q9VU68|Q9VHC3|Q9V3I2|P12080|Q9VPX6|Q9XYZ5|O76742|P05031|Q9W4K0|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0035239,0.99492385786802,1,0.0568864160475701,-0.168764824562954,-0.539854966639918,26,A1Z9J3|Q7KN94|Q9VRL2|Q9W425|Q9VD64|Q9VAY2|Q9VMV5|Q9VIH3 +GO:0035282,0.979434447300771,1,0.0582216241124161,-0.193244908400255,-0.58789636536274,22,Q9VQ91|P17210 +GO:0035295,0.958860759493671,1,0.0368389606870506,0.21125104798863,0.656017462008768,31,P12080|Q9W4P5|P48148|Q7KJ08|Q9VVA7|Q9VND8|O44386|P08646|P35992|P40417 +GO:0035383,0.0769230769230769,0.396697543294402,0.219250346703755,0.624929112547639,1.44401097940987,10,Q9VXZ8|Q7K5K3|Q95TK5 +GO:0035556,0.0763582966226138,0.396697543294402,0.195789002148949,0.354253959383048,1.31218982391169,87,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|Q9W2E7|Q9V3I2|Q9VPX6|Q9VH66|O76742|O18333|Q9V393|O18332|P16378|Q9VW73|P12370|Q9VP57|O61491|P15425|O62602|Q7K519|Q7KY04|O61443|P48148|Q7KJ08|Q9VB05|P25455|Q9VW59|Q9VND8|O15971|Q9VKC7|A1Z7S3|P08646|P40417|O97102|Q9VM50|Q9I7X6 +GO:0035592,0.956043956043956,1,0.0437125833579551,0.250950094997097,0.579865276211043,10,O18333|O18332 +GO:0036211,0.703869047619048,0.953614292486963,0.0482149710025565,0.240541628851718,0.879852279563614,82,Q9VZU7|P46415|Q9XYZ5|Q95R98|P22979|Q7KLW9|Q9VGW7|Q9VEV7|Q9VMD3|Q24319|Q9V393|P12370|Q9VYY3|P15425|O62602|O61443|P48148|Q9VKZ8|Q7KJ08|Q9VVA7 +GO:0036293,0.0640176600441501,0.366612762462139,0.266350657088526,-0.553314752904152,-1.48494187633191,13,P19334|P91927|Q9VF15|O46067|Q9VG69 +GO:0040003,0.542857142857143,0.888229710488847,0.0943563635421779,-0.251734626507772,-0.938527379222701,47,Q9I7Q5|A1Z8H6|A1Z8Y3|Q9VSY0|Q9VZG1|Q9VSN3|Q9VV46|Q9VZF9|Q8IPD8|Q7K5J8|O97062 +GO:0040007,0.0853658536585366,0.426829268292683,0.188204146308491,0.384766710197021,1.32475820232206,54,Q9W2E7|P32392|Q9V3I2|Q00174|Q9U4G1|P45888|M9PF16|P16378|Q9VSR5|P12370|Q9VFC2|O62602|O61443|P48148|Q7KJ08|Q9VVA7|P40797|Q8WTC1|Q9VND8|O15971|O44386|P08646 +GO:0040008,0.134762633996937,0.526750771773743,0.147331213699377,0.386197608405405,1.26573235883843,40,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378|Q9VSR5|O62602|O61443|Q7KJ08|Q9VVA7|P40797|Q8WTC1|Q9VND8|O44386|P08646 +GO:0040011,0.116719242902208,0.489353662717877,0.161978948883402,0.430446503109753,1.324140847187,29,Q9VU68|Q9VM10|P06002|P48596|Q00174|Q9VDH3|P05031|O18332 +GO:0040012,0.128695652173913,0.505040706738264,0.161978948883402,0.532627776210086,1.35130277041927,14,P48596|Q00174|Q9VDH3|O18332|P48148|Q9VND8|O44386 +GO:0040029,0.0707547169811321,0.386346820706193,0.261663521711573,-0.525593132330749,-1.47636035182186,16,Q9VQ91|Q86BS3|Q03427|Q24478|Q9VIE7|P05205|Q9W0H8|P08985 +GO:0042026,0.690476190476191,0.953614292486963,0.0587185879555941,0.359743558344317,0.831252117385666,10,O97125|P22979 +GO:0042051,0.108996539792388,0.46863563167911,0.176694268938498,0.504085410847266,1.35462312018725,18,P21187|P06002|Q9VPX6|Q9U4G1 +GO:0042052,0.397459165154265,0.786653249636622,0.0862865626267245,0.449390019879184,1.06924056467114,11,P06002|Q9VPX6 +GO:0042060,0.867647058823529,1,0.0617054053637523,-0.251926164954145,-0.737853411391677,19,Q9V521|A1Z6P3|A1Z9J3|Q9XTL2|E2QCN9|Q7K2W6 +GO:0042127,0.507075471698113,0.857912262406977,0.0873098257637931,-0.344698715396999,-0.96823852031577,16,Q24276|Q7K5M6|Q9W266 +GO:0042176,0.00140132878072867,0.0552123539607097,0.45505986738723,0.689191276545648,1.82507021702192,17,Q9VZU7|Q9VW54|Q9U9Q4|Q9XYZ5|Q7KUT2|P12370|Q02748|Q9VKZ8 +GO:0042180,0.868852459016394,1,0.0478299633114229,0.287894101970138,0.705545795043903,13,Q9VPE2|Q9W3W4|Q9VY05|Q9VCW2|Q9VMQ5 +GO:0042221,0.978783592644979,1,0.0304894126298511,0.184712688974667,0.709888360217055,112,Q9VLC5|A1Z803|P46415|A0A0B7P9G0|O62619|Q5U117|P17336|Q9VSY6|Q9VXK7|Q9W4P5|Q9W414|P05031|Q9VW73|P12370|Q9VP57|A1ZA22|Q9VBT2|O62602|Q7K519|O61443|Q9VKZ8|Q7KJ08 +GO:0042254,0.258536585365854,0.68160280883556,0.105125131597001,0.387671598559659,1.14111663259967,25,Q9VNB9|P29327|Q7KVQ0|Q9VBU9|Q9GYU8|P55841|Q9VND8|P56538|Q9W1V3 +GO:0042303,0.0118039794013655,0.212667264080604,0.380730400722792,0.650259620753712,1.67569043181893,15,P48596|A8JTM7|Q9VW34|Q9VSN9|Q9VR79|P05031|Q9VDC6|O62602|O61443 +GO:0042330,0.410745233968804,0.790203233318891,0.0819778796501272,0.407991195185586,1.05137535873198,15,Q9VM10|P06002|P05031|Q9VND8|P16620 +GO:0042335,0.607954545454545,0.938236326264601,0.0875697115548511,-0.236105949520837,-0.90854384194549,53,Q9I7Q5|Q9W369|A1Z8H6|A1Z8Y3|Q9VSY0|Q9VZG1|Q9VSN3|Q9VV46|Q9VZF9|Q8IPD8|Q7K5J8 +GO:0042440,0.818897637795276,0.999229021262782,0.0438879842863647,0.238717205439428,0.774854129562165,38,Q9VM10|P48596|Q00174|Q9VDC6|P15425|Q95RS6|Q9VCW2|P48148|Q9NHA8|Q0E8C8|Q9VSL3|Q9V3Z2|A1Z7S3 +GO:0042441,0.48816029143898,0.834787998380895,0.0755015292281669,0.405411191933923,0.972691484759345,12,Q9VM10|P15425|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0042445,0.667405764966741,0.953614292486963,0.0696133438850965,-0.336144688418637,-0.846587088094125,11,Q9VFN7 +GO:0042461,0.118530884808013,0.489353662717877,0.165656695205483,0.477152956023542,1.34076326354831,21,P21187|P06002|Q9VPX6|Q9U4G1 +GO:0042462,0.108996539792388,0.46863563167911,0.176694268938498,0.504085410847266,1.35462312018725,18,P21187|P06002|Q9VPX6|Q9U4G1 +GO:0042592,0.643895348837209,0.941004330273963,0.0512184348540341,0.245409297871304,0.896465478229835,76,Q7JYW9|Q9VZU7|A0A0B7P9G0|Q9VBC7|P12080|Q9VPX6|O62619|Q5U117|P17336|Q8IQ70|Q9W4P5|O18332|Q9VAY3|Q9VW73|Q9VWP4 +GO:0042594,0.223706176961603,0.638697345817909,0.116234148779716,0.427096201856405,1.20010761794762,21,O97125|Q7JVK6|P16378|Q7K519|O61443|Q9VND8|Q7K3D4|P08646|P40417|Q9I7X6 +GO:0042692,0.414023372287145,0.790335313377593,0.0795564677235957,0.363009807713258,1.02002975847782,21,Q7JYX5|Q9VU68|P32392|P12080|O76742|O18333 +GO:0042742,0.880222841225627,1,0.0672065093710464,-0.212540412899988,-0.784142209828617,45,Q9V521|Q9VCE1|Q9V8F5|Q95RA9|Q9W4C2|Q9VSL4|Q9VIX1|Q9VTJ4|Q9VVK7|Q7K2W6|Q9VER6|P08985|Q9V773|Q9W2D6|A1ZAL1|Q9VXE8 +GO:0042752,0.122710622710623,0.495368702335915,0.170932335370056,0.58340244466699,1.34805615324806,10,Q9VW68|Q94901|Q7JVK6|P12370|P48148|P25455 +GO:0042773,0.0627867027635833,0.366612762462139,0.287805130535564,-0.366898698543059,-1.4118388539366,53,Q9VJZ4|Q8SYJ2|Q9VA37|Q9VWI0|Q6IHY5|Q500Y7|Q9VTU2|Q9W1N3|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9VZU4|Q9VQR2|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0042775,0.0627867027635833,0.366612762462139,0.287805130535564,-0.366898698543059,-1.4118388539366,53,Q9VJZ4|Q8SYJ2|Q9VA37|Q9VWI0|Q6IHY5|Q500Y7|Q9VTU2|Q9W1N3|Q9VXZ0|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9VZU4|Q9VQR2|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0042981,0.671118530884808,0.953614292486963,0.0557104226766671,0.304764062786426,0.856363675998287,21,Q9VZU7|P12370|P40797|P55841|Q7K3D4|P08646|P42207 +GO:0043038,0.200692041522491,0.616836643406692,0.126253987849115,0.470068837563479,1.23014717617917,16,Q9W3J5|Q9VXN4|Q7K0E6|Q9VDC6|P28668|Q0KI98|Q9VCA5 +GO:0043039,0.296360485268631,0.729787694974004,0.100633389423036,0.443508434499519,1.14290172171604,15,Q9W3J5|Q9VXN4|Q7K0E6|P28668|Q0KI98|Q9VCA5 +GO:0043062,0.587521663778163,0.922980604181006,0.0637845390312975,0.35762351307056,0.921580058056203,15,Q00174|Q9VR79|A1Z877|P11046|O15971 +GO:0043066,0.706739526411658,0.953614292486963,0.0573667426768556,0.338115856119457,0.828624896759771,13,Q9VZU7 +GO:0043067,0.460063897763578,0.81650980053536,0.0718276293603809,0.325339537645307,0.991485729950904,28,Q9VZU7|P06002|P12370|O62602|P40797|P55841|Q7K3D4|P08646|P42207 +GO:0043069,0.366782006920415,0.770320419651618,0.0880945010398517,0.409964263531754,1.07285644317968,16,Q9VZU7|P06002 +GO:0043161,0.000319530891834248,0.0187381293455316,0.49849310876659,0.577488818867271,1.91275996926634,41,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|O18413|Q9XYZ5|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q02748|Q9VKZ8|Q9V3Z4|Q9V3G7|Q9VNA5|Q7KMP8|Q95083 +GO:0043207,0.43728813559322,0.79820806939451,0.118815039412263,-0.233041706689476,-0.988833811903747,104,Q8SXD5|Q9V521|A1ZBU5|Q8IN43|Q9VWV6|Q8IN44|Q9VCE1|Q9VL01|Q9VI09|Q9VCH5|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q95RA9|Q9W4C2|Q9VSL4|Q9VIX1|Q9VTJ4|Q960M4|Q9VAI9|A0A126GUP6|Q9VVK7|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0043254,0.421138211382114,0.796986168863365,0.077274697304471,0.353502966855169,1.02258614947163,23,Q9VZU7|Q9W2N0|Q9VU68|Q9W414|P12370|O61443|Q9NBD7 +GO:0043266,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0043268,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0043269,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0043270,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0043297,0.23956442831216,0.658198474024396,0.117249716749792,0.502989137726257,1.19676976758509,11,Q9VN14|Q9VLT3|P16378 +GO:0043324,0.48816029143898,0.834787998380895,0.0755015292281669,0.405411191933923,0.972691484759345,12,Q9VM10|P15425|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0043408,0.683391003460208,0.953614292486963,0.0565299525056311,0.31796993551563,0.854477072546005,18,Q9VZU7|Q9V393|Q9VW73|Q7KJ08|Q9VB05 +GO:0043410,0.778508771929825,0.98564413926848,0.0615706755421678,-0.317993301390508,-0.775152846258648,10,Q24276 +GO:0043412,0.622093023255814,0.938236326264601,0.052805004567129,0.24602795179438,0.918714325577587,91,Q9VZU7|Q9VKD3|P46415|Q9XYZ5|Q95R98|P22979|Q7KLW9|Q9VGW7|Q9VEV7|Q9VMD3|Q24319|Q9V393|Q7KVQ0|P12370|Q9VYY3|P15425|O62602|O61443|P48148|Q9VKZ8|Q7KJ08|Q9VVA7 +GO:0043434,0.309050772626932,0.737082351180454,0.11331290842208,-0.417596375700465,-1.12071175118201,13,Q24276|Q8IPW2 +GO:0043436,0.00788833250831817,0.19904222242179,0.380730400722792,0.386411445614567,1.48064760140529,110,Q7JYW9|Q94523|Q9W1H8|Q9VUY9|P54385|Q9VXZ8|Q9VNW6|Q7JWF1|Q9VAC1|Q7K5K3|Q9VZI8|Q9VW68|Q9VHB8|O62619|Q5U117|Q7JXZ2|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VCK6|Q9VSY6|Q9VHD3|P05031|Q9VSA3|Q9VDC6|P07486|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0043455,0.953436807095344,1,0.0525898950623616,-0.230018821965107,-0.579306981200194,11,Q7KUA4|Q9VLU4|Q9VER6 +GO:0043473,0.0747967479674797,0.391887216744508,0.208955027549354,0.495664024934652,1.43381870652643,23,Q9VM10|P48596|A8JTM7|O18333|P05031|Q9VDC6|P15425|O62602|O61443|Q9VCW2 +GO:0043474,0.48816029143898,0.834787998380895,0.0755015292281669,0.405411191933923,0.972691484759345,12,Q9VM10|P15425|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0043484,0.918260869565217,1,0.0431901998334182,0.246270941984447,0.624801448668883,14,Q7KLW9|Q02748|Q27268|A0A0B4KGY6 +GO:0043487,0.32486388384755,0.742438342435816,0.0978773277424561,0.470225540313835,1.11881483790656,11,Q9VNH5|Q9VJ86|P23128|Q9VZ49|Q9VD14|Q9VKK1 +GO:0043488,0.32486388384755,0.742438342435816,0.0978773277424561,0.470225540313835,1.11881483790656,11,Q9VNH5|Q9VJ86|P23128|Q9VZ49|Q9VD14|Q9VKK1 +GO:0043603,0.888717156105101,1,0.0392758570896778,0.222181647862514,0.739442024756624,44,Q9VXZ8|Q9VBC7|Q7K5K3|Q7JXZ2|Q9VHD3|Q9VSL5|Q7K8X7|Q95TK5 +GO:0043604,0.15018315018315,0.54352324458546,0.153158808683073,0.567568723932722,1.31146949705599,10,Q9VXZ8|Q7K5K3|Q7JXZ2 +GO:0043632,0.0277740152632615,0.294165645530243,0.352487857583619,0.435144713064005,1.5014375542663,55,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|Q9VBP9|O18413|Q9XYZ5|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8|Q95083 +GO:0043648,0.063752276867031,0.366612762462139,0.241339976815091,0.599780367651875,1.46988949565407,13,Q94523|P54385|Q9VW68|Q9VNX4 +GO:0043687,0.613782051282051,0.938236326264601,0.0579754757571486,0.295649118427612,0.893090372652226,27,Q9VZU7|Q9XYZ5|Q7KLW9|Q9V393|Q9VYY3 +GO:0043933,0.151162790697674,0.54352324458546,0.227987202850442,-0.256649781255849,-1.14093112432443,143,Q9V784|Q9I7K0|X2JAU8|Q9VJZ4|Q9VH95|Q9VFS8|Q9W1I8|Q9VWI0|Q9VCH5|Q6IHY5|Q27272|Q9I7K6|Q9VTU2|Q7JXC4|Q9VI75|Q9VXZ0|P36975|Q9VH76|P17210|Q7PL91|Q9VXK6|Q9VQD7|A1Z9J3|Q9W3N7|Q03427|Q9W3X7|Q9U6R9|P41375|Q9VCC0|Q9W445|Q23983|Q9VPC1|Q9VQR2|Q9V4S8|Q9VF27|Q9VNI4|Q6IGM9|Q7K1H0|Q9W402|B7Z107|M9NEW0|Q7JZK1|Q9VD29|Q9Y162|Q9VPC2|Q6IDF5 +GO:0044085,0.456989247311828,0.81496547898496,0.150169802128406,-0.204346013145637,-0.984464948113299,260,A8DYP0|Q9VPN5|Q9V784|P18432|Q9VQ91|P83967|Q9I7K0|X2JAU8|Q9VJZ4|Q9VH95|Q9VFS8|Q9VCE1|Q9W1I8|Q9VFS4|Q9VWI0|Q9VCH5|Q9VEN3|A1Z6P3|Q6IHY5|Q27272|Q9I7K6|Q9VTU2|M9NFC0|Q7JXC4|Q7KLE5|Q9VI75|Q9VXZ0|P36975|Q9VH76|Q7K3Z3|P17210|Q7PL91|Q9VXK6|Q9VQD7|M9PGG8|P35220|A1Z9J3|Q9W3N7|Q03427|Q9VF70|A0A0B4KHJ9|Q9W3X7|Q9W385|Q9U6R9|P41375|Q7KSE4|Q9VCC0|Q9W445|Q23983|Q9VPC1|Q9VQR2|Q9VJI9|Q9V4S8|Q9VF27|Q9VNI4|Q6IGM9|Q9VM69|Q9VD64|Q7K1H0|Q9W402|B7Z107|M9NEW0|O46098|Q7JZK1|Q9VD29|Q9VIE7|Q9VPC2|Q6IDF5 +GO:0044087,0.0239392468136148,0.277413624840124,0.352487857583619,0.436320399876719,1.498907966367,50,Q9VZU7|Q9W2N0|Q9VU68|Q9W2E7|P32392|Q00174|P12080|P45888|M9PF16|Q9W414|P16378|P12370|O61491|O61443|P48148|Q9NBD7 +GO:0044089,0.55609756097561,0.899435299771717,0.0633597010643758,0.314950563651094,0.911064727470425,23,P32392|P45888|Q9W414|P12370|O61491|O61443|Q9NBD7|Q9VND8 +GO:0044093,0.647058823529412,0.942829794639749,0.0741758965588009,-0.315484051972135,-0.873218154915486,15,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:0044248,0.00738638104677379,0.19904222242179,0.407017918923954,0.482081229141585,1.654988154124,53,Q9W1H8|P54385|Q7JWF1|Q9VZI8|Q9VW68|Q9VHB8|Q5U117|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VCK6|Q9VHD3|Q9VSA3|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0044272,0.0745233968804159,0.391887216744508,0.216542836735348,0.555946287024157,1.43264912050334,15,Q9VXZ8|Q7K5K3|Q7JXZ2|Q9VRP4|Q9VJ31 +GO:0044281,5.15665226778142e-05,0.00634912810470588,0.557332238758646,0.395871433851316,1.6346270256724,201,Q9VC18|Q7JYW9|Q9V3N7|Q9VAJ9|Q9VA09|Q7K569|Q9VTZ4|Q9VN13|Q94523|Q9W1H8|Q9VUY9|P54385|Q9VF86|Q9VXZ8|Q01637|P46415|O01666|Q9VNW6|P35381|Q9VPE2|Q9V396|P48596|Q7JWF1|Q9VAC1|Q7K5K3|P32748|Q9VZI8|Q9VW68|Q9VHB8|O62619|Q5U117|Q9W3W4|Q7JXZ2|Q9VNX4|A1ZBJ2|Q9VDT1|Q9VVW3|Q7K2E1|Q7K511|Q8MLS2|Q9VCK6|Q9VSY6|Q9VVL5|Q9VHD3|P05031|Q9VZJ8|Q9VH77|Q95TK5|Q9VSA3|Q9VDC6|P07486|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|Q9VRP4|Q9VCW2|O96299|O97477|Q9W5W8|Q9VJ31 +GO:0044282,0.000469868662946015,0.0243589806843066,0.49849310876659,0.484372197239111,1.73514165649467,70,Q7JYW9|Q9W1H8|Q9VUY9|P54385|P46415|Q7JWF1|Q9VZI8|Q9VW68|Q9VHB8|O62619|Q5U117|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VCK6|Q9VHD3|Q9VH77|Q9VSA3|P07486|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|O96299|Q9W5W8 +GO:0044283,0.764079147640791,0.978696957641326,0.0454967810085007,0.239401033197438,0.833859943992554,58,Q9VNW6|Q9VPE2|P48596|O62619|Q9W3W4|Q7JXZ2|Q9VCK6|Q9VSY6|Q9VVL5|P07486|Q9VAN0|Q9VM58|O96299|O97477|Q9VJ31 +GO:0044403,0.160291438979964,0.552052683200224,0.147331213699377,0.532672800259703,1.27802662404046,12,Q24253|Q9V3I2|O76742|O18333 +GO:0044409,0.160291438979964,0.552052683200224,0.147331213699377,0.532672800259703,1.27802662404046,12,Q24253|Q9V3I2|O76742|O18333 +GO:0044419,0.945682451253482,1,0.0314209215415833,0.18935050552555,0.731503666289878,115,Q24253|P45437|Q7K485|Q9VBP9|Q9V3I2|Q00174|Q9VLY7|Q9XYZ5|Q9VT23|Q7JWX3|O76742|O18333|Q9VZI3|Q9VLT3|Q9VSL5|O18332 +GO:0044770,0.927404718693285,1,0.0446854397644147,0.257806517744379,0.613403000545068,11,Q9W2E7 +GO:0045010,0.15018315018315,0.54352324458546,0.153158808683073,0.56585558579488,1.30751098363324,10,Q9VU68|P32392|P45888 +GO:0045017,0.323725055432373,0.742438342435816,0.110564716336619,-0.437629658807487,-1.10217900588107,11,Q9VAG9|Q9VCE0|Q7K1C5 +GO:0045047,0.395644283121597,0.786653249636622,0.0865399737444125,0.449986034831523,1.07065867218577,11,Q9V3D9|Q9VSS2|Q9VSN9 +GO:0045055,0.0401588962415812,0.303471176228947,0.321775918075361,-0.596495606049051,-1.60082719613235,13,Q8MSI2|Q9W1I8|P36975|Q9VH76|Q9U6R9|Q23983 +GO:0045087,0.978947368421053,1,0.0334561741060508,0.184142850366953,0.649058551915695,60,P45437|Q00174|Q9VLY7|Q9VT23|Q7JWX3|Q9VSL5|O18332|Q9VFC2|Q95RS6|O61443|P48148|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50 +GO:0045088,0.849683544303798,1,0.0424170054438747,0.243674833020098,0.756706047308501,31,P45437|Q7JWX3|Q9VSL5|Q9VFC2|O61443|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50 +GO:0045089,0.825259515570934,0.999853164621612,0.0478299633114229,0.276048248515724,0.741821389153233,18,P45437|Q9NHA8|Q9V3Z2|Q9VN50 +GO:0045165,0.865040650406504,1,0.042845050912155,0.253349433731878,0.732869724448001,23,Q9VTZ4|Q9VBC7 +GO:0045184,0.688477951635846,0.953614292486963,0.0471642455670861,0.23358803197483,0.895060338366632,110,Q9VLB7|Q24253|P45437|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q8IRD0|Q9W552|Q9VSS2|O18333|Q9VSN9|O18332|Q9W4K0|Q7K3W2|Q9VFF0|Q8SXY6|Q9GYU8|P48148|Q9VVA7|Q9Y171|Q9VH25|Q9W1X4|Q9VL69|O15971|Q9VYT6|Q9VKC7|Q9VL10|Q9W3N6|A1Z7S3|Q95RF6 +GO:0045216,0.328719723183391,0.744342361691127,0.0943563635421779,0.423523722773056,1.10834088537896,16,Q9VN14|Q9VLT3|P16378|M9NDE3|P48148|Q24372 +GO:0045229,0.264755480607083,0.684472830440883,0.105920292736253,0.414609793062522,1.15072058540175,20,Q00174|Q9XYZ5|Q9VR79|A1Z877|Q9VVG0|P11046|O15971|P40417|O97102 +GO:0045333,0.00989446149058799,0.210918994418235,0.380730400722792,-0.378877856240051,-1.5175757797302,69,Q9VJZ4|Q24439|Q8SYJ2|Q9VGZ3|Q9VA37|Q9VWH4|Q9VWI0|Q6IHY5|Q500Y7|Q9VXN2|Q9VTU2|Q9W1N3|Q9VXZ0|Q9W401|Q7PL91|Q9VQD7|Q9W3N7|Q9VMB9|Q9W3X7|Q9VX36|Q9W385|Q9VZU4|Q9VQR2|Q9VEB1|Q9VF27|Q9VV75|Q9W402|B7Z107|Q7JZK1|Q94522|Q9VRL0|Q6IDF5|Q9W2E8|Q9VVH5|A8Y535|Q9VMS1|Q9VMU0|P21914 +GO:0045451,1,1,0.0501934252649434,-0.137764350453172,-0.369720944507362,13,P17210|Q9VLS5|Q9VHC7|O18335|A0A6H2EG56|Q7KM15|Q7K2D2|Q9W1H5|Q9VKK1|P49028|Q9V535|Q9VN21|P12370 +GO:0045471,0.430795847750865,0.79820806939451,0.0793434960134973,0.378784608457716,1.01790366701044,18,Q9VLC5|Q9VSY6|P12370 +GO:0045475,0.787139689578714,0.986428236940246,0.0615706755421678,-0.300450691360249,-0.756691046082396,11,Q9VH98|Q9VWW2|P08182 +GO:0045595,0.595238095238095,0.930650037792895,0.0847985102819124,-0.27643808254951,-0.889451287568858,27,Q24276|Q7K204|Q9W1F8|A1Z9J3|A0A0B4KHJ9|Q7KSE4|Q9VVA6|Q9VD29|Q9VY91|M9PHA0 +GO:0045597,0.122641509433962,0.495368702335915,0.195789002148949,-0.461689096184665,-1.35275862658291,18,Q24276|Q9W1F8|A1Z9J3|A0A0B4KHJ9|Q7KSE4|Q9VVA6|Q9VD29|Q9VY91 +GO:0045727,0.0580762250453721,0.36245216367383,0.252961123069611,0.623623567258489,1.4837971154254,11,P21187|Q94901|O77477|Q7KN75|Q9VUN9|Q9VND8 +GO:0045732,0.0150694563480771,0.226451508042196,0.380730400722792,0.69892513498306,1.66296329009053,11,Q9VZU7|Q9XYZ5|Q7KUT2|P12370|Q02748 +GO:0045807,0.730684326710817,0.971287532807226,0.0649407684612899,-0.305895289520879,-0.792057373998033,12,Q9W266|Q9VI75|P13677|Q9V438|Q7K0X9 +GO:0045814,0.0870588235294118,0.428387144331417,0.234392647294686,-0.512330564845008,-1.41806328321243,15,Q9VQ91|Q86BS3|Q03427|Q24478|Q9VIE7|P05205|P08985|Q9W396|P08928|Q7KNM2 +GO:0045824,0.739514348785872,0.974117713542991,0.0643583367917361,-0.29639931144999,-0.795452764232149,13,Q9VCE1|Q7KUA4|Q9VSL4|Q960M4|Q9VLU4 +GO:0045861,0.117967332123412,0.489353662717877,0.173747838999571,0.567347727656102,1.34989914739759,11,Q9U9Q4|Q7JWX3|Q9VFC2|Q9VKZ8|Q0E8C8|Q7JV69 +GO:0045862,0.409836065573771,0.790203233318891,0.0847985102819124,0.423416555780403,1.03767242343097,13,Q9VZU7|P12370|Q02748 +GO:0045892,0.7439293598234,0.974117713542991,0.0640703750499722,-0.30361432091844,-0.78615124185638,12,Q9VLR5|Q8IRH5|Q7KSE4|Q9VY91|P05205|Q9VJQ5|Q7K159 +GO:0045893,1,1,0.0373806494758473,0.159514116400581,0.448222450657343,21,Q7K012|Q9W414|Q9VP57|Q27268|Q9VHI1|Q24090 +GO:0045926,0.686956521739131,0.953614292486963,0.0565299525056311,0.333028714840271,0.844910170090952,14,Q9W2E7|Q00174|P16378 +GO:0045927,0.274410774410774,0.696196398748283,0.103576326612592,0.412368738210803,1.1334093369546,19,P32392|P45888|Q9VSR5|O62602|O61443|P40797|Q9VND8 +GO:0045934,0.950819672131147,1,0.0437125833579551,0.246213641642623,0.603398952443347,13,Q9VGW7|P12370|Q9VP57 +GO:0045935,0.362068965517241,0.765921213289634,0.0833634065110386,0.340815922214086,1.07344111661389,33,Q9VZU7|P54622|Q7K012|Q9W414|Q9VNH5|Q9VP57 +GO:0045944,0.739514348785872,0.974117713542991,0.0643583367917361,-0.295155719542261,-0.792115311740303,13,Q9VCH5|Q9VLR5|Q8IRH5 +GO:0046031,0.344322344322344,0.7557726373898,0.0949751525905595,0.474996930570114,1.09756573850918,10,Q7JYW9|Q9VUY9|O62619 +GO:0046034,0.323777403035413,0.742438342435816,0.0937465422491719,0.396970190220215,1.10176309706309,20,Q7JYW9|Q9VUY9|O01666|P35381|O62619 +GO:0046148,0.190311418685121,0.595100785412204,0.130105630751129,0.456108709594407,1.2256958643117,18,Q9VM10|P48596|Q9VDC6|P15425|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0046165,0.8719646799117,1,0.0565299525056311,-0.268752348189964,-0.695882828063682,12,Q9VTY2|Q9VA37 +GO:0046173,0.858439201451906,1,0.0482149710025565,0.291666675053984,0.693966992000218,11,P48596|Q9VVL5|O97477|Q9VL10 +GO:0046364,0.233995584988962,0.651875106058035,0.132846300606183,-0.476461541426341,-1.23370607603765,12,P29613|Q9VTY2|Q9VAN7|M9PF61|Q9VEB1 +GO:0046365,0.262295081967213,0.68160280883556,0.11146266692298,0.473042724301639,1.15929191575364,13,Q7JYW9|Q9VUY9|O62619|Q9VH77|P07486 +GO:0046390,0.0717781402936378,0.386346820706193,0.213927855492356,0.501618726300305,1.43495740986124,22,Q9VC18|Q9VA09|Q01637|O01666|P35381|P32748 +GO:0046394,0.468292682926829,0.822225120646928,0.0718276293603809,0.338348372162517,0.995933043643523,25,Q9VNW6|O62619|Q7JXZ2|Q9VCK6|Q9VSY6 +GO:0046395,0.00190094126499243,0.0685007628375771,0.45505986738723,0.505370035340964,1.72694427348075,49,Q9W1H8|P54385|Q7JWF1|Q9VZI8|Q9VW68|Q9VHB8|Q5U117|Q9VNX4|A1ZBJ2|Q9VDT1|Q7K2E1|Q9VCK6|Q9VHD3|Q9VSA3|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0046434,0.177391304347826,0.572518178475262,0.135740943810425,0.501175461824474,1.27150670745801,14,Q7JYW9|Q9VUY9|Q9W2L6|O62619 +GO:0046474,0.300438596491228,0.732504993920445,0.114750719227023,-0.47812555634551,-1.16549746252386,10,Q9VAG9|Q9VCE0|Q7K1C5 +GO:0046486,0.542461005199307,0.888229710488847,0.0676760401641789,0.369438455558671,0.952026645000769,15,Q9W2L6|Q9VXZ8|B7Z0Q1|P25455|P54352 +GO:0046496,0.0622895622895623,0.366612762462139,0.234392647294686,0.540030737353156,1.4842926324004,19,Q7JYW9|Q9VAJ9|Q7K569|Q9VUY9|P54385|O62619|Q8MLS2 +GO:0046530,0.0469483568075117,0.33269159320431,0.261663521711573,0.468147322612771,1.47135273816387,32,Q9VZU7|P21187|Q9VBC7|P06002|Q9VPX6|Q9U4G1 +GO:0046718,0.160291438979964,0.552052683200224,0.147331213699377,0.532672800259703,1.27802662404046,12,Q24253|Q9V3I2|O76742|O18333 +GO:0046903,0.261838440111421,0.68160280883556,0.142056643575821,-0.298834577809059,-1.10251411964021,45,Q8MSI2|Q9VPN5|P91927|Q9VCE1|Q9W1I8|Q9VH98|Q7KLE5|P36975|Q9VH76|Q9U6R9|Q9VVE2 +GO:0046907,0.640816326530612,0.939291788143829,0.0484087618816951,0.234305195136392,0.922150216206127,132,Q7JYX5|Q9V3A8|Q24253|P45437|Q9W2E7|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q9NJH0|Q9U4G1|O76902|Q9W552|O76742|O18333|Q9W3M8|Q9W4P5|O18332|Q9VJQ6|Q9W4K0|Q9VW73|P12370 +GO:0048024,0.56648451730419,0.899979434749398,0.0679922591544058,0.374837153427816,0.918618254481136,13,Q7KLW9|Q02748|Q27268|A0A0B4KGY6 +GO:0048066,0.106035889070147,0.46627388720578,0.173747838999571,0.475176737890475,1.3593160408079,22,Q9VM10|P48596|A8JTM7|P05031|Q9VDC6|P15425|O62602|O61443|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0048069,0.223570190641248,0.638697345817909,0.118815039412263,0.472941160240704,1.21874856093649,15,Q9VM10|P48596|P15425|Q9VCW2|Q9VSL3|A1Z7S3 +GO:0048149,0.909878682842288,1,0.0434506826723125,0.246826705501585,0.636061559915083,15,Q9VSY6|O44386|P40417|Q9VCT4|Q9VQF7|P81900|E1JJH5 +GO:0048193,0.859842519685039,1,0.0416556773979467,0.232436868299031,0.754468731872369,38,Q9V3A8|P45437|O18333|Q9W3M8|O18332|Q9W4K0|Q95TN1 +GO:0048232,0.174121405750799,0.571546052631579,0.130777137971974,0.406799848801105,1.23973940564275,28,P21187|Q9W2E7|Q9W0S7|O18332|Q9VJQ6|Q9VAY3 +GO:0048284,0.81342062193126,0.999229021262782,0.0459538081039063,0.261736896843302,0.763388704465018,24,Q7JYX5|Q9V3I2|O76742|O18333 +GO:0048285,0.455128205128205,0.813613942016846,0.0725351864394589,0.332215801792901,1.00355020776707,27,P21187|Q9VQE0|Q9W2E7 +GO:0048468,0.627249357326478,0.938236326264601,0.046788296531803,0.225885747032673,0.927188293267393,176,P21187|Q7JYX5|Q9VQE0|Q9VU68|Q9VED8|Q7K485|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q94901|Q9U4G1|M9PF16|O76742|Q7K012|O18333|Q9W260|Q9W414|O18332|P16378|P12370|O62602|Q8SXY6|Q7KY04|Q09101|Q02748|P48148|Q9NBD7|Q7KJ08|Q9VVA7|Q9VB05 +GO:0048469,0.89010989010989,1,0.065981614400873,-0.218449596153228,-0.738389024203496,33,Q9VQ91|Q9VCE1|P08182|P17210|Q9XTL2|Q8T0Q4|P92177|Q9Y162|Q9VLS5|Q9VHC7|Q960X8 +GO:0048477,0.0802919708029197,0.407667996086989,0.190023305279108,0.364690896199306,1.32982649274375,75,P21187|Q9VU68|Q9VED8|Q7K485|Q9V3I2|P12080|Q9VPX6|Q94901|O76742|Q9W414|P12370|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9NBD7|Q9VB05 +GO:0048511,0.328282828282828,0.744342361691127,0.0928481214159878,0.396156687903686,1.08884997178791,19,Q9VW68|Q94901|Q7JVK6|P12370|Q9VDC6|O61443|P48148|P25455 +GO:0048512,0.363321799307959,0.765921213289634,0.0886261133285098,0.410974333309114,1.07549974642608,16,Q9VW68|Q94901|Q7JVK6|P12370|Q9VDC6|P48148 +GO:0048513,0.0589041095890411,0.364909106573619,0.216542836735348,0.333826871174928,1.31488425611196,135,Q9VZU7|P21187|Q9VTZ4|Q24253|Q0E8E8|Q9VQE0|Q9VU68|Q9VBC7|P32392|Q9VHC3|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q5U117|Q9XYZ5|Q9U4G1|P17336|O76742|Q9VZI3|P05031|Q9W4K0|P16378|P12370|Q9VF24|Q9VFC2 +GO:0048518,0.44375,0.800325005078204,0.0615706755421678,0.240896124741793,1.00831031747709,228,Q9VZU7|P21187|Q9VTZ4|Q24253|Q9VQE0|P45437|Q9U9Q4|Q9W2E7|P32392|Q9VHC3|P54622|Q94901|Q9XYZ5|P22979|O77477|P45888|M9PF16|Q7KUT2|Q7K012|A1Z6L9|Q9W414|Q9V393|O18332|Q7KTG2|Q9VW73|Q9VSR5|Q9VNH5|P12370|Q9VP57|Q9VF24|O61491|Q7KN75|O62602|Q9VJ86|Q7K519|O61443|Q02748|P48148|Q9NBD7|Q7KJ08|Q27268|Q9VUN9|Q9VB05|P40797|Q9VW57|P25455|Q9W1X4|Q9NHA8|Q9VND8|Q9V3Z2|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|Q9VYF0|Q9W0C1|Q9VHI1|A0A0B4KGY6|P42207|Q24090|Q9VCJ8|Q9GU68|P40417|Q9NHE5|O97102|Q9VYV3 +GO:0048519,0.262953367875648,0.68160280883556,0.0905428948469474,0.269485820644384,1.10138281133962,171,Q9VZU7|Q9W2N0|Q9VU68|Q9U9Q4|Q9W2E7|Q9VNE9|Q9VBP9|P06002|Q00174|Q9W0S7|Q94901|Q5U117|Q9XYZ5|Q7JWX3|Q9VGW7|M9PF16|Q9VDH3|Q7JVK6|Q9V3L6|Q9V393|Q9VR79|Q9VSL5|P16378|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q9VDC6|Q7KN75|O62602|Q9VJ86|Q7K519|P29829|O61443|Q9GYU8|Q02748|P48148|Q9VKZ8|Q7KJ08|Q9VVA7|Q27268|P19107|P25455|Q9W1X4|P55841|Q0E8C8|Q9VND8|Q7K3D4|Q7JV69 +GO:0048522,0.482412060301508,0.834787998380895,0.0578529757032509,0.240248597152493,1.0009782138711,215,Q9VZU7|P21187|Q9VTZ4|Q24253|Q9VQE0|Q9U9Q4|Q9W2E7|P32392|Q9VHC3|P54622|Q94901|Q9XYZ5|P22979|O77477|P45888|M9PF16|Q7KUT2|Q7K012|Q9W414|Q9V393|O18332|Q9VW73|Q9VSR5|Q9VNH5|P12370|Q9VP57|Q9VF24|O61491|Q7KN75|O62602|Q9VJ86|Q7K519|O61443|Q02748|P48148|Q9NBD7|Q7KJ08|Q27268|Q9VUN9|Q9VB05|P40797|Q9VW57|P25455|Q9W1X4|Q9NHA8|Q9VND8|Q9V3Z2|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|Q9VYF0|Q9W0C1|Q9VHI1|A0A0B4KGY6|P42207|Q24090|Q9VCJ8|Q9GU68|P40417|Q9NHE5|O97102|Q9VYV3 +GO:0048523,0.31413612565445,0.742438342435816,0.0813027345384498,0.265119450329153,1.0713868050479,161,Q9VZU7|Q9W2N0|Q9VU68|Q9U9Q4|Q9W2E7|Q9VNE9|Q9VBP9|P06002|Q00174|Q9W0S7|Q5U117|Q9XYZ5|Q7JWX3|Q9VGW7|M9PF16|Q7JVK6|Q9V3L6|Q9V393|Q9VR79|P16378|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q9VDC6|Q7KN75|O62602|Q9VJ86|Q7K519|P29829|O61443|Q9GYU8|Q02748|P48148|Q9VKZ8|Q7KJ08|Q27268|P19107|P25455|Q9W1X4|P55841|Q0E8C8|Q9VND8|Q7K3D4|Q7JV69 +GO:0048534,0.688644688644689,0.953614292486963,0.0588438169595807,0.360425792303217,0.832828541507054,10,Q9VQE0 +GO:0048542,0.688644688644689,0.953614292486963,0.0588438169595807,0.360425792303217,0.832828541507054,10,Q9VQE0 +GO:0048565,0.777777777777778,0.98564413926848,0.0529129848430584,0.326533297021327,0.783442006097371,12,P12080|P48148|Q7KJ08|O44386 +GO:0048583,0.687158469945355,0.953614292486963,0.0454059226590179,0.230088684249046,0.906982760504008,137,Q9VZU7|Q9VTZ4|P45437|Q9U9Q4|Q9W2E7|Q9VBP9|Q5U117|Q9XYZ5|Q9W552|Q7JWX3|A1Z6L9|Q9V393|Q9VSL5|Q9VW73|P12370|Q9VP57|Q9VF24|Q9VFC2|O62602|Q7K519|P29829|O61443|Q02748|P48148|Q9VKZ8|Q7KJ08|Q9VB05|P19107|P25455|Q9NHA8|Q0E8C8|Q9VND8|Q9V3Z2|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|P35992|Q9VHI1|Q9W2V2|Q9VCJ8|P40417|O97102|Q9I7X6 +GO:0048584,0.213333333333333,0.629569798068481,0.11146266692298,0.314710890555954,1.14926200162147,78,Q9VZU7|Q9VTZ4|P45437|Q9U9Q4|Q9W2E7|A1Z6L9|Q9VW73|P12370|Q9VP57|Q9VF24|Q7K519|P48148|Q7KJ08|Q9VB05|P25455|Q9NHA8|Q9VND8|Q9V3Z2|Q9VN50|Q9W3N6|A0A0B4LFA6|P08646|Q9VHI1|Q9VCJ8|P40417|O97102 +GO:0048585,0.619909502262444,0.938236326264601,0.0546808488785442,0.256513820074458,0.910606799843016,62,Q9VZU7|Q9VBP9|Q5U117|Q9XYZ5|Q7JWX3|Q9V393|Q9VSL5|P12370|Q9VP57|Q9VFC2|O62602|P29829|O61443|Q02748|P48148|Q9VKZ8|P19107|Q0E8C8|Q9VND8 +GO:0048588,0.301270417422868,0.732719410275369,0.102449405629826,0.478980663787833,1.13964603742813,11,Q9V3I2|Q9U4G1|P12370 +GO:0048589,0.102760736196319,0.462188699330476,0.170932335370056,0.380983482745404,1.28683239350876,47,Q9W2E7|P32392|Q9V3I2|Q00174|Q9U4G1|P45888|M9PF16|P16378|P12370|Q9VFC2|O62602|O61443|P48148|Q9VVA7|P40797|Q9VND8|O15971|O44386|P08646 +GO:0048592,0.0162668778135362,0.226451508042196,0.352487857583619,0.479900138854107,1.54883045921451,37,Q9VZU7|P21187|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0048598,0.44408945686901,0.800325005078204,0.0736212741014394,0.327589414701658,0.9983423235628,28,Q9VTZ4|Q9VQE0|Q9V3I2|Q9VLT3|A1Z877|P48148|Q24372|O44386|P08646 +GO:0048599,0.702302631578947,0.953614292486963,0.0529129848430584,0.280900625752068,0.834119032399394,26,P21187|Q9VPX6|P12370|O62602|Q8SXY6|Q9NBD7 +GO:0048608,0.617486338797814,0.938236326264601,0.0637845390312975,0.362600340126535,0.888629338034519,13,Q9V3I2 +GO:0048609,0.014353127482532,0.226451508042196,0.380730400722792,0.370939446014392,1.43252127032808,116,P21187|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9V3I2|Q9W0S7|P12080|Q9VPX6|Q94901|Q9XYZ5|A0A0B4K692|O76742|Q9VDH3|Q9W414|O18332|Q9VJQ6|Q9VAY3|Q9VN73|P12370|Q9VR25|O62602|Q8SXY6|Q7KY04|Q02748|P48148|Q9VVG0|Q9NBD7|Q9VB05 +GO:0048638,0.180379746835443,0.574809904237254,0.127505315300183,0.395455804557389,1.22804556811636,31,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378|O62602|O61443|Q9VVA7|P40797|Q9VND8|O44386|P08646 +GO:0048639,0.261698440207972,0.68160280883556,0.108394255853397,0.456337364174709,1.17596130902715,15,P32392|P45888|O62602|O61443|P40797|Q9VND8 +GO:0048640,0.699453551912568,0.953614292486963,0.0578529757032509,0.339246201399434,0.831395048540506,13,Q9W2E7|Q00174|P16378|Q9VVA7 +GO:0048646,0.63914373088685,0.938236326264601,0.0538979025357319,0.259328483252379,0.899670117237363,57,Q9VTZ4|Q9VQE0|Q9VU68|P32392|Q9V3I2|P12080|Q9XYZ5 +GO:0048666,0.428779069767442,0.79820806939451,0.0706196247122591,0.271229190980565,1.01282045983507,91,P21187|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|Q9W260|O18332|P12370|Q09101|P48148|Q9NBD7|Q7KJ08|Q9VVA7|P11046|Q9VND8|P16620|Q0KI98|O44386|P08646|P35992 +GO:0048667,0.188821752265861,0.594215418472438,0.120985142145252,0.343534083864785,1.20465289441274,59,Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|O18332|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|Q0KI98|O44386|P08646|P35992|Q24090|O97102 +GO:0048699,0.34850640113798,0.7557726373898,0.0802023444698144,0.273606089754358,1.04840114112137,110,Q9VZU7|P21187|Q9VU68|Q9VBC7|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|Q9W260|O18332|P16378|P12370 +GO:0048707,0.208588957055215,0.622606432422383,0.115240003147781,0.350579820887363,1.18413918308851,47,Q9VU68|Q9VHC3|Q9V3I2|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P14484|P08646|Q9VHI1|P42207|Q24090|P40417|Q9VM50 +GO:0048729,0.529761904761905,0.882936507936508,0.0614364107201271,0.27784274426785,0.954483684233006,50,Q9VTZ4|Q9VU68|Q9V3I2|Q9W4P5|Q9VLT3|P16378|O62602|P48148|Q9VVA7|Q9VW57|Q9VND8|Q24372|O44386|P08646|P35992|P40417|Q9VM50 +GO:0048731,0.165384615384615,0.557889884088514,0.118815039412263,0.282618099609818,1.16100959990239,179,Q9VZU7|P21187|Q9VTZ4|Q24253|Q9VQE0|Q9VU68|Q9W2E7|Q9VBC7|P32392|Q9V3I2|P06002|P48596|Q00174|P12080|Q9VN14|Q9VPX6|Q5U117|Q9U4G1|P17336|P45888|M9PF16|Q7K012|Q24238|Q9W260|Q9VW34|Q9W4P5|Q9VZI3|Q9VR79|Q9VLT3|O18332|P16378|P12370 +GO:0048732,0.678756476683938,0.953614292486963,0.0567672387487446,0.32724242576652,0.866581492450049,17,Q9VQE0|P12080 +GO:0048736,0.053968253968254,0.347442680776014,0.245041785430996,0.450056192184624,1.45251205902559,37,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0048737,0.053968253968254,0.347442680776014,0.245041785430996,0.450056192184624,1.45251205902559,37,Q9VU68|Q9VHC3|P12080|P16378|P12370|Q9VF24|Q9VFC2|O61443|P48148|P40797|Q9VW57|Q9W3N6|P08646|Q9VHI1|P42207|Q24090|P40417 +GO:0048749,0.00963223484485761,0.210918994418235,0.380730400722792,0.507066473052119,1.66187057883178,40,Q9VZU7|P21187|Q24253|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0048754,0.632058287795993,0.938236326264601,0.0626618230932492,0.36809352996482,0.883156285064142,12,Q9W4P5|Q9VVA7|Q9VND8|P08646|P35992|P40417 +GO:0048812,0.403323262839879,0.786653249636622,0.0756946307932749,0.295566735418974,1.03644831775917,59,Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|O18332|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|Q0KI98|O44386|P35992|Q24090|O97102 +GO:0048813,0.944353518821604,1,0.0391155247681459,0.214446900315117,0.625461459131248,24,Q9V3I2|Q7K012|O18332|P48148|P16620|Q0KI98|Q24090|O97102 +GO:0048856,0.951248513674197,1,0.0228693972350018,0.186646214353886,0.809006411924324,340,Q9VZU7|P21187|Q7JYX5|Q9VTZ4|Q24253|Q0E8E8|Q9VQE0|Q9VU68|Q9VED8|Q9W2E7|Q7K485|Q9VBC7|P32392|Q9VHC3|Q9V3I2|P06002|P48596|Q00174|P12080|Q9VN14|Q9VPX6|A8JTM7|Q94901|Q5U117|Q9XYZ5|Q9U4G1|P17336|P45888|M9PF16|O76742|Q7K012|Q24238|O18333|Q9W260|Q9VW34|Q9VSN9|Q9W4P5|Q9VZI3|Q9W414|Q9VR79|P05031|Q9VLT3|O18332|Q9W4K0|P16378|P12370|Q7JZW0|Q9VF24|Q9VFC2|Q9VLB1|Q9VDC6|A1Z877|Q9VY05|O62602|M9NDE3|Q8SXY6|Q7KY04|O61443|Q09101|Q02748|P48148|Q9VVG0|Q9NBD7|Q7KJ08|Q9VVA7|Q9VB05|P40797|Q9VW57|Q9VGP6 +GO:0048858,0.403323262839879,0.786653249636622,0.0756946307932749,0.295566735418974,1.03644831775917,59,Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|O18332|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|Q0KI98|O44386|P35992|Q24090|O97102 +GO:0048869,0.540127388535032,0.888229710488847,0.0532386494755899,0.236337301963695,0.973310960368497,196,Q9VZU7|P21187|Q7JYX5|Q9VTZ4|Q9VQE0|Q9VU68|Q9VED8|Q7K485|Q9VBC7|P32392|Q9V3I2|P06002|Q00174|P12080|Q9VN14|Q9VPX6|Q94901|Q9U4G1|M9PF16|O76742|Q7K012|O18333|Q9W260|Q9W414|O18332|Q9VAY3|P16378|P12370 +GO:0048870,0.05229793977813,0.347442680776014,0.248911114434702,0.462063555467957,1.46035189041243,34,Q9VU68|Q9V3I2|P48596|Q00174|P12080|O76742|O18332|O62602|P48148|Q9NBD7|P11046|Q9VL10|O44386|P08646 +GO:0048871,0.0192040525823418,0.24251271530265,0.352487857583619,-0.528571704070675,-1.5794367452425,20,P10676|P19334|Q7K5M6|Q9W3E2|Q9W266 +GO:0048878,0.548686244204019,0.893315620728857,0.0615706755421678,0.287033193458378,0.955274244228124,44,Q7JYW9|A0A0B7P9G0|Q9VBC7|O62619|Q5U117|Q8IQ70|Q9W4P5|O18332|Q9VAY3|Q9VW73|Q9VWP4 +GO:0048880,0.0107065479400119,0.210918994418235,0.380730400722792,0.488602900617245,1.61835179943612,41,Q9VZU7|P21187|Q24253|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0050657,0.951640759930915,1,0.0412376090540066,0.23336349224356,0.617977583188021,17,Q9W2E7|Q9GYU8|Q27268|Q9W1X4|Q95RF6 +GO:0050658,0.951640759930915,1,0.0412376090540066,0.23336349224356,0.617977583188021,17,Q9W2E7|Q9GYU8|Q27268|Q9W1X4|Q95RF6 +GO:0050684,0.56648451730419,0.899979434749398,0.0679922591544058,0.374837153427816,0.918618254481136,13,Q7KLW9|Q02748|Q27268|A0A0B4KGY6 +GO:0050767,0.238770685579196,0.658198474024396,0.136490437780413,-0.41454418536893,-1.19477122889148,17,Q24276|Q7K204|A1Z9J3|Q7KSE4|Q9VVA6|Q9VD29|M9PHA0|P25171 +GO:0050769,0.271523178807947,0.696196398748283,0.122107920287081,-0.450903447761671,-1.16752827845161,12,Q24276|A1Z9J3|Q7KSE4|Q9VVA6|Q9VD29 +GO:0050776,0.93968253968254,1,0.0379271467108098,0.212180418341604,0.684791414232662,37,P45437|Q7JWX3|Q9VSL5|Q9VFC2|O61443|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50|Q9VCJ8|O97102 +GO:0050777,0.785882352941177,0.986428236940246,0.0645031249656493,-0.278833289073895,-0.771773687741363,15,Q9VCE1|Q7KUA4|Q9VSL4|Q960M4|Q9VLU4 +GO:0050778,0.959083469721768,1,0.0383995813369433,0.204877826305391,0.597552046666608,24,P45437 +GO:0050789,0.297266514806378,0.730193309437113,0.0768736734126542,0.240481938258742,1.06608568346331,482,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|Q9W2N0|O17444|P21187|Q9VW54|Q9VTZ4|Q24253|Q9VQE0|Q9VU68|P45437|Q9U9Q4|Q9W2E7|Q9VNE9|P46415|Q9VIF2|P32392|Q9VBP9|Q9VHC3|Q9VM10|Q9V3I2|P06002|P48596|Q00174|Q9W0S7|P54622|P12080|Q9VPX6|Q9VW68|Q9NJH0|A8JTM7|Q94901|Q5U117|Q9XYZ5|Q9W3W4|P17336|P22979|O77477|Q7KLW9|P45888|Q9W552|Q7JWX3|Q9VGW7|Q9VH66|M9PF16|O76742|Q9VDH3|Q7JVK6|Q7KUT2|Q7K012|O18333|Q9VXK7|Q9VZI3|Q9V3L6|A1Z6L9|Q9W414|Q9V393|Q9VR79|P05031|Q9VSL5|O18332|Q7KTG2|P16378|Q9VCK0|Q9VW73|Q9VSR5|Q9VNH5|P12370|Q9VP57|Q0KIE7|Q9VF24|Q9VFC2|O61491|Q9VDC6|P15425|A1Z877|Q7KN75|O62602|Q9VJ86|Q7K519|Q7KY04|P29829|O61443|Q95RQ8|Q9GYU8|Q02748|P48148|Q9VKZ8|Q9NBD7|Q7KJ08|Q9VVA7|Q27268|Q9VUN9|Q9VB05|P19107|P40797|Q9VW57|Q8WTC1 +GO:0050793,0.508124076809454,0.857912262406977,0.0630790410571939,0.265234485312583,0.965050141606163,77,P21187|Q9VQE0|Q9W2E7|P32392|P06002|Q00174|Q9VPX6|Q94901|P17336|P45888|M9PF16|O18332|P16378|O62602|O61443|P48148|Q7KJ08|Q9VVA7|P40797 +GO:0050794,0.175936435868331,0.571546052631579,0.106729884364606,0.254149578553738,1.12545496813547,442,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|Q9W2N0|P21187|Q9VW54|Q9VTZ4|Q24253|Q9VQE0|Q9VU68|P45437|Q9U9Q4|Q9W2E7|Q9VNE9|P46415|Q9VIF2|P32392|Q9VBP9|Q9VHC3|Q9VM10|Q9V3I2|P06002|P48596|Q00174|Q9W0S7|P54622|P12080|Q9VPX6|Q9VW68|Q9NJH0|A8JTM7|Q94901|Q5U117|Q9XYZ5|Q9W3W4|P17336|P22979|O77477|Q7KLW9|P45888|Q9W552|Q7JWX3|Q9VGW7|Q9VH66|M9PF16|O76742|Q7JVK6|Q7KUT2|Q7K012|O18333|Q9VXK7|Q9VZI3|Q9V3L6|Q9W414|Q9V393|Q9VR79|O18332|P16378|Q9VCK0|Q9VW73|Q9VSR5|Q9VNH5|P12370|Q9VP57|Q0KIE7|Q9VF24|Q9VFC2|O61491|Q9VDC6|P15425|A1Z877|Q7KN75|O62602|Q9VJ86|Q7K519|Q7KY04|P29829|O61443|Q95RQ8|Q9GYU8|Q02748|P48148|Q9VKZ8|Q9NBD7|Q7KJ08|Q27268|Q9VUN9|Q9VB05|P19107|P40797|Q9VW57 +GO:0050795,0.0567765567765568,0.360805860805861,0.257206466468838,0.648625481144888,1.49876569596816,10,Q9VW68|Q9VDH3|Q7JVK6|P12370|P48148|Q7KJ08 +GO:0050801,0.392059553349876,0.786653249636622,0.105520936843198,-0.341043076998738,-1.03116051915687,21,P19334|Q9VAM6|A1Z992|Q9VJZ6|Q9W385|Q9VVT6|Q9VQR9|Q9W425|Q9VMX4|Q9VE75|Q9V6U9 +GO:0050803,0.0106763230234942,0.210918994418235,0.380730400722792,0.537932495000148,1.62497468274729,27,Q9W2E7|P32392|Q9V3I2|Q00174|P45888|M9PF16|O18333|Q9VXK7|O18332|P16378 +GO:0050804,0.614213197969543,0.938236326264601,0.0808589150280032,-0.276153987488194,-0.883377813409852,26,Q9VLP0|Q9VA37|Q7K188|P36975|Q7K1U0|Q9VIH9|Q9VII1|Q95NU8|P61851 +GO:0050807,0.0427631578947368,0.312012670565302,0.282013350011725,0.506747693077713,1.50475953654046,26,Q9W2E7|P32392|Q00174|P45888|M9PF16|O18333|Q9VXK7|O18332|P16378 +GO:0050808,0.121725731895223,0.495368702335915,0.156312403073186,0.387812795268363,1.28932632506339,43,Q9W2E7|P32392|Q00174|P45888|M9PF16|O18333|Q9W260|Q9VXK7|O18332|P16378 +GO:0050821,0.0971302428256071,0.447607591553061,0.213927855492356,-0.540482711522271,-1.39947665702923,12,Q9VHT3|Q24276|Q9I7K6|Q9V4S8|Q9VG51 +GO:0050829,0.622895622895623,0.938236326264601,0.0596037042575973,0.326397213552532,0.897113711872337,19,P45437|Q7K485|Q9VZI3|Q9VSL5 +GO:0050830,0.496674057649667,0.844946367504184,0.0850427463764322,-0.385652149697917,-0.971272614676535,11,Q9V521|Q9V8F5|Q7K2W6|Q9VER6 +GO:0050832,0.524822695035461,0.876187041711744,0.0855356947987884,-0.331567193222745,-0.955620551170631,17,Q9V521|A1ZBU5 +GO:0050877,0.597842835130971,0.932969427532741,0.0573667426768556,0.278180107279481,0.924840386393644,43,Q9V3N7|P46415|A0A0B7P9G0|P06002|P12080|Q8IQ70|P05031|P16378|P12370|Q9VYY3 +GO:0050890,0.11973018549747,0.489353662717877,0.165656695205483,0.484681337867018,1.34519927453699,20,Q9V3N7|P46415|A0A0B7P9G0|Q8IQ70|P05031|P12370|Q7KJ08|P54352|O44386|P35992|Q9VCT4 +GO:0050896,0.288551401869159,0.717735178891721,0.0797705918628453,0.245382391620812,1.07380920948897,382,Q9VC18|Q9VLB7|Q9VZU7|Q9V3N7|Q9V4E7|Q9VA09|Q9VLC5|O97125|A1Z803|Q9VTZ4|Q9W299|P45437|Q9U9Q4|Q9W2E7|Q7K485|P46415|A0A0B7P9G0|Q9VIF2|Q9VBP9|Q9VM10|Q9V3I2|P06002|Q00174|Q9VLY7|P12080|Q9VPX6|O62619|Q5U117|Q9XYZ5|Q9U4G1|P17336|P22979|Q9VT23|Q7KLW9|Q9W552|Q7JWX3|Q9VGS3|Q9VH66|O76742|Q7JVK6|Q7K012|Q9VSY6|O18333|Q8IQ70|Q9VXK7|Q9W4P5|Q9VZI3|A1Z6L9|Q9VM12|Q9W414|Q9V393|P05031|Q9VLT3|Q6NMY2|Q9VSL5|O18332|P16378|Q9VW73|P12370|Q9VP57|Q9VZJ8|Q0KIE7|Q9VF24|Q9VFC2|A1ZA22|O61491|P15425|Q9VBT2|O62602|Q7K519|M9NDE3|Q7KY04|P29829|Q95RS6|O61443|Q9GYU8|Q9VCW2|Q02748|P48148|Q9VKZ8|Q7KJ08|Q9VUN9|Q9VB05|P19107 +GO:0051046,0.949227373068433,1,0.0525898950623616,-0.215988637522914,-0.579653029286223,13,Q9W1I8 +GO:0051049,0.98813056379822,1,0.0646484568421928,-0.174816993418821,-0.685250547804149,60,Q9VLP0|Q9VH64|Q9W1I8|Q9VCH5|Q9W266|Q7K188|Q9VI75|Q7KSE4|Q9VIH9|P13677|Q9VII1|Q9V438|Q9VGV9|Q7K0X9|Q9VLS5|P25171|Q960X8 +GO:0051050,0.96505376344086,1,0.0610363728309177,-0.197797946059186,-0.689769825336796,37,Q9VLP0|Q9W266|Q7K188|Q9VI75|Q9VIH9|P13677|Q9VII1|Q9V438|Q7K0X9 +GO:0051093,0.40650406504065,0.786653249636622,0.0791316651768349,0.359181486332518,1.03901253315576,23,Q9W2E7|P06002|Q00174|Q94901 +GO:0051094,0.898071625344353,1,0.0656813601934011,-0.21308938872747,-0.71672196078032,32,Q24276|Q9W1F8|Q9VRJ6|Q8SX68|A1Z9J3|A0A0B4KHJ9|Q7KSE4|Q9VVA6 +GO:0051124,0.109427609427609,0.46863563167911,0.173747838999571,0.49440936173394,1.3589007481468,19,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378 +GO:0051128,0.344585091420534,0.7557726373898,0.0802023444698144,0.27202506637229,1.05265454115404,117,Q9VZU7|Q9W2N0|Q9VQE0|Q9VU68|Q9W2E7|P32392|Q00174|P54622|P12080|A8JTM7|P45888|M9PF16|O18333|Q9VXK7|Q9W414|Q9V393|Q9VR79|O18332|P16378|Q9VSR5|P12370|O61491|A1Z877 +GO:0051129,0.0818330605564648,0.412186956801648,0.199915231309662,0.484059984581412,1.41182205860029,24,Q9W2N0|Q9VU68|Q9W2E7|Q00174|M9PF16|Q9VR79|P16378 +GO:0051130,0.911585365853659,1,0.0374584205912161,0.214257946664245,0.737693684858546,54,Q9VQE0|P32392|P54622|P45888|Q9W414|Q9V393|O18332|P12370|O61491|O61443|Q9NBD7 +GO:0051146,0.214117647058824,0.629569798068481,0.144630528034484,-0.434471625417644,-1.20256003033661,15,A8DYP0|P18432|P83967|P14318|M9NFC0|Q8IPW2|A0A0B4KHJ9 +GO:0051168,0.48526863084922,0.834787998380895,0.0732558655828455,0.387918473730615,0.999648838724984,15,Q9W2E7|P32392|Q9GYU8|Q27268|Q9W1X4|P56538 +GO:0051169,0.705691056910569,0.953614292486963,0.0521630305460055,0.285214269025009,0.839532087076813,25,Q9W2E7|P32392|P12370|Q9GYU8|Q27268|Q9W1X4|P56538 +GO:0051170,0.819672131147541,0.999229021262782,0.062249042949858,-0.275989164847063,-0.74321640912499,14,Q9VCH5|Q9VGL0 +GO:0051179,0.555423122765197,0.899435299771717,0.0488970772260102,0.223455971140887,0.966448715235027,335,Q7JUS9|Q9VLB7|Q9V3N7|Q9VAJ9|Q9V4E7|O17444|Q7JYX5|Q9V3A8|Q9VN13|Q24253|Q0E8E8|Q9VQE0|P45437|Q9W2E7|P35381|A0A0B7P9G0|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q7KSQ0|P12080|Q9NJH0|A8JTM7|Q94901|A1Z7X8|Q9U4G1|O76902|Q9VVW3|Q8IRD0|Q9W552|Q9VSS2|O76742|Q24238|O18333|Q8IQ70|Q9W3M8|Q9VZD9|Q9VXK7|Q8I099|Q9VSN9|Q9W4P5|Q9V393|Q9VLT3|O18332|Q9VJQ6|Q9VAY3|Q9W4K0|Q7KTG2|Q7K3W2|Q9VW73|P12370|Q0KIE7|Q9VF24|Q95TN1 +GO:0051223,0.835164835164835,1,0.0498907356726307,0.30883419735289,0.713616893245332,10,O18332|Q9GYU8|Q9W1X4 +GO:0051234,0.413253012048193,0.790335313377593,0.0632191170859458,0.235914975682528,1.01621762394556,303,Q7JUS9|Q9VLB7|Q9VAJ9|Q9V4E7|O17444|Q7JYX5|Q9V3A8|Q9VN13|Q24253|Q0E8E8|Q9VQE0|P45437|Q9W2E7|P35381|A0A0B7P9G0|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q7KSQ0|Q9NJH0|A8JTM7|Q94901|A1Z7X8|Q9U4G1|O76902|Q9VVW3|Q8IRD0|Q9W552|Q9VSS2|O76742|Q24238|O18333|Q8IQ70|Q9W3M8|Q9VZD9|Q9VXK7|Q8I099|Q9VSN9|Q9W4P5|Q9V393|Q9VLT3|O18332|Q9VJQ6|Q9VAY3|Q9W4K0|Q7KTG2|Q7K3W2|Q9VW73|P12370 +GO:0051236,0.960207612456747,1,0.0409055783172035,0.222629301880432,0.598269247767927,18,Q9W2E7|Q9GYU8|Q27268|Q9W1X4|Q95RF6|A0A0B4K7J2|Q9V535 +GO:0051239,0.395738203957382,0.786653249636622,0.0770736734944102,0.288800624682776,1.02997959699065,67,Q9W2E7|Q9VIF2|P32392|P48596|Q00174|Q9VW68|Q94901|P17336|P45888|Q9VDH3|Q7JVK6|O18332|P16378|P12370 +GO:0051240,0.712765957446809,0.960430188898914,0.0755015292281669,-0.257782095645483,-0.832472557611845,28,Q24276|Q9W1F8|Q9VRJ6|A1Z9J3|Q9W385|Q7KSE4|Q9VVA6 +GO:0051241,0.0604490500863558,0.366612762462139,0.241339976815091,0.552354416233107,1.46270800083292,17,Q9W2E7|Q00174|Q94901|Q9VDH3|Q7JVK6|P16378 +GO:0051246,6.59715218025381e-05,0.00649819489755,0.538434096309916,0.538361898028075,1.90108301168868,61,Q9VZU7|P21187|Q9VW54|Q9U9Q4|Q9VNE9|P46415|Q94901|Q9XYZ5|P22979|O77477|Q7JWX3|Q7KUT2|Q9V393|Q9VCK0|P12370|Q9VFC2|Q7KN75|Q9VJ86|Q02748|P48148|Q9VKZ8|Q9VUN9|Q0E8C8|Q9VND8|Q7JV69 +GO:0051247,0.00277404547904318,0.0910811598952511,0.431707695803346,0.574598023817129,1.78909621708226,30,Q9VZU7|P21187|Q94901|Q9XYZ5|P22979|O77477|Q7KUT2|Q9V393|P12370|Q7KN75|Q02748|P48148|Q9VUN9 +GO:0051248,0.107925801011804,0.46863563167911,0.175204047558551,0.495773461910226,1.37598469177972,20,Q9U9Q4|Q9VNE9|Q7JWX3|Q9VFC2|Q9VJ86|Q9VKZ8|Q0E8C8|Q7JV69 +GO:0051252,1,1,0.0318534652552707,0.153301038158464,0.54763000300909,64,Q7KLW9|Q9VGW7|Q7K012|Q9W414|Q9VNH5|Q9VP57|Q9VJ86|Q95RQ8|Q02748|Q27268 +GO:0051253,0.7439293598234,0.974117713542991,0.0640703750499722,-0.30361432091844,-0.78615124185638,12,Q9VLR5|Q8IRH5|Q7KSE4|Q9VY91|P05205|Q9VJQ5|Q7K159 +GO:0051254,0.981279251170047,1,0.035090109926935,0.186719965679091,0.581380322248564,30,Q7K012|Q9W414|Q9VNH5|Q9VP57 +GO:0051258,0.774624373956594,0.98564413926848,0.0490939668192139,0.280422528554885,0.787965829010113,21,Q9W2N0|Q9VU68 +GO:0051276,0.506887052341598,0.857912262406977,0.096240602328129,-0.284025918806174,-0.955315582136025,32,Q9VCH5|Q86BS3|A1Z6P3|Q9I7K6|Q8IRH5|Q7JNE1|Q9VCC0|Q9VIE7|P53034|P05205|Q9W0H8|Q7KND8|P25171 +GO:0051301,0.929155313351499,1,0.0635007968065945,-0.210297481991539,-0.724312728052356,35,Q9VHT3|P83967|Q9VB22|Q9VIK6|Q03427|Q23983|Q8T0Q4|Q9V4S8 +GO:0051321,0.249566724436742,0.66984942402507,0.11146266692298,0.461348491768081,1.18887476434997,15,P21187|Q9W2E7|O18332 +GO:0051493,0.354570637119114,0.760897772466943,0.119348440591015,-0.3225218524683,-1.05550655921921,30,P10676|Q9I7K0|X2JAU8|Q9VCH5|A1Z6P3|Q8SX68|A1Z9J3|Q03427|A0A0B4KHJ9|Q9VCC0|Q24478 +GO:0051495,0.0403369844732512,0.303471176228947,0.321775918075361,-0.612637109192481,-1.54293875286149,11,Q9I7K0|X2JAU8|Q9VCH5|Q8SX68|A0A0B4KHJ9|Q9VCC0 +GO:0051603,0.0356023541835955,0.303471176228947,0.321775918075361,0.404256704313776,1.44319494657408,68,Q9VZU7|Q9VW54|Q7K148|Q9U9Q4|Q9VBP9|O18413|Q9XYZ5|Q7KUT2|Q9W414|P40301|P12370|Q9VUJ1|P40304|Q9VY87|Q02748|Q9VKZ8|Q9V3Z4|Q9VB05|Q9V3G7|Q9VNA5|Q7KMP8|Q95083|Q9VKC7|Q9VKY3|A0A0B4LFA6 +GO:0051604,0.844512195121951,1,0.0738052724171275,-0.201682364960498,-0.834471186833941,81,Q24276|A1ZBU5|Q9VSA9|Q9VVW7|Q9VH95|Q7JQR3|Q9V9Q4|O02649|Q9VL01|Q8MR62|Q9W227|Q9V3W0|Q9VU35|Q9VFP0|Q9VVA6|Q9VJD4|A0A126GUP6|Q9VSX2|P48604|Q9VAA6|Q9VER6 +GO:0051606,0.197647058823529,0.611490490433997,0.151148761385484,-0.443381959621827,-1.22722265763843,15,P10676|P19334|A1ZBU5 +GO:0051640,0.374647887323944,0.783499297269819,0.116739204791222,-0.284750597296819,-1.03695697799471,44,Q9VPN5|Q9VB22|Q9VCH5|Q86BS3|A1Z6P3|Q9VI75|P36975|P17210|Q03427|Q9W385|Q9VVA6|Q24478 +GO:0051641,0.886138613861386,1,0.0978773277424561,-0.186947640664914,-0.877418396691953,228,P10676|Q9VFN7|P19334|Q9VA42|Q7K2Q8|A8DYP0|Q9VPN5|Q9V784|Q7K5M6|Q9VB22|P91927|Q9W3E2|Q9VCE1|Q9W1I8|O02649|Q9VCH5|Q86BS3|Q9VE50|A1Z6P3|Q9VGL0|Q7KLE5|Q9VI75|Q9VN02|P36975|Q9VH76|P08182|P17210|Q7JWD3|Q8SX68|Q9VBV5|Q03427|Q9VDV3|Q9W385|Q9U6R9|Q9VVE2|Q9VVA6|Q9VJD4|Q7K1C5|Q9XTL2|Q9VEC8|Q23983|Q24478|Q8T0Q4|P92177|O62530|P48604|Q9W1E8|Q0E8V7|Q9VAA6|Q9VN88|Q9VD29|Q9V3E7|Q9Y162|Q9Y0V3|Q9VG51|P05205|Q9VN44|Q9VGV9|Q9W0B3|Q9VRJ5|P08985|Q9VQQ0|Q24185|Q9W236|Q9VBI3|Q7KND8|Q7K0X9|Q9W2D6|Q9VSY8|Q9VSU7|Q9W329|Q9VLS5|Q9VGE4|P25171|Q8T9B6|Q9VE12|Q9VHC7|Q960X8 +GO:0051648,0.403301886792453,0.786653249636622,0.100633389423036,-0.364804170618631,-1.02471356749327,16,Q9VPN5|Q9VI75|P36975|P17210 +GO:0051649,0.910878112712975,1,0.0302754424728262,0.194610314022419,0.787300779247715,159,Q9VLB7|Q7JYX5|Q9V3A8|Q24253|P45437|Q9W2E7|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q9NJH0|Q9U4G1|O76902|Q9W552|O76742|O18333|Q9W3M8|Q9W4P5|O18332|Q9VJQ6|Q9W4K0|Q9VW73|P12370 +GO:0051650,0.403301886792453,0.786653249636622,0.100633389423036,-0.364804170618631,-1.02471356749327,16,Q9VPN5|Q9VI75|P36975|P17210 +GO:0051656,0.175202156334232,0.571546052631579,0.173747838999571,-0.352472449694533,-1.20774114147299,34,Q9VPN5|Q9VB22|Q86BS3|A1Z6P3|Q9VI75|P36975|P17210|Q03427|Q9W385|Q9VVA6|Q24478 +GO:0051668,0.941616766467066,1,0.035090109926935,0.200970824343466,0.692810116633907,51,Q9V3D9|Q9VKC8|Q9W552|Q9VSS2|O76742|O18333|O18332|Q0KIE7|O61491 +GO:0051701,0.160291438979964,0.552052683200224,0.147331213699377,0.532672800259703,1.27802662404046,12,Q24253|Q9V3I2|O76742|O18333 +GO:0051707,0.43728813559322,0.79820806939451,0.118815039412263,-0.233041706689476,-0.988833811903747,104,Q8SXD5|Q9V521|A1ZBU5|Q8IN43|Q9VWV6|Q8IN44|Q9VCE1|Q9VL01|Q9VI09|Q9VCH5|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q95RA9|Q9W4C2|Q9VSL4|Q9VIX1|Q9VTJ4|Q960M4|Q9VAI9|A0A126GUP6|Q9VVK7|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0051716,0.12781954887218,0.505040706738264,0.135740943810425,0.276385758471291,1.16271698438043,239,Q9VLB7|Q9VZU7|Q9V3N7|Q9V4E7|Q9VA09|A1Z803|Q9VTZ4|Q9W299|Q9U9Q4|Q9W2E7|P46415|A0A0B7P9G0|Q9VBP9|Q9VM10|Q9V3I2|P06002|P12080|Q9VPX6|Q5U117|Q9XYZ5|P17336|Q7KLW9|Q9W552|Q9VH66|O76742|Q7K012|O18333|Q9W4P5|Q9VZI3|A1Z6L9|Q9W414|Q9V393|O18332|P16378|Q9VW73|P12370|Q9VP57|Q9VZJ8|Q0KIE7|Q9VF24|A1ZA22|O61491|P15425|Q9VBT2|O62602|Q7K519|M9NDE3|Q7KY04|P29829|O61443|Q02748|P48148|Q9VKZ8|Q7KJ08|Q9VB05|P19107 +GO:0051726,0.755501222493888,0.975319402564193,0.0683110858318647,-0.272660645318339,-0.814743276798137,20,Q86BS3|Q9VCC0|Q95SK3|Q9XTL2|P92177|P53034|Q4QQ70|Q7KND8|P25171|Q960X8 +GO:0051960,0.559105431309904,0.899532021984867,0.062249042949858,0.304011830684855,0.926488658716,28,Q9W2E7|P32392|Q00174|P45888|O18332|P16378 +GO:0051961,0.368131868131868,0.771510404489128,0.0911073131586733,0.465702831909277,1.07609005392272,10,Q9W2E7|Q00174|P16378 +GO:0051962,0.892733564013841,1,0.0442407423477375,0.260727447854173,0.682310989583308,16,P32392|P45888|O18332 +GO:0051963,0.0341341707079205,0.303471176228947,0.321775918075361,0.600094627372653,1.54641745109246,15,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378 +GO:0055001,0.457538994800693,0.81496547898496,0.0762797180809272,0.398009820418676,1.02565379512955,15,Q7JYX5|Q9VU68|P12080|O76742|O18333 +GO:0055002,0.300438596491228,0.732504993920445,0.114750719227023,-0.481004994245962,-1.17251649240405,10,A8DYP0|P18432|P83967|M9NFC0|A0A0B4KHJ9 +GO:0055080,0.392059553349876,0.786653249636622,0.105520936843198,-0.341043076998738,-1.03116051915687,21,P19334|Q9VAM6|A1Z992|Q9VJZ6|Q9W385|Q9VVT6|Q9VQR9|Q9W425|Q9VMX4|Q9VE75|Q9V6U9 +GO:0055082,0.633074935400517,0.938236326264601,0.0802023444698144,-0.287172997410657,-0.884189479820924,23,P19334|P42281|Q9VAM6|A1Z992|Q9VJZ6 +GO:0055085,0.0160782672972308,0.226451508042196,0.352487857583619,0.446593754892141,1.53762974867609,54,Q7JUS9|Q9V4E7|O17444|Q9VN13|Q0E8E8|P35381|A0A0B7P9G0|Q9V3D9|Q9VKC8|Q7KSQ0|Q9VVW3|Q8IQ70|Q9VZD9|Q9VXK7|Q9W4P5|Q9VAY3 +GO:0055086,0.000739577080098332,0.0364241711948429,0.477270815362862,0.480135936891613,1.75390784299701,76,Q9VC18|Q7JYW9|Q9V3N7|Q9VAJ9|Q9VA09|Q7K569|Q9VTZ4|Q9VUY9|P54385|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748|O62619 +GO:0055088,0.699453551912568,0.953614292486963,0.0578529757032509,0.347783949624724,0.834428089471885,12,Q5U117|Q9VW73|Q9VRP4|Q9VND8|O97102 +GO:0055123,0.777777777777778,0.98564413926848,0.0529129848430584,0.326533297021327,0.783442006097371,12,P12080|P48148|Q7KJ08|O44386 +GO:0060070,0.349726775956284,0.7557726373898,0.0937465422491719,0.444337080201735,1.08894262290562,13,O62602|P48148|P25455|Q9VHI1 +GO:0060249,0.00135142459155703,0.0552123539607097,0.45505986738723,-0.665759872077899,-1.87008052143131,16,P10676|P19334|Q7K5M6|Q9W3E2|Q9W266 +GO:0060255,0.0159594272198143,0.226451508042196,0.352487857583619,0.339485464316095,1.37619576269127,165,Q9VZU7|P21187|Q9VW54|Q9U9Q4|Q9W2E7|Q9VNE9|P46415|Q9VIF2|Q9W0S7|P54622|Q94901|Q9XYZ5|Q9W3W4|P22979|O77477|Q7KLW9|Q7JWX3|Q9VGW7|Q7JVK6|Q7KUT2|Q7K012|Q9V3L6|Q9W414|Q9V393|Q9VCK0|Q9VW73|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q7KN75|Q9VJ86|Q95RQ8|Q02748|P48148|Q9VKZ8|Q27268|Q9VUN9 +GO:0060284,0.550868486352357,0.895388546298799,0.0855356947987884,-0.306539995457038,-0.926838754914803,21,Q24276|Q7K204|Q9W1F8|A1Z9J3|Q7KSE4|Q9VVA6 +GO:0060322,0.0883002207505519,0.428387144331417,0.224966093540314,-0.551135332376947,-1.42705958226344,12,P08182|P35220|A1Z9J3|Q7KMS3 +GO:0060341,0.915064102564103,1,0.0395979123961192,0.227912328264667,0.688472562558192,27,Q9NJH0|O18333|O18332|P12370|Q9GYU8|Q9W1X4 +GO:0060429,0.6289592760181,0.938236326264601,0.0540088272801684,0.254987664720351,0.910305024595225,68,Q9VU68|Q9V3I2|P12080|O76742|Q9W4P5|Q9W414|Q9VLT3|P16378|O62602|Q7KY04|P48148|Q9VVA7|Q9VW57|Q9VND8|Q24372|O44386|P08646|P35992|P40417|Q9VM50 +GO:0060446,0.632058287795993,0.938236326264601,0.0626618230932492,0.36809352996482,0.883156285064142,12,Q9W4P5|Q9VVA7|Q9VND8|P08646|P35992|P40417 +GO:0060491,0.277676950998185,0.699518661721771,0.107554375265169,0.487309958337107,1.15946405565998,11,P32392|P45888|P48148 +GO:0060541,0.234930448222566,0.651875106058035,0.107972360317345,0.344527316198016,1.14662024845126,44,Q9VTZ4|P48596|Q00174|P12080|Q9VW34|Q9W4P5|Q9VR79|Q9VLT3|M9NDE3|P48148|Q9VVA7|Q9VND8|Q24372|O44386|P08646|P35992 +GO:0060560,0.397923875432526,0.786653249636622,0.0835990603684159,0.400101662823689,1.04704649910065,16,Q9V3I2|Q00174|P12370|Q9VFC2|P48148 +GO:0060562,0.867012089810017,1,0.0454967810085007,0.268698605065104,0.711549664292908,17,Q9W4P5|P48148|Q9VVA7|Q9VND8|P08646|P35992|P40417 +GO:0060627,0.701058201058201,0.953614292486963,0.0760837160951725,-0.259545713335227,-0.835099371186131,27,Q9VH64|Q9W1I8|Q9W266|Q9VI75|Q7KSE4|P13677|Q9V438|Q9VGV9|Q7K0X9|Q9VLS5 +GO:0060810,0.936768149882904,1,0.0559428593065705,-0.225123408425319,-0.606239057654894,14,P08182|P17210|Q9VLS5|Q9VHC7|O18335 +GO:0060811,1,1,0.0501934252649434,-0.137764350453172,-0.369720944507362,13,P17210|Q9VLS5|Q9VHC7|O18335|A0A6H2EG56|Q7KM15|Q7K2D2|Q9W1H5|Q9VKK1|P49028|Q9V535|Q9VN21|P12370 +GO:0060828,0.3502722323049,0.7557726373898,0.0934449219410994,0.461955662927922,1.09913819184252,11,O62602|P48148|P25455|Q9VHI1 +GO:0061013,0.32486388384755,0.742438342435816,0.0978773277424561,0.470225540313835,1.11881483790656,11,Q9VNH5|Q9VJ86|P23128|Q9VZ49|Q9VD14|Q9VKK1 +GO:0061024,0.885093167701863,1,0.0723570851036907,-0.197625910172039,-0.794238088386314,72,Q9VPN5|Q9V784|X2JAU8|Q9W1I8|Q9VE50|Q9VI75|Q9VN02|P36975|Q9VH76|Q7K3Z3|Q7JWD3|Q03427|Q9VEC8|Q23983|Q8T0Q4|Q9VRL2|Q0E8V7|Q9VD29|Q9Y0V3|Q8MLW4|Q9W236|Q7K0X9|Q9W2D6|Q9VVH3|Q9VLS5|Q9VZW1 +GO:0061025,0.72093023255814,0.967460870667258,0.0734381410838857,-0.269398359609398,-0.829462371446503,23,Q9VPN5|Q9W1I8|Q9VE50|P36975|Q9VH76|Q7K3Z3 +GO:0061057,0.936479128856624,1,0.0442407423477375,0.255280627640314,0.607393111491693,11,Q9VN50|E1JJH5|O77430|Q9VS97|Q9NCC3|Q7K4Z4|Q9VRL1|Q9W5R5|Q7KNM2|Q9VL00|P08985 +GO:0061061,0.361185983827493,0.765921213289634,0.116234148779716,-0.30257506279131,-1.04506553615081,36,A8DYP0|P18432|P83967|P14318|Q9VXN3|Q9W1I8|M9NFC0|Q8IPW2|P17210|Q03427|A0A0B4KHJ9 +GO:0061077,0.345153664302601,0.7557726373898,0.110564716336619,-0.369638513888742,-1.06534713806547,17,Q9VSA9|Q9VVW7|Q8MR62|Q9VU35|Q9VFP0|Q9VJD4|Q9VSX2 +GO:0061136,0.0394822535315129,0.303471176228947,0.321775918075361,0.618640787096349,1.56952199422646,14,Q9VZU7|Q9U9Q4|P12370|Q02748|Q9VKZ8 +GO:0061138,0.632058287795993,0.938236326264601,0.0626618230932492,0.36809352996482,0.883156285064142,12,Q9W4P5|Q9VVA7|Q9VND8|P08646|P35992|P40417 +GO:0061245,0.406193078324226,0.786653249636622,0.0852884689790502,0.438281446649574,1.05155614735355,12,Q9V3I2|Q9VN14|P48148|Q9VVA7|P08646 +GO:0061351,0.0931263858093126,0.436807095343681,0.219250346703755,-0.554842718164098,-1.3973824287706,11,Q9VHT3|Q24276|Q9VB22 +GO:0061458,0.617486338797814,0.938236326264601,0.0637845390312975,0.362600340126535,0.888629338034519,13,Q9V3I2 +GO:0061564,0.0455947877008461,0.327816539309003,0.321775918075361,0.424377316922517,1.41799106317737,45,P32392|Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q9W260|P12370|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|O44386|P35992 +GO:0061640,0.860103626943005,1,0.0458620343117985,0.272126817234997,0.720628026341051,17,P21187|O18332|P48148|Q9VB05|P40797 +GO:0061844,0.823399558498896,0.999853164621612,0.059221919380382,-0.281158667866386,-0.728006621140974,12,Q7KUA4 +GO:0061919,0.444094488188976,0.800325005078204,0.0728938564822936,0.30896118748386,1.00285964539345,38,Q7JYX5|Q24253|Q9W2E7|P22979|O76742|O18333|O18332 +GO:0065003,0.0514274632905478,0.347442680776014,0.321775918075361,-0.281117289696813,-1.24769692060687,135,Q9V784|Q9I7K0|X2JAU8|Q9VJZ4|Q9VH95|Q9VFS8|Q9W1I8|Q9VWI0|Q9VCH5|Q6IHY5|Q27272|Q9I7K6|Q9VTU2|Q7JXC4|Q9VI75|Q9VXZ0|P36975|Q9VH76|P17210|Q7PL91|Q9VXK6|Q9VQD7|Q9W3N7|Q03427|Q9W3X7|Q9U6R9|P41375|Q9VCC0|Q9W445|Q23983|Q9VPC1|Q9VQR2|Q9V4S8|Q9VF27|Q9VNI4|Q6IGM9|Q7K1H0|Q9W402|B7Z107|M9NEW0|Q7JZK1|Q9VD29|Q9VPC2|Q6IDF5 +GO:0065004,0.335526315789474,0.74992489433765,0.107554375265169,-0.459210794153505,-1.11939010213191,10,Q27272|Q9I7K6|Q7JXC4 +GO:0065008,0.201646090534979,0.616836643406692,0.110122263835536,0.290522297626118,1.14281364750215,136,Q9VZU7|Q9W2N0|Q9VU68|Q9W2E7|Q9VBC7|P32392|Q9V3I2|Q00174|P12080|Q9VPX6|P17336|P45888|M9PF16|Q7JVK6|O18333|Q9VW34|Q9VXK7|Q9W4P5|Q9V393|Q9VR79|Q9VLT3|O18332|P16378|Q9VNH5|Q9VYT0|Q9W4W8|Q9VY05|O62602|Q9VJ86|M9NDE3|O61443 +GO:0065009,0.777506112469438,0.98564413926848,0.0668966276500666,-0.268494759868595,-0.802295102775342,20,Q9VLP0|Q7K188|Q95SK3|Q9VIH9|Q9VII1 +GO:0070201,0.851179673321234,1,0.0486034247259069,0.295092582467704,0.702118306038169,11,O18332|Q9GYU8|Q9W1X4 +GO:0070482,0.444444444444444,0.800325005078204,0.0949751525905595,-0.345970116607331,-0.997131683347087,17,P19334|P91927|Q9VF15|O46067|Q9VG69 +GO:0070585,0.939550949913644,1,0.0418238690062304,0.240811799113276,0.637701690990564,17,Q9VKC8|Q8IRD0|Q7K3W2|Q9VFF0|Q9Y171|Q9VL10|Q95RF6|Q9VMR0 +GO:0070646,0.206959706959707,0.622606432422383,0.128142916898415,0.534136186920899,1.23421761432998,10,Q9VZU7|Q9V393|Q9VKZ8 +GO:0070647,0.613782051282051,0.938236326264601,0.0579754757571486,0.295649118427612,0.893090372652226,27,Q9VZU7|Q9XYZ5|Q7KLW9|Q9V393|Q9VYY3 +GO:0070727,0.95397489539749,1,0.0840745577910723,-0.17605244594101,-0.78952120000039,159,P10676|P19334|A8DYP0|Q9V784|Q7K5M6|Q9VB22|Q9W3E2|Q9VCE1|O02649|Q9VCH5|A1Z6P3|Q9VGL0|Q7KLE5|Q9VN02|P08182|P17210|Q7JWD3|Q8SX68|Q9VBV5|Q03427|Q9U6R9|Q9VJD4|Q7K1C5|Q9XTL2|Q9VEC8|Q23983|P92177|O62530|P48604|Q9W1E8|Q0E8V7|Q9VAA6|Q9VN88|Q9VD29|Q9Y0V3|P05205|Q9VN44|Q9VGV9|Q9VRJ5|P08985|Q9VQQ0|Q9VBI3|Q7K0X9|Q9W2D6|Q9VSY8|Q9VSU7|Q9W329|Q9VLS5|Q9VGE4|P25171|Q8T9B6|Q9VHC7|Q960X8 +GO:0070848,0.0695652173913044,0.38280301190187,0.224966093540314,0.575137120226915,1.45915105942024,14,Q9VTZ4|Q9VF24|O61443|Q02748|P08646|P35992|P40417|O97102 +GO:0070887,0.492753623188406,0.839727195225917,0.100990587455923,-0.24942955173995,-0.97705779099028,58,P19334|Q24276|Q8IN44|P91927|Q9VA37|Q9VQI7|Q9VCH5|Q9VH98|Q8IPW2|O46067|Q9VG69|Q960M4|Q9VVT6|O96824|Q7KUC2 +GO:0070925,0.26628895184136,0.684842343508458,0.142056643575821,-0.290123598065765,-1.11349237363758,52,A8DYP0|P18432|P83967|Q9VCE1|Q9VFS4|A1Z6P3|M9NFC0|Q7JXC4|Q7K3Z3|M9PGG8|A1Z9J3|A0A0B4KHJ9|Q9VCC0 +GO:0070972,0.38615664845173,0.786653249636622,0.0880945010398517,0.446752200189835,1.0718797841994,12,Q9V3D9|Q9VSS2|Q9VSN9 +GO:0071214,0.103752759381898,0.46242745697362,0.206587922696891,-0.538322893357491,-1.39388422078548,12,P10676|P19334|Q8IN43|Q8IN44|Q9W3E2 +GO:0071363,0.0695652173913044,0.38280301190187,0.224966093540314,0.575137120226915,1.45915105942024,14,Q9VTZ4|Q9VF24|O61443|Q02748|P08646|P35992|P40417|O97102 +GO:0071375,0.309050772626932,0.737082351180454,0.11331290842208,-0.417596375700465,-1.12071175118201,13,Q24276|Q8IPW2 +GO:0071453,0.241228070175439,0.658198474024396,0.130105630751129,-0.501103693508671,-1.22150986387275,10,P19334|P91927|O46067|Q9VG69 +GO:0071478,0.0200693867653872,0.246261852934669,0.352487857583619,-0.651648428151042,-1.64118953610369,11,P10676|P19334|Q8IN43|Q8IN44|Q9W3E2 +GO:0071482,0.0200693867653872,0.246261852934669,0.352487857583619,-0.651648428151042,-1.64118953610369,11,P10676|P19334|Q8IN43|Q8IN44|Q9W3E2 +GO:0071495,0.789391575663027,0.986739469578783,0.0451344222209097,0.251526357280556,0.783164639720969,30,Q9VTZ4|Q9VP57|Q9VF24|O61443|Q02748|Q9VND8|P08646|P35992|P40417|O97102|A0A0B4K7J2 +GO:0071692,0.956043956043956,1,0.0437125833579551,0.250950094997097,0.579865276211043,10,O18333|O18332 +GO:0071695,0.983827493261456,1,0.0602484086158019,-0.181398500641818,-0.621559025156444,34,Q9VQ91|Q9VCE1|P08182|P17210|Q9XTL2|Q8T0Q4|P92177|Q9Y162 +GO:0071705,0.458392101551481,0.815011227487742,0.0658311958368866,0.260140891935709,0.999680756535263,108,Q9VLB7|Q9V4E7|Q9VN13|Q24253|P45437|Q9W2E7|P32392|Q9V3I2|Q9V3D9|Q9VKC8|Q9VVW3|Q9W552|O18333|O18332|Q9W4K0 +GO:0071805,0.0275766301763258,0.294165645530243,0.352487857583619,-0.646209673884226,-1.67323641416822,12,Q9VLP0|P91927|Q7K188|Q9VIH9|Q9VII1 +GO:0071806,0.693284936479129,0.953614292486963,0.0580983576873206,0.351751542933229,0.836927839409927,11,Q9V3D9|Q9VKC8 +GO:0071824,0.335526315789474,0.74992489433765,0.107554375265169,-0.459210794153505,-1.11939010213191,10,Q27272|Q9I7K6|Q7JXC4 +GO:0071826,0.560723514211886,0.899532021984867,0.086794975677172,-0.304880705402246,-0.938710515082169,23,Q9VH95|P17210|Q9VXK6|P41375|Q9W445 +GO:0071840,0.975409836065574,1,0.124434168630393,-0.164151896979784,-0.836378120727486,465,P10676|P19334|A8DYP0|Q9VHT3|Q9VPN5|Q9V784|P18432|Q7K5M6|Q9VQ91|P83967|Q9VJZ5|Q9I7K0|X2JAU8|Q9VLP0|Q9VH64|Q9VJZ4|Q9VH95|Q9VB22|P14318|P91927|Q9VFS8|Q9VCE1|Q9W1I8|Q9VFS4|O02649|Q9VWI0|Q9VCH5|Q9VEN3|Q86BS3|Q9W266|Q9VE50|A1Z6P3|Q8SX89|Q6IHY5|Q27272|Q9VRJ6|Q9I7K6|Q9I7J0|Q9VTU2|M9NFC0|Q7JXC4|Q7KLE5|Q9VI75|Q9VXF9|Q9VXZ0|Q9VN02|P36975|Q9VH76|Q7K3Z3|P08182|Q8IPW2|Q9VAA9|Q8IRH5|P17210|Q7PL91|Q9VXK6|Q9VQD7|Q7JWD3|Q8SX68|M9PGG8|P35220|A1Z9J3|Q9W3N7|Q03427|Q9VF70|A0A0B4KHJ9|Q9W3X7|Q9W385|Q9U6R9|P41375|Q7KSE4|Q7JNE1|Q7KMS3|Q9VCC0|Q9VVA6|Q9VEX6|Q9VEC8|Q9W445|Q23983|Q24478|Q9VPC1|Q9VQR2|Q9VL16|Q8T0Q4|Q9VJI9|Q9V4S8|Q9VF27|Q9VNI4|P92177|Q6IGM9|Q9W1E8|Q9VRL2|Q9VM69|Q9VD64|Q0E8V7|Q7K1H0|Q9W402|B7Z107|M9NEW0|O46098|P13677|Q7JZK1|Q9VD29|Q9VIE7|Q9Y162|Q9VPC2|Q6IDF5|Q9Y0V3|Q9VRY5|P53034|Q868Z9|Q9W2E8|Q9V438|Q7K2N0|P05205 +GO:0071985,0.905077262693157,1,0.0547939500773363,-0.244345744658178,-0.655755565240253,13,Q9VN02|Q9XTL2|Q8T0Q4|Q9W0B3|Q9VRJ5|Q9W236|Q9VBI3|Q960X8 +GO:0072329,0.144230769230769,0.535659465480795,0.14551614609036,0.430187599546138,1.29950126566366,27,Q9W1H8|Q7JWF1|Q9VZI8|Q5U117|A1ZBJ2|Q9VDT1|Q7K2E1 +GO:0072359,0.636678200692042,0.938236326264601,0.0598603117764473,0.330803964762694,0.888965816653897,18,Q00174|Q9VN14|P17336|Q9VZI3|P16378|O61443 +GO:0072376,0.93598233995585,1,0.0532386494755899,-0.23847162276279,-0.617476678357459,12,A1ZBU5|A0A126GUP6|Q9VER6 +GO:0072521,0.012090727704075,0.212667264080604,0.380730400722792,0.442301396823833,1.55099503342541,59,Q9VC18|Q7JYW9|Q9VAJ9|Q9VA09|Q7K569|Q9VUY9|P54385|Q9VXZ8|O01666|P35381|Q7K5K3|O62619 +GO:0072522,0.0559105431309904,0.357609642753413,0.241339976815091,0.474859584486142,1.44715427198314,28,Q9VC18|Q9VA09|Q9VXZ8|O01666|P35381|Q7K5K3 +GO:0072523,0.160291438979964,0.552052683200224,0.147331213699377,0.525263212415714,1.28726934061887,13,Q7JYW9|Q9VUY9|O62619|P07486|Q9VZX9 +GO:0072524,0.0636215334420881,0.366612762462139,0.227987202850442,0.514792769146908,1.47264378281624,22,Q7JYW9|Q9VAJ9|Q7K569|Q9VUY9|P54385|O62619|Q8MLS2 +GO:0072583,0.515426497277677,0.864897955397806,0.0725351864394589,0.405899667913778,0.965763303414337,11,Q9V3I2|O76742 +GO:0072593,0.620842572062084,0.938236326264601,0.0732558655828455,-0.350110254124467,-0.88175964328191,11,Q9VA37|Q9VQI7|Q960M4|Q9VZU4|Q9VEJ0|P61851 +GO:0072594,0.967836257309941,1,0.0649407684612899,-0.186975869660332,-0.699944241030111,48,Q9V784|O02649|Q9VCH5|Q9VGL0|Q9VBV5|Q9VJD4|Q9XTL2|Q9VEC8|P48604|Q0E8V7|Q9VAA6|Q9VN88|Q9Y0V3|Q9VN44 +GO:0072599,0.395644283121597,0.786653249636622,0.0865399737444125,0.449986034831523,1.07065867218577,11,Q9V3D9|Q9VSS2|Q9VSN9 +GO:0072655,0.939550949913644,1,0.0418238690062304,0.240811799113276,0.637701690990564,17,Q9VKC8|Q8IRD0|Q7K3W2|Q9VFF0|Q9Y171|Q9VL10|Q95RF6|Q9VMR0 +GO:0072657,0.870570107858243,1,0.0400845633477088,0.227553543245374,0.75652680171289,43,Q9V3D9|Q9VKC8|Q9W552|Q9VSS2|O18333|O18332|Q0KIE7|O61491 +GO:0072659,0.947368421052632,1,0.0437125833579551,0.242690809615821,0.577437964429827,11,Q9W552|Q0KIE7|O61491 +GO:0080090,0.0169962088025518,0.226451508042196,0.352487857583619,0.363967517429188,1.43245959482015,132,Q9VZU7|P21187|Q9VW54|Q9U9Q4|Q9VNE9|P46415|P54622|Q9VW68|Q94901|Q9XYZ5|P22979|O77477|Q7KLW9|Q7JWX3|Q9VGW7|Q7KUT2|Q7K012|Q9W414|Q9V393|Q9VCK0|Q9VNH5|P12370|Q9VP57|Q9VFC2|Q7KN75|Q9VJ86|Q95RQ8|Q02748|P48148|Q9VKZ8|Q27268|Q9VUN9 +GO:0080134,0.432634730538922,0.79820806939451,0.0716527366829457,0.29516657952622,1.0175327341968,51,Q9VZU7|P45437|Q5U117|Q7JWX3|A1Z6L9|Q9V393|Q9VSL5|Q9VFC2|O61443|P48148|Q9VKZ8|Q9NHA8|Q0E8C8|Q9V3Z2|Q9VN50|Q9VCJ8|P40417|O97102 +GO:0090066,0.546707503828484,0.891567700779895,0.0613026075396207,0.288783496501151,0.946465250598623,40,Q9W2N0|Q9VU68|Q9VW34|Q9VR79|Q9VLT3|O62602|M9NDE3|O61443|P48148|Q7KJ08|Q9VW57|Q9VND8|Q24372|Q9W3N6|P08646 +GO:0090130,0.013978569777425,0.226451508042196,0.380730400722792,0.59175667490636,1.62646311030788,19,Q9VU68|Q9V3I2|P48596|P12080|O76742 +GO:0090132,0.0119123380637254,0.212667264080604,0.380730400722792,0.622612855248034,1.67314060374648,18,Q9VU68|Q9V3I2|P48596|P12080|O76742 +GO:0090150,0.879746835443038,1,0.0408229003677776,0.236787904016743,0.735319428265272,31,Q9V3D9|Q9VKC8|Q9W552|Q9VSS2 +GO:0090174,0.727569331158238,0.969764264128369,0.0509082865515105,0.283971591538234,0.812344352598846,22,Q7JYX5|Q9V3I2|O76742|O18333 +GO:0090304,0.398457583547558,0.786653249636622,0.0681513438679483,0.250542048194623,1.02807697340828,177,Q9W3J5|Q9VZU7|P21187|Q9VED8|Q9VKD3|Q9W0S7|P54622|Q94901|Q9XYZ5|Q9VPL0|Q7KLW9|Q9W3M7|Q9VGW7|Q8MZI3|Q7JVK6|Q7K012|Q9V3L6|Q9W414|Q9VNZ3|Q9VXN4|Q7KVQ0|Q7K0E6|Q9VNH5|P12370|Q9VP57 +GO:0090407,0.0796992481203008,0.406755230044022,0.193813302725311,0.381347608526538,1.32634211358664,56,Q9VC18|Q9VA09|Q9VTZ4|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748 +GO:0090596,0.0162668778135362,0.226451508042196,0.352487857583619,0.479900138854107,1.54883045921451,37,Q9VZU7|P21187|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0097305,0.53518821603928,0.888229710488847,0.0655321029282414,0.32382386364349,0.944473181745019,24,Q9VLC5|Q9VSY6|P12370|Q9VP57 +GO:0097435,0.193820224719101,0.602248963243895,0.16823816568964,-0.317336647586162,-1.17657616900111,46,A8DYP0|P18432|P83967|Q9I7K0|X2JAU8|P14318|Q9VCH5|Q9I7J0|M9NFC0|P17210|Q8SX68|A1Z9J3|Q03427|A0A0B4KHJ9|Q9VCC0 +GO:0097485,0.161648177496038,0.554785556911489,0.135740943810425,0.390049986543783,1.25030157030373,36,Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|O44386|P35992|Q24090 +GO:0098542,0.911764705882353,1,0.0734381410838857,-0.191646569781896,-0.803111040823515,95,Q8SXD5|Q9V521|A1ZBU5|Q9VCE1|Q9VL01|Q9VCH5|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q95RA9|Q9W4C2|Q9VSL4|Q9VIX1|Q9VTJ4|Q960M4|A0A126GUP6|Q9VVK7|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0098609,0.180921052631579,0.574809904237254,0.130105630751129,0.416257795828961,1.23605473984246,26,Q9VHC3|P12080|Q9VN14|Q9U4G1|Q9W260|O61491|Q7KY04|Q9VVG0 +GO:0098655,0.684952978056426,0.953614292486963,0.0518457624865066,0.272553919901691,0.858441654415969,33,Q9V4E7|P35381|A0A0B7P9G0|Q8IQ70|Q9VXK7|Q9W4P5|Q9VAY3 +GO:0098657,0.693498452012384,0.953614292486963,0.0507027937029348,0.258813625262267,0.871232823156559,46,Q9VQE0|Q9V3I2|A8JTM7|O76902|O76742|Q9V393|Q9VLT3|O61491|Q7KY04|P48148|Q9VVA7|P19107 +GO:0098660,0.226771653543307,0.639141810570382,0.11146266692298,0.370074663534187,1.1801367629976,35,Q7JUS9|Q9V4E7|Q0E8E8|P35381|A0A0B7P9G0|Q8IQ70|Q9VXK7|Q9W4P5|Q9VAY3 +GO:0098662,0.684952978056426,0.953614292486963,0.0518457624865066,0.272553919901691,0.858441654415969,33,Q9V4E7|P35381|A0A0B7P9G0|Q8IQ70|Q9VXK7|Q9W4P5|Q9VAY3 +GO:0098727,0.964539007092199,1,0.0550211117163117,-0.192610539067232,-0.55512907569552,17,Q9VCH5|Q9V4S8|P08985|Q94533|O18335|A1Z8D0|P09208|P51140|Q24298|Q9VCY3|P20240|Q9VPQ2|Q9VVU5|Q24090|Q9W3N6|Q9NBD7|Q02748 +GO:0098742,0.107266435986159,0.46863563167911,0.178219874951973,0.504928246381155,1.35688806274689,18,P12080|Q9VN14|Q9U4G1|Q9W260|Q9VVG0|Q24372|O44386|Q9VCT4 +GO:0098771,0.468137254901961,0.822225120646928,0.0940503465727813,-0.336343941045087,-0.985100235008182,19,P19334|Q9VAM6|A1Z992|Q9VJZ6|Q9W385|Q9VVT6|Q9VQR9 +GO:0098813,0.305882352941177,0.737082351180454,0.118287526124085,-0.405526768065841,-1.12244449114205,15,Q86BS3|A1Z6P3|Q7JNE1|Q9VCC0|Q7KND8|P25171|Q9VQ93 +GO:0098876,0.906593406593407,1,0.0461379160269737,0.282222634278757,0.652126096150521,10,Q9W552|O76742|P48148 +GO:0098916,0.79940119760479,0.992951046205194,0.0756946307932749,-0.222285076464485,-0.839251313556852,51,X2JAU8|Q9VLP0|P91927|Q9VA37|Q9W1I8|Q7K188|Q9VI75|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q7K1U0 +GO:0098930,0.344827586206897,0.7557726373898,0.0943563635421779,0.465626782627977,1.10787294323312,11,Q9U4G1|O18332|Q9VJQ6 +GO:0099003,0.41320293398533,0.790335313377593,0.101350743797099,-0.338553321370084,-1.01163863271104,20,Q9W1I8|Q9VI75|P36975|Q9VH76|Q9U6R9|Q23983 +GO:0099111,0.138433515482696,0.533467752460001,0.159646701919906,0.545228076350805,1.33619749059357,13,Q9NJH0|Q9U4G1|O18332|Q9VJQ6 +GO:0099177,0.614213197969543,0.938236326264601,0.0808589150280032,-0.276153987488194,-0.883377813409852,26,Q9VLP0|Q9VA37|Q7K188|P36975|Q7K1U0|Q9VIH9|Q9VII1|Q95NU8|P61851 +GO:0099504,0.41320293398533,0.790335313377593,0.101350743797099,-0.338553321370084,-1.01163863271104,20,Q9W1I8|Q9VI75|P36975|Q9VH76|Q9U6R9|Q23983 +GO:0099536,0.651558073654391,0.945969509430723,0.0835990603684159,-0.233562580232947,-0.896411576274294,52,X2JAU8|Q9VLP0|P91927|Q9VA37|Q9W1I8|Q7K188|Q9VI75|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q7K1U0|Q7K2L7|Q23983 +GO:0099537,0.651558073654391,0.945969509430723,0.0835990603684159,-0.233562580232947,-0.896411576274294,52,X2JAU8|Q9VLP0|P91927|Q9VA37|Q9W1I8|Q7K188|Q9VI75|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q7K1U0|Q7K2L7|Q23983 +GO:0099643,0.351415094339623,0.7557726373898,0.109250039480711,-0.367758584148974,-1.07754027833583,18,P91927|Q9W1I8|P36975|Q9VH76|Q9U6R9|Q9VVE2|Q23983 +GO:0104004,0.103752759381898,0.46242745697362,0.206587922696891,-0.538322893357491,-1.39388422078548,12,P10676|P19334|Q8IN43|Q8IN44|Q9W3E2 +GO:0110053,0.326989619377163,0.744342361691127,0.0946646223153342,0.425505795816623,1.11352787367234,16,Q9W2N0|Q9VU68|P12080 +GO:0120031,0.750433275563258,0.975293507473243,0.0522693317499306,0.310088602948472,0.799084686166697,15,P32392|P45888 +GO:0120032,0.277676950998185,0.699518661721771,0.107554375265169,0.487309958337107,1.15946405565998,11,P32392|P45888|P48148 +GO:0120035,0.950320512820513,1,0.037848772270503,0.214776428908024,0.648791925883406,27,P32392|P45888|O18332 +GO:0120036,0.143703703703704,0.535659465480795,0.139599673451922,0.331912753578121,1.21207980717485,78,Q9VU68|P32392|Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|P45888|M9PF16|Q7K012|Q9W260|O18332|P16378|P12370 +GO:0120039,0.403323262839879,0.786653249636622,0.0756946307932749,0.295566735418974,1.03644831775917,59,Q9V3I2|Q00174|P12080|Q9VN14|Q9VPX6|Q9U4G1|M9PF16|Q7K012|O18332|P48148|Q9NBD7|Q7KJ08|P11046|Q9VND8|P16620|Q0KI98|O44386|P35992|Q24090|O97102 +GO:0120192,0.217948717948718,0.632828466784031,0.124434168630393,0.529128406720731,1.222646238559,10,Q9VN14|Q9VLT3|P16378|M9NDE3|Q24372 +GO:0120193,0.217948717948718,0.632828466784031,0.124434168630393,0.529128406720731,1.222646238559,10,Q9VN14|Q9VLT3|P16378|M9NDE3|Q24372 +GO:0140013,0.177858439201452,0.572518178475262,0.13880510939114,0.534402351873651,1.27151170965609,11,P21187|Q9W2E7|O18332 +GO:0140014,0.214117647058824,0.629569798068481,0.144630528034484,-0.432710457154787,-1.1976853493777,15,Q86BS3|A1Z6P3|Q7JNE1|Q9VCC0|P92177|Q7KND8|P25171|Q9VQ93 +GO:0140029,0.0594082478704374,0.36573202595238,0.321775918075361,-0.601234302301687,-1.55678128742846,12,Q9VPN5|Q9W1I8|P36975|Q9VH76|Q9U6R9|Q23983 +GO:0140053,1.21210398178644e-08,2.9848060551491e-06,0.747739663149885,0.675213872042298,2.32477262612361,54,Q9VXP3|Q9VXQ0|A1Z9A8|Q9VKD3|Q8SXF0|Q9W253|Q9VAY9|Q9VV39|Q9W199|Q7K3V6|O77477|Q9VCX3|Q9W4I3|Q9VPF6|Q9VGP7|Q9VSR5|Q9VHN6|Q9W1L1|Q9VIN9|Q9W086|Q9VVN2|Q9VJ86|Q9VKU3|Q8MSS7|Q9V6Y3|Q9VUX1|Q8WTC1|Q9VHT5|A1ZBA5|Q9VY28|Q9VFB2|Q9VNC1|Q9V3E3|Q9VF89|Q9VKY3 +GO:0140352,0.558073654390935,0.899532021984867,0.0922597260527354,-0.261742512970335,-0.942994580837394,43,Q8MSI2|Q9VPN5|P91927|Q9VCE1|Q9W1I8|Q7KLE5|P36975|Q9VH76|Q9U6R9|Q9VVE2 +GO:0140546,0.892753623188406,1,0.0684714904492088,-0.201302512084371,-0.804955509955149,67,Q9V521|A1ZBU5|Q9VCE1|Q9VL01|Q9V8F5|A1Z6P3|Q7KUA4|A1ZBU8|Q9VSL4|Q9VIX1|Q960M4|A0A126GUP6|Q9VLU4|Q7K2W6|Q9VER6|Q7K5M0|Q9VD29 +GO:0140694,0.215258855585831,0.631041585571558,0.156312403073186,-0.327392159717247,-1.14996038429058,38,A8DYP0|P18432|P83967|A1Z6P3|M9NFC0|Q7JXC4|M9PGG8|A0A0B4KHJ9|Q9VCC0 +GO:0141124,0.0163106072388658,0.226451508042196,0.352487857583619,0.414871547674862,1.46232083096502,60,Q9VLB7|Q9VZU7|Q9V3N7|Q9VA09|Q9V3I2|Q9VPX6|Q9VH66|O76742|O18333|Q9V393|O18332|P16378|Q9VW73|P12370|O62602|Q7KY04|O61443|P48148|Q7KJ08|Q9VB05|Q9VW59|Q9VND8|O15971|A1Z7S3|P08646|P40417|O97102|Q9VM50 +GO:0141187,0.941095890410959,1,0.0308468245215279,0.188922309307505,0.743916932687697,134,P21187|Q9VKD3|P54622|Q94901|Q9XYZ5|Q9VPL0|Q7KLW9|Q9W3M7|Q9VGW7|Q8MZI3|Q7K012|Q9V3L6|Q9W414|Q9VNZ3|Q7KVQ0|Q9VP57|Q9VXE0|Q24297|Q9VJ86|Q95RQ8|Q02748|Q27268 +GO:0141188,0.288052373158756,0.717735178891721,0.0988903007520636,0.388031015745089,1.13174144713434,24,Q9VED8|Q9W0S7|Q9VNH5|Q9VJ86|Q9VSC3 +GO:0150063,0.0107065479400119,0.210918994418235,0.380730400722792,0.488602900617245,1.61835179943612,41,Q9VZU7|P21187|Q24253|Q9VBC7|P06002|Q9VPX6|Q5U117|Q9U4G1 +GO:0160032,0.93598233995585,1,0.0532386494755899,-0.23847162276279,-0.617476678357459,12,A1ZBU5|A0A126GUP6|Q9VER6 +GO:0170033,6.37435598518478e-05,0.00649819489755,0.538434096309916,0.648569153039149,2.03840533336149,32,P54385|Q9VNW6|Q9VZI8|Q9VW68|Q9VNX4|Q9VCK6|Q9VSY6|Q9VHD3|P05031|Q9VDC6|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|Q9VJ31 +GO:0170035,0.0001611735667192,0.0122119971706471,0.518848077743792,0.747225273870648,1.95545202567817,16,P54385|Q9VZI8|Q9VNX4|Q9VCK6|Q9VHD3|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0170038,0.111721611721612,0.474335291145636,0.179782316298324,0.589652782526298,1.36249868170871,10,Q9VNW6|Q9VCK6|Q9VSY6|Q9VAN0|Q9VJ31 +GO:0170039,0.000211327294098105,0.0138771589791089,0.518848077743792,0.623483703865412,1.9595636043864,32,P54385|Q9VNW6|Q9VZI8|Q9VW68|Q9VNX4|Q9VCK6|Q9VSY6|Q9VHD3|P05031|Q9VDC6|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|Q9VJ31 +GO:0170040,0.00135382662445622,0.0552123539607097,0.45505986738723,0.691502293952929,1.83119009866376,17,P54385|Q9VZI8|Q9VNX4|Q9VCK6|Q9VHD3|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:0170041,0.240437158469945,0.658198474024396,0.117249716749792,0.498493237184465,1.19602057532363,12,Q9VW68|Q7JXZ2|Q9VZX9|Q9VCW2|Q9VYF0|Q9VI04 +GO:0170062,0.203296703296703,0.61804707638041,0.129442887745046,0.536888250808765,1.24057675233512,10,P45437|P35381 +GO:1900424,0.867924528301887,1,0.0598603117764473,-0.245157384987893,-0.688632748200919,16,Q95RA9|P08985|Q9VL00|Q7KNM2|Q9W5R5|Q9VQ62|Q9VB68|Q7K4Z4|Q9NCC3|Q9VS97|Q9VWU1|O77430|E1JJH5|Q9VA41|Q9VCJ8|Q9VN50 +GO:1900426,0.942982456140351,1,0.0525898950623616,-0.244270205066345,-0.595442557706068,10,Q95RA9|Q9VL00|Q9VQ62|Q9VB68|Q7K4Z4|Q9VS97|Q9VWU1|Q9VA41|Q9VCJ8|Q9VN50 +GO:1901016,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1901018,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1901135,0.00832582645135125,0.200022903770268,0.380730400722792,0.417408513347488,1.51203797416697,73,Q9VC18|Q7JYW9|Q9VA09|Q7K569|Q9VTZ4|Q9VUY9|Q9VF86|Q01637|O01666|P35381|Q9VG81|P32748|O62619|Q9VN86|Q8MLS2|Q9VW34|Q24319|Q9VH77|P15425|P07486|Q9VZX9 +GO:1901136,0.192495921696574,0.600026844528879,0.125033367555272,0.439440187706513,1.25708615025422,22,Q7JYW9|Q9VUY9|Q9VF86|O62619|P07486|Q9VZX9 +GO:1901137,0.0500758725341426,0.347442680776014,0.248911114434702,0.424300671932256,1.41131224047842,42,Q9VC18|Q9VA09|Q9VTZ4|Q9VF86|Q01637|O01666|P35381|Q9VG81|P32748|Q9VN86|Q24319 +GO:1901292,0.38615664845173,0.786653249636622,0.0880945010398517,0.432259615955898,1.05934422524783,13,Q7JYW9|Q9VUY9|O62619 +GO:1901293,0.00201677372821293,0.0685007628375771,0.431707695803346,0.544497539220426,1.73635654291797,35,Q9VC18|Q9VA09|Q9VTZ4|Q9VF86|Q9VXZ8|Q01637|O01666|P35381|Q7K5K3|P32748 +GO:1901379,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1901381,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1901605,8.16649515490729e-05,0.00731272520689425,0.538434096309916,0.599762187258013,1.98653387803586,41,P54385|Q9VNW6|Q9VZI8|Q9VW68|Q7JXZ2|Q9VNX4|Q9VCK6|Q9VSY6|Q9VHD3|P05031|Q9VDC6|Q9VZX9|Q9VAN0|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3|Q9VCW2|Q9VJ31 +GO:1901606,0.000323399186674149,0.0187381293455316,0.49849310876659,0.693971957656014,1.92607080374946,20,P54385|Q9VZI8|Q9VNX4|Q9VCK6|Q9VHD3|Q9VZX9|Q9VY42|Q9VSL9|Q9VM58|Q9VXY3 +GO:1901607,0.0918544194107452,0.436807095343681,0.193813302725311,0.538706389065885,1.38822266200554,15,Q9VNW6|Q7JXZ2|Q9VCK6|Q9VSY6|Q9VAN0|Q9VJ31 +GO:1901698,0.781591263650546,0.985745703835836,0.0455878202571231,0.25320964123034,0.788405794096734,30,A1Z803|Q9W414|Q9VBT2|Q9VKZ8|Q9VND8|Q8IMT6|Q9VKC7|Q9VJ58|P40417|Q9I7X6 +GO:1901699,0.732860520094563,0.971558024620652,0.0681513438679483,-0.283435263199084,-0.816897956057857,17,Q24276|Q8IPW2 +GO:1901700,0.428571428571429,0.79820806939451,0.0723570851036907,0.290933558725284,1.01187846092425,56,Q9VLC5|P46415|A0A0B7P9G0|O62619|P17336|Q9VSY6|Q9VXK7|P05031|P12370|Q9VP57 +GO:1901701,0.987341772151899,1,0.0354665010333725,0.189910470452259,0.589746588342072,31,P46415|A0A0B7P9G0|P12370|Q9VP57|O61443 +GO:1901888,0.0159185090120096,0.226451508042196,0.352487857583619,0.595739437418668,1.55902099462226,16,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378|O61491 +GO:1901987,0.906593406593407,1,0.0461379160269737,0.282316357229001,0.652342659863842,10,Q9W2E7 +GO:1902531,0.552833078101072,0.897101452931723,0.0607719451853533,0.287542765110747,0.942398850819649,40,Q9VZU7|Q9W2E7|Q9V393|Q9VW73|P12370|Q9VP57|O62602|Q7K519|O61443|Q7KJ08|Q9VB05 +GO:1902532,0.706390328151986,0.953614292486963,0.0549073703290958,0.318607913932346,0.84371615604292,17,Q9VZU7|Q9V393|O62602|O61443|Q9VND8 +GO:1902533,0.775777414075287,0.98564413926848,0.0481183992657975,0.271544619276597,0.791994165186852,24,Q9W2E7|Q9VW73|P12370|Q9VP57|Q7K519|Q7KJ08|Q9VB05|Q9VND8|P08646|O97102 +GO:1902600,0.522352941176471,0.875030012004802,0.0855356947987884,-0.341846131436762,-0.946184906312068,15,Q24439|P91927|Q9VXN2|Q24583|O77134|Q9V7D2|Q94516|Q9VKM3|Q9VE75 +GO:1902679,0.7439293598234,0.974117713542991,0.0640703750499722,-0.30361432091844,-0.78615124185638,12,Q9VLR5|Q8IRH5|Q7KSE4|Q9VY91|P05205|Q9VJQ5|Q7K159 +GO:1902680,1,1,0.0373806494758473,0.159514116400581,0.448222450657343,21,Q7K012|Q9W414|Q9VP57|Q27268|Q9VHI1|Q24090 +GO:1902850,0.117647058823529,0.489353662717877,0.204294756516886,-0.447837275859814,-1.31164725109702,19,Q9VJZ5|Q9VB22|Q86BS3|A1Z6P3|Q9VCC0|Q9VQQ0|P25171|Q9VQ93|Q24050 +GO:1902903,0.638297872340426,0.938236326264601,0.0571258510018113,0.297480364387487,0.867639040243924,24,Q9W2N0|Q9VU68|P12080|M9PF16 +GO:1902905,0.0403369844732512,0.303471176228947,0.321775918075361,-0.612637109192481,-1.54293875286149,11,Q9I7K0|X2JAU8|Q9VCH5|Q8SX68|A0A0B4KHJ9|Q9VCC0 +GO:1903046,0.205217391304348,0.620058682315284,0.125033367555272,0.489461008678875,1.24178656574436,14,P21187|Q9W2E7|O18332 +GO:1903047,0.584958217270195,0.921894150417827,0.0886261133285098,-0.264890450806908,-0.930076654170342,39,P83967|Q9VJZ5|Q9VB22|Q86BS3|A1Z6P3|Q7JNE1|Q9VCC0|Q23983|Q8T0Q4|P92177 +GO:1903050,0.14878892733564,0.54352324458546,0.149207542435322,0.490501978513045,1.28361970750004,16,Q9VZU7|Q9U9Q4|P12370|Q02748|Q9VKZ8 +GO:1903052,0.417422867513612,0.792218736995968,0.0835990603684159,0.441219739586517,1.04980089149815,11,Q9VZU7|P12370|Q02748 +GO:1903311,0.335515548281506,0.74992489433765,0.0899860794997137,0.375502992440247,1.09520188547706,24,Q7KLW9|Q9VNH5|Q9VJ86|Q02748|Q27268 +GO:1903530,0.949227373068433,1,0.0525898950623616,-0.215988637522914,-0.579653029286223,13,Q9W1I8 +GO:1903818,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1904062,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1904064,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:1904396,0.0341341707079205,0.303471176228947,0.321775918075361,0.600094627372653,1.54641745109246,15,Q9W2E7|P32392|Q00174|P45888|M9PF16|P16378 +GO:1990542,0.0245023843370426,0.280637774092872,0.352487857583619,0.621764085704743,1.60225869177675,15,Q7JUS9|Q9VN13|Q0E8E8|Q9VKC8|Q7KSQ0|Q9VVW3|Q8IQ70|Q9VAY3 +GO:1990778,0.817850637522769,0.999229021262782,0.0506004243853618,0.31228637795139,0.749259780398872,12,Q9W552|O18332|Q0KIE7|O61491 +GO:2000026,0.636507936507937,0.938236326264601,0.055826471778749,0.277065546652234,0.894201778892081,37,Q9W2E7|P32392|Q00174|Q94901|P45888|O18332|P16378 +GO:2000058,0.218579234972678,0.632828466784031,0.12384217120105,0.496710181313838,1.21729405841675,13,Q9VZU7|Q9U9Q4|P12370|Q02748 +GO:2000060,0.417422867513612,0.792218736995968,0.0835990603684159,0.441219739586517,1.04980089149815,11,Q9VZU7|P12370|Q02748 +GO:2000145,0.227106227106227,0.639141810570382,0.121543282035469,0.527193446062745,1.21817516435434,10,P48596|Q00174|O18332|P48148|O44386 +GO:2001141,0.6991643454039,0.953614292486963,0.0789209638180035,-0.235192456298952,-0.867714190919834,45,Q9VXN3|Q9VCH5|Q9VLR5|Q9VDQ3|Q8IRH5|Q9W0R0|Q7KSE4|Q24478|Q9V406|Q9VY91|P05205|Q9W0H8|Q7K180|Q9V3T8 +GO:2001257,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 +GO:2001259,0.0410036964347163,0.303471176228947,0.321775918075361,-0.610979875865364,-1.53876497774311,11,Q9VLP0|Q7K188|Q9VIH9|Q9VII1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/.DS_Store b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/.DS_Store new file mode 100644 index 0000000..8283489 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/.DS_Store differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/Heatmap_Top50_ms3fix.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/Heatmap_Top50_ms3fix.png new file mode 100644 index 0000000..e54fe3b Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/Heatmap_Top50_ms3fix.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix.png new file mode 100644 index 0000000..ba19df3 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_batch_corrected.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_batch_corrected.png new file mode 100644 index 0000000..fc92fa5 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_batch_corrected.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_raw.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_raw.png new file mode 100644 index 0000000..cd10237 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_raw.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_sex_ms3fix.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_sex_ms3fix.png new file mode 100644 index 0000000..052ef28 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_sex_ms3fix.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/.DS_Store b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/.DS_Store new file mode 100644 index 0000000..abdea5b Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/.DS_Store differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SF1g_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SF1g_vs_Earth.png new file mode 100644 index 0000000..c247ddb Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SF1g_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SF1g_vs_SFug.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SF1g_vs_SFug.png new file mode 100644 index 0000000..b1102da Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SF1g_vs_SFug.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SFug_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SFug_vs_Earth.png new file mode 100644 index 0000000..4cf2f5e Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch/Volcano_SFug_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SF1g_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SF1g_vs_Earth.png new file mode 100644 index 0000000..24c87e9 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SF1g_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SF1g_vs_SFug.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SF1g_vs_SFug.png new file mode 100644 index 0000000..6a8a531 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SF1g_vs_SFug.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SFug_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SFug_vs_Earth.png new file mode 100644 index 0000000..64d44dd Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_batch_sex/Volcano_SFug_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SF1g_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SF1g_vs_Earth.png new file mode 100644 index 0000000..8013274 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SF1g_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SF1g_vs_SFug.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SF1g_vs_SFug.png new file mode 100644 index 0000000..93a4b7e Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SF1g_vs_SFug.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SFug_vs_Earth.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SFug_vs_Earth.png new file mode 100644 index 0000000..c779bc4 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/condition_only/Volcano_SFug_vs_Earth.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SF1g_females_vs_Earth_females.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SF1g_females_vs_Earth_females.png new file mode 100644 index 0000000..e3d777a Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SF1g_females_vs_Earth_females.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SF1g_males_vs_Earth_males.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SF1g_males_vs_Earth_males.png new file mode 100644 index 0000000..41c9202 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SF1g_males_vs_Earth_males.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SFug_females_vs_Earth_females.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SFug_females_vs_Earth_females.png new file mode 100644 index 0000000..7fc68d9 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SFug_females_vs_Earth_females.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SFug_males_vs_Earth_males.png b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SFug_males_vs_Earth_males.png new file mode 100644 index 0000000..94eeecf Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/Volcano_SFug_males_vs_Earth_males.png differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/.DS_Store b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/.DS_Store new file mode 100644 index 0000000..8283489 Binary files /dev/null and b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/.DS_Store differ diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results.csv new file mode 100644 index 0000000..03f8c24 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"O16797",0.700026653213753,16.6512775871783,18.4387682295802,3.48372322398207e-09,5.8108503376021e-06,11.6105244174439 +"Q9VC18",0.677337048443512,18.1282760796353,16.0579539618705,1.37235462888217e-08,1.14454376048773e-05,10.3639303359565 +"Q9VN13",0.490525440369574,16.9081536405495,14.0384330823103,5.13829690467843e-08,2.85689307900121e-05,9.11584932903829 +"Q9VNE9",0.66223218560279,18.7720088912541,13.1324308314396,9.83864788089298e-08,3.64920689718032e-05,8.48725078738745 +"Q9VQE0",0.57893034694257,17.2771467791299,12.6418691283756,1.42258503835077e-07,3.64920689718032e-05,8.12669575952132 +"Q9VXP3",0.672862129146633,14.5222380106146,12.5275795513419,1.55304047543036e-07,3.64920689718032e-05,8.04053181017381 +"Q9VLC5",0.533100280623366,21.6850374737522,12.5073264120281,1.57749298834437e-07,3.64920689718032e-05,8.0251753546716 +"Q9VC06",0.651655167867563,16.2787785075986,12.3716580673597,1.75254161715294e-07,3.64920689718032e-05,7.92162185943102 +"Q9VFZ4",0.639562902078254,16.4804537361971,12.2230357572498,1.96899652725557e-07,3.64920689718032e-05,7.80679291335136 +"Q9W370",0.583547445019452,18.3204812365226,11.7639847975504,2.84417612500198e-07,4.4049965444085e-05,7.44267042015027 +"P48596",0.457556396197216,21.8400422654538,11.6710791928301,3.06861922111973e-07,4.4049965444085e-05,7.36718860570205 +"P41093",0.623397237729097,18.8355796054782,11.5761592577522,3.31804367560369e-07,4.4049965444085e-05,7.28943142043022 +"P21187",0.580871936934628,18.8453311878769,11.4889776968987,3.56671469071939e-07,4.4049965444085e-05,7.21743791133399 +"Q9VA42",-0.52730769138142,20.44637604246,-11.4458328838351,3.69723930585845e-07,4.4049965444085e-05,7.18160364776904 +"Q0E9B6",0.42712200214967,19.0471253430896,11.3564583917212,3.98451083096741e-07,4.41501699226886e-05,7.1069354411699 +"Q9VZU7",0.483502751290402,17.4764925762768,11.2806876799292,4.24717230824306e-07,4.41501699226886e-05,7.04316618875509 +"Q8IN44",-0.480054656949751,19.9397899008626,-11.2125073794937,4.49971755806778e-07,4.41501699226886e-05,6.98541563245442 +"P17336",0.564301229115877,20.6951623777099,11.1061214413097,4.92710095650285e-07,4.56578021969264e-05,6.89459723474048 +"Q9VHR8",0.52279870593258,20.3322073283353,10.9698968494169,5.54021663781673e-07,4.86372702730437e-05,6.77703204541076 +"O97125",0.537872792050312,18.4053353355981,10.7175086368186,6.90787051960269e-07,5.76116401334864e-05,6.5553506846339 +"X2JAU8",-0.420848631305201,21.7818985247322,-10.5634979551303,7.92065749441175e-07,6.29126509556134e-05,6.41755307440762 +"Q9VXQ0",0.647839252227998,14.9702186953671,10.4559368940628,8.72358028747211e-07,6.61405996341067e-05,6.32015464371672 +"Q9VZF6",0.627736242643975,15.0380570115786,10.3235128129352,9.83612343541076e-07,6.70466592503295e-05,6.19890853590202 +"Q9VEY0",0.48806611806226,18.0375391887424,10.31114825052,9.9476382625711e-07,6.70466592503295e-05,6.18751169848498 +"Q9VIE8",0.540427659600912,24.8202962323816,10.2525116031065,1.04955627788386e-06,6.70466592503295e-05,6.13328604077682 +"P09180",0.361481455578033,20.6643489681242,10.2231691039426,1.07820202356837e-06,6.70466592503295e-05,6.10603982620273 +"Q24276",-0.452482484912029,18.7619292187209,-10.1673655432627,1.13505864773117e-06,6.70466592503295e-05,6.05401732228099 +"Q9VLB7",0.462060910732596,20.9029181391919,10.1496976557687,1.15373419408193e-06,6.70466592503295e-05,6.03749010900245 +"Q9VNB9",0.734286335244636,18.8272865429815,10.138559576662,1.16567932749374e-06,6.70466592503295e-05,6.02705712402085 +"Q9VFQ9",0.445307743632576,19.0872762215348,10.083092522217,1.22720547582498e-06,6.82326244558691e-05,5.97493956422808 +"Q9VHC3",0.457015836325521,17.1483476542039,9.9858289868395,1.34380525828523e-06,7.17094469759409e-05,5.88289399810968 +"A1Z803",0.502810500204976,18.7241072580702,9.93403932370247,1.41076919601434e-06,7.17094469759409e-05,5.83353900434879 +"Q9VG42",-0.84280439443549,16.2097515532707,-9.92807448090432,1.41871208045926e-06,7.17094469759409e-05,5.82783912757083 +"Q9V3N7",0.393187325729443,20.4323002652192,9.79657768046727,1.60678409900347e-06,7.8826937562876e-05,5.7013663031442 +"Q7JPS2",-0.474778117691947,20.6985184536622,-9.73426152154745,1.7052472088873e-06,8.12672098406862e-05,5.64088003783348 +"Q8IN49",0.470517595558322,16.831231728593,9.61555154854014,1.91148276900889e-06,8.85653682974118e-05,5.52466188628277 +"Q9W3J5",0.55799131355891,16.0139677528003,9.50400771293255,2.13019228402958e-06,9.60313710746309e-05,5.41425578389648 +"Q9VNW6",0.682036784364254,21.4617941625739,9.38243430765254,2.40000683947473e-06,0.000105347668637996,5.2925731789841 +"Q9VW54",0.476843657269496,15.7698981589251,9.3339963271944,2.51767755540016e-06,0.000107679132369422,5.24369468593266 +"Q9VWV6",-0.459023564726404,23.7468779708063,-9.25605562344727,2.720400213018e-06,0.000112499717613233,5.16456500990159 +"P50887",0.608644887749232,17.6568887674278,9.23965443125954,2.76528082862265e-06,0.000112499717613233,5.1478377120321 +"P23779",-0.358021434103978,21.0404501196927,-9.17261964896277,2.95726678317941e-06,0.000114226754987432,5.0791937027926 +"Q9VA09",0.499263239720838,16.2661598746717,9.1572423201777,3.00332075927681e-06,0.000114226754987432,5.06338433148197 +"Q9VAC1",0.33841545208988,23.3307173711924,9.15398504226641,3.01317579103537e-06,0.000114226754987432,5.0600325127943 +"Q8SZN1",-0.457887943304772,20.2382174886971,-9.11825185791815,3.12362660514725e-06,0.000115782426164125,5.02319260902219 +"Q9W3E2",-0.634307082032201,17.7112104076546,-8.99038162088305,3.55640627865031e-06,0.000128958384191059,4.89030938872977 +"P22979",0.465652077338909,19.39844137514,8.95830387275817,3.6749215286646e-06,0.000130420619357714,4.85671365048411 +"P32392",0.45403638329746,17.6062097508181,8.87708338034731,3.99463306109605e-06,0.000132695548038832,4.7711775037182 +"Q9VKD3",0.387693116567444,18.6185371765754,8.85710735839774,4.07781455342106e-06,0.000132695548038832,4.75003572356307 +"Q9VV31",-0.914129140048026,15.9080548630959,-8.79403432185544,4.35304654779278e-06,0.000132695548038832,4.68300955120553 +"P45437",0.521029435087762,15.9949204609525,8.76977080690761,4.46424505477715e-06,0.000132695548038832,4.65711461128289 +"Q9V521",-0.525567173324955,17.8250079168567,-8.76819228099049,4.47158549707025e-06,0.000132695548038832,4.65542780946172 +"Q94901",0.33954681225957,18.8920866294908,8.76728598803407,4.47580585275065e-06,0.000132695548038832,4.65445923286589 +"Q9W3Y3",-0.376279525027101,18.1854647388084,-8.75809157348765,4.51886712341703e-06,0.000132695548038832,4.64462806700989 +"Q7JYW9",0.432693870019069,17.0988504068374,8.75217560207572,4.54681185756704e-06,0.000132695548038832,4.63829769060303 +"A1Z6L9",0.35923445445793,15.1809093126729,8.75134315639617,4.55075904488134e-06,0.000132695548038832,4.63740663780575 +"Q9VFN7",-0.342899664269552,18.7659551083739,-8.74785463888936,4.56734098658412e-06,0.000132695548038832,4.63367172297491 +"Q9W253",0.502318549677815,15.1068541662566,8.73808819135427,4.61411378072677e-06,0.000132695548038832,4.62320864423425 +"Q7JWF1",0.461762802531489,20.4905172526239,8.66764789758001,4.96727102582766e-06,0.000140430645272551,4.54744526040823 +"Q9VXC9",0.452225779675558,18.904293225518,8.48512757229921,6.02650649454914e-06,0.000167536880548466,4.34866290076059 +"Q95SS8",0.335098519722939,15.5109201404261,8.39010201738541,6.67307986902734e-06,0.000179807422020154,4.24373855707069 +"P91927",-0.338155683050452,19.3526555524919,-8.37927420346427,6.75140454586051e-06,0.000179807422020154,4.2317197761063 +"Q9VAY9",0.539726643299582,14.5035220179372,8.37381292423195,6.79128752234395e-06,0.000179807422020154,4.2256528863646 +"P54385",0.383150768389179,21.4011846368102,8.33836380177657,7.0564649816988e-06,0.000183099541699548,4.18619242004433 +"Q9VED8",0.562512169993475,16.2654653689014,8.32811955388967,7.13517398709269e-06,0.000183099541699548,4.17476296951128 +"Q9W0Z5",-0.35273291408221,17.0019254613709,-8.30685711250414,7.301595517241e-06,0.000184531232163,4.15100328273898 +"Q01637",0.407371955573721,15.8885078012101,8.28373289682415,7.48738255492452e-06,0.000185105468464244,4.12510587480403 +"Q9I7Q5",-0.572597641264366,20.6732751306916,-8.2765335700199,7.54626610046078e-06,0.000185105468464244,4.11703095103606 +"Q9W369",-0.387098211229397,22.2910552770182,-8.23639935676254,7.88386716645948e-06,0.000190583919328325,4.07190894549353 +"A1Z847",-0.308033048844084,20.1244705647838,-8.17156831643507,8.46432008704821e-06,0.00020169265578852,3.99863717218827 +"Q9VN14",0.269102363427834,19.2754730720111,8.13798004801283,8.78313694627487e-06,0.000204245305455789,3.9604883491412 +"Q9VQ91",-0.403575845308751,15.0355490361087,-8.13455782641497,8.81634412039377e-06,0.000204245305455789,3.95659424878276 +"Q7K485",0.371976413082471,20.4622555495255,8.06246541584995,9.54849040832397e-06,0.000216920072604911,3.8742496506135 +"Q9VR79",0.527422574355462,20.2302829306034,8.05541522192785,9.62355238175265e-06,0.000216920072604911,3.86616480539903 +"Q9W1H8",0.385123226935129,20.4574736570444,7.99544837612109,1.02884866533906e-05,0.000228815943171406,3.79716530138205 +"Q8SXF0",0.395234844043854,16.2710879905024,7.90844166784659,1.13433755461225e-05,0.000248957242249109,3.69630919226831 +"Q9W1R3",-0.337114616627289,17.0302565706242,-7.85437456716895,1.20575699981823e-05,0.000259526952763845,3.63318844562281 +"Q9VV36",-0.523209203391218,23.1979127313407,-7.84863848078724,1.2136152467374e-05,0.000259526952763845,3.62647159149848 +"Q9VAA6",-0.350113554872008,16.2226888712912,-7.82190018297047,1.25098513377925e-05,0.000264132051030859,3.59511008466349 +"Q8SXD5",-0.396070167730162,20.8792931149422,-7.70488187897326,1.42984353663468e-05,0.00029812237738833,3.45685580069058 +"Q7K511",0.435807391984797,16.598530515687,7.62444549261452,1.56876410987047e-05,0.000323049201884438,3.36086649820109 +"Q9VA37",-0.301825946781918,21.8252777044823,-7.53239967243085,1.74590211501154e-05,0.000355142039980395,3.25005628880737 +"O02195",0.31602741880857,18.6422979455918,7.36978540192638,2.11403986247565e-05,0.000424845601278238,3.05173564551363 +"Q9W5W7",0.376364388276611,14.9034811872323,7.31209352619583,2.26416148379813e-05,0.000445063237213502,2.98058168583012 +"P29613",-0.339693782658394,23.9164829560539,-7.31067012143822,2.26800810330621e-05,0.000445063237213502,2.97882083310236 +"Q7K4T8",0.351402984063997,13.5402257611282,7.27941657213636,2.35427373582981e-05,0.000456619603646991,2.94009337051472 +"M9PEG1",-0.391447802550285,20.3408553577652,-7.24449609925813,2.45487682587875e-05,0.000466416515957836,2.89667552422206 +"Q9VAJ9",0.365775025611793,17.4082541131139,7.24251879630251,2.46071063574878e-05,0.000466416515957836,2.89421243493903 +"Q7K3N4",0.302429815863025,17.0561229159643,7.22549170533121,2.51157175475456e-05,0.000470560420194689,2.87298148742133 +"A1Z8Z3",-0.313472922569598,19.9648565775649,-7.21646499519678,2.53899507299293e-05,0.000470560420194689,2.86171115109048 +"Q9VTU2",-0.247269233178034,20.8413962607865,-7.15871275051679,2.72229029864145e-05,0.000498986837157576,2.78935756012345 +"Q24253",0.460850351484655,18.730864810894,7.1381580282475,2.79093662687547e-05,0.000506008944959597,2.76350270622139 +"Q9VSY0",-0.367616895806922,22.6496832498258,-7.0187288788771,3.22866483233539e-05,0.000579076660251121,2.61219696433945 +"Q9VH64",-0.376084855156831,17.6301323985133,-7.00523772593709,3.28259354652863e-05,0.000579900043147311,2.59498828588479 +"Q9V8F5",-0.356629976633103,16.0616263447071,-7.00024723298074,3.30278801552725e-05,0.000579900043147311,2.58861661982319 +"P10676",-0.655514005724665,19.9128512890527,-6.93672034886772,3.57191653699028e-05,0.000618492667616421,2.50722264220662 +"Q9VMR6",-0.334707831550769,18.8792735357994,-6.93112076689067,3.5967499255871e-05,0.000618492667616421,2.50002272247486 +"A8JTM7",0.332600069877426,17.5424496232923,6.89342904153378,3.76883477460645e-05,0.000641471061637098,2.45145120481744 +"Q9V3D9",0.249136366340906,17.376635102771,6.83236873364643,4.06675595658377e-05,0.000685186761169872,2.37236646830242 +"Q9W1L1",0.438885752315135,14.8317393044745,6.81339346713626,4.16443989993853e-05,0.000690440161337916,2.34768891963635 +"Q9W0S7",0.377638513671187,17.8691928449794,6.81027722301088,4.18072279946819e-05,0.000690440161337916,2.3436316194182 +"A1Z9A8",0.473793718254587,16.6067687153514,6.80037381492627,4.23292738206162e-05,0.000692208124831252,2.33072893468395 +"Q9VEV3",-0.237806036402908,18.308054846586,-6.77261299532258,4.3830498335557e-05,0.000707041385129936,2.29449079247991 +"Q9VFS4",-0.301499419805511,15.3533529813371,-6.76802448624463,4.4084115139996e-05,0.000707041385129936,2.28849115651434 +"Q9Y119",-0.38499807070286,17.8947057673184,-6.73572718711092,4.59146643681547e-05,0.000729387239676972,2.24618141349199 +"O18413",0.258916716577371,19.3709186121459,6.71377897035364,4.7205342178906e-05,0.00074239242608692,2.21734905747521 +"Q7K148",0.395453052232693,16.6935461934237,6.70680672682107,4.76234949588132e-05,0.00074239242608692,2.20817636801536 +"Q7K2E1",0.458232235587595,17.3807421099237,6.67112451474725,4.98269479228089e-05,0.000769549529030049,2.16113013419542 +"Q9W266",-0.289673782480826,18.4465639112498,-6.64889434535318,5.12551051065852e-05,0.000779549893775153,2.13173309445255 +"Q7KVQ0",0.432005766677923,15.6530863862465,6.64653628376865,5.14091656566348e-05,0.000779549893775153,2.12861088096515 +"Q9VM07",0.495597714395707,17.008523657083,6.62326472341968,5.29566320174328e-05,0.000794136040350765,2.0977574937547 +"Q9I7K0",-0.416619711101173,16.2722854377917,-6.61583297666031,5.34613319574232e-05,0.000794136040350765,2.08788900446701 +"Q9VSL3",0.331503229294103,22.4791610296337,6.61013084872236,5.38520853275327e-05,0.000794136040350765,2.0803121551876 +"Q9VLR5",-0.40170710328368,16.9611372740849,-6.60366536907687,5.42988764848532e-05,0.000794136040350765,2.07171563139063 +"Q9VHT3",-0.441811719713076,15.8125793621821,-6.5971724660107,5.47515855157901e-05,0.000794136040350765,2.06307691881774 +"Q8IN43",-0.81555948284166,18.1225810058562,-6.58628127615029,5.55201183162404e-05,0.000798341011650767,2.04857345437125 +"A1Z9B5",-0.39480058639448,15.8745405464955,-6.51629937955113,6.07442667165322e-05,0.000856634610281753,1.95499420731308 +"Q9W4I3",0.38210666862215,16.5476509562009,6.5143831041315,6.08945659666412e-05,0.000856634610281753,1.95242234689299 +"Q9VEB1",-0.219249144551981,25.1371372270476,-6.51158411604316,6.11148193186622e-05,0.000856634610281753,1.94866487980134 +"P12080",0.285596259557806,19.0095098758866,6.48142756177687,6.35430351485159e-05,0.000883248188564371,1.90811333239916 +"Q9VAM6",-0.279667294460396,22.1389987491518,-6.41516965571014,6.92509060119075e-05,0.000954632324197204,1.81857630379645 +"A8JNG6",-0.429330088528202,15.8635022931246,-6.35103522253335,7.53045830462098e-05,0.00102169993325712,1.73133031189144 +"Q8SZK9",0.238460317487991,22.1803287010149,6.35066456771825,7.53411821286724e-05,0.00102169993325712,1.73082442770568 +"P48375",-0.295596312640079,21.9133064527281,-6.33413366097538,7.69930949815959e-05,0.0010307189569467,1.70824296281813 +"P82890",-0.364117076765673,19.7080232453864,-6.33167469440555,7.72421280685475e-05,0.0010307189569467,1.70488072776089 +"Q9W2E7",0.366292080740038,18.4662116230169,6.31172325144529,7.92950568327059e-05,0.00104971551426154,1.67756923772676 +"Q9VBI2",-0.220774129974707,22.1544778896352,-6.28558841569367,8.20735010753215e-05,0.00107151441761618,1.64170929541174 +"Q9VSR5",0.294551748150035,20.2467087006717,6.28112765930322,8.25581079432875e-05,0.00107151441761618,1.6355791022581 +"Q9VSS2",0.407155963316539,16.1759115842471,6.27828145887895,8.28689207868628e-05,0.00107151441761618,1.63166625841954 +"Q9VWH4",-0.209459618671705,24.4026882919273,-6.23610632975502,8.7625087017943e-05,0.0011242972703533,1.57355267151489 +"Q9VWP2",-0.334703622357946,19.7150234088379,-6.2253058191008,8.88897388715072e-05,0.00113138552349183,1.55863042952243 +"Q9VNH5",0.254665756070187,17.082055682161,6.21986609032246,8.95341061756121e-05,0.00113138552349183,1.55110857166401 +"Q7JXZ2",0.519931583660597,17.4579788873117,6.20798169258511,9.0959421361338e-05,0.00114075424684746,1.53466080402129 +"A1ZB70",-0.269028125908736,16.250416473106,-6.19124928160189,9.3007670612692e-05,0.00115773727299978,1.51146983386889 +"P14318",-0.253928057657802,22.1754578303237,-6.15674379489143,9.7389816692957e-05,0.0012033052906952,1.46352112038555 +"Q7K3E2",-0.265999544749079,20.5612577814084,-6.12402932505434,0.000101749969274952,0.00124793344669573,1.41790615598037 +"Q9W1N3",-0.236095795017963,20.5562459735456,-6.11356668976381,0.000103188328507983,0.00125633672957165,1.40328582406004 +"Q9I7K6",-0.247469097650724,16.2423896340454,-6.10160866934885,0.000104859070052828,0.00126742702063853,1.38655690768964 +"Q9VBC7",0.321967787993604,16.0315592108535,6.09453632068305,0.000105860858827196,0.00127033030592636,1.37665338009597 +"Q9VLY7",0.253815375113424,15.3514911595159,6.0732724545991,0.000108935287912618,0.00128948327985545,1.34683457460594 +"Q7JRN6",-0.333763554694253,14.8483062320043,-6.07281085271201,0.000109003083009364,0.00128948327985545,1.34618654930397 +"Q7K569",0.437107860350576,20.4536955014001,6.06352452048122,0.000110376630513927,0.0012965367584312,1.33314340478157 +"Q23983",-0.216649712730323,22.3582408117186,-6.03408025069581,0.000114856080468187,0.00133622270462481,1.2917064763353 +"Q9W414",0.208255238827402,19.5253488480266,6.03086223866771,0.000115357355794947,0.00133622270462481,1.28717030539968 +"P42281",-0.37781940489921,21.8833835391386,-6.01704309012574,0.000117536850900728,0.00135207908484424,1.26767384236948 +"Q9VXK6",-0.259292023613444,17.8517635978374,-5.99312785856906,0.000121413822563434,0.00138711134271101,1.23386936062279 +"Q9VZG1",-0.292498263204557,17.7997610279085,-5.98223465469423,0.00012322506530293,0.00139148510673645,1.21844469541334 +"Q8MSI2",-0.582327975782238,24.1442451584085,-5.98080391344471,0.000123465105393882,0.00139148510673645,1.21641752485905 +"Q9VB22",-0.345029471083382,17.2648846754239,-5.96981916598256,0.000125324858744707,0.00139831411045569,1.20084387951895 +"Q9VV39",0.24491089616938,17.4566379262803,5.96734620653672,0.000125747671803569,0.00139831411045569,1.19733546546614 +"Q9VXY3",0.235714048462405,18.0818014606941,5.9519263944858,0.000128418847524033,0.00141774983388377,1.1754395442755 +"Q9VT23",0.266979966404442,18.1901220951191,5.94750797884732,0.000129195428507394,0.00141774983388377,1.16915920387032 +"Q9VXZ8",0.328472190262122,17.7660313788427,5.94056860766319,0.000130425284586767,0.00142189133784789,1.15928995166297 +"Q8SXQ1",0.31129975256772,18.5154191402664,5.93300840669907,0.000131779484655902,0.00142732584679249,1.1485299252587 +"Q9VIF2",0.261085776810939,17.3729893912739,5.92271922089163,0.000133646801039662,0.00143057193446208,1.13387277018515 +"Q9VHT5",0.308544748154965,15.6240793061197,5.91864571706683,0.000134393902428925,0.00143057193446208,1.12806580256143 +"Q9VPE2",0.351682165801797,20.7656712747026,5.91724326926423,0.000134652154502725,0.00143057193446208,1.12606599993028 +"Q9Y156",0.354215719342315,16.0812227463039,5.91176153418639,0.000135666701900957,0.00143222822006833,1.11824669328035 +"Q9VCX3",0.740206365909239,12.9401757315591,5.89137003131339,0.000139513321907955,0.0014630258297675,1.08912195037615 +"Q9VD02",-0.25086732414681,18.2690825063605,-5.88707574295191,0.000140338209090408,0.0014630258297675,1.08298093107002 +"Q9VJQ3",0.240390312671295,20.4225865837405,5.84378262065898,0.000148952803784701,0.00154318805411727,1.02092242964935 +"Q9VJZ4",-0.220522531324036,21.3498370763053,-5.82845365809553,0.0001521375417385,0.00156249676735184,0.998884768991742 +"Q9W3H4",-0.233102936804322,19.5560340063926,-5.82582943202063,0.000152690031821553,0.00156249676735184,0.995108676886957 +"A1ZAL1",-0.322103922085383,17.2597042153659,-5.79317913850861,0.000159746862697745,0.00162474248158438,0.948044399476791 +"Q9VCK0",0.329403135052601,18.1976072865754,5.76905630450513,0.000165184924501456,0.00166986941859654,0.913173864585348 +"Q9VKG4",-0.306213743134979,15.9207750537474,-5.74534391538061,0.000170724263268439,0.00170942630565214,0.878815163486992 +"Q9VF23",0.718199960919366,15.353932661404,5.74356576435709,0.000171147597748146,0.00170942630565214,0.876235406435342 +"Q9Y143",-0.222170154630675,21.0180546930622,-5.73097953415747,0.000174176422317015,0.0017293230501475,0.857962195798156 +"Q9VQQ0",-0.246260761973605,18.3234900589626,-5.7061493456539,0.00018032143281966,0.00177974053220824,0.821845884163618 +"Q9VTZ4",0.355663282267834,18.0815514697937,5.68938060883821,0.000184602529324528,0.00180666426092738,0.79740502668703 +"Q9VCK6",0.305799339813079,16.4666499540122,5.68027321263627,0.000186973178541913,0.00180666426092738,0.784113804973032 +"Q9VMD3",0.271521469205872,17.7427163446969,5.67761710101417,0.000187670688414841,0.00180666426092738,0.780235259150238 +"Q9W5B4",-0.287949748572732,18.72159215829,-5.67559210600811,0.00018820433559579,0.00180666426092738,0.777277609133943 +"Q9V3A8",0.345533189898447,15.3834505975204,5.67460530218243,0.000188464976859331,0.00180666426092738,0.775836097600591 +"Q24238",0.290097407084515,16.3253843632414,5.66003880983255,0.000192357676936703,0.00183344345788812,0.754541222146767 +"Q9VPC2",-0.394269585730578,14.8489546383323,-5.64605840424046,0.000196174817623091,0.00185036464329537,0.734074410104484 +"Q9VAN7",-0.249885550369051,23.724997291026,-5.64517301642763,0.000196419275086787,0.00185036464329537,0.732777286087523 +"Q94523",0.230045824124527,20.2154899775159,5.64141331705035,0.000197460975123847,0.00185036464329537,0.727267937379364 +"Q9VUX1",0.312309412109173,16.4077551632286,5.59447897396791,0.000210974754521449,0.00196595469576411,0.658320352291843 +"Q9VMY1",0.32679639088567,15.5823144437963,5.58531035701603,0.000213728437627436,0.0019805501886809,0.644814381162226 +"Q9VFC2",0.243079700611592,19.8174939140012,5.56618224334721,0.000219597940686896,0.00202369814953449,0.616598405329976 +"Q9VSC3",0.302446826066287,17.5088269040002,5.5172380820745,0.000235416158308244,0.0021575502860338,0.544160437811724 +"Q9U9Q4",0.26414610048294,17.7967064239191,5.50236665842245,0.000240460564049297,0.00219173891166244,0.522082126006523 +"Q9VE24",0.299330085450306,15.9067507687377,5.47506800540037,0.000250023618722176,0.00226651845667712,0.481471197542828 +"A1ZA22",0.590691853952409,13.4734284669821,5.44046443414138,0.000262733989708608,0.00235781119757601,0.429838694653657 +"Q9VI09",-0.212426735619474,20.2055890287783,-5.43996771785386,0.000262921392535454,0.00235781119757601,0.429096280525014 +"Q9VLP0",-0.328541123710643,16.2105248241074,-5.38172830116117,0.000285916294114754,0.00255031218493802,0.341802682158261 +"Q9W1F8",-0.303194807280089,17.66226024291,-5.37756219934791,0.00028764159577792,0.00255205415828495,0.335539497673149 +"Q9VSA3",0.223001232877056,21.6819429412969,5.34606002152315,0.000301053073685669,0.00265691284078146,0.288099284339134 +"Q7JXC4",-0.202450725636044,21.6496472995715,-5.32300469263185,0.000311290982342729,0.00271813969267431,0.253289018436871 +"Q9VK39",-0.2867456437824,18.2072751232891,-5.32284443747898,0.000311363432380749,0.00271813969267431,0.253046788565602 +"Q9W3R8",-0.274313961883191,17.4077724032216,-5.31950033248003,0.000312879389084813,0.00271813969267431,0.247991244031047 +"P18432",-0.33267083575598,23.7275372495705,-5.31084381280629,0.000316840295803069,0.00273828815232911,0.234897044422019 +"P29327",0.304715440338725,19.4923823363594,5.26888828556794,0.000336810686722473,0.00289587745078909,0.171280974648309 +"Q9VBP6",-0.191634112333826,23.1517542166488,-5.2170278000454,0.000363369970808492,0.00310382101291524,0.0922974612615848 +"A1Z7X8",0.2375327696165,16.957388334736,5.21449031199553,0.000364725539876343,0.00310382101291524,0.0884229857724304 +"Q8SYJ2",-0.191435322340823,22.604123593544,-5.2110382011712,0.000366578381021764,0.00310382101291524,0.0831504994466989 +"Q9W402",-0.190735876694081,21.2446710788336,-5.19531277100657,0.000375146550400287,0.00314444012624515,0.0591111379709632 +"Q6IHY5",-0.28768394622503,20.9149549447233,-5.19314787536637,0.000376342738067747,0.00314444012624515,0.0557989085787707 +"Q9VH98",-0.251089292153146,17.0914972372399,-5.19190521802903,0.00037703119019726,0.00314444012624515,0.0538973753497354 +"Q9W337",-0.309905376277589,17.7878464761847,-5.1744367404093,0.000386852405383908,0.00320529547665765,0.0271435052690636 +"Q9VUY9",0.247754041498744,19.6156762456592,5.17212700045764,0.000388171274751106,0.00320529547665765,0.0236027594157378 +"Q9VTY2",-0.32693587254894,20.8558873954418,-5.15984641505813,0.000395264476743581,0.00324778890250391,0.00476429630969566 +"P19334",-0.764609439301756,15.4010045728876,-5.14247267573854,0.000405536367177981,0.00331585617869055,-0.021923806555499 +"Q9VW68",0.26036138103624,22.8808429551575,5.13762833261441,0.000408450937613501,0.00332339592165521,-0.0293729521397736 +"Q8SWS3",-0.338772212339322,16.5423549740241,-5.13364401365422,0.000410864806532338,0.00332680823930068,-0.0355021425873066 +"Q7K5M6",-0.237976352437119,18.277937132895,-5.12498259786596,0.000416164849343498,0.00335344429326065,-0.0488340364790991 +"Q8IQG9",-0.291682818226196,20.5380861669683,-5.11676628135586,0.000421259888089791,0.00337818025641237,-0.0614906829314572 +"Q9V9Q4",-0.240406399234583,19.1800484641246,-5.11271510534052,0.000423796493668062,0.00338226101166664,-0.0677347615957897 +"Q9VPN5",-0.212552574567731,21.3690757223014,-5.09826568332134,0.000432977189041721,0.00343907595867424,-0.0900246480013491 +"Q9VDE2",-0.203841211787978,19.5453260794016,-5.0946239133683,0.000435324317587112,0.00344133157220522,-0.0956471719448277 +"Q9VSY6",0.317122237703266,17.6815540191244,5.07734918307983,0.000446643978077641,0.0035141611105354,-0.122343232882648 +"Q9V3G1",0.2567281303672,21.0628229744707,5.06668304582492,0.000453789389812302,0.00355361832022028,-0.138847610547506 +"P52029",-0.278511627918448,18.3729676908,-5.06033822385354,0.000458097535670614,0.00355405179963696,-0.148672989314128 +"Q8IM93",-0.283696373518424,19.0675930632366,-5.06032553167191,0.000458106197195411,0.00355405179963696,-0.148692649711167 +"Q95SI7",-0.172529413007513,21.2541654410266,-5.05534279765534,0.000461520070741163,0.00356396054627898,-0.156412746950517 +"P28668",0.368157692839691,15.530646478345,5.02952578857975,0.00047964733215313,0.00367742676135464,-0.19646903446552 +"Q9VJZ5",-0.214830162065365,17.0201064610847,-5.02808475092842,0.000480681226514642,0.00367742676135464,-0.198707644485425 +"Q9VK12",-0.210330340967325,22.3588725970958,-5.0251036274655,0.00048282761435052,0.00367742676135464,-0.203339662821252 +"Q9VME1",-0.372594272015878,16.6092433115872,-5.01157833867779,0.000492694627782325,0.00373552108700417,-0.224370761888768 +"Q9NJH0",0.21710095278689,21.1239169244015,5.00698946082923,0.000496090883577774,0.00374425155569107,-0.231512076648491 +"Q9VSA9",-0.285811033182544,22.4156403355409,-4.97135837774819,0.00052332451449671,0.00393200581162393,-0.287062737972419 +"Q9VW66",-0.195412548740467,21.4015817315576,-4.96423854652315,0.000528954548761775,0.00395648514499839,-0.298184282299433 +"Q9VAQ4",-0.351776868674886,15.9677726617538,-4.95832654992237,0.000533678428126752,0.00397399829515814,-0.307424525359182 +"Q95RI2",-0.314597136280856,16.8164317516926,-4.9530259079497,0.000537951962817954,0.0039833256365241,-0.315713404552509 +"Q9VKU3",0.254386771324583,15.5090004382705,4.9508617840662,0.00053970719056022,0.0039833256365241,-0.319098684073095 +"Q9VMW7",-0.202270495914618,19.4656908511631,-4.93838523734432,0.000549945837268108,0.0040410117029216,-0.338628178155035 +"Q7K5J8",-0.300696750983935,18.2502547622958,-4.93092851268661,0.000556163477934622,0.00406877491752171,-0.350310548714218 +"Q9VW34",0.34341048507692,18.4249046031174,4.92363054940902,0.000562321135101457,0.0040891757147618,-0.361751705417173 +"Q9W086",0.302390541428574,16.858899036092,4.91909330629981,0.000566185931698587,0.0040891757147618,-0.368868573470082 +"Q9VGA3",0.234577795340918,19.4270582151399,4.91895204587282,0.000566306708699026,0.0040891757147618,-0.369090192816199 +"Q9VQD7",-0.183622210602582,21.0003981161485,-4.91382495354663,0.00057070893322285,0.00409163276639846,-0.377135819957513 +"Q9VMQ5",0.381818989999163,13.5091665940291,4.91284668477526,0.000571553018327843,0.00409163276639846,-0.378671372375893 +"O17444",0.381392393653631,15.1860841980659,4.90809672014586,0.000575670358456263,0.00410349640130362,-0.38612911128 +"Q9VI75",-0.300923428004683,17.4903313775524,-4.9021209309756,0.000580895081775665,0.00412311913362472,-0.3955159314309 +"Q9VM12",0.222167659589619,18.9056126776404,4.86905409386711,0.000610731335688006,0.00431652486409998,-0.44754727589237 +"Q9VIN9",0.254988806321776,16.419129836985,4.85013352613618,0.000628531934401862,0.00442359184211944,-0.477387322164814 +"Q94524",-0.234453079180657,15.6918019122848,-4.84426029913959,0.000634168928349314,0.0044445116491036,-0.486660179608907 +"M9MSK4",-0.198261560158727,20.5494749393378,-4.83653298524685,0.000641667337789366,0.00447824736164294,-0.498867584430188 +"Q9W392",0.179761255044308,19.9737314037546,4.83089072380713,0.00064720189097892,0.0044980531423035,-0.507786277562312 +"C0HK95",-0.310471221303086,19.8969547601003,-4.82431994842383,0.00065371117443536,0.00452444082555262,-0.5181781927455 +"Q7K3Z3",-0.18385959408635,19.914105779949,-4.82092293942904,0.000657103611781646,0.00452912737376771,-0.523553012751934 +"Q9W199",0.495884097313935,15.7423879023532,4.80947083191548,0.000668678673705675,0.00458994250099204,-0.541684466654063 +"Q9VPL0",0.302117561008075,15.0515352186491,4.78351282001271,0.000695724062414275,0.00475601531191398,-0.58284885804738 +"Q9W308",-0.318123520697164,17.2880469049173,-4.77725976183837,0.000702410992278282,0.00478212871477622,-0.592778777985528 +"Q9VJI5",0.367417309373057,17.5272965600473,4.76908390592136,0.000711257161773611,0.00481254168224472,-0.605770171655151 +"Q9VIX1",-0.38918000184119,17.3411689964387,-4.76780776482827,0.000712648558461897,0.00481254168224472,-0.607798775892261 +"Q9VN02",-0.217664926695086,17.3113784807918,-4.76045415679441,0.000720722767571247,0.004847441839955,-0.619492684438703 +"Q9W3X7",-0.237498807342018,21.6252941507142,-4.71535309932043,0.000772413719961807,0.00517424130480439,-0.691374265513185 +"Q960M4",-0.257577071352102,23.2449251760672,-4.71243517607136,0.000775890644620212,0.00517674238090606,-0.696034302484652 +"Q9VQT8",-0.345149738193445,18.0058391474991,-4.70919920644672,0.000779765953597407,0.00518187095856763,-0.701203615185186 +"Q9VEN3",-0.191859920643477,17.6111231050059,-4.70316463177202,0.000787047699329393,0.00520950620032313,-0.710847341500549 +"Q9W3M7",0.275446157818351,16.021209787843,4.69965865488034,0.00079131132676517,0.0052170248736929,-0.716452421746371 +"Q9VX69",-0.349761515561458,18.2495891113129,-4.67829968102571,0.000817820414448508,0.00537056870590595,-0.750635163024849 +"A0A126GUP6",-0.155344372211363,17.0849380239928,-4.67518890740003,0.000821759088335031,0.00537527121310915,-0.75561872785939 +"Q7KUT2",0.285978225747797,18.1659762928163,4.66452539074821,0.000835413801577148,0.00544324305090111,-0.772711872089154 +"Q9VZ24",-0.21817208068688,21.8597449164904,-4.65179980216686,0.000852024224182542,0.00549784571260259,-0.793130306153322 +"Q0KHZ6",-0.187829651254145,23.1337771825978,-4.65054867394258,0.000853676074888078,0.00549784571260259,-0.795138929636106 +"Q9VX36",-0.163594650776574,22.2380457099757,-4.65054398054038,0.00085368227791611,0.00549784571260259,-0.795146465050035 +"Q9VHX4",-0.158545386500283,22.874548128139,-4.63772837018115,0.000870799329794533,0.00558651262345108,-0.815733287552596 +"B7Z107",-0.383919990922106,16.0711058066324,-4.63118573563797,0.000879677713416441,0.00562184837539703,-0.826251702084534 +"Q8I099",0.284149399290143,16.8234072775656,4.62627665738112,0.000886402262124759,0.00564320218787824,-0.834147621312337 +"Q9VPL3",0.365833998319752,15.8248831230624,4.58782220506138,0.000940998280244342,0.00596800430208199,-0.896109166058221 +"Q9VVN2",0.304403688991311,14.8699563134575,4.55912740810746,0.0009840509610911,0.00621741289053013,-0.94247157415198 +"Q7JQR3",-0.211958228620105,19.1439864555764,-4.54884483447618,0.000999981487206044,0.00626016966247988,-0.959111365856733 +"Q9VXI6",-0.158109712663027,22.0387622436521,-4.54432980498666,0.00100706245724237,0.00626016966247988,-0.966422163764125 +"Q8T3X9",-0.246626889398964,18.293634729184,-4.54321246114705,0.00100882297033381,0.00626016966247988,-0.968231790898742 +"P32748",0.220749519878931,17.2009008475282,4.54318550624099,0.00100886548129011,0.00626016966247988,-0.968275448512633 +"Q9VZX9",-0.218951077727628,18.3538709668035,-4.53918709066854,0.00101519246446621,0.00626016966247988,-0.974752541178766 +"Q7KM15",-0.222471680808676,17.0240250028971,-4.53870825938091,0.0010159529619423,0.00626016966247988,-0.975528346084864 +"Q9VFP1",0.193856395215924,15.6236392022137,4.53799310689698,0.00101708991518708,0.00626016966247988,-0.976687095142985 +"Q9V6Y3",0.331059267994302,15.236178271097,4.53256831891722,0.00102575819604596,0.00629031129045833,-0.985478941542808 +"Q9V396",0.183555818919505,20.7653238019371,4.52563863680369,0.00103694490385285,0.00633561941255149,-0.996715278577 +"Q9VMH8",0.18934075189776,18.8915274870396,4.52125131276845,0.00104409404926775,0.0063443606488225,-1.00383244144645 +"Q9VGA0",-0.313081302315233,19.3778233811034,-4.52009756445337,0.00104598272087901,0.0063443606488225,-1.00570447648615 +"Q9VG69",-0.224027368852255,19.9765826445163,-4.50917599302513,0.00106404110180337,0.00643050926742034,-1.02343396413878 +"Q2MGK7",-0.255251213167238,17.1247640090554,-4.50473939030187,0.00107147068619759,0.0064520328685111,-1.03064048743215 +"Q6NLJ9",-0.332444422497998,15.1497007939836,-4.47558923029839,0.00112166939381325,0.00673001636287953,-1.07805277922766 +"Q9VHB8",0.42442622470513,15.4400931922841,4.46989971987785,0.00113175368134079,0.00674350675371353,-1.08731932762077 +"Q9VJ43",0.19549686086652,20.2301378961315,4.46975943590151,0.00113200353179843,0.00674350675371353,-1.08754786118138 +"Q9VXN4",0.259480160954469,14.9544534777443,4.46650196133355,0.00113782161350136,0.00675404431074826,-1.092855244833 +"Q9VZU4",-0.189133918956056,21.4470166269703,-4.45401114334856,0.00116042545713792,0.00686379312945406,-1.11321893307885 +"Q9VPF6",0.38831220457269,13.9702232543697,4.44948761169337,0.00116872793395371,0.00686856795827202,-1.12059848361204 +"Q9VY28",0.270960551981885,15.2047555560976,4.44908582129035,0.00116946840536526,0.00686856795827202,-1.12125407712679 +"Q500Y7",-0.230944799426521,20.0868895070179,-4.44267374417083,0.00118135267006153,0.00691402194267589,-1.13171929390537 +"Q9VFB2",0.235706166346841,16.4176026373008,4.43422820539601,0.00119720067190627,0.00698227524734146,-1.14551124773651 +"Q9VIK6",-0.242273031787896,16.6440320677759,-4.42281504862354,0.0012189747950422,0.00708449462763199,-1.16416369359874 +"Q9W309",-0.238803043580447,18.5557629299153,-4.41243830951804,0.00123913448145321,0.00717665387174982,-1.18113648292178 +"Q9V3V0",0.274452294929976,14.3800942284064,4.40789512945503,0.00124807131371903,0.00720340121551328,-1.18857179933904 +"Q9VNZ3",0.34701219993204,15.080776574784,4.40255309467636,0.00125866662378224,0.00723950320161647,-1.19731780057762 +"Q7JYX5",0.36378295079318,14.711906774532,4.39396818292657,0.00127589304615069,0.00731336632638951,-1.21138048272627 +"Q9VW26",0.172945204647331,17.5431541896136,4.39118953259983,0.00128152179594764,0.0073204738206872,-1.21593406335983 +"P48148",0.247633743666608,20.6198642934485,4.38575661909702,0.00129260312478022,0.00735857342025051,-1.22484014355628 +"P22465",-0.175113275629112,22.7071020438403,-4.37019248870084,0.00132491175384576,0.00749889772755727,-1.25037432155711 +"Q9VVW7",-0.157926992564589,16.6488835524811,-4.36955936687504,0.00132624390265551,0.00749889772755727,-1.25141363893569 +"Q9VUJ1",0.185862077265991,19.9898506885425,4.36697765261756,0.00133169071379534,0.00750425713044131,-1.25565222800984 +"P40304",0.20143707262261,18.7292816502794,4.35480655507405,0.00135768839363984,0.00762499744306821,-1.27564541676434 +"Q7KTG2",0.227521020548849,18.0461492655848,4.3456214370566,0.0013776619261223,0.00771120836500668,-1.29074559392616 +"Q9VK60",-0.153596192952701,21.3633137116365,-4.34023051677963,0.00138952878155556,0.00775161875463104,-1.29961296160431 +"Q9U9P7",-0.208342603393042,16.6266214016737,-4.3325920375611,0.00140652788431278,0.00779647205235166,-1.31218331909281 +"Q94522",-0.171722581742248,23.4943840644114,-4.32962750210027,0.00141318423022764,0.00779647205235166,-1.31706384885534 +"Q9W0J9",-0.190749096474551,18.4365420208165,-4.32872014059584,0.00141522817929968,0.00779647205235166,-1.31855785534885 +"Q9VXN2",-0.362832827443675,18.5033085676865,-4.32770619337661,0.00141751591194029,0.00779647205235166,-1.32022747726366 +"P09040",-0.452959376250632,16.5282924384203,-4.32619192844888,0.0014209397505485,0.00779647205235166,-1.32272118162975 +"Q9VEJ0",-0.168336314168393,22.2287474391098,-4.31129786599221,0.0014550840616331,0.00795764004853773,-1.34726359236602 +"Q9VWI0",-0.195001306271052,21.0152749842171,-4.30902356178828,0.00146037344425878,0.00796046700988122,-1.35101353642572 +"Q7K2Q8",-0.199452658315355,16.2078245572666,-4.30556906539921,0.00146844639148323,0.00797839928662551,-1.3567106058417 +"Q9VF86",0.207471943288812,17.501194695878,4.28508889936221,0.00151728251969429,0.00819628376243865,-1.39051529291768 +"Q9VY05",0.232468935230187,18.2846899264902,4.28407866938121,0.0015197352960733,0.00819628376243865,-1.3921840781996 +"Q9VH81",0.296610540200923,14.342434074437,4.28261756791948,0.00152329014769543,0.00819628376243865,-1.39459786644198 +"Q9VU35",-0.188886270735125,22.7446862718274,-4.23869186378791,0.00163435230058254,0.0087638794039177,-1.46728219572902 +"Q9VJ58",0.181024744852733,17.1917418747813,4.23681376969585,0.00163928679497741,0.0087638794039177,-1.47039493698068 +"Q7JWX3",0.179766668955441,17.90374858627,4.20250711607127,0.0017322350045858,0.00923120762827195,-1.52732639110553 +"Q9W401",-0.144039309620325,24.4977556152842,-4.18517432741851,0.00178128677342505,0.00946237687284389,-1.5561412750886 +"Q7JVI6",0.233360798050835,17.4578400195516,4.17959057402534,0.00179739792752618,0.00951764997813864,-1.56543125341574 +"Q9VL01",-0.207383992158228,20.5381766293535,-4.17250788806474,0.00181805461754161,0.00958153291641924,-1.57722015473087 +"Q9VG81",0.480802078861089,15.4921309799493,4.17077575653007,0.00182314424561289,0.00958153291641924,-1.58010409256227 +"P42325",-0.160398691425602,20.088691882769,-4.16957030668655,0.00182669512435331,0.00958153291641924,-1.58211132331952 +"P40301",0.239337825627278,17.7925402054695,4.15050833667233,0.00188382181413458,0.00985020309083535,-1.61387364651192 +"Q9VXR9",0.223000141216762,15.1341591792751,4.14380339579675,0.00190435926029729,0.00992647264429964,-1.62505550670748 +"Q8MR62",-0.198842223086626,17.7049619113941,-4.13885810376441,0.00191965741087032,0.00997504224713925,-1.63330598994722 +"Q9V931",-0.266520522915261,17.755742770142,-4.13128187573127,0.00194334503232719,0.0100667686767756,-1.64595104418197 +"Q9VZJ2",-0.172174324112802,17.4404222505071,-4.12845263195361,0.00195226937848095,0.0100816883074496,-1.65067479852084 +"Q9V406",-0.221857657405341,17.0459298741558,-4.12604933586554,0.00195988393827,0.01008977286739,-1.65468807499977 +"A1Z7B8",0.202689103429508,16.864358675108,4.12291276729917,0.00196986870480307,0.010109972306497,-1.65992680130578 +"Q7K1S1",0.298407141925473,16.4693342402845,4.11746980767376,0.00198732241085334,0.0101492074294549,-1.66902024307836 +"A8Y535",-0.222513339380889,22.0554719480081,-4.11673758568963,0.00198968275145788,0.0101492074294549,-1.67024379881182 +"Q9W314",-0.202820721300206,16.288782129386,-4.10744876569496,0.00201988223487059,0.0102199122714239,-1.68577065687092 +"Q24439",-0.150841971448386,24.3412478705413,-4.1069220312706,0.00202160908068766,0.0102199122714239,-1.68665140867027 +"Q9VVU1",0.15599628883621,22.2089672753269,4.10682569113031,0.00202192508967019,0.0102199122714239,-1.68681250212806 +"Q9VNC1",0.30511245599598,15.515053486312,4.09650327277006,0.00205608613203838,0.0103474920145233,-1.70407878148397 +"P13677",-0.427249557535948,17.026008086565,-4.09545985707682,0.00205957275109216,0.0103474920145233,-1.70582474137096 +"P08182",-0.173573696600336,19.6935110462622,-4.08844086717978,0.00208318877551004,0.0104347113439962,-1.71757275035924 +"Q7KV34",0.155147495335431,20.849571925552,4.07975961925694,0.00211279108311902,0.0105013436355724,-1.73211027816627 +"Q9VL10",0.245742128855859,16.7200217206071,4.07961209872587,0.00211329791042782,0.0105013436355724,-1.73235738424508 +"Q7KTA1",-0.230744168924026,17.1515878810719,-4.07900687543835,0.00211537857407214,0.0105013436355724,-1.73337119529433 +"Q9VU04",-0.312442127265959,16.6346110872807,-4.07685653674687,0.00212278849540934,0.0105068581909281,-1.7369735494528 +"Q9VMB9",-0.249435196065122,22.5760329363872,-4.07171369370171,0.0021406209811932,0.0105637745462434,-1.7455910951293 +"Q9V9M7",0.277180832993022,18.3743349984906,4.06617386258256,0.00216000582266679,0.0106261060694288,-1.75487699588303 +"Q9VM18",-0.185216103623461,22.9980497113099,-4.06447341177402,0.00216599284388836,0.0106261060694288,-1.75772795543351 +"O77410",0.251044375430528,14.23373745635,4.05633964756642,0.0021948721136946,0.0107180360738648,-1.7713691747499 +"A1ZB71",-0.267822675827347,19.2449502459631,-4.05479156726725,0.00220041420451459,0.0107180360738648,-1.77396626641265 +"Q9VV47",-0.170703423631384,20.1407877216145,-4.05378971787475,0.00220400861710768,0.0107180360738648,-1.7756471241573 +"Q9VH95",-0.150207377271887,20.9853810234146,-4.01945401714265,0.0023309913130753,0.0113025974134,-1.83331733181036 +"Q9VDT1",0.215731378570883,19.0483554172597,4.00907492164907,0.00237086678347035,0.0114626254922566,-1.85077402076555 +"Q9VJE3",-0.228463826603111,15.4137988498868,-4.00594844898038,0.00238301787699436,0.0114880746208861,-1.85603461870915 +"Q9VE75",-0.295224956502617,15.4502342098912,-4.00183576534202,0.00239910127678424,0.0115322793362424,-1.86295612821719 +"Q00174",0.221896889266301,21.9380672001126,3.99945683054374,0.00240845637698887,0.0115439805655673,-1.86696058001559 +"Q94516",-0.14938740018653,23.3801237163897,-3.98692657817253,0.00245836547998879,0.011741048467555,-1.88806214408937 +"M9PF61",-0.15323269910715,22.717507240348,-3.98487821960824,0.00246662666825771,0.011741048467555,-1.89151318361945 +"Q9VZI8",0.205651044098145,15.6370111848588,3.98387378128671,0.00247068825666176,0.011741048467555,-1.89320559784342 +"P55841",0.153883182046055,20.6319627944243,3.97768716112568,0.00249585952340074,0.0118269706961149,-1.90363188123043 +"A0A0B4KI23",-0.198592492230052,20.5451472287763,-3.96449860624355,0.00255041915834086,0.0120512723969194,-1.92587120733009 +"Q9VV75",-0.15108342979034,23.9868962499661,-3.94866634123798,0.00261756755881577,0.0123312023207344,-1.95259116990601 +"Q70PY2",0.43863816291335,17.2750635123791,3.94597035473451,0.0026291848685262,0.0123312023207344,-1.95714360335604 +"O77477",0.250164442795523,16.768155428303,3.94449694780435,0.00263555671618349,0.0123312023207344,-1.95963189201246 +"Q7KMS3",-0.177469378850006,15.6195837876786,-3.94364874406032,0.00263923215138021,0.0123312023207344,-1.96106443359958 +"A1ZB79",-0.16278594198614,20.8182318133719,-3.93869906331542,0.00266078724892447,0.0123971875173353,-1.96942540079576 +"Q9VNW0",-0.41227549895723,14.7561092811315,-3.93356779260967,0.00268332753007778,0.0124673825074366,-1.97809560910898 +"A1ZB23",-0.261325412769125,15.9002223056209,-3.91974619347712,0.00274504047928418,0.0127186875540167,-2.00146227719367 +"Q8MZI3",0.384930252280974,17.6857200273528,3.89733323622373,0.00284828552147343,0.0131604993069742,-2.0393919704722 +"A1Z992",-0.295673309044739,14.3268346501935,-3.89479646675877,0.00286022404147546,0.0131791538706659,-2.04368794472566 +"Q9VTB3",-0.189949029968346,19.7437860661667,-3.89250790902494,0.00287103927230626,0.0131806344367405,-2.04756409113909 +"P54195",0.353564840158082,18.7973970632995,3.89138753514594,0.002876349481399,0.0131806344367405,-2.04946185387158 +"Q9VM58",0.252049536074484,16.4035703440865,3.85979683374738,0.00303037848523731,0.013848414557194,-2.10301979535442 +"Q7JZW0",0.182790281503902,19.7252995947235,3.85455748939289,0.00305674537504531,0.0139307412174196,-2.11191119890811 +"Q9VGP7",0.319720986194623,15.8874410813416,3.8492196893643,0.00308385400623506,0.0139809214422322,-2.12097221926402 +"Q7K5M0",-0.262257470849462,16.7412324973188,-3.84908920099468,0.00308451983857401,0.0139809214422322,-2.12119375773714 +"Q7PL91",-0.278900996510476,18.8981402291428,-3.84661316706785,0.00309718255723604,0.0140002723725467,-2.12539776713253 +"Q7JWD3",-0.287136996036043,17.1384962045599,-3.8423695743935,0.00311901104108886,0.0140608389636114,-2.13260414863953 +"Q9VAU6",-0.222752031122095,13.3547342744031,-3.83122126448982,0.00317712439967128,0.0142842142820801,-2.15154356871911 +"Q9VJI9",-0.300726826254436,17.6911938024145,-3.81524383004218,0.00326238670593359,0.0146140742992195,-2.17870596607555 +"P35381",0.195375189083567,25.5942171798297,3.81420442201461,0.00326801541583265,0.0146140742992195,-2.18047377581681 +"Q9VKR4",0.198102691835718,19.1830725552947,3.81039815491029,0.00328871406344111,0.0146673129888229,-2.186948212131 +"A1Z6R7",-0.198581156022026,17.9415868331853,-3.80241224877006,0.00333258708135413,0.0148233473378632,-2.20053622234939 +"Q24478",-0.207010908318722,17.4737395146761,-3.79053723841625,0.00339895708950015,0.0150783521949103,-2.22075155728239 +"R9PY51",-0.255095440988942,21.5610567005652,-3.78723374378886,0.00341766425210885,0.0151211245955373,-2.22637734862912 +"A8DRW0",-0.232216918512332,21.5202855614131,-3.78291095540052,0.0034423056420111,0.0151898566425252,-2.23374035732294 +"Q9VIQ5",-0.265527688799963,16.6224461526391,-3.77488783010919,0.00348853190585187,0.0153532222136172,-2.24741027048222 +"P20007",0.337944540886763,15.1287700904774,3.76893276229663,0.00352326047934243,0.0154521969241154,-2.25756003488186 +"Q4V5H1",0.251132959132303,14.9561120891565,3.76786105067809,0.00352954857799039,0.0154521969241154,-2.25938695969399 +"Q9VSD6",-0.185632041823384,16.4764034030107,-3.76397643649418,0.00355243904271655,0.0154713971363743,-2.26600976872694 +"Q9VAG9",-0.171790116438617,17.4913894258349,-3.76396865108149,0.00355248507387972,0.0154713971363743,-2.26602304317353 +"Q7K3W2",0.202884879889318,17.5433750969865,3.75971240599727,0.00357774327041348,0.0155408223308586,-2.27328085282944 +"Q9VCE0",-0.318031096093399,15.897136904949,-3.7537134744729,0.00361366107950333,0.0156560693002897,-2.28351280755466 +"M9NDE3",0.157097830450205,16.1425202176639,3.74829523399276,0.00364642465858168,0.0157570889391561,-2.29275680799865 +"A1Z8H6",-0.414863409162805,16.8998555787378,-3.73362461286372,0.0037366972692993,0.016105454897135,-2.31779792842291 +"Q9W3M8",0.155688770131889,18.5426826003717,3.72861556833658,0.00376804924122945,0.01619872715044,-2.32635169547419 +"Q9VXZ0",-0.214026492555185,19.7269814372015,-3.72461472417436,0.0037932873031357,0.0162653039116461,-2.33318520099355 +"P29746",0.164278297223586,21.1952337149088,3.7201967955308,0.00382136076645575,0.0163309932221195,-2.3407325361812 +"Q7K204",-0.3879556775494,14.9645968408066,-3.71912742198722,0.00382818845914192,0.0163309932221195,-2.34255961912091 +"Q9VRP3",0.164410505269323,17.9418438116731,3.71370828288185,0.00386298389899842,0.0164373906722688,-2.35181986531367 +"Q8MLS2",0.141346129305148,17.3656984448703,3.71100206010206,0.00388048308121173,0.0164497325029235,-2.35644511143726 +"Q7JVK6",0.2298013214465,17.3067710508147,3.71016658724595,0.0038859021120231,0.0164497325029235,-2.35787314353924 +"Q9W1R0",0.509819383207589,13.9417218624182,3.7086943871468,0.00389547022701125,0.0164497325029235,-2.36038963106172 +"Q9VQR2",-0.156284161458206,21.3423838796138,-3.69860430277376,0.00396171024620775,0.0166872037643296,-2.37764141036599 +"O97477",0.161407346184252,20.9201240571983,3.69503788590601,0.0039854023925798,0.0167447133270103,-2.38374101318153 +"Q9VCC0",-0.177185558400815,17.5096043400956,-3.69032516454647,0.00401693561761318,0.0168347955029618,-2.39180258182629 +"Q9VH76",-0.148225711844901,19.3588078301365,-3.66974722654523,0.00415769144522088,0.0173810258912993,-2.42702228189191 +"Q7KMQ0",0.118676636807358,20.7970861118416,3.66723733048048,0.00417520664162215,0.0174106116955643,-2.43132013942409 +"Q9VCJ8",0.154806364395085,17.9005664989609,3.66378161039872,0.00419944768989751,0.0174392956938192,-2.43723833084693 +"Q7K0P0",-0.258492100241924,15.2448180052697,-3.662113664827,0.00421120017314327,0.0174392956938192,-2.44009512318204 +"Q7K3V6",0.235369366604147,16.1394091827487,3.66179478140007,0.00421345093801508,0.0174392956938192,-2.44064131685784 +"Q9VUN9",0.167920193322523,16.7705354222863,3.65039294629161,0.00429475429705855,0.0176967813842843,-2.4601754645535 +"Q9VIH9",-0.252015517577416,19.2452833905567,-3.65009780371624,0.00429688037208342,0.0176967813842843,-2.46068123760513 +"A1Z8H1",-0.134762003533584,23.0993501014658,-3.64203394969003,0.00435539338051585,0.0178772886085443,-2.47450225801047 +"Q7JX94",0.526423634869975,12.2905420255327,3.64111084567379,0.00436214416287621,0.0178772886085443,-2.47608469654744 +"Q86BS3",-0.182344936116198,19.0081998515264,-3.63559203804472,0.00440273106557716,0.0179994005328007,-2.48554657749992 +"Q26377",-0.18984101573891,16.7730582797804,-3.63397545712664,0.00441469391356404,0.0180041795790338,-2.48831856609299 +"Q9VFT4",0.21410246739868,15.7368403852488,3.62458398781254,0.00448486181788761,0.0182457305176501,-2.50442583677551 +"A1ZBA5",0.253863369922769,15.5714284400307,3.62203404457646,0.00450411257486371,0.0182701229447251,-2.50880025770296 +"Q9V3B6",-0.237505774695666,13.4943259177498,-3.62089173739074,0.00451276418059157,0.0182701229447251,-2.51076002344681 +"M9PDU4",-0.140597902966707,22.5645412918935,-3.61701303182877,0.00454226954732572,0.0183197037464203,-2.51741505784588 +"P48611",0.242778737547926,20.214541005084,3.61526011339799,0.00455566958665007,0.0183197037464203,-2.52042302014076 +"Q9VFP6",-0.149270201421814,20.2218676071311,-3.61396303745881,0.00456561135864408,0.0183197037464203,-2.52264889906779 +"A1ZBD8",0.384636524382813,14.1585573359741,3.61352903525114,0.00456894290078588,0.0183197037464203,-2.52339370390892 +"P17210",-0.146317250168533,20.8678198178634,-3.60925738143033,0.00460186831191526,0.0183555502905014,-2.53072508265396 +"Q8IRD0",0.218730568039259,17.4674467872905,3.60914854501027,0.00460271041688185,0.0183555502905014,-2.53091189264768 +"A0AQH0",0.200817041361933,16.8835559088093,3.60627680670879,0.00462498786307636,0.0183555502905014,-2.53584130647624 +"Q9VGP6",0.161437932972621,17.9475394593416,3.60539408716497,0.00463185797716998,0.0183555502905014,-2.53735662533013 +"Q9VQI7",-0.146915919713457,19.2104568404491,-3.60525959052547,0.00463290567883758,0.0183555502905014,-2.53758751317038 +"Q9VE50",-0.316000740020236,14.6768074510857,-3.59901353022877,0.00468183282419964,0.0185054434852251,-2.54831129345637 +"A1Z6P3",-0.155350337777755,17.2736383349785,-3.59630808632679,0.00470319125895939,0.018512685143978,-2.55295701277124 +"P13060",0.165323347358221,20.164568083721,3.59597063126486,0.00470586241069945,0.018512685143978,-2.55353651479086 +"Q9VGU6",0.147217755991321,18.5691727391688,3.58981090638007,0.00475489741899466,0.0186615738703132,-2.56411570668001 +"Q9VVL7",-0.161716351957999,23.5033705515209,-3.58151572702288,0.0048217698059749,0.0188796057191693,-2.57836626780422 +"Q9VJ86",0.281406866144897,16.4801297876057,3.57577883779734,0.00486858759894616,0.0190182766160239,-2.58822435985339 +"Q9VDV2",0.326634168332337,14.3545459830234,3.56490079544753,0.00495865867659064,0.0192336328944155,-2.60692237784192 +"Q9VLS9",-0.149854249305694,19.041872108744,-3.56454320183411,0.00496164870834259,0.0192336328944155,-2.60753715886652 +"Q7K0E6",0.163771735244815,16.6806075176996,3.56371760256723,0.0049685591184646,0.0192336328944155,-2.60895657249202 +"Q9W299",0.337259996232127,14.5354473081595,3.56356451377537,0.00496984159322127,0.0192336328944155,-2.60921977527702 +"Q8IP62",0.288690698495909,15.8198727514766,3.55793548381944,0.00501723658113888,0.0193721079105085,-2.6188986361696 +"Q9W403",-0.209063337285578,15.2236035766723,-3.54809940434409,0.00510118013546946,0.0196500215475985,-2.63581582122297 +"Q9VLP3",-0.185172400435157,17.5308983556154,-3.54675391410982,0.00511277539068211,0.0196500215475985,-2.63813038457238 +"Q9VR94",0.288622699034677,16.3106306498486,3.53685946693888,0.00519888651825717,0.0199350407182827,-2.65515438853698 +"Q8IN51",-0.271378941472536,17.1225849871741,-3.52933393322053,0.00526538479183771,0.0201437197999663,-2.66810625398889 +"A1ZBU5",-0.283947607477881,16.7632956673842,-3.52367745522815,0.0053159461785252,0.0202623766355345,-2.67784345175216 +"Q7K738",-0.134898459978459,19.7934597393909,-3.52314893523348,0.00532069602300007,0.0202623766355345,-2.67875334917995 +"Q9W1X5",0.134027599732832,19.4067734607383,3.51613748730536,0.00538412529162899,0.0204572232037293,-2.69082567021815 +"Q9W3T2",-0.139947182715458,16.2986280704607,-3.51157995041064,0.00542577398444148,0.0205686159228372,-2.69867427332174 +"Q95RA9",-0.140629935675463,20.5327349952375,-3.50463800263061,0.005489853488537,0.0207570389103951,-2.71063123988083 +"A1Z8Z7",0.238047896907084,18.8997262300764,3.50350710276711,0.00550036642589606,0.0207570389103951,-2.71257936873544 +"Q95NU8",-0.190671174966603,17.3853793197788,-3.50181580503707,0.0055161277089608,0.0207695282585702,-2.71549298445872 +"Q9GU68",0.118272095338522,22.197832538882,3.49871624539641,0.00554513391236217,0.0208317192923876,-2.72083301521611 +"Q9VVW3",0.194959371696166,16.4638555756651,3.49248633075483,0.00560391223571989,0.0210052260880467,-2.73156763702018 +"P14484",0.211057100390462,19.2562911100107,3.48644849319993,0.00566149271946918,0.0211734750136202,-2.74197318884005 +"Q709R6",-0.269049533856613,15.1697299122323,-3.48452209567431,0.00567999234399811,0.0211844533180509,-2.74529351156316 +"Q9W483",0.272850070741077,15.5110808863967,3.48296557925648,0.0056949855186739,0.0211844533180509,-2.74797644611937 +"Q8SX89",-0.19457752777735,15.5946864154098,-3.48218397992233,0.00570252970012283,0.0211844533180509,-2.74932371804351 +"Q9VMU0",-0.206476280743388,21.1573680104107,-3.45728340894501,0.00594835651141034,0.0220485748022943,-2.79226134556149 +"Q9VF27",-0.124657022229567,22.2673454615467,-3.43609904631125,0.00616609824117308,0.0228049930516113,-2.82881366380366 +"Q9VDH3",0.159284096907744,20.5205581840305,3.43307021951893,0.00619789497427031,0.0228718779139002,-2.83404134973406 +"Q9W127",-0.185681153933341,18.6484909480719,-3.42565070975671,0.00627650162559725,0.0231108271776958,-2.84684892291166 +"P36975",-0.155606566613695,22.3101659333048,-3.41902525633827,0.00634756420197017,0.0233210068037142,-2.85828776102572 +"Q9W1B9",0.227041800869383,20.4905204430389,3.40630696410664,0.00648630979583294,0.0237783840427458,-2.88025092655014 +"O77134",-0.168571352408982,21.71471802904,-3.39964410281228,0.00656023943827098,0.0239966653136754,-2.89175956535495 +"Q9Y136",0.21547632855081,15.2012590599801,3.38132862180433,0.00676796886042167,0.0246951034813047,-2.92340426714128 +"Q9V9X4",-0.151007715577911,18.7369171830487,-3.38021723616543,0.00678078980481868,0.0246951034813047,-2.92532486902229 +"Q7JYH3",-0.196905563824462,19.1274842862416,-3.37770046962444,0.00680991571755366,0.0247471446990839,-2.92967429364683 +"P45888",0.214266218720573,17.1329614684768,3.36538950337568,0.00695425403424597,0.025216729845918,-2.9509530494212 +"Q9VK99",0.172656282679746,20.0271487096242,3.35494940998839,0.00707912279300524,0.025613832578596,-2.96900212698868 +"P21914",-0.144799149577413,22.921784772959,-3.3530425306085,0.0071021779644061,0.0256323141759432,-2.97229916812944 +"Q9W5W8",0.187470862122218,20.676095836201,3.35198767303061,0.00711496490615211,0.0256323141759432,-2.97412309256921 +"Q9W136",-0.11170360810927,18.1844218707138,-3.34790168155392,0.00716471901457907,0.0257559295610299,-2.98118839657257 +"Q9V3G7",0.174317697904257,18.0621341559124,3.34252769893703,0.00723070188390297,0.0259372274029036,-2.99048162341859 +"Q9VQX3",-0.404169406754457,15.3891228446954,-3.3377912387479,0.00728937500794432,0.0260738941551149,-2.99867310943145 +"P48604",-0.13077591643124,20.1329798223979,-3.33693249063079,0.00730006509019105,0.0260738941551149,-3.00015834565632 +"P12370",0.259868211560676,20.7332496911371,3.33292327718061,0.0073501872173688,0.026196821108058,-3.00709271278974 +"Q9W2X6",-0.160268122200581,24.1252262035553,-3.33145409953476,0.00736864292211048,0.0262066021195742,-3.00963393070748 +"Q7K012",0.220066064055651,15.4994444467147,3.32966430533551,0.00739119055174769,0.0262308634900322,-3.01272979851268 +"A1Z7H7",0.122412142977392,17.8594146109394,3.32158251253041,0.00749389031665727,0.0265388727137671,-3.02671026931422 +"Q6NMY2",0.19473375181348,20.0138929550246,3.3188408617475,0.00752906206349956,0.0265976716790442,-3.03145338235937 +"Q7KN94",-0.137752201918751,22.6517101429674,-3.31780574365198,0.00754238531426134,0.0265976716790442,-3.03324421068114 +"Q86BN8",-0.345413355911253,14.1913950473802,-3.31643017497279,0.00756012806928721,0.026603994977998,-3.03562408688875 +"O61443",0.303797186166575,16.5061246716231,3.31425230943433,0.00758830695528697,0.0266469389503551,-3.03939212156676 +"Q9VSK4",-0.145253849704904,19.714445794296,-3.31181242018357,0.00762000425685741,0.0267020317236096,-3.04361364320327 +"Q9U6R9",-0.131865148143959,20.615722205173,-3.30213359629828,0.00774709007334941,0.0270904533382533,-3.06036152719321 +"Q8MSS7",0.554892322146088,14.0723467041167,3.28598539539527,0.00796398499364349,0.0277587159566379,-3.08830875246233 +"Q0E8P5",-0.13952586667882,17.7289267859703,-3.28543563993668,0.00797147778371077,0.0277587159566379,-3.089260301393 +"Q9V3W0",-0.165481523797396,20.9079599997511,-3.27743625896077,0.00808132576808213,0.0280826070440854,-3.10310682143169 +"Q9VI64",-0.123671664799037,20.9078606325836,-3.26553908329232,0.00824757783055422,0.0286007480693647,-3.12370259993486 +"M9PFN0",-0.167281054457483,16.6947854213985,-3.26140321258298,0.00830619085961621,0.0287442455473856,-3.13086302935265 +"Q9V3E3",0.301623200119597,15.0026620095224,3.25622761834064,0.00838014069090896,0.0289401131934496,-3.13982395643508 +"P61851",-0.120115697341721,23.5837516040717,-3.24784298391274,0.00850137691327155,0.0292981336597871,-3.15434190445748 +"Q9VDI5",0.159544503649261,16.6311109382236,3.2431882464257,0.00856945560943414,0.0294718597041982,-3.16240203304837 +"Q9VWD0",-0.150255191183156,18.2050202454115,-3.23444117273809,0.00869890222175306,0.0298554915758932,-3.17754928831232 +"Q9VMI3",0.167486379045926,20.0989707894151,3.23160606000882,0.00874128697636183,0.0299393566254036,-3.18245905962313 +"Q9VVL8",-0.179552948879159,15.9257922612402,-3.22805698186934,0.00879464367148599,0.030060380418112,-3.1886054016263 +"Q9VSL5",0.167949966347702,17.5091643042536,3.2245063799941,0.00884835697805971,0.0301821256429521,-3.19475453656074 +"Q9VVA6",-0.171018432415664,19.2611954909413,-3.21483223599678,0.00899641726933047,0.030595274490481,-3.21150949343946 +"P00334",-0.138476219188934,25.205458996531,-3.2142011885951,0.00900616293454806,0.030595274490481,-3.21260245864244 +"Q7K1Z5",-0.2395398762109,16.1231883511383,-3.20324664780712,0.00917707281790155,0.0311125151631296,-3.23157616008726 +"M9PHA0",-0.168297861763325,17.4597850726352,-3.19958543726615,0.00923493087047479,0.0312451616469614,-3.2379177488989 +"Q9W1X4",0.230004102656466,15.0759947573471,3.19511289477463,0.00930611691138335,0.031422273295926,-3.24566478110705 +"Q9V420",0.173515785576305,17.5192363649313,3.18980540413057,0.00939132063330154,0.0316459046794888,-3.25485822460713 +"Q9VXC1",-0.116907040254294,18.3419854825272,-3.18771839346081,0.00942504250877696,0.031695505856129,-3.25847331471094 +"Q9TVP3",-0.164030387181526,22.9322496698029,-3.18087245822774,0.0095365304132321,0.031965925488167,-3.27033190176046 +"P48609",0.14350174862404,16.9832262476158,3.17896180898385,0.0095678857749335,0.031965925488167,-3.27364158192524 +"Q9W1I8",-0.128907539023114,17.9917901196294,-3.17711565740259,0.00959828275201801,0.031965925488167,-3.27683955077628 +"Q9W3L4",-0.215403461896168,17.5834798481119,-3.17668156037661,0.00960544449888746,0.031965925488167,-3.27759151073154 +"Q9VXE8",-0.222231069790125,16.2542674699572,-3.17590160369739,0.00961832597085247,0.031965925488167,-3.27894258401371 +"Q9VBS7",0.13135545994864,19.8240097463065,3.17577367940676,0.00962044040471213,0.031965925488167,-3.27916417996565 +"Q9VYY3",0.132037680559403,17.505449745367,3.17328613397618,0.00966165106182252,0.0320390337398011,-3.28347322327065 +"Q9VSU6",-0.151361177739819,21.5985284624957,-3.17001199034368,0.0097161681933975,0.0321125880090555,-3.28914487546323 +"Q9W265",0.176984946565856,17.0413490066314,3.16964273389987,0.00972233629770566,0.0321125880090555,-3.28978452348697 +"Q9VMT5",0.180928907947663,16.3998077042656,3.15792776049854,0.00992011489419845,0.0326837024018238,-3.31007800784475 +"Q9U9Q2",-0.129990515266849,15.6265036729973,-3.15708883814077,0.00993443472285652,0.0326837024018238,-3.31153125107006 +"Q9VCW2",0.282292394496775,15.3549830949299,3.14881787215797,0.0100767490933653,0.0330866485979003,-3.32585881152493 +"Q9VII1",-0.175911839345446,19.4019412509131,-3.13986421942666,0.0102331572025684,0.0335341968838588,-3.34136885233809 +"Q7KLE5",-0.130398479472401,21.4514752548699,-3.13387136426019,0.0103392259761063,0.0338153508395006,-3.35174989511096 +"Q9VD64",-0.158354299263443,15.7500442822161,-3.12263916603272,0.0105410574679293,0.0344079918914012,-3.37120628227019 +"Q9V3V6",0.11535411758625,21.5832902135523,3.11950247999417,0.0105981350034851,0.0345267366910414,-3.37663951256825 +"Q9W0A8",0.160047383456604,18.9119426254386,3.11035810184377,0.010766337679759,0.0349287647574129,-3.39247859969226 +"Q9V3H2",0.190969882001681,18.4135800907668,3.11016296747158,0.0107699565008095,0.0349287647574129,-3.39281658701278 +"Q9VJD4",-0.119956371735519,20.7859898639028,-3.10938691817527,0.0107843608213835,0.0349287647574129,-3.39416075916854 +"Q9VLP2",-0.143327647683719,19.367404950131,-3.10347611600595,0.0108947178556148,0.0352178088821038,-3.4043985072803 +"Q9VHG6",-0.200809727814267,15.672719462445,-3.10192713503458,0.0109238277449257,0.0352436067283096,-3.40708134976119 +"Q9W425",-0.385222732754725,14.0370976998163,-3.10055063568255,0.0109497626839379,0.0352590813837999,-3.40946543292629 +"Q9VWL4",-0.15645109233018,16.2390719901914,-3.09644978506276,0.0110274001116016,0.0354406616303495,-3.41656794704937 +"Q9VSX2",-0.157133321508354,17.9776076170942,-3.09326348796778,0.0110881100453664,0.0355672452993675,-3.4220863613645 +"Q9VM11",0.177465316465552,17.7951952421133,3.08917103183308,0.0111665850330333,0.0356821697053258,-3.42917399575609 +"Q9V3Y7",-0.31007758984612,19.6338571286627,-3.08916390561959,0.0111667221739689,0.0356821697053258,-3.42918633730886 +"Q8SZK5",-0.516435491642008,15.5690262492624,-3.0824217526183,0.0112972433156469,0.0360302138632868,-3.44086245947319 +"Q9V3L6",0.259278102285151,15.793159514967,3.0795013818329,0.0113542596697489,0.036142948719735,-3.44591979306987 +"Q9W022",-0.159674497467154,21.1946251549918,-3.07581944971512,0.0114265620719257,0.0363038200685181,-3.45229578062664 +"Q9VZ58",0.193927875638099,18.1201971310883,3.07009023867668,0.0115399999089453,0.0364973866373055,-3.46221662361994 +"P20348",-0.224948240709328,17.4943805435423,-3.07000081588005,0.0115417795237324,0.0364973866373055,-3.46237146622738 +"Q9VN50",0.226117168093566,17.8485414752068,3.06943082333723,0.011553129583032,0.0364973866373055,-3.46335845011134 +"Q9VN01",0.195421260741554,15.9963390789222,3.06143589196726,0.0117135315237329,0.036916673983857,-3.47720168591114 +"P06002",-0.392528019038796,16.6984895206547,-3.06061551917001,0.0117301182322807,0.036916673983857,-3.47862209982865 +"P41094",0.117072667591227,21.1900374089588,3.05679613133944,0.0118076555190536,0.0370907145118295,-3.48523492195117 +"Q9V3Z2",0.134847433275512,16.1492699041948,3.05520086850772,0.0118401949970391,0.0371230173967315,-3.4879968521378 +"Q9V3Z9",0.140032609628442,21.7448785920388,3.05008718403369,0.0119451174751081,0.0373817184774489,-3.49685000880679 +"Q24185",-0.139348583673371,18.7226106587089,-3.04572009516491,0.0120354692311562,0.0375939375984429,-3.50441019439839 +"Q9VHD3",0.117526044703343,15.6405995926894,3.04449239649122,0.0120609942337732,0.0376000713637718,-3.50653548185233 +"A1ZB68",-0.15202632209024,19.3780462076846,-3.04345924985567,0.0120825169370394,0.0376000713637718,-3.50832395267797 +"Q9VNA5",0.216549210917567,17.3061510904575,3.04150616303683,0.0121233106846321,0.0376567639142762,-3.51170486118012 +"Q0KI81",-0.200103041537298,15.6247414000698,-3.03805678498997,0.012195699303625,0.0378112015584508,-3.51767573447955 +"Q95RG8",0.417779220036577,13.33556278473,3.03606495871563,0.0122376995818965,0.0378710257933271,-3.521123464649 +"Q8IPG8",0.294683463684663,15.8996950726651,3.03401275579993,0.0122811266652174,0.0379350356992271,-3.52467560835606 +"Q9VA32",0.227664329655973,17.2144298288652,3.03088080429056,0.0123477044475104,0.0379622132086895,-3.53009649211715 +"Q9VPZ5",-0.124167719509874,18.4097192194926,-3.03073345078065,0.0123508458431586,0.0379622132086895,-3.53035153065715 +"Q9VIV6",0.591132614740927,14.7645734609891,3.03038852074092,0.0123582025013899,0.0379622132086895,-3.53094853139836 +"Q7K2L7",-0.215889601543985,18.3857853767815,-3.02812571936331,0.012406573937,0.0380407450862428,-3.53486488957655 +"Q8I941",-0.132808316834872,19.0576005037959,-3.01759381972742,0.0126342542033178,0.0386068994394849,-3.55309136083432 +"Q9VSL4",-0.159640424658672,20.9450271905823,-3.01744460473277,0.0126375102481767,0.0386068994394849,-3.55334957122792 +"Q9VF24",0.142369520168234,16.0603536342658,3.01036668071687,0.0127929410331089,0.0390102845397177,-3.56559693531614 +"P35220",-0.106737457079511,19.3902532606664,-3.00777419709539,0.0128503559586346,0.0391138571879607,-3.57008252078933 +"Q9VHN6",0.244104594567458,15.0018577241448,3.00142285312568,0.0129921243691813,0.0394733396134689,-3.58107097070652 +"Q494G8",-0.173033277345622,15.1221226754694,-2.99939307490312,0.0130377647481683,0.0395399847271723,-3.58458243548267 +"Q9VAN0",0.146911875892748,20.4203511681605,2.99282124691882,0.0131866533258608,0.0399189432804643,-3.59595066721948 +"Q9VZD9",0.333377441345453,14.400322385628,2.98654345317035,0.0133304901112439,0.0402812635970196,-3.6068089919319 +"Q9VZF9",-0.153348843922142,19.1541645894424,-2.98229978477847,0.0134286208307911,0.0405044114751528,-3.61414828009323 +"Q9VZ64",-0.155761178310044,19.4579614242135,-2.98013015967984,0.0134790737779406,0.0405832040823192,-3.61790034292672 +"Q8SYQ4",-0.139880898799262,21.0323246279439,-2.9779589865753,0.0135297549946102,0.0406623987946124,-3.62165492145712 +"Q9VQM2",-0.156003454316224,20.1229383300911,-2.9700776682788,0.0137153546067653,0.0411460638202958,-3.63528258193627 +"Q8SX68",-0.182700152464569,17.5908799552316,-2.96704032410542,0.0137875684759893,0.0412884456336627,-3.64053388471076 +"Q9V3P3",0.121684874335873,19.400048149005,2.95375810085473,0.0141079077557963,0.0421720253345307,-3.66349360053428 +"Q9VRP4",0.305357059886484,14.3316507082212,2.95105313048186,0.0141740636808683,0.0422797596976634,-3.66816858075414 +"Q9VU68",-0.121375141473209,19.1428546115085,-2.95021426964886,0.01419464354358,0.0422797596976634,-3.66961831785505 +"Q9VBV5",-0.132251922074794,17.2230439924558,-2.94144074729027,0.0144117052187589,0.0428497759445452,-3.68477917037076 +"Q7K188",-0.172414158844823,22.0320236249183,-2.9376777541075,0.0145058295652475,0.0430528891723003,-3.69128071765728 +"Q9VJ80",0.197152229719123,16.4427565795115,2.92806786988249,0.0147490334786619,0.0436969588675099,-3.70788147811441 +"Q9VN91",0.169753712799469,19.5804282233065,2.92150850936118,0.014917398421149,0.0441174123519087,-3.71921016411655 +"A8DYP0",-0.377223767032293,15.3860588990668,-2.91861114825354,0.0149923846482289,0.0442244572651647,-3.7242135651751 +"P07668",-0.318482123066055,14.6935952294134,-2.91806275321739,0.0150066203909372,0.0442244572651647,-3.72516053407941 +"P54622",0.197605761751564,17.8432193096859,2.91216923907793,0.0151604742129988,0.0445533870165718,-3.73533654755453 +"Q9VRR3",-0.131369306565379,19.81374158692,-2.91174323081812,0.0151716569696719,0.0445533870165718,-3.73607204782394 +"M9NEW0",-0.155875161293139,18.3485185226404,-2.90890035120744,0.0152464963987418,0.0446944745045717,-3.740980031129 +"Q9VJZ6",-0.165974027249835,19.7710720341031,-2.89288345180378,0.0156751642152031,0.0458704805455418,-3.76862416878856 +"Q8SX57",-0.108629402819311,17.973793695599,-2.885876880625,0.0158664887505024,0.0462860321642684,-3.78071282401184 +"Q9V3I0",0.308880542450574,16.3042814249873,2.88520076132476,0.0158850753302392,0.0462860321642684,-3.78187921265885 +"Q9VLS4",-0.164150701061864,20.6126961650203,-2.88464326306455,0.0159004175240562,0.0462860321642684,-3.78284094659128 +"Q9W229",0.170830007007396,19.1350299285641,2.88182551017391,0.0159781902228146,0.0464313959784927,-3.78770155757379 +"Q9VSL2",-0.119346584607062,20.4871469776389,-2.87846638284207,0.0160714067677771,0.0466210547628734,-3.7934954588082 +"Q95RQ1",0.636405896617436,12.0668652736604,2.86563368518452,0.0164325928262055,0.0475128896827266,-3.81562365467422 +"Q9VKC8",0.148224919883983,17.646268161561,2.86552053091758,0.0164358137571542,0.0475128896827266,-3.8158187306194 +"Q8IQW5",-0.13074661780659,21.9315195527309,-2.8588031426496,0.0166281679156769,0.0479857856113305,-3.8273980135805 +"Q7JR58",-0.136878970525434,22.8555807436537,-2.85751881548528,0.0166652023757763,0.0480095985540499,-3.82961159669861 +"Q9VAF5",0.131324033965607,16.0042141074372,2.85526654651436,0.0167303487914085,0.0480146251805654,-3.83349321727055 +"Q8MT58",0.118581016926051,21.5981769766415,2.85289652434346,0.016799178129298,0.0480146251805654,-3.83757743828544 +"Q9VVG0",0.111458213771567,18.0645139256447,2.8524812869802,0.0168112666252157,0.0480146251805654,-3.83829297417223 +"Q9VPC1",-0.170079500973657,16.1561498197639,-2.85183816811295,0.0168300065549462,0.0480146251805654,-3.83940117358276 +"Q9VRQ9",0.145482051529862,14.6987287678438,2.85091545942765,0.0168569302323805,0.0480146251805654,-3.84099110692063 +"O46106",-0.133621534928796,17.0170521734791,-2.85077660562785,0.0168609855935497,0.0480146251805654,-3.84123036338506 +"Q9W2M0",-0.132140269366676,17.8103476799311,-2.85052120255082,0.0168684474555224,0.0480146251805654,-3.84167044063084 +"A1Z9I0",-0.12449765645465,19.4427048213335,-2.84740661774218,0.0169597111422551,0.0481921604519277,-3.84703675532566 +"Q9VB46",0.215371841454878,15.1609683871979,2.8413344777283,0.0171390687212896,0.0486189908624338,-3.85749704712782 +"Q9W140",-0.317680470096871,13.9559224845882,-2.83693910400185,0.0172700881352907,0.0489074821895837,-3.86506733070879 +"D0UGE6",-0.260342662042577,15.2920659498837,-2.82952828725065,0.0174932790027963,0.0494555752146852,-3.87782829996641 +"Q9VJD0",0.211274186505474,16.0763308983638,2.82523689628662,0.0176238463548819,0.0497403988493114,-3.88521611287819 +"Q9VSY4",-0.102112980644709,20.4278142645296,-2.8224343773009,0.0177096426052338,0.0498981146377195,-3.89004008558349 +"Q9V419",0.176191501091864,16.3801488219581,2.81550061666407,0.0179237213389128,0.0504161335468912,-3.90197280120745 +"Q9VP55",0.179551605735007,17.1141602092794,2.79325789548018,0.018628167341427,0.0523093992011787,-3.94022809997264 +"Q9VVH3",-0.131220895573829,19.9078193306557,-2.77699855880732,0.0191606382828485,0.053714192698809,-3.9681687374745 +"Q9VCT4",0.322488925477685,13.3554192826763,2.77524572733382,0.0192189451153583,0.0537872490812376,-3.97117961338834 +"P92177",-0.123866027019691,24.1779886226673,-2.77361595159892,0.0192733181779532,0.0538490698841306,-3.97397889047146 +"Q8I725",0.151748131698657,18.90022538463,2.76614849057388,0.0195244285861602,0.0544594429460122,-3.98680210060014 +"A0A0B4KGY6",0.135621454402813,21.7639010724704,2.76253537634741,0.0196471023010394,0.0546753549188331,-3.99300492065033 +"Q9VVT6",-0.111967304390269,20.5162392948745,-2.76193990793964,0.0196673938556953,0.0546753549188331,-3.99402708684678 +"Q9VFJ2",0.243544521267179,13.9112292591442,2.75133689951145,0.0200322441881551,0.0555969772143807,-4.01222288754602 +"Q9VBT2",0.599683257196203,12.8326485584947,2.74729421964356,0.0201731312488289,0.0558949882442635,-4.01915796157962 +"Q9VH72",-0.572468400497534,18.6944157827014,-2.74462358755444,0.0202667462425714,0.0560612483127847,-4.02373854783053 +"Q9VYF0",0.189810365637978,16.1730273187074,2.74077141760056,0.0204025447597394,0.0562532279954716,-4.03034455533875 +"Q9W4Y1",-0.148025899151191,17.5790132835577,-2.74074161596125,0.0204035988832496,0.0562532279954716,-4.03039565638917 +"Q9VVH5",-0.133660644360951,22.5625631567724,-2.70113354637849,0.0218538452216124,0.0601138400127497,-4.0982387417851 +"Q9VC48",0.141539918047386,18.4137355498786,2.70055011855178,0.0218759597648316,0.0601138400127497,-4.09923693933153 +"Q9W4Z2",0.315100856164051,13.8309472739698,2.68982182918998,0.0222866156145995,0.0610780921604468,-4.11758603729653 +"Q9VYV4",-0.16631456781443,15.5615416931137,-2.68947304159605,0.0223000947995876,0.0610780921604468,-4.11818238790486 +"Q9VVU2",0.129024244584397,20.0929450560278,2.68437386150267,0.0224980880013036,0.0614364410821206,-4.12689943419252 +"Q9VV72",0.115357303896172,19.3998564762219,2.68420702291671,0.022504595624206,0.0614364410821206,-4.12718459899043 +"Q4V5I9",-0.193474036417891,16.0053998890226,-2.68134059710363,0.0226166956724774,0.0616415823230267,-4.13208351226764 +"A1Z843",0.127594362831765,17.4886573054546,2.67524760895271,0.0228568331457837,0.0621662071646629,-4.14249395490244 +"Q9V3U6",0.1910784987572,21.1093752964266,2.67456929353577,0.0228837237404694,0.0621662071646629,-4.14365267610629 +"Q9W158",0.144788903937238,17.0014845355471,2.67192499716381,0.0229888535394391,0.062251260482702,-4.14816928085778 +"Q9V3W2",-0.135586604434703,21.5580358029291,-2.67190440442531,0.0229896741350986,0.062251260482702,-4.14820445144487 +"Q9W236",-0.131669096682096,16.5541939228873,-2.66889601051307,0.0231098691731802,0.0624753027242537,-4.1533420313601 +"Q9W1G0",-0.105801369833852,21.7951866620571,-2.66542831154552,0.0232491920258748,0.0627502464387688,-4.15926276862061 +"Q9VW00",-0.178997212157885,15.7867579748493,-2.65938487829863,0.0234940038156973,0.0633085595550616,-4.16957815025496 +"Q9W4X7",0.124555671808121,19.1490467928292,2.65746966582081,0.0235721211118052,0.0633264812307858,-4.1728463328023 +"Q9V6U9",-0.133401039792627,21.9029067226191,-2.65696389144846,0.0235927936708938,0.0633264812307858,-4.1737093347631 +"Q9VMF0",-0.153917297773697,13.7866576497953,-2.65643204976083,0.0236145511544058,0.0633264812307858,-4.17461678447416 +"Q961Q8",0.269958506924787,15.3995501851485,2.65423908982883,0.0237044757132335,0.0633929301013089,-4.17835816595374 +"Q9VDC6",0.246941843594069,16.9158321893537,2.65397468868777,0.0237153407573242,0.0633929301013089,-4.1788092209051 +"Q9VGF7",-0.120656248167062,20.0379004316469,-2.64783663744363,0.0239689699876867,0.0639683871031382,-4.18927820078295 +"Q9VRL0",-0.144127812943989,22.7783865413358,-2.64630747716608,0.0240325750663369,0.0640356792502396,-4.19188564860985 +"Q7K1W5",-0.0935553107683766,19.8271897995959,-2.64264597822731,0.0241855576646856,0.064203973216875,-4.19812796135941 +"Q94529",-0.111931337975026,19.6532605551803,-2.64250813736346,0.024191335736565,0.064203973216875,-4.19836292935787 +"Q9VJ22",0.574157495402437,13.1132308901598,2.64203425723099,0.0242112105236297,0.064203973216875,-4.19917070397865 +"Q9VRP2",0.106100243965951,20.4178529289917,2.63775067719224,0.0243916047981771,0.0645796774656499,-4.20647129625496 +"O46098",-0.14237727855323,18.0424649685857,-2.63660554936704,0.0244400555820501,0.0646054084165762,-4.20842259760576 +"Q9W0X2",-0.176087524691248,16.0483603597885,-2.62839280752902,0.0247903554193656,0.0654277101890853,-4.2224125963572 +"Q7JWQ7",0.190380478799714,14.4344496642639,2.62149916648296,0.0250882409216963,0.0661092983529059,-4.23414934377508 +"P35992",0.137762037387189,15.8472117383929,2.61552275333066,0.0253493679090011,0.0666920278741544,-4.24431979173402 +"Q9Y162",-0.128872090291232,20.2159846943879,-2.60858884556655,0.0256557148830094,0.0673917046060782,-4.25611414502507 +"Q9VXQ5",0.0990696092735774,20.3486265476028,2.60189770764736,0.0259548198088414,0.0680701878005464,-4.26748984379433 +"P36241",0.121696234377762,19.84981781317,2.58899606373974,0.0265413453775867,0.0694991586967263,-4.28940796018532 +"Q9W1V3",0.143555684967909,16.3461163048003,2.58746734074356,0.0266117083523609,0.069574184219025,-4.29200361828552 +"Q9VLB1",0.199997585579565,16.6902531921331,2.5813892093869,0.0268933020812414,0.0702003566064328,-4.30232078769534 +"Q9VKY3",0.112255347213154,18.7400257728273,2.57575640197725,0.027156899721008,0.0707776698978772,-4.31187766525234 +"O01666",0.112629764478783,22.6297958677089,2.56974015124737,0.0274412682983091,0.0714072317029323,-4.32208038827378 +"Q9VQB4",-0.0999993072561018,21.792366390834,-2.56874055279242,0.0274888009015242,0.0714195014076983,-4.3237750911816 +"Q95RS6",0.122832966634888,17.1035404425473,2.56405538438461,0.0277126772767367,0.0718891845996841,-4.33171642330565 +"Q9VMH9",0.109996516698725,20.0297063244427,2.55898822229335,0.0279568385951764,0.0724099484111091,-4.34030181870288 +"Q9XZ19",-0.152028487004163,16.1242516033745,-2.55670530838746,0.0280675352540434,0.0725577657359359,-4.34416863698806 +"Q9V9A7",0.553870469291105,16.0258458868216,2.55601877845435,0.0281009092718313,0.0725577657359359,-4.34533134418781 +"B7Z0C9",-0.198559179300739,15.9953493629152,-2.54406042058869,0.0286885725009674,0.0739606474986301,-4.36557331586868 +"Q9VVC8",-0.101410556935798,16.6464966408648,-2.53539587375111,0.0291219441102575,0.0749620413208479,-4.38022699919844 +"Q7KSQ0",0.133304143861277,20.8420983461984,2.52979639677044,0.0294054451132533,0.0755751655607189,-4.38969112272693 +"Q9VN73",0.113017639092259,18.3587561219203,2.5285964492342,0.0294665520631685,0.0756157059097924,-4.39171864686397 +"Q9VU70",-0.354254373266816,14.7984382872286,-2.52642688091259,0.0295773551105201,0.0757119252561929,-4.39538397360791 +"Q9VJN0",-0.222277534922263,17.5641247858464,-2.52608546203079,0.0295948292967852,0.0757119252561929,-4.39596071188451 +"Q9W289",-0.144934662408449,17.4894702995801,-2.52390979562788,0.0297064218966351,0.0758810286731811,-4.39963552405287 +"Q7KMP8",0.149150907103788,19.1886308254548,2.52125588727232,0.0298431065708502,0.0761136112540951,-4.40411714952821 +"Q9VKC7",0.315375991005357,13.7385591135474,2.5191079423181,0.0299541868458823,0.0762802803953155,-4.40774358259167 +"Q6IGM9",-0.542998986007357,14.8786523123864,-2.51786779821632,0.0300185061748237,0.0763275431396433,-4.40983703305857 +"Q9VY42",0.127163384749997,15.1635186768384,2.51667705566046,0.0300803915523295,0.0763684826625351,-4.41184687045198 +"Q9VVB4",-0.156140183832145,16.100091598022,-2.51551491023187,0.0301409120464821,0.0764058378321158,-4.41380823103796 +"A1Z6V5",-0.127418213454835,20.1211593081969,-2.51447180842749,0.0301953354501246,0.0764276472394656,-4.41556850542838 +"O97418",-0.109696936404085,21.0175986213052,-2.51250534272847,0.0302981987382727,0.0765234453466046,-4.41888653916684 +"Q8MKN0",0.183548675225321,16.599865847244,2.5119952302662,0.0303249384736844,0.0765234453466046,-4.41974715925319 +"Q9V8Y2",0.139564227837667,19.8993720698676,2.50922737287596,0.0304704338674343,0.0767744466629612,-4.42441616412915 +"Q7KN75",0.131018883029672,19.3224921961056,2.50133116312927,0.0308892998094734,0.0777124465794895,-4.43772948638074 +"O46067",-0.101682874613601,19.7682448486216,-2.49926435553327,0.0309998705708111,0.0778731688435435,-4.44121259648431 +"P08985",-0.132293269906789,20.6730399491593,-2.49238455118233,0.0313707456082035,0.0786558108853768,-4.45280199857294 +"Q9VZD8",-0.12821106367948,13.7295135643944,-2.49173958733821,0.0314057374398447,0.0786558108853768,-4.45388808915114 +"Q9V7D2",-0.142359417542309,21.3962266095718,-2.4805789334122,0.032017368961046,0.0800674234288226,-4.472671534384 +"Q9VNI4",-0.160301802801698,16.539444444272,-2.47567885705366,0.0322895947507793,0.0805411363669977,-4.48091199075253 +"Q9VZJ8",0.283289192559598,14.7856866804976,2.47543199354074,0.0323033694421592,0.0805411363669977,-4.48132703660947 +"Q9VWF0",-0.183956639965867,16.4988725008125,-2.46897400950067,0.032665777625909,0.0813231598209198,-4.4921811100475 +"Q8SYQ8",-0.212256519735714,16.0712838826449,-2.46718232384281,0.0327670296766781,0.081405636386211,-4.49519120481353 +"Q7KN90",-0.0912804381013252,17.3137817535752,-2.46666158868076,0.0327965153786174,0.081405636386211,-4.49606595739362 +"Q0E8V7",-0.162514815329395,19.7828727176982,-2.45848094001279,0.033263167533855,0.0824412532637,-4.50980215563611 +"Q9VGT8",0.13966085138337,15.2910497028195,2.45606732268208,0.0334020906465919,0.082662740650616,-4.51385271280003 +"O76742",0.137841312862349,17.9096747290843,2.45307626070922,0.0335750413047429,0.0829676576241647,-4.51887096085046 +"Q9VD29",-0.139440856213255,20.7618293288761,-2.45052345117178,0.0337233464927891,0.08321086087274,-4.52315271544052 +"Q9VFF0",0.167418438242777,23.610212242945,2.44308329436733,0.0341592599411723,0.0841619580234495,-4.53562543707389 +"Q9VZG0",0.0952727852030826,21.6491495802208,2.43585846971978,0.034587847101124,0.0850922256116149,-4.54772789891572 +"Q9VCD9",-0.228350291494195,18.5313389090041,-2.42087297805085,0.0354936881780264,0.0871921529910869,-4.57280075871938 +"Q7KY04",0.159400836841641,13.9974073359323,2.41913489016516,0.03560024475289,0.0872629591526883,-4.57570619896806 +"Q9I7T7",0.182881212245034,14.4947377761041,2.41869694099833,0.0356271433950724,0.0872629591526883,-4.57643820098744 +"Q9VW57",0.141516851384775,16.5419271413126,2.40888827426945,0.036234828878921,0.0886212530352495,-4.59282346984422 +"Q7KLW9",0.136301534720594,17.1689296257497,2.40601722607634,0.0364146132659705,0.0889305635836586,-4.5976161492838 +"Q9NK57",-0.141909450372111,15.6088987914084,-2.39626330024215,0.0370319448762291,0.0903059708385237,-4.61388694311177 +"Q8MKK0",-0.303475615449456,15.9297062967274,-2.38902707203485,0.0374965306426641,0.0913054206014069,-4.62594621467936 +"Q9VFV9",-0.0979805387452259,21.3903294678431,-2.38400848038459,0.0378220781212108,0.0918612474548209,-4.63430384729424 +"Q9W3K9",0.127685112848322,19.2503969183469,2.38381109809674,0.037834938250277,0.0918612474548209,-4.63463245500863 +"Q7KUA4",-0.0942624169607456,18.8290473055139,-2.382731714972,0.0379053393193425,0.0918984098614292,-4.63642930907186 +"Q9V400",-0.231533906453922,14.2942808943639,-2.37721142047595,0.038267396939688,0.0926415356972417,-4.64561541173285 +"Q9Y171",0.404445211555512,15.0372266751598,2.36910770364412,0.0388050155192795,0.0938069070813886,-4.65908961525569 +"Q9W227",-0.078702478026635,22.0050441178417,-2.36714003533081,0.038936662977123,0.0939889346538946,-4.66235932639094 +"A0A0B4LFA6",0.12640424311823,19.5101335294313,2.3552427452181,0.0397419831681362,0.0957942600064324,-4.68211268888018 +"Q9VYV3",0.0998793322470384,20.5006004152391,2.35409218597262,0.039820719388717,0.0958455410395094,-4.68402146843671 +"Q9W260",0.16554614742158,17.3449281669426,2.34920297598066,0.0401570013089357,0.096515674615713,-4.69212965130386 +"Q8T3L6",-0.116290562869104,17.4927006860345,-2.34106747108205,0.0407227047558769,0.0977344914141044,-4.70561049825173 +"Q9V9S8",0.140737838481446,19.9356788993537,2.33669289795991,0.0410300909675954,0.0982188451509491,-4.71285363314274 +"Q7JZV0",-0.169778182363173,15.0888844868392,-2.33651998540818,0.041042287212357,0.0982188451509491,-4.71313984804826 +"Q9VZZ5",-0.151049538349419,18.4932303163811,-2.33479115171586,0.0411644231867844,0.0983699969563844,-4.71600116792349 +"Q9VEC8",-0.107341105879863,16.5504694152478,-2.32996207130925,0.0415074567931808,0.0990478368111954,-4.72399022942244 +"Q9VWP4",0.201941431564302,15.1202250804107,2.32826072428379,0.0416289729685665,0.0991692255662092,-4.72680369912464 +"O77263",-0.136593059532304,15.5725073927185,-2.32758635466455,0.0416772344855592,0.0991692255662092,-4.72791871448347 +"Q9U616",-0.172435672026545,19.7214162740006,-2.32429704263,0.0419134161794378,0.0994944174054668,-4.7333559311899 +"Q9VF39",-0.242317215950257,16.02833649669,-2.32402234898518,0.0419331987026638,0.0994944174054668,-4.73380989357073 +"Q9VD68",0.137626523868464,14.807542698942,2.32243055990286,0.0420480128559176,0.0995373998818658,-4.73644018629889 +"Q59E14",0.217650743058103,14.558861429415,2.32211702757015,0.0420706636191339,0.0995373998818658,-4.73695820691 +"Q9W461",-0.17472020292551,16.3556724529583,-2.32113441795013,0.0421417279029243,0.0995643089831129,-4.73858154515385 +"Q9W1X8",0.113488143481565,16.108538355978,2.31486273777362,0.0425980640097075,0.100500100096453,-4.74893786918168 +"Q9VSN9",0.172517294064189,16.4692218799586,2.31059568076018,0.0429112808451173,0.101096068431717,-4.75597909821635 +"P19107",-0.0933619950893494,24.0080751064186,-2.30878322850271,0.0430449967448895,0.101268060042984,-4.75896868604167 +"Q9VZE4",0.126035317908752,17.6107197443444,2.30789967549754,0.043110328528026,0.101278912654574,-4.76042581942432 +"Q9Y0Y5",0.116082144498588,18.6116459324699,2.30535446194123,0.0432990654316514,0.101473472543754,-4.76462235954144 +"Q7K3J0",0.0985288936019657,20.3051725956809,2.30514254964365,0.0433148156181972,0.101473472543754,-4.76497169534009 +"Q9VT75",0.155045963964103,15.6049191997584,2.30355941973953,0.0434326563321234,0.101606831363228,-4.76758115826373 +"Q9VFP0",-0.144467954982929,16.5573444425752,-2.30155888241171,0.0435820118578966,0.101813439466347,-4.77087783594187 +"Q9W552",0.0947792177132669,16.147577430392,2.29261801234786,0.0442556272921038,0.103193331275971,-4.78560053812756 +"Q9VBC9",-0.179968913500874,15.5991175898512,-2.29208084499325,0.0442964179817717,0.103193331275971,-4.78648450598348 +"Q9VMX4",-0.157445436846857,17.3490560696306,-2.28554838829635,0.0447953961225799,0.104167430076767,-4.79722914967324 +"Q24583",-0.101856506591034,21.2825994283386,-2.28421398368699,0.0448979916665689,0.104167430076767,-4.79942279616388 +"Q9VLT3",0.0979387178828404,19.3749954088305,2.28416310709355,0.04490190780887,0.104167430076767,-4.79950642486003 +"A1Z9E3",-0.0981059760861882,21.7735380038497,-2.2795448581447,0.0452587713297335,0.104849486913883,-4.80709522757345 +"O02649",-0.0999350580322904,23.3824439805622,-2.27596187824235,0.0455375273838441,0.105348953781209,-4.81297947321936 +"Q6IDF5",-0.146964324766667,19.6520350598159,-2.26998165180808,0.046006494871861,0.106286472917263,-4.82279403258057 +"Q9VEX6",-0.104690785653592,20.7991687881599,-2.26763366225135,0.0461918981083513,0.106567200615118,-4.82664519858903 +"B7Z0Q1",0.112652783777403,17.6642858902534,2.26559082175938,0.0463537937374761,0.106714304664036,-4.8299948083043 +"A8JNT7",0.139778067352072,16.8172469075921,2.26521527413067,0.0463836156363466,0.106714304664036,-4.83061048042214 +"P45889",0.101320527239547,19.1527875064974,2.25696733931023,0.0470432735497093,0.107935524226603,-4.84412372555977 +"Q94915",-0.166958351382808,17.0908600738439,-2.25696029754571,0.0470438405951681,0.107935524226603,-4.84413525574156 +"Q9W2E8",-0.147290156267761,19.3657917184177,-2.24334986264007,0.0481522629791782,0.110041505054117,-4.86639873495684 +"Q6WV19",0.191216976347427,13.5901941557665,2.24307220586296,0.0481751354895769,0.110041505054117,-4.86685245036287 +"Q9VN88",-0.142064208044712,17.0693186726126,-2.24253643546298,0.0482193002452738,0.110041505054117,-4.86772789291365 +"Q9VE85",0.160097588117029,15.7632991566394,2.24245976427974,0.0482256236178416,0.110041505054117,-4.86785316701044 +"Q9VAC4",0.0825722472219468,19.363841019646,2.24007933090202,0.0484223458406798,0.110246516038209,-4.87174187647669 +"Q9VCA5",0.217586258147604,14.203064576896,2.23977369979612,0.0484476596259037,0.110246516038209,-4.87224105950599 +"A1ZBU8",-0.15334209160762,20.8316902004381,-2.23595896566638,0.0487646896320568,0.110816760635246,-4.87846968607889 +"A0A0B7P9G0",0.19468867868569,14.3775246891028,2.23398288745908,0.0489297007560988,0.111040463756698,-4.88169478354446 +"Q9VBP9",0.194473113304175,13.8040660131588,2.22137651583706,0.0499951270770389,0.113304173864811,-4.90224646644609 +"Q9W3W4",0.129796934581835,15.8534533806491,2.21677670219715,0.0503894171762403,0.114042805766579,-4.90973545894326 +"Q7JZK1",-0.121340050159425,21.5460142804668,-2.21495378728296,0.0505465019908692,0.114243313442778,-4.9127018817393 +"Q9VEA1",0.10287719987501,18.2032587451212,2.21234583768078,0.050772054843184,0.114597817968107,-4.91694432226962 +"Q9VZ67",0.152749203346774,15.1215016457703,2.20943530202661,0.0510249209589686,0.11492293413215,-4.92167694438704 +"Q4QQ70",-0.12613070112403,16.1575839130139,-2.20910271041613,0.0510538934004335,0.11492293413215,-4.92221761100684 +"Q9VSN3",-0.122381675426457,20.9347064004394,-2.20726320036226,0.0512144212877954,0.115128914700866,-4.92520743852501 +"O44386",0.113472958345863,16.8658724634643,2.20419984219087,0.0514828282591421,0.115500239730506,-4.93018450646207 +"Q9VQ62",-0.130743367820301,19.705137552393,-2.20379850905987,0.0515180925416644,0.115500239730506,-4.93083637739271 +"Q9VWX8",-0.108531865871882,20.5485931275316,-2.19524249191199,0.0522754391503044,0.117040848996923,-4.94472368845848 +"P07486",-0.115223967276783,22.082650899675,-2.19273940432587,0.0524990182485144,0.117383863858609,-4.94878285904827 +"Q9VMY9",0.192622289950094,14.9938158034195,2.19022488007448,0.0527245434992263,0.117730305966144,-4.95285892346556 +"Q9VMM6",-0.134835412496205,18.4213936981768,-2.1890549877402,0.0528297868532908,0.117807599560547,-4.95475476226861 +"Q9VI04",0.165745962677446,16.342848398156,2.18808656384252,0.0529170586994729,0.117844664767318,-4.95632384395544 +"Q9W0B3",-0.0951406358224389,19.1888267296801,-2.1836613546261,0.0533176111896662,0.118578367285818,-4.96349060427438 +"Q9U6P7",-0.118189760138582,17.0039304507548,-2.18159541694145,0.053505606534963,0.118838018242767,-4.96683467549353 +"Q95083",0.108766201756058,19.8708094430273,2.17738198204263,0.0538909919559227,0.119534806625637,-4.97365131135988 +"Q8T4G5",0.0710995704407651,19.595822085827,2.17418912806175,0.0541848006764523,0.120026889147839,-4.97881365306036 +"Q9VXH4",0.143311826041403,17.123462282462,2.17253111804423,0.0543379771727121,0.120206559581013,-4.98149331315872 +"Q9VQJ8",-0.163411643173438,15.2579265196982,-2.16852256224711,0.054710027290741,0.120869305325769,-4.98796883794357 +"Q8MSV2",0.193091804655459,18.2067830729294,2.16640265537429,0.0549077699357119,0.120877855181135,-4.9913916308469 +"Q9VCR4",-0.131789363505911,15.1183526134046,-2.16583012358117,0.0549612924143544,0.120877855181135,-4.9923158288946 +"Q9W2M4",-0.0880741442575506,22.6892054336685,-2.16557459979864,0.0549851958896278,0.120877855181135,-4.99272827428738 +"Q9W077",-0.14415448342967,20.8370437239991,-2.16476800700593,0.0550607155496909,0.120877855181135,-4.99403009313978 +"P40796",-0.139316244019671,18.4001437474785,-2.16454217286287,0.0550818777426018,0.120877855181135,-4.99439455154757 +"Q9VRJ6",-0.14851209987742,15.8002468410634,-2.16378828516214,0.0551525785652553,0.120877855181135,-4.99561109907642 +"Q8IPD8",-0.0994099283323528,18.3760191318462,-2.16305768417556,0.055221178446058,0.120877855181135,-4.99678992087458 +"Q27268",0.0955039890212994,18.9284030142877,2.16196054849852,0.055324347664761,0.12094496973109,-4.99855987098947 +"Q7JNE1",-0.102170310000478,17.8275747035293,-2.16035105545121,0.0554760304898416,0.121005836427475,-5.00115578366003 +"Q9VIM0",0.107882194610188,18.0510626580257,2.16012590373814,0.0554972810953347,0.121005836427475,-5.00151886884901 +"P08646",0.126402062037361,18.8809474367599,2.15609330883557,0.0558792137437286,0.121612429695977,-5.00801957150101 +"A0A0B4KHJ9",-0.116762726472423,24.6224206239501,-2.15560375364398,0.055925751075499,0.121612429695977,-5.00880844901181 +"Q9VRD9",0.10236158569281,16.1618781683788,2.15481800917409,0.0560005218361689,0.121612429695977,-5.0100744726113 +"Q9V3J4",-0.107903095557552,16.5937253346355,-2.15411897870255,0.056067121364632,0.121612429695977,-5.01120063567366 +"Q9XTL2",-0.144182363100391,16.9657417157141,-2.15323288778824,0.056151651839322,0.121637604244142,-5.01262796552141 +"Q9VJ28",0.132149315035921,18.9644467044786,2.14435675338246,0.0570051628766893,0.123326344589258,-5.02691374609655 +"P14199",-0.109538832304231,18.5327759486574,-2.14125051146206,0.0573067719367713,0.123818258536962,-5.03190791360006 +"Q9VHI1",0.155058970576555,14.1980837401519,2.13764171633261,0.0576590927046653,0.124418326819381,-5.03770666608518 +"Q9VTC3",-0.224234368180966,17.1451078575115,-2.13425524610264,0.0579915893276074,0.124864199137211,-5.0431448271858 +"O97062",-0.113700255742003,18.5094574885979,-2.13321863811624,0.0580937329568465,0.124864199137211,-5.04480881250297 +"Q9VRY5",-0.102359979652435,16.8880475949649,-2.13309739930699,0.0581056906081024,0.124864199137211,-5.04500340766186 +"O96824",-0.132065535729097,16.7733038188035,-2.13249481704101,0.0581651575117586,0.124864199137211,-5.04597052424134 +"Q7KW39",0.0806975955645157,21.7029029895903,2.13172316265089,0.0582413944470244,0.124867154161487,-5.04720884264269 +"Q03427",-0.0855652426376778,21.7642332208665,-2.12870577182178,0.0585404195281704,0.12534713706417,-5.05204939186106 +"Q6AWN0",-0.0960145588434003,18.3952387547007,-2.10531688792559,0.06090844183649,0.130250360234956,-5.08948096916285 +"Q24492",-0.10793275545311,15.1029894557293,-2.09979364479182,0.061480817355051,0.131038761570453,-5.09829695660449 +"Q9W141",-0.0796042724813439,21.8755503219735,-2.09955095077585,0.0615060848435987,0.131038761570453,-5.09868412758317 +"Q95TN1",0.225835952516322,13.972950582635,2.09948573017992,0.0615128768091091,0.131038761570453,-5.09878817133594 +"Q9VCE1",-0.182406808093727,13.763489791853,-2.09873257989121,0.0615913603544574,0.131038761570453,-5.09998954940559 +"Q9VPX0",0.207669024734809,14.2989138093977,2.09778633844634,0.0616901003845297,0.131081640052733,-5.10149869461921 +"P48159",0.0981008781833701,19.902128660235,2.09427378309126,0.0620579529661893,0.131695503241226,-5.10709847201864 +"Q9VSR8",0.178391337743259,15.5036475425365,2.09338182212135,0.0621516951889752,0.13172684571183,-5.10851986337505 +"A1Z933",-0.170215409709789,15.788118466827,-2.09157555481813,0.0623419405806897,0.131962381838313,-5.11139752267733 +"Q9VC53",-0.120505459820365,17.8921272785657,-2.08707854014312,0.0628179967893677,0.132801544543302,-5.11855768184829 +"Q9VBC1",0.193693542027894,13.3610956802942,2.07959453104402,0.0636179227488811,0.134322398917891,-5.13046014925204 +"Q9VGK3",-0.0996788579369188,17.1291191426775,-2.0772564976875,0.0638697990631582,0.134683722929643,-5.1341750230534 +"Q9VXI1",-0.143203902118483,19.5727714961941,-2.07631016466603,0.0639720163579096,0.134728943541658,-5.13567816415988 +"Q9VXE0",0.152408176255406,17.9924882431678,2.07502593443962,0.0641109796212508,0.134851341750626,-5.13771757620515 +"Q9VF15",-0.112600948804019,20.9279710359359,-2.07359614781054,0.0642660301225632,0.134983248573582,-5.139987541148 +"Q9Y125",-0.103088263022837,22.6918685831969,-2.07240243154828,0.064395752855446,0.134983248573582,-5.14188223238822 +"Q9VH26",-0.130034598198847,18.3321621290813,-2.07221203602088,0.0644164663456664,0.134983248573582,-5.14218439147238 +"Q9VTJ4",-0.137913510309394,15.6520528868151,-2.06324434201137,0.0653992673716414,0.136870737736384,-5.15640346159242 +"A1ZA23",0.0814532838192967,18.4805710753413,2.05498856297701,0.0663165950905573,0.138616642369736,-5.1694715291864 +"Q9VKX2",-0.0852701032119292,23.1196973292512,-2.05277580245648,0.066564525189466,0.138960735939962,-5.17297045988819 +"A1Z6G9",0.200593759044489,14.2798662896977,2.04704705325957,0.0672104882162152,0.140133867930809,-5.18202184106842 +"Q9V9T9",0.232909238285668,13.3796008335553,2.03046070474448,0.0691143217108301,0.143923456446523,-5.20816886343389 +"Q7K0X9",-0.111207820531646,16.7101419823065,-2.02832441803675,0.0693632022444328,0.144099791237288,-5.21153007177848 +"Q9VB64",-0.117116568625484,18.7721128286337,-2.0282509021457,0.0693717819925313,0.144099791237288,-5.21164571431603 +"Q9I7J0",-0.164450542251746,21.0468081824944,-2.02739752184326,0.069471449951194,0.14412733646591,-5.21298797603133 +"Q9VFM9",-0.0933362244283558,17.1232522590463,-2.02417453135319,0.0698490895984818,0.14473078441027,-5.21805519207382 +"Q9VMS1",-0.11083866875358,22.4137581619113,-2.02138133844378,0.0701779353338345,0.145231756993593,-5.22244391900867 +"Q7K0W4",0.104022730794483,21.7429982743053,2.01773272842304,0.070609689912428,0.145895584065431,-5.22817282426655 +"P09208",0.322556131022376,12.9574306886497,2.0171940955117,0.0706736402427268,0.145895584065431,-5.22901819202777 +"Q95RB2",-0.143080239008786,24.2859157771627,-2.01103288993855,0.0714090362868909,0.147231486435765,-5.23868116470514 +"Q9VG26",-0.0731192321294216,19.7019854084116,-2.00787045783107,0.0717892953109831,0.147832771084839,-5.24363607596964 +"Q9W0D3",0.283170818273843,12.7783129971127,2.00487373414417,0.072151387907662,0.148175205018289,-5.24832826367403 +"Q8IR45",-0.10390199306152,14.8576351172618,-2.00369288123435,0.0722945414062367,0.148175205018289,-5.2501763821291 +"Q9VF51",0.11194210076119,17.6638527936904,2.00342421522397,0.0723271487993719,0.148175205018289,-5.25059679793341 +"Q9VLR3",-0.119470795548249,16.772376997647,-2.00215735187294,0.0724810917646458,0.148175205018289,-5.25257889208253 +"Q7JQW6",-0.108408413890807,15.855384656807,-2.00211395393004,0.0724863707260372,0.148175205018289,-5.25264678153946 +"Q95R98",0.105022924194644,16.2040847976956,2.00209571440057,0.0724885895053502,0.148175205018289,-5.25267531430941 +"Q9VHD2",0.0882810986520113,16.6046642684407,1.98951615737057,0.0740341599696652,0.15114930089278,-5.2723271115171 +"Q9VK00",0.209598360205241,17.6132201020212,1.98742362661081,0.0742942414674892,0.151494859129306,-5.27559082856688 +"Q9VHE4",-0.0762720773176788,17.9277070811952,-1.97946122993151,0.0752917561177715,0.153279733519061,-5.28799598450605 +"Q9W445",-0.0891611923033739,16.4902643667338,-1.97897285502648,0.0753533462144065,0.153279733519061,-5.28875614327412 +"Q7KJ08",0.12539847406536,14.510018186254,1.97813755204824,0.0754587978098496,0.153307277401741,-5.2900561060135 +"P00408",-0.0810905388520418,21.2787819759933,-1.97611339053651,0.0757149096577868,0.153640473612151,-5.29320525608338 +"Q9W2D9",0.171141312558998,17.6524953387624,1.97256179242409,0.0761662554681999,0.154368546927044,-5.29872731157005 +"Q9VME3",0.150149928116793,15.7558433705495,1.9701383339523,0.0764756812350102,0.154807568325239,-5.30249279496176 +"Q9V3F8",-0.0880065371896173,18.5677694953513,-1.96647272322016,0.0769459438897485,0.155332329290172,-5.30818437409177 +"P23128",0.179040504209093,14.6230559670091,1.96615816850453,0.0769864242223437,0.155332329290172,-5.30867256171161 +"Q9VFS8",-0.13668575729055,17.3731314547144,-1.96594172313047,0.0770142903614943,0.155332329290172,-5.30900846378724 +"B7YZT2",-0.211522073662664,18.4478980704297,-1.96490713295695,0.0771476186749684,0.155413318780009,-5.31061381846467 +"Q9W2D6",-0.0901375432158495,19.6367336563508,-1.95960784557467,0.0778339374492194,0.156606764373098,-5.31883069251507 +"O96299",0.182453210653541,15.6259442183629,1.95885775713892,0.0779315431074519,0.156614233618349,-5.3199929468081 +"Q9VZI3",0.154895789764433,14.3243530707431,1.95044456240077,0.0790341898645351,0.158639023699211,-5.33301535994551 +"Q9VAI9",-0.0801306791141876,22.0298537179247,-1.94954372612659,0.0791531158508065,0.158686775527819,-5.33440822272447 +"Q8SY69",-0.108466567660315,18.9644854738045,-1.94447252908839,0.0798257290771751,0.159607469824165,-5.34224379748186 +"Q9XYZ5",0.113079380342342,15.9182019502723,1.94426716170417,0.0798530799845763,0.159607469824165,-5.34256091782603 +"Q8SWZ6",-0.10752551386949,13.966261692349,-1.94391934106956,0.0798994228436317,0.159607469824165,-5.34309797414935 +"P22812",0.392441292067071,11.5390378254514,1.94155609801347,0.0802149620827733,0.160046120519218,-5.34674580575123 +"Q7K1C5",-0.0900050655089935,17.5441016251712,-1.9385156850366,0.0806226287150046,0.160667317439221,-5.35143591494501 +"Q8SXF2",-0.141160919307655,15.5701163616107,-1.93460592924666,0.0811497022368732,0.161524705645709,-5.35746211353121 +"Q9VSY8",-0.14057372562046,18.0589562024527,-1.92777546025523,0.08207823873925,0.163178190961941,-5.36797664095265 +"Q9VCH5",-0.0792314876007758,18.0680030987166,-1.9216829725065,0.0829148026610542,0.164556201505309,-5.37734063813573 +"Q9V597",0.196034450272109,20.2047282895068,1.92129253178491,0.0829686843321132,0.164556201505309,-5.37794026646532 +"Q9V784",-0.259515618979366,14.362892130229,-1.91962981497385,0.0831985082812196,0.164816047283936,-5.38049318751819 +"Q9VN21",0.0805084967433807,22.0326961235611,1.91717601494651,0.0835387605980655,0.165293775418236,-5.38425884998967 +"Q76NQ0",0.241213385297465,14.4424926069052,1.9118753324186,0.0842781977277051,0.16655928176518,-5.39238572716476 +"Q9VJZ1",0.163929011139798,15.4178262826175,1.90596746938205,0.0851095087831467,0.168003148698567,-5.40143107784463 +"Q9VVI2",0.222360055555137,13.9100494552176,1.89982512537328,0.0859818925124769,0.169298241477519,-5.41082143643771 +"P02299",0.083177608362714,22.0431832716936,1.89930292727542,0.0860564410662739,0.169298241477519,-5.41161910666145 +"Q9VMR0",0.110811610596905,17.2929384975561,1.89920737031726,0.0860700891924078,0.169298241477519,-5.41176506097871 +"Q9VPX6",0.264469312722532,21.4269785580863,1.89437076572785,0.0867635190151547,0.170461189301859,-5.41914796755953 +"O44434",-0.0853139089056967,15.8738059861917,-1.88902435034336,0.0875360732153388,0.171776670733159,-5.42729864689969 +"Q9VKF0",-0.120496506059199,15.8788313868253,-1.88788951115454,0.0877008757826909,0.171897838784405,-5.42902730801353 +"Q868Z9",-0.075081782972461,20.4372709459379,-1.88165850320784,0.0886108872734257,0.173477652549383,-5.43850990812438 +"Q7K1M4",0.0885868907093563,17.1263408752882,1.88079895719289,0.0887371048653368,0.173521091342769,-5.43981681748068 +"Q9U1K7",-0.110481939185387,17.4699439136558,-1.87961235063263,0.088911622445818,0.173658766088553,-5.4416205382666 +"Q9VTF9",0.0983527018229005,17.4132470765986,1.87730092173804,0.089252484010708,0.174120635473522,-5.44513248738877 +"Q9VKI8",-0.0672904553637217,22.391491093681,-1.87393402881613,0.0897511581935393,0.174888939096757,-5.45024435525794 +"Q9W1E8",-0.0697606795703258,15.4709819128872,-1.86660971258994,0.0908448894727916,0.176813623851361,-5.46134929773097 +"P54353",-0.116787935436022,18.9356173546346,-1.86572254448069,0.0909782030208879,0.176866716362286,-5.46269296242499 +"Q9W385",-0.131010132727242,16.9040405151986,-1.8588368645972,0.0920190697419398,0.17868196545932,-5.47311108417033 +"Q9VAG3",0.15341208918842,16.7540732293102,1.85274165050161,0.0929496135361329,0.180279017881709,-5.48231744390292 +"Q9VIH1",0.104178955706256,15.7362083245005,1.85155687676878,0.0931314957643642,0.180358926667392,-5.484105226056 +"A0A0B4K692",0.115441573937673,15.8394943903569,1.85071880434401,0.0932603519051821,0.180358926667392,-5.48536950720771 +"P25007",-0.0776944656771938,23.8623346570345,-1.84995404523089,0.0933780794225841,0.180358926667392,-5.48652294424977 +"Q9VI10",0.142027395203449,17.1800692931958,1.84966034067147,0.0934233289212389,0.180358926667392,-5.48696585735831 +"Q8WTC1",0.139216417685439,15.0255062861996,1.8485911405515,0.0935882257960497,0.180468393789377,-5.48857794156982 +"Q9VTC1",-0.117685799300469,15.8419875071891,-1.83944077751136,0.0950104514361069,0.182999345260307,-5.50235546062694 +"Q9W4K0",0.0796788538437561,19.6555910213194,1.83756169550711,0.0953049676471922,0.183259160714278,-5.5051805447069 +"A1ZBK7",-0.14407460273026,17.6132565449253,-1.83697019275078,0.0953978501383266,0.183259160714278,-5.50606953440495 +"Q9Y114",-0.0686284149149614,18.6379509357816,-1.83647962368933,0.0954749464392733,0.183259160714278,-5.50680671894222 +"Q9VU92",0.0992894860219096,17.6656957340571,1.83402848618856,0.0958610196281137,0.183788713493901,-5.51048860008262 +"Q9VL16",-0.08745207776089,20.7806891891966,-1.83096166316529,0.0963460916314608,0.184420678546273,-5.51509183956387 +"Q9VJ68",-0.113388007433439,17.9249204094078,-1.83054751284895,0.09641176959973,0.184420678546273,-5.51571317460056 +"Q7K0S5",-0.0984443605332146,18.3070305593687,-1.82767898495165,0.0968678064003897,0.185080757246105,-5.5200147859254 +"Q9W3N6",0.0799500431713884,16.1106404694203,1.82276546495445,0.0976535658720721,0.186368590245556,-5.52737514512501 +"Q9VIQ8",-0.0812042690080652,21.3031473140466,-1.82196699606854,0.0977818072280338,0.18640006223584,-5.52857029121387 +"P20240",0.139166986524756,17.3746873770868,1.81646922186246,0.0986690080657452,0.187876604399159,-5.5367921430579 +"Q9W0H8",-0.110291548835722,19.4508460460915,-1.81252383347859,0.0993102418808591,0.188881965173629,-5.54268464139936 +"Q9VIS4",0.100740646732852,14.1698215993571,1.80911461578336,0.0998674104629233,0.189725331038902,-5.54777110038617 +"O76752",-0.0810474152262941,17.8504952651647,-1.80515544909231,0.10051805405267,0.190697523368676,-5.55367192312551 +"Q7KTW5",-0.0946057974374206,21.5591785888691,-1.80461115279564,0.100607806093786,0.190697523368676,-5.55448263562583 +"Q9V3L7",-0.0943916812166918,17.6506922325475,-1.80200776692411,0.101038109385923,0.191295762151781,-5.55835856293495 +"P49963",0.128548529479888,14.9382436861239,1.79956151006159,0.101443977256241,0.191633855570533,-5.56199793494724 +"Q9VCW6",-0.0689476233036146,19.7846752667465,-1.799546576537,0.101446459513657,0.191633855570533,-5.56202014420045 +"Q8SZA8",-0.126259366450874,18.0429467007743,-1.79826127063523,0.10166031218101,0.191820589047427,-5.56393130533085 +"Q8SXX1",-0.0790111125895301,19.868519858784,-1.78982742524697,0.103073826039249,0.194267956873974,-5.57645434207038 +"P53997",-0.316635715622894,17.4236335370105,-1.78710074396142,0.103534649347271,0.194916247303892,-5.58049653923482 +"Q8MLP9",-0.167466344163543,15.0362077402394,-1.7854717023775,0.103810863730689,0.195097218890309,-5.58290999970822 +"Q9VGJ9",-0.0931328819143147,17.9591134333765,-1.78515461317836,0.103864706459589,0.195097218890309,-5.58337964102566 +"A1Z8Y3",-0.114199677454184,15.1414756668116,-1.78372868729626,0.104107148614493,0.195134893274584,-5.58549104494583 +"P16620",0.108842225849594,17.300600622935,1.78366060011278,0.104118738018213,0.195134893274584,-5.58559184133243 +"Q9V3Y0",-0.11796176209144,16.3962524170632,-1.7822739263429,0.104355026121144,0.195194827681516,-5.58764423891293 +"Q7K519",0.13511661341261,15.5825157096549,1.78103589516547,0.104566399380409,0.195194827681516,-5.58947592841479 +"P43332",0.0934085686556756,17.197863926654,1.78040473345823,0.104674310165585,0.195194827681516,-5.59040948762897 +"Q9VRU1",0.180662323573753,17.2339657909374,1.78004470749635,0.104735909949111,0.195194827681516,-5.5909419290777 +"Q9VY78",-0.10895994117972,18.8159735078106,-1.7794717793395,0.104834005157136,0.195194827681516,-5.59178911491025 +"P91941",-0.0937132317072695,23.0940463466166,-1.77901592655544,0.104912114949587,0.195194827681516,-5.59246308008433 +"Q7K860",-0.389238568806324,20.588593109434,-1.77867900392598,0.104969880353909,0.195194827681516,-5.59296115238105 +"Q7JWD6",-0.0706021896420026,20.4917112804779,-1.77684489150573,0.105284848547974,0.195562502648129,-5.59567165182444 +"P83967",-0.389982861809067,17.6414873579041,-1.7741602926251,0.105747424193517,0.196203229760608,-5.59963637779537 +"Q9VCR9",-0.0923272350167004,19.3448628195836,-1.77210653900147,0.106102551544935,0.196643395529947,-5.60266731912655 +"Q9VKV2",0.2085910940893,14.9700270487171,1.76987379770767,0.10648986238109,0.197142164763216,-5.60596031508203 +"Q7KK90",-0.0697987602643337,21.119530399925,-1.76807442835806,0.106802934154489,0.19742792238089,-5.60861255254879 +"Q9VGV9",-0.12660511203123,16.1142958710326,-1.76762681999547,0.106880943591093,0.19742792238089,-5.60927209795637 +"Q8SZM2",0.0800124747641782,21.2989583363362,1.76678919100401,0.107027065555885,0.197479143083204,-5.61050609701745 +"Q9VRG8",0.130349557562127,16.1995823596556,1.76275688927665,0.107733039157959,0.198562109740858,-5.61644217342068 +"Q9VDL1",-0.111287677540819,14.8806691385649,-1.75705626615425,0.108738337262469,0.200193759993155,-5.6248219585097 +"Q9VDK9",0.145648206175643,15.4614167342875,1.75492196962719,0.109116908800162,0.200669243526649,-5.62795560944735 +"Q9W3K6",-0.109685043795629,16.2134284310387,-1.75142869643878,0.109739116354474,0.201591240175399,-5.63308017317197 +"Q7K486",0.10054465873548,17.6590666347211,1.74993089977835,0.110006884319327,0.201860817430844,-5.63527573987046 +"Q9W0N6",0.18648437342801,14.5653073181548,1.74454709277247,0.110974281286438,0.203347477076646,-5.6431593553038 +"Q9VN86",0.148104266701717,15.29129144059,1.74367048593687,0.111132524991603,0.203347477076646,-5.64444175311229 +"Q9VCR2",0.0933551877011016,15.4176599869219,1.74285530915652,0.111279863231664,0.203347477076646,-5.64563397311557 +"Q9W2N5",0.410539442057763,12.9209181303799,1.742717968426,0.111304704179243,0.203347477076646,-5.64583480844217 +"Q24297",0.0979353472212061,16.9486409991564,1.74172382089376,0.111484666712721,0.203453418027155,-5.64728831060772 +"Q9VXN1",-0.19856728156345,13.6509484213031,-1.74071938993261,0.111666758917884,0.203563009699487,-5.64875639399491 +"Q9VEH2",-0.106556227570662,15.9031410113769,-1.73947241290585,0.111893197518373,0.20375311513171,-5.65057834912943 +"Q9VJC7",-0.0886991422051686,18.6290217053441,-1.73804949826484,0.112152093457734,0.20380671021399,-5.65265650553252 +"O18335",-0.0749692581171288,21.6564587535884,-1.73761459032101,0.112231332272005,0.20380671021399,-5.65329150213583 +"Q9W4C2",-0.15816954149166,15.9644224650104,-1.73693188347964,0.112355821656228,0.20380671021399,-5.65428812958661 +"Q9W5R5",-0.0911002466542712,15.8730596719424,-1.73662744747067,0.112411374938172,0.20380671021399,-5.6547324823709 +"Q05856",0.121883923251611,13.681508887379,1.73263014010797,0.113143114757954,0.204910657346654,-5.66056301370416 +"Q9VIB5",-0.187865781393324,14.4925890938651,-1.73105035358379,0.113433495855676,0.205213743044759,-5.66286530509555 +"Q9VM10",0.109181826913595,16.9238477657801,1.72702100364778,0.114177191444047,0.206335379554356,-5.66873228242838 +"Q9NHA8",0.111600237597033,16.229723325504,1.72439157977653,0.114664880789638,0.206992447139737,-5.67255686715648 +"Q9VEV7",0.592148725425002,12.8852873077029,1.72123234413199,0.115253329080473,0.207829786925652,-5.67714787263369 +"Q9VSL9",0.195532332045323,14.5130106441866,1.72044505075453,0.115400397180304,0.207831261692227,-5.67829125187586 +"Q9VIW6",0.109078244758448,14.9720328060109,1.71989448392148,0.115503345077155,0.207831261692227,-5.67909066511409 +"P18053",0.079501194025454,21.0903623012569,1.71483839123139,0.116452649827046,0.209313599042579,-5.68642546011129 +"A1Z7S3",-0.0781522580132865,19.9937063965191,-1.71195732995181,0.116996730345184,0.210065173536885,-5.69059966272139 +"Q9W396",-0.0894389246624918,16.6594045224799,-1.71035693701757,0.11729995105883,0.210383138028095,-5.69291670906111 +"Q9Y0Y2",-0.10404042087378,19.5167421785927,-1.70916389303617,0.11752645426337,0.210562970688831,-5.69464321867191 +"Q9VY91",-0.317557078285709,17.0312002162135,-1.70555001452989,0.118214971695108,0.211349358041635,-5.69986896913657 +"P80455",-0.086696845996066,20.5306491993199,-1.70492400391746,0.118334608606716,0.211349358041635,-5.70077357299087 +"Q9W503",0.0848233792183031,17.9425999697994,1.70486702200582,0.118345503843458,0.211349358041635,-5.70085590440966 +"Q9VKQ2",-0.112703700526165,16.0002108581059,-1.70384026960201,0.118541979330267,0.211473819810573,-5.70233916634223 +"A1ZBJ2",0.0728621690103175,19.2279150468928,1.70221227554238,0.118854109227887,0.211804117726618,-5.70468997568815 +"Q9VY87",0.142117551361075,17.5334104904791,1.69534039709603,0.120179811255123,0.213938020462695,-5.71459914344881 +"Q9VYT6",-0.136124524606334,16.3354147264617,-1.69439966350004,0.120362327603145,0.214034501537362,-5.7159539327241 +"O97365",0.0945052111442699,18.0270003072571,1.69268626651582,0.12069539354153,0.21421974291988,-5.71842038795983 +"Q9W3B3",-0.129794851826311,15.7277149640269,-1.69254261084861,0.120723356321755,0.21421974291988,-5.71862711866751 +"Q9VD09",-0.140317299312006,14.7184822632723,-1.69064199422269,0.121093863372771,0.214321150839387,-5.7213613175471 +"Q9VVA7",0.0913796557102842,17.4787439751396,1.69032384589891,0.121155983236733,0.214321150839387,-5.72181883310584 +"P05205",-0.0724845029470025,18.1401683687703,-1.69014666264014,0.121190591480013,0.214321150839387,-5.72207361191484 +"Q9W4W8",0.0809528723204451,17.3248564189521,1.68961514008995,0.121294464264018,0.214321150839387,-5.7228378194934 +"Q9VYG8",0.468414098615369,15.1873078950761,1.6876221618269,0.121684655579986,0.214507062778293,-5.72570206623106 +"Q9VKE2",-0.0911208273137731,24.18451501859,-1.6871734614464,0.121772659055017,0.214507062778293,-5.72634666317352 +"Q9VHG4",0.181835973746473,18.4101481698476,1.6871080921958,0.12178548468288,0.214507062778293,-5.72644056373774 +"Q9VPU6",0.0976554661109859,15.3902411999805,1.68216625307384,0.122758610998961,0.215992999099438,-5.73353341808462 +"Q9W4A0",-0.100327389925182,17.1196447205064,-1.67433333892324,0.124315353273196,0.218501590368484,-5.74475169873746 +"Q9VP77",-0.0748406852767118,15.3939150863811,-1.67330445844684,0.124521148041549,0.218515188549615,-5.7462230588156 +"Q9VBU9",0.0755581864255888,20.7945959336043,1.67298504582625,0.124585098507604,0.218515188549615,-5.74667973357158 +"Q9VKM3",-0.0914779904251404,21.8164948252635,-1.66837212881467,0.125511953506584,0.219909599211115,-5.7532694559305 +"P54192",-0.103907378133311,24.4382842978676,-1.66700554369912,0.125787720465049,0.22016150864187,-5.75521968769081 +"Q9VWD5",0.132373983631265,14.4179364600161,1.66632158776822,0.125925941594796,0.220172401027379,-5.75619540873813 +"Q9VEP8",0.0818834090470055,17.2627372396394,1.65902680069061,0.12740863626009,0.22253152385532,-5.76658782387879 +"Q9VCB9",-0.103604639088109,17.004611425753,-1.65767903202893,0.127684279716059,0.222779684692873,-5.76850504972393 +"Q9VN25",0.156516822024253,14.9397394242289,1.65460793190918,0.128314369925901,0.223415038054321,-5.77287040911112 +"Q9VU75",0.0730237844789698,18.2357064777465,1.65459722239241,0.128316572028435,0.223415038054321,-5.77288562383076 +"Q9VKU5",-0.250413630297743,13.7855671728703,-1.65394739889355,0.128450252694301,0.223415038054321,-5.77380870459488 +"Q9W1H5",0.0849173251912685,17.2786833027683,1.65239038126115,0.128771066631397,0.223739728272052,-5.77601961584475 +"Q9W3N7",-0.236648555154426,17.3687496409156,-1.65007110416432,0.129250267418933,0.22423488668967,-5.77931068769583 +"B7YZN4",-0.157165942277469,15.4480296966613,-1.64971050226376,0.129324916663946,0.22423488668967,-5.77982214541899 +"Q86BM0",-0.0979248348163964,17.5042602877658,-1.64394433756366,0.13052382936741,0.226078657720499,-5.78799178816636 +"Q9VX98",-0.0666187643238665,18.2018588267228,-1.63377339437345,0.13266278639009,0.229545153214388,-5.80236180051913 +"Q9VM50",0.156296703912641,13.4794200308433,1.63273916694907,0.13288202538034,0.229686236615967,-5.80382010226166 +"Q9VH66",0.107687740453985,16.6723295009113,1.6311403865677,0.13322157519627,0.230034769593559,-5.80607338618985 +"Q9VAY0",-0.144207267120956,14.0449524688195,-1.6301908785918,0.133423597650838,0.230063209669395,-5.80741099076221 +"Q9VWS1",0.100329945785459,17.2403712450011,1.62927297856892,0.133619154235684,0.230063209669395,-5.80870363557871 +"Q9VXA9",0.127645991751486,14.2479358518285,1.62807890710926,0.133873930310901,0.230063209669395,-5.81038456547054 +"Q9W0M4",0.129506613472586,17.8457808689467,1.62788262817303,0.133915851208637,0.230063209669395,-5.81066080418278 +"Q8IRH5",-0.131985932719353,14.4901072043648,-1.62782723635079,0.133927683806345,0.230063209669395,-5.81073875790502 +"Q7JUS9",0.0957693392568189,20.2301541195203,1.62684447806439,0.13413777174721,0.230187040405706,-5.8121215499144 +"Q961T9",0.109152871516727,17.9191353843788,1.62197547705835,0.135182966352607,0.231742228033041,-5.81896526581485 +"Q9VEY5",-0.0743824937264428,20.8389008473113,-1.61973785726733,0.135665724110078,0.232331034718286,-5.82210635355674 +"Q9VXM4",0.215364635369401,20.1952475782603,1.61516244470424,0.13665762174922,0.233789654438665,-5.82852119779022 +"O97102",-0.0769601825464754,20.9898454941314,-1.61311902905279,0.137102687216135,0.234047505120114,-5.83138265917091 +"Q9V773",-0.102082953057149,15.5795452884962,-1.61301196493634,0.13712604170505,0.234047505120114,-5.83153252552547 +"Q9VB81",0.108991384488274,20.9624620196752,1.61253882521184,0.137229292570426,0.234047505120114,-5.83219474727755 +"Q7JXB9",0.142846094291263,16.2157817694612,1.61074001884159,0.13762246678502,0.234478319302772,-5.83471136613546 +"O18404",-0.0639114713784004,23.0219293892035,-1.60830569558771,0.13815613999662,0.23514738930037,-5.8381144553723 +"Q9VB05",0.058154950149504,20.1684148616009,1.60559833131692,0.138751825807488,0.235920535623742,-5.84189565899598 +"Q9U1L2",-0.256160387041337,17.6145235069084,-1.60125427684079,0.1397123790392,0.237311861748866,-5.84795480876332 +"Q9VJH8",0.164494799469161,14.296026932115,1.59925264382699,0.140156956473136,0.237824825429492,-5.85074342402746 +"Q9VHC7",-0.0570176669823113,19.9696054238449,-1.59673122474317,0.140718763832077,0.238535465520229,-5.85425322640144 +"Q8MLS1",-0.0772872741894304,18.5322722998316,-1.59499902484036,0.14110587566002,0.238948833097374,-5.85666252152759 +"Q9V3E7",-0.103519146279236,18.7638712412239,-1.5923067284434,0.141709419065312,0.239727495944159,-5.86040409497987 +"Q9VHI7",0.129731157884269,15.5114160871291,1.59023300369106,0.14217584908437,0.240272863498206,-5.86328343517754 +"Q7K159",-0.100157354426882,14.6615931577604,-1.58132969908797,0.144193856498257,0.243436591739973,-5.87561990210385 +"Q9VE08",0.130480709546152,14.6876975285385,1.5766680230782,0.145260508569386,0.244989411823798,-5.88206246463114 +"O76877",-0.0999903697956341,17.3700851807581,-1.57148837043763,0.146453828804808,0.246703528550703,-5.88920736098602 +"Q9VCF8",-0.0868238449338108,16.9571991354603,-1.57097461580663,0.14657265994829,0.246703528550703,-5.88991526392856 +"Q9VGQ1",-0.0798595176266161,22.420520584318,-1.56942394563435,0.146931843788661,0.247058785725288,-5.89205107980291 +"Q9W380",0.100519368196288,18.3798544191077,1.56866340599484,0.147108291525285,0.247106374888394,-5.89309813997364 +"Q9VCI0",0.188371555099245,14.8798025100809,1.56658587659747,0.147591235637681,0.247496080702311,-5.8959567675208 +"Q9VLM8",0.0932368450353067,16.8583076698672,1.56638910063238,0.147637050538849,0.247496080702311,-5.89622740649585 +"Q9VNF3",-0.07329723168165,19.1427676687958,-1.56394615068442,0.14820687912038,0.248201881900396,-5.89958562892594 +"Q9VRJ5",-0.0965951119777806,17.2946265974873,-1.55226948954195,0.150957279425784,0.252337956730834,-5.91559268506827 +"Q9W4U2",-0.143654482194016,18.6019963727004,-1.55217724197758,0.15097918514231,0.252337956730834,-5.91571885006126 +"Q9VXB0",0.0715643778769923,20.2764434682824,1.54938801040493,0.151642851827464,0.253193470318529,-5.91953143993687 +"Q9VA97",-0.107811698329133,18.5644592737919,-1.54763046061606,0.152062353058966,0.253311448126274,-5.92193165575939 +"Q9V429",-0.0587209381105822,22.353507614857,-1.54744118949835,0.152107589864938,0.253311448126274,-5.92219003549151 +"Q9VG92",-0.0953425644030119,16.5959278039719,-1.54718387909749,0.152169107327654,0.253311448126274,-5.92254126640833 +"Q9VHM3",-0.0953319020685441,14.6851541678955,-1.54601506460077,0.152448820483091,0.253524060384641,-5.92413625401993 +"Q8SY67",-0.171987168872899,16.0682388986654,-1.53722604678394,0.154566606000804,0.256789939053128,-5.93610599951151 +"Q9VGG5",0.100362171286502,17.0479513034139,1.53417081924256,0.155308789644516,0.257766229977167,-5.94025697747271 +"Q9V405",0.060438045512214,20.2137850150676,1.52220501274194,0.158245592278724,0.262379371690767,-5.95646462090494 +"Q9W0C3",0.157100891918247,18.5357911239313,1.520387467884,0.158695886832651,0.262864686431839,-5.95891952133219 +"Q5U126",-0.0926684312132124,21.6328681191897,-1.51581329375012,0.159834073979296,0.264487336703835,-5.96508954983385 +"Q0E8U4",-0.0863196573252445,16.2850218418677,-1.5120986581219,0.160763603055639,0.265761833396239,-5.97009153776295 +"P53034",-0.105691641100451,15.7971889913085,-1.51102994078877,0.161031901967041,0.265941794535668,-5.97152919650156 +"Q9VF70",-0.0733143654819894,15.9564414186498,-1.50877970739749,0.16159809031962,0.266360606668187,-5.9745541512803 +"Q9VF89",0.239581672124773,14.1325646785943,1.50865556762937,0.161629375802506,0.266360606668187,-5.97472094746711 +"Q9VGW7",0.103721894053788,16.6207133468886,1.50809672367091,0.161770279830934,0.266360606668187,-5.9754717115799 +"Q8IPX7",0.175060139346025,15.3166145657454,1.5074865263013,0.16192425369397,0.266360606668187,-5.97629126388243 +"Q95WY3",0.0967870363084717,17.2365158158761,1.50043177213014,0.163713672090895,0.269038822707007,-5.98575117297944 +"Q9VVZ4",-0.156056071847836,15.9202143192371,-1.49941098891746,0.163974006353238,0.269061949301999,-5.98711763219038 +"O17452",0.068519372531064,19.863186826614,1.4991118644892,0.164050361175139,0.269061949301999,-5.987517939348 +"Q9VSW4",0.234594459356236,15.9267312233331,1.49127969655766,0.166060603524397,0.272091440745279,-5.99798129816763 +"Q9U915",-0.0705614175430149,21.1508740786565,-1.48851050165689,0.166776443766551,0.272996180768015,-6.00167240577077 +"P54185",0.0982043150731968,17.5772100381422,1.48771857343558,0.166981648371542,0.273064107336993,-6.0027271720108 +"Q9VUH8",0.0931945057228827,15.4783371675969,1.48621937759994,0.167370718269047,0.273432280188806,-6.00472295915089 +"Q9VJC0",-0.0592628097280947,16.5437871718288,-1.47554496407851,0.170163642798814,0.277723049108044,-6.01889570070253 +"Q59E04",0.0961725309069354,16.3796374421905,1.47425977422497,0.170502605592326,0.278004248414467,-6.0205976396211 +"Q9V3Y2",-0.0639914897144678,17.8965692470237,-1.47264978518183,0.170928053916738,0.278425775325311,-6.02272834684397 +"P20432",-0.08187544721536,23.6043526494245,-1.46951656026366,0.171758648764979,0.279505781599985,-6.02687062625217 +"Q9VLU4",-0.080763291737167,17.2123106766299,-1.46512471826288,0.172928742979226,0.28109877247513,-6.03266722108665 +"Q6IGN6",-0.0631389459816045,16.7506270485208,-1.4645790366567,0.173074603916042,0.28109877247513,-6.03338665408998 +"Q9VP78",-0.0551258413901312,14.9102054543274,-1.45791555507153,0.174864307120361,0.283729245405411,-6.04215777722551 +"Q95TK5",-0.0678541927530674,17.0649837866135,-1.45512368850289,0.175618870341141,0.284590955292769,-6.04582493984176 +"Q9VNR6",-0.144714449255959,14.6764588249979,-1.45427459517388,0.175848910068197,0.284590955292769,-6.0469393260039 +"Q7KLX3",0.0889376656132441,19.2859219052003,1.45339604719286,0.176087201928544,0.284590955292769,-6.04809192143824 +"Q9VRJ4",-0.0500869428341062,20.6983170433863,-1.45338077189824,0.176091347553389,0.284590955292769,-6.04811195755567 +"Q9VS11",0.103268031880681,14.9399795803517,1.45280203398364,0.17624847531021,0.284590955292769,-6.04887096802378 +"Q8IQB7",0.193408138327497,14.398581273605,1.44780203413583,0.177610993285722,0.286326575996092,-6.05542017230473 +"Q9V998",0.135861784308885,15.8384052883691,1.44759841745523,0.177666670357287,0.286326575996092,-6.05568656356104 +"Q9VY24",0.101794254760339,17.7309556543533,1.44587017794905,0.17813984364516,0.286812026254948,-6.05794662353118 +"O18373",0.0579470539832911,19.6068917286606,1.43850835733457,0.180167537023765,0.289796964084514,-6.06755391745385 +"Q9VDC0",-0.0596823585225419,17.5856818272707,-1.4372061759278,0.180528248777754,0.290058768004444,-6.06924991459424 +"Q9VXN3",-0.0753744602176845,17.0372404927192,-1.43666588528912,0.180678093499171,0.290058768004444,-6.06995330593998 +"Q7JWU9",-0.190718655072281,15.5937734676188,-1.43553777533486,0.180991307287092,0.290282212071991,-6.07142140089172 +"Q9VMU2",-0.0595672597011099,16.31976715712,-1.43422238834773,0.181357103276848,0.290589479602096,-6.07313224939027 +"Q9VW73",0.119068159884982,14.1469447070819,1.42874854753224,0.182886111229744,0.292758189569302,-6.08024058721242 +"Q9VTB4",-0.0801205940820964,20.6387786732111,-1.42667476180998,0.183468247633754,0.293408472725889,-6.08292889101379 +"Q9W3T9",-0.0651831943150363,18.6529669433313,-1.41804846280955,0.185906729384148,0.2967945290779,-6.09408344990458 +"Q9VLT8",-0.103455358649574,13.9613453795412,-1.41792645096274,0.185941416598565,0.2967945290779,-6.09424089779745 +"Q9VV46",-0.119332586553448,24.0339844706563,-1.4128861878679,0.187379150559616,0.298803463798699,-6.10073708052505 +"A1Z7K8",-0.0654486967531227,17.6807719085407,-1.40706635199786,0.189050997041958,0.301181531104094,-6.10821870119662 +"Q9VXH7",-0.112119654402147,18.1658317540769,-1.40552776764155,0.189495091470182,0.301600966194909,-6.11019313749454 +"Q9VIH3",-0.11516010150374,13.8265894557136,-1.40459740068767,0.189764060101292,0.301741136557631,-6.11138635375068 +"Q9VV76",-0.082667274729717,16.3604502122237,-1.40126419024207,0.190730348320801,0.302988781903902,-6.11565689459776 +"Q8IPW2",-0.0745423225435093,17.2360813797925,-1.40007641392327,0.191075687392442,0.303248569524826,-6.117177029132 +"Q95SK3",-0.0640928344330689,17.2629840617176,-1.39921542694148,0.191326345331271,0.303327939497618,-6.11827838892439 +"Q95RF6",0.120041786167523,17.2694542438897,1.398655859555,0.191489400654072,0.303327939497618,-6.11899393231088 +"Q94533",-0.0972635230208567,15.3166843016096,-1.39672022416267,0.192054343429342,0.303934198140553,-6.12146762050712 +"Q9W1F2",0.1478976601728,13.5534084267743,1.39421762211926,0.192786853652539,0.304804238760602,-6.12466243646476 +"Q23970",-0.0674593027792909,21.6084578156964,-1.39319791957188,0.193085996893325,0.304988108729229,-6.12596307239934 +"Q9VDD1",-0.131320517361928,14.4698029768659,-1.38987616872472,0.194063199171839,0.306241642590943,-6.13019550202342 +"Q7K3D4",0.0639879074450853,18.510885839959,1.38004253375933,0.196980601835259,0.310551648262015,-6.14268474067074 +"Q0E9F9",0.0810001665710978,18.4680721023403,1.37151894420656,0.199539166091952,0.314288318263811,-6.15346106723862 +"Q9V3T8",-0.130065386850898,15.6392130640234,-1.36997218861357,0.200006446621529,0.314727125438406,-6.15541170953572 +"Q9VKV9",0.0913003393942837,15.5846373073084,1.36922580375359,0.200232261014923,0.31478549611017,-6.15635244809089 +"Q9V428",-0.0477943789273212,18.7462841635732,-1.36670711528217,0.200995857271719,0.31568840859626,-6.15952438231392 +"Q9VJ25",0.163336923251562,15.6881949947126,1.35923615776187,0.203275237495166,0.318968105495708,-6.16890930381055 +"Q7KNM2",-0.0555585194278088,19.6423003879568,-1.35393279058882,0.204906404908275,0.321225454311093,-6.17554972640375 +"Q9W0M5",0.124700157777839,13.3065603828079,1.34863116412676,0.206547971671419,0.323494851406504,-6.18216995912345 +"Q9W330",-0.0556679746127493,20.6525302841512,-1.34644341885208,0.207228569959933,0.324256336485148,-6.18489656844835 +"P13496",-0.0595345855990885,18.2719389382299,-1.34220631655964,0.208552041150844,0.32587469811026,-6.1901685364527 +"Q961D9",-0.280323412952109,12.4322959872544,-1.34188215519853,0.208653583682109,0.32587469811026,-6.19057139317576 +"Q9VR30",0.103213242011899,17.2560637974242,1.33843410041758,0.209736230244891,0.327259150653394,-6.19485230940532 +"Q7K3W4",-0.0631549420603896,19.3178700162814,-1.33666449922031,0.210293678732531,0.327822295444731,-6.1970463573001 +"Q9VGE4",-0.0706481948155435,15.6960205499294,-1.33132132710172,0.211984343015513,0.330127840611914,-6.20365876341652 +"Q9XY35",-0.0830942888758983,19.1850179906198,-1.33074148583248,0.212168492287753,0.330127840611914,-6.20437522381189 +"A0A0B4K7J2",-0.124764285142264,15.6547832582705,-1.32861112524386,0.212846206791663,0.330707924651693,-6.20700564494424 +"Q9W1M9",0.0930471918805544,14.382704234588,1.32785588902165,0.213086895633415,0.330707924651693,-6.20793744647197 +"Q7YTY6",-0.086182657904688,18.4303276441376,-1.32770157437718,0.213136102518327,0.330707924651693,-6.2081277921882 +"Q7K1H0",-0.0609770185483214,16.3580768517266,-1.32443916456243,0.214178610651935,0.332016656661179,-6.21214829849538 +"Q9W2L6",0.083572564350284,20.7751042453114,1.32269614226107,0.214737329099188,0.332573690749718,-6.21429349441561 +"Q9VPB8",0.111327903072642,15.653841998681,1.32073145661127,0.215368550086254,0.333241875272608,-6.21670910836827 +"Q9W0C1",-0.063621806831442,21.2609680411294,-1.31878663445792,0.215994903985336,0.333820717007753,-6.21909780114048 +"Q9W3V3",0.295228573448398,13.1218363749085,1.31832775943952,0.21614291029279,0.333820717007753,-6.21966104323451 +"Q9VSJ8",-0.10892813169594,15.7857250437206,-1.31684232231538,0.21662260212629,0.334205790066558,-6.22148337880697 +"Q9NHD5",0.0928211633035545,16.5337017186292,1.31598787278108,0.216898928628278,0.334205790066558,-6.22253095936956 +"Q95RN0",-0.0618799581035354,16.9078545771638,-1.31569618099159,0.216993327723071,0.334205790066558,-6.22288847193673 +"P11046",0.067729462225163,20.9747432315574,1.31020543823472,0.218776630881969,0.336641531652329,-6.22960772292567 +"Q8SXG7",0.122067546928424,13.9677433757507,1.30914613078838,0.219122067585041,0.336695018962831,-6.23090174572397 +"O61722",-0.087584438954547,18.9631235597279,-1.30886106893815,0.219215102274361,0.336695018962831,-6.23124984293999 +"Q9VTT2",-0.241047498405347,14.0718427666241,-1.30406874162848,0.220784050881214,0.33879282140742,-6.23709381371546 +"Q9V3Y4",-0.0843652565979873,14.0450196088911,-1.3010718157372,0.221769909777378,0.339992839621937,-6.24074062922319 +"Q7K0S6",0.123867089241513,17.3845170409259,1.29927922053847,0.222361329289425,0.340586498856529,-6.24291908955714 +"P92204",-0.0988241197844832,15.8998500396396,-1.29459973019518,0.22391133091098,0.342428129912781,-6.24859574106092 +"A1ZB69",-0.0744171455812968,20.4786414679702,-1.29441026657484,0.223974274421369,0.342428129912781,-6.24882526899007 +"Q9W499",0.15574153337726,16.9264397609861,1.2934613615391,0.224289738328969,0.342596413491503,-6.24997446898026 +"Q9VBT1",0.0735805160155465,16.2775262653772,1.29229716047296,0.224677276840113,0.34287438039278,-6.25138358442942 +"Q24090",0.0838260941751905,15.8107082983283,1.28595628952338,0.226797699404769,0.345793932913304,-6.2590423941119 +"Q7KML2",-0.109042547625094,13.6421437000119,-1.2851762987158,0.227059664215821,0.345877187134238,-6.25998263362383 +"Q9W147",-0.0864905259800981,13.7732295045062,-1.28446175129952,0.227299867389088,0.345927170442517,-6.26084362399695 +"E1JGR3",0.0878159195830168,12.2108143885341,1.28093012832272,0.228490125920522,0.347421631755178,-6.26509396804014 +"Q9VR31",-0.0726775387975884,17.3186014962933,-1.27775956695826,0.229563044549602,0.348735116856772,-6.26890257670248 +"Q9VG33",-0.0705027330267995,19.972998234768,-1.27522486280852,0.23042375398159,0.349724132521649,-6.2719424605976 +"A8DYK6",0.1226358298933,16.6016758710027,1.27376869502525,0.230919418193979,0.350157808679598,-6.27368687483565 +"Q9NHE5",-0.130071169068019,15.5831537919131,-1.26990790651953,0.232237812364512,0.351734668158343,-6.27830491017543 +"A1Z877",0.0464642434083125,19.9196010223024,1.26944234927521,0.232397207112536,0.351734668158343,-6.27886109389771 +"Q9VGZ3",0.09049768685502,16.9978445584458,1.26865896379598,0.232665619731208,0.351734668158343,-6.27979664095351 +"Q7PLT4",0.19617955218396,15.7946951550433,1.26825887062433,0.232802801946529,0.351734668158343,-6.28027428482514 +"Q9VC66",-0.0597304683349975,17.7515983148648,-1.2653868710325,0.233789480466418,0.352905749699534,-6.28369975524704 +"Q9VJQ5",0.107400176647486,14.4055937343728,1.26312098551179,0.234570333627669,0.353764300624731,-6.2863983194253 +"Q7K2W6",-0.0850653720104155,16.9060726625612,-1.2568397805709,0.236746037718278,0.356723027022663,-6.29386050851154 +"A8WH76",-0.0581627685716803,18.9799980295909,-1.25454428432473,0.237545246337608,0.357494948243465,-6.296580823296 +"Q9VQ88",0.0710078387452455,16.4501168306925,1.25375554973588,0.237820361127685,0.357494948243465,-6.2975146865619 +"Q8I0J3",0.104843994138689,15.026509877106,1.25352360348988,0.237901314478565,0.357494948243465,-6.29778922961097 +"Q9V436",0.0505048739428169,19.1212191049764,1.25285582624539,0.238134505667993,0.357523272236014,-6.29857943623154 +"Q9VKW5",0.0970734461939067,16.9797528758255,1.2501969633898,0.239064836972622,0.35843218408474,-6.30172271320402 +"Q9W329",-0.0684594204034443,16.4866494989409,-1.24989786112828,0.239169676790357,0.35843218408474,-6.30207600227983 +"Q9V3G3",-0.122748290482388,14.9230907717833,-1.24863458017994,0.239612887558301,0.358774054261441,-6.30356746161618 +"Q9VRD4",-0.0542614419978733,20.2874656467988,-1.24671927489911,0.240286126577293,0.359459425229529,-6.30582660563382 +"Q9V3N1",-0.0673267472341976,18.4057307520564,-1.24436232800485,0.241116709919428,0.360378738481726,-6.30860317984782 +"Q9VAA9",-0.0841644312139138,17.1661585009902,-1.2408541997499,0.242357275500867,0.361908626262709,-6.31272873392949 +"Q9V3R3",-0.100552081097311,13.6310929879481,-1.23704318568277,0.243710801070098,0.363604307857713,-6.31720075763034 +"Q9W259",0.0898451914397462,16.9290720740408,1.23527719449403,0.244340083051238,0.364217389213106,-6.31926961421436 +"Q9W2J4",-0.059918735812369,15.2518508858656,-1.22841757060398,0.246796862306801,0.367551041364057,-6.3272849235081 +"Q9Y0V3",0.0520756560553366,15.1888859387289,1.22472045003007,0.248129230389642,0.369205670196185,-6.33159120659309 +"Q9VEN9",0.105976386720601,14.89116397833,1.20982569413263,0.253555758562729,0.376943854975608,-6.34884222538311 +"Q9VG97",0.0459333736988228,20.113722070407,1.20213846092364,0.256393419241714,0.380822994920017,-6.35768378715356 +"A1Z7G2",0.0598590413794291,19.54703410268,1.19678022992386,0.258386331888176,0.383441638424803,-6.36382159454928 +"O61604",0.0560343862568473,20.9087918322953,1.19417079127894,0.259361340427969,0.384546414074535,-6.36680321368238 +"P38979",0.0496889534068004,22.09343291739,1.19265601660568,0.259928675801926,0.385045320814931,-6.36853178893946 +"Q5LJT3",-0.0845058937776884,17.0613513748717,-1.19073878878686,0.260648161423143,0.385768529950136,-6.37071724835482 +"Q7K9H6",0.199340885605272,11.95099182165,1.18931712098046,0.261182699849406,0.386216971053909,-6.37233610242857 +"Q9VK59",0.0576659872057377,18.7533930080886,1.18753555827837,0.261853788192645,0.386866358463536,-6.37436270658538 +"P51140",-0.096982390792526,13.6059266737272,-1.18655087530166,0.262225292003112,0.387072377930258,-6.37548184042501 +"Q7K2N0",-0.111315026752779,15.4712876024501,-1.17659987362815,0.26600318503368,0.392301779519168,-6.3867520939465 +"Q9VG00",-0.0955376118082842,15.2924890535195,-1.1645163402153,0.270648538483986,0.398800143278523,-6.40034049583704 +"Q9VVL5",0.058628022973469,17.2263219799278,1.157862324618,0.273233798848465,0.402254171649814,-6.40777742921663 +"Q7K127",0.111248532430075,18.5910887054544,1.15511083747247,0.274308491500187,0.403480215010858,-6.41084311401811 +"Q8I937",-0.12390703750412,14.068060006956,-1.15092760442082,0.275948770386958,0.405535285467353,-6.41549330668948 +"Q961B9",0.102391625109734,14.8551098598949,1.14909057924516,0.276671512744795,0.406239509910491,-6.41753129324372 +"Q7KTP7",0.0539711825495957,17.8970159509606,1.14593323973867,0.27791717731497,0.407699317486376,-6.42102817311449 +"Q9V3W7",-0.0836335591151531,17.9045485347029,-1.14465877225998,0.278421236730672,0.407699317486376,-6.42243759613043 +"Q9VNF5",0.0645375784005413,15.9672352806359,1.14444663457013,0.278505207945638,0.407699317486376,-6.4226720800292 +"Q9V3F3",0.0841551950750166,14.5727019345619,1.14409758054037,0.27864341842594,0.407699317486376,-6.4230578298332 +"Q9VD14",0.0566251322016988,17.6146186005908,1.14212429011372,0.279425767764435,0.408485697310322,-6.42523686291673 +"Q9VRG6",-0.0562990559072283,16.354388743549,-1.13819618533675,0.280988258229887,0.410410170514406,-6.42956587585846 +"Q8IQC6",-0.158767813456974,15.9596916301663,-1.13152620009374,0.283657024081957,0.413945683437187,-6.43689015727738 +"Q9XZ63",0.115280893893733,19.0889939948596,1.13048630564475,0.284074878041452,0.41419309141009,-6.43802905297535 +"E1JIY8",-0.175352244955015,16.4371223348939,-1.12794708482397,0.285097212365357,0.415320655218703,-6.44080659856238 +"P17704",0.0462072091923282,20.31746461413,1.12548870169284,0.286089727521693,0.416173779838101,-6.44349109369795 +"Q9VPU4",-0.166866392677388,13.049746462045,-1.12526085872076,0.286181849804738,0.416173779838101,-6.44373966204684 +"Q9VAD4",0.199945453906876,13.2700743343526,1.11392352315606,0.290794985590275,0.42251396861026,-6.45605871018005 +"Q9VU84",0.0502067206943764,18.3997061075836,1.11250851793919,0.291374771159134,0.422987918445114,-6.4575894012936 +"Q9VNE2",0.057768898067561,19.0566594664043,1.10715824615971,0.293575085692492,0.425811515595719,-6.46336331687367 +"Q8T0N5",0.0615548155716752,18.6009268270367,1.10580990919907,0.29413161366786,0.426248072630747,-6.46481497407739 +"Q8IMT6",0.0982603819842964,16.0419511138059,1.10176488712541,0.295806089304353,0.428302566805261,-6.46916162132174 +"P41375",-0.0760135663997659,16.8159921352946,-1.09940534882967,0.296786231233187,0.429085721918475,-6.47169131929443 +"Q9XYW6",0.0434812715558337,16.6267459872354,1.09880990479886,0.297033970956426,0.429085721918475,-6.47232902971348 +"Q9VIL2",-0.13282454672008,16.0464512051016,-1.09860632096122,0.297118710321246,0.429085721918475,-6.47254700214203 +"O18333",0.0857324129175048,17.3984163906581,1.09674716783974,0.297893422049648,0.429832377144302,-6.47453608187543 +"Q9W3J1",-0.236846744877191,15.6866247347313,-1.09479169231518,0.298709947452198,0.430408946206658,-6.47662535022946 +"A1Z9M5",0.115916619802261,15.0979767571556,1.09455454179002,0.298809088553543,0.430408946206658,-6.47687852659317 +"Q7K8X7",0.0683622536342199,19.4076644657539,1.09194533559261,0.299901541170303,0.431514981677288,-6.4796611961821 +"Q8T0Q4",-0.0575913255155669,20.0364800458056,-1.09124037113454,0.30019722954818,0.431514981677288,-6.48041212780883 +"Q9XZ61",0.0449959969406066,18.5585683424342,1.09086907774563,0.300353053793364,0.431514981677288,-6.48080747734787 +"Q9VB10",0.0386323324246582,20.9726727528313,1.08942366618978,0.300960254753486,0.432015236599669,-6.48234552472638 +"Q9VND8",-0.0819502742779719,18.2870736123248,-1.0870884003279,0.301943262363241,0.43305362134298,-6.48482704924917 +"Q8IMT3",0.064800689321368,14.7283433142183,1.08476984805359,0.302921667041326,0.434083625966436,-6.48728664358737 +"Q9Y128",0.105815999195855,14.290420348116,1.0797084915125,0.305065936074555,0.43654630235533,-6.49264142830055 +"Q9V4W1",0.111622746223485,13.6950404101597,1.07947846660992,0.30516366219803,0.43654630235533,-6.49288431664942 +"Q9VUM1",-0.0650224257747851,16.5239657181576,-1.07448151805662,0.307292522937809,0.439215019931676,-6.49815055263563 +"Q7JVK8",-0.0465488452904488,19.1556973286507,-1.06277806116718,0.312322848214943,0.445739212319557,-6.51040847925276 +"Q9VN93",0.0445574920138334,20.3091174846045,1.06261916890908,0.312391570264725,0.445739212319557,-6.51057416156969 +"Q27272",0.100298842111441,15.8195508772337,1.06195887533099,0.312677274908723,0.445765550895513,-6.51126245970535 +"Q9VXA3",-0.0448143127826732,17.8243106692413,-1.06002072849644,0.313517042757186,0.44656730085242,-6.51328083047357 +"Q9VH25",0.0657138400333057,16.1794917184969,1.0594259208312,0.313775105874722,0.44656730085242,-6.5138996665516 +"Q6IGW6",0.103057417032678,15.7094771637006,1.05728613136192,0.314704805351958,0.447508623467234,-6.51612359588894 +"Q95SH0",-0.293274361130951,13.7630028904493,-1.05640889925164,0.31508654887751,0.447669815611318,-6.51703428058405 +"Q8IPP8",-0.0491060319284813,19.0882506214116,-1.05373080397309,0.31625413838381,0.448413866765151,-6.51981075157309 +"Q5U1B0",-0.106635246182885,14.8120351528379,-1.05331820335079,0.316434313420615,0.448413866765151,-6.52023800560715 +"Q9VUV6",-0.0711599754229919,14.8330664701628,-1.05304945832464,0.316551711101078,0.448413866765151,-6.52051622279698 +"Q9W3X8",0.104736625781156,13.8866851466956,1.05274311651684,0.316685572571552,0.448413866765151,-6.52083329237266 +"Q9W2V2",-0.1269856072972,14.2389032170935,-1.05122813533489,0.317348199154771,0.448970989134994,-6.52240023716453 +"Q9VVK7",-0.0497848673340187,18.2403639710146,-1.04802996551313,0.318750459778721,0.450572683822802,-6.52570214622236 +"Q8SX78",-0.0560933389707277,16.0028680247585,-1.04691744108328,0.319239348046277,0.450881653294826,-6.52684886002332 +"Q9V5C6",0.0540817522803252,20.6220851543436,1.04466140266061,0.320232477136121,0.451901668242851,-6.52917121843086 +"Q7JV69",-0.0753447539136545,16.0864231608568,-1.04301560249735,0.320958439956571,0.45254326107148,-6.53086285266811 +"O62530",-0.0889997162887646,15.7193892711393,-1.04004122704617,0.322273577326267,0.454013789679234,-6.53391460391049 +"Q4QPU3",0.172297745835239,14.4112893400985,1.0394262970957,0.322545976676945,0.454014083626282,-6.53454465319233 +"Q9VJJ0",0.0536692538190238,19.7641092497838,1.03598304257789,0.324074452441697,0.455345465188405,-6.53806700386906 +"Q8IH18",0.0641511332532367,15.6489392038906,1.03543645988956,0.324317581850936,0.455345465188405,-6.53862527323018 +"Q7K549",0.0947800412306794,14.7783868724696,1.03490220140223,0.324555361412066,0.455345465188405,-6.53917072455521 +"Q9VSU7",-0.0541699755117353,14.7738190980807,-1.03483835071922,0.32458378783514,0.455345465188405,-6.53923589768844 +"Q9VHX2",-0.143722117820779,14.828778906165,-1.03311820694341,0.325350301094402,0.456037228760893,-6.54099044353671 +"Q9VAS1",0.107928570379681,13.0248200771786,1.03220686671055,0.325756952592173,0.456223842925058,-6.54191905241333 +"Q9VL18",0.0455312214428858,20.8684925025028,1.02794485014287,0.327663770076205,0.458257066318618,-6.54625301080692 +"Q9VU45",0.0663877888107276,17.9204081413191,1.02773426460954,0.327758201509659,0.458257066318618,-6.5464667739129 +"A1Z968",-0.0429994708549906,17.2663005225585,-1.02062674607197,0.330957310853237,0.462342373955778,-6.55366066884056 +"Q9VNA3",-0.0611986332438619,18.6456375831638,-1.01914455016022,0.331627373317897,0.462702030550643,-6.55515576014081 +"Q9VZW1",-0.144087868667217,14.8610508487395,-1.0188303130563,0.331769561473962,0.462702030550643,-6.5554725038675 +"Q24050",-0.0410899316797444,16.6606765577379,-1.01554515073764,0.333258771639163,0.464331760912485,-6.55877910546963 +"Q08012",-0.0527305678229197,19.1498516834206,-1.01502531790431,0.333494873844818,0.464331760912485,-6.55930153291095 +"Q9VN95",0.0585443221552389,17.9351613542003,1.01395414031345,0.333981782520141,0.464412628865234,-6.56037736888231 +"Q9VVE2",-0.064059115481566,18.4208994947839,-1.01367268926127,0.334109804939017,0.464412628865234,-6.56065989015104 +"Q9VSC5",-0.0380299637601453,19.4526940489445,-1.01002159409581,0.33577386603488,0.466337059572172,-6.56431906350212 +"Q7K5K3",0.0557585897180815,22.6649737845149,1.00845092838858,0.336491616564708,0.466945105182973,-6.56588988482313 +"Q5U117",0.0974744495325233,14.4655727805127,1.00558367820632,0.337804800230447,0.468377728000321,-6.56875226079452 +"Q7JR49",-0.0469442708427117,18.8931625536071,-1.00336521040487,0.338823444525535,0.469399921485541,-6.57096237769882 +"Q9VD58",-0.0350506393053891,22.723303572096,-1.00044570201238,0.340167439939097,0.470870779932293,-6.57386479817593 +"M9PF16",-0.0427070814974293,21.1139785368399,-0.996813011804167,0.341845237427451,0.472800875645927,-6.57746653351795 +"Q8MLW4",-0.043612525379924,18.6739267008672,-0.995039279657474,0.34266666739398,0.473544325777265,-6.57922124003057 +"Q8ING0",-0.0806094062291578,14.6470636652304,-0.993412690269048,0.343421230933078,0.474194216222164,-6.58082812312439 +"Q9W379",-0.058179246092088,16.3210906124541,-0.991235579205983,0.344433089611142,0.474893438385428,-6.58297547246254 +"Q9VXK7",-0.0396597133462144,17.9834694318269,-0.991085071117306,0.344503122348232,0.474893438385428,-6.58312377972043 +"Q7K1Q7",-0.0490253446364761,16.5303281195213,-0.990486498668216,0.344781746933305,0.474893438385428,-6.58371341587378 +"Q9VJQ6",0.0865109712560006,14.3480426674184,0.988938736219825,0.345502969567399,0.475494185840281,-6.58523671061474 +"Q9VKA1",0.316195746651999,14.5849558305478,0.980104691354482,0.349640633957102,0.48079190225923,-6.59389346063804 +"Q9VL93",0.0777510559377443,15.3813584471773,0.970923703307077,0.353979061650626,0.486356733800037,-6.60282205455789 +"Q9VIU3",0.264190781253294,12.4787348876725,0.970205793478929,0.354319951576437,0.48642442734938,-6.60351729041732 +"Q9VJJ1",0.0792123050421463,14.1228960635461,0.968741866642666,0.355015817626466,0.486978934046829,-6.60493365831481 +"Q9W0Y1",0.056862568706709,17.7240050076461,0.967408855892635,0.35565031751207,0.487228373577583,-6.60622181757147 +"Q9VWD9",-0.0385137043536261,19.4565960399002,-0.967132695854515,0.355781869914566,0.487228373577583,-6.60648850138356 +"Q9VY41",-0.118144459260979,16.5327427912138,-0.964371059659999,0.357099355125814,0.488631439171336,-6.60915189131926 +"Q960X8",-0.0504183963853784,18.4435943822441,-0.96182131736997,0.358318891761327,0.489898288080241,-6.61160529754729 +"Q9VTM6",0.119488704532692,16.2429953700055,0.959373935664855,0.359492305004023,0.491100053027608,-6.61395512086734 +"Q9V4S8",-0.0992289303257632,17.1807098167497,-0.958642431782478,0.3598435685818,0.491168270449022,-6.61465649649626 +"Q9W0Q2",-0.0498332750842874,15.5257964792929,-0.957588476349944,0.360350107804245,0.491168270449022,-6.61566625834638 +"Q9VM33",-0.247581056937401,13.7288762340449,-0.955062737850061,0.361566094660916,0.491168270449022,-6.61808231692847 +"Q7KSM5",0.0456942199930452,18.9300736124172,0.954683492093337,0.361748933609182,0.491168270449022,-6.61844463392906 +"Q8IMX8",-0.0544366030249108,17.1687355390935,-0.954213484489953,0.361975622543063,0.491168270449022,-6.61889349456922 +"A8E6W0",-0.0737764443616467,16.4597067142857,-0.954176662267816,0.361993386564992,0.491168270449022,-6.61892865225681 +"P53501",-0.0332314917507119,24.6324574917877,-0.953709490078465,0.362218817516489,0.491168270449022,-6.61937460768966 +"Q9VIG0",-0.0458767831320657,17.3843707622021,-0.953481182889948,0.362329022530912,0.491168270449022,-6.61959247986523 +"Q9VEC2",-0.0435315202354758,16.7037995512201,-0.953425832345504,0.362355744156726,0.491168270449022,-6.61964529399218 +"Q9VNX9",0.162242195876182,13.597080997067,0.953154212193992,0.362486895037617,0.491168270449022,-6.61990443011844 +"Q7K2D2",0.036850447409833,20.3673150414135,0.950242393497138,0.363895007962939,0.492676033508265,-6.62267853942999 +"Q9W306",-0.0619056232372053,14.7281523650063,-0.93845988869109,0.369633046015696,0.500038865169652,-6.63383117410822 +"Q9VUW4",0.0479989985656228,14.5474279594045,0.936625921614265,0.370531980491628,0.500544311824092,-6.63555659244533 +"Q09101",0.0486954932140709,14.594746092953,0.935768932040503,0.370952576849955,0.500544311824092,-6.63636188559425 +"Q9VVW8",-0.0500943758837629,15.7841897007662,-0.93568993814212,0.370991362928302,0.500544311824092,-6.636436083111 +"Q7KMM4",-0.0862270948127097,14.4705657196182,-0.935250821183652,0.371207022617747,0.500544311824092,-6.63684844153755 +"Q9VYS2",-0.112498191350724,15.0336573483283,-0.933687717179769,0.371975423317919,0.501175287636743,-6.63831497252598 +"Q9VGQ8",0.0682192581041843,16.2798281012676,0.931833370483246,0.372888467193534,0.501999970362239,-6.6400520738367 +"Q9VEP9",-0.0569644145325512,17.5799597671533,-0.92965512515217,0.373963033205779,0.503040596280032,-6.64208887800493 +"Q7K180",-0.0633604502893999,16.3401831667027,-0.928983142769788,0.374294978726043,0.503081405733312,-6.64271641514088 +"Q9W5P1",-0.0736164332543172,14.2402773754099,-0.92576701137465,0.375886587309294,0.504813870879148,-6.64571452900299 +"Q9V564",0.0841525410626485,14.0918613844143,0.924597888556855,0.376466357605851,0.505185747776798,-6.64680222306845 +"Q7JVG2",0.0899369446950047,14.8419559299019,0.922041709008452,0.377736184951263,0.506482280143654,-6.64917632065097 +"Q7JXW8",0.0963801826750927,14.9004745945798,0.921024568556846,0.378242312083919,0.506753555466648,-6.65011946269199 +"Q9VF28",0.0651428986605254,17.7543272874272,0.919632878852441,0.378935593283837,0.507274935471461,-6.65140847834739 +"Q9VAN1",-0.0525968537315418,14.8729687184041,-0.917703143398479,0.379898395793482,0.508155993731778,-6.65319311483306 +"Q9VES8",-0.0533724590282514,18.001847587605,-0.902396780592541,0.387596509577796,0.518037642608786,-6.66723584379333 +"Q8SY33",-0.0404366571214183,17.4047648862918,-0.899208245013103,0.389213841684275,0.519782776564748,-6.67013585706564 +"Q9VZW7",-0.097659398715404,13.9465557564765,-0.897559672538647,0.390051905736437,0.520485263014702,-6.671631822772 +"O44226",-0.0315014347239249,20.1990338654296,-0.891298273286311,0.393246440664815,0.524328587553086,-6.67729225526105 +"Q9VAP3",0.116003702003095,16.4797177066512,0.888113905990726,0.394878075774847,0.525659033229253,-6.68015799404828 +"Q9VQL1",-0.0381236531256164,20.1164799644593,-0.888077445320176,0.39489678509802,0.525659033229253,-6.68019075564142 +"Q95U34",0.0447581999788333,19.4607711105026,0.887506761051579,0.39518970483782,0.525659033229253,-6.68070339173641 +"Q9VP57",-0.0643416360373621,19.4160523748787,-0.882498450182555,0.397766849009346,0.528665421631546,-6.68519016330741 +"Q9VS44",-0.0474939943438599,15.1466974027958,-0.879607944595939,0.399259527028113,0.530226824110583,-6.68776975705863 +"Q7K568",0.0759544135980121,16.0522275696362,0.878245757022061,0.399964315093145,0.530568222464066,-6.6889829051488 +"Q9VL89",0.0351700427203383,16.8720008939313,0.877881796281005,0.400152772098199,0.530568222464066,-6.68930677093851 +"P54352",0.0740297348745198,16.0559424221683,0.875894275593157,0.401182984610452,0.53151169049264,-6.69107330609519 +"Q95R34",0.0815673991873798,15.2485513117765,0.874828767962115,0.401736035169785,0.53182198941524,-6.69201892664952 +"Q9VAY6",-0.0349920436123465,15.2085288390863,-0.873748381051059,0.402297346658726,0.532142723415349,-6.69297674174828 +"Q9VF82",0.0580149508435124,14.9158456946799,0.871518727598889,0.403457467769988,0.533254402726102,-6.69495021768479 +"P46415",0.0557941166056821,17.9289956606201,0.866132336831114,0.40626959833421,0.536141918757843,-6.69969981440645 +"P04388",0.0743770526902843,16.5781441814092,0.866102900978592,0.406285003183402,0.536141918757843,-6.69972570053817 +"Q9VU95",0.216454859643964,16.5999431922349,0.860679790505969,0.40912996617437,0.539469394133477,-6.70448187085761 +"Q9W1C8",-0.0848490081086837,15.8992176970841,-0.856838221660837,0.411153497547729,0.541319875863809,-6.70783537876819 +"Q9W074",-0.0819596311909034,13.5321075825185,-0.856276826035443,0.411449782875399,0.541319875863809,-6.70832436397055 +"P40797",0.0406255592150764,19.1225212539575,0.856168527350775,0.411506955992392,0.541319875863809,-6.70841866207191 +"Q9VW90",0.100191031353869,14.995905288844,0.853861124380168,0.412726372071971,0.542244858411448,-6.71042531633359 +"Q9VQD8",-0.091014763047319,17.5001699137113,-0.853607998786482,0.412860293874424,0.542244858411448,-6.71064516393379 +"A1Z729",0.0563775180729333,16.6895061132364,0.851995848816762,0.413713934043038,0.542938506674892,-6.71204404218789 +"A8JNP2",-0.061523873114961,21.1434185374744,-0.847296231932951,0.416209263036466,0.545783844925177,-6.71610886043758 +"Q9VFN9",-0.0422457944815235,16.0365904669516,-0.842382761609753,0.418829061266586,0.548787803764859,-6.72033777140405 +"Q9VL69",0.0839236681045197,15.9766561463993,0.838827771096558,0.420731491378803,0.550847823877427,-6.72338413652644 +"P23625",-0.0370104399022182,22.1917393710994,-0.837418555333532,0.421487239429779,0.551404482642252,-6.72458862735594 +"Q9VB79",0.0496420031956131,17.6592194840505,0.836576924032302,0.421939035004591,0.551562939175281,-6.72530714884893 +"Q9VE52",0.0386912810768347,16.0070744267995,0.833586103112398,0.423547180723237,0.552806236015266,-6.72785539293624 +"Q9VUW2",-0.198072271583875,14.3537806814533,-0.833575332647954,0.423552979392992,0.552806236015266,-6.72786455522898 +"Q9VXE5",0.0510063307057358,14.6125619151115,0.830954242748631,0.424965729014133,0.554216447220933,-6.73009121167046 +"A1Z7H8",-0.0682282863388917,14.7339169772704,-0.829457366616306,0.425773956258081,0.554633975836666,-6.73136008576207 +"Q7K0D8",0.0356607471915211,17.3215488435076,0.828719230924906,0.426172887432243,0.554633975836666,-6.7319850543422 +"O15971",-0.0692537856899964,17.1115322904785,-0.828514782706195,0.426283427471586,0.554633975836666,-6.73215807169775 +"Q9W258",0.0492969500860028,19.3224938902384,0.827310831957602,0.426934764237516,0.554685209762098,-6.73317617663274 +"Q8IQ70",0.0406139093229712,17.9074040029846,0.827212677338117,0.426987895284493,0.554685209762098,-6.73325912275803 +"Q9VIK0",0.122766758269435,12.7888837216763,0.825858957749647,0.427721115764939,0.55520530824585,-6.73440221400187 +"P02572",-0.0426048612708811,26.5894244936808,-0.824654708419476,0.428374087526171,0.555620511659139,-6.73541771586678 +"Q9VVM1",0.0682436678657208,15.5860647856542,0.823473406193339,0.429015265687145,0.55601978489989,-6.73641260809903 +"Q9U6M0",-0.0371868067983634,16.2899473139055,-0.817971750583906,0.432009872854699,0.559466201802514,-6.74102965149132 +"Q9W0H6",-0.0527244277772922,18.1889632352742,-0.816768571083777,0.432666630991785,0.559882032966872,-6.74203575802171 +"Q9VYT3",-0.0730689323301483,14.3805604925854,-0.816153639547427,0.433002549682117,0.559882366565715,-6.74254946640075 +"A1Z7K6",0.0540136688325603,15.607503756067,0.814919560106053,0.433677214698833,0.560320367248376,-6.74357938169427 +"Q9VL70",0.0333110751565293,23.5171025033037,0.812908978801536,0.43477788804293,0.561219349775099,-6.74525440687627 +"P15425",0.0427633204900992,16.9948864953905,0.812419855255853,0.435045934807676,0.561219349775099,-6.74566134888243 +"Q9VV60",-0.0373691337197855,20.0697244804291,-0.806772103889027,0.438148938695358,0.564603466994726,-6.75034458738612 +"Q9VMQ9",0.0417724898212199,22.1014136692844,0.806009615627721,0.43856898831997,0.564603466994726,-6.75097465847877 +"P81900",-0.0382178159680535,22.4006018444719,-0.805556088649243,0.438818959688812,0.564603466994726,-6.75134917531832 +"Q9VYU9",-0.0695426849493792,17.8581728881067,-0.804980735847447,0.439136213721147,0.564603466994726,-6.75182402747563 +"Q9VA76",0.0612825836703337,15.2154680909054,0.80457199148342,0.439361690742899,0.564603466994726,-6.75216119237935 +"O76521",0.0635331781897079,16.0589973685743,0.803180419869698,0.440129902075331,0.565155255320748,-6.7533079412297 +"Q7JV09",0.049621991898583,15.2171652857816,0.802296038322708,0.440618582316618,0.565347534849322,-6.75403582281223 +"O97064",0.0490099131794501,16.4871097525208,0.800946633402402,0.441364909489192,0.565869845524959,-6.75514507611808 +"Q24372",-0.0584876017860072,16.8294565976518,-0.800278754841332,0.441734607369967,0.565908851838022,-6.7556934846114 +"Q7KUC2",-0.052987372828337,19.3875470669741,-0.799519731472211,0.442155005488518,0.566012700809554,-6.75631624441102 +"Q9VMX3",-0.096384550523295,12.4979514373125,-0.795170841646305,0.44456879429589,0.568648967466987,-6.75987435106483 +"Q9VW14",0.0544793072324961,13.8277892864,0.794582112539624,0.444896224547013,0.568648967466987,-6.76035471201412 +"Q9VLW8",-0.07768412666708,14.2342187831339,-0.790721317504092,0.447047386127823,0.570960980138751,-6.76349705644098 +"Q9VVS6",-0.0507024076349154,16.5163462340747,-0.789796166431815,0.447563873644872,0.571183275623295,-6.76424803808363 +"Q9VAV2",-0.0358106222751609,17.7770073601379,-0.785232214500163,0.450117522443575,0.574003079079421,-6.76794139368786 +"Q0E8X8",0.0831135760403541,19.7353570613096,0.77951752243225,0.453328423002501,0.577656080647954,-6.77253924169459 +"Q9W436",0.0977564336014254,14.4374452279605,0.778234550577072,0.454051326318508,0.577750953026199,-6.77356738355413 +"Q9VS84",0.0443042185036226,17.5330257169155,0.777201354236085,0.454634035195646,0.577750953026199,-6.77439426893618 +"Q9VQI6",0.0563247021961821,16.120637066652,0.776961962572504,0.454769118125686,0.577750953026199,-6.77458571919378 +"Q9V6B9",-0.0513742270732163,15.835220055815,-0.776927848313486,0.454788370097961,0.577750953026199,-6.77461299735043 +"Q9VJI7",0.0384803831942584,17.3566778049332,0.771295461772845,0.457974187979138,0.58135536190959,-6.77910212596403 +"Q9V9V4",-0.0402367402116575,18.6927859478668,-0.769828229961073,0.458806454505763,0.581630529047372,-6.78026677211461 +"Q7JZW2",0.0269715876129624,20.5293995814445,0.769152761493734,0.459189932576505,0.581630529047372,-6.78080227619593 +"A1Z8D3",0.108614039623562,16.6321093182225,0.769069784968564,0.459237054409705,0.581630529047372,-6.78086803023712 +"Q9VP13",0.127884985474623,11.9373294670801,0.768447194153744,0.459590719261291,0.581636813147067,-6.78136119562058 +"Q9VNI8",-0.0450473677711916,15.7564809377641,-0.766169599979169,0.460886010781749,0.582833863520817,-6.78316228900258 +"P49028",0.064444977833876,16.3454290801585,0.7635679893094,0.462368447435424,0.583992463977424,-6.78521378319569 +"Q9W2Y3",-0.0881022359276304,16.4635918396891,-0.763333129093921,0.4625024250085,0.583992463977424,-6.78539867562802 +"Q8IP97",-0.0427447262113354,19.9744979220433,-0.761045498506812,0.463808723754045,0.585159527592643,-6.78719694727096 +"P08928",-0.0289046993870876,22.7432001495385,-0.760486423505662,0.464128330338769,0.585159527592643,-6.78763569555867 +"P05389",0.0306092212016154,20.55224645321,0.757916597374724,0.465599239617772,0.586470258615064,-6.78964873022859 +"Q8IH23",0.0478701160620396,18.2371435558429,0.757442097204922,0.465871158672038,0.586470258615064,-6.79001975745694 +"Q9VMQ7",0.0462161314317147,15.9269545715369,0.754649042659222,0.467473816832584,0.58804398678488,-6.7921995310903 +"Q9VIE7",0.0461289945283099,15.0520558678408,0.753128237163518,0.468347935813764,0.588699590759124,-6.79338338143932 +"Q9VWT3",-0.0492902935090278,14.3268370420778,-0.750516238106565,0.469851675303185,0.590145025907916,-6.79541167167914 +"Q9VRL1",-0.0379517612350355,20.5050728447203,-0.748759443219898,0.470864797093231,0.59070480677489,-6.79677232472445 +"Q7JYZ9",-0.041322878801207,18.1240655102936,-0.748515421305986,0.471005631301321,0.59070480677489,-6.796961096029 +"Q9GYU8",-0.177923550114482,12.3532384870612,-0.747560457640742,0.471557034076917,0.590952015657624,-6.79769931030573 +"Q9VER6",-0.0336422398910674,15.0511555403211,-0.743734742291236,0.47377013772701,0.593114640148499,-6.80064822937193 +"P42207",0.0347049461630391,15.967188136115,0.742411950100974,0.474536876436157,0.593114640148499,-6.80166470135411 +"Q9VSL6",0.0859093458985551,14.6424707566889,0.742399930632688,0.47454384695761,0.593114640148499,-6.80167393002227 +"Q7PLI0",0.0392398443534283,17.7699912144632,0.742121972893778,0.474705062708781,0.593114640148499,-6.80188731136874 +"Q9VVU5",-0.0829586146300638,15.5565418550829,-0.739867706827501,0.476013818628975,0.594304677749349,-6.80361520721529 +"Q9VBU0",-0.0696699460464636,14.1174985127321,-0.738305611765178,0.476922057275508,0.594611309347253,-6.80480978558978 +"O61491",0.0271700431239559,20.8940385255895,0.738219113634741,0.476972381238983,0.594611309347253,-6.80487586691124 +"Q9W125",-0.0388865807287466,21.3234296599641,-0.736662569797646,0.477878539054213,0.595296044169101,-6.80606381919231 +"Q9W1Y1",0.0386692859205695,17.821017350858,0.733726037011388,0.479591021869389,0.596886451912396,-6.80829884060572 +"Q8SXS0",0.083007028977427,14.5813319032839,0.733246661973659,0.47987094245475,0.596886451912396,-6.80866293508432 +"Q9VTP4",0.0274094287410058,20.9552069546097,0.729356761547557,0.482146158305653,0.59902280904528,-6.81160946974323 +"Q7JXF5",-0.0356359667108102,18.4948445421339,-0.729082662805009,0.482306734141373,0.59902280904528,-6.81181656283538 +"Q9VJD1",-0.0363094606505072,18.5680685718679,-0.727258870618782,0.483376022653055,0.599720877839699,-6.81319272893057 +"A1Z934",-0.0367805804118539,19.3086869595412,-0.726897826903692,0.483587878114145,0.599720877839699,-6.81346479094484 +"Q95RB1",-0.0429800026236151,15.945213301867,-0.724320627615845,0.485101828392466,0.601151448557677,-6.81540328468033 +"P0DKM0",0.0475915066461106,16.9844487009516,0.721653227030952,0.486671877264658,0.602649362492538,-6.81740308552094 +"Q0KIE7",0.0820966141970558,13.8452294168401,0.720331722659484,0.487450893994228,0.603166239749534,-6.81839137594736 +"Q9VK69",0.0323635455803206,20.2924868230168,0.719465327340338,0.487962048128864,0.603351146240879,-6.81903842435128 +"Q9VWA8",-0.0557577575849866,14.4609297902222,-0.718177592887242,0.488722398364513,0.603843674423709,-6.81999884122547 +"Q9VE94",-0.0441580864242432,14.6606160445414,-0.716644963674289,0.489628306336862,0.604515185025822,-6.82113987933058 +"Q9W4W5",-0.0347199824490438,17.2326646535718,-0.706638262855159,0.495568617443552,0.61139678542592,-6.82853562332202 +"O62602",0.0597713785110834,14.5005838998351,0.704206071754257,0.497019122416543,0.612733108788466,-6.83031897270275 +"Q9VBI3",-0.0414631313823861,18.6532424770965,-0.702344476410429,0.498131095817809,0.613650419367876,-6.83168017788486 +"Q9VA34",-0.0541241125549128,14.5219493483432,-0.700749124095248,0.499085248580072,0.614372099359085,-6.83284410355504 +"Q9VQ93",-0.0543630207929446,16.7503416124855,-0.699203170454023,0.500010923437299,0.615057684582165,-6.83396969682768 +"P29829",0.0358848088719057,21.3002217031645,0.698343338583077,0.500526221278438,0.615114697259977,-6.83459475473121 +"Q27377",-0.0591196342076081,20.1766953881159,-0.697638157098136,0.500949079097855,0.615114697259977,-6.83510686749724 +"Q0E980",0.0351622261054665,18.3793019838641,0.697280560157597,0.501163593271168,0.615114697259977,-6.8353663798273 +"A1ZBM2",0.0495133263417884,18.584650146154,0.692033122971487,0.504317850990301,0.618274844438367,-6.83916059389851 +"Q9VB17",-0.0358103095298681,15.5568922822991,-0.691764485588709,0.504479654244975,0.618274844438367,-6.83935413343162 +"Q7K1U0",-0.0512388958064829,16.7295905687708,-0.690538400456605,0.505218539172684,0.618725788061701,-6.84023659683475 +"O16158",-0.0254032779143998,21.2819987592901,-0.688071973510632,0.506706888587566,0.619759193752098,-6.84200746697767 +"Q9XYZ9",0.035154640181986,21.9673136256804,0.687908747676933,0.506805479782891,0.619759193752098,-6.84212445790932 +"Q9VM69",-0.0450959581261969,16.9184127574515,-0.685732894174451,0.50812084152539,0.620912500853004,-6.84368156938622 +"Q7JXF7",-0.0370520253366529,17.8804146234129,-0.682679295717744,0.509970299405678,0.622716295321135,-6.84585923870325 +"A1ZB73",-0.12296357399825,13.8165044133177,-0.681259001429154,0.510831903230093,0.623312080898168,-6.84686909863395 +"Q9VH77",0.050329393092774,15.4408588109802,0.678123728611176,0.512736977143915,0.625065872852049,-6.84909154822091 +"Q9V455",0.0571969558452601,19.3770583296521,0.677660689582491,0.513018693006268,0.625065872852049,-6.84941898168981 +"Q9V3V9",0.0245976879598508,19.5229905122187,0.676106935644742,0.513964685301855,0.625761383272623,-6.85051621015921 +"Q24400",-0.0296969732578063,21.4843106957728,-0.673424212400508,0.51560050151091,0.627295139693798,-6.85240527382612 +"Q9VJ60",-0.0468959087702672,16.5250844157754,-0.672647479292504,0.516074702667511,0.627414434438344,-6.8529509353104 +"Q9VR89",-0.0551657458144827,13.9544681654112,-0.671365319713064,0.516858040227975,0.627909112236171,-6.85385040275533 +"Q9VR25",-0.0308750090126253,16.9117226124012,-0.670598165100279,0.517327073828336,0.628021513206452,-6.85438783028799 +"Q9VHF9",0.0523067173127281,16.994125903837,0.66626830287157,0.519979079739091,0.63036160798879,-6.85741055104327 +"Q9VG51",0.104466965243784,19.2151689353544,0.666217025397022,0.520010535127443,0.63036160798879,-6.85744624090995 +"Q9VHL2",-0.0242135553557574,20.676355922656,-0.665465103457794,0.520471920047664,0.630462717966233,-6.85796930041885 +"Q9VPR1",-0.0767695092194991,13.6845185809437,-0.658596416025536,0.52469782992002,0.634698628535526,-6.86272228689634 +"Q9VE56",-0.0404709800396681,17.4883025703053,-0.658544478072028,0.524729861361205,0.634698628535526,-6.86275805447425 +"Q9VJU8",-0.036885727664167,15.604610519936,-0.656811721436736,0.525799157004563,0.635469250955738,-6.86394984944678 +"Q4V6M1",-0.0243279127882161,18.234967558562,-0.656277773838277,0.526128918207358,0.635469250955738,-6.864316518859 +"Q9VB68",0.0309793333252681,15.4885177287763,0.650832709000877,0.529498684070454,0.639076559355656,-6.86804007116451 +"Q9V4E7",-0.094549448980036,15.0162204104356,-0.649930967248815,0.530057959991576,0.63928899296164,-6.86865396430841 +"Q86BL4",-0.0334456008049386,14.9474631401491,-0.647270930591275,0.531709773850285,0.640534109950765,-6.87046031598606 +"Q9VNQ3",0.0553524512341799,15.1280996092294,0.647031890439793,0.53185835868214,0.640534109950765,-6.87062230704763 +"Q9VMV5",-0.0325275670926359,17.6447550957462,-0.646359404158406,0.532276499041219,0.640575180664324,-6.87107773729675 +"Q9Y105",-0.111140411485508,17.0281305942969,-0.642349811818047,0.534773570614657,0.643116305540914,-6.87378411025935 +"E2QCN9",-0.0380061678707371,17.426550276591,-0.640152098895581,0.5361451344715,0.643666482880185,-6.87526092329104 +"Q9VE12",-0.0405218421200004,15.69563569157,-0.639984840507213,0.536249601744563,0.643666482880185,-6.87537312595884 +"P55830",0.0237913221584911,22.0510037167304,0.639761121900381,0.536389351740682,0.643666482880185,-6.87552316179505 +"Q9VRZ7",-0.0518479580691995,17.2649161249609,-0.639144529561803,0.536774626910274,0.643666482880185,-6.87593642605529 +"Q9W197",0.0277357761145396,17.3522986114581,0.636277642284424,0.53856809381826,0.645353146902915,-6.87785309523828 +"Q9W3C3",-0.0425901609095547,16.3935597205855,-0.635499479995554,0.539055493461304,0.6454734839149,-6.87837196609267 +"Q9VC05",-0.0625954012454635,14.9131932045361,-0.632633296500247,0.540852913747627,0.64716116221739,-6.88027804947248 +"Q9VDV3",-0.0301447231173579,17.5897987104993,-0.631027771945574,0.541861265148631,0.647603162518075,-6.88134228367083 +"Q9VJ19",0.0366956078264558,19.1127220888357,0.630808902722724,0.541998809877238,0.647603162518075,-6.88148716916563 +"Q9VK58",0.238484594538049,13.3847249652691,0.628190694613852,0.543645734117155,0.649020130280436,-6.88321674784384 +"Q0KI15",-0.0398575573351039,15.5952192172761,-0.627686977233477,0.543962914947272,0.649020130280436,-6.8835487383656 +"Q9VC31",-0.0434026586385983,17.6703172668165,-0.622957876860263,0.54694589980264,0.652112766884063,-6.88665357463676 +"Q7K4Z4",0.0552985586752381,14.9562818899996,0.621763896871323,0.547700502387765,0.652546027130566,-6.88743402962894 +"Q9V3W9",-0.0292335131880961,18.5411635798691,-0.620936470619919,0.548223788571084,0.652703268619963,-6.88797406975539 +"Q9I7C6",0.130958957278404,15.4058096699453,0.618868620687041,0.549532794878412,0.653795079784016,-6.88932078794123 +"Q7JYZ0",-0.0634227787601009,16.9073134594957,-0.616364222023069,0.551120523296453,0.655216701966132,-6.89094623612447 +"Q9W1G7",-0.0284087197967686,18.8732685071219,-0.61394203920306,0.552658598651042,0.656577309508503,-6.89251250436956 +"M9NFC0",0.0293113154960736,19.9614587488786,0.610590055651225,0.554791089766094,0.658456802825603,-6.89467056716247 +"P05812",-0.0364288049549799,15.7772960328485,-0.610214762906872,0.555030134755874,0.658456802825603,-6.8949115036087 +"Q9VEW1",-0.110109254357322,14.6630521829412,-0.607435821032034,0.556802001886339,0.660089366841801,-6.89669128833545 +"C0HK94",0.0324780685472597,18.4970903712499,0.603923890225718,0.559045762515027,0.662278644797631,-6.89892971033547 +"Q9W2K2",-0.0695026407889525,15.6633777905736,-0.601553216209418,0.560563233997127,0.6628619248967,-6.90043389255247 +"Q9W078",-0.0357381644566814,19.4541925670275,-0.601327836284369,0.560707619577905,0.6628619248967,-6.90057660837849 +"Q9VLP1",0.0323057278423988,18.4621904375678,0.601292402686366,0.560730321360458,0.6628619248967,-6.90059904122884 +"P04359",0.0370530574499881,18.8508277304986,0.598117202674976,0.562766705100344,0.66479806239899,-6.90260424637402 +"Q9VVJ7",-0.0247792088846346,18.2086405809315,-0.597331031732117,0.563271542864927,0.664923519815073,-6.90309920169691 +"Q9VVK5",-0.0426065434813943,15.8746162179267,-0.595866904181947,0.564212399117353,0.665121403032494,-6.90401936546736 +"Q9V9S0",-0.0485086766504566,17.1327227179487,-0.595829134222903,0.564236681829124,0.665121403032494,-6.90404307498637 +"Q960W6",0.0625482269938988,14.0616741047332,0.593663946390512,0.565629672911924,0.66629258080303,-6.90539989537948 +"Q9V9U7",0.0374448078663079,17.7882386625905,0.58925474936982,0.568472239743302,0.669168451582094,-6.90814867704292 +"Q9VTW6",0.117972447198715,16.3582160019602,0.58411279965033,0.57179712051822,0.672607614262617,-6.91133009161445 +"Q9VKJ4",0.0301439169176767,15.1079244434305,0.577538540820201,0.576063629041653,0.677148790163127,-6.91535970800366 +"Q9VD30",-0.0519295957105506,21.4092989689148,-0.574480796152698,0.578053905462022,0.67855977531832,-6.91721936572816 +"Q9VMH2",-0.106422715451071,17.381563295025,-0.574444424072413,0.578077602354516,0.67855977531832,-6.91724143081898 +"Q9VGR1",-0.0416001666676724,14.2078313203524,-0.569235120287101,0.581476961221675,0.682070022023737,-6.92038812177774 +"Q9VVP9",0.0348324068191435,16.7611578186317,0.5684358913355,0.58199945429655,0.682203155141704,-6.92086851865434 +"Q9VAY2",-0.0194985870319648,21.1514561755768,-0.558699735219093,0.588384653993386,0.688826000753666,-6.92666977770073 +"O61444",0.0525592925667517,16.508128941228,0.558561697170653,0.588475450284157,0.688826000753666,-6.92675135002712 +"Q9VH39",-0.0815981462986279,18.4531203381608,-0.557349556057258,0.589273071747132,0.689275935255411,-6.92746683961932 +"Q9VK11",-0.0342678940834382,18.69853309309,-0.555661137016454,0.590385053857324,0.689707153149827,-6.92846102435978 +"Q9VXF9",-0.0224371835683819,17.5272621582586,-0.555534177092288,0.590468713847693,0.689707153149827,-6.92853566691158 +"P92181",-0.0333343395090289,16.5103540052504,-0.551830184273422,0.592912216612495,0.692020368702449,-6.93070625857106 +"Q9VYS5",0.0347375883391745,14.3139934136748,0.551275113649046,0.59327885326409,0.692020368702449,-6.93103035965315 +"Q9W087",0.0549040554961167,16.7246504467441,0.549804832887781,0.594250584704501,0.692669444645078,-6.93188735941744 +"O97454",0.0520334737322674,14.1308126079679,0.547467345941827,0.595797190627327,0.693782279601366,-6.93324539760847 +"Q7JVM1",-0.0334540059777435,15.8536032148169,-0.547104929004033,0.596037174261845,0.693782279601366,-6.93345546702764 +"Q9VEA5",-0.0263817713173591,15.6796529519836,-0.544565173077516,0.597720361485346,0.695256320054084,-6.9349239168573 +"Q9VII5",0.0300590318961049,17.3360605858406,0.541315385097068,0.599877736068347,0.696487202365669,-6.93679349523075 +"Q9VCY3",0.0329653371834837,17.8691286842486,0.541184194389155,0.59996491236658,0.696487202365669,-6.93686874646995 +"Q8SXC2",0.0698259034170885,14.6626706607452,0.541084383944466,0.60003124088697,0.696487202365669,-6.93692598639799 +"Q9VX02",0.0301754425412302,17.1891716443502,0.539098281266393,0.601351889580918,0.697534737010411,-6.93806291648345 +"Q9VYT1",0.0595774320365194,14.2963884343657,0.534565834637177,0.604371366569217,0.700549992659802,-6.94064269079959 +"Q7K1C3",-0.0267303220886763,17.1438550203407,-0.530748342475857,0.60692061791388,0.70295077467417,-6.94279955175793 +"Q9VND7",-0.0410892693399649,14.0091250813291,-0.530202742339242,0.607285411454124,0.70295077467417,-6.94310661846111 +"Q7K084",0.020438400027583,23.7579607001931,0.525805579784788,0.610229506931732,0.705868805521587,-6.94557045216053 +"Q7KTH8",0.0231894157135919,17.6231166910845,0.524144507578916,0.611343566310493,0.706528797177458,-6.94649613367185 +"Q9VKR0",0.205436632600362,13.302937032416,0.523692007472435,0.611647232088878,0.706528797177458,-6.94674782183995 +"Q95T12",-0.030008302265756,15.8989199770747,-0.521039058908421,0.613429131050721,0.708096740894535,-6.94821929207704 +"Q9VG76",-0.0231888588256872,15.7933645858691,-0.520271334244953,0.613945278804385,0.70820243779095,-6.94864379254601 +"Q7JVH6",0.0228412442355719,18.948579146766,0.514242728346799,0.618006009172652,0.712393934554239,-6.95195657021311 +"Q9VL00",-0.0507726295085114,16.0278347843229,-0.508243987928709,0.622060016374012,0.716571897314815,-6.95521654643825 +"Q9VJ31",0.0268849539468174,17.1791415545383,0.500585801634932,0.627254741983569,0.722057218515247,-6.95932548278618 +"Q9VUZ0",-0.046328936424672,17.6640364748622,-0.499933440126635,0.627698245381719,0.722069429859798,-6.95967275823401 +"A8DZ14",0.0198817988506583,19.4869535697205,0.490677553793968,0.634007432006495,0.728824532451298,-6.96455350656281 +"Q9W4P5",-0.0204708008241745,19.5290124332349,-0.487953454269947,0.635870174074632,0.730462431374991,-6.96597339502372 +"P38040",-0.0364043070577651,19.0923082309245,-0.48260217160234,0.639537116498101,0.73415973864162,-6.96874068560003 +"P45594",0.0265588304425286,23.0619737086395,0.481972916884804,0.639968980806304,0.73415973864162,-6.9690641750633 +"P36951",-0.0230761012719967,20.3451023317773,-0.474842381302309,0.644872537415738,0.739276558357011,-6.97270167638477 +"Q8MRM0",-0.0271619226258153,18.6197688055569,-0.473893802353233,0.645526210711803,0.739517664469291,-6.97318166758479 +"Q7KS11",-0.0649353291403685,15.6904991012403,-0.472814067361994,0.646270648859882,0.739862348866357,-6.9737269075541 +"Q24319",0.0291244843590022,16.2418447735978,0.471637918370135,0.647082025653715,0.740283140459805,-6.97431947986302 +"O62619",0.0194037455618528,22.1165455102714,0.466829257047183,0.650404345460453,0.743573987819079,-6.97672749957224 +"Q9Y112",-0.0167587234739273,22.2276088513127,-0.465817019325436,0.651104728366971,0.743864854052128,-6.97723138337545 +"P20351",0.0422267413845496,13.9802282331593,0.465166398838858,0.65155509022393,0.743869877134507,-6.97755470371771 +"Q9VJG0",-0.15114684382786,13.2974179066091,-0.456930157278689,0.657268866028383,0.749879937438675,-6.98161016705282 +"Q9VUK8",0.0195567002026564,20.7392465972482,0.454983983632506,0.658622393525141,0.750194562876711,-6.98255829447556 +"Q9W415",-0.0369796253582564,16.7128460611548,-0.454570702285537,0.658909989215464,0.750194562876711,-6.98275913476279 +"Q9VY92",-0.0224229280165886,21.3461480520954,-0.454556675254857,0.658919751415743,0.750194562876711,-6.98276594833461 +"Q9W1H6",-0.0194141664209866,17.1851750214809,-0.453398069839476,0.65972632123796,0.750194562876711,-6.98332803905292 +"Q9VDC3",-0.0225925362900945,19.288996819041,-0.453301715371679,0.659793419508475,0.750194562876711,-6.98337472281994 +"Q9VSK9",-0.0329487074571411,14.5702327747103,-0.450318193846747,0.661872609889223,0.751789927906232,-6.98481552315995 +"Q9VD00",-0.0186927349236043,17.9384969835199,-0.449368801734224,0.662534864864929,0.751789927906232,-6.98527208570602 +"O18332",0.0175127767686796,20.5568128213487,0.449349004972527,0.66254867747132,0.751789927906232,-6.9852815961106 +"Q9VZS3",-0.0251315005600041,18.4145280439848,-0.448086347204107,0.663429932748065,0.752278129044033,-6.9858873475278 +"Q9VNX4",-0.0200479178262647,20.8624862759392,-0.44355129297287,0.66659953345835,0.75535871046775,-6.98804949342337 +"Q9VDI3",0.045928752503249,15.0207989485163,0.44104233020767,0.668356032862311,0.756834937416385,-6.98923658285372 +"Q9VG73",-0.0318863736057793,18.080802729478,-0.43917858008062,0.669662182124361,0.757799538523361,-6.99011420126807 +"Q9VN44",-0.0209917068034038,19.550726434416,-0.436850417021627,0.671295418705179,0.759132717559483,-6.99120547932011 +"Q9V535",0.0242230955752305,18.5823222582011,0.434817767093795,0.672722813705061,0.759796285550762,-6.99215367348954 +"Q24298",-0.019656575858253,19.3917982974124,-0.434717537294553,0.672793233668151,0.759796285550762,-6.99220031864852 +"Q9VA18",-0.0303758449402949,21.6013682300405,-0.431332772538732,0.675173256845065,0.761968195140439,-6.99376944331397 +"Q9VTZ6",-0.0336039256288529,17.0836163108343,-0.430519891820852,0.675745399291839,0.762098259647591,-6.9941445215857 +"Q9VLG9",0.02759441117378,15.7693409399335,0.42970503828979,0.67631914700783,0.76222995757369,-6.99451982546089 +"Q9VW58",-0.0437988058166052,14.8488714303648,-0.428506507321761,0.67716344002162,0.762666183630021,-6.99507059687157 +"Q9VGF3",0.0301998036530637,15.6960178483474,0.42669663289952,0.678439273862869,0.763587522809221,-6.99589949200684 +"Q7JW03",-0.035661263740888,17.2129323501878,-0.425849886326777,0.679036535734523,0.763744397575984,-6.99628612690002 +"Q9W3G8",0.0316369862109944,15.7681908913236,0.422720354257351,0.681245998577787,0.765713157431097,-6.99770867722151 +"O76902",-0.0234528708230926,17.1573340654868,-0.418470539216748,0.684251434968236,0.768573328974423,-6.99962423777424 +"Q9VC58",0.0630353577798868,13.1881916888592,0.416855766123286,0.685394906293988,0.769339639097155,-7.00034717800051 +"O76454",-0.0338313016490801,18.0107488750705,-0.413276175426476,0.687932686085543,0.771668944445653,-7.00194014217742 +"A1ZAA9",-0.0237456584132332,16.5042701766614,-0.409106370776688,0.690894016196079,0.774469905252056,-7.0037790062981 +"A0A6H2EG56",-0.025849668972814,20.9355944385446,-0.407206797806046,0.692244876500052,0.775224185602283,-7.00461072701746 +"Q9V434",0.035537656858267,15.0367476794549,0.40685324731635,0.69249642478861,0.775224185602283,-7.0047651142123 +"Q9U5L1",-0.0163235724226709,17.6899626943884,-0.403764667995717,0.694695583190318,0.777164475359793,-7.00610830299417 +"Q7KTJ7",-0.0201357288566513,22.075959604189,-0.398367365321849,0.698545727658834,0.78094790464808,-7.00843172695998 +"Q9VLM9",0.0253982112778619,18.4109476342477,0.394414109726844,0.701371456474421,0.783581774547444,-7.01011428966165 +"B7Z0N0",0.0270169605448576,13.0781479286455,0.380353197115884,0.711460363085915,0.794321208585881,-7.01596681125131 +"Q9W3N9",-0.0161028929967237,20.2228251740243,-0.373986813344224,0.716047704644674,0.798908074479811,-7.01854876723991 +"M9PGG8",0.057569720417078,18.6083509826547,0.371745136364403,0.717665788152404,0.800178164865114,-7.01944781159122 +"Q9VH07",0.022276429303254,18.2262097601556,0.367717844195105,0.720576427016205,0.80209654450203,-7.02104977630817 +"Q9VMC8",-0.0235068601204738,16.3714257367262,-0.36742517989182,0.720788126521794,0.80209654450203,-7.02116552932046 +"Q6NL44",0.0337109836215905,15.2072467662662,0.367368721139158,0.720828968949966,0.80209654450203,-7.02118784925628 +"Q9I7X6",-0.0288973633508149,14.7517624859443,-0.362170824637503,0.724593059371987,0.80574748202165,-7.02322842841876 +"A1Z6X6",-0.0228046026681348,18.5979924374458,-0.359845754749927,0.726279267835688,0.806944729605051,-7.02413202707129 +"Q9W1F7",0.0183857232082403,20.3034580215084,0.359352371939229,0.726637280495675,0.806944729605051,-7.02432304224312 +"Q9W0R0",-0.0206447173891728,16.8037676154505,-0.352655109481187,0.731503779741658,0.811808585900922,-7.0268906300683 +"Q9VEP6",-0.0212112742799242,18.6817046023052,-0.34649026067833,0.735994443195939,0.816249156416773,-7.02921243113767 +"Q9VPQ2",0.0215790481703788,16.450678314247,0.343587301043843,0.738112665409496,0.818054435815973,-7.0302918930467 +"Q9NCC3",0.0241153203348041,17.3364694238296,0.34264395133563,0.738801500437405,0.818274171799197,-7.03064076625592 +"Q9V4C8",-0.0156481037502481,17.2340145273717,-0.338569162013174,0.741779685685017,0.821027548588327,-7.03213694985277 +"P55828",-0.0203910292693728,19.9615133989608,-0.337235219320037,0.742755610807131,0.821392080939657,-7.03262294575234 +"Q0E8X7",0.0292093048457751,21.048314766439,0.336772960643246,0.743093914950805,0.821392080939657,-7.03279092293906 +"Q9VHN4",-0.0284008055998672,14.6084352814224,-0.334758425469022,0.744568919849752,0.821959635721625,-7.03352034082878 +"Q9V393",0.0309155846496765,15.6909142393024,0.334725643148439,0.744592931400105,0.821959635721625,-7.03353217517407 +"Q7JZN0",0.0283131085799155,16.7984817244563,0.33391270198178,0.745188465075681,0.822072989250156,-7.03382528248084 +"Q8SXY6",0.016171557951413,19.0626310953736,0.32826030963807,0.749334053985168,0.82609993525926,-7.03584397717327 +"Q0E8C8",-0.0187180417120363,17.5555792352133,-0.326441278858437,0.750669956128891,0.827026081124828,-7.03648644979108 +"Q9VDT5",0.0304685008275918,19.1426229559425,0.324142245351099,0.752359606669618,0.827865213510112,-7.0372934550381 +"Q9VH37",-0.0259111631557296,16.6634989209646,-0.324054313075958,0.752424258801756,0.827865213510112,-7.03732421004767 +"Q9VHJ7",-0.0420229348400465,14.7063854097834,-0.320409828411773,0.755105618370773,0.830267746501285,-7.03859170607902 +"Q9V3Q4",-0.023642802784309,16.0042590098976,-0.317500235177698,0.757248741732144,0.83207569249619,-7.03959353233069 +"Q95RQ8",-0.0433778982715864,14.0436587414643,-0.316338117385623,0.758105327249216,0.832468522614676,-7.0399911669574 +"Q9VIT0",-0.0140914098825853,16.4487148570414,-0.313462870092223,0.760226112782824,0.834248129027467,-7.04096882725807 +"Q9VI53",-0.016694979471632,16.3648143169684,-0.309599383414926,0.763079095871386,0.836828357602546,-7.04226872615305 +"Q9VYT0",-0.0132196564084595,18.2173821959271,-0.307717440683014,0.764470159869466,0.837802820030787,-7.04289619010324 +"Q966T5",0.0143066225780384,16.5305596843363,0.306746444234152,0.765188228394119,0.837802820030787,-7.0432184642697 +"Q9VEB3",0.0363539738066301,12.4236151617691,0.30612849662699,0.765645332444678,0.837802820030787,-7.04342304073016 +"Q9VZS1",0.0182219252363165,15.44918855086,0.305680474914925,0.765976798889059,0.837802820030787,-7.04357110861286 +"P32234",-0.0217385765579365,16.7810155378058,-0.300288156285512,0.769970132418308,0.841618729275057,-7.04533652297158 +"Q7K0B6",-0.0151628781392468,20.2340549820899,-0.298440888257139,0.771339769695619,0.842563677702876,-7.0459342100045 +"Q8SY96",-0.016287990210575,18.7296309039022,-0.296595579002582,0.77270877532851,0.843000719613347,-7.04652764482358 +"Q9VF77",0.0226411051848121,15.7100788418394,0.296539139679076,0.772750659645568,0.843000719613347,-7.04654573819081 +"O97111",0.0344293504898125,14.7625033571201,0.294250652121367,0.774449615679771,0.84364512450872,-7.04727653247891 +"Q9V9U4",-0.0126729728659445,15.9402067313149,-0.29395495850302,0.774669227474323,0.84364512450872,-7.04737055178705 +"O62621",-0.0329878915124056,13.1094316426763,-0.29369985256176,0.774858711479232,0.84364512450872,-7.04745159108454 +"Q7KND8",-0.0140071991564916,15.4939763675453,-0.285982819317118,0.780597910804581,0.849339409799113,-7.04987034379181 +"Q9VFU7",-0.0226940899223109,14.8075584070783,-0.282450931492785,0.783229221671462,0.851646898140808,-7.05095620647622 +"Q7KSE4",-0.0223218489167643,13.8904074996149,-0.273095395337277,0.790212980034425,0.858186898280687,-7.05376830087491 +"Q02748",0.0143441856336679,19.5173087709989,0.27301533699925,0.790272827193726,0.858186898280687,-7.05379196221681 +"O97422",0.0206586688542298,15.3903907593606,0.267435179661958,0.794447733554843,0.862159284039999,-7.05542433512737 +"Q9W254",-0.0105846457421777,18.1696768350023,-0.262889187515616,0.79785393884472,0.864636707086337,-7.05672961128997 +"Q86BI3",-0.0150976913017686,18.0558199144984,-0.262867988065321,0.797869833554334,0.864636707086337,-7.05673564651338 +"O97479",0.0139318322703623,17.8277819582208,0.262005902656731,0.798516280981401,0.864636707086337,-7.05698066488378 +"Q9VLT7",0.0253044764686052,18.0628744472653,0.261328683596135,0.799024215358832,0.864636707086337,-7.05717258439086 +"Q9VDK7",-0.011560161736675,17.868203658519,-0.260931149420157,0.799322423457513,0.864636707086337,-7.05728501473365 +"Q95029",0.0126754140699248,21.8502948204478,0.255642868996597,0.803292589066121,0.867972629426189,-7.05876457231703 +"Q9VW59",-0.0154587046170036,19.68972059136,-0.255437236583716,0.803447086231436,0.867972629426189,-7.05882150027544 +"Q9VZG2",0.0182595122095215,21.9298238335844,0.253935919616269,0.804575333894826,0.86806879561937,-7.05923575929898 +"A1ZA83",0.0134954443874093,17.0412049820456,0.253933765245207,0.804576953253924,0.86806879561937,-7.05923635202309 +"Q9V3Z4",0.0114756949016801,18.7245885246524,0.251891771025376,0.806112276430048,0.868765882862309,-7.05979592535115 +"Q9VZ66",0.0122418052982702,17.0908612288253,0.251689055449011,0.806264740210344,0.868765882862309,-7.05985123261254 +"Q9V4N3",-0.0231732308761288,19.6905778009504,-0.249506527270286,0.807906770951706,0.869973204614232,-7.06044390997555 +"Q9VBL3",-0.0435412418786605,14.5593125494054,-0.248494792990442,0.808668283397076,0.870231417229886,-7.0607169222269 +"Q9VEJ3",0.0148053491916649,19.9898526559333,0.246627535980115,0.810074278993264,0.870935179238961,-7.06121791576668 +"Q9VQG4",0.0128549393545008,19.1410783423487,0.246239504122498,0.810366545670784,0.870935179238961,-7.06132155790696 +"Q3YMU0",-0.00914652292467011,23.1756471033597,-0.245474031693179,0.810943190957551,0.870993717010428,-7.06152554044349 +"Q9VKZ8",-0.015563926145802,18.6705002164307,-0.24355833369899,0.812386841133504,0.871982787008163,-7.06203328329181 +"E1JJH5",0.00897297677325781,21.2263789734344,0.242404952273654,0.813256372416045,0.871989624511202,-7.06233708302607 +"Q9W0H3",-0.0226703664955323,16.6836540184876,-0.242163067490114,0.813438762433711,0.871989624511202,-7.06240061446203 +"Q7KUK9",0.0209135895076002,18.4059822837087,0.239086545552566,0.81575958677945,0.873418566592922,-7.06320319704599 +"Q0KI98",0.0135110380530357,16.5736958257179,0.239007791383225,0.815819020834397,0.873418566592922,-7.0632236087252 +"Q9VQ35",-0.0435830720369967,12.1729358053235,-0.22760358339391,0.824438231620721,0.881533857046583,-7.06610914092618 +"Q9VKK1",-0.0178623480159548,14.5076402574444,-0.227109128577816,0.82481249840325,0.881533857046583,-7.06623109240331 +"Q9W2N0",0.00958567346415151,16.0128596507884,0.226881750342288,0.824984622811581,0.881533857046583,-7.06628708445124 +"Q9I7I3",0.0220450937775993,14.5419573289251,0.225932039209887,0.825703655065431,0.881737321798424,-7.06652035120357 +"Q9VTB0",0.0159607482197206,17.0719497556874,0.222821114002518,0.828060132784147,0.883183014910212,-7.06727766798248 +"Q9VDF4",-0.0102483433246121,18.6836790565405,-0.22274679786466,0.828116448033316,0.883183014910212,-7.06729563218415 +"Q86PD3",-0.00748465057896297,18.8776454887587,-0.219148032299187,0.830844731680728,0.885526525522974,-7.06815844757235 +"Q9NBD7",-0.0255593719459384,13.0922474664559,-0.215713252372836,0.833450889268192,0.887736962515545,-7.0689689618169 +"Q9VQV7",-0.0132477441788481,16.282765316873,-0.214449773121335,0.83441009363941,0.888191471723379,-7.0692639166472 +"Q7JVZ8",-0.0184968365452534,16.1115628249007,-0.210785345517475,0.837193643752526,0.890256573520691,-7.07010965163809 +"Q9W0K9",-0.0229989161991941,14.1863185174898,-0.210490646026973,0.837417604228996,0.890256573520691,-7.0701770393815 +"Q9VZV2",0.0186108160129397,14.9861560780801,0.207950815235306,0.839348406927972,0.891740855258508,-7.07075393808861 +"Q9VTV9",-0.0151812695229978,17.2447995753615,-0.205418444572086,0.841274648523693,0.893218404670605,-7.07132222860392 +"Q9W3T7",-0.00944424756185924,17.4244787366653,-0.20382123435017,0.842490126910233,0.893939905652843,-7.07167710813985 +"Q9VZZ6",-0.011454086657718,18.3815062598743,-0.198580537839058,0.846481323425215,0.897603844547526,-7.07282222240898 +"Q9VAY3",-0.0172591983259647,13.8129716146475,-0.197445720248758,0.847346177475808,0.897950078799014,-7.07306628680056 +"Q9VFR0",0.0315265851937099,15.4243010247806,0.194114693443319,0.849886000863215,0.90006974567609,-7.07377467059422 +"Q9VZ20",0.00692572584910423,18.7079031391731,0.19191930025435,0.85156091661297,0.901271325450782,-7.07423500706143 +"A1Z9J3",0.0105146814507897,17.7153965508791,0.190708047246654,0.852485340312279,0.901677582524339,-7.07448676101746 +"Q6NP72",-0.0100188587109962,18.7140377572829,-0.188968511073892,0.853813356015358,0.902411862382448,-7.07484554794087 +"Q9VZY0",0.0104392110752105,17.2247539041416,0.188066914417668,0.854501850975593,0.902411862382448,-7.07503022166549 +"Q7KQM6",0.0110081469668017,15.1693562183869,0.187673126105816,0.854802603455796,0.902411862382448,-7.07511060598632 +"Q9VUQ7",-0.0149500369871163,16.5355925385857,-0.182870893214286,0.858472209813602,0.905712616046229,-7.07607742485383 +"Q9V595",-0.0092416584114261,18.5426215206405,-0.178912521848574,0.861499639132418,0.908332110033422,-7.07685563282777 +"Q95SH2",0.00907135668009573,18.743613331027,0.172497736999916,0.866410737010926,0.912933107602163,-7.07808082873649 +"P16378",0.00691542596874939,20.3758154643692,0.165962491657387,0.871420177318594,0.917631853388519,-7.07928329720496 +"Q9VPX5",-0.00721754159174282,18.7850094486542,-0.162065354449743,0.874410284523907,0.920012030884634,-7.07997837743922 +"Q9VP18",0.010230823787694,17.1579286425541,0.1603436111319,0.875731966404358,0.920012030884634,-7.08028022878765 +"P91926",-0.0165399355122098,17.6558806581874,-0.160194267590472,0.875846627619987,0.920012030884634,-7.08030626011174 +"Q9V431",-0.00635192559256126,18.5914723815647,-0.160142005336608,0.87588675362398,0.920012030884634,-7.08031536398253 +"Q9VQ29",-0.0085806415291394,22.1334841923043,-0.159196753542912,0.876612564046379,0.920194938218603,-7.08047951280273 +"O15943",0.00580114304581869,20.1570243085285,0.158146140064536,0.877419416628551,0.920462633293348,-7.08066082370029 +"Q9VWU1",0.0144918902395812,14.9205996195723,0.157219267481542,0.878131360317148,0.920630489634823,-7.08081978799542 +"Q9VXG4",-0.00954626419871119,19.9886837410907,-0.15536960316862,0.879552452102461,0.921541137001824,-7.08113423718708 +"P08120",0.0124207796672273,18.2136657200855,0.153766758698619,0.880784274867381,0.92225246106641,-7.08140373076194 +"Q9VDQ3",-0.0198625325280037,13.4949194693472,-0.150919700863823,0.882973121971082,0.923964345952173,-7.08187556064108 +"Q9VGE7",-0.0114232720215313,13.9940519890456,-0.14670231747989,0.886217377375001,0.926777796527587,-7.08255835415935 +"Q9U4G1",0.0062917051939344,19.2376226359685,0.143241850493093,0.88888101442361,0.928980909811142,-7.08310421066771 +"Q9VTZ5",-0.00673215891297829,18.0265069793204,-0.14098180029695,0.890621433738733,0.930217001550537,-7.08345370713928 +"Q9V3I2",-0.00623517862583078,17.3672788027116,-0.137980717213355,0.892933445206926,0.932048176849282,-7.08390924022058 +"P56538",0.00830270229592855,17.0421064613243,0.134235597938226,0.895820125569839,0.934476528737018,-7.08446401339222 +"Q9V470",-0.00647771226299909,19.9184307174943,-0.132246430670974,0.89735399468084,0.935491539454775,-7.08475248822213 +"Q8MRT7",0.00951723062047094,15.4279724275468,0.127190089872335,0.901254971375597,0.938971450502496,-7.08546645077485 +"A1Z7P1",0.014317585331435,14.5626808437876,0.122803345511359,0.904641585287148,0.941911463332686,-7.08606339024326 +"O77430",-0.00451915006362924,19.5373224650511,-0.118433279548125,0.908017312329177,0.944836479703722,-7.08663729059223 +"Q9VCU0",-0.0104702399817445,17.3198988389872,-0.115174779344525,0.910535643365338,0.94686624260186,-7.08705171904223 +"Q9VEK8",-0.00507531036222275,18.8914527004802,-0.109564604067665,0.914873877801101,0.949971267529168,-7.08773822253649 +"P25455",0.00566454189542043,15.7575198147575,0.109299810152256,0.915078710988391,0.949971267529168,-7.08776977973457 +"Q9VMG0",0.0282456321789955,14.7847545367734,0.108331721982523,0.915827637577896,0.949971267529168,-7.08788450464998 +"Q9V4Q8",0.00519840932704163,16.9113294736479,0.108021093110521,0.916067962718671,0.949971267529168,-7.0879211004558 +"Q9VK18",0.0062020736471986,14.6294647309995,0.107631792750776,0.916369166339587,0.949971267529168,-7.08796681666903 +"Q8SZ63",-0.0110112114616605,14.0690890005505,-0.104501981496899,0.918791215505791,0.951890526374944,-7.08832837144215 +"Q7JZF5",0.00586181374081107,16.9374722392407,0.10117165431346,0.921369390300955,0.953969052155179,-7.0887013985995 +"Q02910",-0.0107147410030102,16.3663056775869,-0.0947620937232003,0.926334010142735,0.95820312490509,-7.08938539505995 +"Q9VHK6",-0.0084979833195824,18.0698912231983,-0.0944088762966135,0.926607698124646,0.95820312490509,-7.08942179001591 +"Q9VDU7",-0.00399454010227984,18.3638885594964,-0.0912338604785404,0.929068281256823,0.960152350146456,-7.08974284724297 +"Q9VGL0",-0.0107309537446181,12.9817895954054,-0.0815810946869782,0.936553699799447,0.966323405140065,-7.09065158774692 +"P02515",-0.00932824833737556,18.0272522157987,-0.0814645423453533,0.936644123557096,0.966323405140065,-7.09066194090872 +"Q0E8E8",0.0048457546628029,21.4536430494742,0.0812925692375157,0.936777545630387,0.966323405140065,-7.09067719001296 +"Q9VS97",-0.00686807505341314,15.1478379820658,-0.0758812300610918,0.940976853416211,0.970055248144771,-7.09114058089688 +"Q9VN71",0.00507245446576121,18.6240608402028,0.073129578730782,0.94311292420208,0.971656798992631,-7.0913639899 +"Q9VZ49",-0.0036620652974797,18.8729330376129,-0.0710738272603421,0.944709085848351,0.972700466169784,-7.09152551897683 +"Q9VC67",0.00528792130944034,15.1965979412645,0.0692163002668748,0.946151558945658,0.973416562969768,-7.09166751583093 +"Q9VFM0",0.00624396168276142,14.33603732904,0.0681224081414451,0.947001122623,0.973416562969768,-7.09174937978316 +"Q9VXP4",-0.00328259174884771,18.0205955043369,-0.0679238682026927,0.947155324760152,0.973416562969768,-7.09176409828414 +"Q07093",0.00525214845497324,14.5640487446979,0.0646507367465848,0.949697826716495,0.974980119712638,-7.09200056099941 +"Q9VL66",-0.00355459534328872,15.7189399012843,-0.0644603417615944,0.94984574012772,0.974980119712638,-7.09201395676962 +"Q9W3C4",0.00788558239061921,14.8131268864973,0.0622356128056859,0.951574226104319,0.976153634158675,-7.09216755813485 +"Q9VD26",0.00450691698662276,16.2283754929761,0.0609362488403971,0.952583878989354,0.976197718014507,-7.09225477630738 +"Q9V438",-0.00296473934280428,19.0222288769153,-0.0606739559187448,0.952787700795934,0.976197718014507,-7.09227215933215 +"Q9VLV5",0.00284564134480902,17.5039710220412,0.0576780841174213,0.955115972715699,0.977982469300053,-7.09246538996948 +"A0A6H2EGA2",-0.00331949021691713,15.8592852899924,-0.0554446769869498,0.956851976079222,0.979063842329993,-7.09260308170621 +"Q9VWW2",0.00948694389416893,15.3004629785109,0.0541289714609746,0.957874770883719,0.979063842329993,-7.09268165288698 +"Q9V4E0",-0.00722013399690979,18.3766346856715,-0.0538367709425537,0.958101930783103,0.979063842329993,-7.09269884658003 +"P08736",-0.00270463755130379,24.3699934166779,-0.0532990942868757,0.958519936765515,0.979063842329993,-7.0927302415577 +"P40417",-0.00243913563164355,19.7961244445676,-0.0505325669703912,0.960670923156844,0.98028661379744,-7.09288679991212 +"Q9VA41",0.00395254592240946,17.4324026741286,0.05024766563158,0.960892454171951,0.98028661379744,-7.09290244896573 +"Q9VRL2",-0.0114286819247411,12.2818501016443,-0.0490331585940826,0.961836858410063,0.980650293293389,-7.09296816734288 +"Q0E9B7",0.00809952576193318,12.8808469945841,0.0477954538605282,0.962799364738987,0.981031973356525,-7.09303348751447 +"P02283",0.00289284719885075,21.6011912000646,0.0455793839165672,0.964522855967664,0.981633902388016,-7.0931462713502 +"Q7JUN9",0.00965799835391223,13.6088706833193,0.0450588750083227,0.964927696395451,0.981633902388016,-7.09317198588585 +"Q95SN8",0.00252944908751473,17.6791519622537,0.0447658165459629,0.965155635441454,0.981633902388016,-7.09318633385837 +"Q9VS02",0.00365502229117354,17.9616159832086,0.0439168132439418,0.965816003369813,0.981706943096191,-7.09322737227993 +"Q9VCU6",-0.00300710857846731,15.4516023804583,-0.041764172382585,0.967490480728134,0.982810062030772,-7.0933279042719 +"P22769",0.00164596211017098,20.147907257704,0.0383602701745525,0.970138612123722,0.984900307378191,-7.09347656632164 +"Q8T9B6",-0.0022856839126284,19.5370696800698,-0.0320076208137942,0.975081767442282,0.989316537769907,-7.09372023674456 +"Q9W073",0.00192614953945203,14.5521392928729,0.0288730827266506,0.977521250038081,0.990720844295843,-7.09382426234668 +"Q9VXJ7",0.00295871425714189,15.0051528400174,0.0287027980553698,0.977653782800335,0.990720844295843,-7.0938296068513 +"Q9VLS5",-0.00167155088650439,14.6780688885057,-0.0264136259300927,0.979435515519831,0.991923764351596,-7.09389838550924 +"Q9VGR2",-0.00172952158109396,15.6857557068526,-0.0240825627666166,0.981249974776286,0.993158348256581,-7.09396255255844 +"Q9VW40",-0.0014614152595982,14.6574098236884,-0.0208776264944279,0.983744822086621,0.994720261488851,-7.09404110370871 +"A1Z8D0",0.00348197047848764,13.861301960269,0.0198579303038,0.984538633111627,0.994720261488851,-7.09406374772403 +"A0A0B4KH34",-0.00106755492631905,23.4059105493331,-0.0198019343461399,0.984582225250656,0.994720261488851,-7.09406495837185 +"Q9VQR9",0.00112544658415104,16.3278308197624,0.018747059514227,0.985403441604462,0.994749840004634,-7.0940871262852 +"Q9VGS3",-0.00118769695006904,19.1969716511432,-0.0182322212542779,0.985804247918261,0.994749840004634,-7.09409750494764 +"Q9VZ19",-0.00120376062119121,20.4015991480078,-0.016836995158967,0.986890464674774,0.994802280824956,-7.09412417870631 +"P25171",-0.00145069914557006,16.81352000244,-0.0164411169817312,0.987198670469749,0.994802280824956,-7.09413136053654 +"Q9VHA8",-0.000699213285759726,18.6068897557647,-0.0145002283860138,0.988709754853304,0.994802280824956,-7.09416409884665 +"P54397",-0.00110050331422862,14.8187407695473,-0.0143555475685063,0.988822398465631,0.994802280824956,-7.09416637479048 +"Q9VQF7",-0.00141314544399407,18.6958601972766,-0.0143352026252697,0.988838238373967,0.994802280824956,-7.09416669300231 +"Q9W404",-0.000753426520876843,15.9772601883845,-0.0130706068286756,0.989822821025328,0.994820878302678,-7.09418558652986 +"A1Z6S7",0.000661246071100408,17.5729393272358,0.0124593644524503,0.990298725559214,0.994820878302678,-7.09419409366906 +"Q9VH19",-0.00122036884473786,13.9753052030461,-0.0120133731017286,0.990645970540017,0.994820878302678,-7.09420004383823 +"Q9W1W4",-0.000683026173895485,17.296233356857,-0.0101651754579607,0.992084982047527,0.995666516278746,-7.09422239000143 +"Q9W257",0.000716446782192293,17.0489607928035,0.0085777621925199,0.993320970051736,0.996307503335115,-7.09423860999247 +"Q8SYD0",-0.000590441500261107,15.4602411489596,-0.00731955272524886,0.994300647457334,0.996690793244491,-7.09424951436635 +"Q9VMB3",-0.000184662290507731,18.720425284667,-0.00307309271745091,0.99760712425104,0.999064589166471,-7.09427357341926 +"Q9V8M5",0.00012455093452246,19.8509275908819,0.00273976556522149,0.997866669994808,0.999064589166471,-7.09427462971807 +"P05031",9.85850438599556e-05,13.2764304528713,0.000794916187416247,0.999381034381695,0.999542335653731,-7.094278377401 +"Q9VL68",-2.16626279900822e-05,20.8041513755318,-0.000587762498317944,0.999542335653731,0.999542335653731,-7.09427853355052 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results_ms3fix.csv new file mode 100644 index 0000000..a602145 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results_ms3fix.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"O16797",0.70002665321374,16.7021443619149,15.4762610034925,9.10960563757184e-11,1.51948222034698e-07,14.9894845562241 +"Q9VC06",0.651655167867567,16.4572731614066,12.8825158752365,1.25254595185503e-09,6.41841443006903e-07,12.4834135637986 +"Q9VC18",0.677337048443498,18.2956868694891,12.8682612857559,1.27225441707417e-09,6.41841443006903e-07,12.4682591092083 +"Q9VXP3",0.672862129146624,14.6276616252256,12.6954230912301,1.53918811272639e-09,6.41841443006903e-07,12.2831871397941 +"Q9VZU7",0.483502751290395,17.579644743353,11.6312407179218,5.22679588233994e-09,1.20536767985804e-06,11.0873221513721 +"Q9VIE8",0.540427659600894,24.8826894305362,11.6034639169152,5.40278987005709e-09,1.20536767985804e-06,11.054748968686 +"Q9VNE9",0.66223218560279,18.8313822329758,11.5407370228657,5.82371407014679e-09,1.20536767985804e-06,10.980925448205 +"P21187",0.580871936934624,18.9554877083743,11.4734371692041,6.314173814986e-09,1.20536767985804e-06,10.9013088341102 +"P48596",0.457556396197209,21.8671849202627,11.4204793855987,6.73079195839894e-09,1.20536767985804e-06,10.8383578469858 +"Q9VHR8",0.52279870593258,20.4200281317183,11.361821460009,7.22642493919688e-09,1.20536767985804e-06,10.7683193926513 +"Q9VZF6",0.627736242643977,15.1172064773223,11.2505401866376,8.27591091811197e-09,1.25492903740098e-06,10.634540191667 +"P17336",0.564301229115866,20.7184298598347,10.598871782266,1.87180987484841e-08,2.6018157260393e-06,9.82653170016404 +"Q9W3J5",0.557991313558906,16.1340150729091,10.3611776800631,2.54553931933993e-08,3.26612275743e-06,9.52097076306053 +"Q9VQE0",0.57893034694257,17.3636870128639,10.2862210743774,2.80784021242452e-08,3.34534105308865e-06,9.42336816630482 +"Q9VFQ9",0.445307743632561,19.1626273449326,10.231666919789,3.01662207691198e-08,3.35448374952613e-06,9.35195196274172 +"Q9VLC5",0.533100280623355,21.8300234017748,10.1695406445909,3.27451586643345e-08,3.41368279075687e-06,9.27023056470973 +"A1Z803",0.502810500204966,18.850181843222,9.80696076011547,5.32608041229487e-08,5.22582478100462e-06,8.78480652100884 +"P41093",0.623397237729094,18.9391123115763,9.5520906239641,7.55815748520452e-08,7.00389260295619e-06,8.4347059675614 +"O97125",0.537872792050305,18.5365371323678,9.47653305684329,8.39558411599955e-08,7.37043910815118e-06,8.32947415602195 +"Q9VXQ0",0.647839252227987,15.039792581842,9.25286282593691,1.1500246371265e-07,9.59120547363505e-06,8.01401952568866 +"X2JAU8",-0.420848631305216,21.7407018705736,-9.18712809955969,1.26275822807296e-07,1.0029908211551e-05,7.92017627650441 +"Q9I7Q5",-0.572597641264373,20.6437911542664,-8.9419987091538,1.79726621543433e-07,1.27178916822532e-05,7.56560608423279 +"Q9V3N7",0.393187325729439,20.5686569459863,8.92308787715234,1.84739861552629e-07,1.27178916822532e-05,7.53794619718363 +"Q94901",0.339546812259563,18.9179618462046,8.90927910012841,1.88493520091459e-07,1.27178916822532e-05,7.51772087710024 +"Q7JYW9",0.432693870019058,17.2438855857285,8.90065558954418,1.90878356615012e-07,1.27178916822532e-05,7.50507828912084 +"Q9VW54",0.476843657269495,15.8773081089544,8.87473337934845,1.98240517828887e-07,1.27178916822532e-05,7.46701922359969 +"Q8IN49",0.470517595558324,16.9208595767712,8.75063722816471,2.37869739538573e-07,1.40580555507207e-05,7.28366060286262 +"Q9VAC1",0.338415452089858,23.3693261272332,8.7258289014499,2.46748433799971e-07,1.40580555507207e-05,7.24677351523386 +"P45437",0.521029435087756,16.0942517585338,8.67906987093399,2.64445538191021e-07,1.40580555507207e-05,7.17703735103042 +"P09180",0.36148145557803,20.6734751591385,8.66547144213123,2.69839455782233e-07,1.40580555507207e-05,7.15670485858664 +"P32392",0.45403638329746,17.6603191759224,8.66265425796229,2.70971330597448e-07,1.40580555507207e-05,7.15248965150049 +"Q9VA09",0.499263239720833,16.4222463769768,8.6616341153948,2.71382430726029e-07,1.40580555507207e-05,7.15096301690795 +"Q0E9B6",0.427122002149659,19.1145416785277,8.64512604540945,2.78126998305625e-07,1.40580555507207e-05,7.12624049032333 +"Q9VFZ4",0.63956290207825,16.5965349127858,8.5060395153382,3.42470948903817e-07,1.68012218462226e-05,6.91656602225238 +"Q9VLB7",0.462060910732593,21.0974381148568,8.37270322441774,4.18993593817569e-07,1.99680375567916e-05,6.7132274834874 +"Q9W3Y3",-0.376279525027101,18.0873189781384,-8.25586580675176,5.00863984237807e-07,2.32066979363517e-05,6.53315205019892 +"Q9VV31",-0.914129140048024,15.6252071715139,-8.17157579639989,5.70281148997333e-07,2.49097891218272e-05,6.40212949146736 +"Q9VV36",-0.523209203391222,23.0997147437131,-8.1651159477932,5.76002950015551e-07,2.49097891218272e-05,6.39204951606523 +"Q9VFN7",-0.342899664269552,18.6270162802085,-8.15794749704192,5.82423126949197e-07,2.49097891218272e-05,6.38085738245074 +"P10676",-0.655514005724672,19.6680274835087,-8.11708937590237,6.20481910233004e-07,2.58740956567163e-05,6.31693563508169 +"Q9VEY0",0.48806611806225,18.0345866616263,8.09978220271419,6.37383688369489e-07,2.59306339561051e-05,6.28979220283079 +"Q9VED8",0.562512169993465,16.3629338971043,8.07747732016315,6.59883078374591e-07,2.62067851125909e-05,6.25475203918494 +"Q9W369",-0.387098211229389,22.2458235059154,-8.00966892323088,7.33557315932726e-07,2.84552000692044e-05,6.14782078571162 +"P29613",-0.339693782658394,23.8436814000175,-7.98547221665736,7.61898861164985e-07,2.88828931914363e-05,6.10951490991944 +"Q9VKD3",0.387693116567448,18.7205628702694,7.84767658830772,9.46809420892381e-07,3.50950692010776e-05,5.88987219441689 +"Q9VN13",0.490525440369577,17.063191730045,7.82801529068825,9.76814504832046e-07,3.54201433491272e-05,5.85832395301984 +"Q9W1H8",0.385123226935118,20.5885079530425,7.72596025557766,1.1494418882597e-06,4.07929589280251e-05,5.69372593070034 +"Q01637",0.407371955573714,15.9823042884879,7.71007824040378,1.17906478909136e-06,4.09725014209248e-05,5.66798351835377 +"Q9VNB9",0.734286335244629,18.9527089639193,7.67502736315209,1.24731399145555e-06,4.21909135338191e-05,5.61104945735036 +"Q9W253",0.502318549677808,15.194697491675,7.66641231492943,1.26471563350777e-06,4.21909135338191e-05,5.59703012449564 +"Q9VHC3",0.457015836325517,17.2194259054418,7.58927200806822,1.43237384104858e-06,4.68470503307654e-05,5.47104640849621 +"P23779",-0.358021434103989,20.9431527571856,-7.5062480887487,1.63914819583814e-06,5.1955878419098e-05,5.33454081292802 +"Q24276",-0.452482484912036,18.6548975736994,-7.49095598799927,1.68053378845035e-06,5.1955878419098e-05,5.30929442747965 +"Q9W1R3",-0.337114616627293,16.967994979483,-7.49041243812706,1.68202484090605e-06,5.1955878419098e-05,5.30839646385665 +"Q9VHT3",-0.441811719713073,15.7319151931264,-7.47012976041237,1.73866779632152e-06,5.27290524411691e-05,5.27485960358148 +"Q7JWF1",0.461762802531474,20.5600727128267,7.39802241185019,1.95678872276946e-06,5.82843498139189e-05,5.15517147317083 +"Q8SXD5",-0.396070167730159,20.7561679568443,-7.35660955928665,2.09486821310332e-06,6.13024592887076e-05,5.08610621887762 +"Q9VAY9",0.539726643299575,14.5982346967918,7.29446140101538,2.321566934641e-06,6.59640900998134e-05,4.9820131112129 +"Q9W0S7",0.37763851367118,17.9139971172461,7.29143000244067,2.33326217978956e-06,6.59640900998134e-05,4.97692202020631 +"Q9V521",-0.525567173324959,17.6716149072458,-7.2672352184782,2.42884935667901e-06,6.75220121156765e-05,4.93624214141835 +"Q9VN14",0.269102363427816,19.3247715347831,7.24471195339161,2.52152529801698e-06,6.89492491326612e-05,4.89829933557177 +"P22979",0.465652077338898,19.4570518402564,7.2281218595792,2.59215418972794e-06,6.90633313062349e-05,4.87030632091721 +"Q8SXF0",0.395234844043848,16.3789852273606,7.22434824858213,2.60850711768153e-06,6.90633313062349e-05,4.863933619577 +"A1Z9A8",0.473793718254583,16.7020277906222,7.18440962772258,2.78835863273403e-06,7.26715968656306e-05,4.79636519114212 +"Q9VM07",0.495597714395702,17.0004725945388,7.08928636944544,3.27106215543335e-06,8.38303224981111e-05,4.63453648242454 +"Q9W2E7",0.366292080740035,18.5299144004002,7.08100694661038,3.31702714920583e-06,8.38303224981111e-05,4.62039112968951 +"Q8SZN1",-0.45788794330478,20.111525262488,-6.95721819898213,4.09106206878479e-06,0.000101849127324374,4.40775142802972 +"Q9VR79",0.527422574355455,20.2554311892079,6.90360097478828,4.48299474589618e-06,0.000109965224061101,4.31498142639236 +"Q9VMR6",-0.334707831550777,18.7929663196911,-6.85495893936027,4.87259309474123e-06,0.000117789641768527,4.23046973387947 +"Q9VNW6",0.682036784364247,21.6437107360233,6.783635759293,5.50909921844577e-06,0.000131273964233822,4.1059491269967 +"Q8MSI2",-0.582327975782238,23.9873843716294,-6.772874986136,5.61243557656358e-06,0.000131852711855043,4.08710009212803 +"O18413",0.258916716577357,19.4214419178193,6.72130173036562,6.13659595540668e-06,0.000142164472966921,3.9965358179139 +"Q9V3D9",0.249136366340895,17.4312660305451,6.67114534198976,6.6956050313615e-06,0.000152989988935767,3.90810041907688 +"Q7K485",0.371976413082447,20.5588328085492,6.56450868400324,8.06836446340068e-06,0.000180282315855496,3.71890307040525 +"Q9W4I3",0.382106668622148,16.583541444998,6.56184372897552,8.10621923810684e-06,0.000180282315855496,3.71415436431252 +"Q24253",0.460850351484652,18.9061045823468,6.53755482196694,8.4599058861852e-06,0.000185672671291538,3.67082776634359 +"Q9W3E2",-0.634307082032205,17.6355475169739,-6.51113741710525,8.86294401712127e-06,0.000190903447001935,3.62361029487149 +"Q7K148",0.395453052232693,16.849496891228,6.50704577431801,8.92713960800414e-06,0.000190903447001935,3.6162882860362 +"Q9VQ91",-0.403575845308751,14.9730225022346,-6.46389565759137,9.63446152101037e-06,0.000203421288823358,3.53892803453403 +"Q9VSS2",0.407155963316544,16.2304029222761,6.41844761540462,1.04430250141796e-05,0.000217145676780902,3.45716589172555 +"Q9VA42",-0.527307691381427,20.2824353439044,-6.41298648425567,1.05448440163388e-05,0.000217145676780902,3.44732172377259 +"O02195",0.316027418808567,18.7009134654294,6.40052073387101,1.07811598186847e-05,0.000219304568019098,3.42483548664245 +"Q9I7K0",-0.416619711101177,16.1805296631378,-6.31112175654301,1.26463810174973e-05,0.00025414654864079,3.2629380104401 +"P12080",0.285596259557803,19.0620897410562,6.30365688322158,1.28166501709939e-05,0.000254502053395451,3.24936905977313 +"Q8IN44",-0.480054656949758,19.8683741411854,-6.28264102909514,1.33089695110877e-05,0.000259353234314979,3.21112675950819 +"Q9Y119",-0.38499807070286,17.7137644715383,-6.28001205966368,1.33719293471752e-05,0.000259353234314979,3.20633853302552 +"P50887",0.608644887749218,17.7754614717795,6.25560893872014,1.39713820904844e-05,0.000263498780044744,3.16184652125973 +"Q9VTU2",-0.247269233178038,20.8195611019302,-6.25230206770412,1.40547439760703e-05,0.000263498780044744,3.1558110398146 +"Q9VTZ4",0.355663282267823,18.1840541179795,6.25211057208263,1.40595871846416e-05,0.000263498780044744,3.15546148823732 +"Q9VAM6",-0.279667294460396,22.0854760098359,-6.10871954099286,1.82234133351846e-05,0.000337740593812087,2.89229507903042 +"Q7K569",0.437107860350558,20.5965234990322,6.09331381307687,1.87415891821387e-05,0.000343527151162718,2.86385233366868 +"Q95SS8",0.335098519722933,15.5620005249743,6.08720749029017,1.89512021671918e-05,0.000343593534944303,2.85256955806289 +"Q9VPE2",0.35168216580178,20.8567421228232,6.05321215910892,2.01636451951404e-05,0.000361644733177357,2.78966235955847 +"Q9VEB1",-0.219249144551991,25.1289450051015,-6.0278584570402,2.11202909774878e-05,0.000374772822877124,2.74264338395344 +"Q7JPS2",-0.474778117691955,20.6941733676216,-5.95909115450854,2.39603649276702e-05,0.000420693565256357,2.61467258071121 +"Q9VWH4",-0.209459618671708,24.3652003971346,-5.90868572210368,2.62926499475647e-05,0.000456483129366002,2.52046524498198 +"Q9W1F8",-0.303194807280098,17.6385092340496,-5.90349096476011,2.65460812640901e-05,0.000456483129366002,2.51073682965401 +"P42281",-0.377819404899221,21.8073675021789,-5.85682291781734,2.89399949517003e-05,0.000492570526320777,2.42317748769207 +"Q9VSY0",-0.367616895806933,22.6100148721128,-5.83799647969508,2.996828967142e-05,0.000498328240099936,2.38777256559089 +"P54385",0.383150768389172,21.5202325042604,5.83167531303873,3.03220066788232e-05,0.000498328240099936,2.37587440985297 +"Q9W266",-0.289673782480826,18.4113210385701,-5.82660398473436,3.06089215977311e-05,0.000498328240099936,2.36632494438741 +"Q7K2E1",0.458232235587591,17.4426512464403,5.82623000526001,3.06301912167375e-05,0.000498328240099936,2.36562059418776 +"Q9VEV3",-0.237806036402905,18.2516565823609,-5.82374230471275,3.07720675841088e-05,0.000498328240099936,2.36093480380807 +"Q9VWP2",-0.334703622357939,19.6330517387412,-5.81048451026852,3.15397780242001e-05,0.000505849516772748,2.33594877689801 +"Q9VSL3",0.331503229294107,22.4632904713458,5.77355717701794,3.37848137632173e-05,0.000536695898638537,2.26623162066354 +"Q9VJZ4",-0.220522531324047,21.3033885169847,-5.71421392603749,3.77467304609596e-05,0.000589441373722973,2.1538176930467 +"Q9V3A8",0.34553318989844,15.5552073607755,5.7132929466718,3.78118866836679e-05,0.000589441373722973,2.15206944285495 +"Q9VCX3",0.740206365909243,12.9894979633501,5.70111431078457,3.86845505181856e-05,0.000597461391336423,2.12894091543228 +"P82890",-0.364117076765659,19.6171589226471,-5.69218700240824,3.933750330359e-05,0.000598502305449551,2.1119747179329 +"Q9W5W7",0.37636438827661,14.9512381497284,5.69039998191007,3.94695764984716e-05,0.000598502305449551,2.1085772689572 +"Q7K3N4",0.302429815863025,17.1134116789979,5.64476304119791,4.30031603374154e-05,0.000646209652637918,2.02167271887672 +"P29327",0.304715440338725,19.5356750332922,5.63852603249216,4.35109842037778e-05,0.000648002871891977,2.00977490892564 +"Q9VA37",-0.301825946781907,21.7725286143784,-5.61988553746252,4.50661306902512e-05,0.000665223946826009,1.97418615868317 +"Q9VB22",-0.345029471083393,17.2004405191688,-5.61514896725807,4.54704090963004e-05,0.000665303880461659,1.96513590059898 +"A1Z847",-0.308033048844095,20.0786029324823,-5.59564804788569,4.71749052274481e-05,0.000684241234081594,1.92784481299581 +"Q9W199",0.495884097313928,15.8423910777886,5.57068807830973,4.94537476398745e-05,0.00071111078502854,1.88004363403997 +"Q9VZG1",-0.292498263204561,17.756194577628,-5.54760800678704,5.16625870790161e-05,0.000736523036305972,1.83577217423241 +"Q9VBI2",-0.220774129974711,22.1089763996613,-5.54254531371291,5.21606379448265e-05,0.000737321560101446,1.82605205251182 +"Q9VWV6",-0.459023564726412,23.6390966134418,-5.48714417502078,5.7947592091783e-05,0.000812240198395748,1.71947373488777 +"Q9VJQ3",0.240390312671288,20.5325916420758,5.43686569245261,6.37755313676742e-05,0.000882372251976786,1.62241860131551 +"Q8IQG9",-0.291682818226199,20.4555174490641,-5.43495179638824,6.40090182788916e-05,0.000882372251976786,1.61871793118236 +"Q9VAN7",-0.249885550369068,23.6944333150589,-5.3933965354236,6.93028947701581e-05,0.000947518266201834,1.53825670940666 +"Q7K5J8",-0.300696750983935,18.2385081807922,-5.38559013647475,7.03469298430693e-05,0.000953972999823086,1.52311806612721 +"Q9VTY2",-0.326935872548944,20.7753534996972,-5.37641201844478,7.15952740937552e-05,0.000963071912809546,1.50530983329767 +"Q9W414",0.208255238827395,19.5571386192577,5.36653215714039,7.29647185903941e-05,0.000973641204870219,1.48612860547114 +"P18432",-0.332670835755987,23.6507353002834,-5.35377061582284,7.47738213931517e-05,0.000989862968918866,1.46133529582441 +"Q9VUY9",0.247754041498741,19.7353463817489,5.32000084253096,7.97884832742459e-05,0.00104793063072002,1.39563249481756 +"Q9VXZ8",0.328472190262111,17.9113836919935,5.28045187185201,8.61064253231072e-05,0.00112207435499174,1.31851296352346 +"Q9W370",0.583547445019445,18.3654871504733,5.27357535077222,8.72566962429588e-05,0.0011282493746764,1.30508506402912 +"Q9VAJ9",0.365775025611796,17.6372822657718,5.25531872657116,9.03882999248811e-05,0.00115975141749771,1.26940814054034 +"Q9VW34",0.343410485076909,18.4621667280435,5.24208866925923,9.27301254543889e-05,0.00118071640654901,1.24352976691891 +"Q9VNH5",0.254665756070191,17.113419698231,5.21793086757129,9.71694183550441e-05,0.00122786810466829,1.19622401481375 +"Q9U9Q4",0.26414610048294,17.9148149775483,5.18702103576137,0.000103171750957378,0.00129391338794667,1.13559850568431 +"Q9VV39",0.24491089616938,17.5252227826175,5.17141480679813,0.000106346558120349,0.00132377655928912,1.10494755603968 +"Q9VXY3",0.235714048462391,18.0974322757029,5.16683125682829,0.000107298041732466,0.0013257269156278,1.0959401254103 +"Q9VSR5",0.294551748150027,20.2711842710254,5.144730294644,0.000112010841514868,0.00137378002681471,1.05247484584833 +"Q9W086",0.302390541428563,16.8755113177334,5.1347259575627,0.000114213942958619,0.00139057559748158,1.03278160421898 +"Q9VJI5",0.36741730937306,17.5498214378569,5.12830354264016,0.000115651786305165,0.00139787811273199,1.02013338157038 +"P19334",-0.764609439301758,15.1882842984039,-5.10978059160279,0.000119904266449637,0.00143885119739565,0.983628847055609 +"Q9VHT5",0.308544748154958,15.6335189014043,5.09886231611464,0.00012248615999952,0.00145933510627999,0.962093633833708 +"A8JTM7",0.332600069877422,17.640158016,5.08619199986147,0.000125554422831477,0.00147650417290346,0.937086270914821 +"Q9VMD3",0.271521469205874,17.7803358017747,5.08482776576374,0.000125889483703616,0.00147650417290346,0.934392638059166 +"Q9W3R8",-0.274313961883198,17.3265323674358,-5.08201674888938,0.000126582791801675,0.00147650417290346,0.92884174177686 +"Q9VLP0",-0.328541123710652,16.1190876670951,-5.07206869698407,0.000129068176920839,0.00149503971599972,0.909190471370553 +"A1ZB70",-0.269028125908738,16.1040253476183,-5.04578443128573,0.000135880081574047,0.00156308949010697,0.857217216500446 +"Q9W3X7",-0.237498807342039,21.6193069399451,-5.03823295401769,0.000137904928197555,0.00157551657694193,0.842271529472877 +"Q9VUX1",0.312309412109167,16.4208572694559,4.98442561951703,0.000153263513788195,0.00173907170747421,0.735602136223742 +"M9PEG1",-0.391447802550292,20.3109534931276,-4.9777649910903,0.000155283698920911,0.00174956017375977,0.722376739885817 +"Q8SZK9",0.238460317487991,22.1503916875227,4.97449456688287,0.000156285651013313,0.00174956017375977,0.715881272147197 +"Q9VE24",0.299330085450292,15.8843580865115,4.97088384766382,0.000157399599044396,0.00175028354137369,0.708708648314317 +"Q8I099",0.284149399290129,16.8593425287776,4.95196924052289,0.000163370101468753,0.00180464456456874,0.671113158667781 +"Q9VH64",-0.37608485515684,17.5281211343162,-4.94315533237312,0.000166231475232656,0.00181864632403056,0.653581710377804 +"Q9VSY6",0.317122237703252,17.7224056013374,4.93920856226062,0.000167529451137293,0.00181864632403056,0.645728752258417 +"Q9VW68",0.260361381036226,22.9547229972386,4.93506844564706,0.000168902234912495,0.00181864632403056,0.637489385639714 +"Q7JYX5",0.363782950793182,14.9157334791088,4.93477819800756,0.000168998909007636,0.00181864632403056,0.636911690031895 +"Q9W0Z5",-0.352732914082209,16.9305587713928,-4.93035695545094,0.000170478577949215,0.00182280941038007,0.62811079477104 +"Q9Y143",-0.222170154630689,20.9487170866769,-4.92420944326629,0.000172558186653435,0.00183329334610146,0.61587031003561 +"Q7KUT2",0.28597822574778,18.2106855216054,4.92037821824997,0.000173867427643624,0.00183551183107319,0.608239919807443 +"Q7JXZ2",0.519931583660583,17.5511053363175,4.90975907878428,0.000177550026127966,0.00186260027409716,0.587082784680815 +"Q9VKG4",-0.306213743134984,15.899107926057,-4.89657169040665,0.000182235318807367,0.0018998031985668,0.56079306945674 +"Q9VZX9",-0.218951077727624,18.447175315933,-4.88384140486995,0.000186878992154429,0.00193611278828315,0.535398219816729 +"Q500Y7",-0.230944799426535,20.0524794161375,-4.87233272981424,0.000191181856777705,0.00196846504385933,0.512426526741394 +"Q9NJH0",0.217100952786886,21.1878417031123,4.86775935883892,0.000192919937784766,0.00197417457806742,0.503294321642704 +"Q9W3M7",0.275446157818344,16.064050702907,4.85886641460081,0.000196346344638044,0.00197934615053873,0.485530857405942 +"Q6IHY5",-0.287683946225044,20.8899641977379,-4.85848187233454,0.000196495911461738,0.00197934615053873,0.484762568958411 +"Q9VBC7",0.321967787993602,16.1582736960174,4.85722576618338,0.000196985288362968,0.00197934615053873,0.482252857020012 +"Q9VSA9",-0.285811033182537,22.3317226522773,-4.84748676783709,0.000200822391718141,0.00200581885859796,0.462789060299857 +"Q9V9Q4",-0.240406399234594,19.1265432706543,-4.82863501392086,0.000208469844011174,0.00206980773696809,0.425087097766671 +"Q7KVQ0",0.432005766677916,15.7066085133946,4.81034121531166,0.000216177486972257,0.00213363342171435,0.388468619801143 +"Q9VCK0",0.329403135052594,18.2468436096057,4.79076644425233,0.000224749958544174,0.00220519371089225,0.349251149541224 +"Q7JXC4",-0.202450725636041,21.6189177461977,-4.75106914341533,0.000243224158353452,0.00237250231657052,0.269609999888114 +"Q9VIF2",0.261085776810932,17.468934630371,4.73920546180098,0.000249042786785988,0.00241513586255249,0.245781145074945 +"Q7K5M6",-0.237976352437119,18.1995592081871,-4.72656913362741,0.000255397801553315,0.00246244816757763,0.220386532777508 +"Q9VHB8",0.424426224705128,15.5411092225851,4.70024625337509,0.000269176337806798,0.00258038006587207,0.167441421685379 +"Q9V8F5",-0.356629976633105,16.0079886319342,-4.67771519470389,0.000281575442773468,0.00268381622026368,0.122075230109675 +"Q9VD02",-0.250867324146821,18.2279487637161,-4.65585392913228,0.000294166612059514,0.00278373059973848,0.0780162873433667 +"Q8IM93",-0.283696373518435,19.0276876481251,-4.65377129862027,0.000295395872993832,0.00278373059973848,0.0738168794210914 +"Q9VK39",-0.286745643782403,18.131973099229,-4.64967380690949,0.000297829800963,0.00279089948318137,0.0655536563427956 +"Q9W3H4",-0.233102936804332,19.5096195075528,-4.64093166120093,0.000303091679212721,0.00281409933284339,0.0479191083313104 +"Q8SXQ1",0.311299752567717,18.6290177333548,4.63996426348306,0.00030367978411979,0.00281409933284339,0.0459672968644167 +"Q9VBP6",-0.191634112333826,23.1284348586979,-4.6342538761929,0.000307175194421276,0.0028307636701364,0.0344445084076197 +"Q8IN43",-0.81555948284166,17.8871994134707,-4.59996239904702,0.000329051235098443,0.00301570033046265,-0.0348068664632235 +"A1Z7X8",0.237532769616493,17.0303232491974,4.57933445735895,0.000342973894521249,0.00312612271071827,-0.0765100674051169 +"Q9VW66",-0.195412548740475,21.3461254613284,-4.57325009285055,0.000347194713631026,0.00313454993518967,-0.0888170981114795 +"Q9VPN5",-0.212552574567734,21.260754224716,-4.57258842949998,0.000347656917272235,0.00313454993518967,-0.0901556380029147 +"P28668",0.368157692839675,15.5354845648377,4.55472735401942,0.000360374837224432,0.00323069393235341,-0.12630118286308 +"Q9VPF6",0.38831220457269,14.0052079381834,4.55222528885367,0.000362194103926912,0.00323069393235341,-0.131366569938141 +"Q9V3V0",0.274452294929976,14.3313840693417,4.54897963112973,0.000364568066149892,0.00323457199115968,-0.137938053676907 +"Q9VGA3",0.234577795340911,19.4403160382186,4.52006189315594,0.000386435737001658,0.00341044872655431,-0.19652259666548 +"Q9W402",-0.190735876694088,21.2296912517434,-4.48422777317456,0.000415408375102165,0.00364684826142322,-0.269203709512673 +"Q9VMW7",-0.202270495914622,19.4030192778855,-4.48128486235238,0.000417884428807368,0.00364937815314497,-0.275176770311272 +"Q9VXC9",0.45222577967554,19.0325347770872,4.45125132492191,0.000444033570527455,0.00385754164395727,-0.33616838990176 +"P48375",-0.295596312640086,21.8927195247809,-4.43133511445098,0.00046229127766457,0.00399534637898706,-0.376647534091419 +"Q9VG69",-0.224027368852262,19.9524891538225,-4.40058843003363,0.000491997369166601,0.00423016294726747,-0.439190121247588 +"Q9VGA0",-0.313081302315236,19.2934822168667,-4.39532672443896,0.000497273202232121,0.00423696402128919,-0.449899106662826 +"Q9VXN4",0.259480160954464,14.9939832243931,4.39336136118913,0.00049925863726284,0.00423696402128919,-0.453899592396955 +"P91927",-0.338155683050466,19.2651784593747,-4.39222645511168,0.000500408820260174,0.00423696402128919,-0.456209796600644 +"Q00174",0.221896889266286,21.9951719263408,4.38386002276032,0.00050897182911693,0.0042877020755911,-0.473242884087167 +"Q9VAQ4",-0.351776868674889,15.9898182085765,-4.37315562215846,0.000520146417167792,0.00435982022028079,-0.495042047663763 +"Q9VPL0",0.302117561008066,15.1423461703483,4.34354487640409,0.000552381014914711,0.00460685766438869,-0.555378970775463 +"Q9VM12",0.222167659589623,18.9493164431643,4.3401513004794,0.000556203296084917,0.00461565720333155,-0.562297221121874 +"Q24238",0.290097407084511,16.3788437452488,4.33617314898723,0.00056071838856535,0.00463009045607428,-0.570408042643818 +"A1Z8Z3",-0.313472922569609,19.9766759157919,-4.3292292378058,0.000568689363308792,0.00467277762561115,-0.584567726338459 +"Q23983",-0.216649712730334,22.3356285651967,-4.32285729932601,0.000576105482025751,0.00471050952950467,-0.597563449941664 +"Q9VJZ5",-0.214830162065367,16.9412414825802,-4.30249354246738,0.000600474550472476,0.0048858124399419,-0.639110791689835 +"Q9W392",0.179761255044294,20.0079164538587,4.28824529832186,0.000618148205506373,0.00498549940724271,-0.668194124363307 +"Q9VU04",-0.312442127265964,16.5615834179153,-4.28780393960812,0.000618704063129042,0.00498549940724271,-0.669095190140091 +"Q9VM18",-0.185216103623457,22.9303662410684,-4.27272468325219,0.000638004551239404,0.0051163057282083,-0.6998866054942 +"Q9VLY7",0.253815375113415,15.4502375152215,4.25926519920212,0.000655749912425158,0.00520247367211288,-0.727380185753914 +"Q9V3G1",0.25672813036719,21.0871792908584,4.25853499646216,0.000656726895281641,0.00520247367211288,-0.728872021368177 +"Q9VG81",0.480802078861087,15.6851787288479,4.25750561950888,0.000658106681544255,0.00520247367211288,-0.730975127107626 +"Q9VH98",-0.251089292153143,17.0354702154188,-4.24507992016718,0.000674997128345238,0.00531082646264083,-0.756365952115669 +"Q9VIN9",0.254988806321766,16.4522736798313,4.23677975434766,0.000686525108469727,0.00535731625508025,-0.773330715663382 +"Q9VN02",-0.21766492669509,17.2751636351012,-4.23620586942459,0.00068732954351749,0.00535731625508025,-0.774503802435662 +"Q9W1N3",-0.236095795017967,20.5128130276862,-4.21115173953042,0.000723400987154676,0.0056122457980186,-0.825732021111744 +"Q9VMB9",-0.249435196065122,22.5483085290325,-4.19192356073769,0.000752387591729541,0.00579199489428116,-0.865066718019634 +"Q9VMH8",0.189340751897756,18.9196842380788,4.19119106340194,0.00075351492329677,0.00579199489428116,-0.866565484201511 +"Q9VEJ0",-0.16833631416841,22.2142253267539,-4.16895481498516,0.000788567675560606,0.00603362790291326,-0.912073652604263 +"Q9VQD7",-0.183622210602582,20.9709931403091,-4.16441342737772,0.000795928234427136,0.00606213833344504,-0.921370380002794 +"Q9VH81",0.296610540200914,14.4843712733431,4.12712529321442,0.000859068401735313,0.00647098299121712,-0.997732702638082 +"Q8SWS3",-0.338772212339325,16.4742294988022,-4.1261800028137,0.000860733634490739,0.00647098299121712,-0.999669212556024 +"Q8SYJ2",-0.19143532234083,22.5464031630968,-4.12588956128555,0.000861245937679977,0.00647098299121712,-1.00026421358522 +"Q9VSA3",0.223001232877049,21.7215076102327,4.12227088901299,0.000867654875934497,0.00648990283882844,-1.00767770000762 +"O17444",0.381392393653631,15.384049081131,4.11385431978265,0.000882749363107875,0.00657333007885686,-1.02492223854391 +"P35381",0.195375189083567,25.6887317629981,4.11119533563578,0.000887573307244324,0.00657987678437126,-1.03037066811452 +"P13677",-0.42724955753596,17.018702021655,-4.1085343586095,0.000892427683309703,0.00658659015823267,-1.0358234133371 +"Q9V9M7",0.277180832993018,18.406933019599,4.1018117401528,0.000904812151381624,0.00664857563217863,-1.04960009698324 +"Q9VIK6",-0.242273031787908,16.5930698943386,-4.09957276790985,0.000908975448402494,0.00664987301726035,-1.05418874975138 +"Q9VWI0",-0.195001306271056,20.9629955481989,-4.08607025235347,0.000934498764280308,0.00676521923819003,-1.08186472008959 +"Q9VME1",-0.372594272015881,16.5475663668093,-4.08560375011863,0.000935393470249619,0.00676521923819003,-1.08282100392314 +"Q9VUJ1",0.185862077265991,20.0224658210152,4.08481413477169,0.000936909858526317,0.00676521923819003,-1.08443965271298 +"Q9VLR5",-0.401707103283691,16.8730873765268,-4.08049677939983,0.000945245215639938,0.00679598715382507,-1.09329021429537 +"Q9VX36",-0.16359465077657,22.21294527592,-4.07762727118132,0.00095082688577964,0.00680677787759845,-1.09917299629344 +"Q7K2Q8",-0.199452658315359,16.1082680275246,-4.07305313974383,0.00095979360806847,0.00684160571905217,-1.10855091789068 +"Q95SI7",-0.172529413007528,21.2148454381424,-4.06164323243539,0.000982536576868471,0.00696237948659582,-1.1319461568376 +"Q9W337",-0.309905376277589,17.7708074192759,-4.05912432688066,0.000987630696375913,0.00696237948659582,-1.13711147962962 +"Q960M4",-0.257577071352106,23.2119323258345,-4.05830624668168,0.000989290904480639,0.00696237948659582,-1.13878908916863 +"A1ZAL1",-0.32210392208539,17.2474604287819,-4.05627123503019,0.000993433044250482,0.00696237948659582,-1.14296229587833 +"A1Z6L9",0.359234454457919,15.2620958687615,4.0420767871315,0.00102281870793232,0.00713833307460719,-1.17207387500383 +"Q9VX69",-0.349761515561458,18.1594344446518,-4.01957585668679,0.00107121893469271,0.00740184127594881,-1.21823130646556 +"Q9VFS4",-0.301499419805518,15.2785942287608,-4.01928447217835,0.00107186071866815,0.00740184127594881,-1.21882911518125 +"Q7K4T8",0.351402984063988,13.6995246631005,4.01836509114508,0.00107388824267363,0.00740184127594881,-1.2207153427983 +"Q9V6Y3",0.331059267994299,15.2553607609896,4.0151664537076,0.00108097259348141,0.00741168988468633,-1.22727789746275 +"O77477",0.250164442795519,16.8476862213939,4.01252290207937,0.0010868632924887,0.00741168988468633,-1.23270176177495 +"Q7KM15",-0.222471680808678,17.0471249906335,-4.01172507643724,0.00108864749505285,0.00741168988468633,-1.2343387163434 +"Q9VPC2",-0.394269585730576,14.8166723586628,-4.00602963363845,0.00110147095423161,0.00746851037259483,-1.24602483350738 +"Q9I7K6",-0.247469097650724,16.1907077855354,-3.9705968890086,0.001184761520312,0.00800073771611505,-1.31874069158609 +"Q7K3W2",0.202884879889325,17.5828830694103,3.95916547623738,0.00121297247467764,0.00813522702038299,-1.34220490700174 +"Q9VW26",0.17294520464732,17.5302851929136,3.95858165829224,0.00121443137174782,0.00813522702038299,-1.34340330734915 +"Q94523",0.230045824124527,20.3731997672175,3.93328856350948,0.00127937177474986,0.00851838236572149,-1.39532651366409 +"Q9W1L1",0.438885752315135,14.8837168405156,3.93161731828732,0.00128378454309706,0.00851838236572149,-1.39875760870385 +"Q24439",-0.150841971448394,24.285930061975,-3.9304220987036,0.00128694985381404,0.00851838236572149,-1.40121143265867 +"A1ZBU5",-0.283947607477891,16.6730923471737,-3.92355914232259,0.00130527856234968,0.00860555194466116,-1.41530157476727 +"Q9VKU3",0.254386771324576,15.5394519495429,3.90414443859709,0.00135857212565932,0.00892164687243996,-1.45516356350253 +"Q9VV75",-0.151083429790351,23.9687786679649,-3.89999949660286,0.00137023219044881,0.00896293056340633,-1.4636742537904 +"Q9VUN9",0.167920193322521,16.7886163015593,3.89716585660047,0.00137826164517992,0.00898023603187542,-1.4694925454381 +"Q9VK12",-0.210330340967332,22.3081435730921,-3.89437916375954,0.00138620447192351,0.00899684458820395,-1.47521448489301 +"Q9VEN3",-0.191859920643481,17.5655716551264,-3.88770648034687,0.00140541202971175,0.0090861521920899,-1.48891572063606 +"Q9VY28",0.270960551981883,15.2248863431617,3.8830827789573,0.00141887912726515,0.00913780071149911,-1.4984098307872 +"P14318",-0.253928057657827,22.0865939075188,-3.88021392614244,0.00142730051518236,0.00915668176663143,-1.50430065048116 +"Q7JWX3",0.179766668955438,17.9449793816874,3.86400049305952,0.00147585279805805,0.00943188684735949,-1.53759325670601 +"Q7K3Z3",-0.183859594086361,19.8781562718374,-3.84425234607654,0.00153725040743012,0.00978676976944063,-1.57814432545455 +"Q7JWD3",-0.28713699603605,17.0995349645606,-3.83435251330851,0.00156899365548518,0.00995087991387562,-1.59847255648341 +"Q9V396",0.183555818919494,20.8718770802329,3.80981054210977,0.00165056969610636,0.0104285994435811,-1.64886515842344 +"Q9VCJ8",0.154806364395071,17.9012610217986,3.80237734270049,0.00167611189066358,0.0105500174853844,-1.66412720888285 +"A1Z8Z7",0.238047896907077,18.890075826969,3.79933287226578,0.00168668815928989,0.010561418941986,-1.67037807688824 +"A1Z6R7",-0.198581156022025,17.9225942394132,-3.79686231854578,0.00169532014332965,0.010561418941986,-1.67545052957017 +"O77410",0.251044375430519,14.348263298953,3.79640620921534,0.00169691863096657,0.010561418941986,-1.67638699119738 +"Q9VF86",0.207471943288812,17.6234348742795,3.78795939991633,0.00172679772995229,0.0106782480315019,-1.69372922578226 +"Q7JQR3",-0.211958228620123,19.0812435562556,-3.78658435039403,0.00173171169774943,0.0106782480315019,-1.69655228909996 +"P09040",-0.452959376250648,16.5098125004007,-3.78569562257001,0.00173489521375121,0.0106782480315019,-1.69837689302034 +"P08182",-0.173573696600343,19.6615495203309,-3.77905114892386,0.00175888415068779,0.0107629843661012,-1.71201807153741 +"Q9VFC2",0.243079700611577,19.8695551434363,3.77831357811411,0.0017615675850993,0.0107629843661012,-1.71353228240869 +"Q9W308",-0.318123520697178,17.1418134381764,-3.77616774419766,0.00176939806447337,0.0107713721589109,-1.71793757960041 +"Q8MR62",-0.198842223086633,17.6497943255366,-3.77255749402384,0.00178265168771637,0.0108125927822214,-1.72534913149986 +"O61443",0.303797186166568,16.539192265356,3.76504649086975,0.00181054694790101,0.0109123763387841,-1.7407680887816 +"Q7KTG2",0.227521020548846,18.0846112125531,3.76460847927481,0.00181218719774771,0.0109123763387841,-1.74166723764804 +"Q9VU35",-0.188886270735132,22.7126395080507,-3.75883388699352,0.00183395221125911,0.0110037132675547,-1.75352105450032 +"Q8MZI3",0.384930252280963,17.8046642082326,3.75263153288679,0.00185762300188861,0.0110876041030848,-1.76625242292868 +"P32748",0.220749519878934,17.2881131598324,3.75169379193277,0.00186122850651304,0.0110876041030848,-1.7681772422512 +"Q9VT23",0.266979966404435,18.2998447829677,3.74986089613762,0.00186829614677887,0.0110900995474276,-1.77193942845507 +"A1ZB71",-0.267822675827354,19.216083660209,-3.72364031897769,0.00197241301633507,0.01166661316045,-1.8257532710784 +"Q9W299",0.337259996232119,14.7391654507675,3.71904218997167,0.00199126447668892,0.011736498753064,-1.83518891683823 +"A1Z8H6",-0.414863409162807,16.7762503279013,-3.71389625187179,0.00201257699334636,0.0118203465665554,-1.84574818263131 +"A0A0B4KI23",-0.198592492230048,20.5256155739036,-3.7009079759422,0.00206739605430159,0.0120997074335967,-1.87239704711281 +"M9PF61",-0.153232699107164,22.691028400185,-3.68865592805244,0.00212048414826343,0.0123456040992627,-1.89753171636111 +"Q9VXN2",-0.362832827443693,18.4387039589227,-3.68780683924643,0.00212421365496907,0.0123456040992627,-1.89927345554261 +"P45888",0.214266218720562,17.2015325842405,3.67988515547812,0.00215932799168273,0.0125061079518291,-1.91552233343004 +"Q9VAA6",-0.350113554872012,16.1854697377216,-3.66890925210938,0.00220894737112242,0.0127492187371356,-1.93803318978714 +"Q8IRD0",0.218730568039252,17.5300171840598,3.65921488138815,0.0022537256794196,0.0129628083905928,-1.95791284080681 +"Q95RI2",-0.314597136280865,16.7231717687244,-3.65231356631349,0.00228615763823786,0.0131041613078376,-1.97206321976459 +"P55841",0.153883182046052,20.6453054138082,3.64871754664732,0.00230324213204479,0.013156834458281,-1.97943586891098 +"Q9VM58",0.252049536074482,16.4386853940296,3.64591197240191,0.00231666028270702,0.013156834458281,-1.9851876402391 +"Q9VAG9",-0.171790116438626,17.4339235197905,-3.64497207357305,0.00232117305059976,0.013156834458281,-1.98711449117214 +"Q9VR94",0.288622699034667,16.2283727919089,3.64310680468045,0.00233015499511529,0.013156834458281,-1.99093832270744 +"Q94516",-0.149387400186534,23.3667950426379,-3.64214791548096,0.00233478597101389,0.013156834458281,-1.99290401663286 +"M9MSK4",-0.198261560158727,20.5689156087235,-3.63972225497754,0.00234654206067154,0.0131785594518523,-1.99787641133263 +"Q9VV47",-0.170703423631384,20.1696428458878,-3.63733049196995,0.00235819207251908,0.0131995448891336,-2.00277912617564 +"Q9VHX4",-0.158545386500286,22.8380191014466,-3.62493721161679,0.00241949506040141,0.0134973838152159,-2.02818012602043 +"P40301",0.239337825627278,17.8483080527872,3.61456424429261,0.00247203289203581,0.0137445028797191,-2.0494361025453 +"Q9Y156",0.354215719342308,16.1390687670303,3.60891213612684,0.00250114049308318,0.0138601406726337,-2.0610165386069 +"Q9VDH3",0.159284096907729,20.5735024878118,3.59714383543408,0.00256285381222419,0.0141550998635429,-2.08512425893281 +"Q7K0P0",-0.258492100241938,15.2798450996036,-3.5949774865763,0.00257437958603835,0.0141718321766071,-2.08956148426576 +"Q7PL91",-0.278900996510473,18.8534379645936,-3.58166720311444,0.00264634497629199,0.0145200770409705,-2.11681998477637 +"Q8T3X9",-0.246626889398975,18.2902065098095,-3.57827203742397,0.00266502247806967,0.0145746147325253,-2.12377182571506 +"Q9VXZ0",-0.214026492555185,19.6747269518058,-3.57254321665998,0.00269683799462782,0.0147004110295399,-2.13550083754973 +"P48148",0.247633743666597,20.6564043639957,3.55344785444304,0.00280566051077731,0.0152437841432461,-2.17458525655007 +"P06002",-0.392528019038798,16.998277330311,-3.55099509452103,0.00281995372664964,0.015271697454713,-2.17960431879804 +"Q7K1S1",0.298407141925477,16.5853091780995,3.54905108876893,0.00283133402227571,0.0152837059843233,-2.18358211341829 +"Q9VXR9",0.223000141216763,15.2278948852988,3.54435491142778,0.0028590157916438,0.0153833494853608,-2.19319059118129 +"Q9W5W8",0.187470862122222,20.6968390638825,3.53621553304132,0.00290763710555506,0.0155946581738452,-2.20984131209178 +"Q9VJ43",0.195496860866523,20.2566934102394,3.53385984935296,0.00292186285782868,0.0156207283553148,-2.21465970174823 +"Q9VQI7",-0.146915919713468,19.1568733243017,-3.52413692088908,0.00298131973372111,0.0158876719356128,-2.23454421822256 +"Q9VZJ2",-0.17217432411281,17.3393679735216,-3.52239716183991,0.00299208559285117,0.0158942635951457,-2.23810169805736 +"P13060",0.165323347358207,20.2203302059095,3.51202154985201,0.00305710393434789,0.0161880932142612,-2.25931445330166 +"Q95RA9",-0.14062993567547,20.5009681506718,-3.49738817938059,0.00315121289514733,0.0166336174338789,-2.28922187098853 +"Q9VBS7",0.13135545994864,19.825321129059,3.48804010089102,0.0032128424345267,0.0169054295923992,-2.3083207910053 +"R9PY51",-0.255095440988942,21.508479189438,-3.4807421439749,0.00326179237084398,0.0171090241338609,-2.32322749169381 +"Q9VL10",0.245742128855861,16.7357983938019,3.47536701339788,0.00329832126894249,0.0171947910212665,-2.33420456416374 +"Q7JRN6",-0.333763554694261,14.7220934802581,-3.47530269054915,0.00329876086738926,0.0171947910212665,-2.33433591317693 +"Q9VN01",0.195421260741554,16.0631558684004,3.46669408019658,0.00335812558216296,0.0174242636415968,-2.35191257641132 +"Q94522",-0.171722581742255,23.4699495358943,-3.46550870728782,0.00336638304914472,0.0174242636415968,-2.35433244646907 +"Q9VCK6",0.305799339813076,16.5509441839027,3.46341712053434,0.00338100282350942,0.0174242636415968,-2.35860207877087 +"M9NDE3",0.1570978304502,16.1745448895629,3.46290826596177,0.00338456919656916,0.0174242636415968,-2.35964077938386 +"P17210",-0.14631725016854,20.8329678854535,-3.45759134402628,0.00342205901734171,0.0175630598182338,-2.37049294989126 +"P48611",0.242778737547926,20.1914804439693,3.45441342674078,0.00344466435623483,0.0176248470742322,-2.37697839088811 +"P20007",0.337944540886763,15.0299587402673,3.45082997294114,0.00347033329560467,0.0176462680362853,-2.38429063866374 +"P21914",-0.144799149577427,22.9103826885991,-3.44936579059843,0.00348087638332595,0.0176462680362853,-2.38727814105718 +"P12370",0.259868211560676,20.7917273321504,3.44804492181078,0.0034904149525064,0.0176462680362853,-2.38997310398048 +"Q2MGK7",-0.255251213167242,17.0802881804803,-3.44794077697841,0.00349116813667515,0.0176462680362853,-2.39018558521988 +"Q9VZ58",0.193927875638085,18.1196879992951,3.43323872958384,0.00359913905294178,0.0180497570214041,-2.42017393320609 +"Q8MSS7",0.554892322146086,14.1304949571916,3.43222511971181,0.00360670457590967,0.0180497570214041,-2.42224087883465 +"A1ZA22",0.590691853952398,13.5975987409147,3.43136085746291,0.00361316790946566,0.0180497570214041,-2.42400321855321 +"Q9VE50",-0.316000740020243,14.5952834660866,-3.43121232241277,0.00361427988318284,0.0180497570214041,-2.42430609492582 +"Q9VN50",0.226117168093559,17.8567659741871,3.42738862734685,0.00364302293140895,0.0181389917898213,-2.43210241410773 +"Q9VPL3",0.365833998319752,15.8108230451852,3.42495600004258,0.0036614277818494,0.0181763736313238,-2.43706187271418 +"Q9W1X5",0.134027599732821,19.4241554633596,3.41811452155626,0.00371368801253057,0.0183318646389545,-2.45100747113964 +"Q9VVW7",-0.15792699256459,16.5827671027172,-3.41797904432134,0.00371473036448839,0.0183318646389545,-2.45128359202819 +"Q9VGP6",0.161437932972603,17.9680198566331,3.40890415605306,0.00378522031526462,0.0186246238520985,-2.46977634533965 +"Q9W401",-0.144039309620336,24.4610095631026,-3.40615776276136,0.00380681489278064,0.0186757860034062,-2.47537171496015 +"Q9VFP6",-0.14927020142181,20.2216116606734,-3.40076738609292,0.00384955653918016,0.0188300888778666,-2.48635214412137 +"Q9VMY1",0.326796390885665,15.5447128040025,3.3991937076683,0.00386212460111192,0.0188363270019143,-2.48955737525568 +"Q86BN8",-0.345413355911255,14.203431753084,-3.39758280173014,0.00387503233818036,0.0188441805833377,-2.49283823269503 +"Q9VVL7",-0.161716351958002,23.4913505826343,-3.39255288887096,0.00391561296699654,0.0189861698515995,-2.50308112599424 +"Q86BS3",-0.182344936116206,18.952237040822,-3.38749387710271,0.00395685551359429,0.0191305362222472,-2.51338127467983 +"Q9VI09",-0.212426735619463,20.1381371136,-3.38079584718746,0.0040121263632228,0.0193416958781954,-2.52701533284701 +"Q9W309",-0.238803043580461,18.4087310050968,-3.36728623976805,0.004125955440946,0.0198331229841439,-2.55450349380017 +"Q95RQ1",0.636405896617438,11.9850982268574,3.36525217312888,0.0041433703646627,0.0198596027823488,-2.55864092646207 +"Q9VDT1",0.215731378570883,19.1389226260248,3.3610495424782,0.00417958384904704,0.0199226570058845,-2.56718826776571 +"Q9VXK6",-0.259292023613455,17.7876241337556,-3.36095366927654,0.00418041364032348,0.0199226570058845,-2.56738323799361 +"Q9VNW0",-0.412275498957237,14.6490186642389,-3.35008198597606,0.0042755803786123,0.0203181426539183,-2.58948708011511 +"O97477",0.161407346184241,20.9481550008561,3.34746997410367,0.00429876432247088,0.0203702809371631,-2.59479619005294 +"Q9VF27",-0.12465702222957,22.2454395341154,-3.34538140447276,0.00431739220039259,0.0204005954398154,-2.59904093523481 +"P22465",-0.175113275629101,22.6948147991048,-3.34174890079973,0.00434998185183721,0.0204965246578092,-2.60642261051817 +"Q7JVK6",0.229801321446498,17.3749025259571,3.33545866274459,0.00440699559126928,0.0207066722429216,-2.61920234347153 +"C0HK95",-0.310471221303093,19.9077057153649,-3.32290223974564,0.00452303656509401,0.0211553985928172,-2.64470225124029 +"Q9VCW2",0.282292394496769,15.3914870989471,3.32238683313416,0.0045278640873116,0.0211553985928172,-2.64574864347002 +"Q9VI75",-0.300923428004694,17.4077936349294,-3.32082886479261,0.00454248785649476,0.0211644406274672,-2.64891152260292 +"Q9VVN2",0.304403688991306,14.9269588089672,3.31896384621996,0.0045600554786058,0.0211871101345807,-2.6526974570963 +"Q8MLS2",0.141346129305147,17.4140712079737,3.30925321532581,0.00465262199651989,0.0215571485838755,-2.6724044856026 +"Q7K511",0.435807391984778,16.7702574142731,3.30714774906049,0.00467293732214189,0.0215913004247443,-2.67667619897262 +"Q7JVI6",0.233360798050828,17.4824302335223,3.30127121157785,0.00473010653677224,0.0217950765285527,-2.68859666612997 +"Q9VH95",-0.150207377271879,20.9115341982174,-3.29869487612483,0.0047553886523709,0.0218512073613076,-2.69382166979622 +"Q9VJ58",0.181024744852728,17.200920339582,3.29085782503543,0.0048331231765979,0.0221473886224321,-2.7097118084072 +"Q9VXI6",-0.158109712663034,22.0244918135563,-3.28239535671579,0.00491847817953376,0.0224767715163351,-2.72686317766891 +"Q9W2X6",-0.160268122200588,24.1076171080887,-3.2743730587172,0.00500077433127256,0.0227904141654716,-2.74311575328954 +"Q9V3L6",0.25927810228516,15.8467981646997,3.2730246072955,0.00501474083467755,0.02279179213145,-2.74584696920326 +"Q9VY05",0.232468935230187,18.3250737156592,3.26721410121564,0.00507536678496288,0.023004651623147,-2.75761368875483 +"Q9VQR2",-0.156284161458217,21.316904508939,-3.26159401792657,0.00513469742989667,0.0231532406350519,-2.76899144047053 +"Q9VSC3",0.302446826066287,17.5682062031792,3.26026350136798,0.00514884395685974,0.0231532406350519,-2.77168455987974 +"Q9VTB3",-0.189949029968353,19.7206045702098,-3.26017450911519,0.00514979153213685,0.0231532406350519,-2.77186468382138 +"Q9VF23",0.718199960919366,15.386895198889,3.24749739514556,0.00528655729290046,0.0237042407649408,-2.79751504979336 +"Q9W3M8",0.155688770131874,18.6024120781617,3.23848228974677,0.00538600042615022,0.0240853852836959,-2.81574527384166 +"Q9VJ86",0.281406866144899,16.5313733117483,3.22326330194177,0.0055580991771322,0.0247885278808998,-2.84650045741715 +"Q9VDE2",-0.203841211787978,19.5444834559891,-3.21934501096966,0.005603282444995,0.0249234003153378,-2.85441447367902 +"Q9VK60",-0.153596192952705,21.3328798617399,-3.20342932688807,0.00579058045391219,0.0256598209553954,-2.88654214002372 +"P14484",0.211057100390452,19.260130280931,3.20267481932066,0.00579961181066191,0.0256598209553954,-2.8880644656232 +"A1Z6P3",-0.155350337777751,17.2279586687011,-3.18065984514649,0.00606935126044372,0.0267822166730691,-2.9324527320863 +"Q9VFB2",0.235706166346835,16.445284471854,3.17825501250203,0.00609955784937578,0.0268444920653267,-2.93729796244735 +"Q9VAN0",0.146911875892744,20.4524575107322,3.17675905168838,0.00611842321668266,0.0268566576984912,-2.94031164679264 +"P42325",-0.160398691425609,20.0885314661117,-3.16163920657623,0.00631236395794997,0.0276352311859857,-2.970755570629 +"Q9V3B6",-0.237505774695666,13.2564357029021,-3.15865475400993,0.00635135683972791,0.0277331497609061,-2.97676136663993 +"Q9VMQ5",0.381818989999161,13.5418511673056,3.15305752970509,0.00642512899917733,0.0279820239441979,-2.98802191708558 +"Q7K738",-0.134898459978469,19.7699242135479,-3.14793041278635,0.00649344725317226,0.0281383627001769,-2.9983331399587 +"Q7K3E2",-0.265999544749075,20.5115944503839,-3.14783197105748,0.0064947659709641,0.0281383627001769,-2.99853108408996 +"Q9VNA5",0.21654921091757,17.3303088323977,3.13950840687423,0.00660722925231406,0.0285514466136266,-3.01526329029077 +"Q9VH72",-0.572468400497542,18.6242919449318,-3.13807841742541,0.00662674299331764,0.0285617760022063,-3.01813696395143 +"A8DYP0",-0.377223767032291,15.2555472982388,-3.13659032741603,0.00664710996462854,0.0285757201572175,-3.02112710633325 +"Q9VGP7",0.319720986194612,15.9570994145514,3.1343832612543,0.00667743110579388,0.028632275281399,-3.02556140293481 +"Q9VQM2",-0.156003454316217,20.1208291690672,-3.12974800771084,0.00674155615157015,0.0288331170790231,-3.03487213278485 +"Q9VJD0",0.211274186505472,16.1266190198027,3.12634994573057,0.00678895118202962,0.0289135609048137,-3.04169590299093 +"Q9VQX3",-0.404169406754455,15.3046044687821,-3.1259155595673,0.00679503349801378,0.0289135609048137,-3.04256809663033 +"Q7JYH3",-0.196905563824462,19.2372275614119,-3.11880844048294,0.00689531473290687,0.0292199594033137,-3.05683465725221 +"A1ZB79",-0.162785941986133,20.7839734867978,-3.11829717408,0.00690258469585774,0.0292199594033137,-3.05786068718048 +"Q0KI81",-0.200103041537293,15.625269608381,-3.11710300211987,0.00691959470282308,0.0292199594033137,-3.06025705916967 +"Q9VZ64",-0.155761178310037,19.4075982628994,-3.11515224079519,0.00694747065052376,0.0292283297031172,-3.0641712729767 +"Q9VIQ5",-0.265527688799969,16.5320015544285,-3.11451345231861,0.0069566228370129,0.0292283297031172,-3.0654528913626 +"Q7KV34",0.15514749533542,20.9565173062268,3.10570926655484,0.0070839813380944,0.0296886454068881,-3.08311117949014 +"Q9W3T2",-0.139947182715467,16.2646461658621,-3.10379679967384,0.00711194878709741,0.0297311543280162,-3.08694552098474 +"M9NEW0",-0.155875161293146,18.3233948402826,-3.10156293876054,0.00714475400915869,0.0297936242181918,-3.09142357816958 +"Q7K3V6",0.235369366604134,16.2608729176929,3.09778751584015,0.00720053698805859,0.0298606075699413,-3.09899028420117 +"Q9VL01",-0.207383992158242,20.4681607333714,-3.09751549468362,0.00720457271085649,0.0298606075699413,-3.09953539096727 +"A8Y535",-0.222513339380885,22.0363805135977,-3.09684543319387,0.00721452329177839,0.0298606075699413,-3.10087809098092 +"Q9VJE3",-0.228463826603118,15.3183107314063,-3.09217672351639,0.00728423156061696,0.0300745006017552,-3.1102316836254 +"Q9VIV6",0.591132614740918,14.8809002136255,3.08801020008082,0.00734700161100424,0.0302587621905064,-3.11857651776507 +"A8DRW0",-0.232216918512357,21.5385651758816,-3.07025883230635,0.0076204529438044,0.0313076736706053,-3.15410109068309 +"P40304",0.201437072622607,18.7817917827255,3.06819501723086,0.00765288783876414,0.0313636779239769,-3.15822823724307 +"Q8SX68",-0.182700152464573,17.5545048816255,-3.06669550495573,0.00767653931317882,0.0313834989568193,-3.16122651094399 +"A1ZBD8",0.384636524382815,14.1506677063594,3.06448806529731,0.00771148766976096,0.03143309312129,-3.16563967123985 +"Q9VZD9",0.333377441345446,14.507683285705,3.06355168056385,0.00772635981998137,0.03143309312129,-3.16751149017638 +"Q9VZI8",0.205651044098135,15.7429558136524,3.05805975384735,0.00781415509943095,0.0317129214254278,-3.17848710209319 +"Q9VZU4",-0.18913391895606,21.4020026679134,-3.04526726155501,0.00802248048920492,0.0324793627572665,-3.20403503962934 +"Q7K1Z5",-0.239539876210902,15.9893750506479,-3.03594619960563,0.00817770207805331,0.033027620014995,-3.222634208271 +"Q9W0A8",0.160047383456604,18.9039126059631,3.02492373276941,0.00836506713305006,0.0336615699752015,-3.24461067749691 +"Q7K204",-0.387955677549401,14.844577389759,-3.02434438644752,0.00837503089910588,0.0336615699752015,-3.24576523621798 +"P41094",0.11707266759122,21.1793837820127,3.022144767979,0.00841296679557473,0.0337327610937948,-3.25014828740255 +"A1Z9B5",-0.394800586394483,15.7844461984263,-3.01379996881204,0.0085584260837025,0.03423370433481,-3.26676938147447 +"Q9V406",-0.221857657405351,17.0144754808131,-3.01135029911907,0.00860159329611546,0.0343240612868914,-3.27164646317982 +"Q9VE75",-0.295224956502626,15.4468058009616,-3.00873382104592,0.00864793592298087,0.0344266279702436,-3.27685456196282 +"Q9W0J9",-0.190749096474573,18.4250195790406,-3.00660908661078,0.00868574903521181,0.0344948318826983,-3.28108301830881 +"Q9VHN6",0.244104594567455,15.0574572411412,3.00366461400538,0.00873841899654823,0.0345550698144158,-3.28694161425135 +"Q9W403",-0.209063337285579,15.2792258085667,-3.00344556435385,0.00874234979717234,0.0345550698144158,-3.28737739851005 +"Q9V6U9",-0.133401039792634,21.8925138877977,-2.99769048286831,0.00884624716253037,0.0348830739174956,-3.2988238848485 +"Q9VSL4",-0.159640424658683,20.9134564616328,-2.99083007966405,0.00897168188567534,0.0352942579842134,-3.31246155509695 +"Q9VYY3",0.132037680559399,17.544422232198,2.98431733717894,0.00909237254484424,0.0355694189450116,-3.32540077126098 +"M9PFN0",-0.16728105445749,16.681373867901,-2.98403302832081,0.00909767729699739,0.0355694189450116,-3.32596545887992 +"Q9W022",-0.159674497467176,21.1915532082581,-2.98360867746416,0.00910560065318941,0.0355694189450116,-3.3268082690202 +"Q9V3Y7",-0.310077589846131,19.5256177056986,-2.98114801600563,0.00915167888421625,0.0356658887356839,-3.33169482283247 +"Q9VSX2",-0.157133321508361,17.944612204411,-2.97866547562886,0.00919839834147475,0.0357644019430766,-3.33662377508235 +"Q4V5H1",0.251132959132306,14.9747344849668,2.97087534142076,0.00934652469713177,0.0362558213832925,-3.35208378130692 +"Q70PY2",0.438638162913342,17.2412046192329,2.96820680310952,0.00939780118322308,0.0363129292271346,-3.35737724267365 +"Q9VA32",0.227664329655969,17.2328770211429,2.96784432826454,0.00940478742573271,0.0363129292271346,-3.35809617225215 +"P54195",0.353564840158075,18.713261626981,2.96354527878334,0.00948803497842035,0.0365497513718364,-3.36662111860144 +"P54622",0.197605761751557,17.9440856725228,2.95889919913438,0.00957881366365406,0.0367788952024362,-3.3758305693616 +"Q7JZW0",0.182790281503891,19.7796760222945,2.95824732257472,0.00959161835315333,0.0367788952024362,-3.37712241310513 +"Q9VVA6",-0.171018432415664,19.2231337194335,-2.94750739811095,0.00980500808640525,0.0375109024956971,-3.39839516807963 +"Q8IN51",-0.271378941472536,17.1056454749177,-2.93844182446817,0.00998873950921547,0.0381263558383785,-3.41633537889902 +"Q9V3P3",0.12168487433587,19.3930534619775,2.93082075062588,0.0101457965562299,0.038637417022355,-3.43140543942927 +"Q7KN94",-0.137752201918765,22.626052830014,-2.92505598005562,0.0102661994985114,0.0390068810102894,-3.4427977109879 +"Q0KHZ6",-0.187829651254152,23.0740829402211,-2.9215334714997,0.0103404566668887,0.0391997311826599,-3.44975581726589 +"Q9V3E3",0.301623200119598,15.0275365621174,2.91786507638351,0.0104183470190041,0.0394054485888862,-3.45699963617409 +"Q494G8",-0.173033277345628,15.1141777705739,-2.90617906049754,0.0106703137933499,0.0402671570301079,-3.4800586103342 +"A1Z992",-0.295673309044739,14.2063575218507,-2.90398130188689,0.010718360790086,0.0403571688439355,-3.48439235603835 +"Q7KLE5",-0.130398479472408,21.4111840821455,-2.90025331014195,0.0108003448291908,0.0405742684123654,-3.49174144481895 +"O77134",-0.168571352408993,21.6840676022599,-2.89391733585188,0.0109410883162456,0.0409887936083969,-3.50422558332644 +"P29746",0.164278297223575,21.2001867950025,2.89307948393006,0.0109598333029646,0.0409887936083969,-3.50587587044942 +"Q9W5B4",-0.287949748572743,18.6238852344049,-2.88466817850186,0.0111497610778584,0.041605819861002,-3.52243574248901 +"P52029",-0.278511627918455,18.3743594242194,-2.8782375661581,0.011297125982304,0.0420616208448283,-3.53508673572605 +"Q9W425",-0.385222732754738,13.9835143410396,-2.87570879295087,0.0113555944245478,0.0421851481072288,-3.54005937070613 +"Q9V3V6",0.11535411758625,21.5772227062807,2.87333517407928,0.0114107438063411,0.0422958237088376,-3.54472575038734 +"Q9VH76",-0.148225711844916,19.3146351699551,-2.868840014384,0.0115159018535246,0.0424978165097627,-3.55355985926993 +"Q9VXE8",-0.22223106979013,16.2342135211109,-2.86882754437434,0.0115161948815424,0.0424978165097627,-3.55358436031886 +"Q9U9Q2",-0.129990515266867,15.5759078657287,-2.86569613639705,0.0115900090770241,0.0426757950120888,-3.55973595520729 +"Q7K188",-0.172414158844838,21.9843152495797,-2.86045055495954,0.0117146929623613,0.0430398851568693,-3.57003637511532 +"Q6NLJ9",-0.332444422498003,15.1427512647721,-2.85728636210527,0.0117905343464788,0.0432233215163224,-3.57624700545185 +"Q9VU68",-0.121375141473205,19.3199390217204,-2.82977127945983,0.0124704967649347,0.045615764482261,-3.63016626027506 +"Q9W127",-0.185681153933359,18.6144413935188,-2.82652758258656,0.0125531265910193,0.0457237606526439,-3.63651226102643 +"Q7KMP8",0.149150907103785,19.2071178358408,2.82536510522131,0.0125828688672751,0.0457237606526439,-3.63878600032141 +"Q9VYF0",0.189810365637969,16.1787616658515,2.82459901080285,0.0126025070222026,0.0457237606526439,-3.64028428025533 +"Q9V3W2",-0.13558660443471,21.5528556616294,-2.82431986024437,0.0126096702039665,0.0457237606526439,-3.64083019456963 +"Q9VMU0",-0.206476280743384,21.1344903415807,-2.82179109893273,0.0126747403983673,0.0458600151507086,-3.64577475170059 +"A1Z7B8",0.20268910342951,16.9816878971773,2.81768956248088,0.0127809758292097,0.0461443023444196,-3.6537916945651 +"Q9VQQ0",-0.246260761973609,18.2870671730229,-2.81447952729187,0.0128647232427069,0.0462506187330452,-3.66006357375708 +"Q9VBT2",0.599683257196196,12.9708685437615,2.81443534826245,0.0128658795516385,0.0462506187330452,-3.66014987681937 +"Q9VCE0",-0.318031096093399,15.8139199327267,-2.80715173321313,0.0130579022413891,0.0468399590078216,-3.6743725377942 +"Q9V9A7",0.5538704692911,16.0776581630576,2.80371169799246,0.0131495590677082,0.0469659664972214,-3.68108586228154 +"Q9V420",0.173515785576303,17.5231295704785,2.80306247539775,0.0131669269886007,0.0469659664972214,-3.68235254848937 +"Q7JX94",0.526423634869966,12.3127334417105,2.80211868222775,0.0131922149530183,0.0469659664972214,-3.68419380145651 +"Q95NU8",-0.190671174966603,17.3584655420832,-2.80161766128003,0.0132056584455617,0.0469659664972214,-3.68517116762405 +"B7Z0C9",-0.198559179300741,15.955244232334,-2.79613472413258,0.0133536495338525,0.0473912498350341,-3.69586339991131 +"Q9VP55",0.179551605734995,17.1281478888109,2.79359754726348,0.0134226745721905,0.0475350768289038,-3.7008088860707 +"A0A0B4KGY6",0.135621454402802,21.7701011619129,2.78785970400813,0.0135800543879728,0.0479905311846156,-3.71198787477528 +"Q7K012",0.220066064055644,15.5736184512321,2.78552628212585,0.0136445671459149,0.0481165708232263,-3.71653196281558 +"Q7KSQ0",0.13330414386126,20.9228839361195,2.78357368822605,0.0136987794098226,0.0482058313408949,-3.7203334936015 +"Q9VRP4",0.305357059886475,14.3991852990866,2.76506864128459,0.0142230344579522,0.0499453083702406,-3.75631847749653 +"Q9VDC6",0.246941843594064,16.9717470624029,2.76098437145674,0.0143413355445115,0.0502549321181621,-3.76425024163156 +"Q9V419",0.176191501091859,16.4871156672547,2.75920235617391,0.014393249843562,0.050331112660506,-3.76770975987205 +"Q9VWL4",-0.15645109233018,16.1749416582541,-2.75786018299455,0.014432470624152,0.0503626799185889,-3.770314905405 +"Q9VAF5",0.131324033965603,15.9782523145676,2.75067557274545,0.0146441842399795,0.0509480752555638,-3.7842530573655 +"Q9VMI3",0.167486379045908,20.1972907204807,2.74926184111319,0.01468619616022,0.0509480752555638,-3.78699428194042 +"A1Z8H1",-0.134762003533595,23.1161754414329,-2.7487021462158,0.0147028608516372,0.0509480752555638,-3.78807940074464 +"Q9VW00",-0.178997212157883,15.772342825112,-2.74804650986602,0.0147224054395574,0.0509480752555638,-3.7893504345146 +"Q8IP62",0.288690698495902,15.7938572295545,2.74117687505779,0.0149287077152869,0.0515550403086928,-3.80266201533525 +"Q9VCC0",-0.177185558400822,17.4609863366011,-2.73455745643295,0.0151301400115862,0.052142713924227,-3.81547819190186 +"Q9VGU6",0.147217755991313,18.5755911351436,2.72829468182662,0.0153231377080622,0.0526989560763873,-3.8275942435416 +"Q9VVW3",0.19495937169617,16.575180436671,2.72310914674793,0.0154847376528227,0.053135256218247,-3.837619129846 +"Q9U6R9",-0.131865148143969,20.585257613804,-2.72218496514451,0.0155137108982532,0.053135256218247,-3.83940511428178 +"Q9W483",0.272850070741075,15.5722123491555,2.71461692586495,0.01575294910152,0.0538440965191298,-3.85402258648007 +"Q9VSL5",0.167949966347699,17.5765734007593,2.71258558809133,0.0158177673085288,0.0539550835800124,-3.85794368867669 +"Q9VSK4",-0.145253849704918,19.7403126208098,-2.70842375638344,0.0159513731501715,0.0542997763560941,-3.86597413917888 +"Q9W3L4",-0.215403461896175,17.656419723343,-2.70551677894249,0.0160453405309612,0.0545084073434689,-3.87158076432163 +"Q7KLW9",0.136301534720591,17.2329593337218,2.7042291703379,0.0160871327579674,0.0545393037404261,-3.87406348162474 +"Q9VZJ8",0.283289192559593,14.8748339595235,2.70236499269483,0.0161478250693084,0.0546340207213112,-3.87765719105123 +"Q9VVU2",0.129024244584397,20.0901536210952,2.68549930074479,0.0167070595755733,0.0563553232013511,-3.91013105124373 +"Q8SX57",-0.108629402819325,17.9555109364819,-2.68499244854234,0.0167241516694657,0.0563553232013511,-3.91110585906332 +"Q9V3Z9",0.140032609628435,21.6942295396458,2.67919774255529,0.0169207630415594,0.0569028886155667,-3.92224595187791 +"Q8MT58",0.11858101692604,21.6263027890721,2.6744224510772,0.0170844588819375,0.057337781519259,-3.93141984007376 +"P20348",-0.224948240709331,17.4121223699511,-2.67207779766051,0.0171653905680353,0.0574937178061905,-3.9359220567169 +"Q9VJ80",0.197152229719128,16.4790568495054,2.66692165955849,0.0173446690462294,0.0579777714811835,-3.94581793396666 +"Q6IGM9",-0.542998986007371,14.7473315025942,-2.66097257502059,0.0175537590693306,0.0584461335166649,-3.95722713649474 +"Q7K0E6",0.163771735244811,16.738295713821,2.6600415036802,0.0175867019058733,0.0584461335166649,-3.959011921626 +"Q9W265",0.176984946565852,17.0207679098604,2.65995110600257,0.0175899034924255,0.0584461335166649,-3.95918519432887 +"A1Z9I0",-0.124497656454647,19.4006376320396,-2.65760355815141,0.0176732426150096,0.0586062995662742,-3.96368418797003 +"Q709R6",-0.269049533856613,15.0989719318642,-2.65347912318645,0.0178205833792425,0.0588821274328171,-3.97158503836551 +"Q9VSN9",0.172517294064185,16.5201056237236,2.6532996117352,0.0178270229937486,0.0588821274328171,-3.97192881296324 +"Q9W260",0.165546147421573,17.4049783784632,2.64896976020446,0.0179830278212596,0.0592800205649428,-3.98021815946899 +"Q9V9X4",-0.151007715577922,18.7115250762711,-2.64610830721522,0.0180868460505958,0.0595046532788833,-3.9856935989387 +"Q9VXQ5",0.0990696092735703,20.3553401547352,2.64459204222205,0.0181420920743959,0.0595689164962448,-3.98859412086621 +"Q9W4X7",0.124555671808118,19.1246900831119,2.63637701469295,0.018444244138639,0.0604420416959721,-4.00429834925244 +"Q9W229",0.170830007007385,19.1574123724685,2.63499449098879,0.0184955672095005,0.0604913845204839,-4.00693947642697 +"Q7KMQ0",0.118676636807361,20.7685326007244,2.62994290359886,0.0186842654828148,0.0607825182531751,-4.01658550221569 +"P48604",-0.130775916431258,20.0969003304925,-2.6299092300211,0.0186855295194336,0.0607825182531751,-4.0166497790258 +"Q9W2M0",-0.13214026936668,17.7615616961272,-2.62968619162807,0.0186939039951312,0.0607825182531751,-4.01707551153491 +"Q9V3H2",0.190969882001685,18.4285811453219,2.62087073822075,0.019027802728124,0.0617478111877642,-4.03389155498558 +"Q9VSY4",-0.102112980644705,20.4233132001784,-2.60546829994672,0.0196249822877602,0.0635620785553088,-4.06322181739492 +"Q8SZK5",-0.516435491642001,15.3616448454738,-2.59480150817018,0.0200490466241665,0.064809708854864,-4.08349574795834 +"Q9V3U6",0.191078498757189,21.0897634108731,2.59228020379351,0.0201505587089921,0.0650118605930344,-4.08828324345449 +"Q9VKR4",0.198102691835707,19.2044761663378,2.59042254067953,0.020225666440855,0.0651282077670775,-4.09180946333551 +"Q9W1R0",0.509819383207581,14.1144811437098,2.58913300657913,0.0202779616575031,0.0651707900668884,-4.09425668846783 +"Q9VRL0",-0.144127812943996,22.7535442311755,-2.57441670474469,0.0208840087500226,0.0669894742212265,-4.12215132042508 +"Q9VMT5",0.18092890794766,16.4814352366706,2.56982287734065,0.0210767173052431,0.0674778588582448,-4.13084622334917 +"Q9VW57",0.141516851384772,16.5655543775563,2.56604193264323,0.0212366014427274,0.0678594850698646,-4.13799799669335 +"Q9VWD0",-0.150255191183156,18.1799227860545,-2.56406754216853,0.0213205526815618,0.0679974796803921,-4.14173097554693 +"B7Z107",-0.383919990922111,15.9791092927627,-2.56166352679903,0.0214232002423155,0.0680953130249761,-4.14627472088265 +"Q9V400",-0.231533906453924,14.2916592840323,-2.56143745778739,0.0214328773010266,0.0680953130249761,-4.14670191972147 +"P48609",0.143501748624034,16.9875230355849,2.55890274099065,0.0215416644146683,0.0683108293605833,-4.15149071428506 +"O01666",0.112629764478775,22.7350079212325,2.54534416023394,0.022132605473078,0.0700515862032145,-4.17707478229162 +"Q9VWP4",0.201941431564299,15.1885886551156,2.54073085446087,0.0223371816241367,0.0705651874035227,-4.1857674066513 +"Q9VQB4",-0.0999993072561089,21.7795675142566,-2.53830238472957,0.0224455959566234,0.070653074643847,-4.19034071401096 +"Q9VFF0",0.167418438242777,23.6562289009575,2.53821027342367,0.0224497179623734,0.070653074643847,-4.19051414397195 +"Q9VJD4",-0.119956371735526,20.7556801601641,-2.53473688755987,0.0226056814781611,0.0710099372986305,-4.19705209341502 +"O46067",-0.101682874613616,19.7319082821648,-2.53059483082123,0.0227930222688331,0.0714638367376194,-4.20484396427463 +"Q0E8P5",-0.139525866678831,17.727303580684,-2.52170193868494,0.0232002556718356,0.072604177224431,-4.22155548058759 +"Q9VC48",0.141539918047378,18.4413668388676,2.51775019194022,0.0233834372959633,0.0730403996435708,-4.22897391960008 +"A1Z843",0.127594362831765,17.5880030878985,2.51496943558661,0.0235131639001588,0.0733083315616166,-4.23419126182624 +"Q94524",-0.234453079180668,15.7012025639557,-2.51225703259914,0.0236403625012471,0.0735673967389556,-4.23927808285663 +"Q9VJI9",-0.300726826254447,17.6036192033855,-2.5070667472004,0.0238855921460453,0.0741921186212356,-4.2490056218989 +"Q9W461",-0.174720202925524,16.2319006948524,-2.50230676463571,0.024112619899263,0.0747580854869342,-4.25791940584577 +"Q9VDV2",0.326634168332335,14.4313201366146,2.49681657865129,0.0243770269159115,0.0753435633544084,-4.26819189804606 +"Q9VVH3",-0.131220895573829,19.8895513017205,-2.49566439594847,0.0244328653261223,0.0753435633544084,-4.27034651733077 +"Q9VRQ9",0.145482051529857,14.7381579415385,2.49557977566918,0.0244369710879706,0.0753435633544084,-4.27050474372065 +"Q9VVT6",-0.111967304390273,20.4842038084785,-2.49426489361093,0.0245008533971683,0.0754011503071525,-4.27296307611189 +"Q9Y162",-0.128872090291232,20.1870384755023,-2.49241860622687,0.0245908218834252,0.0754777858020553,-4.27641402497906 +"Q9VVH5",-0.133660644360969,22.5407473111675,-2.49189782009703,0.0246162562807662,0.0754777858020553,-4.2773872487406 +"Q9VSD6",-0.185632041823391,16.4793729940385,-2.48804829656672,0.0248050390384676,0.0759170736076403,-4.28457844663431 +"Q59E14",0.217650743058103,14.5774753958477,2.47479209490843,0.0254657221689314,0.0776539942485505,-4.30930630688117 +"Q24185",-0.139348583673378,18.6972885274964,-2.47426542224833,0.025492313795828,0.0776539942485505,-4.31028760150086 +"Q9VVG0",0.111458213771563,18.097966695752,2.47387143259277,0.0255122235300993,0.0776539942485505,-4.31102162386127 +"Q9W1I8",-0.128907539023118,17.9265513254871,-2.46573636421024,0.025926635541135,0.0787716358517543,-4.32616657909241 +"Q94529",-0.11193133797503,19.6401292345299,-2.46469487281934,0.0259801500409041,0.0787907095785963,-4.32810397907284 +"Q9VZF9",-0.153348843922149,19.0984830401382,-2.45604295493328,0.0264287804828496,0.0800058182312035,-4.34418490266487 +"Q9Y171",0.404445211555505,15.0908287608899,2.45386494109259,0.026542870879148,0.0802056315695993,-4.34822925909939 +"Q9VYV4",-0.166314567814437,15.5360331227743,-2.4513856133022,0.0266733137419763,0.0804540457895415,-4.35283124820907 +"Q9VI64",-0.123671664799033,20.9025283628525,-2.44797257566625,0.0268538763191437,0.0808524651630537,-4.35916305821418 +"Q9VZZ5",-0.151049538349415,18.4644267642961,-2.44135247809125,0.0272074146646479,0.081769311100239,-4.37143367686989 +"Q9VIX1",-0.389180001841192,17.2224333671201,-2.44042477284504,0.0272573087786214,0.0817719263358641,-4.37315206538921 +"Q9VJZ6",-0.165974027249835,19.6998721459442,-2.436851570772,0.0274502953335551,0.0822030388085634,-4.37976805517439 +"O97418",-0.109696936404092,21.0072931927883,-2.43274911137364,0.0276734634878178,0.0827228263399285,-4.38735878648137 +"Q9VN73",0.113017639092259,18.4122419063573,2.42821753969262,0.027921972392832,0.0832300662372262,-4.39573700048137 +"Q9U9P7",-0.208342603393046,16.5982610564125,-2.42774940845891,0.0279477645648524,0.0832300662372262,-4.39660211681303 +"Q9VGF7",-0.120656248167055,20.0533189875099,-2.42693215594608,0.0279928460186354,0.0832300662372262,-4.39811224123787 +"Q9VWF0",-0.183956639965878,16.4659960069505,-2.42549511191909,0.0280722835881009,0.0833177384785628,-4.40076707915589 +"Q9W1X8",0.113488143481565,16.1155487633053,2.4244750292161,0.0281288016655468,0.0833371956982808,-4.40265119109356 +"Q9V3G7",0.174317697904247,18.1052452031936,2.42356187056798,0.0281794869453462,0.0833393337319812,-4.40433751669843 +"Q9VU70",-0.354254373266818,14.7443793313778,-2.41814407557656,0.0284819867043861,0.0840848740228603,-4.41433677500127 +"Q9W077",-0.144154483429684,20.8249080724984,-2.41597508398415,0.0286039505326391,0.0842957411456572,-4.41833716645225 +"O46098",-0.14237727855323,18.0065369466164,-2.40695844294559,0.0291162781103857,0.0856542361342562,-4.43494998787093 +"Q9VRP2",0.106100243965948,20.4374755847437,2.40349753767899,0.0293152223225638,0.0860876599190781,-4.44131923152799 +"Q9VJ22",0.574157495402432,13.1211862604615,2.39328322238813,0.0299098920407166,0.0876796132230496,-4.46009311618584 +"Q9VQJ8",-0.163411643173449,15.2284112349576,-2.3907614867414,0.0300584496542717,0.0879193355586932,-4.46472252788367 +"Q9VLT3",0.0979387178828475,19.4196832707607,2.38933226386102,0.0301429554628386,0.0879193355586932,-4.46734532348338 +"Q9VKC7",0.315375991005354,13.77694344959,2.3892167352124,0.030149796126842,0.0879193355586932,-4.46755730150469 +"Q9Y0Y5",0.11608214449857,18.6274916578767,2.38782938796607,0.0302320580722296,0.0880053627652338,-4.47010251736772 +"Q9VT75",0.15504596396409,15.6091150944629,2.38643327830344,0.0303150534393471,0.0880932214927367,-4.47266313411116 +"A0A0B4LFA6",0.126404243118223,19.5302978862524,2.3832082608755,0.030507595886801,0.0884985564159723,-4.47857557421548 +"P08985",-0.132293269906796,20.6484552589139,-2.38092963581399,0.0306443312030429,0.0887408757754785,-4.48275080252289 +"Q9VTJ4",-0.137913510309399,15.6203823626319,-2.37132644190309,0.0312269754922372,0.0902713953571085,-4.50032718379612 +"Q8IPG8",0.294683463684658,15.8970619007562,2.3702049253768,0.031295697180971,0.0903135344253626,-4.50237773947269 +"Q9VVB4",-0.156140183832145,15.9952115483397,-2.36835185891212,0.0314095575529539,0.0904855647639501,-4.50576487112356 +"Q8SX89",-0.194577527777351,15.4980191175485,-2.36190252571084,0.0318088833945622,0.0913768362966167,-4.51754381353251 +"M9PHA0",-0.168297861763328,17.4248557463611,-2.36158763851551,0.0318285023311357,0.0913768362966167,-4.51811853928952 +"Q9VLP3",-0.18517240043516,17.5049675819661,-2.34845923474818,0.032656678299461,0.0935933666726821,-4.54204868564345 +"O77263",-0.136593059532313,15.5215358325483,-2.34345673037085,0.0329775532158676,0.0943508726656382,-4.55115082322143 +"Q9V9S8",0.140737838481442,19.9309079815042,2.3395612558038,0.0332294712237265,0.0947045170666416,-4.55823242552279 +"P00334",-0.138476219188941,25.1946168948965,-2.33806324995295,0.0333268271906917,0.0947045170666416,-4.56095418984359 +"Q9VB46",0.215371841454877,15.2571874458195,2.33790111786519,0.0333373802832911,0.0947045170666416,-4.56124872270528 +"Q9W1X4",0.23000410265646,15.125253145146,2.33729590875557,0.0333768007823946,0.0947045170666416,-4.56234807484713 +"Q9VXE0",0.152408176255403,18.0267429344945,2.33716941416371,0.0333850455846434,0.0947045170666416,-4.56257783327849 +"Q9W4Z2",0.315100856164051,13.8139526377927,2.33540643881947,0.0335001541645073,0.0948243604746062,-4.56577940593499 +"Q9W1G0",-0.105801369833852,21.7390385985716,-2.33478236249121,0.0335409908153583,0.0948243604746062,-4.56691246006867 +"A8JNG6",-0.429330088528209,15.6905811617454,-2.32552691274538,0.0341521417499893,0.0963887858527618,-4.58369962955004 +"Q9VIM0",0.107882194610188,18.067886997628,2.32310638114161,0.0343136897363292,0.0966811393246573,-4.58808469854559 +"Q9V3W0",-0.165481523797403,20.835338402946,-2.32045444320033,0.0344915054186694,0.0968774156903799,-4.59288650241621 +"Q9VVL8",-0.179552948879159,15.8589451776595,-2.31974348670851,0.0345393227399059,0.0968774156903799,-4.59417337290008 +"P07486",-0.115223967276787,22.1633684776058,-2.31947210994018,0.0345575913284029,0.0968774156903799,-4.59466453045327 +"Q9VKC8",0.148224919883972,17.7707900149573,2.31360672822326,0.0349546610283763,0.0977708404145523,-4.60527344721818 +"Q9VEX6",-0.104690785653602,20.7661185753923,-2.3130360757823,0.0349935202203164,0.0977708404145523,-4.60630492273275 +"Q7K5M0",-0.26225747084948,16.6659286359348,-2.31163391235989,0.035089174226453,0.097874151521277,-4.60883886953322 +"Q9VG42",-0.842804394435493,16.2275567294779,-2.29943756466026,0.0359315977563864,0.0998209085958224,-4.63084867731187 +"Q9VHG6",-0.200809727814271,15.7066515973361,-2.29896433666406,0.0359646633672032,0.0998209085958224,-4.63170154770942 +"Q9VE85",0.160097588117024,15.8153758986667,2.29808158113679,0.036026419879106,0.0998209085958224,-4.63329225890625 +"Q9W227",-0.0787024780266385,21.9583561470568,-2.29808056545706,0.0360264909920174,0.0998209085958224,-4.6332940889751 +"Q9Y136",0.215476328550805,15.2665561783888,2.29358431804093,0.0363425880640578,0.100429604469346,-4.64139167636909 +"Q9VWX8",-0.108531865871889,20.542046526305,-2.2929021386335,0.0363907732490121,0.100429604469346,-4.64261958843805 +"Q9VYV3",0.0998793322470313,20.5132311278314,2.29109776770484,0.0365185120352618,0.100429604469346,-4.64586657505098 +"O44386",0.113472958345863,16.8803116333893,2.29097874114619,0.0365269531539085,0.100429604469346,-4.64608072121174 +"Q7JNE1",-0.102170310000488,17.7962738722791,-2.29069300868702,0.0365472241684012,0.100429604469346,-4.64659477362919 +"Q9VHD3",0.117526044703339,15.6948978699245,2.28697211600272,0.0368121626075625,0.100991261890484,-4.65328607655538 +"Q7JR58",-0.136878970525458,22.8150857901754,-2.27873391360485,0.0374051544079299,0.102449585471966,-4.66808204606896 +"Q4V5I9",-0.193474036417893,16.0392601627442,-2.27568344318255,0.0376269871312089,0.102888220548945,-4.67355413498129 +"Q961Q8",0.269958506924787,15.4986685391188,2.27422354260277,0.0377335869398414,0.103010839632824,-4.67617170914272 +"Q9VMH9",0.109996516698725,20.0555466315492,2.27336690219427,0.0377962689325787,0.103013360424087,-4.67770726593307 +"Q9W0D3",0.283170818273842,12.7992936690734,2.27180537627316,0.03791077919745,0.103156900002197,-4.68050562358093 +"Q9VLS9",-0.149854249305697,18.9671003246772,-2.26784512303809,0.0382026490603665,0.103781789304057,-4.68759842237697 +"Q9VBV5",-0.132251922074801,17.1683086893173,-2.26619814936506,0.0383246476774831,0.103943922481369,-4.69054635298795 +"Q95RG8",0.41777922003657,13.3033636444759,2.26329199125749,0.0385408076866295,0.104360498735873,-4.69574553149096 +"Q03427",-0.0855652426376743,21.7316834795181,-2.24622233629047,0.039833595846561,0.107686285043863,-4.72621669513749 +"Q7JZK1",-0.121340050159425,21.5106809347634,-2.24466895970927,0.0399532286659313,0.107781746933261,-4.728983933852 +"Q7K1W5",-0.0935553107683766,19.7894286240062,-2.24408689641055,0.0399981422971754,0.107781746933261,-4.73002059498988 +"Q9XZ19",-0.152028487004172,16.0978403447937,-2.23977608457833,0.0403322443971273,0.108506747829691,-4.73769400670272 +"A1ZBU8",-0.153342091607623,20.780663367947,-2.23837288246542,0.0404415569881635,0.10851862467848,-4.74019016435021 +"Q9VPC1",-0.170079500973657,16.0950906862197,-2.23736113207821,0.040520545806916,0.10851862467848,-4.74198948069074 +"Q9VNC1",0.305112455995978,15.5901754215958,2.2372166630119,0.0405318364356671,0.10851862467848,-4.74224637390674 +"Q9V9T9",0.232909238285666,13.4340972676549,2.23506681513317,0.0407001992308877,0.108794763328719,-4.74606822271178 +"Q9VBP9",0.194473113304166,13.9443137499968,2.23260075839482,0.0408941275649517,0.109138247645343,-4.75044992737264 +"Q9VLB1",0.199997585579563,16.769209359997,2.2310160982304,0.0410191974491889,0.109251842457452,-4.75326427422993 +"Q9W0X2",-0.176087524691253,16.0129307108698,-2.2304029108628,0.0410676889813083,0.109251842457452,-4.7543530207001 +"A1Z7H7",0.122412142977378,17.86839760322,2.22803586572858,0.0412553785632934,0.109576387649002,-4.75855441577095 +"Q9VFJ2",0.243544521267181,13.9127597822094,2.22681569226586,0.0413524410731242,0.109659573465773,-4.7607192858648 +"Q9VJ28",0.132149315035903,18.9764010627754,2.21997169723109,0.0419008180895764,0.110902649211029,-4.77285097285621 +"Q9VZ67",0.152749203346774,15.151715056122,2.2193101757934,0.0419541796475776,0.110902649211029,-4.77402258271171 +"Q9VSU6",-0.15136117773983,21.5926538538892,-2.21728492679956,0.0421179393011791,0.110984542148642,-4.77760836362295 +"Q9V7D2",-0.142359417542327,21.3513529754591,-2.21580572566383,0.0422379214118626,0.110984542148642,-4.7802262922594 +"Q95TN1",0.225835952516313,14.0566093149745,2.2151281285656,0.0422929892448944,0.110984542148642,-4.78142522381521 +"Q8T3L6",-0.116290562869114,17.3944624709409,-2.21510583519883,0.0422948021444414,0.110984542148642,-4.78146466623321 +"Q9TVP3",-0.16403038718153,22.91903759782,-2.21482252812498,0.0423178470063166,0.110984542148642,-4.78196588809836 +"P48159",0.0981008781833701,19.8895885029575,2.21313439230263,0.0424554060849566,0.111170513892791,-4.78495182984183 +"A1Z6V5",-0.127418213454838,20.0504171404888,-2.20626744253539,0.0430192590036627,0.112470413821488,-4.79708595225884 +"Q9W1B9",0.227041800869376,20.5911036472902,2.19923735684498,0.0436037061132084,0.113820002811943,-4.80948828633445 +"A1Z9E3",-0.0981059760861918,21.7944777074245,-2.1980788299299,0.0437007248867054,0.113895014235976,-4.8115301799847 +"Q9VD29",-0.13944085621327,20.7202967867946,-2.18984079114544,0.0443964019847469,0.115523414994502,-4.82603361551011 +"A1ZBA5",0.25386336992276,15.6423531027406,2.18904613988211,0.0444640482173082,0.115523414994502,-4.8274311431862 +"Q9VQT8",-0.345149738193449,18.0100984349345,-2.18620230508389,0.044706918910428,0.115795578934352,-4.83243034685769 +"Q7KUA4",-0.0942624169607562,18.7732442697176,-2.18619381779118,0.0447076455837665,0.115795578934352,-4.83244526169595 +"B7YZT2",-0.211522073662678,18.4225236876308,-2.17351467293862,0.0458055258682775,0.118306492314544,-4.85469277436412 +"Q9VRP3",0.164410505269316,18.0137338921209,2.17210650723621,0.0459289864833179,0.118306492314544,-4.85715944221743 +"Q9W158",0.144788903937229,16.9865816324652,2.17185882278927,0.045950733990616,0.118306492314544,-4.85759322155922 +"Q8IQW5",-0.130746617806597,21.9266353790355,-2.17174426714492,0.0459607955754345,0.118306492314544,-4.85779383850977 +"Q8I725",0.151748131698653,18.9219100194765,2.1707611815335,0.0460472252554365,0.118346335479304,-4.85951525072911 +"Q9VPX6",0.264469312722532,21.4945080024137,2.16674332609127,0.0464020278815854,0.119070741182362,-4.86654637834991 +"Q9VRJ6",-0.148512099877424,15.7394790782555,-2.1659559498287,0.0464718540226124,0.119070741182362,-4.86792346047699 +"Q9XTL2",-0.144182363100388,16.9114159726222,-2.16471191163882,0.0465823760112301,0.119170863783331,-4.87009868448523 +"Q95083",0.108766201756051,19.8974979266263,2.16193516560223,0.0468299432403845,0.119620743223524,-4.87495150008181 +"Q9VCE1",-0.182406808093736,13.6715944952695,-2.15932848681091,0.0470634543139853,0.120033397241174,-4.87950410257149 +"Q24583",-0.10185650659103,21.2364726128207,-2.15622751728815,0.0473426465645275,0.120561121327682,-4.88491620701895 +"O97062",-0.113700255742003,18.4693577748792,-2.15428003284367,0.0475187677558088,0.12082515947666,-4.88831303396708 +"Q9VC53",-0.120505459820368,17.8703755713381,-2.14299938466497,0.0485508973878511,0.123261639030343,-4.9079567621945 +"B7Z0Q1",0.112652783777389,17.7316920724339,2.12955294680069,0.0498081999260359,0.126221325723496,-4.93129980976238 +"Q9VZE4",0.126035317908741,17.672458061198,2.12736063043882,0.0500160145676456,0.126221325723496,-4.93509818382919 +"Q9VAC4",0.0825722472219397,19.3880557439099,2.12730600751213,0.0500212025845859,0.126221325723496,-4.93519279574431 +"O02649",-0.0999350580322975,23.3194044748523,-2.12703105928503,0.0500473243513468,0.126221325723496,-4.93566901136907 +"P35992",0.137762037387187,15.8704760710473,2.12652922015946,0.050095034549733,0.126221325723496,-4.93653812075772 +"Q9VLS4",-0.164150701061871,20.5854762539263,-2.12184152261979,0.0505427250414004,0.127157263000084,-4.94465115051391 +"Q9VHI1",0.155058970576555,14.2265818038507,2.12043288046815,0.0506779731615313,0.127305510893726,-4.94708720398377 +"Q9VZI3",0.154895789764435,14.3865544601752,2.11898614962935,0.0508172250612615,0.127463355492006,-4.94958821409166 +"Q9W2E8",-0.147290156267758,19.3372938511048,-2.11749722003353,0.0509609064167718,0.127631819674437,-4.95216120783233 +"Q9VVC8",-0.101410556935793,16.6287960781737,-2.10639538751078,0.052044071709389,0.130105293150459,-4.97131505908655 +"Q9VNI4",-0.16030180280169,16.4984440059768,-2.10578212707979,0.0521045178803997,0.130105293150459,-4.97237150855875 +"D0UGE6",-0.260342662042586,15.2701437792784,-2.10496348115928,0.0521853084952287,0.130112248983619,-4.97378150870609 +"Q8MKN0",0.18354867522531,16.6201769515557,2.09940247742561,0.0527371676789924,0.131291933863521,-4.98335159121998 +"O76742",0.137841312862349,18.0136812741007,2.09382466921117,0.0532960748694492,0.132485622775322,-4.99293662703594 +"A1ZB68",-0.152026322090254,19.3274439793371,-2.08953652449896,0.0537294467901168,0.133364162568326,-5.00029592469366 +"M9PDU4",-0.140597902966714,22.5434736403093,-2.08296264485152,0.0544001023757707,0.134736476065107,-5.0115618001587 +"Q9VCH5",-0.0792314876007865,18.0175285715134,-2.08245170063557,0.0544525481865927,0.134736476065107,-5.01243659879354 +"Q7K3J0",0.098528893601955,20.3627972375595,2.08174996725917,0.0545246530839011,0.134736476065107,-5.0136378576966 +"O46106",-0.1336215349288,16.9949730728889,-2.07992037242816,0.054713060432112,0.135002048521839,-5.01676878423938 +"Q9U6P7",-0.118189760138591,17.036181548762,-2.07784556365198,0.0549274412605924,0.135026990070452,-5.02031748707211 +"Q9VN21",0.0805084967433807,22.0433449873922,2.07762962477705,0.05494979744213,0.135026990070452,-5.02068671059201 +"P92177",-0.123866027019687,24.1306861913894,-2.07747295276402,0.0549660229363532,0.135026990070452,-5.02095458319029 +"Q7KN90",-0.0912804381013341,17.2669812308476,-2.07607525149366,0.0551109680996037,0.135183962926675,-5.02334382896481 +"Q9VK99",0.172656282679736,19.9898610221385,2.07503542326698,0.0552190280014915,0.13525013025916,-5.02512074197994 +"Q9VN88",-0.142064208044722,17.0264411912295,-2.07377377539747,0.0553504002141527,0.135373119585347,-5.02727604613968 +"A8JNT7",0.139778067352074,16.8613206001789,2.07115334977288,0.0556241737358028,0.135691887921153,-5.03175024781612 +"Q9VF39",-0.242317215950258,15.9648201462142,-2.07096942535952,0.0556434360539979,0.135691887921153,-5.03206416788905 +"Q9VM11",0.177465316465543,17.7965815551599,2.06978502046118,0.0557676246030275,0.135796201223138,-5.03408532357013 +"Q9I7J0",-0.164450542251753,20.9819790374093,-2.0686092617898,0.0558911575094383,0.135898616218284,-5.03609108562491 +"Q9VMS1",-0.110838668753583,22.3898625006807,-2.06336570512533,0.0564451349984839,0.137021015839775,-5.04502845880469 +"Q9VCA5",0.217586258147602,14.2288016641181,2.06205141916579,0.0565847734399903,0.137021015839775,-5.047266598626 +"Q9VJN0",-0.222277534922263,17.5332196901205,-2.06191572394622,0.0565992085812981,0.137021015839775,-5.04749763279643 +"A0A0B7P9G0",0.194688678685679,14.5981682735193,2.05648287557305,0.0571799245546396,0.13822625240165,-5.05674055829882 +"Q9VH26",-0.130034598198854,18.2868908556853,-2.05012552016025,0.0578663737726287,0.139683229309327,-5.06753889843028 +"P83967",-0.38998286180907,17.523347760646,-2.03863366807822,0.0591263615502337,0.142518455297384,-5.0870104218413 +"P36975",-0.155606566613695,22.2356162910213,-2.03712656983796,0.0592934466146064,0.142714962414377,-5.089559399738 +"Q9W3W4",0.12979693458183,15.9394778594065,2.03420598395661,0.0596184650336761,0.143290489446933,-5.09449597209302 +"P19107",-0.0933619950893529,24.0713434774427,-2.03067101674362,0.0600140276483268,0.144033666355984,-5.10046560481677 +"P00408",-0.0810905388520418,21.3517732865233,-2.02961745461088,0.060132383069153,0.144110366320901,-5.10224364694284 +"Q8SXF2",-0.141160919307648,15.5335314436397,-2.02879384666235,0.0602250539119199,0.144125380093375,-5.10363323964135 +"Q8SYQ8",-0.212256519735719,16.0031817776856,-2.02796661357086,0.0603182636275657,0.144141638582779,-5.10502862367667 +"Q9VFS8",-0.136685757290554,17.2816677610288,-2.02628358546776,0.0605083071622673,0.144388921812106,-5.10786656387651 +"Q9W314",-0.202820721300215,16.2040939137133,-2.0197679418121,0.0612491916989933,0.145948073934173,-5.11884055767634 +"Q9VCD9",-0.228350291494202,18.5421027848058,-2.0100733297418,0.0623668415464779,0.148393882027588,-5.13513103879198 +"Q7KMS3",-0.177469378850011,15.5394291596839,-2.0093279157284,0.0624535402777977,0.148393882027588,-5.13638173073181 +"Q9VFP0",-0.144467954982932,16.5097803324512,-2.00737742813026,0.0626809191876085,0.148722294743856,-5.13965308263334 +"Q9VVU1",0.155996288836189,22.2689631442581,2.00546763152974,0.0629042832925732,0.149040262119335,-5.14285440330832 +"Q9GU68",0.118272095338515,22.2183295334764,2.00282384217086,0.063214686659839,0.149563258650513,-5.14728316980972 +"Q8WTC1",0.139216417685445,15.0733494635534,2.00065608010954,0.0634702378041232,0.149860185425633,-5.15091198181152 +"Q9VKV2",0.208591094089298,14.9648530178989,1.9997754615173,0.0635743190750852,0.149860185425633,-5.15238547556507 +"Q9VDK9",0.14564820617564,15.5428172772028,1.99947624558325,0.0636097189936139,0.149860185425633,-5.15288605223951 +"Q9VKX2",-0.0852701032119363,23.1080530454381,-1.99846016295079,0.0637300642732864,0.149931942465221,-5.15458559360622 +"Q7KN75",0.131018883029675,19.3826043172769,1.99314680667084,0.064362753501076,0.151207144844781,-5.16346472452554 +"Q9VKY3",0.112255347213143,18.7649411749134,1.99193550746845,0.0645077846913453,0.151278853043894,-5.16548699010593 +"Q6IDF5",-0.146964324766675,19.6151946917311,-1.99137774513149,0.0645746662873218,0.151278853043894,-5.16641793336668 +"Q9V3F8",-0.0880065371896208,18.5398325579536,-1.98929741273703,0.0648246752774836,0.151651554506091,-5.16988880400386 +"Q6NMY2",0.194733751813477,20.1126578858508,1.98351398137277,0.0655243317051474,0.152864172668589,-5.17952682853651 +"Q9W445",-0.0891611923033828,16.4524107090952,-1.98349771609987,0.0655263090276026,0.152864172668589,-5.17955391120818 +"Q9VEV7",0.592148725425009,12.9890221246499,1.98254102642737,0.0656427062069533,0.152921835130165,-5.18114662829909 +"Q9VPX0",0.207669024734804,14.3887328711407,1.98162868512446,0.0657538821621229,0.152967190301842,-5.18266509251598 +"Q9U616",-0.172435672026552,19.71264469336,-1.98087351194945,0.0658460349613411,0.15296822606618,-5.18392166146729 +"Q9VIB5",-0.187865781393333,14.365377814755,-1.97676851930319,0.0663490113416667,0.15392232394701,-5.19074722232058 +"Q9VF24",0.142369520168238,16.1311661368688,1.97336854786002,0.0667682340985861,0.154679742328391,-5.19639418832485 +"O96824",-0.132065535729101,16.7140316095259,-1.97243345294332,0.0668839526530928,0.154681547445558,-5.19794626790177 +"Q9VB64",-0.117116568625491,18.7733170394194,-1.97145262670921,0.0670055254865296,0.154681547445558,-5.19957378541697 +"Q9VXH4",0.143311826041401,17.1340598825738,1.97111663428935,0.0670472175078768,0.154681547445558,-5.20013119869154 +"A1Z6G9",0.200593759044487,14.2527048756066,1.96782728181088,0.0674566220839911,0.155244085425586,-5.20558528165968 +"Q9W2N5",0.41053944205777,12.9411073395734,1.96766246287534,0.0674771954038068,0.155244085425586,-5.20585842634734 +"P36241",0.121696234377758,19.790127525553,1.96499146215515,0.0678113918124927,0.155705034325559,-5.21028302626464 +"P35220",-0.106737457079525,19.3364119181904,-1.96457013704919,0.0678642445771471,0.155705034325559,-5.21098063938059 +"Q9VEH2",-0.106556227570668,15.912390193916,-1.95505001604476,0.0690684565044057,0.158250254738116,-5.22671993740676 +"Q9V784",-0.259515618979371,14.2129069362637,-1.95364446704012,0.0692478719692908,0.158443690596402,-5.22903982245221 +"A1ZB23",-0.261325412769125,15.8673299143689,-1.95254955238274,0.0693879270312613,0.15854666066869,-5.23084630901416 +"Q9V3J4",-0.10790309555756,16.6367514584749,-1.94731066364855,0.0700615995829522,0.159842650491093,-5.23948150153837 +"Q9VN91",0.169753712799459,19.6171426144856,1.94665152989747,0.0701467746759472,0.159842650491093,-5.24056695880114 +"Q9VXC1",-0.116907040254294,18.3182581743349,-1.94294652113782,0.070627286427412,0.160718026958968,-5.24666423950931 +"Q9VPZ5",-0.124167719509881,18.3574424505945,-1.93902509851829,0.0711390961894762,0.161662142294341,-5.25311006263669 +"Q9V3Z2",0.134847433275509,16.1845119538762,1.93623970871182,0.0715046626560889,0.16195721547635,-5.25768377219903 +"Q8I941",-0.132808316834872,19.0311556260169,-1.93591392455526,0.071547530317417,0.16195721547635,-5.25821846248353 +"Q9VZG0",0.095272785203079,21.6782828443375,1.93522125010112,0.0716387514502253,0.16195721547635,-5.25935512773586 +"P14199",-0.109538832304246,18.5333447986182,-1.93508028040752,0.0716573291496082,0.16195721547635,-5.25958642619014 +"Q9W2M4",-0.0880741442575577,22.6603679330122,-1.93025299225273,0.0722961173016442,0.163179869633481,-5.26750073906563 +"Q9VIH9",-0.252015517577423,19.1487864122102,-1.92725277395698,0.0726957101811899,0.16386006024625,-5.27241355322011 +"A1ZA23",0.0814532838192896,18.4028599097049,1.92624225314379,0.0728307460800838,0.163914096844724,-5.27406722392565 +"Q9VSL2",-0.119346584607069,20.4508778576293,-1.92560347074701,0.0729162229369217,0.163914096844724,-5.2751122905382 +"Q9W4A0",-0.100327389925186,17.1129837673686,-1.91525812224073,0.0743131744552362,0.166829576031405,-5.29200823026226 +"Q7KTW5",-0.0946057974374348,21.5780049411043,-1.91354611276753,0.0745466553221606,0.16712879177065,-5.29479892156112 +"Q9VSY8",-0.140573725620463,18.0330451217921,-1.90445993371537,0.0757968715062015,0.169703599560193,-5.3095844517893 +"Q9VZ24",-0.218172080686884,21.8541420764007,-1.90219672103625,0.0761111909875363,0.170178909607521,-5.31326056367216 +"Q9W236",-0.131669096682108,16.5237999397492,-1.90044866666264,0.0763547637402797,0.170494974456207,-5.31609807122763 +"Q26377",-0.189841015738914,16.7800268786748,-1.89661760859248,0.0768910262508844,0.171050950361367,-5.32231117441503 +"A0AQH0",0.200817041361926,16.8968467059548,1.89658711746936,0.076895307830714,0.171050950361367,-5.32236059309858 +"Q9VSR8",0.17839133774325,15.4698579187757,1.89618594304926,0.0769516608558722,0.171050950361367,-5.32301075351788 +"O96299",0.182453210653538,15.6927389107371,1.89574283664656,0.077013947075172,0.171050950361367,-5.32372877217577 +"Q7K860",-0.389238568806324,20.5263825897755,-1.8917168921761,0.0775819353178381,0.172083335252864,-5.33024775064887 +"Q9VRR3",-0.131369306565382,19.7385326526577,-1.89000572278265,0.0778244844104889,0.172392084988971,-5.33301595556387 +"Q9XYZ5",0.113079380342333,16.0115285692361,1.88729550474797,0.0782100324552789,0.173016358269768,-5.33739717749277 +"Q7JQW6",-0.108408413890816,15.8684640512846,-1.88504038809723,0.0785321409138739,0.173498822575287,-5.34103973418798 +"Q8T4G5",0.0710995704407615,19.6664794384017,1.88376113821103,0.0787153890288807,0.17367363611134,-5.3431048307323 +"Q8SXX1",-0.0790111125895336,19.8913624866939,-1.87964556770435,0.0793075272310953,0.174748950358609,-5.34974270245063 +"Q9VFV9",-0.097980538745233,21.3634138287811,-1.87094356504335,0.0805726760218387,0.17730240581059,-5.36374811792399 +"Q7JWQ7",0.19038047879971,14.3176547496127,1.8693262846368,0.0808097820799123,0.177589876823839,-5.36634657631351 +"Q9VJZ1",0.163929011139798,15.4617465883975,1.86555247725152,0.0813654757250796,0.178575807249254,-5.37240442495 +"Q9VTC3",-0.224234368180984,17.1422931762841,-1.86157501583571,0.0819548450845439,0.179632958739841,-5.37878088299016 +"Q9W552",0.0947792177132651,16.2316900724811,1.85269015492659,0.0832851458866319,0.182309216980186,-5.39299372593517 +"Q24478",-0.207010908318733,17.3793665516136,-1.85084828655357,0.0835633176485693,0.182483378176032,-5.39593474579351 +"Q9VHE4",-0.0762720773176859,17.9252090180179,-1.8507147740941,0.0835835137448971,0.182483378176032,-5.39614786125919 +"Q9VHG4",0.18183597374648,18.369635660303,1.8487047010956,0.0838880980547811,0.182681758505078,-5.3993552097501 +"Q9VME3",0.150149928116788,15.7572292719278,1.84804421199429,0.0839883967086485,0.182681758505078,-5.40040863047944 +"Q9VBC1",0.193693542027887,13.2576699576703,1.84794848029143,0.0840029429097091,0.182681758505078,-5.40056129419735 +"Q9W3B3",-0.129794851826318,15.6684990905946,-1.84480343984485,0.084482072465227,0.183484501135415,-5.40557392055014 +"Q8IRH5",-0.13198593271936,14.4162474663663,-1.84361097450691,0.0846643726162034,0.183641317976368,-5.40747308169459 +"Q9VSN3",-0.122381675426464,20.8754816954261,-1.84210438562799,0.0848951951000512,0.183902838216734,-5.40987141418051 +"Q9VXN1",-0.198567281563454,13.6332806434948,-1.83862976551584,0.0854296714459079,0.184820612155349,-5.41539790486782 +"Q9W3K6",-0.109685043795633,16.2701186024433,-1.83544169763934,0.0859226979359172,0.185646450980712,-5.42046279390695 +"Q9VL16",-0.0874520777609114,20.740929896374,-1.83361219849177,0.0862067652391525,0.186019255393152,-5.4233667971964 +"Q9VMY9",0.192622289950089,14.9968432791892,1.83192414154568,0.0864696101939936,0.186221348956355,-5.42604465021135 +"P07668",-0.318482123066062,14.6769587685755,-1.8315772752398,0.0865237082980666,0.186221348956355,-5.42659470771564 +"Q9VRG8",0.130349557562125,16.1705222861058,1.82998611518089,0.0867722546772806,0.18643707419887,-5.4291171040433 +"Q7K0S5",-0.0984443605332217,18.3023907241761,-1.82950529203452,0.0868474860027111,0.18643707419887,-5.42987905677233 +"Q9W1V3",0.143555684967899,16.3824484106225,1.8275632320786,0.0871519371022331,0.186822068871422,-5.43295530731228 +"O18335",-0.0749692581171324,21.6469906656247,-1.82693367284989,0.0872508343230442,0.186822068871422,-5.43395209020314 +"Q9VYG8",0.46841409861536,15.1481553078573,1.82008665591803,0.0883328751787792,0.188534838441829,-5.444778798402 +"Q9VXM4",0.215364635369404,20.1878359265085,1.81989491472036,0.0883633466999104,0.188534838441829,-5.44508161047207 +"Q8SWZ6",-0.107525513869492,13.9601255983062,-1.81972828965096,0.0883898343294425,0.188534838441829,-5.44534474065682 +"Q9VEC8",-0.107341105879868,16.5005006984112,-1.81660055918909,0.0888883426598875,0.189356009650948,-5.4502811061187 +"A0A0B4K692",0.115441573937668,15.9518370145568,1.81135402474955,0.0897301469713787,0.190772326008923,-5.45854923258341 +"Q9VMX4",-0.157445436846864,17.297219454768,-1.81103265035297,0.0897819399982042,0.190772326008923,-5.45905519314856 +"Q9VDI5",0.159544503649258,16.6701730126208,1.80634295940032,0.0905407507918081,0.192004821399888,-5.4664318921616 +"Q9VBC9",-0.179968913500877,15.5342124343136,-1.8060262292835,0.0905922029027049,0.192004821399888,-5.46692965122572 +"Q9Y114",-0.0686284149149827,18.610428835204,-1.80187187422964,0.0912694662654422,0.193100203565255,-5.47345322925455 +"Q9W3N7",-0.236648555154428,17.2512404308591,-1.80077671399696,0.0914487484194823,0.193100203565255,-5.47517133920628 +"Q9VF51",0.111942100761187,17.6806669277574,1.80073043440267,0.091456331424791,0.193100203565255,-5.47524392869659 +"P53997",-0.316635715622905,17.3724232563893,-1.79417951425804,0.0925353336897033,0.195131398981574,-5.48550683466792 +"A1ZBK7",-0.144074602730267,17.5826493128679,-1.79270933460445,0.0927790257407161,0.195398251181205,-5.48780673430862 +"Q7K486",0.100544658735473,17.6059805588514,1.79087938387422,0.0930831433866065,0.195791529847238,-5.49066773520828 +"Q8SZA8",-0.126259366450881,18.0239534725413,-1.78919062177584,0.093364577075091,0.196136164434826,-5.49330631047459 +"Q9W289",-0.14493466240846,17.4671601635844,-1.78164417482634,0.0946313886000266,0.198547366270244,-5.50507728128552 +"Q76NQ0",0.241213385297469,14.5155723477674,1.78055665397209,0.0948151924493657,0.198683091715505,-5.50677092073875 +"Q9VTC1",-0.117685799300473,15.825699492882,-1.77347004012019,0.0960206321318962,0.200562254735826,-5.51779059986212 +"Q9VAG3",0.153412089188413,16.8183805172991,1.77298016964578,0.0961044558076339,0.200562254735826,-5.51855128324868 +"Q9VRY5",-0.102359979652444,16.8544426206636,-1.77253601816096,0.0961805119711254,0.200562254735826,-5.51924085378256 +"Q8MSV2",0.193091804655445,18.2205161261004,1.77246354099329,0.0961929279308516,0.200562254735826,-5.51935336795784 +"Q9VHI7",0.129731157884263,15.5040863207409,1.76162690917279,0.0980652709870072,0.203922314408427,-5.53614217317428 +"P22812",0.392441292067067,11.5248508221964,1.76103328352167,0.0981687558725343,0.203922314408427,-5.53705989522325 +"Q4QQ70",-0.126130701124044,16.115768978045,-1.76101907430807,0.0981712340947043,0.203922314408427,-5.53708185960951 +"Q7K0W4",0.104022730794476,21.7166996338103,1.75914774990758,0.098498091316354,0.204346786462287,-5.53997350148773 +"Q9VAU6",-0.222752031122097,13.4014753203966,-1.75834421273761,0.0986387351042538,0.204384360439621,-5.54121453429934 +"Q9VRU1",0.180662323573738,17.2560516871822,1.75707567300294,0.0988611275113836,0.204591018224551,-5.54317298284485 +"Q9VEA1",0.102877199875003,18.2271766326935,1.75427603320917,0.0993535005493993,0.20535519072664,-5.54749192601377 +"P20240",0.139166986524749,17.3589207454869,1.75192271978456,0.0997690409083369,0.205958861677111,-5.55111880141644 +"Q9VH66",0.107687740453978,16.7530952809494,1.73944687535904,0.101997528501641,0.210298983363087,-5.57029223460196 +"Q9W136",-0.111703608109277,18.1784313608829,-1.73842687590898,0.102181637492664,0.210418483133042,-5.57185577789805 +"Q9VFM9",-0.0933362244283593,17.131380677997,-1.73452140117347,0.102889262702342,0.211614414534532,-5.57783676333081 +"A1Z7S3",-0.0781522580132901,20.0392719829573,-1.73222187347406,0.103307910822646,0.212213787256372,-5.58135413546207 +"Q9Y0Y2",-0.104040420873783,19.4917901615721,-1.73105323912608,0.103521240494336,0.212390441752217,-5.58314048874569 +"Q9VIH1",0.104178955706256,15.7525026860657,1.73015096222871,0.103686210908648,0.212467567316491,-5.5845191403755 +"Q7JZV0",-0.169778182363176,15.1662541880895,-1.72593032284169,0.104460957510786,0.213307996999122,-5.5909617467927 +"P61851",-0.120115697341742,23.5429922609122,-1.72500847213461,0.104630844833132,0.213307996999122,-5.59236750276266 +"Q9VNZ3",0.347012199932038,15.3175403094516,1.72472409902171,0.104683300445279,0.213307996999122,-5.59280104946611 +"Q9VM10",0.109181826913598,17.0723440637747,1.72459767476296,0.104706628100747,0.213307996999122,-5.59299377667119 +"Q9VY91",-0.317557078285713,16.9471605967168,-1.72443982287019,0.104735761116475,0.213307996999122,-5.5932344003431 +"Q9W503",0.0848233792182924,17.9574976418074,1.72104663176821,0.105363718605587,0.214325222724536,-5.59840327594846 +"O97365",0.0945052111442735,18.0005488474307,1.71978719174595,0.105597630144202,0.214539399610876,-5.6003200477371 +"Q9VI10",0.142027395203442,17.1973075788165,1.71843182665793,0.105849863417437,0.214790233795967,-5.60238175431516 +"Q9V3I0",0.308880542450577,16.3350353897506,1.71693581068313,0.106128881672417,0.215094744385896,-5.60465613923879 +"Q9VKU5",-0.250413630297752,13.6392190760864,-1.71542178334485,0.106411911820324,0.215406637034346,-5.60695654646054 +"Q9VPU6",0.0976554661109876,15.3207114504349,1.71383402588894,0.106709431484984,0.215747068747822,-5.60936750744239 +"Q9W396",-0.0894389246624954,16.6450152180121,-1.71088767947671,0.107263449255919,0.21649646610173,-5.61383744723401 +"Q95RB2",-0.143080239008814,24.2852879689532,-1.71048333929645,0.107339674739886,0.21649646610173,-5.61445047110516 +"Q9V3Y0",-0.11796176209144,16.3299508385752,-1.70810402566066,0.107789174844285,0.217140511642835,-5.61805578420081 +"Q9VCT4",0.322488925477687,13.4078685773468,1.70393653191894,0.108580447298713,0.218470670801271,-5.6243624862677 +"Q9W140",-0.317680470096873,13.8474778106003,-1.7020326914106,0.108943603549448,0.218937265928289,-5.62724010543594 +"Q9VKF0",-0.120496506059204,15.918584706214,-1.69909584684931,0.109505875908497,0.219802407960739,-5.63167480462578 +"P45889",0.101320527239537,19.1661946900088,1.6978987080358,0.109735796312102,0.219999168568012,-5.63348101621177 +"Q7K1C5",-0.0900050655089935,17.4992795979154,-1.69695512297315,0.109917315153247,0.220098537425709,-5.63490406206726 +"Q9VN86",0.148104266701722,15.3927364428041,1.69558795089283,0.110180782864532,0.220146497222017,-5.63696497528608 +"P25007",-0.0776944656771974,23.8403695104364,-1.69546123041808,0.110205230923492,0.220146497222017,-5.63715593996552 +"Q9VKI8",-0.0672904553637181,22.3555731383425,-1.69188216228605,0.110897685563292,0.221264760190874,-5.64254549054849 +"Q9W0B3",-0.0951406358224354,19.1545993789373,-1.68856811424808,0.111542230598255,0.222284875314086,-5.64752902843311 +"Q9W0M4",0.129506613472575,17.8313290861631,1.68659651690936,0.111927224087127,0.222421525896493,-5.65049067253009 +"Q9W141",-0.0796042724813546,21.8629555504522,-1.68646419195141,0.111953104383644,0.222421525896493,-5.65068936034487 +"P02299",0.083177608362714,22.0304863036934,1.68616908561355,0.112010840379529,0.222421525896493,-5.65113242831548 +"Q9VVA7",0.0913796557102771,17.5142414778267,1.68525552605423,0.112189737207054,0.222511868800674,-5.65250369578723 +"Q9W4Y1",-0.148025899151204,17.5529511047564,-1.68268293687156,0.112694843416141,0.223048482767035,-5.65636245907583 +"Q9VGT8",0.139660851383359,15.3189516366013,1.68251573406304,0.112727740391253,0.223048482767035,-5.6566131156908 +"Q9V3E7",-0.10351914627924,18.7248322606082,-1.68056376581743,0.113112404176479,0.223544419628396,-5.65953808161762 +"Q9W0N6",0.186484373428007,14.51720346261,1.67557933352902,0.114099822149133,0.22522899804113,-5.66699652856867 +"Q9VMR0",0.110811610596901,17.3191895471012,1.67211473841415,0.114790547749383,0.226324626059067,-5.67217179575865 +"Q7K519",0.135116613412603,15.6539194463518,1.67142118357006,0.114929253376079,0.226330572173907,-5.673206913112 +"Q9VN25",0.156516822024253,14.9322502252662,1.6689382907789,0.115427001869448,0.226920698859129,-5.67691015712736 +"Q7KW39",0.080697595564498,21.7006819402605,1.66856994469184,0.115501003196283,0.226920698859129,-5.67745922340451 +"Q7KTA1",-0.230744168924041,17.0984621039577,-1.66578257129676,0.11606232163302,0.227755238216326,-5.68161144372621 +"Q9VM50",0.156296703912638,13.5051733527508,1.66501117863518,0.116218079766554,0.227780962730417,-5.68275970462203 +"A1Z8Y3",-0.11419967745419,15.0429133991574,-1.66427489433886,0.116366917308622,0.227780962730417,-5.68385536201788 +"P18053",0.0795011940254575,21.0588932998648,1.66369079305206,0.116485108638517,0.227780962730417,-5.68472431914682 +"Q9VY42",0.127163384749995,15.2387206589785,1.65448972707225,0.118360642103758,0.231177460221392,-5.69838470824018 +"Q9VXI1",-0.143203902118483,19.5685220790564,-1.65032362664276,0.119218385105186,0.232580428485906,-5.7045526291606 +"Q86BM0",-0.0979248348164035,17.4536554402525,-1.64881971543356,0.119529332983476,0.232914634832287,-5.70677651686923 +"Q9W2D9",0.171141312558987,17.6673753410163,1.64675692473739,0.119956970625976,0.233475177367712,-5.70982454428618 +"Q9W0H8",-0.110291548835729,19.4070931207132,-1.6443412845027,0.12045943173276,0.234179874277673,-5.71339057074101 +"Q8IQB7",0.193408138327495,14.4316984834557,1.63460404058304,0.12250321551668,0.237875859699445,-5.72772784618798 +"Q9W3N6",0.0799500431713867,16.1367186291176,1.62997929390851,0.123484311428939,0.239389981304658,-5.73451651219365 +"Q9W5R5",-0.0911002466542801,15.8608511023285,-1.629576830792,0.123570008335318,0.239389981304658,-5.73510664964833 +"Q9VB05",0.058154950149504,20.1980610092194,1.62876675444364,0.123742653558696,0.239446341224948,-5.7362941660425 +"A1Z933",-0.170215409709797,15.7817833543482,-1.62634453774755,0.124260116992791,0.24016903261179,-5.7398424952217 +"P40796",-0.139316244019685,18.3438463845507,-1.62105180332241,0.125397277526491,0.242086410780308,-5.74758294589322 +"Q0E8V7",-0.162514815329409,19.7027123560482,-1.61673786838013,0.126330725921142,0.243606532758919,-5.75387878022049 +"Q95R98",0.105022924194635,16.3232917792376,1.61540652881911,0.126619999830616,0.243640613426429,-5.75581937015086 +"Q9VCR9",-0.0923272350167252,19.3298423332831,-1.61531211930317,0.126640534676687,0.243640613426429,-5.75595694067243 +"Q9W385",-0.131010132727241,16.8461705350534,-1.61226693594,0.127304417579942,0.244635678022285,-5.76039123631806 +"Q95WY3",0.0967870363084611,17.2364245427747,1.61090744155641,0.127601762127324,0.244924901298477,-5.76236897640424 +"Q9VCB9",-0.103604639088113,16.9757986090583,-1.60746512985988,0.128357311505844,0.24608581107311,-5.76737143581432 +"P49963",0.128548529479888,14.9163248915629,1.60680951901749,0.128501643551966,0.24608581107311,-5.76832332734717 +"Q9VF15",-0.112600948804019,20.8542910198382,-1.60456944259702,0.128995841035406,0.246748925283322,-5.77157365069047 +"Q9VGV9",-0.126605112031223,16.0676258470841,-1.59217406151141,0.131759898605806,0.251506685375454,-5.78950088851628 +"Q7KY04",0.159400836841643,14.0766648791185,1.5920639452763,0.131784678068433,0.251506685375454,-5.7896597038917 +"A0A0B4KHJ9",-0.116762726472444,24.5681444522225,-1.58976710523455,0.132302442056105,0.252206255256666,-5.79297053867581 +"Q7K0X9",-0.111207820531652,16.6692793365383,-1.58569224204332,0.133225279947996,0.253413690427815,-5.79883594043633 +"Q9VEP8",0.0818834090470091,17.2263350340453,1.58562879464576,0.133239692149397,0.253413690427815,-5.79892718217284 +"Q9VEY5",-0.0743824937264428,20.834353384993,-1.58296153267176,0.133846767399663,0.254278369046285,-5.80276052426756 +"Q8IPD8",-0.0994099283323635,18.31759193802,-1.58148963861839,0.134182780393329,0.254626709551845,-5.80487392488607 +"Q9W4U2",-0.143654482194023,18.5773010952399,-1.5789923392777,0.134754520133458,0.255421067707509,-5.80845641556426 +"Q24492",-0.107932755453113,15.1695905390193,-1.57514727083527,0.135638870069725,0.256748252968767,-5.81396439536063 +"Q9VLU4",-0.080763291737167,17.1669361613482,-1.57461115421967,0.135762565418736,0.256748252968767,-5.81473160461129 +"Q24297",0.0979353472211919,17.00903053694,1.56899003780202,0.137065272324939,0.258918317370326,-5.82276438068045 +"P54192",-0.103907378133322,24.3269559788418,-1.56446572584123,0.138121479899936,0.260618358001236,-5.82921474145209 +"Q9VTF9",0.0983527018228898,17.4071989376471,1.56280051403684,0.138511959037602,0.26105982788104,-5.83158546626148 +"Q9VKQ2",-0.112703700526168,15.9684084230538,-1.56091299745621,0.138955697310609,0.261464641914641,-5.83427047499049 +"Q9VG92",-0.095342564403019,16.5155170015384,-1.56055391635603,0.13904025022679,0.261464641914641,-5.83478100533395 +"Q9W3K9",0.127685112848315,19.3447212134322,1.55877744328303,0.139459197942257,0.261957142080726,-5.83730548926881 +"A0A126GUP6",-0.155344372211363,17.0003377764123,-1.55544787507152,0.140247292179227,0.263141151130428,-5.84203141370376 +"Q9VF89",0.239581672124778,14.2180039283023,1.55213609636577,0.141034909551913,0.264321605766956,-5.84672481948966 +"Q9VCF8",-0.0868238449338161,16.9538532232398,-1.55130294471072,0.141233639886146,0.264396982413121,-5.84790440726028 +"Q7KJ08",0.125398474065355,14.5672391137075,1.5502712172704,0.141480064139686,0.264448323160625,-5.8493645039612 +"Q8IPW2",-0.0745423225435129,17.1944303993259,-1.54951188818362,0.141661659068689,0.264448323160625,-5.85043865275139 +"P20432",-0.08187544721536,23.5621280333249,-1.54919838562135,0.141736691190407,0.264448323160625,-5.85088202271128 +"Q9VMF0",-0.153917297773688,13.8206371887472,-1.54748082361742,0.142148359855965,0.264920071776257,-5.85330992160588 +"Q9V597",0.196034450272094,20.1235599521727,1.54320911288268,0.143176592072009,0.266538566491196,-5.85933979605996 +"P08646",0.126402062037364,18.9141711463146,1.54187778009556,0.143498333730188,0.266731877373192,-5.86121660108057 +"Q9VXA9",0.127645991751477,14.2713534025836,1.54073126608037,0.143775898988654,0.266731877373192,-5.86283191715776 +"Q9VYT6",-0.136124524606341,16.4189831722274,-1.54017010739347,0.143911917625716,0.266731877373192,-5.86362221051614 +"Q9Y125",-0.103088263022848,22.6286302161622,-1.54013645632147,0.143920077719348,0.266731877373192,-5.86366959546067 +"Q9VCR4",-0.131789363505916,15.0107289887587,-1.53861798466819,0.144288700133555,0.267118259514728,-5.86580700841248 +"Q9W4C2",-0.15816954149166,15.8657578933588,-1.5378496421538,0.144475525104945,0.267166208439358,-5.86688794711566 +"Q9VGJ9",-0.0931328819143147,18.0003510600551,-1.53708877118777,0.144660734209517,0.267166208439358,-5.86795798594476 +"Q6AWN0",-0.0960145588434109,18.3995720216313,-1.53603448676587,0.144917695839615,0.267166208439358,-5.86944002273226 +"Q7JUS9",0.0957693392568153,20.4511940936475,1.53552805834728,0.145041264722158,0.267166208439358,-5.87015165896704 +"Q9VFP1",0.19385639521593,15.7432454901806,1.53522416077665,0.145115458540802,0.267166208439358,-5.87057861529847 +"Q95RS6",0.122832966634885,17.1678953351122,1.53328295427799,0.145590141013943,0.267514885999735,-5.87330442606887 +"Q9W2D6",-0.0901375432158495,19.6086359814014,-1.53313812094506,0.145625609405131,0.267514885999735,-5.87350769755904 +"P91941",-0.0937132317072731,23.0838243211787,-1.53216704474594,0.14586360525354,0.26765730865006,-5.87487022602333 +"Q8SYQ4",-0.139880898799273,20.9657832459979,-1.52920515907414,0.146591540923095,0.26869746182387,-5.8790221779044 +"O76752",-0.0810474152262977,17.8854506510797,-1.52781485364541,0.14693428558563,0.269030064057992,-5.88096906850182 +"Q9VGK3",-0.099678857936933,17.0961591176039,-1.52589620093219,0.147408387455161,0.269602182319307,-5.88365368825123 +"Q9VD68",0.137626523868459,14.8044667863569,1.52443906682995,0.147769306014034,0.269965131027949,-5.88569088714935 +"Q9VGG5",0.100362171286497,17.050343842667,1.52378911077232,0.147930533428984,0.269965131027949,-5.88659912075168 +"Q9VJ68",-0.113388007433443,17.8267890303664,-1.5201569864899,0.148834237341753,0.271052131992688,-5.89166932717548 +"Q9XY35",-0.0830942888759054,19.218393902753,-1.52008910527399,0.148851170806536,0.271052131992688,-5.8917640001896 +"Q9W0M5",0.124700157777838,13.2751233851136,1.51726920995891,0.149556044746579,0.272038694260952,-5.8956941205471 +"P16620",0.108842225849585,17.3350498307145,1.51542149283267,0.150019425777766,0.272584316119078,-5.89826639036423 +"Q8SZM2",0.0800124747641711,21.2541927776403,1.51470437551393,0.150199592644884,0.272614712221618,-5.89926409150885 +"Q9VU75",0.0730237844789698,18.2515855139063,1.51210024256188,0.150855375311475,0.273507354369065,-5.9028842048916 +"Q9VWS1",0.100329945785457,17.2010323143965,1.50857799245201,0.151746178028803,0.274823697016334,-5.90777331372421 +"Q9U915",-0.070561417543022,21.1145993452909,-1.50700490950493,0.152145443044638,0.2752479381762,-5.90995413156055 +"Q9VRJ5",-0.096595111977777,17.2541909236008,-1.5056393845564,0.15249274037997,0.275577346645493,-5.91184584029339 +"Q9VGW7",0.103721894053782,16.728162935078,1.50456595986033,0.152766212701685,0.275655903965446,-5.91333200158147 +"Q7JWD6",-0.0706021896419955,20.4649865401623,-1.50417180372493,0.152866733314171,0.275655903965446,-5.91387751555768 +"Q7KLX3",0.088937665613237,19.2901611581495,1.50151490506011,0.153545759837323,0.276581347093579,-5.91755191374344 +"Q7K2L7",-0.215889601543999,18.2740848877044,-1.50024911291869,0.153870145713972,0.276866669957826,-5.91930076676597 +"Q9W0C3",0.157100891918244,18.5057816508129,1.4974282221008,0.154595119521553,0.277871400174516,-5.92319424999942 +"Q9VNF3",-0.0732972316816607,19.1388305080053,-1.49326878748255,0.155669305360435,0.279357995313495,-5.92892530357978 +"Q9VBU9",0.0755581864255745,20.845503781196,1.49292967687918,0.155757155660402,0.279357995313495,-5.92939202272397 +"Q9VB81",0.108991384488267,20.981184292151,1.48185569184579,0.158648799731886,0.284238665899878,-5.94458977027653 +"O61722",-0.0875844389545577,18.9399706572559,-1.47993214432901,0.159155606692743,0.284840720990875,-5.94722100341676 +"Q9VXB0",0.0715643778769746,20.2666335085361,1.47619824764902,0.160143241360851,0.286301100310717,-5.9523213264531 +"Q9VJH8",0.164494799469161,14.3620679663009,1.4752122777853,0.16040488424103,0.28646182753109,-5.95366650393158 +"Q7K0S6",0.123867089241505,17.3576030452575,1.47306940859858,0.160974754249061,0.287172074959822,-5.95658773878621 +"Q9W1H5",0.0849173251912561,17.2681513831536,1.47010760653849,0.161765177577911,0.28827384209397,-5.96062012873783 +"Q9VLM8",0.0932368450352996,16.8423685038192,1.46505940132637,0.16311982930214,0.290377668384173,-5.96747903399036 +"Q9W4K0",0.079678853843749,19.7199493509626,1.46434890093155,0.163311240447662,0.290408474484755,-5.96844295408343 +"Q9VDL1",-0.111287677540821,14.8424546770046,-1.46368844623325,0.163489336097777,0.290415561886146,-5.96933866279198 +"Q9VV72",0.115357303896175,19.409835659099,1.46131015772438,0.164131990339884,0.291246978603113,-5.97256157784939 +"Q9VY78",-0.108959941179723,18.7754759507881,-1.46016921906279,0.164441033623899,0.291485275329078,-5.97410630885967 +"Q5U126",-0.0926684312132195,21.6177235550467,-1.44698313552521,0.168047798733532,0.29756234425428,-5.99189297905609 +"Q7JXB9",0.142846094291261,16.2168412418384,1.43652707901767,0.170954049828367,0.30238743914498,-6.00591018747351 +"A8DYK6",0.122635829893291,16.6008796660575,1.43119303780023,0.172452517273818,0.304714829250772,-6.01303113122194 +"Q9VW73",0.119068159884977,14.2220351405216,1.42702943153174,0.173629674216591,0.306470155125157,-6.01857551127727 +"Q9VIS4",0.100740646732843,14.1250862440376,1.42004532289829,0.175619079447054,0.30965393712229,-6.02784804180904 +"Q9V773",-0.102082953057147,15.5495302690913,-1.4168116199267,0.17654650531196,0.310733934170394,-6.0321295119862 +"Q94915",-0.166958351382814,16.9808043200414,-1.41618130768311,0.176727745589147,0.310733934170394,-6.03296318371376 +"Q9VLP2",-0.14332764768373,19.3345621578315,-1.41596329082612,0.17679046974083,0.310733934170394,-6.03325147380145 +"Q9VA97",-0.107811698329137,18.5438759025509,-1.41457036462851,0.177191649844414,0.311111233621561,-6.0350925776525 +"Q9V8Y2",0.139564227837663,19.9141164099919,1.40904387835153,0.178790701245029,0.313588737830398,-6.04238351749931 +"Q9VZD8",-0.12821106367948,13.6842350667252,-1.40654541713791,0.179517479707584,0.314532727050684,-6.04567246838982 +"Q9VII1",-0.175911839345453,19.3167901809795,-1.39551665591155,0.182754546809631,0.319868398823153,-6.06013687054438 +"Q9W3T9",-0.0651831943150469,18.6321929634589,-1.39262428157577,0.183611326198689,0.321031123793934,-6.06391571589891 +"Q9V429",-0.0587209381105822,22.333281791088,-1.38451305003991,0.186031499811617,0.324609562102697,-6.07448054061645 +"Q9VAI9",-0.0801306791141911,21.9728393238786,-1.38446068818349,0.186047207056462,0.324609562102697,-6.07454858618778 +"Q7JWU9",-0.190718655072287,15.5097853215988,-1.38112205601852,0.187050940831174,0.32601982163678,-6.07888309997331 +"Q9VD64",-0.158354299263449,15.6498375221605,-1.37894820674752,0.187706853017378,0.32682153531627,-6.08170101785619 +"Q9VIQ8",-0.0812042690080723,21.3193103421005,-1.3757236377773,0.188683234850085,0.328178973649573,-6.08587460564614 +"Q9VE08",0.130480709546147,14.6134434284998,1.37240237125093,0.189693198671201,0.329591932691212,-6.09016539799465 +"Q9VAA9",-0.0841644312139138,17.1020432253642,-1.37139027996899,0.190001835036458,0.329719327048584,-6.09147132708204 +"Q9VSL9",0.195532332045319,14.6593232238978,1.37061576209783,0.190238298295253,0.329719327048584,-6.09247020142785 +"Q9VS11",0.103268031880676,14.9112054089916,1.3702189477883,0.190359539537042,0.329719327048584,-6.09298179144832 +"Q9VU92",0.0992894860219025,17.7310641888796,1.36832803262393,0.190938142938317,0.330079295581675,-6.09541805307049 +"Q9VI04",0.165745962677439,16.3768863428065,1.36824643981669,0.190963141628487,0.330079295581675,-6.0955231184466 +"Q8IR45",-0.10390199306152,14.8153645598709,-1.36736105586897,0.19123457905769,0.330206291789055,-6.09666289467754 +"Q9NK57",-0.141909450372118,15.5090800855934,-1.36499745814085,0.191960730877904,0.330785464242386,-6.09970278940594 +"Q9VR30",0.103213242011892,17.3175288672014,1.36497830477269,0.191966624332512,0.330785464242386,-6.09972740635326 +"Q9W499",0.155741533377256,16.9090063014245,1.36061326685405,0.193313559143099,0.332346301011723,-6.10533054495198 +"Q9VF70",-0.0733143654820019,15.9176633741578,-1.36013974569253,0.193460133199757,0.332346301011723,-6.10593753165375 +"Q9W2L6",0.0835725643502769,20.9057171962929,1.36010730297166,0.193470178826369,0.332346301011723,-6.10597911254924 +"Q9V436",0.0505048739428133,19.1033458462722,1.35831561480044,0.194025615045766,0.332957536930388,-6.10827426171361 +"Q8MLS1",-0.0772872741894375,18.431906650209,-1.35508491529611,0.195030408108324,0.334208829110635,-6.11240679071739 +"Q7KK90",-0.0697987602643444,21.0899032360164,-1.35468360030256,0.195155515319999,0.334208829110635,-6.11291959159059 +"Q9VKM3",-0.0914779904251546,21.7846978250863,-1.35382964797567,0.195421944541746,0.33432184973911,-6.11401037662682 +"Q9VFT4",0.214102467398668,15.6671139859833,1.34947952805988,0.19678371731569,0.336215714865882,-6.11955856519434 +"Q94533",-0.0972635230208638,15.2846823564665,-1.34900697295842,0.196932106369284,0.336215714865882,-6.12016042236416 +"Q9VGQ1",-0.0798595176266303,22.4334621165868,-1.3477622840056,0.197323387760674,0.336539274831088,-6.12174489422607 +"Q95RN0",-0.0618799581035407,16.9202285683096,-1.34693567337191,0.197583587397295,0.336638839406218,-6.1227965227026 +"Q8MLP9",-0.167466344163543,14.9315103406374,-1.34314043984117,0.198781793293935,0.338149890053966,-6.12761836823484 +"Q9I7T7",0.18288121224502,14.5037514306828,1.34220746319635,0.199077239452105,0.338149890053966,-6.12880207492834 +"Q9VY87",0.142117551361078,17.6353165601459,1.34220300430643,0.199078652297958,0.338149890053966,-6.12880773055375 +"Q9VPB8",0.11132790307264,15.6197856618591,1.34106524490817,0.199439426733355,0.338418070998206,-6.13025037293018 +"Q9VLR3",-0.11947079554826,16.758317014552,-1.33880120634609,0.200158898052425,0.339293741820574,-6.13311823194527 +"Q9VRJ4",-0.0500869428341169,20.6966141536974,-1.3373390725104,0.200624644961739,0.339737977458051,-6.13496828644166 +"Q9VWD5",0.132373983631261,14.4636649671853,1.33586087766675,0.201096391870734,0.340191462109923,-6.13683704113875 +"Q7K1H0",-0.0609770185483303,16.3191300467885,-1.33498328331435,0.201376885669085,0.34032081590277,-6.13794573622799 +"Q9VSW4",0.234594459356222,15.8970339430903,1.33209856553191,0.202301101414639,0.341536677287063,-6.14158604279981 +"Q7K2N0",-0.11131502675279,15.4331606145847,-1.3246693673464,0.204696948272124,0.345232062404351,-6.15093246318555 +"Q9VTT2",-0.241047498405345,14.0428796483007,-1.32051924094206,0.206045175175156,0.347154901204203,-6.15613555519415 +"Q9VJC0",-0.0592628097281036,16.5593645732023,-1.3123804338941,0.208709771197576,0.351094806059171,-6.16630165878279 +"Q9VGE4",-0.0706481948155417,15.6671851780755,-1.3120923632564,0.2088045848985,0.351094806059171,-6.16666056866092 +"Q9VMU2",-0.0595672597011063,16.293215342346,-1.30568388316778,0.210922717944434,0.354299187846239,-6.1746287139361 +"Q9V3L7",-0.0943916812166954,17.7097589212558,-1.30393750976587,0.211502884573557,0.35491630932464,-6.17679471453262 +"P53034",-0.105691641100456,15.7345446543062,-1.30128020865347,0.212388105951415,0.356043578620061,-6.18008608253339 +"Q9VNR6",-0.144714449255964,14.6587683978239,-1.30006836891962,0.212792779877057,0.356363812083263,-6.18158530139656 +"A1Z7K8",-0.0654486967531263,17.6115932718319,-1.29932667338642,0.213040758844412,0.356421249500983,-6.18250233370982 +"Q9V3R3",-0.100552081097323,13.6155425410513,-1.29830527911808,0.213382627992064,0.356635494479721,-6.18376450035175 +"Q9VP78",-0.0551258413901419,14.8995902208097,-1.29517077305641,0.214434492459707,0.358022965083908,-6.18763294033032 +"Q9VUH8",0.0931945057228827,15.4726074432561,1.29455365716872,0.214642065398026,0.358022965083908,-6.18839366949783 +"E1JIY8",-0.175352244955015,16.4001448480759,-1.29210308033259,0.215467913629994,0.358645054079633,-6.19141166903348 +"O61604",0.0560343862568473,20.934800507873,1.29203361943094,0.215491358709486,0.358645054079633,-6.19149714655769 +"Q8MKK0",-0.303475615449461,15.8085060860088,-1.29153396714758,0.215660065492729,0.358645054079633,-6.19211190243241 +"Q7PLT4",0.196179552183965,15.7998280248291,1.28795356253797,0.216872046179702,0.360301367557513,-6.19651153307233 +"Q8IPX7",0.175060139346018,15.2352771059203,1.28541109555552,0.217735949372124,0.361240675115273,-6.199629781999 +"Q95RF6",0.120041786167519,17.3072302482315,1.28501561112497,0.217870575039547,0.361240675115273,-6.20011438516276 +"Q9VVZ4",-0.156056071847845,15.8105322536693,-1.28363314423372,0.218341693638148,0.361662308826644,-6.20180743608285 +"Q95SK3",-0.064092834433076,17.2178239519157,-1.27997263872958,0.219593013289138,0.36337415294274,-6.20628322708549 +"Q9VBT1",0.0735805160155341,16.3102333511685,1.27769492712381,0.220374487304997,0.364123736508651,-6.20906304706681 +"Q9VXH7",-0.112119654402154,18.1722640139798,-1.2773803252623,0.220482598245646,0.364123736508651,-6.20944668755406 +"Q9VD09",-0.140317299312017,14.5798638803691,-1.27605063915151,0.220939998647759,0.364443388411202,-6.21106732899702 +"O76877",-0.0999903697956359,17.3522599733974,-1.27495178407387,0.221318559613856,0.364443388411202,-6.21240560302391 +"Q9VTB4",-0.0801205940821106,20.6243990858406,-1.27477873813069,0.221378221365833,0.364443388411202,-6.21261626753517 +"Q9VJ25",0.16333692325156,15.7067397896782,1.27428036764049,0.221550117415443,0.364443388411202,-6.21322285022791 +"Q9V3T8",-0.130065386850907,15.5803203003116,-1.27309269677056,0.221960188375726,0.364758220897252,-6.21466763101705 +"Q9W3V3",0.295228573448403,13.1300471011499,1.2709727015601,0.222693652035785,0.365603357869773,-6.21724386475018 +"Q9VG26",-0.0731192321294358,19.710108461498,-1.2695863966399,0.223174308851169,0.366032199767699,-6.21892663734462 +"Q8SY67",-0.171987168872905,16.0328716455171,-1.26853327470197,0.223539990567119,0.366071602556721,-6.22020398237152 +"P13496",-0.0595345855990885,18.264365092204,-1.26825335501314,0.223637267988788,0.366071602556721,-6.22054335639942 +"Q9VDD1",-0.131320517361937,14.3595668460589,-1.26244292777127,0.225664029601598,0.368798795574648,-6.22757422105136 +"Q9U1L2",-0.256160387041339,17.575044408311,-1.26221009215069,0.225745545732443,0.368798795574648,-6.22785541737793 +"Q9W0C1",-0.0636218068314527,21.3053258646223,-1.26132720469823,0.226054856144672,0.36894275934375,-6.22892130163201 +"Q961B9",0.102391625109721,14.9362291635852,1.25871588715807,0.226971651291361,0.370076944627556,-6.23207033077418 +"Q9VK00",0.209598360205238,17.8048016385076,1.25777187649535,0.227303796413332,0.370256574626404,-6.23320742573145 +"P23128",0.179040504209093,14.6640427237968,1.25700418703097,0.227574184764312,0.370335356279875,-6.23413162514238 +"P09208",0.322556131022372,12.8301734786898,1.25442236963782,0.228485378294147,0.370966953914681,-6.23723644076204 +"Q9VAY0",-0.14420726712096,14.0260012063073,-1.2542671678558,0.228540244161765,0.370966953914681,-6.23742291656918 +"Q9W3J1",-0.236846744877198,15.7126345024723,-1.25401470946217,0.228629513563724,0.370966953914681,-6.23772620670188 +"O44434",-0.0853139089056896,15.8558483403703,-1.24720262436117,0.231048592232182,0.374353437407253,-6.24589114197751 +"Q7KTP7",0.0539711825495921,17.8699040097487,1.24687485225132,0.231165491924143,0.374353437407253,-6.24628309566039 +"Q9VKV9",0.0913003393942802,15.6154099542281,1.24466465157382,0.231954965352934,0.374978190949547,-6.2489238886505 +"Q9VC66",-0.0597304683349975,17.7169785656308,-1.24453624809613,0.232000895119863,0.374978190949547,-6.24907719043705 +"Q9VV46",-0.119332586553458,23.8985341776894,-1.24179800886077,0.232982051234998,0.376199478664062,-6.25234332373935 +"Q9VIL2",-0.132824546720077,15.998396991885,-1.24097685401632,0.233276914690965,0.376311309192002,-6.25332164221211 +"Q9VAD4",0.199945453906874,13.3364121012568,1.23928820879723,0.233884194594101,0.376828914747292,-6.25533182351473 +"Q9VCR2",0.0933551877010999,15.5012250835679,1.23845687826631,0.234183614648835,0.376828914747292,-6.25632062753044 +"P54353",-0.116787935436037,18.884946922046,-1.23820184341072,0.2342755303315,0.376828914747292,-6.25662386337286 +"Q9VVL5",0.0586280229734619,17.2949805027842,1.22831430481239,0.237860751835157,0.38222710410505,-6.26834074890527 +"P38979",0.0496889534067968,22.0948205578159,1.22673113231686,0.238438749536366,0.382555673693075,-6.27020968927197 +"Q9VCW6",-0.0689476233036075,19.8068438440522,-1.22649809357418,0.238523921247481,0.382555673693075,-6.27048462548179 +"Q9V931",-0.266520522915254,17.6305092036248,-1.21730886755608,0.24190128386879,0.387599751674488,-6.28129177932787 +"P54185",0.0982043150731897,17.4363329066498,1.21456943056288,0.242915254386485,0.38885090625399,-6.28450061826412 +"Q9V405",0.0604380455122033,20.2211633143271,1.20492543142411,0.246511025020962,0.394228561586735,-6.29574971842286 +"P05205",-0.0724845029470025,18.0948586690439,-1.20055999977918,0.248152110650659,0.396472912418868,-6.30081737690489 +"Q9VMM6",-0.134835412496216,18.3751424308599,-1.198027286705,0.2491080744784,0.397619395435379,-6.30375053458448 +"Q9VR31",-0.072677538797592,17.2876455497586,-1.1967067900599,0.249607613361788,0.398035849988014,-6.30527778118949 +"Q9VHX2",-0.143722117820786,14.8036108317146,-1.19270566571554,0.251125924519159,0.400074538775509,-6.30989684572933 +"Q9V3N1",-0.0673267472342012,18.3943118978876,-1.18904413752383,0.252521571887392,0.401914104874208,-6.31411263030595 +"Q7K9H6",0.199340885605263,11.8963154596032,1.18769913577551,0.253035730694135,0.40206682615074,-6.31565852853814 +"Q6WV19",0.191216976347421,13.5271211872505,1.1875321503423,0.253099620778343,0.40206682615074,-6.31585035445643 +"Q9W329",-0.0684594204034514,16.4551060312353,-1.1855517745898,0.253858272596531,0.402888295614666,-6.31812362006979 +"Q7K2W6",-0.0850653720104155,16.8465569892415,-1.18363082468645,0.254595821731648,0.403674743962347,-6.32032565973388 +"Q9W2V2",-0.1269856072972,14.2953510493031,-1.18151511297656,0.255410045954979,0.404329308537762,-6.32274752565378 +"Q7K1M4",0.0885868907093492,17.1820306989261,1.18129865825211,0.25549345995132,0.404329308537762,-6.32299509932009 +"A1ZB69",-0.074417145581311,20.4182601566043,-1.17741967640074,0.256991815150395,0.406315021488966,-6.32742534965513 +"O18373",0.0579470539832805,19.5967439878403,1.17588039358301,0.25758825846661,0.406872362805213,-6.32918002793607 +"Q9VGZ3",0.0904976868550094,16.8586771197275,1.17243908348654,0.25892552149862,0.408597700907945,-6.33309596921879 +"Q9VKA1",0.316195746651989,14.5457442197692,1.17155859725991,0.259268519506699,0.408752259486932,-6.33409635598486 +"A0A0B4K7J2",-0.124764285142268,15.7385480246868,-1.16554730662588,0.261619503395887,0.412069246141964,-6.34090947044459 +"Q9VHD2",0.0882810986520113,16.6051082668084,1.15794761713061,0.264614855182689,0.416393941928986,-6.34948090164821 +"Q9VXN3",-0.0753744602176845,16.961678007382,-1.15675864710571,0.265085821220424,0.416741894246623,-6.35081765299271 +"Q9VJC7",-0.0886991422051722,18.6015291215002,-1.15479929144972,0.265863332401819,0.417570657670654,-6.35301803246491 +"Q8SY69",-0.108466567660326,18.9439972479643,-1.15367834951869,0.266308920446537,0.417877026627304,-6.35427545679396 +"Q7YTY6",-0.0861826579046951,18.4428378960509,-1.14983668872536,0.267840316250201,0.419644930182767,-6.35857709145016 +"Q9W147",-0.0864905259801034,13.765443503422,-1.14959030304302,0.267938759379285,0.419644930182767,-6.35885256656699 +"Q9VZW1",-0.144087868667224,14.8265246599849,-1.1480663627114,0.268548255874289,0.420204963225435,-6.360555328357 +"O62530",-0.0889997162887664,15.6804111760589,-1.13874666032484,0.272298450551405,0.425673679025064,-6.37092727134841 +"Q8SXG7",0.122067546928422,13.9753012480127,1.13702346485876,0.272996154717124,0.426364780962699,-6.37283722415699 +"Q9VNA3",-0.0611986332438654,18.6210485266202,-1.13444357275818,0.274043239609381,0.427599741504628,-6.37569216149954 +"P51140",-0.0969823907925313,13.6184514663991,-1.12930532336773,0.276137656999436,0.430465057827158,-6.38136189480054 +"Q9VCI0",0.188371555099236,14.81265650192,1.12641543268221,0.277320878908143,0.431905906646856,-6.38454114959605 +"E1JGR3",0.0878159195830133,12.1748890635219,1.12070170644179,0.279671451242269,0.434980238052658,-6.39080669973667 +"P43332",0.0934085686556791,17.1823214245895,1.12035048731651,0.279816424119006,0.434980238052658,-6.39119095877601 +"O18404",-0.063911471378411,23.0004786055228,-1.11602523748792,0.281606367385204,0.437355140408306,-6.3959147217902 +"Q9VEN9",0.10597638672059,14.881487342776,1.11215128915336,0.283216789032478,0.439447073587139,-6.40013243870692 +"Q9VHC7",-0.0570176669823113,19.9396703558763,-1.11138315317743,0.283536921315843,0.439534930069541,-6.40096725833905 +"Q9VYS2",-0.112498191350722,14.9817778179093,-1.11006183211894,0.284088232462115,0.439980660860546,-6.40240213972393 +"Q24090",0.0838260941751887,15.8431289071242,1.10924256325049,0.284430466857833,0.440102058180766,-6.40329109163692 +"Q9VNX9",0.16224219587618,13.5705128688894,1.10678181874722,0.285460242399668,0.441286083709589,-6.40595777947555 +"Q59E04",0.0961725309069337,16.3912301896664,1.10605635035493,0.285764365990052,0.441347187473524,-6.40674300181754 +"Q9V3Y2",-0.0639914897144749,17.877423384072,-1.10522477423527,0.286113267247538,0.441477270831539,-6.40764253261967 +"Q9W4W8",0.0809528723204522,17.4121480285552,1.10171944500864,0.287587465149893,0.44334185939928,-6.41142797784222 +"Q95TK5",-0.067854192753078,17.1605456023311,-1.10025931041032,0.288203198710865,0.443880826823382,-6.41300177146779 +"Q6IGW6",0.103057417032668,15.6891045026585,1.09877860408986,0.288828605417731,0.444035675397917,-6.4145959211791 +"Q961D9",-0.280323412952114,12.4366145173645,-1.09876074251096,0.288836155759436,0.444035675397917,-6.4146151400383 +"Q9W380",0.100519368196291,18.402032807262,1.09578923265213,0.290094292614739,0.445559189761864,-6.41780874101411 +"Q9VK59",0.0576659872057377,18.7636214747353,1.09214770526876,0.291641642583771,0.447211764779899,-6.42171236840331 +"Q9VIH3",-0.115160101503745,13.778444222652,-1.09199544148995,0.291706474868424,0.447211764779899,-6.42187534966712 +"Q9VH25",0.0657138400333004,16.2151233629775,1.0899744282244,0.292568010124242,0.447758012303059,-6.42403677762446 +"Q05856",0.121883923251605,13.6879009214686,1.08990026611585,0.292599660317946,0.447758012303059,-6.42411602722097 +"Q5U117",0.0974744495325233,14.6035483002809,1.08652178683312,0.294044178252243,0.449556085540551,-6.42772137778971 +"Q4QPU3",0.172297745835234,14.4782059240017,1.08528147273667,0.294575810813426,0.449956458275453,-6.42904257772381 +"Q9NHD5",0.0928211633035527,16.5803829317287,1.08460486834373,0.294866120571454,0.449987821695504,-6.42976276160962 +"O97102",-0.0769601825464861,21.0496595040098,-1.08313949927523,0.295495587409498,0.450431187171544,-6.43132119527156 +"M9PF16",-0.0427070814974364,21.1898707963483,-1.08267172772415,0.295696732585636,0.450431187171544,-6.43181829467269 +"P17704",0.0462072091923318,20.3194271067957,1.07587202476716,0.298632046969597,0.454487458344241,-6.43902352640963 +"Q9W1F2",0.147897660172795,13.6532569826164,1.07442051903191,0.29926140023706,0.455030096258356,-6.44055655350541 +"Q9VM33",-0.24758105693741,13.8090128542247,-1.07200054182953,0.300312833322516,0.456212938052784,-6.4431084920475 +"Q9VY24",0.101794254760335,17.7460866149326,1.07128528005062,0.300624118771931,0.456270273076961,-6.44386181036451 +"Q9VRD4",-0.0542614419978804,20.3159399639281,-1.07039373870659,0.301012453037222,0.45644433787826,-6.44480018237343 +"Q9VKW5",0.0970734461939031,17.0256213774463,1.06110919306089,0.305078436949757,0.462189675596908,-6.45453245700776 +"Q7K5K3",0.0557585897180601,22.7622661736889,1.0582312711832,0.306346871989926,0.463690183737928,-6.45753432747272 +"Q9NHA8",0.111600237597031,16.2996640799772,1.0568704440371,0.306947989523326,0.464178827311793,-6.45895131477547 +"A8E6W0",-0.0737764443616609,16.4198914790276,-1.05422666495857,0.308118280563888,0.465526532591092,-6.46169970104089 +"Q7K8X7",0.0683622536342199,19.4890001635212,1.05216683391301,0.309032330447653,0.466485001978901,-6.4638369132381 +"Q9VLT8",-0.103455358649578,13.9508555856026,-1.05003011211315,0.309982582521375,0.46744081380011,-6.46605008736779 +"Q9VSJ8",-0.108928131695949,15.7512155574891,-1.04948351604928,0.310226007719857,0.46744081380011,-6.46661561594767 +"Q9U1K7",-0.110481939185394,17.4736723774197,-1.04695229445473,0.311355091113414,0.468121929281071,-6.46923119067651 +"Q9VJJ0",0.0536692538190131,19.7366045342784,1.04684346294512,0.311403703558258,0.468121929281071,-6.46934352646753 +"Q9VP77",-0.0748406852767101,15.3543487810788,-1.04658317815766,0.311519988910065,0.468121929281071,-6.46961215121211 +"Q9V998",0.135861784308876,15.8395818518793,1.04587844823864,0.311834993552748,0.468156957400704,-6.47033917165563 +"Q9W330",-0.0556679746127422,20.670591381323,-1.04527560777268,0.312104638267136,0.468156957400704,-6.4709607434682 +"Q7KNM2",-0.0555585194278088,19.6235813320455,-1.04357037373295,0.312868288217351,0.468743574780042,-6.47271728174238 +"Q5LJT3",-0.0845058937776955,17.074057694874,-1.0431477512222,0.313057759175639,0.468743574780042,-6.47315223530444 +"O18333",0.0857324129174941,17.4803216210318,1.0418526134815,0.313638915451053,0.468824020189579,-6.47448421118502 +"Q27272",0.100298842111441,15.6913536079347,1.04177531636632,0.313673625018927,0.468824020189579,-6.47456366155006 +"Q9VRD9",0.102361585692808,16.1292785817707,1.03931123878057,0.314781554084252,0.469970817595725,-6.47709370242564 +"Q9VPU4",-0.16686639267739,12.954192863352,-1.03881633239054,0.315004420906487,0.469970817595725,-6.47760123092948 +"Q9XZ63",0.115280893893722,19.0151081474752,1.03608520132326,0.316236358747971,0.471387172825394,-6.48039824453959 +"Q9NHE5",-0.130071169068014,15.6931152590081,-1.03307234469429,0.317599406770448,0.472996259368845,-6.48347636398619 +"Q9VVI2",0.222360055555139,13.7600533686144,1.03121585776856,0.318441407919374,0.473705785006587,-6.48536918746559 +"Q8IMX8",-0.0544366030249215,17.1640523420114,-1.03077009817678,0.318643819410906,0.473705785006587,-6.48582323127911 +"Q868Z9",-0.0750817829724646,20.3819580333302,-1.02913357121641,0.319387731853323,0.474068595071419,-6.48748870874639 +"P11046",0.0677294622251523,21.0207360267321,1.02877321208062,0.31955170734712,0.474068595071419,-6.48785513356041 +"Q9VNF5",0.0645375784005342,15.9532783275783,1.02835845820299,0.319740509265795,0.474068595071419,-6.48827673054748 +"Q23970",-0.067459302779298,21.465804897103,-1.02631881046966,0.320670154177863,0.474160156173332,-6.4903478786391 +"Q8T0N5",0.0615548155716716,18.5929777548029,1.02630827107434,0.320674962939257,0.474160156173332,-6.49035857151248 +"Q9V5C6",0.0540817522803358,20.6291976808424,1.02570429404228,0.320950623380377,0.474160156173332,-6.49097118417907 +"Q9VJQ5",0.107400176647481,14.3260901627867,1.02519942658168,0.321181179999526,0.474160156173332,-6.49148302933548 +"Q9VGQ8",0.0682192581041718,16.254275811628,1.02510654931025,0.321223606999919,0.474160156173332,-6.49157716635825 +"Q9VNE2",0.057768898067561,19.0371859080969,1.02323640646956,0.322078758604563,0.475002094918136,-6.4934710947387 +"P80455",-0.0866968459960695,20.5361096280356,-1.02209338443337,0.322602227181875,0.475353811783893,-6.49462717114084 +"Q7JV69",-0.0753447539136491,16.1491020418716,-1.01931436911682,0.323877475531621,0.476811676246024,-6.49743322785467 +"Q9VRG6",-0.0562990559072247,16.3482489158855,-1.01651823414982,0.325164222118505,0.478283882269547,-6.50024984621207 +"Q961T9",0.10915287151672,17.9125659916084,1.01160586837054,0.327433684180528,0.480806003048293,-6.50518184077367 +"Q7K127",0.111248532430071,18.5609370019037,1.01155896521245,0.327455407351835,0.480806003048293,-6.50522883076672 +"Q9VUV6",-0.0711599754230043,14.8203500211342,-1.00648449704734,0.329811725153796,0.483839892310054,-6.5103014413721 +"Q9VD58",-0.0350506393054033,22.7209055176255,-1.00336874409988,0.331264491118644,0.484966700447382,-6.51340499291773 +"A1Z7G2",0.0598590413794149,19.5576824389368,1.00328338738021,0.331304353933475,0.484966700447382,-6.51348989681798 +"Q9V4S8",-0.0992289303257721,17.0968661720783,-1.00296717059216,0.331452061456844,0.484966700447382,-6.51380438094383 +"Q27268",0.0955039890212959,19.0147698068027,1.00149252930296,0.332141497336005,0.485549533353599,-6.51526979545943 +"Q9VU95",0.216454859643957,16.5867113017961,1.0008251646004,0.33245384376271,0.485580570399475,-6.51593236358309 +"Q9VX98",-0.0666187643238771,18.231379640557,-0.99609695808056,0.334672761653502,0.487990738766435,-6.52061549612167 +"Q9VHM3",-0.0953319020685548,14.7258488950276,-0.996062243335582,0.334689091815829,0.487990738766435,-6.52064980799962 +"Q9VIU3",0.264190781253289,12.4926248635221,0.995198059343696,0.33509579467369,0.488141632532307,-6.52150362488374 +"Q9W0Q2",-0.0498332750842856,15.5159657278839,-0.994051951446007,0.335635716860969,0.488141632532307,-6.52263498026348 +"Q9V564",0.0841525410626396,14.0614762901233,0.993978086684018,0.335670535080669,0.488141632532307,-6.52270785499773 +"Q8T0Q4",-0.0575913255155776,19.9851303663364,-0.991842861208745,0.336678139242112,0.489180432278608,-6.52481240599295 +"A1Z9M5",0.115916619802254,15.0694024980801,0.991077302471455,0.33703992402104,0.489279889701562,-6.5255659986631 +"Q9Y128",0.105815999195846,14.2987237587115,0.989422932421465,0.33782267873843,0.489989763596262,-6.52719276377315 +"Q8I0J3",0.10484399413868,15.0253026986252,0.988466322784043,0.338275878386823,0.490124146999672,-6.52813232139012 +"Q9W1E8",-0.0697606795703312,15.4118294219667,-0.987404589175642,0.338779383864472,0.490124146999672,-6.52917419349842 +"Q95R34",0.0815673991873727,15.2945562890114,0.987353221405462,0.338803757394317,0.490124146999672,-6.52922457537873 +"Q9VQ88",0.071007838745242,16.4219806876897,0.986186873601743,0.339357511820977,0.490124146999672,-6.5303679173057 +"P46415",0.0557941166056821,18.0502238290307,0.986130008711907,0.339384526249773,0.490124146999672,-6.53042363016151 +"Q9VG97",0.0459333736988121,20.0762224672286,0.984421685450364,0.340196795728794,0.490872193145007,-6.53209602626178 +"Q9VAS1",0.107928570379675,13.0449283504739,0.980520678112936,0.342056772957985,0.493129384005115,-6.53590542193459 +"Q9VIW6",0.109078244758436,15.0183350224211,0.975110668802113,0.344648059192532,0.496436064536393,-6.54116631879209 +"Q9VVE2",-0.0640591154815731,18.3704778145856,-0.974419873686236,0.344979925894962,0.496485346326831,-6.54183622573632 +"Q9VUW2",-0.198072271583881,14.4107453290171,-0.972838833433229,0.345740321239736,0.497150737782655,-6.54336788194269 +"A8WH76",-0.0581627685716839,19.0424009076152,-0.970929778200483,0.346660039205583,0.497876771730929,-6.5452143811499 +"Q8IMT6",0.0982603819842858,16.1119769029607,0.970552065041815,0.346842211481618,0.497876771730929,-6.54557933783202 +"Q9VKE2",-0.0911208273137909,24.0769382042761,-0.969650934359058,0.347277100455283,0.49807240202873,-6.54644952809931 +"Q7K3D4",0.0639879074450747,18.5501612876025,0.968195501054239,0.347980303724442,0.498652187811314,-6.54785348067425 +"Q9VL93",0.077751055937739,15.3595508872012,0.962674006769494,0.350657106287717,0.501801465480225,-6.55316271451913 +"Q8IQC6",-0.158767813456981,15.9142755302804,-0.962421874086235,0.350779681504762,0.501801465480225,-6.55340451320331 +"Q8IH18",0.0641511332532243,15.6534555776582,0.95622607369084,0.353801182685705,0.505690122296278,-6.55932874258499 +"Q9VG33",-0.0705027330268138,19.9400348092567,-0.952935326784472,0.355413317425006,0.507327505327212,-6.56246145987525 +"Q7KSM5",0.0456942199930452,18.9305354829409,0.952646476296251,0.355555068181961,0.507327505327212,-6.5627359817272 +"Q9W259",0.0898451914397462,16.9085072613927,0.950074118712475,0.356819159825945,0.508559549943524,-6.56517747774033 +"A1Z877",0.0464642434083054,19.9773855034115,0.949649104520015,0.357028317136611,0.508559549943524,-6.56558030638149 +"Q7K1Q7",-0.0490253446364761,16.5300032574157,-0.943801141804386,0.359914833122243,0.512079400900846,-6.5711067455794 +"Q9VQ62",-0.130743367820308,19.6659141763928,-0.943400064419929,0.360113391640703,0.512079400900846,-6.57148465955446 +"Q9V3W7",-0.0836335591151638,17.9121173774179,-0.941751598573602,0.360930280343595,0.512560779054664,-6.57303642115806 +"Q9VES8",-0.0533724590282496,17.9888676630929,-0.941476968517758,0.361066496036708,0.512560779054664,-6.57329470592737 +"Q9VL18",0.0455312214428716,20.8673137470251,0.940570272193462,0.36151646659661,0.512763151601314,-6.57414696199895 +"Q7K3W4",-0.0631549420604038,19.3137126208907,-0.93918711769388,0.362203636132351,0.513301329710078,-6.57544566064175 +"Q9VV76",-0.0826672747297152,16.32932786377,-0.937612703976662,0.362986920757764,0.513974689154457,-6.57692186929271 +"Q7K159",-0.100157354426884,14.6100344569864,-0.934082554143056,0.36474743859666,0.51602945511385,-6.58022380344874 +"Q5U1B0",-0.106635246182897,14.7139905378266,-0.930371556156152,0.366604465739647,0.518217160045535,-6.58368292138738 +"B7YZN4",-0.157165942277471,15.4188163258513,-0.928965494544048,0.367309767282708,0.518774506204535,-6.58499033896404 +"Q9VYT3",-0.0730689323301537,14.3954874762649,-0.927068018954704,0.368263043235914,0.519680842739006,-6.58675189653507 +"Q9VEP9",-0.0569644145325547,17.5441425189941,-0.926172926564349,0.368713317886957,0.519876427925143,-6.58758175619782 +"O76521",0.0635331781897026,16.0865045052312,0.923615266356458,0.370002020477138,0.521252846415427,-6.58994907203706 +"Q0E9F9",0.0810001665710978,18.4525026894022,0.921859317093979,0.37088855364061,0.522060850187795,-6.59157095403885 +"P92204",-0.0988241197844779,15.8649455045004,-0.91575397677961,0.373982262732597,0.52597168148227,-6.59718865960792 +"Q9VAP3",0.116003702003084,16.4805502870779,0.913923376514973,0.374913281976225,0.526747964194058,-6.59886653724232 +"Q9VQL1",-0.0381236531256306,20.1046531700881,-0.913427368658065,0.375165816224545,0.526747964194058,-6.59932064651597 +"Q9VL89",0.0351700427203312,16.8787305333266,0.912335412191292,0.375722175336061,0.527085440252775,-6.60031958527485 +"Q9XZ61",0.0449959969406031,18.5482073575156,0.910238620693304,0.376792075483826,0.528142169669766,-6.60223476004005 +"Q9VMX3",-0.0963845505232985,12.5208429207601,-0.908160801988432,0.377854332359126,0.529186420130161,-6.60412870746132 +"P40797",0.0406255592150764,19.1622356493541,0.902675808924144,0.3806682040116,0.532680003600124,-6.60910965786074 +"Q9W2Y3",-0.0881022359276393,16.4173162369327,-0.900629177233181,0.381721771707388,0.532716505504302,-6.61096127204258 +"Q9VU84",0.0502067206943622,18.4178087498311,0.89993619246502,0.382078952983425,0.532716505504302,-6.61158736842992 +"Q9VXK7",-0.0396597133462215,18.0609063101866,-0.89974379804289,0.382178157753153,0.532716505504302,-6.61176111570725 +"Q9VSC5",-0.0380299637601524,19.4279197575058,-0.899696902562601,0.382202341209436,0.532716505504302,-6.61180346094867 +"A1ZBJ2",0.0728621690103139,19.3867882687751,0.899524683732009,0.38229116132413,0.532716505504302,-6.61195895247401 +"Q9VN95",0.0585443221552424,17.9434075651836,0.896907718668827,0.383642547666376,0.534153396917792,-6.61431844301358 +"Q9VN93",0.0445574920138299,20.3013510568696,0.8921622659667,0.386101271467947,0.536753226059766,-6.61858122840513 +"Q9VWD9",-0.0385137043536403,19.4376265104402,-0.892061875624658,0.386153400042997,0.536753226059766,-6.61867118800862 +"Q9VD14",0.0566251322016917,17.6244761744166,0.889503670512077,0.387483365815869,0.538153417302973,-6.62096051424742 +"P54352",0.0740297348745163,16.1096878591445,0.88836250106286,0.388077629664339,0.538530354642361,-6.6219798310487 +"Q9W2J4",-0.0599187358123707,15.2399241471969,-0.886686809648584,0.388951352403337,0.53929414447944,-6.62347445665693 +"O15971",-0.0692537856900106,17.1779462284511,-0.881809670163327,0.391501833572691,0.542323283847626,-6.62781011412676 +"Q7JVK8",-0.0465488452904488,19.1486352379856,-0.881267009138354,0.391786305177691,0.542323283847626,-6.62829119230801 +"Q9VJQ6",0.0865109712560006,14.4606874918056,0.879192986882927,0.392874812072429,0.543379093314106,-6.63012738415714 +"P41375",-0.0760135663997659,16.731265736926,-0.877334291517573,0.393852021015036,0.543982162467518,-6.63176962045301 +"Q9VEC2",-0.0435315202354847,16.6923656271245,-0.877123207196921,0.393963100875757,0.543982162467518,-6.63195592386101 +"Q9V3G3",-0.122748290482388,14.9146128323417,-0.872866657287611,0.396207495716506,0.546628703767686,-6.63570411398108 +"Q9W0Y1",0.0568625687067019,17.6826325625003,0.870279656353168,0.397575712909709,0.548063048870574,-6.63797409118129 +"Q9VYU9",-0.0695426849493899,17.847412932123,-0.869373227837377,0.398055846918759,0.548271802362089,-6.63876799898351 +"Q9VSU7",-0.0541699755117353,14.7304313031371,-0.866754565486061,0.399445107381612,0.549731385406377,-6.641057382048 +"P53501",-0.0332314917507084,24.6240794348649,-0.865733873237373,0.399987476393158,0.550023998865448,-6.64194803480094 +"Q8SX78",-0.0560933389707365,15.981165524839,-0.859491183232231,0.403315271313429,0.553858058950641,-6.64737468182023 +"Q7K180",-0.0633604502894087,16.2955493980888,-0.859258287944272,0.403439773156492,0.553858058950641,-6.64757644388336 +"Q960X8",-0.0504183963853926,18.4074759733976,-0.858378858425304,0.403910129498949,0.553940772128651,-6.648337864681 +"P02572",-0.0426048612708705,26.5748942833381,-0.85790406290046,0.404164220431995,0.553940772128651,-6.64874865430282 +"Q9W436",0.0977564336014201,14.4227300302517,0.855994411421867,0.405187249531087,0.554886972264247,-6.65039878708098 +"O44226",-0.0315014347239284,20.1855438162052,-0.850147820265579,0.408329933243531,0.558319358491272,-6.655430064695 +"Q8MLW4",-0.0436125253799275,18.635221853657,-0.850086312335898,0.40836307995165,0.558319358491272,-6.65548282868449 +"Q9VG00",-0.0955376118082896,15.2611050093459,-0.849148869724314,0.408868487269616,0.558552528063652,-6.65628657523923 +"P23625",-0.0370104399022146,22.2106880513379,-0.848044593188696,0.4094643657197,0.55890880689072,-6.65723232760659 +"Q9W074",-0.0819596311909088,13.5914107105598,-0.843901081328503,0.41170530899941,0.561412206939036,-6.66077103361807 +"Q9W0H6",-0.0527244277772994,18.1691102036067,-0.843409785408931,0.411971547537998,0.561412206939036,-6.66118957146564 +"Q9VL69",0.0839236681045161,16.0415248361956,0.842264029121748,0.412592881608432,0.561799940018665,-6.66216478550988 +"Q9VS84",0.0443042185036262,17.5099074434401,0.831907637375519,0.418236757780387,0.569020319720787,-6.67092481960692 +"Q9VB10",0.0386323324246511,20.9923275423704,0.829149931606178,0.419748009799136,0.570610986426209,-6.67324077089121 +"Q7JV09",0.0496219918985812,15.1604740529805,0.827704918328689,0.420541300863966,0.57122385166213,-6.67445150410324 +"Q9VVK7",-0.0497848673340293,18.1871969698188,-0.822610345572211,0.42334586704685,0.574565424112404,-6.67870469186287 +"Q9VUM1",-0.0650224257747904,16.5277421508812,-0.82108755534813,0.424186497707044,0.574837218815037,-6.67997132599157 +"Q8ING0",-0.0806094062291578,14.6477582490549,-0.82099906282283,0.424235381511577,0.574837218815037,-6.6800448667303 +"Q95U34",0.0447581999788405,19.4638013237098,0.81833437525119,0.425709068155998,0.575959958618744,-6.68225592757877 +"Q9V428",-0.0477943789273354,18.7343447851477,-0.818252187493895,0.425754573727165,0.575959958618744,-6.68232401938118 +"Q9VF82",0.0580149508435142,14.891650988725,0.816590485791849,0.426675291680469,0.576292744289996,-6.68369938059511 +"Q9W379",-0.0581792460920969,16.3214366602464,-0.816561127095254,0.426691570262677,0.576292744289996,-6.68372365725073 +"Q9VA76",0.0612825836703266,15.2118978935304,0.815000775990509,0.427557314793115,0.576873871871075,-6.68501275834822 +"Q9VB79",0.0496420031956024,17.640183735074,0.814145582943413,0.428032286945969,0.576873871871075,-6.68571832700331 +"Q9V3Y4",-0.0843652565979855,14.0646680747363,-0.813916845342535,0.42815938451822,0.576873871871075,-6.68590692965967 +"A1Z968",-0.0429994708549941,17.1901096058735,-0.812636193062032,0.428871422621196,0.577366854666792,-6.68696197777916 +"P04388",0.0743770526902736,16.5371310200606,0.809771665959953,0.430466829961225,0.579047316431712,-6.68931636537294 +"Q9VVU5",-0.0829586146300674,15.6115010515281,-0.807505796339801,0.431731494378234,0.580280525884686,-6.69117330715248 +"Q9VZW7",-0.0976593987154093,13.8790692907301,-0.805174646905115,0.433035063639795,0.581132019649557,-6.69307876341768 +"Q7KUC2",-0.052987372828337,19.3365425267574,-0.8051268622581,0.433061810805995,0.581132019649557,-6.69311776917393 +"Q7JR49",-0.0469442708427259,18.871921594693,-0.801841933230048,0.434903050281643,0.583133671921046,-6.69579410101267 +"A1Z729",0.0563775180729316,16.6911330642385,0.796145632047717,0.43810765727771,0.586571125078383,-6.70041120903113 +"Q9VV60",-0.0373691337197926,20.0499672055497,-0.796035012113412,0.438170037078936,0.586571125078383,-6.70050057181174 +"Q7JVG2",0.0899369446949994,14.8268907763185,0.794532973684771,0.439017609206229,0.587234460429824,-6.70171284194785 +"Q9VP57",-0.0643416360373692,19.4973851060016,-0.791926574490045,0.440490808532375,0.588732907557693,-6.70381142212528 +"Q9VDC0",-0.0596823585225508,17.569287758235,-0.789284041961385,0.441987611510777,0.590260477181726,-6.70593261310433 +"Q9W258",0.0492969500859921,19.3174119834997,0.787713526429821,0.442878710470603,0.590977351251973,-6.70719018930334 +"Q8IPP8",-0.0491060319284813,19.0707397911429,-0.783447902363751,0.445304691601808,0.593405192615132,-6.7105941963785 +"Q9VJJ1",0.0792123050421463,14.0704204072968,0.782765312253097,0.445693672293519,0.593405192615132,-6.71113732745407 +"Q9VIG0",-0.0458767831320728,17.3651697124698,-0.782639463879041,0.445765411478873,0.593405192615132,-6.71123741624157 +"Q24050",-0.0410899316797444,16.6331445992496,-0.778724212008086,0.448000893293133,0.595905494428186,-6.71434384660755 +"A8JNP2",-0.0615238731149752,21.1181205697465,-0.777397786876328,0.448759825886375,0.59607251729135,-6.71539299416004 +"Q9V9V4",-0.040236740211661,18.6297496139518,-0.777255690166117,0.448841176089889,0.59607251729135,-6.71550528884769 +"Q9V3F3",0.0841551950750041,14.6073872056612,0.775061160792685,0.450098710621373,0.597267024118099,-6.71723715055032 +"P81900",-0.0382178159680677,22.4225989039302,-0.770403924423853,0.452774721756895,0.600229009507024,-6.720897517988 +"Q9VAN1",-0.0525968537315507,14.7771581892853,-0.769924851172241,0.453050553338935,0.600229009507024,-6.72127288980228 +"Q7K2D2",0.0368504474098081,20.3568335186429,0.766611058346642,0.454961361746807,0.601851857205466,-6.72386345514717 +"Q7K1U0",-0.0512388958064847,16.6799340674343,-0.766549131836223,0.454997117467681,0.601851857205466,-6.72391176792005 +"P15425",0.0427633204900957,17.0621512294269,0.76460495400313,0.456120550731182,0.602335214367321,-6.72542670629074 +"Q9VNI8",-0.045047367771188,15.7419633164439,-0.76369431409711,0.456647349202685,0.602335214367321,-6.72613506830908 +"Q9VY41",-0.118144459260975,16.5398282334143,-0.76352127076825,0.456747496020822,0.602335214367321,-6.72626958562017 +"Q08012",-0.0527305678229304,19.1817578223272,-0.763418496058193,0.456806982119102,0.602335214367321,-6.72634946541319 +"Q9VXA3",-0.0448143127826768,17.7998032703345,-0.762138459052085,0.457548270003465,0.602836109293665,-6.72734351659847 +"Q9V4W1",0.111622746223482,13.6028511347201,0.759766000359248,0.458924158404625,0.604171662366941,-6.7291818336309 +"Q0E8U4",-0.0863196573252552,16.215260433161,-0.759136549718159,0.459289631118442,0.60417595008325,-6.72966867649582 +"Q9GYU8",-0.17792355011448,12.5654381050296,-0.757561397446274,0.460204984523989,0.604903005662738,-6.73088532439436 +"Q7K0D8",0.0356607471915211,17.303962028664,0.7563351649201,0.460918350401404,0.605363628716175,-6.7318308444628 +"Q9W5P1",-0.0736164332543225,14.2808065244119,-0.754898864269894,0.461754788644584,0.60598504127393,-6.73293653666593 +"A1Z7K6",0.0540136688325532,15.5798422287814,0.741224226645279,0.469764883073535,0.616012441011523,-6.743365763251 +"O17452",0.0685193725310604,19.8662812737582,0.74020662115861,0.470364320762651,0.616313972531108,-6.7441347741875 +"P0DKM0",0.0475915066460963,16.997481203637,0.73949820719135,0.470781898256974,0.616376928016195,-6.74466954678155 +"Q7JZW2",0.0269715876129588,20.5285320958936,0.737792011009013,0.471788546178878,0.617210427471661,-6.74595557631901 +"Q9VA34",-0.0541241125549199,14.4307999341644,-0.73555296995979,0.47311154903333,0.618217199897177,-6.74763903681382 +"Q9W3X8",0.104736625781152,13.8913247374019,0.735235395304018,0.473299379057971,0.618217199897177,-6.74787742481872 +"Q8SXS0",0.0830070289774181,14.5315051557729,0.734484804199302,0.473743496716351,0.618313108390355,-6.74844047631607 +"O97064",0.0490099131794484,16.5169812575237,0.732569491614461,0.474877910876369,0.619083291690535,-6.74987480896165 +"Q9VIE7",0.0461289945283081,14.9888306814096,0.732235483607513,0.475075907292497,0.619083291690535,-6.75012458239428 +"Q8IQ70",0.040613909322964,17.9965369757656,0.728891368588803,0.477061009796778,0.620758874394159,-6.75261948086811 +"Q9VMQ9",0.0417724898212235,22.113574780458,0.728815605573057,0.477106041350907,0.620758874394159,-6.75267588101056 +"Q9VF28",0.0651428986605183,17.7510924228796,0.722514354478439,0.480860291250845,0.625155857994084,-6.75734756505194 +"Q8SY33",-0.0404366571214183,17.3894677665956,-0.721650153847023,0.481376554727213,0.625275615371261,-6.75798532213359 +"Q9VG51",0.104466965243777,19.1568456996641,0.720641302913425,0.48197965038102,0.625275615371261,-6.75872892561393 +"Q9VS44",-0.0474939943438599,15.1207956322851,-0.720478523136746,0.48207700321789,0.625275615371261,-6.75884881625023 +"Q9VBU0",-0.0696699460464636,14.2173254081894,-0.716880086059312,0.484232104113357,0.627582866869526,-6.76149267638525 +"Q7JXW8",0.0963801826750927,14.8862472833242,0.710574583027333,0.488022293151664,0.632004025603241,-6.76609563825609 +"Q7JYZ9",-0.0413228788012105,18.1199350161953,-0.709654640892616,0.488576732099989,0.632166588482335,-6.76676400797021 +"Q9VHL2",-0.0242135553557539,20.6539980627482,-0.709108909546798,0.48890581483346,0.632166588482335,-6.76716011769306 +"Q9W1M9",0.093047191880558,14.2935878377721,0.708035401586015,0.489553536729686,0.632513787192189,-6.76793847261157 +"Q95RB1",-0.0429800026236187,15.9436391430334,-0.706654087611155,0.490387726742987,0.633101182822989,-6.76893838034402 +"Q9VWT3",-0.0492902935090314,14.2984685763998,-0.70496919357206,0.49140638968652,0.633925644235975,-6.77015556853359 +"A1Z8D3",0.108614039623571,16.6503761579487,0.699999745561335,0.494418117993713,0.63731794498726,-6.77372970150912 +"Q7K549",0.0947800412306723,14.7435324922279,0.699083569106417,0.494974549476871,0.637542508515383,-6.77438604758105 +"Q8I937",-0.123907037504134,14.014387525103,-0.697881419790189,0.495705222230277,0.637990980463042,-6.77524604096307 +"P08928",-0.0289046993870912,22.7236429330293,-0.69676348750572,0.49638527561744,0.638373662089352,-6.77604454137876 +"Q0E8X8",0.0831135760403399,19.8019937928549,0.695066248113678,0.497418775214864,0.639209951508778,-6.77725452504053 +"A1Z934",-0.0367805804118575,19.2971216207708,-0.694036465597466,0.498046454630385,0.639523853982665,-6.77798732034875 +"Q9VVM1",0.068243667865719,15.5735425977514,0.692234862186883,0.499145693660458,0.640442320788957,-6.77926689207877 +"Q24372",-0.0584876017860179,16.9076188387342,-0.689110017345921,0.501055660986633,0.642398802863723,-6.78147887697062 +"Q09101",0.0486954932140584,14.6597525791805,0.686408449078946,0.502710342479521,0.643707385286983,-6.78338365873135 +"Q9Y0V3",0.0520756560553295,15.1089618577586,0.686057475232722,0.502925543277407,0.643707385286983,-6.78363060208371 +"Q7K568",0.0759544135980015,16.1116201461339,0.685554445589698,0.503234070991742,0.643707385286983,-6.78398432408956 +"Q8IMT3",0.0648006893213697,14.7486602429198,0.684442645510982,0.503916371515028,0.64390787429314,-6.78476525796948 +"Q9V4E7",-0.0945494489800396,15.4662884541501,-0.684041178088377,0.504162879992111,0.64390787429314,-6.78504695782223 +"A1ZBM2",0.0495133263417848,18.5850377736808,0.682652470222948,0.505016112126366,0.644018930689785,-6.78602018142562 +"Q9VRZ7",-0.0518479580691977,17.2305138955547,-0.682642828210328,0.505022039174004,0.644018930689785,-6.78602693216499 +"Q9VK58",0.238484594538052,13.1365312694011,0.681842988757358,0.505513849401663,0.644153629336878,-6.78658661786293 +"P05389",0.0306092212016154,20.5504569630224,0.681012471753278,0.506024816376087,0.644312514286499,-6.78716711690449 +"Q8IP97",-0.0427447262113354,19.9560624733381,-0.679953351699929,0.506676862619593,0.644650653584653,-6.7879064348776 +"Q9VAY6",-0.034992043612343,15.199815033497,-0.678813167459737,0.507379358878843,0.645052416623407,-6.78870112934284 +"Q7PLI0",0.0392398443534177,17.7748031496623,0.675572374224455,0.509379163486088,0.646356314770747,-6.79095306665969 +"A1Z7H8",-0.0682282863388899,14.6864032875859,-0.675557708326181,0.509388223723532,0.646356314770747,-6.79096323452165 +"Q9VJ19",0.0366956078264487,19.1296075959886,0.675267577906141,0.509567478371422,0.646356314770747,-6.79116433910509 +"Q9V3W9",-0.0292335131881103,18.5048589590713,-0.673422298295881,0.510708419016013,0.64731127881361,-6.79244149454309 +"Q9VXE5",0.0510063307057358,14.6223877713142,0.666454551673741,0.515029812434813,0.652292883174843,-6.7972343106951 +"O61491",0.0271700431239488,20.9428219736616,0.664728999261712,0.516103220532948,0.653156427806493,-6.79841398215338 +"Q9VAV2",-0.035810622275168,17.7674501325864,-0.663066049094717,0.517138892892374,0.653571690170985,-6.79954812509485 +"Q9VTM6",0.119488704532685,16.2378378117642,0.662943910349172,0.517215006610132,0.653571690170985,-6.79963131883689 +"Q9VUW4",0.0479989985656193,14.5677812952657,0.660687477037517,0.518622305200026,0.654853902402455,-6.80116566622179 +"Q9VJD1",-0.0363094606505214,18.5407889818358,-0.659567416395235,0.519321675618263,0.655240964395811,-6.80192545953839 +"Q9VE56",-0.0404709800396716,17.4745470735157,-0.657412121804485,0.520668956272225,0.656444307681082,-6.80338407822562 +"Q9VJ60",-0.0468959087702707,16.5183773155597,-0.654241274543912,0.522654658638396,0.658450128858643,-6.80552178296936 +"O62602",0.0597713785110852,14.5895292480106,0.653331189864163,0.523225377239383,0.65867164470588,-6.80613353468426 +"Q9VIK0",0.122766758269435,12.7877429779278,0.651667246677199,0.524269753662809,0.658724892796687,-6.80724994237638 +"O61444",0.0525592925667464,16.4591917716334,0.651488585447344,0.524381960500864,0.658724892796687,-6.80736965347516 +"Q7JXF5",-0.0356359667108137,18.5029320795648,-0.650946212051671,0.524722676948496,0.658724892796687,-6.80773287800323 +"Q9V6B9",-0.0513742270732216,15.8416982892361,-0.650747796821827,0.52484735163477,0.658724892796687,-6.80786568413163 +"Q9VBI3",-0.0414631313823861,18.6099066652584,-0.648255546073461,0.52641478381817,0.660195383014065,-6.80953057126774 +"Q9VK69",0.0323635455803171,20.2715227141799,0.647046395949222,0.527176192402462,0.660653560426226,-6.81033613667512 +"Q9VU45",0.0663877888107187,17.8858106426453,0.642664673971427,0.529940560000324,0.663619259820226,-6.81324341869426 +"Q95SH0",-0.293274361130957,13.8303418593454,-0.640833968334445,0.531097923527823,0.664075400721311,-6.81445255458015 +"P05812",-0.0364288049549817,15.8004272103377,-0.64082899450335,0.531101069881432,0.664075400721311,-6.81445583522196 +"Q9VE52",0.0386912810768312,15.9507527472545,0.637916416203042,0.532945298538153,0.665882215701603,-6.81637277091795 +"Q9W1G7",-0.0284087197967793,18.909232739313,-0.637271744074823,0.533353982782166,0.665894044371746,-6.81679594812003 +"Q9VMV5",-0.0325275670926395,17.6142726181127,-0.636361049594625,0.533931606528446,0.666116619064658,-6.81739305711028 +"P55830",0.0237913221584876,22.0046667895625,0.635520355945039,0.534465139518855,0.666283895902429,-6.81794355045823 +"Q9V9S0",-0.0485086766504494,17.1023461359323,-0.630805456654428,0.537462854267947,0.669520568274037,-6.82101811451616 +"Q9VB17",-0.0358103095298681,15.6066107364688,-0.629221767374966,0.538471839754147,0.670276887096954,-6.82204595673529 +"Q9VH39",-0.0815981462986173,18.3987260339609,-0.627936900041776,0.539291210185265,0.670796225644311,-6.82287805611627 +"Q9VE12",-0.0405218421200093,15.6585593211567,-0.626711705685887,0.54007316641537,0.67126828731806,-6.82367000619715 +"Q9VD30",-0.0519295957105506,21.4173459245737,-0.618131019583577,0.545567068195403,0.677426691994434,-6.82917526071864 +"Q9VW14",0.0544793072324801,13.7546804927289,0.617288623619538,0.546108064620422,0.677426691994434,-6.82971184134165 +"Q9VR25",-0.0308750090126289,16.977871040057,-0.617073380186019,0.546246343364816,0.677426691994434,-6.82984883323453 +"Q9VQ93",-0.0543630207929393,16.6990907946525,-0.614100712118336,0.548158024168131,0.679292410336139,-6.83173614221736 +"Q9W306",-0.0619056232372159,14.714561137691,-0.612123340398323,0.549431655901327,0.679672946308226,-6.83298674698509 +"Q9VMH2",-0.106422715451076,17.3281023559839,-0.611989664746242,0.549517814751243,0.679672946308226,-6.83307115269677 +"Q9VLW8",-0.0776841266670836,14.1542319372449,-0.611726380192286,0.549687532715706,0.679672946308226,-6.83323734496735 +"Q9VYT1",0.0595774320365106,14.2902547340875,0.611023141284833,0.550140992526142,0.679729759654522,-6.8336809144486 +"Q7K4Z4",0.0552985586752381,14.9335264754016,0.609689560910213,0.551001463177673,0.68028900116977,-6.83452073908672 +"Q9VQD8",-0.091014763047319,17.5488569371324,-0.607821566071589,0.552207979659095,0.68100632934145,-6.83569417391828 +"Q9VC05",-0.0625954012454777,14.8715855011303,-0.607525990973926,0.552399018944234,0.68100632934145,-6.83587953366325 +"Q9VL70",0.0333110751565222,23.5249704850464,0.60536963465329,0.553793817675042,0.68222163063661,-6.83722921900791 +"E2QCN9",-0.0380061678707371,17.3742846805825,-0.604314288300993,0.554477139823729,0.682555281956167,-6.83788810425647 +"Q7JXF7",-0.0370520253366635,17.856641172397,-0.603687685732688,0.554883070942783,0.682555281956167,-6.83827879313059 +"Q9I7C6",0.130958957278395,15.4683864318852,0.601458590764213,0.556328437384154,0.683828911979933,-6.83966550936923 +"Q9VDV3",-0.0301447231173579,17.5366875014127,-0.599986980638789,0.557283749622201,0.684134865212561,-6.84057831494394 +"Q9VEW1",-0.110109254357324,14.6271042951221,-0.599811611636729,0.557397650973543,0.684134865212561,-6.84068695005199 +"Q9VC31",-0.0434026586386054,17.6712190678343,-0.597227681310156,0.559077346154509,0.6851974378754,-6.84228409498686 +"P49028",0.0644449778338725,16.3690630820527,0.59721597844552,0.559084959801211,0.6851974378754,-6.84229131364268 +"Q9V455",0.0571969558452494,19.3460994358926,0.595663696906521,0.560095333469114,0.685931729975391,-6.84324760813883 +"Q9VRL1",-0.0379517612350462,20.4818739018956,-0.592640379422511,0.562065990454609,0.687840111576147,-6.84510332564934 +"Q27377",-0.0591196342076152,20.0456085409392,-0.591752278784247,0.562645571536956,0.688044584548125,-6.8456467301774 +"Q9VH77",0.0503293930927668,15.53675208586,0.590082966749927,0.563735835502194,0.688872801185099,-6.84666603026227 +"Q9W3C3",-0.0425901609095583,16.4289933610195,-0.587615331282995,0.565349551317166,0.690338983599585,-6.84816775655147 +"Q9VTP4",0.0274094287409952,20.9467022126204,0.586265922956394,0.566233032119847,0.690487494667961,-6.8489864211259 +"Q9VFN9",-0.0422457944815253,16.0444991720098,-0.585141120680679,0.566970016239409,0.690487494667961,-6.84966744602949 +"Q9VM69",-0.0450959581262005,16.8428884116285,-0.584926792049224,0.567110504329588,0.690487494667961,-6.84979707203718 +"Q9V3V9",0.0245976879598437,19.5089156306005,0.584373130472911,0.567473503245666,0.690487494667961,-6.85013171657311 +"Q9VVW8",-0.0500943758837646,15.7571338686071,-0.584270232095388,0.567540980329601,0.690487494667961,-6.85019387709906 +"Q9VP13",0.127884985474616,11.8053340771234,0.58263251992412,0.568615502303914,0.69129056694091,-6.85118180392222 +"Q9VKR0",0.205436632600362,13.2941885390495,0.578846524970603,0.571103626873247,0.693809795793573,-6.85345549833182 +"Q9VNQ3",0.055352451234171,15.098918905047,0.574329505791937,0.574079617684981,0.696917614482204,-6.85614965276684 +"Q9VHF9",0.0523067173127174,17.0237769801219,0.571001054873997,0.576277693904344,0.698488630973343,-6.8581219577334 +"Q9VAY2",-0.0194985870319755,21.1246455608706,-0.570901417319417,0.576343560882215,0.698488630973343,-6.8581808296305 +"Q9VPR1",-0.0767695092195062,13.6635818059896,-0.570405143552216,0.576671688690646,0.698488630973343,-6.85847391160079 +"Q9W078",-0.0357381644566921,19.4328549688206,-0.569835024913058,0.577048761079896,0.698488630973343,-6.85881030236043 +"Q9XYZ9",0.0351546401819895,21.9694467034747,0.567876060788528,0.578345379514696,0.699220957471721,-6.85996370573174 +"Q9VJI7",0.0384803831942513,17.3634249097304,0.567654445845757,0.578492159059337,0.699220957471721,-6.86009394899902 +"Q0KI15",-0.0398575573351021,15.6037098601969,-0.566139134293251,0.579496293024911,0.699717241637087,-6.86098319294259 +"Q9W2K2",-0.0695026407889578,15.6420207399878,-0.564768535681038,0.580405306306296,0.699717241637087,-6.86178555085967 +"Q9W087",0.0549040554961095,16.7081530499718,0.564521451045978,0.580569256837136,0.699717241637087,-6.86192999752166 +"Q9U6M0",-0.0371868067983634,16.2770238247298,-0.563911102234885,0.580974349946221,0.699717241637087,-6.86228655006795 +"Q0E980",0.0351622261054558,18.3692141720927,0.563872120115252,0.581000227618325,0.699717241637087,-6.86230931001062 +"Q9W4W5",-0.0347199824490545,17.3191382743618,-0.554947011917463,0.586940596479935,0.706361410482346,-6.86748053961774 +"Q9VTW6",0.117972447198708,16.2685134461319,0.554054647126864,0.587536235330013,0.706568450274305,-6.86799322234655 +"Q9VVS6",-0.050702407634919,16.5208454528205,-0.553272536598122,0.588058534246984,0.706687057005741,-6.86844191002188 +"Q9XYW6",0.0434812715558195,16.6203581169738,0.547582583178911,0.591865418473059,0.710749832982767,-6.87168783717721 +"Q9VSL6",0.0859093458985569,14.5993544440375,0.546480008990951,0.592604538082879,0.711125445699454,-6.8723130883342 +"Q9W1Y1",0.0386692859205624,17.8305310851913,0.545553631421434,0.593225902724343,0.71135931397858,-6.87283748464937 +"C0HK94",0.0324780685472525,18.4738144502059,0.544080327497547,0.594214792357174,0.712033242565924,-6.87366971820303 +"Q9Y105",-0.111140411485508,17.1291161396942,-0.538438770333922,0.598009086165713,0.716065438423841,-6.87683647620361 +"Q9W125",-0.0388865807287502,21.3659325263436,-0.535405338194953,0.600054250331167,0.717773998195319,-6.87852608858792 +"Q0KIE7",0.0820966141970505,14.0418513385367,0.535046222763333,0.600296599210113,0.717773998195319,-6.8787255062868 +"Q8IH23",0.0478701160620343,18.2731446292083,0.5263268915472,0.606195729699703,0.724308364712825,-6.88352780349107 +"Q9VUZ0",-0.0463289364246791,17.6496653731969,-0.51963119647613,0.610745044845003,0.729221714245859,-6.88716390310985 +"Q24400",-0.0296969732578134,21.4594952140167,-0.516849033133878,0.612640244637842,0.730450124899489,-6.8886615457942 +"Q9VXF9",-0.0224371835683819,17.4720763046938,-0.516835141021996,0.612649715068576,0.730450124899489,-6.88866900446393 +"P42207",0.0347049461630409,16.003793417872,0.515325030078056,0.613679601265271,0.730901747080007,-6.88947862827098 +"Q6IGN6",-0.0631389459816134,16.7636991703126,-0.514994863526225,0.613904884687704,0.730901747080007,-6.88965533745977 +"Q9VND7",-0.0410892693399667,13.9538334154751,-0.513800705396905,0.614720032580872,0.731350224211765,-6.89029355233285 +"Q7JVH6",0.0228412442355648,18.9829639038314,0.512473547945281,0.615626582209172,0.731906727815323,-6.89100116931962 +"Q9VVK5",-0.0426065434814102,15.8650928520295,-0.510674003086207,0.616856839982389,0.732847015021812,-6.8919578308014 +"P29829",0.0358848088718844,21.3721715657302,0.5063508217796,0.619817216825037,0.735474310629217,-6.89424279787442 +"Q9VR89",-0.0551657458144863,13.939447283686,-0.506156899366507,0.619950168312158,0.735474310629217,-6.89434485323035 +"Q9VK11",-0.0342678940834524,18.7485880803531,-0.505114894946767,0.620664791343388,0.735798771827129,-6.89489258062949 +"Q7KTH8",0.0231894157135848,17.6243388310672,0.503411373738747,0.621833941809528,0.736661232200492,-6.89578568189949 +"Q9VJ31",0.0268849539468139,17.2345616125975,0.50240368900291,0.62252602491745,0.736796806259586,-6.89631260487746 +"P45594",0.0265588304425073,23.0375658427051,0.501958598107865,0.622831832629506,0.736796806259586,-6.89654501976836 +"Q9W197",0.027735776114536,17.3533409407358,0.49894082208047,0.624907136487548,0.738727926053316,-6.89811556701945 +"Q9VVJ7",-0.0247792088846452,18.1678271516263,-0.491771127637279,0.629850805803801,0.744044719603924,-6.90181013697284 +"Q7KML2",-0.109042547625098,13.5477892504771,-0.490323504423421,0.630851203595348,0.744699085348223,-6.90254981812848 +"M9NFC0",0.0293113154960629,19.8650537574455,0.488087032754948,0.632398208831316,0.745997321308795,-6.9036884175488 +"P92181",-0.0333343395090395,16.5019343601809,-0.486243511090049,0.633674736788949,0.746974884073475,-6.90462317089521 +"Q9VVP9",0.0348324068191452,16.6752461012483,0.482622230793517,0.636185749317689,0.749405247077617,-6.90644934767499 +"Q9VJU8",-0.0368857276641688,15.6308530345953,-0.475866378547729,0.640882589444611,0.754405193502901,-6.90982085905737 +"Q9VC58",0.0630353577798761,13.1555069332173,0.474918311380237,0.641542984033232,0.754649998143463,-6.91029030178565 +"Q8SXC2",0.0698259034170921,14.7302810371679,0.473065912136697,0.642834209273065,0.755635983838951,-6.91120490860574 +"Q9VWA8",-0.0557577575849884,14.4770046998866,-0.470230835821792,0.64481271542807,0.757427893897198,-6.91259798259099 +"P36951",-0.023076101272018,20.3591082516913,-0.469427405222262,0.645373907689429,0.757553608744524,-6.91299128595435 +"Q9VGF3",0.0301998036530637,15.6839771134999,0.467990879961844,0.646377867332521,0.757797114179474,-6.913692879589 +"O16158",-0.0254032779144069,21.3026178269026,-0.467830519609994,0.646489984099156,0.757797114179474,-6.91377106937008 +"P04359",0.0370530574499845,18.8216610397909,0.465125077160081,0.648382838109586,0.759482144639599,-6.91508628497321 +"A1ZB73",-0.122963573998261,13.6051833357404,-0.464244781055218,0.648999274799053,0.759670730080576,-6.91551263088599 +"Q9VSK9",-0.0329487074571428,14.5095567207282,-0.463234600359676,0.649706990687571,0.759965820804256,-6.91600091521377 +"Q9VCY3",0.0329653371834624,17.8672602120816,0.454188642099256,0.65605988309091,0.766859064467861,-6.92032728737089 +"Q9V9U7",0.0374448078663043,17.8296085896576,0.451786728968405,0.657751360824166,0.768297808021505,-6.92146209128601 +"Q9VUK8",0.0195567002026564,20.7463641444383,0.449603561265928,0.65929046858208,0.769556684111203,-6.92248846497777 +"Q9VG73",-0.0318863736057828,18.045500205732,-0.447784018458851,0.660574439465607,0.769939898684202,-6.92334018846005 +"Q9VDI3",0.0459287525032526,15.0234047980933,0.447736736697195,0.660607818798145,0.769939898684202,-6.92336227609456 +"Q9VMQ7",0.0462161314317147,15.9169941817517,0.447176252881478,0.661003558102984,0.769939898684202,-6.92362393255247 +"Q9VTZ6",-0.0336039256288494,17.0784973340279,-0.446225977000867,0.661674755146045,0.770042904867014,-6.9240668301727 +"Q4V6M1",-0.0243279127882232,18.2215243359801,-0.445743993729205,0.662015303105095,0.770042904867014,-6.92429111858475 +"Q95T12",-0.0300083022657613,15.9373499995644,-0.442248136348036,0.664487619677605,0.772380034579962,-6.92591082868102 +"Q9VQI6",0.0563247021961839,16.1355099818427,0.441543821803832,0.664986208014879,0.772421305688591,-6.92623564939353 +"Q9VKJ4",0.0301439169176714,15.1198273905873,0.437306083778215,0.667989563638959,0.7753699319066,-6.92817938472454 +"Q7KMM4",-0.0862270948127168,14.4854726601703,-0.435800246544024,0.669058189375119,0.776070278079067,-6.92886566979559 +"Q9V535",0.0242230955752198,18.6015630062895,0.428942798111439,0.673933920591147,0.781182612610169,-6.93196174296678 +"A8DZ14",0.0198817988506477,19.4650311530695,0.426136226941408,0.675933798742711,0.782430176181258,-6.93321506141697 +"Q9VA18",-0.0303758449403055,21.5716257815935,-0.426115788765129,0.675948371629013,0.782430176181258,-6.93322415894518 +"O76454",-0.0338313016490837,17.9869049221744,-0.422275112276178,0.678689227786311,0.785057997189713,-6.93492617322341 +"Q9Y112",-0.0167587234739237,22.2378819571763,-0.421492076064047,0.679248608917667,0.7851605541751,-6.93527133227677 +"Q9VDC3",-0.0225925362900981,19.2790825273927,-0.419655240156517,0.680561560277074,0.785934836463149,-6.93607854565837 +"Q9VX02",0.0301754425412231,17.2127641189976,0.419236788364026,0.680860814561901,0.785934836463149,-6.93626195615945 +"Q9W4P5",-0.0204708008241781,19.6128342093616,-0.418223985748274,0.681585345480844,0.786227079019396,-6.93670513489835 +"Q9VL00",-0.0507726295085256,15.9879085798822,-0.417069900081254,0.682411340444502,0.786635878273275,-6.93720885880822 +"Q9VD00",-0.0186927349236079,17.917969749388,-0.414473460921806,0.684271177476097,0.788235030407549,-6.93833715303654 +"A1ZAA9",-0.0237456584132438,16.5801619282819,-0.41380235402568,0.684752236861224,0.788244810962402,-6.93862766521061 +"Q7KS11",-0.0649353291403756,15.652887373598,-0.412178608415019,0.685916743744911,0.788434101019476,-6.93932865626234 +"Q7K084",0.0204384000275759,23.7084076043271,0.411704726226977,0.686256754324255,0.788434101019476,-6.93953272900726 +"Q7JVM1",-0.0334540059777471,15.8704092471334,-0.411269425417366,0.686569144351446,0.788434101019476,-6.93971998475068 +"Q9VH07",0.0222764293032469,18.2239835556808,0.41093747790462,0.686807403346102,0.788434101019476,-6.93986265023989 +"Q8MRM0",-0.0271619226258153,18.5551704840265,-0.40647556090231,0.690013308623364,0.79115333918251,-6.94176936978108 +"Q7JYZ0",-0.0634227787601098,16.8447190968725,-0.40632059149283,0.690124765294096,0.79115333918251,-6.94183522719749 +"Q7K1C3",-0.0267303220886852,17.1107463168027,-0.404771231984201,0.691239497635266,0.791887006906335,-6.94249230808043 +"Q960W6",0.0625482269938988,14.113481403839,0.402418490711496,0.692933655350863,0.793097816129835,-6.94348540352973 +"Q9VND8",-0.0819502742779825,18.4846076302531,-0.401983078892627,0.693247371653057,0.793097816129835,-6.94366857005396 +"O62619",0.0194037455618385,22.2214410786259,0.400940536936472,0.693998763271108,0.793413253691713,-6.94410635168393 +"Q9VE94",-0.0441580864242379,14.6671265901944,-0.399130439413323,0.695304141730894,0.794361170141871,-6.94486379920273 +"Q9VLM9",0.0253982112778495,18.4070665626877,0.398323808793824,0.695886175878795,0.794481958498172,-6.94520025816086 +"Q24298",-0.0196565758582565,19.3929901094525,-0.397535331150126,0.696455302124289,0.794587854954388,-6.94552850093126 +"P20351",0.0422267413845443,13.9791973063708,0.392168645779877,0.700333978794074,0.798164638852912,-6.94774572108578 +"Q86BL4",-0.0334456008049369,14.9576581937835,-0.391852079809771,0.700563041382342,0.798164638852912,-6.94787558651384 +"Q9VEP6",-0.0212112742799206,18.6233595023705,-0.391053669503796,0.701140892680174,0.798164638852912,-6.94820266331675 +"Q9VN44",-0.0209917068034144,19.5035394634771,-0.390551532773596,0.701504412804778,0.798164638852912,-6.94840803376279 +"Q7KTJ7",-0.0201357288566619,22.0944243530528,-0.386513747550586,0.704430280141694,0.800947312390147,-6.95005005644503 +"Q9U5L1",-0.0163235724226745,17.6808336224665,-0.385516467141312,0.705153675353208,0.801223658371356,-6.95045303810095 +"M9PGG8",0.0575697204170673,18.5302472083415,0.383226062656302,0.706816171281037,0.802565945334765,-6.95137468078163 +"Q9VYS5",0.034737588339171,14.2953490589927,0.382186728707655,0.707571083033732,0.802683533759126,-6.95179112464821 +"Q9W1F7",0.0183857232082296,20.3293184925302,0.381758547372751,0.707882181150884,0.802683533759126,-6.95196236712575 +"P38040",-0.036404307057758,19.0316468906913,-0.377571178529001,0.71092736393383,0.805588887935888,-6.95362709307448 +"Q7JW03",-0.0356612637408915,17.169470865222,-0.376074388644089,0.712017111635866,0.806275996068313,-6.95421778367866 +"Q9VII5",0.0300590318960943,17.3477639105238,0.373848418168818,0.713638941215018,0.807564283545895,-6.95509197726894 +"Q24319",0.0291244843590022,16.3572012573831,0.37223823138225,0.714813003101443,0.808344467236072,-6.95572116146649 +"Q9W1C8",-0.0848490081086872,15.9668356058677,-0.371217130315466,0.715557920487317,0.808638625591359,-6.95611877728342 +"Q9V434",0.0355376568582582,15.0221477551527,0.366825226434592,0.718765308890719,0.811713293994394,-6.9578167502115 +"Q9W0R0",-0.0206447173891746,16.735984403513,-0.364349665757,0.720575610378869,0.813207116449224,-6.95876508787521 +"Q9VJG0",-0.151146843827858,13.111127835232,-0.363557915569324,0.721154957577939,0.813310662096012,-6.95906705965303 +"Q9VGR1",-0.0416001666676706,14.1539815884489,-0.359062769225479,0.724447519593394,0.816471934244447,-6.96076925859204 +"O97454",0.0520334737322603,14.050193638226,0.358323299447631,0.724989699140412,0.816531274926541,-6.96104728302689 +"Q9VB68",0.0309793333252664,15.455298963151,0.357592403558244,0.725525741465592,0.816583628046294,-6.96132153005462 +"O76902",-0.0234528708231068,17.288267739966,-0.356282264394196,0.726486973726636,0.817114141723553,-6.96181174277684 +"Q7JZN0",0.028313108579912,16.8210794541388,0.354161145470327,0.728044216008125,0.818313393028862,-6.96260164670878 +"Q9VW90",0.100191031353871,15.0035491269265,0.353493807104431,0.728534405664185,0.818313393028862,-6.96284920384146 +"P55828",-0.0203910292693976,19.9669626463738,-0.348231665405735,0.732403947378091,0.82210618050246,-6.96478516472739 +"Q9VER6",-0.0336422398910798,14.9685891280351,-0.34568158375184,0.734281866884179,0.823659821091332,-6.96571306958543 +"Q9VF77",0.0226411051848014,15.7117370840066,0.332810400058098,0.743786893274897,0.833636233587003,-6.97029402681065 +"Q9VLG9",0.02759441117378,15.7522190584489,0.332285733524378,0.744175270869933,0.833636233587003,-6.97047712731685 +"Q9V393",0.0309155846496765,15.809996868543,0.330195459717801,0.745723279006385,0.83480968414943,-6.97120377362621 +"A1Z6X6",-0.0228046026681419,18.5680378734048,-0.327822875165669,0.74748172944124,0.836216985048952,-6.97202308277574 +"Q9NCC3",0.0241153203347935,17.3193819638785,0.325199892433958,0.749427447698513,0.837672941193322,-6.97292207988398 +"Q9VMC8",-0.0235068601204844,16.3599722848299,-0.324714651203081,0.749787590648459,0.837672941193322,-6.97308761008983 +"Q9VYT0",-0.0132196564084488,18.2716032183478,-0.3235611934139,0.750643920517785,0.838068312867246,-6.97348011033064 +"Q9VDT5",0.0304685008275847,19.077019834762,0.315752052653196,0.756450287896565,0.843777725691448,-6.97610116910551 +"Q6NL44",0.0337109836215852,15.2814602183536,0.315054772972506,0.756969482299284,0.843777725691448,-6.97633213096237 +"Q9W415",-0.0369796253582599,16.7369198250201,-0.314644090501124,0.757275332949699,0.843777725691448,-6.97646792661131 +"Q9W1H6",-0.0194141664209937,17.1568914400105,-0.312523692903595,0.758855137144591,0.844865566773237,-6.9771662721474 +"Q9VHJ7",-0.0420229348400518,14.7629691006587,-0.311974252929792,0.759264679012639,0.844865566773237,-6.97734646780529 +"P32234",-0.0217385765579401,16.7138791448736,-0.309671948850501,0.760981578481626,0.846211515271568,-6.97809813258403 +"O18332",0.0175127767686689,20.6419619645781,0.305374607644441,0.76418970035899,0.849212804929244,-6.97948643437237 +"Q9V4C8",-0.0156481037502481,17.2387864156534,-0.304032052432811,0.765192883879898,0.849761471579008,-6.97991623251058 +"Q9VI53",-0.0166949794716391,16.3619416977296,-0.303191713744986,0.765821022175513,0.849893190278613,-6.98018430185628 +"Q9VW58",-0.0437988058166123,14.8697571011257,-0.302138866602653,0.766608245930309,0.850201166364199,-6.98051912715269 +"Q9VHN4",-0.0284008055998672,14.5676682733499,-0.298535367479078,0.769304618594795,0.852109588539518,-6.98165639699803 +"Q9VG76",-0.0231888588256872,15.7770748648319,-0.297855010784209,0.769814051743223,0.852109588539518,-6.98186960518665 +"Q9VY92",-0.0224229280166064,21.3330360042293,-0.297791515824169,0.769861600676891,0.852109588539518,-6.98188947852173 +"A0A6H2EG56",-0.0258496689728211,20.9117080524611,-0.294585920646301,0.772263381302834,0.85420114059226,-6.98288735680273 +"O62621",-0.0329878915124144,13.1314119449409,-0.292605894912587,0.7737481108089,0.855276241768883,-6.98349838983188 +"Q0E8X7",0.0292093048457822,21.0104884879615,0.29155817823802,0.774534114097808,0.855578081003406,-6.98382006516478 +"Q9VPQ2",0.0215790481703699,16.4555904142146,0.288267670484981,0.777004322935746,0.857738723134893,-6.98482291368455 +"Q9VFU7",-0.0226940899223234,14.828952966526,-0.283966004717897,0.780237357679273,0.860425712667138,-6.98611695154337 +"Q7KSE4",-0.0223218489167731,13.8253876470276,-0.283115552478994,0.780877035965821,0.860425712667138,-6.98637050770841 +"Q9W0H3",-0.0226703664955288,16.7032082294702,-0.282970801299872,0.780985928643913,0.860425712667138,-6.98641358927956 +"Q9W3G8",0.0316369862109891,15.7625507490309,0.280065489884452,0.783172518057446,0.862265188197901,-6.9872736719936 +"Q9V3Q4",-0.0236428027843161,15.9896449174582,-0.277876231647428,0.784821440314111,0.863510661242703,-6.98791597146388 +"Q9VW59",-0.0154587046170036,19.7442824057436,-0.27507364518237,0.78693386500583,0.865264131067715,-6.98873093071319 +"Q9VZS3",-0.0251315005600077,18.3893126913878,-0.270408918844572,0.790453682577603,0.868103667147326,-6.99006923950153 +"Q9VLP1",0.0323057278423917,18.4213990376592,0.270271776426286,0.790557236448914,0.868103667147326,-6.9901082426052 +"Q9I7X6",-0.0288973633508238,14.8254133677801,-0.266013961692241,0.793774253845059,0.871062799614183,-6.99130940856562 +"Q9VEA5",-0.0263817713173609,15.6368006582925,-0.264163716331246,0.795173426127534,0.871823573282844,-6.99182548873287 +"Q86BI3",-0.0150976913017651,18.0561329281244,-0.263714976370521,0.795512876820437,0.871823573282844,-6.99195011586356 +"Q9VQ35",-0.0435830720370092,12.2547385004381,-0.261755426826608,0.79699568228244,0.872875113622528,-6.99249187498385 +"Q9V9U4",-0.0126729728659516,15.9221574066933,-0.259669333387808,0.798575130947929,0.874031048832772,-6.99306421911289 +"Q9V4N3",-0.0231732308761323,19.7364903514192,-0.255499808508419,0.801734726235953,0.876164246457329,-6.99419457250191 +"Q0E8C8",-0.0187180417120398,17.616232053992,-0.255165103742717,0.801988515445637,0.876164246457329,-6.99428452406533 +"Q8SY96",-0.0162879902105715,18.7523192850064,-0.254535030902981,0.802466329257228,0.876164246457329,-6.99445353830879 +"Q9VNX4",-0.0200479178262754,20.9977922024353,-0.254325451837435,0.802625280927337,0.876164246457329,-6.99450966513781 +"Q9VKZ8",-0.0155639261458091,18.7349348642258,-0.252504830613794,0.804006477483149,0.876779622268062,-6.9949953120996 +"Q9VEB3",0.0363539738066283,12.3281923341598,0.251563470950682,0.804720895350911,0.876779622268062,-6.99524506087169 +"Q8SXY6",0.016171557951413,19.127165737075,0.251504114485982,0.804765948256836,0.876779622268062,-6.99526077751956 +"E1JJH5",0.00897297677325426,21.2370675341164,0.250617133203855,0.805439272121637,0.87694040855019,-6.99549519790428 +"Q7K0B6",-0.0151628781392468,20.189040444565,-0.249205142786793,0.806511467531345,0.877153949333688,-6.99586667842676 +"Q9VZ66",0.0122418052982685,17.0394247745812,0.248973840461588,0.806687145250526,0.877153949333688,-6.99592733330944 +"Q9VIT0",-0.0140914098825906,16.4449159882083,-0.245145083326335,0.809596698402172,0.879744164778386,-6.99692323901201 +"Q9VLT7",0.0253044764686017,18.0639268983877,0.243604622199675,0.810768147493318,0.880443535168525,-6.99731961175594 +"Q3YMU0",-0.009146522924663,23.1502296729836,-0.241472632592613,0.81239019563945,0.881630999561876,-6.99786409929627 +"Q9VZG2",0.0182595122095108,21.9026255512066,0.240106353053941,0.813430147136837,0.88170031051988,-6.99821053537594 +"Q9W254",-0.0105846457421812,18.1491978131951,-0.239999810669663,0.813511257727874,0.88170031051988,-6.9982374684425 +"Q9W0K9",-0.0229989161991959,14.1832779737809,-0.238436557625194,0.814701613024021,0.882417071768875,-6.99863128225786 +"O97111",0.0344293504898108,14.7278276950858,0.237601494001508,0.815337674088051,0.882532926916852,-6.99884060432261 +"B7Z0N0",0.0270169605448523,13.0695338342543,0.235545266179024,0.816904455959003,0.88365540372219,-6.99935292321908 +"Q9VBL3",-0.0435412418786658,14.4990362513046,-0.234511572280026,0.817692403394203,0.883934496993864,-6.99960880322782 +"Q9VH37",-0.0259111631557349,16.6353157937398,-0.231986915509874,0.819617708560773,0.885441928678348,-7.00022905824276 +"Q02748",0.0143441856336679,19.5667560634586,0.231087904700196,0.8203035846214,0.88560930689223,-7.00044831675528 +"Q7KUK9",0.020913589507586,18.4155809725565,0.228702397200384,0.82212427506703,0.886572285524054,-7.00102601694279 +"Q95029",0.0126754140699141,21.8280362916362,0.228211511290749,0.822499065032838,0.886572285524054,-7.00114415658757 +"Q9VDF4",-0.0102483433246157,18.6747345785675,-0.227830356038217,0.822790106709374,0.886572285524054,-7.00123571389372 +"Q9VDK7",-0.0115601617366856,17.8691561342521,-0.225729520876496,0.824394738133668,0.887727839384737,-7.0017376275622 +"Q9VQV7",-0.013247744178857,16.2592205454246,-0.224092964642772,0.825645310651359,0.888500889139656,-7.00212541929713 +"Q966T5",0.0143066225780366,16.5266111685044,0.22274769726173,0.826673660025002,0.889033955462092,-7.00244208919852 +"A1ZA83",0.0134954443873987,17.053003110732,0.220293957292087,0.828550189583475,0.890477909938941,-7.00301480955 +"Q9VTB0",0.0159607482197153,17.0111822847905,0.214914103775497,0.832668257614939,0.894327529749979,-7.00424844177195 +"Q9W3T7",-0.00944424756185569,17.4221886654468,-0.213831636796094,0.833497459186807,0.894642060439893,-7.00449299462672 +"Q7KND8",-0.0140071991565005,15.4398112725021,-0.212507052499478,0.834512407026224,0.895155430816555,-7.00479057703669 +"Q9VTV9",-0.0151812695230014,17.2444726586716,-0.209971355062595,0.836456201757653,0.896663846100107,-7.00535512149828 +"Q9VZV2",0.0186108160129379,15.0230289181824,0.208390600379306,0.837668521299336,0.897061510295369,-7.00570364938511 +"Q9W2N0",0.00958567346414796,16.1920856092483,0.208085215302353,0.837902777602029,0.897061510295369,-7.00577067945893 +"Q9W3N9",-0.0161028929967237,20.1933715355376,-0.206942394320731,0.838779558538093,0.897424184503874,-7.00602065404535 +"Q9VFR0",0.0315265851937063,15.3456380892044,0.206020613728018,0.839486916169951,0.897605241135563,-7.00622128204803 +"Q9VQG4",0.0128549393544937,19.1605568909256,0.203334967889169,0.841548643293384,0.899045101983267,-7.00680074192865 +"Q9VZZ6",-0.0114540866577286,18.4276476323308,-0.202223438750937,0.842402297268202,0.899045101983267,-7.00703835495809 +"Q95RQ8",-0.0433778982715936,14.2995654179286,-0.202160635534541,0.842450536210939,0.899045101983267,-7.0070517418175 +"Q0KI98",0.0135110380530303,16.6256915397041,0.195897822662427,0.847264218040727,0.903561309043579,-7.00836592205731 +"Q86PD3",-0.00748465057897008,18.8915751890195,-0.195245642806291,0.847765856506716,0.903561309043579,-7.00850040934701 +"Q7JVZ8",-0.0184968365452605,16.0218361622075,-0.193862314546891,0.848830098250746,0.904117882427997,-7.00878419108472 +"A1Z9J3",0.0105146814507862,17.646106378832,0.189395429830842,0.85226868607517,0.90720112850886,-7.00968683575155 +"Q9VZS1",0.0182219252363094,15.4530562217287,0.186823610005374,0.854249869001687,0.90873009023904,-7.01019703594648 +"Q9VAY3",-0.0172591983259753,13.9219856041427,-0.183509847410913,0.856804092331632,0.910866300834393,-7.01084418589357 +"Q7KQM6",0.0110081469667964,15.1541754843997,0.179117274983268,0.860192394897583,0.913885932923037,-7.0116842452535 +"Q9V3Z4",0.011475694901673,18.7840867784644,0.177589690709786,0.8613713967769,0.914079103226172,-7.01197163944792 +"Q9VKK1",-0.0178623480159601,14.529468622612,-0.175814685484418,0.862741787098907,0.914079103226172,-7.01230250342436 +"P91926",-0.0165399355122133,17.6880934196697,-0.175801183442859,0.862752213079622,0.914079103226172,-7.01230500754265 +"Q9VP18",0.0102308237876905,17.1233685215656,0.175660551252951,0.862860807739724,0.914079103226172,-7.01233107811063 +"Q9I7I3",0.0220450937776029,14.5919659327704,0.1753323385504,0.863114261139821,0.914079103226172,-7.01239184174686 +"Q9NBD7",-0.0255593719459348,13.228534542692,-0.173123933564145,0.864820044076281,0.915304462892917,-7.01279775166644 +"Q9VZ20",0.00692572584909712,18.7115425488531,0.167223138390327,0.869381226273124,0.91904375360563,-7.01385718786652 +"Q9VXG4",-0.00954626419870763,19.9377508678898,-0.167127668877919,0.869455061864319,0.91904375360563,-7.01387402772391 +"Q9V595",-0.0092416584114261,18.5168851432848,-0.162804498814372,0.872799879633389,0.921995059676056,-7.01462654954114 +"Q9VUQ7",-0.0149500369871216,16.536811375786,-0.161125384396428,0.874099681911303,0.922783714827882,-7.01491352945809 +"Q9VPX5",-0.00721754159174637,18.8077847351084,-0.154509698987919,0.879224487099805,0.927606859255202,-7.0160153676909 +"Q95SH2",0.00907135668008863,18.721918760571,0.15053036951331,0.882309753206167,0.930047434872176,-7.01665594505445 +"Q9VQ29",-0.00858064152914295,22.1437524929704,-0.150087901490422,0.882652931296555,0.930047434872176,-7.01672614249298 +"Q9VWU1",0.0144918902395794,14.9217294049625,0.146456001011981,0.885470742278028,0.932427524065499,-7.01729455574496 +"O97422",0.020658668854221,15.403029317828,0.142983053819884,0.88816672151916,0.934137253370954,-7.01782510567179 +"P08120",0.0124207796672202,18.2201574118654,0.14292160136075,0.888214438756795,0.934137253370954,-7.01783437922196 +"O15943",0.00580114304581159,20.1724977213387,0.140943594223199,0.889750579183819,0.934364029709731,-7.01813074891635 +"Q9VTZ5",-0.00673215891297829,18.0407135715772,-0.139808597502384,0.890632235316179,0.934364029709731,-7.01829894818543 +"O97479",0.0139318322703552,17.9029654606802,0.139267987729282,0.891052228957113,0.934364029709731,-7.0183785861829 +"P56538",0.008302702295925,17.0907551923562,0.139166491839158,0.891131083725397,0.934364029709731,-7.01839350337436 +"Q9VEJ3",0.0148053491916613,20.0154421212362,0.139037994869834,0.891230918026488,0.934364029709731,-7.01841237344475 +"Q9V470",-0.00647771226300264,19.9363777477861,-0.138080641058124,0.891974783117768,0.934556493869621,-7.01855241566979 +"Q9VZY0",0.0104392110751927,17.1986881468968,0.137138228786718,0.892707140807853,0.934736667211236,-7.01868932953191 +"Q9V431",-0.00635192559257192,18.5297012868093,-0.135178077113847,0.894230715426209,0.935744562942858,-7.01897110483023 +"P16378",0.00691542596874228,20.4467666605917,0.130998382098079,0.897480910001318,0.938556838797616,-7.01955842823995 +"Q9VMG0",0.0282456321789919,14.7384410770333,0.12959961249902,0.898569040516608,0.939105989712846,-7.01975087091983 +"Q9U4G1",0.00629170519393085,19.3441652066891,0.126892167924972,0.900675809580165,0.94071837844691,-7.02011750452868 +"Q9V3I2",-0.00623517862583789,17.4902440967385,-0.121562418417977,0.904825332859639,0.943874904319765,-7.02081667303607 +"Q6NP72",-0.0100188587110033,18.743895516546,-0.121556786173224,0.904829719428839,0.943874904319765,-7.02081739605178 +"Q9VEK8",-0.00507531036223341,18.8746279299485,-0.117825079593241,0.907736785307712,0.946315598683289,-7.0212890879869 +"Q8MRT7",0.00951723062046383,15.4242879439663,0.111509271141086,0.912659990563741,0.950853756564847,-7.02205396425119 +"Q7JZF5",0.00586181374080219,16.9290777026881,0.109094946594183,0.914542955598765,0.952220755267628,-7.02233523906744 +"Q9VDQ3",-0.019862532528002,13.3181937038527,-0.105712569437847,0.917181803611478,0.954372581674327,-7.02271895590822 +"O77430",-0.00451915006364345,19.5431140055863,-0.104473280648787,0.918148919587095,0.954783290443438,-7.02285652771308 +"Q9VGE7",-0.0114232720215384,13.8927937472339,-0.0988776170141977,0.92251729959906,0.958728259022574,-7.02345752302842 +"Q9VHK6",-0.00849798331959306,18.0711183088705,-0.0958668429360334,0.924868801900668,0.960573575074915,-7.02376722307966 +"A1Z7P1",0.0143175853314332,14.6167915107048,0.0861441153622853,0.932467356656893,0.96739005431653,-7.02470202000094 +"Q9VK18",0.00620207364719683,14.5787447700412,0.084705172155269,0.933592520954081,0.96739005431653,-7.02483189250375 +"Q9VCU0",-0.0104702399817533,17.3680792214299,-0.0846029843210762,0.933672431081866,0.96739005431653,-7.02484103239895 +"Q9VGL0",-0.010730953744611,12.8872030662109,-0.0838460808548172,0.934264346818257,0.96739005431653,-7.02490838824667 +"Q9V4Q8",0.0051984093270363,16.89619517376,0.0837598791034011,0.934331761093483,0.96739005431653,-7.02491602086912 +"Q8SZ63",-0.0110112114616676,14.0299798104023,-0.0827439256334192,0.93512632871538,0.967612106884152,-7.02500538615184 +"Q0E8E8",0.00484575466280646,21.6435114708839,0.0761313234178526,0.940299681655583,0.972361977062314,-7.0255604167247 +"P25455",0.00566454189541155,15.812939069084,0.0744859460461024,0.941587378869807,0.972560850544809,-7.02569134911207 +"Q9VDU7",-0.00399454010227629,18.3145236214828,-0.0743955390359969,0.941658137667786,0.972560850544809,-7.02569846048288 +"P02515",-0.00932824833738621,18.0326995472869,-0.0722479134052828,0.943339166121822,0.973694139289109,-7.02586485402567 +"Q9VC67",0.00528792130943145,15.1425192935636,0.0708267311267207,0.944451732909845,0.974239635432048,-7.02597228637441 +"Q9VXP4",-0.00328259174884948,17.9865149678024,-0.0693826818489042,0.945582323180093,0.974803037740665,-7.02607926267839 +"Q02910",-0.0107147410030244,16.2920398066608,-0.0653127484173663,0.948769439324576,0.977484511916858,-7.02636891651676 +"Q9VN71",0.00507245446574345,18.6232407142644,0.0632279011631949,0.950402411282315,0.978375445935152,-7.02651051725049 +"Q9VS97",-0.00686807505340603,15.1302822517695,-0.0627110010415752,0.950807312866236,0.978375445935152,-7.02654491436911 +"Q9VFM0",0.00624396168275432,14.3512391004061,0.0612505774435631,0.951951376591112,0.978948764583215,-7.02664057318039 +"Q9V4E0",-0.00722013399692401,18.4524425057857,-0.0589680345791877,0.953739687795002,0.979409323545544,-7.02678556923781 +"Q9VD26",0.00450691698662276,16.2112594309386,0.05871725708771,0.953936181052717,0.979409323545544,-7.02680116406701 +"Q9V438",-0.00296473934281138,18.9710396139007,-0.0575668140386318,0.954837634189189,0.979409323545544,-7.0268718539991 +"Q9VL66",-0.00355459534329405,15.7470883406072,-0.0575663527268933,0.954837995672257,0.979409323545544,-7.02687188206436 +"Q9VLV5",0.00284564134480192,17.4819632277792,0.0565056885669288,0.955669157115529,0.979409323545544,-7.02693581622354 +"Q9VWW2",0.00948694389416538,15.1819099648194,0.0561826741569719,0.955922289407761,0.979409323545544,-7.02695505064214 +"P08736",-0.0027046375513109,24.3646443327998,-0.0528399854302561,0.958542090802698,0.981490612313629,-7.0271476241445 +"Q9VA41",0.00395254592240235,17.4602103019853,0.0519228319375235,0.959260988860016,0.981624128477612,-7.02719839793517 +"Q9VRL2",-0.0114286819247393,12.0550068605055,-0.0487625886035803,0.961738377083954,0.982722841698612,-7.02736654272758 +"P40417",-0.00243913563165066,19.8271230380465,-0.0486908386788936,0.961794628338576,0.982722841698612,-7.02737023777076 +"Q9VS02",0.00365502229116288,17.9380007074566,0.0478290744393976,0.962470259524871,0.982722841698612,-7.0274141927045 +"Q07093",0.00525214845497324,14.5701623715482,0.0475471199381367,0.962691320944563,0.982722841698612,-7.02742840364537 +"Q0E9B7",0.00809952576193318,12.7939487488336,0.045512159906604,0.964286887675067,0.983749558802454,-7.02752847792424 +"A0A6H2EGA2",-0.00331949021692246,15.8277827915129,-0.0443887632275355,0.965167785812775,0.984046373310335,-7.02758184929177 +"Q9VZ49",-0.00366206529748681,18.9074786777257,-0.0436175716982682,0.965772533629505,0.984061445384248,-7.02761771584479 +"Q7JUN9",0.00965799835391046,13.4694893298639,0.0409465312452218,0.967867257328788,0.985032128747443,-7.02773708281221 +"P02283",0.00289284719884364,21.5707862207558,0.0408967876151435,0.96790627039392,0.985032128747443,-7.02773923431364 +"Q9VCU6",-0.00300710857846909,15.4529955935673,-0.039262790333462,0.969187832473826,0.985734941808745,-7.02780845399755 +"Q9W3C4",0.00788558239062276,14.800857515061,0.0359215701326277,0.971808656998685,0.987798196144916,-7.02794121206609 +"Q8T9B6",-0.00228568391264261,19.5012820686822,-0.0351655755129619,0.972401700305268,0.987799047569541,-7.0279696136429 +"Q9VXJ7",0.00295871425714367,14.9658939436786,0.0320055591468359,0.974880766722251,0.989714618924355,-7.02808179184767 +"P22769",0.00164596211016743,20.1350200457907,0.0288107747862331,0.977387380412084,0.99165580932321,-7.02818447615096 +"Q9VGR2",-0.00172952158109396,15.6570768685178,-0.0271837690969323,0.978664018050764,0.992347466327461,-7.02823262447028 +"Q9W073",0.00192614953944314,14.584758768203,0.0254774540545785,0.980002950697869,0.99269055342264,-7.02828011413403 +"Q95SN8",0.00252944908750763,17.6489964173654,0.0252357097294118,0.980192650771636,0.99269055342264,-7.02828659342352 +"A0A0B4KH34",-0.00106755492632615,23.3811049928496,-0.0208876046091816,0.983604867328252,0.995181614972143,-7.02839258563955 +"Q9VLS5",-0.00167155088650794,14.6124685115176,-0.0200696658680223,0.984246791449618,0.995181614972143,-7.02841029115426 +"Q9VW40",-0.00146141525960175,14.670634129146,-0.0197769705864472,0.984476503532047,0.995181614972143,-7.02841645518514 +"Q9VGS3",-0.00118769695007614,19.3094007689564,-0.0190604117067429,0.985038876690053,0.995181614972143,-7.02843116339482 +"A1Z8D0",0.00348197047848409,13.8043293756131,0.0179061361796435,0.985944797789036,0.995287202771693,-7.02845371499541 +"P25171",-0.00145069914557716,16.7632053532891,-0.0172789471428889,0.986437049003202,0.995287202771693,-7.02846537817475 +"Q9VQR9",0.00112544658415104,16.2449796779376,0.015215123889866,0.988056885935143,0.995287202771693,-7.02850082177348 +"P54397",-0.00110050331423395,14.7812654132882,-0.0146474700992782,0.988502431271807,0.995287202771693,-7.02850978106062 +"Q9VHA8",-0.000699213285766831,18.5873791541192,-0.0140275002189042,0.988989043446205,0.995287202771693,-7.02851917691869 +"Q9VQF7",-0.00141314544401183,18.72478390172,-0.0139193352406115,0.989073942223982,0.995287202771693,-7.02852077457177 +"Q9VH19",-0.00122036884474142,13.9885956301637,-0.0128223635002635,0.989934963729033,0.995287202771693,-7.02853627872566 +"Q9VZ19",-0.00120376062118766,20.2632641760049,-0.0123279920168446,0.99032300396898,0.995287202771693,-7.02854285018425 +"A1Z6S7",0.000661246071096855,17.5635706018377,0.0120851149789852,0.990513643046169,0.995287202771693,-7.02854598400397 +"Q9W1W4",-0.00068302617390259,17.2907682443117,-0.00933845501501155,0.992669590375915,0.996853026337764,-7.02857708413095 +"Q8SYD0",-0.000590441500266436,15.4522077910631,-0.00825081597680469,0.993523332695649,0.997110059528485,-7.02858719524859 +"Q9W404",-0.000753426520880396,15.9523130302257,-0.00686032601132219,0.994614809607636,0.997605232967852,-7.02859830059869 +"Q9W257",0.000716446782185187,17.065856040695,0.00594183417455436,0.995335793800819,0.997728427920532,-7.02860451538406 +"Q9VMB3",-0.000184662290511284,18.6972010404163,-0.00290770933815306,0.997717502681074,0.999515191875094,-7.02861870669261 +"Q9V8M5",0.000124550934518908,19.8538082749928,0.00174841190430635,0.998627528117716,0.999613935279512,-7.02862155960046 +"P05031",9.85850438599556e-05,13.4766928577832,0.000696596849143441,0.999453183758984,0.999613935279512,-7.02862291881654 +"Q9VL68",-2.16626280078458e-05,20.7990471442037,-0.000491813219991274,0.999613935279512,0.999613935279512,-7.02862304744299 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant.csv new file mode 100644 index 0000000..c4e1d63 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant.csv @@ -0,0 +1 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant_fdr_only_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant_fdr_only_ms3fix.csv new file mode 100644 index 0000000..b1bd619 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant_fdr_only_ms3fix.csv @@ -0,0 +1,476 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"O16797",0.70002665321374,16.7021443619149,15.4762610034925,9.10960563757184e-11,1.51948222034698e-07,14.9894845562241 +"Q9VC06",0.651655167867567,16.4572731614066,12.8825158752365,1.25254595185503e-09,6.41841443006903e-07,12.4834135637986 +"Q9VC18",0.677337048443498,18.2956868694891,12.8682612857559,1.27225441707417e-09,6.41841443006903e-07,12.4682591092083 +"Q9VXP3",0.672862129146624,14.6276616252256,12.6954230912301,1.53918811272639e-09,6.41841443006903e-07,12.2831871397941 +"Q9VZU7",0.483502751290395,17.579644743353,11.6312407179218,5.22679588233994e-09,1.20536767985804e-06,11.0873221513721 +"Q9VIE8",0.540427659600894,24.8826894305362,11.6034639169152,5.40278987005709e-09,1.20536767985804e-06,11.054748968686 +"Q9VNE9",0.66223218560279,18.8313822329758,11.5407370228657,5.82371407014679e-09,1.20536767985804e-06,10.980925448205 +"P21187",0.580871936934624,18.9554877083743,11.4734371692041,6.314173814986e-09,1.20536767985804e-06,10.9013088341102 +"P48596",0.457556396197209,21.8671849202627,11.4204793855987,6.73079195839894e-09,1.20536767985804e-06,10.8383578469858 +"Q9VHR8",0.52279870593258,20.4200281317183,11.361821460009,7.22642493919688e-09,1.20536767985804e-06,10.7683193926513 +"Q9VZF6",0.627736242643977,15.1172064773223,11.2505401866376,8.27591091811197e-09,1.25492903740098e-06,10.634540191667 +"P17336",0.564301229115866,20.7184298598347,10.598871782266,1.87180987484841e-08,2.6018157260393e-06,9.82653170016404 +"Q9W3J5",0.557991313558906,16.1340150729091,10.3611776800631,2.54553931933993e-08,3.26612275743e-06,9.52097076306053 +"Q9VQE0",0.57893034694257,17.3636870128639,10.2862210743774,2.80784021242452e-08,3.34534105308865e-06,9.42336816630482 +"Q9VFQ9",0.445307743632561,19.1626273449326,10.231666919789,3.01662207691198e-08,3.35448374952613e-06,9.35195196274172 +"Q9VLC5",0.533100280623355,21.8300234017748,10.1695406445909,3.27451586643345e-08,3.41368279075687e-06,9.27023056470973 +"A1Z803",0.502810500204966,18.850181843222,9.80696076011547,5.32608041229487e-08,5.22582478100462e-06,8.78480652100884 +"P41093",0.623397237729094,18.9391123115763,9.5520906239641,7.55815748520452e-08,7.00389260295619e-06,8.4347059675614 +"O97125",0.537872792050305,18.5365371323678,9.47653305684329,8.39558411599955e-08,7.37043910815118e-06,8.32947415602195 +"Q9VXQ0",0.647839252227987,15.039792581842,9.25286282593691,1.1500246371265e-07,9.59120547363505e-06,8.01401952568866 +"X2JAU8",-0.420848631305216,21.7407018705736,-9.18712809955969,1.26275822807296e-07,1.0029908211551e-05,7.92017627650441 +"Q9I7Q5",-0.572597641264373,20.6437911542664,-8.9419987091538,1.79726621543433e-07,1.27178916822532e-05,7.56560608423279 +"Q9V3N7",0.393187325729439,20.5686569459863,8.92308787715234,1.84739861552629e-07,1.27178916822532e-05,7.53794619718363 +"Q94901",0.339546812259563,18.9179618462046,8.90927910012841,1.88493520091459e-07,1.27178916822532e-05,7.51772087710024 +"Q7JYW9",0.432693870019058,17.2438855857285,8.90065558954418,1.90878356615012e-07,1.27178916822532e-05,7.50507828912084 +"Q9VW54",0.476843657269495,15.8773081089544,8.87473337934845,1.98240517828887e-07,1.27178916822532e-05,7.46701922359969 +"Q8IN49",0.470517595558324,16.9208595767712,8.75063722816471,2.37869739538573e-07,1.40580555507207e-05,7.28366060286262 +"Q9VAC1",0.338415452089858,23.3693261272332,8.7258289014499,2.46748433799971e-07,1.40580555507207e-05,7.24677351523386 +"P45437",0.521029435087756,16.0942517585338,8.67906987093399,2.64445538191021e-07,1.40580555507207e-05,7.17703735103042 +"P09180",0.36148145557803,20.6734751591385,8.66547144213123,2.69839455782233e-07,1.40580555507207e-05,7.15670485858664 +"P32392",0.45403638329746,17.6603191759224,8.66265425796229,2.70971330597448e-07,1.40580555507207e-05,7.15248965150049 +"Q9VA09",0.499263239720833,16.4222463769768,8.6616341153948,2.71382430726029e-07,1.40580555507207e-05,7.15096301690795 +"Q0E9B6",0.427122002149659,19.1145416785277,8.64512604540945,2.78126998305625e-07,1.40580555507207e-05,7.12624049032333 +"Q9VFZ4",0.63956290207825,16.5965349127858,8.5060395153382,3.42470948903817e-07,1.68012218462226e-05,6.91656602225238 +"Q9VLB7",0.462060910732593,21.0974381148568,8.37270322441774,4.18993593817569e-07,1.99680375567916e-05,6.7132274834874 +"Q9W3Y3",-0.376279525027101,18.0873189781384,-8.25586580675176,5.00863984237807e-07,2.32066979363517e-05,6.53315205019892 +"Q9VV31",-0.914129140048024,15.6252071715139,-8.17157579639989,5.70281148997333e-07,2.49097891218272e-05,6.40212949146736 +"Q9VV36",-0.523209203391222,23.0997147437131,-8.1651159477932,5.76002950015551e-07,2.49097891218272e-05,6.39204951606523 +"Q9VFN7",-0.342899664269552,18.6270162802085,-8.15794749704192,5.82423126949197e-07,2.49097891218272e-05,6.38085738245074 +"P10676",-0.655514005724672,19.6680274835087,-8.11708937590237,6.20481910233004e-07,2.58740956567163e-05,6.31693563508169 +"Q9VEY0",0.48806611806225,18.0345866616263,8.09978220271419,6.37383688369489e-07,2.59306339561051e-05,6.28979220283079 +"Q9VED8",0.562512169993465,16.3629338971043,8.07747732016315,6.59883078374591e-07,2.62067851125909e-05,6.25475203918494 +"Q9W369",-0.387098211229389,22.2458235059154,-8.00966892323088,7.33557315932726e-07,2.84552000692044e-05,6.14782078571162 +"P29613",-0.339693782658394,23.8436814000175,-7.98547221665736,7.61898861164985e-07,2.88828931914363e-05,6.10951490991944 +"Q9VKD3",0.387693116567448,18.7205628702694,7.84767658830772,9.46809420892381e-07,3.50950692010776e-05,5.88987219441689 +"Q9VN13",0.490525440369577,17.063191730045,7.82801529068825,9.76814504832046e-07,3.54201433491272e-05,5.85832395301984 +"Q9W1H8",0.385123226935118,20.5885079530425,7.72596025557766,1.1494418882597e-06,4.07929589280251e-05,5.69372593070034 +"Q01637",0.407371955573714,15.9823042884879,7.71007824040378,1.17906478909136e-06,4.09725014209248e-05,5.66798351835377 +"Q9VNB9",0.734286335244629,18.9527089639193,7.67502736315209,1.24731399145555e-06,4.21909135338191e-05,5.61104945735036 +"Q9W253",0.502318549677808,15.194697491675,7.66641231492943,1.26471563350777e-06,4.21909135338191e-05,5.59703012449564 +"Q9VHC3",0.457015836325517,17.2194259054418,7.58927200806822,1.43237384104858e-06,4.68470503307654e-05,5.47104640849621 +"P23779",-0.358021434103989,20.9431527571856,-7.5062480887487,1.63914819583814e-06,5.1955878419098e-05,5.33454081292802 +"Q24276",-0.452482484912036,18.6548975736994,-7.49095598799927,1.68053378845035e-06,5.1955878419098e-05,5.30929442747965 +"Q9W1R3",-0.337114616627293,16.967994979483,-7.49041243812706,1.68202484090605e-06,5.1955878419098e-05,5.30839646385665 +"Q9VHT3",-0.441811719713073,15.7319151931264,-7.47012976041237,1.73866779632152e-06,5.27290524411691e-05,5.27485960358148 +"Q7JWF1",0.461762802531474,20.5600727128267,7.39802241185019,1.95678872276946e-06,5.82843498139189e-05,5.15517147317083 +"Q8SXD5",-0.396070167730159,20.7561679568443,-7.35660955928665,2.09486821310332e-06,6.13024592887076e-05,5.08610621887762 +"Q9VAY9",0.539726643299575,14.5982346967918,7.29446140101538,2.321566934641e-06,6.59640900998134e-05,4.9820131112129 +"Q9W0S7",0.37763851367118,17.9139971172461,7.29143000244067,2.33326217978956e-06,6.59640900998134e-05,4.97692202020631 +"Q9V521",-0.525567173324959,17.6716149072458,-7.2672352184782,2.42884935667901e-06,6.75220121156765e-05,4.93624214141835 +"Q9VN14",0.269102363427816,19.3247715347831,7.24471195339161,2.52152529801698e-06,6.89492491326612e-05,4.89829933557177 +"P22979",0.465652077338898,19.4570518402564,7.2281218595792,2.59215418972794e-06,6.90633313062349e-05,4.87030632091721 +"Q8SXF0",0.395234844043848,16.3789852273606,7.22434824858213,2.60850711768153e-06,6.90633313062349e-05,4.863933619577 +"A1Z9A8",0.473793718254583,16.7020277906222,7.18440962772258,2.78835863273403e-06,7.26715968656306e-05,4.79636519114212 +"Q9VM07",0.495597714395702,17.0004725945388,7.08928636944544,3.27106215543335e-06,8.38303224981111e-05,4.63453648242454 +"Q9W2E7",0.366292080740035,18.5299144004002,7.08100694661038,3.31702714920583e-06,8.38303224981111e-05,4.62039112968951 +"Q8SZN1",-0.45788794330478,20.111525262488,-6.95721819898213,4.09106206878479e-06,0.000101849127324374,4.40775142802972 +"Q9VR79",0.527422574355455,20.2554311892079,6.90360097478828,4.48299474589618e-06,0.000109965224061101,4.31498142639236 +"Q9VMR6",-0.334707831550777,18.7929663196911,-6.85495893936027,4.87259309474123e-06,0.000117789641768527,4.23046973387947 +"Q9VNW6",0.682036784364247,21.6437107360233,6.783635759293,5.50909921844577e-06,0.000131273964233822,4.1059491269967 +"Q8MSI2",-0.582327975782238,23.9873843716294,-6.772874986136,5.61243557656358e-06,0.000131852711855043,4.08710009212803 +"O18413",0.258916716577357,19.4214419178193,6.72130173036562,6.13659595540668e-06,0.000142164472966921,3.9965358179139 +"Q9V3D9",0.249136366340895,17.4312660305451,6.67114534198976,6.6956050313615e-06,0.000152989988935767,3.90810041907688 +"Q7K485",0.371976413082447,20.5588328085492,6.56450868400324,8.06836446340068e-06,0.000180282315855496,3.71890307040525 +"Q9W4I3",0.382106668622148,16.583541444998,6.56184372897552,8.10621923810684e-06,0.000180282315855496,3.71415436431252 +"Q24253",0.460850351484652,18.9061045823468,6.53755482196694,8.4599058861852e-06,0.000185672671291538,3.67082776634359 +"Q9W3E2",-0.634307082032205,17.6355475169739,-6.51113741710525,8.86294401712127e-06,0.000190903447001935,3.62361029487149 +"Q7K148",0.395453052232693,16.849496891228,6.50704577431801,8.92713960800414e-06,0.000190903447001935,3.6162882860362 +"Q9VQ91",-0.403575845308751,14.9730225022346,-6.46389565759137,9.63446152101037e-06,0.000203421288823358,3.53892803453403 +"Q9VSS2",0.407155963316544,16.2304029222761,6.41844761540462,1.04430250141796e-05,0.000217145676780902,3.45716589172555 +"Q9VA42",-0.527307691381427,20.2824353439044,-6.41298648425567,1.05448440163388e-05,0.000217145676780902,3.44732172377259 +"O02195",0.316027418808567,18.7009134654294,6.40052073387101,1.07811598186847e-05,0.000219304568019098,3.42483548664245 +"Q9I7K0",-0.416619711101177,16.1805296631378,-6.31112175654301,1.26463810174973e-05,0.00025414654864079,3.2629380104401 +"P12080",0.285596259557803,19.0620897410562,6.30365688322158,1.28166501709939e-05,0.000254502053395451,3.24936905977313 +"Q8IN44",-0.480054656949758,19.8683741411854,-6.28264102909514,1.33089695110877e-05,0.000259353234314979,3.21112675950819 +"Q9Y119",-0.38499807070286,17.7137644715383,-6.28001205966368,1.33719293471752e-05,0.000259353234314979,3.20633853302552 +"P50887",0.608644887749218,17.7754614717795,6.25560893872014,1.39713820904844e-05,0.000263498780044744,3.16184652125973 +"Q9VTU2",-0.247269233178038,20.8195611019302,-6.25230206770412,1.40547439760703e-05,0.000263498780044744,3.1558110398146 +"Q9VTZ4",0.355663282267823,18.1840541179795,6.25211057208263,1.40595871846416e-05,0.000263498780044744,3.15546148823732 +"Q9VAM6",-0.279667294460396,22.0854760098359,-6.10871954099286,1.82234133351846e-05,0.000337740593812087,2.89229507903042 +"Q7K569",0.437107860350558,20.5965234990322,6.09331381307687,1.87415891821387e-05,0.000343527151162718,2.86385233366868 +"Q95SS8",0.335098519722933,15.5620005249743,6.08720749029017,1.89512021671918e-05,0.000343593534944303,2.85256955806289 +"Q9VPE2",0.35168216580178,20.8567421228232,6.05321215910892,2.01636451951404e-05,0.000361644733177357,2.78966235955847 +"Q9VEB1",-0.219249144551991,25.1289450051015,-6.0278584570402,2.11202909774878e-05,0.000374772822877124,2.74264338395344 +"Q7JPS2",-0.474778117691955,20.6941733676216,-5.95909115450854,2.39603649276702e-05,0.000420693565256357,2.61467258071121 +"Q9VWH4",-0.209459618671708,24.3652003971346,-5.90868572210368,2.62926499475647e-05,0.000456483129366002,2.52046524498198 +"Q9W1F8",-0.303194807280098,17.6385092340496,-5.90349096476011,2.65460812640901e-05,0.000456483129366002,2.51073682965401 +"P42281",-0.377819404899221,21.8073675021789,-5.85682291781734,2.89399949517003e-05,0.000492570526320777,2.42317748769207 +"Q9VSY0",-0.367616895806933,22.6100148721128,-5.83799647969508,2.996828967142e-05,0.000498328240099936,2.38777256559089 +"P54385",0.383150768389172,21.5202325042604,5.83167531303873,3.03220066788232e-05,0.000498328240099936,2.37587440985297 +"Q9W266",-0.289673782480826,18.4113210385701,-5.82660398473436,3.06089215977311e-05,0.000498328240099936,2.36632494438741 +"Q7K2E1",0.458232235587591,17.4426512464403,5.82623000526001,3.06301912167375e-05,0.000498328240099936,2.36562059418776 +"Q9VEV3",-0.237806036402905,18.2516565823609,-5.82374230471275,3.07720675841088e-05,0.000498328240099936,2.36093480380807 +"Q9VWP2",-0.334703622357939,19.6330517387412,-5.81048451026852,3.15397780242001e-05,0.000505849516772748,2.33594877689801 +"Q9VSL3",0.331503229294107,22.4632904713458,5.77355717701794,3.37848137632173e-05,0.000536695898638537,2.26623162066354 +"Q9VJZ4",-0.220522531324047,21.3033885169847,-5.71421392603749,3.77467304609596e-05,0.000589441373722973,2.1538176930467 +"Q9V3A8",0.34553318989844,15.5552073607755,5.7132929466718,3.78118866836679e-05,0.000589441373722973,2.15206944285495 +"Q9VCX3",0.740206365909243,12.9894979633501,5.70111431078457,3.86845505181856e-05,0.000597461391336423,2.12894091543228 +"P82890",-0.364117076765659,19.6171589226471,-5.69218700240824,3.933750330359e-05,0.000598502305449551,2.1119747179329 +"Q9W5W7",0.37636438827661,14.9512381497284,5.69039998191007,3.94695764984716e-05,0.000598502305449551,2.1085772689572 +"Q7K3N4",0.302429815863025,17.1134116789979,5.64476304119791,4.30031603374154e-05,0.000646209652637918,2.02167271887672 +"P29327",0.304715440338725,19.5356750332922,5.63852603249216,4.35109842037778e-05,0.000648002871891977,2.00977490892564 +"Q9VA37",-0.301825946781907,21.7725286143784,-5.61988553746252,4.50661306902512e-05,0.000665223946826009,1.97418615868317 +"Q9VB22",-0.345029471083393,17.2004405191688,-5.61514896725807,4.54704090963004e-05,0.000665303880461659,1.96513590059898 +"A1Z847",-0.308033048844095,20.0786029324823,-5.59564804788569,4.71749052274481e-05,0.000684241234081594,1.92784481299581 +"Q9W199",0.495884097313928,15.8423910777886,5.57068807830973,4.94537476398745e-05,0.00071111078502854,1.88004363403997 +"Q9VZG1",-0.292498263204561,17.756194577628,-5.54760800678704,5.16625870790161e-05,0.000736523036305972,1.83577217423241 +"Q9VBI2",-0.220774129974711,22.1089763996613,-5.54254531371291,5.21606379448265e-05,0.000737321560101446,1.82605205251182 +"Q9VWV6",-0.459023564726412,23.6390966134418,-5.48714417502078,5.7947592091783e-05,0.000812240198395748,1.71947373488777 +"Q9VJQ3",0.240390312671288,20.5325916420758,5.43686569245261,6.37755313676742e-05,0.000882372251976786,1.62241860131551 +"Q8IQG9",-0.291682818226199,20.4555174490641,-5.43495179638824,6.40090182788916e-05,0.000882372251976786,1.61871793118236 +"Q9VAN7",-0.249885550369068,23.6944333150589,-5.3933965354236,6.93028947701581e-05,0.000947518266201834,1.53825670940666 +"Q7K5J8",-0.300696750983935,18.2385081807922,-5.38559013647475,7.03469298430693e-05,0.000953972999823086,1.52311806612721 +"Q9VTY2",-0.326935872548944,20.7753534996972,-5.37641201844478,7.15952740937552e-05,0.000963071912809546,1.50530983329767 +"Q9W414",0.208255238827395,19.5571386192577,5.36653215714039,7.29647185903941e-05,0.000973641204870219,1.48612860547114 +"P18432",-0.332670835755987,23.6507353002834,-5.35377061582284,7.47738213931517e-05,0.000989862968918866,1.46133529582441 +"Q9VUY9",0.247754041498741,19.7353463817489,5.32000084253096,7.97884832742459e-05,0.00104793063072002,1.39563249481756 +"Q9VXZ8",0.328472190262111,17.9113836919935,5.28045187185201,8.61064253231072e-05,0.00112207435499174,1.31851296352346 +"Q9W370",0.583547445019445,18.3654871504733,5.27357535077222,8.72566962429588e-05,0.0011282493746764,1.30508506402912 +"Q9VAJ9",0.365775025611796,17.6372822657718,5.25531872657116,9.03882999248811e-05,0.00115975141749771,1.26940814054034 +"Q9VW34",0.343410485076909,18.4621667280435,5.24208866925923,9.27301254543889e-05,0.00118071640654901,1.24352976691891 +"Q9VNH5",0.254665756070191,17.113419698231,5.21793086757129,9.71694183550441e-05,0.00122786810466829,1.19622401481375 +"Q9U9Q4",0.26414610048294,17.9148149775483,5.18702103576137,0.000103171750957378,0.00129391338794667,1.13559850568431 +"Q9VV39",0.24491089616938,17.5252227826175,5.17141480679813,0.000106346558120349,0.00132377655928912,1.10494755603968 +"Q9VXY3",0.235714048462391,18.0974322757029,5.16683125682829,0.000107298041732466,0.0013257269156278,1.0959401254103 +"Q9VSR5",0.294551748150027,20.2711842710254,5.144730294644,0.000112010841514868,0.00137378002681471,1.05247484584833 +"Q9W086",0.302390541428563,16.8755113177334,5.1347259575627,0.000114213942958619,0.00139057559748158,1.03278160421898 +"Q9VJI5",0.36741730937306,17.5498214378569,5.12830354264016,0.000115651786305165,0.00139787811273199,1.02013338157038 +"P19334",-0.764609439301758,15.1882842984039,-5.10978059160279,0.000119904266449637,0.00143885119739565,0.983628847055609 +"Q9VHT5",0.308544748154958,15.6335189014043,5.09886231611464,0.00012248615999952,0.00145933510627999,0.962093633833708 +"A8JTM7",0.332600069877422,17.640158016,5.08619199986147,0.000125554422831477,0.00147650417290346,0.937086270914821 +"Q9VMD3",0.271521469205874,17.7803358017747,5.08482776576374,0.000125889483703616,0.00147650417290346,0.934392638059166 +"Q9W3R8",-0.274313961883198,17.3265323674358,-5.08201674888938,0.000126582791801675,0.00147650417290346,0.92884174177686 +"Q9VLP0",-0.328541123710652,16.1190876670951,-5.07206869698407,0.000129068176920839,0.00149503971599972,0.909190471370553 +"A1ZB70",-0.269028125908738,16.1040253476183,-5.04578443128573,0.000135880081574047,0.00156308949010697,0.857217216500446 +"Q9W3X7",-0.237498807342039,21.6193069399451,-5.03823295401769,0.000137904928197555,0.00157551657694193,0.842271529472877 +"Q9VUX1",0.312309412109167,16.4208572694559,4.98442561951703,0.000153263513788195,0.00173907170747421,0.735602136223742 +"M9PEG1",-0.391447802550292,20.3109534931276,-4.9777649910903,0.000155283698920911,0.00174956017375977,0.722376739885817 +"Q8SZK9",0.238460317487991,22.1503916875227,4.97449456688287,0.000156285651013313,0.00174956017375977,0.715881272147197 +"Q9VE24",0.299330085450292,15.8843580865115,4.97088384766382,0.000157399599044396,0.00175028354137369,0.708708648314317 +"Q8I099",0.284149399290129,16.8593425287776,4.95196924052289,0.000163370101468753,0.00180464456456874,0.671113158667781 +"Q9VH64",-0.37608485515684,17.5281211343162,-4.94315533237312,0.000166231475232656,0.00181864632403056,0.653581710377804 +"Q9VSY6",0.317122237703252,17.7224056013374,4.93920856226062,0.000167529451137293,0.00181864632403056,0.645728752258417 +"Q9VW68",0.260361381036226,22.9547229972386,4.93506844564706,0.000168902234912495,0.00181864632403056,0.637489385639714 +"Q7JYX5",0.363782950793182,14.9157334791088,4.93477819800756,0.000168998909007636,0.00181864632403056,0.636911690031895 +"Q9W0Z5",-0.352732914082209,16.9305587713928,-4.93035695545094,0.000170478577949215,0.00182280941038007,0.62811079477104 +"Q9Y143",-0.222170154630689,20.9487170866769,-4.92420944326629,0.000172558186653435,0.00183329334610146,0.61587031003561 +"Q7KUT2",0.28597822574778,18.2106855216054,4.92037821824997,0.000173867427643624,0.00183551183107319,0.608239919807443 +"Q7JXZ2",0.519931583660583,17.5511053363175,4.90975907878428,0.000177550026127966,0.00186260027409716,0.587082784680815 +"Q9VKG4",-0.306213743134984,15.899107926057,-4.89657169040665,0.000182235318807367,0.0018998031985668,0.56079306945674 +"Q9VZX9",-0.218951077727624,18.447175315933,-4.88384140486995,0.000186878992154429,0.00193611278828315,0.535398219816729 +"Q500Y7",-0.230944799426535,20.0524794161375,-4.87233272981424,0.000191181856777705,0.00196846504385933,0.512426526741394 +"Q9NJH0",0.217100952786886,21.1878417031123,4.86775935883892,0.000192919937784766,0.00197417457806742,0.503294321642704 +"Q9W3M7",0.275446157818344,16.064050702907,4.85886641460081,0.000196346344638044,0.00197934615053873,0.485530857405942 +"Q6IHY5",-0.287683946225044,20.8899641977379,-4.85848187233454,0.000196495911461738,0.00197934615053873,0.484762568958411 +"Q9VBC7",0.321967787993602,16.1582736960174,4.85722576618338,0.000196985288362968,0.00197934615053873,0.482252857020012 +"Q9VSA9",-0.285811033182537,22.3317226522773,-4.84748676783709,0.000200822391718141,0.00200581885859796,0.462789060299857 +"Q9V9Q4",-0.240406399234594,19.1265432706543,-4.82863501392086,0.000208469844011174,0.00206980773696809,0.425087097766671 +"Q7KVQ0",0.432005766677916,15.7066085133946,4.81034121531166,0.000216177486972257,0.00213363342171435,0.388468619801143 +"Q9VCK0",0.329403135052594,18.2468436096057,4.79076644425233,0.000224749958544174,0.00220519371089225,0.349251149541224 +"Q7JXC4",-0.202450725636041,21.6189177461977,-4.75106914341533,0.000243224158353452,0.00237250231657052,0.269609999888114 +"Q9VIF2",0.261085776810932,17.468934630371,4.73920546180098,0.000249042786785988,0.00241513586255249,0.245781145074945 +"Q7K5M6",-0.237976352437119,18.1995592081871,-4.72656913362741,0.000255397801553315,0.00246244816757763,0.220386532777508 +"Q9VHB8",0.424426224705128,15.5411092225851,4.70024625337509,0.000269176337806798,0.00258038006587207,0.167441421685379 +"Q9V8F5",-0.356629976633105,16.0079886319342,-4.67771519470389,0.000281575442773468,0.00268381622026368,0.122075230109675 +"Q9VD02",-0.250867324146821,18.2279487637161,-4.65585392913228,0.000294166612059514,0.00278373059973848,0.0780162873433667 +"Q8IM93",-0.283696373518435,19.0276876481251,-4.65377129862027,0.000295395872993832,0.00278373059973848,0.0738168794210914 +"Q9VK39",-0.286745643782403,18.131973099229,-4.64967380690949,0.000297829800963,0.00279089948318137,0.0655536563427956 +"Q9W3H4",-0.233102936804332,19.5096195075528,-4.64093166120093,0.000303091679212721,0.00281409933284339,0.0479191083313104 +"Q8SXQ1",0.311299752567717,18.6290177333548,4.63996426348306,0.00030367978411979,0.00281409933284339,0.0459672968644167 +"Q9VBP6",-0.191634112333826,23.1284348586979,-4.6342538761929,0.000307175194421276,0.0028307636701364,0.0344445084076197 +"Q8IN43",-0.81555948284166,17.8871994134707,-4.59996239904702,0.000329051235098443,0.00301570033046265,-0.0348068664632235 +"A1Z7X8",0.237532769616493,17.0303232491974,4.57933445735895,0.000342973894521249,0.00312612271071827,-0.0765100674051169 +"Q9VW66",-0.195412548740475,21.3461254613284,-4.57325009285055,0.000347194713631026,0.00313454993518967,-0.0888170981114795 +"Q9VPN5",-0.212552574567734,21.260754224716,-4.57258842949998,0.000347656917272235,0.00313454993518967,-0.0901556380029147 +"P28668",0.368157692839675,15.5354845648377,4.55472735401942,0.000360374837224432,0.00323069393235341,-0.12630118286308 +"Q9VPF6",0.38831220457269,14.0052079381834,4.55222528885367,0.000362194103926912,0.00323069393235341,-0.131366569938141 +"Q9V3V0",0.274452294929976,14.3313840693417,4.54897963112973,0.000364568066149892,0.00323457199115968,-0.137938053676907 +"Q9VGA3",0.234577795340911,19.4403160382186,4.52006189315594,0.000386435737001658,0.00341044872655431,-0.19652259666548 +"Q9W402",-0.190735876694088,21.2296912517434,-4.48422777317456,0.000415408375102165,0.00364684826142322,-0.269203709512673 +"Q9VMW7",-0.202270495914622,19.4030192778855,-4.48128486235238,0.000417884428807368,0.00364937815314497,-0.275176770311272 +"Q9VXC9",0.45222577967554,19.0325347770872,4.45125132492191,0.000444033570527455,0.00385754164395727,-0.33616838990176 +"P48375",-0.295596312640086,21.8927195247809,-4.43133511445098,0.00046229127766457,0.00399534637898706,-0.376647534091419 +"Q9VG69",-0.224027368852262,19.9524891538225,-4.40058843003363,0.000491997369166601,0.00423016294726747,-0.439190121247588 +"Q9VGA0",-0.313081302315236,19.2934822168667,-4.39532672443896,0.000497273202232121,0.00423696402128919,-0.449899106662826 +"Q9VXN4",0.259480160954464,14.9939832243931,4.39336136118913,0.00049925863726284,0.00423696402128919,-0.453899592396955 +"P91927",-0.338155683050466,19.2651784593747,-4.39222645511168,0.000500408820260174,0.00423696402128919,-0.456209796600644 +"Q00174",0.221896889266286,21.9951719263408,4.38386002276032,0.00050897182911693,0.0042877020755911,-0.473242884087167 +"Q9VAQ4",-0.351776868674889,15.9898182085765,-4.37315562215846,0.000520146417167792,0.00435982022028079,-0.495042047663763 +"Q9VPL0",0.302117561008066,15.1423461703483,4.34354487640409,0.000552381014914711,0.00460685766438869,-0.555378970775463 +"Q9VM12",0.222167659589623,18.9493164431643,4.3401513004794,0.000556203296084917,0.00461565720333155,-0.562297221121874 +"Q24238",0.290097407084511,16.3788437452488,4.33617314898723,0.00056071838856535,0.00463009045607428,-0.570408042643818 +"A1Z8Z3",-0.313472922569609,19.9766759157919,-4.3292292378058,0.000568689363308792,0.00467277762561115,-0.584567726338459 +"Q23983",-0.216649712730334,22.3356285651967,-4.32285729932601,0.000576105482025751,0.00471050952950467,-0.597563449941664 +"Q9VJZ5",-0.214830162065367,16.9412414825802,-4.30249354246738,0.000600474550472476,0.0048858124399419,-0.639110791689835 +"Q9W392",0.179761255044294,20.0079164538587,4.28824529832186,0.000618148205506373,0.00498549940724271,-0.668194124363307 +"Q9VU04",-0.312442127265964,16.5615834179153,-4.28780393960812,0.000618704063129042,0.00498549940724271,-0.669095190140091 +"Q9VM18",-0.185216103623457,22.9303662410684,-4.27272468325219,0.000638004551239404,0.0051163057282083,-0.6998866054942 +"Q9VLY7",0.253815375113415,15.4502375152215,4.25926519920212,0.000655749912425158,0.00520247367211288,-0.727380185753914 +"Q9V3G1",0.25672813036719,21.0871792908584,4.25853499646216,0.000656726895281641,0.00520247367211288,-0.728872021368177 +"Q9VG81",0.480802078861087,15.6851787288479,4.25750561950888,0.000658106681544255,0.00520247367211288,-0.730975127107626 +"Q9VH98",-0.251089292153143,17.0354702154188,-4.24507992016718,0.000674997128345238,0.00531082646264083,-0.756365952115669 +"Q9VIN9",0.254988806321766,16.4522736798313,4.23677975434766,0.000686525108469727,0.00535731625508025,-0.773330715663382 +"Q9VN02",-0.21766492669509,17.2751636351012,-4.23620586942459,0.00068732954351749,0.00535731625508025,-0.774503802435662 +"Q9W1N3",-0.236095795017967,20.5128130276862,-4.21115173953042,0.000723400987154676,0.0056122457980186,-0.825732021111744 +"Q9VMB9",-0.249435196065122,22.5483085290325,-4.19192356073769,0.000752387591729541,0.00579199489428116,-0.865066718019634 +"Q9VMH8",0.189340751897756,18.9196842380788,4.19119106340194,0.00075351492329677,0.00579199489428116,-0.866565484201511 +"Q9VEJ0",-0.16833631416841,22.2142253267539,-4.16895481498516,0.000788567675560606,0.00603362790291326,-0.912073652604263 +"Q9VQD7",-0.183622210602582,20.9709931403091,-4.16441342737772,0.000795928234427136,0.00606213833344504,-0.921370380002794 +"Q9VH81",0.296610540200914,14.4843712733431,4.12712529321442,0.000859068401735313,0.00647098299121712,-0.997732702638082 +"Q8SWS3",-0.338772212339325,16.4742294988022,-4.1261800028137,0.000860733634490739,0.00647098299121712,-0.999669212556024 +"Q8SYJ2",-0.19143532234083,22.5464031630968,-4.12588956128555,0.000861245937679977,0.00647098299121712,-1.00026421358522 +"Q9VSA3",0.223001232877049,21.7215076102327,4.12227088901299,0.000867654875934497,0.00648990283882844,-1.00767770000762 +"O17444",0.381392393653631,15.384049081131,4.11385431978265,0.000882749363107875,0.00657333007885686,-1.02492223854391 +"P35381",0.195375189083567,25.6887317629981,4.11119533563578,0.000887573307244324,0.00657987678437126,-1.03037066811452 +"P13677",-0.42724955753596,17.018702021655,-4.1085343586095,0.000892427683309703,0.00658659015823267,-1.0358234133371 +"Q9V9M7",0.277180832993018,18.406933019599,4.1018117401528,0.000904812151381624,0.00664857563217863,-1.04960009698324 +"Q9VIK6",-0.242273031787908,16.5930698943386,-4.09957276790985,0.000908975448402494,0.00664987301726035,-1.05418874975138 +"Q9VWI0",-0.195001306271056,20.9629955481989,-4.08607025235347,0.000934498764280308,0.00676521923819003,-1.08186472008959 +"Q9VME1",-0.372594272015881,16.5475663668093,-4.08560375011863,0.000935393470249619,0.00676521923819003,-1.08282100392314 +"Q9VUJ1",0.185862077265991,20.0224658210152,4.08481413477169,0.000936909858526317,0.00676521923819003,-1.08443965271298 +"Q9VLR5",-0.401707103283691,16.8730873765268,-4.08049677939983,0.000945245215639938,0.00679598715382507,-1.09329021429537 +"Q9VX36",-0.16359465077657,22.21294527592,-4.07762727118132,0.00095082688577964,0.00680677787759845,-1.09917299629344 +"Q7K2Q8",-0.199452658315359,16.1082680275246,-4.07305313974383,0.00095979360806847,0.00684160571905217,-1.10855091789068 +"Q95SI7",-0.172529413007528,21.2148454381424,-4.06164323243539,0.000982536576868471,0.00696237948659582,-1.1319461568376 +"Q9W337",-0.309905376277589,17.7708074192759,-4.05912432688066,0.000987630696375913,0.00696237948659582,-1.13711147962962 +"Q960M4",-0.257577071352106,23.2119323258345,-4.05830624668168,0.000989290904480639,0.00696237948659582,-1.13878908916863 +"A1ZAL1",-0.32210392208539,17.2474604287819,-4.05627123503019,0.000993433044250482,0.00696237948659582,-1.14296229587833 +"A1Z6L9",0.359234454457919,15.2620958687615,4.0420767871315,0.00102281870793232,0.00713833307460719,-1.17207387500383 +"Q9VX69",-0.349761515561458,18.1594344446518,-4.01957585668679,0.00107121893469271,0.00740184127594881,-1.21823130646556 +"Q9VFS4",-0.301499419805518,15.2785942287608,-4.01928447217835,0.00107186071866815,0.00740184127594881,-1.21882911518125 +"Q7K4T8",0.351402984063988,13.6995246631005,4.01836509114508,0.00107388824267363,0.00740184127594881,-1.2207153427983 +"Q9V6Y3",0.331059267994299,15.2553607609896,4.0151664537076,0.00108097259348141,0.00741168988468633,-1.22727789746275 +"O77477",0.250164442795519,16.8476862213939,4.01252290207937,0.0010868632924887,0.00741168988468633,-1.23270176177495 +"Q7KM15",-0.222471680808678,17.0471249906335,-4.01172507643724,0.00108864749505285,0.00741168988468633,-1.2343387163434 +"Q9VPC2",-0.394269585730576,14.8166723586628,-4.00602963363845,0.00110147095423161,0.00746851037259483,-1.24602483350738 +"Q9I7K6",-0.247469097650724,16.1907077855354,-3.9705968890086,0.001184761520312,0.00800073771611505,-1.31874069158609 +"Q7K3W2",0.202884879889325,17.5828830694103,3.95916547623738,0.00121297247467764,0.00813522702038299,-1.34220490700174 +"Q9VW26",0.17294520464732,17.5302851929136,3.95858165829224,0.00121443137174782,0.00813522702038299,-1.34340330734915 +"Q94523",0.230045824124527,20.3731997672175,3.93328856350948,0.00127937177474986,0.00851838236572149,-1.39532651366409 +"Q9W1L1",0.438885752315135,14.8837168405156,3.93161731828732,0.00128378454309706,0.00851838236572149,-1.39875760870385 +"Q24439",-0.150841971448394,24.285930061975,-3.9304220987036,0.00128694985381404,0.00851838236572149,-1.40121143265867 +"A1ZBU5",-0.283947607477891,16.6730923471737,-3.92355914232259,0.00130527856234968,0.00860555194466116,-1.41530157476727 +"Q9VKU3",0.254386771324576,15.5394519495429,3.90414443859709,0.00135857212565932,0.00892164687243996,-1.45516356350253 +"Q9VV75",-0.151083429790351,23.9687786679649,-3.89999949660286,0.00137023219044881,0.00896293056340633,-1.4636742537904 +"Q9VUN9",0.167920193322521,16.7886163015593,3.89716585660047,0.00137826164517992,0.00898023603187542,-1.4694925454381 +"Q9VK12",-0.210330340967332,22.3081435730921,-3.89437916375954,0.00138620447192351,0.00899684458820395,-1.47521448489301 +"Q9VEN3",-0.191859920643481,17.5655716551264,-3.88770648034687,0.00140541202971175,0.0090861521920899,-1.48891572063606 +"Q9VY28",0.270960551981883,15.2248863431617,3.8830827789573,0.00141887912726515,0.00913780071149911,-1.4984098307872 +"P14318",-0.253928057657827,22.0865939075188,-3.88021392614244,0.00142730051518236,0.00915668176663143,-1.50430065048116 +"Q7JWX3",0.179766668955438,17.9449793816874,3.86400049305952,0.00147585279805805,0.00943188684735949,-1.53759325670601 +"Q7K3Z3",-0.183859594086361,19.8781562718374,-3.84425234607654,0.00153725040743012,0.00978676976944063,-1.57814432545455 +"Q7JWD3",-0.28713699603605,17.0995349645606,-3.83435251330851,0.00156899365548518,0.00995087991387562,-1.59847255648341 +"Q9V396",0.183555818919494,20.8718770802329,3.80981054210977,0.00165056969610636,0.0104285994435811,-1.64886515842344 +"Q9VCJ8",0.154806364395071,17.9012610217986,3.80237734270049,0.00167611189066358,0.0105500174853844,-1.66412720888285 +"A1Z8Z7",0.238047896907077,18.890075826969,3.79933287226578,0.00168668815928989,0.010561418941986,-1.67037807688824 +"A1Z6R7",-0.198581156022025,17.9225942394132,-3.79686231854578,0.00169532014332965,0.010561418941986,-1.67545052957017 +"O77410",0.251044375430519,14.348263298953,3.79640620921534,0.00169691863096657,0.010561418941986,-1.67638699119738 +"Q9VF86",0.207471943288812,17.6234348742795,3.78795939991633,0.00172679772995229,0.0106782480315019,-1.69372922578226 +"Q7JQR3",-0.211958228620123,19.0812435562556,-3.78658435039403,0.00173171169774943,0.0106782480315019,-1.69655228909996 +"P09040",-0.452959376250648,16.5098125004007,-3.78569562257001,0.00173489521375121,0.0106782480315019,-1.69837689302034 +"P08182",-0.173573696600343,19.6615495203309,-3.77905114892386,0.00175888415068779,0.0107629843661012,-1.71201807153741 +"Q9VFC2",0.243079700611577,19.8695551434363,3.77831357811411,0.0017615675850993,0.0107629843661012,-1.71353228240869 +"Q9W308",-0.318123520697178,17.1418134381764,-3.77616774419766,0.00176939806447337,0.0107713721589109,-1.71793757960041 +"Q8MR62",-0.198842223086633,17.6497943255366,-3.77255749402384,0.00178265168771637,0.0108125927822214,-1.72534913149986 +"O61443",0.303797186166568,16.539192265356,3.76504649086975,0.00181054694790101,0.0109123763387841,-1.7407680887816 +"Q7KTG2",0.227521020548846,18.0846112125531,3.76460847927481,0.00181218719774771,0.0109123763387841,-1.74166723764804 +"Q9VU35",-0.188886270735132,22.7126395080507,-3.75883388699352,0.00183395221125911,0.0110037132675547,-1.75352105450032 +"Q8MZI3",0.384930252280963,17.8046642082326,3.75263153288679,0.00185762300188861,0.0110876041030848,-1.76625242292868 +"P32748",0.220749519878934,17.2881131598324,3.75169379193277,0.00186122850651304,0.0110876041030848,-1.7681772422512 +"Q9VT23",0.266979966404435,18.2998447829677,3.74986089613762,0.00186829614677887,0.0110900995474276,-1.77193942845507 +"A1ZB71",-0.267822675827354,19.216083660209,-3.72364031897769,0.00197241301633507,0.01166661316045,-1.8257532710784 +"Q9W299",0.337259996232119,14.7391654507675,3.71904218997167,0.00199126447668892,0.011736498753064,-1.83518891683823 +"A1Z8H6",-0.414863409162807,16.7762503279013,-3.71389625187179,0.00201257699334636,0.0118203465665554,-1.84574818263131 +"A0A0B4KI23",-0.198592492230048,20.5256155739036,-3.7009079759422,0.00206739605430159,0.0120997074335967,-1.87239704711281 +"M9PF61",-0.153232699107164,22.691028400185,-3.68865592805244,0.00212048414826343,0.0123456040992627,-1.89753171636111 +"Q9VXN2",-0.362832827443693,18.4387039589227,-3.68780683924643,0.00212421365496907,0.0123456040992627,-1.89927345554261 +"P45888",0.214266218720562,17.2015325842405,3.67988515547812,0.00215932799168273,0.0125061079518291,-1.91552233343004 +"Q9VAA6",-0.350113554872012,16.1854697377216,-3.66890925210938,0.00220894737112242,0.0127492187371356,-1.93803318978714 +"Q8IRD0",0.218730568039252,17.5300171840598,3.65921488138815,0.0022537256794196,0.0129628083905928,-1.95791284080681 +"Q95RI2",-0.314597136280865,16.7231717687244,-3.65231356631349,0.00228615763823786,0.0131041613078376,-1.97206321976459 +"P55841",0.153883182046052,20.6453054138082,3.64871754664732,0.00230324213204479,0.013156834458281,-1.97943586891098 +"Q9VM58",0.252049536074482,16.4386853940296,3.64591197240191,0.00231666028270702,0.013156834458281,-1.9851876402391 +"Q9VAG9",-0.171790116438626,17.4339235197905,-3.64497207357305,0.00232117305059976,0.013156834458281,-1.98711449117214 +"Q9VR94",0.288622699034667,16.2283727919089,3.64310680468045,0.00233015499511529,0.013156834458281,-1.99093832270744 +"Q94516",-0.149387400186534,23.3667950426379,-3.64214791548096,0.00233478597101389,0.013156834458281,-1.99290401663286 +"M9MSK4",-0.198261560158727,20.5689156087235,-3.63972225497754,0.00234654206067154,0.0131785594518523,-1.99787641133263 +"Q9VV47",-0.170703423631384,20.1696428458878,-3.63733049196995,0.00235819207251908,0.0131995448891336,-2.00277912617564 +"Q9VHX4",-0.158545386500286,22.8380191014466,-3.62493721161679,0.00241949506040141,0.0134973838152159,-2.02818012602043 +"P40301",0.239337825627278,17.8483080527872,3.61456424429261,0.00247203289203581,0.0137445028797191,-2.0494361025453 +"Q9Y156",0.354215719342308,16.1390687670303,3.60891213612684,0.00250114049308318,0.0138601406726337,-2.0610165386069 +"Q9VDH3",0.159284096907729,20.5735024878118,3.59714383543408,0.00256285381222419,0.0141550998635429,-2.08512425893281 +"Q7K0P0",-0.258492100241938,15.2798450996036,-3.5949774865763,0.00257437958603835,0.0141718321766071,-2.08956148426576 +"Q7PL91",-0.278900996510473,18.8534379645936,-3.58166720311444,0.00264634497629199,0.0145200770409705,-2.11681998477637 +"Q8T3X9",-0.246626889398975,18.2902065098095,-3.57827203742397,0.00266502247806967,0.0145746147325253,-2.12377182571506 +"Q9VXZ0",-0.214026492555185,19.6747269518058,-3.57254321665998,0.00269683799462782,0.0147004110295399,-2.13550083754973 +"P48148",0.247633743666597,20.6564043639957,3.55344785444304,0.00280566051077731,0.0152437841432461,-2.17458525655007 +"P06002",-0.392528019038798,16.998277330311,-3.55099509452103,0.00281995372664964,0.015271697454713,-2.17960431879804 +"Q7K1S1",0.298407141925477,16.5853091780995,3.54905108876893,0.00283133402227571,0.0152837059843233,-2.18358211341829 +"Q9VXR9",0.223000141216763,15.2278948852988,3.54435491142778,0.0028590157916438,0.0153833494853608,-2.19319059118129 +"Q9W5W8",0.187470862122222,20.6968390638825,3.53621553304132,0.00290763710555506,0.0155946581738452,-2.20984131209178 +"Q9VJ43",0.195496860866523,20.2566934102394,3.53385984935296,0.00292186285782868,0.0156207283553148,-2.21465970174823 +"Q9VQI7",-0.146915919713468,19.1568733243017,-3.52413692088908,0.00298131973372111,0.0158876719356128,-2.23454421822256 +"Q9VZJ2",-0.17217432411281,17.3393679735216,-3.52239716183991,0.00299208559285117,0.0158942635951457,-2.23810169805736 +"P13060",0.165323347358207,20.2203302059095,3.51202154985201,0.00305710393434789,0.0161880932142612,-2.25931445330166 +"Q95RA9",-0.14062993567547,20.5009681506718,-3.49738817938059,0.00315121289514733,0.0166336174338789,-2.28922187098853 +"Q9VBS7",0.13135545994864,19.825321129059,3.48804010089102,0.0032128424345267,0.0169054295923992,-2.3083207910053 +"R9PY51",-0.255095440988942,21.508479189438,-3.4807421439749,0.00326179237084398,0.0171090241338609,-2.32322749169381 +"Q9VL10",0.245742128855861,16.7357983938019,3.47536701339788,0.00329832126894249,0.0171947910212665,-2.33420456416374 +"Q7JRN6",-0.333763554694261,14.7220934802581,-3.47530269054915,0.00329876086738926,0.0171947910212665,-2.33433591317693 +"Q9VN01",0.195421260741554,16.0631558684004,3.46669408019658,0.00335812558216296,0.0174242636415968,-2.35191257641132 +"Q94522",-0.171722581742255,23.4699495358943,-3.46550870728782,0.00336638304914472,0.0174242636415968,-2.35433244646907 +"Q9VCK6",0.305799339813076,16.5509441839027,3.46341712053434,0.00338100282350942,0.0174242636415968,-2.35860207877087 +"M9NDE3",0.1570978304502,16.1745448895629,3.46290826596177,0.00338456919656916,0.0174242636415968,-2.35964077938386 +"P17210",-0.14631725016854,20.8329678854535,-3.45759134402628,0.00342205901734171,0.0175630598182338,-2.37049294989126 +"P48611",0.242778737547926,20.1914804439693,3.45441342674078,0.00344466435623483,0.0176248470742322,-2.37697839088811 +"P20007",0.337944540886763,15.0299587402673,3.45082997294114,0.00347033329560467,0.0176462680362853,-2.38429063866374 +"P21914",-0.144799149577427,22.9103826885991,-3.44936579059843,0.00348087638332595,0.0176462680362853,-2.38727814105718 +"P12370",0.259868211560676,20.7917273321504,3.44804492181078,0.0034904149525064,0.0176462680362853,-2.38997310398048 +"Q2MGK7",-0.255251213167242,17.0802881804803,-3.44794077697841,0.00349116813667515,0.0176462680362853,-2.39018558521988 +"Q9VZ58",0.193927875638085,18.1196879992951,3.43323872958384,0.00359913905294178,0.0180497570214041,-2.42017393320609 +"Q8MSS7",0.554892322146086,14.1304949571916,3.43222511971181,0.00360670457590967,0.0180497570214041,-2.42224087883465 +"A1ZA22",0.590691853952398,13.5975987409147,3.43136085746291,0.00361316790946566,0.0180497570214041,-2.42400321855321 +"Q9VE50",-0.316000740020243,14.5952834660866,-3.43121232241277,0.00361427988318284,0.0180497570214041,-2.42430609492582 +"Q9VN50",0.226117168093559,17.8567659741871,3.42738862734685,0.00364302293140895,0.0181389917898213,-2.43210241410773 +"Q9VPL3",0.365833998319752,15.8108230451852,3.42495600004258,0.0036614277818494,0.0181763736313238,-2.43706187271418 +"Q9W1X5",0.134027599732821,19.4241554633596,3.41811452155626,0.00371368801253057,0.0183318646389545,-2.45100747113964 +"Q9VVW7",-0.15792699256459,16.5827671027172,-3.41797904432134,0.00371473036448839,0.0183318646389545,-2.45128359202819 +"Q9VGP6",0.161437932972603,17.9680198566331,3.40890415605306,0.00378522031526462,0.0186246238520985,-2.46977634533965 +"Q9W401",-0.144039309620336,24.4610095631026,-3.40615776276136,0.00380681489278064,0.0186757860034062,-2.47537171496015 +"Q9VFP6",-0.14927020142181,20.2216116606734,-3.40076738609292,0.00384955653918016,0.0188300888778666,-2.48635214412137 +"Q9VMY1",0.326796390885665,15.5447128040025,3.3991937076683,0.00386212460111192,0.0188363270019143,-2.48955737525568 +"Q86BN8",-0.345413355911255,14.203431753084,-3.39758280173014,0.00387503233818036,0.0188441805833377,-2.49283823269503 +"Q9VVL7",-0.161716351958002,23.4913505826343,-3.39255288887096,0.00391561296699654,0.0189861698515995,-2.50308112599424 +"Q86BS3",-0.182344936116206,18.952237040822,-3.38749387710271,0.00395685551359429,0.0191305362222472,-2.51338127467983 +"Q9VI09",-0.212426735619463,20.1381371136,-3.38079584718746,0.0040121263632228,0.0193416958781954,-2.52701533284701 +"Q9W309",-0.238803043580461,18.4087310050968,-3.36728623976805,0.004125955440946,0.0198331229841439,-2.55450349380017 +"Q95RQ1",0.636405896617438,11.9850982268574,3.36525217312888,0.0041433703646627,0.0198596027823488,-2.55864092646207 +"Q9VDT1",0.215731378570883,19.1389226260248,3.3610495424782,0.00417958384904704,0.0199226570058845,-2.56718826776571 +"Q9VXK6",-0.259292023613455,17.7876241337556,-3.36095366927654,0.00418041364032348,0.0199226570058845,-2.56738323799361 +"Q9VNW0",-0.412275498957237,14.6490186642389,-3.35008198597606,0.0042755803786123,0.0203181426539183,-2.58948708011511 +"O97477",0.161407346184241,20.9481550008561,3.34746997410367,0.00429876432247088,0.0203702809371631,-2.59479619005294 +"Q9VF27",-0.12465702222957,22.2454395341154,-3.34538140447276,0.00431739220039259,0.0204005954398154,-2.59904093523481 +"P22465",-0.175113275629101,22.6948147991048,-3.34174890079973,0.00434998185183721,0.0204965246578092,-2.60642261051817 +"Q7JVK6",0.229801321446498,17.3749025259571,3.33545866274459,0.00440699559126928,0.0207066722429216,-2.61920234347153 +"C0HK95",-0.310471221303093,19.9077057153649,-3.32290223974564,0.00452303656509401,0.0211553985928172,-2.64470225124029 +"Q9VCW2",0.282292394496769,15.3914870989471,3.32238683313416,0.0045278640873116,0.0211553985928172,-2.64574864347002 +"Q9VI75",-0.300923428004694,17.4077936349294,-3.32082886479261,0.00454248785649476,0.0211644406274672,-2.64891152260292 +"Q9VVN2",0.304403688991306,14.9269588089672,3.31896384621996,0.0045600554786058,0.0211871101345807,-2.6526974570963 +"Q8MLS2",0.141346129305147,17.4140712079737,3.30925321532581,0.00465262199651989,0.0215571485838755,-2.6724044856026 +"Q7K511",0.435807391984778,16.7702574142731,3.30714774906049,0.00467293732214189,0.0215913004247443,-2.67667619897262 +"Q7JVI6",0.233360798050828,17.4824302335223,3.30127121157785,0.00473010653677224,0.0217950765285527,-2.68859666612997 +"Q9VH95",-0.150207377271879,20.9115341982174,-3.29869487612483,0.0047553886523709,0.0218512073613076,-2.69382166979622 +"Q9VJ58",0.181024744852728,17.200920339582,3.29085782503543,0.0048331231765979,0.0221473886224321,-2.7097118084072 +"Q9VXI6",-0.158109712663034,22.0244918135563,-3.28239535671579,0.00491847817953376,0.0224767715163351,-2.72686317766891 +"Q9W2X6",-0.160268122200588,24.1076171080887,-3.2743730587172,0.00500077433127256,0.0227904141654716,-2.74311575328954 +"Q9V3L6",0.25927810228516,15.8467981646997,3.2730246072955,0.00501474083467755,0.02279179213145,-2.74584696920326 +"Q9VY05",0.232468935230187,18.3250737156592,3.26721410121564,0.00507536678496288,0.023004651623147,-2.75761368875483 +"Q9VQR2",-0.156284161458217,21.316904508939,-3.26159401792657,0.00513469742989667,0.0231532406350519,-2.76899144047053 +"Q9VSC3",0.302446826066287,17.5682062031792,3.26026350136798,0.00514884395685974,0.0231532406350519,-2.77168455987974 +"Q9VTB3",-0.189949029968353,19.7206045702098,-3.26017450911519,0.00514979153213685,0.0231532406350519,-2.77186468382138 +"Q9VF23",0.718199960919366,15.386895198889,3.24749739514556,0.00528655729290046,0.0237042407649408,-2.79751504979336 +"Q9W3M8",0.155688770131874,18.6024120781617,3.23848228974677,0.00538600042615022,0.0240853852836959,-2.81574527384166 +"Q9VJ86",0.281406866144899,16.5313733117483,3.22326330194177,0.0055580991771322,0.0247885278808998,-2.84650045741715 +"Q9VDE2",-0.203841211787978,19.5444834559891,-3.21934501096966,0.005603282444995,0.0249234003153378,-2.85441447367902 +"Q9VK60",-0.153596192952705,21.3328798617399,-3.20342932688807,0.00579058045391219,0.0256598209553954,-2.88654214002372 +"P14484",0.211057100390452,19.260130280931,3.20267481932066,0.00579961181066191,0.0256598209553954,-2.8880644656232 +"A1Z6P3",-0.155350337777751,17.2279586687011,-3.18065984514649,0.00606935126044372,0.0267822166730691,-2.9324527320863 +"Q9VFB2",0.235706166346835,16.445284471854,3.17825501250203,0.00609955784937578,0.0268444920653267,-2.93729796244735 +"Q9VAN0",0.146911875892744,20.4524575107322,3.17675905168838,0.00611842321668266,0.0268566576984912,-2.94031164679264 +"P42325",-0.160398691425609,20.0885314661117,-3.16163920657623,0.00631236395794997,0.0276352311859857,-2.970755570629 +"Q9V3B6",-0.237505774695666,13.2564357029021,-3.15865475400993,0.00635135683972791,0.0277331497609061,-2.97676136663993 +"Q9VMQ5",0.381818989999161,13.5418511673056,3.15305752970509,0.00642512899917733,0.0279820239441979,-2.98802191708558 +"Q7K738",-0.134898459978469,19.7699242135479,-3.14793041278635,0.00649344725317226,0.0281383627001769,-2.9983331399587 +"Q7K3E2",-0.265999544749075,20.5115944503839,-3.14783197105748,0.0064947659709641,0.0281383627001769,-2.99853108408996 +"Q9VNA5",0.21654921091757,17.3303088323977,3.13950840687423,0.00660722925231406,0.0285514466136266,-3.01526329029077 +"Q9VH72",-0.572468400497542,18.6242919449318,-3.13807841742541,0.00662674299331764,0.0285617760022063,-3.01813696395143 +"A8DYP0",-0.377223767032291,15.2555472982388,-3.13659032741603,0.00664710996462854,0.0285757201572175,-3.02112710633325 +"Q9VGP7",0.319720986194612,15.9570994145514,3.1343832612543,0.00667743110579388,0.028632275281399,-3.02556140293481 +"Q9VQM2",-0.156003454316217,20.1208291690672,-3.12974800771084,0.00674155615157015,0.0288331170790231,-3.03487213278485 +"Q9VJD0",0.211274186505472,16.1266190198027,3.12634994573057,0.00678895118202962,0.0289135609048137,-3.04169590299093 +"Q9VQX3",-0.404169406754455,15.3046044687821,-3.1259155595673,0.00679503349801378,0.0289135609048137,-3.04256809663033 +"Q7JYH3",-0.196905563824462,19.2372275614119,-3.11880844048294,0.00689531473290687,0.0292199594033137,-3.05683465725221 +"A1ZB79",-0.162785941986133,20.7839734867978,-3.11829717408,0.00690258469585774,0.0292199594033137,-3.05786068718048 +"Q0KI81",-0.200103041537293,15.625269608381,-3.11710300211987,0.00691959470282308,0.0292199594033137,-3.06025705916967 +"Q9VZ64",-0.155761178310037,19.4075982628994,-3.11515224079519,0.00694747065052376,0.0292283297031172,-3.0641712729767 +"Q9VIQ5",-0.265527688799969,16.5320015544285,-3.11451345231861,0.0069566228370129,0.0292283297031172,-3.0654528913626 +"Q7KV34",0.15514749533542,20.9565173062268,3.10570926655484,0.0070839813380944,0.0296886454068881,-3.08311117949014 +"Q9W3T2",-0.139947182715467,16.2646461658621,-3.10379679967384,0.00711194878709741,0.0297311543280162,-3.08694552098474 +"M9NEW0",-0.155875161293146,18.3233948402826,-3.10156293876054,0.00714475400915869,0.0297936242181918,-3.09142357816958 +"Q7K3V6",0.235369366604134,16.2608729176929,3.09778751584015,0.00720053698805859,0.0298606075699413,-3.09899028420117 +"Q9VL01",-0.207383992158242,20.4681607333714,-3.09751549468362,0.00720457271085649,0.0298606075699413,-3.09953539096727 +"A8Y535",-0.222513339380885,22.0363805135977,-3.09684543319387,0.00721452329177839,0.0298606075699413,-3.10087809098092 +"Q9VJE3",-0.228463826603118,15.3183107314063,-3.09217672351639,0.00728423156061696,0.0300745006017552,-3.1102316836254 +"Q9VIV6",0.591132614740918,14.8809002136255,3.08801020008082,0.00734700161100424,0.0302587621905064,-3.11857651776507 +"A8DRW0",-0.232216918512357,21.5385651758816,-3.07025883230635,0.0076204529438044,0.0313076736706053,-3.15410109068309 +"P40304",0.201437072622607,18.7817917827255,3.06819501723086,0.00765288783876414,0.0313636779239769,-3.15822823724307 +"Q8SX68",-0.182700152464573,17.5545048816255,-3.06669550495573,0.00767653931317882,0.0313834989568193,-3.16122651094399 +"A1ZBD8",0.384636524382815,14.1506677063594,3.06448806529731,0.00771148766976096,0.03143309312129,-3.16563967123985 +"Q9VZD9",0.333377441345446,14.507683285705,3.06355168056385,0.00772635981998137,0.03143309312129,-3.16751149017638 +"Q9VZI8",0.205651044098135,15.7429558136524,3.05805975384735,0.00781415509943095,0.0317129214254278,-3.17848710209319 +"Q9VZU4",-0.18913391895606,21.4020026679134,-3.04526726155501,0.00802248048920492,0.0324793627572665,-3.20403503962934 +"Q7K1Z5",-0.239539876210902,15.9893750506479,-3.03594619960563,0.00817770207805331,0.033027620014995,-3.222634208271 +"Q9W0A8",0.160047383456604,18.9039126059631,3.02492373276941,0.00836506713305006,0.0336615699752015,-3.24461067749691 +"Q7K204",-0.387955677549401,14.844577389759,-3.02434438644752,0.00837503089910588,0.0336615699752015,-3.24576523621798 +"P41094",0.11707266759122,21.1793837820127,3.022144767979,0.00841296679557473,0.0337327610937948,-3.25014828740255 +"A1Z9B5",-0.394800586394483,15.7844461984263,-3.01379996881204,0.0085584260837025,0.03423370433481,-3.26676938147447 +"Q9V406",-0.221857657405351,17.0144754808131,-3.01135029911907,0.00860159329611546,0.0343240612868914,-3.27164646317982 +"Q9VE75",-0.295224956502626,15.4468058009616,-3.00873382104592,0.00864793592298087,0.0344266279702436,-3.27685456196282 +"Q9W0J9",-0.190749096474573,18.4250195790406,-3.00660908661078,0.00868574903521181,0.0344948318826983,-3.28108301830881 +"Q9VHN6",0.244104594567455,15.0574572411412,3.00366461400538,0.00873841899654823,0.0345550698144158,-3.28694161425135 +"Q9W403",-0.209063337285579,15.2792258085667,-3.00344556435385,0.00874234979717234,0.0345550698144158,-3.28737739851005 +"Q9V6U9",-0.133401039792634,21.8925138877977,-2.99769048286831,0.00884624716253037,0.0348830739174956,-3.2988238848485 +"Q9VSL4",-0.159640424658683,20.9134564616328,-2.99083007966405,0.00897168188567534,0.0352942579842134,-3.31246155509695 +"Q9VYY3",0.132037680559399,17.544422232198,2.98431733717894,0.00909237254484424,0.0355694189450116,-3.32540077126098 +"M9PFN0",-0.16728105445749,16.681373867901,-2.98403302832081,0.00909767729699739,0.0355694189450116,-3.32596545887992 +"Q9W022",-0.159674497467176,21.1915532082581,-2.98360867746416,0.00910560065318941,0.0355694189450116,-3.3268082690202 +"Q9V3Y7",-0.310077589846131,19.5256177056986,-2.98114801600563,0.00915167888421625,0.0356658887356839,-3.33169482283247 +"Q9VSX2",-0.157133321508361,17.944612204411,-2.97866547562886,0.00919839834147475,0.0357644019430766,-3.33662377508235 +"Q4V5H1",0.251132959132306,14.9747344849668,2.97087534142076,0.00934652469713177,0.0362558213832925,-3.35208378130692 +"Q70PY2",0.438638162913342,17.2412046192329,2.96820680310952,0.00939780118322308,0.0363129292271346,-3.35737724267365 +"Q9VA32",0.227664329655969,17.2328770211429,2.96784432826454,0.00940478742573271,0.0363129292271346,-3.35809617225215 +"P54195",0.353564840158075,18.713261626981,2.96354527878334,0.00948803497842035,0.0365497513718364,-3.36662111860144 +"P54622",0.197605761751557,17.9440856725228,2.95889919913438,0.00957881366365406,0.0367788952024362,-3.3758305693616 +"Q7JZW0",0.182790281503891,19.7796760222945,2.95824732257472,0.00959161835315333,0.0367788952024362,-3.37712241310513 +"Q9VVA6",-0.171018432415664,19.2231337194335,-2.94750739811095,0.00980500808640525,0.0375109024956971,-3.39839516807963 +"Q8IN51",-0.271378941472536,17.1056454749177,-2.93844182446817,0.00998873950921547,0.0381263558383785,-3.41633537889902 +"Q9V3P3",0.12168487433587,19.3930534619775,2.93082075062588,0.0101457965562299,0.038637417022355,-3.43140543942927 +"Q7KN94",-0.137752201918765,22.626052830014,-2.92505598005562,0.0102661994985114,0.0390068810102894,-3.4427977109879 +"Q0KHZ6",-0.187829651254152,23.0740829402211,-2.9215334714997,0.0103404566668887,0.0391997311826599,-3.44975581726589 +"Q9V3E3",0.301623200119598,15.0275365621174,2.91786507638351,0.0104183470190041,0.0394054485888862,-3.45699963617409 +"Q494G8",-0.173033277345628,15.1141777705739,-2.90617906049754,0.0106703137933499,0.0402671570301079,-3.4800586103342 +"A1Z992",-0.295673309044739,14.2063575218507,-2.90398130188689,0.010718360790086,0.0403571688439355,-3.48439235603835 +"Q7KLE5",-0.130398479472408,21.4111840821455,-2.90025331014195,0.0108003448291908,0.0405742684123654,-3.49174144481895 +"O77134",-0.168571352408993,21.6840676022599,-2.89391733585188,0.0109410883162456,0.0409887936083969,-3.50422558332644 +"P29746",0.164278297223575,21.2001867950025,2.89307948393006,0.0109598333029646,0.0409887936083969,-3.50587587044942 +"Q9W5B4",-0.287949748572743,18.6238852344049,-2.88466817850186,0.0111497610778584,0.041605819861002,-3.52243574248901 +"P52029",-0.278511627918455,18.3743594242194,-2.8782375661581,0.011297125982304,0.0420616208448283,-3.53508673572605 +"Q9W425",-0.385222732754738,13.9835143410396,-2.87570879295087,0.0113555944245478,0.0421851481072288,-3.54005937070613 +"Q9V3V6",0.11535411758625,21.5772227062807,2.87333517407928,0.0114107438063411,0.0422958237088376,-3.54472575038734 +"Q9VH76",-0.148225711844916,19.3146351699551,-2.868840014384,0.0115159018535246,0.0424978165097627,-3.55355985926993 +"Q9VXE8",-0.22223106979013,16.2342135211109,-2.86882754437434,0.0115161948815424,0.0424978165097627,-3.55358436031886 +"Q9U9Q2",-0.129990515266867,15.5759078657287,-2.86569613639705,0.0115900090770241,0.0426757950120888,-3.55973595520729 +"Q7K188",-0.172414158844838,21.9843152495797,-2.86045055495954,0.0117146929623613,0.0430398851568693,-3.57003637511532 +"Q6NLJ9",-0.332444422498003,15.1427512647721,-2.85728636210527,0.0117905343464788,0.0432233215163224,-3.57624700545185 +"Q9VU68",-0.121375141473205,19.3199390217204,-2.82977127945983,0.0124704967649347,0.045615764482261,-3.63016626027506 +"Q9W127",-0.185681153933359,18.6144413935188,-2.82652758258656,0.0125531265910193,0.0457237606526439,-3.63651226102643 +"Q7KMP8",0.149150907103785,19.2071178358408,2.82536510522131,0.0125828688672751,0.0457237606526439,-3.63878600032141 +"Q9VYF0",0.189810365637969,16.1787616658515,2.82459901080285,0.0126025070222026,0.0457237606526439,-3.64028428025533 +"Q9V3W2",-0.13558660443471,21.5528556616294,-2.82431986024437,0.0126096702039665,0.0457237606526439,-3.64083019456963 +"Q9VMU0",-0.206476280743384,21.1344903415807,-2.82179109893273,0.0126747403983673,0.0458600151507086,-3.64577475170059 +"A1Z7B8",0.20268910342951,16.9816878971773,2.81768956248088,0.0127809758292097,0.0461443023444196,-3.6537916945651 +"Q9VQQ0",-0.246260761973609,18.2870671730229,-2.81447952729187,0.0128647232427069,0.0462506187330452,-3.66006357375708 +"Q9VBT2",0.599683257196196,12.9708685437615,2.81443534826245,0.0128658795516385,0.0462506187330452,-3.66014987681937 +"Q9VCE0",-0.318031096093399,15.8139199327267,-2.80715173321313,0.0130579022413891,0.0468399590078216,-3.6743725377942 +"Q9V9A7",0.5538704692911,16.0776581630576,2.80371169799246,0.0131495590677082,0.0469659664972214,-3.68108586228154 +"Q9V420",0.173515785576303,17.5231295704785,2.80306247539775,0.0131669269886007,0.0469659664972214,-3.68235254848937 +"Q7JX94",0.526423634869966,12.3127334417105,2.80211868222775,0.0131922149530183,0.0469659664972214,-3.68419380145651 +"Q95NU8",-0.190671174966603,17.3584655420832,-2.80161766128003,0.0132056584455617,0.0469659664972214,-3.68517116762405 +"B7Z0C9",-0.198559179300741,15.955244232334,-2.79613472413258,0.0133536495338525,0.0473912498350341,-3.69586339991131 +"Q9VP55",0.179551605734995,17.1281478888109,2.79359754726348,0.0134226745721905,0.0475350768289038,-3.7008088860707 +"A0A0B4KGY6",0.135621454402802,21.7701011619129,2.78785970400813,0.0135800543879728,0.0479905311846156,-3.71198787477528 +"Q7K012",0.220066064055644,15.5736184512321,2.78552628212585,0.0136445671459149,0.0481165708232263,-3.71653196281558 +"Q7KSQ0",0.13330414386126,20.9228839361195,2.78357368822605,0.0136987794098226,0.0482058313408949,-3.7203334936015 +"Q9VRP4",0.305357059886475,14.3991852990866,2.76506864128459,0.0142230344579522,0.0499453083702406,-3.75631847749653 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant_ms3fix.csv new file mode 100644 index 0000000..c4e1d63 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant_ms3fix.csv @@ -0,0 +1 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results.csv new file mode 100644 index 0000000..0ce737a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P06002",-1.09562743848828,17.0500392303794,-19.1029918221836,2.35608277208355e-09,3.92994606383536e-06,11.4154360429226 +"Q9VU68",-0.591940801372402,19.3781374414581,-13.1656116270466,9.32929525496567e-08,7.47141687033121e-05,8.3783028460908 +"Q9V4E7",-1.39747885563374,15.6676851137624,-12.6802042091633,1.3437800126495e-07,7.47141687033121e-05,8.0508611436812 +"Q9V3B6",0.59491775719539,13.0781141518043,10.8767074978829,5.86527534680223e-07,0.000244581981961653,6.69087466859314 +"Q9W2N0",-0.532885038647706,16.2840950068443,-10.2339790503294,1.04381863128525e-06,0.000348217895396758,6.14433505930629 +"Q9VZX9",-0.389388586252274,18.4390897210659,-8.85592117467118,4.00537346216744e-06,0.00111349382248255,4.84310928710813 +"Q9VM10",-0.390897980526901,17.1738876695003,-8.48174398652482,5.93928342249376e-06,0.00141524639267423,4.45592905457491 +"Q7JUS9",-0.61523525275328,20.5856564155254,-8.22742664944555,7.82321568476586e-06,0.00163114047027368,4.18376483442709 +"Q0E8E8",-0.567182386897631,21.7396571202544,-7.99142911432531,1.01615587995436e-05,0.00182760348327754,3.92443576470728 +"Q7JYH3",-0.42768260742287,19.2428728080408,-7.87924731941789,1.15300859146863e-05,0.00182760348327754,3.79881864086799 +"P10676",0.406714413769901,19.3817370793055,7.84017895356762,1.20525409568663e-05,0.00182760348327754,3.75471077529567 +"A0A0B7P9G0",-0.564586413906392,14.7571622353989,-7.43510315960306,1.92705086575501e-05,0.00267860070339946,3.28615185752977 +"P54185",0.471733552013703,17.3904454196719,7.13384561458754,2.76501543531287e-05,0.00354772749700143,2.92399479553542 +"P46415",-0.335787446928972,18.1247864423875,-6.73987245767572,4.50649964548903e-05,0.00521059123815471,2.43201262391024 +"Q9VAJ9",-0.504196945167962,17.8432400985038,-6.7090563857458,4.6857834875492e-05,0.00521059123815471,2.39262991104534 +"Q7JYX5",-0.429588638333634,15.1085925690954,-6.65672459389761,5.00810156634675e-05,0.00522094588291649,2.3254461949097 +"Q9V3A8",-0.342503694816202,15.7274690398777,-6.47883713965066,6.29517403188924e-05,0.0061766766383478,2.09418877247711 +"Q9U4G1",-0.316481859564718,19.3990094183478,-6.37286767346242,7.22806886292873e-05,0.006338094249305,1.95428623670624 +"O62619",-0.304984832282475,22.2787397991936,-6.34650609647187,7.4825639984746e-05,0.006338094249305,1.91923294804545 +"P07486",-0.299764717430843,22.174921274752,-6.33470175211386,7.59963339245204e-05,0.006338094249305,1.90350412576383 +"Q9V3I2",-0.372013471393497,17.5501679490955,-6.25776617275327,8.41260024868084e-05,0.00668200819752364,1.80049730964338 +"Q9Y119",0.350324851988901,17.5270443059725,6.20492792338406,9.02485171928284e-05,0.00684247848534717,1.72925665447379 +"Q9VLB7",-0.352529471628412,21.3102133303724,-6.13684305813144,9.88533772014069e-05,0.00701090248102981,1.6368597806006 +"Q9VV46",0.346684585623681,23.8009758845677,6.11632596399408,0.000101616204602713,0.00701090248102981,1.60888357355619 +"M9PF16",-0.249030319273778,21.2171401557281,-6.04428965055956,0.000111992756566049,0.00701090248102981,1.51016939064033 +"O76902",-0.404527458849042,17.3478713594998,-6.04277469043969,0.000112222839522022,0.00701090248102981,1.50808519995666 +"Q9VM07",0.27195204483035,17.1203464918657,6.02325911936149,0.000115232556803645,0.00701090248102981,1.48120666745311 +"Q23970",0.394229104390508,21.3776136121115,6.00773232343517,0.000117689010472922,0.00701090248102981,1.45978177471358 +"Q9VGZ3",0.462751159582542,16.8117178220821,5.90518263442855,0.000135393376273385,0.00764485535729414,1.31738365466575 +"P00408",-0.25951920101603,21.3679963070753,-5.89396211798761,0.000137497398512484,0.00764485535729414,1.30170873149721 +"Q9VUY9",-0.235133387519731,19.8571199601684,-5.71645900741567,0.000175890046647482,0.00946401928412903,1.05125265887173 +"Q9VG81",-0.338742207265211,15.9019031230125,-5.67255965322293,0.000187061170163892,0.00954792148649639,0.988587633453732 +"A1ZA23",0.273860138818961,18.3843676478415,5.65899521454622,0.000190664738275779,0.00954792148649639,0.96916668004832 +"Q9VGS3",-0.33788120191463,19.3653184036255,-5.64441241473587,0.000194621900803883,0.00954792148649639,0.94825706314804 +"O01666",-0.259321278331292,22.815771389114,-5.60159023310028,0.000206758707041846,0.00965582849497156,0.886672829892063 +"Q7K5K3",-0.263997872663111,22.8248520157055,-5.59022823564187,0.000210113194251767,0.00965582849497156,0.870286746437935 +"A1ZB70",0.304659313508715,15.9635727533973,5.57404819163926,0.000214991027507117,0.00965582849497156,0.846918883093053 +"A1ZBJ2",-0.440188581141566,19.4844404219688,-5.55791063889565,0.000219976908158825,0.00965582849497156,0.823573442773735 +"Q9W3L4",-0.326521356641496,17.6390387954845,-5.46764066336266,0.000250245948616282,0.010465334193326,0.692266737954687 +"Q9VGW7",-0.270487817541198,16.8078182026861,-5.46563451643453,0.00025096724684235,0.010465334193326,0.689334771827992 +"Q9VZ19",0.414403035698193,20.1937957498481,5.44080862921984,0.000260079458928991,0.0105807935974038,0.653002219976232 +"Q9W2L6",-0.350052570769499,20.9919168128713,-5.35805659063174,0.000293095854220223,0.0115144515153849,0.531230703230873 +"Q95TK5",-0.320612543529137,17.1913629620016,-5.34590825247896,0.000298308009096042,0.0115144515153849,0.513268171068191 +"Q7K148",-0.270125567296514,17.0263355031883,-5.32949433033594,0.000305507999236954,0.0115144515153849,0.488963615452924 +"Q9V3V0",0.283356624659209,14.3756420635418,5.3180411970179,0.000310641677573333,0.0115144515153849,0.471980867608512 +"Q94523",-0.358106457042489,20.5095661180994,-5.27413041681949,0.000331193506188134,0.0120093645287349,0.406688874175404 +"Q9W4P5",-0.261700728791922,19.6496273972188,-5.25671694643852,0.00033974115152015,0.012057196611396,0.380716962212024 +"Q8T3L6",0.236569363846396,17.3162707226768,5.16701425619889,0.00038766155294736,0.0134712389649208,0.246213922354398 +"Q9VFN7",0.245366652361341,18.4718219500585,5.12629112307428,0.000411749211585324,0.0140162792841698,0.184759318251023 +"M9NFC0",0.303870632047175,19.824179090603,5.06819634410181,0.000448909904356248,0.0149756344093244,0.0966663001250891 +"Q9VV31",0.391478504721954,15.2552510407109,5.03907521666796,0.000468866307667533,0.0150626673991179,0.0523213654337811 +"Q9VA34",0.246386186258913,14.3716941989362,5.03805896663569,0.000469579559205116,0.0150626673991179,0.0507716000813634 +"Q9VXZ8",-0.271820844321422,18.0661778961345,-5.01706172093704,0.000484577689022931,0.0152504827413255,0.0187173016556903 +"Q9W1H8",-0.200541274526483,20.7503059077752,-4.97901206546425,0.000513069842924718,0.0158481573703413,-0.0395332453864468 +"A0A0B4K7J2",-0.313676441819807,15.7492393366093,-4.95899770788237,0.000528767146843141,0.0160360654715338,-0.0702580676207711 +"Q9VXK7",-0.252140491751973,18.0897098210298,-4.90751576206122,0.000571537117434695,0.0170236412835906,-0.149557134967021 +"Q9W4W5",-0.276780853594396,17.3536950891445,-4.85712177714566,0.000616978481873846,0.0177882622934561,-0.227551178745306 +"Q9VPN5",0.218688205472265,21.1534553322814,4.85546433770935,0.000618536698453511,0.0177882622934561,-0.230122577476269 +"Q9V396",-0.227881925427813,20.9710426741107,-4.82606414279199,0.000646882358177041,0.0182881317532086,-0.275800292125857 +"P17336",0.212348168183595,20.871138908176,4.79981109440886,0.00067336003337314,0.0187194089277733,-0.316692813862993 +"Q9VZJ2",0.217075668900042,17.2457972540006,4.73890448396101,0.000739316426100475,0.020216062274354,-0.411939733879466 +"Q9VIB5",0.287700946633738,14.2548057298516,4.72033377858525,0.000760763875913254,0.0203837728984039,-0.441085160800959 +"P19107",-0.236486110617047,24.0796371641824,-4.71111467102815,0.000771655118783341,0.0203837728984039,-0.455571901083163 +"A0A0B4K692",-0.279307085630606,16.0368687201411,-4.70239273794416,0.000782111190346434,0.0203837728984039,-0.469288356024132 +"Q7KV34",-0.243262394356634,21.0487768703981,-4.63644427128229,0.000866198057508956,0.0216842462241199,-0.573344729848218 +"Q9VKC8",-0.299453100246946,17.8701071716264,-4.63424338483936,0.000869164240586642,0.0216842462241199,-0.576827784590811 +"P05031",-0.600737922214011,13.5768487065002,-4.63287793479278,0.000871009890297382,0.0216842462241199,-0.578989039567696 +"Q0KIE7",-0.54881745799122,14.1606864529342,-4.59591966800843,0.000922574149545328,0.0226302011976707,-0.637584582805661 +"P20007",0.465406321073587,15.0650392003839,4.58492737826301,0.000938526439291739,0.0226878565324438,-0.655048452427607 +"Q5U117",-0.365189334538186,14.6969046725481,-4.55241669256437,0.000987437367115669,0.0235078874590482,-0.706795744100297 +"Q7JWQ7",0.445574983353302,14.3068524119871,4.54393536231757,0.00100063549735757,0.0235078874590482,-0.720319064720148 +"Q9VNX4",-0.415941738401344,21.0604331862268,-4.52979896065231,0.00102304979656168,0.0237006536203456,-0.742880873344521 +"Q8IQ70",-0.2470919636818,18.0512569394869,-4.48655954156247,0.00109496329757242,0.0248415066593791,-0.812057831741159 +"Q9VR94",0.391084923336159,16.2593995376978,4.4824438996815,0.00110208123069188,0.0248415066593791,-0.818655284343782 +"A1Z843",-0.234240165915686,17.6695745698284,-4.43744610588779,0.00118316987614879,0.0262903349877417,-0.890933807214247 +"Q95R98",-0.305109482528687,16.4091510010573,-4.42684592146105,0.00120317358013449,0.0262903349877417,-0.907999301169843 +"Q8MLS1",0.262453311772969,18.3624020068503,4.41678173634179,0.00122249621484301,0.0262903349877417,-0.924215460391062 +"Q9W299",-0.442524429707822,14.9253395211295,-4.41322440475305,0.00122940415410303,0.0262903349877417,-0.92995045284271 +"Q95RQ8",-0.789408978528503,14.4166742815928,-4.36069014044902,0.00133635483753766,0.027984948304026,-1.01483473939203 +"Q9VH81",-0.277506326618008,14.6294925078464,-4.35794626147857,0.00134220375558878,0.027984948304026,-1.01927801300784 +"P54195",0.429188729034781,18.7595851188612,4.34649533997916,0.00136690558204976,0.0279983680638016,-1.03783131171335 +"A1Z9J3",0.213127856866716,17.6140899631711,4.34214348730552,0.00137641857387993,0.0279983680638016,-1.04488675317578 +"Q9VVB4",0.236570057131026,15.9037364775404,4.3206595753237,0.00142441444552761,0.0283396249371049,-1.07975268605433 +"Q9VC06",-0.20965637749015,16.7094342802775,-4.31944702263179,0.00142717535654485,0.0283396249371049,-1.08172225680983 +"Q9U9Q4",-0.222252610646084,18.0399057794836,-4.28551686127564,0.00150676214011884,0.0295679911731556,-1.13691030329007 +"Q8T4G5",-0.176422272503707,19.7195830072993,-4.24695226892499,0.00160292349747059,0.0310892603928018,-1.19980972738542 +"Q9W309",0.321694252665264,18.2755142817924,4.21280192277526,0.00169347016153068,0.03246791068314,-1.25566116108966 +"Q9VF86",-0.2629845635599,17.7364229493024,-4.19957626667504,0.00172996734029767,0.0327907445865512,-1.2773289510803 +"Q9VJQ3",-0.209820018670229,20.6476917494112,-4.18742276164845,0.00176423493901257,0.0330645379581233,-1.29725865343203 +"Q9W461",0.283955172854968,16.1263347650681,4.17363971975116,0.00180396176426034,0.0331045070669713,-1.31988175231241 +"P35381",-0.185856154963552,25.7848328518532,-4.16450362611444,0.00183081167360341,0.0331045070669713,-1.33488984457345 +"Q9V3N7",-0.212476379436417,20.7351321178021,-4.16370079211885,0.00183319108452708,0.0331045070669713,-1.33620914959947 +"P54192",0.282031268010748,24.2453149747956,4.15285399634747,0.00186565865553117,0.0331045070669713,-1.35404120191719 +"Q9W3K6",-0.224913036111568,16.2710424271966,-4.14938294924919,0.0018761755619305,0.0331045070669713,-1.35975048295364 +"Q7JYW9",-0.218758601663888,17.4245766426789,-4.14633935558456,0.00188544854398218,0.0331045070669713,-1.36475783153865 +"Q9V419",-0.232804785344046,16.584646965176,-4.13366014050184,0.00192459934240903,0.0334399135743569,-1.38562937382886 +"Q9W0R0",0.193027277117844,16.696931618197,4.11566786404167,0.00198162625288834,0.0336836917030961,-1.41527873025285 +"Q9NHE5",-0.394919985818973,15.7155782002885,-4.11198458568009,0.00199351755215063,0.0336836917030961,-1.4213529621597 +"Q7K486",0.209530556976727,17.6045736856005,4.1102289336585,0.00199921191762981,0.0336836917030961,-1.42424881905631 +"Q24319",-0.331507209176548,16.4221606203655,-4.09177631847648,0.0020601044727042,0.0341313121511036,-1.45470666061017 +"Q24253",-0.295294138616246,19.1089370559444,-4.08981082442612,0.00206670415303445,0.0341313121511036,-1.45795317341952 +"Q9VVL5",-0.176661557082461,17.3439667699557,-4.07619327788517,0.00211304193211693,0.0345544504193239,-1.48045795236708 +"Q9VK00",-0.469945429356713,17.9529919968021,-4.05732919201985,0.00217903950556481,0.0348898549619599,-1.51166757056503 +"Q9W308",0.279638639874097,16.9891658246316,4.05508919132921,0.00218701861029147,0.0348898549619599,-1.51537615528961 +"Q9VW59",-0.171414795459405,19.7676986367812,-4.04442037684161,0.00222544430092931,0.0348898549619599,-1.53304722717651 +"P36241",0.239918980039938,19.7907064403389,4.04379024190319,0.00222773585477207,0.0348898549619599,-1.53409132973792 +"Q9VRL2",0.674815382454266,11.9387280694548,4.04093830660072,0.00223813817801541,0.0348898549619599,-1.53881739051137 +"Q9VA09",-0.218627887054994,16.6251054380596,-4.03087430879182,0.00227525461469639,0.0351400434936442,-1.55550196616997 +"Q9V9V4",0.168990631639371,18.5881722619413,4.01861248561968,0.00232134969418545,0.035523039356893,-1.57584508581696 +"Q8SXD5",0.17134039042854,20.5955878358629,3.99631120042454,0.00240770911964503,0.0362799209415946,-1.61288579166479 +"O76742",-0.24309897861778,18.1001448748244,-3.99464085432871,0.00241431128568166,0.0362799209415946,-1.6156622454002 +"Q9VG92",0.193561125099052,16.4514759592209,3.98004761124383,0.00247280421758288,0.0368271199547164,-1.63993173594809 +"Q9VYT6",-0.318767599600449,16.4267362639587,-3.96936969024458,0.00251654177386303,0.0371468290159604,-1.65770399037727 +"Q9VR25",-0.213882787473892,17.0032265016318,-3.96305903720336,0.00254277038816554,0.0372047456794747,-1.66821299217945 +"O16797",0.197413002397198,16.9025844125866,3.95355620076022,0.00258280711986663,0.0374619328342395,-1.68404566595507 +"Q9VPU6",0.257416981692449,15.3103604421898,3.94751847081304,0.00260858683770881,0.0375096797008474,-1.69410996682806 +"Q7K8X7",-0.209825966484718,19.5467585758134,-3.89003461702175,0.00286792781834297,0.040886355564069,-1.79011475117837 +"Q9VVW3",-0.23649489716947,16.6795827100979,-3.87520441105913,0.00293911057557867,0.0415460715259764,-1.81493609885086 +"Q70PY2",0.320895760895262,17.3339347133882,3.86417691344738,0.0029932347690418,0.0419555932332918,-1.83340665202263 +"Q27272",0.434741228952591,15.6523296838131,3.85693813772256,0.00302932803478382,0.042107659683495,-1.84553760984025 +"O18332",-0.246691041303819,20.6889147303849,-3.85063241599029,0.00306113898969927,0.0421981804530445,-1.85610899290906 +"Q9V4E0",-0.231033527341079,18.4885413823436,-3.84394311580331,0.00309526612239163,0.0423188843618791,-1.86732754757668 +"Q27377",0.363700724426185,19.965285208799,3.83739146521939,0.00312907575926889,0.0424333200525245,-1.87831933041304 +"Q9VFS8",0.206048202411502,17.2017644748634,3.81246024028378,0.00326129378680775,0.0438696615838333,-1.92018320792704 +"Q9V3Z9",0.22196346199333,21.7039131658564,3.79735061625475,0.00334424651784107,0.044401724311264,-1.94558258514386 +"Q9VBU0",-0.334315659395175,14.2498213694064,-3.79509344989428,0.00335682594234773,0.044401724311264,-1.94937866494544 +"O17444",-0.403198452368509,15.578379621077,-3.79083256273892,0.00338070682705667,0.044401724311264,-1.95654582591223 +"A1ZAA9",-0.239548084067959,16.6121713894888,-3.77736966729702,0.00345733145517791,0.0450533505252871,-1.97920212818049 +"O15971",-0.233868706762818,17.1938397510149,-3.76925877307695,0.0035043657994375,0.0453122647555174,-1.99285941815169 +"Q9VEY0",0.252890640379583,18.1551269275838,3.75526078218339,0.00358711191163316,0.0457128234642966,-2.01644298312984 +"P48611",0.190571052118184,20.2406448477989,3.75277858587127,0.00360199585277831,0.0457128234642966,-2.02062670625374 +"Q9VJ68",0.237700133407483,17.7493763389874,3.75019408038705,0.003617561569117,0.0457128234642966,-2.02498343107713 +"Q9V393",-0.341790095397201,15.8772670793258,-3.74040706722292,0.00367714299392603,0.0461163497283355,-2.04148664177897 +"Q8SZK9",0.209041199220664,22.1950382601486,3.7170904593456,0.00382323857706396,0.0475907607950947,-2.08083632692151 +"Q7K2Q8",0.198943260068326,16.0086265980747,3.70326669896937,0.00391269194394847,0.0479261571284789,-2.10418678931674 +"P55830",0.150906442582954,21.9874461565182,3.69842827956524,0.00394451284476161,0.0479261571284789,-2.11236327962064 +"Q9VBC1",0.407123938885713,13.2543804818653,3.6977122759461,0.003949244586563,0.0479261571284789,-2.11357342046545 +"Q9W552",-0.20494831741085,16.297441197954,-3.69531746138068,0.00396511371926265,0.0479261571284789,-2.11762127189861 +"Q9VVP9",0.275151355559677,16.6409983442614,3.65421341420321,0.00424805758555845,0.0509766910267014,-2.1871677985677 +"Q9VD09",0.345696499053767,14.4754753640894,3.64691954910498,0.00430041629702513,0.051236388453128,-2.19952227752017 +"Q24492",-0.253769627596695,15.1759078918011,-3.62996225333771,0.00442474754601087,0.0523438220336605,-2.22826012344717 +"A1Z968",0.207073014627433,17.1412642798173,3.62132091221352,0.00448953433832282,0.052736220255792,-2.24291284856661 +"Q9VKZ8",-0.20108590645826,18.7632612065869,-3.60802031469067,0.00459118131163851,0.0535530799147765,-2.26547651292081 +"Q9V431",0.182137321470137,18.4972277580334,3.60108636333756,0.00464511560235336,0.0538059223939264,-2.27724449322855 +"P15425",-0.180412541864278,17.1064744265677,-3.59108333069518,0.00472408143136969,0.053897665733572,-2.29422705359785 +"Q9VE24",0.216843089403477,15.9479942667611,3.58871472231899,0.00474298250040985,0.053897665733572,-2.29824934331875 +"Q9VYT0",-0.169272895466261,18.295408815456,-3.58268698693959,0.00479143689147909,0.053897665733572,-2.30848715638862 +"A1Z7S3",-0.175772888321323,20.0425167116731,-3.5813825517223,0.00480199000081544,0.053897665733572,-2.31070299871804 +"Q9V3L7",-0.22439590673326,17.7156943453058,-3.57650136282676,0.00484169370963471,0.053897665733572,-2.3189956802863 +"Q95RQ1",0.563504088717631,12.1033161776103,3.57586286071226,0.00484691238611259,0.053897665733572,-2.32008055314958 +"P16378",-0.209395875683093,20.4839711151951,-3.5616024817958,0.00496499698597142,0.0548451322688764,-2.3443172415994 +"Q9VMI3",-0.2112166036739,20.288322280775,-3.54741579644356,0.00508542834113831,0.0558058846909126,-2.36844177199851 +"Q7K1Z5",0.281669963365722,15.86258343135,3.53666035289721,0.00517874349263124,0.0564584584686857,-2.38673994836196 +"Q9V3U6",0.154374906038971,21.1277270927857,3.50012861298092,0.0055091326836791,0.0596703462102385,-2.44894368924768 +"Q24372",-0.263730524140314,16.9320780588289,-3.49473803574046,0.00555969790164414,0.059829523225435,-2.45812901333991 +"Q9XYZ5",-0.223440166720348,16.0864617238036,-3.48550639536045,0.00564740980122813,0.0603838432592853,-2.47386315990693 +"Q7KSQ0",-0.175704697832657,20.9966027670454,-3.4433111702148,0.00606687928596328,0.064455762095457,-2.54583803481078 +"Q9Y0V3",0.265810070938496,15.0820187312873,3.43818000064284,0.00612003709248215,0.0646089991788622,-2.55459681912652 +"Q9VBP9",-0.323506653862108,14.0630558967419,-3.4331561723695,0.00617254824635485,0.0647535249994962,-2.56317362694646 +"A8WH76",-0.216290018358688,19.0590616544844,-3.40853483653777,0.00643669767402532,0.0665741948331395,-2.60522514024026 +"Q9W3J1",-0.196452675661636,15.6664277001235,-3.40532195076292,0.00647201613329366,0.0665741948331395,-2.61071458042326 +"Q9VLC5",-0.168407643756254,22.035791435942,-3.40296964269677,0.00649800099893437,0.0665741948331395,-2.61473395526337 +"Q9VV47",-0.171917084635528,20.1413945521166,-3.40226988185387,0.00650575165335836,0.0665741948331395,-2.61592967977217 +"Q9W403",-0.271398364326185,15.2547710901926,-3.3926709725604,0.00661303677142432,0.067259422772779,-2.63233408834699 +"Q7K3V6",-0.246706521530324,16.380447126816,-3.37514087657408,0.00681369249717819,0.068512235198856,-2.66230286842311 +"Q7K4T8",-0.302195213884882,13.8670248601026,-3.37473911691622,0.00681836393465833,0.068512235198856,-2.66298984927465 +"Q9V438",0.152085419372334,18.9447037975577,3.36743134533279,0.00690391210821937,0.0689564395000593,-2.67548674909849 +"Q9VZ66",0.160430265381629,17.0167669987836,3.32708451520672,0.00739650871086471,0.0734367650578711,-2.7445192509868 +"Q9I7Q5",-0.19784689135675,20.4858997557378,-3.30332536216204,0.00770334135306066,0.0757649828252805,-2.78519646622687 +"O61444",0.173091155067338,16.4478630099777,3.30086117464905,0.00773590375116031,0.0757649828252805,-2.78941630302468 +"Q9VBC7",-0.219159561494978,16.3021228855977,-3.29849729464851,0.00776727341913847,0.0757649828252805,-2.7934645326349 +"Q9VAN1",0.261133160490626,14.716103711293,3.27960605332894,0.00802270461484545,0.0778015773114082,-2.82582205509374 +"Q7K084",0.158878487611723,23.688740656401,3.27546618039111,0.00807982208608603,0.0779025620785636,-2.83291422600315 +"A1Z8Y3",0.238586964235274,14.9650823459668,3.26169970885186,0.00827277306140134,0.0788969637587891,-2.85650111005417 +"Q9VJ31",-0.152817697204155,17.2689928801138,-3.26136243335176,0.00827755914735497,0.0788969637587891,-2.85707903958493 +"A1Z7B8",-0.250643114493272,17.0910247840694,-3.25082626378504,0.0084285094931925,0.0798792831513925,-2.8751342899375 +"Q9VN13",-0.219851548301577,17.2633421348851,-3.24381960678831,0.00853045158708257,0.0799784271516122,-2.88714251842651 +"Q7KM15",-0.180535803613695,17.0030570642996,-3.24351799178482,0.00853486812529195,0.0799784271516122,-2.88765945806898 +"A1Z7K8",0.174811561749689,17.5606417792893,3.23596348198537,0.00864625570305641,0.0805695782832296,-2.90060775335659 +"Q9VSL3",0.213363289510831,22.5382309995254,3.22462701650088,0.00881620598667737,0.0810282738039895,-2.92004022794975 +"Q9VQR9",0.24911614876652,16.2038354686712,3.22374458730874,0.00882957749466405,0.0810282738039895,-2.921552943079 +"O97102",-0.217922120908536,21.0603264633124,-3.22297773400771,0.00884121452777343,0.0810282738039895,-2.92286754132112 +"Q9VH66",-0.18845346988744,16.820400106082,-3.21678963518087,0.00893569537496871,0.0814466660406984,-2.93347599908862 +"Q8IRH5",0.155586247635787,14.3463211141873,3.21088185710633,0.00902686015865299,0.0818304496990934,-2.94360444626129 +"Q9VAY3",-0.335671567648733,13.9721777993089,-3.19085607969959,0.00934302299273275,0.0837709031903007,-2.97794069764437 +"Q9V521",0.197395442170071,17.4635266091091,3.18757316246583,0.00939592300080095,0.0837709031903007,-2.98357005434387 +"Q9XY35",-0.14167488083752,19.2143082866006,-3.18163319117588,0.00949241728067208,0.0837709031903007,-2.99375585556243 +"P48596",0.14735023367173,21.9951453467165,3.18019541070807,0.00951592571761764,0.0837709031903007,-2.99622139789994 +"Q9VIE7",0.212740056557498,14.9687503368262,3.1788612635197,0.0095377929005136,0.0837709031903007,-2.99850924421152 +"Q9VB17",-0.1670605172742,15.6225173861712,-3.17651053820304,0.00957644717694204,0.0837709031903007,-3.00254039573523 +"Q7JZV0",-0.316998194932607,15.1624944931239,-3.17425233083601,0.00961373083257432,0.0837709031903007,-3.00641293677979 +"P09180",0.153362154746183,20.7684086185402,3.17250425257465,0.00964269389240871,0.0837709031903007,-3.009410699223 +"Q9VXF9",0.154338968910128,17.4388740820193,3.16088985548143,0.00983740349433218,0.0850196322722594,-3.02932867702165 +"Q9V3J4",-0.183029919296914,16.6312887465052,-3.14963463889082,0.010029921767868,0.0862366469525969,-3.04863142542683 +"Q9VM69",0.204025058406076,16.7938522491854,3.1396999401987,0.0102030459157419,0.0868205480351349,-3.06566988157063 +"Q9VT23",-0.195678080343612,18.4214511184931,-3.13866977020859,0.0102211714402665,0.0868205480351349,-3.06743668358323 +"Q9VKE2",0.277170029284946,24.0003695902906,3.13680949859523,0.0102539855892815,0.0868205480351349,-3.07062716321324 +"Q8SZM2",0.174302913469717,21.2518131169834,3.12920957518758,0.0103891638543056,0.0875208348938474,-3.08366153545358 +"Q9VAA9",0.15026361127082,17.0489444797478,3.10244101722489,0.0108799277098708,0.0911945699500726,-3.12957086073135 +"Q7JV09",0.194884694352524,15.1445339345546,3.0865371127117,0.0111826221605207,0.0930241038594081,-3.15684535480696 +"Q9VCR4",0.256976192184839,14.9239698355593,3.08291339247339,0.0112527822776121,0.0930241038594081,-3.1630596218017 +"Q9VH95",0.146436786955743,20.8370589413008,3.08225853144945,0.0112655089805758,0.0930241038594081,-3.16418262196593 +"P54622",-0.203796207634813,18.0439202943791,-3.0739684921067,0.0114278912219385,0.0937730990852163,-3.1783986020383 +"Q9VP13",0.459928662607407,11.7713076285137,3.07190634059927,0.0114686524061056,0.0937730990852163,-3.18193472820815 +"Q7K569",-0.209930062720829,20.7772144629358,-3.06010149361676,0.0117048534807927,0.0952375395412791,-3.20217645622699 +"P56538",-0.141794841947537,17.1171552334461,-3.04648653739781,0.0119834220240359,0.0970308152237471,-3.22551969686279 +"O97365",0.126606985051556,18.0109494203035,3.03740850121691,0.0121728972986075,0.0973217596230531,-3.24108266894091 +"Q9NBD7",-0.421640914681127,13.2902882378235,-3.03693329867196,0.0121828990495137,0.0973217596230531,-3.24189729613292 +"Q9W4W8",-0.221398392649046,17.4760320514368,-3.03477481207257,0.0122284346056093,0.0973217596230531,-3.24559748247137 +"Q9GYU8",-0.725560628962533,12.6270570264852,-3.03362604346088,0.012252739520888,0.0973217596230531,-3.24756672532081 +"Q9W4X7",0.135347965056081,19.1436506462052,3.02553152337706,0.0124253943625391,0.0981326996908219,-3.26144181850615 +"Q9VH77",-0.262515128093208,15.5972810715732,-3.02334283988632,0.0124725013995529,0.0981326996908219,-3.26519329639537 +"Q9V597",0.3415222371383,20.1319843960737,3.01688959064409,0.0126124524288867,0.0987679373304367,-3.2762538104872 +"B7Z0Q1",-0.145892154652678,17.7935583594685,-3.00975079437724,0.0127691280833358,0.0993616169060137,-3.28848826338418 +"Q9W0C1",-0.164884373894463,21.3115993246609,-3.00802034925621,0.0128074026587488,0.0993616169060137,-3.29145372210832 +"Q9VP57",-0.276169011387598,19.5219660625538,-2.9891142609211,0.0132332302617256,0.102189944798881,-3.32384823203182 +"Q9VZI8",-0.215008364331835,15.8473408890738,-2.97299016933966,0.013607720282325,0.104597591847549,-3.3514682871249 +"Q9VDV3",0.144261265701406,17.50259571609,2.92695794381873,0.0147369473000961,0.112757927048441,-3.43027308254951 +"A1Z803",-0.126818505353054,19.0389217608492,-2.92295084760579,0.014839621476493,0.112905331434125,-3.43712926120755 +"A1ZBD8",0.215987151035428,14.2428820226478,2.91662943919283,0.0150030666715718,0.112905331434125,-3.44794389053213 +"Q9VXR9",-0.169707047462696,15.3305127736148,-2.91409716895551,0.015069049516365,0.112905331434125,-3.45227560673923 +"Q9VJQ6",-0.294678987533665,14.5386376468132,-2.91364458658483,0.0150808731905184,0.112905331434125,-3.4530497675593 +"Q9W3W4",-0.193174968981031,16.0149393324306,-2.91311740322888,0.0150946576197901,0.112905331434125,-3.45395152520461 +"Q9VY87",-0.234659433319834,17.7217989828195,-2.90918259874479,0.0151979447953259,0.113170410350909,-3.46068170156091 +"Q9W3K9",-0.219130328831593,19.4238046391869,-2.90432572538439,0.0153264203409402,0.11361986279417,-3.46898805328817 +"O77410",-0.218055340093853,14.4682873141122,-2.89882286375979,0.0154733088215211,0.114201235019014,-3.47839789031276 +"Q9VND8",-0.633577190924008,18.5628870706478,-2.89282546102101,0.0156350163252834,0.114886375465078,-3.48865177179162 +"Q7K0P0",-0.234327333122836,15.2327356217101,-2.8760632875053,0.0160960699828814,0.117755459348448,-3.51730105824328 +"Q9VSL9",-0.341171573110762,14.7813625967647,-2.85588889577711,0.0166691880182078,0.120919520272024,-3.55176291804203 +"Q9VEP6",0.164429662664215,18.5888841338332,2.85573787149497,0.0166735549535764,0.120919520272024,-3.55202081290942 +"Q9VAF5",0.14354739559165,15.9981024266242,2.84639759101494,0.0169458834405461,0.122362483025242,-3.56796809144524 +"O02649",0.139150988113535,23.2629009574893,2.83374852173413,0.0173218332306985,0.124538007882781,-3.58955646381532 +"Q9VAQ4",-0.242025074805651,15.9128967648192,-2.81824507341801,0.0177940792913289,0.12738422428299,-3.61600290861823 +"M9MSK4",-0.15745278823649,20.5290705533767,-2.81255429110724,0.0179706526184174,0.128098498151796,-3.62570658388594 +"Q9VEP8",0.150148321305641,17.2286047835101,2.80496389493677,0.0182089094033049,0.128763464015802,-3.63864601876835 +"Q9VE52",0.188310679173174,15.9322647277513,2.80466576835714,0.0182183318391662,0.128763464015802,-3.63915415841894 +"Q9VW14",0.24656603462955,13.7317459227015,2.79918268856803,0.0183925027850347,0.129445968968092,-3.6484986561777 +"Q9VSA9",0.108847533199722,22.2183110523498,2.79011052794183,0.0186843594564953,0.130947527619471,-3.66395516802578 +"Q9VCH5",0.111807837809142,17.9724834360116,2.7795037647119,0.019031482203574,0.132294238064319,-3.68201866334596 +"Q7JV69",-0.225709020001112,16.1616052939006,-2.77939296661345,0.0190351421675279,0.132294238064319,-3.68220731035983 +"Q7KMQ0",0.144998851755052,20.7839250043677,2.77210580419709,0.0192774128749914,0.133422094089152,-3.69461253820532 +"Q9W3N7",0.234203352592225,17.1333236870422,2.76428619410377,0.0195408239590527,0.134686340345867,-3.70791963338398 +"P29829",-0.197907183261034,21.417117699231,-2.7600160503449,0.0196861870108847,0.135129876272245,-3.71518436519392 +"Q9VDT1",-0.16383593700975,19.23813907505,-2.75422585479338,0.0198850266911686,0.135935346397005,-3.72503280924802 +"Q9VJI5",0.116134021257762,17.652938204105,2.75019701064809,0.0200245654248406,0.136330510729119,-3.73188379577063 +"O61491",-0.132765322654219,20.9740062084786,-2.74081495410005,0.020353322719966,0.138005456491477,-3.74783262878969 +"Q9VE08",0.288002654889247,14.6089365558669,2.72999610719599,0.0207391358848632,0.140052140307497,-3.76621463338354 +"A1ZB69",0.143935361307097,20.369465214526,2.69663263825309,0.0219755499342172,0.147803295525299,-3.82283566239361 +"Q7JVZ8",0.259931569807101,15.9723486217246,2.68561365588433,0.0223998562701859,0.150052049231607,-3.84151289369104 +"Q9VMY1",0.276203114824069,15.6076110818271,2.68325131285835,0.0224918810118158,0.150065830110835,-3.84551552244561 +"Q7KUA4",0.120277898908629,18.7217771475792,2.66499229054488,0.0232159882994417,0.153682951085023,-3.8764335918737 +"Q9VEB3",0.304445469731146,12.2895694138068,2.66493522071759,0.0232182875739963,0.153682951085023,-3.87653017456644 +"Q7JPS2",-0.224353800724231,20.5733062951783,-2.65151437669513,0.0237653420503167,0.156682176047147,-3.89923349537663 +"A1Z877",-0.15012132162294,20.0178938048181,-2.64598133133224,0.0239945950519445,0.157570805301746,-3.90858780673679 +"O62602",-0.236950355270862,14.6489447667261,-2.63691607833635,0.0243749635800308,0.159440938241142,-3.92390646884464 +"P32234",0.190539890517604,16.674876304268,2.63437944120247,0.0244824677270736,0.159518578784214,-3.92819128874349 +"A8DRW0",-0.170947302661624,21.4896507534878,-2.63060953430338,0.0246431099090767,0.159940495441012,-3.93455796942595 +"Q9VVU5",-0.206356896650558,15.6182409960931,-2.62171614990416,0.0250262343914438,0.161566743861371,-3.94957080937934 +"Q86BN8",-0.208816795067033,14.1230967669581,-2.62030881096974,0.0250874020743976,0.161566743861371,-3.95194568499364 +"Q24297",-0.13220093974029,17.0637091426371,-2.61427120231467,0.025351506066231,0.161805858730157,-3.96213147207812 +"Q9VRG8",0.152354999430646,16.1885796387214,2.61343284431832,0.0253883961001799,0.161805858730157,-3.96354548865516 +"Q9VC18",-0.163563845339613,18.5487265265269,-2.61281655357062,0.0254155485535379,0.161805858730157,-3.96458490218223 +"Q9VLS5",0.195965355521141,14.5792504353019,2.60379143516208,0.0258164934531044,0.16373350220448,-3.97980112096622 +"Q9VK11",-0.167298908830894,18.7650486004637,-2.59719944281565,0.0261133056456721,0.16498861294311,-3.99090887301553 +"Q9W0Y1",0.152548619790736,17.676161982104,2.59018026738392,0.0264330730578377,0.166378739096126,-4.00273054020459 +"Q9W227",0.100712673341491,21.9153365421577,2.5799012831805,0.026908360949962,0.167005972626499,-4.02003117307841 +"Q9VNE9",0.152996067636231,19.0266269502374,2.5784965988202,0.0269739660700586,0.167005972626499,-4.02239435982221 +"Q9VDU7",0.146097543989715,18.2888425174504,2.57806835049931,0.0269939987020307,0.167005972626499,-4.02311477769884 +"Q9VGE7",0.298063089424527,13.8393088083226,2.57660005223702,0.0270627948054175,0.167005972626499,-4.02558463280471 +"Q9VJQ5",0.292210803082032,14.3131884211555,2.57610649204729,0.0270859592016684,0.167005972626499,-4.02641479804107 +"Q9V3Y7",0.1696794739692,19.393978596755,2.57509561299833,0.0271334643775667,0.167005972626499,-4.02811499184336 +"Q9VNW6",-0.204731328166321,21.9051782188391,-2.57059161053666,0.0273461298059236,0.167696119545149,-4.0356886394609 +"Q9W4C2",0.21690894420901,15.77688322216,2.56505250178498,0.0276099334827272,0.168062710360656,-4.04499920378078 +"Q9VSK4",-0.15022740439391,19.7169325716405,-2.56453951079671,0.0276344920737211,0.168062710360656,-4.04586127342188 +"Q9VW26",0.125079592423891,17.5670869957254,2.56113224025927,0.0277981589594181,0.168062710360656,-4.05158622360618 +"Q8SXX1",-0.108033440024379,19.8830310225014,-2.56090854238476,0.0278089376855761,0.168062710360656,-4.05196203004258 +"O76752",-0.145389865358364,17.8826664902307,-2.55646435960616,0.0280239365812376,0.168133471246535,-4.05942674320809 +"Q9VLY7",-0.169331379560077,15.5630645368527,-2.55378659636413,0.0281542732190329,0.168133471246535,-4.06392318412872 +"Q9W4K0",-0.153235562007673,19.7720482292452,-2.55291669102587,0.0281967435925968,0.168133471246535,-4.06538370014176 +"Q9V4S8",0.201916468851307,17.0301371171612,2.55236227810729,0.0282238440941426,0.168133471246535,-4.06631447049906 +"Q9VDD1",0.265048133740088,14.2716186513149,2.54392599009535,0.02863941317099,0.168753108432741,-4.08047243575247 +"Q9VSR8",0.190564540153968,15.4975609413312,2.54262144653571,0.0287042122320861,0.168753108432741,-4.08266087045993 +"Q9VZZ6",-0.144151160698332,18.4478547968946,-2.54250763493368,0.0287098723283385,0.168753108432741,-4.08285178366166 +"Q9VR79",0.188266511364194,20.3998609620991,2.53975990248989,0.0288468581767157,0.168753108432741,-4.08746041631064 +"Q9VKF0",-0.179508211195555,15.9083372393935,-2.53904865552443,0.0288824218667192,0.168753108432741,-4.08865318251797 +"Q9VG97",0.135465496384516,20.0689560090642,2.53800100040753,0.0289348854986594,0.168753108432741,-4.09040997807414 +"Q9VN01",-0.102739738064022,16.1454195783249,-2.53494319195655,0.0290885508887326,0.169058198196536,-4.09553668125262 +"Q7K1S1",-0.198721242482112,16.7178984324883,-2.532640961907,0.0292047774428773,0.169144336023331,-4.099395712087 +"Q9VK58",0.863823384873125,13.0720555701016,2.51142711069313,0.0302975454971893,0.173354347466394,-4.13491866917147 +"Q7KND8",0.155491685551601,15.4092269251913,2.51112971950216,0.0303131478870845,0.173354347466394,-4.13541618646758 +"P41375",0.216172411905905,16.6698991461418,2.50994900310871,0.0303751714220569,0.173354347466394,-4.13739132282697 +"Q9VWS1",0.168181764706601,17.2064453355406,2.50956063451572,0.0303955999215651,0.173354347466394,-4.13804095152045 +"Q9VCR2",-0.204017696087403,15.5663464288161,-2.50760697293853,0.0304985696971298,0.173354347466394,-4.14130852193125 +"P28668",0.169564586941664,15.629943031294,2.50653410161038,0.0305552626829255,0.173354347466394,-4.14310269504947 +"Q9VIF2",-0.157292828885854,17.5821786941223,-2.49838138189384,0.0309894775726842,0.174662378749819,-4.15673088642387 +"Q8SXY6",-0.185518146128395,19.1634759474135,-2.49827390394009,0.0309952422721501,0.174662378749819,-4.15691048048045 +"Q9VRR3",0.159942149504179,19.6680858588852,2.49142193726177,0.0313649433048711,0.176150590681902,-4.16835635330252 +"Q9VK18",0.155260919698733,14.5549353079738,2.48078661941106,0.0319473919243262,0.176951516829462,-4.18610768033278 +"Q9W265",0.150235763596061,17.0547235981163,2.48070335728179,0.0319519935474035,0.176951516829462,-4.18624658237481 +"Q9VMT5",-0.154418143241287,16.5674812298601,-2.48038291494093,0.0319697094225782,0.176951516829462,-4.18678115004983 +"Q8SXS0",0.190983757021687,14.5273435392617,2.48007488005822,0.0319867484519739,0.176951516829462,-4.18729500404832 +"Q9VJZ5",0.129179854480785,16.8481014528117,2.47914959703468,0.032037984461929,0.176951516829462,-4.18883844130457 +"Q9VA42",0.228168249976104,20.0686380717812,2.47222475284859,0.032424007325612,0.178492555178617,-4.20038523660805 +"Q9VXN3",0.18900022590301,16.9050531496589,2.46163880718633,0.0330229709907716,0.181191827673049,-4.21802176465319 +"Q9VCE1",0.184482485703732,13.5800451449543,2.453287659863,0.0335031459414705,0.183223762066796,-4.23192207622694 +"Q9VN73",-0.103948533764893,18.4672392083489,-2.44567990866384,0.0339465399638236,0.184300574715847,-4.24457489338216 +"Q9W1G7",-0.122097056471681,18.9201126754594,-2.44461020385313,0.0340093443835199,0.184300574715847,-4.24635318833149 +"Q9W0N6",0.237553753348422,14.5397726281946,2.44423294782097,0.034031520990696,0.184300574715847,-4.24698029870627 +"Q9VGJ9",-0.170279320992769,17.9976866529157,-2.43974705632623,0.0342963092473856,0.185133475160645,-4.25443531180714 +"Q9VN44",0.131065059415143,19.4746980513068,2.43257605958502,0.0347237932320545,0.1868364100357,-4.26634547963245 +"Q0E8C8",-0.191317477192012,17.6418789529533,-2.42647699356658,0.0350914833884124,0.187917006758654,-4.27646828188274 +"A1Z8Z7",0.14797515777602,18.944762599642,2.42542295089132,0.0351554132304544,0.187917006758654,-4.27821704856554 +"Q9VDQ3",0.5202460302195,13.2248651879734,2.42365985441442,0.0352626037862462,0.187917006758654,-4.28114177260994 +"Q8SXQ1",-0.185145902981297,18.763641968041,-2.40911682724904,0.0361590667451214,0.19160089404158,-4.30524549001246 +"Q9VN86",-0.230282873291335,15.4804850105866,-2.40580383256513,0.0363663853855304,0.19160089404158,-4.31073115021453 +"Q9VM18",0.110442358912785,22.8502204800418,2.40462961280807,0.036440143775514,0.19160089404158,-4.31267494519039 +"Q8SX89",0.192713129695234,15.4010410866735,2.40351061451935,0.0365105695981307,0.19160089404158,-4.31452709269171 +"Q7KLW9",-0.123938356555961,17.299049571388,-2.40323037060182,0.0365282280007329,0.19160089404158,-4.31499091194802 +"Q9V784",0.320197772406217,14.0730354345362,2.39775551004523,0.0368748836657701,0.192355213497909,-4.32404921782833 +"Q7KSE4",0.183898633303551,13.7872972585047,2.39469042263607,0.0370703602415174,0.192355213497909,-4.32911807275284 +"Q7KTP7",0.108321414910598,17.8698408347801,2.39357625012677,0.0371416675287915,0.192355213497909,-4.33096019121573 +"Q5U1B0",0.24081622194238,14.6383094187753,2.3933357852688,0.0371570749119138,0.192355213497909,-4.3313577337655 +"Q0E8X8",-0.158353406615696,19.8560905526376,-2.39190870248068,0.0372486414627245,0.192355213497909,-4.3337168010954 +"P18053",0.13415760118902,21.0630340976751,2.38936408653654,0.0374124601919875,0.192372835955112,-4.33792228424522 +"P14318",0.139627739585986,21.9786799317018,2.38779421408073,0.0375138771984076,0.192372835955112,-4.34051620466847 +"Q8MZI3",-0.164367416498951,17.9603688617428,-2.38649444306866,0.0375980482742005,0.192372835955112,-4.34266348221703 +"Q9W074",-0.218889199719127,13.6005723667826,-2.37891753350661,0.0380924005433914,0.194091577399858,-4.35517449794567 +"Q9VNZ3",-0.536785104036657,15.5226752267684,-2.37778722249282,0.0381666890810272,0.194091577399858,-4.35703993411371 +"Q9V3Z4",-0.172756913985143,18.8167048290958,-2.37356136478312,0.038445683880062,0.194916111586454,-4.36401201014803 +"Q9VXG4",0.148025487503524,19.9098978652396,2.36937156021259,0.0387242625901183,0.195733545455507,-4.37092120336817 +"O18333",-0.202849484662481,17.5427073394481,-2.35324302455674,0.0398151328449525,0.20025338271618,-4.39748589869382 +"Q9W0M5",0.156661071971929,13.2905799257109,2.35055002426445,0.0400001707514996,0.20025338271618,-4.40191641376528 +"Q9VTZ4",-0.12967630342354,18.3242212626394,-2.34999864413508,0.0400381596264762,0.20025338271618,-4.40282336328004 +"Q9VIS4",0.184576389325084,14.127903728061,2.34912101329656,0.0400986989371727,0.20025338271618,-4.40426682737436 +"Q4V5I9",-0.198317839373686,16.0078217905005,-2.34279875225409,0.0405374522067221,0.20184020979347,-4.41466063645712 +"Q9VDK9",-0.171377525657988,15.6199296002043,-2.33977956677956,0.0407486232838901,0.202287808445026,-4.4196213219986 +"Q9VTB0",0.190282786800463,16.984788736397,2.33429348827192,0.0411350790754779,0.203600332041238,-4.42863047381489 +"Q8SXF0",-0.12607428855268,16.5317425568007,-2.3178657092,0.0423137345720553,0.208814524456178,-4.45557057709332 +"Q9VK99",0.198191203796743,20.0143812490657,2.30893266594369,0.0429683634115938,0.211419558025187,-4.47019607837017 +"A1Z8Z3",-0.19219447596598,19.904217354263,-2.30600726032825,0.0431848710755216,0.211594190605578,-4.47498194184786 +"Q9W3M8",-0.101344048304199,18.6711990095897,-2.30472712084737,0.0432799460995687,0.211594190605578,-4.47707562538003 +"Q9U6P7",-0.155848174090856,17.022759657731,-2.30332356720982,0.0433844203759639,0.211594190605578,-4.47937074662598 +"Q09101",-0.170671712075487,14.7044296955978,-2.30150094528662,0.0435204533769069,0.211638822835804,-4.48235049951293 +"Q9W1G0",0.115543505539602,21.6845142243703,2.29439888613941,0.0440544786818716,0.213612995469075,-4.4939545404068 +"Q0KI98",-0.14923162293214,16.6550671562105,-2.28995344904316,0.044391970999496,0.214625529354085,-4.50121229168233 +"Q9VVZ4",0.251018160779616,15.7166772029234,2.28168305801926,0.0450265260168525,0.217064293052341,-4.51470309842243 +"Q9VZ58",0.0984913331984494,18.1679154023081,2.27575526828262,0.0454867364500763,0.218146705257268,-4.52436317533583 +"Q8MRM0",0.180214003278277,18.5160808426049,2.26925920611022,0.0459962922414841,0.218146705257268,-4.53494017465575 +"P45888",-0.098580237930749,17.2893846968025,-2.26697495338964,0.0461767792922488,0.218146705257268,-4.53865714279469 +"Q9VJE3",0.17223244213983,15.2134507155153,2.26684709054226,0.0461869024112156,0.218146705257268,-4.53886516762155 +"Q8IPX7",0.331542449148278,15.2383734108442,2.26592986231919,0.0462595838603408,0.218146705257268,-4.54035733016402 +"Q9I7X6",-0.235401327182808,14.8550144678603,-2.26558938446629,0.0462865915635975,0.218146705257268,-4.54091117608613 +"Q961B9",-0.192162098515919,15.0023867217077,-2.2655727008405,0.0462879153495123,0.218146705257268,-4.54093831419354 +"Q9NK57",0.228501392258789,15.4236933700929,2.26545415818071,0.0462973223387727,0.218146705257268,-4.54113113754499 +"P32748",-0.151262176973086,17.3869066959542,-2.261209790334,0.0466353557652455,0.219120488496984,-4.54803295571944 +"Q7JUN9",0.422973059543231,13.4022131527247,2.25789727922077,0.0469008294827175,0.219152031047792,-4.55341656977113 +"Q9W3B3",0.112750194383837,15.6064424409218,2.25784736142916,0.046904841177495,0.219152031047792,-4.55349767846412 +"Q9W0C3",0.16857886531432,18.5300521372333,2.25005962002507,0.0475347871681618,0.221474930157804,-4.5661444127621 +"Q9VDT5",0.212043613955256,19.0518353993786,2.24371349438242,0.0480541543469668,0.222865748987607,-4.57643949542488 +"Q9VBU9",-0.114944449562312,20.8898472515983,-2.24315016013874,0.0481005213642318,0.222865748987607,-4.5773529093544 +"P09208",0.543049695390728,12.8471839064655,2.23905823313399,0.0484386181901453,0.223441947387356,-4.5839854579995 +"Q9VM33",-0.364200389008369,13.7871859000803,-2.23840508185661,0.0484927967351457,0.223441947387356,-4.58504377092173 +"A1Z9E3",-0.111872098767563,21.7804210651904,-2.23235880515127,0.048997113985686,0.225143763438359,-4.59483578691735 +"Q9VVI2",0.56116828758695,13.7406453392017,2.2268117062976,0.0494642386711689,0.226665796987664,-4.60381158865289 +"Q6NL44",-0.205784864451459,15.3269946903028,-2.22520654985862,0.0496002084042,0.226666157858098,-4.60640750428214 +"Q9V4W1",0.332379199430731,13.5846621835561,2.21976865942188,0.0500635222452083,0.227689770489176,-4.61519715295671 +"Q8SZN1",0.15113270697497,19.9337071635573,2.21937516350225,0.0500972096939613,0.227689770489176,-4.61583290575507 +"Q9VUX1",0.11684838737261,16.5054856755968,2.21337866101077,0.0506132818511719,0.229410201434116,-4.6255164248165 +"Q7K0S6",0.142675531625819,17.3751128197337,2.2103540843377,0.0508755205521193,0.229717768991779,-4.63039730008777 +"Q8MSI2",0.179418372446428,23.7633719842942,2.20942221080762,0.0509565794526128,0.229717768991779,-4.63190063893473 +"Q9VLU4",0.0957418999763657,17.1240580807731,2.20683940056279,0.0511818945920349,0.230111590780362,-4.63606620142822 +"Q9Y143",0.0969277418404175,20.8585057448267,2.20374445138607,0.0514531487152048,0.230299634714298,-4.64105553048248 +"Q9VL69",-0.152644235336769,16.0949400981199,-2.2017288735471,0.0516305447468261,0.230299634714298,-4.64430351669191 +"O97479",-0.21858459124315,17.9440401699775,-2.20145596245577,0.051654609469761,0.230299634714298,-4.64474321787251 +"Q7K3J0",-0.12360947883494,20.4162417818993,-2.19898082010053,0.0518733550197812,0.230299634714298,-4.64873018393048 +"A1Z6V5",0.148517396396802,19.9831915032711,2.19630289668247,0.0521110240693079,0.230299634714298,-4.65304203301867 +"P49963",0.130030648423084,14.9375026266523,2.19541021637936,0.0521904827683312,0.230299634714298,-4.6544789720168 +"Q8T0Q4",0.125253375649788,19.9450576952229,2.19474350864524,0.0522499032370601,0.230299634714298,-4.65555203206098 +"P40797",-0.0988304065822909,19.1922492368562,-2.19386528456317,0.0523282743145797,0.230299634714298,-4.6569653518942 +"Q9VVW7",0.1193858530093,16.5102271296941,2.19083650458974,0.0525994238475409,0.230883786783416,-4.66183802653407 +"Q9VW73",-0.165737220376466,14.2893473972126,-2.18557517543728,0.0530736504705802,0.232353934343643,-4.67029678041803 +"Q9V3W9",0.094297105799388,18.4793982703753,2.18237548795185,0.0533640557255539,0.233013730236188,-4.67543747627967 +"Q7K5M6",0.116145597905156,18.1008761577239,2.17919805167157,0.0536539495075916,0.233667853207997,-4.6805397796687 +"Q7K2W6",0.136014333954044,16.795532809579,2.17352775698004,0.0541750354176436,0.23532281009539,-4.68963851420856 +"Q9VU95",0.147923101138229,16.6342090714877,2.16974452758037,0.0545253988229779,0.235672245744667,-4.69570448314269 +"Q7K511",-0.297276999766085,16.9650727115624,-2.16719049627064,0.054763153045918,0.235672245744667,-4.69979742698566 +"Q9XZ63",0.279297989100094,19.0069854472565,2.16616095178928,0.0548592736722625,0.235672245744667,-4.70144682430708 +"A1ZBU5",0.12863615689259,16.557003785199,2.16526748658191,0.054942820562255,0.235672245744667,-4.7028779843862 +"Q9VC67",0.164879903757221,15.1168019500406,2.16506328182406,0.0549619326107166,0.235672245744667,-4.70320505132833 +"O77477",-0.113510157874698,16.9499927286381,-2.15237680670998,0.0561618520834455,0.239233450772046,-4.72350249431789 +"Q9VKD3",-0.112230522798352,18.8684989962583,-2.15094799135043,0.0562985528255633,0.239233450772046,-4.72578576425076 +"P54385",-0.165568218155915,21.6755441300828,-2.15035981595973,0.0563549184264396,0.239233450772046,-4.7267255162099 +"Q9VEB1",-0.0850479064377261,25.0700366079905,-2.15024263191317,0.0563661547682338,0.239233450772046,-4.72691273468709 +"Q9VZE4",-0.122197291606394,17.734836049102,-2.14675220466054,0.0567018226076042,0.239664353991971,-4.73248747522475 +"Q9W1I8",0.131262612915382,17.8617050436602,2.14595677796665,0.0567785842051376,0.239664353991971,-4.73375742479933 +"Q7K519",-0.146652903384355,15.7234004680534,-2.14446581156048,0.0569227355784148,0.239664353991971,-4.73613737952389 +"Q9VRD4",-0.112553672387001,20.3166117619933,-2.14323069690479,0.0570424151887364,0.239664353991971,-4.73810846748753 +"O97454",0.26787364609169,14.0228925217882,2.12451020293156,0.0588860711467206,0.246153461038143,-4.76793208694028 +"Q94901",0.0921477559884458,19.0157861576264,2.12385036593561,0.0589520803414815,0.246153461038143,-4.76898147833688 +"Q7K5J8",-0.115108630981172,18.1574607022944,-2.12307629820167,0.0590296069635835,0.246153461038143,-4.77021238274286 +"Q9VER6",0.230878116912649,14.9188953619193,2.12142171728862,0.0591956473306365,0.246230273684543,-4.77284288852682 +"Q24439",0.0905324399746092,24.2205606648298,2.11681988007823,0.0596597948123945,0.247543626236502,-4.78015493915176 +"Q27268",-0.211348383034334,19.0818292003155,-2.115301937192,0.0598136557759174,0.247566198099827,-4.78256553492712 +"Q9VND7",0.145330362892008,13.9159152652131,2.11002435470953,0.0603515464885036,0.249174206789168,-4.79094154298822 +"Q9VGQ8",0.110766497970857,16.2585544813343,2.10519209641876,0.0608480865355237,0.250217598271235,-4.79860372936121 +"A1Z8H1",-0.117857021668215,23.0908976105331,-2.10419232721707,0.0609513024368344,0.250217598271235,-4.80018815019999 +"Q9VHT5",0.125953588223641,15.7153748860854,2.10319633495034,0.0610542940625854,0.250217598271235,-4.80176629616046 +"Q9VU92",-0.146460621456541,17.7885707877963,-2.10140370347129,0.0612400803516416,0.250363857908182,-4.80460598527237 +"Q9VAI9",0.130977842581164,21.924299457077,2.09752154611742,0.061644267811872,0.25083512528597,-4.81075245003546 +"Q9VQ35",-0.267199621362394,12.2847440799862,-2.09576422347908,0.0618280628803441,0.25083512528597,-4.81353329508129 +"A1Z6G9",0.181781121795531,14.2892726083222,2.09484189238489,0.0619247361252021,0.25083512528597,-4.81499245847782 +"P13677",-0.191706584037954,16.908236599816,-2.09211298423508,0.0622116061973793,0.25083512528597,-4.81930822706865 +"Q9VLS9",0.149388227547604,18.8922508703174,2.09075960657904,0.0623543449446239,0.25083512528597,-4.82144777738676 +"A1Z992",0.213594730505946,14.0722006304182,2.09049550154931,0.0623822359805127,0.25083512528597,-4.82186523690202 +"Q9VSK9",0.165553808217613,14.4709815168729,2.09025145008806,0.0624080197803822,0.25083512528597,-4.82225098021854 +"Q7JVH6",-0.0917336490784315,19.005866593423,-2.08710573908162,0.0627412687483774,0.251568356423783,-4.8272214509638 +"Q9VMR6",0.0915677325493185,18.6661357537493,2.08375206019979,0.0630984105932368,0.252393642372947,-4.83251728160982 +"P53034",0.13508719045654,15.67679957553,2.08208154021919,0.0632770279965821,0.252502590187318,-4.83515396348193 +"P20348",0.134300400418937,17.3147562229782,2.07769186081378,0.0637486772240816,0.253651847406666,-4.84207846544674 +"P23779",0.112881370469228,20.804998717406,2.07465477870039,0.0640769469945152,0.253651847406666,-4.84686591347802 +"P48159",0.0866709109241413,19.9078436438646,2.07453865975656,0.0640895297416967,0.253651847406666,-4.84704890006593 +"Q9VKU5",0.313837475202817,13.50344162012,2.07376605892187,0.0641733091160749,0.253651847406666,-4.84826630276788 +"Q7KN90",0.094761349132094,17.2207608599584,2.06786212303588,0.0648169585590636,0.255590276303825,-4.8575632660672 +"Q9V564",0.133231553404269,14.0673218782435,2.0657678792351,0.0650467407127052,0.255891423369793,-4.8608585302508 +"Q9VS11",0.137956530020611,14.9226353312817,2.06432709096611,0.0652052731891349,0.255911519245828,-4.86312481117976 +"Q9VGL0",0.278394110711202,12.8372270631775,2.06117082093679,0.0655538434092805,0.256209629271148,-4.86808722269934 +"Q9W1M9",0.313872786387897,14.2722914373343,2.06085845354046,0.0655884362702518,0.256209629271148,-4.86857817222882 +"Q8IMT6",-0.16094717647233,16.1715548930342,-2.05373319253854,0.0663822271938192,0.258704567661893,-4.87976879026661 +"Q9W3Y3",0.106297519496515,17.9441762165466,2.04827050307797,0.0669969473058968,0.260491627287263,-4.88833755637518 +"Q8IP62",0.222391915014327,15.8530221432174,2.04336749660899,0.0675532670900752,0.261755270562835,-4.8960204429514 +"Q9XTL2",0.0908860477253448,16.8482075103012,2.04264332617987,0.0676358043240899,0.261755270562835,-4.89715455818487 +"Q95RG8",0.305487030780744,13.3917088793579,2.03204106526672,0.0688551578724093,0.265351233332283,-4.91373960639484 +"Q9W2V2",-0.232836300277336,14.2918285635836,-2.03160477801818,0.0689057767800129,0.265351233332283,-4.91442132050119 +"Q8IQG9",0.101864744599474,20.3413123855555,2.02959041974649,0.0691399424159201,0.265351233332283,-4.91756803504899 +"Q9W3R8",0.106563126415836,17.2173338590721,2.02906357618587,0.0692013108510451,0.265351233332283,-4.91839082499031 +"Q9V3Y0",0.139923854418324,16.2673096088083,2.0238301725301,0.0698137118869673,0.26708548492537,-4.92655916243884 +"Q9VHG6",-0.202201268580463,15.6734152328281,-2.02036612366761,0.0702218746096701,0.267135684462422,-4.93196100948061 +"Q9VF15",0.164739573891101,20.7893007745883,2.0183693707513,0.0704581695465124,0.267135684462422,-4.93507298167791 +"A8JTM7",-0.126825143184366,17.7721622298232,-2.01640636413563,0.0706912013383915,0.267135684462422,-4.93813109423756 +"P41094",0.0904972146340164,21.2033251354374,2.01639205128631,0.0706929031047161,0.267135684462422,-4.938153387206 +"Q9VZJ8",-0.125797240797979,14.9902298971764,-2.01615162754669,0.0707214947299678,0.267135684462422,-4.93852784903663 +"Q9VQI7",0.0872925885855622,19.0933525862996,2.0155948184579,0.0707877533167808,0.267135684462422,-4.93939501100826 +"Q9Y105",-0.35852684193479,17.1518238095215,-2.00562882337789,0.0719836106266416,0.270823318359392,-4.95489862660705 +"P38040",0.163781867170531,18.9922151438103,2.00469482783114,0.0720966537094473,0.270823318359392,-4.95634992031304 +"Q9V3W0",0.135124028516625,20.7576572235941,2.00341335525007,0.0722520243824517,0.270823318359392,-4.95834067265939 +"Q8IN43",0.298365035735621,17.5656187465675,1.99822970556423,0.0728837298078702,0.272578612824053,-4.96638784174941 +"Q7K0W4",0.130907286882049,21.7295559962615,1.99001990535541,0.0738948517744014,0.274770330907358,-4.97911446526467 +"O97125",-0.124668994283926,18.7366062287652,-1.9893083374018,0.0739831066410171,0.274770330907358,-4.98021645227393 +"Q9VVJ7",0.110050683473162,18.1412256347526,1.98837730439817,0.0740987309973962,0.274770330907358,-4.98165806094228 +"Q9VHG4",0.212455515507212,18.3948383989673,1.98684865574804,0.0742889409702522,0.274770330907358,-4.98402438015137 +"C0HK95",-0.187488476445541,19.8354633876715,-1.98681272932325,0.074293416810083,0.274770330907358,-4.98407998406449 +"Q9VLT3",-0.0850942268492609,19.4665118811965,-1.97900924490732,0.0752716238471173,0.277772275612813,-4.99614717052393 +"Q7K1H0",0.0863519055399333,16.2844123896824,1.97573296653837,0.0756859133013287,0.278684554937343,-5.00120736062491 +"E2QCN9",0.137793704090043,17.3386503406106,1.97360989860736,0.075955518607174,0.279061244574375,-5.00448445780348 +"Q7JRN6",0.211756477891623,14.5755462157114,1.96322233105878,0.0772876446430317,0.283331409372696,-5.02049591782553 +"Q9VWW2",0.360402513021644,15.1250051939472,1.96058463275225,0.0776293758073751,0.283960085190135,-5.02455571176003 +"Q95TN1",-0.138058220760325,14.1548976692733,-1.95792447326619,0.0779754488986424,0.284601857249312,-5.02864761203186 +"Q7K1U0",0.123350056106233,16.6422960928145,1.95659905710741,0.0781484170498506,0.28461039222522,-5.03068546227885 +"Q9W125",-0.14695188950288,21.3774623143512,-1.95151452654643,0.0788152880482245,0.286413726502044,-5.03849728006788 +"Q9VVK7",0.134608569920271,18.1481672523874,1.94869536874895,0.0791873289937511,0.287140140786037,-5.04282466768673 +"A1ZB73",0.572481445732764,13.4687819034522,1.9452629927706,0.0796425111264803,0.287506826551807,-5.04808953332348 +"Q9W1B9",-0.188228712319248,20.6981556996332,-1.94519621761578,0.0796513906592295,0.287506826551807,-5.04819191707949 +"Q9VP18",0.108795774859306,17.1086461670182,1.94403801293546,0.0798055519745125,0.287506826551807,-5.04996749454537 +"Q02748",-0.141169784562319,19.5950657560969,-1.93551115271797,0.0809491135353275,0.290998106415789,-5.06302476103413 +"Q9VS84",0.0915069296780224,17.5094243613283,1.92485935553195,0.0823991338944364,0.295573667389075,-5.07929911650032 +"P13060",-0.084624692886365,20.2895421038433,-1.92192936911935,0.082802214909651,0.296321444413372,-5.08376845731289 +"Q9V436",0.0788722130841357,19.1070354354058,1.92076506667825,0.0829628984059022,0.296321444413372,-5.08554358779751 +"Q9V3P3",0.0818264982502832,19.4199773370478,1.91699749901922,0.0834848463287772,0.296481905920001,-5.09128432350715 +"Q9W086",0.10135842579005,16.9594150939112,1.91670839841736,0.083525023504596,0.296481905920001,-5.09172461747866 +"Q9VIE8",0.083034235336779,25.0489929445137,1.91659300845094,0.0835410646177461,0.296481905920001,-5.09190034530481 +"Q9Y125",0.138170969592963,22.571238966889,1.91355572012399,0.0839643302093343,0.297351385964267,-5.09652407669892 +"Q8IPD8",0.125576617312483,18.2635258590238,1.90991506540817,0.0844743074702638,0.298319576453719,-5.10206182851135 +"A1Z7X8",-0.10003835857599,17.1261738988322,-1.90905346821442,0.0845954194619958,0.298319576453719,-5.10337167289363 +"P05812",-0.0876079349449945,15.8028855978435,-1.90665603254233,0.0849332695041259,0.298503833368171,-5.10701492437175 +"Q9VJJ1",0.197033121269012,14.0639856554327,1.90614400118446,0.0850055880394973,0.298503833368171,-5.10779275278393 +"Q9VPE2",-0.0973714614608845,20.990198088334,-1.90475612710947,0.0852018971668665,0.2985646312486,-5.10990058447384 +"Q95SK3",0.10343391218912,17.1792206884065,1.90287006481934,0.085469348259205,0.298873947371811,-5.11276388472004 +"Q9VKA1",0.275732705661596,14.605187351043,1.8897571724308,0.0873504692877801,0.304348931807797,-5.13263405443155 +"Q7KUC2",0.12651993423589,19.297793413442,1.88719828220472,0.0877220070592132,0.304348931807797,-5.13650398672153 +"Q7KTW5",-0.103781955424122,21.5637666678625,-1.88608684645614,0.0878838377721867,0.304348931807797,-5.13818408679787 +"Q9VF24",-0.141252747724893,16.2021647682123,-1.88552552979856,0.0879656734710659,0.304348931807797,-5.13903242098979 +"X2JAU8",-0.0868343531769469,21.614891385668,-1.8850330611981,0.0880375298067303,0.304348931807797,-5.13977660396304 +"Q9VHM3",-0.169750132430378,14.7223632830764,-1.88440111838078,0.0881298165846318,0.304348931807797,-5.14073141445553 +"Q9VW68",-0.0914594357251559,23.0567533635382,-1.88028323684625,0.0887333764850989,0.305177542139269,-5.14694942766205 +"Q7K127",0.146079376867085,18.5736732832359,1.88026759621596,0.0887356762215501,0.305177542139269,-5.1469730326528 +"Q9VGF7",-0.106583791672428,20.0308642033996,-1.87588782861626,0.0893818360318471,0.306201701167826,-5.15357931398171 +"Q9VJJ0",0.109348773425523,19.7362694899805,1.87515326473951,0.0894906339605967,0.306201701167826,-5.15468657857113 +"Q9VY42",-0.16202425404521,15.308112496236,-1.87452226414018,0.08958419074934,0.306201701167826,-5.15563756768853 +"Q9VXP4",0.100600313728972,17.968654051598,1.86842461401276,0.0904929472664332,0.308675329325993,-5.16481946013538 +"Q9VSL5",-0.118252306343415,17.6522654405991,-1.86174116150113,0.0914987949066109,0.311206030577834,-5.17486681333602 +"Q6NMY2",-0.198927916571659,20.2107237892172,-1.85926984969427,0.091873331667726,0.311206030577834,-5.17857754639824 +"Q9VPL3",0.225097232791663,15.8952515058265,1.85686878192702,0.0922385782195888,0.311206030577834,-5.18218050360263 +"Q08012",-0.122083700631176,19.1845282498247,-1.85621866370665,0.0923377035285269,0.311206030577834,-5.18315565670545 +"Q9W3X7",-0.100787771363816,21.5569386327251,-1.85520261760113,0.0924928198116305,0.311206030577834,-5.18467935357507 +"O96824",0.111783859968227,16.6513791209548,1.85510116778726,0.0925083210064299,0.311206030577834,-5.18483146871326 +"P25455",-0.163425492031543,15.842064831721,-1.85431922202089,0.0926278802086397,0.311206030577834,-5.1860037914723 +"Q8MLP9",0.230359026724432,14.8372950547955,1.85366868081991,0.0927274563532274,0.311206030577834,-5.1869789230724 +"Q9VBI3",0.109275869823076,18.5778729764938,1.84447252621343,0.0941456851337721,0.315183290365064,-5.20074554536751 +"P45594",0.0865030130244726,23.0320016173485,1.84354106377157,0.0942904447794766,0.315183290365064,-5.20213806036359 +"Q9VF89",-0.136526913061571,14.3206189711875,-1.8382413542593,0.0951179884964547,0.317313609624173,-5.21005437803057 +"Q24583",0.0874521932582688,21.187945078414,1.82913150351029,0.0965561222573326,0.32146828727591,-5.22363551474957 +"Q9VWL4",0.114165449646682,16.1037637192029,1.82607298834589,0.0970434237235101,0.321954385169231,-5.22818764755124 +"P04388",0.160228010390757,16.5352187025589,1.82579289381191,0.0970881629137429,0.321954385169231,-5.22860433469455 +"Q94915",0.246688085716013,16.8840368552945,1.82358179789866,0.097442004800797,0.322316638599164,-5.23189258094804 +"Q7K0B6",0.127462173505084,20.1627424562677,1.82269735103755,0.0975838743960298,0.322316638599164,-5.23320733163044 +"P20240",0.116883388061996,17.3858291763181,1.82144345363922,0.0977853308720717,0.322343738922165,-5.23507072932238 +"Q95T12",-0.13029421860189,15.9490629352428,-1.81712026786797,0.0984828443941103,0.324002730669381,-5.2414903942267 +"Q9W1E8",0.142577132976339,15.3648130066139,1.81308804331188,0.0991375268673422,0.325514556721903,-5.24747105128852 +"Q9VFP1",-0.261890666292835,15.8515127329681,-1.80739482607841,0.100068691377958,0.327510027618184,-5.25590384039575 +"Q9W260",-0.0973775608509655,17.4763900210789,-1.80697326696815,0.100137958084696,0.327510027618184,-5.25652771711581 +"Q9VVE2",0.119235482854325,18.329252195616,1.80555679190886,0.100371022210693,0.327629872891264,-5.25862345367466 +"Q9VLP0",0.110040909181418,15.9912338076614,1.80194493953505,0.100967560747722,0.328933381498438,-5.263963550181 +"Q9U9Q2",0.0867921641722109,15.5181123332777,1.8003523015231,0.101231633236101,0.329150807481123,-5.26631651665709 +"Q9VLB1",-0.136869710802053,16.8586868403239,-1.79733535102361,0.101733602645425,0.330139395355194,-5.27077084251618 +"Q9VHD3",-0.104131809353566,15.7514285197178,-1.79097488034258,0.10279934783842,0.332227866605775,-5.28014906824889 +"Q9VDH3",-0.0791908628899556,20.6397956639293,-1.79075824313711,0.102835826205901,0.332227866605775,-5.28046818832937 +"P36975",0.145845643543669,22.1594398282261,1.78993411736288,0.102974704457545,0.332227866605775,-5.28168199479044 +"E1JGR3",0.15168393482837,12.1788803809115,1.78762960254756,0.103363962214094,0.332839940102527,-5.28507464700954 +"Q9VGR2",0.085171754213885,15.6423050689551,1.78545142767729,0.103733115428109,0.333385041491493,-5.28827922546456 +"Q9VAY2",0.0706825506028075,21.1063656067594,1.78317105771395,0.104120878636925,0.333987741473828,-5.29163198544275 +"Q9V4N3",-0.149324266844413,19.7536533189345,-1.77588378205505,0.105368925040289,0.337342355023421,-5.30233130543483 +"P25171",0.150218597879908,16.7376853539272,1.77398290527212,0.10569671329872,0.33754870678696,-5.3051184509272 +"Q9W0A8",0.104113750154909,18.9399094420895,1.77316456957059,0.105838113698789,0.33754870678696,-5.30631784855777 +"P35220",0.108155298888217,19.2828068826825,1.76320013564778,0.107573755823201,0.342029786989783,-5.32089895931385 +"Q9VD64",0.221443130535318,15.5601455673168,1.76274721159832,0.107653260293547,0.342029786989783,-5.32156070244511 +"Q9W3C3",-0.127596001756519,16.436062641009,-1.75526859578121,0.108973780880931,0.345567046595804,-5.3324743077037 +"Q9VKI8",0.0741086383334704,22.3207915468324,1.75222381405421,0.109515613498667,0.34662626815138,-5.33691053293058 +"Q9VB46",-0.180971255137397,15.3591399354941,-1.74834982617016,0.110208546028,0.347783483384755,-5.34254897878688 +"Q9NJH0",-0.0832238597389683,21.2740793306645,-1.74784999661123,0.110298239035093,0.347783483384755,-5.34327597753465 +"Q9VMW7",0.0868794718754948,19.321115867268,1.74393720061399,0.111002672926012,0.349344261208658,-5.3489632743986 +"Q9VPL0",-0.121374074593705,15.26328103645,-1.74009406255298,0.111698538527392,0.350872245317684,-5.35454267654231 +"P40417",-0.09421534825238,19.842012550878,-1.73317292724376,0.112961713533034,0.3541731920547,-5.36457396667533 +"Q9VX98",-0.121871823664609,18.2294853563932,-1.73151050223226,0.113267044174283,0.354464220793065,-5.36698022510262 +"Q9VMF0",-0.178897265742508,13.7991476337797,-1.72587609918576,0.114307458830956,0.357050264662987,-5.375126380262 +"Q9VGA3",0.0775154284344275,19.5055893985931,1.72376865637315,0.114698823813676,0.357338671688955,-5.37816959499958 +"Q9VSU7",0.103078397074922,14.6951949117874,1.72307312411529,0.114828254211799,0.357338671688955,-5.37917352218091 +"Q9VR30",-0.132788588325658,17.374064712593,-1.72026402807435,0.115352339243206,0.358301120777778,-5.38322591047909 +"Q7K1M4",-0.12277602555902,17.2320223334224,-1.71438419197787,0.1164563293779,0.361057913387243,-5.39169644868217 +"Q8MLW4",0.0943082789405807,18.604966298707,1.70897140873948,0.117481053377097,0.363559178168826,-5.39948009987683 +"P81900",-0.0851000863589029,22.4240429796673,-1.70560501870334,0.118122460585703,0.364670074338455,-5.40431418602323 +"Q9VCW6",-0.100979543568918,19.8006912268791,-1.70409171670463,0.118411821757039,0.364670074338455,-5.40648555385966 +"Q9VAU6",-0.251599153541679,13.3691578356129,-1.70313965403749,0.118594194744749,0.364670074338455,-5.40785108000427 +"Q9VJZ6",0.130612650851813,19.6227786950523,1.70251213184217,0.118714538588598,0.364670074338455,-5.40875089324852 +"A1Z7K6",0.109991416273211,15.5795148823467,1.69664413138453,0.119845219187855,0.367070939770723,-5.41715622256514 +"Q9VPX0",-0.165622672861632,14.4855596581959,-1.6950735277889,0.120149493271613,0.367070939770723,-5.41940322668029 +"Q9VTY2",0.0781337509593492,20.6533525836877,1.69503835736042,0.120156314817035,0.367070939770723,-5.41945353047399 +"Q9VCJ8",0.0753196136844387,17.9403098743162,1.69126011368169,0.120891164557185,0.368640699234708,-5.42485412073553 +"Q9VL16",0.0755518395871526,20.6991872305225,1.68958653510174,0.12121795771192,0.368962688801976,-5.42724417502384 +"Q9VXC9",-0.158611764869992,19.2097119977907,-1.68638545891703,0.121845233324572,0.370196446603617,-5.43181198472968 +"Q7KN75",-0.114826921999061,19.44541509862,-1.68363049086131,0.122387425332295,0.370989079032532,-5.43573933699178 +"P82890",0.0905344298350386,19.4806974920861,1.68091024684446,0.122924909492326,0.370989079032532,-5.43961365751447 +"Q9VFT4",0.316230431495757,15.6857764032002,1.6807833514597,0.122950034017302,0.370989079032532,-5.43979430306453 +"Q7K1C5",0.0894635490129456,17.4543673179102,1.68055236494743,0.122995779799155,0.370989079032532,-5.44012311085935 +"Q9VAG9",0.0865026599140375,17.3622430376586,1.67779272791507,0.12354349603302,0.371968504301582,-5.44404947204369 +"Q95RI2",0.122481380764031,16.5978924931702,1.67521558877357,0.124056967065458,0.372473970467079,-5.44771289929833 +"A1Z9M5",0.143681087127629,15.0840945234929,1.67470967545878,0.124157990155693,0.372473970467079,-5.44843168717035 +"Q86BM0",0.1028521251318,17.4038718077917,1.66880496505632,0.125342537603918,0.375352518354283,-5.45681186957151 +"Q8IPW2",0.0876817801281238,17.1549693284567,1.66672237356658,0.125762737810083,0.375935925926916,-5.45976356339993 +"Q9VPB8",0.157832962001867,15.6305894692163,1.66529756376575,0.126050945368472,0.376123393335618,-5.46178176715723 +"Q9VBV5",0.098079948377908,17.1078780572294,1.66138007063841,0.126846418935108,0.376337945626736,-5.46732573177367 +"Q9W4I3",0.0833818679198917,16.6970133565521,1.6601771038715,0.127091589690366,0.376337945626736,-5.46902665696624 +"Q0E8V7",0.159223677285258,19.6220034713909,1.65978822920719,0.127170934974216,0.376337945626736,-5.46957635302661 +"Q9VFR0",0.251752099325412,15.3141882677147,1.65944257911022,0.12724149799939,0.376337945626736,-5.47006488712646 +"A8DZ14",0.0757081493782152,19.4590403944567,1.65939624277092,0.127250960032062,0.376337945626736,-5.47013037346045 +"Q9VCX3",0.222136487581558,13.1992106707229,1.65732346146373,0.127674873197779,0.37692334246707,-5.47305873164966 +"P19334",0.255856103800022,14.8907718013367,1.65161181678493,0.128849527001581,0.379634540005863,-5.48111712782405 +"Q9VK69",0.0790740993010246,20.2691315461565,1.65046230288513,0.12908709954902,0.379634540005863,-5.48273701739751 +"Q9VVL8",0.110764776302551,15.7806333986493,1.64954949392427,0.129276030409671,0.379634540005863,-5.48402288244553 +"C0HK94",0.0860667974055787,18.4702960068208,1.64584865709735,0.130044552644582,0.381190759708216,-5.48923202560556 +"Q9VW66",0.0686625363174578,21.2695441890286,1.64480014121708,0.130263029396693,0.381190759708216,-5.49070664861031 +"P91926",-0.104908252203185,17.7000648165329,-1.64226321389724,0.130792998309405,0.382071315551817,-5.49427231844964 +"Q9VIQ5",0.138569950231657,16.4203973331233,1.64031694169661,0.13120088103974,0.382444506281934,-5.4970056644568 +"Q3YMU0",0.0716790296660292,23.1352343270644,1.63885337629848,0.131508349000818,0.382444506281934,-5.49905986250944 +"Q9V3V6",0.0758795806078894,21.6030274820414,1.63589629297901,0.132131537767787,0.382444506281934,-5.50320705921873 +"Q7K485",-0.103743570529986,20.7001155413317,-1.63545771733532,0.132224188853268,0.382444506281934,-5.50382177521771 +"O96299",-0.10915747179579,15.7717495595876,-1.63493678978499,0.132334312342366,0.382444506281934,-5.50455179300719 +"Q8WTC1",-0.0739213232186451,15.1320751566517,-1.6342776988625,0.13247376047581,0.382444506281934,-5.50547523689425 +"Q01637",-0.0777034840466495,16.1310455210202,-1.63403220714065,0.132525734191222,0.382444506281934,-5.50581913697474 +"Q9W158",0.117103161214127,17.0153274069086,1.63278793888996,0.132789440949724,0.382543674445836,-5.50756172394241 +"Q9VLW8",0.201118474333473,14.0948174826336,1.63083228606571,0.133204860870411,0.382792101634895,-5.51029903938881 +"Q9W087",0.0769442180647797,16.7136303654597,1.62991403241128,0.133400315169814,0.382792101634895,-5.51158365497837 +"Q9VEP9",0.0789695372110941,17.5119927912814,1.62820595514169,0.133764565870965,0.382792101634895,-5.51397209448027 +"Q9W1F2",-0.225596837440062,13.7401556755807,-1.62806978603429,0.133793642238096,0.382792101634895,-5.51416243972621 +"Q24478",0.179613435028322,17.2804273430026,1.62663569585115,0.134100206959218,0.382915105697577,-5.51616653212455 +"Q0KI81",-0.101636145702145,15.5755079521523,-1.62494737157715,0.134461919708371,0.382915105697577,-5.51852458676498 +"Q9VAG3",-0.116215819372464,16.8888871835907,-1.62419683725051,0.134622995264919,0.382915105697577,-5.51957238632118 +"Q9VH64",0.117991365012871,17.3830942884285,1.62358283633905,0.134754896309639,0.382915105697577,-5.52042936501745 +"Q9VX69",0.0955832422023661,18.026916732431,1.6194628609704,0.135642933350929,0.384783015015901,-5.52617482513174 +"Q9VHJ7",-0.190762540046091,14.7807552123864,-1.61821701140378,0.135912490816382,0.384893097931621,-5.52791052371106 +"Q9VBS7",0.0617435817168328,19.8588156854224,1.60735460409739,0.138282945428494,0.390942293177504,-5.54301053412887 +"Q9VPX5",-0.071934630158502,18.8173679929375,-1.60065377313949,0.13976344619781,0.39445926947199,-5.55229546839256 +"Q9W2Y3",0.0947756903053492,16.3721528765726,1.59833209088459,0.140279668555461,0.395247444510994,-5.55550710912989 +"Q9W2M0",0.0802878167284788,17.7041336368835,1.5967337803824,0.140636029953654,0.395583301792066,-5.55771647925565 +"Q8SZK5",0.363926465544854,15.128845270669,1.59205273732521,0.141684330768045,0.397424136350118,-5.56417957445115 +"Q9W445",0.0689803767640349,16.4111935822001,1.59168487898461,0.141767003074532,0.397424136350118,-5.56468699453396 +"Q8T9B6",0.106219992206487,19.4828168420102,1.58761526558627,0.142684453141557,0.399324946040466,-5.57029589502793 +"Q24276",0.0948536926084493,18.4882611299607,1.5855200392088,0.143158840082362,0.399981482843183,-5.57318026156175 +"Q960X8",0.0831460283468033,18.376812169878,1.58101545226022,0.144183452593599,0.402011047852329,-5.57937369251148 +"Q7KMS3",0.1517291945593,15.454984500974,1.58021027921252,0.144367276776706,0.402011047852329,-5.58047962103871 +"Q961Q8",-0.1623758084486,15.6157173428352,-1.5787500739437,0.144701174483892,0.402269265065219,-5.58248438910315 +"Q9VJC0",-0.0763636089846909,16.5523375714571,-1.57244292975607,0.146151225601221,0.405624366560462,-5.5911308306425 +"A1Z8H6",0.163384047928229,16.6107318501923,1.56863056244274,0.147033901130185,0.407396257616527,-5.59634702620948 +"Q9VWP4",-0.10412000833248,15.2732558003591,-1.5625322330935,0.148455592469397,0.410653280661617,-5.60467493947512 +"A0A126GUP6",0.176128556635904,16.9192015595692,1.56093268762733,0.14883048488112,0.41100869003594,-5.60685601585178 +"Q9VZD9",-0.155393979558268,14.6447080960799,-1.55688940179596,0.149781835671198,0.411899201601446,-5.61236319447924 +"Q9W0M4",0.10810865508731,17.8564798481394,1.55650008729445,0.14987371910577,0.411899201601446,-5.61289300127453 +"A8JNG6",0.304098349873597,15.4967880739237,1.55641514072657,0.149893774203883,0.411899201601446,-5.61300859181257 +"Q6IGM9",0.122462936373081,14.5459213511962,1.5551768512932,0.150186390271905,0.412024504890687,-5.61469314819951 +"Q8SYJ2",0.0774436301711816,22.469684117288,1.55281104070576,0.150746840286749,0.412541608877753,-5.61790928795633 +"Q7K9H6",0.263699528943135,11.9188124999811,1.55179739919428,0.150987528004035,0.412541608877753,-5.61928633731362 +"Q9VQ93",0.126570943102315,16.6598746305378,1.55125330891158,0.151116860326323,0.412541608877753,-5.62002526556843 +"Q868Z9",0.128397846337105,20.3355311312832,1.54896963748369,0.151660757079898,0.413349906551095,-5.62312497951967 +"Q9W5P1",-0.158395663633129,14.2826669905993,-1.54514249037995,0.152576104903878,0.414907916394784,-5.62831340816126 +"Q6WV19",0.284827393721692,13.5433889470794,1.54450146462784,0.15272989248585,0.414907916394784,-5.62918166740414 +"Q9VZ64",0.0732088947871148,19.3434763876649,1.54176402207375,0.153388155876944,0.415754399920682,-5.63288698685272 +"Q9W1F8",-0.0803443770588217,17.5508350277994,-1.54113404871498,0.153539994215312,0.415754399920682,-5.63373912486459 +"Q95RN0",-0.0680619524891526,16.9109455743566,-1.53655910235454,0.154646611402516,0.418072200679736,-5.63992099081225 +"P23625",-0.0753512606667428,22.2109097814817,-1.53276745889119,0.1555690330565,0.41988535135638,-5.64503578349217 +"Q9VV39",-0.0832991209266964,17.6207429348284,-1.5296242801086,0.156337335584938,0.421277343708687,-5.64926986289382 +"A1ZAL1",-0.124320601290613,17.1608125549685,-1.52633336938823,0.15714529423321,0.422771533517734,-5.65369714274965 +"P05205",0.0996868477057937,18.0540826934439,1.52401333088742,0.157717077621149,0.423626546653907,-5.65681472501589 +"A8DYP0",0.20292291896782,15.0959855560668,1.52265579513528,0.15805248819715,0.423844936194286,-5.65863755650046 +"P54352",-0.124221443491304,16.1550680113512,-1.51717053507418,0.159414082848402,0.426288383738303,-5.6659925247955 +"Q9VB79",0.0819282485275359,17.6430763613846,1.51692691971415,0.15947479103879,0.426288383738303,-5.66631879274837 +"Q9VEH2",-0.0810256614026699,15.8903757282929,-1.51358372613881,0.160309938494067,0.427385829081296,-5.67079292064627 +"Q9VLM8",0.0944359206616667,16.857708132054,1.51323289062808,0.160397799163604,0.427385829081296,-5.67126207661654 +"Q9VQD8",-0.19156845178701,17.5504467580811,-1.51120395332462,0.160906732812971,0.428058102602929,-5.67397393619003 +"Q9VRD9",0.148979552670898,16.1385691848898,1.50869409036442,0.161538241784808,0.428624803143818,-5.67732542199141 +"Q95RS6",-0.131648194377174,17.2307810230534,-1.50831546879259,0.161633693751476,0.428624803143818,-5.6778307000772 +"Q8T3X9",-0.113028786576066,18.2268356777725,-1.50642076172527,0.162112092916445,0.42921106505497,-5.6803580208756 +"Q94524",-0.145428494603301,15.6472896199961,-1.49935255834727,0.163907619588407,0.432589366122983,-5.68976843525136 +"Q9VHN4",0.108100621417343,14.5401845679138,1.49846706243727,0.164133771875561,0.432589366122983,-5.69094538104959 +"Q86BS3",0.0767159640549266,18.8786694014408,1.49834053580243,0.164166108366815,0.432589366122983,-5.69111351626842 +"Q9W337",-0.103835517412428,17.6848115467521,-1.49385127636742,0.165317008744344,0.434913956481956,-5.69707323238786 +"Q9VSN3",0.116483277326726,20.8152739240628,1.49286900158694,0.165569761610337,0.434913956481956,-5.69837573222515 +"Q9VZI3",-0.109156273414216,14.4563791023324,-1.48891667126632,0.166590133479138,0.435907872167049,-5.70361100900364 +"Q9VRP3",-0.133464988708834,18.0907815586622,-1.4888531307404,0.166606582041612,0.435907872167049,-5.70369510268605 +"P11046",-0.104113654411755,21.0606647898758,-1.48767200981382,0.166912591361169,0.435907872167049,-5.70525785741258 +"Q9VRJ6",0.108047238484987,15.6719671718822,1.48645507401008,0.167228387842724,0.435907872167049,-5.70686716913855 +"Q9VN50",0.0883850871057668,17.9174075157007,1.48635331025581,0.167254819056901,0.435907872167049,-5.70700170632418 +"M9PGG8",0.263096183148196,18.5055877512892,1.48421925348244,0.167809932268547,0.436672335450759,-5.70982168526433 +"P09040",-0.171039874066519,16.3873326873283,-1.48309652716322,0.16810261551328,0.436709253541728,-5.71130423208164 +"Q9VF82",0.101591593286656,14.8940573734584,1.48215748821818,0.168347751814947,0.436709253541728,-5.71254366904642 +"Q9VCI0",0.295623802032447,14.8261763866143,1.48055675115384,0.168766336074603,0.437090577335751,-5.71465531884355 +"Q9VEC8",0.0962355975697609,16.448681063523,1.47959279608462,0.169018838358249,0.437090577335751,-5.71592623534487 +"Q95R34",-0.0972312321112216,15.3379506274258,-1.47332281431459,0.170669190332402,0.440160025110922,-5.72417981604228 +"Q9W4Z2",0.208534336613232,13.8842305337452,1.47168638931984,0.171102200446769,0.440160025110922,-5.72633022662133 +"Q9VTW6",0.328093891084356,16.2531552800174,1.47149022954439,0.171154169237978,0.440160025110922,-5.72658789469835 +"Q8IPG8",0.155241247568959,15.9694161807229,1.47108600109316,0.171261304734406,0.440160025110922,-5.72711880392963 +"Q8MLS2",-0.0744452246575751,17.4735941218517,-1.46747890473032,0.172219878282952,0.441942703039944,-5.7318521462366 +"Q9VVU2",0.0728864270901965,20.1210139647749,1.46414088192445,0.173111056346664,0.442081229785812,-5.73622569281562 +"Q9I7J0",0.11226216412954,20.9084518293038,1.46295732297052,0.173427991345801,0.442081229785812,-5.73777486392733 +"Q9VB05",-0.0598609677808142,20.2274228205661,-1.46282931157268,0.173462300286061,0.442081229785812,-5.7379423704477 +"P02299",0.0796797081817822,22.044932221784,1.46214920770334,0.173644675999773,0.442081229785812,-5.73883214579597 +"Q9VFP6",-0.0738672613378242,20.1841661370891,-1.4619995924344,0.173684818733064,0.442081229785812,-5.73902785036595 +"Q9VQM2",-0.0716742440865161,20.0807737249762,-1.46133183051735,0.173864080779072,0.442081229785812,-5.73990115902458 +"Q9VNE2",0.087305123955943,19.0418913534601,1.45981467927484,0.174271954167644,0.442443865375388,-5.74188434662102 +"Q9VQ88",0.119912348381213,16.4256645758746,1.45731349233367,0.174946171822235,0.443085168623969,-5.74515091585225 +"Q9VXB0",0.0652120681772637,20.2796196231322,1.45686562698994,0.175067134123444,0.443085168623969,-5.74573544604776 +"O46067",0.0581682620635497,19.688319280283,1.4559248105984,0.175321469599412,0.443085168623969,-5.7469629683061 +"Q9VWP2",0.0785631991112545,19.5083899981033,1.45342481011481,0.175998848274573,0.4441241738608,-5.75022230754563 +"Q9VMH2",0.107171459397714,17.2747662076006,1.44891898809187,0.177225376579129,0.446543698087595,-5.75608745621112 +"Q7JQW6",-0.0934423903782022,15.8479016450507,-1.44192023475986,0.179145024453942,0.450699699531185,-5.76517391926803 +"Q9VC66",0.0739940135347652,17.68473607393,1.44073203038014,0.179472690802352,0.450844048581812,-5.76671368955974 +"Q9V3T8",0.111645597710101,15.5183575717429,1.43946971428427,0.179821356002776,0.451040634304706,-5.7683485839551 +"Q9U915",0.0735434913254522,21.0788216242223,1.43678359762857,0.180565217666723,0.452034453845011,-5.77182437566152 +"Q9VB64",-0.0621709166696931,18.7446400026558,-1.43527971766922,0.180982831520727,0.452034453845011,-5.77376850110127 +"Q7K180",0.102221080696998,16.2573924012095,1.43510794161643,0.181030584633374,0.452034453845011,-5.7739904772663 +"Q9VXQ0",0.11519796668933,15.2365393381364,1.43245964332908,0.181768164598333,0.453197755680149,-5.77741049560143 +"P20432",0.0857361246911097,23.5205468634713,1.43038010146747,0.182349136165933,0.453664646948456,-5.78009309025199 +"Q9VZU7",-0.0677051255833732,17.7520965147137,-1.42984320932658,0.182499387351567,0.453664646948456,-5.78078525811126 +"Q9VXY3",0.0709645792048477,18.1641761953229,1.42716439353948,0.183250642223135,0.454854272660996,-5.78423624488397 +"Q9W370",0.156755980657643,18.5338769687035,1.4254600633059,0.183729980471392,0.45536643005391,-5.78642961368165 +"Q9VL01",0.106355691866977,20.3813067873409,1.42138688936767,0.184879878442591,0.457536553771873,-5.79166447888326 +"Q7K1W5",0.0665058713849085,19.7471592085193,1.4175804807334,0.185959997800936,0.45952781678809,-5.79654747321877 +"Q9V420",0.0750782761464919,17.5684551196462,1.41549485931101,0.18655409353496,0.460133975328536,-5.79921927457962 +"Q0E9B7",0.264744500132377,12.7525245073989,1.41405349595057,0.186965612483165,0.460133975328536,-5.80106420761074 +"Q9VW54",-0.0838080214531125,16.0502239982864,-1.4138181628698,0.187032874863757,0.460133975328536,-5.80136531259425 +"Q8SYQ4",0.129683696438303,20.8975423303251,1.41184674682236,0.187597148512697,0.460530649297937,-5.80388639086085 +"Q7KTJ7",-0.0654621110196523,22.0986227952706,-1.41125692967324,0.187766251194048,0.460530649297937,-5.80464020054437 +"Q9W330",-0.082017278821791,20.6657049362558,-1.41036434207239,0.188022405378834,0.460530649297937,-5.80578056141976 +"A8E6W0",0.0825574835931917,16.3815397503082,1.4054928472871,0.189425656027123,0.463287381602994,-5.81199579986741 +"A1Z9I0",0.063952739654404,19.348479623279,1.40381862501074,0.189909967678096,0.463791839073301,-5.81412849897025 +"Q0KHZ6",0.0851679015030555,22.9972784062192,1.39843656470285,0.191473980293443,0.466927776505063,-5.82097280473993 +"Q9VPC1",0.098137650145917,16.0220412442041,1.39605604100366,0.192169224508764,0.467939075154187,-5.82399442979018 +"Q9VHL2",0.0549668020456906,20.6367657439553,1.39327421328984,0.192984376126936,0.469238978687652,-5.82752102308911 +"Q9I7I3",-0.139003264647275,14.6224815081375,-1.38997454583262,0.193955056578728,0.470912713789401,-5.83169791662606 +"Q9VE12",0.0909681901799324,15.6298906754201,1.38751061775645,0.194682569723992,0.471992044040143,-5.8348125046961 +"Q9VZF6",0.0764197240909059,15.3137152708551,1.38560282790356,0.195247455389893,0.472674536415589,-5.8372215136666 +"Q8MR62",0.0660816460293105,17.5724999768362,1.38389750133617,0.195753562685532,0.473212960231112,-5.8393729592638 +"Q9VN25",0.100726007900304,14.9676348312909,1.37903737539438,0.19720202400061,0.475772778548949,-5.84549460432944 +"Q9W5B4",0.149145897368957,18.5030443353191,1.37843241196317,0.19738295129249,0.475772778548949,-5.84625556682334 +"Q9VKG4",-0.0881054884964367,15.8117209264281,-1.37676003726784,0.197883838234409,0.476291835750351,-5.84835800202888 +"Q7KY04",-0.158072211137547,14.1561438599219,-1.37218812452052,0.199258617638631,0.478909761125701,-5.85409669502142 +"Q9VSD6",-0.101724793995068,16.4344497790965,-1.37083785905302,0.199666177002076,0.479153142898626,-5.85578905500729 +"Q9W3J5",-0.0811463035470688,16.3335365613533,-1.36890279092794,0.20025147234359,0.479153142898626,-5.85821238656149 +"Q9W2N5",0.144702093448622,13.0538368046845,1.36832532360869,0.200426416462708,0.479153142898626,-5.85893510723835 +"Q0E8U4",0.166124397457397,16.1587998144764,1.36805310724481,0.200508929102663,0.479153142898626,-5.85927572296455 +"P54397",0.111875817120186,14.76225260933,1.36166698060131,0.202452851628788,0.482802780561815,-5.86725310265989 +"Q7JW03",0.112553823027007,17.1388248068039,1.36113637429589,0.202615075775342,0.482802780561815,-5.86791476503416 +"Q9VG42",-0.474817725839371,16.0257582189727,-1.35948976807447,0.20311919238993,0.48331357047989,-5.86996693888223 +"Q7K0D8",0.0705908181265542,17.3040838080401,1.3579087908808,0.203604204891845,0.48377751247806,-5.8719357051599 +"Q9VYS2",0.0993894955817183,14.9277135048621,1.35679404948187,0.203946768272395,0.483902147195384,-5.87332292381823 +"Q9W0H8",0.0761130017170117,19.3576437708151,1.35512261430257,0.204461309464095,0.484433897991634,-5.87540143327485 +"Q9VGA0",0.0964828415525574,19.1730413091695,1.34928228560292,0.206267755178411,0.487381877573745,-5.88265022310416 +"Q9VZF9",0.0903702259514425,19.0323050545056,1.34778197542413,0.206733956962588,0.487381877573745,-5.88450884286531 +"O77263",0.0846181507445234,15.4619017875801,1.34698872723148,0.206980803967027,0.487381877573745,-5.88549095690059 +"Q9VIQ8",-0.0890912186655903,21.3070907888754,-1.34693888315976,0.206996322914443,0.487381877573745,-5.8855526550153 +"Q9VG51",0.227203189692894,19.1538008231299,1.34639245336568,0.207166517505866,0.487381877573745,-5.88622893404407 +"Q9VL93",0.104298207897331,15.3680848711975,1.34271447750446,0.208315125753898,0.489265061630797,-5.89077594620749 +"Q95029",0.0731132934697527,21.8200758807479,1.34195287409182,0.208553632385789,0.489265061630797,-5.89171641946185 +"Q7JQR3",0.082249583652569,18.9968825494401,1.34040157972719,0.209040145988146,0.489717645376725,-5.89363089945999 +"Q9V470",-0.0570799470067449,19.9437318348662,-1.33857280036694,0.209614898497881,0.489772006007745,-5.89588584410733 +"Q9VBL3",0.159058273362936,14.4580127917846,1.33845931935936,0.209650606888207,0.489772006007745,-5.89602569906801 +"M9PEG1",-0.106018307362348,20.1981406101712,-1.33667995588716,0.210211171543812,0.490374350036437,-5.89821751844517 +"Q9VPZ5",0.0947464469393644,18.300262136268,1.33577601554131,0.210496423636744,0.490374350036437,-5.89933021114964 +"Q9W1F7",-0.0683885514612896,20.3468451588432,-1.3326724726003,0.211478247023215,0.491906213145186,-5.90314646451465 +"A0A0B4KH34",0.073882891987175,23.3684353258763,1.33039269450995,0.212201892232086,0.491906213145186,-5.90594581757595 +"Q9VDE2",-0.0993927356567461,19.4931018413359,-1.33017804935362,0.212270130627302,0.491906213145186,-5.90620920851183 +"Q9W314",0.152654286367859,16.111044625552,1.32997840269083,0.212333617184972,0.491906213145186,-5.90645416804228 +"Q9V9A7",0.121498405937361,16.2420319184984,1.32811267249526,0.212927672456999,0.49215809704891,-5.90874210667554 +"Q9VNX9",0.160825482470861,13.5977893537697,1.32778401324549,0.21303246167225,0.49215809704891,-5.90914490675855 +"P42325",-0.0797180957409367,20.0483515849267,-1.32425818495991,0.214159328135317,0.493703647497549,-5.91346170234475 +"Q7K012",-0.112488981524313,15.6657219695047,-1.32383962343162,0.214293429729152,0.493703647497549,-5.91397362572051 +"Q9VXJ7",0.119256046144857,14.9470041740735,1.32251785234955,0.214717365237449,0.493998020987676,-5.91558947506738 +"Q9VZG2",0.0907246032381579,21.8935912880701,1.31822992035892,0.216097436817809,0.495871365356868,-5.92082358545588 +"Q9VTU2",-0.058129140020025,20.7468262142075,-1.31805872236955,0.216152689160701,0.495871365356868,-5.92103231109593 +"Q8SYQ8",0.0981780550098588,15.9160665952721,1.31691044235578,0.216523586963907,0.495871365356868,-5.92243180617635 +"Q7K2L7",0.227156666459546,18.1642622427798,1.31630067242534,0.216720758600214,0.495871365356868,-5.92317462820374 +"O16158",-0.0745588417948504,21.3065765412303,-1.31411134404368,0.21742991241489,0.496237395800368,-5.92583966416337 +"Q9VI09",0.0961423777252115,20.0513044721059,1.31287903929108,0.217829916937255,0.496237395800368,-5.92733834896969 +"Q9VMB3",0.0695804016068422,18.6855427527183,1.31187985699375,0.218154696934416,0.496237395800368,-5.92855278756772 +"Q9VII1",0.167497290128097,19.2302366861764,1.31163627094275,0.218233934240138,0.496237395800368,-5.9288487506446 +"P40796",0.0992339667736175,18.2808686420818,1.31122351953179,0.218368254506877,0.496237395800368,-5.92935016490276 +"Q9VMV5",0.075183649353999,17.5908994875229,1.31013020255333,0.2187243792275,0.496370427961183,-5.9306777958663 +"Q9VWI0",0.0593376549191795,20.888105503622,1.30877544804791,0.219166327470199,0.496697600842789,-5.93232180446823 +"P92177",0.0799742803239916,24.0760684689955,1.30562518660294,0.220196859066812,0.497921978933125,-5.93614000921536 +"Q9W1R0",-0.263368152271005,14.3283156301575,-1.30529955478813,0.22030360938408,0.497921978933125,-5.9365343111468 +"Q9W0H3",-0.0699978161956736,16.7073177433376,-1.303057594168,0.22103974049061,0.498891135676976,-5.93924716318043 +"Q03427",0.0548666027263458,21.6940172981845,1.30217345076601,0.221330599760769,0.498891135676976,-5.94031609538995 +"Q9VMX3",-0.116866725604474,12.5081925248531,-1.29952148881881,0.222204917023933,0.499699597800218,-5.94351922461499 +"Q9VWV6",0.0938322897302406,23.470450043578,1.29926862854077,0.2222884301965,0.499699597800218,-5.94382439465756 +"Q7K1C3",0.0859609495695413,17.0875093845116,1.29360782141067,0.22416482567963,0.502767726812783,-5.9506451601671 +"Q7JVK6",-0.0894937647039384,17.4664185938899,-1.29184323365737,0.22475239353762,0.502767726812783,-5.95276697529438 +"Q9V455",0.121475159201182,19.3449192279742,1.29175160932202,0.224782936923883,0.502767726812783,-5.95287709164485 +"Q9NCC3",0.0633200400207805,17.3168670639866,1.29152363691949,0.224858947363511,0.502767726812783,-5.95315105013754 +"Q9VAC1",0.0533814579224732,23.4732343682761,1.28490842246926,0.227073803924529,0.507040301132683,-5.96108556242802 +"Q9V9S8",0.0846816727892623,19.9637069821998,1.28213562819565,0.228007480291784,0.507328297908427,-5.96440263711749 +"P32392",0.0646899163355634,17.800882984299,1.28148191872632,0.228228060244818,0.507328297908427,-5.96518391401119 +"P52029",-0.143431014217427,18.3054273839494,-1.28123814713333,0.228310360396341,0.507328297908427,-5.96547518270455 +"Q9VRJ5",0.0730094656707081,17.2098243086631,1.2809061694038,0.2284224790921,0.507328297908427,-5.96587177966887 +"Q9VCD9",-0.146466773151964,18.490397149833,-1.27966936296869,0.228840582442163,0.507328297908427,-5.96734867779496 +"Q9VJU8",-0.0971704078100988,15.634752860009,-1.27911643507315,0.229027702832761,0.507328297908427,-5.96800860869549 +"Q9I7K0",0.0669574684111094,16.0304968480356,1.27673619856496,0.229834647473877,0.508440572926297,-5.97084712121269 +"Q6IGW6",0.11264669164291,15.7046825263955,1.27254042494641,0.231262758328519,0.510922226346981,-5.97584142320791 +"Q8IRD0",-0.0783459062883161,17.6159850244542,-1.26946491719834,0.232314166606419,0.512566177115749,-5.97949469782465 +"Q7KJ08",-0.108963545327949,14.6271991959506,-1.26637651382361,0.233373908738805,0.513605940477933,-5.98315684255699 +"Q9VFU7",-0.0755307233041957,14.8339767237693,-1.26603810696599,0.233490267730457,0.513605940477933,-5.98355772278088 +"Q9VLV5",0.067446203458271,17.4716707409845,1.26526585526857,0.233755978694724,0.513605940477933,-5.98447224875322 +"Q9NHA8",-0.154022144621029,16.3625345166131,-1.26415361488361,0.234139103948662,0.513605940477933,-5.98578868835199 +"Q9VVU1",-0.101989462375517,22.3379601509327,-1.26264570237266,0.234659340921019,0.513605940477933,-5.98757209896765 +"Q9VF70",0.0796769507350046,15.8799457605413,1.26240837210111,0.234741306739669,0.513605940477933,-5.98785264891466 +"Q7K0E6",-0.0911787207415671,16.8080827456928,-1.26183089011106,0.234940846873299,0.513605940477933,-5.98853513461431 +"Q9VKV2",0.119817639498972,15.0144137760122,1.25731874375206,0.236504712359565,0.515754383069145,-5.99385989589228 +"P04359",0.10602660084793,18.8163409587996,1.25721137516963,0.236542028206173,0.515754383069145,-5.99398643169717 +"Q9VMG0",0.153063195309983,14.7223457552079,1.2545030587385,0.237484886215851,0.517134190872114,-5.99717562339855 +"A0A0B4KHJ9",0.104447151946527,24.5118156847406,1.25210581010742,0.238321997870435,0.518280433439225,-5.99999432466878 +"Q9V6Y3",0.107982164319447,15.3477168229345,1.24804503140389,0.239745476512777,0.520697206801188,-6.0047600161829 +"Q9VSC5",0.0553078924361579,19.4060251208464,1.24262327204567,0.241656782137599,0.524165816132009,-6.01110524753345 +"Q9VYT3",-0.081315417203605,14.3846837350221,-1.24050573827027,0.242406609784058,0.525109383272479,-6.01357794463941 +"Q02910",0.217440242276854,16.252228185947,1.23945014216642,0.24278110362919,0.52523849656743,-6.01480943218738 +"Q9V3E7",0.065357368707609,18.6794329837305,1.23731808945148,0.243538919487081,0.525373471716992,-6.01729439033859 +"Q9VIH9",0.163483176250804,19.0375340436426,1.23695981429981,0.243666452178411,0.525373471716992,-6.01771165933024 +"Q9VJ22",0.263212636795911,13.268703319463,1.23605042612384,0.24399040316737,0.525373471716992,-6.01877038815453 +"A1Z7H8",0.108426925884128,14.6455893711589,1.23540766614308,0.244219583210426,0.525373471716992,-6.01951835663159 +"Q9V9U7",-0.105387377268215,17.8596547551577,-1.23485058746164,0.244418353748433,0.525373471716992,-6.0201663872275 +"P22812",0.238781655798444,11.6158676435857,1.22939045520185,0.246373501063633,0.528894465603784,-6.02650654766729 +"Q9VK39",0.0825332502891456,18.0226356762533,1.22787196156046,0.24691947522715,0.529385198816048,-6.02826609052619 +"Q9VHB8",-0.0908349785506211,15.697723793912,-1.22694986395122,0.247251490993476,0.529416542974478,-6.02933377860957 +"O61604",-0.0500088336048847,20.9618134422261,-1.22367074040628,0.248435106291609,0.530986231791359,-6.03312583000665 +"Q9VJD1",0.0636840397711644,18.5180718216571,1.22315618430917,0.248621251216458,0.530986231791359,-6.03372019113482 +"Q9W1H5",0.0740544214396497,17.2841147546441,1.21908137314709,0.250099314525034,0.532221943804762,-6.03842042955802 +"Q9VI75",0.097151513866887,17.2912939066167,1.21874179927451,0.250222806993678,0.532221943804762,-6.0388115972723 +"Q9VPC2",-0.100287953856951,14.7019638223955,-1.2175723660774,0.250648468561636,0.532221943804762,-6.04015809055286 +"Q9Y114",0.0482520942753304,18.5795106811864,1.21702320388194,0.250848558567722,0.532221943804762,-6.04079006780569 +"Q9VBC9",0.104731009862178,15.4567676281696,1.21592201460463,0.251250168999015,0.532221943804762,-6.04205667988041 +"Q9VZW7",0.153629697881486,13.820911208178,1.21410286679453,0.251914754068672,0.532221943804762,-6.04414723312927 +"Q9W369",-0.0578537923065348,22.1264330675567,-1.21406349980803,0.251929151500691,0.532221943804762,-6.04419244764488 +"Q9VL10",0.0755410448434048,16.8051222626133,1.2137876446545,0.252030056738603,0.532221943804762,-6.04450924736831 +"P14484",0.0940110374341252,19.3148141414888,1.21193716366228,0.252707784036235,0.532221943804762,-6.04663300341331 +"Q9VYG8",0.351664810964108,15.2456825389018,1.21140338132551,0.252903549924564,0.532221943804762,-6.04724516443698 +"Q9VIL2",0.0777503662896724,15.9411637485967,1.21083738857051,0.253111261862842,0.532221943804762,-6.0478940457157 +"Q9VU45",0.136986390426564,17.8851088405112,1.20929017645452,0.253679766386304,0.532221943804762,-6.04966668861984 +"Q9VP77",0.081278573268353,15.3158554571085,1.20900831331518,0.253783443709221,0.532221943804762,-6.04998943729714 +"Q9VUW2",-0.269930078483439,14.3897095849031,-1.20888564624126,0.253828574767432,0.532221943804762,-6.05012988023832 +"Q9W022",-0.0706214085324746,21.1500986105245,-1.20812417596343,0.254108874966995,0.532221943804762,-6.05100145808889 +"P02283",0.0926613615259058,21.5563069429011,1.20759153516431,0.254305089455873,0.532221943804762,-6.05161087405477 +"Q9VB68",0.115145963538524,15.4464344136697,1.20526635945427,0.255163059969498,0.533348350913687,-6.05426884807599 +"Q0E8X7",0.128083487855456,20.9988776749342,1.20110717756401,0.256703538542432,0.535510885422473,-6.05901375692353 +"Q9VSR5",0.0738491630137688,20.3570599932398,1.20074036871274,0.256839753200227,0.535510885422473,-6.05943163252208 +"Q9VZ49",-0.105467952987102,18.9238359814577,-1.19659691441123,0.258382439784512,0.537126817821106,-6.06414527934379 +"Q9VL66",-0.0862226156404517,15.7602739114329,-1.19634691005109,0.258475757186842,0.537126817821106,-6.06442929594495 +"Q9VZV2",-0.10131311230046,15.0461180422368,-1.1960654817386,0.258580836157283,0.537126817821106,-6.0647489582448 +"Q8SY96",-0.0762091384177985,18.7595914780058,-1.19161557578145,0.26024686249287,0.539915132634461,-6.06979589235232 +"Q9V400",-0.107902122232327,14.2324650022531,-1.18505186194473,0.262719880965299,0.54399491024756,-6.07721434045557 +"Q6NP72",-0.0945827071445855,18.7563196814997,-1.18285967196587,0.263549984155866,0.54399491024756,-6.07968510308082 +"Q9VH25",-0.0740380134249659,16.2493676452261,-1.18269706674666,0.263611639773137,0.54399491024756,-6.07986823350427 +"Q4QPU3",-0.114600878791746,14.554738652412,-1.18209135013332,0.263841412360747,0.54399491024756,-6.08055024036696 +"Q9VH26",0.0707965210887167,18.2317465694375,1.18208438829022,0.263844054190813,0.54399491024756,-6.08055807751994 +"Q00174",-0.0603657340511994,22.0791985117714,-1.17567516072848,0.266285100013892,0.548350057806386,-6.08775829238438 +"Q7JZW0",-0.0717341419612048,19.852561806456,-1.1744635174386,0.266748576704695,0.548627158993133,-6.08911613067534 +"Q7YTY6",-0.0806220846921999,18.4275473575314,-1.17255795550373,0.267478782362723,0.549451488892885,-6.09124946245092 +"Q9W385",0.108104874072092,16.7844830117989,1.16850082207399,0.269038731059191,0.549975566350053,-6.09578276104654 +"P42207",-0.0924633721892238,16.0307722952912,-1.16828139851132,0.269123302902885,0.549975566350053,-6.09602759619855 +"O97062",0.0634490132851546,18.4208828540843,1.16816117813138,0.269169648031617,0.549975566350053,-6.09616172452633 +"Q9VG73",0.0899643844349143,18.0198773504576,1.16665938996827,0.269749120949839,0.549975566350053,-6.09783636366783 +"Q9VE75",-0.137327251462603,15.3712853573712,-1.16605707094131,0.269981805523695,0.549975566350053,-6.0985075461941 +"Q9VNF5",0.0741396483732117,15.9624342456496,1.16590794287555,0.270039440323107,0.549975566350053,-6.098673683336 +"Q9V3V9",0.0545234888344801,19.5080276117813,1.1659014245527,0.270041959736627,0.549975566350053,-6.09868094474848 +"Q8SXC2",-0.167918177559546,14.7815427012335,-1.1638494514332,0.270835995681919,0.550452022613013,-6.10096530317528 +"Q9V3W2",-0.052252878318388,21.5163689398709,-1.16359156635215,0.270935917605086,0.550452022613013,-6.10125217638684 +"Q9W073",-0.0968953512205832,14.6015500432529,-1.1589139458305,0.272753390447461,0.552282321762723,-6.10644716096631 +"P48375",-0.0860373724785113,21.8085269826473,-1.15889708062117,0.272759960696279,0.552282321762723,-6.1064658625811 +"Q9VQT8",-0.185352731402919,17.9259406441039,-1.15871701905707,0.272830115786861,0.552282321762723,-6.10666551756252 +"Q9Y136",-0.0881531909505018,15.3530738197308,-1.15596454117708,0.273904297728924,0.553784689226479,-6.10971454935395 +"Q9VFM9",-0.0710533690661723,17.1121108313652,-1.15362263917759,0.274820865273129,0.554965137137506,-6.11230439338236 +"P91927",0.0933534378263126,19.1369009920535,1.15218588397033,0.275384370828059,0.555430629433135,-6.11389126657313 +"Q9VCU0",-0.149776267319002,17.3895518526558,-1.15068151976287,0.27597536535367,0.55595037368348,-6.11555118562401 +"Q7K204",0.1660805143682,14.6875787448478,1.1493067436261,0.276516321102206,0.556368182869095,-6.11706665979571 +"Q9VNQ3",0.115218338164219,15.0981666657644,1.14569146898253,0.277942853194304,0.558195715365185,-6.12104528004092 +"Q9VGQ1",-0.0787543556199921,22.4199680033146,-1.14530950018198,0.278093908554238,0.558195715365185,-6.12146507427561 +"Q9W254",0.056144742550515,18.1363121408559,1.14291884985921,0.279040788904583,0.558809928116596,-6.12409001489601 +"Q9V595",0.0725883028613588,18.5017065400041,1.14284533563382,0.279069946115782,0.558809928116596,-6.12417066671903 +"Q9VSW4",0.206389070406427,15.940833917808,1.14185727550331,0.279462061981898,0.558924123963797,-6.12525427074252 +"Q9VHA8",0.0581821982936539,18.577449049975,1.13984702623247,0.280261168650607,0.559851053064925,-6.1274566756073 +"Q9VE85",-0.0761814320233523,15.8814386667096,-1.13843824134884,0.28082224755899,0.560300848000472,-6.12899833760017 +"Q9VC05",0.0935254095948661,14.835132799116,1.13607288393887,0.281766275861373,0.561494021560148,-6.13158348250246 +"Q9VQV7",0.0640104422559524,16.2441362236556,1.13525438754621,0.282093519225063,0.561494021560148,-6.13247706470723 +"O18373",0.059416749452474,19.606156880926,1.13373872455232,0.282700280274155,0.562031069722634,-6.13413045302326 +"Q9VFF0",-0.0543407549161365,23.7210918395244,-1.12996637152894,0.284214875738607,0.563591199263899,-6.13823816225545 +"Q9VPU4",0.20322759974016,12.8646994658362,1.12949016592137,0.28440652040671,0.563591199263899,-6.13875594726227 +"Q9VY28",0.0750879147985213,15.3026918746893,1.12921334182676,0.284517972032058,0.563591199263899,-6.13905686414744 +"Q9VJH8",-0.115875702822963,14.4362121832611,-1.12842249856877,0.284836559340208,0.563591199263899,-6.13991622143875 +"Q9VW34",0.0599188677600715,18.5666504117758,1.12348554992937,0.286831665979686,0.566608775868913,-6.14527030472414 +"Q9VEV3",0.0502917744738447,18.1640059411476,1.1229690554408,0.287041016552297,0.566608775868913,-6.14582938442405 +"Q9VUH8",0.0637864258839791,15.4930412075164,1.1154509557203,0.290101778043305,0.571973718411623,-6.15394467381483 +"Q494G8",-0.0626819239862293,15.0669469987897,-1.11293100246135,0.29113334008989,0.57332988343558,-6.15665527625428 +"P29746",0.0672799083305442,21.2437329093553,1.10952278925657,0.29253303174245,0.575406953946233,-6.16031371482501 +"Q7KLE5",0.0556742784371629,21.3584388759151,1.10618555174364,0.293908609842317,0.577431756439322,-6.16388745336638 +"Q9VSL6",0.172303610903624,14.5992736241864,1.10495754669283,0.294416037177818,0.577748176485412,-6.16520036003568 +"Q7K549",0.151953161340407,14.7498003124148,1.10003968984982,0.296454933075523,0.580915344851599,-6.17044675365161 +"Q9VYF0",0.0777021413867693,16.229081430833,1.09839976325165,0.297137243643451,0.580915344851599,-6.17219214621637 +"A1Z7P1",-0.155173208085815,14.6474262404962,-1.09751441613071,0.297506104696901,0.580915344851599,-6.17313357980019 +"Q86PD3",-0.0455314260720101,18.8966688765052,-1.09622990560748,0.298041894887542,0.580915344851599,-6.17449840134451 +"Q9W499",0.130171145373406,16.939224954988,1.09615110940489,0.298074786203685,0.580915344851599,-6.17458208313267 +"Q9W0S7",0.0544064400354465,18.0308088817972,1.09604370095141,0.298119625415449,0.580915344851599,-6.17469614358274 +"Q6NLJ9",-0.145373623614553,15.0561653945419,-1.09499704798722,0.298556837362726,0.581044650059937,-6.17580715676235 +"A1ZBU8",0.0764094516694094,20.7168144287995,1.09310694814092,0.299347625476221,0.581044650059937,-6.17781136239383 +"Q9W259",0.106617033664328,16.9206861529285,1.09263717338678,0.299544421264852,0.581044650059937,-6.17830907400566 +"P29613",0.0485577767801821,23.7223571763347,1.09255375726704,0.299579375930183,0.581044650059937,-6.17839743312778 +"Q9VD00",0.0522353349339539,17.9030329485912,1.09032173868902,0.300515843688211,0.581672042383244,-6.1807597380733 +"Q0E9F9",0.0872083220998761,18.4649680245759,1.09012070410521,0.300600300080549,0.581672042383244,-6.18097232017277 +"Q9W402",-0.0504284570763609,21.1745173690248,-1.08663221442175,0.302068745344861,0.583257560707416,-6.18465625858233 +"Q9VYY3",-0.0508986202133279,17.5969178957534,-1.08554224228691,0.302528683425092,0.583257560707416,-6.18580538424009 +"Q26377",-0.115826304552622,16.7360509241872,-1.08359185698695,0.303353029921339,0.583257560707416,-6.18785934074108 +"Q9VGE4",0.0511820181539253,15.6351054434447,1.08356583520693,0.303364039849417,0.583257560707416,-6.18788672458859 +"Q7K3D4",-0.0858323892077806,18.5857959882855,-1.08349484776408,0.303394076499201,0.583257560707416,-6.18796142510521 +"Q9VZY0",0.0834168772720609,17.1882650710432,1.08320268203656,0.303517723437672,0.583257560707416,-6.18826883207424 +"Q9VE50",0.0865715849870003,14.475521288582,1.07824643332995,0.305621124512656,0.586623746475385,-6.19347361711206 +"Q7K568",-0.140200522694055,16.1603050377823,-1.07728406790186,0.30603083390112,0.586734978100078,-6.19448204591081 +"A1Z6P3",0.0593638299433685,17.166281251118,1.07546727349511,0.306805442989287,0.587544751901414,-6.19638385137903 +"Q9VVA7",-0.0608026802058852,17.5548351430977,-1.07306165781813,0.307833401315959,0.588837286003463,-6.19889810438252 +"Q9VGV9",0.0767075158298756,16.0126395571021,1.07199502801067,0.308290028210732,0.588971477560633,-6.20001147010384 +"Q9VXZ0",0.0497502099092664,19.5950930859692,1.07096940518205,0.308729586142732,0.588971477560633,-6.20108120103343 +"Q9W1H6",0.0751436612009115,17.13789610767,1.0704255681043,0.308962855434984,0.588971477560633,-6.20164809572692 +"Q9W140",0.166493786915103,13.7138353560822,1.06945270952738,0.309380480426601,0.589094339442431,-6.20266162953662 +"Q9VHI7",0.0868548781068466,15.5328542270178,1.06498231189088,0.311305035595952,0.592083009548515,-6.20730948907457 +"Q9VHC7",0.0612963704145386,19.9104484051464,1.06337867841429,0.311997628592779,0.592724424251429,-6.20897299571835 +"P18432",0.0640704299833459,23.5291666167008,1.06239032910727,0.312425068578135,0.592861222284789,-6.20999724867947 +"P51140",-0.0860655734120215,13.6004682650369,-1.06039250312444,0.313290441578162,0.592997336549464,-6.21206532477086 +"Q9V7D2",0.0634411935668631,21.2933263040172,1.06024499380271,0.313354408269444,0.592997336549464,-6.21221789761195 +"Q9VJ58",0.0629769780244018,17.2507657581955,1.05914415712698,0.313832093197648,0.592997336549464,-6.21335598627106 +"Q9VLP1",0.138527063646887,18.4090797696655,1.05894435135221,0.313918853820849,0.592997336549464,-6.21356245198593 +"Q9VH76",0.0584051246217356,19.2554924119031,1.05680156797911,0.314850445605625,0.59313779291104,-6.21577469824974 +"Q9VBT1",-0.0613309993661701,16.344982023068,-1.05611476663753,0.315149480136932,0.59313779291104,-6.21648300423668 +"Q9VPF6",0.0892020508451825,14.1197783312334,1.05556123606287,0.315390644643517,0.59313779291104,-6.217053598075 +"Q9VEA5",0.115365995414715,15.6087790686176,1.05491495086254,0.315672397439197,0.59313779291104,-6.2177195024459 +"A0A6H2EGA2",0.092847750330094,15.8112016697189,1.0534838868761,0.316296957422021,0.59313779291104,-6.21919284531849 +"Q9VJI9",0.112360383959945,17.4846501973073,1.05341953310072,0.316325065296063,0.59313779291104,-6.21925906265375 +"Q5LJT3",-0.080371906895742,17.0592843814307,-1.04907419706657,0.318227350317094,0.59313779291104,-6.22372271832673 +"Q9VGR1",0.140749112376492,14.1166566808303,1.04881823242291,0.318339674129271,0.59313779291104,-6.22398519044507 +"Q7JYZ0",0.156071698489558,16.7975662208708,1.04721617453869,0.319043377120403,0.59313779291104,-6.22562680832262 +"Q9V931",0.242440438093968,17.5012622896374,1.04672613011023,0.319258862809768,0.59313779291104,-6.22612855048705 +"Q9W329",0.06040069291506,16.4222194422817,1.04498114404568,0.320027070344819,0.59313779291104,-6.22791365626619 +"Q9VJG0",0.483296792217317,12.9801960885865,1.04485392226037,0.320083132474435,0.59313779291104,-6.22804370930585 +"Q7K0X9",0.0669840270386786,16.6210460585213,1.04472123319335,0.320141611717114,0.59313779291104,-6.22817933771817 +"Q6IHY5",-0.0688697321561804,20.8055478376889,-1.0445053977644,0.32023675272804,0.59313779291104,-6.22839992473652 +"Q9V3Y4",-0.10112802583466,14.0534009935095,-1.04421027201509,0.320366879630202,0.59313779291104,-6.2287014882463 +"Q9VEX6",0.0468052454759196,20.7234207725951,1.04389035672715,0.320507981682519,0.59313779291104,-6.22902830453239 +"Q7JVG2",0.0901639330976067,14.8418424357006,1.04382239168125,0.320537964413183,0.59313779291104,-6.22909772528814 +"Q9VVL7",-0.0447982693193438,23.4449115102015,-1.04266475033384,0.321048981185889,0.59313779291104,-6.23027960240804 +"Q24050",0.0620509096250448,16.6091061370855,1.04259539766532,0.321079614926098,0.59313779291104,-6.23035037346146 +"Q76NQ0",-0.0986325299380297,14.6124155645229,-1.04207465379496,0.321309702718118,0.59313779291104,-6.23088164628421 +"P43332",0.0933317905210806,17.1979023157213,1.04168789691091,0.321480669314075,0.59313779291104,-6.23127608458951 +"Q0E8P5",-0.0648933174806601,17.6916105113712,-1.04032713741077,0.322082739113691,0.59313779291104,-6.23266293190692 +"Q7JZK1",0.0453300120304938,21.4626792493718,1.04012563371453,0.322171966653119,0.59313779291104,-6.23286817445904 +"Q9VEK8",0.0479366564140697,18.8649467170921,1.03865109646403,0.322825469350323,0.593197854238055,-6.2343690951895 +"Q9VMX4",0.0767871261644082,17.2319397881249,1.03767951887327,0.323256608078762,0.593197854238055,-6.23535711766198 +"Q7JZN0",-0.0536366347575434,16.839456596125,-1.03722509437452,0.323458407751028,0.593197854238055,-6.23581897747315 +"Q9VT75",0.0649352978685602,15.6499745328062,1.03684532622111,0.323627126712608,0.593197854238055,-6.23620483408391 +"Q9VU04",0.0628619444630623,16.4469590514162,1.02806262257252,0.327547431297694,0.599724605273934,-6.24509644684543 +"Q9VBT2",-0.11481832720246,13.189899350694,-1.02662815611731,0.328191088092462,0.60024422690595,-6.24654287985172 +"Q9VKW5",-0.0890687817655049,17.0728239898052,-1.02568988259299,0.328612609757062,0.600356881790559,-6.24748809436459 +"Q9VXM4",0.129917272940194,20.2379712594749,1.02108409296472,0.330687632446363,0.603486839081547,-6.25211777684709 +"Q9XZ61",0.0535809532263478,18.5542758642914,1.01877445588426,0.331731849245541,0.604648795073302,-6.25443301840433 +"Q9VS02",0.0726733384015326,17.9271068251534,1.01783134520156,0.332158946664722,0.604648795073302,-6.25537719091073 +"O76521",-0.0507548208758362,16.1161413681071,-1.01727334005816,0.332411837579268,0.604648795073302,-6.25593548909967 +"P22979",0.0569946433202233,19.6027700921493,1.01609784263824,0.332945047729434,0.604958975612959,-6.25711078797577 +"Q9VH39",0.122383839450176,18.3511293452864,1.01409965068242,0.333852893485408,0.605948450852733,-6.25910610147145 +"Q9VF23",0.260212368004774,15.5829264578613,1.01185453978591,0.334875114203045,0.606501155342852,-6.26134415700687 +"Q9VCK6",-0.0999830197650962,16.6695411338012,-1.01162639735048,0.334979119494432,0.606501155342852,-6.26157135597057 +"Q7JWU9",0.15660511052387,15.4201115848207,1.0110363064106,0.335248240543231,0.606501155342852,-6.26215881266581 +"Q9VXH7",-0.0753566069098994,18.1474502303308,-1.00839205940781,0.336456163267295,0.607780363517051,-6.26478781758958 +"Q9VRZ7",0.077282709183784,17.2003507913344,1.00789390534105,0.336684086264841,0.607780363517051,-6.26528247047219 +"Q9VVG0",-0.0446292034361448,18.1425576342486,-1.00702867822345,0.337080229771685,0.607837646766671,-6.26614114160478 +"Q7JXF7",0.0527943403793749,17.8354914405549,1.00195316917151,0.339410994589848,0.611379631723398,-6.27116603870257 +"P08928",0.0442192998339976,22.7066381499279,1.00052607450624,0.340068481174727,0.611818323307544,-6.27257515675609 +"Q7JX94",0.196637568901421,12.4554350585169,0.999748765863531,0.340426995535266,0.611818323307544,-6.2733419812619 +"Q9V9U4",0.0478114874319662,15.909964501166,0.999038288424479,0.340754929468051,0.611818323307544,-6.27404244843602 +"Q9W3E2",-0.0901648689738401,17.4391393011254,-0.997782335954317,0.341335207183598,0.611835042054931,-6.27527970573346 +"Q95SH2",0.0696193897078601,18.7133393145131,0.997430580987026,0.341497856206919,0.611835042054931,-6.27562599578448 +"Q9VEN9",0.0820181000223545,14.9031431216791,0.994238124250707,0.342976637030304,0.613825140092862,-6.27876426895881 +"Q9VSN9",-0.0663925842630348,16.5886768191222,-0.993106698454809,0.343501855149684,0.614106210492683,-6.27987450753403 +"Q9VRQ9",-0.0455464953191687,14.7942430412683,-0.989149680408397,0.345343389045283,0.615521434545738,-6.28374924623015 +"P36951",-0.0535558103781213,20.3603421863304,-0.988520041799325,0.345637080116562,0.615521434545738,-6.28436461809976 +"P22465",-0.0506949036081252,22.6448928578298,-0.988311657116948,0.345734320228612,0.615521434545738,-6.2845682099877 +"Q7K159",0.10459742510851,14.5592157679927,0.987649336462594,0.346043517169196,0.615521434545738,-6.28521506262118 +"Q9VIX1",0.161616887035416,17.0657705520004,0.98730125476072,0.346206096475519,0.615521434545738,-6.28555487188647 +"Q7KW39",0.0470119457715832,21.7197458144868,0.986091791454714,0.346771438649197,0.615521434545738,-6.28673482379402 +"Q9VA41",-0.0814466106087828,17.4751022523942,-0.985867000304129,0.346876587813545,0.615521434545738,-6.28695399853969 +"A1Z6X6",0.0784613907889025,18.5473594407173,0.984329983692543,0.347596174609879,0.616142847236215,-6.28845150846344 +"Q9VG26",-0.0609287753238519,19.6958901800088,-0.982123723944477,0.348630991432239,0.617321118587021,-6.29059768907092 +"Q9VA18",0.0740394228707189,21.549160596135,0.97668000891965,0.351193927588855,0.621199863433944,-6.29587613923936 +"O15943",-0.0435196669078195,20.1816847135053,-0.973183049971546,0.352847554931752,0.622661945764701,-6.29925412507269 +"O97064",-0.0651095584187971,16.54416948832,-0.972586126923067,0.353130391259901,0.622661945764701,-6.29982973666062 +"Q9VFJ2",0.117180691438142,13.9744111740587,0.972564992895416,0.353140408089573,0.622661945764701,-6.29985011079178 +"Q9W3N9",0.0803094689615236,20.1746189930451,0.96957718611992,0.354558611959044,0.624502391497029,-6.30272679246686 +"Q7K4Z4",0.0959155231316888,14.9359734077714,0.965159005207819,0.356663343927328,0.627454859539214,-6.30696718007463 +"Q9V3D9",-0.0393246001519181,17.5208655860174,-0.96448084389852,0.356987207255824,0.627454859539214,-6.30761662653589 +"Q9VQG4",-0.0520081760534801,19.1735099000527,-0.962172601412467,0.35809113167339,0.628732639611804,-6.30982428728395 +"Q9V9S0",0.0668754077241438,17.0750306757614,0.96107313199439,0.358617825164676,0.628995302181577,-6.31087429943789 +"Q9VWT3",0.0604602502795597,14.2719617701835,0.959292359465536,0.359472081782715,0.629831336568875,-6.31257284675209 +"A8JNT7",-0.062332044084366,16.9183019633104,-0.954817549464438,0.361625191410188,0.63239055978309,-6.31682944584183 +"Q95WY3",0.0486673374584328,17.2605756653011,0.954079945665773,0.361980990484158,0.63239055978309,-6.31752948679596 +"Q9NHD5",-0.0936330576467448,16.6269288291043,-0.952701426154893,0.36264662595552,0.63239055978309,-6.31883659350983 +"Q9VG33",0.0636389100204831,19.9059274132444,0.952516983678098,0.362735753221092,0.63239055978309,-6.3190113614077 +"P14199",-0.0564759660344905,18.5062445155225,-0.952325299254672,0.362828396710082,0.63239055978309,-6.319192961437 +"Q9VMU2",0.0498718144713113,16.2650476200337,0.950802045692075,0.363565210553211,0.633013331109349,-6.32063499196633 +"Q24400",0.0595979586394968,21.4396632298241,0.947132247738569,0.365344754126481,0.635448435748666,-6.32410118071883 +"Q4QQ70",0.0623794543445833,16.0633288352795,0.945893166147676,0.365947016623445,0.635832941383236,-6.32526898174768 +"A1ZB68",0.0757935239973442,19.2641362846408,0.943250010729314,0.367234119621463,0.637405318968366,-6.32775580480138 +"Q7JNE1",0.042817338750357,17.7550808791539,0.941083633082461,0.36829147193976,0.637923591144106,-6.32978969921845 +"Q7K188",0.0569180465935801,21.9173575221991,0.941071064139734,0.368297612872766,0.637923591144106,-6.32980148807158 +"Q8IN51",-0.0848709339673057,17.0293309834214,-0.938289574179289,0.369658398105643,0.638384363119473,-6.3324070945244 +"Q9VM11",0.0845737190929547,17.8416410407996,0.938186047499991,0.369709115723758,0.638384363119473,-6.33250394984657 +"A1Z8D0",0.172658739206765,13.7767135759048,0.93785967477103,0.369869037994179,0.638384363119473,-6.3328092320548 +"Q961T9",0.0742846140695477,17.9365695131024,0.937399653659732,0.370094531856433,0.638384363119473,-6.3332393746483 +"Q9VNW0",0.115134101199061,14.4924044810533,0.934820071660623,0.371360816869591,0.639906862126527,-6.33564812607606 +"Q9VEJ0",-0.0406018200164375,22.1648801920338,-0.927085735151358,0.375176041691866,0.645813867432438,-6.3428367677074 +"Q9VTF9",0.0673207677659384,17.4287630436271,0.925339978807746,0.376041041269175,0.646091378162107,-6.34445238819694 +"P83967",0.159427360869579,17.3667822465648,0.92519700163254,0.376111947359356,0.646091378162107,-6.34458459343231 +"Q7KK90",0.0539821115936086,21.057639963996,0.921645131878062,0.377876461741106,0.64845466891375,-6.34786332689049 +"P48604",0.0428505175004439,20.046166605432,0.919076625937423,0.379156109708955,0.649981902358209,-6.35022767601029 +"Q9VTZ5",-0.0459858562266398,18.0461338279773,-0.918183540719325,0.379601769667708,0.650077773927861,-6.35104846711204 +"Q9VI64",-0.0458390232063017,20.8689443117872,-0.91655766941015,0.380414050353781,0.650449402587193,-6.35254099244624 +"Q9W1C8",-0.245278230404971,15.9794323082323,-0.916188432670844,0.380598691202099,0.650449402587193,-6.35287963418804 +"Q8T0N5",0.0546246244872073,18.6043919225789,0.913603579006564,0.38189305020477,0.651993457258503,-6.35524706978199 +"Q9VSY0",-0.0648033147643332,22.4982764593045,-0.909332272328237,0.384038702949734,0.654986254110589,-6.35914667735594 +"Q9VFS4",0.0735265478261287,15.1658399975213,0.907020417946382,0.3852035796662,0.656301911014527,-6.36125087864242 +"Q7JWD6",0.0448731261257933,20.433973622594,0.902912313521936,0.387279664534316,0.658912795624665,-6.36497875564356 +"Q59E14",0.0529834722308298,14.6411950648286,0.901039244162655,0.388228848475637,0.658912795624665,-6.36667368356376 +"P54353",0.0936173300478451,18.8304147218926,0.90094928724993,0.388274475467768,0.658912795624665,-6.36675500956851 +"Q9W0J9",-0.0608072229095988,18.371571084034,-0.900703027611549,0.388399399912554,0.658912795624665,-6.36697760647994 +"Q9VTC3",-0.103673140408148,17.0848272436251,-0.89967076688763,0.388923359592852,0.658912795624665,-6.36791011489285 +"Q7K2D2",0.0498697920165618,20.3608053691101,0.899310824480098,0.389106177272359,0.658912795624665,-6.36823506016607 +"O62530",0.0724344270970541,15.6386721994464,0.897894475428083,0.389826137083052,0.659462471252059,-6.36951262208252 +"Q9W436",0.0930238099272529,14.4398115397976,0.893622021635269,0.392003561823515,0.662474104479861,-6.37335601703225 +"Q9VSY4",-0.037553297268758,20.3955344228416,-0.889860039363797,0.393927850303431,0.665052281686359,-6.37672724502359 +"P48609",0.0588605104046636,17.0255468667255,0.884406131823057,0.396729248084374,0.668723859380528,-6.38159305864386 +"Q9VD29",0.0548771981380973,20.6646703017005,0.884065932832041,0.396904448912903,0.668723859380528,-6.38189572552777 +"A0A0B4KGY6",0.04921045887383,21.8071065702349,0.881890049032052,0.398026289587382,0.669937286611254,-6.38382919727608 +"Q9W0B3",0.055111734317034,19.1137005446103,0.880031083458764,0.398986475048481,0.670309076199736,-6.3854778225958 +"Q9VV60",0.0405872577784976,20.03074628468,0.879906451424063,0.399050906874303,0.670309076199736,-6.38558824590915 +"Q9V9Q4",0.0403123807936652,19.0396890741105,0.87850552192013,0.399775650478398,0.670850890340008,-6.38682853879635 +"Q9VGU6",0.0543536900711032,18.6156047721289,0.877689669415795,0.400198135637111,0.670884914816785,-6.38755006064326 +"Q8MKK0",0.211862824431257,15.6720370767871,0.876615001679106,0.400755118464607,0.671144114055185,-6.38849959454391 +"P21187",-0.0400335930246953,19.1557839528566,-0.873278339779812,0.40248787143857,0.673369879197126,-6.39144136756394 +"Q7K5M0",0.094782848727391,16.5627123375304,0.871618191187707,0.403351923232044,0.674139286524098,-6.39290144667121 +"Q9V3F8",0.0398075435980765,18.5038624549574,0.869496395853179,0.404458107894969,0.674848717548471,-6.39476405784261 +"Q7KML2",0.228542074791969,13.4733513888034,0.869252180412765,0.404585562079419,0.674848717548471,-6.3949781908064 +"Q9VME3",0.0709172599236219,15.7954597046461,0.867663881712799,0.405415158004241,0.67555692662445,-6.39636957872439 +"O61443",0.0526958118843979,16.6316753587641,0.86539540722592,0.406602049899873,0.676858502228531,-6.39835301481551 +"P21914",-0.0381933217089774,22.8684818590248,-0.863636721968736,0.407523855893002,0.677220208212202,-6.39988763684669 +"Q9VC58",0.129571945815654,13.1549233948413,0.862733412718194,0.407997878138936,0.677220208212202,-6.40067481418084 +"Q9W199",-0.0520674776493557,16.0163636898348,-0.862216834065254,0.408269128878883,0.677220208212202,-6.40112466056604 +"Q9Y112",-0.0391986793278356,22.2388288292397,-0.861885141171103,0.408443362986496,0.677220208212202,-6.40141338236679 +"Q9VK12",0.0470219015275113,22.2301964758484,0.858615598176316,0.410163540538434,0.679029846446428,-6.40425421946528 +"Q8IR45",0.0748606756419967,14.76825378291,0.85826370955504,0.410348971953237,0.679029846446428,-6.40455941207978 +"Q9VFP0",0.0704583528804985,16.4498812886435,0.854277406687019,0.412453600511824,0.681280758941716,-6.40800917340766 +"Q7JXW8",0.0908720251044208,14.9032286733651,0.853528397750498,0.41284987211859,0.681280758941716,-6.40865581776529 +"Q9VDL1",0.058999545910277,14.7955255268393,0.853368388030968,0.412934560725465,0.681280758941716,-6.40879389583711 +"Q8MSS7",0.103001401848262,14.2982921642656,0.851089925647758,0.414141771956582,0.682436704080331,-6.41075762948493 +"P61851",0.0622201808076746,23.492583664997,0.850502376983729,0.414453465967251,0.682436704080331,-6.41126328121609 +"Q9VXA3",0.0511150403288774,17.7763459926855,0.84929394798845,0.415095038464046,0.682754600948972,-6.41230231901439 +"Q9VVM1",0.0716883976410863,15.5843424207665,0.848597349171683,0.415465179834057,0.682754600948972,-6.41290069036489 +"Q9VMY9",0.0872287176656954,15.0465125895617,0.845853110523778,0.416925528709919,0.684480100283608,-6.41525381985165 +"Q6AWN0",-0.0610070802135674,18.3777350153857,-0.844769216500004,0.417503283092941,0.684754647196683,-6.41618141493248 +"Q9VY78",0.0670127004773988,18.727987186982,0.843049150573771,0.418421254613662,0.685135730378866,-6.41765132502563 +"Q9VGF3",0.0512221063692024,15.6855066969894,0.84279475063819,0.418557139841765,0.685135730378866,-6.41786850568498 +"Q9VRL1",0.0506209478565758,20.4607864901745,0.842001090540529,0.41898125777767,0.68515758624819,-6.41854568555684 +"Q95SN8",0.091731359208481,17.6345510071932,0.840966853670417,0.419534372430201,0.685390140267949,-6.41942730226144 +"Q709R6",0.0777491741759739,14.996330558216,0.838248636197217,0.420990443474389,0.686593009915268,-6.42173990528169 +"Q9VXK6",0.0627723804385631,17.6907313958114,0.837881894942132,0.421187157474692,0.686593009915268,-6.42205142245501 +"Q9VCC0",0.0572612312829754,17.3923809452537,0.837288566077713,0.421505540859253,0.686593009915268,-6.42255515633393 +"Q9V4Q8",0.0480021043272227,16.8899276261478,0.831939374186696,0.424383280804474,0.689747889941049,-6.42708256551069 +"Q8SZ63",0.111821964713831,14.0076724124627,0.831501865571069,0.424619234193529,0.689747889941049,-6.42745174191652 +"Q9VN93",0.0455780292115975,20.3086072160056,0.831383837017078,0.424682903458907,0.689747889941049,-6.42755130719513 +"Q94516",-0.0347076788378722,23.3227838557153,-0.828293471263726,0.42635225458054,0.690146647838844,-6.43015385656661 +"Q9VN88",0.0576003401272196,16.9694863985267,0.8276070744651,0.426723629275693,0.690146647838844,-6.43073075699236 +"Q9VSU6",-0.0580567630503026,21.5518762551509,-0.827114280759183,0.426990388987103,0.690146647838844,-6.43114468100868 +"Q9VGK3",0.0490406462523119,17.0547593905829,0.8269703274109,0.427068335112753,0.690146647838844,-6.43126555455734 +"Q960W6",-0.124147783820431,14.1550221101404,-0.826779099466555,0.427171893683205,0.690146647838844,-6.43142609482751 +"Q9VWD9",0.0376517362031734,19.4185133196218,0.826337759432049,0.427410963559668,0.690146647838844,-6.4317964861748 +"Q8IQW5",-0.0507207878168821,21.8915066377361,-0.825102345963626,0.428080652900992,0.69048527808693,-6.43283237895235 +"Q8SXF2",0.0391742942592916,15.4799487548273,0.82442412688126,0.428448598812933,0.69048527808693,-6.43340048899323 +"Q9V6U9",-0.0355220154320968,21.8539672104388,-0.821559495621111,0.430005048608063,0.69232473077051,-6.43579553992838 +"Q8IH23",-0.0840681620654138,18.3031126949066,-0.819464324709086,0.431145816192968,0.69349201678869,-6.43754264450345 +"Q7JXB9",0.0682446300141777,16.2530825015997,0.817493551401673,0.43222069541206,0.694367755962846,-6.43918245199167 +"Q9W2M4",0.0424754298398966,22.6239306466197,0.816940161668903,0.432522840794603,0.694367755962846,-6.43964228511408 +"Q9VW58",-0.0845564151909564,14.869250235052,-0.815141953048246,0.433505617034299,0.695276316551164,-6.44113460260941 +"Q9V535",-0.0456106964776772,18.6172391542276,-0.813252240915568,0.434540004001276,0.696265827736914,-6.44269975066871 +"Q9VJZ1",-0.0497964117700018,15.5246889940724,-0.811794123834365,0.435339266441392,0.696375517845743,-6.44390525314524 +"Q9VJD0",-0.0452272710642205,16.2045816271486,-0.811604200304629,0.435443444312416,0.696375517845743,-6.44406213321442 +"Q9VXN1",-0.0462803073568221,13.5748049341998,-0.810228099714335,0.436198765047345,0.696844262659068,-6.44519785307409 +"O97111",0.121241661347607,14.7190972016912,0.809548522996614,0.436572095011227,0.696844262659068,-6.44575809534561 +"Q9VH98",0.0425364193869591,16.9446843814699,0.808459055022152,0.437171043657863,0.697133174781372,-6.4466553898236 +"Q9V3G1",0.0552951160207016,21.163539481644,0.806585924458256,0.438202093480956,0.697693198869685,-6.44819563257948 +"Q7K0S5",-0.0353026746888254,18.2754597164465,-0.806301494497471,0.438358796412128,0.697693198869685,-6.44842923973696 +"Q7JXF5",-0.0420805956481516,18.4980668566026,-0.802466761392293,0.440475112231569,0.700393219449244,-6.45157169473524 +"Q9VIH3",0.0868556484327616,13.7255815807453,0.799321669940168,0.442215855974312,0.702491474062049,-6.45413916239055 +"Q9VG69",-0.0397332123448031,19.8844355662625,-0.797582818222149,0.443180218386549,0.703353572092068,-6.45555484459701 +"Q9VA32",0.0584905879950455,17.2990166996957,0.790320857502574,0.447222623864657,0.709094426431794,-6.4614377427268 +"Q9U616",-0.0599030940914425,19.6651499850331,-0.789496881099141,0.447682815903458,0.709149987584965,-6.46210224171748 +"Q9VW00",-0.0462531568672198,15.7203859472039,-0.786519074241879,0.449348508031198,0.711113198667967,-6.46449859530827 +"Q9W401",0.0382185017347005,24.4066267096067,0.785696125033477,0.449809553305645,0.711168089965702,-6.46515944067218 +"Q9VVT6",0.0401228069926525,20.440194239183,0.783368531727518,0.451115224475852,0.712383340917691,-6.46702523088553 +"Q9W266",-0.0391082732012151,18.32128115661,-0.782602636242913,0.451545395750432,0.712383340917691,-6.46763809796189 +"Q9VTP4",0.0392189403384116,20.949302198811,0.781679194689132,0.452064409203079,0.712383340917691,-6.46837632667677 +"Q9VQF7",-0.0874776860521571,18.7388924675807,-0.781284175086964,0.452286545582634,0.712383340917691,-6.46869188213256 +"Q7JR58",0.0530453751721289,22.7606185708049,0.777671819269272,0.454321220776043,0.713768353215872,-6.47157099782802 +"Q9VEJ3",-0.0693657213127317,20.0319381911855,-0.77745659950967,0.454442631569134,0.713768353215872,-6.47174215847653 +"A1ZBA5",-0.0858423031684961,15.7412812765763,-0.777444186032398,0.454449634961185,0.713768353215872,-6.47175202942371 +"Q9VR31",0.0565290702053485,17.2539981917918,0.774522149742233,0.456100127450827,0.715076587671195,-6.47407168139266 +"M9PFN0",-0.0434058667362045,16.6328478275379,-0.773774413307808,0.456523104566029,0.715076587671195,-6.47466402393658 +"Q7JVM1",-0.0671450999384078,15.8704487617972,-0.773251128891803,0.456819265381845,0.715076587671195,-6.47507825758608 +"Q9VYS5",0.0733018582156184,14.2947112787365,0.772268175615746,0.457375918838076,0.715076587671195,-6.47585569347052 +"Q23983",-0.0404881167996116,22.2701600137532,-0.772179619103463,0.457426090554655,0.715076587671195,-6.47592569129877 +"Q9VD68",0.0780409996894669,14.8373354610315,0.770213460385716,0.458540934699103,0.716081421330498,-6.47747796644133 +"Q7KQM6",0.0510462754449499,15.1493371541478,0.769532460315699,0.458927481656057,0.716081421330498,-6.47801479300763 +"A1Z933",-0.0661023674185355,15.7360619456813,-0.767945075411369,0.459829323807693,0.716654951886286,-6.47926447508667 +"Q9VVW8",0.0561203085353803,15.7310823585567,0.767373472479628,0.460154348603245,0.716654951886286,-6.47971391199894 +"O62621",-0.0824348525500032,13.1341551231951,-0.762464965125745,0.462951512696962,0.719587678613661,-6.48356107795577 +"A1Z6R7",-0.0423127966946275,17.8634526535216,-0.761458431940428,0.463526442783346,0.719587678613661,-6.48434725544261 +"Q9VRY5",0.0496349330777619,16.8120501385998,0.761246344907776,0.463647644958968,0.719587678613661,-6.48451279312725 +"P55841",0.0369137328712235,20.6904475190117,0.760889431119222,0.463851657717236,0.719587678613661,-6.48479127783423 +"Q9V3H2",0.0504817773355519,18.4838241430999,0.760289954047936,0.464194449753177,0.719587678613661,-6.48525876228985 +"Q9VZ24",-0.0922775200742123,21.7967976361841,-0.758760376236136,0.465069826068298,0.72027527379937,-6.48645006898268 +"Q9VCE0",0.0906353686202355,15.6928036725922,0.757676326451015,0.465690866678273,0.720523233828961,-6.4872930812687 +"Q9W078",0.0461437123925101,19.4132516286029,0.756973369935744,0.466093866487679,0.720523233828961,-6.48783916099173 +"P40304",-0.0568118610269366,18.8584061171042,-0.751159203201866,0.469435628092027,0.724107475502855,-6.49233843184223 +"O76454",0.0546162078638623,17.966525120314,0.751145345005436,0.469443611447915,0.724107475502855,-6.49234911890607 +"Q9VAC4",-0.0313580491805858,19.4208061678473,-0.750674679483053,0.469714801255449,0.724107475502855,-6.49271197863778 +"Q9VX02",-0.0556897026716143,17.2321042169567,-0.744444982052881,0.473313636794733,0.728981667750337,-6.4974955818595 +"Q9VZG0",-0.0397633997485585,21.7166676726966,-0.741548069931226,0.474993091376772,0.730641546635591,-6.49970786816693 +"A1Z9A8",-0.0488803666851361,16.8681057578212,-0.740491848489058,0.475606360917572,0.730641546635591,-6.50051254882065 +"Q9VAN7",-0.0332508472831101,23.616679939483,-0.740321240198093,0.47570546741382,0.730641546635591,-6.50064242994999 +"Q4V5H1",0.069699292135045,15.0468289226551,0.739329983145803,0.476281547437572,0.730853377300708,-6.50139652540608 +"P17210",0.0313971721455424,20.7789626067063,0.73813826504908,0.476974710163838,0.731244316685001,-6.5023019203544 +"E1JJH5",-0.0275791936591432,21.2446550586506,-0.737265438756144,0.47748279283093,0.731351054584014,-6.50296420872876 +"Q9VUN9",0.0297174588422351,16.8396367895264,0.735981991768038,0.47823052185262,0.731824321513918,-6.50393679199726 +"Q9V3W7",-0.0645233077024088,17.8949934089965,-0.734460180840685,0.479118074884045,0.732510493956542,-6.50508803206648 +"P40301",-0.0476346291393561,17.9360264328529,-0.731853583038681,0.480640703139401,0.734122888170473,-6.50705492912061 +"Q9VB10",-0.0396482024048233,21.011813020246,-0.730823866037086,0.481243041904698,0.734122888170473,-6.50783020399027 +"Q9VEN3",0.0407243893166189,17.4948309500258,0.730396673656215,0.481493069339627,0.734122888170473,-6.50815154928043 +"Q9VWD5",-0.0709985296917957,14.5196227166777,-0.729204139837439,0.482191467035399,0.734145003511013,-6.50904770952315 +"Q9VWX8",-0.0346261292563526,20.5116402592238,-0.728869015432989,0.482387844033615,0.734145003511013,-6.50929931012816 +"Q9VSS2",0.0401039675712642,16.3594375821197,0.726912161946269,0.483535524979077,0.73459815069458,-6.51076637311775 +"Q9VNA3",0.0431678530088391,18.5934543400374,0.726430703988636,0.483818158157314,0.73459815069458,-6.51112678006338 +"Q95RB2",-0.06965669487575,24.2492040050962,-0.72610942976738,0.484006815115914,0.73459815069458,-6.51136715794548 +"Q8I099",0.0342689460089254,16.9483475042062,0.723320070744893,0.485646698173099,0.736390505346577,-6.51345013253891 +"Q9VZD8",0.0717299611677547,13.6295430519707,0.722498603905302,0.48613030355978,0.736390505346577,-6.51406219116253 +"Q9VLR5",0.0632961410325308,16.7286356519268,0.721465238033903,0.486739081752832,0.736390505346577,-6.51483124060661 +"Q9W3N6",-0.0382594575061841,16.1697452197591,-0.721101172704114,0.486953673499565,0.736390505346577,-6.51510194800862 +"Q9VMB9",-0.0415443759684635,22.4720875263389,-0.71901588650829,0.488183941493259,0.737582259430033,-6.5166501244709 +"Q9VH72",-0.0758626869399137,18.4461129259226,-0.716096917026064,0.489909301445369,0.739044998292414,-6.51881045100906 +"A1Z6L9",-0.0639424410367315,15.3924977604202,-0.715879050965559,0.49003823028262,0.739044998292414,-6.51897137508076 +"Q9W5W7",0.0449113066498565,15.0692077280457,0.712107770113445,0.492273329030982,0.741745178702509,-6.52174996938238 +"Q9W1X8",0.0357128497590971,16.1474260028393,0.708968871435991,0.494138432128779,0.743883488078342,-6.52405251377108 +"Q9V3E3",0.0761879422746361,15.1153796384448,0.706199226364502,0.4957877389357,0.745140357395142,-6.52607654232752 +"Q9VS44",0.0539583143601696,15.0959712484437,0.706066629130968,0.495866784597487,0.745140357395142,-6.52617326301285 +"Q95SI7",0.0316953021488651,21.1520530834484,0.704066542334167,0.497060042750294,0.746261162292971,-6.52763019378456 +"A8DYK6",0.063706529782193,16.6311405210582,0.70211185875901,0.498227914140689,0.746455757554211,-6.52905043046797 +"Q9VP55",0.0478127642731483,17.1800296300103,0.701885854972514,0.498363053744788,0.746455757554211,-6.52921440963225 +"A1ZB71",-0.0473115806513782,19.1346946983751,-0.70160302795535,0.498532202587165,0.746455757554211,-6.52941954995508 +"Q9VSL2",0.0491340677253085,20.4029066514727,0.69593907865857,0.501927004057664,0.750864791720344,-6.53351192597523 +"Q0E980",0.047844548366804,18.3729608227334,0.694120023077161,0.503020275023446,0.751826002454398,-6.53481985533017 +"Q9W4A0",-0.0301808355491673,17.0845714433184,-0.693165329535923,0.50359463506448,0.752010609926188,-6.53550504962017 +"O46098",0.0365954266311057,17.9529786159935,0.690838877922833,0.504995937100527,0.752134005382817,-6.53717117798698 +"Q7JR49",0.0402507413207829,18.8495650475253,0.690772881749508,0.505035723366248,0.752134005382817,-6.5372183679483 +"Q9VXH4",0.0398631126853175,17.1751866391401,0.689712035322328,0.505675523213165,0.752134005382817,-6.53797635345494 +"Q9VXQ5",0.0293939832394905,20.3834643606198,0.689203907242996,0.505982150867109,0.752134005382817,-6.53833904051917 +"A8Y535",-0.0539823664592234,21.9712064615473,-0.688936217530164,0.50614373235559,0.752134005382817,-6.53853001179685 +"Q9V6B9",-0.0451218138001188,15.8320938491784,-0.688540274777175,0.506382786597664,0.752134005382817,-6.5388123556417 +"Q9VHF9",-0.0627998701982406,17.0516791975925,-0.68634279731059,0.507710777070944,0.753058298771831,-6.540376673566 +"Q9VY41",-0.0803285562322102,16.5138348396994,-0.686016699752297,0.507908025250785,0.753058298771831,-6.54060842442982 +"Q9VZU4",0.040474917692805,21.3322122086459,0.68517983542224,0.508414435245164,0.753139678498165,-6.54120270753506 +"Q9VHE4",-0.0306418491268019,17.9048919670998,-0.682713789825507,0.509908480362968,0.75426382327984,-6.54295007697583 +"Q9VA76",0.0413518839603721,15.2254334407604,0.682434764423254,0.510077693441043,0.75426382327984,-6.54314742461907 +"Q9W404",0.0744647612161664,15.939651094516,0.680549026836164,0.511222172906196,0.75489445770149,-6.54447922999635 +"Q9VXE8",-0.0509536883563264,16.1686287792403,-0.680240918257917,0.511409314869714,0.75489445770149,-6.5446965126292 +"Q9VJZ4",0.0290844122998308,21.2250336044934,0.677865652834972,0.512853408766675,0.754898672599983,-6.54636856899658 +"Q9VLG9",0.0651628500405028,15.7505567205001,0.677376554739285,0.51315107013067,0.754898672599983,-6.5467122041579 +"Q9V434",0.0615686013357237,15.0237322072161,0.677324507505548,0.513182751779659,0.754898672599983,-6.54674875866033 +"Q9VKV9",-0.0466677710620278,15.6536213625366,-0.677259245813173,0.513222478853945,0.754898672599983,-6.54679459049141 +"Q9VL00",0.0943922985678469,15.9552523202847,0.675383622978542,0.514365024083369,0.755912652133092,-6.54811007444793 +"Q9VKM3",0.0496520053190146,21.7459298273914,0.67390518316304,0.515266695876535,0.756571169649701,-6.5491446411226 +"Q7K2N0",0.0587234502196008,15.3862683639639,0.67298570459529,0.515827944523009,0.756729121780457,-6.54978701862127 +"Q9VKK1",-0.0744162695109534,14.5359172181919,-0.67218768213792,0.516315352496947,0.75677856587426,-6.55034389287937 +"Q9V3G7",-0.0421742928915378,18.1703801513103,-0.669382193617346,0.518031041122971,0.758626669528635,-6.55229681487366 +"Q9VNH5",0.0332408298250293,17.1927681452835,0.66815783214108,0.518780859306481,0.759058309932641,-6.55314675921986 +"Q9VIW6",-0.0843675268513824,15.0687556918158,-0.661920505262522,0.522610703599868,0.763991808592972,-6.55745454311025 +"Q95SH0",-0.348654087253809,13.7906927535107,-0.66104678393038,0.523148519530026,0.764108345513207,-6.5580550175299 +"Q9W415",-0.0907111042748756,16.7397118006132,-0.659139865422354,0.524323451806945,0.765072989464795,-6.55936304081117 +"P80455",-0.0597297091451168,20.5171656308944,-0.658042855652302,0.525000070567342,0.765072989464795,-6.56011394757658 +"P22769",0.0394846167950433,20.1289879303616,0.657743179400983,0.525184995765701,0.765072989464795,-6.56031887728834 +"Q9VMQ5",0.0928557751700296,13.6536482014437,0.654868196134259,0.526961049382225,0.766518671157154,-6.56228054103015 +"P42281",0.0391384084295545,21.6749046324742,0.653955731137041,0.527525472490819,0.766518671157154,-6.56290148546641 +"P12370",-0.0454988172594462,20.8859332055472,-0.653906370050726,0.527556015880343,0.766518671157154,-6.56293505365219 +"Q9VD26",0.0536016446056777,16.2038281291666,0.652201471504259,0.528611601144605,0.76738394317598,-6.56409304667779 +"Q9VCF8",-0.033374185805302,16.930474305896,-0.648472558921343,0.530924662982862,0.770071598135143,-6.56661609011078 +"Q9VFN9",-0.0448490124155825,16.0378920759186,-0.646108444165187,0.532394193613881,0.771532158946962,-6.568208792888 +"Q9W077",-0.0356702872126426,20.7828016258906,-0.64271540122621,0.53450744361968,0.773430835527285,-6.57048532095163 +"Q9VMM6",0.0713360957025806,18.3183079440774,0.642516063068304,0.53463174662048,0.773430835527285,-6.57061872139205 +"Q9V429",0.0313170022518712,22.3084886446758,0.641587212583724,0.535211179317742,0.773598134403807,-6.5712398207793 +"Q24090",-0.0553487793002976,15.880295735066,-0.638687651747638,0.537022318053247,0.775069957859031,-6.57317335509378 +"Q9VZS3",0.063080307510937,18.3704221399494,0.638469386188553,0.537158795734436,0.775069957859031,-6.57331857569394 +"A0A0B4KI23",-0.0407012814970926,20.4662016234098,-0.637703829520917,0.537637643765062,0.775090397407194,-6.57382756841868 +"Q9VXI6",-0.036243566043936,21.9778291703426,-0.63677995601195,0.538215846069401,0.775253912991157,-6.57444107024562 +"Q961D9",-0.153117296806277,12.3686929291815,-0.636027168020763,0.53868724084795,0.775263432040018,-6.57494035505435 +"A8JNP2",0.0451319666262577,21.0900906176038,0.629926564994875,0.542516210651413,0.780100896005652,-6.57896643841623 +"Q9W5W8",0.031505748016734,20.7540783932538,0.628864858578855,0.543184171552057,0.780294911225717,-6.57966344569616 +"A0A6H2EG56",0.0587343237640852,20.8933024421762,0.628225343893162,0.5435867427124,0.780294911225717,-6.58008276054376 +"Q9VXI1",-0.0588536996461428,19.530596394958,-0.626407501969658,0.544731998096474,0.780602928035752,-6.58127252153488 +"Q9VF39",0.0693904434522938,15.8724826669888,0.626124048220714,0.544910700651807,0.780602928035752,-6.58145775193064 +"Q9VS97",0.0492331533620884,15.119787367858,0.625656905576645,0.545205282471014,0.780602928035752,-6.58176284942026 +"Q9V9T9",-0.0470346831560935,13.5195727942761,-0.622995244563606,0.546885471329008,0.781520272872276,-6.58349719526415 +"Q9W3T2",0.0319721224381944,16.2126684178839,0.622299052995335,0.547325433049498,0.781520272872276,-6.58394970590687 +"Q8SX78",0.0370608302732123,15.9562909401366,0.621803155850618,0.547638940678444,0.781520272872276,-6.58427174334384 +"P45437",-0.0374791752000654,16.2741747660964,-0.621674738336362,0.547720143277992,0.781520272872276,-6.58435509938195 +"Q94533",0.0473740739188049,15.2443655031398,0.619436116028129,0.549136798404148,0.782871948494119,-6.58580562979957 +"Q9VBP6",-0.025858982314265,23.068866651639,-0.617543735832612,0.550335965284666,0.783911520149294,-6.58702802670436 +"Q7KVQ0",0.0554365018944765,15.8413710186382,0.612457591967339,0.553566308488036,0.787840104571709,-6.59029626077174 +"Q9VFV9",0.0317566478133351,21.3254608745638,0.609092591753337,0.555709376886403,0.789662660487073,-6.59244473282354 +"Q7JWX3",-0.0338090517745009,18.010536446635,-0.607641408440641,0.556635030478296,0.789662660487073,-6.59336788389445 +"Q9VHX4",0.0303143868270155,22.7801182414754,0.607076305767225,0.556995721658689,0.789662660487073,-6.59372681270692 +"Q9VW40",-0.0404036240027263,14.67688092806,-0.606404318671877,0.557424805197728,0.789662660487073,-6.59415322572381 +"Q7KLX3",0.0317510739590183,19.3145152010274,0.605856103015376,0.557774994277637,0.789662660487073,-6.59450077361973 +"P16620",-0.0489265104136489,17.3794849910667,-0.605300322187873,0.558130141659637,0.789662660487073,-6.59485281911118 +"B7Z107",0.0840295461480984,15.8371310380973,0.605252294867594,0.558160837358669,0.789662660487073,-6.59488322671161 +"Q95RF6",-0.0533071199414987,17.3561286969442,-0.604485417083118,0.558651099977517,0.789686470137711,-6.59536845700366 +"Q9VJ19",-0.0323087175456465,19.1472242515217,-0.603507381359752,0.559276704729788,0.789901391608202,-6.59598646379966 +"Q9VGG5",0.0430034678840272,17.0766306551152,0.601934863245754,0.56028339328956,0.790653722510141,-6.59697816297683 +"Q7K2E1",0.0433887082440769,17.5881638735955,0.599307598215658,0.56196755961284,0.790847099760059,-6.59862965715778 +"Q9VFM0",-0.0424833332568948,14.3604009765098,-0.599180864871319,0.562048871203967,0.790847099760059,-6.59870915141262 +"Q9VBI2",0.0261174049344319,22.0310321221807,0.598228676151575,0.56266000090586,0.790847099760059,-6.59930591662312 +"Q9VV76",0.0520334079963511,16.2930998708607,0.598223882582632,0.562663078428307,0.790847099760059,-6.59930891865947 +"O44226",0.0247194303112259,20.1709234329121,0.598024532508258,0.562791071591841,0.790847099760059,-6.59943374444889 +"Q95RA9",0.0249855658592679,20.4499272444701,0.597077576325134,0.563399287905949,0.791035363827544,-6.60002616460182 +"P07668",-0.1093316790193,14.5890200073901,-0.594578922516531,0.565005887819648,0.792340771261799,-6.60158513272803 +"Q9VH37",0.0715938000967409,16.6147464393384,0.593429383577913,0.565745876996566,0.792340771261799,-6.60230030920297 +"Q9VNC1",-0.0728095778534801,15.7040145032367,-0.593416595790548,0.565754111854198,0.792340771261799,-6.60230825776269 +"Q9VDC6",-0.0442736973507252,17.0614399598261,-0.591795783265035,0.566798391128102,0.792498067627625,-6.6033144194251 +"Q9VUM1",-0.0438405110582192,16.5133747607993,-0.591767437679659,0.566816663477072,0.792498067627625,-6.60333199284174 +"Q7JVI6",0.0429097571134562,17.5530655400203,0.58857912262509,0.568874013478854,0.794708420839807,-6.6053036381873 +"Q9VD30",-0.0501056648320066,21.4083870034755,-0.586095071421573,0.570479761525946,0.795345318456832,-6.60683287427378 +"Q7PLT4",0.0826911667345946,15.8514393477679,0.585424565965526,0.570913617797425,0.795345318456832,-6.60724461636294 +"Q9VNA5",0.0358013796383823,17.3965250060971,0.585109376381822,0.571117626416228,0.795345318456832,-6.60743801490214 +"Q9VV36",0.0329893611870844,22.9198134490515,0.584924627263682,0.57123722512667,0.795345318456832,-6.6075513306621 +"Q9VIG0",0.0346647576309138,17.3440999918206,0.583867143085304,0.57192205942569,0.795388211894814,-6.60819929425698 +"Q9VHN6",-0.0447462537055507,15.1462831482813,-0.582381530662294,0.572884911454953,0.795388211894814,-6.60910773762074 +"Q0KI15",-0.0454007074298737,15.5979907923235,-0.582353708087322,0.572902952214505,0.795388211894814,-6.60912473031835 +"Q9W258",0.039894195259123,19.3271952676518,0.581933536877858,0.573175438068085,0.795388211894814,-6.60938125847851 +"Q9VFC2",-0.0346438379994254,19.9563556833067,-0.580169866411694,0.574319970497866,0.795477669925181,-6.610456147225 +"Q9VJ28",0.0302115826275156,19.0154155706828,0.579996465554887,0.574432566096626,0.795477669925181,-6.61056166351385 +"Q9W3T9",0.0297303424597501,18.6055101749439,0.579629917602823,0.574670618860817,0.795477669925181,-6.61078461475461 +"Q86BL4",-0.0473079613056111,14.9543943203995,-0.574323120188112,0.578123104945977,0.799176269854357,-6.61399766569164 +"Q9VRP4",-0.0499252426529146,14.5092918594909,-0.572960023142775,0.579011717374588,0.799176269854357,-6.6148184971334 +"Q9W2D6",0.0392242532402776,19.5720527581227,0.572760881152138,0.579141601259226,0.799176269854357,-6.61493826367131 +"Q9VWA8",-0.0761036077855923,14.4711027153225,-0.572580812252717,0.579259058905226,0.799176269854357,-6.61504652581397 +"A1Z9B5",0.0728827510103756,15.640698877793,0.567564603418455,0.582536264097364,0.803033461582151,-6.61804957053622 +"Q9VNF3",-0.0248371334693758,19.1185376196897,-0.56316857768668,0.58541646612551,0.805631767590628,-6.62066094088695 +"Q9VAA6",-0.063399376727201,16.0793317822188,-0.56260671814411,0.58578513560302,0.805631767590628,-6.62099332791597 +"Q9V9M7",0.0407963531713911,18.4925272384014,0.562477250885365,0.585870104368964,0.805631767590628,-6.62106987447319 +"A1Z6S7",0.0284367992299863,17.5590515506564,0.560784836811958,0.586981433521431,0.805869265216418,-6.6220689793155 +"Q9VJD4",0.0309509253485878,20.7105362153608,0.560742745763727,0.58700908707311,0.805869265216418,-6.62209379141712 +"Q9U1K7",-0.0664263608843925,17.4479161245053,-0.557872282927242,0.588896601137663,0.807795666692123,-6.62378175937967 +"Q9W0D3",0.0786433932549446,12.8805767096222,0.555390006322784,0.590531456219446,0.809372612139717,-6.62523488641135 +"Q9W2X6",-0.0273067747007012,24.0587455298053,-0.551412866453155,0.59315585181673,0.81165981261351,-6.62755039378198 +"P50887",-0.0513956691804438,17.9869090458926,-0.550305081564688,0.593887940695511,0.81165981261351,-6.62819256068445 +"Q9W0H6",0.0331968811138879,18.1460025808286,0.550146495527481,0.593992782555142,0.81165981261351,-6.62828439119184 +"Q9VY91",0.0933403193473232,16.825751517397,0.549913761817594,0.594146661391544,0.81165981261351,-6.62841911235729 +"P00334",-0.0367118046908992,25.154576789282,-0.54878479871225,0.594893406887567,0.812014895817072,-6.62907186633495 +"Q9VAD4",-0.0990405737591207,13.4195673481856,-0.547324187798381,0.595860250780782,0.81218914279965,-6.62991449973638 +"A0AQH0",0.060536129244479,16.953696364868,0.546718007712074,0.596261750764169,0.81218914279965,-6.63026358641938 +"E1JIY8",0.0232563379763899,16.3378180434282,0.546385818711654,0.596481834490151,0.81218914279965,-6.63045473258123 +"Q9VV75",-0.0211889688916607,23.9219490195168,-0.544720421944381,0.597585844404386,0.813028701848708,-6.6314113738031 +"Q9VQ29",-0.0350952227628945,22.1467414829212,-0.542463211278187,0.599083879848226,0.814402535930596,-6.63270356956572 +"Q8MSV2",0.0553467428146917,18.2756556038498,0.541319727159905,0.599843519724025,0.814771165227747,-6.63335625318529 +"O18404",0.0323966153527806,22.9737753458379,0.538237872229742,0.601893356147104,0.816890250653677,-6.63510885575591 +"Q9VSY6",0.036006372212789,17.8221119518697,0.536845354273375,0.60282075485199,0.81748375536026,-6.63589765934803 +"Q9V3F3",-0.0619782157604316,14.6457686399797,-0.535051447475259,0.604016564333856,0.817909624054603,-6.63691098758245 +"Q9VKQ2",0.0390554548930879,15.9243312803963,0.534903107883103,0.604115501699803,0.817909624054603,-6.63699463703621 +"Q9VCW2",0.0316341851966584,15.4803121995799,0.531960108808022,0.606080110934835,0.818810935622365,-6.63864967650493 +"A1Z7H7",0.0342570946469785,17.9034921351046,0.531802056292047,0.606185712565859,0.818810935622365,-6.6387383154202 +"Q9VVA6",0.0286760983154437,19.1613482255758,0.531700008367418,0.606253900176031,0.818810935622365,-6.63879553264171 +"Q9VPX6",-0.0703536766207762,21.594390052758,-0.529149529815651,0.607959391918498,0.820450053171566,-6.64022218588048 +"Q9I7T7",0.0643996423863893,14.5539785610335,0.526491573836997,0.609739371579343,0.822186961838597,-6.64170205065513 +"Q4V6M1",0.0281657113516545,18.2087207464921,0.524426933202454,0.611123858534421,0.823026268848466,-6.64284670749507 +"Q8SWZ6",-0.035354474806379,13.9301761728174,-0.52409193552238,0.611348649342476,0.823026268848466,-6.6430320318377 +"Q8IN49",-0.0336247467554678,17.0833028997499,-0.523220591745899,0.611933537703507,0.823149307168911,-6.6435135433042 +"O18413",-0.0221115587317229,19.5114327498004,-0.517674948881727,0.615662711704141,0.827311535096705,-6.64656031166778 +"D0UGE6",-0.064404819205242,15.1940970284651,-0.517144907776339,0.616019740161935,0.827311535096705,-6.64684990376298 +"P25007",0.0270482069557616,23.809963320718,0.51592513769432,0.6168417582031,0.827749036752028,-6.64751526565935 +"Q8I937",0.0990639268070979,13.9565745248004,0.514709372088373,0.617661628410624,0.828182955135788,-6.64817695969089 +"Q9VKU3",0.0358388518451029,15.6182743980102,0.513163477532246,0.61870491897623,0.828915505905504,-6.64901619032616 +"Q8IP97",0.0339339830099092,19.9361585674327,0.512320309761868,0.619274328043202,0.829012503351574,-6.64947291674751 +"Q6IGN6",-0.070785838366314,16.7544504947131,-0.508711923210195,0.621714118559209,0.831611186653377,-6.6514194459675 +"Q8ING0",-0.0423884545882203,14.6279531894099,-0.506327816318325,0.62332875338575,0.833102853082877,-6.65269837015048 +"Q9VTJ4",0.0260548173948632,15.5700687229629,0.504570466487241,0.624520254727634,0.834027049548193,-6.6536374217662 +"Q9I7C6",-0.122250807180514,15.5324145521747,-0.501426998126821,0.626654380301572,0.835240341937041,-6.65530940939786 +"Q9VNI4",0.0428504134845795,16.4378683361288,0.500109293516463,0.627550054041261,0.835240341937041,-6.65600732932541 +"Q960M4",-0.0298099849781295,23.1310416328802,-0.499888995662081,0.627699857244202,0.835240341937041,-6.65612383916061 +"R9PY51",0.0301848128873807,21.4184165736271,0.497244670136821,0.629499384458486,0.835240341937041,-6.65751854027013 +"Q9W3V3",0.122982107999933,13.2079596076327,0.496974605242622,0.629683313089162,0.835240341937041,-6.65766058461918 +"Q8I0J3",0.0560435325118664,15.0509101079194,0.496200488042628,0.630210674861533,0.835240341937041,-6.65806733493304 +"Q9TVP3",-0.0423789776423042,22.8714239650332,-0.496149559782924,0.630245376987409,0.835240341937041,-6.65809407338381 +"Q95083",-0.0256823499189665,19.9380337188648,-0.495687970403807,0.630559943304083,0.835240341937041,-6.65833629867989 +"Q9VIK6",0.0317500044181429,16.5070205496729,0.495630732110981,0.630598955729474,0.835240341937041,-6.65836632028396 +"Q9W136",-0.037880274562113,18.1475102039402,-0.494692077611928,0.631238892202941,0.835240341937041,-6.6588581753125 +"Q9VJC7",0.038128180429144,18.5656080440269,0.494025616979988,0.631693451399238,0.835240341937041,-6.65920686140719 +"Q9W1L1",0.0635102680342143,15.019427046615,0.493805709602487,0.631843474350248,0.835240341937041,-6.65932181664333 +"Q9VRJ4",-0.0199348023501251,20.6832409731443,-0.49366652543829,0.631938436165794,0.835240341937041,-6.65939454910863 +"Q9VL18",0.0263018771545056,20.878107174647,0.491920910991188,0.633130018064999,0.83583325083975,-6.66030508270548 +"Q9VAN0",-0.0228630897688156,20.5052386509913,-0.491023807251537,0.633742821315578,0.83583325083975,-6.66077182669834 +"Q8MT58",-0.0250869288288449,21.670010949519,-0.490807934637282,0.633890325127269,0.83583325083975,-6.66088401937255 +"Q9Y0Y2",0.0228358406248823,19.4533040478433,0.489059637838974,0.635085537598472,0.83674776991647,-6.66179090547012 +"Q7KNM2",0.0283779080198165,19.6003321742329,0.488270137410777,0.635625634307132,0.836798388338039,-6.66219942774034 +"Q9V773",0.0390035816860088,15.5090020211246,0.479971684281434,0.641316063768158,0.843593882168716,-6.66645529170563 +"Q9VHD2",0.042808554222983,16.6274005406552,0.477784891933339,0.642819665728379,0.843593882168716,-6.66756518627818 +"Q9XYW6",0.0409042465626523,16.628034499732,0.476220964898748,0.64389603119468,0.843593882168716,-6.6683559773548 +"Q9VMQ7",0.0529892350714807,15.923568019717,0.476026101443182,0.644030205428114,0.843593882168716,-6.66845433530075 +"P05389",0.0206730811637392,20.557214523229,0.474893675780838,0.644810207320618,0.843593882168716,-6.66902516881523 +"P55828",-0.0265432568739357,19.964589512763,-0.474532382539176,0.645059156835476,0.843593882168716,-6.66920701602527 +"Q9VH19",-0.0404814657751587,13.9949357515113,-0.474325138034793,0.645201979584764,0.843593882168716,-6.66931126721082 +"Q9VQX3",0.0514704243627069,15.1613029291368,0.474278891162636,0.64523385271909,0.843593882168716,-6.66933452504928 +"Q9VAP3",0.055504109721376,16.5099675027921,0.473638235681297,0.645675466785324,0.843593882168716,-6.66965649148004 +"Q7KSM5",0.0214614984254844,18.942189973201,0.473392410036252,0.645844956552429,0.843593882168716,-6.66977992255667 +"Q7JZF5",0.0281145165283032,16.926345887847,0.472540946966179,0.646432179758829,0.843700215835466,-6.67020697521616 +"Q9VFB2",0.0348075795137603,16.5180519307174,0.470418529253255,0.647897038520307,0.844376713247615,-6.67126827443206 +"Q9VIN9",0.028062874622174,16.5325928028348,0.469705581361167,0.648389456737112,0.844376713247615,-6.67162375263907 +"Q9V3Z2",-0.0383024324063985,16.2358448370358,-0.469162346803895,0.648764776452701,0.844376713247615,-6.67189426471551 +"Q9VAM6",0.0207345707175044,21.9887978165628,0.468857575295765,0.648975387520049,0.844376713247615,-6.67204589916934 +"P38979",0.0206815554256004,22.1079366163806,0.467398032578298,0.649984446361492,0.844595378087606,-6.67277076458773 +"Q9W0Z5",0.037733612892966,16.8066921978833,0.466756396352891,0.650428277573921,0.844595378087606,-6.67308874103008 +"Q9VTB3",-0.0254300271135328,19.6615265647393,-0.466417860413618,0.650662506500344,0.844595378087606,-6.67325634107581 +"Q9VXE0",-0.0265599858523444,18.0819723242216,-0.464582751471874,0.651932887416896,0.845460049291096,-6.67416282667751 +"Q9VCB9",0.0346361305400116,16.9354910409389,0.463991589408191,0.652342376161655,0.845460049291096,-6.67445411274432 +"Q9VU84",-0.0292045663952614,18.4394117511284,-0.46269781250192,0.653238976415542,0.84596476138286,-6.67509036122686 +"A1ZBM2",0.0235937805904456,18.5976099190297,0.461572953320537,0.65401898411893,0.846317816532487,-6.67564215594736 +"Q9VUW4",-0.0370605083008222,14.5899577128377,-0.459574959163365,0.655405520525141,0.846856034390166,-6.6766190877043 +"O97418",-0.0239321826514605,20.9747162444288,-0.458797592290781,0.655945355680053,0.846856034390166,-6.67699808770017 +"Q9V4C8",-0.022139716720428,17.2372603338568,-0.458779342689245,0.65595803143411,0.846856034390166,-6.67700697777672 +"Q8MKN0",0.0308410246777946,16.6762196725178,0.456498604347472,0.657543077238349,0.847041057156686,-6.67811534145218 +"Q9VTM6",0.075217026990094,16.2651312087768,0.455465070531012,0.658261937892853,0.847041057156686,-6.6786158594503 +"Q9VQE0",0.0298444722692217,17.5516897164665,0.454678353090082,0.658809372806954,0.847041057156686,-6.67899611969557 +"Q9VDV2",-0.0670053766073817,14.5513657554932,-0.454582378793928,0.658876170651371,0.847041057156686,-6.67904246572764 +"Q9VSJ8",0.0490643928467591,15.7067287814493,0.454275394048938,0.659089852234349,0.847041057156686,-6.67919064573154 +"Q6IDF5",0.0370389418712662,19.560033426497,0.453624758381864,0.659542843437963,0.847041057156686,-6.67950438661161 +"Q9VYT1",0.0481898168527728,14.3020822419576,0.453462154945371,0.659656075087851,0.847041057156686,-6.67958272764315 +"Q9U6R9",0.0254612000349965,20.5370590310835,0.451647450237065,0.660920384384696,0.847660802573033,-6.68045520751538 +"Q9VDF4",0.0217092622567243,18.6677002537498,0.449789955323866,0.662215661020678,0.847660802573033,-6.68134477968837 +"Q9VKR4",0.0348405127882998,19.2647036448184,0.449174477243917,0.662645106127532,0.847660802573033,-6.68163876111953 +"Q9W483",-0.0469693529059647,15.6709905982202,-0.448182815396895,0.6633372993563,0.847660802573033,-6.68211161192781 +"Q9U5L1",0.0192254295544849,17.6721881933998,0.447906458910298,0.663530258917044,0.847660802573033,-6.68224320710924 +"Q9VSX2",0.0204195772955096,17.8888311676922,0.447728923726923,0.66365423234079,0.847660802573033,-6.68232770449427 +"Q9VE56",0.0210310003487066,17.4575515801111,0.447654931311533,0.663705904628771,0.847660802573033,-6.68236291147581 +"P92204",0.0553015455254524,15.8227872069847,0.446896079803765,0.664235951646494,0.847660802573033,-6.68272366443676 +"Q9I7K6",0.0313109967046934,16.1029995868677,0.446214160221865,0.664712427916983,0.847660802573033,-6.68304734252272 +"Q9W1V3",-0.0372184749828595,16.4365033847756,-0.44470093742686,0.665770316290638,0.84836125864995,-6.68376390722241 +"P49028",-0.0386795167657148,16.3969913274583,-0.443720010793925,0.666456488168255,0.848587345240191,-6.68422716018305 +"Q9VVS6",-0.0388488600550225,16.5104194602847,-0.439942652390905,0.66910180273437,0.851305726133432,-6.68600186493552 +"Q9VEY5",-0.0235488599083062,20.8134840304023,-0.438187790692975,0.670332360759581,0.852221324502272,-6.68682137815557 +"Q9VGP7",-0.0491145065321366,16.0718588277049,-0.435230865393408,0.672408144678828,0.854209280521162,-6.68819511520216 +"Q8SWS3",0.0349903194958507,16.3554737081065,0.433667821838835,0.673506577835163,0.854948073263597,-6.6889176586003 +"Q9VIU3",0.0904254630775601,12.5656175467603,0.431662554662721,0.67491696006179,0.854948073263597,-6.68984095898112 +"Q7K1Q7",-0.0235380860014978,16.5175844902038,-0.429915282910887,0.676146957608569,0.854948073263597,-6.69064210560788 +"O61722",0.0256664879385191,18.9064980962813,0.429026032506939,0.676773331091746,0.854948073263597,-6.69104863539209 +"A1ZA22",-0.0771648948217489,13.8073568413692,-0.428905953151913,0.676857932788273,0.854948073263597,-6.69110346867668 +"A1ZA83",-0.028646663865425,17.062276036172,-0.427530429193404,0.677827390631533,0.854948073263597,-6.6917305347379 +"B7YZT2",-0.029637888434717,18.3569559778157,-0.42645253537893,0.678587511041345,0.854948073263597,-6.69222056105392 +"Q9V998",0.0644012016236584,15.8741355797117,0.426123208499416,0.678819824404293,0.854948073263597,-6.69237003987529 +"P02572",0.0222882003928362,26.556977962849,0.424964716289141,0.67963732580064,0.854948073263597,-6.69289498479522 +"Q7K3W2",-0.0170814773266486,17.6533582755945,-0.424301991534881,0.680105179313103,0.854948073263597,-6.69319466365104 +"Q9W257",-0.0503275202833109,17.0744827763363,-0.423044333960716,0.680993418365741,0.854948073263597,-6.6937621252417 +"Q9W3H4",0.0226920281173442,19.4281365239318,0.422763736664319,0.681191663923932,0.854948073263597,-6.69388851033778 +"Q9VG76",0.0372747336987835,15.7631327896069,0.422304156365925,0.681516418046076,0.854948073263597,-6.69409533710357 +"Q7KS11",0.0803675183564714,15.6178476774918,0.422064360477869,0.681685892481178,0.854948073263597,-6.69420316718828 +"Q9VMU0",-0.0346051338817652,21.0714324369799,-0.421051085204495,0.682402223446745,0.854948073263597,-6.69465815832432 +"Q9VGP6",0.0192777746120036,18.0186195385219,0.420850714236438,0.682543913987605,0.854948073263597,-6.69474800587273 +"Q9VMH9",-0.0225226629701538,20.0959659142772,-0.420373281743059,0.682881578054719,0.854948073263597,-6.69496192303975 +"Q9VB22",0.0208177332235699,17.0819610732704,0.420009727861172,0.683138750533322,0.854948073263597,-6.69512465878657 +"Q9VG00",0.0463833266165423,15.2215285843071,0.419080416035746,0.683796324082135,0.854948073263597,-6.69554002375151 +"Q9VLM9",0.0243423203188691,18.4114755797272,0.418674180073853,0.684083860214714,0.854948073263597,-6.69572131572038 +"P29327",0.0224796293708209,19.6335002418433,0.418506297156783,0.684202704115366,0.854948073263597,-6.69579618766474 +"Q9VF28",0.0422760429732385,17.7657607152709,0.418169287504549,0.684441299607769,0.854948073263597,-6.69594639870415 +"O77430",-0.0196341966374582,19.544879988338,-0.417082183666477,0.685211192639158,0.854948073263597,-6.69643014290354 +"Q9VDI5",-0.0374139713667443,16.7295901757316,-0.416954372832594,0.68530173375773,0.854948073263597,-6.69648693679516 +"Q9Y162",0.0224026115113674,20.1403473434866,0.416245955893183,0.685803670279792,0.854948073263597,-6.69680142323892 +"P08646",-0.036470097645438,18.9623835166013,-0.41423480339901,0.687229507338737,0.856085749246462,-6.69769141457657 +"P17704",0.0172161265993296,20.3319601554265,0.410105721244968,0.690160897723239,0.859095804031614,-6.69950558607161 +"Q9VMD3",0.022902363369445,17.8670258976151,0.407462209181219,0.692040445574424,0.860793037448277,-6.70065781996517 +"Q7JWF1",0.022215020657562,20.7102911435609,0.404570707575112,0.694098819806708,0.861822447080161,-6.70190988727018 +"Q9VM12",-0.0200274667768099,19.0267102408236,-0.403745713899274,0.694686586223848,0.861822447080161,-6.70226554005823 +"Q9W379",-0.0301277664228561,16.3070648726195,-0.403484591095082,0.694872667151823,0.861822447080161,-6.7023779630063 +"Q9V3I0",0.0621783769354014,16.4276325077449,0.402984137788138,0.695229358600802,0.861822447080161,-6.70259322966401 +"Q8SY33",0.0256730305278907,17.3717100424671,0.402672593232669,0.695451447104255,0.861822447080161,-6.70272710780969 +"Q05856",0.0417658593571808,13.7215679193263,0.401224957160444,0.696483807536675,0.862461017795972,-6.70334787596996 +"Q8IPP8",0.027979474841743,19.0497078680264,0.397837787959396,0.69890184660476,0.863080779571947,-6.70479188123203 +"Q9W2D9",0.0409306495178559,17.717600670283,0.397716786358061,0.698988292808201,0.863080779571947,-6.70484324669955 +"Q9V3Y2",0.0254418439976547,17.8518525801676,0.39752391910134,0.699126090710216,0.863080779571947,-6.70492508800051 +"A1ZB79",0.0213820087291303,20.7261478380143,0.397095661318592,0.699432108944716,0.863080779571947,-6.70510667734691 +"Q8SYD0",0.0238048529393815,15.4480435017398,0.396900656625807,0.699571471211794,0.863080779571947,-6.70518930013398 +"Q9V3L6",-0.031276898055598,15.9384370151374,-0.3925205996927,0.70270479083894,0.865883763858455,-6.70703474519882 +"Q7JZW2",0.0160882504589814,20.5348412500215,0.391900548415423,0.703148823296843,0.865883763858455,-6.70729438586565 +"Q9VMR0",-0.0233473433369937,17.360017974523,-0.391548786904389,0.703400779393409,0.865883763858455,-6.70744150567013 +"Q9W3G8",0.0327389199836077,15.7676399244373,0.386072166667849,0.707328339584949,0.870076453117768,-6.70971549407328 +"Q7KMM4",-0.0878343690627368,14.4713693567432,-0.384424217756937,0.708511931708899,0.870890126816835,-6.71039366439968 +"Q8IM93",-0.0221319414246821,18.9368108471897,-0.383362706473123,0.709274761684673,0.871185789757021,-6.71082900964332 +"Q94529",-0.0165717070365083,19.605580739711,-0.379722173645426,0.711893491621069,0.873758899208199,-6.71231317468565 +"Q9VFZ4",-0.0284620787267826,16.8144662265997,-0.37897032428197,0.712434805912215,0.873780335486452,-6.71261797245456 +"M9NDE3",-0.0175251004721382,16.229831683125,-0.377441973749728,0.713535697590149,0.874487541205267,-6.71323575153994 +"Q9VQL1",0.0164185565506187,20.0892088596211,0.376234519354211,0.714405929751759,0.874911226744445,-6.71372210389779 +"Q9VKC7",0.0425349873747738,13.8749796153627,0.374304296015282,0.715797961974574,0.875574494184007,-6.71449643356968 +"A1Z934",0.0163057261055179,19.2821438062826,0.373533165403011,0.716354388233554,0.875574494184007,-6.7148046978195 +"Q8SXG7",0.0383601566779799,14.0095970708759,0.373300519769848,0.71652229290238,0.875574494184007,-6.71489757791864 +"Q7JWD3",-0.026684778020245,17.008270095552,-0.372453369681158,0.717133830204342,0.875680255330046,-6.71523531347619 +"Q9VC31",-0.0244067323727375,17.6608193036836,-0.370617051131086,0.718460141371241,0.876049607008954,-6.71596484003318 +"Q7KMP8",0.0191144223938231,19.2536490678098,0.370580254912355,0.718486728050509,0.876049607008954,-6.71597942245196 +"Q9W1R3",0.0182274651100585,16.8525855297555,0.36565019925008,0.722052419742469,0.87975415349192,-6.71792046694007 +"Q9W1X5",0.014867792002363,19.4663533646035,0.364200116778837,0.723102530498333,0.88011562669502,-6.71848657006973 +"Q9VXP3",0.0201602207405305,14.8485889648177,0.363783435682297,0.723404391006518,0.88011562669502,-6.71864883446163 +"Q9V3Q4",0.0320208759260829,15.9764271705424,0.362616699097747,0.72424988544175,0.88050204731548,-6.71910222342368 +"Q9VHT3",0.0210866473105007,15.5811301786703,0.359008902435543,0.726866781695982,0.883039906678003,-6.72049521734618 +"Q9Y128",0.0279977678114935,14.3293294638082,0.357449300065687,0.727999170944274,0.883771919312263,-6.72109318642656 +"Q9VIK0",0.0648056103800574,12.817864295621,0.354974759626903,0.729797278031078,0.885310443458791,-6.72203674330406 +"Q9VH07",0.0178168280760183,18.2284395607693,0.354208260880524,0.730354596843929,0.885342636290461,-6.72232771688341 +"Q9VNI8",0.0210291800748834,15.723442663841,0.352292421000684,0.731748314885624,0.885941053277598,-6.7230523125617 +"A1Z729",0.0233079060300607,16.7060409192578,0.352069521157201,0.73191053442238,0.885941053277598,-6.72313636717872 +"Q9VY92",0.0281246795899079,21.3208742482921,0.349856310672154,0.733521987666242,0.887247770433134,-6.72396814262022 +"Q9VE94",-0.041610680171404,14.6593423414149,-0.347295618631184,0.73538813337211,0.888860439467159,-6.72492412005424 +"Q9VQ62",0.0522984440904644,19.6136166464376,0.346353225107876,0.736075371860333,0.889046864781344,-6.72527421550803 +"Q9VIV6",-0.0534139505386584,15.0868467436289,-0.344701207669234,0.737280689021268,0.889858313522052,-6.72588569152303 +"Q7K3N4",-0.0206513811690776,17.2176635144804,-0.340117151146526,0.740629122881881,0.893253345601575,-6.7275674692544 +"Q8IN44",-0.0257800494431812,19.7126525971093,-0.337158525006482,0.742793272633284,0.895216169618726,-6.72864123066032 +"Q8IMT3",-0.0285504414439703,14.7750188796009,-0.329598023056076,0.748334170940914,0.901242886014039,-6.73134344301638 +"Q9VKY3",-0.0186185326518782,18.8054627127598,-0.326679321241694,0.750477246043954,0.9031717506503,-6.73237057485897 +"Q9VL68",0.0153018626701567,20.7964896128827,0.325003567781214,0.751708683098165,0.904001502096423,-6.7329562533591 +"Q9W1X4",-0.0327731120682326,15.2073833647095,-0.323892331232796,0.752525683717713,0.904191703375364,-6.73334300560448 +"Q9VCK0",0.0169925984353796,18.353812554884,0.323314006361219,0.752951004789197,0.904191703375364,-6.73354377114141 +"P0DKM0",-0.0153017547330876,17.0158953316412,-0.318020695569205,0.756847895216608,0.908195802941365,-6.7353650088455 +"Q9VSC3",-0.0269144845037701,17.6735075592852,-0.316917252084674,0.757661143150214,0.908195802941365,-6.7357409525139 +"Q8IQC6",0.0568643929291266,15.8518755269733,0.316567742288381,0.757918799576966,0.908195802941365,-6.73585976351308 +"Q9VEA1",-0.0203150627792219,18.2648548764484,-0.313923874482338,0.759868843930065,0.909295655432318,-6.73675434538617 +"Q7KTA1",0.0440052468805945,17.0142131731696,0.313512027445268,0.760172769779511,0.909295655432318,-6.73689303604681 +"Q9W236",0.0253474010732688,16.4756856740097,0.313106483460647,0.760472085928107,0.909295655432318,-6.7370294296394 +"Q95RB1",-0.0167675248110655,15.9321070629607,-0.309341201154322,0.763253060026495,0.9117966661904,-6.73828750985245 +"P12080",-0.014941465729855,19.1597787385304,-0.308757739435402,0.763684311342312,0.9117966661904,-6.73848112338621 +"Q9VDC3",0.0184466067997384,19.2684772474961,0.308055210075563,0.764203680655983,0.9117966661904,-6.73871377183687 +"Q9VV72",0.0277411033168811,19.4436645765116,0.307027987580694,0.764963310658424,0.911834613721157,-6.73905300882966 +"O02195",-0.0178328501085367,18.8092280800503,-0.306533857161751,0.765328812475791,0.911834613721157,-6.73921579766223 +"Q9VN14",-0.013344206602202,19.4166963570261,-0.304268431386076,0.767005287848352,0.912872200047016,-6.7399588356033 +"Q9VKR0",0.128963796399802,13.3411734505163,0.303878115404065,0.767294259272133,0.912872200047016,-6.74008630898397 +"Q7K3Z3",0.0159187272914956,19.81421661926,0.301379380387192,0.769145085561173,0.914259478437991,-6.7408985641227 +"Q9VM58",0.0206796182078186,16.5192553030198,0.300089677271171,0.770100969704891,0.914259478437991,-6.74131522596349 +"Q9U6M0",0.0201770641277612,16.2612653784424,0.299746907167931,0.770355087039085,0.914259478437991,-6.74142566876644 +"B7Z0N0",0.0393507634461479,13.0719810271949,0.299345416502692,0.770652773791256,0.914259478437991,-6.74155487403389 +"Q9Y171",0.0414163485874148,15.2187411066438,0.298202428354047,0.771500459618061,0.91461461737237,-6.74192177177965 +"Q9W1W4",0.0160538245488553,17.2878649314956,0.296407548610926,0.772832248522017,0.915542748959321,-6.74249514230634 +"Q9W425",-0.0318612900473436,13.8604169784626,-0.294937018438242,0.773923947132601,0.916185339827664,-6.74296236456055 +"Q9VCA5",0.0315818674072634,14.2960667722661,0.293727596392221,0.774822189495882,0.916475347469988,-6.74334491471996 +"Q8SX68",0.0177751445857979,17.4906423067064,0.293127765772761,0.775267814916159,0.916475347469988,-6.74353407279839 +"Q500Y7",-0.0122421270721667,19.9775381708407,-0.290369187818525,0.77731830981895,0.918248541627485,-6.74439910192065 +"Q9VKJ4",-0.020636883011635,15.1333148433952,-0.289418055487477,0.778025717056031,0.918433755165931,-6.74469549114201 +"Q9VZG1",-0.0155497807609386,17.6612867866867,-0.284919404903422,0.781374462908067,0.920513390096417,-6.74608438436206 +"Q9VN91",-0.0252663171375076,19.677938238275,-0.284285087907142,0.781847019220558,0.920513390096417,-6.74627849830161 +"Q966T5",0.0189988587846432,16.528213566233,0.283766133216576,0.782233701432446,0.920513390096417,-6.74643699234316 +"Q9W0X2",0.0182451844104285,15.9511940052377,0.283759043034313,0.782238984880831,0.920513390096417,-6.74643915578331 +"Q9W2K2",0.0293198313626455,15.6139665544978,0.283346054442464,0.782546754890119,0.920513390096417,-6.74656507993259 +"Q9VZW1",0.0315346319301923,14.7732395984408,0.281935551658101,0.783598194241544,0.920789228893635,-6.74699379441547 +"O44386",0.013418969398014,16.9158994579382,0.280113489463387,0.784957098617212,0.920789228893635,-6.74754448226417 +"Q9V8Y2",0.025549093546104,19.9563796370134,0.279856514218286,0.785148813119941,0.920789228893635,-6.74762186587235 +"Q9VYV3",0.0120475283466526,20.5445163171893,0.279293841022614,0.785568643765917,0.920789228893635,-6.74779106086532 +"Q9VJ25",0.0260340767291876,15.7568464179738,0.278943506462976,0.785830077253688,0.920789228893635,-6.7478962365614 +"Q9VEW1",0.0527890362787868,14.5816030376232,0.278590621062791,0.786093442412791,0.920789228893635,-6.74800204663485 +"Q9VK60",0.0145034532133224,21.2792638885535,0.276929154962614,0.787333804965426,0.921493291533842,-6.74849845225815 +"Q9W229",0.018267671790376,19.2113110961726,0.275857184447114,0.788134411592045,0.921493291533842,-6.74881717867605 +"Q9VJ43",0.0180818881097053,20.3188453825099,0.27556607235652,0.788351874711507,0.921493291533842,-6.74890352408695 +"Q9VMC8",0.0226069256285761,16.3483688438516,0.274581813789768,0.789087264585977,0.921706972919755,-6.74919479527273 +"Q9W392",-0.0126745227899363,20.0699492926718,-0.273393771278268,0.789975200249947,0.922098414287552,-6.74954500437531 +"Q9VLP2",0.0268645530566864,19.2823088497608,0.270535947678576,0.792112404928392,0.92233732755351,-6.75038129911959 +"Q9VCY3",0.0220880850927543,17.874567310294,0.270495381524787,0.792142755068044,0.92233732755351,-6.75039310778854 +"Q94522",-0.0125577053199706,23.4148016262002,-0.270482038114394,0.792152738207897,0.92233732755351,-6.75039699162829 +"M9PHA0",0.0206390479405663,17.3653166177832,0.270162630868298,0.792391720853824,0.92233732755351,-6.75048990449037 +"Q9VMS1",0.016267649314937,22.350205002877,0.26751040340849,0.794377001052256,0.924003373608901,-6.75125723451303 +"Q7K3W4",-0.0191052848580249,19.2958451876802,-0.262674665824282,0.798000653852919,0.926787133733104,-6.75263707313492 +"Q8IH18",0.0185264453238769,15.6717515478553,0.261210821872223,0.799098577066961,0.926787133733104,-6.7530498735458 +"P08736",0.0146949328587027,24.3612936314729,0.260797305534394,0.799408808716134,0.926787133733104,-6.75316607186002 +"Q9VQB4",-0.0116030238956206,21.7481682491538,-0.260258381811796,0.799813179272684,0.926787133733104,-6.75331723708829 +"Q9VD58",-0.0103311562412891,22.7109438305639,-0.260145064942965,0.799898212174498,0.926787133733104,-6.75334898260687 +"Q9VUZ0",0.0199488367837652,17.630897588258,0.2595355484284,0.800355639814186,0.926787133733104,-6.75351950353489 +"Q24298",-0.0134037240496525,19.3886718715081,-0.259130546024818,0.800659628123144,0.926787133733104,-6.7536325904532 +"A1Z847",-0.0164136275177498,19.9786608541206,-0.257496220818981,0.801886679325807,0.927047697121111,-6.75408716460867 +"Q9VMQ9",-0.0155970886099901,22.1300984585,-0.256844112880721,0.802376439278275,0.927047697121111,-6.75426775080276 +"Q9VSL4",0.0148919745190454,20.8577609909934,0.256198003130226,0.802861782572666,0.927047697121111,-6.75444623015801 +"B7Z0C9",0.0210358020932393,15.8855518722182,0.255227278124484,0.803591134280057,0.927047697121111,-6.75471354601037 +"Q9VEC2",0.0125360121690115,16.6757657850179,0.255130776772495,0.803663651101395,0.927047697121111,-6.75474006556923 +"Q9V3G3",-0.0359403269166183,14.8796867900004,-0.252385693421378,0.80572728190558,0.928785837054946,-6.75549029537972 +"Q8IMX8",-0.0131687102659903,17.1481015927141,-0.247719303091209,0.809238836797697,0.931682461933582,-6.7567472230001 +"Q9VRU1",0.0240734730524323,17.312260216198,0.247562055301007,0.80935724660777,0.931682461933582,-6.75678917531316 +"Q9VUK8",-0.0115742914687154,20.7548120930839,-0.242075034583324,0.813492179275679,0.935516397098744,-6.75823657735366 +"Q9W147",-0.0198872597373363,13.7399278713848,-0.241654246615299,0.813809527692013,0.935516397098744,-6.75834625182201 +"Q7KUK9",-0.0183392717894471,18.4256087143572,-0.239515700540593,0.815422912084691,0.936397508266373,-6.75890072841454 +"Q95U34",0.0132884603678747,19.4765059803081,0.23915014520121,0.815698788675684,0.936397508266373,-6.75899502095536 +"O17452",0.0249763448329716,19.8849583404631,0.237349575310767,0.817058022682535,0.936929542776576,-6.75945738751102 +"A1ZBK7",0.019784394806905,17.5313270461567,0.237048104593252,0.8172856623141,0.936929542776576,-6.75953446415596 +"Q9VNR6",-0.0192859431059222,14.6137445719229,-0.2344146720494,0.819274912029728,0.938564940429661,-6.76020363071332 +"Q9VDC0",0.0193410278459361,17.5461701340865,0.233041991420699,0.820312343945263,0.938902642808919,-6.76054950288388 +"Q95SS8",0.0143081062166921,15.6713153471792,0.232535171214995,0.820695475548803,0.938902642808919,-6.76067669759599 +"Q9W3X8",0.0384495407716763,13.9198286892003,0.22924255417879,0.82318573104441,0.941106099645014,-6.76149636017815 +"P91941",-0.0161905395400836,23.055285000533,-0.227942759534888,0.824169351937657,0.941585259610967,-6.76181674579073 +"Q9VI10",0.0192988407397578,17.2414335704277,0.221954168937185,0.828705308740179,0.946119407925132,-6.76326957232053 +"Q9Y0Y5",0.0105038960288724,18.6644350567048,0.220588156164476,0.829740901076928,0.946445512351445,-6.7635956011665 +"Q9VHC3",0.015273164449173,17.3692189901421,0.220080603901387,0.830125770125998,0.946445512351445,-6.76371623167207 +"A1ZB23",-0.0319855326286103,15.7855523655506,-0.218308646948603,0.83146978525099,0.947330329097439,-6.76413521671342 +"Q9VII5",-0.0200804581016385,17.3611303308395,-0.217254921854569,0.83226929690118,0.947593984458135,-6.76438278253241 +"Q8MRT7",0.0158120660518772,15.4248250098311,0.213997022609056,0.834742481864284,0.947707252899788,-6.76514069715672 +"Q9VLT8",-0.0202582975088301,13.9197468489709,-0.213914624021849,0.834805058055538,0.947707252899788,-6.76515971915628 +"Q9VRG6",-0.00973004496308683,16.3311042380769,-0.213711577378656,0.834959263482752,0.947707252899788,-6.76520656219074 +"Q9VU75",-0.011125216239865,18.2777809781059,-0.213460460023349,0.835149986715784,0.947707252899788,-6.76526443420321 +"P48148",0.0141966601919243,20.7365828351859,0.213381934059426,0.835209629354129,0.947707252899788,-6.76528251730249 +"P23128",-0.0334400182587178,14.729296228243,-0.21109616658714,0.83694620981859,0.948590293769395,-6.76580599814911 +"Q9W414",0.0087583057204732,19.6250973145801,0.207546347298383,0.839644948512453,0.948590293769395,-6.76660788933946 +"Q9V406",-0.0165656486746748,16.9432838697905,-0.206485998434585,0.840451498566631,0.948590293769395,-6.76684480293951 +"Q7JXC4",-0.00903670269649481,21.5529402881018,-0.20603622067653,0.840793678548577,0.948590293769395,-6.7669449332572 +"Q9VMH8",0.0102001228313604,18.9810978015728,0.205457686548865,0.841233864197494,0.948590293769395,-6.76707340916808 +"P20351",0.0242061510576654,13.9892385283227,0.20445822711433,0.841994451311992,0.948590293769395,-6.76729451647117 +"Q9V8F5",-0.0174018499979365,15.8920122813895,-0.202372047752111,0.843582577156412,0.948590293769395,-6.76775258969079 +"Q95NU8",-0.014594254396691,17.2973408594938,-0.202200516640948,0.84371318972074,0.948590293769395,-6.76779004633946 +"Q9W3C4",0.0407509055043906,14.7966942249405,0.200741695913278,0.844824210207393,0.948590293769395,-6.76810733043864 +"Q9VC48",-0.0121239079432911,18.4905674628739,-0.200370689709225,0.845106820948046,0.948590293769395,-6.76818765836997 +"Q9VAV2",0.0107663715169082,17.7537188632418,0.200280928547305,0.845175199182527,0.948590293769395,-6.76820707074395 +"Q9VAY9",-0.0142747149138138,14.7805226970439,-0.199164332384501,0.846025911667881,0.948590293769395,-6.76844783220735 +"Q9VES8",0.0122535440221956,17.9690345860798,0.198827880943608,0.846282287956906,0.948590293769395,-6.76852011633046 +"Q24238",-0.015329442479814,16.4780977880236,-0.198358717567116,0.846639822152444,0.948590293769395,-6.76862071019082 +"Q9VVH3",-0.0108063609812596,19.8476120633594,-0.198329147535067,0.846662357734518,0.948590293769395,-6.76862704243602 +"Q9VWH4",0.00773387504235856,24.2940915450703,0.197648947098182,0.847180784331342,0.948590293769395,-6.76877244467075 +"Q9VKX2",-0.00770220016660161,23.0809133777286,-0.196505315770342,0.848052594491173,0.948590293769395,-6.76901579428214 +"Q9VQ91",-0.0142083210321875,14.8408652739704,-0.196020550240019,0.848422204453182,0.948590293769395,-6.76911852305071 +"Q9U9P7",-0.0190902659130057,16.5319952329337,-0.193246515227788,0.850538006138373,0.948590293769395,-6.76970153678475 +"Q9VTT2",-0.033634394232374,13.9681362145376,-0.192914692421403,0.850791176205903,0.948590293769395,-6.76977072304435 +"Q9VN21",0.00830765687842927,22.0687965434936,0.192667118824594,0.850980078397385,0.948590293769395,-6.76982226615387 +"Q9VVN2",-0.0188056420335307,15.0315609789699,-0.192277485343499,0.851277394261896,0.948590293769395,-6.76990325206929 +"Q0E9B6",0.0113119947604794,19.2550303467842,0.19217866377864,0.851352805462336,0.948590293769395,-6.76992376640897 +"Q9VTC1",-0.0099788567290986,15.7881340359034,-0.191927870404687,0.85154419409328,0.948590293769395,-6.76997578153145 +"Q9VZ67",-0.0142656293818071,15.2050090621346,-0.191666334312038,0.851743791575109,0.948590293769395,-6.7700299528915 +"Q9W1N3",0.012250940069098,20.4320726060021,0.191541696818358,0.851838915489669,0.948590293769395,-6.77005574296278 +"O18335",-0.00908036516737099,21.6235143071135,-0.190861102229854,0.852358392208716,0.948590293769395,-6.77019627824298 +"Q9W253",-0.0123707014160903,15.3641987918036,-0.190761253235091,0.852434610060152,0.948590293769395,-6.770216854183 +"Q9VXC1",0.0127284044497991,18.2771677601751,0.190313233086347,0.852776617343259,0.948590293769395,-6.77030904635745 +"Q9VLR3",-0.0175554484889702,16.7214193241174,-0.189956677955478,0.85304882533219,0.948590293769395,-6.77038226334121 +"P53501",0.00851842489300481,24.6115825334658,0.188969885187136,0.853802286141351,0.948795611781328,-6.77058418600595 +"P08182",0.00909772949354704,19.6021753332152,0.187979806737914,0.854558410159598,0.949003613945546,-6.77078573146339 +"Q9VZZ5",0.0108858870802493,18.4122626036663,0.186938278639353,0.855353992451695,0.94925512934759,-6.77099661549899 +"Q9VXN4",0.0111508405308811,15.0786181379561,0.184529557893672,0.857194566898717,0.950665251055226,-6.77147986502808 +"Q7KUT2",0.00886142650658783,18.3045346924369,0.183540617816046,0.857950504952618,0.950787713213057,-6.77167646853436 +"Q9VPR1",0.0244255702526193,13.6339210412077,0.181385271772919,0.859598553619348,0.950787713213057,-6.77210131979228 +"Q9VJ86",-0.0130271393552857,16.6273467903558,-0.18069029261254,0.860130108300672,0.950787713213057,-6.77223724762718 +"P08120",-0.0132646855059662,18.2265084526721,-0.180686892165248,0.860132709311904,0.950787713213057,-6.77223791143075 +"Q7KTH8",0.00792828790853761,17.630747254987,0.180657656940178,0.860155071485913,0.950787713213057,-6.77224361794628 +"Q9VJ80",-0.010324695122133,16.5464950419322,-0.177856502099832,0.862298285572834,0.951891118758753,-6.77278612846091 +"Q7K3E2",0.0159902206991411,20.4202628986843,0.177583898331613,0.862506922309822,0.951891118758753,-6.77283847487035 +"Q86BI3",-0.0084878865290321,18.052515012112,-0.177115637359713,0.862865330673402,0.951891118758753,-6.77292820585918 +"Q9V428",0.0119209458128218,18.7164265012032,0.176248980194563,0.863528758429368,0.951993370165358,-6.77309365874835 +"O97422",-0.0275863409748993,15.4145132642752,-0.173644013343194,0.865523531107548,0.953306415380641,-6.77358611473796 +"Q8I941",0.0129304749197381,18.9847311079186,0.173201038123061,0.865862841307956,0.953306415380641,-6.77366913185884 +"Q9W197",0.0107409002242065,17.3607960494033,0.172410419928477,0.866468509858379,0.953343980503811,-6.77381677619443 +"Q9W5R5",-0.00892441448534242,15.8319717558579,-0.171450251917819,0.867204186819813,0.953524445362853,-6.7739951801526 +"Q9VDI3",0.0151468275203719,15.0361899110077,0.170357123838204,0.868041898570269,0.953785225887306,-6.77419708291636 +"Q9VJN0",-0.0184234802832819,17.4621977585269,-0.169099582693521,0.869005818353374,0.953785225887306,-6.77442776479804 +"Q9VLP3",-0.0147938792697069,17.4457090950326,-0.168902636073424,0.869156800568768,0.953785225887306,-6.77446373853178 +"Q7JXZ2",-0.0194135551872208,17.7276514567356,-0.167450750525678,0.870270006895633,0.953920839087683,-6.77472764952286 +"Q9W380",-0.0162754803648291,18.4382518433882,-0.167249714538272,0.870424170918138,0.953920839087683,-6.77476401349255 +"Q9VZ20",-0.00745536611538,18.7150936851554,-0.165259085583037,0.871950985691258,0.954966673757727,-6.7751217392464 +"Q9VDK7",-0.00863750806759356,17.8667423316844,-0.163426835621907,0.873356809721019,0.955878713001745,-6.77544723819187 +"Q9W3M7",0.0092003337171267,16.1543326998936,0.161769890158389,0.874628525449784,0.956164776941626,-6.77573848590796 +"Q9W2E8",0.0118485238048862,19.2862223783814,0.16159254900182,0.87476465804132,0.956164776941626,-6.77576948293202 +"Q9XYZ9",0.0111780867082025,21.9793019024173,0.157465871717928,0.877933620371975,0.959000182567422,-6.77648122228454 +"Q9VAY6",0.0086453949615688,15.1867101197993,0.156106002379125,0.878978389501018,0.959513058696138,-6.77671174928666 +"Q9VR89",0.0174797722684126,13.9181454063698,0.154663365173703,0.880087013489135,0.959544488346864,-6.77695413194871 +"P45889",0.0104387130855947,19.1982284135744,0.154390533662233,0.880296706961438,0.959544488346864,-6.7769997195101 +"Q9W2E7",-0.00796229177996821,18.6533388092769,-0.153519682602084,0.880966092299598,0.959544488346864,-6.77714469451231 +"Q8I725",0.0108201613097592,18.9706893698245,0.153074598340928,0.881308247090765,0.959544488346864,-6.77721847475458 +"Q9VI04",-0.0192408526129366,16.4353418058012,-0.150215994558984,0.883506380107566,0.960024089867179,-6.77768725375389 +"Q9VSA3",-0.00719339036887945,21.7970402529199,-0.149853286013508,0.883785360376185,0.960024089867179,-6.77774610496865 +"Q9V405",0.00808412497762845,20.2399619753349,0.148899485591512,0.884519062982488,0.960024089867179,-6.77790018770402 +"Q9VQQ0",-0.0138617231677181,18.2072905395597,-0.148529375296833,0.884803797851337,0.960024089867179,-6.77795971377883 +"Q9VGT8",-0.0138753756535408,15.367817816338,-0.147852229407823,0.885324787026233,0.960024089867179,-6.77806823960708 +"Q9VED8",-0.011149499611868,16.5522962037041,-0.146198096525118,0.886597699779457,0.960024089867179,-6.77833127026403 +"Q7KN94",0.00809583790077539,22.5787861230576,0.145246580325305,0.887330077571835,0.960024089867179,-6.77848123976765 +"Q59E04",0.0133080230256493,16.4210696961311,0.144954429703758,0.887554966885538,0.960024089867179,-6.77852709027198 +"Q9VUQ7",-0.0111315300945289,16.5336832851394,-0.144759307896562,0.887705171963842,0.960024089867179,-6.77855766174067 +"P08985",0.00760743578294409,20.6030895963145,0.14389800649013,0.888368258603489,0.960024089867179,-6.77869211943295 +"Q9VX36",-0.00649602322101117,22.159496396198,-0.143656419766976,0.88855426418769,0.960024089867179,-6.77872969000886 +"O44434",0.0112159830111835,15.8255410402332,0.14352507666701,0.888655392538924,0.960024089867179,-6.77875008956608 +"P02515",-0.0210061186333519,18.0330911509467,-0.142483731659558,0.889457255677881,0.96010401786544,-6.77891116831501 +"Q9W1Y1",-0.00920656003944487,17.844955273838,-0.141555883031832,0.890171833430406,0.96010401786544,-6.77905370683664 +"P13496",-0.0070457547220748,18.2456945227914,-0.141151848777064,0.890483030461894,0.96010401786544,-6.77911548573469 +"Q7JYZ9",-0.00826995710559686,18.1075390494458,-0.139522246443907,0.891738386673528,0.96010401786544,-6.77936287478775 +"Q9VAY0",-0.0152498460240444,13.980473758271,-0.138959913702598,0.892171649706799,0.96010401786544,-6.77944757809936 +"Q9VA97",0.00784426455827614,18.5066312923482,0.138306857358415,0.892674859497475,0.96010401786544,-6.77954551928111 +"Q9VLT7",0.00949488486716632,18.070779243066,0.138198196948978,0.892758592151857,0.96010401786544,-6.77956177086855 +"Q9VRP2",-0.00581784527309992,20.4738119736112,-0.134436710720955,0.895657998665789,0.962004002457348,-6.78011650500533 +"Q9W127",0.00930808669265915,18.5509963277589,0.134409749688794,0.895678786460588,0.962004002457348,-6.78012042609597 +"Q9VL70",-0.00694840764971616,23.5372322447068,-0.132521727106231,0.897134714945143,0.96280626835257,-6.78039306256808 +"Q9VHI1",-0.00796470580797859,14.2795955783442,-0.131944154065044,0.897580184225567,0.96280626835257,-6.78047569824571 +"Q9VA37",0.00733429692091647,21.6706975826309,0.130408869606522,0.898764495503145,0.963457055590775,-6.78069360858586 +"Q8SY67",0.020108175008609,15.9721912267247,0.126509900028597,0.901773303350681,0.966061573531751,-6.78123558281626 +"Q07093",-0.0157148063234818,14.5745322220871,-0.123559206300225,0.904051417275558,0.967880464708363,-6.78163484148081 +"P92181",0.00859176545382923,16.489390952769,0.120355678119006,0.906525764686644,0.969906975944402,-6.78205767512087 +"Q9W0Q2",0.0045756166849138,15.4985920334083,0.118931542278403,0.907626078936013,0.970124369619815,-6.78224209070227 +"Q9V8M5",-0.00857977686539968,19.8552797547818,-0.117655077498323,0.908612473399403,0.970124369619815,-6.78240552359235 +"O77134",0.00766560413579143,21.6265995507676,0.117566524964056,0.9086809088504,0.970124369619815,-6.78241679623012 +"Q9VXA9",-0.00642965638944482,14.314973675899,-0.116811654749976,0.90926432168987,0.970124369619815,-6.7825125467302 +"Q9VXN2",0.0123974125696371,18.3156934476799,0.116226830505943,0.90971635071686,0.970124369619815,-6.78258630509906 +"Q9VQI6",-0.0164563944739538,16.1570276149871,-0.114853919741177,0.910777648602217,0.970124369619815,-6.78275800659215 +"Q24185",0.00629210180088791,18.6497903159718,0.114474693486351,0.91107083338088,0.970124369619815,-6.78280507540932 +"Q9VQJ8",0.0068400326350222,15.172800681794,0.114072451904894,0.911381826855066,0.970124369619815,-6.78285483115463 +"Q9V5C6",0.00570329664384062,20.6462743821618,0.108955703491786,0.915339192384583,0.973715416388702,-6.78347250699881 +"Q9VVK5",0.00726682595083794,15.8496795332106,0.108014197371548,0.916067633363392,0.973869223996264,-6.78358308234172 +"Q9VNB9",-0.00912409519090573,19.1989917581993,-0.103927762059405,0.919230230546274,0.976608932835149,-6.78405191746538 +"Q9W306",0.00982087032734391,14.6922891182241,0.101434571664722,0.921160501659016,0.977862281502253,-6.78432909900341 +"Q9VYV4",-0.0066315728888835,15.481700195651,-0.100889679963028,0.921582437962555,0.977862281502253,-6.78438878322314 +"Q9VUJ1",-0.00491435878505087,20.0852389065681,-0.0993347761991924,0.922786615392628,0.9784325841918,-6.7845573341115 +"Q8SZA8",-0.00614999852645326,17.9828920168121,-0.0986808553262214,0.92329309803231,0.9784325841918,-6.78462743838937 +"Q9VSY8",0.00744637917163615,17.9849461500567,0.0975654453830831,0.92415710129108,0.978726377748268,-6.78474595065294 +"Q9VU70",-0.0149503190809028,14.6287862601356,-0.0962833882508027,0.925150317751028,0.979156554574057,-6.78488050814385 +"Q9VTV9",-0.00660988469176971,17.2405138829459,-0.0941232374055449,0.926824101247703,0.980306024655148,-6.7851032067869 +"M9PDU4",-0.00709599673064787,22.4977903387755,-0.090579309023229,0.929570903222023,0.982588255116815,-6.78545763809218 +"Q9VF51",0.00552864817946741,17.7170595199812,0.0888917450242853,0.930879230122845,0.982938792493197,-6.78562164019575 +"Q7PLI0",0.00518411657935758,17.7870190783502,0.0879139135188445,0.931637417613861,0.982938792493197,-6.78571525943886 +"Q9VW90",0.0271640014294352,15.0324188038062,0.0871385022903534,0.932238704049864,0.982938792493197,-6.78578876356887 +"Q9VF77",0.00634582609074386,15.7182264813864,0.0857617425080401,0.933306410949601,0.982938792493197,-6.7859176696275 +"Q9VC53",0.00500239177268114,17.8293733527692,0.0855932664725758,0.933437077287379,0.982938792493197,-6.78593330327099 +"Q9VP78",0.00428277985801273,14.8805011437033,0.0855917186384793,0.933438277763324,0.982938792493197,-6.78593344675912 +"Q9VIM0",0.00346807849819797,18.1032697160817,0.0832244237434511,0.935274516965882,0.983224822393286,-6.78614986845009 +"Q2MGK7",0.00580187914142627,16.994237462901,0.0831386894955269,0.935341025947473,0.983224822393286,-6.78615759267119 +"Q9VHK6",-0.0079302486761712,18.0696073558766,-0.0827523771479809,0.935640717071063,0.983224822393286,-6.78619229883258 +"Q9VF27",0.00338927117921628,22.2033223148423,0.08189422010865,0.936306490623338,0.983224822393286,-6.78626881776805 +"Q9VIT0",0.00435090155811224,16.4394937013211,0.0801691801304332,0.937644962154954,0.983224822393286,-6.78642022356852 +"Q9VY24",0.00550424564220009,17.7791006589124,0.0798009943439829,0.937930666723044,0.983224822393286,-6.7864521221733 +"Q9VCU6",-0.00568319361603464,15.4529404229771,-0.0792073030420596,0.93839137828952,0.983224822393286,-6.78650324906694 +"O97477",-0.00338915788129412,21.0025223092311,-0.0791631920969658,0.938425609862177,0.983224822393286,-6.78650703254955 +"Q9W2J4",0.00582084809982319,15.2189810939095,0.0760631661827292,0.940831658112156,0.984516984129335,-6.78676765531688 +"Q9VWF0",0.00665116160292989,16.4035686000281,0.07605322852195,0.940839372123597,0.984516984129335,-6.78676847406834 +"Q7PL91",-0.00534370460765032,18.7613615831914,-0.0745883428230694,0.941976544745016,0.985088950868142,-6.78688799534701 +"Q9VFQ9",-0.00339949837709241,19.3116298425396,-0.0707170399452344,0.944982438251061,0.986542901122409,-6.78719268119348 +"Q9VN95",0.00453352812769126,17.962166751214,0.0705553665296544,0.945107990406135,0.986542901122409,-6.78720505268096 +"Q9VQD7",-0.00359617778331867,20.9103850997388,-0.0705125763474556,0.94514122061967,0.986542901122409,-6.78720832231429 +"Q7K738",0.00315734753985808,19.7244318356318,0.0687841042297262,0.946483617356882,0.9873262500008,-6.78733873955683 +"Q9V3R3",-0.00362469985843106,13.5826292973286,-0.0673355415534361,0.947608760881806,0.987476407910254,-6.78744554646636 +"Q8SY69",0.00723139369059922,18.906636493129,0.0670744287532972,0.947811588168055,0.987476407910254,-6.7874645575061 +"Q9VL89",-0.00260389682561524,16.8908878637043,-0.0648942082770127,0.949505291209873,0.98758021979416,-6.78762041377741 +"Q9W289",-0.00553692321730281,17.4197714299845,-0.0642372006997256,0.950015739124658,0.98758021979416,-6.78766637201693 +"M9PF61",0.00282017093552511,22.6394808053267,0.0640523598039635,0.950159351555714,0.98758021979416,-6.78767921757045 +"Q9VJ60",-0.00332665373790242,16.5032997882592,-0.0638976847266869,0.950279528039345,0.98758021979416,-6.78768993832014 +"Q9VY05",-0.0049168998918887,18.4033828440513,-0.0629922496455078,0.950983041710566,0.987695961129031,-6.78775217576404 +"M9NEW0",-0.00256653357297765,18.2718642087803,-0.0610890407488131,0.952461958051752,0.98850339285987,-6.78788010433167 +"Q9VN71",0.00499660504835475,18.6240987649115,0.0604665473901462,0.952945716857717,0.98850339285987,-6.78792109557648 +"A0A0B4LFA6",0.0027090510960619,19.5719811254424,0.0554017026533548,0.95688248846242,0.991389428267138,-6.78823902171229 +"Q9VXE5",-0.00397440325525622,14.6400522820919,-0.0528598696298946,0.958858652639578,0.991389428267138,-6.78838810723084 +"Q9VHX2",0.00364316444083634,14.7550962650342,0.0520247058440553,0.959508020283029,0.991389428267138,-6.7884355647643 +"Q9VPQ2",-0.00394677581757819,16.463441226241,-0.0518679655048207,0.959629894579255,0.991389428267138,-6.78844438722646 +"Q9VAS1",-0.0063605346960447,13.0819646297165,-0.0515140494467751,0.959905087912764,0.991389428267138,-6.78846421027763 +"Q9W3T7",0.00214808987475479,17.418682567947,0.0509164743731266,0.9603697548523,0.991389428267138,-6.78849737292584 +"Q9U1L2",-0.00964289772836935,17.4912647622519,-0.0506470977892486,0.960579223814473,0.991389428267138,-6.78851219561639 +"Q9VEV7",-0.0151300881284211,13.1889267144796,-0.0495978806704586,0.961395131525027,0.991389428267138,-6.78856918055277 +"Q9VVC8",0.00239640960544563,16.5945931575942,0.0487624929133875,0.962044791450484,0.991389428267138,-6.78861369944633 +"B7YZN4",0.00905714129124569,15.3649181548769,0.0485720270884105,0.96219291598709,0.991389428267138,-6.78862374380465 +"Q9VIH1",0.00320639315766336,15.7866946057748,0.0484782097572085,0.962265877916365,0.991389428267138,-6.78862867688865 +"O76877",0.00348043718429203,17.3183497772682,0.0470345258188216,0.96338867933677,0.991428446012038,-6.78870338631361 +"Q9VYU9",-0.00249147452341703,17.8246472828938,-0.0457717633485251,0.964370840739671,0.991428446012038,-6.78876688233643 +"Q9XZ19",0.00321953224044691,16.0466275937522,0.0432845138796291,0.966305573903921,0.991428446012038,-6.78888689818187 +"Q9VRL0",0.00246302400904952,22.7050911228593,0.0428538101333323,0.966640624927215,0.991428446012038,-6.78890699999875 +"Q9W4Y1",0.00417358682830304,17.5029135405679,0.0420667598696122,0.967252900830762,0.991428446012038,-6.78894321411085 +"Q9VHR8",-0.0020630571827347,20.594638209893,-0.0420419869049231,0.967272173011902,0.991428446012038,-6.78894434308265 +"Q9VWU1",0.00385658894919771,14.9259172702175,0.0419603381151822,0.96733569201927,0.991428446012038,-6.78894805933502 +"Q9VTB4",0.00307846507037013,20.5971791436348,0.0411970063969555,0.967929540516751,0.991428446012038,-6.78898245308804 +"Q9W503",-0.00228132641488088,17.986152322616,-0.0404186671049684,0.968535085540633,0.991428446012038,-6.78901687309008 +"Q9W141",-0.0020178216768052,21.8367570965712,-0.0399183722052846,0.968924324141198,0.991428446012038,-6.78903865081401 +"Q9GU68",-0.00235493611404181,22.2581460546082,-0.0382219820301263,0.970244209650521,0.991428446012038,-6.78911047577771 +"Q7K860",-0.00798772542779957,20.3979676877447,-0.0374981543673376,0.970807416487049,0.991428446012038,-6.78914017361814 +"Q9VD02",-0.00203243414023646,18.1446650613572,-0.0372437757088355,0.971005351302558,0.991428446012038,-6.78915047569695 +"P53997",-0.00468701594796705,17.267659187173,-0.0368621263232189,0.971302320717589,0.991428446012038,-6.7891658006187 +"Q8IQB7",-0.00264756038838421,14.4966091229629,-0.0364280386593274,0.971640099030017,0.991428446012038,-6.78918303935121 +"Q9VUV6",0.00256935937433056,14.7962018027641,0.0354845226976784,0.9723743008745,0.991428446012038,-6.78921980466965 +"Q7JVK8",-0.00208815065005297,19.1334669813305,-0.0352885515536725,0.972526800244611,0.991428446012038,-6.78922731996862 +"Q9VK59",-0.00185240633736328,18.7831522048601,-0.0333813280151063,0.974011008761497,0.991428446012038,-6.78929828706894 +"Q9VQR2",-0.00170396870454681,21.265093783237,-0.0328345973230824,0.974436496021169,0.991428446012038,-6.78931790389158 +"Q9Y156",0.00356979749174968,16.2565457072292,0.0327366687304162,0.974512708780525,0.991428446012038,-6.78932138339088 +"Q9VU35",0.0016971559625425,22.6493945584786,0.0323858150309532,0.974785762266033,0.991428446012038,-6.7893337642652 +"Q9W0K9",-0.00237782697302258,14.1760079728767,-0.0303264608788059,0.976388531425644,0.991972578784588,-6.78940374542842 +"A1Z7G2",-0.00201548808082208,19.5779713674101,-0.030170168369507,0.976510176477394,0.991972578784588,-6.78940886896529 +"Q9VTZ6",-0.00144503239525662,17.0675368642175,-0.0273171732796003,0.978730817191487,0.993623252023981,-6.78949774353106 +"Q7KTG2",-0.00162533063043924,18.1607224411744,-0.0255097823137405,0.980137707068735,0.993807394129961,-6.78954948246682 +"Q9VZS1",-0.00249204998775809,15.4595455384721,-0.0254663337379298,0.980171528739172,0.993807394129961,-6.78955068266837 +"Q9W396",-0.00155154892783038,16.6154608346126,-0.024787931322617,0.980699622744554,0.993807394129961,-6.78956915718071 +"Q9W4U2",0.00225859128463313,18.5290398359611,0.0238571754094247,0.981424174026368,0.993835177560441,-6.78959369236573 +"Q9VB81",-0.00167112518346713,21.017793274511,-0.0232219368552074,0.981918688620867,0.993835177560441,-6.78960989856211 +"Q9VVH5",-0.00138278536588743,22.4964242272748,-0.0219498629532591,0.982908984713677,0.994234194361681,-6.7896410370553 +"Q9VCT4",0.00389657872750249,13.5147154560514,0.0202632044388447,0.984222077043931,0.994959045157138,-6.78967961993922 +"Q9VD14",-0.00126015537641067,17.6435612443799,-0.0194179439743454,0.984880145468491,0.995021249328554,-6.78969779591123 +"Q9VCR9",-0.00110215860678053,19.2992502813786,-0.0182676806730753,0.985775689505589,0.995323153810728,-6.78972128669385 +"P41093",0.00110050057034528,19.1467279740576,0.0174581072179771,0.986405999983998,0.995357052615431,-6.7897369601267 +"Q9VME1",-0.00126630167430974,16.4235793264164,-0.0158906632252027,0.987626393931565,0.995409524436688,-6.78976528706589 +"P35992",-0.000911979269664798,15.9165487467213,-0.0145644668500939,0.988658981430862,0.995409524436688,-6.78978717466233 +"Q9VJI7",-0.0010011227944311,17.3764185579276,-0.0144972673992989,0.988711304080151,0.995409524436688,-6.78978823298461 +"Q5U126",-0.000900523177548962,21.5869841651719,-0.0134828746993167,0.989501134347767,0.995409524436688,-6.78980361408354 +"Q8SX57",0.000533575941542352,17.9192122062186,0.0130322836243985,0.989851979124542,0.995409524436688,-6.78981008862489 +"Q9V3N1",0.000593188889229879,18.3717707839947,0.0127925945189401,0.99003860973649,0.995409524436688,-6.78981344305821 +"Q9V9X4",0.000672462543764851,18.6610770939879,0.0106798249201933,0.991683714448177,0.995861286239521,-6.78984031776775 +"O46106",-0.00057346569385075,16.9505281388616,-0.0100596574111151,0.992166614994063,0.995861286239521,-6.78984728791643 +"Q9VM50",0.000888386233876659,13.5571241896827,0.0099152610016127,0.992279051396933,0.995861286239521,-6.78984885098081 +"Q9VLS4",-0.000415617248922473,20.5308286231138,-0.00586080023584959,0.99543617996529,0.998216627396355,-6.7898835141747 +"Q9VI53",0.000270367980466091,16.3563316432423,0.00511624561957854,0.9960159605809,0.998216627396355,-6.78988794332558 +"A1Z8D3",-0.000493499366754691,16.6866630877177,-0.00410534739347826,0.996803145323858,0.998216627396355,-6.78989299519594 +"Q9VN02",-0.000187926275881267,17.2026399805822,-0.00351015760202438,0.997266620343683,0.998216627396355,-6.78989545156314 +"Q9VWD0",0.000164782479640024,18.1298102585801,0.00305869418136152,0.99761817618089,0.998216627396355,-6.78989705869422 +"Q9VW57",-0.000123283038776734,16.6127472085243,-0.00220227053492304,0.998285077085818,0.998285077085818,-6.78989950040077 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results_ms3fix.csv new file mode 100644 index 0000000..3790e90 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results_ms3fix.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VU68",-0.591940801372388,19.3199390217204,-13.8006601560485,4.71967370250255e-10,7.87241573577426e-07,13.1624899446088 +"Q9W2N0",-0.532885038647699,16.1920856092483,-11.5678359390333,5.63776109378953e-09,4.70189275222047e-06,10.9021876466282 +"Q9V4E7",-1.39747885563372,15.4662884541501,-10.110403530359,3.54170870250794e-08,1.64344991989234e-05,9.17145392701575 +"P06002",-1.09562743848827,16.998277330311,-9.91156674374868,4.62237673964801e-08,1.64344991989234e-05,8.91737678532752 +"Q7JUS9",-0.615235252753276,20.4511940936475,-9.86444096219248,4.9264086327708e-08,1.64344991989234e-05,8.85648776569812 +"Q0E8E8",-0.567182386897613,21.6435114708839,-8.91096407856596,1.88031216312165e-07,5.22726781347818e-05,7.56699829896332 +"Q9VZX9",-0.389388586252263,18.447175315933,-8.68555715669192,2.61912426597183e-07,6.24099896520144e-05,7.2454651632547 +"Q9V3B6",0.594917757195397,13.2564357029021,7.9119752116261,8.55263678469515e-07,0.000178322476960894,6.09046641082383 +"Q9V3I2",-0.372013471393485,17.4902440967385,-7.25285673120261,2.48759155149191e-06,0.000421009782442855,5.0406855666159 +"Q9VAJ9",-0.504196945167951,17.6372822657718,-7.24411308122851,2.52403946308666e-06,0.000421009782442855,5.02634102569565 +"Q7JYH3",-0.427682607422856,19.2372275614119,-6.77411089849788,5.60046469168252e-06,0.000849234100520586,4.23890050956264 +"P00408",-0.259519201016023,21.3517732865233,-6.49551362767305,9.11069844064701e-06,0.0012092090163331,3.75690418647634 +"A1ZA23",0.273860138818975,18.4028599097049,6.47636223010087,9.4242908946824e-06,0.0012092090163331,3.72335417934918 +"Q9VLB7",-0.352529471628401,21.0974381148568,-6.38795573320761,1.10249553738803e-05,0.00123715257787274,3.56778834901732 +"Q9U4G1",-0.316481859564707,19.3441652066891,-6.38285934118951,1.11254728225966e-05,0.00123715257787274,3.55878573874203 +"M9PF16",-0.249030319273761,21.1898707963483,-6.31319389127547,1.2599536425971e-05,0.00126146837664023,3.43534588638106 +"O62619",-0.304984832282464,22.2214410786259,-6.30191640181581,1.28566920880598e-05,0.00126146837664023,3.41529717591137 +"Q9VM10",-0.390897980526891,17.0723440637747,-6.17448679274891,1.61735898756435e-05,0.00148128846846107,3.18748047343457 +"O76902",-0.404527458849039,17.288267739966,-6.1453440022518,1.70505558425947e-05,0.00148128846846107,3.13505088810115 +"Q94523",-0.358106457042471,20.3731997672175,-6.12284981639826,1.77612526194373e-05,0.00148128846846107,3.0944992317681 +"P07486",-0.299764717430833,22.1633684776058,-6.03429927000083,2.08728747475836e-05,0.00162626793929287,2.93416107893117 +"Q23970",0.394229104390512,21.465804897103,5.99776055786267,2.23175873925698e-05,0.00162626793929287,2.8676753436531 +"Q9VGZ3",0.462751159582549,16.8586771197275,5.99515373572519,2.24245579159089e-05,0.00162626793929287,2.86292474496365 +"A0A0B7P9G0",-0.56458641390639,14.5981682735193,-5.96368674243354,2.37587140922222e-05,0.00165123062940944,2.80550437284373 +"P46415",-0.335787446928958,18.0502238290307,-5.93485654241328,2.50536103051002e-05,0.00167157687955629,2.75277291621031 +"O01666",-0.259321278331278,22.7350079212325,-5.86045708680589,2.87457578198898e-05,0.00175779721601612,2.61615447383291 +"Q9VFN7",0.245366652361351,18.6270162802085,5.8375334713519,2.9994052334171e-05,0.00175779721601612,2.57390438305447 +"P54185",0.471733552013713,17.4363329066498,5.83429711026131,3.01747735922697e-05,0.00175779721601612,2.56793361655074 +"Q7JYX5",-0.42958863833362,14.9157334791088,-5.82744364995193,3.0561222580616e-05,0.00175779721601612,2.55528485602936 +"Q9VXK7",-0.252140491751963,18.0609063101866,-5.72020886053445,3.73254480930409e-05,0.00196808309357377,2.35652692228332 +"Q9Y119",0.350324851988908,17.7137644715383,5.71442940291569,3.77315030241876e-05,0.00196808309357377,2.34576993327643 +"A1ZB70",0.304659313508719,16.1040253476183,5.71406880137866,3.77569898047725e-05,0.00196808309357377,2.34509861413987 +"Q9W2L6",-0.350052570769499,20.9057171962929,-5.69695403783575,3.89874258821139e-05,0.00197063716276867,2.31321626799783 +"Q9V3A8",-0.342503694816203,15.5552073607755,-5.66320110776509,4.15375707127574e-05,0.00203778435143763,2.25022265553838 +"A1ZBJ2",-0.440188581141548,19.3867882687751,-5.43437698344862,6.40793156676011e-05,0.00303778804526607,1.81914883302625 +"Q9VGS3",-0.337881201914616,19.3094007689564,-5.4223889486698,6.55637707611381e-05,0.00303778804526607,1.79637567211394 +"Q9W4P5",-0.261700728791912,19.6128342093616,-5.34661652021501,7.58082448921072e-05,0.00341751763459554,1.65200868994084 +"Q9VNX4",-0.415941738401337,20.9977922024353,-5.27658640032552,8.67510795509398e-05,0.00380791580765704,1.51793856510798 +"Q95TK5",-0.320612543529133,17.1605456023311,-5.19874928489605,0.000100850390528103,0.00431329362566348,1.36821239033586 +"P19107",-0.236486110617033,24.0713434774427,-5.14369353646342,0.000112237098775027,0.00468028701891864,1.26186673548543 +"M9NFC0",0.303870632047172,19.8650537574455,5.06000200356741,0.000132150582500989,0.00536252275362239,1.09952593078291 +"Q9VUY9",-0.235133387519713,19.7353463817489,-5.04899864456254,0.000135027551350204,0.00536252275362239,1.07812212029599 +"P10676",0.406714413769912,19.6680274835087,5.03625737697012,0.000138439775190571,0.0053701754655319,1.05332055008596 +"Q7K5K3",-0.263997872663101,22.7622661736889,-5.01036352946791,0.000145651085868918,0.00552150025521261,1.00286041024286 +"Q9VR94",0.391084923336164,16.2283727919089,4.93642443986286,0.000168451341791265,0.00624392973572955,0.858364309365999 +"Q9W299",-0.442524429707818,14.7391654507675,-4.87981688478651,0.000188372232490421,0.00682205622024991,0.74733967775158 +"Q7KV34",-0.243262394356627,20.9565173062268,-4.86957440546715,0.000192228202848769,0.00682205622024991,0.727215007159422 +"Q9V3N7",-0.212476379436403,20.5686569459863,-4.82199013412459,0.000211236282278523,0.00734046080917868,0.633578474210347 +"Q9VF86",-0.262984563559897,17.6234348742795,-4.80149187296556,0.000220010503694296,0.007489337146165,0.593171091601842 +"P20007",0.465406321073596,15.0299587402673,4.75237172981935,0.000242593861373141,0.00804421700606213,0.496173220407188 +"Q9VJQ3",-0.209820018670211,20.5325916420758,-4.74546269531971,0.000245956275365209,0.00804421700606213,0.482511052871557 +"Q9V396",-0.227881925427809,20.8718770802329,-4.72982533030957,0.000253744444291957,0.00813934102074968,0.451572286269975 +"Q9VPN5",0.218688205472258,21.260754224716,4.70458266640238,0.000266855014909832,0.00828191467570441,0.401580402993747 +"Q9V3V0",0.283356624659227,14.3313840693417,4.69656671753964,0.000271162281552784,0.00828191467570441,0.385692720211091 +"Q95R98",-0.305109482528684,16.3232917792376,-4.69303110593289,0.000273084716525025,0.00828191467570441,0.378683211473744 +"Q8T4G5",-0.176422272503704,19.6664794384017,-4.67425356858166,0.000283531729807008,0.00829973861823612,0.341436611812517 +"Q9VKC8",-0.299453100246943,17.7707900149573,-4.67409061891189,0.000283624161414544,0.00829973861823612,0.34111324812029 +"A1Z843",-0.234240165915683,17.5880030878985,-4.61702887800321,0.000317970910686654,0.0091444048107817,0.227731213678132 +"Q8MLS1",0.262453311772973,18.431906650209,4.60161815102114,0.000327959121702851,0.0092717934745823,0.197060894058017 +"Q9W309",0.321694252665271,18.4087310050968,4.53610897989771,0.000374139997396599,0.0104010919276255,0.0664611671871764 +"Q9VPU6",0.257416981692455,15.3207114504349,4.51761687937426,0.000388345176155079,0.0104886761756333,0.0295315661143398 +"Q27272",0.434741228952596,15.6913536079347,4.51553250062806,0.000389980602044305,0.0104886761756333,0.0253672573487478 +"Q8T3L6",0.236569363846399,17.3944624709409,4.5061797394104,0.000397406120545518,0.0104886761756333,0.00667748656475275 +"Q7JYW9",-0.218758601663883,17.2438855857285,-4.49993657311287,0.000402443210575859,0.0104886761756333,-0.00580213993276057 +"Q7K148",-0.270125567296503,16.849496891228,-4.4448245405821,0.000449843178501721,0.0114350288163987,-0.116095910949183 +"Q9VZJ2",0.217075668900048,17.3393679735216,4.44100317499746,0.000453334358686794,0.0114350288163987,-0.123751851115801 +"Q8IQ70",-0.247091963681797,17.9965369757656,-4.43452015769103,0.000459320701857741,0.0114350288163987,-0.136742716185986 +"Q9W4W5",-0.276780853594396,17.3191382743618,-4.42392814810762,0.000469275665193643,0.0115110560226911,-0.157973802691552 +"A0A0B4K692",-0.279307085630601,15.9518370145568,-4.38251139898029,0.000510366083059423,0.0120225018823309,-0.241066864787931 +"Q7JWQ7",0.445574983353302,14.3176547496127,4.37505480294127,0.000518145685998466,0.0120225018823309,-0.256039236785094 +"Q9VXZ8",-0.271820844321404,17.9113836919935,-4.36973640008913,0.000523768377197502,0.0120225018823309,-0.266720516689205 +"O16797",0.197413002397202,16.7021443619149,4.36442689225623,0.000529443825601339,0.0120225018823309,-0.277385796814058 +"Q9U9Q4",-0.222252610646073,17.9148149775483,-4.36436110382225,0.000529514540765214,0.0120225018823309,-0.277517958556641 +"Q8SZK9",0.209041199220682,22.1503916875227,4.36078556269778,0.000533372385666957,0.0120225018823309,-0.284701254424765 +"O17444",-0.4031984523685,15.384049081131,-4.34906338617811,0.000546222512621281,0.0121479886806973,-0.308257044681175 +"O18332",-0.246691041303816,20.6419619645781,-4.30161252796447,0.000601552271688255,0.0132024893312633,-0.403698278975274 +"Q9VR25",-0.213882787473892,16.977871040057,-4.27469914506383,0.000635442843256467,0.0137651774357375,-0.45789127522125 +"Q9V3Z9",0.221963461993347,21.6942295396458,4.24675372315263,0.000672696404873512,0.0139306613172361,-0.514205909106757 +"P54192",0.282031268010766,24.3269559788418,4.24636113763023,0.00067323531455572,0.0139306613172361,-0.514997338992522 +"P05031",-0.600737922213998,13.4766928577832,-4.24478325910882,0.000675405738946132,0.0139306613172361,-0.518178335272343 +"Q9VZ19",0.414403035698204,20.2632641760049,4.24399770678926,0.000676488948858588,0.0139306613172361,-0.519762055258877 +"Q24319",-0.331507209176541,16.3572012573831,-4.23697311558408,0.000686254283149388,0.0139594163938193,-0.533925512795596 +"Q9VEY0",0.252890640379594,18.0345866616263,4.19688856155832,0.000744791445273849,0.0149676160327323,-0.614795572488386 +"Q24253",-0.295294138616235,18.9061045823468,-4.18899890949402,0.000756898983549696,0.0150298512447725,-0.630722265314843 +"A1ZAA9",-0.239548084067966,16.5801619282819,-4.17447094389178,0.000779720333947184,0.0153008649061636,-0.660057338946021 +"Q9VC06",-0.209656377490138,16.4572731614066,-4.14467918699934,0.000828733409480538,0.015940814959116,-0.720243394525849 +"Q9VYT0",-0.169272895466253,18.2716032183478,-4.14308347943773,0.000831445384558207,0.015940814959116,-0.723468182778601 +"Q9W3L4",-0.326521356641491,17.656419723343,-4.10118296753478,0.000905979374012282,0.0171724272255964,-0.808183018335217 +"Q5U117",-0.365189334538183,14.6035483002809,-4.07066846950937,0.000964502301009898,0.0179723648190205,-0.869919804065171 +"Q9W461",0.283955172854974,16.2319006948524,4.06674750824996,0.000972295542165699,0.0179723648190205,-0.877855056187324 +"Q7K2Q8",0.198943260068331,16.1082680275246,4.06265064048933,0.00098050671374752,0.0179723648190205,-0.886146862656256 +"P55830",0.150906442582965,22.0046667895625,4.03105449398119,0.00104624447429412,0.0189688672078543,-0.950113631792527 +"Q9W1H8",-0.200541274526476,20.5885079530425,-4.02306017459566,0.00106357473084995,0.0190757274307281,-0.966303029895607 +"Q9W552",-0.204948317410842,16.2316900724811,-4.00621295571945,0.00110105582348826,0.0195378841870044,-1.00042641287231 +"P17336",0.212348168183603,20.7184298598347,3.98838579760551,0.0011421768312724,0.0200542205743406,-1.03654273436028 +"P16378",-0.209395875683082,20.4467666605917,-3.9665699635106,0.00119462273234892,0.0207565699745625,-1.0807500864562 +"Q9VGW7",-0.270487817541195,16.728162935078,-3.92363412317146,0.00130507689268487,0.0224419407937975,-1.1677829404422 +"A1Z968",0.207073014627433,17.1901096058735,3.91342086185629,0.00133283904048983,0.0225737556927069,-1.18849027672775 +"P35381",-0.185856154963538,25.6887317629981,-3.91089043071113,0.00133980924075419,0.0225737556927069,-1.19362094644525 +"Q9W403",-0.271398364326176,15.2792258085667,-3.89896298457572,0.00137316376888992,0.0228187130870738,-1.21780603383706 +"A1Z7S3",-0.175772888321312,20.0392719829573,-3.89595450795691,0.00138170864615975,0.0228187130870738,-1.22390655459688 +"Q9VM07",0.271952044830361,17.0004725945388,3.89014288919693,0.00139836774768233,0.0228674255209228,-1.23569152078299 +"Q9VBC1",0.407123938885711,13.2576699576703,3.8841979772655,0.00141561908519127,0.0229247828553304,-1.24774716423762 +"Q9V431",0.182137321470144,18.5297012868093,3.87614315189601,0.00143933686858771,0.0229710665248808,-1.2640820497363 +"P36241",0.239918980039949,19.790127525553,3.8738975761902,0.00144602037476768,0.0229710665248808,-1.26863610049908 +"Q9VH81",-0.277506326617999,14.4843712733431,-3.86130371104268,0.00148408889724482,0.023353398873626,-1.29417735368118 +"A1Z9J3",0.21312785686672,17.646106378832,3.83896005305805,0.00155413832782285,0.0242271283253132,-1.33949438881374 +"Q9VAN1",0.261133160490623,14.7771581892853,3.82252730844006,0.00160777916623182,0.0248312560118026,-1.37282427773348 +"Q9VVP9",0.275151355559684,16.6752461012483,3.81237396874586,0.00164185253342508,0.0251248626215874,-1.39341811703559 +"Q9VA09",-0.218627887054989,16.4222463769768,-3.79293850304509,0.00170912142377672,0.0259164957714506,-1.43283855233512 +"Q9W3K6",-0.224913036111571,16.2701186024433,-3.76363768966537,0.00181582791486937,0.0272864951531721,-1.49226609287221 +"Q7K486",0.209530556976738,17.6059805588514,3.73211227230448,0.00193814877856825,0.0287809401558858,-1.556198300466 +"Q9XYZ5",-0.223440166720341,16.0115285692361,-3.72921766068052,0.00194978791223927,0.0287809401558858,-1.56206791133853 +"Q9VSL3",0.213363289510841,22.4632904713458,3.7159974401775,0.00200384707667722,0.0291885597188557,-1.58887408295887 +"Q9VBP9",-0.323506653862101,13.9443137499968,-3.71393859277936,0.00201240070004101,0.0291885597188557,-1.59304851093444 +"Q24492",-0.253769627596686,15.1695905390193,-3.70345901623391,0.0020565116877467,0.029453888134677,-1.61429541349641 +"Q9VVL5",-0.176661557082454,17.2949805027842,-3.70123205029501,0.00206601013894317,0.029453888134677,-1.6188102622059 +"O76742",-0.24309897861777,18.0136812741007,-3.69270016310879,0.00210281057887964,0.0297244749624681,-1.6361066168375 +"Q95RQ8",-0.789408978528503,14.2995654179286,-3.67900306734092,0.00216327395118199,0.0299812561046705,-1.6638713322381 +"P48596",0.14735023367173,21.8671849202627,3.6778205268184,0.002168575340532,0.0299812561046705,-1.66626822615184 +"P09180",0.153362154746194,20.6734751591385,3.67641369079855,0.00217489927378005,0.0299812561046705,-1.66911970698069 +"Q7KSQ0",-0.175704697832646,20.9228839361195,-3.66895551494404,0.00220873584096998,0.0301981260880158,-1.68423578792658 +"Q9VV47",-0.171917084635513,20.1696428458878,-3.66319105225238,0.00223525043160996,0.0303121765847594,-1.6959182367704 +"Q9V393",-0.34179009539719,15.809996868543,-3.65050633703113,0.0022947277135198,0.0308677889205728,-1.72162272626026 +"Q9V419",-0.23280478534404,16.4871156672547,-3.64578034847969,0.00231729172202537,0.0309219407387065,-1.73119851139425 +"Q27377",0.363700724426188,20.0456085409392,3.6404273361853,0.00234311873234081,0.0310184289328926,-1.74204406370145 +"A8WH76",-0.216290018358677,19.0424009076152,-3.61059875086838,0.00249241883297925,0.0324908148160867,-1.80246381605376 +"Q9VV46",0.346684585623709,23.8985341776894,3.60766694634064,0.00250759914297065,0.0324908148160867,-1.80840091104131 +"Q9VYT6",-0.318767599600449,16.4189831722274,-3.60667065343281,0.00251277884369016,0.0324908148160867,-1.81041840552281 +"Q9VE24",0.216843089403485,15.8843580865115,3.60104734868793,0.00254221618517557,0.0326138969723041,-1.82180499111396 +"P54195",0.429188729034784,18.713261626981,3.59741718398638,0.00256140317947952,0.0326138969723041,-1.82915511911783 +"Q9VVB4",0.236570057131035,15.9952115483397,3.58832121762807,0.00261011967103696,0.0329824212976489,-1.84757005266119 +"Q0KIE7",-0.548817457991209,14.0418513385367,-3.57679437522188,0.00267319262046239,0.0335254533152727,-1.87090205354339 +"Q7K1Z5",0.281669963365728,15.9893750506479,3.56990605635255,0.0027116113908602,0.0335625448793585,-1.88484262471809 +"Q9VAY3",-0.335671567648722,13.9219856041427,-3.56905558392545,0.00271639302081139,0.0335625448793585,-1.8865636823186 +"Q9VXF9",0.154338968910139,17.4720763046938,3.55516112433419,0.00279571967125386,0.034288679497437,-1.91467709397799 +"Q9VN13",-0.219851548301577,17.063191730045,-3.50848526936661,0.00307958535360625,0.0374945136482863,-2.00905721887263 +"Q9Y0V3",0.2658100709385,15.1089618577586,3.50184711961655,0.00312223401815162,0.0376493412194547,-2.02247134838786 +"Q9VV31",0.39147850472196,15.6252071715139,3.49950147506372,0.00313744510162123,0.0376493412194547,-2.02721080347777 +"A1Z7B8",-0.250643114493263,16.9816878971773,-3.4843239013141,0.00323767582754792,0.0385745948596424,-2.0578706316069 +"A1Z8Y3",0.23858696423528,15.0429133991574,3.47701765491048,0.0032870603757013,0.0388852248699984,-2.07262535668843 +"A1Z7K8",0.174811561749696,17.6115932718319,3.47046368019342,0.00333200029353738,0.0391384770995707,-2.08585835898477 +"Q9VMI3",-0.2112166036739,20.1972907204807,-3.46708641023886,0.00335539701752914,0.0391384770995707,-2.09267638486104 +"Q7K4T8",-0.302195213884874,13.6995246631005,-3.45566416124963,0.00343574982071572,0.0397974354232905,-2.11573067789676 +"Q9VBU0",-0.334315659395173,14.2173254081894,-3.43999460712016,0.00354911654618642,0.0408270786140617,-2.14734482856359 +"Q9W0R0",0.193027277117853,16.735984403513,3.4066547182066,0.00380289830746647,0.0434468108003703,-2.21455754105733 +"Q9VP57",-0.276169011387587,19.4973851060016,-3.39912990464606,0.0038626350208421,0.0438290830936369,-2.22971705562209 +"Q9VIE7",0.212740056557497,14.9888306814096,3.37696105863467,0.00404411578438635,0.0455782778943002,-2.27435487944139 +"Q9VQR9",0.249116148766523,16.2449796779376,3.3678480345721,0.0041211584184522,0.0461348472615991,-2.29269371535427 +"Q9VA34",0.246386186258921,14.4307999341644,3.34841686089394,0.004290345437548,0.0477086412655337,-2.33177501547447 +"Q9W308",0.279638639874101,17.1418134381764,3.31934718190503,0.0045564391270082,0.0503320560519846,-2.39018444329661 +"Q9VBC7",-0.219159561494974,16.1582736960174,-3.30625456550329,0.00468158211431223,0.0509686540023032,-2.41646764231927 +"Q9VVW3",-0.236494897169468,16.575180436671,-3.30325960757106,0.0047106853115577,0.0509686540023032,-2.42247782708765 +"Q9V3J4",-0.183029919296901,16.6367514584749,-3.30311296234741,0.00471211492758083,0.0509686540023032,-2.42277208925033 +"Q8SZM2",0.174302913469731,21.2541927776403,3.29970278354211,0.00474548190479754,0.0509686540023032,-2.42961449512816 +"O77410",-0.21805534009385,14.348263298953,-3.29753114629716,0.00476685253258951,0.0509686540023032,-2.43397125950529 +"Q9W0C1",-0.164884373894449,21.3053258646223,-3.26889720333888,0.00505773113157902,0.0534442679858171,-2.49137588343237 +"Q9V9V4",0.168990631639375,18.6297496139518,3.2644028650314,0.00510495922750213,0.0534442679858171,-2.5003788938543 +"Q9VZ66",0.160430265381638,17.0394247745812,3.26283079375458,0.0051215821595242,0.0534442679858171,-2.50352758186957 +"Q9VKZ8",-0.201085906458246,18.7349348642258,-3.26236209767243,0.00512654848784817,0.0534442679858171,-2.50446628201755 +"Q7K0P0",-0.234327333122835,15.2798450996036,-3.25890611851427,0.00516331596521339,0.0534932362110306,-2.51138721294967 +"Q7KM15",-0.18053580361369,17.0471249906335,-3.25551552412931,0.00519964191703386,0.0534972473852713,-2.51817604848098 +"Q7JV09",0.194884694352529,15.1604740529805,3.25071634271062,0.00525149265793899,0.0534972473852713,-2.52778326099038 +"O61491",-0.132765322654205,20.9428219736616,-3.24817151235208,0.00527919483988867,0.0534972473852713,-2.5328766685722 +"Q7K3V6",-0.246706521530323,16.2608729176929,-3.24700020864805,0.00529199389602504,0.0534972473852713,-2.53522077893098 +"Q7K8X7",-0.209825966484704,19.4890001635212,-3.22944184974084,0.00548758402669538,0.0551403021477584,-2.57034302998718 +"P15425",-0.180412541864264,17.0621512294269,-3.22576267915543,0.00552946659560474,0.0552284447992138,-2.57769842861938 +"Q7JZV0",-0.316998194932605,15.1662541880895,-3.22253889931462,0.00556642526130476,0.0552666508086687,-2.58414222185755 +"Q9VH95",0.146436786955757,20.9115341982174,3.21588917655359,0.00564343466148006,0.0554256508713287,-2.59743036030158 +"Q7KMQ0",0.144998851755069,20.7685326007244,3.21325840925393,0.0056741915246844,0.0554256508713287,-2.60268609473 +"Q9VLC5",-0.168407643756243,21.8300234017748,-3.21258202309765,0.00568212607853549,0.0554256508713287,-2.60403725339504 +"Q7K084",0.158878487611737,23.7084076043271,3.20039847332925,0.00582694391272382,0.0565078049210659,-2.62836662462495 +"Q9VZI8",-0.215008364331826,15.7429558136524,-3.19720441287888,0.00586551000033265,0.0565530097141899,-2.63474210991503 +"Q9VJ68",0.237700133407486,17.8267890303664,3.18677015910236,0.00599326455878742,0.057452674046307,-2.65556125695235 +"Q8SXD5",0.171340390428551,20.7561679568443,3.18247739117112,0.00604661961671977,0.0576329229753633,-2.66412284949738 +"Q9VG92",0.193561125099063,16.5155170015384,3.16818174252985,0.00622770904898232,0.0590216971233097,-2.69261883894848 +"Q9VD09",0.345696499053773,14.5798638803691,3.14377657446995,0.00654932214392278,0.0617190357969672,-2.74120957997079 +"Q9NHE5",-0.394919985818971,15.6931152590081,-3.13659759222515,0.00664701038382114,0.0622877152820992,-2.75548889474136 +"Q9VND8",-0.633577190924004,18.4846076302531,-3.10782742544401,0.00705313238434096,0.0650529364447854,-2.81264751897972 +"Q9VC18",-0.163563845339603,18.2956868694891,-3.10743713719737,0.00705880659133168,0.0650529364447854,-2.81342216925108 +"Q24372",-0.263730524140309,16.9076188387342,-3.10731403776628,0.00706059720591409,0.0650529364447854,-2.81366649471822 +"Q9VE52",0.188310679173187,15.9507527472545,3.1047427287915,0.00709810217802814,0.0650529364447854,-2.81876951690063 +"Q9V3L7",-0.224395906733257,17.7097589212558,-3.09983079076321,0.00717029394371028,0.0653554661098839,-2.82851528001808 +"Q9I7Q5",-0.197846891356736,20.6437911542664,-3.08968553069047,0.00732169842788231,0.0660683584722796,-2.8486340767314 +"Q9GYU8",-0.725560628962524,12.5654381050296,-3.08928595261946,0.00732772560993509,0.0660683584722796,-2.84942618035571 +"Q9VH77",-0.262515128093197,15.53675208586,-3.07783774218079,0.00750249919974483,0.0672804766944858,-2.87211111717072 +"A1Z877",-0.150121321622937,19.9773855034115,-3.06822124264054,0.00765247482973261,0.0680604250396455,-2.89115222107377 +"O97102",-0.217922120908529,21.0496595040098,-3.06704128176004,0.00767107908120705,0.0680604250396455,-2.89348768952674 +"Q9VFS8",0.206048202411512,17.2816677610288,3.05453983383271,0.00787094053905082,0.0689960000570484,-2.91821916369089 +"Q7JV69",-0.225709020001098,16.1491020418716,-3.05354301893495,0.00788709534108647,0.0689960000570484,-2.92019017235916 +"P54622",-0.203796207634806,17.9440856725228,-3.05159338580116,0.00791878620612972,0.0689960000570484,-2.92404477321572 +"Q9VW59",-0.171414795459384,19.7442824057436,-3.05017100678276,0.00794198561807751,0.0689960000570484,-2.92685659219562 +"Q9VH66",-0.188453469887451,16.7530952809494,-3.04403080577578,0.00804290314016081,0.0695106862061566,-2.93899136697726 +"Q9VEP6",0.164429662664226,18.6233595023705,3.03144554690834,0.00825370304809262,0.0704881637544702,-2.96384577738017 +"Q9VE08",0.288002654889256,14.6134434284998,3.02922575966518,0.00829144288017709,0.0704881637544702,-2.96822711115531 +"Q9W3W4",-0.193174968981024,15.9394778594065,-3.02748041868505,0.00832123535551934,0.0704881637544702,-2.97167147233354 +"Q9VIB5",0.287700946633743,14.365377814755,3.02725791818677,0.00832504092303995,0.0704881637544702,-2.9721105347487 +"Q9W4W8",-0.221398392649039,17.4121480285552,-3.01309771084527,0.00857077924069373,0.0722023220882684,-3.00003729705531 +"Q9VAQ4",-0.242025074805646,15.9898182085765,-3.00876325545957,0.00864741322551448,0.0724252386683129,-3.00857946307805 +"Q9VAF5",0.143547395591646,15.9782523145676,3.00670260166233,0.00868408137509747,0.0724252386683129,-3.01263947640162 +"Q9VCR4",0.256976192184831,15.0107289887587,3.00015251920828,0.00880165225520494,0.0727667711318576,-3.02554033465131 +"Q9VG81",-0.3387422072652,15.6851787288479,-2.99956450773399,0.00881228283491321,0.0727667711318576,-3.02669813095225 +"Q9VJQ6",-0.294678987533667,14.4606874918056,-2.99476118993856,0.00889959420116573,0.0731257296923371,-3.03615380048639 +"Q95RQ1",0.563504088717638,11.9850982268574,2.97975453905007,0.00917787432244457,0.0749681674213996,-3.06567135003341 +"O15971",-0.233868706762816,17.1779462284511,-2.97785435290348,0.0092137136219346,0.0749681674213996,-3.06940631488706 +"O02649",0.139150988113549,23.3194044748523,2.96170812801315,0.00952382952823084,0.0771152798693643,-3.10111868868641 +"Q9V438",0.152085419372341,18.9710396139007,2.95306670929548,0.00969397753795575,0.0781137900159912,-3.11807296572204 +"Q9VKE2",0.27717002928496,24.0769382042761,2.94947034388716,0.00976566276777973,0.0783131033493106,-3.1251251834643 +"Q9W227",0.100712673341505,21.9583561470568,2.94076937733778,0.00994124837457554,0.079303659389777,-3.14217789174044 +"Q9VCH5",0.111807837809156,18.0175285715134,2.93866023522386,0.00998427366418056,0.079303659389777,-3.1463095331144 +"Q9VB17",-0.167060517274189,15.6066107364688,-2.93541483773454,0.0100508337928101,0.0794539846749159,-3.15266548121759 +"A0A0B4K7J2",-0.313676441819794,15.7385480246868,-2.93036369741673,0.0101552919733626,0.0799010708092869,-3.16255418457884 +"Q7K569",-0.209930062720822,20.5965234990322,-2.92643959761097,0.0102371745422694,0.0801671696549549,-3.17023333202992 +"Q9VEP8",0.15014832130565,17.2263350340453,2.90754262067034,0.0106406096551255,0.0829370883399504,-3.20717435006222 +"Q9VG97",0.135465496384519,20.0762224672286,2.90323051700135,0.0107348226581587,0.0832822520642264,-3.21559479198374 +"Q9VXN3",0.189000225903008,16.961678007382,2.90055338355767,0.0107937231850465,0.0833515290400814,-3.22082082378962 +"M9MSK4",-0.15745278823648,20.5689156087235,-2.89054730021177,0.0110166756523262,0.084681175060277,-3.24034187486847 +"Q8SXY6",-0.185518146128388,19.127165737075,-2.88522461492489,0.011137098170696,0.0852141272877106,-3.25071833285188 +"Q9VRL2",0.674815382454268,12.0550068605055,2.87922483928397,0.0112743787190515,0.085870610517707,-3.26240831619053 +"Q9VMY1",0.276203114824076,15.5447128040025,2.87294448816867,0.011419846105728,0.0864791993881373,-3.27463759326835 +"Q9VDV3",0.144261265701417,17.5366875014127,2.87131120409871,0.0114579754585002,0.0864791993881373,-3.27781672517447 +"Q9W4X7",0.135347965056074,19.1246900831119,2.86480943725311,0.0116109941367734,0.0871737843278302,-3.29046706435791 +"Q9VW26",0.125079592423898,17.5302851929136,2.86297490240117,0.0116545287200876,0.0871737843278302,-3.29403498705855 +"Q9NBD7",-0.421640914681122,13.228534542692,-2.8559439510324,0.011822854369453,0.0873976077032944,-3.3077031229614 +"Q9VJ31",-0.152817697204151,17.2345616125975,-2.85573019660663,0.0118280086978994,0.0873976077032944,-3.30811850797278 +"Q9VIF2",-0.157292828885852,17.468934630371,-2.85516523674049,0.0118416422907341,0.0873976077032944,-3.30921634050277 +"Q9VLY7",-0.169331379560081,15.4502375152215,-2.84154280161658,0.012175048863094,0.0894624735843205,-3.33566828094601 +"Q9VK00",-0.469945429356702,17.8048016385076,-2.82008000422143,0.0127189553657059,0.0930211801122297,-3.37726840082452 +"Q9W4K0",-0.153235562007676,19.7199493509626,-2.81618416913478,0.0128201842445546,0.0930211801122297,-3.38480930579644 +"Q7JPS2",-0.224353800724213,20.6941733676216,-2.81593590680914,0.0128266615262667,0.0930211801122297,-3.38528974328799 +"Q9VGJ9",-0.170279320992755,18.0003510600551,-2.81033322370768,0.0129736865598252,0.0936801263280884,-3.39612863270614 +"P18053",0.134157601189031,21.0588932998648,2.80746432367632,0.0130496043492984,0.0938221554078871,-3.40167622369594 +"Q9VSK4",-0.150227404393888,19.7403126208098,-2.80116135817949,0.0132179136316722,0.0946243774147177,-3.4138581568738 +"Q9VW14",0.246566034629545,13.7546804927289,2.79376548417373,0.0134180950925036,0.0952913947812181,-3.4281416029662 +"P29829",-0.19790718326102,21.3721715657302,-2.79255952673661,0.0134510140809042,0.0952913947812181,-3.4304695236342 +"Q7KUA4",0.120277898908636,18.7732442697176,2.78956139137029,0.0135331940440388,0.0952913947812181,-3.43625561872447 +"Q9VJQ5",0.292210803082032,14.3260901627867,2.7893282591514,0.0135396046541659,0.0952913947812181,-3.43670545882132 +"Q9VA42",0.2281682499761,20.2824353439044,2.77492615250812,0.0139413929109413,0.0977069049388661,-3.46447211618589 +"Q9VDQ3",0.5202460302195,13.3181937038527,2.76885862952317,0.0141141033272901,0.0985034491628446,-3.47615642114772 +"Q8SXQ1",-0.185145902981287,18.6290177333548,-2.7596243372426,0.0143809401197202,0.0998814815136674,-3.49392331381108 +"B7Z0Q1",-0.145892154652671,17.7316920724339,-2.7578996047682,0.0144313171731378,0.0998814815136674,-3.49723960506832 +"Q9VT23",-0.195678080343608,18.2998447829677,-2.74839191716815,0.0147121056797731,0.101404100305213,-3.51550879629082 +"O76752",-0.145389865358357,17.8854506510797,-2.74072646541268,0.0149423312564716,0.102104157687268,-3.53022311824169 +"Q9U6P7",-0.155848174090861,17.036181548762,-2.73990265111149,0.0149672802931301,0.102104157687268,-3.53180368027447 +"Q9W1G7",-0.122097056471677,18.909232739313,-2.73891272400558,0.014997313329365,0.102104157687268,-3.53370273801508 +"Q9V521",0.197395442170079,17.6716149072458,2.72946862382995,0.0152867804069662,0.103651828125283,-3.55180872697199 +"Q7JVZ8",0.259931569807101,16.0218361622075,2.72430021335315,0.0154474746373397,0.104317359089403,-3.56170868030951 +"Q9VDU7",0.146097543989733,18.3145236214828,2.72096543248063,0.0155520236351744,0.104599900901093,-3.56809303902473 +"P32234",0.190539890517611,16.7138791448736,2.71429268025362,0.0157632782593714,0.105594972436271,-3.58085998346691 +"P48611",0.190571052118191,20.1914804439693,2.71156859877501,0.0158503152362997,0.105753303256591,-3.58606891843458 +"Q9VCR2",-0.204017696087398,15.5012250835679,-2.70651396274261,0.0160130467310191,0.106413394212509,-3.59572960147749 +"Q9VXR9",-0.169707047462687,15.2278948852988,-2.69731670973967,0.0163132944308902,0.107645419765095,-3.61329211700701 +"Q8MRM0",0.180214003278273,18.5551704840265,2.69688523430833,0.0163275127101732,0.107645419765095,-3.61411553400965 +"Q9V597",0.341522237138307,20.1235599521727,2.68850820798277,0.0166059393376186,0.10905002683129,-3.63009305704993 +"Q9W3K9",-0.219130328831596,19.3447212134322,-2.67513891088981,0.0170598018716049,0.111531397423062,-3.65555662666213 +"Q9V3Z4",-0.172756913985147,18.7840867784644,-2.6734631048902,0.0171175286212854,0.111531397423062,-3.65874529046885 +"Q9VNZ3",-0.53678510403665,15.3175403094516,-2.66793560891866,0.0173092722528254,0.112283446201658,-3.66925783313011 +"Q9VNE9",0.152996067636241,18.8313822329758,2.66626633454133,0.0173675834052924,0.112283446201658,-3.67243105743066 +"A1Z8Z3",-0.192194475965977,19.9766759157919,-2.65430882474994,0.017790848565949,0.114575812386112,-3.69514120389834 +"Q9VM69",0.204025058406074,16.8428884116285,2.6463507566942,0.0180780272772336,0.115977498070868,-3.7102352491109 +"Q9VN86",-0.23028287329133,15.3927364428041,-2.6364187470449,0.0184426970497246,0.117863673099389,-3.7290503360608 +"Q7K3J0",-0.123609478834933,20.3627972375595,-2.61166059122822,0.0193827654400638,0.123398674633688,-3.7758392290378 +"Q0E8C8",-0.191317477192008,17.616232053992,-2.60804760810492,0.0195237395789248,0.123823565086108,-3.78265353257735 +"Q9VVI2",0.561168287586961,13.7600533686144,2.60247118391731,0.0197432573756182,0.124438510047548,-3.79316409238841 +"Q9VIS4",0.184576389325089,14.1250862440376,2.60179825005129,0.0197699071718227,0.124438510047548,-3.7944318827309 +"Q9XY35",-0.141674880837513,19.218393902753,-2.5917357951485,0.020172542122743,0.125992124568957,-3.81337457717612 +"Q9VXG4",0.148025487503535,19.9377508678898,2.59150115123908,0.0201820242136266,0.125992124568957,-3.81381596670269 +"O62602",-0.23695035527086,14.5895292480106,-2.58998640158745,0.0202433389595206,0.125992124568957,-3.8166650037871 +"Q9VJZ5",0.129179854480785,16.9412414825802,2.58713899564691,0.0203590810813274,0.126241439567487,-3.82201887566682 +"Q9VVW7",0.119385853009302,16.5827671027172,2.58384166726489,0.0204939040220494,0.126606784847327,-3.82821592332869 +"Q9VGE7",0.298063089424529,13.8927937472339,2.57997603021434,0.0206530533806288,0.127119162505125,-3.83547722228216 +"A1Z6V5",0.148517396396816,20.0504171404888,2.57160328524427,0.0210018290387242,0.128241490048431,-3.85119049351101 +"P32748",-0.151262176973074,17.2881131598324,-2.57073886554927,0.0210381567623888,0.128241490048431,-3.85281164629466 +"Q8SXX1",-0.108033440024364,19.8913624866939,-2.57007615828143,0.0210660481254616,0.128241490048431,-3.85405436065726 +"Q9VTB0",0.190282786800461,17.0111822847905,2.56218906696434,0.0214007202361033,0.129805095832074,-3.86883479082478 +"Q9VDT1",-0.163835937009743,19.1389226260248,-2.55252946871219,0.0218175355446071,0.131678338568863,-3.88691283562106 +"Q9W1G0",0.115543505539602,21.7390385985716,2.54976792132188,0.0219381166755739,0.131678338568863,-3.89207619471521 +"Q9VDD1",0.2650481337401,14.3595668460589,2.54802637608363,0.0220144872774635,0.131678338568863,-3.8953312932895 +"Q9VM18",0.110442358912785,22.9303662410684,2.54777950605527,0.02202533360954,0.131678338568863,-3.89579264399407 +"Q9VZZ6",-0.144151160698328,18.4276476323308,-2.54500810823581,0.0221474469898099,0.131935505639296,-3.90097062506304 +"Q9VKF0",-0.179508211195547,15.918584706214,-2.5312074689356,0.022765220226854,0.135133051026307,-3.92672204102125 +"Q9VWS1",0.168181764706604,17.2010323143965,2.52880938967777,0.0228742320566866,0.135298649186359,-3.93119107734206 +"P54385",-0.165568218155919,21.5202325042604,-2.52000040219929,0.02327896131717,0.137206033487772,-3.94759285312132 +"Q9W1I8",0.131262612915382,17.9265513254871,2.51078408896369,0.0237097109479551,0.138929265120836,-3.96472835445429 +"Q9XZ63",0.279297989100094,19.0151081474752,2.51018623721576,0.0237379140044593,0.138929265120836,-3.96583903709203 +"A1Z9E3",-0.111872098767556,21.7944777074245,-2.50651083421005,0.0239120010606612,0.139458803388751,-3.97266480071294 +"Q7KTP7",0.108321414910606,17.8699040097487,2.50250674215282,0.0241030407349969,0.140083177512107,-3.98009635194144 +"P41375",0.216172411905919,16.731265736926,2.49502133405635,0.0244640830554485,0.141687814362806,-3.99397615048567 +"A1Z803",-0.12681850535305,18.850181843222,-2.47350464070833,0.0255307721443916,0.147354075906039,-4.03377771615308 +"Q9VK58",0.863823384873132,13.1365312694011,2.4697273198769,0.0257225377672489,0.147948941364728,-4.04075017885763 +"Q9VK11",-0.167298908830887,18.7485880803531,-2.4660158734303,0.0259122914694071,0.148022187814219,-4.04759668979795 +"O18333",-0.202849484662471,17.4803216210318,-2.46510343692712,0.0259591444757176,0.148022187814219,-4.04927919968306 +"Q9VR79",0.188266511364212,20.2554311892079,2.46427994281872,0.0260014994182051,0.148022187814219,-4.05079747692339 +"Q7KLW9",-0.123938356555957,17.2329593337218,-2.45894310588219,0.0262775849176226,0.149085073614267,-4.06063182073905 +"Q9VAA9",0.150263611270827,17.1020432253642,2.44842212984366,0.0268300270757907,0.151703339533624,-4.07999263810912 +"Q9VN44",0.131065059415143,19.5035394634771,2.43847059827076,0.0273626926912431,0.154192470976329,-4.09827292188203 +"Q8IPX7",0.33154244914828,15.2352771059203,2.43441107938627,0.0275828483454634,0.154909734142198,-4.10572079284308 +"Q94901",0.0921477559884565,18.9179618462046,2.41784062435581,0.0284990203102789,0.159518006300487,-4.13606628409068 +"Q9V784",0.320197772406221,14.2129069362637,2.41046226381353,0.0289161677490035,0.161311598011163,-4.14954916623406 +"Q09101",-0.170671712075478,14.6597525791805,-2.40577715626373,0.0291840384361525,0.162263253705008,-4.15810111659809 +"A1Z8H1",-0.117857021668204,23.1161754414329,-2.40389605312773,0.0292922490535501,0.162323825320005,-4.16153271931521 +"Q9VSL9",-0.341171573110751,14.6593232238978,-2.39149776813856,0.0300150028204659,0.165778227498467,-4.18412051272766 +"Q9W1M9",0.313872786387909,14.2935878377721,2.38839066355016,0.0301987520753457,0.166242635187052,-4.18977303484487 +"Q9VK99",0.19819120379675,19.9898610221385,2.38192182801147,0.0305847209907664,0.167813534909863,-4.2015307449866 +"P56538",-0.141794841947519,17.0907551923562,-2.37670700591169,0.0308992518414503,0.168983449414882,-4.21099873492638 +"Q9VER6",0.230878116912654,14.9685891280351,2.37232459450984,0.0311659326845588,0.169884887966811,-4.21894816567361 +"P23779",0.112881370469232,20.9431527571856,2.36666157561365,0.0315137562118144,0.171036522757494,-4.22921069856889 +"Q7K1S1",-0.198721242482101,16.5853091780995,-2.36345496773917,0.0317123254529585,0.171036522757494,-4.23501677668287 +"Q961B9",-0.19216209851592,14.9362291635852,-2.36227802862228,0.0317855027087989,0.171036522757494,-4.23714691434752 +"A1Z8Z7",0.147975157776028,18.890075826969,2.36173849263889,0.0318191019958803,0.171036522757494,-4.23812325676873 +"Q7KND8",0.155491685551599,15.4398112725021,2.3590069231943,0.0319897229263515,0.171036522757494,-4.24306473268638 +"Q24439",0.0905324399746164,24.285930061975,2.35896348548804,0.0319924431057183,0.171036522757494,-4.24314329145693 +"Q9VLS5",0.195965355521142,14.6124685115176,2.35288033332561,0.0323755439757752,0.172045739098096,-4.25413836400071 +"Q9VDK9",-0.171377525657977,15.5428172772028,-2.3526914651234,0.032387507240289,0.172045739098096,-4.25447952788948 +"Q9VF15",0.164739573891111,20.8542910198382,2.34754759226946,0.0327149339210328,0.17323336438185,-4.2637663682507 +"Q8SX89",0.192713129695242,15.4980191175485,2.33927130724813,0.0332482941969537,0.174456159210356,-4.27868882305043 +"Q9VEB1",-0.0850479064377119,25.1289450051015,-2.33823827737927,0.0333154382723755,0.174456159210356,-4.28054970142093 +"P41094",0.090497214634027,21.1793837820127,2.33611900497439,0.0334535842907502,0.174456159210356,-4.28436611961443 +"Q9W0Y1",0.152548619790739,17.6826325625003,2.33475137385039,0.0335430197865381,0.174456159210356,-4.28682811661142 +"Q4V5I9",-0.198317839373683,16.0392601627442,-2.33265730072238,0.0336803961102555,0.174456159210356,-4.29059654724169 +"Q7KSE4",0.183898633303549,13.8253876470276,2.33244850648298,0.0336941224707335,0.174456159210356,-4.2909722006675 +"Q9W3Y3",0.106297519496533,18.0873189781384,2.33225035694075,0.0337071538983643,0.174456159210356,-4.29132868812577 +"Q9VJE3",0.17223244213983,15.3183107314063,2.33110491292058,0.0337825775928927,0.174456159210356,-4.29338916010032 +"Q9VSK9",0.165553808217616,14.5095567207282,2.32756481532584,0.0340166847591309,0.175122932648859,-4.29975424572313 +"Q9VHG6",-0.202201268580462,15.7066515973361,-2.31489535071058,0.0348670597615761,0.178948479022489,-4.32249670807004 +"Q7K5M6",0.11614559790516,18.1995592081871,2.30682667602565,0.0354189832473993,0.18112251762311,-4.33694992754561 +"Q8SXF0",-0.126074288552676,16.3789852273606,-2.30446424302538,0.0355821252089317,0.18112251762311,-4.34117716477377 +"O97365",0.126606985051559,18.0005488474307,2.3039689414041,0.0356164183335612,0.18112251762311,-4.34206317528936 +"Q9VRR3",0.159942149504193,19.7385326526577,2.30108223739945,0.0358169017854469,0.18158842607333,-4.347225194119 +"Q8SZN1",0.151132706974977,20.111525262488,2.29633305441254,0.0361490380720269,0.182716956073154,-4.35571098713597 +"Q9VTZ4",-0.129676303423533,18.1840541179795,-2.2795453677795,0.037346351057739,0.188198530405766,-4.38563954444681 +"A1ZB69",0.14393536130709,20.4182601566043,2.27732903766976,0.0375071657971772,0.188439616113529,-4.38958282430266 +"Q02748",-0.141169784562315,19.5667560634586,-2.27427548378302,0.0377297894320993,0.188988855173398,-4.39501263921486 +"Q9VKD3",-0.112230522798338,18.7205628702694,-2.27176807794788,0.0379135183296507,0.189001484579885,-4.39946864888378 +"Q9VBU9",-0.114944449562312,20.845503781196,-2.27115006410523,0.0379589312555524,0.189001484579885,-4.40056657819246 +"Q9VAI9",0.13097784258116,21.9728393238786,2.26297438236222,0.0385645003262349,0.190778855033959,-4.4150773195499 +"Q9V4W1",0.332379199430735,13.6028511347201,2.2623562266467,0.0386106518277926,0.190778855033959,-4.4161734225725 +"Q9VLS9",0.149388227547604,18.9671003246772,2.26079250240025,0.0387276298089011,0.190778855033959,-4.41894553610467 +"A8DRW0",-0.170947302661627,21.5385651758816,-2.26018185590503,0.0387734003935925,0.190778855033959,-4.42002781280648 +"Q9W265",0.150235763596061,17.0207679098604,2.25793093306833,0.0389425532683208,0.191047584857527,-4.42401598648396 +"Q7K511",-0.297276999766087,16.7702574142731,-2.2559024438443,0.0390955804589938,0.191235859840474,-4.42760838007067 +"Q9W074",-0.218889199719129,13.5914107105598,-2.25380263002688,0.0392545792792327,0.191452158589942,-4.43132541309816 +"Q9VN73",-0.103948533764882,18.4122419063573,-2.23336511840571,0.0408339271992181,0.198574316525644,-4.46741370702182 +"Q9VVK7",0.134608569920278,18.1871969698188,2.22417791085312,0.0415629983729992,0.20153221304117,-4.48358288600448 +"Q9VRD4",-0.112553672386991,20.3159399639281,-2.22030122598243,0.0418742602464092,0.202452945191335,-4.49039567109444 +"Q27268",-0.21134838303432,19.0147698068027,-2.21628257477218,0.0421992081930722,0.202881161682625,-4.49745161491296 +"Q9VY87",-0.23465943331982,17.6353165601459,-2.21619774175876,0.0422060929879323,0.202881161682625,-4.49760049502704 +"Q7K0W4",0.13090728688206,21.7166996338103,2.21379747874597,0.0424013244747129,0.20323393455121,-4.50181170996096 +"Q9VC67",0.164879903757232,15.1425192935636,2.20841119378696,0.0428424906280569,0.204760098474496,-4.51125342022544 +"Q7JRN6",0.211756477891628,14.7220934802581,2.20490777680059,0.0431317244724396,0.205553475485798,-4.51738834399539 +"Q9NK57",0.228501392258792,15.5090800855934,2.19790731904757,0.0437151047730448,0.206753184293471,-4.52963213997789 +"Q9VDT5",0.212043613955263,19.077019834762,2.19745653838538,0.0437529202519419,0.206753184293471,-4.53041987287156 +"O97125",-0.124668994283926,18.5365371323678,-2.19648560580945,0.043834473813701,0.206753184293471,-4.53211628289494 +"P40797",-0.0988304065822732,19.1622356493541,-2.19595296487263,0.0438792729255929,0.206753184293471,-4.53304674813472 +"Q9VMT5",-0.154418143241276,16.4814352366706,-2.19327735782661,0.0441049549509634,0.207231168614668,-4.53771898898255 +"E2QCN9",0.137793704090043,17.3742846805825,2.19097869858241,0.0442997015605225,0.207561523041999,-4.54173065402338 +"O97479",-0.218584591243147,17.9029654606802,-2.18505617784648,0.0448051483012021,0.208636665223296,-4.55205677338996 +"Q9VVJ7",0.110050683473162,18.1678271516263,2.18407895751612,0.0448890593949484,0.208636665223296,-4.55375920507217 +"Q9VCE1",0.184482485703727,13.6715944952695,2.18390032072176,0.0449044141577717,0.208636665223296,-4.55407036866025 +"Q9VGL0",0.278394110711208,12.8872030662109,2.17522651497023,0.0456558542801377,0.21130674769513,-4.56916322557195 +"Q8IRH5",0.155586247635785,14.4162474663663,2.17326579972419,0.0458273233974053,0.21130674769513,-4.57257064826747 +"Q9V3W9",0.0942971057993951,18.5048589590713,2.17222518899663,0.0459185692118621,0.21130674769513,-4.57437842098118 +"Q70PY2",0.320895760895265,17.2412046192329,2.17145944222483,0.0459858209912063,0.21130674769513,-4.57570840587814 +"Q9I7X6",-0.235401327182801,14.8254133677801,-2.16698107959815,0.0463809624997838,0.212196415118578,-4.58348173936859 +"Q9W2V2",-0.232836300277331,14.2953510493031,-2.16638415551586,0.0464338678167152,0.212196415118578,-4.58451721967399 +"Q0KI98",-0.149231622932147,16.6256915397041,-2.16372346003652,0.0466703646245974,0.212694448617018,-4.58913089639875 +"A1ZB73",0.572481445732761,13.6051833357404,2.16138417899385,0.0468792121645965,0.21304305638287,-4.59318478445379 +"Q9VHG4",0.212455515507223,18.369635660303,2.16000993752478,0.0470023050053334,0.21304305638287,-4.59556522244738 +"Q8T0Q4",0.125253375649802,19.9851303663364,2.15712462542558,0.0472617194985338,0.213638341798251,-4.60056052511025 +"Q7KN90",0.0947613491320904,17.2669812308476,2.15524482379109,0.0474314411392935,0.213826064379302,-4.60381311233906 +"Q9VKU5",0.313837475202824,13.6392190760864,2.14989751457514,0.047917317806298,0.214924113744048,-4.61305729478824 +"P25455",-0.163425492031536,15.812939069084,-2.14896501902107,0.0480025171327573,0.214924113744048,-4.61466810916475 +"Q9Y143",0.0969277418404246,20.9487170866769,2.14831961781048,0.0480615674019964,0.214924113744048,-4.61578277387313 +"O61444",0.173091155067352,16.4591917716334,2.14551806657349,0.0483186705009288,0.215496102661896,-4.62061924619371 +"Q9VGF7",-0.10658379167241,20.0533189875099,-2.1438726567586,0.0484702637596784,0.215595733203049,-4.62345824977163 +"Q9VRG8",0.152354999430647,16.1705222861058,2.13892197833964,0.0489290257262732,0.216676438730853,-4.63199321865601 +"Q9W3X7",-0.100787771363823,21.6193069399451,-2.1380834570504,0.0490071241029905,0.216676438730853,-4.63343779057313 +"Q9W0N6",0.237553753348426,14.51720346261,2.13444243287515,0.0493475779122882,0.216676438730853,-4.63970690643997 +"Q9VWW2",0.360402513021649,15.1819099648194,2.13434138330914,0.0493570575766063,0.216676438730853,-4.63988081236341 +"P14318",0.139627739585986,22.0865939075188,2.13361809882151,0.0494249593928992,0.216676438730853,-4.64112545400358 +"Q9VJJ0",0.109348773425531,19.7366045342784,2.13289808402425,0.0494926397820475,0.216676438730853,-4.64236424547454 +"Q9VXP4",0.100600313728979,17.9865149678024,2.12634408887553,0.0501126456884329,0.218816473843733,-4.65363016660549 +"Q9V436",0.0788722130841499,19.1033458462722,2.12124791613925,0.0505996784812818,0.220110764516039,-4.66237732904919 +"Q9VK18",0.15526091969874,14.5787447700412,2.12048480559583,0.0506729817590881,0.220110764516039,-4.66368617453868 +"Q24297",-0.132200939740283,17.00903053694,-2.11794784340832,0.0509173819581075,0.220597904171749,-4.66803561066113 +"P09208",0.543049695390726,12.8301734786898,2.11192291885434,0.0515021513653673,0.221320082579396,-4.67835364284112 +"Q8IP62",0.222391915014326,15.7938572295545,2.11165644689359,0.0515281568139392,0.221320082579396,-4.67880962463849 +"Q9W4C2",0.21690894420902,15.8657578933588,2.10896067021469,0.0517919221457981,0.221320082579396,-4.68342083498181 +"Q9W3M8",-0.101344048304188,18.6024120781617,-2.10805766739859,0.0518805526988724,0.221320082579396,-4.68496473583973 +"Q9VY42",-0.162024254045194,15.2387206589785,-2.10805543106094,0.0518807723704665,0.221320082579396,-4.68496855895264 +"Q9VPL3",0.22509723279167,15.8108230451852,2.10737143508727,0.0519480002610384,0.221320082579396,-4.68613777549257 +"Q9VEB3",0.304445469731151,12.3281923341598,2.10671217094884,0.0520128731241747,0.221320082579396,-4.68726452081057 +"Q5U1B0",0.240816221942385,14.7139905378266,2.10107418678344,0.0525707106600663,0.222202175454371,-4.69689254670178 +"Q7KTW5",-0.103781955424104,21.5780049411043,-2.09914786150966,0.0527625629789732,0.222202175454371,-4.70017892642716 +"A1Z992",0.213594730505958,14.2063575218507,2.09783935376127,0.0528932503526935,0.222202175454371,-4.70241034977293 +"P28668",0.16956458694167,15.5354845648377,2.09779797471883,0.0528973879348993,0.222202175454371,-4.70248090186293 +"Q9VP13",0.459928662607412,11.8053340771234,2.09539372183357,0.053138305494363,0.222202175454371,-4.70657889580905 +"Q7K0B6",0.127462173505098,20.189040444565,2.09486806241858,0.0531911131022471,0.222202175454371,-4.70747452812647 +"Q9V3U6",0.154374906038971,21.0897634108731,2.09433827191533,0.0532443844649294,0.222202175454371,-4.70837707477352 +"Q9VQI7",0.0872925885855658,19.1568733243017,2.09392579751976,0.0532858933943336,0.222202175454371,-4.70907967623466 +"Q94915",0.246688085716022,16.9808043200414,2.09246828880176,0.053432806313817,0.22225915444251,-4.71156176369851 +"Q8MSI2",0.179418372446435,23.9873843716294,2.08675910712232,0.0540118633117077,0.224108925382907,-4.72127517833747 +"Q9VHT5",0.12595358822365,15.6335189014043,2.08144850435261,0.0545556560388268,0.225803558989487,-4.73029736528291 +"Q9VLT3",-0.0850942268492432,19.4196832707607,-2.07597552913048,0.0551213229336567,0.227580115478563,-4.73958213679548 +"Q9VFP1",-0.261890666292834,15.7432454901806,-2.07401400364848,0.0553253638069141,0.22785853538255,-4.74290652735694 +"Q9VAY2",0.070682550602811,21.1246455608706,2.06952269170695,0.0557951648961497,0.22922742622359,-4.75051183547602 +"Q95SK3",0.103433912189134,17.2178239519157,2.06563773766458,0.0562044826071098,0.229805120318118,-4.75708298719553 +"Q9VVZ4",0.251018160779616,15.8105322536693,2.06474011017953,0.0562994463900416,0.229805120318118,-4.75860028968897 +"Q9Y125",0.138170969592977,22.6286302161622,2.064271346082,0.0563490972482674,0.229805120318118,-4.7593925179794 +"Q9VZE4",-0.122197291606387,17.672458061198,-2.06257826475202,0.056528759972243,0.229821756330926,-4.76225305174638 +"Q7K5J8",-0.115108630981158,18.2385081807922,-2.06163819730915,0.0566287421175125,0.229821756330926,-4.7638407709954 +"Q7JVH6",-0.0917336490784244,18.9829639038314,-2.05816583914415,0.0569994531511378,0.230764776349752,-4.76970187809901 +"Q86BN8",-0.208816795067028,14.203431753084,-2.05398065677119,0.0574492139908257,0.232022491372148,-4.77675883812668 +"Q9V4S8",0.201916468851312,17.0968661720783,2.04089259850827,0.0588767285964683,0.237213486229249,-4.79877551060933 +"Q9VNW6",-0.204731328166314,21.6437107360233,-2.03628717781129,0.0593866927780567,0.23869157482843,-4.80650383224195 +"Q9VHD3",-0.104131809353557,15.6948978699245,-2.02632995079201,0.0605030644019081,0.241195166128446,-4.823179102385 +"Q6NMY2",-0.198927916571645,20.1126578858508,-2.02623479561547,0.0605138245230667,0.241195166128446,-4.82333823346684 +"Q9V3Y0",0.139923854418335,16.3299508385752,2.02611841990497,0.0605269866260065,0.241195166128446,-4.82353284654486 +"Q9VSR8",0.19056454015397,15.4698579187757,2.02557930701586,0.060587994369196,0.241195166128446,-4.82443431253061 +"Q9W125",-0.146951889502876,21.3659325263436,-2.02328990163707,0.0608476952569527,0.241652275449041,-4.82826096783099 +"Q9VU92",-0.146460621456534,17.7310641888796,-2.01840277398846,0.0614054655892884,0.242866459330132,-4.83642134463972 +"Q9W1E8",0.142577132976351,15.4118294219667,2.01806112382294,0.0614446317969519,0.242866459330132,-4.83699139939883 +"Q9VWL4",0.114165449646682,16.1749416582541,2.0124650020965,0.0620894056417856,0.244834819410162,-4.84632083890201 +"Q9VVU5",-0.206356896650558,15.6115010515281,-2.00864480323209,0.0625330889493785,0.246002812187649,-4.85268104154284 +"C0HK95",-0.187488476445544,19.9077057153649,-2.00664614160549,0.0627663629753859,0.246339513983397,-4.85600581641059 +"Q8IPD8",0.12557661731249,18.31759193802,1.99776946290982,0.0638119890739541,0.249855393838863,-4.87074907296843 +"Q9VFT4",0.316230431495761,15.6671139859833,1.99318811519557,0.0643578127722165,0.251402416168752,-4.87834340725591 +"P35220",0.108155298888217,19.3364119181904,1.9906664087108,0.0646600543003739,0.251992921899588,-4.88251922638612 +"Q9VW73",-0.165737220376455,14.2220351405216,-1.98635715548087,0.0651795249453695,0.252977490816441,-4.88964800823592 +"Q9VAU6",-0.251599153541678,13.4014753203966,-1.98605558535715,0.06521601981479,0.252977490816441,-4.8901465574043 +"Q9W3R8",0.106563126415846,17.3265323674358,1.9742181168669,0.0666632565612369,0.257991443025854,-4.90968100755851 +"Q9V3P3",0.0818264982502832,19.3930534619775,1.97081847955108,0.067084234050008,0.259019681470864,-4.91527849707474 +"Q9W0A8",0.104113750154919,18.9039126059631,1.96776821307194,0.0674639946139272,0.259884394956191,-4.92029591522412 +"Q9VB46",-0.180971255137393,15.2571874458195,-1.96447639964959,0.0678760084478807,0.260869083159136,-4.92570551452538 +"Q9VF24",-0.141252747724895,16.1311661368688,-1.95788908559727,0.0687073347690228,0.263457090562598,-4.9365146898653 +"P48159",0.0866709109241626,19.8895885029575,1.95527682657359,0.0690395439658073,0.264123759942584,-4.94079520804695 +"Q9VJJ1",0.197033121269019,14.0704204072968,1.94705472353424,0.0700946617891764,0.267546672458458,-4.95424598318545 +"A8JTM7",-0.126825143184362,17.640158016,-1.93943744173993,0.0710851218383835,0.270707724261241,-4.96667712388001 +"E1JGR3",0.151683934828373,12.1748890635219,1.93578163742017,0.0715649436646808,0.271914182306805,-4.97263290663637 +"A1Z7X8",-0.100038358575986,17.0303232491974,-1.92861432645391,0.0725141221582665,0.274416749580902,-4.98428979365177 +"Q9VD64",0.221443130535315,15.6498375221605,1.92832533861436,0.0725526298352385,0.274416749580902,-4.98475925642268 +"Q9VMW7",0.0868794718754948,19.4030192778855,1.92480697891383,0.0730229296367114,0.275528059454389,-4.99047145303281 +"Q6NL44",-0.205784864451456,15.2814602183536,-1.92321601999825,0.0732364923250428,0.275528059454389,-4.99305236991839 +"Q7KUC2",0.126519934235898,19.3365425267574,1.92243155731574,0.0733420014374992,0.275528059454389,-4.99432448172266 +"Q95T12",-0.130294218601888,15.9373499995644,-1.92021444076675,0.0736409398139874,0.276029410358946,-4.99791813699573 +"Q9VJZ6",0.130612650851823,19.6998721459442,1.9176713891015,0.0739851729219611,0.276697911286617,-5.00203699813029 +"Q9U9Q2",0.0867921641722109,15.5759078657287,1.91337013340726,0.0745706923826297,0.278263791709679,-5.00899600242816 +"Q9VSL5",-0.118252306343411,17.5765734007593,-1.90991108198036,0.0750445800168976,0.279075740599247,-5.01458551353462 +"P36975",0.145845643543691,22.2356162910213,1.90934124454758,0.0751229061924832,0.279075740599247,-5.01550572822872 +"Q9W0M5",0.15666107197193,13.2751233851136,1.90614851767583,0.0755631165392595,0.280087285305522,-5.02065847887373 +"Q9VPB8",0.157832962001873,15.6197856618591,1.90126907989559,0.0762403610027504,0.281971002555627,-5.02852324514853 +"Q8IQG9",0.101864744599474,20.4555174490641,1.89805481178602,0.0766894555879753,0.283004451152086,-5.0336973234569 +"X2JAU8",-0.0868343531769469,21.7407018705736,-1.89559444117677,0.0770348167025917,0.283396931946814,-5.03765421109441 +"Q9V3W0",0.135124028516628,20.835338402946,1.89476834125852,0.0771510880687491,0.283396931946814,-5.03898207905843 +"Q7K2W6",0.136014333954048,16.8465569892415,1.89255339114365,0.0774636125646612,0.283396931946814,-5.04254062215354 +"Q3YMU0",0.0716790296660541,23.1502296729836,1.89236107947369,0.0774908007301695,0.283396931946814,-5.04284946978964 +"Q7K1H0",0.0863519055399369,16.3191300467885,1.89052126723425,0.077751337389054,0.283396931946814,-5.04580318583248 +"Q9V3V6",0.0758795806078965,21.5772227062807,1.89007096163719,0.0778152247192091,0.283396931946814,-5.04652585714712 +"Q9V4E0",-0.231033527341072,18.4524425057857,-1.88688922324767,0.0782679760199832,0.284424801745821,-5.05162903743717 +"P40417",-0.0942153482523729,19.8271230380465,-1.88075819290442,0.0791470539156437,0.286994099850639,-5.06144761525268 +"Q9VMR6",0.0915677325493256,18.7929663196911,1.87534616052366,0.0799303649494009,0.28920574563037,-5.07009831859305 +"Q9VP18",0.108795774859313,17.1233685215656,1.86799481472578,0.0810054533092718,0.292218041120081,-5.08182406778703 +"Q9VLU4",0.0957418999763693,17.1669361613482,1.86664337703806,0.0812044912692231,0.292218041120081,-5.08397655726473 +"Q9NJH0",-0.0832238597389647,21.1878417031123,-1.86601540399833,0.0812971267209496,0.292218041120081,-5.08497642499619 +"Q9VUX1",0.116848387372617,16.4208572694559,1.86488806624802,0.0814636625424688,0.292218041120081,-5.08677086214721 +"Q9VKI8",0.074108638333481,22.3555731383425,1.86331155867506,0.0816970622594799,0.292426394525349,-5.0892791297016 +"Q24583",0.0874521932582866,21.2364726128207,1.85129877178926,0.083495205927805,0.298222705540854,-5.10834820223006 +"Q9VCJ8",0.0753196136844387,17.9012610217986,1.85001174631152,0.0836899307006465,0.29827949659974,-5.11038663481013 +"Q8MLP9",0.230359026724436,14.9315103406374,1.84756242229714,0.0840616262423281,0.298614982479056,-5.11426349061252 +"Q9VSA9",0.108847533199729,22.3317226522773,1.84610429843137,0.0842835997911032,0.298614982479056,-5.11656991300518 +"Q7K1U0",0.123350056106236,16.6799340674343,1.84535355284176,0.0843980907618126,0.298614982479056,-5.11775697551392 +"O97454",0.267873646091696,14.050193638226,1.84468500405217,0.0845001629077425,0.298614982479056,-5.11881381410225 +"P13677",-0.191706584037961,17.018702021655,-1.84349655464612,0.0846818831275142,0.298624484263623,-5.12069191287023 +"Q8MLW4",0.0943082789405807,18.635221853657,1.83823744139892,0.0854902074136434,0.300838957734087,-5.12899368018064 +"Q9VAG9",0.0865026599140251,17.4339235197905,1.83537787978073,0.0859325929562708,0.30175908431802,-5.1335013423202 +"Q7K485",-0.103743570529979,20.5588328085492,-1.83082998196071,0.0866403600651248,0.303156921100111,-5.14066124527116 +"Q9VS11",0.137956530020622,14.9112054089916,1.83048565914186,0.0866941554944561,0.303156921100111,-5.14120286480478 +"Q8SZK5",0.363926465544855,15.3616448454738,1.82852835822029,0.0870005189067365,0.303591768904679,-5.14428046802263 +"Q9W1B9",-0.188228712319233,20.5911036472902,-1.82327489553982,0.0878275631707929,0.30449464870309,-5.1525305018508 +"Q8IPW2",0.0876817801281256,17.1944303993259,1.82264190395094,0.0879276832015481,0.30449464870309,-5.1535235305753 +"Q9VN01",-0.102739738064002,16.0631558684004,-1.82256137533806,0.0879404276334875,0.30449464870309,-5.15364984702069 +"Q9VX98",-0.121871823664602,18.231379640557,-1.82225164426429,0.0879894608362645,0.30449464870309,-5.15413565517925 +"O77477",-0.113510157874696,16.8476862213939,-1.82065086069466,0.0882432657385702,0.304740718948106,-5.15664561856521 +"Q9VND7",0.145330362892013,13.9538334154751,1.81728329972696,0.08877931313782,0.305958459326206,-5.16192121768346 +"Q7K519",-0.14665290338435,15.6539194463518,-1.81412753885521,0.0892842624855502,0.306655771883365,-5.16685934237414 +"Q9VVE2",0.119235482854325,18.3704778145856,1.81372195461004,0.089349343606304,0.306655771883365,-5.16749360085132 +"Q9VMF0",-0.178897265742506,13.8206371887472,-1.79862882300057,0.0918012707266856,0.314295394024743,-5.19103163936821 +"P13060",-0.0846246928863614,20.2203302059095,-1.79771187685038,0.0919521296667115,0.314295394024743,-5.19245755158035 +"Q9VCW6",-0.100979543568926,19.8068438440522,-1.79630873035181,0.0921834037680828,0.314441549049411,-5.19463862840871 +"Q7JUN9",0.42297305954323,13.4694893298639,1.79325766725374,0.0926880698025414,0.315517755980896,-5.19937745674197 +"P25171",0.150218597879913,16.7632053532891,1.78921950878605,0.0933597567263546,0.316986049338928,-5.20564139318058 +"Q9VDH3",-0.0791908628899485,20.5735024878118,-1.78838270610467,0.0934994821791082,0.316986049338928,-5.20693828491814 +"A1Z6G9",0.181781121795535,14.2527048756066,1.78327507541302,0.0943563355813971,0.318580044268499,-5.21484563891733 +"Q9VIE8",0.0830342353367826,24.8826894305362,1.78281909980429,0.0944331652860315,0.318580044268499,-5.21555084048535 +"Q9W3N7",0.234203352592225,17.2512404308591,1.78216994991953,0.094542639036515,0.318580044268499,-5.21655459856908 +"A1ZBU5",0.1286361568926,16.6730923471737,1.77748132443237,0.0953366624674948,0.320607969749559,-5.22379738626879 +"Q9VHM3",-0.169750132430375,14.7258488950276,-1.77361086946027,0.0959965461749218,0.322177543299335,-5.2297669178623 +"Q6WV19",0.284827393721693,13.5271211872505,1.76888942500672,0.0968069563816906,0.323750946370326,-5.23703743564698 +"Q9VCI0",0.295623802032448,14.81265650192,1.76775741274798,0.0970021520037508,0.323750946370326,-5.23877872658614 +"Q08012",-0.122083700631165,19.1817578223272,-1.76749386507713,0.0970476457944624,0.323750946370326,-5.23918401766558 +"A0A126GUP6",0.176128556635913,17.0003377764123,1.76355786346732,0.0977293162568434,0.324892087772794,-5.24523219421483 +"Q9VRP3",-0.133464988708834,18.0137338921209,-1.76327035786301,0.0977792734184309,0.324892087772794,-5.24567363686153 +"Q9W3C3",-0.127596001756512,16.4289933610195,-1.76043868445944,0.0982725065755285,0.325478181785913,-5.25001892472056 +"Q868Z9",0.128397846337123,20.3819580333302,1.75992802656111,0.0983616873525879,0.325478181785913,-5.25080205569795 +"Q9VV39",-0.0832991209266822,17.5252227826175,-1.7589021725501,0.0985410562361427,0.325478181785913,-5.25237482537751 +"Q9W158",0.117103161214123,16.9865816324652,1.75656785115018,0.0989502789153014,0.325806683104066,-5.2559513973318 +"Q9VR30",-0.132788588325655,17.3175288672014,-1.75610743982857,0.0990311680658043,0.325806683104066,-5.25665645511323 +"Q9VSN3",0.116483277326733,20.8754816954261,1.75332095485838,0.0995219617645823,0.326776835085282,-5.26092097858985 +"M9PGG8",0.263096183148196,18.5302472083415,1.7513601531734,0.0998686025085305,0.327270783858996,-5.26391917029018 +"Q7KN75",-0.114826921999061,19.3826043172769,-1.74682387461991,0.10067460946493,0.328955786844284,-5.27084692706486 +"Q9VPL0",-0.121374074593703,15.1423461703483,-1.74499535237441,0.101001110129821,0.328955786844284,-5.27363606233494 +"P04388",0.160228010390759,16.5371310200606,1.74446416219099,0.101096133069392,0.328955786844284,-5.27444595000593 +"Q9VZ58",0.09849133319846,18.1196879992951,1.74365989702458,0.101240154554556,0.328955786844284,-5.27567187462582 +"Q8MLS2",-0.0744452246575644,17.4140712079737,-1.74294195585537,0.101368869567123,0.328955786844284,-5.27676590056033 +"Q9Y105",-0.358526841934783,17.1291161396942,-1.73694472894984,0.102449681910025,0.33181761053577,-5.28589300715923 +"Q9VW68",-0.0914594357251595,22.9547229972386,-1.7335849637436,0.103059569550491,0.333146050407402,-5.29099704291951 +"Q86BM0",0.102852125131811,17.4536554402525,1.73178348484855,0.103387891891571,0.333560935541858,-5.29373107253918 +"P23625",-0.0753512606667321,22.2106880513379,-1.72657307957452,0.10434264681045,0.335991380076892,-5.30162800260329 +"Q9W086",0.101358425790057,16.8755113177334,1.72111117452015,0.105351743484172,0.338109573769663,-5.30988901127872 +"A1ZBD8",0.215987151035424,14.1506677063594,1.72081953909003,0.105405862326274,0.338109573769663,-5.31032960997636 +"Q9VS84",0.0915069296780331,17.5099074434401,1.71824075095038,0.105885464807582,0.338552767896585,-5.31422342633259 +"Q7KMS3",0.151729194559305,15.5394291596839,1.71789470518552,0.105949966931665,0.338552767896585,-5.31474563645826 +"P81900",-0.0851000863588958,22.4225989039302,-1.7154680046207,0.106403261553132,0.339351128624521,-5.3184057316156 +"Q9VCX3",0.222136487581562,12.9894979633501,1.7109086960405,0.107259488540305,0.341412254598089,-5.32527293832724 +"P19334",0.255856103800024,15.1882842984039,1.70985144341713,0.107458893083931,0.341412254598089,-5.32686360817394 +"Q9VBI3",0.109275869823076,18.6099066652584,1.70847416254006,0.107719141098371,0.341588455041984,-5.32893477608553 +"Q9VLP0",0.110040909181418,16.1190876670951,1.69882858055325,0.109557170274639,0.34619043550851,-5.34340827295028 +"P38040",0.163781867170549,19.0316468906913,1.69868121678987,0.109585461599816,0.34619043550851,-5.34362896663291 +"Q7K0S6",0.142675531625832,17.3576030452575,1.69674578034024,0.109957622045175,0.346709477450572,-5.34652629379433 +"P45888",-0.0985802379307472,17.2015325842405,-1.69305248559952,0.1106708445554,0.348299940978128,-5.35204889379486 +"Q9VJC0",-0.0763636089846891,16.5593645732023,-1.69107922410099,0.111053550539,0.348846181354146,-5.35499616834053 +"Q8SXS0",0.190983757021687,14.5315051557729,1.68991312072478,0.111280251093579,0.348901238391147,-5.35673676781993 +"A8DYP0",0.202922918967841,15.2555472982388,1.68729046383515,0.1117915859403,0.349524454601218,-5.36064852383579 +"Q7K1C5",0.0894635490129581,17.4992795979154,1.686745373256,0.111898116760821,0.349524454601218,-5.36146102000676 +"Q9VFP6",-0.0738672613378242,20.2216116606734,-1.68289029467988,0.112654057545536,0.35059460856427,-5.36720217593882 +"Q8IN43",0.298365035735625,17.8871994134707,1.68285449982397,0.11266109723648,0.35059460856427,-5.36725544123038 +"Q9VBV5",0.0980799483779045,17.1683086893173,1.68064549850636,0.113096274775022,0.351293456843086,-5.37054109444667 +"Q9VB05",-0.0598609677808,20.1980610092194,-1.67654780821819,0.113907384865346,0.352852856335465,-5.37662815349807 +"Q9VPE2",-0.0973714614608774,20.8567421228232,-1.67597385304264,0.114021396621592,0.352852856335465,-5.37747994325632 +"O96824",0.111783859968238,16.7140316095259,1.66952130003664,0.115309958151147,0.355784705339801,-5.38704221661763 +"Q8SYJ2",0.0774436301712029,22.5464031630968,1.66909565802359,0.115395399034072,0.355784705339801,-5.38767210054062 +"Q9VQ88",0.119912348381218,16.4219806876897,1.66539337129509,0.116140885595003,0.357350560811398,-5.39314624946656 +"Q9VGQ8",0.110766497970872,16.254275811628,1.66444880330877,0.116331747314502,0.357350560811398,-5.39454153477707 +"P53034",0.135087190456535,15.7345446543062,1.66319952603074,0.116584595470107,0.357468943463489,-5.39638608928375 +"Q95RG8",0.30548703078075,13.3033636444759,1.65495629519003,0.118264914249739,0.361955737557,-5.40853323156545 +"P05205",0.0996868477058008,18.0948586690439,1.65111212733525,0.119055633819271,0.363708419799533,-5.41418368648572 +"Q9VSU7",0.103078397074921,14.7304313031371,1.6493208723773,0.119425636509372,0.36414454957674,-5.41681350159469 +"A8JNG6",0.304098349873597,15.6905811617454,1.64719155644747,0.119866757621457,0.36414454957674,-5.41993706182146 +"Q9V4N3",-0.149324266844406,19.7364903514192,-1.64639630047019,0.120031866875586,0.36414454957674,-5.42110292929639 +"Q9VXQ0",0.115197966689337,15.039792581842,1.64533251101643,0.120253034594345,0.36414454957674,-5.42266186294429 +"Q9VFR0",0.251752099325419,15.3456380892044,1.6451550871007,0.12028995612517,0.36414454957674,-5.42292180127447 +"Q95RS6",-0.131648194377174,17.1678953351122,-1.64332050206031,0.120672301737693,0.364640216120419,-5.42560845306011 +"Q8T3X9",-0.113028786576063,18.2902065098095,-1.6399174778335,0.121384295074478,0.365466299222808,-5.4305864774835 +"Q9VBS7",0.0617435817168435,19.825321129059,1.63955186244408,0.121461005005674,0.365466299222808,-5.43112088088257 +"Q9W1F2",-0.225596837440062,13.6532569826164,-1.63887563123797,0.121602995244999,0.365466299222808,-5.43210907853537 +"Q7K1M4",-0.122776025559014,17.1820306989261,-1.63720786559996,0.121953791039913,0.36586137311974,-5.43454502164199 +"P45594",0.0865030130244904,23.0375658427051,1.63489620688962,0.122441460723361,0.366441599072035,-5.43791857579451 +"Q8T9B6",0.106219992206494,19.5012820686822,1.63420984689222,0.122586578106832,0.366441599072035,-5.43891958505707 +"Q9V3Y7",0.169679473969197,19.5256177056986,1.63133242692953,0.123196561376696,0.367606197453183,-5.44311290956076 +"Q9VZU7",-0.0677051255833732,17.579644743353,-1.62872829864077,0.123750854487081,0.367990128777746,-5.4469035051258 +"Q9VEC8",0.0962355975697644,16.5005006984112,1.62865510771599,0.123766464175249,0.367990128777746,-5.44700998134735 +"Q9VIQ5",0.138569950231664,16.5320015544285,1.62535958503658,0.124471064887766,0.368135342498972,-5.45180074719337 +"P49963",0.130030648423082,14.9163248915629,1.62533546276711,0.124476235019238,0.368135342498972,-5.45183578913703 +"Q7JQW6",-0.093442390378204,15.8684640512846,-1.62480635498151,0.124589685145979,0.368135342498972,-5.45260432182716 +"Q9W5P1",-0.158395663633113,14.2808065244119,-1.62426650268189,0.124705530470504,0.368135342498972,-5.45338828012846 +"A8DZ14",0.0757081493782117,19.4650311530695,1.62268944410413,0.125044476001647,0.368135342498972,-5.45567739323043 +"P20432",0.0857361246911275,23.5621280333249,1.62224782249505,0.125139531892636,0.368135342498972,-5.45631813079866 +"Q9VJI5",0.116134021257771,17.5498214378569,1.6209647652516,0.125416052232015,0.368299251977116,-5.45817899114172 +"P02299",0.0796797081817964,22.0304863036934,1.61525996396742,0.126651880113525,0.371274755763375,-5.46644031677593 +"Q9VHL2",0.0549668020456906,20.6539980627482,1.60973671512607,0.127858295745582,0.374153749655492,-5.47441917641275 +"Q9VW66",0.0686625363174613,21.3461254613284,1.60691292659111,0.128478869272626,0.374656107392627,-5.47849095462903 +"Q9W0C3",0.168578865314334,18.5057816508129,1.60683206498141,0.128496677779403,0.374656107392627,-5.47860747909013 +"Q24478",0.179613435028322,17.3793665516136,1.60589227477965,0.128703806676244,0.374656107392627,-5.47996144615694 +"Q9VQ35",-0.267199621362387,12.2547385004381,-1.60477331378174,0.128950796652919,0.374721130343326,-5.48157281607139 +"Q9W3B3",0.112750194383848,15.6684990905946,1.60254388764841,0.129444108523973,0.374944068747356,-5.48478095149419 +"Q8MZI3",-0.164367416498944,17.8046642082326,-1.60239510009429,0.129477088488296,0.374944068747356,-5.4849949437825 +"Q9W2M0",0.0802878167284931,17.7615616961272,1.59778517191461,0.130502476641461,0.37725845933788,-5.49161814974943 +"P20348",0.134300400418937,17.4121223699511,1.59530528909565,0.13105693838922,0.37758248011124,-5.49517546090282 +"Q7K1W5",0.0665058713849085,19.7894286240062,1.59525903215412,0.131067299750844,0.37758248011124,-5.49524177769119 +"Q8IMT6",-0.160947176472311,16.1119769029607,-1.58973139869161,0.132310504844732,0.380506762208642,-5.50315668386001 +"Q9VL01",0.106355691866977,20.4681607333714,1.58854306968102,0.132579076731913,0.380622891547041,-5.50485567353028 +"Q9VL16",0.0755518395871597,20.740929896374,1.58409929452162,0.133587522858082,0.38125676424741,-5.51120104285651 +"Q0E8V7",0.159223677285272,19.7027123560482,1.58399680723295,0.133610857561948,0.38125676424741,-5.51134723716818 +"Q9VLW8",0.201118474333478,14.1542319372449,1.58371448032181,0.133675156785168,0.38125676424741,-5.51174993109247 +"Q0KI81",-0.101636145702134,15.625269608381,-1.58323597911414,0.133784194315431,0.38125676424741,-5.51243231902252 +"P11046",-0.104113654411748,21.0207360267321,-1.58142904360532,0.134196628754694,0.38125676424741,-5.5150078510813 +"Q9VK69",0.0790740993010317,20.2715227141799,1.58093342519248,0.134309942829349,0.38125676424741,-5.51571391793846 +"Q9VPX0",-0.165622672861623,14.3887328711407,-1.58041209982421,0.134429222114161,0.38125676424741,-5.51645643661175 +"Q7KY04",-0.158072211137535,14.0766648791185,-1.57879389524276,0.134800041230986,0.38125676424741,-5.51876011389511 +"Q7K2L7",0.227156666459553,18.2740848877044,1.57854563124967,0.134857008936434,0.38125676424741,-5.51911339329141 +"Q9VM33",-0.364200389008365,13.8090128542247,-1.57695026905954,0.135223575879325,0.381646234461445,-5.52138264290828 +"Q9VRJ6",0.108047238484989,15.7394790782555,1.57580129331064,0.135488100546216,0.381746877890353,-5.52301593257223 +"Q9V564",0.133231553404277,14.0614762901233,1.57368087601952,0.13597743091002,0.381823606807771,-5.52602790329661 +"P42325",-0.0797180957409296,20.0885314661117,-1.57133362328591,0.136520857310929,0.381823606807771,-5.52935869184036 +"Q7K9H6",0.263699528943135,11.8963154596032,1.57115637205688,0.136561968539901,0.381823606807771,-5.52961006919843 +"Q9U915",0.0735434913254487,21.1145993452909,1.57069410378568,0.136669235374877,0.381823606807771,-5.53026556138268 +"Q24276",0.0948536926084635,18.6548975736994,1.57032561551492,0.136754792273385,0.381823606807771,-5.53078797515753 +"Q9VDE2",-0.0993927356567319,19.5444834559891,-1.56974884939336,0.136888799083362,0.381823606807771,-5.53160549217043 +"Q9VG51",0.227203189692894,19.1568456996641,1.5673088833805,0.1374569379625,0.382768234593405,-5.5350615486508 +"A1ZAL1",-0.124320601290609,17.2474604287819,-1.56557571752595,0.137861714024234,0.38325556498737,-5.53751411877389 +"Q9W1F8",-0.0803443770588181,17.6385092340496,-1.56438135695982,0.138141241284799,0.38339366133618,-5.53920309896551 +"Q9VXC9",-0.158611764869992,19.0325347770872,-1.5612131378983,0.138885056578467,0.384817731516417,-5.54367887091847 +"Q9VW54",-0.0838080214531072,15.8773081089544,-1.55978554838297,0.139221324384384,0.384883477899622,-5.54569350140802 +"Q94524",-0.145428494603301,15.7012025639557,-1.558323565569,0.139566407679071,0.384883477899622,-5.54775528963752 +"Q9W260",-0.0973775608509548,17.4049783784632,-1.55817708859007,0.139601021660234,0.384883477899622,-5.54796178457365 +"Q9VXY3",0.0709645792048477,18.0974322757029,1.55553734855891,0.140226065035642,0.3859687730684,-5.55168073686928 +"Q9VH64",0.117991365012877,17.5281211343162,1.55084587198852,0.141342765213443,0.388401536039578,-5.55827898639682 +"Q9VNE2",0.0873051239559466,19.0371859080969,1.54639926139125,0.142408108611882,0.390585910692801,-5.56451951821921 +"Q9W4Z2",0.208534336613239,13.8139526377927,1.54557635409265,0.14260600696158,0.390585910692801,-5.56567299025665 +"Q9VC66",0.0739940135347723,17.7169785656308,1.54172961560696,0.143534178156042,0.39110294529693,-5.57105906162907 +"P05812",-0.0876079349449803,15.8004272103377,-1.54113495983977,0.14367811516434,0.39110294529693,-5.57189080758676 +"Q9VTW6",0.328093891084368,16.2685134461319,1.54088475203912,0.143738714582645,0.39110294529693,-5.5722407038788 +"Q9W330",-0.0820172788217839,20.670591381323,-1.54003556918843,0.143944544313875,0.39110294529693,-5.57342791237681 +"Q9VPX5",-0.0719346301585055,18.8077847351084,-1.53994236282726,0.143967151326328,0.39110294529693,-5.57355819145343 +"Q9W445",0.0689803767640491,16.4524107090952,1.53455125747582,0.145279855505648,0.394027315420197,-5.58108382832745 +"Q9VL69",-0.152644235336767,16.0415248361956,-1.5319486335707,0.14591717955421,0.395113401779905,-5.5847100355413 +"Q9VI09",0.0961423777252186,20.1381371136,1.53011696199302,0.146367124332844,0.395689405813913,-5.58725938878275 +"Q9VLB1",-0.136869710802044,16.769209359997,-1.52681107261678,0.147182161157267,0.397248939822528,-5.59185494141549 +"Q9W314",0.152654286367865,16.2040939137133,1.52019099335335,0.148825754689558,0.4010361208759,-5.6010357009307 +"Q9VVU2",0.0728864270901965,20.0901536210952,1.51705169532285,0.14961053186898,0.40250059218945,-5.60537906542576 +"Q9VRD9",0.148979552670902,16.1292785817707,1.51263896891985,0.150719514648723,0.404831160119274,-5.61147311879602 +"A1Z7K6",0.109991416273205,15.5798422287814,1.50940130946242,0.151537561538903,0.405762956522366,-5.61593607266906 +"Q9VIQ8",-0.0890912186655974,21.3193103421005,-1.50934054248386,0.151552950787431,0.405762956522366,-5.61601976959514 +"Q9W3J5",-0.0811463035470723,16.1340150729091,-1.50678200305495,0.152202090130357,0.406847894771532,-5.61954149934362 +"Q7K0D8",0.0705908181265613,17.303962028664,1.49717328643893,0.154660778808527,0.412758686484196,-5.63272809559648 +"Q9W5B4",0.149145897368978,18.6238852344049,1.49413717576387,0.155444528442114,0.413467457678792,-5.63688174003308 +"Q9VGA3",0.077515428434431,19.4403160382186,1.49363895968469,0.155573455429707,0.413467457678792,-5.63756274272365 +"Q9VZI3",-0.109156273414202,14.3865544601752,-1.49326609755894,0.155670002051728,0.413467457678792,-5.63807229110474 +"P54352",-0.124221443491292,16.1096878591445,-1.49066685721106,0.156344423479877,0.414598566557131,-5.64162175471268 +"P54397",0.111875817120197,14.7812654132882,1.48904384467128,0.156766779206067,0.415058710659874,-5.6438357745956 +"Q0E9B7",0.264744500132378,12.7939487488336,1.48762956975186,0.157135590568953,0.41537585589384,-5.64576358507213 +"Q9VEH2",-0.0810256614026716,15.912390193916,-1.48662564579132,0.157397830255839,0.415410729219525,-5.64713121588625 +"Q9VLM8",0.0944359206616703,16.8423685038192,1.48390084773793,0.158111426313805,0.416634848485665,-5.65083970492902 +"P52029",-0.143431014217423,18.3743594242194,-1.48226677772181,0.158540663233361,0.416698288330528,-5.65306126716692 +"Q95RN0",-0.0680619524891473,16.9202285683096,-1.48149860821789,0.158742780717722,0.416698288330528,-5.65410498403962 +"Q7K0E6",-0.0911787207415564,16.738295713821,-1.48095873236277,0.158884958859842,0.416698288330528,-5.65483827552073 +"Q9VPZ5",0.0947464469393715,18.3574424505945,1.47957729541979,0.159249247601647,0.416998029826605,-5.65671371778073 +"Q9VF70",0.0796769507350135,15.9176633741578,1.47817943724661,0.15961857379606,0.41731000171133,-5.65861012431042 +"P20240",0.116883388062,17.3589207454869,1.47140258063142,0.161419189064009,0.420145648177365,-5.66778496881336 +"Q9VMV5",0.0751836493540061,17.6142726181127,1.47087379388101,0.161560394914698,0.420145648177365,-5.66849954017943 +"Q01637",-0.0777034840466442,15.9823042884879,-1.47064601123036,0.16162125300798,0.420145648177365,-5.66880729302536 +"Q9VTU2",-0.0581291400200143,20.8195611019302,-1.46981869790211,0.161842451542801,0.420145648177365,-5.66992476025052 +"Q7JQR3",0.082249583652569,19.0812435562556,1.46936964095611,0.161962620970051,0.420145648177365,-5.67053111248326 +"Q9VZ64",0.0732088947871254,19.4075982628994,1.46414437227943,0.163366375648791,0.423129059910224,-5.6775764706647 +"A1Z8H6",0.163384047928231,16.7762503279013,1.4626293614103,0.163775260878611,0.423530442086082,-5.67961567476377 +"Q0E8U4",0.166124397457407,16.215260433161,1.46097778672399,0.164221969154928,0.424028242338111,-5.68183688690283 +"Q9NHA8",-0.154022144621027,16.2996640799772,-1.45861205927668,0.164863595373968,0.425027012494249,-5.68501528029934 +"O77263",0.0846181507445305,15.5215358325483,1.45175000510839,0.166736452774499,0.429191980289914,-5.69421261759572 +"O46067",0.0581682620635533,19.7319082821648,1.4476410492448,0.16786630428117,0.430959633306689,-5.69970426484818 +"Q9VZF9",0.0903702259514461,19.0984830401382,1.44737417711774,0.167939905065556,0.430959633306689,-5.70006053466903 +"A0A0B4KH34",0.073882891987175,23.3811049928496,1.44558054780546,0.168435262581774,0.431566847905376,-5.7024537115481 +"C0HK94",0.0860667974055893,18.4738144502059,1.44181145658243,0.16948012570182,0.433577990292386,-5.70747536204148 +"Q03427",0.0548666027263458,21.7316834795181,1.4403347055552,0.169890963921595,0.433963442298959,-5.70944016601896 +"Q9VQM2",-0.0716742440865019,20.1208291690672,-1.43793176642879,0.170561226149731,0.435009365776378,-5.71263399289323 +"Q9W4I3",0.0833818679199005,16.583541444998,1.43190064987196,0.172253111490101,0.437706272954509,-5.72063232043153 +"Q9VVL8",0.110764776302565,15.8589451776595,1.43103118043206,0.172498155516019,0.437706272954509,-5.72178328382446 +"Q9VF82",0.10159159328667,14.891650988725,1.42995430157474,0.172802051509912,0.437706272954509,-5.72320806908731 +"Q9VQ93",0.126570943102328,16.6990907946525,1.42978269343569,0.172850520099015,0.437706272954509,-5.72343504315564 +"P09040",-0.171039874066523,16.5098125004007,-1.42949883916358,0.17293071575361,0.437706272954509,-5.72381043182619 +"Q9VZD9",-0.155393979558262,14.507683285705,-1.42798350513443,0.173359351779154,0.438126361769135,-5.72581345533635 +"P14484",0.0940110374341288,19.260130280931,1.42656552075951,0.173761241483284,0.438477686526653,-5.72768633336557 +"Q86BS3",0.0767159640549409,18.952237040822,1.42518275553608,0.174153886196189,0.438804655853842,-5.72951132853257 +"Q7K012",-0.11248898152431,15.5736184512321,-1.42384976906892,0.174533085533299,0.439096812472914,-5.73126934773529 +"A0A0B4KHJ9",0.104447151946534,24.5681444522225,1.42208606647449,0.175035853868513,0.439136965040699,-5.73359349163437 +"Q95RI2",0.122481380764031,16.7231717687244,1.42194685518657,0.175075588580375,0.439136965040699,-5.73377684567263 +"Q9W1F7",-0.0683885514612967,20.3293184925302,-1.42001017676069,0.175629137835577,0.439863966831445,-5.73632620741399 +"Q8SYQ4",0.129683696438303,20.9657832459979,1.41772736194549,0.176283463916305,0.439939957462464,-5.73932780015181 +"Q9W370",0.156755980657643,18.3654871504733,1.41661913309333,0.176601836900517,0.439939957462464,-5.74078364014035 +"Q9VHJ7",-0.190762540046077,14.7629691006587,-1.41620286979915,0.176721543090165,0.439939957462464,-5.74133024518665 +"Q960X8",0.0831460283468033,18.4074759733976,1.41557046656892,0.176903532594502,0.439939957462464,-5.74216043347755 +"P82890",0.0905344298350634,19.6171589226471,1.4153110020414,0.176978244278965,0.439939957462464,-5.74250096385388 +"Q9I7J0",0.112262164129568,20.9819790374093,1.41213613094374,0.177894529757504,0.441559636362376,-5.74666390641374 +"Q9VKG4",-0.088105488496435,15.899107926057,-1.40886831637376,0.178841691801798,0.442685020851383,-5.75094123629433 +"Q9W0M4",0.108108655087307,17.8313290861631,1.40792563583341,0.179115689209167,0.442685020851383,-5.75217372366092 +"Q9V9S8",0.0846816727892659,19.9309079815042,1.40770927614144,0.179178624250478,0.442685020851383,-5.75245650917243 +"Q9VE12",0.0909681901799324,15.6585593211567,1.40691603955172,0.179409516843846,0.442685020851383,-5.7534929965289 +"Q9VE75",-0.137327251462604,15.4468058009616,-1.39954680973301,0.181566172401194,0.44734472018492,-5.76310058280436 +"Q9VL66",-0.0862226156404446,15.7470883406072,-1.39636752587243,0.182503123367362,0.448989984921475,-5.7672335630804 +"Q7K180",0.102221080697005,16.2955493980888,1.38626399260619,0.18550688144449,0.45570762628779,-5.78031971132463 +"Q9VAC1",0.0533814579224803,23.3693261272332,1.37640721032392,0.188475909415021,0.462320318976847,-5.79301536364603 +"O16158",-0.0745588417948433,21.3026178269026,-1.37308664716135,0.189484759618145,0.463522235846643,-5.79727645353021 +"P42207",-0.0924633721892167,16.003793417872,-1.3729653931943,0.189521681563196,0.463522235846643,-5.79743190046452 +"Q9VZF6",0.076419724090913,15.1172064773223,1.36962488148736,0.190541165424692,0.465333329324139,-5.8017102186308 +"Q961Q8",-0.162375808448596,15.4986685391188,-1.36790979669272,0.191066311546386,0.465886866598846,-5.80390363981982 +"Q9VYG8",0.351664810964108,15.1481553078573,1.3664414279667,0.191516845377669,0.465886866598846,-5.80577983470366 +"A1Z9I0",0.0639527396544075,19.4006376320396,1.36517452054207,0.191906256046273,0.465886866598846,-5.8073973520551 +"Q9XTL2",0.0908860477253661,16.9114159726222,1.36453659020619,0.192102579664424,0.465886866598846,-5.80821138337919 +"Q9VWP2",0.0785631991112794,19.6330517387412,1.36386409055666,0.192309717850483,0.465886866598846,-5.80906920557432 +"Q9VSD6",-0.101724793995066,16.4793729940385,-1.36342949165435,0.192443675711394,0.465886866598846,-5.80962339258574 +"Q9W337",-0.103835517412419,17.7708074192759,-1.36003214847573,0.193493451427881,0.467749386930008,-5.81395082709228 +"Q9VGA0",0.096482841552568,19.2934822168667,1.35451593177167,0.195207804008675,0.470801985602052,-5.82095924248458 +"Q95TN1",-0.138058220760319,14.0566093149745,-1.35415395457821,0.1953207278397,0.470801985602052,-5.8214183593607 +"M9PEG1",-0.106018307362348,20.3109534931276,-1.34815987052359,0.197198334174997,0.474641877927697,-5.8290070258112 +"Q7KJ08",-0.108963545327946,14.5672391137075,-1.34709014055158,0.197534943408249,0.474766982139711,-5.83035855516416 +"Q9VXB0",0.0652120681772672,20.2666335085361,1.34516562044793,0.198141691593368,0.475540059824082,-5.83278793154792 +"Q9VB79",0.0819282485275359,17.640183735074,1.34365088761955,0.198620298814177,0.475735195628178,-5.83469810301299 +"Q9VAG3",-0.116215819372446,16.8183805172991,-1.34310369043618,0.198793424072446,0.475735195628178,-5.83538773652795 +"P92177",0.0799742803239809,24.1306861913894,1.34132343054348,0.199357512074739,0.475880621607892,-5.83762987278734 +"Q9VN50",0.0883850871057774,17.8567659741871,1.33970385763925,0.199871801988007,0.475880621607892,-5.83966760064845 +"Q9VLV5",0.0674462034582781,17.4819632277792,1.33927424641789,0.20000840228338,0.475880621607892,-5.84020780737166 +"Q9VGR2",0.0851717542138957,15.6570768685178,1.33868771887006,0.200195017152502,0.475880621607892,-5.84094510542468 +"Q9VK39",0.0825332502891634,18.131973099229,1.33830347693037,0.200317346803555,0.475880621607892,-5.84142798125358 +"Q9W1R0",-0.263368152270994,14.1144811437098,-1.33752304911668,0.200565993399489,0.475880621607892,-5.84240840678881 +"P04359",0.10602660084794,18.8216610397909,1.3309463319454,0.202671206950783,0.478490184919791,-5.85065260592117 +"Q9W385",0.108104874072099,16.8461705350534,1.33038498971128,0.202851710477345,0.478490184919791,-5.85135478730303 +"Q9VB68",0.115145963538538,15.455298963151,1.32912227094937,0.203258217254976,0.478490184919791,-5.85293346349293 +"Q9VGQ1",-0.0787543556199779,22.4334621165868,-1.3291108356304,0.203261901603686,0.478490184919791,-5.85294775474607 +"Q9VII1",0.167497290128107,19.3167901809795,1.32876365265442,0.203373786051437,0.478490184919791,-5.85338159930503 +"Q7K127",0.146079376867092,18.5609370019037,1.32826833824024,0.203533493240548,0.478490184919791,-5.85400039588574 +"Q9VU45",0.136986390426564,17.8858106426453,1.32609197442944,0.204236421503513,0.478490184919791,-5.85671716711929 +"Q9VUW2",-0.26993007848343,14.4107453290171,-1.32577094492075,0.204340272769233,0.478490184919791,-5.85711761249117 +"Q02910",0.217440242276851,16.2920398066608,1.32542819613004,0.204451196735008,0.478490184919791,-5.8575450653807 +"Q0KHZ6",0.0851679015030626,23.0740829402211,1.32471563077072,0.204681958806615,0.478490184919791,-5.85843344837936 +"Q0E8X8",-0.158353406615696,19.8019937928549,-1.3242855554545,0.204821338149119,0.478490184919791,-5.85896945709477 +"Q9VFM9",-0.0710533690661705,17.131380677997,-1.32042612635726,0.206075505952452,0.480701741869472,-5.86377334790085 +"Q9W022",-0.0706214085324604,21.1915532082581,-1.3196011301398,0.206344392792891,0.480701741869472,-5.86479879222293 +"Q95029",0.073113293469774,21.8280362916362,1.31635109560521,0.207406387300829,0.482501888448791,-5.86883353725664 +"Q9VVU1",-0.101989462375499,22.2689631442581,-1.31116302238425,0.209110696154883,0.484263419220631,-5.87525788099445 +"Q8IRD0",-0.0783459062883161,17.5300171840598,-1.31067417213766,0.209271859718058,0.484263419220631,-5.87586218027284 +"Q9VWP4",-0.104120008332478,15.1885886551156,-1.30998832526756,0.209498135681924,0.484263419220631,-5.87670969765473 +"P02283",0.0926613615259235,21.5707862207558,1.30997310330477,0.209503159952004,0.484263419220631,-5.8767285037957 +"Q9V6Y3",0.107982164319456,15.2553607609896,1.30963366892265,0.209615221029554,0.484263419220631,-5.87714781656931 +"Q9VSC5",0.0553078924361614,19.4279197575058,1.30845087904655,0.210006081053121,0.484495357118404,-5.87860827435799 +"Q7K1C3",0.085960949569543,17.1107463168027,1.30168725032027,0.212252318346172,0.489001197515766,-5.8869395151062 +"Q7JVK6",-0.0894937647039384,17.3749025259571,-1.29896012287673,0.21316339627959,0.489930057846786,-5.89028896817501 +"Q7K3D4",-0.085832389207777,18.5501612876025,-1.29872246794504,0.213242938846983,0.489930057846786,-5.89058058986963 +"Q9VG42",-0.474817725839362,16.2275567294779,-1.29545327761714,0.214339522435778,0.491005582444404,-5.89458782177723 +"Q9V3V9",0.0545234888344801,19.5089156306005,1.29532750828149,0.21438179839994,0.491005582444404,-5.89474182311932 +"Q7K204",0.1660805143682,14.844577389759,1.29469601914467,0.21459416642804,0.491005582444404,-5.89551488472412 +"Q9VL93",0.104298207897338,15.3595508872012,1.2913673323718,0.215716352716877,0.491141360720112,-5.8995848386542 +"Q9VPC1",0.0981376501459224,16.0950906862197,1.29098076354296,0.215846975836231,0.491141360720112,-5.90005694915631 +"Q9VXJ7",0.119256046144864,14.9658939436786,1.29003888404959,0.216165502898658,0.491141360720112,-5.9012067780154 +"Q9VSR5",0.0738491630137794,20.2711842710254,1.28987191071627,0.216222009165085,0.491141360720112,-5.90141054579034 +"P48375",-0.0860373724785113,21.8927195247809,-1.28980103443761,0.216245998290785,0.491141360720112,-5.90149703406172 +"Q9VCD9",-0.146466773151968,18.5421027848058,-1.28928652763987,0.216420203914438,0.491141360720112,-5.90212475767136 +"Q9VTY2",0.0781337509593456,20.7753534996972,1.28489796616341,0.217910634906623,0.493851819326423,-5.90747085708855 +"Q9VEP9",0.0789695372110977,17.5441425189941,1.28394977791681,0.218233719828702,0.493912950711363,-5.90862400881532 +"Q9W1H5",0.0740544214396586,17.2681513831536,1.28204660251662,0.218883348915896,0.494349597942272,-5.91093651803093 +"Q9W073",-0.0968953512205815,14.584758768203,-1.28164859906895,0.219019396210635,0.494349597942272,-5.91141977548092 +"Q9VQD8",-0.191568451786999,17.5488569371324,-1.27934669581622,0.219807553573788,0.494783734463671,-5.91421239047892 +"Q9V595",0.0725883028613694,18.5168851432848,1.2787425958657,0.220014764099353,0.494783734463671,-5.91494460179995 +"Q0E8X7",0.128083487855466,21.0104884879615,1.27848946007709,0.220101637273408,0.494783734463671,-5.91525133736766 +"Q9W254",0.0561447425505222,18.1491978131951,1.27304473956305,0.221976759268689,0.498327368048686,-5.92183710711297 +"Q9V9U7",-0.105387377268208,17.8296085896576,-1.27154126736509,0.222496755895996,0.498823372089411,-5.92365167239701 +"Q9Y114",0.0482520942753375,18.610428835204,1.26688182519026,0.2241143821081,0.500499617917189,-5.92926424246515 +"Q9VZW7",0.153629697881493,13.8790692907301,1.26663423462542,0.224200596676785,0.500499617917189,-5.92956201440311 +"Q7K568",-0.140200522694048,16.1116201461339,-1.26543129034747,0.224619850237303,0.500499617917189,-5.93100810103931 +"Q9VPU4",0.203227599740167,12.954192863352,1.26518076177732,0.224707242654695,0.500499617917189,-5.93130912747093 +"Q9V455",0.121475159201196,19.3460994358926,1.26507331278021,0.22474473250598,0.500499617917189,-5.93143821969979 +"Q9VG73",0.0899643844349214,18.045500205732,1.26338021621688,0.225336117186825,0.501147524623498,-5.93347118339973 +"Q7KTJ7",-0.0654621110196416,22.0944243530528,-1.25657263429047,0.227726292882812,0.505414267052141,-5.94162306070336 +"Q9VZ49",-0.105467952987095,18.9074786777257,-1.25619169173232,0.227860628790893,0.505414267052141,-5.94207817424706 +"Q8MR62",0.0660816460293177,17.6497943255366,1.25374181134918,0.228726041173709,0.506095245991768,-5.94500238262724 +"Q9VJU8",-0.097170407810081,15.6308530345953,-1.25360493054628,0.228774469710907,0.506095245991768,-5.94516562874896 +"Q9VIH9",0.163483176250814,19.1487864122102,1.25021430407707,0.229976640498743,0.507972074894372,-5.94920472442814 +"Q6NLJ9",-0.145373623614542,15.1427512647721,-1.24945417655834,0.230246826155411,0.507972074894372,-5.9501090102472 +"Q8IPG8",0.155241247568963,15.8970619007562,1.24864003228679,0.230536487227242,0.507972074894372,-5.95107706161559 +"Q9VWI0",0.0593376549191795,20.9629955481989,1.24336514070656,0.232420126613395,0.511446927692801,-5.95733669614973 +"A0A6H2EGA2",0.0928477503300993,15.8277827915129,1.2415752227862,0.233062021362167,0.512183730740572,-5.95945586454527 +"Q7KLE5",0.05567427843717,21.4111840821455,1.23827755492604,0.234248240634855,0.514113243919655,-5.96335361705256 +"P32392",0.0646899163355741,17.6603191759224,1.23423232103505,0.23570978998156,0.516641169105443,-5.96812342513792 +"Q9VEV3",0.0502917744738518,18.2516565823609,1.23161858720112,0.236657904372977,0.518038562328249,-5.97119854909235 +"A1Z9M5",0.14368108712763,15.0694024980801,1.22846115155481,0.23780719501568,0.519523178766854,-5.97490624593788 +"Q9VH25",-0.0740380134249605,16.2151233629775,-1.22804482752563,0.237959057900405,0.519523178766854,-5.97539454393365 +"Q9V470",-0.0570799470067307,19.9363777477861,-1.21673136351996,0.242114767302321,0.52790513968663,-5.98861195128659 +"A1Z6P3",0.0593638299433721,17.2279586687011,1.2154215617163,0.242599496391498,0.528047054222002,-5.99013569686211 +"Q9VGR1",0.140749112376495,14.1539815884489,1.2148452783774,0.242813003949806,0.528047054222002,-5.99080568358679 +"Q9V420",0.0750782761464901,17.5231295704785,1.21285275506667,0.243552334989363,0.528524305264662,-5.99312017789178 +"P91927",0.0933534378263161,19.2651784593747,1.21254635024181,0.243666181503912,0.528524305264662,-5.99347581747933 +"Q9VCU0",-0.149776267318996,17.3680792214299,-1.21024152433385,0.244523871574396,0.52949301765953,-5.9961486261697 +"Q9W1H6",0.0751436612009186,17.1568914400105,1.20964114490194,0.244747671831833,0.52949301765953,-5.9968441737905 +"O18373",0.059416749452474,19.5967439878403,1.20570393020768,0.246219246736559,0.531986662638057,-6.00139844655048 +"O97062",0.0634490132851653,18.4693577748792,1.20216917307574,0.247546202135999,0.534161791931237,-6.00547676114309 +"Q6IGW6",0.112646691642921,15.6891045026585,1.20101762844992,0.24797968183435,0.534405825968599,-6.00680325153454 +"Q9VZJ8",-0.125797240797965,14.8748339595235,-1.20001069097795,0.248359205249459,0.534533102394965,-6.00796230579705 +"Q9W369",-0.0578537923065277,22.2458235059154,-1.19708567202355,0.249464205037305,0.536219451033794,-6.01132465005452 +"Q9VNQ3",0.115218338164219,15.098918905047,1.19548980651417,0.250068675118906,0.536418806331364,-6.01315625751396 +"Q9VHC7",0.0612963704145457,19.9396703558763,1.19478324938802,0.250336658746911,0.536418806331364,-6.01396654238399 +"Q9V400",-0.10790212223232,14.2916592840323,-1.19371085597616,0.25074381851266,0.536418806331364,-6.01519561397602 +"Q9VZG2",0.0907246032381757,21.9026255512066,1.1929975656435,0.251014917692491,0.536418806331364,-6.01601261141392 +"Q00174",-0.0603657340512065,21.9951719263408,-1.19260314611302,0.251164920710309,0.536418806331364,-6.01646420311713 +"Q8SY96",-0.0762091384177914,18.7523192850064,-1.19093240795738,0.251801087822694,0.537089788348149,-6.01837574856819 +"Q86PD3",-0.0455314260720066,18.8915751890195,-1.18773915462321,0.25302042096963,0.538945634463478,-6.02202307745359 +"Q7JW03",0.112553823027003,17.169470865222,1.18696326894042,0.253317372553577,0.538945634463478,-6.02290806736797 +"Q9W402",-0.0504284570763502,21.2296912517434,-1.18558024688137,0.253847352970219,0.539288666187431,-6.02448437939668 +"P29746",0.0672799083305478,21.2001867950025,1.18485597770044,0.254125234786164,0.539288666187431,-6.0253092636946 +"Q9VNF5",0.0741396483732224,15.9532783275783,1.1813603234324,0.25546969425009,0.541452922502097,-6.02928464989778 +"A8E6W0",0.0825574835931917,16.4198914790276,1.1797031064437,0.256108971912401,0.54167330007044,-6.03116588934987 +"Q9VHI7",0.0868548781068483,15.5040863207409,1.1794074219429,0.256223161723967,0.54167330007044,-6.03150131378218 +"Q95R34",-0.0972312321112199,15.2945562890114,-1.17696005024881,0.257169801175271,0.542422926102816,-6.03427492806758 +"Q9VF23",0.260212368004787,15.386895198889,1.17660684107873,0.257306642129985,0.542422926102816,-6.0346748255515 +"Q24050",0.0620509096250537,16.6331445992496,1.17597045618781,0.257553331818603,0.542422926102816,-6.03539507782701 +"Q9VQT8",-0.185352731402912,18.0100984349345,-1.17403701584013,0.258303922181767,0.543317707691283,-6.03758133180228 +"Q0E8P5",-0.064893317480653,17.727303580684,-1.17284062370557,0.258769214280752,0.543610893476441,-6.03893266240569 +"Q9VSW4",0.206389070406432,15.8970339430903,1.17193980362683,0.259119976099194,0.543663044193027,-6.039949385764 +"Q9VHA8",0.058182198293661,18.5873791541192,1.16724154977344,0.260955258854245,0.546825843930754,-6.04524158220172 +"Q6IHY5",-0.0688697321561733,20.8899641977379,-1.16309008418411,0.262585164532408,0.54935775615367,-6.04990310429197 +"Q9VJG0",0.483296792217333,13.111127835232,1.16248788218156,0.262822235857691,0.54935775615367,-6.05057814200367 +"Q7JZW0",-0.0717341419612083,19.7796760222945,-1.16093334748446,0.263434967253187,0.549628172377365,-6.05231934567601 +"Q9VLP1",0.138527063646901,18.4213990376592,1.15892623616535,0.264227688054056,0.549628172377365,-6.05456459041565 +"Q9VD00",0.0522353349339646,17.917969749388,1.15821254305313,0.264510001161473,0.549628172377365,-6.05536217642961 +"Q26377",-0.115826304552614,16.7800268786748,-1.15716937089509,0.264923056563641,0.549628172377365,-6.05652723142736 +"Q9VJD1",0.0636840397711644,18.5407889818358,1.15683121767536,0.265057056907628,0.549628172377365,-6.05690470547561 +"Q9VYF0",0.0777021413867693,16.1787616658515,1.15629823988089,0.265268364880394,0.549628172377365,-6.05749947105184 +"Q95SH2",0.0696193897078636,18.721918760571,1.15526627687552,0.265677866719274,0.549628172377365,-6.05865041664011 +"Q9VEA5",0.115365995414722,15.6368006582925,1.15517300640657,0.265714901735162,0.549628172377365,-6.0587543985478 +"P40796",0.0992339667736211,18.3438463845507,1.15466363539405,0.265917227283293,0.549628172377365,-6.05932214309894 +"O61604",-0.0500088336048812,20.934800507873,-1.15309720695189,0.266540154112782,0.550233882500149,-6.06106676876105 +"Q9VYY3",-0.0508986202133244,17.544422232198,-1.15041126213041,0.267610852313965,0.551761312311118,-6.06405364722154 +"Q9VKV2",0.119817639498974,14.9648530178989,1.14869897189569,0.268295118206466,0.552489206380723,-6.06595473370317 +"Q6NP72",-0.0945827071445819,18.743895516546,-1.14755285404233,0.268753868288558,0.552751482497305,-6.06722589448779 +"Q9VJ58",0.0629769780244089,17.200920339582,1.14486161047937,0.269833405652339,0.554288325896678,-6.0702065681882 +"P29613",0.0485577767801928,23.8436814000175,1.14148917989123,0.271190802493683,0.556385241766446,-6.0739333855841 +"Q9VRJ5",0.0730094656707223,17.2541909236008,1.13800713833789,0.272597710817767,0.556385241766446,-6.07777162913684 +"Q8SXC2",-0.167918177559542,14.7302810371679,-1.13763463047572,0.272748546241169,0.556385241766446,-6.07818165903633 +"Q9W499",0.130171145373414,16.9090063014245,1.137221289119,0.272915989418904,0.556385241766446,-6.07863650323473 +"Q9VP77",0.0812785732683601,15.3543487810788,1.13661155309854,0.27316313259623,0.556385241766446,-6.07930720763481 +"Q9VHN4",0.108100621417352,14.5676682733499,1.1363008216815,0.273289145535411,0.556385241766446,-6.07964889300908 +"Q9W0H8",0.0761130017170082,19.4070931207132,1.13477190529903,0.27390981387726,0.556385241766446,-6.08132896830879 +"Q9VZV2",-0.101313112300451,15.0230289181824,-1.13443173496046,0.274048051092166,0.556385241766446,-6.08170251096252 +"O96299",-0.109157471795786,15.6927389107371,-1.13417842570203,0.274151024069547,0.556385241766446,-6.0819806097476 +"Q7JWU9",0.156605110523875,15.5097853215988,1.13408293566124,0.274189849359724,0.556385241766446,-6.08208543111707 +"Q9VCK6",-0.0999830197650908,16.5509441839027,-1.132386036637,0.274880480757153,0.557108920902711,-6.08394691102153 +"Q9VH76",0.0584051246217427,19.3146351699551,1.13040414159217,0.275688757621744,0.558068989943044,-6.08611805233827 +"A1Z6X6",0.0784613907889096,18.5680378734048,1.12790558521111,0.276710284853649,0.559174608832637,-6.08885061594686 +"Q9W259",0.106617033664342,16.9085072613927,1.12742911084251,0.276905411808008,0.559174608832637,-6.08937113588726 +"Q9VWV6",0.0938322897302584,23.6390966134418,1.12166638401043,0.279273549848992,0.562648131901236,-6.0956518531197 +"Q9VVA7",-0.0608026802058639,17.5142414778267,-1.12134426442489,0.279406367676936,0.562648131901236,-6.0960021236638 +"Q7K549",0.151953161340408,14.7435324922279,1.12078404891513,0.27963747083101,0.562648131901236,-6.09661109527033 +"P43332",0.0933317905210771,17.1823214245895,1.1194296037,0.280196804433793,0.563094300958514,-6.09808235509515 +"Q9VH26",0.0707965210887274,18.2868908556853,1.11617797596149,0.281543013474638,0.564692337321755,-6.10160827064984 +"A1ZBU8",0.0764094516694129,20.780663367947,1.11536788619338,0.281879149503514,0.564692337321755,-6.10248534257704 +"P91926",-0.104908252203185,17.6880934196697,-1.11505845210963,0.282007624094138,0.564692337321755,-6.10282021972515 +"Q9VEK8",0.0479366564140733,18.8746279299485,1.11286600312193,0.282919163179768,0.565838326359535,-6.10519068509307 +"Q9V931",0.242440438093977,17.6305092036248,1.1073252142756,0.285232603291057,0.569782014717944,-6.11116371105218 +"Q9I7I3",-0.13900326464727,14.5919659327704,-1.10554156415097,0.285980315579678,0.570592304290553,-6.11308111543984 +"Q9VMX3",-0.116866725604469,12.5208429207601,-1.10114928870329,0.287827781752178,0.573109206753332,-6.11779155638375 +"Q9VX69",0.0955832422023732,18.1594344446518,1.09847446207385,0.288957190511616,0.573109206753332,-6.12065232105145 +"Q9VXM4",0.129917272940201,20.1878359265085,1.09783941060082,0.289225814224337,0.573109206753332,-6.12133064705251 +"Q9VJ22",0.263212636795918,13.1211862604615,1.09715956442,0.289513590938264,0.573109206753332,-6.12205644981052 +"Q9VNX9",0.160825482470864,13.5705128688894,1.0971173006426,0.289531488061721,0.573109206753332,-6.1221015579071 +"Q9VSL6",0.172303610903629,14.5993544440375,1.09604464858777,0.289985990363402,0.573109206753332,-6.12324590283854 +"Q9VZY0",0.0834168772720698,17.1986881468968,1.0958340355044,0.290075293005603,0.573109206753332,-6.12347048061184 +"Q9VMB3",0.0695804016068493,18.6972010404163,1.09561937602151,0.29016633232616,0.573109206753332,-6.12369933522191 +"Q9NHD5",-0.0936330576467448,16.5803829317287,-1.09409176255908,0.290814820101572,0.573109206753332,-6.12532686350928 +"Q9VE85",-0.0761814320233416,15.8153758986667,-1.09352769030784,0.291054545553952,0.573109206753332,-6.12592733976691 +"Q9VMU2",0.0498718144713202,16.293215342346,1.09316467983044,0.291208898922302,0.573109206753332,-6.12631363845451 +"Q9V3T8",0.11164559771011,15.5803203003116,1.09279800347077,0.291364872498097,0.573109206753332,-6.12670372711362 +"P36951",-0.0535558103781248,20.3591082516913,-1.08946328515485,0.292786202222468,0.575226602246262,-6.13024623960898 +"Q9V3W2",-0.0522528783183809,21.5528556616294,-1.08844706750216,0.293220352905433,0.575401821936779,-6.13132394212662 +"Q9XZ61",0.0535809532263514,18.5482073575156,1.0839064867163,0.295165995390576,0.57853922480785,-6.13612874253964 +"Q9VQV7",0.0640104422559631,16.2592205454246,1.08277225009574,0.295653498727823,0.578814596100949,-6.13732629953729 +"Q9VY28",0.0750879147985248,15.2248863431617,1.07607024981799,0.298546174762248,0.582952597673976,-6.14438052969197 +"Q7YTY6",-0.0806220846921963,18.4428378960509,-1.07564831666163,0.2987289803681,0.582952597673976,-6.14482338198629 +"Q9VN25",0.100726007900313,14.9322502252662,1.0740410473967,0.299426094440182,0.582952597673976,-6.14650897404519 +"A1Z7H8",0.108426925884133,14.6864032875859,1.07358178699245,0.29962550666815,0.582952597673976,-6.14699021718428 +"Q9W1C8",-0.245278230404974,15.9668356058677,-1.0731001204299,0.299834752397183,0.582952597673976,-6.14749474922788 +"Q9VI75",0.097151513866887,17.4077936349294,1.07211177822428,0.300264443940478,0.582952597673976,-6.14852940121302 +"P22812",0.238781655798448,11.5248508221964,1.0715040742543,0.300528873354366,0.582952597673976,-6.14916517348831 +"Q9VFJ2",0.117180691438151,13.9127597822094,1.07142546737388,0.300563089927829,0.582952597673976,-6.14924738841781 +"Q9VA41",-0.0814466106087757,17.4602103019853,-1.06992777757533,0.301215560871945,0.583045816983567,-6.15081283262199 +"Q9VTF9",0.0673207677659349,17.4071989376471,1.06971062838125,0.301310248345225,0.583045816983567,-6.15103964938472 +"Q9VL10",0.0755410448434208,16.7357983938019,1.06832660980333,0.301914259301409,0.583537641384416,-6.1524843556288 +"P08928",0.0442192998339905,22.7236429330293,1.06593025427389,0.302962168008126,0.584885296571243,-6.15498198722834 +"Q9VBT1",-0.0613309993661666,16.3102333511685,-1.06498718694826,0.303375293179179,0.585005767656497,-6.15596358857914 +"Q8WTC1",-0.0739213232186291,15.0733494635534,-1.06231109236878,0.304549839893382,0.586592532265774,-6.15874495898793 +"Q9V3E7",0.065357368707609,18.7248322606082,1.06103295503322,0.305111989120052,0.586997460037194,-6.16007125200432 +"Q9VG26",-0.0609287753238483,19.710108461498,-1.05792063267505,0.306484014543374,0.588090029961998,-6.16329508357473 +"Q7K4Z4",0.0959155231316871,14.9335264754016,1.0575084520027,0.306666055624194,0.588090029961998,-6.16372142004897 +"O15943",-0.0435196669078053,20.1724977213387,-1.05734649618942,0.306737605555718,0.588090029961998,-6.16388889883359 +"Q9V3D9",-0.039324600151911,17.4312660305451,-1.05299811096253,0.308663214249168,0.59061508048385,-6.16837730026428 +"Q494G8",-0.0626819239862293,15.1141777705739,-1.05277376557233,0.308762799869255,0.59061508048385,-6.16860843656433 +"Q9VBC9",0.10473100986219,15.5342124343136,1.05099790375487,0.309551919352751,0.591199009296029,-6.17043655322702 +"Q9W0S7",0.0544064400354571,17.9139971172461,1.05047746678174,0.309783457518885,0.591199009296029,-6.17097179915215 +"P48609",0.0588605104046689,16.9875230355849,1.04959223741048,0.3101775778727,0.591199009296029,-6.17188169160559 +"Q7KK90",0.053982111593605,21.0899032360164,1.04770745223273,0.311017931758646,0.591199009296029,-6.17381678030412 +"Q7JX94",0.196637568901428,12.3127334417105,1.04668895723621,0.311472727038424,0.591199009296029,-6.17486120705744 +"Q9VB64",-0.0621709166696789,18.7733170394194,-1.04653866153897,0.311539880397744,0.591199009296029,-6.1750152550562 +"Q9W329",0.0604006929150636,16.4551060312353,1.04599408306263,0.311783290530076,0.591199009296029,-6.17557326933421 +"Q9VPF6",0.0892020508451878,14.0052079381834,1.04572513274962,0.311903554065051,0.591199009296029,-6.17584876252239 +"A1ZB68",0.0757935239973477,19.3274439793371,1.0417494453291,0.313685242794404,0.59390123153356,-6.17991401793576 +"Q9W3J1",-0.196452675661639,15.7126345024723,-1.04014325854733,0.314407134995171,0.594363571705001,-6.18155258853643 +"Q9VJH8",-0.115875702822962,14.3620679663009,-1.03918944582489,0.314836389450106,0.594363571705001,-6.18252459560766 +"Q9VA18",0.0740394228707153,21.5716257815935,1.03863339894809,0.315086828577869,0.594363571705001,-6.18309089281439 +"Q7K2D2",0.0498697920165689,20.3568335186429,1.03745644149692,0.315617395867835,0.594363571705001,-6.18428868026599 +"Q24400",0.0595979586395075,21.4594952140167,1.03724871326669,0.315711105833712,0.594363571705001,-6.18449996269709 +"Q9VEX6",0.0468052454759231,20.7661185753923,1.0341141356974,0.317127611053063,0.596357221236199,-6.18768371844853 +"Q9W3N9",0.0803094689615307,20.1933715355376,1.0320775153202,0.318050407240517,0.59690406847153,-6.18974781057534 +"Q9VYT3",-0.0813154172036032,14.3954874762649,-1.03169596617071,0.318223502892229,0.59690406847153,-6.19013411357178 +"P18432",0.064070429983353,23.6507353002834,1.03110446880175,0.318491978980612,0.59690406847153,-6.1907327354546 +"Q9VSY0",-0.0648033147643226,22.6100148721128,-1.0291189762545,0.319394371873392,0.597923470577797,-6.19273996282771 +"Q7KML2",0.228542074791971,13.5477892504771,1.02766813010894,0.320054934495756,0.598488375267848,-6.19420456560058 +"Q9VKA1",0.2757327056616,14.5457442197692,1.02163620252338,0.322811773139645,0.60274191283225,-6.2002744195394 +"Q9VSN9",-0.0663925842630313,16.5201056237236,-1.02111164566294,0.323052320187069,0.60274191283225,-6.20080080491 +"Q9VPC2",-0.100287953856952,14.8166723586628,-1.01898936562268,0.324026850424589,0.60388467766281,-6.20292807960377 +"Q9VRZ7",0.0772827091837947,17.2305138955547,1.01752294851364,0.324701444410948,0.604466528211452,-6.20439569516543 +"Q9I7K0",0.0669574684111076,16.1805296631378,1.01429847026551,0.326188332406127,0.60655756795253,-6.20761632813574 +"Q9VIX1",0.161616887035429,17.2224333671201,1.01344841195695,0.326581125456789,0.606611711872966,-6.20846388767617 +"A0A0B4KGY6",0.04921045887383,21.7701011619129,1.01157929557837,0.327445991227914,0.607541616649789,-6.21032532887328 +"Q9VGU6",0.0543536900711139,18.5755911351436,1.00730297483561,0.32943085162837,0.610545178351246,-6.21457280267335 +"Q9VHB8",-0.0908349785506175,15.5411092225851,-1.00593870679073,0.33006587954254,0.610718152955953,-6.21592455938593 +"Q9VEJ0",-0.0406018200164304,22.2142253267539,-1.00552963803946,0.330256459212392,0.610718152955953,-6.21632956456108 +"P51140",-0.0860655734120126,13.6184514663991,-1.00218513297743,0.331817558961306,0.612925457749124,-6.21963544119444 +"Q7JYZ0",0.156071698489564,16.8447190968725,0.999879634499011,0.332896737090186,0.613914026464183,-6.2219086987795 +"Q9VT75",0.0649352978685673,15.6091150944629,0.999469781786686,0.333088845293816,0.613914026464183,-6.22231234005442 +"P14199",-0.0564759660344798,18.5333447986182,-0.997687540494721,0.333925141733231,0.614776088753896,-6.22406588522093 +"P54353",0.0936173300478487,18.884946922046,0.992543880561381,0.336347095330305,0.617560816191835,-6.22911134027453 +"Q0E9F9",0.0872083220998832,18.4525026894022,0.992514060885844,0.336361172447937,0.617560816191835,-6.2291405239311 +"Q5LJT3",-0.0803719068957314,17.074057694874,-0.992117474791452,0.336548430406701,0.617560816191835,-6.22952857815055 +"Q9VVG0",-0.0446292034361377,18.097966695752,-0.990567744664513,0.337280881252698,0.618224736186264,-6.23104366330683 +"Q9V7D2",0.0634411935668631,21.3513529754591,0.987453885209996,0.33875599451825,0.62018718130128,-6.23408162311537 +"Q9VM11",0.0845737190929583,17.7965815551599,0.986386638187326,0.339262623003421,0.62018718130128,-6.2351209226677 +"Q9Y112",-0.0391986793278321,22.2378819571763,-0.985870597755529,0.339507782156001,0.62018718130128,-6.23562309555612 +"Q8IR45",0.0748606756419985,14.8153645598709,0.985174292357417,0.33983877920226,0.62018718130128,-6.23630032303967 +"Q9VYS2",0.0993894955817254,14.9817778179093,0.980713416226124,0.341964708798328,0.622500644572124,-6.24062899182123 +"Q9VFS4",0.0735265478261447,15.2785942287608,0.980181362077347,0.342218894573506,0.622500644572124,-6.24114412362488 +"Q9V9U4",0.0478114874319644,15.9221574066933,0.979657827808782,0.342469139764396,0.622500644572124,-6.24165076633033 +"Q9VFP0",0.0704583528805145,16.5097803324512,0.979016469169864,0.342775879464732,0.622500644572124,-6.24227110706667 +"Q9W0B3",0.0551117343170446,19.1545993789373,0.978130075379722,0.343200128967239,0.622500644572124,-6.2431278640621 +"Q9VC58",0.129571945815655,13.1555069332173,0.976215442829895,0.344117777668342,0.622500644572124,-6.24497614730729 +"Q6AWN0",-0.0610070802135674,18.3995720216313,-0.97598718646159,0.344227291671625,0.622500644572124,-6.24519628085108 +"Q9V3Y4",-0.101128025834656,14.0646680747363,-0.975636264052177,0.344395706743848,0.622500644572124,-6.24553462670923 +"Q7K159",0.104597425108514,14.6100344569864,0.975491321243633,0.344465284736253,0.622500644572124,-6.24567434368513 +"Q9VKW5",-0.0890687817654943,17.0256213774463,-0.973610259568971,0.345369160053716,0.623125816447839,-6.24748592494518 +"O97064",-0.06510955841879,16.5169812575237,-0.97321690686235,0.345558381423412,0.623125816447839,-6.24786435870302 +"Q7KW39",0.0470119457715867,21.7006819402605,0.972057707633389,0.346116434151233,0.623458112488399,-6.24897880782138 +"Q9W2Y3",0.0947756903053563,16.4173162369327,0.968848872933558,0.347664499186543,0.625571072969962,-6.25205765501526 +"P22465",-0.0506949036081075,22.6948147991048,-0.967428870255156,0.348351107267042,0.626131085044641,-6.2534172658336 +"Q9VGV9",0.076707515829888,16.0676258470841,0.964666553094663,0.349689473848082,0.627860110203015,-6.25605705661808 +"Q7JNE1",0.0428173387503605,17.7962738722791,0.959979259391167,0.351968714574494,0.631272920333608,-6.26052116834399 +"Q9W0J9",-0.0608072229095917,18.4250195790406,-0.958450405849846,0.352714367800367,0.631477779972036,-6.26197306585922 +"Q9VSY4",-0.0375532972687509,20.4233132001784,-0.958192826949664,0.35284010247838,0.631477779972036,-6.26221747770321 +"Q7JWD6",0.044873126125804,20.4649865401623,0.95601696499337,0.353903473401373,0.632235833223931,-6.2642797915942 +"Q7K0X9",0.0669840270386892,16.6692793365383,0.955113152189137,0.354345832368698,0.632235833223931,-6.26513521789431 +"Q9VTZ5",-0.0459858562266291,18.0407135715772,-0.955000936118278,0.354400781813175,0.632235833223931,-6.26524137634444 +"Q9VS02",0.0726733384015326,17.9380007074566,0.950992425017616,0.356367534432537,0.634763631227353,-6.2690262492513 +"Q9VGE4",0.0511820181539271,15.6671851780755,0.950562648219918,0.356578850395701,0.634763631227353,-6.26943121054879 +"Q9VFU7",-0.0755307233041904,14.828952966526,-0.945098825445568,0.359272916518056,0.638877638328484,-6.27456538728448 +"Q7K188",0.0569180465935979,21.9843152495797,0.944303293051417,0.359666343341725,0.638896124274757,-6.27531073138042 +"Q9VH39",0.122383839450187,18.3987260339609,0.941802384558128,0.360905094532163,0.640414571999625,-6.27765023059366 +"Q9VE50",0.0865715849869986,14.5952834660866,0.940015169455504,0.36179214092485,0.640817736414349,-6.27931871921622 +"Q9VVL7",-0.0447982693193332,23.4913505826343,-0.939796725288437,0.361900664090118,0.640817736414349,-6.27952245863279 +"Q9Y136",-0.0881531909504911,15.2665561783888,-0.938324769635393,0.362632517456516,0.641017226380131,-6.28089423018712 +"Q8SYQ8",0.0981780550098623,16.0031817776856,0.938024509179863,0.362781931476525,0.641017226380131,-6.28117381943046 +"Q9VJI9",0.112360383959956,17.6036192033855,0.936713847039142,0.363434632730167,0.641490970787216,-6.28239331754176 +"Q9VNW0",0.115134101199065,14.6490186642389,0.935560515660275,0.364009652529568,0.641826744629302,-6.28346517268994 +"A1Z7P1",-0.155173208085809,14.6167915107048,-0.933625218851186,0.364975944681545,0.64285097753835,-6.28526110978008 +"Q9W2M4",0.0424754298399073,22.6603679330122,0.930901188275428,0.366339035395126,0.643975433936058,-6.28778337018323 +"Q9VR31",0.0565290702053609,17.2876455497586,0.930806453682081,0.366386502880886,0.643975433936058,-6.28787096955619 +"O62530",0.0724344270970647,15.6804111760589,0.926794661700928,0.368400515163872,0.646833746624567,-6.29157330388944 +"Q9W3E2",-0.0901648689738401,17.6355475169739,-0.92553885761937,0.369032513105726,0.647262073459886,-6.29272930690743 +"Q8IH23",-0.0840681620654067,18.2731446292083,-0.924320600364373,0.36964632376078,0.647612821244646,-6.29384941000904 +"A8JNT7",-0.0623320440843482,16.8613206001789,-0.923601422949375,0.370009003984501,0.647612821244646,-6.29451002547038 +"Q8IN51",-0.0848709339673004,17.1056454749177,-0.918967038112758,0.372351950301693,0.651030453986607,-6.29875601792518 +"Q9V3G1",0.0552951160207016,21.0871792908584,0.917220042738594,0.373237776608767,0.651895928150182,-6.30035164809504 +"Q95SN8",0.0917313592084845,17.6489964173654,0.91518187320018,0.37427305790873,0.65281042155872,-6.30220979152307 +"Q9VW34",0.0599188677600822,18.4621667280435,0.914648886418318,0.374544108772,0.65281042155872,-6.30269509093309 +"Q9VN93",0.0455780292116046,20.3013510568696,0.912596198347531,0.375589252119316,0.653948718721315,-6.30456175687599 +"Q8T0N5",0.0546246244872179,18.5929777548029,0.910760651216414,0.376525513219048,0.654895261782453,-6.30622777933147 +"P21914",-0.0381933217089703,22.9103826885991,-0.90983087757568,0.377000368708367,0.655038140630788,-6.30707053585835 +"Q9VC05",0.0935254095948661,14.8715855011303,0.907720311952922,0.378079787533305,0.655882502249275,-6.3089807115591 +"Q9VI64",-0.0458390232062911,20.9025283628525,-0.907343423302946,0.378272762088611,0.655882502249275,-6.30932139766039 +"Q9W401",0.0382185017347041,24.4610095631026,0.903768885784716,0.380106314251703,0.658377291974913,-6.31254626912654 +"Q8MKK0",0.211862824431266,15.8085060860088,0.901647513667774,0.381197305331159,0.659582059431922,-6.31445472470669 +"Q9V3F8",0.0398075435980978,18.5398325579536,0.899808650765226,0.382144715656148,0.660536150999435,-6.31610576773812 +"Q9VY78",0.0670127004774095,18.7754759507881,0.898035383132138,0.38305983379827,0.661432508049187,-6.31769504775455 +"Q9VVT6",0.0401228069926525,20.4842038084785,0.893804753627651,0.38524906667033,0.664058763230799,-6.32147534099696 +"P61851",0.0622201808076746,23.5429922609122,0.893557972906901,0.385377028061998,0.664058763230799,-6.32169535725073 +"Q9W140",0.166493786915101,13.8474778106003,0.892021685059331,0.386174270675545,0.66474580339196,-6.323063798589 +"A1Z8D0",0.172658739206776,13.8043293756131,0.887902673485065,0.388317257423575,0.667745551940746,-6.32672232877813 +"Q9VUH8",0.0637864258839862,15.4726074432561,0.886049561241041,0.389283965789436,0.667937957831867,-6.32836329985988 +"P22979",0.0569946433202269,19.4570518402564,0.884703939508095,0.389986941768435,0.667937957831867,-6.32955294088741 +"Q9VF89",-0.136526913061562,14.2180039283023,-0.884493158466133,0.390097134301546,0.667937957831867,-6.32973914115103 +"Q9VCC0",0.0572612312829754,17.4609863366011,0.883729624370254,0.390496470508338,0.667937957831867,-6.33041329887503 +"Q9VMX4",0.0767871261644117,17.297219454768,0.883251972210415,0.39074642643535,0.667937957831867,-6.33083477199937 +"Q7JR58",0.053045375172136,22.8150857901754,0.883088869682556,0.39083180266421,0.667937957831867,-6.33097864417342 +"P55841",0.036913732871227,20.6453054138082,0.87525994100636,0.394944520708189,0.674275804034043,-6.33785631404311 +"Q9W0H3",-0.0699978161956736,16.7032082294702,-0.87371053935266,0.395761859363996,0.674734856886101,-6.33921089822436 +"Q9VME3",0.0709172599236272,15.7572292719278,0.872849114056292,0.396216763463578,0.674734856886101,-6.33996307213729 +"Q9VWD9",0.037651736203177,19.4376265104402,0.872096802466008,0.396614330512436,0.674734856886101,-6.34061942220478 +"Q4QQ70",0.0623794543445904,16.115768978045,0.870933150825184,0.397229796146503,0.674734856886101,-6.34163363576748 +"Q9VK12",0.0470219015275184,22.3081435730921,0.870635747115356,0.39738719723611,0.674734856886101,-6.34189264992367 +"Q9V9S0",0.0668754077241509,17.1023461359323,0.869645907109964,0.397911368648756,0.674734856886101,-6.34275414281901 +"Q9VXA3",0.0511150403288774,17.7998032703345,0.869292323181507,0.398098720690197,0.674734856886101,-6.34306166458109 +"P40304",-0.056811861026933,18.7817917827255,-0.865331622690021,0.400201355524611,0.674734856886101,-6.34649866117879 +"Q9VWT3",0.0604602502795597,14.2984685763998,0.864726315231548,0.40052334380596,0.674734856886101,-6.34702268008079 +"Q9VV60",0.0405872577785047,20.0499672055497,0.864587294948444,0.400597318671737,0.674734856886101,-6.34714298402325 +"Q9VD68",0.0780409996894651,14.8044667863569,0.864431836226519,0.400680051384484,0.674734856886101,-6.34727749254628 +"Q9VU04",0.0628619444630623,16.5615834179153,0.862686781320951,0.401609517287298,0.674734856886101,-6.34878587398943 +"Q9VD29",0.0548771981381009,20.7202967867946,0.861815756515327,0.40207398216808,0.674734856886101,-6.34953773263965 +"P48604",0.0428505175004474,20.0969003304925,0.86172572566023,0.402122010389675,0.674734856886101,-6.34961540699909 +"Q9VQF7",-0.0874776860521536,18.72478390172,-0.861646084196479,0.402164499400671,0.674734856886101,-6.34968411175375 +"Q9VEN9",0.0820181000223581,14.881487342776,0.860725096377083,0.402656064967607,0.674734856886101,-6.3504782074602 +"Q9VTC3",-0.103673140408137,17.1422931762841,-0.860685761788515,0.40267706812601,0.674734856886101,-6.35051210545778 +"Q7JXF7",0.052794340379382,17.856641172397,0.860176815540386,0.402948891015103,0.674734856886101,-6.35095058157429 +"Q9VG33",0.0636389100204902,19.9400348092567,0.860161910227214,0.402956853610671,0.674734856886101,-6.35096341951217 +"Q9VRY5",0.0496349330777761,16.8544426206636,0.859512740605221,0.403303748390553,0.674734856886101,-6.35152235327051 +"Q9VXH7",-0.0753566069098888,18.1722640139798,-0.858538563630891,0.403824685527073,0.674929434327813,-6.35236039977997 +"Q9VBL3",0.159058273362939,14.4990362513046,0.856682174441278,0.404818608422216,0.675913352200456,-6.35395499267083 +"Q9NCC3",0.0633200400207805,17.3193819638785,0.853883337139925,0.406320164056381,0.677742033646043,-6.35635320438235 +"Q9VB10",-0.0396482024048019,20.9923275423704,-0.850953133010226,0.407896111768754,0.679444431284814,-6.35885634373451 +"Q9VSU6",-0.0580567630503026,21.5926538538892,-0.850471617177009,0.408155467714259,0.679444431284814,-6.35926693297461 +"Q94516",-0.0347076788378544,23.3667950426379,-0.846192516722499,0.410465039621967,0.682607862501935,-6.36290644829795 +"Q8IQW5",-0.0507207878168678,21.9266353790355,-0.8424889455213,0.412470863137086,0.685260358279541,-6.36604297687088 +"Q9VN88",0.0576003401272231,17.0264411912295,0.84081751803527,0.413378184777922,0.685879488509545,-6.36745439643024 +"Q8SZ63",0.111821964713833,14.0299798104023,0.840287952390569,0.413665926523143,0.685879488509545,-6.36790105026237 +"Q9VTP4",0.0392189403384222,20.9467022126204,0.838862001545021,0.414441371324886,0.68607406533506,-6.36910247199364 +"Q7JZK1",0.045330012030508,21.5106809347634,0.838559657874229,0.414605909986655,0.68607406533506,-6.3693569700425 +"O97111",0.121241661347613,14.7278276950858,0.836704714483158,0.415616320032892,0.687064441838319,-6.37091654062383 +"Q7K5M0",0.0947828487274016,16.6659286359348,0.835450928122808,0.416300178184634,0.68751356159601,-6.3719688969355 +"P83967",0.159427360869582,17.523347760646,0.83340581679384,0.417417219030232,0.68860881005295,-6.37368235841991 +"Q95RB2",-0.0696566948757535,24.2852879689532,-0.832725866834018,0.417789038233565,0.68860881005295,-6.37425119449184 +"Q7KQM6",0.0510462754449446,15.1541754843997,0.830591177908725,0.418957751391402,0.689315224621001,-6.37603429126082 +"Q9VXZ0",0.0497502099092841,19.6747269518058,0.830433526321495,0.419044147341544,0.689315224621001,-6.3761658113712 +"Q9VMY9",0.0872287176656901,14.9968432791892,0.829584124294521,0.419509833586962,0.689401381697589,-6.37687402898975 +"Q7JVM1",-0.0671450999384025,15.8704092471334,-0.825453510399536,0.421779219763892,0.691401669087296,-6.38030863307191 +"Q9VEN3",0.0407243893166296,17.5655716551264,0.825208682060454,0.421913978307107,0.691401669087296,-6.38051171615337 +"Q4V5H1",0.0696992921350592,14.9747344849668,0.824534975552286,0.422284943546779,0.691401669087296,-6.38107026598712 +"Q9VFF0",-0.0543407549161508,23.6562289009575,-0.823853476603091,0.422660413476621,0.691401669087296,-6.38163485215726 +"Q9VIH3",0.0868556484327723,13.778444222652,0.823600977402371,0.422799581815972,0.691401669087296,-6.38184392619105 +"Q9VQG4",-0.0520081760534659,19.1605568909256,-0.822647273252909,0.423325495075027,0.691583668741573,-6.38263308246923 +"Q9VS44",0.0539583143601678,15.1207956322851,0.818541526739116,0.425594386747578,0.694610016726967,-6.38602089294161 +"Q9W436",0.0930238099272582,14.4227300302517,0.814553666631987,0.427805596109322,0.697536397175317,-6.38929657972419 +"Q9VXK6",0.0627723804385703,17.7876241337556,0.813658127327324,0.428303169767648,0.697665710129333,-6.39003017465733 +"Q95WY3",0.0486673374584363,17.2364245427747,0.81001112403809,0.430333318013907,0.69832280947832,-6.39301003705414 +"Q9V9Q4",0.0403123807936687,19.1265432706543,0.809686322887237,0.430514420131547,0.69832280947832,-6.39327482781187 +"A1Z6R7",-0.0423127966946115,17.9225942394132,-0.809018673172799,0.430886840025901,0.69832280947832,-6.3938188165304 +"Q9VAC4",-0.0313580491805894,19.3880557439099,-0.807876358583639,0.431524508172671,0.69832280947832,-6.39474859917668 +"Q23983",-0.0404881167996116,22.3356285651967,-0.807867912850731,0.431529225029344,0.69832280947832,-6.39475546906235 +"Q9VZG0",-0.0397633997485478,21.6782828443375,-0.807691052650873,0.431628007221765,0.69832280947832,-6.39489931466675 +"Q9V535",-0.0456106964776666,18.6015630062895,-0.807674630609812,0.43163718019913,0.69832280947832,-6.3949126697304 +"Q9VYS5",0.0733018582156291,14.2953490589927,0.806475024290423,0.432307589091698,0.698729707950536,-6.39588756415585 +"Q9VZ24",-0.092277520074191,21.8541420764007,-0.804548389316596,0.433385690951357,0.699794126337718,-6.39745051690661 +"Q9VNA3",0.0431678530088391,18.6210485266202,0.800205671268917,0.435822046239321,0.702547876418769,-6.40096089286655 +"Q9VCE0",0.0906353686202479,15.8139199327267,0.800007405684695,0.43593348446848,0.702547876418769,-6.40112074159868 +"Q960W6",-0.124147783820423,14.113481403839,-0.79873349239883,0.436649938217309,0.702805900747773,-6.4021469474449 +"Q9V6U9",-0.0355220154320932,21.8925138877977,-0.798224719676935,0.436936282419329,0.702805900747773,-6.40255637137713 +"Q7JVG2",0.0901639330976209,14.8268907763185,0.796538264960103,0.437886292619688,0.703655429758806,-6.40391179491924 +"Q9VGF3",0.0512221063692042,15.6839771134999,0.793762731327929,0.439452644218544,0.705492791680973,-6.40613678502675 +"Q9VSL2",0.0491340677253191,20.4508778576293,0.792756086445976,0.440021610397924,0.7057269674459,-6.40694199060315 +"Q9W087",0.0769442180647886,16.7081530499718,0.791137580622081,0.440937381149752,0.705759333614016,-6.40823464671635 +"P21187",-0.0400335930246918,18.9554877083743,-0.790747297330675,0.441158388028417,0.705759333614016,-6.40854599141984 +"Q9VRL1",0.0506209478565935,20.4818739018956,0.790477616009966,0.441311142062002,0.705759333614016,-6.40876104445737 +"Q9VZD8",0.0717299611677564,13.6842350667252,0.78691686393158,0.443331162688206,0.707885755890033,-6.41159417512222 +"Q9W266",-0.0391082732012045,18.4113210385701,-0.786638053739991,0.443489577281226,0.707885755890033,-6.41181551453975 +"Q9VLG9",0.0651628500405135,15.7522190584489,0.784676479881739,0.444605111346468,0.708333585392625,-6.41337070886416 +"Q9VXQ5",0.0293939832395012,20.3553401547352,0.784651264241244,0.444619462773428,0.708333585392625,-6.41339067728264 +"Q9VRQ9",-0.0455464953191633,14.7381579415385,-0.78129852704055,0.44653025464468,0.710510658017836,-6.41604046131506 +"Q9VG69",-0.0397332123447924,19.9524891538225,-0.780482828630951,0.446995914267004,0.710510658017836,-6.41668355341018 +"Q9W3N6",-0.0382594575061805,16.1367186291176,-0.78001363173204,0.447263903428494,0.710510658017836,-6.41705318491455 +"Q9VDL1",0.0589995459102823,14.8424546770046,0.775979475806858,0.449572220037321,0.713097506603282,-6.42022281324533 +"Q9VL00",0.0943922985678523,15.9879085798822,0.775382069300221,0.449914682894172,0.713097506603282,-6.42069090457317 +"M9PFN0",-0.0434058667361974,16.681373867901,-0.774292942998035,0.450539442297484,0.713097506603282,-6.42154342083171 +"Q9VX02",-0.0556897026716126,17.2127641189976,-0.773714322866996,0.450871578031108,0.713097506603282,-6.42199588695537 +"Q9V4Q8",0.0480021043272263,16.89619517376,0.773438604429706,0.451029897761668,0.713097506603282,-6.42221138179798 +"Q9W415",-0.0907111042748721,16.7369198250201,-0.771822662517712,0.451958480391158,0.713888963345125,-6.42347293609171 +"E1JJH5",-0.0275791936591361,21.2370675341164,-0.770292693894926,0.452838754627781,0.71460268942208,-6.42466512443481 +"Q7JXF5",-0.0420805956481409,18.5029320795648,-0.768667356783764,0.453775065708397,0.715078711421841,-6.42592923061731 +"Q0E980",0.0478445483668004,18.3692141720927,0.767249685575467,0.454592726636221,0.715078711421841,-6.42702980854669 +"Q9VMQ5",0.0928557751700367,13.5418511673056,0.766802094042339,0.454851070701832,0.715078711421841,-6.42737689610846 +"Q709R6",0.0777491741759757,15.0989719318642,0.766794900417434,0.454855223512334,0.715078711421841,-6.42738247291868 +"Q9W1X8",0.0357128497591006,16.1155487633053,0.762942363905625,0.457082630347842,0.717551593650065,-6.43036217053722 +"Q9VA32",0.0584905879950561,17.2328770211429,0.762486420689199,0.457346686889411,0.717551593650065,-6.43071389495659 +"Q95SH0",-0.348654087253799,13.8303418593454,-0.761844238443698,0.4577187623763,0.717551593650065,-6.43120895798689 +"A0A0B4KI23",-0.0407012814970855,20.5256155739036,-0.758496434745085,0.459661479692779,0.719920514673761,-6.43378354742178 +"Q9VIW6",-0.0843675268513806,15.0183350224211,-0.754207914835992,0.462157499212172,0.722990904001984,-6.43706623068767 +"Q9VJZ4",0.0290844122998308,21.3033885169847,0.75363978817246,0.4624887857135,0.722990904001984,-6.43749981336748 +"Q9VXI6",-0.0362435660439253,22.0244918135563,-0.752425078065535,0.463197597352574,0.723420966651773,-6.43842583862307 +"A8Y535",-0.0539823664592092,22.0363805135977,-0.751303474692091,0.463852670293365,0.723621323792728,-6.43927965406608 +"Q9VGK3",0.0490406462523154,17.0961591176039,0.750720236532136,0.464193535046894,0.723621323792728,-6.43972317436556 +"Q95SI7",0.0316953021488722,21.2148454381424,0.746162681648634,0.466862408209409,0.727102237995606,-6.44317792955249 +"Q9VP55",0.0478127642731518,17.1281478888109,0.743906580253607,0.468187025341464,0.727524863876421,-6.44488088724957 +"Q9VHE4",-0.0306418491267983,17.9252090180179,-0.74351354884861,0.468418018579783,0.727524863876421,-6.44517706637552 +"A8DYK6",0.0637065297821913,16.6008796660575,0.743472294891472,0.468442268467192,0.727524863876421,-6.4452081459417 +"P17210",0.0313971721455495,20.8329678854535,0.741939795289403,0.469343643604527,0.728243703448655,-6.44636155209399 +"A1Z9A8",-0.0488803666851219,16.7020277906222,-0.741201420552608,0.469778312296614,0.728243703448655,-6.44691648573865 +"A1ZBA5",-0.0858423031684872,15.6423531027406,-0.740212195429144,0.470361035878864,0.728470016570051,-6.44765914350684 +"Q9V429",0.0313170022518889,22.333281791088,0.738387357235623,0.471437146410859,0.729273982883057,-6.44902671481411 +"O76521",-0.0507548208758273,16.0865045052312,-0.737849557315227,0.471754572860203,0.729273982883057,-6.44942915404981 +"Q9V3E3",0.076187942274645,15.0275365621174,0.737032615251617,0.472237005745999,0.729343819985487,-6.45003995520965 +"Q9W078",0.0461437123925137,19.4328549688206,0.735748573003316,0.47299588177182,0.72984008399204,-6.45099871937473 +"Q9VKM3",0.0496520053190252,21.7846978250863,0.734825465337921,0.47354189950215,0.730007290544905,-6.45168702070528 +"Q9VKK1",-0.0744162695109498,14.529468622612,-0.732460984821323,0.474942227089532,0.730612959221427,-6.45344639010035 +"Q24090",-0.0553487793002958,15.8431289071242,-0.732411815532469,0.474971373379198,0.730612959221427,-6.4534829200783 +"Q9VWX8",-0.0346261292563455,20.542046526305,-0.731530091984152,0.475494219777991,0.730612959221427,-6.45413760264984 +"O62621",-0.0824348525499978,13.1314119449409,-0.731205381626219,0.475686854744886,0.730612959221427,-6.45437851605094 +"Q76NQ0",-0.0986325299380155,14.5155723477674,-0.728072396408085,0.477547921151704,0.731613323483233,-6.45669786155274 +"Q9VVM1",0.0716883976410916,15.5735425977514,0.727176742011076,0.478080765449588,0.731613323483233,-6.45735920731247 +"Q7JWX3",-0.0338090517744938,17.9449793816874,-0.72670975929861,0.47835872542238,0.731613323483233,-6.45770372348466 +"Q9V3W7",-0.0645233077024017,17.9121173774179,-0.726561547982426,0.478446964874336,0.731613323483233,-6.45781302314095 +"Q9VIL2",0.077750366289683,15.998396991885,0.726419982897657,0.478531256546887,0.731613323483233,-6.45791740206886 +"Q4QPU3",-0.114600878791743,14.4782059240017,-0.721856283778409,0.481253384947603,0.735101324260624,-6.4612721487005 +"A1Z6L9",-0.0639424410367209,15.2620958687615,-0.719475132242167,0.482677355610163,0.735554267044976,-6.46301468479649 +"P40301",-0.047634629139349,17.8483080527872,-0.719394967452258,0.482725339367155,0.735554267044976,-6.46307325617759 +"Q9VH98",0.0425364193869733,17.0354702154188,0.719148547781631,0.482872855164417,0.735554267044976,-6.4632532614093 +"Q9VAN7",-0.0332508472830995,23.6944333150589,-0.717668565756199,0.483759393020949,0.736232360911444,-6.46433315057743 +"Q9VWD5",-0.0709985296917885,14.4636649671853,-0.716486393967847,0.484468234387889,0.73663902913309,-6.46519424559063 +"Q9VW00",-0.0462531568672091,15.772342825112,-0.710099474549954,0.488308589133738,0.741802119011907,-6.46982353251918 +"Q9W3T2",0.0319721224382032,16.2646461658621,0.709088738886831,0.488917980508114,0.742052039570095,-6.4705525686737 +"P80455",-0.0597297091451061,20.5361096280356,-0.704170259828257,0.49188985033473,0.745883882143937,-6.4740863591324 +"Q9VMG0",0.153063195309981,14.7384410770333,0.702300825640197,0.493022202180857,0.746921919380263,-6.47542345510194 +"Q7K2N0",0.0587234502196115,15.4331606145847,0.698819898085873,0.49513475589537,0.748670978916532,-6.4779042832248 +"Q9VD26",0.0536016446056831,16.2112594309386,0.698335814921323,0.49542896399268,0.748670978916532,-6.47824837023724 +"Q9VMB9",-0.0415443759684457,22.5483085290325,-0.698180734657854,0.495523237844036,0.748670978916532,-6.47835855424031 +"Q9W2N5",0.144702093448632,12.9411073395734,0.693538423863032,0.498350190417461,0.751569523497745,-6.48164627396978 +"Q9VHX4",0.0303143868270261,22.8380191014466,0.69309963085198,0.498617882578203,0.751569523497745,-6.48195596618945 +"Q9V3H2",0.0504817773355626,18.4285811453219,0.6928119326742,0.498793442753,0.751569523497745,-6.48215891856792 +"P22769",0.0394846167950575,20.1350200457907,0.69113523025594,0.499817324899836,0.752432579361846,-6.48334014979042 +"Q9VUN9",0.0297174588422475,16.7886163015593,0.689695882629763,0.50069724417187,0.75305140707394,-6.48435202214147 +"Q961T9",0.0742846140695441,17.9125659916084,0.688454187949425,0.501457057380744,0.75305140707394,-6.48522335154022 +"Q9U616",-0.0599030940914425,19.71264469336,-0.688143299904226,0.50164739996543,0.75305140707394,-6.48544127894961 +"Q7JR49",0.0402507413207935,18.871921594693,0.687511631456274,0.502034271382626,0.75305140707394,-6.48588378339591 +"Q7JXB9",0.068244630014183,16.2168412418384,0.686299891497371,0.502776899204898,0.753487751908149,-6.4867315784141 +"Q9VHF9",-0.0627998701982371,17.0237769801219,-0.685548510237423,0.503237712031571,0.753501349792334,-6.48725657725721 +"Q9VU95",0.147923101138229,16.5867113017961,0.683953976770896,0.504216432478079,0.754289694505323,-6.48836890600649 +"O76454",0.054616207863873,17.9869049221744,0.681707891320249,0.505596946335733,0.754899519195355,-6.48993161964562 +"P16620",-0.0489265104136383,17.3350498307145,-0.6812088311442,0.505903981310239,0.754899519195355,-6.49027818445354 +"Q9VNH5",0.0332408298250293,17.113419698231,0.681082351566338,0.505981812026623,0.754899519195355,-6.49036597837963 +"Q9W5W7",0.0449113066498619,14.9512381497284,0.679031562253188,0.507244756772764,0.754995500094735,-6.49178736351591 +"Q9VZS3",0.0630803075109547,18.3893126913878,0.678728980535461,0.50743125087116,0.754995500094735,-6.49199673906399 +"Q9VXI1",-0.0588536996461322,19.5685220790564,-0.678247237711359,0.507728251385457,0.754995500094735,-6.49232990641805 +"Q9W404",0.0744647612161682,15.9523130302257,0.678038964836587,0.507856685315523,0.754995500094735,-6.49247387643938 +"Q7JZN0",-0.0536366347575452,16.8210794541388,-0.670926399737801,0.512253973896353,0.760362914696153,-6.4973654990093 +"Q7JXW8",0.0908720251044368,14.8862472833242,0.669965023464533,0.512850009874597,0.760362914696153,-6.49802295221087 +"A0A6H2EG56",0.0587343237640958,20.9117080524611,0.669343381448175,0.513235628334878,0.760362914696153,-6.49844759955831 +"Q9VJD0",-0.0452272710642099,16.1266190198027,-0.669254861542075,0.51329055272654,0.760362914696153,-6.49850803781628 +"Q9W2D6",0.0392242532402953,19.6086359814014,0.667160383596138,0.514591106113556,0.760976984174427,-6.49993587505748 +"O44226",0.024719430311233,20.1855438162052,0.66711786245528,0.514617528866159,0.760976984174427,-6.49996481866723 +"Q9VAA6",-0.0633993767271868,16.1854697377216,-0.664374619649833,0.516323826102073,0.762823863541415,-6.50182843353199 +"A1ZB71",-0.0473115806513711,19.216083660209,-0.65779086376381,0.520432060184272,0.767287229406642,-6.50627152657275 +"Q9VXE8",-0.0509536883563175,16.2342135211109,-0.657771862332824,0.520443943771285,0.767287229406642,-6.50628428936643 +"Q94533",0.0473740739188013,15.2846823564665,0.657059852131839,0.520889349294664,0.767287229406642,-6.5067622781476 +"Q7K0S5",-0.0353026746888254,18.3023907241761,-0.656070391603422,0.521508675343054,0.767287229406642,-6.50742571386151 +"Q9VBI2",0.026117404934439,22.1089763996613,0.655678726227115,0.521753942828835,0.767287229406642,-6.50768806555896 +"Q9VVW8",0.0561203085353927,15.7571338686071,0.65455303344473,0.522459234032391,0.767287229406642,-6.50844127148122 +"Q9VJD4",0.0309509253485949,20.7556801601641,0.654008211903604,0.522800779848364,0.767287229406642,-6.50880537480059 +"O61443",0.0526958118844032,16.539192265356,0.653074454449106,0.523386440917247,0.767287229406642,-6.50942873703502 +"Q9VGG5",0.0430034678840379,17.050343842667,0.652917481229907,0.52348493229302,0.767287229406642,-6.50953344732078 +"Q9VZU4",0.0404749176928192,21.4020026679134,0.651691364745165,0.524254607529373,0.767318483241376,-6.51035051978145 +"Q9VEJ3",-0.0693657213127246,20.0154421212362,-0.651417989482673,0.524426301495904,0.767318483241376,-6.51053249655117 +"Q0KI15",-0.0454007074298648,15.6037098601969,-0.644874370612983,0.52854548051697,0.772667713849523,-6.5148668116575 +"Q9VLR5",0.0632961410325343,16.8730873765268,0.642955271441375,0.529756975406605,0.773760626075497,-6.51613011784168 +"Q9VWA8",-0.0761036077855817,14.4770046998866,-0.641816756054456,0.530476434369592,0.774133589263761,-6.51687789608586 +"Q9VH37",0.0715938000967498,16.6353157937398,0.640991095392005,0.530998533211887,0.774218141081668,-6.51741940592388 +"Q9W258",0.0398941952591265,19.3174119834997,0.637467372257903,0.533229947587896,0.776193283711903,-6.51972301851863 +"Q8MSS7",0.103001401848262,14.1304949571916,0.637103785148542,0.533460487491998,0.776193283711903,-6.51996002660664 +"Q9VKV9",-0.0466677710620296,15.6154099542281,-0.636204918776972,0.534030670107591,0.776193283711903,-6.52054541210494 +"Q9V434",0.0615686013357308,15.0221477551527,0.635520687712205,0.534464928909661,0.776193283711903,-6.52099049154722 +"Q9W3T9",0.0297303424597608,18.6321929634589,0.635182077897468,0.534679905866293,0.776193283711903,-6.52121058294074 +"Q9VMM6",0.0713360957025877,18.3751424308599,0.633828959295823,0.53553945421633,0.776765051854643,-6.52208898001665 +"Q9VSS2",0.0401039675712767,16.2304029222761,0.632202984157215,0.536573343227917,0.777406820942591,-6.52314215628707 +"A1Z933",-0.0661023674185266,15.7817833543482,-0.631583382295349,0.536967612491126,0.777406820942591,-6.52354280955048 +"Q9W0D3",0.07864339325495,12.7992936690734,0.630935365070645,0.537380134620388,0.777406820942591,-6.5239614383676 +"Q9U1K7",-0.0664263608843889,17.4736723774197,-0.629471490570858,0.538312669008429,0.778060672638353,-6.52490562239307 +"P07668",-0.109331679019295,14.6769587685755,-0.628761880973821,0.53876503411109,0.778060672638353,-6.52536256440174 +"Q8IN49",-0.0336247467554642,16.9208595767712,-0.625349537453171,0.540943275888005,0.779861831966386,-6.52755305681704 +"Q9VBP6",-0.0258589823142508,23.1284348586979,-0.62534319993856,0.540947325890353,0.779861831966386,-6.52755711454167 +"P45437",-0.0374791752000618,16.0942517585338,-0.62431094744489,0.541607211519705,0.780138884986933,-6.52821751434771 +"A1Z7H7",0.0342570946469891,17.86839760322,0.623516864199129,0.542115144014168,0.780196773266291,-6.5287248364987 +"Q95RA9",0.0249855658592821,20.5009681506718,0.621377107737886,0.543485131933218,0.780985927905358,-6.53008882614391 +"Q9VFN9",-0.0448490124155754,16.0444991720098,-0.62119796084668,0.543599917444916,0.780985927905358,-6.53020282138958 +"P00334",-0.0367118046908921,25.1946168948965,-0.61985026663755,0.544463856396991,0.781553969423563,-6.53105938854879 +"O46098",0.0365954266311057,18.0065369466164,0.618663820505632,0.545225048383012,0.781973672143478,-6.53181200625199 +"Q7KVQ0",0.0554365018944907,15.7066085133946,0.617279931113946,0.546113648572984,0.782575228367472,-6.53268813943966 +"Q9VMH2",0.107171459397723,17.3281023559839,0.616295357895929,0.546746327081918,0.782809333538745,-6.53331033190065 +"Q9V9A7",0.121498405937363,16.0776581630576,0.615029182635453,0.547560547433096,0.7830300337645,-6.53410909193318 +"Q9VAD4",-0.0990405737591153,13.3364121012568,-0.613866496356307,0.54830879948403,0.7830300337645,-6.53484119030741 +"Q9VQ29",-0.0350952227628945,22.1437524929704,-0.613866494589227,0.548308800621664,0.7830300337645,-6.53484119141908 +"Q7JVI6",0.0429097571134633,17.4824302335223,0.607028888475176,0.55272039206834,0.787892018653592,-6.5391198889278 +"P42281",0.039138408429551,21.8073675021789,0.606709778493864,0.552926747509493,0.787892018653592,-6.53931846056143 +"Q9VFV9",0.0317566478133493,21.3634138287811,0.606394868150533,0.553130427963643,0.787892018653592,-6.53951432140574 +"Q9V9M7",0.0407963531714017,18.406933019599,0.603717647381812,0.554863657288293,0.789031221301027,-6.54117552632369 +"P12370",-0.0454988172594462,20.7917273321504,-0.603698177848122,0.554876272533636,0.789031221301027,-6.54118758144244 +"Q59E14",0.0529834722308351,14.5774753958477,0.602447188533913,0.555687171866321,0.789511245888436,-6.5419613905659 +"Q961D9",-0.153117296806274,12.4366145173645,-0.600161338499654,0.557170517367658,0.790300428546493,-6.54337136874169 +"Q6IGM9",0.122462936373084,14.7473315025942,0.600130982824425,0.557190230198247,0.790300428546493,-6.54339005861747 +"Q8SWZ6",-0.0353544748063701,13.9601255983062,-0.598328114469564,0.558361674226416,0.79046808804993,-6.54449846132199 +"Q9W077",-0.0356702872126355,20.8249080724984,-0.597820637235486,0.558691653563839,0.79046808804993,-6.54480988452704 +"Q8I099",0.0342689460089147,16.8593425287776,0.597216699965695,0.559084490393196,0.79046808804993,-6.54518017384421 +"Q9VD30",-0.050105664831996,21.4173459245737,-0.596420312265633,0.559602733986938,0.79046808804993,-6.54566791363475 +"Q9VCF8",-0.0333741858052861,16.9538532232398,-0.596304768079883,0.559677944836312,0.79046808804993,-6.54573862595747 +"Q9VJ19",-0.0323087175456394,19.1296075959886,-0.594540620378353,0.560826946177317,0.790986690042084,-6.54681664994571 +"Q9W5W8",0.0315057480167447,20.6968390638825,0.594284969171709,0.560993557745675,0.790986690042084,-6.54697261879796 +"Q9VF39",0.0693904434522956,15.9648201462142,0.59304695392069,0.561800762872106,0.791455804451581,-6.54772700710063 +"Q9VIG0",0.0346647576309298,17.3651697124698,0.591366819457771,0.562897223923273,0.79201975526552,-6.54874840017586 +"P25007",0.0270482069557687,23.8403695104364,0.590250358839775,0.563626457572853,0.79201975526552,-6.54942559265265 +"Q9VV76",0.0520334079963618,16.32932786377,0.590163211840499,0.563683400067838,0.79201975526552,-6.54947840050873 +"Q9W136",-0.037880274562113,18.1784313608829,-0.589525159305211,0.564100401232277,0.79201975526552,-6.54986480989342 +"Q9V3G7",-0.0421742928915414,18.1052452031936,-0.586354738497358,0.566174860652541,0.794263807879258,-6.551778919405 +"Q9W199",-0.0520674776493504,15.8423910777886,-0.584918287519256,0.567116079255862,0.794915647225864,-6.55264291575919 +"Q9VW58",-0.0845564151909599,14.8697571011257,-0.583298539159943,0.568178390269226,0.795735982341787,-6.55361473215295 +"Q6IGN6",-0.070785838366314,16.7636991703126,-0.577366989617868,0.572077513016788,0.800299386530794,-6.55715154341515 +"Q9VPX6",-0.0703536766207726,21.4945080024137,-0.576393373260561,0.572718857611093,0.800299386530794,-6.55772877852502 +"Q9W4A0",-0.0301808355491655,17.1129837673686,-0.576154631996862,0.572876179567007,0.800299386530794,-6.55787018049072 +"O18413",-0.0221115587317087,19.4214419178193,-0.574001014415428,0.574296355720282,0.801026289801291,-6.55914319354718 +"Q9TVP3",-0.0423789776422794,22.91903759782,-0.572222720520373,0.575470410441647,0.801026289801291,-6.56019091085562 +"A0AQH0",0.0605361292444897,16.8968467059548,0.571724601099153,0.575799499530001,0.801026289801291,-6.56048382974872 +"Q9V6B9",-0.0451218138001099,15.8416982892361,-0.571549638638388,0.575915113963703,0.801026289801291,-6.56058665837015 +"Q9V3F3",-0.0619782157604387,14.6073872056612,-0.570813338479362,0.576401790043893,0.801026289801291,-6.56101906503861 +"Q95RF6",-0.0533071199414827,17.3072302482315,-0.570638637560119,0.5765172943338,0.801026289801291,-6.56112158320901 +"A8JNP2",0.0451319666262577,21.1181205697465,0.570274418631962,0.576758137920474,0.801026289801291,-6.5613352178765 +"Q9W1L1",0.0635102680342232,14.8837168405156,0.568936376665811,0.577643380073818,0.801588317772985,-6.56211893222024 +"Q8SX78",0.0370608302732176,15.981165524839,0.567865230481544,0.578352552173098,0.801884743600428,-6.56274504992769 +"Q9VJZ1",-0.0497964117699912,15.4617465883975,-0.56669541705782,0.579127563020662,0.801884743600428,-6.56342754999989 +"Q8MT58",-0.0250869288288413,21.6263027890721,-0.565799209921396,0.579721670314397,0.801884743600428,-6.56394950841601 +"O18404",0.0323966153527984,23.0004786055228,0.565711280981787,0.579779976488079,0.801884743600428,-6.56400067630104 +"Q8SXF2",0.0391742942592952,15.5335314436397,0.563021036774252,0.581565353935265,0.802515438783647,-6.56556250667452 +"Q9VNI4",0.042850413484592,16.4984440059768,0.562898440795831,0.58164678196978,0.802515438783647,-6.56563351012498 +"Q9VHD2",0.0428085542229883,16.6051082668084,0.561502565240069,0.582574333431496,0.802515438783647,-6.56644090849959 +"Q9I7C6",-0.122250807180501,15.4683864318852,-0.5614644445455,0.582599675073207,0.802515438783647,-6.56646293119393 +"Q9VSY6",0.0360063722127926,17.7224056013374,0.560802620520687,0.583039728609024,0.802515438783647,-6.56684504476059 +"B7Z107",0.0840295461481091,15.9791092927627,0.560677819938679,0.583122728900348,0.802515438783647,-6.56691705171729 +"Q8I937",0.0990639268071067,14.014387525103,0.557957605013584,0.584933348849806,0.803739614006588,-6.56848273083445 +"Q9W2X6",-0.0273067747007048,24.1076171080887,-0.557893648298578,0.584975954079135,0.803739614006588,-6.56851945460717 +"A1Z9B5",0.0728827510103773,15.7844461984263,0.556367037668311,0.585993387650024,0.804474872922008,-6.5693948311277 +"Q86BL4",-0.0473079613056022,14.9576581937835,-0.554264913262496,0.587395858420775,0.805676703365476,-6.57059644583818 +"Q9VUM1",-0.0438405110582085,16.5277421508812,-0.553607430376018,0.587834860908744,0.805676703365476,-6.57097137911658 +"Q7K2E1",0.043388708244084,17.4426512464403,0.551669162988935,0.589130016327836,0.805725717167598,-6.57207419986392 +"Q9VHN6",-0.0447462537055419,15.0574572411412,-0.550594875540135,0.589848481667736,0.805725717167598,-6.57268383962386 +"Q9VKU3",0.0358388518451029,15.5394519495429,0.550028813952113,0.590227232788553,0.805725717167598,-6.57300461066457 +"Q9V3Z2",-0.0383024324063932,16.1845119538762,-0.549974803109425,0.590263377817843,0.805725717167598,-6.57303520051096 +"Q9VA76",0.0413518839603793,15.2118978935304,0.549941198590444,0.590285867133576,0.805725717167598,-6.57305423147512 +"Q9VXH4",0.0398631126853211,17.1340598825738,0.548278859316799,0.591398904147001,0.806584932229924,-6.57399425533504 +"Q9VV75",-0.0211889688916536,23.9687786679649,-0.54696248374592,0.592281049876292,0.806642891791292,-6.57473670247495 +"Q9VW40",-0.0404036240027246,14.670634129146,-0.546772232079681,0.592408598587729,0.806642891791292,-6.57484386418079 +"Q9VL18",0.0263018771544914,20.8673137470251,0.543336264005984,0.594714526889894,0.808877510039644,-6.57677304855994 +"Q7PLT4",0.0826911667346035,15.7998280248291,0.542882179108973,0.595019607205421,0.808877510039644,-6.57702712762711 +"Q9V773",0.0390035816860212,15.5495302690913,0.541331594517838,0.59606197128878,0.809363923238169,-6.57789320302558 +"Q9VKQ2",0.039055454893095,15.9684084230538,0.540906526401432,0.596347878692872,0.809363923238169,-6.57813020767792 +"Q8IP97",0.0339339830099235,19.9560624733381,0.539798181652807,0.597093691672546,0.809411741950015,-6.57874734356923 +"Q9VBT2",-0.114818327202451,12.9708685437615,-0.538865734250807,0.597721503516738,0.809411741950015,-6.57926559494814 +"Q9VFC2",-0.0346438379994183,19.8695551434363,-0.538487101892346,0.597976528849324,0.809411741950015,-6.57947579150515 +"Q9VCB9",0.034636130540024,16.9757986090583,0.537392655062599,0.598713991914479,0.809411741950015,-6.58008257069642 +"Q9VIK6",0.03175000441815,16.5930698943386,0.537251102745978,0.598809406214819,0.809411741950015,-6.58016096283852 +"Q7KLX3",0.0317510739590219,19.2901611581495,0.536046347432371,0.599621786663708,0.809853554781429,-6.58082735574416 +"Q9VNC1",-0.072809577853473,15.5901754215958,-0.533871356608264,0.601089797243406,0.811069364906324,-6.58202677299787 +"Q7KNM2",0.0283779080198308,19.6235813320455,0.533029756426357,0.601658314400364,0.811069364906324,-6.58248962055805 +"Q9VRJ4",-0.0199348023501109,20.6966141536974,-0.53226626695643,0.602174297073974,0.811069364906324,-6.58290890185831 +"Q9W0H6",0.0331968811138879,18.1691102036067,0.531036097627688,0.60300613344901,0.811069364906324,-6.58358324934896 +"O97418",-0.0239321826514463,21.0072931927883,-0.530744047983878,0.603203699990495,0.811069364906324,-6.58374312274016 +"Q9VQE0",0.0298444722692324,17.3636870128639,0.530265585887316,0.603527440565887,0.811069364906324,-6.5840048586509 +"Q9W3V3",0.122982107999931,13.1300471011499,0.529443678917978,0.604083765925268,0.811069364906324,-6.58445394028861 +"Q8I0J3",0.0560435325118753,15.0253026986252,0.528376898962532,0.604806216533953,0.811069364906324,-6.58503581700731 +"P50887",-0.0513956691804367,17.7754614717795,-0.528241038424883,0.604898255361791,0.811069364906324,-6.58510984114975 +"Q9W0Z5",0.0377336128929748,16.9305587713928,0.52742506682496,0.605451181315249,0.811158691111515,-6.58555404046295 +"Q9U6R9",0.025461200034993,20.585257613804,0.52561345363312,0.606679672619446,0.812152242318809,-6.5865378818383 +"Q9VU84",-0.0292045663952543,18.4178087498311,-0.523480640058778,0.608127545745353,0.81300181518689,-6.58769197590496 +"Q7JZF5",0.0281145165283174,16.9290777026881,0.523242773448873,0.608289127909615,0.81300181518689,-6.58782040824566 +"D0UGE6",-0.0644048192052349,15.2701437792784,-0.520735984544514,0.609993261547188,0.814208204715833,-6.58917048627917 +"A1Z6S7",0.0284367992299934,17.5635706018377,0.519718760307692,0.610685443139162,0.814208204715833,-6.58971654738115 +"Q9VY41",-0.0803285562322067,16.5398282334143,-0.519131931510329,0.611084931664834,0.814208204715833,-6.59003109721093 +"Q9VNA5",0.0358013796383858,17.3303088323977,0.519044756044818,0.611144287952172,0.814208204715833,-6.59007779543225 +"Q4V6M1",0.0281657113516474,18.2215243359801,0.516061397185904,0.613177298529331,0.815804626754963,-6.59167136150301 +"Q9XYW6",0.0409042465626541,16.6203581169738,0.515128748408634,0.613813525823126,0.815804626754963,-6.59216771807043 +"Q9VV36",0.0329893611870915,23.0997147437131,0.514826492711405,0.614019785039722,0.815804626754963,-6.59232839285449 +"Q9VMQ7",0.0529892350714842,15.9169941817517,0.512711186511419,0.615464209456452,0.815804626754963,-6.59345031050889 +"P92204",0.0553015455254524,15.8649455045004,0.51245192314828,0.615641358944327,0.815804626754963,-6.59358751191686 +"Q9VDV2",-0.0670053766073764,14.4313201366146,-0.512194226422298,0.615817462408555,0.815804626754963,-6.59372381784604 +"P38979",0.020681555425611,22.0948205578159,0.510590506860288,0.616913950911225,0.815804626754963,-6.59457059962886 +"Q95083",-0.0256823499189665,19.8974979266263,-0.510485560115885,0.61698573748614,0.815804626754963,-6.59462592325049 +"Q7KS11",0.0803675183564785,15.652887373598,0.510134811303279,0.617225688933886,0.815804626754963,-6.5948107439246 +"Q9VUW4",-0.0370605083008151,14.5677812952657,-0.510123428794447,0.61723347659758,0.815804626754963,-6.59481673967352 +"Q8MSV2",0.0553467428146881,18.2205161261004,0.508048924845971,0.618653597077974,0.816808639073806,-6.5959073281684 +"Q9VJ28",0.0302115826275227,18.9764010627754,0.507523314392034,0.619013657759531,0.816808639073806,-6.5961829651951 +"Q9VY91",0.0933403193473374,16.9471605967168,0.506868763974302,0.619462187307173,0.816808639073806,-6.5965258345134 +"Q9VNF3",-0.0248371334693616,19.1388305080053,-0.50600159555024,0.620056653092045,0.816946680377197,-6.59697941962231 +"Q9I7K6",0.0313109967046969,16.1907077855354,0.502379275989027,0.622542796461149,0.819379373049076,-6.59886600681836 +"Q6IDF5",0.0370389418712733,19.6151946917311,0.501880471078775,0.622885518600857,0.819379373049076,-6.59912476912859 +"Q9VEY5",-0.0235488599082991,20.834353384993,-0.501152052124086,0.623386166996338,0.819391746690222,-6.59950220042694 +"Q9VJC7",0.0381281804291511,18.6015291215002,0.496401595880185,0.626655885021662,0.821770189580285,-6.6019506467414 +"Q9V998",0.0644012016236548,15.8395818518793,0.495767291453506,0.62709308765347,0.821770189580285,-6.60227586750729 +"Q9VDC6",-0.0442736973507145,16.9717470624029,-0.49501123289932,0.627614399236334,0.821770189580285,-6.60266298824343 +"Q9VAN0",-0.0228630897688014,20.4524575107322,-0.494381593940227,0.628048699126052,0.821770189580285,-6.60298494250391 +"Q9VVA6",0.0286760983154544,19.2231337194335,0.494233345142139,0.62815097587048,0.821770189580285,-6.6030606890897 +"Q9VYT1",0.0481898168527728,14.2902547340875,0.494232333701079,0.628151673689966,0.821770189580285,-6.60306120580221 +"Q9VDF4",0.0217092622567385,18.6747345785675,0.482617413626241,0.636189092639049,0.831632763731923,-6.6089273313889 +"Q9VGP7",-0.049114506532133,15.9570994145514,-0.481493845591287,0.636969119876719,0.832000385242261,-6.6094876174194 +"Q9VG76",0.0372747336987942,15.7770748648319,0.478784501268092,0.638851878798326,0.833806677492651,-6.61083346777306 +"Q9W1V3",-0.0372184749828488,16.3824484106225,-0.473816947395027,0.642310552503443,0.836769471909004,-6.61328192829968 +"Q9VMU0",-0.0346051338817581,21.1344903415807,-0.472928214385463,0.642930239760812,0.836769471909004,-6.61371736258545 +"Q9VSJ8",0.049064392846768,15.7512155574891,0.472717843553764,0.643076965173206,0.836769471909004,-6.61382031750238 +"Q9I7T7",0.0643996423863928,14.5037514306828,0.472643852132746,0.64312857493246,0.836769471909004,-6.61385651813252 +"Q960M4",-0.0298099849781224,23.2119323258345,-0.469677085833564,0.645199483207265,0.838215203402464,-6.61530348814893 +"Q9VFB2",0.0348075795137675,16.445284471854,0.469344378118259,0.645431914385887,0.838215203402464,-6.61546520667515 +"Q9VF28",0.0422760429732456,17.7510924228796,0.468892980306233,0.645747323964128,0.838215203402464,-6.61568443869292 +"A1ZA83",-0.0286466638654304,17.053003110732,-0.467616090658302,0.646639917010016,0.838352735967282,-6.61630348068097 +"Q9W483",-0.0469693529059594,15.5722123491555,-0.46730352698511,0.646858495917201,0.838352735967282,-6.61645476315248 +"Q9VIN9",0.0280628746221794,16.4522736798313,0.466280150737337,0.647574387729393,0.838628943115394,-6.61694939502492 +"Q9VMH9",-0.0225226629701538,20.0555466315492,-0.46548998170428,0.648127387521052,0.838693935131974,-6.61733058921774 +"P05389",0.0206730811637428,20.5504569630224,0.459947216864624,0.65201248317845,0.84306730383074,-6.61998687025578 +"Q8SY33",0.0256730305278907,17.3894677665956,0.458172058450361,0.653258954467002,0.844024737452332,-6.62083104556005 +"Q9VKR4",0.0348405127883105,19.2044761663378,0.455580127757786,0.655080855921951,0.844332418377619,-6.62205793355945 +"Q9U5L1",0.0192254295544956,17.6808336224665,0.454050099402748,0.656157395164559,0.844332418377619,-6.62277899252523 +"O77430",-0.0196341966374547,19.5431140055863,-0.453901487388208,0.656262001607964,0.844332418377619,-6.62284890339088 +"P55828",-0.0265432568739392,19.9669626463738,-0.453297497854905,0.656687219837734,0.844332418377619,-6.6231328062186 +"Q7K1Q7",-0.0235380860014924,16.5300032574157,-0.453138526793133,0.656799158342979,0.844332418377619,-6.62320746876464 +"Q9VAM6",0.0207345707175151,22.0854760098359,0.452901286010472,0.656966225759051,0.844332418377619,-6.62331884416666 +"Q9VRP4",-0.0499252426529075,14.3991852990866,-0.452082957962069,0.657542645607064,0.844332418377619,-6.62370258203656 +"Q9W3H4",0.0226920281173513,19.5096195075528,0.451783890801328,0.657753360664662,0.844332418377619,-6.6238426548098 +"Q9V9T9",-0.0470346831560988,13.4340972676549,-0.451358908114936,0.658052844059295,0.844332418377619,-6.62404154688513 +"Q9VS97",0.0492331533621044,15.1302822517695,0.44953794298445,0.659336753334673,0.844634844466728,-6.62489169623611 +"P02572",0.0222882003928504,26.5748942833381,0.44880178227078,0.659856112717848,0.844634844466728,-6.62523443594125 +"A1ZA22",-0.0771648948217436,13.5975987409147,-0.448255038375578,0.660241955839607,0.844634844466728,-6.6254886335199 +"Q9VTJ4",0.0260548173948703,15.6203823626319,0.447994379149681,0.660425940905648,0.844634844466728,-6.62560971557196 +"Q7KSM5",0.0214614984254879,18.9305354829409,0.447435602450166,0.660820426875947,0.844634844466728,-6.62586904877035 +"Q8IPP8",0.0279794748417572,19.0707397911429,0.446390392649508,0.661558603968858,0.844930896952569,-6.62635329361001 +"P08646",-0.0364700976454202,18.9141711463146,-0.444869587497445,0.662633316073291,0.845655984093534,-6.62705591118775 +"Q7KMM4",-0.087834369062735,14.4854726601703,-0.443923569218215,0.663302227796465,0.845862473978978,-6.62749179668412 +"Q7JZW2",0.0160882504589921,20.5285320958936,0.440084685784439,0.666019657645145,0.848633452748326,-6.62925131388828 +"Q9V3Y2",0.0254418439976654,17.877423384072,0.439417122712931,0.666492699700424,0.848633452748326,-6.62955576516591 +"Q9VAP3",0.0555041097213778,16.4805502870779,0.437283487432758,0.668005593795851,0.849911007209366,-6.63052581742869 +"Q9VTB3",-0.0254300271135222,19.7206045702098,-0.436466172927684,0.668585519872959,0.850000493253122,-6.63089618806848 +"O61722",0.0256664879385262,18.9399706572559,0.433691886203276,0.670555638798736,0.851586275348258,-6.63214833190562 +"Q9Y162",0.0224026115113745,20.1870384755023,0.433272135439407,0.670853936335498,0.851586275348258,-6.63233710353966 +"Q8ING0",-0.0423884545882167,14.6477582490549,-0.431722340101371,0.671955798754219,0.852336328762005,-6.63303253774456 +"Q9V4C8",-0.0221397167204209,17.2387864156534,-0.430159693610409,0.67306758384949,0.853097819043274,-6.63373127691177 +"Q9VMD3",0.0229023633694521,17.7803358017747,0.42889637236863,0.673966981613281,0.853270316754168,-6.63429436502547 +"Q9VXN1",-0.046280307356815,13.6332806434948,-0.428531578785147,0.674226785061147,0.853270316754168,-6.63445666024671 +"Q8SWS3",0.0349903194958614,16.4742294988022,0.426175321756536,0.675905923619222,0.854746838966538,-6.6355017024262 +"Q9VH19",-0.040481465775164,13.9885956301637,-0.42533703759261,0.676503738486188,0.854854724087092,-6.63587213989046 +"Q9VVS6",-0.0388488600550065,16.5208454528205,-0.423924786794068,0.677511379946442,0.85512863436629,-6.6364946025288 +"Q9VDI5",-0.0374139713667407,16.6701730126208,-0.423596314606301,0.677745836110453,0.85512863436629,-6.63663908992693 +"Q9W379",-0.0301277664228543,16.3214366602464,-0.422851180783009,0.678277823426597,0.85515299280088,-6.636966451774 +"Q9W257",-0.0503275202832967,17.065856040695,-0.417390080290115,0.682182141047179,0.858219029996317,-6.63934850840019 +"Q9VTM6",0.0752170269901029,16.2378378117642,0.417317019149856,0.682234438658075,0.858219029996317,-6.63938017157951 +"Q9VFM0",-0.0424833332568966,14.3512391004061,-0.416743219436991,0.682645226374595,0.858219029996317,-6.6396286561225 +"P29327",0.022479629370828,19.5356750332922,0.415968338418592,0.683200133985147,0.858219029996317,-6.63996368883872 +"Q9VH72",-0.0758626869399066,18.6242919449318,-0.415853626797771,0.683282297263255,0.858219029996317,-6.64001323453414 +"Q9VG00",0.0463833266165494,15.2611050093459,0.412260141582052,0.6858582507312,0.860512264609953,-6.64155855174619 +"R9PY51",0.0301848128873843,21.508479189438,0.41186761283464,0.686139875258535,0.860512264609953,-6.64172655769977 +"A1ZB79",0.0213820087291481,20.7839734867978,0.409589775276394,0.687775083339367,0.861914980473377,-6.64269840413686 +"Q9VXE0",-0.0265599858523409,18.0267429344945,-0.407295645810286,0.689423612652959,0.862890142505131,-6.64367187321938 +"Q9VGP6",0.0192777746120179,17.9680198566331,0.407067191609262,0.689587865683057,0.862890142505131,-6.64376852046377 +"Q9W1R3",0.0182274651100691,16.967994979483,0.404999441264023,0.69107525940408,0.864103097965522,-6.64464086624762 +"P17704",0.0172161265993509,20.3194271067957,0.400854094130516,0.694061080101733,0.867186428172053,-6.64637661672173 +"Q9VQX3",0.0514704243627211,15.3046044687821,0.398081095907163,0.696061346929318,0.869034675657262,-6.64752797483347 +"Q9V3L6",-0.0312768980555944,15.8467981646997,-0.394827237910144,0.698411445187414,0.871316597286916,-6.64886900661061 +"Q9W2D9",0.0409306495178594,17.6673753410163,0.393843131852236,0.699122844066098,0.87131672418339,-6.64927246863337 +"Q9VQL1",0.0164185565506223,20.1046531700881,0.393381999825089,0.699456291175995,0.87131672418339,-6.64946118330857 +"Q9VM12",-0.0200274667768063,18.9493164431643,-0.391246125278641,0.701001584948559,0.87259003260761,-6.65033244788353 +"Q9VSX2",0.0204195772955202,17.944612204411,0.387079515237414,0.704020021128449,0.875693807041203,-6.65201870822998 +"M9NDE3",-0.0175251004721346,16.1745448895629,-0.386305877763244,0.704581037974012,0.875738577750113,-6.6523298573371 +"Q7K3N4",-0.0206513811690741,17.1134116789979,-0.38545191994455,0.70520050593786,0.875855877814111,-6.65267260179045 +"Q9VLM9",0.0243423203188726,18.4070665626877,0.381764118670393,0.70787813294126,0.878527325703886,-6.65414419516352 +"Q9VXP3",0.020160220740534,14.6276616252256,0.380378863405908,0.70888496490245,0.878821940490393,-6.65469338716748 +"Q9Y0Y2",0.0228358406249036,19.4917901615721,0.379949019332229,0.709197498323721,0.878821940490393,-6.65486340304587 +"Q9W1X5",0.0148677920023665,19.4241554633596,0.379174258496567,0.7097609517641,0.878821940490393,-6.65516936724751 +"Q9VFZ4",-0.0284620787267755,16.5965349127858,-0.378539101551889,0.710223007062979,0.878821940490393,-6.65541974277012 +"Q9VQ62",0.0522984440904608,19.6659141763928,0.377367941078378,0.711075294215251,0.879057755594859,-6.65588032812754 +"Q9V3Q4",0.0320208759260936,15.9896449174582,0.376344565302355,0.711820359781248,0.879057755594859,-6.65628164717224 +"Q9VE94",-0.0416106801713934,14.6671265901944,-0.376105270992437,0.711994620988402,0.879057755594859,-6.65637533267365 +"Q9VY92",0.0281246795899115,21.3330360042293,0.37351459902766,0.713882283043081,0.88012089515874,-6.6573858556527 +"Q05856",0.0417658593571844,13.6879009214686,0.373475188634878,0.713911013878762,0.88012089515874,-6.65740117520873 +"Q9VCW2",0.0316341851966619,15.3914870989471,0.372312546930909,0.714758799808914,0.880515271847318,-6.65785240176648 +"Q9W236",0.0253474010732617,16.5237999397492,0.365852244656504,0.719476614160606,0.885673057136451,-6.6603345056511 +"Q94529",-0.0165717070365048,19.6401292345299,-0.364904075173741,0.720170037526154,0.885872878018898,-6.6606952089695 +"Q9VKR0",0.128963796399804,13.2941885390495,0.363373583611354,0.721289864054513,0.886231321677944,-6.66127549920392 +"Q8IM93",-0.0221319414246786,19.0276876481251,-0.363053614353732,0.721524061653866,0.886231321677944,-6.66139651355493 +"Q7KMP8",0.0191144223938338,19.2071178358408,0.362084435734741,0.722233615387293,0.886450088643123,-6.66176242363198 +"O02195",-0.0178328501085332,18.7009134654294,-0.361169696268729,0.722903554511275,0.886619947738828,-6.66210689857034 +"Q9VN14",-0.0133442066021949,19.3247715347831,-0.35924966190563,0.724310513863362,0.886783285384471,-6.66282716438498 +"P49028",-0.0386795167657148,16.3690630820527,-0.358445704032732,0.724899941557802,0.886783285384471,-6.66312763346983 +"Q8SXG7",0.0383601566779763,13.9753012480127,0.357313629674998,0.725730234494162,0.886783285384471,-6.66354960981165 +"Q9VHT3",0.021086647310506,15.7319151931264,0.356531944702212,0.726303749878721,0.886783285384471,-6.66384021386231 +"Q9VNI8",0.0210291800748941,15.7419633164439,0.35651062532432,0.726319394086012,0.886783285384471,-6.66384813091955 +"Q7JWD3",-0.026684778020245,17.0995349645606,-0.356341561977476,0.726443457596434,0.886783285384471,-6.66391089695258 +"Q7JWF1",0.0222150206575655,20.5600727128267,0.355912645634081,0.726758244077081,0.886783285384471,-6.66407000400207 +"Q8MKN0",0.0308410246777981,16.6201769515557,0.352755058217851,0.729077192024649,0.888716559558328,-6.66523551419247 +"Q9VMR0",-0.023347343336976,17.3191895471012,-0.352304570669824,0.729408255416877,0.888716559558328,-6.66540096279843 +"Q9VV72",0.0277411033168882,19.409835659099,0.351415599136538,0.730061723622934,0.888863470805149,-6.6657268413453 +"Q9VL68",0.0153018626701673,20.7990471442037,0.347402833532183,0.733014119262538,0.891807112275648,-6.66718775637315 +"Q9VEA1",-0.0203150627792184,18.2271766326935,-0.346415219213036,0.733741426543038,0.892041326147075,-6.66754478211808 +"Q9V3I0",0.0621783769354103,16.3350353897506,0.345623201654542,0.734324880902614,0.892100437979287,-6.66783037617214 +"Q8IQC6",0.0568643929291266,15.9142755302804,0.344701702568039,0.735003932704798,0.892168598750651,-6.66816185018145 +"Q9VIK0",0.0648056103800698,12.7877429779278,0.343999420371839,0.735521596936949,0.892168598750651,-6.66841388436479 +"B7Z0N0",0.0393507634461514,13.0695338342543,0.343076566103126,0.736202049611437,0.892168598750651,-6.66874430779273 +"Q9VDC3",0.0184466067997455,19.2790825273927,0.342644805665882,0.736520479903864,0.892168598750651,-6.66889859742038 +"Q9VE56",0.0210310003487173,17.4745470735157,0.341628360602292,0.73727032109119,0.892428806661905,-6.66926106883454 +"Q9VIU3",0.0904254630775689,12.4926248635221,0.34062977119468,0.738007258108123,0.892673028661602,-6.66961614020181 +"Q9VB22",0.0208177332235699,17.2004405191688,0.338796198608581,0.739361084046887,0.893662527674063,-6.67026544365231 +"Q8IN44",-0.0257800494431741,19.8683741411854,-0.337392407341522,0.740398180588026,0.894268041434343,-6.67076022025292 +"Q9VC31",-0.0244067323727357,17.6712190678343,-0.335840629135129,0.741545211789072,0.89500536415642,-6.67130480099108 +"Q7K3W2",-0.017081477326645,17.5828830694103,-0.333333836171903,0.743399497946846,0.895264404245827,-6.6721793091553 +"Q9W1X4",-0.0327731120682184,15.125253145146,-0.333039540901786,0.743617297232464,0.895264404245827,-6.67228155218001 +"Q7K3Z3",0.0159187272914991,19.8781562718374,0.332838789517582,0.743765880390198,0.895264404245827,-6.67235124545999 +"Q8SYD0",0.0238048529393993,15.4522077910631,0.332648468763208,0.743906753168295,0.895264404245827,-6.67241727938056 +"Q9VKY3",-0.0186185326518711,18.7649411749134,-0.330379952554104,0.745586602326361,0.896224121087483,-6.67320150041366 +"P12080",-0.0149414657298443,19.0620897410562,-0.32978678866167,0.74602606359729,0.896224121087483,-6.67340568353962 +"A1Z729",0.0233079060300661,16.6911330642385,0.329146940346159,0.746500214220468,0.896224121087483,-6.67362553121279 +"Q9VH07",0.0178168280760218,18.2239835556808,0.32867037594546,0.746853434239569,0.896224121087483,-6.67378900212732 +"Q9VJ43",0.0180818881097196,20.2566934102394,0.326853628790786,0.748200507170336,0.89719514447169,-6.67441004009052 +"A1ZBM2",0.0235937805904491,18.5850377736808,0.325293285504351,0.749358138853299,0.897937769832832,-6.67494071942542 +"Q9VKC7",0.0425349873747756,13.77694344959,0.322235384323015,0.751628622133041,0.900011874887231,-6.67597346134417 +"Q7KTA1",0.0440052468805909,17.0984621039577,0.317681584939337,0.755014189542829,0.903417265536183,-6.67749357735337 +"Q9VMC8",0.0226069256285832,16.3599722848299,0.312283305070695,0.759034308407083,0.907576506396427,-6.67926793475341 +"A1Z934",0.0163057261055322,19.2971216207708,0.307683249925972,0.762465656679753,0.911026300388128,-6.68075623288765 +"Q9U6M0",0.0201770641277754,16.2770238247298,0.305970623771293,0.763744484892527,0.911688184491359,-6.6813047629383 +"B7YZT2",-0.0296378884347028,18.4225236876308,-0.304546869611701,0.764808151053793,0.911688184491359,-6.68175846934881 +"Q9VCY3",0.0220880850927507,17.8672602120816,0.304324427777492,0.764974378304756,0.911688184491359,-6.68182916588172 +"Q9VMS1",0.0162676493149441,22.3898625006807,0.302837539253429,0.76608581213397,0.911688184491359,-6.68230041868295 +"Q9VK60",0.0145034532133366,21.3328798617399,0.302486581676263,0.766348226711785,0.911688184491359,-6.6824113181627 +"Q9W392",-0.0126745227899399,20.0079164538587,-0.302353600886021,0.766447665520304,0.911688184491359,-6.68245330572238 +"Q8IMT3",-0.0285504414439721,14.7486602429198,-0.301557589542098,0.767042985971154,0.911688184491359,-6.68270425817166 +"Q9VKJ4",-0.0206368830116297,15.1198273905873,-0.299384931157185,0.768668641586476,0.911688184491359,-6.68338588865319 +"Q9VCA5",0.0315818674072812,14.2288016641181,0.299299390786493,0.768732668719631,0.911688184491359,-6.68341262567432 +"Q9VM58",0.0206796182078204,16.4386853940296,0.299131943596646,0.768858008290613,0.911688184491359,-6.68346494213534 +"Q8SX68",0.0177751445858032,17.5545048816255,0.298362947517468,0.769433711757434,0.911688184491359,-6.68370483232434 +"A1Z847",-0.0164136275177391,20.0786029324823,-0.298165677751173,0.769581418932879,0.911688184491359,-6.68376627275187 +"B7Z0C9",0.0210358020932411,15.955244232334,0.296228745958927,0.771032198615929,0.911688184491359,-6.68436740440135 +"Q966T5",0.0189988587846663,16.5266111685044,0.295803710610363,0.77135067217338,0.911688184491359,-6.68449879707522 +"Q9VD58",-0.0103311562412962,22.7209055176255,-0.295742373558676,0.771396634746065,0.911688184491359,-6.68451774301613 +"Q9VZG1",-0.0155497807609315,17.756194577628,-0.294921711014733,0.772011678469697,0.911688184491359,-6.68477085768728 +"Q9VQB4",-0.0116030238956206,21.7795675142566,-0.29452187252556,0.772311393696817,0.911688184491359,-6.68489392685907 +"Q9VSC3",-0.0269144845037523,17.5682062031792,-0.29012806193736,0.775607406323042,0.913451344027003,-6.68623545487626 +"Q9W3G8",0.0327389199836059,15.7625507490309,0.289820326195028,0.775838421602378,0.913451344027003,-6.68632866628169 +"Q9VN91",-0.0252663171375112,19.6171426144856,-0.289741615069804,0.775897513053898,0.913451344027003,-6.68635249172288 +"M9PHA0",0.0206390479405698,17.4248557463611,0.289611050173183,0.775995536262747,0.913451344027003,-6.68639199891311 +"Q9VEW1",0.0527890362787922,14.6271042951221,0.287564175345139,0.777532765157057,0.914387780176159,-6.6870090535736 +"P08736",0.0146949328587205,24.3646443327998,0.287092086618791,0.777887446085113,0.914387780176159,-6.6871507559733 +"Q7K3W4",-0.0191052848580107,19.3137126208907,-0.284117708497836,0.780123268974149,0.916370149752733,-6.68803824995627 +"Q9W229",0.018267671790376,19.1574123724685,0.281772595892659,0.781887489789207,0.917796152687119,-6.68873153654932 +"Q9VIV6",-0.0534139505386548,14.8809002136255,-0.279028461595322,0.783953461894106,0.918954740043259,-6.68953556608686 +"Q9VSL4",0.014891974519049,20.9134564616328,0.278998038450406,0.783976375948176,0.918954740043259,-6.6895444364008 +"Q9VYV3",0.0120475283466597,20.5132311278314,0.27635412332478,0.785968500733353,0.919943763680086,-6.69031165173183 +"Q8IH18",0.0185264453238858,15.6534555776582,0.276152098538601,0.786120785067325,0.919943763680086,-6.69036997820467 +"Q95RB1",-0.0167675248110584,15.9436391430334,-0.27568262502489,0.786474704441128,0.919943763680086,-6.69050535658249 +"Q9VMQ9",-0.0155970886099865,22.113574780458,-0.27212650309124,0.789157109787897,0.921888858521114,-6.69152340082954 +"Q24298",-0.0134037240496596,19.3929901094525,-0.271077420459687,0.789948966881379,0.921888858521114,-6.69182123145011 +"O44386",0.0134189693980105,16.8803116333893,0.270924227825546,0.790064618071825,0.921888858521114,-6.69186462693837 +"Q9W3X8",0.0384495407716798,13.8913247374019,0.269910006148119,0.790830422458793,0.921888858521114,-6.6921513166993 +"O17452",0.0249763448329716,19.8662812737582,0.269816478680181,0.790901053083761,0.921888858521114,-6.69217770045354 +"Q9VUK8",-0.0115742914687154,20.7463641444383,-0.266090015674394,0.793716756724586,0.92413738335762,-6.69322155215647 +"Q9VLP2",0.0268645530567042,19.3345621578315,0.265400441348776,0.794238122806698,0.92413738335762,-6.69341313796177 +"P91941",-0.0161905395400836,23.0838243211787,-0.264707669003021,0.794762008707031,0.92413738335762,-6.69360511631467 +"Q9W147",-0.0198872597373345,13.765443503422,-0.264331852408862,0.795046250070854,0.92413738335762,-6.69370905313714 +"Q9Y128",0.0279977678115042,14.2987237587115,0.261790596316566,0.796969062145495,0.92572729502694,-6.69440802967949 +"Q95SS8",0.0143081062166992,15.5620005249743,0.259912850125903,0.798390709644135,0.926733266309268,-6.69492020785705 +"Q500Y7",-0.0122421270721524,20.0524794161375,-0.258276941348349,0.799629861420639,0.927173752830243,-6.69536344337311 +"Q9V8Y2",0.0255490935461111,19.9141164099919,0.257944277099805,0.799881912663501,0.927173752830243,-6.69545323651814 +"Q9VDC0",0.0193410278459449,17.569287758235,0.255780183823786,0.801522149939317,0.927967611446448,-6.69603457060095 +"Q9V3G3",-0.0359403269166148,14.9146128323417,-0.255572708135032,0.801679453293963,0.927967611446448,-6.69609004912786 +"Q9VHC3",0.0152731644491766,17.2194259054418,0.253628408942482,0.803154005846867,0.928530951124043,-6.69660778125702 +"Q94522",-0.0125577053199599,23.4699495358943,-0.25342524371777,0.803308130557572,0.928530951124043,-6.6966616543118 +"Q9VEC2",0.0125360121690203,16.6923656271245,0.252590011551852,0.803941840735392,0.928530951124043,-6.69688268198753 +"Q9Y171",0.0414163485874237,15.0908287608899,0.251282801435272,0.80493393618155,0.928530951124043,-6.69722715692896 +"Q9VZW1",0.0315346319301906,14.8265246599849,0.251262306219206,0.804949493600339,0.928530951124043,-6.69723254369895 +"Q9VII5",-0.0200804581016385,17.3477639105238,-0.249743488857278,0.8061026269212,0.928918665964185,-6.69763052275766 +"Q8IMX8",-0.0131687102659868,17.1640523420114,-0.249352678518873,0.80639941745572,0.928918665964185,-6.69773254053979 +"Q9VCK0",0.0169925984353867,18.2468436096057,0.247136598660202,0.808082939505772,0.930215557691945,-6.69830803270644 +"A1ZBK7",0.0197843948069085,17.5826493128679,0.24617572131187,0.808813207980544,0.930414090283826,-6.69855597840845 +"Q95U34",0.0132884603678676,19.4638013237098,0.242958919669022,0.811259313188727,0.9325847928317,-6.69937907096711 +"A1ZB23",-0.0319855326286032,15.8673299143689,-0.238986850742598,0.814282532739534,0.934553130070605,-6.70038059377927 +"Q9W2K2",0.0293198313626508,15.6420207399878,0.238248763458928,0.814844642591217,0.934553130070605,-6.70056489105327 +"Q9W425",-0.0318612900473418,13.9835143410396,-0.237846274773804,0.815151212697843,0.934553130070605,-6.70066515238288 +"P0DKM0",-0.015301754733084,16.997481203637,-0.237765538211334,0.815212712381733,0.934553130070605,-6.70068524388044 +"P23128",-0.0334400182587054,14.6640427237968,-0.234775047977383,0.817491546120645,0.93634727916733,-6.70142466475477 +"Q9VRU1",0.0240734730524359,17.2560516871822,0.234132457882743,0.817981439439403,0.93634727916733,-6.70158233725699 +"Q9VI10",0.0192988407397614,17.1973075788165,0.233502431677384,0.818461830351299,0.93634727916733,-6.70173651042646 +"Q9W0X2",0.0182451844104428,16.0129307108698,0.231101621137738,0.820293118897316,0.93751047037956,-6.7023202301303 +"Q9VU75",-0.0111252162398543,18.2515855139063,-0.230369355612921,0.820851891079268,0.93751047037956,-6.70249707695273 +"Q24238",-0.0153294424798052,16.3788437452488,-0.229133784882507,0.82179494869639,0.93751047037956,-6.70279421163388 +"Q0E9B6",0.0113119947604652,19.1145416785277,0.228959454294202,0.821928030536513,0.93751047037956,-6.70283600756463 +"Q9V8F5",-0.0174018499979187,16.0079886319342,-0.22825029718398,0.822469450492944,0.93751047037956,-6.70300570303727 +"Q9VQ91",-0.0142083210321768,14.9730225022346,-0.227568388170729,0.822990155110184,0.93751047037956,-6.70316838520807 +"Q9VMH8",0.0102001228313746,18.9196842380788,0.225786911840007,0.824350891777375,0.93751047037956,-6.70359110849707 +"Q9W414",0.00875830572048386,19.5571386192577,0.2256929024004,0.824422714747748,0.93751047037956,-6.70361332416611 +"Q9V406",-0.0165656486746713,17.0144754808131,-0.224851247754902,0.825065808746239,0.93751047037956,-6.70381180881066 +"P20351",0.0242061510576654,13.9791973063708,0.224807625892306,0.82509914299592,0.93751047037956,-6.70382207593258 +"Q9VUZ0",0.0199488367837724,17.6496653731969,0.223748670404114,0.825908464812174,0.937791231658752,-6.70407071140683 +"Q9U9P7",-0.0190902659129986,16.5982610564125,-0.222452734211886,0.826899179505133,0.938018486176866,-6.70437340140175 +"P53501",0.00851842489301191,24.6240794348649,0.221918685800545,0.827307536106324,0.938018486176866,-6.70449763010214 +"O18335",-0.00908036516736388,21.6469906656247,-0.221280366148365,0.827795690439057,0.938018486176866,-6.70464572485945 +"Q9W1W4",0.0160538245488588,17.2907682443117,0.219490737099904,0.829164697297372,0.938804895597182,-6.70505867168497 +"Q9W1N3",0.0122509400691015,20.5128130276862,0.218515402101736,0.829911036964391,0.938804895597182,-6.70528232195192 +"Q9VWH4",0.00773387504237277,24.3652003971346,0.218166333583488,0.830178190051465,0.938804895597182,-6.70536212499051 +"Q9VES8",0.012253544022208,17.9888676630929,0.216149484016113,0.831722170338694,0.938891892840845,-6.70582072874046 +"Q9Y0Y5",0.0105038960288688,18.6274916578767,0.216066921697695,0.831785390424477,0.938891892840845,-6.70583941208553 +"Q9VC48",-0.0121239079432804,18.4413668388676,-0.215663340578183,0.832094440072713,0.938891892840845,-6.70593063792061 +"Q95NU8",-0.0145942543966768,17.3584655420832,-0.214439969114919,0.833031433567506,0.938891892840845,-6.7062061341627 +"Q9VN21",0.00830765687843993,22.0433449873922,0.214390216453131,0.833069545206505,0.938891892840845,-6.70621730521438 +"Q7JXC4",-0.00903670269649126,21.6189177461977,-0.212071353187951,0.834846323148604,0.940082297511896,-6.70673510504868 +"Q9VXC1",0.0127284044498026,18.3182581743349,0.211540802774458,0.835252976566325,0.940082297511896,-6.70685278956435 +"Q9VZ67",-0.0142656293818106,15.151715056122,-0.20726691699514,0.838530559830736,0.942912285474948,-6.70779011566005 +"Q9VLT8",-0.0202582975088283,13.9508555856026,-0.205613538844982,0.839799343483953,0.942912285474948,-6.70814762308496 +"Q9VVH3",-0.0108063609812561,19.8895513017205,-0.205524053412011,0.839868026695878,0.942912285474948,-6.70816689116258 +"Q9VVN2",-0.0188056420335325,14.9269588089672,-0.205041030288012,0.840238787060936,0.942912285474948,-6.70827075208103 +"Q9V428",0.0119209458128182,18.7343447851477,0.204089690194841,0.840969133595584,0.942912285474948,-6.70847460105691 +"P48148",0.0141966601919279,20.6564043639957,0.203716549095113,0.841255636267581,0.942912285474948,-6.70855429867731 +"Q9VJ25",0.0260340767291964,15.7067397896782,0.203106022846824,0.841724456278296,0.942912285474948,-6.70868438556473 +"Q7KUK9",-0.0183392717894435,18.4155809725565,-0.200550719408245,0.843687329053159,0.944476822054141,-6.70922463854609 +"Q9VAV2",0.0107663715169188,17.7674501325864,0.199349102898989,0.844610728848505,0.944876388812412,-6.70947633740578 +"P08182",0.0090977294935648,19.6615495203309,0.198076009030429,0.845589312872809,0.945337113855124,-6.70974136678541 +"Q9VLR3",-0.0175554484889631,16.758317014552,-0.196728041418928,0.846625735589923,0.945861839895507,-6.71002014204179 +"Q9W197",0.01074090022421,17.3533409407358,0.193218807565404,0.849325273678985,0.947861314354168,-6.71073700829095 +"Q9VAY9",-0.0142747149138156,14.5982346967918,-0.192924248306066,0.849551957409761,0.947861314354168,-6.7107965968057 +"O97422",-0.027586340974894,15.403029317828,-0.190930950301816,0.851086296897381,0.94850311779858,-6.71119745790132 +"Q7K3E2",0.0159902206991553,20.5115944503839,0.189227872508385,0.852397731574438,0.94850311779858,-6.71153667212899 +"Q9W253",-0.0123707014160903,15.194697491675,-0.188802300336032,0.852725508639966,0.94850311779858,-6.71162096401549 +"Q9VXN4",0.0111508405308882,14.9939832243931,0.188799296844059,0.852727822038755,0.94850311779858,-6.71162155823746 +"Q8I941",0.0129304749197487,19.0311556260169,0.188484328729038,0.852970429674982,0.94850311779858,-6.71168382046827 +"Q9VLP3",-0.0147938792696998,17.5049675819661,-0.187624194032315,0.853633035743466,0.94860753072625,-6.71185332296973 +"Q9W3C4",0.0407509055043924,14.800857515061,0.185634546382377,0.855166198533867,0.949364412845288,-6.71224245583681 +"Q8MRT7",0.0158120660518772,15.4242879439663,0.18526313283702,0.855452465531456,0.949364412845288,-6.71231463905331 +"Q9VTT2",-0.0336343942323687,14.0428796483007,-0.18425772943134,0.856227485159695,0.949592716254236,-6.71250931441589 +"Q7JXZ2",-0.0194135551872172,17.5511053363175,-0.1833238868869,0.856947478514108,0.949759730339889,-6.71268918881837 +"Q9VPR1",0.0244255702526335,13.6635818059896,0.181484433702203,0.858366081036292,0.950066324495476,-6.71304083826827 +"Q9XYZ9",0.011178086708199,21.9694467034747,0.180566998101625,0.85907380395111,0.950066324495476,-6.71321490537459 +"Q9VKX2",-0.00770220016660872,23.1080530454381,-0.180515088175545,0.85911385174019,0.950066324495476,-6.71322472810526 +"Q9VZ20",-0.00745536611537645,18.7115425488531,-0.180011416395392,0.859502448239612,0.950066324495476,-6.7133198901077 +"Q9W380",-0.0162754803648077,18.402032807262,-0.177423480270696,0.861499699900089,0.951643377108178,-6.71380467058987 +"Q9VZZ5",0.0108858870802457,18.4644267642961,0.175944181557853,0.862641794404358,0.951867291986299,-6.71407863747014 +"Q9VRG6",-0.00973004496306906,16.3482489158855,-0.175682664028262,0.862843732304127,0.951867291986299,-6.71412683302964 +"P45889",0.0104387130855983,19.1661946900088,0.174928792264295,0.863425910117043,0.951879985509073,-6.71426536591677 +"Q9VNR6",-0.0192859431059205,14.6587683978239,-0.17325875008129,0.864715891168919,0.952014400879545,-6.71457014285653 +"Q7KTH8",0.00792828790855182,17.6243388310672,0.17211258604943,0.865601445934511,0.952014400879545,-6.71477762872185 +"Q7KN94",0.00809583790078605,22.626052830014,0.171908533841224,0.865759121245639,0.952014400879545,-6.71481442369902 +"E1JIY8",0.0232563379763917,16.4001448480759,0.171366987313225,0.866177613810312,0.952014400879545,-6.71491186530143 +"Q9VJN0",-0.0184234802832748,17.5332196901205,-0.170901947869734,0.866537016722276,0.952014400879545,-6.71499529641282 +"Q9W2E8",0.0118485238048969,19.3372938511048,0.170338716816626,0.86697234708395,0.952014400879545,-6.71509604133469 +"Q9VDK7",-0.00863750806759711,17.8691561342521,-0.168660318261652,0.868269871179901,0.95281193758426,-6.71539429120911 +"Q9VAY6",0.00864539496158656,15.199815033497,0.167712637845049,0.869002669814159,0.952832395502384,-6.71556139350645 +"Q9VGT8",-0.0138753756535372,15.3189516366013,-0.167158782306358,0.869430998773758,0.952832395502384,-6.71565861924742 +"O44434",0.0112159830111871,15.8558483403703,0.163966270280812,0.871900773378297,0.953973899231297,-6.71621279698966 +"P02515",-0.0210061186333519,18.0326995472869,-0.162693807573819,0.872885554119365,0.953973899231297,-6.71643071179899 +"Q9W3M7",0.0092003337171267,16.064050702907,0.162293759533026,0.873195203044814,0.953973899231297,-6.71649887223234 +"Q9VX36",-0.00649602322100407,22.21294527592,-0.161914593872448,0.873488708130922,0.953973899231297,-6.71656332035561 +"Q9V405",0.00808412497763911,20.2211633143271,0.161169470220565,0.874065550282193,0.953973899231297,-6.71668953396288 +"Q9VR89",0.0174797722684108,13.939447283686,0.160380453529337,0.874676452810007,0.953973899231297,-6.71682254999449 +"Q9VED8",-0.0111494996118537,16.3629338971043,-0.160102900968281,0.874891369683653,0.953973899231297,-6.71686918639437 +"Q9W5R5",-0.00892441448534242,15.8608511023285,-0.15963753785309,0.87525173641479,0.953973899231297,-6.71694719944049 +"Q9VI04",-0.0192408526129331,16.3768863428065,-0.158834807565824,0.875873419567174,0.953973899231297,-6.71708123649897 +"Q9VQQ0",-0.0138617231677109,18.2870671730229,-0.158423679663148,0.876191854689656,0.953973899231297,-6.7171496243966 +"Q8I725",0.0108201613097627,18.9219100194765,0.154782703986148,0.879012893374663,0.955882086647068,-6.7177475617218 +"Q9W2E7",-0.00796229177995755,18.5299144004002,-0.153923730185237,0.879678676832977,0.955882086647068,-6.7178866059752 +"Q59E04",0.0133080230256546,16.3912301896664,0.153052261798527,0.880354240425046,0.955882086647068,-6.71802688448261 +"P08120",-0.0132646855059697,18.2201574118654,-0.152632132994289,0.880679959174613,0.955882086647068,-6.71809422810831 +"Q7KUT2",0.00886142650658073,18.2106855216054,0.152464649543135,0.880809812455961,0.955882086647068,-6.71812102305348 +"Q9VTC1",-0.00997885672909149,15.825699492882,-0.150376711114579,0.882428927870722,0.956194522979382,-6.71845260129571 +"P13496",-0.00704575472206059,18.264365092204,-0.150094301907593,0.882647966961593,0.956194522979382,-6.71849709974436 +"Q9VJ86",-0.0130271393552732,16.5313733117483,-0.149214199313505,0.883330645621815,0.956194522979382,-6.71863524016949 +"Q8SY67",0.0201081750086196,16.0328716455171,0.148312744835136,0.884029985392656,0.956194522979382,-6.7187758922514 +"Q86BI3",-0.00848788652901433,18.0561329281244,-0.148259939264554,0.884070954539387,0.956194522979382,-6.71878410504716 +"Q9VDI3",0.0151468275203772,15.0234047980933,0.147658944684132,0.884537259566658,0.956194522979382,-6.71887737164781 +"Q07093",-0.0157148063234782,14.5701623715482,-0.142264406170677,0.888724772280746,0.959336477782343,-6.71969762006061 +"Q7JYZ9",-0.0082699571055862,18.1199350161953,-0.142023344215558,0.888911977497206,0.959336477782343,-6.71973356337751 +"Q9W127",0.0093080866926627,18.6144413935188,0.141692160031279,0.889169181445745,0.959336477782343,-6.71978284515011 +"Q9VJ80",-0.0103246951221259,16.4790568495054,-0.139664426259663,0.890744237033163,0.960414600757153,-6.72008207934286 +"P08985",0.00760743578295831,20.6484552589139,0.136913762287062,0.892881590771307,0.961770631937374,-6.72048112057151 +"Q9VA37",0.00733429692093779,21.7725286143784,0.136561848419272,0.893155101241602,0.961770631937374,-6.72053160176137 +"Q9VSA3",-0.00719339036886879,21.7215076102327,-0.132972824088571,0.895945314137678,0.963438787029456,-6.72103903733202 +"Q9VAY0",-0.0152498460240391,14.0260012063073,-0.132638122645821,0.896205593689634,0.963438787029456,-6.72108567196662 +"Q9VRP2",-0.00581784527309992,20.4374755847437,-0.131792126632441,0.896863534643983,0.963438787029456,-6.72120302355211 +"O77134",0.00766560413580564,21.6840676022599,0.131597833091849,0.89701465003402,0.963438787029456,-6.72122986902349 +"Q9W1Y1",-0.00920656003943776,17.8305310851913,-0.129887897923244,0.89834476034094,0.964246499516531,-6.72146442594182 +"Q9VQI6",-0.0164563944739538,16.1355099818427,-0.129005907280825,0.899030959127021,0.96436246934011,-6.72158421466576 +"Q9VL70",-0.0069484076497055,23.5249704850464,-0.126274969527687,0.901156184320744,0.965570877150401,-6.72194995568447 +"Q9VXN2",0.0123974125696336,18.4387039589227,0.126006412334202,0.90136521885078,0.965570877150401,-6.72198550052385 +"P92181",0.00859176545383988,16.5019343601809,0.125326922994961,0.901894140647677,0.965570877150401,-6.72207509695908 +"Q9V8M5",-0.00857977686539968,19.8538082749928,-0.120440557637725,0.905699136184062,0.968792410915977,-6.72270516584273 +"Q9VUQ7",-0.0111315300945307,16.536811375786,-0.11997107879711,0.906064844741562,0.968792410915977,-6.7227643857939 +"Q24185",0.00629210180090212,18.6972885274964,0.111722197017298,0.912493952454303,0.9750415840447,-6.72376723146318 +"Q9VHI1",-0.00796470580797504,14.2265818038507,-0.108917426806647,0.914681426709392,0.976262395639937,-6.7240919766408 +"Q9V5C6",0.00570329664384417,20.6291976808424,0.108167646408064,0.91526631077902,0.976262395639937,-6.7241773922382 +"Q9VUJ1",-0.00491435878505087,20.0224658210152,-0.108006122194505,0.915392318213946,0.976262395639937,-6.72419571608301 +"M9PDU4",-0.00709599673062655,22.5434736403093,-0.105127429399732,0.917638418385557,0.978032512375149,-6.72451769870248 +"Q9VA97",0.00784426455827614,18.5438759025509,0.102922635932954,0.91935919900643,0.979110543468706,-6.7247584321591 +"Q9VU70",-0.0149503190809064,14.7443793313778,-0.10205103519285,0.920039574542869,0.979110543468706,-6.72485219386565 +"Q9VSY8",0.00744637917164326,18.0330451217921,0.10088180220773,0.92095238426092,0.979110543468706,-6.72497672249045 +"Q9VP78",0.00428277985800918,14.8995902208097,0.100623068231665,0.921154391093569,0.979110543468706,-6.72500408519187 +"Q9VQJ8",0.00684003263501687,15.2284112349576,0.100071734634571,0.921584864056276,0.979110543468706,-6.72506215800752 +"Q9VYV4",-0.00663157288887284,15.5360331227743,-0.0977457512410204,0.923401233555279,0.979893133402611,-6.72530364947035 +"Q9W306",0.00982087032735102,14.714561137691,0.0971088511194065,0.923898668460529,0.979893133402611,-6.72536878544011 +"Q9VW90",0.0271640014294317,15.0035491269265,0.0958399784065001,0.924889787167535,0.979893133402611,-6.72549728581292 +"Q9VNB9",-0.00912409519090929,18.9527089639193,-0.0953683554943227,0.925258205455697,0.979893133402611,-6.72554461736052 +"Q9VF77",0.0063458260907403,15.7117370840066,0.0932797627465691,0.926889965062491,0.979893133402611,-6.72575142290972 +"Q9VTV9",-0.00660988469175905,17.2444726586716,-0.0914209739464373,0.928342470124187,0.979893133402611,-6.72593162723375 +"Q9VLT7",0.00949488486715921,18.0639268983877,0.0914066664751491,0.928353651373858,0.979893133402611,-6.72593300025177 +"Q9W0Q2",0.00457561668491735,15.5159657278839,0.0912723614295479,0.928458611158252,0.979893133402611,-6.72594587838493 +"Q9VF27",0.00338927117921983,22.2454395341154,0.090956807525825,0.92870522284002,0.979893133402611,-6.72597606153205 +"Q9VHK6",-0.00793024867616765,18.0711183088705,-0.0894621553950351,0.92987342529699,0.979893133402611,-6.72611760833835 +"Q7PLI0",0.00518411657936468,17.7748031496623,0.0892522894391329,0.930037467429692,0.979893133402611,-6.7261372955327 +"Q9VC53",0.00500239177268469,17.8703755713381,0.0889596413863435,0.930266221809515,0.979893133402611,-6.72616467127351 +"Q9VF51",0.00552864817947452,17.6806669277574,0.0889353064681497,0.930285243985527,0.979893133402611,-6.72616694363689 +"Q9VWF0",0.00665116160293877,16.4659960069505,0.0876965352243024,0.931253627247588,0.979893133402611,-6.72628179802545 +"Q8SZA8",-0.0061499985264355,18.0239534725413,-0.0871501259410671,0.931680806861296,0.979893133402611,-6.72633194761798 +"Q9VVK5",0.00726682595084505,15.8650928520295,0.0870988067752532,0.931720929002723,0.979893133402611,-6.72633664161935 +"Q9W2J4",0.00582084809982852,15.2399241471969,0.0861378191831008,0.932472279556667,0.980065382672036,-6.72642402996395 +"Q9VQD7",-0.00359617778330446,20.9709931403091,-0.0815586033894525,0.936053447895072,0.983209792877192,-6.72682714067983 +"Q2MGK7",0.00580187914142982,17.0802881804803,0.078371951406669,0.938546409216051,0.984545854922882,-6.72709468384689 +"Q9VFQ9",-0.00339949837708886,19.1626273449326,-0.0781089832505512,0.938752162773573,0.984545854922882,-6.72711628616151 +"Q9VXA9",-0.0064296563894306,14.2713534025836,-0.0776081762805102,0.93914402043002,0.984545854922882,-6.72715722582259 +"Q8SY69",0.00723139369059922,18.9439972479643,0.0769149657599235,0.939686451461168,0.984545854922882,-6.72721345979191 +"Q9VIT0",0.00435090155811935,16.4449159882083,0.0756916542699957,0.940643756716744,0.984725532012615,-6.72731146625406 +"Q9VIM0",0.00346807849819442,18.067886997628,0.0746806766266383,0.941434970932575,0.984725532012615,-6.72739127649688 +"Q9VCU6",-0.00568319361603464,15.4529955935673,-0.0742035192771247,0.941808427332747,0.984725532012615,-6.72742857252381 +"Q7K738",0.00315734753986163,19.7699242135479,0.0736784567151688,0.942219393940128,0.984725532012615,-6.72746933689866 +"O97477",-0.00338915788128347,20.9481550008561,-0.070288648647647,0.944872999852637,0.985420465978014,-6.72772554980023 +"Q9VN95",0.00453352812770547,17.9434075651836,0.0694543248747335,0.94552622880305,0.985420465978014,-6.7277867617053 +"Q9VY05",-0.00491689989187805,18.3250737156592,-0.0691041349034558,0.945800420045013,0.985420465978014,-6.72781223648405 +"Q7PL91",-0.00534370460763611,18.8534379645936,-0.0686242493779799,0.946176171595382,0.985420465978014,-6.7278469370389 +"Q9W289",-0.00553692321729926,17.4671601635844,-0.0680639595292986,0.946614896597423,0.985420465978014,-6.72788714584442 +"M9PF61",0.00282017093553932,22.691028400185,0.0678878614036759,0.946752790790022,0.985420465978014,-6.72789971536088 +"Q9VL89",-0.00260389682561168,16.8787305333266,-0.0675468978695532,0.947019788346977,0.985420465978014,-6.72792396012092 +"Q9VN71",0.0049966050483583,18.6232407142644,0.0622824418203655,0.951143025282122,0.989093869183653,-6.7282828131775 +"Q9VY24",0.0055042456422072,17.7460866149326,0.0579268186418019,0.954555538338101,0.991008857876811,-6.72855772654765 +"Q9VAS1",-0.00636053469603581,13.0449283504739,-0.0577848457677,0.954666786054986,0.991008857876811,-6.72856635231834 +"B7YZN4",0.00905714129124746,15.4188163258513,0.0535343193115261,0.957997871454296,0.991008857876811,-6.72881480008136 +"Q9VIH1",0.00320639315767046,15.7525026860657,0.0532501422136443,0.958220607060111,0.991008857876811,-6.72883073415414 +"Q9VPQ2",-0.00394677581757641,16.4555904142146,-0.0527237282143619,0.958633215370265,0.991008857876811,-6.72886002670035 +"Q9VXE5",-0.00397440325523846,14.6223877713142,-0.0519300075694867,0.959255364197964,0.991008857876811,-6.72890364365145 +"A0A0B4LFA6",0.00270905109607256,19.5302978862524,0.0510760777646964,0.959924737772906,0.991008857876811,-6.72894983072048 +"M9NEW0",-0.00256653357297409,18.3233948402826,-0.0510682096171222,0.959930905556463,0.991008857876811,-6.72895025273093 +"Q9VEV7",-0.0151300881284104,12.9890221246499,-0.0506562273295547,0.960253859147832,0.991008857876811,-6.72897225872933 +"Q9VVC8",0.00239640960545806,16.6287960781737,0.0497757461554948,0.960944093776431,0.991008857876811,-6.72901869220376 +"Q9VTB4",0.00307846507037723,20.6243990858406,0.0489806879586173,0.96156739056415,0.991008857876811,-6.7290599214911 +"Q9W3T7",0.00214808987475479,17.4221886654468,0.0486359099436484,0.961837692083052,0.991008857876811,-6.72907759433138 +"Q9U1L2",-0.0096428977283658,17.575044408311,-0.0475146175835379,0.962716804041762,0.991008857876811,-6.72913420726847 +"Q9W4Y1",0.00417358682830837,17.5529511047564,0.0474432067754088,0.962772793011506,0.991008857876811,-6.72913776801862 +"Q9XZ19",0.00321953224045401,16.0978403447937,0.047432106033522,0.962781496461504,0.991008857876811,-6.72913832105301 +"Q9V3R3",-0.00362469985842928,13.6155425410513,-0.0468012885468023,0.963276091971162,0.991008857876811,-6.72916953554995 +"Q9VJ60",-0.00332665373790064,16.5183773155597,-0.0464098945627026,0.963582974154369,0.991008857876811,-6.72918869271869 +"Q9W503",-0.00228132641487733,17.9574976418074,-0.0462875822499861,0.963678877383806,0.991008857876811,-6.72919464643225 +"Q9VHR8",-0.00206305718272404,20.4200281317183,-0.0448357792509962,0.964817257846641,0.991024852735439,-6.7292641151576 +"O76877",0.00348043718430091,17.3522599733974,0.0443781696832484,0.965176092839011,0.991024852735439,-6.72928555305832 +"Q9VRL0",0.00246302400905307,22.7535442311755,0.0439946324277977,0.965476849937103,0.991024852735439,-6.72930335148654 +"Q9W141",-0.00201782167680165,21.8629555504522,-0.0427487608088674,0.966453857879013,0.991417610665556,-6.72936010166198 +"Q9GU68",-0.0023549361140347,22.2183295334764,-0.0398785713779603,0.968704858133437,0.991928990891776,-6.72948463819188 +"Q7JVK8",-0.00208815065004941,19.1486352379856,-0.0395330596606001,0.968975851118872,0.991928990891776,-6.72949904650594 +"Q9VWU1",0.00385658894919771,14.9217294049625,0.0389749429307634,0.969413603541145,0.991928990891776,-6.72952205595726 +"Q7K860",-0.00798772542778892,20.5263825897755,-0.0388207036320996,0.96953458115175,0.991928990891776,-6.72952835708715 +"Q9VD02",-0.00203243414023646,18.2279487637161,-0.0377200040288405,0.970397937222984,0.991928990891776,-6.7295725986807 +"Q9Y156",0.00356979749175856,16.1390687670303,0.0363707333921921,0.971456317003501,0.991928990891776,-6.72962509575633 +"Q9VUV6",0.00256935937433767,14.8203500211342,0.0363409397240757,0.971479688051236,0.991928990891776,-6.72962623338808 +"Q9VQR2",-0.0017039687045397,21.316904508939,-0.0355612115879487,0.972091339727541,0.991928990891776,-6.72965567486006 +"Q9VK59",-0.00185240633735972,18.7636214747353,-0.0350830954017107,0.972466403214078,0.991928990891776,-6.72967341211203 +"A1Z7G2",-0.00201548808081142,19.5576824389368,-0.0337811241600723,0.97348778254054,0.991928990891776,-6.72972049602135 +"Q9VU35",0.00169715596255315,22.7126395080507,0.0337733775924,0.973493859766089,0.991928990891776,-6.7297207708376 +"Q9VYU9",-0.00249147452340281,17.847412932123,-0.0311466439649495,0.97555464207811,0.993381012512899,-6.72981032297084 +"Q9VHX2",0.00364316444083457,14.8036108317146,0.0302335015347814,0.97627108331862,0.993381012512899,-6.72983975708286 +"Q9W396",-0.00155154892783038,16.6450152180121,-0.0296797614097816,0.976705551871196,0.993381012512899,-6.72985717975445 +"Q7KTG2",-0.00162533063043568,18.0846112125531,-0.0268930468850883,0.978892141034216,0.993758108917146,-6.72993997182507 +"P53997",-0.00468701594797238,17.3724232563893,-0.0265584316043103,0.979154708242337,0.993758108917146,-6.72994936465675 +"Q9VVH5",-0.00138278536589098,22.5407473111675,-0.0257799134172963,0.979765608458935,0.993758108917146,-6.72997076302407 +"Q9VZS1",-0.00249204998775099,15.4530562217287,-0.0255501967540607,0.979945868751101,0.993758108917146,-6.72997695540038 +"Q9W4U2",0.00225859128463668,18.5773010952399,0.0248255277630946,0.9805145289771,0.993758108917146,-6.72999612682216 +"Q9W0K9",-0.00237782697301192,14.1832779737809,-0.0246516345884647,0.980650987576512,0.993758108917146,-6.73000064518711 +"Q9VB81",-0.00167112518346002,20.981184292151,-0.0227207533560937,0.982166242316704,0.99435952005162,-6.7300486822298 +"Q8IQB7",-0.00264756038837888,14.4316984834557,-0.0223760641406085,0.982436744031816,0.99435952005162,-6.73005684561994 +"Q9VCT4",0.00389657872750959,13.4078685773468,0.020588374727805,0.983839703729004,0.994477654981068,-6.73009718223971 +"Q9VD14",-0.00126015537640711,17.6244761744166,-0.0197953238985315,0.984462099508303,0.994477654981068,-6.73011400150298 +"Q9VCR9",-0.00110215860678053,19.3298423332831,-0.0192828275925775,0.984864318303549,0.994477654981068,-6.73012451931373 +"Q9VTZ6",-0.00144503239524951,17.0784973340279,-0.0191885614642159,0.984938300976453,0.994477654981068,-6.73012642387293 +"P41093",0.00110050057035593,18.9391123115763,0.0168625725998681,0.986763844975063,0.99561658641385,-6.73017046199182 +"Q9VJI7",-0.0010011227944311,17.3634249097304,-0.0147683509862043,0.988407552831781,0.99561658641385,-6.73020525074503 +"P35992",-0.000911979269655916,15.8704760710473,-0.014077539806212,0.988949767380555,0.99561658641385,-6.7302157159781 +"Q5U126",-0.000900523177534751,21.6177235550467,-0.0140613349549882,0.988962486562977,0.99561658641385,-6.7302159554517 +"Q9VME1",-0.00126630167430264,16.5475663668093,-0.0138853634043302,0.989100606773536,0.99561658641385,-6.73021853818125 +"Q8SX57",0.000533575941545905,17.9555109364819,0.0131883940866124,0.98964766203487,0.99561658641385,-6.73022844806359 +"Q9V9X4",0.000672462543768404,18.7115250762711,0.0117835616315807,0.990750339168264,0.996125114968453,-6.73024687207387 +"Q9V3N1",0.000593188889240537,18.3943118978876,0.0104761896299876,0.991776535433341,0.996556181387236,-6.73026215573811 +"Q9VM50",0.000888386233878435,13.5051733527508,0.00946387846528095,0.992571139805705,0.996577822468992,-6.73027275680008 +"O46106",-0.000573465693840092,16.9949730728889,-0.00892642776587039,0.992993010157953,0.996577822468992,-6.73027794762923 +"Q9VLS4",-0.000415617248915368,20.5854762539263,-0.00537234340493765,0.995782826423238,0.998245236978662,-6.7303046368849 +"Q9VI53",0.000270367980469643,16.3619416977296,0.00491005882814147,0.996145706581937,0.998245236978662,-6.73030713328853 +"Q9VN02",-0.000187926275874162,17.2751636351012,-0.0036574307352347,0.997128987948459,0.998245236978662,-6.73031276949334 +"A1Z8D3",-0.000493499366738703,16.6503761579487,-0.00318052281591784,0.997503349951764,0.998245236978662,-6.73031448215634 +"Q9VWD0",0.000164782479650682,18.1799227860545,0.00281197211399726,0.99779265439263,0.998245236978662,-6.73031564204481 +"Q9VW57",-0.000123283038766075,16.5655543775563,-0.0022354189198098,0.998245236978662,0.998245236978662,-6.73031717037687 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant.csv new file mode 100644 index 0000000..10643dd --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant.csv @@ -0,0 +1,3 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P06002",-1.09562743848828,17.0500392303794,-19.1029918221836,2.35608277208355e-09,3.92994606383536e-06,11.4154360429226 +"Q9V4E7",-1.39747885563374,15.6676851137624,-12.6802042091633,1.3437800126495e-07,7.47141687033121e-05,8.0508611436812 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant_fdr_only_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant_fdr_only_ms3fix.csv new file mode 100644 index 0000000..79e3ee7 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant_fdr_only_ms3fix.csv @@ -0,0 +1,151 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VU68",-0.591940801372388,19.3199390217204,-13.8006601560485,4.71967370250255e-10,7.87241573577426e-07,13.1624899446088 +"Q9W2N0",-0.532885038647699,16.1920856092483,-11.5678359390333,5.63776109378953e-09,4.70189275222047e-06,10.9021876466282 +"Q9V4E7",-1.39747885563372,15.4662884541501,-10.110403530359,3.54170870250794e-08,1.64344991989234e-05,9.17145392701575 +"P06002",-1.09562743848827,16.998277330311,-9.91156674374868,4.62237673964801e-08,1.64344991989234e-05,8.91737678532752 +"Q7JUS9",-0.615235252753276,20.4511940936475,-9.86444096219248,4.9264086327708e-08,1.64344991989234e-05,8.85648776569812 +"Q0E8E8",-0.567182386897613,21.6435114708839,-8.91096407856596,1.88031216312165e-07,5.22726781347818e-05,7.56699829896332 +"Q9VZX9",-0.389388586252263,18.447175315933,-8.68555715669192,2.61912426597183e-07,6.24099896520144e-05,7.2454651632547 +"Q9V3B6",0.594917757195397,13.2564357029021,7.9119752116261,8.55263678469515e-07,0.000178322476960894,6.09046641082383 +"Q9V3I2",-0.372013471393485,17.4902440967385,-7.25285673120261,2.48759155149191e-06,0.000421009782442855,5.0406855666159 +"Q9VAJ9",-0.504196945167951,17.6372822657718,-7.24411308122851,2.52403946308666e-06,0.000421009782442855,5.02634102569565 +"Q7JYH3",-0.427682607422856,19.2372275614119,-6.77411089849788,5.60046469168252e-06,0.000849234100520586,4.23890050956264 +"P00408",-0.259519201016023,21.3517732865233,-6.49551362767305,9.11069844064701e-06,0.0012092090163331,3.75690418647634 +"A1ZA23",0.273860138818975,18.4028599097049,6.47636223010087,9.4242908946824e-06,0.0012092090163331,3.72335417934918 +"Q9VLB7",-0.352529471628401,21.0974381148568,-6.38795573320761,1.10249553738803e-05,0.00123715257787274,3.56778834901732 +"Q9U4G1",-0.316481859564707,19.3441652066891,-6.38285934118951,1.11254728225966e-05,0.00123715257787274,3.55878573874203 +"M9PF16",-0.249030319273761,21.1898707963483,-6.31319389127547,1.2599536425971e-05,0.00126146837664023,3.43534588638106 +"O62619",-0.304984832282464,22.2214410786259,-6.30191640181581,1.28566920880598e-05,0.00126146837664023,3.41529717591137 +"Q9VM10",-0.390897980526891,17.0723440637747,-6.17448679274891,1.61735898756435e-05,0.00148128846846107,3.18748047343457 +"O76902",-0.404527458849039,17.288267739966,-6.1453440022518,1.70505558425947e-05,0.00148128846846107,3.13505088810115 +"Q94523",-0.358106457042471,20.3731997672175,-6.12284981639826,1.77612526194373e-05,0.00148128846846107,3.0944992317681 +"P07486",-0.299764717430833,22.1633684776058,-6.03429927000083,2.08728747475836e-05,0.00162626793929287,2.93416107893117 +"Q23970",0.394229104390512,21.465804897103,5.99776055786267,2.23175873925698e-05,0.00162626793929287,2.8676753436531 +"Q9VGZ3",0.462751159582549,16.8586771197275,5.99515373572519,2.24245579159089e-05,0.00162626793929287,2.86292474496365 +"A0A0B7P9G0",-0.56458641390639,14.5981682735193,-5.96368674243354,2.37587140922222e-05,0.00165123062940944,2.80550437284373 +"P46415",-0.335787446928958,18.0502238290307,-5.93485654241328,2.50536103051002e-05,0.00167157687955629,2.75277291621031 +"O01666",-0.259321278331278,22.7350079212325,-5.86045708680589,2.87457578198898e-05,0.00175779721601612,2.61615447383291 +"Q9VFN7",0.245366652361351,18.6270162802085,5.8375334713519,2.9994052334171e-05,0.00175779721601612,2.57390438305447 +"P54185",0.471733552013713,17.4363329066498,5.83429711026131,3.01747735922697e-05,0.00175779721601612,2.56793361655074 +"Q7JYX5",-0.42958863833362,14.9157334791088,-5.82744364995193,3.0561222580616e-05,0.00175779721601612,2.55528485602936 +"Q9VXK7",-0.252140491751963,18.0609063101866,-5.72020886053445,3.73254480930409e-05,0.00196808309357377,2.35652692228332 +"Q9Y119",0.350324851988908,17.7137644715383,5.71442940291569,3.77315030241876e-05,0.00196808309357377,2.34576993327643 +"A1ZB70",0.304659313508719,16.1040253476183,5.71406880137866,3.77569898047725e-05,0.00196808309357377,2.34509861413987 +"Q9W2L6",-0.350052570769499,20.9057171962929,-5.69695403783575,3.89874258821139e-05,0.00197063716276867,2.31321626799783 +"Q9V3A8",-0.342503694816203,15.5552073607755,-5.66320110776509,4.15375707127574e-05,0.00203778435143763,2.25022265553838 +"A1ZBJ2",-0.440188581141548,19.3867882687751,-5.43437698344862,6.40793156676011e-05,0.00303778804526607,1.81914883302625 +"Q9VGS3",-0.337881201914616,19.3094007689564,-5.4223889486698,6.55637707611381e-05,0.00303778804526607,1.79637567211394 +"Q9W4P5",-0.261700728791912,19.6128342093616,-5.34661652021501,7.58082448921072e-05,0.00341751763459554,1.65200868994084 +"Q9VNX4",-0.415941738401337,20.9977922024353,-5.27658640032552,8.67510795509398e-05,0.00380791580765704,1.51793856510798 +"Q95TK5",-0.320612543529133,17.1605456023311,-5.19874928489605,0.000100850390528103,0.00431329362566348,1.36821239033586 +"P19107",-0.236486110617033,24.0713434774427,-5.14369353646342,0.000112237098775027,0.00468028701891864,1.26186673548543 +"M9NFC0",0.303870632047172,19.8650537574455,5.06000200356741,0.000132150582500989,0.00536252275362239,1.09952593078291 +"Q9VUY9",-0.235133387519713,19.7353463817489,-5.04899864456254,0.000135027551350204,0.00536252275362239,1.07812212029599 +"P10676",0.406714413769912,19.6680274835087,5.03625737697012,0.000138439775190571,0.0053701754655319,1.05332055008596 +"Q7K5K3",-0.263997872663101,22.7622661736889,-5.01036352946791,0.000145651085868918,0.00552150025521261,1.00286041024286 +"Q9VR94",0.391084923336164,16.2283727919089,4.93642443986286,0.000168451341791265,0.00624392973572955,0.858364309365999 +"Q9W299",-0.442524429707818,14.7391654507675,-4.87981688478651,0.000188372232490421,0.00682205622024991,0.74733967775158 +"Q7KV34",-0.243262394356627,20.9565173062268,-4.86957440546715,0.000192228202848769,0.00682205622024991,0.727215007159422 +"Q9V3N7",-0.212476379436403,20.5686569459863,-4.82199013412459,0.000211236282278523,0.00734046080917868,0.633578474210347 +"Q9VF86",-0.262984563559897,17.6234348742795,-4.80149187296556,0.000220010503694296,0.007489337146165,0.593171091601842 +"P20007",0.465406321073596,15.0299587402673,4.75237172981935,0.000242593861373141,0.00804421700606213,0.496173220407188 +"Q9VJQ3",-0.209820018670211,20.5325916420758,-4.74546269531971,0.000245956275365209,0.00804421700606213,0.482511052871557 +"Q9V396",-0.227881925427809,20.8718770802329,-4.72982533030957,0.000253744444291957,0.00813934102074968,0.451572286269975 +"Q9VPN5",0.218688205472258,21.260754224716,4.70458266640238,0.000266855014909832,0.00828191467570441,0.401580402993747 +"Q9V3V0",0.283356624659227,14.3313840693417,4.69656671753964,0.000271162281552784,0.00828191467570441,0.385692720211091 +"Q95R98",-0.305109482528684,16.3232917792376,-4.69303110593289,0.000273084716525025,0.00828191467570441,0.378683211473744 +"Q8T4G5",-0.176422272503704,19.6664794384017,-4.67425356858166,0.000283531729807008,0.00829973861823612,0.341436611812517 +"Q9VKC8",-0.299453100246943,17.7707900149573,-4.67409061891189,0.000283624161414544,0.00829973861823612,0.34111324812029 +"A1Z843",-0.234240165915683,17.5880030878985,-4.61702887800321,0.000317970910686654,0.0091444048107817,0.227731213678132 +"Q8MLS1",0.262453311772973,18.431906650209,4.60161815102114,0.000327959121702851,0.0092717934745823,0.197060894058017 +"Q9W309",0.321694252665271,18.4087310050968,4.53610897989771,0.000374139997396599,0.0104010919276255,0.0664611671871764 +"Q9VPU6",0.257416981692455,15.3207114504349,4.51761687937426,0.000388345176155079,0.0104886761756333,0.0295315661143398 +"Q27272",0.434741228952596,15.6913536079347,4.51553250062806,0.000389980602044305,0.0104886761756333,0.0253672573487478 +"Q8T3L6",0.236569363846399,17.3944624709409,4.5061797394104,0.000397406120545518,0.0104886761756333,0.00667748656475275 +"Q7JYW9",-0.218758601663883,17.2438855857285,-4.49993657311287,0.000402443210575859,0.0104886761756333,-0.00580213993276057 +"Q7K148",-0.270125567296503,16.849496891228,-4.4448245405821,0.000449843178501721,0.0114350288163987,-0.116095910949183 +"Q9VZJ2",0.217075668900048,17.3393679735216,4.44100317499746,0.000453334358686794,0.0114350288163987,-0.123751851115801 +"Q8IQ70",-0.247091963681797,17.9965369757656,-4.43452015769103,0.000459320701857741,0.0114350288163987,-0.136742716185986 +"Q9W4W5",-0.276780853594396,17.3191382743618,-4.42392814810762,0.000469275665193643,0.0115110560226911,-0.157973802691552 +"A0A0B4K692",-0.279307085630601,15.9518370145568,-4.38251139898029,0.000510366083059423,0.0120225018823309,-0.241066864787931 +"Q7JWQ7",0.445574983353302,14.3176547496127,4.37505480294127,0.000518145685998466,0.0120225018823309,-0.256039236785094 +"Q9VXZ8",-0.271820844321404,17.9113836919935,-4.36973640008913,0.000523768377197502,0.0120225018823309,-0.266720516689205 +"O16797",0.197413002397202,16.7021443619149,4.36442689225623,0.000529443825601339,0.0120225018823309,-0.277385796814058 +"Q9U9Q4",-0.222252610646073,17.9148149775483,-4.36436110382225,0.000529514540765214,0.0120225018823309,-0.277517958556641 +"Q8SZK9",0.209041199220682,22.1503916875227,4.36078556269778,0.000533372385666957,0.0120225018823309,-0.284701254424765 +"O17444",-0.4031984523685,15.384049081131,-4.34906338617811,0.000546222512621281,0.0121479886806973,-0.308257044681175 +"O18332",-0.246691041303816,20.6419619645781,-4.30161252796447,0.000601552271688255,0.0132024893312633,-0.403698278975274 +"Q9VR25",-0.213882787473892,16.977871040057,-4.27469914506383,0.000635442843256467,0.0137651774357375,-0.45789127522125 +"Q9V3Z9",0.221963461993347,21.6942295396458,4.24675372315263,0.000672696404873512,0.0139306613172361,-0.514205909106757 +"P54192",0.282031268010766,24.3269559788418,4.24636113763023,0.00067323531455572,0.0139306613172361,-0.514997338992522 +"P05031",-0.600737922213998,13.4766928577832,-4.24478325910882,0.000675405738946132,0.0139306613172361,-0.518178335272343 +"Q9VZ19",0.414403035698204,20.2632641760049,4.24399770678926,0.000676488948858588,0.0139306613172361,-0.519762055258877 +"Q24319",-0.331507209176541,16.3572012573831,-4.23697311558408,0.000686254283149388,0.0139594163938193,-0.533925512795596 +"Q9VEY0",0.252890640379594,18.0345866616263,4.19688856155832,0.000744791445273849,0.0149676160327323,-0.614795572488386 +"Q24253",-0.295294138616235,18.9061045823468,-4.18899890949402,0.000756898983549696,0.0150298512447725,-0.630722265314843 +"A1ZAA9",-0.239548084067966,16.5801619282819,-4.17447094389178,0.000779720333947184,0.0153008649061636,-0.660057338946021 +"Q9VC06",-0.209656377490138,16.4572731614066,-4.14467918699934,0.000828733409480538,0.015940814959116,-0.720243394525849 +"Q9VYT0",-0.169272895466253,18.2716032183478,-4.14308347943773,0.000831445384558207,0.015940814959116,-0.723468182778601 +"Q9W3L4",-0.326521356641491,17.656419723343,-4.10118296753478,0.000905979374012282,0.0171724272255964,-0.808183018335217 +"Q5U117",-0.365189334538183,14.6035483002809,-4.07066846950937,0.000964502301009898,0.0179723648190205,-0.869919804065171 +"Q9W461",0.283955172854974,16.2319006948524,4.06674750824996,0.000972295542165699,0.0179723648190205,-0.877855056187324 +"Q7K2Q8",0.198943260068331,16.1082680275246,4.06265064048933,0.00098050671374752,0.0179723648190205,-0.886146862656256 +"P55830",0.150906442582965,22.0046667895625,4.03105449398119,0.00104624447429412,0.0189688672078543,-0.950113631792527 +"Q9W1H8",-0.200541274526476,20.5885079530425,-4.02306017459566,0.00106357473084995,0.0190757274307281,-0.966303029895607 +"Q9W552",-0.204948317410842,16.2316900724811,-4.00621295571945,0.00110105582348826,0.0195378841870044,-1.00042641287231 +"P17336",0.212348168183603,20.7184298598347,3.98838579760551,0.0011421768312724,0.0200542205743406,-1.03654273436028 +"P16378",-0.209395875683082,20.4467666605917,-3.9665699635106,0.00119462273234892,0.0207565699745625,-1.0807500864562 +"Q9VGW7",-0.270487817541195,16.728162935078,-3.92363412317146,0.00130507689268487,0.0224419407937975,-1.1677829404422 +"A1Z968",0.207073014627433,17.1901096058735,3.91342086185629,0.00133283904048983,0.0225737556927069,-1.18849027672775 +"P35381",-0.185856154963538,25.6887317629981,-3.91089043071113,0.00133980924075419,0.0225737556927069,-1.19362094644525 +"Q9W403",-0.271398364326176,15.2792258085667,-3.89896298457572,0.00137316376888992,0.0228187130870738,-1.21780603383706 +"A1Z7S3",-0.175772888321312,20.0392719829573,-3.89595450795691,0.00138170864615975,0.0228187130870738,-1.22390655459688 +"Q9VM07",0.271952044830361,17.0004725945388,3.89014288919693,0.00139836774768233,0.0228674255209228,-1.23569152078299 +"Q9VBC1",0.407123938885711,13.2576699576703,3.8841979772655,0.00141561908519127,0.0229247828553304,-1.24774716423762 +"Q9V431",0.182137321470144,18.5297012868093,3.87614315189601,0.00143933686858771,0.0229710665248808,-1.2640820497363 +"P36241",0.239918980039949,19.790127525553,3.8738975761902,0.00144602037476768,0.0229710665248808,-1.26863610049908 +"Q9VH81",-0.277506326617999,14.4843712733431,-3.86130371104268,0.00148408889724482,0.023353398873626,-1.29417735368118 +"A1Z9J3",0.21312785686672,17.646106378832,3.83896005305805,0.00155413832782285,0.0242271283253132,-1.33949438881374 +"Q9VAN1",0.261133160490623,14.7771581892853,3.82252730844006,0.00160777916623182,0.0248312560118026,-1.37282427773348 +"Q9VVP9",0.275151355559684,16.6752461012483,3.81237396874586,0.00164185253342508,0.0251248626215874,-1.39341811703559 +"Q9VA09",-0.218627887054989,16.4222463769768,-3.79293850304509,0.00170912142377672,0.0259164957714506,-1.43283855233512 +"Q9W3K6",-0.224913036111571,16.2701186024433,-3.76363768966537,0.00181582791486937,0.0272864951531721,-1.49226609287221 +"Q7K486",0.209530556976738,17.6059805588514,3.73211227230448,0.00193814877856825,0.0287809401558858,-1.556198300466 +"Q9XYZ5",-0.223440166720341,16.0115285692361,-3.72921766068052,0.00194978791223927,0.0287809401558858,-1.56206791133853 +"Q9VSL3",0.213363289510841,22.4632904713458,3.7159974401775,0.00200384707667722,0.0291885597188557,-1.58887408295887 +"Q9VBP9",-0.323506653862101,13.9443137499968,-3.71393859277936,0.00201240070004101,0.0291885597188557,-1.59304851093444 +"Q24492",-0.253769627596686,15.1695905390193,-3.70345901623391,0.0020565116877467,0.029453888134677,-1.61429541349641 +"Q9VVL5",-0.176661557082454,17.2949805027842,-3.70123205029501,0.00206601013894317,0.029453888134677,-1.6188102622059 +"O76742",-0.24309897861777,18.0136812741007,-3.69270016310879,0.00210281057887964,0.0297244749624681,-1.6361066168375 +"Q95RQ8",-0.789408978528503,14.2995654179286,-3.67900306734092,0.00216327395118199,0.0299812561046705,-1.6638713322381 +"P48596",0.14735023367173,21.8671849202627,3.6778205268184,0.002168575340532,0.0299812561046705,-1.66626822615184 +"P09180",0.153362154746194,20.6734751591385,3.67641369079855,0.00217489927378005,0.0299812561046705,-1.66911970698069 +"Q7KSQ0",-0.175704697832646,20.9228839361195,-3.66895551494404,0.00220873584096998,0.0301981260880158,-1.68423578792658 +"Q9VV47",-0.171917084635513,20.1696428458878,-3.66319105225238,0.00223525043160996,0.0303121765847594,-1.6959182367704 +"Q9V393",-0.34179009539719,15.809996868543,-3.65050633703113,0.0022947277135198,0.0308677889205728,-1.72162272626026 +"Q9V419",-0.23280478534404,16.4871156672547,-3.64578034847969,0.00231729172202537,0.0309219407387065,-1.73119851139425 +"Q27377",0.363700724426188,20.0456085409392,3.6404273361853,0.00234311873234081,0.0310184289328926,-1.74204406370145 +"A8WH76",-0.216290018358677,19.0424009076152,-3.61059875086838,0.00249241883297925,0.0324908148160867,-1.80246381605376 +"Q9VV46",0.346684585623709,23.8985341776894,3.60766694634064,0.00250759914297065,0.0324908148160867,-1.80840091104131 +"Q9VYT6",-0.318767599600449,16.4189831722274,-3.60667065343281,0.00251277884369016,0.0324908148160867,-1.81041840552281 +"Q9VE24",0.216843089403485,15.8843580865115,3.60104734868793,0.00254221618517557,0.0326138969723041,-1.82180499111396 +"P54195",0.429188729034784,18.713261626981,3.59741718398638,0.00256140317947952,0.0326138969723041,-1.82915511911783 +"Q9VVB4",0.236570057131035,15.9952115483397,3.58832121762807,0.00261011967103696,0.0329824212976489,-1.84757005266119 +"Q0KIE7",-0.548817457991209,14.0418513385367,-3.57679437522188,0.00267319262046239,0.0335254533152727,-1.87090205354339 +"Q7K1Z5",0.281669963365728,15.9893750506479,3.56990605635255,0.0027116113908602,0.0335625448793585,-1.88484262471809 +"Q9VAY3",-0.335671567648722,13.9219856041427,-3.56905558392545,0.00271639302081139,0.0335625448793585,-1.8865636823186 +"Q9VXF9",0.154338968910139,17.4720763046938,3.55516112433419,0.00279571967125386,0.034288679497437,-1.91467709397799 +"Q9VN13",-0.219851548301577,17.063191730045,-3.50848526936661,0.00307958535360625,0.0374945136482863,-2.00905721887263 +"Q9Y0V3",0.2658100709385,15.1089618577586,3.50184711961655,0.00312223401815162,0.0376493412194547,-2.02247134838786 +"Q9VV31",0.39147850472196,15.6252071715139,3.49950147506372,0.00313744510162123,0.0376493412194547,-2.02721080347777 +"A1Z7B8",-0.250643114493263,16.9816878971773,-3.4843239013141,0.00323767582754792,0.0385745948596424,-2.0578706316069 +"A1Z8Y3",0.23858696423528,15.0429133991574,3.47701765491048,0.0032870603757013,0.0388852248699984,-2.07262535668843 +"A1Z7K8",0.174811561749696,17.6115932718319,3.47046368019342,0.00333200029353738,0.0391384770995707,-2.08585835898477 +"Q9VMI3",-0.2112166036739,20.1972907204807,-3.46708641023886,0.00335539701752914,0.0391384770995707,-2.09267638486104 +"Q7K4T8",-0.302195213884874,13.6995246631005,-3.45566416124963,0.00343574982071572,0.0397974354232905,-2.11573067789676 +"Q9VBU0",-0.334315659395173,14.2173254081894,-3.43999460712016,0.00354911654618642,0.0408270786140617,-2.14734482856359 +"Q9W0R0",0.193027277117853,16.735984403513,3.4066547182066,0.00380289830746647,0.0434468108003703,-2.21455754105733 +"Q9VP57",-0.276169011387587,19.4973851060016,-3.39912990464606,0.0038626350208421,0.0438290830936369,-2.22971705562209 +"Q9VIE7",0.212740056557497,14.9888306814096,3.37696105863467,0.00404411578438635,0.0455782778943002,-2.27435487944139 +"Q9VQR9",0.249116148766523,16.2449796779376,3.3678480345721,0.0041211584184522,0.0461348472615991,-2.29269371535427 +"Q9VA34",0.246386186258921,14.4307999341644,3.34841686089394,0.004290345437548,0.0477086412655337,-2.33177501547447 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant_ms3fix.csv new file mode 100644 index 0000000..7529a11 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant_ms3fix.csv @@ -0,0 +1,3 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9V4E7",-1.39747885563372,15.4662884541501,-10.110403530359,3.54170870250794e-08,1.64344991989234e-05,9.17145392701575 +"P06002",-1.09562743848827,16.998277330311,-9.91156674374868,4.62237673964801e-08,1.64344991989234e-05,8.91737678532752 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results.csv new file mode 100644 index 0000000..6045506 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.840900893783122,18.2100580023051,16.6428464139454,8.08835706183817e-09,8.23034465067389e-06,10.9051764882554 +"Q9VC06",0.861311545357717,16.3836066963437,16.1279208945203,1.1081951571981e-08,8.23034465067389e-06,10.6069195850731 +"Q8MSI2",-0.761746348228659,24.0545359721853,-15.5135982250325,1.63373398157613e-08,8.23034465067389e-06,10.2361431026761 +"P10676",-1.06222841949458,19.7094940821678,-15.2222953299637,1.97370375315921e-08,8.23034465067389e-06,10.0543532220728 +"Q9W3J5",0.639137617105982,16.0545409045738,14.4748461650063,3.25645909721152e-08,1.08635475482976e-05,9.56924794521206 +"Q7JUS9",0.711004592010102,20.537771745897,13.9568042923957,4.67275586374568e-08,1.13107117237373e-05,9.21635189240244 +"Q7JYW9",0.651452471682957,17.2082297076694,13.9346672633165,4.74670156271947e-08,1.13107117237373e-05,9.20095275581483 +"Q9VLB7",0.814590382361004,21.0791828750061,13.2624395275421,7.73158519509241e-08,1.61203551317677e-05,8.72028315875468 +"Q9VXP3",0.652701908406097,14.5121579002444,13.074400957357,8.897452689607e-08,1.6489945651405e-05,8.58114790043441 +"Q9VFN7",-0.588266316630886,18.6432717821932,-12.8523114644121,1.05275679013624e-07,1.75599832594724e-05,8.41406800384503 +"Q9VZU7",0.551207876873782,17.5103451390685,12.6972636876086,1.18578465514871e-07,1.7980807316255e-05,8.29561896662086 +"Q9V3N7",0.605663705165867,20.5385384549374,12.2323686635011,1.70759607554139e-07,2.37355854500253e-05,7.9312559775038 +"Q9VAJ9",0.869971970779755,17.6603525856979,11.9121380845183,2.21104881606807e-07,2.65667384605688e-05,7.6719288726211 +"Q9V4E7",1.30292940665369,15.7149598382524,11.9017847987221,2.22982217294942e-07,2.65667384605688e-05,7.66342726320171 +"Q9VHR8",0.524861763115318,20.3332388569267,11.725209570376,2.5782688587212e-07,2.86703497089798e-05,7.51727628131211 +"Q9VA09",0.717891126775829,16.3754738181992,11.42084694789,3.3265068330136e-07,3.37554932242762e-05,7.26012169508041 +"Q9W2N0",0.542470712111857,16.2793021701122,11.2257792280125,3.92881524274596e-07,3.37554932242762e-05,7.0917252259422 +"Q9VLC5",0.701507924379619,21.7692412956303,11.2220140471308,3.94155178766879e-07,3.37554932242762e-05,7.08844671102711 +"Q9Y119",-0.735322922691761,17.7195433413239,-11.2196527847401,3.94956221403794e-07,3.37554932242762e-05,7.08639010359949 +"P19334",-1.02046554310178,15.2730765209876,-11.1912206229168,4.04742124991322e-07,3.37554932242762e-05,7.06159307574016 +"Q9VZF6",0.551316518553071,14.9998471495332,11.1181731017177,4.31116122953762e-07,3.42429377660417e-05,6.99760217886482 +"O17444",0.784590846022143,15.3876834242501,10.9421882539596,5.02671064415099e-07,3.70790823304472e-05,6.84174487283463 +"P21187",0.620905529959327,18.8653479843893,10.9228688607702,5.11282310311921e-07,3.70790823304472e-05,6.82448773252691 +"Q7JYX5",0.793371589126801,14.9267010936988,10.7959012639389,5.7203235454505e-07,3.9756248640881e-05,6.71033794036221 +"O97125",0.662541786334245,18.4676698327401,10.6521336651366,6.50465714147654e-07,4.19334167823813e-05,6.57952356197389 +"Q8IN49",0.504142342313791,16.8480441019707,10.6057745883844,6.7819558213449e-07,4.19334167823813e-05,6.53698305836305 +"Q9VW54",0.560651678722614,15.8118021696516,10.576649883606,6.96273123284113e-07,4.19334167823813e-05,6.51016711383456 +"Q9V3A8",0.688036884714656,15.5547024449285,10.5645795186677,7.03918267330142e-07,4.19334167823813e-05,6.49903309988078 +"Q9VV31",-1.30560764476999,15.7123156107349,-10.4948109548456,7.49937676275957e-07,4.31343463458033e-05,6.43444040998491 +"Q7K569",0.647037923071398,20.5586605327605,10.4334886306053,7.93096618596596e-07,4.36047798008895e-05,6.37733247317661 +"A1Z803",0.62962900555803,18.7875165107467,10.4099153436893,8.10400583829481e-07,4.36047798008895e-05,6.35529532614478 +"Q9VTZ4",0.485339585691364,18.1463896215055,10.1627399549062,1.01876222601169e-06,5.05488954842298e-05,6.1213787360048 +"Q9VN13",0.710376988671154,17.0180794147003,10.1466191743346,1.03424593713986e-06,5.05488954842298e-05,6.10593974861004 +"Q9VIE8",0.457393424264129,24.7787791147132,10.138258102602,1.04237724024962e-06,5.05488954842298e-05,6.09792336142795 +"Q9W299",0.779784425939949,14.7567095230134,10.1196966180527,1.06067826255878e-06,5.05488954842298e-05,6.08010523346378 +"Q9W3Y3",-0.482577044523619,18.1323159790602,-10.0325047028396,1.1514513350763e-06,5.33505785252017e-05,5.99600019427103 +"Q24253",0.756144490100898,18.8785118802021,9.75172085157313,1.50611087647466e-06,6.69545224212191e-05,5.72054012748415 +"O16797",0.502613650816549,16.5525710859797,9.73861408598584,1.52534283693425e-06,6.69545224212191e-05,5.70750681758337 +"Q94523",0.588152281167012,20.3945432060371,9.67810792695838,1.61765285442395e-06,6.9039770444901e-05,5.64713413955695 +"Q0E8E8",0.572028141560423,21.737234242923,9.65429668155406,1.65562998668827e-06,6.9039770444901e-05,5.62328233551901 +"Q7K148",0.66557861952921,16.828608977072,9.61813013183072,1.71517900839512e-06,6.91669208203156e-05,5.58695306609553 +"Q9VFQ9",0.448707242009668,19.0889759707233,9.60251060154758,1.74161311418061e-06,6.91669208203156e-05,5.57122542844108 +"Q9VXQ0",0.532641285538663,14.9126197120224,9.54706082420704,1.83909062267654e-06,7.13396083401041e-05,5.51520666834977 +"Q9V3B6",-0.832423531891061,13.1968670391521,-9.496502481538,1.93315099074615e-06,7.3283996649195e-05,5.46387629049129 +"Q9W1H8",0.585664501461611,20.5577442943077,9.46270132820552,1.99894467410799e-06,7.40942159202694e-05,5.42942341323075 +"Q9VQE0",0.549085874673347,17.2622245429953,9.44004514332221,2.04440457047918e-06,7.41318874686799e-05,5.40626928530711 +"Q9VU68",0.470565659899201,19.4388250121947,9.38620019820314,2.15701577199343e-06,7.65511129294689e-05,5.35104316818362 +"Q9VED8",0.573661669605334,16.2710401187074,9.27861384426788,2.40273705704752e-06,8.34951127324013e-05,5.23985645931036 +"Q9VJQ3",0.450210331341523,20.5274965930756,9.17660420134489,2.66400825861254e-06,9.06850158237903e-05,5.13338595343063 +"A1ZB70",-0.57368743941745,16.0980868163516,-9.07900140397558,2.9430858142725e-06,9.81813427641305e-05,5.03054769433862 +"Q9VA42",-0.755475941357517,20.3322919174719,-9.0593615232661,3.00299117363708e-06,9.82106808334962e-05,5.00973887657329 +"P23779",-0.470902804573218,20.984009434458,-9.04051468341029,3.06172386291475e-06,9.82106808334962e-05,4.98973371364871 +"Q8SXD5",-0.567410558158702,20.7936229197279,-9.01362441544985,3.14769160853446e-06,9.90632000572732e-05,4.96112855958623 +"Q9VUY9",0.482887429018465,19.7332429394191,8.98898637984964,3.22876234140143e-06,9.97328812121774e-05,4.934854847046 +"P45437",0.55850861028784,16.0136600485525,8.93288496235604,3.42194512007174e-06,0.000103545735616877,4.87479799713128 +"A1Z9A8",0.522674084939718,16.6312088986939,8.91770281090968,3.47635563222127e-06,0.000103545735616877,4.8584900109721 +"P54385",0.54871898654509,21.4839687458882,8.85542950733143,3.70956108622775e-06,0.000108553471786454,4.79135036896676 +"Q9V521",-0.722962615495023,17.7263101957716,-8.83023996302008,3.80866792615686e-06,0.000109532036221201,4.76407839044531 +"Q9U9Q4",0.486398711129024,17.9078327292421,8.7770806105817,4.02737956253978e-06,0.000113858798479938,4.70630746348067 +"Q9VKD3",0.499923639365804,18.6746524379746,8.75798453585332,4.10924125807847e-06,0.000114236906974581,4.68548265129149 +"Q8SXF0",0.521309132596533,16.3341251347788,8.71573530111579,4.29684386274075e-06,0.000117494025623796,4.63927244202218 +"P29613",-0.388251559438565,23.8922040676639,-8.67708467844145,4.47662282924495e-06,0.000120435594825493,4.59683315881054 +"Q9W2L6",0.43362513511978,20.9501305306961,8.45423643990591,5.68595669649002e-06,0.00015054247253564,4.3490228236515 +"Q9VF86",0.470456506848713,17.632686977658,8.39784144497411,6.04532197033922e-06,0.000157556203851966,4.28545644027289 +"Q9VV36",-0.556198564578295,23.1814180507471,-8.31511618821141,6.61775613226683e-06,0.000169821803517247,4.19157723890933 +"Q9W2E7",0.37425437252001,18.4701927689069,8.22718138929018,7.29129052553736e-06,0.000184270796918126,4.09095078740226 +"P41093",0.622296737158742,18.835029355193,8.16237160787834,7.8351473261423e-06,0.000194374860135585,4.01623035787755 +"Q7K2Q8",-0.398395918383683,16.1083529272324,-8.15223020337847,7.92415496955623e-06,0.000194374860135585,4.00449509894669 +"Q9VXZ8",0.600293034583544,17.9019418010034,8.08143091252982,8.57689250055602e-06,0.000207337053491702,3.92224225274995 +"Q9W309",-0.560497296245718,18.3949158035826,-8.03960552277454,8.98969370277816e-06,0.000214211558517628,3.87338074741525 +"A8DYP0",-0.580146686000123,15.2845974395829,-7.96934692115766,9.73234401025069e-06,0.00022564948806518,3.79084825007991 +"Q9VHT3",-0.462898367023577,15.8020360385269,-7.96676241332366,9.76089991801155e-06,0.00022564948806518,3.78780131876288 +"Q8SZN1",-0.609020650279739,20.1626511352097,-7.95646780106253,9.87554713954325e-06,0.00022564948806518,3.77565706346413 +"Q24276",-0.547336177520485,18.7145023724167,-7.92171791670986,1.02734345238753e-05,0.000231568767376,3.73457233629156 +"Q01637",0.485075439620372,15.9273595432334,7.87854495069924,1.0792104645529e-05,0.000240016407316564,3.68333206845834 +"Q7K485",0.475719983612446,20.5141273347905,7.83085084599457,1.13982358701987e-05,0.000250161281993307,3.62647079305393 +"Q9VPN5",-0.431240780039978,21.2597316195653,-7.79926469902748,1.1819874400866e-05,0.000256046110397979,3.58866542302012 +"Q9VNE9",0.509236117966555,18.695510857436,7.7202634259563,1.29501600822541e-05,0.000276934192528203,3.49358884487651 +"Q9W253",0.514689251093907,15.1130395169647,7.69666457234635,1.33100714598464e-05,0.000281027837911694,3.46504309859731 +"P46415",0.391581563534654,18.0968893840846,7.61413507319109,1.46563293312424e-05,0.000305584466556404,3.36468504454833 +"Q9W461",-0.458675375780478,16.2136948665308,-7.58140399402594,1.52304193968102e-05,0.000313633821652832,3.32465431952582 +"O01666",0.371951042810082,22.7594565068746,7.56089700178587,1.56024594018868e-05,0.000317376857101796,3.29950728751733 +"Q9VMR6",-0.426275564100095,18.8334896695247,-7.53949484785625,1.60012401875957e-05,0.000318976646285979,3.27320767291039 +"Q9VFZ4",0.668024980805045,16.4946847755605,7.52446155091937,1.62879325705105e-05,0.000318976646285979,3.25470071470864 +"Q9VNW6",0.886768112530575,21.564159826657,7.52090131781711,1.63566379021179e-05,0.000318976646285979,3.25031377241352 +"P35381",0.381231344047119,25.6871452573115,7.50986376233796,1.65716387043621e-05,0.000318976646285979,3.2367033174737 +"Q9VH81",0.57411686681893,14.481187237746,7.50652518172778,1.66372711192327e-05,0.000318976646285979,3.23258354664151 +"Q8SXQ1",0.49644565554901,18.6079920917571,7.49060209749176,1.69541879529809e-05,0.000321358926199683,3.21291574470417 +"A0A0B7P9G0",0.759275092592084,14.659817896056,7.39066685167734,1.90983285197912e-05,0.000357932718775413,3.0887615074745 +"Q9VBC7",0.541127349488585,16.1411389916009,7.36677740359695,1.96531508207734e-05,0.000363074684626165,3.05889842078705 +"Q9V784",-0.579713391385583,14.2027932440259,-7.3602384999515,1.98080313555042e-05,0.000363074684626165,3.05071199559592 +"Q9VIF2",0.418378605696796,17.4516358057169,7.2888001212034,2.15887036267708e-05,0.000391412583146235,2.96092439857486 +"Q0E9B6",0.41581000738919,19.0414693457093,7.23425486455076,2.30645581669729e-05,0.000410917213303416,2.89193525052418 +"O77410",0.469099715524383,14.3427651263969,7.2175883225043,2.35369644413805e-05,0.000410917213303416,2.87077999697737 +"P32392",0.3893464669619,17.5738647926503,7.21054422136844,2.37397574857286e-05,0.000410917213303416,2.86182811522284 +"Q9VBP9",0.517979767166283,13.9658193400898,7.20738523785382,2.38313134948713e-05,0.000410917213303416,2.85781151876891 +"Q9VPE2",0.449053627262671,20.8143570054331,7.20502335758496,2.39000162580517e-05,0.000410917213303416,2.85480759506038 +"Q9VHC3",0.441742671876355,17.1407110719793,7.19674137886125,2.41426180478026e-05,0.000410917213303416,2.8442686569481 +"Q9VM10",0.500079807440496,17.1192967560435,7.18419456805647,2.45152261785349e-05,0.000413044416826224,2.82828597779177 +"Q7K1Z5",-0.521209839576619,15.9823533694555,-7.15552261516876,2.53902147023058e-05,0.000423508781234462,2.79168681270464 +"Q8IQG9",-0.39354756282566,20.4871537946686,-7.12002516471962,2.65204740899464e-05,0.000435724900940786,2.74622897047997 +"Q9V3I2",0.365778292767651,17.5532855384084,7.11621295748381,2.66450478992567e-05,0.000435724900940786,2.74133744502517 +"P06002",0.703099419449481,17.2463032398988,6.99457607276485,3.09707987623575e-05,0.000501546527530217,2.58427585786757 +"Q9V396",0.411437744347321,20.879264764651,6.94817233809327,3.28157565758721e-05,0.000526314249697642,2.52385051339261 +"P48596",0.310206162525489,21.7663671486179,6.87287775018848,3.60662949426174e-05,0.000572938856802722,2.42520327556105 +"Q9W1R3",-0.355342081737344,17.0211428380692,-6.85667391706495,3.68102416062558e-05,0.000579240405653157,2.40387607915775 +"Q9VAY9",0.554001358213398,14.5106593753941,6.83088366266501,3.80286402540152e-05,0.000592820298539227,2.36985972813442 +"Q9VWP2",-0.4132668214692,19.6757418092823,-6.80915468102427,3.90889230786263e-05,0.000603706700881007,2.34113155865373 +"Q9VNB9",0.743410430435549,18.831848590577,6.76647398926142,4.12654484800697e-05,0.000631474936373911,2.28451999693443 +"P18432",-0.396741265739326,23.6955020345788,-6.7097358261325,4.43632607642881e-05,0.000672708354134841,2.20888594640265 +"Q7KV34",0.398409889692058,20.9712031227304,6.70177145479151,4.48177789470388e-05,0.000673477975528475,2.19823461707067 +"Q9VM18",-0.295658462536238,22.9428285318536,-6.67502808226275,4.63810550906779e-05,0.000690746427600453,2.16240639639104 +"Q9VZJ2",-0.389249993012832,17.331884416057,-6.62251242163241,4.96243566452465e-05,0.000732508202515674,2.09177045539166 +"Q7K5M6",-0.354121950342268,18.2198643339424,-6.58983677876802,5.17649942542828e-05,0.000757403600141611,2.04763202899745 +"Q9VQ91",-0.389367524276555,15.0426531966247,-6.53376378776292,5.56735405495863e-05,0.000807508396840956,1.97155047243004 +"A1Z843",0.361834528747451,17.6057773884125,6.49928063247142,5.82340193082336e-05,0.000832858901700405,1.92454989880673 +"Q00174",0.282262623317507,21.9682500671383,6.4968403175885,5.84199589322226e-05,0.000832858901700405,1.92121759158912 +"Q7K4T8",0.653598197948867,13.6913233680706,6.46139103978388,6.1194254985713e-05,0.000860058266668856,1.87271882587796 +"Q9VV39",0.32821001709608,17.4982874867437,6.45933971584664,6.13590729817709e-05,0.000860058266668856,1.86990710267476 +"O02195",0.33386026891711,18.6512143706461,6.45111667035881,6.20245795184086e-05,0.00086214165530588,1.85863008348618 +"Q9I7Q5",-0.374750749907623,20.77219857637,-6.39731640644746,6.65748959882062e-05,0.000917743194283702,1.78461947782613 +"Q9VLY7",0.423146754673503,15.436156849296,6.37520781032239,6.85477226863175e-05,0.000937193454432603,1.75409007035369 +"Q9W369",-0.329244418922855,22.3199821731714,-6.35108266291765,7.07724246770913e-05,0.000959743124889336,1.72069900730107 +"A1Z8H6",-0.578247457091029,16.8181635547737,-6.33261984385721,7.25273667685719e-05,0.000968899007918103,1.69509065108415 +"Q9W3R8",-0.380877088299027,17.3544908400137,-6.33176923773843,7.2609338123359e-05,0.000968899007918103,1.69390970312169 +"Q9V3D9",0.288460966492821,17.396297402847,6.31680190575683,7.40681196311962e-05,0.000980520821784407,1.6731132413644 +"O18413",0.281028275309094,19.3819743915117,6.25433558102352,8.05052682044067e-05,0.00105734478240118,1.58598310798131 +"Q23970",-0.461688407169792,21.4113432635012,-6.22882788064235,8.33044186596768e-05,0.00108556070565891,1.55024791296216 +"Q9VKC8",0.44767802013094,17.7959947116844,6.21392219857589,8.49883747971452e-05,0.001094723689767,1.52932366365658 +"P83967",-0.549410222678652,17.5617736774693,-6.21102251143016,8.53201916485075e-05,0.001094723689767,1.52524954480389 +"Q7JWF1",0.43954778187393,20.4794097422952,6.18240087222097,8.86710702758563e-05,0.0011290331696193,1.4849724972723 +"Q7KSQ0",0.309008841693934,20.9299506951147,6.15779843031364,9.16644131857394e-05,0.0011554118248213,1.45025971338321 +"Q9VG81",0.819544286126304,15.6615020835819,6.14984837854398,9.26547305030536e-05,0.0011554118248213,1.43902446235405 +"Q9VJZ5",-0.344010016546148,16.9555165338443,-6.14852371202122,9.28208540324062e-05,0.0011554118248213,1.43715154242648 +"Q9W0S7",0.323232073635737,17.8419896249616,6.14166400805492,9.36862441141562e-05,0.00115604508609646,1.42744880365844 +"P54622",0.401401969386374,17.9451174135033,6.13717006394364,9.42578727272893e-05,0.00115604508609646,1.42108874433949 +"Q9I7K0",-0.483577179512279,16.2388067035861,-6.12783293894583,9.54575569122063e-05,0.00116221317466832,1.40786530274075 +"Q8SZK5",-0.880361957186853,15.38706301649,-6.12159389689127,9.62683098128824e-05,0.00116359087512962,1.39902260994968 +"P82890",-0.454651506600705,19.6627560304689,-6.09023624526382,0.0001004566312296,0.00120394806270304,1.35449605055023 +"Q9VK39",-0.369278894071549,18.1660084981445,-6.07871839787617,0.000102043768927357,0.00120394806270304,1.3381064443614 +"Q9W199",0.547951574963282,15.7684216411779,6.0764218881905,0.000102363428721562,0.00120394806270304,1.33483633522182 +"P42281",-0.416957813328775,21.8638143349238,-6.07548332867716,0.000102494379438748,0.00120394806270304,1.33349966193426 +"Q9VAC1",0.285033994167399,23.3040266422312,6.06769939038081,0.000103587369927717,0.0012082778534226,1.32240918628464 +"P12080",0.300537725287668,19.0169806087515,6.06120463575121,0.000104508908219873,0.00121056152021353,1.31314899169866 +"Q9VN14",0.282446570030025,19.2821451753122,6.05106251488068,0.000105965604339746,0.00121896984854274,1.29867650236408 +"Q7K5K3",0.3197564623812,22.7969727208464,6.03185606085533,0.000108784214270979,0.00123888812751926,1.27122973118114 +"Q9VPX6",0.334822989343323,21.4621553963967,6.02918460300845,0.000109182586777777,0.00123888812751926,1.2674079887945 +"P32748",0.372011696852015,17.2765319360148,6.02154067554455,0.000110331130800801,0.00123927565589896,1.25646714760649 +"A1ZBU5",-0.412583764370467,16.6989775889379,-6.01908614265636,0.000110702681492173,0.00123927565589896,1.25295219580387 +"Q9VTY2",-0.405069623508286,20.8168205199622,-6.00567496153986,0.000112756612826667,0.00125385353463254,1.23373201858529 +"P50887",0.660040556929665,17.682586602018,5.9362773978612,0.000124058215649786,0.00137039141525724,1.13386860112972 +"X2JAU8",-0.334014278128258,21.8253157013207,-5.93125886152475,0.000124921308233278,0.00137084698771782,1.12662044555756 +"Q9VZI8",0.42065940842998,15.7445153670247,5.894312211567,0.000131476983767963,0.00143335692107819,1.07314923657217 +"Q9W308",-0.597762160571264,17.1482275849802,-5.87269703280562,0.000135482453524752,0.00146496131289574,1.04177667320763 +"Q7K860",-0.38125084337851,20.5925869721479,-5.86500333666418,0.000136939540354862,0.00146496131289574,1.03059391090781 +"Q9VW68",0.351820816761389,22.9265726730201,5.86462948032554,0.000137010770270824,0.00146496131289574,1.03005029748366 +"Q9VHB8",0.515261203255758,15.4855106815594,5.85954961712528,0.000137982567332332,0.00146595491917408,1.02266184878924 +"Q9VLP0",-0.438582032892059,16.1555043695167,-5.84619169513773,0.000140573395389702,0.00148402799689888,1.00321579124838 +"Q9VEV3",-0.288097810876742,18.2829089593491,-5.83370037969447,0.00014304332515532,0.00150060544879921,0.985008338417016 +"Q9V419",0.408996286435908,16.4965512146301,5.82596331608594,0.000144596467849588,0.00150618136124444,0.97371958531323 +"Q9VH64",-0.494076220169703,17.5711367160069,-5.8188440472911,0.000146041554958576,0.00150618136124444,0.963324694433144 +"P54192",-0.385938646144066,24.2972686638622,-5.817376670886,0.000146341324601221,0.00150618136124444,0.961181271300802 +"Q9NJH0",0.300324812525865,21.165528854271,5.80907323078581,0.000148050090825522,0.00150618136124444,0.949046508374321 +"A8JTM7",0.459425213061795,17.6058621948845,5.80888161819112,0.000148089774127151,0.00150618136124444,0.948766367115105 +"Q9VGA0",-0.409564143867787,19.3295819603271,-5.799999760889,0.000149941779760511,0.00151577508266989,0.9357751813431 +"Q7K3V6",0.482075888134471,16.2627624435139,5.79440810792043,0.000151120435734895,0.00151848726991449,0.92759069721976 +"Q7K3N4",0.323081197032103,17.0664486065489,5.76852698677809,0.000156706566231275,0.00156518893696867,0.889650524759295 +"A1Z6V5",-0.27593560985164,20.0469006099985,-5.75992794153898,0.000158611161118076,0.00157478224252947,0.877023698530111 +"Q9Y143",-0.319097896471099,20.969590822142,-5.75169617930162,0.000160457633795575,0.00157990082634961,0.864926307777374 +"Q8T3L6",-0.352859926715503,17.3744160041113,-5.74920451075949,0.000161021067433713,0.00157990082634961,0.861262647684036 +"O62619",0.324388577844335,22.2690379264126,5.69056087381705,0.000174912245844577,0.00170616155595763,0.774779256396079 +"Q94901",0.247399056271121,18.8460127514966,5.66148494588019,0.000182270163102915,0.00176759669799804,0.731718041625199 +"Q9VMW7",-0.289149967790106,19.4222511152253,-5.64059495326925,0.000187760599012728,0.00180664805396757,0.700705551366067 +"Q8IN43",-1.11392451857727,17.9733984879883,-5.63796861679948,0.000188463286205251,0.00180664805396757,0.696802178099929 +"Q9VJZ4",-0.249606943623867,21.3352948701554,-5.60464926865617,0.000197626290257839,0.001883660869429,0.647195935396822 +"Q5U117",0.46266378407072,14.6481674477818,5.58084693736534,0.000204463140012824,0.00192813276711018,0.611661547976703 +"Q9VIB5",-0.475566728027069,14.3487386205483,-5.58036546647501,0.000204604016653778,0.00192813276711018,0.610941926512187 +"Q9VMI3",0.378702982719833,20.204579091252,5.57382197278179,0.000206528938808905,0.00193533859513064,0.601158529708584 +"Q9VSA9",-0.394658566382255,22.3612165689411,-5.54686558248195,0.000214665288448488,0.00199208264079894,0.560790567980084 +"Q9VWV6",-0.552855854456649,23.6999618259412,-5.54414201628139,0.000215506202369709,0.00199208264079894,0.556706171204852 +"A1Z7B8",0.45333221792278,16.9896802323546,5.53777619411077,0.000217485437288793,0.00199208264079894,0.547155527978079 +"A1Z7X8",0.337571128192497,17.007407514024,5.53454891772243,0.000218496258884286,0.00199208264079894,0.542311431944284 +"Q7K1S1",0.497128384407587,16.5686948615256,5.53435922367766,0.000218555829296286,0.00199208264079894,0.542026657542118 +"Q9XYZ5",0.336519547062682,16.0299220336324,5.5151661541057,0.000224673729586824,0.00203671620081968,0.513186852646507 +"Q9U4G1",0.322773564758656,19.3958635657509,5.50764795471704,0.000227119836386199,0.00204776155184962,0.501875535404499 +"Q95R98",0.410132406723337,16.3566395389599,5.50234309712555,0.000228862922494874,0.00205238362753468,0.493889384038074 +"Q9VVW7",-0.277312845573894,16.5891906259764,-5.49378975597975,0.000231703563911703,0.00206674622783273,0.481004360588052 +"Q9VAM6",-0.3004018651779,22.128631463793,-5.4726368163975,0.000238891600159623,0.00211952760141623,0.449094003230734 +"Q9VDK9",0.317025731833629,15.5471054971165,5.45269349997667,0.000245886960846812,0.00214878546357232,0.418949877040466 +"O76902",0.381074588025943,17.3595977949114,5.45233779558653,0.000246013696048787,0.00214878546357232,0.41841171765093 +"Q9W3W4",0.322971903562866,15.9500408651397,5.4522247980322,0.000246053970948629,0.00214878546357232,0.418240755352116 +"Q9VH95",-0.296644164227626,20.9121626299367,-5.44188694654643,0.000249768561471048,0.00216986437777973,0.402592145465746 +"Q7JXZ2",0.539345138847818,17.4676856649053,5.43301221536975,0.00025300518463167,0.0021748805154561,0.38914611524772 +"Q9VXR9",0.392707188679459,15.2190127030065,5.43024850681915,0.00025402223013193,0.0021748805154561,0.384956547464395 +"P17336",0.351953060932285,20.5889882936181,5.4296105595325,0.00025425761421699,0.0021748805154561,0.383989313952367 +"Q8MLS1",-0.339740585962396,18.4010456439451,-5.39558280543638,0.000267156494927663,0.00227355629356807,0.332313434188529 +"Q9VNX4",0.395893820575075,21.0704571451399,5.39131027780711,0.000268824774773721,0.00227614073260186,0.325813332165047 +"A0A0B4K692",0.394748659568281,15.9791479331723,5.36714941913928,0.000278470315023122,0.00234590144170994,0.289006706893848 +"Q9VPL0",0.423491635601776,15.1122222559459,5.35523038919712,0.000283364030092933,0.00237513166932167,0.270818620383171 +"P22979",0.408657434018696,19.3699440534799,5.3321239985018,0.000293114239657273,0.00244457275874166,0.235501309660777 +"A1ZBJ2",0.51305075015188,19.4480093374636,5.320557819361,0.000298128620241203,0.00247402257991208,0.217794261862735 +"A1Z8Y3",-0.352786641689461,15.0221821846939,-5.31675416914632,0.000299797568791731,0.00247555616210202,0.211966967917687 +"Q9VJE3",-0.400696268742944,15.3276826288168,-5.29821848542354,0.000308074331395447,0.00253136938309165,0.183540356853136 +"Q9VT23",0.46265804674805,18.2879611352909,5.29327620895118,0.000310322107688667,0.00253733958639557,0.175952556557052 +"Q24439",-0.241374411423006,24.295981650554,-5.28568423937598,0.000313809096703023,0.00255079180253021,0.164289961996314 +"O77477",0.363674600670217,16.8249105072404,5.28305623972074,0.000315025846115841,0.00255079180253021,0.160250986420269 +"Q9VAG9",-0.258292776352654,17.4481380958779,-5.27275432880337,0.000319844280394408,0.00257729594056943,0.144408508661517 +"Q7KLW9",0.260239891276559,17.2308988040277,5.25478966000239,0.000328435640073089,0.00263003529318593,0.116746050342859 +"Q8T4G5",0.247521842944472,19.6840332220789,5.25251107481719,0.00032954279153229,0.00263003529318593,0.113234154069671 +"Q9VDT1",0.379567315580644,19.1302733857646,5.24030825694648,0.000335540129415445,0.00265598281473114,0.094413887868515 +"Q9VSY0",-0.302813581042596,22.682084907208,-5.23942514731315,0.000335978641431817,0.00265598281473114,0.0930510588657558 +"P45888",0.31284645665132,17.1822515874422,5.2265472280525,0.000342443060660453,0.00269431615651715,0.0731650914501456 +"Q8IN44",-0.454274607506569,19.9526799255842,-5.2005518146126,0.000355899265709352,0.00278704213710422,0.0329516698158363 +"Q9VVW3",0.431454268865645,16.5821030242498,5.15761698690565,0.00037937187453339,0.00295697330243783,-0.0336752079533218 +"Q7JQR3",-0.294207812272678,19.1028616637502,-5.13651045411461,0.00039151010161972,0.0030362790381653,-0.0665239536022115 +"Q9VXC9",0.610837544545554,18.983599107953,5.13364907372021,0.000393187213575362,0.0030362790381653,-0.070982036538739 +"Q8IRD0",0.297076474327575,17.5066197404346,5.1275263512025,0.000396801596818013,0.0030466526945824,-0.080525220023139 +"Q9W552",0.299727535124125,16.2500515890974,5.12520087880783,0.000398183625550937,0.0030466526945824,-0.084151200088864 +"Q7K2E1",0.414843527343514,17.3590477558017,5.11411616986203,0.000404842020508908,0.00308345429319113,-0.101445420852886 +"Q7K511",0.733084391750879,16.74716901557,5.10510540159824,0.000410341906752622,0.00311113772937897,-0.115516626777239 +"P29327",0.282235810967908,19.481142521674,5.09226937364439,0.000418314277550263,0.00315723174187258,-0.13558103605242 +"Q9W3M7",0.266245824101228,16.0166096209844,5.08860952872768,0.000420617446562195,0.0031603148687646,-0.141306091833076 +"Q9VN86",0.378387139993059,15.4064328772357,5.07379391265541,0.000430079749449319,0.00321691938153123,-0.164501179201057 +"Q9VW66",-0.264075085057932,21.3672504633989,-5.06741982559701,0.000434220102381294,0.00323338897666071,-0.174489802769731 +"Q7JWX3",0.213575720729949,17.9206531121572,5.06309917718848,0.000437050711007011,0.00324000260426531,-0.181263782430568 +"Q9VSS2",0.367051995745269,16.1558596004614,5.03715842580794,0.000454463141554172,0.00335417929253256,-0.221988948920334 +"Q9VGS3",0.336693504964554,19.3659122521005,5.02959486662941,0.000459677840600451,0.00337772087278217,-0.233880893605799 +"Q9VVB4",-0.392710240963167,15.9818065694565,-5.02442432350681,0.000463279247637886,0.00338925344324559,-0.242014963919129 +"Q9VB22",-0.365847204306956,17.2544758088121,-5.0064255378876,0.000476051523422268,0.00346748445881373,-0.270358892946347 +"Q9VKU5",-0.564251105500565,13.6286484352689,-4.99427610391633,0.000484884166745043,0.00351646430491622,-0.289516913147321 +"Q9VBI2",-0.246891534909135,22.141419187168,-4.98895199453914,0.000488809513100106,0.00352958557511245,-0.297918776345695 +"Q9VGW7",0.37420971159499,16.7559572556592,4.97112216203274,0.000502202742888832,0.00361066454801109,-0.326084282350939 +"P14318",-0.393555797243792,22.1056439605307,-4.94876395957959,0.000519550719195424,0.00371935879664364,-0.361465380818464 +"Q7JRN6",-0.545520032585875,14.7424279930585,-4.94204301864649,0.000524889117552109,0.00374151729947401,-0.372114544917021 +"Q9VZG1",-0.276948482443618,17.8075359182889,-4.93784551634455,0.000528252685679803,0.00374947012644218,-0.378768545031543 +"Q95SS8",0.320790413506248,15.5037660873177,4.93456811576944,0.000530894859291157,0.00375225688685445,-0.38396566284121 +"Q8SYJ2",-0.268878952512011,22.5654017784584,-4.91763674967664,0.000544769847955336,0.00383407639826793,-0.410838039157288 +"P91927",-0.431509120876768,19.3059788335788,-4.91369947728978,0.000548051220249255,0.0038381482054517,-0.417092678018852 +"Q9VWL4",-0.270616541976862,16.181989265368,-4.91143198306844,0.000549950492267959,0.0038381482054517,-0.420695721784943 +"Q9VFS8",-0.342733959702052,17.2701073535087,-4.90288124005482,0.000557175743928289,0.00387237142030161,-0.434289188730324 +"Q9VGZ3",-0.372253472727518,16.7664689786546,-4.89578274773263,0.000563250388460431,0.00389834708693776,-0.445581576547219 +"Q9W0Z5",-0.390466526975171,16.9830586549244,-4.8921904153703,0.000566351328421531,0.00390361163556658,-0.451298945817862 +"Q9VH66",0.296141210341435,16.766556235855,4.87670415565645,0.000579928079720575,0.00398074089289679,-0.475966303117679 +"Q9VA37",-0.309160243702816,21.8216105560219,-4.86176133899587,0.000593356082761458,0.00405622109035292,-0.49979911931759 +"Q9V9Q4",-0.280718780028256,19.1598922737278,-4.85410338732579,0.00060036517401425,0.00408738412349294,-0.512024861297352 +"M9PF16",0.206323237776346,21.2384936964768,4.84579626395715,0.00060806783040971,0.004108734530706,-0.525296025746083 +"O76742",0.380940291480137,18.0312242183932,4.84541087016024,0.000608427715278407,0.004108734530706,-0.525911945175666 +"Q9W3E2",-0.544142213058361,17.7562928421416,-4.82554154866471,0.000627291341277064,0.00421904015020219,-0.557693573049971 +"Q9VWH4",-0.217193493714063,24.3988213544061,-4.81395820533934,0.000638573653781542,0.0042776741144884,-0.576246226378458 +"Q7K204",-0.554036191917598,14.8815565836225,-4.80598456698764,0.000646464942509613,0.00431321409642414,-0.589027892715245 +"A1Z992",-0.509268039550674,14.2200372849405,-4.77081123954504,0.000682528963467042,0.00453569048232281,-0.645512815970689 +"Q9VCE1",-0.366889293797458,13.6712485490011,-4.74893436659026,0.000706030188142716,0.00467324743580179,-0.680728830971673 +"Q9VDH3",0.238474959797692,20.5601536154755,4.74127522765725,0.000714459312966196,0.00471034835584037,-0.693073177050612 +"Q7K3J0",0.222138372436913,20.3669773350983,4.72994801911577,0.000727121158137734,0.00476080144928002,-0.71134376515431 +"Q9VXN3",-0.264374686120691,16.9427403797677,-4.72932861046506,0.000727820365447486,0.00476080144928002,-0.712343353893231 +"Q9W1I8",-0.260170151938485,17.9261588131717,-4.71458732414075,0.000744672578611234,0.00482713392423924,-0.736147607447192 +"Q8MLS2",0.215791353962722,17.4029210571991,4.71446581171655,0.000744813195763242,0.00482713392423924,-0.736343946009555 +"Q8MZI3",0.549297668779911,17.7679037356023,4.71288680663763,0.000746643017058588,0.00482713392423924,-0.738895465015955 +"Q7JVK6",0.31929508615044,17.3515179331666,4.69834356883982,0.000763721830505617,0.00491848653777362,-0.762411483224414 +"Q7KUT2",0.277116799241213,18.161545579563,4.69554879239752,0.000767050972528054,0.00492092700837228,-0.766933771149318 +"Q9VFS4",-0.375025967631645,15.3165897074241,-4.67782249365633,0.00078852737851123,0.0050393243960028,-0.795641120073308 +"Q9VU04",-0.375304071729021,16.6031801150492,-4.67247007418213,0.000795136497026277,0.00506216670625889,-0.804317394401113 +"Q7K012",0.332555045579966,15.5556889374769,4.65982726393791,0.000810981523547837,0.005143411335657,-0.824826365027183 +"Q9VCX3",0.518069878327685,12.8291074877683,4.63427501470087,0.000844034233525054,0.00533276174818103,-0.866340831080639 +"Q9VCK6",0.405782359578184,16.5166414638947,4.61696465350395,0.000867233112739593,0.00544592785813704,-0.894513236379287 +"Q9VAN1",-0.313730014222168,14.7424021381588,-4.61437477566449,0.000870761561664305,0.00544592785813704,-0.898731584439838 +"A1Z7K8",-0.240260258502811,17.5933661276658,-4.61365838392593,0.000871740250673016,0.00544592785813704,-0.899898584694895 +"Q9W4I3",0.298724800702258,16.505960022241,4.60712931221114,0.000880713627087984,0.00545019813099186,-0.910537495124884 +"Q9VQI7",-0.234208508299027,19.1668105461563,-4.60654285668783,0.000881524400241169,0.00545019813099186,-0.911493375978234 +"Q9VSY6",0.28111586549047,17.663550833018,4.60603560096132,0.000882226316167747,0.00545019813099186,-0.912320202742518 +"P13060",0.24994804024459,20.2068804301642,4.59535939928251,0.000897137396119316,0.00551095407833947,-0.929730140178327 +"Q9W1F8",-0.222850430221275,17.7024324314394,-4.59427358272465,0.000898668770568547,0.00551095407833947,-0.931501633210011 +"Q24238",0.305426849564324,16.3330490844813,4.56997518623506,0.000933670287700842,0.00570462285672163,-0.971183860902861 +"O02649",-0.239086046145832,23.3128684865054,-4.54493487459697,0.000971251184396058,0.0059125802028198,-1.01215702307564 +"Q9VL01",-0.313739684025208,20.48499878342,-4.54061490143744,0.000977894637674467,0.00593137547505822,-1.01923384442395 +"Q9VZ64",-0.228970073097155,19.4213569768199,-4.53537625847035,0.000986015294139443,0.00595546728828773,-1.02781878475243 +"O18333",0.288581897579981,17.4998411329893,4.5334574867957,0.000989007457347543,0.00595546728828773,-1.03096408699697 +"Q9W260",0.262923708272538,17.3936169473681,4.52727341816897,0.000998716402062627,0.00599229841237576,-1.04110436140914 +"Q9VEV7",0.607278813553421,12.8928523517671,4.52057853756359,0.00100934084049749,0.00603433878835057,-1.05208770370246 +"Q9VI09",-0.308569113344667,20.1575178399157,-4.47750939931119,0.00108060495751943,0.00643731810408005,-1.12288030937658 +"Q9W1G0",-0.22134487537345,21.7374149092873,-4.46899540706913,0.00109531059318564,0.00650170131471048,-1.13690226375465 +"Q9VN01",0.29816099880558,16.0477089479542,4.44174165782928,0.00114382007835502,0.00676557408048288,-1.18184789630409 +"Q9VSN3",-0.238864952753183,20.8764647617761,-4.43801285026791,0.00115063119313366,0.00678181212066056,-1.1880044250797 +"Q9VWI0",-0.254338961190225,20.9856061567575,-4.42873039887314,0.00116777306313043,0.00685861080739984,-1.20333785952334 +"Q9VIQ5",-0.40409763903163,16.5531611775232,-4.42402536604106,0.00117656443216271,0.0068758904152926,-1.21111402456352 +"Q9VAD4",0.298986027666,13.3195946212322,4.42274990813821,0.00117895962756216,0.0068758904152926,-1.21322248465136 +"Q8IQ70",0.287705873004779,18.0309499848255,4.41382902835372,0.00119585656380052,0.0069501350119138,-1.22797516851638 +"Q9VIK6",-0.274023036206048,16.6281570655669,-4.39510940701582,0.00123214817168109,0.00713619149431965,-1.25896387117317 +"Q9VCH5",-0.191039325409928,18.012099179812,-4.37008800205424,0.00128247848476162,0.00739101410649862,-1.30045102460468 +"A1Z847",-0.291619421326342,20.1326773785427,-4.36885767902471,0.00128500844777254,0.00739101410649862,-1.30249293039028 +"Q9VW34",0.283491617316841,18.3949451692373,4.35438077892161,0.00131517572244403,0.00750533510151227,-1.32653316530102 +"Q9VEN3",-0.232584309960096,17.5907609103476,-4.35375519449568,0.00131649601713791,0.00750533510151227,-1.32757257199318 +"Q9VNW0",-0.527409600156286,14.698542230532,-4.35002411366023,0.00132439948601356,0.00750533510151227,-1.33377272282602 +"Q9W3M8",0.257032818436077,18.5933546245238,4.34876443509901,0.00132707910078252,0.00750533510151227,-1.33586637811582 +"Q9V8F5",-0.339228126635172,16.0703272697061,-4.34862202046907,0.00132738240704204,0.00750533510151227,-1.33610309100066 +"Q9VZD9",0.488771420903721,14.4780193754072,4.3455735086151,0.00133389247521644,0.00751666435358451,-1.34117072076091 +"Q9VXK7",0.212480778405748,18.1095396777029,4.32001853642574,0.00138980441664327,0.00780536621872383,-1.38369489602707 +"Q8SWS3",-0.373762531835172,16.5248598142761,-4.30132337942291,0.001432266427472,0.00801684698329963,-1.4148529500596 +"Q86BS3",-0.259060900171125,18.9698418694989,-4.28758496692296,0.00146433881269831,0.00814056663073957,-1.43777597449684 +"Q9VCR4",-0.388765555690753,14.9898645173122,-4.2857612969654,0.00146865261787339,0.00814056663073957,-1.44082048393446 +"Q9W5W7",0.331453081626757,14.8810255339074,4.28196555234658,0.0014776741752113,0.00814056663073957,-1.44715849371585 +"Q8I099",0.249880453281232,16.8062728045611,4.28182103621658,0.0014780188039639,0.00814056663073957,-1.44739983502813 +"Q9VSN9",0.238909878327231,16.5024181720901,4.2761866079308,0.00149152135485326,0.00814056663073957,-1.45681119140793 +"A1ZAA9",0.215802425654715,16.6240442186954,4.27325970150332,0.00149858661945896,0.00814056663073957,-1.46170154106552 +"Q9W4P5",0.241229927967741,19.6598627976309,4.27210632620427,0.00150138040941381,0.00814056663073957,-1.46362890158284 +"Q9W3H4",-0.255794964921673,19.5446879923339,-4.26956427976181,0.00150755728831479,0.00814056663073957,-1.46787735822839 +"Q9VZI3",0.264052063178648,14.3789312074502,4.26936482388144,0.00150804307185228,0.00814056663073957,-1.4682107352202 +"Q9VX69",-0.445344757763817,18.2017974902117,-4.2669843643878,0.0015138535015238,0.00814056663073957,-1.4721898657752 +"Q9VF15",-0.277340522695116,20.8456012489903,-4.26660371618058,0.00151478480030542,0.00814056663073957,-1.47282621055323 +"Q9VLS9",-0.299242476853294,18.9671779949702,-4.26549982519433,0.00151748900098008,0.00814056663073957,-1.4746717234105 +"Q9VMD3",0.248619105836427,17.7312651630121,4.26536669160173,0.00151781548091127,0.00814056663073957,-1.47489430899082 +"P09180",0.208119300831846,20.5876678907512,4.26162628544068,0.00152701821579064,0.00814496808157317,-1.48114871364074 +"Q8MR62",-0.264923869115936,17.6719210883795,-4.26106578793567,0.00152840228389233,0.00814496808157317,-1.4820860707151 +"Q9W266",-0.250565509279614,18.4661180478504,-4.25844139166161,0.00153490041425706,0.00815354742350566,-1.48647550193389 +"Q9VVL5",0.235289580055934,17.314652758469,4.25399635571384,0.00154597285214007,0.00818629434085597,-1.49391184315479 +"Q9V3L6",0.290555000340756,15.8087979639948,4.24779130010023,0.00156156999812441,0.00824271758503646,-1.50429639615448 +"B7Z0Q1",0.258544938430077,17.7372319675798,4.23544477592529,0.00159309826408975,0.00837908253976504,-1.52497213710379 +"Q9VE50",-0.402572325007242,14.6335216585922,-4.23376043262506,0.00159745098779693,0.00837908253976504,-1.52779411497854 +"Q961B9",0.294553723625649,14.9511909091529,4.22950416810124,0.00160850589699881,0.00841062017615677,-1.53492656591355 +"A1Z6L9",0.42317689549466,15.2128805331913,4.22086679258685,0.00163118769508139,0.00849131146692445,-1.54940697082943 +"Q9VH98",-0.293625711540098,17.0702290275465,-4.2194380861524,0.00163497174558544,0.00849131146692445,-1.55180298197141 +"A1Z6P3",-0.21471416772112,17.2439564200068,-4.21718676141233,0.00164095328970346,0.00849131146692445,-1.55557903050526 +"Q8SX89",-0.387290657472576,15.4983298505622,-4.21593061752997,0.00164430072171259,0.00849131146692445,-1.55768615327787 +"A1ZA23",-0.192406854999668,18.3436410059318,-4.21175119765843,0.00165548994968457,0.00852270751874648,-1.56469821002413 +"Q24319",0.360631693535554,16.407598378186,4.20421599135527,0.00167586582946366,0.00860105908783198,-1.57734540823318 +"Q6IHY5",-0.21881421406885,20.9493898108014,-4.19729409792055,0.0016948153238576,0.00867163177973765,-1.5889687985775 +"Q9VV46",-0.466017172177143,23.8606421778444,-4.1947641155657,0.00170179745974796,0.00868072832678774,-1.59321852934701 +"B7Z0C9",-0.21959498139398,15.9848314618686,-4.19151252135461,0.00171081543399347,0.00870012238994242,-1.59868142941382 +"Q9VJ68",-0.351088140840915,17.8060703427041,-4.18823886330275,0.00171994528136222,0.00871996574259023,-1.6041825823958 +"Q95RI2",-0.43707851704489,16.7551910613106,-4.1848391528752,0.00172948081714327,0.00874173940301506,-1.60989681300623 +"A1Z968",-0.25007248548242,17.1627640152448,-4.17724663602391,0.00175097722540199,0.00882365562528857,-1.62266291581708 +"Q9VM12",0.242195126366429,18.9156264110288,4.17392965852959,0.00176045628481462,0.00882624616926151,-1.62824209355209 +"Q9W5B4",-0.437095645941714,18.6470192096055,-4.17336533554627,0.00176207432515832,0.00882624616926151,-1.62919140881068 +"Q9W414",0.199496933106921,19.5209696951664,4.16666781482393,0.00178139720217765,0.00889631896177343,-1.64046077704592 +"Q9VJZ6",-0.296586678101651,19.7057657086772,-4.16268589676766,0.00179299060491687,0.00891725808029667,-1.64716315039186 +"Q9VMT5",0.335347051188954,16.4770167758862,4.16156027240208,0.00179628220322523,0.00891725808029667,-1.64905811771039 +"Q9VK12",-0.257352242494832,22.335361646332,-4.13730927306041,0.00186875872942387,0.00922711456787894,-1.68991762848963 +"Q9V393",0.372705680046884,15.861809287001,4.13698020002558,0.00186976302394669,0.00922711456787894,-1.69047250709717 +"Q9W227",-0.179415151368122,21.954687781171,-4.13392975474781,0.0018790996249518,0.00924583532277168,-1.69561668162171 +"Q27272",-0.33444238684115,15.6021802627574,-4.12991966822792,0.00189144785391188,0.00927922064801473,-1.70238068403323 +"Q7KUA4",-0.214540315869375,18.7689083560596,-4.12455360125463,0.00190810476523836,0.00931148634559632,-1.71143457576252 +"Q9VPF6",0.299110153727517,13.9256222289471,4.12420580888924,0.00190918964639924,0.00931148634559632,-1.71202149428258 +"Q9VNZ3",0.883797303968695,15.3491691268023,4.11533469773615,0.00193708129943816,0.00940712997548245,-1.72699633260508 +"Q9VD02",-0.248834890006574,18.2700987234306,-4.1143890602963,0.00194007956328895,0.00940712997548245,-1.72859310497121 +"Q9VR79",0.339156062991272,20.1361496749213,4.10869556497923,0.00195823460244592,0.0094634517358957,-1.73820895731641 +"Q9VB46",0.396343096592275,15.2514540147666,4.10719716027442,0.00196304214665462,0.0094634517358957,-1.74074021152022 +"Q9VRJ6",-0.256559338362409,15.7462232218209,-4.1040492409722,0.0019731823888413,0.00948492283742734,-1.74605876182435 +"Q9I7K6",-0.278780094355412,16.2267341356931,-4.08580201114167,0.00203305240951788,0.00974463051458572,-1.77690878043592 +"Q9VHD3",0.221657854056906,15.6926654973662,4.08028914947255,0.00205151231840815,0.00980493566505671,-1.78623604426925 +"Q9VJD0",0.256501457569691,16.0989445338959,4.06458946326459,0.00210505097583283,0.0100320715076833,-1.81281574135997 +"Q9VXN4",0.248329320423585,14.9488780574788,4.05845171219521,0.00212637771285718,0.0101048376781931,-1.82321390325914 +"P54185",-0.373529236940509,17.3413432621353,-4.05453434615039,0.00214010745917257,0.0101411910281245,-1.82985245513326 +"Q9VGP7",0.368835492726754,15.9119983346076,4.04971704230501,0.00215711866500197,0.0101928440034654,-1.83801822979823 +"Q9VLR5",-0.465003244316215,16.9294892035686,-4.0458746401809,0.00217078866324975,0.0102284618370073,-1.84453314821765 +"Q9U9Q2",-0.216782679439065,15.5831075909112,-4.04104115458857,0.00218811347108019,0.0102810514641176,-1.85273060698516 +"Q500Y7",-0.218702672354365,20.093010570554,-4.0359783587515,0.00220641542183933,0.0103379239427753,-1.8613195014807 +"Q9VDD1",-0.396368651102014,14.3372789099959,-4.029208264327,0.00223113988154546,0.0104244854969687,-1.87280881354257 +"P05031",0.600836507257874,13.5767994139783,4.02335599039344,0.00225274600395639,0.0104960344541879,-1.88274422409727 +"Q9VXN2",-0.375230240013316,18.4971098614017,-4.0158649705757,0.00228072205930808,0.0105967810443618,-1.89546672055056 +"Q9VLT3",0.183032944732101,19.4175425222551,4.01398194689614,0.00228781141223143,0.0106001928766723,-1.89866566187676 +"Q9VGL0",-0.289125064455819,12.8425925400498,-4.01036112568977,0.0023015081970015,0.0106341154365609,-1.90481781678646 +"Q94915",-0.41364643709883,16.9675160309859,-4.00824750526392,0.00230954317915417,0.0106376534427851,-1.90840967875667 +"Q6NMY2",0.393661668385135,20.1133569133105,4.006121288849,0.00231765564538877,0.0106376534427851,-1.91202339102007 +"Q9VSL5",0.286202272691128,17.5682904574253,4.0047389571304,0.00232294583695795,0.0106376534427851,-1.91437303763112 +"O18332",0.264203818072509,20.6801583420006,4.00097085608246,0.002337430594778,0.0106376534427851,-1.92077889896396 +"Q9VJQ6",0.381189958789674,14.4953821611852,4.00081893907425,0.00233801654749858,0.0106376534427851,-1.92103719073828 +"Q9VAN7",-0.216634703085941,23.7416227146676,-4.00016544675062,0.00234053885701566,0.0106376534427851,-1.92214829486356 +"P00408",0.178428662164002,21.4085415765013,3.99617334453558,0.00235600922598924,0.0106788679047556,-1.92893679861839 +"Q7KVQ0",0.376569264783445,15.6253681352992,3.99275907760126,0.00236932514586251,0.0106860857011438,-1.93474393956478 +"Q9I7J0",-0.276712706381289,20.9906771004296,-3.99248060044677,0.0023704146938988,0.0106860857011438,-1.93521763639788 +"Q95SI7",-0.204224715156379,21.2383177899522,-3.96917346108456,0.00246348630015717,0.0110757281635099,-1.97489032177743 +"Q9VAY3",0.318412369322765,13.9808073984718,3.96584711185246,0.00247707746907281,0.0111068957484232,-1.98055659237294 +"Q9VN73",0.216966172857155,18.4107303888028,3.95661031823371,0.00251523051524114,0.0112477332424188,-1.99629654098604 +"Q9W4K0",0.232914415851432,19.7322088023233,3.94642288311207,0.00255802291769667,0.0113836609473901,-2.01366579993277 +"Q9V3Y7",-0.47975706381532,19.5490173916781,-3.94612718577569,0.00255927629212907,0.0113836609473901,-2.01417010064803 +"Q9VG92",-0.288903689502067,16.4991472414224,-3.9374048923967,0.00259653744366927,0.0115186820639371,-2.02904932906767 +"Q86BM0",-0.200776959948197,17.4528342251999,-3.92614023747304,0.00264549929857919,0.0117047555173212,-2.04827601796579 +"A1ZBU8",-0.229751543277022,20.7934854746034,-3.92054189315058,0.0026701900705766,0.0117827434860364,-2.05783572294881 +"Q9W392",0.192435777834248,19.9800686651496,3.91737893863081,0.00268424608141247,0.0118135157356095,-2.06323804168209 +"Q9VRP3",0.297875493978168,18.0085763060275,3.90338692181945,0.00274735840321691,0.0120594574120153,-2.08714732665849 +"Q7KTG2",0.229146351179292,18.0469619309,3.90143062784674,0.00275630504389927,0.0120669732630551,-2.09049161909691 +"Q9VTU2",-0.189140093158016,20.8704608307966,-3.88804729847283,0.00281833132003423,0.0123062215754374,-2.11337970455668 +"Q27377",-0.422820358633789,19.9948450259028,-3.88301790842758,0.00284201526539004,0.0123772361949624,-2.12198507245129 +"Q9VWW2",-0.350915569127467,15.1202617220001,-3.87675065036809,0.00287181921919124,0.0124744647333619,-2.132711590376 +"Q9VA34",-0.300510298813832,14.3987562552137,-3.8700598903185,0.00290399701523591,0.0125814727828922,-2.14416675916433 +"P16378",0.216311301651842,20.4805134022107,3.85942813474401,0.00295590346209407,0.0127731786911215,-2.16237731013475 +"Q7K0E6",0.254950455986386,16.7261968780704,3.85349932554571,0.0029852682077259,0.0128667373914388,-2.1725367014196 +"Q9VCK0",0.312410536617222,18.1891109873577,3.85127015601684,0.00299638753027247,0.0128813773208621,-2.17635730890342 +"Q7K3W2",0.21996635721597,17.5519158356498,3.84850052748123,0.00301026286056396,0.0129077595152203,-2.18110481179446 +"Q9VW73",0.284805380261448,14.2298133172702,3.83126873361102,0.00309810820155219,0.0132503704620232,-2.21065702948288 +"Q9VD09",-0.486013798365779,14.5456340137454,-3.82235434980585,0.00314459635134868,0.013414799780178,-2.22595486775991 +"Q9W2M0",-0.212428086095155,17.7702037715669,-3.80575038221007,0.00323313179678984,0.0137573057067486,-2.25446627677881 +"Q9V9M7",0.236384479821631,18.3539368219049,3.8001921791867,0.00326334559813263,0.0138505355157385,-2.26401556922998 +"P40301",0.28697245476663,17.8163575200392,3.79493025235865,0.00329221967430563,0.0139376203470604,-2.27305815551053 +"M9NFC0",-0.274559316551095,19.809523432855,-3.79201089445084,0.00330835376915523,0.0139704660429137,-2.27807601751475 +"Q9VHX4",-0.188859773327302,22.8593909347255,-3.78603909738557,0.00334161421336037,0.0140752841108209,-2.28834261776904 +"Q7K8X7",0.278188220118945,19.5125774489963,3.76659038556733,0.00345236713344795,0.0145051596438065,-2.32179811156483 +"Q9V3Y0",-0.257885616509757,16.326290489854,-3.7648683769237,0.0034623555321155,0.0145105754461524,-2.32476172695366 +"Q7K188",-0.229332205438414,22.0035646016215,-3.76246581194623,0.00347634168343074,0.0145118268595384,-2.32889698048807 +"Q8IM93",-0.261564432093742,19.0786590339489,-3.76180855283641,0.00348017803619736,0.0145118268595384,-2.33002832164117 +"O77263",-0.221211210276827,15.5301983173462,-3.76034191267537,0.00348875453877392,0.0145118268595384,-2.33255297238375 +"Q7JXC4",-0.193414022939539,21.6541656509198,-3.75384761724047,0.00352699624219561,0.0146344023183639,-2.34373414382358 +"Q7KLE5",-0.186072757909564,21.4236381156513,-3.74892136681252,0.0035562949585199,0.0146879782378997,-2.35221778592589 +"Q9W1N3",-0.248346735087061,20.5501205035111,-3.74871632478349,0.00355751990893974,0.0146879782378997,-2.35257093508246 +"Q9VME1",-0.371327970341568,16.6098764624243,-3.74475042615616,0.00358129921327319,0.0147496471302214,-2.35940213360603 +"Q9VSR5",0.220702585136266,20.2097841191648,3.74101146324968,0.00360386910812858,0.0147839346405461,-2.36584353120715 +"Q9VNH5",0.221424926245174,17.0654352672484,3.74043682174608,0.00360735095845459,0.0147839346405461,-2.36683360375606 +"P20348",-0.359248641128257,17.4272303433328,-3.73165344785132,0.00366100808090236,0.0149670624483949,-2.38196991275125 +"P12370",0.305367028820129,20.7559990997669,3.72848347006358,0.00368057633633194,0.0150102721980481,-2.38743412201972 +"Q9VI75",-0.398074941871567,17.441755620619,-3.71773547782108,0.00374773612677104,0.0152468874620832,-2.40596636727558 +"Q9VUJ1",0.190776436051046,19.9923078679351,3.71333526836873,0.00377559723478966,0.0153228617703872,-2.41355587923841 +"Q24583",-0.189308699849299,21.2388733317095,-3.7099878548627,0.00379693626451805,0.0153720623524663,-2.41933046359808 +"Q9VP57",0.211827375350236,19.5541368805725,3.70656147328041,0.00381890841249024,0.0154195387738117,-2.42524211357958 +"Q9VSK9",-0.198502515674752,14.4874558706014,-3.70528127316132,0.0038271517100468,0.0154195387738117,-2.4274511022688 +"Q9VXF9",-0.176776152478508,17.4500926738035,-3.70280572516049,0.0038431443712108,0.0154466621956135,-2.43172300040046 +"Q9V3W0",-0.300605552314014,20.8403979854928,-3.70024911936307,0.00385973351565098,0.0154760468848698,-2.43613523496669 +"Q9VZE4",0.248232609515142,17.6718183901476,3.6982830758615,0.00387254120209946,0.0154901648083979,-2.43952858378061 +"Q9VE85",0.236279020140376,15.8013898726511,3.69290817356721,0.0039077813413524,0.0155937303286502,-2.44880694889943 +"Q9W3K9",0.346815441679922,19.3599620827627,3.67916711518024,0.0039993945745811,0.0159212175427238,-2.47253651533914 +"Q9VXZ0",-0.263776702464455,19.7021063322468,-3.67757172300837,0.00401017467783803,0.0159261222919853,-2.47529246309242 +"Q9VZJ8",0.409086433357576,14.8485853008966,3.67577203271764,0.00402237141465756,0.0159366164362204,-2.47840153432713 +"Q9VEP6",-0.185640936944132,18.5994897709731,-3.67076741459616,0.00405649105307467,0.0160337134514895,-2.48704847446565 +"Q0KIE7",0.630914072188274,14.1196381458357,3.66459084232512,0.00409901489245658,0.0161634913489777,-2.49772265808296 +"Q7JZW0",0.25452442346511,19.7611666657041,3.65719050953455,0.00415057333071677,0.0163281988576311,-2.51051509655093 +"Q9VMH8",0.179140629066403,18.8864274256239,3.65320211172798,0.00417863905671807,0.0163627529699553,-2.51741107717275 +"Q9VZ19",-0.41560679631937,20.1943976301587,-3.65315433018346,0.00417897647793821,0.0163627529699553,-2.51749369834775 +"Q9VH77",0.312844521185978,15.5721163750268,3.64806988753337,0.00421504342568079,0.0164635426804571,-2.5262862932459 +"Q9VF24",0.283622267893136,16.1309800081282,3.64400803360304,0.00424408830697348,0.0164635426804571,-2.53331173120006 +"Q961Q8",0.432334315373398,15.4807380893728,3.64287151138625,0.0042522522578937,0.0164635426804571,-2.53527766832667 +"Q9VWP4",0.306061439896787,15.1722850845769,3.64208719898715,0.00425789567864061,0.0164635426804571,-2.53663440779555 +"Q9VN02",-0.217477000419205,17.3114724439297,-3.64139970859039,0.00426284881240526,0.0164635426804571,-2.53782369299358 +"Q9VFC2",0.277723538611006,19.8348158330009,3.64050620502536,0.00426929512519674,0.0164635426804571,-2.53936940485145 +"Q95TN1",0.363894173276639,14.0419796930152,3.63988133539841,0.00427380934091004,0.0164635426804571,-2.5404504255508 +"Q9VYT0",0.156053239057805,18.3020186436602,3.63754264378221,0.00429074858365411,0.0164907111463941,-2.54449657196905 +"P36975",-0.301452210157365,22.2372431115329,-3.62291573696155,0.0043982819055276,0.0168584487149916,-2.56981037099082 +"Q9VCE0",-0.40866646471364,15.8518192206389,-3.6217937561721,0.00440664486794745,0.0168584487149916,-2.57175266645386 +"Q9VHN6",0.288850848273009,15.0242308509976,3.61165109168856,0.00448299720995151,0.0171068836510713,-2.58931450411577 +"Q9VYY3",0.182936300772734,17.5308990554737,3.61045443686716,0.00449209534722376,0.0171068836510713,-2.59138690946489 +"Q9VH76",-0.20663083646664,19.3296052678256,-3.59775095834536,0.00458986651300028,0.0174394016940421,-2.61339257920692 +"Q7K3Z3",-0.199778321377838,19.9061464163032,-3.59262163241503,0.00462996575261725,0.0175517792621945,-2.62228063324915 +"P32234",-0.212278467075542,16.685745592547,-3.59044832500841,0.00464706508093185,0.017576654319715,-2.62604699372734 +"Q9VLB1",0.336867296381619,16.7586880475341,3.58743730202215,0.00467086351127625,0.01762669759459,-2.63126558279316 +"Q95TK5",0.25275835077607,17.2252900583781,3.58515541686689,0.00468898297989982,0.0176551323035506,-2.63522081258842 +"Q9VCR2",0.297372883788514,15.5196688349656,3.58357616093558,0.00470156574242228,0.017662638870181,-2.63795834143463 +"Q9VZF9",-0.243719069873578,19.1089794764666,-3.57101311778995,0.00480291469424187,0.0180028353033605,-2.65974062153574 +"Q9W4W8",0.302351264969495,17.4355556152766,3.5663404286353,0.00484118453518158,0.0181055959746253,-2.66784460225453 +"Q9V431",-0.188489247062694,18.5004037208297,-3.56156655279042,0.0048806088542609,0.0181667604247072,-2.67612533926474 +"A1Z9I0",-0.188450396109054,19.4107284515063,-3.56066112545966,0.00488812355962433,0.0181667604247072,-2.67769603139346 +"Q9W1B9",0.41527051318862,20.5846347991985,3.56040961932512,0.00489021308794577,0.0181667604247072,-2.67813234030237 +"Q9W401",-0.182257811355015,24.4786463644169,-3.55448602764294,0.00493969456708891,0.0183098011953429,-2.68840950347095 +"Q95RA9",-0.165615501534738,20.5202422123078,-3.5529241989387,0.00495282699958318,0.0183177725838243,-2.69111952613461 +"Q9W4C2",-0.375078485700673,15.8559679929059,-3.54544247519693,0.00501623841600195,0.0185073902518629,-2.70410334866635 +"Q9W1R0",0.773187535478591,14.0734059385537,3.54426577602477,0.00502628764034405,0.0185073902518629,-2.70614567272549 +"Q9VRR3",-0.291311456069543,19.7337705121679,-3.54212434214978,0.00504462928945087,0.0185340124555155,-2.70986261683023 +"Q0KHZ6",-0.272997552757197,23.0911932318463,-3.5394468472332,0.00506765970965777,0.0185515563647716,-2.71451035915917 +"Q9VSL4",-0.174532399177711,20.9375812033228,-3.53898439154923,0.00507164850259943,0.0185515563647716,-2.71531315347699 +"P08182",-0.18267142609389,19.6889621815154,-3.53510869087262,0.00510520514125335,0.0186334402092136,-2.72204157122099 +"Q8IPW2",-0.162224102671622,17.1922404897284,-3.5319039827813,0.0051331254006246,0.0186944392319691,-2.72760570433326 +"Q9VAA9",-0.234428042484733,17.0910266953547,-3.52773196322351,0.00516970964755894,0.0187803653512476,-2.73485011706198 +"Q9W1L1",0.375375484280918,14.7999841704574,3.52662270465539,0.00517948193416287,0.0187803653512476,-2.73677641578052 +"P20432",-0.167611571906473,23.5614845870789,-3.52537500450525,0.00519049665882802,0.0187803653512476,-2.73894320247777 +"A1ZA22",0.667856748774152,13.512010914393,3.52158507084575,0.00522410286181622,0.0188378546642548,-2.74552538055763 +"Q9VEY0",0.235175477682667,17.9110938685526,3.52052157980409,0.00523357339411618,0.0188378546642548,-2.74737253245655 +"O61491",0.159935365778175,20.9604211869166,3.51977117417876,0.0052402665253083,0.0188378546642548,-2.74867592819193 +"Q9Y125",-0.241259232615818,22.6227830984005,-3.51131308191346,0.00531632134035177,0.0190701591305522,-2.76336891886166 +"Q9VDQ3",-0.540108562747498,13.2347964542374,-3.50724401784407,0.0053533153031103,0.0191257150502178,-2.77043876125758 +"Q8IRH5",-0.287572180355138,14.4123140805469,-3.50610954759967,0.00536367665546993,0.0191257150502178,-2.77241000391495 +"P17210",-0.177714422314079,20.8521212317906,-3.504843130112,0.00537526756427668,0.0191257150502178,-2.77461059046846 +"Q7PL91",-0.273557291902826,18.9008120814466,-3.50412741945851,0.00538182955005377,0.0191257150502178,-2.77585427730728 +"Q9VXK6",-0.322064404052028,17.8203774076181,-3.5033310981655,0.0053891403318959,0.0191257150502178,-2.77723806994912 +"A8JNG6",-0.7334284384018,15.7114531181878,-3.50041214411936,0.0054160261156987,0.019172642425466,-2.78231068954056 +"Q9VVP9",-0.240318948740526,16.6235821408519,-3.49940313137259,0.00542535205324936,0.019172642425466,-2.7840642680568 +"Q9VSA3",0.230194623245943,21.6855396364814,3.48565145565713,0.00555411848691386,0.0195509210441372,-2.80796830055135 +"Q9VDC6",0.291215540944801,16.937969038029,3.48473318200962,0.00556282842904694,0.0195509210441372,-2.80956481498945 +"P15425",0.223175862354378,17.0850927663226,3.48423512545499,0.00556755845081843,0.0195509210441372,-2.81043075437863 +"Q9VU35",-0.190583426697678,22.7438376938461,-3.48108646403653,0.00559755732240932,0.0196149697768461,-2.81590539450021 +"Q9W370",0.42679146436182,18.2421032461937,3.47462653058097,0.00565962734233386,0.0197908981279096,-2.82713881112457 +"Q9W3B3",-0.242545046210155,15.671339866835,-3.46615095671286,0.00574214270800548,0.0200374352237514,-2.84188010793356 +"Q9VQD7",-0.180026032819253,21.0021962050401,-3.46289680802763,0.00577415264337667,0.0201070701652449,-2.84754077699897 +"P07486",0.184540750154071,22.2325332583904,3.45662628259754,0.00583635335971361,0.0202574091226944,-2.85844978210464 +"R9PY51",-0.285280253876316,21.5459642941215,-3.4560990156944,0.00584161498082493,0.0202574091226944,-2.8593671586215 +"Q7JWD3",-0.260452218015798,17.15183859357,-3.45197072097261,0.00588298077207102,0.0203493035825724,-2.86655026167916 +"A1Z877",0.196585565031267,19.9946616831139,3.45102353224482,0.00589251416689597,0.0203493035825724,-2.86819844019514 +"Q9VKE2",-0.368290856598719,24.0459300039475,-3.44879267771569,0.00591503052615678,0.0203746622129134,-2.8720804384014 +"Q9VPX0",0.373291697596439,14.3817251458285,3.44787808327055,0.00592428727413848,0.0203746622129134,-2.87367201940878 +"Q9VQX3",-0.455639831117155,15.363387632514,-3.44017156570848,0.00600288126078621,0.0206024813641798,-2.8870842799019 +"Q7JR58",-0.189924345697566,22.8290580560676,-3.43867375605961,0.00601828073436692,0.0206129204618563,-2.88969131251653 +"Q9VR25",0.18300777846127,17.0186640061381,3.43348293501268,0.00607196485092128,0.0207541749412637,-2.89872694991221 +"Q9V9V4",-0.209227371851021,18.6082906320472,-3.43025753308603,0.00610557055264568,0.0208263633574908,-2.90434192053778 +"Q8SX68",-0.200475297050367,17.5819923829387,-3.42750192659131,0.00613443311223918,0.0208407401901301,-2.90913936032232 +"P40304",0.258248933649543,18.7576875807929,3.42746943778809,0.00613477424061984,0.0208407401901301,-2.90919592421903 +"Q7KN90",-0.186041787233416,17.2664010790091,-3.42616995125866,0.00614843471359417,0.0208446932973071,-2.91145839874795 +"Q9VZX9",0.170437508524653,18.5485652599297,3.40100528321072,0.00641923526929241,0.0216960612878726,-2.95528364617608 +"Q9VBV5",-0.230331870452702,17.1740040182668,-3.40042958281523,0.00642557210803901,0.0216960612878726,-2.95628651357866 +"M9PGG8",-0.205526462731115,18.4768028910806,-3.39247669079278,0.00651377241208003,0.0219494391582818,-2.97014156286883 +"Q9VR30",0.23600183033756,17.3224580915871,3.37589713744011,0.00670167105095824,0.0225370711955612,-2.99903210316455 +"Q9W3T2",-0.171919305153658,16.2826420092416,-3.37101663404065,0.00675803740030805,0.0226808981563658,-3.00753821265337 +"P35220",-0.214892755967732,19.3361756112223,-3.36502073223009,0.00682795336879654,0.0228695305605474,-3.01798929720092 +"Q9VK00",0.679543789561958,17.8481928166995,3.36138537708437,0.00687070538913116,0.0229666063909234,-3.02432636999293 +"A1Z9J3",-0.202613175415919,17.6088326224457,-3.35786519283355,0.00691236509528326,0.023059649957865,-3.03046303858342 +"Q9W3N7",-0.470851907746644,17.2516479646195,-3.34669471206057,0.00704628864264508,0.0234594999120399,-3.04993858540394 +"Q9VBT2",0.71450158439866,12.8900577220959,3.34401262911682,0.00707883915996321,0.0235209237426666,-3.05461524901496 +"Q9W0R0",-0.213671994507022,16.7072539768916,-3.34164288497133,0.00710772750431146,0.0235366663035531,-3.05874745247455 +"Q9VMB9",-0.207890820096654,22.5968051243714,-3.34130973563495,0.0071117984514333,0.0235366663035531,-3.05932838785239 +"Q9VVZ4",-0.407074232627444,15.7947052388473,-3.33838118667988,0.00714768727596275,0.0236085987649621,-3.06443522095078 +"Q8IPD8",-0.224986545644839,18.3132308231899,-3.33668207993233,0.00716859468736093,0.0236308615385732,-3.06739823911747 +"O46067",-0.159851136677155,19.7391607175898,-3.33253828234788,0.00721984751479398,0.0237491789890987,-3.07462477447729 +"Q7KN75",0.245845805028733,19.3799056571052,3.3314827139536,0.00723296338516916,0.0237491789890987,-3.07646568941552 +"Q9VIV6",0.644546565279585,14.7912804362585,3.32402468778677,0.00732633184140069,0.0240084901993249,-3.08947326447092 +"Q9VAN0",0.169774965661581,20.4317827130449,3.31667508668315,0.00741955302756886,0.0242663028431076,-3.1022929788027 +"Q8MRM0",-0.207375925904088,18.5296618039178,-3.31405972312845,0.007453018680715,0.0243280531495746,-3.10685517427859 +"Q9VPU6",-0.159761515581454,15.2615327091343,-3.31001831449466,0.00750503646261793,0.0244500016008725,-3.11390522405339 +"Q9VIN9",0.226925931699602,16.4050983996739,3.2957145986481,0.00769215204376023,0.025010739978542,-3.1388600350091 +"Q9W4W5",0.242060871145359,17.371055080369,3.28592881131648,0.0078229149289581,0.0253864243219885,-3.15593489442467 +"Q03427",-0.14043184536402,21.7367999195033,-3.28188074946361,0.00787767126635887,0.0255047080886458,-3.16299868908733 +"Q9W086",0.201032115638524,16.8082198231969,3.28039809012428,0.0078978246520469,0.0255047080886458,-3.16558596985633 +"Q9VF70",-0.152991316216998,15.9166029432823,-3.27985380197534,0.00790523626008985,0.0255047080886458,-3.16653577628429 +"Q9VIX1",-0.550796888876606,17.260360552921,-3.27019150065085,0.00803800082868936,0.0258771412208651,-3.18339767064674 +"A0A0B4KHJ9",-0.221209878418961,24.5701970479768,-3.2692037934608,0.00805170041584472,0.0258771412208651,-3.18512141800082 +"Q7K1W5",-0.160061182153282,19.7939368639035,-3.2523590936533,0.00828905363538547,0.0265628966938213,-3.21452079966197 +"Q9VBP6",-0.165775130019554,23.164683707806,-3.25180903603737,0.00829692396731468,0.0265628966938213,-3.21548088475447 +"Q9VY42",0.289187638795211,15.244530803861,3.24903705982841,0.00833670247165645,0.0265943804870957,-3.22031921679637 +"Q9VBU9",0.190502635987905,20.8520681583855,3.24890199373075,0.00833864568030638,0.0265943804870957,-3.22055496940295 +"Q9VFP0",-0.214926307863429,16.5221152661349,-3.24647506502419,0.00837364122112155,0.0266550258718144,-3.22479111211801 +"Q7K5J8",-0.185588120002755,18.3078090777864,-3.24405049881547,0.00840875275676526,0.0267158087586371,-3.22902319251804 +"Q8MT58",0.143667945754895,21.6107204410559,3.24243161063725,0.00843228063324132,0.026739627559404,-3.23184899486397 +"Q9VXE0",0.178968162107751,18.0057682360939,3.23631729324493,0.00852175132661327,0.0269720706125065,-3.24252188546992 +"Q9VSL9",0.536703905156083,14.683596430742,3.23128833446243,0.00859606738789917,0.0271557583390451,-3.25130046709729 +"Q9W0D3",0.204527425018894,12.7389913004853,3.22875193688627,0.00863380040565649,0.0271733191710486,-3.25572809549925 +"Q9VDV3",-0.174405988818764,17.5176680776486,-3.22872459177476,0.00863420812988953,0.0271733191710486,-3.25577583039293 +"Q9W3X7",-0.136711035978209,21.6756880363961,-3.22494329220931,0.00869077849896234,0.0272998465843111,-3.26237669431836 +"Q9VJI5",0.251283288115301,17.4692295494184,3.22159363552147,0.00874120771034332,0.0273126507907538,-3.26822413822741 +"Q9VM58",0.231369917866671,16.3932305349826,3.22123213664397,0.00874666794271246,0.0273126507907538,-3.26885520553799 +"Q7JWU9",-0.347323765596142,15.5154709123568,-3.22101891991291,0.00874989009307883,0.0273126507907538,-3.26922741761032 +"Q9VX36",-0.157098627555559,22.2412937215863,-3.22032714449711,0.00876035262173459,0.0273126507907538,-3.27043505065471 +"Q9VPZ5",-0.218914166449242,18.3623459960229,-3.20446405550157,0.00900380883561811,0.0279670276714284,-3.29812794036844 +"Q9VY05",0.237385835122073,18.2871483764362,3.20413008178824,0.00900900809375644,0.0279670276714284,-3.29871098429643 +"Q9VVN2",0.323209331024849,14.8793591344742,3.20339002684447,0.00902054010025688,0.0279670276714284,-3.30000295714794 +"O62602",0.296721733781947,14.6190590774705,3.2006080578007,0.00906402555281953,0.0280004909970004,-3.30485967681665 +"Q9W385",-0.239115006799327,16.8499880781625,-3.19815611258097,0.00910252984082649,0.0280004909970004,-3.30914026298099 +"Q9U6R9",-0.157326348178952,20.6029916051555,-3.19811289434072,0.00910321001750845,0.0280004909970004,-3.3092157131632 +"Q9W314",-0.355475007668066,16.2124549862021,-3.19797355475372,0.00910540332324133,0.0280004909970004,-3.30945897152781 +"P41375",-0.292185978305668,16.7079059293417,-3.19734729607617,0.00911526775262063,0.0280004909970004,-3.31055229136081 +"Q9VG69",-0.184294156507448,19.9964492506887,-3.19463660506142,0.00915809084498678,0.028080322664408,-3.31528461349894 +"Q9VXY3",0.164749469257561,18.0463191710917,3.19145500160248,0.0092086154984258,0.0281603150224947,-3.3208390690339 +"Q9VVE2",-0.183294598335888,18.3612817533568,-3.19086947021088,0.00921794484549288,0.0281603150224947,-3.32186129331611 +"Q24297",0.230136286961478,17.0147414690265,3.18885706038255,0.0092500824686559,0.0282068328294663,-3.3253745729673 +"Q9VTJ4",-0.163968327704261,15.6390254781176,-3.18110564338226,0.00937494294551879,0.0285354102794258,-3.33890706290626 +"A1ZB68",-0.227819846087588,19.340149445686,-3.17384311063578,0.00949348917145018,0.028803548766117,-3.35158601446978 +"Q7JYH3",0.230777043598405,19.3413255899531,3.17359457142609,0.0094975730343911,0.028803548766117,-3.35201991344564 +"Q7K1U0",-0.174588951912714,16.6679155407177,-3.16894952443399,0.00957422858978902,0.028983327201031,-3.36012919521637 +"Q7KSE4",-0.206220482220317,13.7984581829631,-3.16621351675432,0.00961967501148897,0.0290681484042819,-3.36490566476724 +"A0A0B4KI23",-0.157891210732956,20.5654978695248,-3.16344357567977,0.00966590924748517,0.0291550391045303,-3.36974134856689 +"Q9Y156",0.350645921850566,16.079437847558,3.16237143181459,0.00968386562541697,0.0291564762873565,-3.37161305878511 +"Q960M4",-0.227767086373976,23.2598301685563,-3.16040517626515,0.00971688513070525,0.029203179095525,-3.37504566463666 +"Q7K3E2",-0.281989765448216,20.5532626710589,-3.15268136040701,0.00984770697908997,0.029494868485935,-3.38852939642774 +"Q9VJ86",0.294434005500179,16.4866433572834,3.15258762477847,0.00984930560351665,0.029494868485935,-3.38869303197445 +"M9PF61",-0.156052870042679,22.7160971548803,-3.1505172110466,0.00988468323110412,0.0295477627768489,-3.39230736765208 +"Q9U915",-0.144104908868457,21.1141023329938,-3.14774561859321,0.00993224491011589,0.0295860891122656,-3.39714571375942 +"Q7JNE1",-0.144987648750835,17.8061660341541,-3.14770291414337,0.00993297955807477,0.0295860891122656,-3.39722026217037 +"Q7K2L7",-0.443046268003535,18.2722070435518,-3.14641416141433,0.00995517614515034,0.0295993472550994,-3.39947000940514 +"Q7K519",0.281769516796958,15.6558421613471,3.14201488235012,0.0100313278072079,0.0297726953423894,-3.40714964414177 +"Q9VZU4",-0.229608836648865,21.4267791681239,-3.1373405328422,0.0101128915422081,0.0299614619758493,-3.41530929214422 +"Q9NK57",-0.370410842630903,15.494648095279,-3.13057600334818,0.0102321252858492,0.0302609662709158,-3.42711726514702 +"Q9VVL8",-0.290317725181714,15.8704098730889,-3.12695017947799,0.0102966236515227,0.0303978199128139,-3.43344621891958 +"M9NDE3",0.174622930922339,16.1512827678999,3.1197003326262,0.0104268326796979,0.0306764398316356,-3.44610055766475 +"Q9VKG4",-0.218108254638537,15.9648277979956,-3.11920731613794,0.0104357480227191,0.0306764398316356,-3.44696107772021 +"Q9V3G1",0.201433014346495,21.0351754164604,3.11843327090334,0.0104497609393119,0.0306764398316356,-3.44831210462803 +"Q9VFF0",0.221759193158931,23.637382620403,3.11666672086873,0.010481813436788,0.0306764398316356,-3.45139543272476 +"Q8SXY6",0.201689704079808,19.1553901684378,3.11660384770597,0.0104829560575733,0.0306764398316356,-3.45150517053483 +"Q7KY04",0.317473047979185,14.0764434415011,3.110681569387,0.010591154527094,0.030938784152702,-3.46184159227009 +"Q9VFP1",0.455747061508761,15.7545845353601,3.10932879898268,0.0106160283338202,0.0309510908229651,-3.46420257846073 +"Q7KMS3",-0.329198573409311,15.543719190399,-3.10752111433615,0.0106493596089707,0.0309510908229651,-3.46735748546676 +"Q9W483",0.319819423647045,15.5345655628496,3.10670893231324,0.0106643698043193,0.0309510908229651,-3.46877495149006 +"P29829",0.233791992132918,21.399175294795,3.10628297959506,0.0106722505761183,0.0309510908229651,-3.46951834449798 +"Q9VAI9",-0.211108521695348,21.9643647966341,-3.1054247854246,0.0106881464712398,0.0309510908229651,-3.47101609794484 +"Q9VJ43",0.177414972756818,20.2210969520767,3.10361516751087,0.0107217441022834,0.0309945739386632,-3.47417427729693 +"Q95RS6",0.25448116101207,17.1693645397359,3.09960001292225,0.0107966742387057,0.0311280481218513,-3.48118142459522 +"O61443",0.25110137428217,16.4797767656809,3.0984804143558,0.010817662819412,0.0311280481218513,-3.48313527539285 +"P48375",-0.209558940161571,21.9563251389674,-3.09731504511298,0.0108395535236122,0.0311280481218513,-3.48516898101641 +"Q9VCC0",-0.23444678968378,17.4809737244541,-3.09715499252176,0.0108425635244578,0.0311280481218513,-3.48544828980237 +"M9PEG1",-0.285429495187945,20.3938645114464,-3.09604017607311,0.0108635527190277,0.0311347181019556,-3.487393751485 +"Q95SK3",-0.167526746622189,17.211267105623,-3.08036992972425,0.0111629943787252,0.0319089409725147,-3.51473755920079 +"A1Z9B5",-0.467683337404853,15.8380991709903,-3.07990759891217,0.0111719553524872,0.0319089409725147,-3.51554423503184 +"Q8MLP9",-0.397825370887976,14.9210282268772,-3.07885875427906,0.0111923113507886,0.0319124364668639,-3.51737424602021 +"Q9VVA6",-0.199694530731119,19.2468574417836,-3.07197380173414,0.0113268737040797,0.0322409988709983,-3.52938647727594 +"Q709R6",-0.346798708032594,15.1308553251443,-3.06625138659789,0.0114399651213118,0.032507430702467,-3.53936966490411 +"Q9VXG4",-0.157571751702228,19.914670997339,-3.06000933069921,0.011564634588364,0.0328058001588284,-3.550258577491 +"Q95RQ8",0.74603108025692,14.4383632307286,3.056356273748,0.0116382343619591,0.0329585312661252,-3.55663070907859 +"Q9VVT6",-0.152090111382915,20.4961778913781,-3.04748865133746,0.0118188788845478,0.0334133728464843,-3.57209740023869 +"O97062",-0.177149269027161,18.4777329819553,-3.04509891441686,0.0118680458515728,0.033495601489718,-3.57626517941586 +"Q9VWF0",-0.190607801568801,16.495546920011,-3.03849387869519,0.0120050216552223,0.0338249596637007,-3.58778378721809 +"Q9VJD4",-0.150907297084103,20.7705144012286,-3.03450438760022,0.0120885319309687,0.0340028183151026,-3.59474053231237 +"O96824",-0.243849395697325,16.7174118888194,-3.02690833341784,0.012249169425414,0.0343966575784354,-3.60798502300808 +"Q7K1C5",-0.179468614521941,17.4993698506647,-3.02233463383132,0.012346934024992,0.0346129175692213,-3.61595890348419 +"Q7JVZ8",-0.278428406352356,15.9815970399972,-3.01592601035624,0.0124852531129347,0.0348841324859809,-3.62713073552481 +"Q9VKU3",0.218547919479485,15.4910810123479,3.01524695611702,0.0125000010516317,0.0348841324859809,-3.62831442016377 +"O77134",-0.176236956544784,21.7108852269721,-3.01462394074955,0.0125135474475497,0.0348841324859809,-3.62940040824635 +"Q9XTL2",-0.23506841082574,16.9202986918514,-3.01292384206727,0.012550588902962,0.0348841324859809,-3.6323638132542 +"Q9VAG3",0.269627908560876,16.8121811389965,3.0128291760051,0.0125526547334486,0.0348841324859809,-3.63252882082729 +"Q9VEX6",-0.151496031129494,20.7757661654219,-3.01124651322666,0.0125872431416678,0.0348841324859809,-3.63528743566904 +"Q9VEC8",-0.203576703449615,16.5023516164629,-3.01111705827078,0.0125900765926622,0.0348841324859809,-3.63551307474202 +"Q9W445",-0.158141569067412,16.4557741783517,-3.00979960685778,0.0126189491488938,0.0349061478944525,-3.63780935152301 +"A0A126GUP6",-0.33147292884728,16.9968737456749,-3.00553942083275,0.0127127731004239,0.0351074594892501,-3.64523432304508 +"Q9VQR9",-0.247990702182364,16.2032727453791,-3.00263296403793,0.0127771885071535,0.0352162058604772,-3.65029955705145 +"A1ZB79",-0.18416795071527,20.8075408090073,-3.0018599208849,0.0127943769493101,0.0352162058604772,-3.65164673022199 +"Q7KN94",-0.145848039819526,22.647662224017,-3.00082502827333,0.0128174242234326,0.0352215215892678,-3.65345019248973 +"Q23983",-0.176161595930704,22.3784848701184,-2.99155827044402,0.0130256797556676,0.0356744288425925,-3.66959725442247 +"Q2MGK7",-0.261053092308668,17.1218630694846,-2.99007736038359,0.0130592769179093,0.0356744288425925,-3.67217740592918 +"Q9VY87",0.376776984680909,17.650740207139,2.98921950340284,0.0130787790895235,0.0356744288425925,-3.67367199044387 +"Q9VVU1",0.257985751211709,22.2599620065146,2.98905988284511,0.0130824110900573,0.0356744288425925,-3.6739500831719 +"Q9GYU8",0.547637078848053,12.7160188015424,2.9887625669354,0.0130891789278577,0.0356744288425925,-3.67446806772167 +"Q24478",-0.386624343347052,17.383932797162,-2.98536384697691,0.0131667966594521,0.0358274336508419,-3.680389087442 +"Q9VPC1",-0.268217151119568,16.107080994691,-2.97822708666423,0.0133313007161046,0.0361853783547092,-3.69282080872523 +"Q9VU92",0.245750107478447,17.7389260447854,2.97696482715077,0.0133606118093758,0.0361853783547092,-3.69501936354164 +"Q9VQR2",-0.154580192753652,21.3432358639661,-2.97684382236034,0.0133634250998207,0.0361853783547092,-3.69523012163917 +"A8JNT7",0.202110111436436,16.8484129296343,2.96620420701607,0.0136131471640999,0.0368018305830122,-3.71375914383919 +"E2QCN9",-0.175799871960781,17.357653424546,-2.96444176197174,0.0136549667618047,0.0368551530075893,-3.71682800495806 +"Q9VL16",-0.16300391734805,20.742913269403,-2.95872238270186,0.0137915739411738,0.0371637242873634,-3.72678596025989 +"Q9W127",-0.194989240625997,18.6438369047256,-2.95690027177775,0.0138353845248774,0.0372075176860997,-3.72995811789303 +"Q09101",0.219367205289551,14.6800819489907,2.9561925356642,0.0138524391385299,0.0372075176860997,-3.73119019320275 +"Q9VSX2",-0.177552898803857,17.9673978284464,-2.94793864528943,0.0140529122809969,0.0376853017438953,-3.74555745317308 +"Q9VBU0",0.26464571334872,14.2846563424297,2.93830515616459,0.0142906039188691,0.0382611995773253,-3.76232211373464 +"A1ZB69",-0.218352506888397,20.4066737873166,-2.93347244446395,0.0144113688503122,0.0385074524109491,-3.77073054260534 +"Q9VVK7",-0.184393437254293,18.1730596860544,-2.93278019617352,0.0144287516527837,0.0385074524109491,-3.77193489004404 +"Q9V7D2",-0.205800611109165,21.3645060127884,-2.92984923203405,0.0145025848967636,0.0386217115705323,-3.77703380519346 +"Q9VRP4",0.355282302539392,14.3566133295476,2.92924419806501,0.0145178735939591,0.0386217115705323,-3.77808631178313 +"Q9VEB1",-0.134201238114258,25.1796611802665,-2.91802610014139,0.0148043107004804,0.0393210035802569,-3.79759771039901 +"Q9VH26",-0.200831119287564,18.296763868537,-2.9170453025096,0.0148296233468509,0.0393256148530163,-3.79930327756473 +"Q9VSC3",0.329361310570061,17.5222841462521,2.91338567062926,0.0149244579221423,0.0395142790700529,-3.80566677386804 +"Q9VCW2",0.250658209300116,15.3391660023315,2.9077196242977,0.015072494172426,0.0397213288999326,-3.81551765926728 +"Q8T0Q4",-0.182844701165362,19.9738533579807,-2.90764342044066,0.0150744952017918,0.0397213288999326,-3.81565013387618 +"Q7KUC2",-0.179507307064231,19.3242870998561,-2.9068015880483,0.0150966186252884,0.0397213288999326,-3.81711357400899 +"Q9VKI8",-0.141399093697192,22.3544367745142,-2.906752290563,0.0150979151813892,0.0397213288999326,-3.81719927146077 +"A1Z6R7",-0.156268359327393,17.9627432315327,-2.90380287384605,0.0151756914061669,0.0398630760086399,-3.82232621287982 +"Q9VJI9",-0.413087210214389,17.6350136104346,-2.90147429164663,0.0152373814356153,0.0399621890481232,-3.82637361817948 +"O96299",0.291610682449335,15.6805229542608,2.89534887536631,0.0154008689002113,0.0403275499616209,-3.83701897938646 +"Q9VK60",-0.168099646166027,21.3560619850298,-2.89229957570799,0.0154829126253295,0.0404418417321106,-3.84231754628097 +"Q02748",0.15551397019599,19.58789366328,2.89192549929824,0.0154930077139201,0.0404418417321106,-3.84296751659498 +"P48148",0.233437083474676,20.6127659633526,2.87757905447837,0.0158852153782331,0.0414008425795201,-3.86788860412016 +"Q5U1B0",-0.347451468125268,14.6916270418667,-2.87361099313664,0.0159954500484488,0.0416231055862911,-3.87477925564145 +"Q9VKZ8",0.185521980312448,18.7710431696598,2.87131254567284,0.0160596538892481,0.0417250820673923,-3.87877012093992 +"Q9V4S8",-0.301145399177074,17.0797515823241,-2.86725473023865,0.016173636967383,0.0419018496855507,-3.88581500758857 +"Q9VM07",0.223645669565354,16.8725476346678,2.867102376369,0.0161779323725987,0.0419018496855507,-3.88607949275173 +"Q9VF27",-0.128046293408776,22.2656508259571,-2.86538168165803,0.0162265247274309,0.0419625476672165,-3.88906650126892 +"Q9VNI4",-0.203152216286265,16.5180192375297,-2.86224061195841,0.0163156074427392,0.0421276055951842,-3.89451868583993 +"P92177",-0.203840307343672,24.1380014825053,-2.8576779109062,0.0164458856355789,0.0423983574036254,-3.90243734102402 +"Q6IGM9",-0.665461922380437,14.8174208441999,-2.85521419136728,0.0165166663773343,0.0425151227120272,-3.90671259589541 +"Q9VVG0",0.156087417207711,18.0868285273628,2.85389450405642,0.0165547058785781,0.0425383294204113,-3.90900246089111 +"O62530",-0.16143414338582,15.6831720575908,-2.85313330797494,0.016576687124261,0.0425383294204113,-3.91032320213386 +"O97477",0.164796504065535,20.9218186361389,2.85161247992063,0.0166206923782678,0.042585737153534,-3.91296185271215 +"P48604",-0.173626433931688,20.1115545636477,-2.84809648585473,0.016722878054375,0.0427818414029102,-3.91906152819125 +"Q9W5W8",0.155965114105488,20.6603429621927,2.84487635011903,0.0168170191593478,0.0429567962600186,-3.92464718804386 +"Q8MSS7",0.451890920297831,14.0208460031926,2.84218634075996,0.0168960701729751,0.0430624071199238,-3.92931273322629 +"Q9W1E8",-0.212337812546664,15.3996933463991,-2.84171370468145,0.0169099979997303,0.0430624071199238,-3.93013241940505 +"Q9V3Z4",0.184232608886816,18.810966981645,2.83946132187041,0.0169765307699563,0.0431659349455595,-3.93403847830894 +"Q9VDV2",0.393639544939722,14.3880486713271,2.83487407582386,0.0171128471246035,0.0434463150743357,-3.94199251301294 +"Q7JPS2",-0.25042431696772,20.8106953540243,-2.8299828105425,0.0172594093628419,0.0437518158316417,-3.95047202422113 +"Q9V6Y3",0.223077103674843,15.1821871889373,2.82364933066828,0.0174510607828125,0.0441705150011097,-3.96144914747347 +"Q9NBD7",0.396081542735192,13.3030679237965,2.81707054637134,0.0176523978028094,0.0445458598912024,-3.97284824442434 +"Q9VRL2",-0.686244064379004,11.9444424104172,-2.81705859031378,0.0176527658201947,0.0445458598912024,-3.97286895775742 +"Q9VM69",-0.249121016532273,16.8164002282485,-2.81104046444199,0.0178389894690419,0.0449477861546253,-3.98329369257348 +"Q9VLU4",-0.176505191713531,17.1644397266417,-2.80832634553982,0.0179236182960609,0.0450929039484608,-3.9879942297173 +"Q9W425",-0.353361442707387,14.05302834484,-2.80456286281659,0.0180416341027924,0.0452565933434432,-3.99451118231496 +"Q9VIH9",-0.415498693828226,19.1635418024313,-2.8045211534866,0.0180429463869243,0.0452565933434432,-3.99458340107123 +"Q9VD64",-0.379797429798758,15.6393227169485,-2.79475737454457,0.0183527889863588,0.0459646426865562,-4.01148531297631 +"Q9VJ31",0.179702651150977,17.2555504031404,2.78919280977338,0.0185317546356679,0.0462931373132628,-4.02111455345839 +"Q9VPU4",-0.37009399241755,12.9481326621749,-2.78895450430813,0.0185394578688606,0.0462931373132628,-4.02152687348299 +"Q7KJ08",0.234362019393306,14.5644999589179,2.7867976124944,0.0186093255849929,0.0463436999208302,-4.02525854711314 +"Q9VVA7",0.152182335916159,17.5091453152426,2.78600511025378,0.0186350631576538,0.0463436999208302,-4.02662957011905 +"Q27268",0.30685237205563,19.0340772058048,2.7855759729721,0.0186490148478144,0.0463436999208302,-4.02737195238001 +"P55830",-0.12711512042446,21.9755504954389,-2.78447816719775,0.0186847532781414,0.0463436999208302,-4.02927102112108 +"Q7K2W6",-0.221079705964456,16.8380654955842,-2.78336819397927,0.0187209575709585,0.0463436999208302,-4.03119103443227 +"A1ZB71",-0.220511095175961,19.2686060362888,-2.7832011821642,0.0187264111190885,0.0463436999208302,-4.03147991966911 +"Q9VTB0",-0.174322038580739,16.9768083622871,-2.78055256261101,0.0188131113032426,0.0464892883760127,-4.03606099737535 +"A1ZB73",-0.695445019731014,13.5302636904513,-2.77878586326047,0.0188711660417825,0.0465637647303153,-4.03911636414199 +"Q0E8V7",-0.321738492614649,19.7032608790556,-2.77358160336953,0.0190432257058522,0.046918907647506,-4.04811515519144 +"Q7K738",-0.138055807518317,19.791881065621,-2.77243333937612,0.0190813998472647,0.0469436208631823,-4.05010032460812 +"Q9VAA6",-0.286714178144807,16.2543885596548,-2.77099066771884,0.0191294702114084,0.0469925718889973,-4.05259431527462 +"Q9VUN9",0.138202734480288,16.7556766928651,2.75469054475744,0.019681090334836,0.0482765568801565,-4.08075994179572 +"Q9V406",-0.205292008730664,17.0542126984931,-2.75380461733281,0.019711523302668,0.0482802068558741,-4.0822900799795 +"Q9VB05",0.118015917930318,20.1983453454913,2.75020653992965,0.019835607249031,0.0485128928026153,-4.08850378821228 +"Q9VV75",-0.129894460898683,23.9974907344119,-2.74252577668628,0.0201031066109806,0.0490951417673728,-4.10176404874199 +"Q9VH72",-0.496605713557624,18.7323471261714,-2.74136139404143,0.0201439723493522,0.0491230202905254,-4.103773780726 +"Q9VU70",-0.339304054185906,14.8059134467691,-2.73722358531967,0.0202898677499581,0.0494065684772704,-4.11091461544381 +"P19107",0.143124115527698,24.1263181617271,2.7259933449721,0.0206911783331391,0.0503103286584198,-4.13028685147338 +"Q9VER6",-0.264520356803715,14.9357164818648,-2.72453500305711,0.0207438701453847,0.0503650296979647,-4.13280158842417 +"Q7K1H0",-0.147328924088246,16.3149008989566,-2.7167339147744,0.0210280169687769,0.0509807155580231,-4.14625001131439 +"Q9VRQ9",0.191028546849024,14.7215020155033,2.71477805988861,0.0210998640236322,0.0510806577524215,-4.14962077440184 +"Q9Y136",0.303629519501307,15.2453356554554,2.71239276001716,0.021187818075887,0.0512192471747528,-4.15373112219533 +"Q7K5M0",-0.357040319576853,16.6938410729552,-2.70843039693151,0.0213347329982042,0.0514563129461478,-4.16055776777341 +"Q9W402",-0.140307419617717,21.2698853073718,-2.70808512006986,0.0213475830687855,0.0514563129461478,-4.16115255858278 +"Q9VZ67",0.167014832728594,15.1286344604612,2.69990793331333,0.0216541774515068,0.0520592357233227,-4.1752353282025 +"Q9V3F8",-0.127814080787701,18.5478657235522,-2.69975011531262,0.0216601376450755,0.0520592357233227,-4.17550705328141 +"P40797",0.139455965797364,19.1719364572486,2.6981409259201,0.0217210041254227,0.0521304099010144,-4.17827754350475 +"Q9VN88",-0.199664548171928,17.040518502549,-2.69219066801133,0.0219475529903408,0.0525984459596099,-4.18851950370384 +"B7Z107",-0.467949537070202,16.0290910335584,-2.68631983592694,0.0221733853708935,0.0530634243883075,-4.19862099185473 +"M9NEW0",-0.153308627720165,18.3498017894269,-2.67664419123934,0.0225506387328865,0.0538889189204221,-4.21526083512493 +"Q9VEJ0",-0.127734494151959,22.249048349118,-2.67311103652545,0.022689983626463,0.0541443386107872,-4.2213344211852 +"O46098",-0.178972705184332,18.0241672552701,-2.65916546059306,0.0232484024110131,0.0553976217450998,-4.24529328845256 +"P13677",-0.235542973497996,17.121861378584,-2.65781124722908,0.0233033516848865,0.0554062522597233,-4.24761865964622 +"Q7JZK1",-0.166670062189922,21.5233492744515,-2.657439494888,0.0233184586848476,0.0554062522597233,-4.24825697199311 +"Q9VD29",-0.194318054351363,20.7343907298071,-2.65238320431909,0.0235249020815884,0.0558081160198094,-4.25693718578168 +"Q9VZ66",-0.148188460083359,17.0106460961345,-2.65166178672669,0.023554504603085,0.0558081160198094,-4.2581754072717 +"Q94522",-0.159164876422281,23.5006629170713,-2.64567011192358,0.0238018010060113,0.0563140483376268,-4.26845694472276 +"Q9V3E7",-0.168876514986842,18.7311925568701,-2.64368349600422,0.0238843634953337,0.0564223004657666,-4.27186496316275 +"Q9VUX1",0.195461024736559,16.3493309695423,2.64294307417431,0.023915207691425,0.0564223004657666,-4.27313502632796 +"Q9VW57",0.141640134423557,16.541988782832,2.63846940717202,0.0241024135634717,0.0567836522936028,-4.28080738966046 +"Q9VRL0",-0.146590836953028,22.7771550293313,-2.62763978230613,0.0245616393752239,0.05776494955547,-4.29937001460311 +"Q9VIE7",-0.166611062029185,14.945685839562,-2.62701963259911,0.0245881979522684,0.05776494955547,-4.30043254427857 +"Q9Y162",-0.151274701802581,20.2047833886323,-2.62359983865265,0.0247351670601134,0.058028493187439,-4.30629095359671 +"Q9VC67",-0.159591982447781,15.1141579893859,-2.61688668098492,0.0250262114712336,0.0586288212556429,-4.31778685073483 +"Q9VPC2",-0.293981631873622,14.8990986152607,-2.61228220446477,0.0252277968632583,0.05901818396622,-4.32566839512147 +"Q9VGP6",0.142160158360614,17.9379005720356,2.60882311212425,0.0253802953920174,0.0592173991256762,-4.33158755355216 +"Q8WTC1",0.213137740904081,15.0624669478089,2.6087403088522,0.0253839570592677,0.0592173991256762,-4.33172922633225 +"Q9VC66",-0.133724481869759,17.7146013080975,-2.59483748780119,0.0260062403481617,0.0605843699730918,-4.35550344700016 +"Q7K568",0.216154936292064,16.1223278309833,2.5918519558396,0.0261418297576634,0.0607446726411469,-4.36060540624396 +"Q7JV09",-0.145262702453937,15.1197229386053,-2.59093965484449,0.0261834018356054,0.0607446726411469,-4.36216419062272 +"Q9VHT5",0.182591159931317,15.5611025120079,2.59091986539218,0.0261843043339236,0.0607446726411469,-4.36219800220667 +"Q9VF39",-0.311707659402551,15.9936412749639,-2.58820904651796,0.0263082228168917,0.0609473828591324,-4.36682910894477 +"Q6IDF5",-0.184003266637919,19.6335155888803,-2.5840666751168,0.0264987035535168,0.0613035194552927,-4.37390390024541 +"Q9VJH8",0.280370502292136,14.3539647835265,2.58114190402216,0.0266340163109192,0.0615312177376914,-4.37889771202961 +"Q9Y171",0.363028862968081,15.016518500866,2.57699987366324,0.0268268153835479,0.0618909101794714,-4.38596785589544 +"A1ZBA5",0.339705673091258,15.6143495916149,2.57282071088178,0.0270227421171466,0.0622568147118791,-4.39309893905838 +"Q9V3G7",0.216491990795795,18.0832213023582,2.56408391195851,0.0274369220583442,0.0631238427494043,-4.40799888942396 +"Q9VBC1",-0.213430396857818,13.1575337108514,-2.55747079653514,0.0277545926557991,0.0637667500686955,-4.41926974561733 +"Q9W2M4",-0.130549574097444,22.6679677187485,-2.55641223933595,0.0278057783192075,0.0637964762536976,-4.42107327289759 +"Q9VBC9",-0.284699923363053,15.5467520849201,-2.54530214527922,0.0283486544470418,0.0649526862880023,-4.43999223242182 +"Q9W2X6",-0.132961347499869,24.1388795909056,-2.54392931597166,0.0284164577646297,0.0649892499350124,-4.44232869597283 +"Q9VNA5",0.180747831279199,17.2882504006384,2.54340213564156,0.0284425374415822,0.0649892499350124,-4.4432258463862 +"Q8SYQ8",-0.310434574745573,16.02219485514,-2.5357794411483,0.028822283772791,0.0657668527127433,-4.45619338064801 +"Q9VQJ8",-0.170251675808455,15.2545065033807,-2.53443824630965,0.0288896148377106,0.0658304338105208,-4.45847407318295 +"Q9V9X4",-0.15168017812168,18.7365809517768,-2.52733822071317,0.0292486452635322,0.0664953049248626,-4.47054301265726 +"Q9VC48",0.153663825990677,18.4197975038502,2.52709300703821,0.0292611233901973,0.0664953049248626,-4.47095969859951 +"Q9VK58",-0.625338790335073,12.9528132728325,-2.52583750594613,0.0293250940357929,0.0665500093220442,-4.47309299624561 +"Q9Y0V3",-0.213734414883161,15.0559809032597,-2.52389862170125,0.0294241555750513,0.06668409171085,-4.47638698910741 +"Q9VY91",-0.410897397633029,16.9845300565398,-2.51912263899477,0.0296695793391408,0.0670831286699171,-4.48449845097969 +"Q7KMP8",0.130036484709965,19.1790736142579,2.51890783352615,0.0296806648431648,0.0670831286699171,-4.48486318927447 +"P25455",0.169090033926961,15.8392325607733,2.51626079762895,0.0298176063687236,0.0673014444154681,-4.48935724052413 +"Q9VGA3",0.157062366906498,19.3883005009227,2.51471166983905,0.0298980373641407,0.0673917923289009,-4.491986784106 +"P11046",0.171843116636914,21.0268000587632,2.50849991013641,0.0302227050820999,0.0679857580131315,-4.50252699641097 +"Q9VRY5",-0.151994912730196,16.863230128426,-2.50811256303519,0.0302430650154338,0.0679857580131315,-4.50318404815714 +"P53034",-0.240778831556979,15.7296453960802,-2.50673742912848,0.0303154546299921,0.068052446142065,-4.50551647423467 +"Q9VZG0",0.135036184951627,21.6690312800951,2.50600030364316,0.0303543284950218,0.068052446142065,-4.5067666200415 +"Q9VCB9",-0.138240769628121,16.987293360483,-2.50358408233635,0.0304820973968132,0.0681835694527085,-4.51086385230124 +"Q8SYQ4",-0.269564595237568,20.9674827797247,-2.50334874829474,0.0304945700310075,0.0681835694527085,-4.51126286207681 +"Q9V3W9",-0.123530618987495,18.4940150269694,-2.49929185744439,0.0307103753830692,0.0685741715380984,-4.51813991764806 +"Q9VG51",-0.12273622444911,19.101567340508,-2.49672763372201,0.0308475530792246,0.0687883937649019,-4.52248528321894 +"Q9VH25",0.13975185345827,16.2165107252094,2.49592671378058,0.0308905231396592,0.0687922464578792,-4.52384231062838 +"Q9VII1",-0.343409129473546,19.3181926058491,-2.49153319546851,0.0311272887594322,0.0692270902009773,-4.53128452146438 +"Q9W1X4",0.262777214724693,15.0923813133813,2.48984692663991,0.0312186345727012,0.0693215568659859,-4.53414005340168 +"Q868Z9",-0.203479629309559,20.3730720227694,-2.48921592039419,0.0312528841506124,0.0693215568659859,-4.53520847919213 +"Q9VYS2",-0.211887686932444,14.9839626005374,-2.4884504241452,0.0312944831402176,0.0693216439281314,-4.53650453552331 +"Q9VE52",-0.149619398096348,15.9129190872129,-2.48517291012657,0.0314732078649109,0.0696090328261217,-4.54205256245648 +"Q7JVI6",0.190451040937372,17.4363851409949,2.48454274939611,0.0315076857216558,0.0696090328261217,-4.54311906323582 +"Q9NHA8",0.265622382218067,16.3067343978145,2.48068419886158,0.0317196088449401,0.0699046820001679,-4.54964791598972 +"Q9V9T9",0.279943921441768,13.4031181751333,2.48058045065019,0.0317253263034335,0.0699046820001679,-4.54982342817509 +"P40796",-0.238550210793289,18.3505267640917,-2.47603967798705,0.0319765581640112,0.0703653021339983,-4.55750331867307 +"Q9W1X5",0.11915980773048,19.3993395647371,2.47390841840126,0.0320951494648444,0.0705332138436897,-4.5611067423304 +"Q9Y114",-0.116880509190299,18.6138248886439,-2.47036203779869,0.0322934415588794,0.0707964502575931,-4.56710104975137 +"Q9W2E8",-0.159138680072644,19.3598674565153,-2.46956523266968,0.0323381593165432,0.0707964502575931,-4.56844755959628 +"Q9V438",-0.155050158715149,18.9461861672291,-2.46947689894421,0.0323431204643458,0.0707964502575931,-4.56859682676207 +"Q7K2N0",-0.170038476972378,15.4419258773403,-2.46873696642887,0.0323847071621964,0.0707964502575931,-4.56984711868122 +"P05205",-0.1721713506528,18.0903249449174,-2.45594477997499,0.0331120241562041,0.0721413470161334,-4.59144745062563 +"Q9VJ80",0.207476924841252,16.4479189270726,2.4555050552457,0.0331373081565582,0.0721413470161334,-4.59218943864384 +"Q7K1M4",0.211362916268376,17.1877288880678,2.45508549862049,0.0331614501526982,0.0721413470161334,-4.59289736317212 +"Q9VY28",0.195872637183367,15.1672115986983,2.4548864536468,0.0331729095691692,0.0721413470161334,-4.59323320397076 +"Q9VN44",-0.152056766218546,19.4851939047085,-2.44071644470995,0.0339987600946942,0.0737366333146736,-4.61712346694562 +"P54352",0.198251178365821,16.1180531439139,2.44008219275634,0.0340361926943491,0.0737366333146736,-4.61819195048917 +"Q9VZW7",-0.251289096596897,13.8697409075358,-2.44002174777469,0.0340397621732797,0.0737366333146736,-4.61829377444059 +"Q9VZZ5",-0.161935425429661,18.487787372841,-2.43871147171559,0.0341172285732253,0.0737366333146736,-4.62050086547057 +"Q9VGV9",-0.203312627861104,16.0759421131177,-2.43853784788168,0.0341275065461199,0.0737366333146736,-4.62079330213913 +"Q9VTB3",-0.164519002854828,19.7565010797234,-2.43290647886551,0.0344625148602636,0.0743641329714356,-4.6302752843284 +"Q9VVH5",-0.132277858995074,22.5632545494553,-2.42931695292781,0.0346777328994309,0.0747318584964481,-4.63631620040253 +"Q9W337",-0.206069858865161,17.8397642348909,-2.42047170122759,0.035213700329638,0.0757889705159176,-4.6511918752251 +"A8Y535",-0.168530972921673,22.0824631312377,-2.41840247093593,0.0353402479066608,0.0759633163766885,-4.65466972073724 +"P55841",0.116969449174835,20.6135059279887,2.41683299992573,0.0354365283293874,0.0760722384213876,-4.65730705836935 +"Q9VFB2",0.200898586833079,16.4001988475439,2.4146056784253,0.035573605585088,0.0762683471927079,-4.66104904401662 +"Q9W0H8",-0.186404550552734,19.412789545233,-2.41344218763516,0.0356454169593335,0.0763242047344908,-4.66300337738586 +"Q8SXF2",-0.180335213566938,15.5505292144811,-2.4112398869985,0.0357817325658509,0.0765178588715888,-4.66670190722434 +"Q9VSL2",-0.16848065233237,20.4625799437762,-2.40842444226412,0.0359567422464963,0.076793656936179,-4.67142879252705 +"Q9VF23",0.45798759291459,15.2238264774016,2.4043831243435,0.0362094159777424,0.0772344064589186,-4.67821114033495 +"Q9VW59",0.155956090842398,19.7754279890897,2.3937166022375,0.0368846744418822,0.0785238387971173,-4.69609697290045 +"Q9VMQ5",0.288963214829126,13.4627387064441,2.3928849639102,0.0369378361298127,0.0785238387971173,-4.69749054113479 +"Q9VY78",-0.175972641657111,18.7824671575719,-2.39261414761132,0.0369551639422884,0.0785238387971173,-4.69794431584901 +"Q95083",0.134448551675028,19.8836506179867,2.39122464725023,0.0370441940986737,0.0786128699193229,-4.70027230821517 +"Q9W0B3",-0.150252370139476,19.1612708625215,-2.37998890341209,0.037771837372547,0.0800551775570627,-4.71908271837421 +"Q9VRJ5",-0.169604577648478,17.258121864652,-2.37841532347057,0.0378748512484967,0.0801716394447874,-4.72171511403102 +"Q4QQ70",-0.188510155468617,16.1263941858416,-2.37422348084663,0.038150607340544,0.080652994986093,-4.72872507266363 +"Q9VNC1",0.377922033849462,15.5514582752387,2.37059236811833,0.0383910573886601,0.0810585869927659,-4.73479443407755 +"Q9VMX4",-0.234232563011265,17.3106625065484,-2.363600353894,0.0388582303188058,0.0819412492689861,-4.74647386631309 +"Q9VP55",0.131738841461857,17.0902538271428,2.3621286005992,0.0389572689005462,0.0820463693511503,-4.74893098805009 +"Q9VMS1",-0.127106318068517,22.4056243372538,-2.35978484316774,0.0391154947652127,0.0821886705348032,-4.75284300741857 +"Q9VVJ7",-0.1348298923578,18.1536152391949,-2.35966822472237,0.0391233839356317,0.0821886705348032,-4.75303762801564 +"Q9VGE7",-0.30948636144606,13.8450204443334,-2.35701360507654,0.039303386936857,0.0824629552335566,-4.75746706388039 +"Q9VC53",-0.125507851593042,17.8896260826794,-2.35574513951717,0.0393896827311949,0.0825401894417502,-4.75958307401322 +"Q8MLW4",-0.137920804320498,18.6267725613969,-2.35331622776195,0.0395554404787627,0.0827835316418773,-4.76363395550599 +"Q9VMH9",0.132519179668886,20.0409676559278,2.35149310789394,0.0396803025139909,0.0829407826984171,-4.76667369382335 +"P09040",-0.281919502184119,16.6138123754536,-2.34970497131487,0.0398031410616754,0.0829973957409634,-4.76965442007868 +"Q0E8C8",0.172599435479974,17.6512379738093,2.34965027346396,0.0398069044321168,0.0829973957409634,-4.76974558772651 +"Q9VAC4",0.113930296402536,19.3795200442363,2.34766850898264,0.0399434892440222,0.0831439007611187,-4.77304826498681 +"Q9VND8",0.551626916646033,18.6038622077868,2.34718526959953,0.039976863555406,0.0831439007611187,-4.77385347294341 +"Q9VR31",-0.129206609002935,17.2903369611906,-2.3462775446636,0.040039627750671,0.0831707336091149,-4.77536585443557 +"P08985",-0.139900705689733,20.6692362312678,-2.34324086203844,0.0402502949349303,0.0835043432232137,-4.78042406166448 +"Q7K084",-0.13844008758414,23.6785214563872,-2.33557666379112,0.040786794812539,0.084512265524615,-4.7931815116189 +"Q9VSL3",0.11813993978328,22.3724793848783,2.33034577984967,0.041156943523493,0.0851734265473775,-4.80188127189479 +"Q95NU8",-0.176076920569908,17.3926764469771,-2.32753700744748,0.0413570425047346,0.0854814707532804,-4.8065502213703 +"Q9VNA3",-0.104366486252697,18.6240536566594,-2.32458215046675,0.0415685681372947,0.0858123411547123,-4.811460130784 +"Q76NQ0",0.339845915235495,14.4918088718742,2.31984272928783,0.0419100378616289,0.0864103129211336,-4.81933131210129 +"Q7JWQ7",-0.255194504553589,14.2116621725872,-2.31575339124529,0.0422068559495123,0.086914858918255,-4.82611882575373 +"Q9W1F2",0.373494497612858,13.6662068454943,2.31168680865479,0.0425040439322007,0.0873715414917139,-4.83286485532329 +"Q7K0B6",-0.142625051644337,20.1703238953373,-2.31128677067523,0.0425333883041197,0.0873715414917139,-4.83352827494076 +"Q9VMU0",-0.171871146861623,21.1746705773516,-2.30914691450876,0.042690689089839,0.0875868012322896,-4.83707638092508 +"Q9VL69",0.236567903441289,16.0529782640677,2.30129283819807,0.0432728893158059,0.0884906144882418,-4.85009035596617 +"Q9VZZ6",0.13269707404061,18.4535818402234,2.30108579158554,0.0432883406957931,0.0884906144882418,-4.85043323576144 +"Q7K3D4",0.149820296652866,18.5538020345629,2.30105857024038,0.0432903725553989,0.0884906144882418,-4.8504783149728 +"Q9VQQ0",-0.23239903880588,18.3304209205465,-2.29476634001195,0.0437625249308481,0.0893462565295649,-4.8608938316338 +"Q94516",-0.114679721348661,23.3974775558086,-2.28078476886589,0.0448295771717438,0.0912985549248886,-4.88400458304782 +"Q9VDU7",-0.150092084091991,18.2908397875015,-2.28056310903675,0.0448466949352604,0.0912985549248886,-4.88437060489006 +"M9PHA0",-0.188936909703891,17.4494655486649,-2.28009348596214,0.0448829826369357,0.0912985549248886,-4.88514604443525 +"Q9VBT1",0.134911515381713,16.3081917650603,2.26017245565784,0.0464486820840959,0.0943683333937539,-4.91799104950226 +"O61604",0.106043219861732,20.9337962490977,2.25064904621354,0.047215682556892,0.0958099251884378,-4.93365887897888 +"Q9W140",-0.484174257011981,13.8726755911306,-2.24970494439801,0.047292381234312,0.0958107598046703,-4.93521089103855 +"Q7KK90",-0.123780871857932,21.0925393441282,-2.24923044467062,0.047330974867535,0.0958107598046703,-4.93599083942406 +"Q7JV69",0.150364266087463,16.1992776708574,2.24727221683484,0.0474905696593797,0.0960172972022368,-4.93920904265803 +"Q9VJZ1",0.213725422909798,15.4427244885025,2.24523011069306,0.0476575530762692,0.0962382548804079,-4.94256407929785 +"Q8IMT6",0.259207558456605,16.1224247020421,2.23971844490603,0.0481110727228753,0.0970366013322322,-4.95161416424568 +"P21914",-0.106605827868439,22.9408814338135,-2.23459209916289,0.048536616881393,0.0977766629929512,-4.96002471329731 +"P28668",0.19859310589802,15.4458641848742,2.23268100250987,0.0486961850102362,0.0979797787660724,-4.96315845925211 +"Q24185",-0.145640685474259,18.7194646078084,-2.22685639946692,0.0491856348143083,0.0988453480364653,-4.97270370342233 +"Q9VYV4",-0.159682994925546,15.5648574795582,-2.22450691842985,0.0493844021435584,0.0991253703675757,-4.97655153419298 +"Q9VXP4",-0.103882905477816,17.9702953474724,-2.22053058709572,0.0497225636730576,0.0996841781330048,-4.98306048646199 +"Q9W236",-0.15701649775537,16.5415202223507,-2.2186534950772,0.049882971062768,0.0998853067419846,-4.9861317267841 +"Q95R34",0.178798631298603,15.2971669278321,2.21795657209602,0.0499426533709923,0.0998853067419846,-4.98727177874363 +"Q7K180",-0.165581530986403,16.2890726263542,-2.21707016419509,0.0500186617722352,0.0999175183665729,-4.98872161520121 +"Q9VBI3",-0.150739001205451,18.598604542185,-2.21232057116609,0.050427831543528,0.10053594269957,-4.99648671952751 +"P61851",-0.182335878149399,23.5526415136679,-2.21207827017899,0.0504487913906115,0.10053594269957,-4.99688269952903 +"Q7KND8",-0.169498884708091,15.4162305247695,-2.20928638628272,0.050690903390602,0.100700648932821,-5.00144422341921 +"Q9W229",0.152562335217013,19.1258960926689,2.20913556421366,0.0507040144026244,0.100700648932821,-5.00169058615954 +"Q7K0X9",-0.17819184757033,16.6766499687872,-2.20903731470934,0.0507125570165284,0.100700648932821,-5.00185107018643 +"Q9VND7",-0.186419632231972,13.9364598998831,-2.20657637651356,0.0509269826329177,0.101006191476465,-5.00587002177368 +"P56538",0.150097544243465,17.1130038822981,2.20323251703976,0.051219734420564,0.10146617222506,-5.01132831326165 +"Q7JWD6",-0.115475315767799,20.469274717415,-2.19491655895004,0.0519548100910068,0.102800264806405,-5.0248898687497 +"A8WH76",0.158127249787007,19.0881430387702,2.18865312811069,0.0525151270877796,0.10378581988438,-5.03509198058865 +"Q9VKM3",-0.141129995744166,21.791668822604,-2.18765161178108,0.0526052568469101,0.103840909373546,-5.03672230819218 +"Q7JVH6",0.114574893314003,18.9944459713052,2.18229940216258,0.0530894388485642,0.104672794325538,-5.0454303453716 +"Q8SX57",-0.10916297876085,17.9735269076282,-2.18021484842647,0.0532791688885252,0.10491539259176,-5.04881980300874 +"Q9V773",-0.14108653474316,15.5600434976532,-2.17926082284154,0.0533662180429475,0.10491539259176,-5.05037064061242 +"O15971",0.164614921072824,17.22846664386,2.17887807215625,0.0534011800422088,0.10491539259176,-5.05099275957819 +"P16620",0.157768736263234,17.3250638781419,2.17321159358659,0.0539213523912076,0.10575400420824,-5.0601982924691 +"Q9V3E3",0.225435257844959,14.964568038385,2.1722600001432,0.0540091813135583,0.10575400420824,-5.06174334616151 +"Q9VYT6",0.182643074994118,16.4947985262619,2.1721620195962,0.0540182323653598,0.10575400420824,-5.06190241797724 +"Q24372",0.205242922354298,16.961321859722,2.17027641281655,0.054192700266149,0.105858499542612,-5.06496319121899 +"Q9V3T8",-0.241710984561003,15.5833902651684,-2.17021343845501,0.0541985363365651,0.105858499542612,-5.06506539610524 +"Q9VAY2",-0.0901811376347759,21.1161149002754,-2.16632881066267,0.0545597044354477,0.106439283038979,-5.07136786523216 +"Q9XZ19",-0.15524801924461,16.1226418372543,-2.16442761404199,0.0547373037634502,0.106661007800742,-5.07445086050867 +"Q9W0X2",-0.194332709101683,16.0392377675833,-2.16308667107221,0.0548628996724128,0.106780999595781,-5.07662473738493 +"Q9V3Z2",0.173149865681911,16.168421120398,2.16071259161092,0.0550859377726327,0.107090144760783,-5.08047225504967 +"Q9VE75",-0.157897705040007,15.5188978356225,-2.15196989958637,0.0559147855682025,0.108574927040468,-5.09462729791354 +"Q0E8U4",-0.252444054782636,16.201959643139,-2.14938549902906,0.0561620717228451,0.108928297248495,-5.09880748252444 +"Q9W1V3",0.180774159950767,16.3647255422917,2.1478158522112,0.0563127714862121,0.109093731520327,-5.10134540715036 +"Q9VKC7",0.27284100363058,13.71729161986,2.14364800507505,0.0567147970166282,0.109745106060018,-5.10808088209473 +"Q9W2D6",-0.129361796456134,19.6171215297306,-2.14080978554372,0.0569901346494682,0.110150109612182,-5.11266475100609 +"Q9VN50",0.137732080987796,17.8043489316539,2.13955608234544,0.0571121629855656,0.110258203541578,-5.11468880662701 +"P25007",-0.104742672632952,23.8488105535566,-2.13446860517002,0.0576099118077275,0.11109055826045,-5.12289767781534 +"Q9VRP2",0.111918089239058,20.4207618516282,2.1335147621132,0.0577036933222566,0.111141652239809,-5.12443591009174 +"Q9VKW5",0.186142227959406,17.0242872667082,2.1328445869034,0.0577696717577425,0.111141652239809,-5.12551652190646 +"Q9VMU2",-0.109439074172416,16.2948312498843,-2.13117649047822,0.0579342075074232,0.111329790463574,-5.12820564522074 +"A1ZAL1",-0.19778332079477,17.3218645160112,-2.12955861591394,0.0580942161920448,0.111508806223626,-5.13081303024666 +"Q9NHD5",0.186454220950303,16.5805182474526,2.12173703177765,0.0588737322430363,0.112875155610787,-5.14340755297046 +"A1ZBK7",-0.163858997537158,17.6033643475218,-2.11902323767649,0.059146515180378,0.113267953296063,-5.14777315953499 +"Q9VMV5",-0.107711216446642,17.6071632710692,-2.11558796872737,0.0594935445539363,0.113801871921979,-5.15329624829478 +"Q9VWD0",-0.150419973662792,18.2049378541717,-2.11396943670155,0.0596577187290954,0.113985194547687,-5.15589724169902 +"Q9VN91",0.195020029936984,19.5930613818753,2.11137146982409,0.0599221424878416,0.11415732983049,-5.16007055781543 +"Q9VVH3",-0.12041453459257,19.9132225111463,-2.11062896362708,0.059997920162485,0.11415732983049,-5.16126293185503 +"A8E6W0",-0.156333927954842,16.4184279724891,-2.11060119186708,0.0600007562221726,0.11415732983049,-5.16130752669351 +"O97479",0.232516423513513,17.9370742538424,2.11039741667368,0.060021569701043,0.11415732983049,-5.16163473408922 +"Q8IR45",-0.178762668703515,14.8202047794408,-2.10912235569221,0.0601519596783679,0.11427502134797,-5.16368185129512 +"Q9XZ63",-0.164017095206354,18.9493450003096,-2.10314175439027,0.0607671491716602,0.115312405936666,-5.1732772035784 +"Q9VXI6",-0.121866146619084,22.0568840266741,-2.09588889154129,0.0615212326794466,0.116580856344102,-5.18489924231786 +"Q9VE08",-0.157521945343095,14.5436962010939,-2.09537134760598,0.061575380359205,0.116580856344102,-5.18572794527287 +"Q9VSY8",-0.148020104792099,18.0552330128669,-2.08826261914407,0.062323720308469,0.117863906433703,-5.19710228234479 +"Q9VSU7",-0.157248372586652,14.7222798995432,-2.08305869588059,0.0628770030993501,0.118775584563665,-5.20541894577032 +"Q9VL10",0.170201084012451,16.6822511981854,2.07806508714454,0.063412302278161,0.119651267194539,-5.21339157940844 +"Q9W3N6",0.118209500677576,16.1297701981734,2.07129517089915,0.0641449163031605,0.120896859201889,-5.22418773964312 +"Q9VLP3",-0.170378521165446,17.5382952952502,-2.06632650814973,0.0646876991116709,0.121782259727164,-5.23210219782902 +"Q9VLW8",-0.278802601000555,14.1336595459671,-2.06482346940234,0.0648527476527416,0.121955336059496,-5.23449480814354 +"Q9I7C6",0.253209764458919,15.4669350735355,2.05834254640556,0.0655689915866702,0.123163376088475,-5.24480320761569 +"Q9VXE8",-0.171277381433798,16.2797443141354,-2.05497800307108,0.0659437705748185,0.123728019481212,-5.25014946242053 +"Q4V5H1",0.18143366699725,14.9212624430889,2.05127801328942,0.066358252969665,0.124365804442024,-5.25602453009107 +"Q0KI98",0.162742660985186,16.648311637184,2.04818779994819,0.0667063121987596,0.12480474523632,-5.26092796295874 +"Q9V9A7",0.432372063353744,15.9650966838529,2.04776656686266,0.0667538902020316,0.12480474523632,-5.26159611954989 +"Q9W329",-0.12886011331851,16.4564491524834,-2.0470782951468,0.0668316990307996,0.12480474523632,-5.26268772656775 +"Q9VDI5",0.196958475016013,16.649817923907,2.04654760384601,0.0668917519432073,0.12480474523632,-5.26352930396683 +"Q9VLS5",-0.19763690640764,14.5800862107451,-2.04466091205598,0.067105662502848,0.125063960955029,-5.26652050228893 +"A1Z7S3",0.0976206303080325,20.0815928406797,2.04241122525813,0.0673615732659823,0.125400785946047,-5.27008568139609 +"Q9VFV9",-0.12973718655855,21.3744511439364,-2.03788196005409,0.0678795921174753,0.126224258251894,-5.27725838135758 +"Q9VF89",0.376108585186353,14.2008281351251,2.03686549642805,0.067996361961301,0.126300592150835,-5.27886716182505 +"Q9V6U9",-0.0978790243605339,21.9206677303352,-2.03589636236079,0.0681078711184395,0.12636699557904,-5.2804007156619 +"Q9VGE4",-0.121830212969471,15.6704295408524,-2.03345285257039,0.0683897890986426,0.126749075796151,-5.28426593929684 +"Q95RF6",0.173348906109016,17.2961078038605,2.03279545205212,0.0684658238284111,0.126749161094106,-5.28530549987555 +"Q9V931",-0.508960961009228,17.634522551095,-2.03037653257899,0.0687462820813993,0.127020431917807,-5.28912935246179 +"P25171",-0.151669297025471,16.7384107035,-2.03021836493275,0.0687646582864385,0.127020431917807,-5.289379317855 +"Q9VVL7",-0.116918082638655,23.5257696861805,-2.02036053658706,0.0699191377022383,0.129010090362095,-5.30494199075372 +"Q9VZD8",-0.199941024847236,13.6936485838105,-2.0178064898038,0.0702212137608489,0.129424292323863,-5.30896878100302 +"M9PFN0",-0.123875187721278,16.7164883547666,-2.01659916328745,0.0703644357683421,0.129545120156285,-5.31087152431676 +"Q9VEA1",0.123192262654232,18.2134162765109,2.01320264095025,0.0707688324691926,0.130053599774882,-5.31622179060448 +"Q9VZW1",-0.175622500597409,14.8452835327744,-2.01275171564475,0.0708226846802131,0.130053599774882,-5.31693180276501 +"O44386",0.100053988947849,16.8591629787653,2.01231786861485,0.0708745336902684,0.130053599774882,-5.31761485889087 +"Q9W503",0.0871047056331804,17.9437406330069,2.01000649195083,0.0711513684619445,0.130400326512058,-5.32125285129748 +"Q9VKQ2",-0.151759155419253,15.9806831306593,-2.00943608577091,0.0712198425974132,0.130400326512058,-5.32215036267658 +"Q9W2Y3",-0.182877926232978,16.4162039945364,-2.00659598411888,0.0715617046177155,0.130882591340295,-5.32661749739021 +"Q9VKY3",0.130873879865032,18.7493350391532,2.00477615728947,0.0717815668731248,0.131140912973025,-5.32947841443701 +"Q9VXC1",-0.129635444704086,18.3356212803023,-2.00364180484576,0.0719189346521316,0.131248121443934,-5.33126113544477 +"Q9VA32",0.16917374166092,17.1851845348677,1.99852441320596,0.072541716857028,0.131988793641381,-5.3392980064634 +"A0A0B4LFA6",0.123695192022165,19.5087790038833,1.99848904911248,0.0725460382099739,0.131988793641381,-5.3393535144259 +"Q8T9B6",-0.108505676119115,19.4839596839665,-1.99835693221188,0.0725621845138767,0.131988793641381,-5.3395608830908 +"P14484",0.117046062956337,19.2092855912936,1.99148399780657,0.073406810269408,0.133379694476441,-5.35034019895472 +"Q9VQB4",-0.0883962833604848,21.7981679027819,-1.98989243455629,0.0736037115293607,0.133591937792137,-5.35283402092811 +"Q9VHL2",-0.0791803574014445,20.6488725216332,-1.98548318730665,0.074151795287508,0.134440428847351,-5.35973825355121 +"Q9VJN0",-0.203854054638974,17.573336525988,-1.98434893967586,0.0742934036421786,0.134550919951307,-5.36151321722572 +"P54353",-0.21040526548386,18.8888086896107,-1.98358779028613,0.0743885736198992,0.134577159216911,-5.36270407287109 +"Q9VE12",-0.131490032299933,15.6501515964801,-1.98203435075338,0.074583162021201,0.134783005689451,-5.36513387319956 +"Q9VHC7",-0.118314037396839,19.9389572386376,-1.98110788929404,0.0746994403348158,0.134847041643369,-5.3665825861748 +"Q9W1G7",0.0936883366749228,18.9343170353578,1.98027885297719,0.0748036350399813,0.13488914945588,-5.36787869834834 +"P08646",0.162872159682795,18.8991824855826,1.9785673440928,0.075019171379959,0.135131725552669,-5.37055369715226 +"Q9VW00",-0.132744055290669,15.8098845532829,-1.97489099783303,0.0754841153364411,0.135822550573014,-5.37629612872801 +"P22465",-0.124418372020983,22.7324494956443,-1.97105312665426,0.0759723654138399,0.136553777489531,-5.38228573931273 +"Q960X8",-0.133564424732189,18.4020213680707,-1.96835969691152,0.0763167845725174,0.137025184786823,-5.38648612934793 +"Q9VKR4",0.163262179047411,19.1656522989005,1.96255036679047,0.077064625656524,0.138094526411914,-5.39553689901534 +"O61722",-0.113250926893066,18.9502903157586,-1.96244741690207,0.0770779401016141,0.138094526411914,-5.39569718255127 +"Q9V429",-0.0900379403624498,22.3378491137311,-1.95847802105153,0.0775929427403553,0.138868056320722,-5.40187425027737 +"Q9V400",-0.123631784221594,14.3482319554801,-1.95334239032558,0.0782640292164038,0.13991897184669,-5.40985771128205 +"Q9VW14",-0.192086727397056,13.7045062690852,-1.94613409333555,0.0792151042001746,0.141467659321083,-5.42104696112052 +"Q9VEP9",-0.135933951743642,17.5404749985477,-1.94310006838629,0.0796186352238273,0.142036239094486,-5.42575089942734 +"Q9VYF0",0.112108224251211,16.1341762480141,1.94233706246691,0.0797204177882282,0.142065872725176,-5.42693332672633 +"P35992",0.13867401665685,15.8476677280277,1.93897150824523,0.0801708218425897,0.142680111756391,-5.4321463469093 +"Q24492",0.145836872143592,15.2298742695276,1.93848461320917,0.0802361779541334,0.142680111756391,-5.43290016799133 +"Q9VGK3",-0.148719504189238,17.1045988195514,-1.93496851956087,0.0807096209426738,0.14322401933629,-5.43834124641557 +"Q94533",-0.144637596939656,15.2929972646502,-1.93493774744875,0.0807137758849597,0.14322401933629,-5.4383888453085 +"Q9U9P7",-0.189252337480044,16.6361665346302,-1.93118657794455,0.0812217654788244,0.143972268670222,-5.44418858266216 +"Q9W0C1",0.101262567063017,21.3434102280767,1.93011379544767,0.0813675901593623,0.144010769042161,-5.44584626106463 +"Q9VIH3",-0.202015749936512,13.7831616314972,-1.92975687970753,0.081416160195898,0.144010769042161,-5.446397676768 +"Q6NL44",0.239495848073053,15.310139198492,1.92780834459961,0.081681798345176,0.14427144144257,-5.44940721776173 +"Q9VDT5",-0.181575113127668,19.0366011489648,-1.92740769193951,0.0817365180834701,0.14427144144257,-5.45002585519033 +"Q9VWD5",0.20337251332306,14.453435724862,1.92091094508758,0.0826285966773523,0.145691859680575,-5.4600488842375 +"Q9W077",-0.108484196217027,20.8548788676054,-1.91504371533499,0.0834420095453149,0.146970720086151,-5.46908699552055 +"Q9VHI1",0.163023676384535,14.2020660930559,1.90798271931115,0.0844307880936563,0.148555437278712,-5.47994664688904 +"Q9W396",-0.0878873757346579,16.6601802969438,-1.90549188627872,0.0847821776730134,0.149016514603358,-5.483772934113 +"Q9VDL1",-0.170287223451099,14.8511693656097,-1.90302153489064,0.0851320182440317,0.149473901506363,-5.48756540025679 +"Q8IN51",-0.186508007505223,17.1650204541577,-1.90177087351156,0.085309641880672,0.149628267778087,-5.48948450929178 +"Q9Y0Y5",0.105578248469708,18.6063939844555,1.89327514559714,0.0865253653166347,0.151509445705493,-5.50250495099443 +"Q8MKK0",-0.515338439880715,15.8237748845118,-1.89300801789867,0.0865638499744213,0.151509445705493,-5.50291389218224 +"Q9W0J9",-0.12994187356496,18.4669456322713,-1.89108571637011,0.0868412609755086,0.151835663843971,-5.50585588867152 +"A0A0B4KGY6",0.0864109955289827,21.7392958430335,1.89044760110886,0.086933530548468,0.151837831366329,-5.50683217617975 +"Q9VB17",0.131250207744333,15.6404225409362,1.88857029181336,0.0872055107614374,0.152153548064935,-5.5097034500185 +"Q3YMU0",-0.0808255525906958,23.1398075885267,-1.88075152088085,0.0883467718991888,0.153983715285107,-5.52164706591525 +"Q8I941",-0.145738791754606,19.0511352663361,-1.8702439816739,0.0899022633773177,0.156531289471154,-5.53765979795689 +"Q9VIL2",-0.210574913009749,16.0075760219568,-1.86653689031227,0.0904570576734167,0.1573330262766,-5.54329861873292 +"Q9VIM0",0.104414116111993,18.0493286187766,1.86355557218696,0.0909055261853778,0.157948351747094,-5.54782946716384 +"Q9VLS4",-0.163735083812931,20.6129039736447,-1.86177967592219,0.0911736420153772,0.15824935991847,-5.55052667728286 +"Q9VSC5",-0.0933378561962996,19.4250401027264,-1.86085072989417,0.0913141800834775,0.158328536776757,-5.55193704208943 +"O97418",-0.0857647537526276,21.0295647126309,-1.85715724508492,0.0918749379314734,0.159135406510589,-5.55754119008082 +"Q9VP77",-0.156119258545059,15.3532757997469,-1.85502262887456,0.0922004691698471,0.159533591883096,-5.56077753266419 +"Q9W2V2",0.105850692980141,14.3553213672322,1.85150407096374,0.0927393744964772,0.160299768559714,-5.56610805278072 +"Q9W3T9",-0.0949135367747864,18.6381017721014,-1.84943336182145,0.0930578812339738,0.160683794925744,-5.56924275830991 +"P42207",0.127168318352263,16.0134198222097,1.8441850787323,0.0938696655007251,0.161917892507973,-5.5771799037618 +"Q9VVC8",-0.103806966541237,16.6452984360621,-1.83852166737235,0.0947529682835224,0.163272676753012,-5.58573213563579 +"Q7JX94",0.32978606596855,12.1922232410819,1.83318002747449,0.0955930843951295,0.164550324841152,-5.5937862894101 +"Q9VCA5",0.186004390740328,14.1872736431923,1.82562345690711,0.0967932515155187,0.16628575819993,-5.60515980537898 +"Q9VK11",0.133031014747456,18.7821825475055,1.82557719025565,0.0968006422135086,0.16628575819993,-5.60522936837746 +"Q8SXC2",0.237744080976634,14.7466297495249,1.82024233802507,0.0976563199403194,0.167583067551906,-5.61324440303407 +"Q9Y0Y2",-0.126876261498666,19.5053242582802,-1.81689662098834,0.0981964869726003,0.168336834810172,-5.61826484799362 +"Q94529",-0.0953596309385176,19.6615464086985,-1.81353634253141,0.0987417608477673,0.169097799891248,-5.62330236619974 +"Q9VIH1",0.100972562548597,15.7346051279217,1.79608296199315,0.101618796303785,0.173846309984322,-5.6493897082343 +"Q8T3X9",-0.133598102822894,18.350149122472,-1.79519394374401,0.101767374968202,0.17392211213828,-5.65071499920947 +"Q9VJ58",0.11804776682833,17.1602533857691,1.7890714944222,0.102796001489174,0.175272342497585,-5.65983262370752 +"Q8I725",0.140927970388901,18.8948153039751,1.7888158666241,0.102839155026542,0.175272342497585,-5.6602129525118 +"Q24090",0.139174873475488,15.8383826879784,1.78861736756773,0.102872675842408,0.175272342497585,-5.66050826420427 +"P38040",-0.200186174228293,19.0104172973392,-1.78190269909978,0.104012482253318,0.177033490202586,-5.67048767358137 +"Q0E8X8",0.241466982656053,19.8145337646174,1.77723822150681,0.104811038463008,0.178210817692454,-5.67740840420663 +"Q9VMR0",0.134158953933891,17.3046121692246,1.77638005391144,0.104958563516127,0.178279922550814,-5.67868062989899 +"Q9VGT8",0.153536227036911,15.2979873906463,1.77446179010524,0.105289010940628,0.178659277974534,-5.68152326028152 +"Q9VCJ8",0.0794867507106467,17.8629066921186,1.77322440052243,0.10550267093349,0.178839893411647,-5.68335605392427 +"Q7K486",-0.108985898241237,17.5543013562327,-1.7721102758139,0.105695384544009,0.178984671491784,-5.68500568911267 +"Q9VFR0",-0.220225514131693,15.2984249751179,-1.7697684429476,0.106101503981883,0.179490171036289,-5.68847133887126 +"M9PDU4",-0.13350190623607,22.5680892902589,-1.76707314239188,0.106570679445056,0.180101209031766,-5.69245705757489 +"Q8IQB7",0.196055698715885,14.3999050537992,1.76396693789561,0.107113722410481,0.180835717591784,-5.69704638257746 +"Q7JUN9",-0.413315061189312,13.3973841535477,-1.75891903913948,0.108001592047329,0.182042027367661,-5.70449527686622 +"Q9VVI2",-0.3388082320318,13.6294653114241,-1.75866456956251,0.108046527034763,0.182042027367661,-5.70487047969159 +"Q9W4U2",-0.145913073478642,18.6008670770581,-1.75629955820357,0.108464960986413,0.18208153942132,-5.70835617588879 +"Q9VQ93",-0.180933963895257,16.6870561409343,-1.75560304382556,0.108588473365002,0.18208153942132,-5.70938225958807 +"Q9GU68",0.120627031452557,22.199010006939,1.75558023716394,0.108592519812476,0.18208153942132,-5.70941585395959 +"P40417",0.0917762126207258,19.8432321186938,1.7555414613258,0.108599399888323,0.18208153942132,-5.70947297049992 +"B7YZT2",-0.181884185227958,18.4627170146471,-1.75544911654141,0.108615786405404,0.18208153942132,-5.70960899099035 +"P53997",-0.311948699674922,17.4259770449845,-1.75059139110599,0.109480958341417,0.183347629029602,-5.7167588006995 +"Q9NHE5",0.264848816750959,15.7806137848226,1.74864536659858,0.109829300994979,0.183746513600426,-5.71962003986647 +"Q9VG73",-0.12185075804069,18.0358205372605,-1.74441417785551,0.110590165060824,0.184834063448351,-5.72583520384313 +"Q9VH39",-0.203981985748804,18.3919284184357,-1.74199954415075,0.111026510008329,0.185377596290183,-5.72937837810069 +"Q9VCT4",0.318592346750187,13.3534709933126,1.74098229915405,0.111210801561532,0.185499617004636,-5.73087025917563 +"Q7KTA1",-0.274749415804624,17.1295852576316,-1.73785336182228,0.111779401440751,0.18626177982335,-5.73545614981982 +"Q9W3K6",0.115227992315942,16.3258849490945,1.73504558062996,0.112291879885321,0.186928997653409,-5.73956750799822 +"Q9VP18",-0.0985649510716087,17.1035307551244,-1.73201096981909,0.11284815023929,0.187667711464742,-5.74400691682332 +"Q9VRZ7",-0.129130667252983,17.226274770369,-1.72726492368808,0.11372314142718,0.188934462052327,-5.75094147899301 +"Q0E9B7",-0.256644974370444,12.7484747445179,-1.7242734030439,0.114277811670046,0.189667054592673,-5.75530708399071 +"O46106",-0.133048069234952,17.017338906326,-1.71884639364294,0.115290299117598,0.191157275276495,-5.76321620086878 +"Q9VJQ5",-0.184810626434549,14.2594883328318,-1.71635268064224,0.115758247865824,0.191742559523529,-5.76684581744974 +"Q9V4E0",0.223813393344169,18.492151449342,1.71167780462711,0.116640115551561,0.19301161978175,-5.77364225083236 +"Q7K159",-0.204754779535394,14.6092944452061,-1.7052014731274,0.117871818584561,0.194697191298329,-5.7830406179013 +"Q8SY67",-0.192095343881512,16.0581848111611,-1.70509490363216,0.117892184179444,0.194697191298329,-5.78319510381251 +"Q9VK18",-0.149058846051533,14.5518342711502,-1.70261184840307,0.118367597915444,0.195288974602335,-5.78679307606588 +"O97102",0.140961938362075,21.0988065545856,1.6992074864937,0.119022213544416,0.196028338066908,-5.79172125527557 +"Q9VYV3",0.0878318039003858,20.4945766510658,1.69822990953571,0.119210790365363,0.196028338066908,-5.79313537983328 +"O76521",0.114287999065546,16.0843747790122,1.69801877567276,0.119251553850809,0.196028338066908,-5.79344073778754 +"Q6NLJ9",-0.18707079888345,15.2223876057909,-1.69784129715968,0.119285829219372,0.196028338066908,-5.79369740429552 +"Q9VG97",-0.0895321226856858,20.0459893222148,-1.693158835895,0.120193331932395,0.197144984536692,-5.80046364867163 +"Q494G8",-0.110351353359389,15.1534636374625,-1.69254257644609,0.120313229606409,0.197144984536692,-5.80135337111382 +"Q9W1F7",0.0867742746695299,20.3376522972391,1.6925083043877,0.120319900634504,0.197144984536692,-5.80140284591691 +"A1Z7H8",-0.176655212223015,14.6797035143283,-1.69153761368383,0.120508982893487,0.197261024010144,-5.80280389062522 +"A1Z8Z7",0.0900727391310667,18.8257386511884,1.68916991733229,0.120971310386571,0.197823672279217,-5.8062193967544 +"Q9V3W2",-0.0833337261163116,21.5841622420883,-1.68149872401841,0.122480184893794,0.200094954361261,-5.81726681180078 +"P36241",-0.11822274566217,19.7298583231501,-1.67944287603983,0.122887416131026,0.200563806366488,-5.82022261951653 +"Q9VM50",0.155408317678759,13.4789758377264,1.67195102359497,0.124381726866034,0.202666843084135,-5.83097661705205 +"Q24050",-0.103140841304782,16.6296511029254,-1.67175837197179,0.124420366575414,0.202666843084135,-5.83125279168658 +"Q9VEB3",-0.268091495924514,12.2713924269035,-1.67115985743843,0.124540477896801,0.202666843084135,-5.83211067253696 +"A1Z6X6",-0.101265993457034,18.5587617420513,-1.67055494321409,0.124661979019378,0.202666843084135,-5.83297754760092 +"P54397",-0.112976320434417,14.7628028609872,-1.66613036939298,0.125553916220983,0.203918142411489,-5.83931272802331 +"Q9I7X6",0.206503963831992,14.8694631495357,1.66438931103548,0.12590645392607,0.204291794891716,-5.84180295830298 +"Q9VN21",0.0722008398649621,22.0285422951219,1.66027040955101,0.126743995434587,0.2054509080514,-5.8476882392593 +"P00334",-0.101764414498032,25.2238148988764,-1.65710470885039,0.127391092952328,0.20629936217911,-5.85220582077306 +"Q9VQM2",-0.0843292102296971,20.1587754521343,-1.65627656285232,0.127560859713385,0.2063739224073,-5.85338679556653 +"Q9V3H2",0.140488104666133,18.388339202099,1.64752827027215,0.12936660133486,0.209092530064483,-5.8658413463624 +"Q9VSJ8",-0.157992524542701,15.7611928472973,-1.64454940484422,0.129986654751839,0.209695773499611,-5.87007346430472 +"Q9VGU6",0.0928640659202102,18.5419958941332,1.6445273043709,0.129991264867265,0.209695773499611,-5.87010484608173 +"Q8SZM2",-0.0942904387055492,21.2118068796013,-1.63994471129318,0.130950337678,0.211038805069472,-5.87660661964289 +"Q9TVP3",-0.121651409539222,22.953439158624,-1.63852107591699,0.13124956505887,0.211316867295555,-5.8786243095018 +"Q9VF51",0.10641345258172,17.6610884696007,1.63749210111663,0.131466219382239,0.211329260917762,-5.88008201561355 +"Q9V9U7",0.142832185134523,17.8409323512246,1.63728124498441,0.131510655175442,0.211329260917762,-5.88038066051675 +"O97064",0.114119471598245,16.5196645317302,1.62320376455931,0.134507729185676,0.215937336171037,-5.90026798557497 +"Q9VMM6",-0.206171508198793,18.3857256503255,-1.62033336493782,0.135126226868168,0.216721679246253,-5.90431055524759 +"Q9VS44",-0.101452308704021,15.1197182456157,-1.61857105900479,0.135507207790607,0.217123941013192,-5.90679042191719 +"Q9W022",-0.0890530889346905,21.229935859258,-1.61329346276927,0.136653839419826,0.218751059647092,-5.91420730567167 +"Q59E14",0.164667270827273,14.5323696932996,1.61225635482255,0.136880173906528,0.218903288663557,-5.91566311179644 +"Q5U126",-0.0917679080356635,21.6333183807785,-1.60321305829624,0.138867858324697,0.221869336863596,-5.92833361840997 +"Q9VJD1",-0.0999935004216681,18.5362265519824,-1.60069272165262,0.139426350020937,0.222352240487116,-5.93185723272041 +"Q9VKV9",0.137968110456312,15.6079711928394,1.60064602354152,0.139436716756309,0.222352240487116,-5.93192248865515 +"A1Z8Z3",-0.121278446603625,20.0609538155478,-1.59937787289354,0.139718500132506,0.222547706938259,-5.93369416455292 +"Q9VJG0",-0.634443636045182,13.0557695105005,-1.59889405466255,0.139826137213007,0.222547706938259,-5.9343698625074 +"Q9VG33",-0.134141643047283,19.9411787797578,-1.59683787805695,0.14028440128316,0.222893393846162,-5.93724013457702 +"Q9VZ58",0.0954365424396393,18.0709514644891,1.5967205532759,0.140310589651361,0.222893393846162,-5.93740384428333 +"Q9VXQ5",0.0696756260340727,20.333929555983,1.59422523791247,0.140868598856416,0.223548358885775,-5.94088397682055 +"Q9VCR9",-0.0912250764099234,19.345413898887,-1.593679355809,0.140990931383594,0.223548358885775,-5.94164486236858 +"Q9VA18",-0.104415267811007,21.5643485186051,-1.58902013861726,0.142038886052791,0.224996070214677,-5.94813276686252 +"Q9VTB4",-0.0831990591524665,20.6372394406759,-1.5841959330555,0.14313118307842,0.226511208135488,-5.95483828328155 +"Q9VJ28",0.101937732408398,18.9493409131649,1.57828297638746,0.144480085147009,0.228429177275082,-5.96304021959337 +"Q9VFP6",-0.0754029400839755,20.2588012378,-1.57471298382863,0.145299901293975,0.229372937918029,-5.96798314247429 +"Q8IH23",0.131938278127455,18.2791776368756,1.57448655816147,0.145352035599135,0.229372937918029,-5.96829641513797 +"Q9VB81",0.110662509671744,20.9632975822669,1.57369834304869,0.14553364974506,0.229442464815464,-5.96938674022619 +"Q9W1X8",0.0777752937224712,16.0906819310985,1.57276578080665,0.145748780851179,0.229564651992225,-5.97067630685412 +"Q9VBS7",0.0696118782318003,19.7931379554481,1.56913701699225,0.146588556258762,0.230669539471334,-5.97568977988119 +"Q4QPU3",0.28689862462698,14.4685897794944,1.56551862692111,0.14743016047464,0.231775219294722,-5.98068184109567 +"Q9VR94",-0.102462224301492,16.1150881881805,-1.56401920645829,0.147780153169863,0.232106681249842,-5.98274841842777 +"Q9VRU1",0.156588850521324,17.2219290544111,1.55983807911517,0.148759960059656,0.233425788691916,-5.9885046134594 +"Q9VA41",0.0853991565311887,17.473125979433,1.55585972599564,0.149697532675477,0.234496026760771,-5.99397281116738 +"A1Z7H7",0.0881550483304068,17.8422860636159,1.55575119439696,0.149723182554089,0.234496026760771,-5.99412186548626 +"Q9W289",-0.139397739191153,17.4922387611887,-1.55438137395012,0.150047250990377,0.234587511625719,-5.99600258580247 +"P29746",0.0969983888930344,21.1615937607435,1.55431539908535,0.150062874643071,0.234587511625719,-5.99609314131098 +"Q9VGR1",-0.182349279044159,14.1374567641641,-1.54916182123446,0.151287714807801,0.23628081301443,-6.00315944823139 +"Q8SZA8",-0.120109367924421,18.0460217000376,-1.54752432695373,0.151678721908874,0.236669886009356,-6.00540163886171 +"Q9V9S0",-0.11538408437459,17.0992850140867,-1.5451964627884,0.152236099412676,0.237317583009667,-6.00858659925601 +"Q0KI81",-0.0984668958351573,15.6755594729209,-1.54037359668048,0.153396573201005,0.238903346497924,-6.01517567855401 +"Q9V4N3",0.126151035968288,19.7652399343726,1.53843494589004,0.153865222449308,0.239279259296685,-6.01782066801146 +"Q9VU75",0.0841490007188348,18.2412690858665,1.53818866709535,0.1539248472574,0.239279259296685,-6.01815652816642 +"Q9VI10",0.122728554463688,17.1704198728259,1.53563646357918,0.154543931491438,0.24001794946715,-6.02163508608182 +"A0A0B4K7J2",0.188912156677535,15.8116214791804,1.53434469032822,0.154858102307252,0.240282153161391,-6.0233943442749 +"Q8SWZ6",-0.0721710390631127,13.9839389297522,-1.5301100657124,0.155891909955542,0.241258665308459,-6.02915493281372 +"P52029",-0.135080613701017,18.4446831979087,-1.53003162681563,0.155911116017287,0.241258665308459,-6.02926154305425 +"Q7KML2",-0.337584622417063,13.5278726626159,-1.52998976197112,0.155921367627409,0.241258665308459,-6.02931844225763 +"Q7KS11",-0.145302847496842,15.650315342062,-1.52603127314651,0.156893355412649,0.242537643029007,-6.03469405929951 +"A1ZB23",-0.229339880140511,15.9162150719352,-1.52116037498966,0.158096617267688,0.24417144222454,-6.04129666154302 +"Q9V4W1",-0.220756453207246,13.5288508104444,-1.51950086976976,0.158508395701731,0.24440616712534,-6.04354310560249 +"Q9V3L7",0.130004225516565,17.7628901859142,1.51936701401183,0.158541650377468,0.24440616712534,-6.04372423619762 +"Q8MKN0",0.152707650547537,16.5844453349051,1.51745885252085,0.159016367577905,0.244760242866606,-6.04630521768592 +"Q9VDE2",-0.104448476131239,19.5950224472299,-1.51726441263819,0.15906481011235,0.244760242866606,-6.04656810184988 +"Q9VIW6",0.193445771609824,15.0142165694366,1.51576448020817,0.159438932835987,0.24489614117007,-6.04859530318937 +"D0UGE6",-0.195937842837331,15.3242683594864,-1.51573309949598,0.15944676817188,0.24489614117007,-6.04863770152348 +"P02283",-0.0897685143270586,21.5548605193017,-1.51303832497248,0.160120865501251,0.245705247153714,-6.05227651854577 +"Q9VL66",0.0826680202971666,15.7620512091045,1.51017719789259,0.160839282950926,0.246580812465207,-6.05613545673785 +"Q9V3Z9",-0.0819308523648949,21.6338968610421,-1.50920306819616,0.161084520513969,0.246730009382277,-6.05744825016881 +"Q9VV60",-0.0779563914982795,20.0494308515399,-1.50386439040566,0.162434302383097,0.248569189334868,-6.06463335871244 +"P20007",-0.12746178018682,14.8960669299406,-1.50174365861565,0.1629732028564,0.249165263395487,-6.06748304714216 +"O18335",-0.0658888929497543,21.6609989361721,-1.50077503795777,0.163219854427248,0.249313843575687,-6.0687837539657 +"A0A0B4KH34",-0.0749504469134834,23.3689691033395,-1.49440856903803,0.164849082057951,0.251572066672153,-6.07731952609713 +"Q9V595",-0.0818299612727849,18.5063273692098,-1.49242279953816,0.165360125180084,0.252121287751718,-6.07997715080946 +"Q9VLP2",-0.170192200740413,19.3539726736026,-1.49089247391697,0.165754892395415,0.252434073002011,-6.08202368605901 +"P42325",-0.0806805956846723,20.1285509306395,-1.48998120122161,0.16599035358032,0.252434073002011,-6.08324170639676 +"Q9VTC1",-0.107706942571371,15.8469769355536,-1.48986928421038,0.16601929141679,0.252434073002011,-6.08339126318563 +"Q9W1M9",-0.220825594507351,14.2257678413941,-1.48608145231238,0.167001265386407,0.253695911352028,-6.08844873594628 +"Q9VC05",-0.15612081084033,14.8664304997387,-1.48208753986777,0.168042090562998,0.255044774394068,-6.09377234501084 +"O18404",-0.0963080867311916,23.0057310815271,-1.48084896007403,0.16836600258768,0.255304083923864,-6.09542140049092 +"Q9VB10",0.0782805348294815,20.9924968540337,1.47958850370474,0.168696188251894,0.255572426888428,-6.09709866442506 +"Q7K1C3",-0.112691271658223,17.1008745455559,-1.47827028680531,0.16904210162141,0.255864088479593,-6.0988517971935 +"P91941",-0.0775226921671752,23.1021416163866,-1.47208040692924,0.170674570759598,0.258075102238944,-6.1070702929367 +"Q9VKX2",-0.0775679030453134,23.1235484293345,-1.47156051739705,0.170812297884769,0.258075102238944,-6.10775954367869 +"Q9VT75",0.0901106660955371,15.5724515508241,1.46601776246898,0.172286615272702,0.259817315870474,-6.11509804181675 +"P08928",-0.0731239992210817,22.7210904996215,-1.46581918577498,0.172339637004935,0.259817315870474,-6.11536061745032 +"Q9VQ35",0.223616549325399,12.3065356160047,1.46547071740183,0.172432715029145,0.259817315870474,-6.11582133681937 +"Q9VWD9",-0.076165440556796,19.4377701717986,-1.46360255053373,0.172932450473791,0.260335133023722,-6.11829006700079 +"Q9VI04",0.184986815290383,16.3524688244624,1.46033975606347,0.173808232504466,0.261417612098692,-6.12259680557556 +"Q9VXJ7",-0.11629733188772,14.9455248169449,-1.4583694019174,0.174338945694282,0.261979604881138,-6.12519452582257 +"Q9W4Y1",-0.152199485979498,17.5769264901435,-1.4568407283134,0.17475164959002,0.262363412705809,-6.12720834469626 +"Q86BN8",-0.136596560844222,14.2958034449137,-1.44353890707166,0.178378277942009,0.267567416913013,-6.14467281940794 +"Q9VXM4",0.085447362429214,20.1302889417902,1.44067383968234,0.179167784358702,0.268304885986411,-6.14842058955498 +"Q95T12",0.100285916336135,15.9640670863757,1.4405874643324,0.179191632487328,0.268304885986411,-6.14853349963717 +"Q02910",-0.228154983279868,16.2575855564485,-1.43914757346577,0.179589584077578,0.268659575104395,-6.15041506609333 +"Q9VTT2",-0.207413104172973,14.0886599637403,-1.43591871364812,0.180484708062077,0.269756714200309,-6.15462980295427 +"Q24400",-0.0892949318973031,21.4545117164531,-1.43398303942307,0.1810231503875,0.270319261276947,-6.15715347858869 +"Q9VGJ9",0.0771464390784544,18.0442530938729,1.43212892240253,0.181540190069381,0.270608997071787,-6.15956869302052 +"Q7JZV0",0.147220012569438,15.2473835843055,1.4321237030455,0.181541647316145,0.270608997071787,-6.15957548892832 +"Q7JW03",-0.148215086767895,17.1566554386743,-1.43043818666045,0.182012766023335,0.271069012256181,-6.1617692644559 +"Q9VWT3",-0.109750543788588,14.2966069169381,-1.41885661747544,0.185278169472837,0.275454859755023,-6.17679637651796 +"P92204",-0.154125665309918,15.8721992668769,-1.41882208020293,0.18528798120212,0.275454859755023,-6.17684106601512 +"P48609",0.0846412382193691,16.9537959924135,1.41711079100686,0.185774696252588,0.275932496303934,-6.1790544713908 +"Q9VXA3",-0.095929353111547,17.7987531490768,-1.41582288070672,0.18614171206496,0.276231651000314,-6.18071908608521 +"Q9W141",-0.0775864508045352,21.8765592328119,-1.41481899495283,0.186428216187855,0.27641090186786,-6.18201589365945 +"A0A6H2EGA2",-0.0961672405470111,15.8128614148274,-1.41288448016651,0.186981373016784,0.276984840312607,-6.18451312674121 +"Q9VWX8",-0.0739057366155258,20.5659061921597,-1.40957382925776,0.187931253903212,0.278144925918862,-6.18878143648055 +"Q9VFJ2",0.126363829829039,13.8526389134251,1.4065785493963,0.188794171343074,0.279174359751992,-6.19263731188515 +"O61444",-0.120531862500588,16.4215833636943,-1.40331783283057,0.189737372463568,0.280320582169382,-6.19682856832762 +"Q9VXA9",0.13407564814092,14.2511506800232,1.3908422162541,0.193382978686894,0.28545381278738,-6.21280333426429 +"Q9VAQ4",-0.109751793869233,16.0887851991566,-1.38630764412806,0.194722635403624,0.28717714929553,-6.21858561249543 +"Q9W074",0.136929568528227,13.6415521823781,1.38428978169543,0.195321286321358,0.287580217053,-6.22115453821474 +"Q9VL00",-0.145164928076358,15.980638635039,-1.38422423319789,0.195340758945473,0.287580217053,-6.22123794448149 +"Q9VJC7",-0.126827322634316,18.6099576151295,-1.38319526110666,0.195646652120478,0.287776557087265,-6.22254689035781 +"Q9W254",-0.0667293882926963,18.141604463727,-1.38149599432444,0.196152693781756,0.288266690068696,-6.22470704855108 +"Q9V420",0.098437509429818,17.4816972268581,1.37218762911605,0.198944302963642,0.29211188146422,-6.23650767336783 +"Q9VQF7",0.0860645406081595,18.7395990403027,1.37122550070026,0.199234742364922,0.292281046846693,-6.2377242672633 +"Q9VD00",-0.0709280698575547,17.912379316053,-1.36772717445044,0.200293789618835,0.29357648601425,-6.24214286309486 +"Q7KNM2",-0.0839364274476324,19.6281114339468,-1.36535440763227,0.201014780750984,0.294374586736297,-6.24513536130234 +"P02572",-0.064893061663696,26.5782803934844,-1.36408563309545,0.201401203606612,0.294681761066517,-6.24673404272446 +"P45889",0.0908818141539633,19.1475681499546,1.36295366998723,0.201746483842799,0.294928251577378,-6.24815946851451 +"Q9VJ22",0.310944858606529,12.9816245717618,1.3602496730879,0.20257328528343,0.295877618084729,-6.25156115272695 +"Q9VSY4",-0.0645596833759505,20.446590913164,-1.35886251020391,0.202998537870703,0.296239336105278,-6.25330440973428 +"Q8IQC6",-0.215632206386099,15.9312594337017,-1.33977561542517,0.208926029514079,0.30462291715864,-6.27716478162322 +"Q9V3Y2",-0.0894333337121225,17.8838483250248,-1.33064944868938,0.211810732417244,0.308559215434029,-6.28848951076435 +"P23128",0.212480522467805,14.6397759761384,1.32566230422378,0.213401054255831,0.31055600779337,-6.29465499001456 +"Q9VE24",0.0824869960468213,15.7983292240359,1.3251849233213,0.213553801522179,0.31055600779337,-6.29524430431053 +"Q9W1H6",-0.0945578276219017,17.1476031908805,-1.32218621088526,0.214515371687496,0.311682613218418,-6.29894269496769 +"Q8IP97",-0.0766787092212482,19.9575309305384,-1.32137356734008,0.214776571678796,0.311790532254336,-6.29994392578583 +"Q9W073",0.098821500760037,14.6005869684832,1.31577668484943,0.216582683045533,0.313959183012131,-6.30682777128791 +"Q9VJ19",0.0690043253721022,19.1288764476085,1.31557841520431,0.21664689427276,0.313959183012131,-6.30707125030576 +"Q9V535",0.0698337920529077,18.60512760644,1.31461971242156,0.216957600012138,0.314136525017574,-6.30824818743142 +"Q9W125",0.108065308774133,21.3969056047156,1.30829146515491,0.219017769314795,0.316844439910736,-6.31600160784369 +"Q9W0Y1",-0.0956860510840229,17.6477306977507,-1.30713930384257,0.219394588995854,0.317114535914285,-6.31741036896948 +"Q9VP13",-0.332043677132782,11.7073651357764,-1.30555034524292,0.219915142363833,0.317591738063094,-6.3193517503889 +"Q9VA97",-0.115655962887409,18.5605371415127,-1.30217519419561,0.221024242941744,0.318917333241201,-6.32346987986884 +"Q9W5R5",-0.0821758321689305,15.8775218791851,-1.30008342113538,0.221713925412531,0.319175119061259,-6.32601828143474 +"Q9VV76",-0.134700682726065,16.3344335082256,-1.30001016237303,0.221738111773894,0.319175119061259,-6.32610747909316 +"Q9VEP8",-0.0682649122586305,17.1876630789866,-1.29989251905107,0.221776956230216,0.319175119061259,-6.32625071050107 +"Q7JR49",-0.0871950121634981,18.8730371829467,-1.29658641651429,0.222870884911949,0.320472962097527,-6.33027209994376 +"O97454",-0.215840172359426,13.996875784922,-1.29306327639161,0.224041506987323,0.321743244028474,-6.33454937345757 +"Q9VHN4",-0.136501427017208,14.5543849707137,-1.29276730605399,0.224140077674513,0.321743244028474,-6.33490831500132 +"E1JIY8",-0.198608582931396,16.4254941659057,-1.29105445463692,0.224711229694837,0.322285753337049,-6.33698443247107 +"Q9VES8",-0.0656260030504487,17.9957208155939,-1.28947961258519,0.225237416190555,0.322762895365846,-6.33889151895613 +"Q9VTW6",-0.210121443885646,16.194169056418,-1.28258297151933,0.227553641269242,0.325802123293645,-6.34722332287188 +"Q9VI64",-0.0778326415927353,20.9307801441868,-1.28008741060284,0.228396563865563,0.326728532185042,-6.35023022661145 +"Q9V3J4",0.0751268237393514,16.685240294284,1.27948462986267,0.228600547101959,0.326740113595602,-6.35095588085062 +"A8JNP2",-0.106655839741197,21.1208525541613,-1.27219205373306,0.231080206968176,0.330001528444278,-6.35971532493049 +"Q9VU84",0.0794112870896235,18.4143083907812,1.269854127479,0.231879795081767,0.330860135326251,-6.36251579823704 +"Q9W0H6",-0.0859213088911837,18.1723647947172,-1.26504502627161,0.233531639220118,0.332932285657399,-6.36826453637901 +"Q9VSU6",-0.0933044146895092,21.6275568440208,-1.2639957721727,0.233893311289943,0.333163145372865,-6.36951668331065 +"Q7KTP7",-0.0543502323610028,17.8428552435053,-1.26199114558981,0.23458556305756,0.33386409486349,-6.37190682843556 +"Q9VXH4",0.103448713356091,17.1035307261194,1.25633740799298,0.236546936546909,0.336368533810949,-6.37863288283905 +"Q9VIG0",-0.0805415407629884,17.3670383833867,-1.25546975476082,0.236849115787266,0.336511350198603,-6.3796631382574 +"Q9VZV2",0.119923928313401,15.0368126342303,1.24998609848186,0.238766176855219,0.338946368505962,-6.38616234962423 +"Q8IPX7",-0.156482309802254,15.1508433411712,-1.24706755985262,0.239791604122438,0.340112581357335,-6.38961284878723 +"Q9VPL3",0.140736765528091,15.7123345066666,1.24515274896135,0.240466308260395,0.34077978095016,-6.39187343909838 +"O76877",-0.103470806979923,17.368344962166,-1.24331497010654,0.241115314005236,0.341196160270744,-6.39404067453242 +"Q8SX78",-0.0931541692439399,15.9843376096219,-1.2431624817909,0.24116922839281,0.341196160270744,-6.39422039300423 +"Q9VHX2",-0.147365282261617,14.8269573239446,-1.24099994499655,0.241934874073444,0.341989296571614,-6.39676734403103 +"Q9VGR2",-0.0869012757949825,15.6431698297456,-1.23894102385884,0.24266565984768,0.342611574880619,-6.39918921148305 +"Q7JXF7",-0.0898463657160313,17.8540174532232,-1.23860273807218,0.242785900185187,0.342611574880619,-6.39958684544769 +"Q9Y105",0.247386430449282,17.2073940152642,1.23676483058816,0.243440007568134,0.342996090245933,-6.40174578571485 +"Q9VXN1",-0.152286974206621,13.6740885749815,-1.23668164494537,0.243469646793276,0.342996090245933,-6.40184344543465 +"Q9VQ62",-0.183041811910762,19.6789883303478,-1.23552108347299,0.243883461315628,0.343276627372327,-6.40320543341246 +"Q9VRL1",-0.0885727090916149,20.479762370792,-1.23454331033096,0.244232540542363,0.343276627372327,-6.40435217211333 +"Q9V3F3",0.146133410835441,14.6036910424422,1.23439315165969,0.244286185066518,0.343276627372327,-6.40452821950362 +"Q9W4A0",-0.0701465543760165,17.134735138281,-1.23149332292634,0.245324020888427,0.344444837409004,-6.40792488583766 +"C0HK95",-0.122982744857538,19.990698998323,-1.23002576034074,0.245850608059573,0.344893872366162,-6.40964162812843 +"Q8IQW5",-0.0800258299897116,21.9568799466394,-1.22481290786545,0.247728435709741,0.34708472945254,-6.41572725689877 +"Q9W2N5",0.265837348609141,12.8485670836556,1.22453606464072,0.247828484878882,0.34708472945254,-6.41604991274782 +"O44226",-0.0562208650351472,20.186674150274,-1.2157418952748,0.251023573255099,0.351264530360323,-6.42627099527005 +"Q7JYZ0",-0.219494477249665,16.8292776102509,-1.20938370468103,0.253354139216387,0.354228586934563,-6.43362646595625 +"A0AQH0",0.14028091211744,16.853287844187,1.20233225821249,0.255959031267164,0.357570908001364,-6.4417500148225 +"O76454",-0.0884475095129424,17.9834407711386,-1.20167539146278,0.256202771278808,0.357611901667826,-6.44250492974484 +"Q9VP78",-0.0594086212481333,14.9080640643984,-1.2000913419876,0.256791318086275,0.358133711177179,-6.44432414470744 +"Q9W2D9",0.130210663041138,17.6320300140035,1.19713786443746,0.257891549819274,0.359367673432371,-6.44771125284291 +"Q9W3L4",0.111117894745327,17.7467405264326,1.19638600652372,0.258172231707044,0.359458499572078,-6.44857249186113 +"Q9W3C3",0.0850058408469714,16.4573577214638,1.19458040650602,0.258847288354021,0.360097812322358,-6.45063910140365 +"Q9VJJ1",-0.117820816226866,14.0243795029116,-1.19348576068576,0.259257225668171,0.360367543678757,-6.45189083450408 +"Q9VLV5",-0.0646005621134549,17.4702479203121,-1.19173909289336,0.259912410689631,0.360977436328313,-6.45388635869123 +"Q9VEK8",-0.0530119667762925,18.8674843722732,-1.19000562560625,0.260563945779325,0.361581249217899,-6.45586461209403 +"O44434",-0.096529891916882,15.8681979946861,-1.18703448241484,0.261683688811863,0.362795023652663,-6.45925023525623 +"P18053",-0.05465640716357,21.0232835006624,-1.18653150210591,0.261873626185735,0.362795023652663,-6.45982274636712 +"Q9VEA5",-0.141747766732074,15.6219699542762,-1.18295879814934,0.263225916274101,0.364190442988031,-6.46388402523812 +"Q9VHF9",0.115106587510965,17.0255258389361,1.18271723094465,0.263317550505735,0.364190442988031,-6.46415829112269 +"A8DYK6",0.0589293001111066,16.5698226061116,1.18146149061585,0.263794300924645,0.364547550904978,-6.46558332246905 +"Q9VPX5",0.0647170885667521,18.8209767637334,1.17649811751694,0.265685378457288,0.36685696296917,-6.47120453586642 +"Q9U1L2",-0.246517489312968,17.6193449557726,-1.1754492657367,0.266086367976067,0.367026231350419,-6.47239009111578 +"Q9W078",-0.0818818768491845,19.4311207108313,-1.17502672614141,0.266248045523985,0.367026231350419,-6.47286747486077 +"Q9VG00",-0.141920938424827,15.2692973902112,-1.16809662872975,0.268910826746683,0.370243090509968,-6.48067834503649 +"Q9VQL1",-0.0545422096762351,20.1082706861839,-1.16779925927604,0.269025554974869,0.370243090509968,-6.48101271698266 +"Q9VJJ0",-0.0556795196065103,19.709434863071,-1.1660913105768,0.269685247290712,0.370821972093722,-6.48293192684158 +"Q9VVU5",0.123398282020499,15.6597203034082,1.16555977563409,0.269890811823608,0.370821972093722,-6.48352876949325 +"Q960W6",0.186696010814332,14.1237479966434,1.1599491409734,0.272068192968696,0.373084359550807,-6.48981601903034 +"Q9VQV7",-0.0772581864348059,16.250760095745,-1.15963714756504,0.272189676295124,0.373084359550807,-6.4901649530667 +"Q9VYG8",0.116749287651263,15.0114754895941,1.15958898740153,0.272208432597921,0.373084359550807,-6.49021880905628 +"Q9U616",-0.112532577935109,19.7513678210464,-1.1530532535339,0.274763258917597,0.376023641169906,-6.49751153475002 +"Q9V597",-0.145487786866195,20.0339671709376,-1.15294980457595,0.274803848073211,0.376023641169906,-6.49762671011549 +"Q9V3I0",0.246702165515172,16.2731922365196,1.15094446838166,0.275591590183968,0.376792436415457,-6.4998577846355 +"A1ZBD8",0.168649373347385,14.0505637604564,1.1440968614337,0.278294835673224,0.380176728831235,-6.50745358771389 +"O76752",0.0643424501320666,17.9231901978439,1.14294442706558,0.278751817865615,0.380489388052247,-6.50872849226723 +"Q9VAS1",0.114289105075722,13.0280003445266,1.14065717637392,0.279660533531064,0.381417636900911,-6.51125586106808 +"Q8SY69",-0.115697961350911,18.9608697769592,-1.13984030206461,0.27998563480191,0.381549051347701,-6.51215754009054 +"Q8MSV2",0.137745061840771,18.1791097015221,1.1369003064404,0.281158143012097,0.382834108199329,-6.51539860389194 +"Q9I7I3",0.16104835842488,14.6114589612487,1.13436809473151,0.282171089186344,0.383899981046348,-6.51818491057488 +"Q0E8P5",-0.0746325491981601,17.7613734447106,-1.13316849650574,0.282651949531644,0.384240792028347,-6.5195031955624 +"Q9VIS4",-0.0838357425922389,14.0775334046946,-1.13168043256327,0.283249328516713,0.384739315933125,-6.52113697785854 +"Q9VNI8",-0.0660765478460661,15.7459663477266,-1.13094398348459,0.283545337311553,0.384828008653922,-6.5219449250522 +"Q9W0A8",0.0559336333016915,18.8598857503612,1.12902228146007,0.284318881266275,0.385564141424509,-6.52405126512783 +"Q9W380",0.116794848561117,18.3879921592901,1.12297640695187,0.286763236280768,0.388563020403185,-6.5306597934374 +"Q9VVU2",0.0561378174942107,20.0565018424827,1.11837656698498,0.288633858585549,0.390780256591473,-6.53566912494081 +"Q9W3N9",-0.0964123619582473,20.1826704395435,-1.11593877131126,0.289629065628585,0.391809636227478,-6.53831740987485 +"Q9V3R3",-0.0969273812388778,13.6329053378773,-1.11510047120683,0.289971906784121,0.391955543367839,-6.5392270450904 +"Q8SY33",-0.0661096876493055,17.3919283710278,-1.10731329815675,0.293171656534268,0.395775945707725,-6.54765119703559 +"Q9VKV2",0.0887734545903331,14.9101182289676,1.10706816338372,0.293272823078386,0.395775945707725,-6.54791562954315 +"Q95RB2",-0.0734235441330569,24.3207441246006,-1.10349472337848,0.294750631601119,0.397448709386149,-6.55176514382839 +"Q8IPP8",-0.0770855067702243,19.0742608839907,-1.10056841667419,0.295965082286479,0.398763939623463,-6.55491021825935 +"Q8I937",-0.222970964311232,14.0185280435525,-1.09873868793064,0.29672639456244,0.399165043282209,-6.55687338497639 +"Q9VS02",-0.069018316110359,17.9252793140078,-1.09870266254052,0.296741399082697,0.399165043282209,-6.55691201171067 +"Q9V9U4",-0.0604844602979089,15.9163009875989,-1.09426154490759,0.29859558831511,0.40133556914553,-6.56166614276756 +"Q9VUV6",-0.0737293347973278,14.8317817904756,-1.09254111917773,0.29931625990871,0.401980291085127,-6.56350372915323 +"Q9VX02",0.0858651452128427,17.217016495686,1.08380149815078,0.302997816414674,0.40659723071575,-6.57280308184342 +"P07668",-0.209150444046751,14.7482610689231,-1.08173792777458,0.303872125065294,0.407442688592372,-6.57499015064968 +"Q9VAY0",-0.128957421096905,14.0525773918315,-1.07405783216415,0.307143009028306,0.411204541720719,-6.58310068492026 +"Q9VUW4",0.085059506866445,14.5659582135549,1.07399289567069,0.307170778767395,0.411204541720719,-6.58316906425812 +"Q9VM11",0.0928915973725992,17.7529083825668,1.0720574343874,0.307999345759092,0.411983086388264,-6.58520562471393 +"Q0E8X7",-0.09887418300967,20.9842730225113,-1.06314259114187,0.311837718969915,0.416783105161714,-6.59454816859524 +"Q9VHA8",-0.0588814115794172,18.5777986566179,-1.0599203625309,0.313233967182753,0.418314057054309,-6.59790959308467 +"Q9VXI1",-0.0843502024723435,19.6021983460172,-1.05567045755276,0.315082752670508,0.420446425163526,-6.602330546565 +"Q9VZ49",0.101805887689615,18.9256670141064,1.05174708551819,0.316796796170536,0.422395728227381,-6.60639913157417 +"Q9VMH2",-0.213594174848785,17.3279775653262,-1.04930706426472,0.317866334055867,0.423483262943439,-6.60892330440039 +"Q9VLR3",-0.101915347059284,16.7811547218915,-1.04652048908687,0.319091101609783,0.42477570429778,-6.61180019519603 +"P45594",-0.0599441825819511,23.0187222021273,-1.04218013031052,0.321005861202705,0.426983872795943,-6.61626891275564 +"P91926",0.0883683166909783,17.708334784289,1.03915395793922,0.322345961253038,0.428424751689297,-6.619375685259 +"Q9W147",-0.0666032662427618,13.7831731343749,-1.03619008944276,0.323662533612499,0.42958434146819,-6.62241139696941 +"Q9VEY5",-0.0508336338181365,20.8506752772655,-1.0356878065897,0.323886050001872,0.42958434146819,-6.6229251581016 +"Q9VHJ7",0.148739605206041,14.8017666798064,1.03545190107207,0.323991068085721,0.42958434146819,-6.62316638482665 +"Q9VME3",0.0792326681931677,15.7203847405877,1.03272920409266,0.325204976847034,0.430627256002998,-6.62594726737223 +"Q9VCU0",0.139306027337257,17.3947869726467,1.03252989832257,0.325293970361977,0.430627256002998,-6.6261505988301 +"Q9VEC2",-0.0560675324044908,16.6975315451356,-1.03060609038474,0.326153920618102,0.431423266923865,-6.62811162507283 +"Q7K0S5",-0.0631416858443892,18.3246818967131,-1.02701495019772,0.327763717614149,0.433209097448812,-6.63176427987986 +"A8DZ14",-0.0558263505275534,19.4490994950313,-1.02283475518225,0.329645025691766,0.435350675260384,-6.63600299813219 +"Q9VVW8",-0.106214684419148,15.7561295464985,-1.01791377569101,0.331870014878711,0.437575204261124,-6.64097479229207 +"Q9VNR6",-0.125428506150032,14.6861017965509,-1.01759512581315,0.332014474197208,0.437575204261124,-6.6412960573663 +"Q9VDC0",-0.0790233863684833,17.5760113133478,-1.01737028818865,0.332116432011141,0.437575204261124,-6.6415226907882 +"O15943",0.0493208099536417,20.1787841419824,1.01655638351287,0.332485710337674,0.437715994351412,-6.64234275382751 +"Q7JZN0",0.0819497433374625,16.825300041835,1.01445899769359,0.333438724195612,0.438624441607477,-6.64445353521366 +"P13496",-0.0524888308770066,18.2754618155909,-1.01205934179274,0.334531567542128,0.439602916084418,-6.64686414010036 +"Q9VK59",0.0595183935430939,18.7543192112573,1.01166885112123,0.33470965433286,0.439602916084418,-6.64725597013406 +"Q9VRD4",0.0582922303891316,20.3437424829923,1.01072309963398,0.335141263827121,0.439823468185396,-6.64820445205325 +"Q9XY35",0.0585805919616149,19.2558554310386,1.005830963612,0.337380450941183,0.442413987554948,-6.6530990946312 +"Q9V9S8",0.0560561656921941,19.8933380629591,0.997907638453294,0.341030459816384,0.446849023545741,-6.66098506668826 +"Q8IPG8",0.139442216115709,15.8220744488806,0.993956896985599,0.342861260128537,0.448895276212245,-6.66489798956391 +"Q9W136",-0.073823333547157,18.2033620079948,-0.990047559044676,0.344679971874071,0.450922504381138,-6.66875729558636 +"Q9W3V3",0.172246465448477,13.0603453209085,0.988017262553487,0.345627298527773,0.451591181376851,-6.6707566502898 +"Q9VZ24",-0.125894560612679,21.9058836765275,-0.987791882955575,0.345732577109256,0.451591181376851,-6.67097838583953 +"Q9V8Y2",0.114015134291556,19.8865975230946,0.985597885802963,0.346758657385486,0.452257456908031,-6.67313472267648 +"Q95SH2",-0.0605480330277572,18.708803636173,-0.985541740395019,0.346784944475643,0.452257456908031,-6.67318985227111 +"Q9VW26",0.0478656122234362,17.4806143934017,0.984200043594594,0.347413556214007,0.452723290441377,-6.67450650087415 +"Q9V3N1",-0.0679199361234346,18.4054341576118,-0.981243732796941,0.348801586649835,0.45417724163304,-6.67740237558216 +"Q9VEW1",-0.162898290636107,14.6366576648018,-0.975198727204933,0.351652399112466,0.457532138626827,-6.68330129997137 +"Q9VJ25",0.137302846522367,15.675177956348,0.972290245506575,0.353030064316423,0.458966599594539,-6.68612870324009 +"Q9VMY9",0.105393572284406,14.9502014445866,0.971190077955002,0.353552204276976,0.459287442939249,-6.687196370627 +"Q9V470",0.0506022347437387,19.9469706909977,0.967093203164344,0.355501517481209,0.461460335532028,-6.69116336481632 +"Q95029",-0.0604378793998386,21.8137381737129,-0.963491218611752,0.357221788882872,0.463332771272652,-6.69463960691485 +"Q9VSD6",-0.0839072478283178,16.5272658000082,-0.962334876345233,0.357775322347201,0.463690161363738,-6.69575328656508 +"Q9VHE4",-0.0456302281908787,17.9430280057586,-0.96070090613027,0.358558550805784,0.464344458652211,-6.69732506791872 +"Q9VQT8",-0.15979700679053,18.0985155132006,-0.958658837322107,0.359539139159357,0.465253129649191,-6.69928627730351 +"Q9VZG2",-0.0724650910286364,21.8844615319653,-0.950381519754005,0.363533678586011,0.469898330938178,-6.70720005138662 +"Q9VWS1",-0.0678518189211221,17.1562803626478,-0.950054199890508,0.363692293310065,0.469898330938178,-6.70751181288623 +"Q9VGG5",0.0573587034024801,17.0264495694719,0.949435018223742,0.363992476360435,0.469922175363163,-6.70810131680686 +"Q9VBL3",-0.202599515241598,14.4797834127239,-0.946965551028535,0.365191460470692,0.471105457126925,-6.7104492117643 +"A1Z7G2",0.0618745294602441,19.5480418467204,0.939120505168326,0.369019210478219,0.475675458328956,-6.71787393152827 +"Q59E04",0.0828645078812826,16.3729834306777,0.935450437312685,0.370819727444695,0.477627262839963,-6.72132950132334 +"Q9VMB3",-0.0697650638973357,18.6856350838636,-0.934696324210446,0.37119046694855,0.477691943603452,-6.72203812694177 +"Q9W2J4",-0.0657395839121921,15.2489404618157,-0.9341835363837,0.371442716339135,0.477691943603452,-6.72251970841692 +"Q9W0Q2",-0.0544088917691994,15.5235086709504,-0.931110185438264,0.372957113738857,0.4789052219281,-6.72540135071006 +"P04388",-0.0858509577004707,16.4980301762138,-0.93110360355596,0.372960361681416,0.4789052219281,-6.72540751342347 +"Q9W403",0.062335027040616,15.3593027588354,0.929756839957468,0.373625368932519,0.479390088753416,-6.72666773365347 +"P53501",-0.0417499166437167,24.6281982793412,-0.928976112605875,0.374011263948661,0.479516363002587,-6.72739758530406 +"Q9VTC3",-0.120561227772832,17.1969444277156,-0.927283448089003,0.374848881152043,0.480221147282341,-6.72897816757226 +"Q7KLX3",0.0571865916542222,19.2700463682208,0.924965522520079,0.375998070794758,0.481323700756451,-6.73113865115979 +"Q9VV72",0.0876162005792942,19.3859859245635,0.919444949421244,0.378745141626847,0.484468478706734,-6.73626579568809 +"Q9VMQ9",0.0573695784312171,22.1092122135894,0.916171699017581,0.380380623614818,0.485939980467606,-6.73929347775106 +"P14199",-0.0530628662697445,18.5610139316746,-0.915976752194703,0.3804781861455,0.485939980467606,-6.73947350981894 +"Q9VCF8",-0.0534496591285158,16.9738862283629,-0.914613321105495,0.381161019012313,0.486089877426112,-6.74073171925457 +"A0A6H2EG56",-0.0845839927369134,20.9062272766626,-0.914578652312922,0.381178393089541,0.486089877426112,-6.74076369174882 +"A1Z7P1",0.169490793417252,14.6402674478305,0.911169554820017,0.382889573538742,0.487899013493217,-6.74390261995238 +"Q8SXS0",-0.107976728044264,14.485840024773,-0.907578565146281,0.384697898558579,0.489650002446375,-6.74719823527631 +"Q9V405",0.0523539205345855,20.2097429525788,0.907275454535482,0.384850811275298,0.489650002446375,-6.74747590643049 +"Q7PLT4",0.113488385449374,15.753349571676,0.902336690575694,0.387348329155766,0.492451991640105,-6.75198902632929 +"Q8SZ63",-0.122833176175485,14.0131780181936,-0.897308249716323,0.389902847567398,0.495322124708621,-6.75656248231127 +"Q9W5P1",0.0847792303788086,14.3194752072265,0.89190469334922,0.392661031738702,0.498218961633941,-6.7614527411352 +"Q08012",0.0693531328082564,19.2108935337362,0.891671171374044,0.392780536300139,0.498218961633941,-6.76166351009564 +"B7YZN4",-0.166223083568715,15.4435011260156,-0.890397608831618,0.393432726231712,0.49866701166755,-6.76281215183784 +"E1JGR3",-0.0638680152453528,12.13497242112,-0.886157270567494,0.395609630850515,0.501045455017964,-6.76662641635476 +"Q9VG42",-0.367986668596121,16.4471604161904,-0.883184525949645,0.397140759339949,0.502603024718539,-6.76929113553447 +"P0DKM0",0.0628932613791982,16.9920995783182,0.877932332140685,0.399855962666118,0.50565560707133,-6.77398029780011 +"Q9VH37",-0.0975049632524758,16.6277020209163,-0.873507269363522,0.402153508910325,0.508175797623047,-6.77791230380424 +"Q6NP72",0.0845638484335893,18.7613291108552,0.872381809737991,0.402739310938978,0.508217595985734,-6.77890962872991 +"P49028",0.103124494599598,16.3647688385414,0.87227303308412,0.40279596036759,0.508217595985734,-6.77900596228604 +"P81900",0.0468822703908423,22.4431518876514,0.870095713248219,0.403931034290456,0.509264523958035,-6.78093203573695 +"Q9VS84",-0.0472027111743998,17.4872722520765,-0.869243925391915,0.404375684362249,0.50944006156815,-6.78168440303205 +"Q9VQG4",0.0648631154079773,19.1670824303754,0.867289932259663,0.405396978958694,0.510341253511775,-6.78340792194203 +"Q9VE56",-0.0615019803883783,17.4777870701309,-0.865075149996012,0.406556721459902,0.511156670373317,-6.7853574172214 +"Q8IMT3",0.0933511307653401,14.7426185349403,0.864882677115513,0.406657614859348,0.511156670373317,-6.78552663215331 +"Q9V3V6",0.0394745369783642,21.5453504232483,0.864072336478626,0.407082580089888,0.511305529811697,-6.78623869609685 +"Q9VB68",-0.084166630213252,15.430944747007,-0.860099345388719,0.409170532346045,0.513471524477528,-6.78972149107592 +"A1Z933",-0.104113042291258,15.8211696505362,-0.859620383779588,0.409422738342393,0.513471524477528,-6.79014041870035 +"Q9VY24",0.0962900091181389,17.7282035315322,0.857400293731196,0.410593155577924,0.514552504510877,-6.79207959759642 +"A1Z8D0",-0.169176768728281,13.7749725906656,-0.853895584130106,0.412445462935804,0.516485759892584,-6.79513200027349 +"Q9VL89",0.0377739395459571,16.8733028423441,0.852246493403805,0.413319007328703,0.517110414020104,-6.79656451063736 +"Q8SY96",0.0599211482072306,18.7677354731111,0.851783807869603,0.413564323922553,0.517110414020104,-6.79696599824888 +"Q9V5C6",0.0483784556364952,20.6192335060217,0.84688006115714,0.416170387196554,0.519979180407379,-6.80120949535917 +"A1Z934",-0.0530863065173719,19.3005340964885,-0.84192086276725,0.418817231481244,0.522530040329104,-6.80547929411163 +"P23625",0.0383408207645317,22.2294150014328,0.841881048114664,0.418838527529983,0.522530040329104,-6.80551348557988 +"P04359",-0.068973543397945,18.7978144300746,-0.835031267455626,0.422513236520589,0.52672053700773,-6.81137484939309 +"Q9VZY0",-0.0729776661968593,17.1830454655056,-0.833748263481775,0.423203939957338,0.527187581664555,-6.81246806904562 +"Q9V428",-0.0597153247401394,18.7403236906668,-0.832207786777009,0.42403425703711,0.527827716968582,-6.81377873508432 +"Q9W4Z2",0.106566519550819,13.7266801056632,0.829849840187819,0.425307310652816,0.529017594458536,-6.81578081515805 +"E1JJH5",0.036552170432401,21.240168570264,0.824965921656877,0.427952287628833,0.531910891031963,-6.81991182745139 +"P09208",-0.220493564368349,12.6859058409543,-0.821258746190959,0.429967313479332,0.533877290584797,-6.8230332385532 +"Q94524",-0.0890245845773592,15.7645161595864,-0.820878216440843,0.430174507521563,0.533877290584797,-6.82335294376256 +"Q9VD14",0.0578852875781131,17.615248678279,0.815509500101699,0.433104811412837,0.537114368354358,-6.82784965003593 +"Q9VNF3",-0.0484600982122778,19.1551862355305,-0.812596766946547,0.434700157804889,0.538692320370397,-6.83027843440076 +"Q9VZS3",-0.0882118080709482,18.3829878902294,-0.811971332742973,0.435043225552413,0.538717223623924,-6.83079895634801 +"Q9U6M0",-0.0573638709261282,16.2798587818416,-0.806355774551537,0.43813155706937,0.542139048361801,-6.83545673504646 +"Q8IMX8",-0.0412678927589205,17.1753198942265,-0.805199333163415,0.438769349851681,0.542525778763976,-6.836412399319 +"Q86PD3",0.0380467754930471,18.9004112017947,0.803426361176046,0.439748357963279,0.543243375843275,-6.83787520589169 +"Q9VC58",-0.0665365880357722,13.1234057159513,-0.802969108519157,0.440001079594883,0.543243375843275,-6.83825200496982 +"Q9VLT8",-0.0831970611407353,13.9714745282957,-0.80148527610711,0.440821847355866,0.543854172625432,-6.83947345334675 +"Q9VK69",-0.0467105537206969,20.2529497733663,-0.800741092793996,0.441233864989936,0.543960152847903,-6.84008529288993 +"Q9VLP1",-0.106221335804491,18.3929269057443,-0.799671239996023,0.441826634105641,0.544098137181808,-6.84096400631126 +"P05812",0.0511791299900111,15.821100000321,0.799361791020954,0.441998186979226,0.544098137181808,-6.84121797583321 +"C0HK94",-0.0535887288583332,18.4540569725471,-0.797519548422283,0.443020399799519,0.544954297098524,-6.84272813512699 +"Q95WY3",0.0481196988500407,17.2121821471469,0.796214159985471,0.443745666066642,0.545444193809255,-6.84379634959982 +"Q4V6M1",-0.0524936241398635,18.2208847028862,-0.793085289960418,0.445487220126313,0.54718165181936,-6.8463504394903 +"Q9V3P3",0.0398583760855935,19.3591348998798,0.778672174997776,0.453567369572118,0.556696374132665,-6.85800068733335 +"Q9VPR1",-0.10119507947212,13.6723057958174,-0.775859419512495,0.455155263615519,0.558218844179352,-6.86025212860013 +"Q9VAV2",-0.046576993792069,17.7716241743794,-0.774353872158105,0.456006672507986,0.558218844179352,-6.86145425027756 +"Q7KTJ7",0.0453263821630188,22.1086906596989,0.774314004522613,0.45602923222803,0.558218844179352,-6.86148605480937 +"Q95SN8",-0.0892019101209591,17.6332862826494,-0.77410687092185,0.456146453606989,0.558218844179352,-6.86165127283357 +"Q9VUZ0",-0.0662777732084407,17.6540620564704,-0.770256844869178,0.458328811722521,0.560478341607892,-6.86471504090812 +"Q9VB64",-0.0549456519557943,18.8031982869686,-0.767138250424224,0.460101491613925,0.562233910631522,-6.86718677039079 +"Q9I7T7",0.118481569858645,14.4625379549109,0.763713800616838,0.462053101344922,0.564120971288477,-6.86989060781764 +"Q9VDC3",-0.0410391430898258,19.2797735156411,-0.763242412945828,0.462322162920473,0.564120971288477,-6.87026195505226 +"Q9VKF0",0.0590117051363581,15.9685854924231,0.757954283461287,0.465347438345486,0.566838202242717,-6.87441376654832 +"Q9VCI0",-0.107252246933211,14.7319906090647,-0.757706702505192,0.465489385978356,0.566838202242717,-6.87460751463308 +"O16158",0.0491555638804542,21.3192781801875,0.757568652388853,0.465568547405589,0.566838202242717,-6.87471552317623 +"Q7JVK8",-0.0444606946403958,19.1567414039757,-0.755533178876452,0.466736737531389,0.567846008900334,-6.87630600612593 +"Q9VPB8",-0.0465050589292275,15.57492551768,-0.741189738227999,0.475021547370922,0.57750433018564,-6.88740491900645 +"Q9VYU9",-0.0670512104259728,17.8594186253684,-0.738149492841044,0.476789465955047,0.57923148522434,-6.88973290854614 +"Q9VTZ5",0.0392536973136615,18.0494999074338,0.737095673728685,0.477403233241063,0.579555016772994,-6.89053783453287 +"Q9U6P7",0.0376584139522702,17.0818545378003,0.733386077910373,0.479567734539036,0.581759259062627,-6.89336305394968 +"Q9W2K2",-0.0988224721515891,15.6487178748922,-0.729964279653382,0.481569759860572,0.583763342621682,-6.89595769988876 +"Q9VN95",0.0540107940275476,17.9328945901364,0.728080035903021,0.482674422839419,0.584677514376289,-6.8973817933281 +"P22812",0.153659636268625,11.4196469975521,0.724086054878283,0.485021175908713,0.587093847181229,-6.90038942196562 +"Q8SXG7",0.0837073902504333,13.9485632974117,0.717633841009663,0.488827299068149,0.591271888938124,-6.90521661102121 +"Q9VAY6",-0.0436374385739082,15.2042061416055,-0.715393445803514,0.490153214320497,0.592446059048253,-6.90688360760819 +"Q9VHI7",0.0428762797774258,15.4679886480757,0.714135945849349,0.490898404395977,0.592917116967769,-6.90781719971843 +"Q8IH18",0.0456246879293527,15.6396759812287,0.709189115522292,0.4938366642029,0.595893326091365,-6.9114753760764 +"Q7KM15",-0.0419358771949661,17.1142929047039,-0.708785257214502,0.494077020374315,0.595893326091365,-6.91177301093447 +"Q9U5L1",-0.0355490019771487,17.6803499796112,-0.707139955710342,0.495056964736471,0.596643798540776,-6.91298397286955 +"Q9VG76",-0.0604635925244636,15.7747272190197,-0.705776119351864,0.495870172553674,0.597192381097132,-6.91398583697462 +"Q9VII5",0.050139489997747,17.3461008148914,0.704263404761338,0.496773109561946,0.597848157827797,-6.91509501189108 +"Q7K0D8",-0.0349300709350224,17.2862534344444,-0.703114166675423,0.497459761245695,0.598242885189487,-6.91593622834164 +"Q9VX98",0.055253059340739,18.2627947385551,0.701113822743211,0.498656320585164,0.599249814651336,-6.91739745768729 +"Q9VDF4",-0.03195760558134,18.6728244254121,-0.698807442654587,0.500038125479959,0.600477748956495,-6.91907754540842 +"Q9VIU3",0.173765318175734,12.4335221561337,0.694928556045218,0.502367316679702,0.602840780015643,-6.9218917698147 +"A8DRW0",-0.061269615850712,21.6057592127439,-0.690929574619211,0.504775517969514,0.605132242202163,-6.92477819001286 +"Q95RQ1",0.0729018078998074,11.7851132293016,0.689988251624062,0.505343402284494,0.605132242202163,-6.92545541909493 +"Q7JXB9",0.0746014642770838,16.1816594544541,0.689952073190945,0.505365235843893,0.605132242202163,-6.92548143065069 +"Q9VUK8",0.0311309916713753,20.7450337429826,0.687498158253233,0.506847497986688,0.606471755123239,-6.92724284184569 +"A1Z8D3",0.109107538990321,16.6323560679059,0.684022159358876,0.508951630483154,0.608552917308889,-6.92972809877135 +"Q9VQ88",-0.0489045096359533,16.3901606565019,-0.683004492022293,0.50956865180202,0.608854234388087,-6.93045353008066 +"Q9VRG6",-0.0465690109441486,16.3592537660305,-0.680736371257646,0.510945454053383,0.610062288733745,-6.93206678080929 +"Q9VHM3",0.0744182303618341,14.7700292341107,0.6786453283737,0.512216744121986,0.611142724746404,-6.93354973533545 +"A1Z7K6",-0.055977747440652,15.5525080479304,-0.675507128338277,0.51412822952296,0.61298490839478,-6.9357674958616 +"Q7KQM6",-0.0400381284781446,15.1438330806644,-0.674733349750169,0.514600195031672,0.613109375223449,-6.9363128781901 +"Q9VM33",0.116619332070965,13.910976428549,0.672529379027295,0.515945923226725,0.614273947139313,-6.93786316595455 +"M9MSK4",-0.0408087719222436,20.6282013334561,-0.665571505453318,0.520208096268613,0.618787597302073,-6.94272687298568 +"A1ZA83",0.0421421082528344,17.0555283139783,0.665130383114256,0.520479016195928,0.618787597302073,-6.94303366329141 +"Q70PY2",0.117742402018088,17.1146156319315,0.663577400115586,0.521433462109012,0.619100443992234,-6.94411224118482 +"Q9VEJ3",0.084171070504393,20.0245355165897,0.66332476729949,0.521588825313627,0.619100443992234,-6.94428748086283 +"Q9V3Q4",-0.055663678710399,15.9882485719345,-0.662890993146628,0.521855650031823,0.619100443992234,-6.94458822697779 +"Q9VJU8",0.0602846801459354,15.653195723841,0.658876098447409,0.524329134183907,0.621592747561305,-6.94736327243917 +"Q9V436",-0.0283673391413224,19.0817829984344,-0.657642298795639,0.525090635702381,0.62205339513606,-6.94821294704397 +"Q9VR89",-0.0726455180828953,13.945728279277,-0.65462328317612,0.526956715625294,0.623761582266787,-6.95028586006702 +"Q9VNQ3",-0.0598658869300497,15.0704904401473,-0.654100133782116,0.527280474218327,0.623761582266787,-6.95064417220481 +"Q9VRJ4",-0.0301521404839846,20.7082844445614,-0.649138559117075,0.530356811139057,0.626593859752737,-6.95402930762424 +"Q9VCD9",-0.0818835183422344,18.6045722955801,-0.649027200517058,0.530425977200758,0.626593859752737,-6.95410501186109 +"Q9VKJ4",0.0507807999293082,15.1182428849363,0.64625608835631,0.532148840950918,0.628045276108159,-6.95598502420591 +"Q9W1C8",0.160429222296283,16.0218568122866,0.645840205167653,0.532407686101281,0.628045276108159,-6.95626653276027 +"Q9VMC8",-0.0461137857490534,16.3601222739119,-0.644445938345523,0.533276010536278,0.628253393161814,-6.95720908313497 +"Q9VXE5",0.0549807339609885,14.6145491167391,0.644347394701839,0.533337412899957,0.628253393161814,-6.9572756293762 +"Q9VD26",-0.0490947276190568,16.2015746706733,-0.643731249795437,0.533721424842468,0.628262058318446,-6.95769149738607 +"P48611",0.0522076854297531,20.1192554790249,0.641156162685229,0.535328083810682,0.629488933420723,-6.95942558220592 +"Q9V455",-0.0642782033559222,19.3163207500515,-0.640851327730093,0.535518463143889,0.629488933420723,-6.95963043579674 +"P38979",0.0290073979811964,22.0830921396772,0.636567734231387,0.538197850845424,0.632192968457865,-6.96249955543938 +"Q9VUW2",0.0718578068995637,14.488745720695,0.632624133582268,0.540671399147745,0.634344361261736,-6.96512522170724 +"Q9Y128",0.0778182313843629,14.2764214642103,0.632435344864593,0.540789977046876,0.634344361261736,-6.96525053945688 +"P36951",0.0304797091061211,20.3718802369664,0.631314085483872,0.541494546253246,0.634724457589891,-6.9659941169549 +"Q26377",-0.0740147111862957,16.8309714320567,-0.628944563954279,0.542985222102326,0.636024824765927,-6.96756147712653 +"Q05856",0.0801180638944299,13.6606259577005,0.627296762118378,0.544023245570976,0.636793525342027,-6.96864822566301 +"Q9VU45",-0.0705986016158349,17.8519149461058,-0.621781935746408,0.547505519286201,0.640420200679792,-6.97226610777399 +"Q9VY92",-0.0505476076065072,21.3320857123004,-0.620614139310425,0.548244535123841,0.640835237972366,-6.97302841356726 +"Q9VL70",0.0402594828062455,23.5205767071286,0.618266584876545,0.549731849669889,0.642123757177434,-6.97455680879295 +"P92181",-0.0419261049628616,16.5060581225235,-0.61689338766081,0.550602910559484,0.642691151023946,-6.97544834733862 +"O97111",-0.0868123108577858,14.7018825264463,-0.611821700631921,0.553826795931534,0.645875589269411,-6.97872513784599 +"Q8IP62",0.0662987834815834,15.7086767939694,0.611384042895326,0.554105496549477,0.645875589269411,-6.97900672746876 +"Q8SXX1",0.0290223274348484,19.9225365787962,0.604842562120376,0.558280503552558,0.649887037420037,-6.98319317550835 +"Q9W306",-0.0717264935645492,14.7232419298427,-0.604607082828783,0.558431122369191,0.649887037420037,-6.98334309675787 +"Q9VD68",0.0595855241789991,14.7685221990973,0.604162057644607,0.558715834328737,0.649887037420037,-6.9836262798807 +"Q9VKR0",0.0764728362005602,13.2384551342161,0.599926023142133,0.561429959681957,0.652588970557145,-6.9863120686964 +"Q6WV19",-0.0936104173742631,13.4477804589056,-0.597255052406344,0.563145076406088,0.654126732204287,-6.98799649467565 +"Q9V3V9",-0.029925800874615,19.4957287678014,-0.59641334279414,0.563686167180241,0.654299601152848,-6.98852585875679 +"Q9V564",-0.0490790123416236,14.0252456077122,-0.594957386787085,0.564622804463591,0.654526812233887,-6.98943988661026 +"P41094",0.0265754529572177,21.1447888016418,0.594702660719883,0.564786761865783,0.654526812233887,-6.98959958553875 +"Q9W1Y1",0.0478758459600037,17.8256206308778,0.594279614821155,0.565059118475298,0.654526812233887,-6.98986467045455 +"Q9V3G3",-0.0868079635657644,14.9410609352416,-0.591866408723861,0.566614126218743,0.655872562479433,-6.99137344117442 +"Q9VQD8",0.100553688739694,17.5959541396048,0.59100360641571,0.567170666129752,0.656039689979256,-6.99191148552425 +"Q9VFU7",0.052836633381883,14.8453237687304,0.590423342551694,0.567545127482054,0.656039689979256,-6.99227292609844 +"Q8SZK9",0.0294191182673202,22.0758081014046,0.589445916832592,0.568176196762104,0.656314332547916,-6.99288100454415 +"Q9VGQ8",-0.0425472398666802,16.2244448522822,-0.584304474449693,0.571502083531942,0.659699290886698,-6.99606409621388 +"Q9W415",0.053731478916621,16.7582016132923,0.583319064172202,0.572140738623359,0.659979773183792,-6.99667118859997 +"Q9W404",-0.0752181877370468,15.9400278077765,-0.582490775905355,0.572677862797404,0.660142830094036,-6.99718073908952 +"P54195",-0.0756238888767022,18.5828026987821,-0.579136208269616,0.574856027697825,0.662196031906058,-6.99923748377814 +"Q9W0H3",0.0473274497001537,16.7186529265854,0.577964799830493,0.575617699174723,0.662229045168152,-6.99995307312597 +"Q9VKK1",0.0565539214949968,14.5448483921998,0.577599105403433,0.575855592729381,0.662229045168152,-7.00017619020838 +"Q7JYZ9",-0.0330529216956101,18.1282004888464,-0.577260754565132,0.576075746126491,0.662229045168152,-7.00038250655848 +"Q9VMG0",-0.124817563130987,14.7082229391184,-0.574818249716148,0.577666355271297,0.662868090356192,-7.00186851124112 +"Q9V4Q8",-0.0428036950001811,16.8873284214843,-0.574183722834648,0.578079960984596,0.662868090356192,-7.00225358645752 +"Q9VD58",-0.0247194830641142,22.7284691502166,-0.574137627553214,0.578110013662491,0.662868090356192,-7.00228154474947 +"Q9VF82",-0.0435766424431492,14.8650498980366,-0.573966998408159,0.578221265868261,0.662868090356192,-7.00238501856993 +"P17704",0.0289910825929915,20.3088565508304,0.573218063396937,0.578709717207275,0.66297239581163,-7.00283885039726 +"P22769",-0.0378386546848688,20.1281649493065,-0.57254493449063,0.5791489184207,0.663020175652524,-7.0032462716124 +"Q9VAP3",0.0604995922817313,16.4519656517905,0.566543540314649,0.583072629761355,0.666931161314041,-7.00685883530549 +"Q9VFT4",-0.102127964097082,15.5787251695009,-0.566097458372318,0.583364846736922,0.666931161314041,-7.00712592843292 +"Q7KW39",0.0336856497929325,21.6793970167045,0.560524792134394,0.587021962191182,0.670469889090407,-7.01044591037337 +"Q7K3W4",-0.0440496572023719,19.3274226587104,-0.56015649039968,0.587264093501849,0.670469889090407,-7.01066424214944 +"Q7K4Z4",-0.0406169644564454,14.9083241284338,-0.549386937580753,0.594367700630275,0.678115817134951,-7.01698873611137 +"Q7PLI0",0.0340557277740636,17.7673991561735,0.547642100762288,0.595522839367341,0.678969306947864,-7.01800250804061 +"Q9VNE2",-0.0295362258883678,19.0130069044264,-0.537974411721183,0.601944422980366,0.685821924543204,-7.02356437307602 +"Q6AWN0",-0.0350074786298293,18.4257422948074,-0.528642496840119,0.608176862365931,0.692449833738139,-7.02884419648738 +"Q9VHD2",0.04547254442903,16.5832599913292,0.525488043607613,0.610291066259618,0.694383013997983,-7.03060914001865 +"Q9V998",0.0714605826852246,15.8062046875572,0.522681382791411,0.612175319579778,0.69576475560095,-7.03217107253351 +"Q9VVK5",-0.0498733694322429,15.8709828049513,-0.522436704094936,0.612339724953354,0.69576475560095,-7.03230686258533 +"Q9VMY1",0.0505932760615995,15.4442128863843,0.521057614701486,0.61326678727836,0.696343772076449,-7.0330710919264 +"Q95RG8",0.11229218925584,13.1828192693397,0.518536184660457,0.614963602937823,0.697791982963816,-7.03446339926198 +"Q95U34",0.0314697396109587,19.4541268803187,0.517919597900311,0.615378901043029,0.697791982963816,-7.03480289660794 +"Q9VW40",0.0389422087431281,14.6776116356898,0.516006100902392,0.616668626959612,0.698144467889157,-7.03585404068038 +"Q9VQ29",0.0265145812337551,22.1510318036857,0.515049233689982,0.617314080967607,0.698144467889157,-7.03637829212533 +"Q9VQI6",0.0727810966701377,16.128865263889,0.514624914159732,0.61760041425625,0.698144467889157,-7.03661047385442 +"Q9VLG9",-0.0375684388667263,15.7367595149132,-0.514487690503909,0.617693027885719,0.698144467889157,-7.03668552182657 +"Q9VN25",0.0557908141239523,14.8893764202788,0.514355109546907,0.617782514750837,0.698144467889157,-7.03675801263627 +"Q7KMQ0",-0.0263222149476938,20.724586685964,-0.512517584285939,0.619023442475946,0.699073190284278,-7.03776088171967 +"O62621",0.0494469610375905,13.1506490689513,0.510149959066869,0.620624203176027,0.6999085692314,-7.03904803483877 +"Q9W0N6",-0.0510693799204116,14.4465304414806,-0.509655515520932,0.620958759806735,0.6999085692314,-7.03931612255491 +"Q9VJ60",-0.043569255032363,16.5267477426444,-0.509562079375532,0.621021991883976,0.6999085692314,-7.03936675594453 +"O97365",-0.0321017739072786,17.9636968147313,-0.506178440297807,0.623314006114441,0.702017395137669,-7.04119441230461 +"Q9VB79",-0.0322862453319193,17.6182553597868,-0.499676310008984,0.627730213437815,0.706155147200532,-7.04467396713079 +"Q9W3X8",0.0662870850094865,13.8674603763097,0.499522918552091,0.627834582313183,0.706155147200532,-7.04475553583817 +"Q9VJI7",0.0394815059886824,17.3571783663304,0.494620321912413,0.631174851810399,0.709433728315193,-7.04735000680752 +"Q9VSL6",-0.0863942650050706,14.5563189512371,-0.493742237049012,0.631774033421738,0.709629015318154,-7.04781211593058 +"Q9VCW6",0.0320319202653145,19.8351650385309,0.483044261691413,0.639096295065652,0.717370538472078,-7.05337917581964 +"Q9VEH2",-0.0255305661679888,15.9436538420782,-0.48210451868204,0.639741458190536,0.717611803807542,-7.0538626371764 +"Q9Y112",0.0224399558539226,22.2472081909766,0.480245414133124,0.64101871514611,0.71856130165572,-7.05481642275041 +"Q7K0W4",-0.0268845560875768,21.6775446308642,-0.476383396849399,0.643675936804319,0.721055381188451,-7.05678650577715 +"O17452",0.043543027698103,19.8506986541975,0.465863615670723,0.65094050509454,0.728703867448116,-7.06207556868932 +"Q9VH19",0.0392610969304208,13.9955459359337,0.46449497388424,0.651888469544611,0.729275631925158,-7.06275536375587 +"Q9VTF9",0.031031934056962,17.3795866927156,0.462612303536533,0.653193524036536,0.730245843225832,-7.06368733899424 +"A1Z6S7",-0.0277755531588788,17.5587209276209,-0.461306845767599,0.654099176048643,0.73076853693847,-7.06433144563729 +"Q9NCC3",-0.0392047196859764,17.3048094038192,-0.459340196716797,0.655464631032534,0.731803885249174,-7.06529848298506 +"Q7K0P0",-0.0241647671190872,15.3619816718311,-0.454944193463879,0.658521588395642,0.734090519989263,-7.06744573404155 +"Q9VS97",-0.0561012284154998,15.1232214053848,-0.454718651487454,0.658678606920768,0.734090519989263,-7.06755536634392 +"Q7KSM5",0.0242327215675679,18.9193428632045,0.45449684948367,0.658833038623457,0.734090519989263,-7.0676631297701 +"Q9VHG4",-0.0306195417607285,18.303920412094,-0.447355713579698,0.663814030775559,0.739146731197352,-7.07110567036414 +"Q9W0M5",-0.031960914194082,13.2282298468219,-0.439216598166391,0.669512015874901,0.74499402433578,-7.07496533583003 +"Q961D9",-0.127206116145825,12.5088546356576,-0.435989681149466,0.671777195689057,0.747016241606231,-7.07647668214415 +"Q9V3U6",0.0367035927182258,21.0321878434071,0.433497097447616,0.673529251494555,0.748465550628193,-7.0776367454567 +"Q7K1Q7",-0.0254872586349695,16.5420971625221,-0.432448647315088,0.674266824955569,0.748786327580485,-7.07812278432958 +"Q9VS11",-0.0346884981399356,14.8710013153414,-0.426196571303376,0.6786725497981,0.752283902055102,-7.08099753617813 +"Q7JZF5",-0.0222527027875081,16.9234149809766,-0.426168081997969,0.678692654798413,0.752283902055102,-7.0810105432997 +"Q7KUK9",0.0392528612970438,18.4151519196034,0.426059409060612,0.678769348077296,0.752283902055102,-7.08106015147702 +"Q8I0J3",0.0488004616268167,14.9984881108501,0.42021460892911,0.682899791033916,0.756359131105293,-7.08371024544983 +"Q9W330",0.0263493042090559,20.6935389235621,0.418775719641302,0.683918319417358,0.756984576501761,-7.08435722759446 +"Q9VRD9",-0.0466179669780882,16.0873883920434,-0.417899196625284,0.684539097230783,0.757169240173041,-7.0847502960646 +"Q9VFM0",0.0487272949396544,14.3572789956684,0.413524754606379,0.687640855804505,0.760096055322673,-7.0867000680437 +"Q7K9H6",-0.0643586433378633,11.8191420571785,-0.41075185241855,0.689610160670632,0.761768045032195,-7.08792572465145 +"Q95RB1",-0.0262124778125497,15.9535970642725,-0.409848190277033,0.69025246192232,0.761972936126029,-7.08832343016742 +"A1Z729",0.0330696120428726,16.6778521602213,0.3967805571215,0.699569092594793,0.77149398685174,-7.09397967817923 +"Q9U1K7",-0.0440555783009948,17.503157094098,-0.396454264938483,0.699802399344534,0.77149398685174,-7.09411863827944 +"Q9XYZ9",0.0239765534737799,21.9617245823263,0.378540325722601,0.712660722699907,0.785014251184996,-7.10157736816521 +"Q9VTZ6",-0.0321588932335928,17.0843388270319,-0.377854455083264,0.713154933505833,0.785014251184996,-7.10185627859154 +"Q9VFM9",-0.0222828553621834,17.1587789435794,-0.377405953928778,0.713478180333605,0.785014251184996,-7.10203839627024 +"Q9W379",-0.0280514796692319,16.3361544956655,-0.3757946223888,0.714639998098503,0.785722345241905,-7.10269095501262 +"Q9VXH7",-0.0367630474922507,18.2035100575318,-0.375006878029077,0.715208262316992,0.785722345241905,-7.10300898786496 +"Q9VYS5",-0.0385642698764439,14.2773424845669,-0.374554173048185,0.715534917519457,0.785722345241905,-7.1031914627786 +"Q7JVM1",0.0336910939606625,15.8871757647861,0.370184687607665,0.718690848463765,0.788396754150875,-7.10494167149904 +"Q7K549",-0.0571731201097325,14.7024102917994,-0.369831559231078,0.718946143279444,0.788396754150875,-7.10508224466842 +"Q8SYD0",-0.0243952944396462,15.4483387224899,-0.369219932701404,0.719388405166445,0.788396754150875,-7.10532541153525 +"Q9W265",0.0267491829697981,16.9662311248334,0.368109526770629,0.720191606310319,0.78875876515142,-7.1057658783058 +"Q9W257",0.0510439670654996,17.0741245529452,0.367318344416294,0.720764117114951,0.788867813220301,-7.10607892965028 +"Q9VL18",0.0192293442883766,20.8553415639256,0.358745048717475,0.726979357798408,0.794652875879622,-7.10942906785641 +"Q9W158",0.0276857427231114,16.94293295494,0.358081703623974,0.727461121726056,0.794652875879622,-7.10968506398547 +"Q9VL93",-0.026547151959587,15.3292093432287,-0.358057115352952,0.727478981695553,0.794652875879622,-7.10969454413381 +"Q9VUH8",0.0294080798389125,15.4464439546549,0.354555892746073,0.730023868277477,0.796910871915465,-7.11103797601519 +"Q8ING0",-0.0382209516409286,14.6682578925245,-0.342557440624629,0.738770823004422,0.805931806913914,-7.11554403337424 +"Q9VGF3",-0.0210223027161334,15.6704067951628,-0.339593731520103,0.740937448466638,0.807767100681276,-7.11663371706252 +"Q9VPQ2",0.0255258239879534,16.4526517021558,0.33759914570679,0.742396927368619,0.808829572077633,-7.11736186490267 +"P08736",-0.0173995704100172,24.3626459502486,-0.333303316857624,0.745543886381809,0.811727938958784,-7.11891585754757 +"Q9VJC0",0.0171007992565908,16.5819689763211,0.330255704632218,0.747779419202158,0.813630835765949,-7.12000650405989 +"A1ZBM2",0.0259195457513499,18.5728532558588,0.322204270121166,0.753697134438605,0.819535084904559,-7.1228406582651 +"Q9VIK0",0.0579611478893778,12.7564809164862,0.31955896413899,0.755645064894503,0.821117894621519,-7.12375686175274 +"O97422",0.0482450098291238,15.4041839298481,0.309103365708991,0.763361660793052,0.828963053517455,-7.12730564907145 +"Q9VDI3",0.0307819249828807,15.0132255347561,0.308215342043751,0.764018314978327,0.829136336619291,-7.1276017202459 +"P80455",-0.0269671368509528,20.5605140538924,-0.302834799835714,0.768001146270548,0.832916717801869,-7.12937772886425 +"Q9W499",0.0255703880038496,16.8613541882994,0.301446848681942,0.769029697211474,0.833490276120038,-7.12983087873808 +"O77430",0.0151150465738219,19.5471395633698,0.295715592768121,0.773281817944348,0.837554592422839,-7.13168040071534 +"Q9VL68",-0.0153235252981609,20.7965004441967,-0.293186403325627,0.775160770631854,0.839044883461345,-7.13248549014999 +"Q9VRG8",-0.0220054418685187,16.1234048599403,-0.290581356733891,0.777097662524192,0.840595915103989,-7.13330761578421 +"A1Z9E3",0.0137661226813748,21.8294740532335,0.288564337549511,0.778598443440151,0.841673495565893,-7.13393920774867 +"A1Z8H1",-0.0169049818653875,23.1582786122999,-0.28653173428985,0.780111781239963,0.842763245536437,-7.13457130013768 +"Q9VF77",0.0162952790940647,15.706905928794,0.285728699338465,0.780709930946639,0.842863537099672,-7.13481981348627 +"Q9VZ20",0.0143810919644913,18.7116308222308,0.283125583603239,0.782649915874544,0.844304679278603,-7.13562067346752 +"Q9VU95",0.0685317585057348,16.5259816416658,0.28203250863388,0.7834650000963,0.844304679278603,-7.13595481142976 +"Q9VGF7",-0.0140724564946275,20.0911923274831,-0.281570425101832,0.783809648864275,0.844304679278603,-7.13609568126358 +"Q9W0M4",0.0213979583852755,17.7917265414031,0.281222058347579,0.784069513310885,0.844304679278603,-7.13620173324655 +"Q9VK99",-0.0255349211169964,19.9280531077258,-0.280407333963236,0.784677365688869,0.84441409417357,-7.13644925193854 +"Q9W197",0.0169948758903367,17.346928161346,0.275141915187551,0.788609434582537,0.847715796173647,-7.1380318609123 +"Q9VI53",-0.0169653474521034,16.3646791329782,-0.274937864133636,0.788761939845024,0.847715796173647,-7.13809259690522 +"Q7KTH8",0.0152611278050472,17.6191525471302,0.274202549107009,0.789311582506838,0.847760283078819,-7.13831109580011 +"Q9VW90",0.0730270299244449,14.9823232881292,0.272397425747016,0.790661410167727,0.84866359855841,-7.13884504255618 +"Q7K0S6",-0.0188084423843069,17.313179275113,-0.271095856829346,0.791635140657702,0.84916232451257,-7.13922788335757 +"Q7K127",-0.0348308444370069,18.5180490170209,-0.269255428130375,0.793012641371882,0.85009324280739,-7.13976613780548 +"Q961T9",0.0348682574471866,17.881993077344,0.265598853027747,0.795751669591653,0.852297162905283,-7.14082481630426 +"Q9V434",-0.026030944477462,15.005963378787,-0.265146766935071,0.796090515471481,0.852297162905283,-7.14095471583757 +"Q9VC31",-0.0189959262658643,17.6825206330029,-0.263600021629529,0.797250160392037,0.852991191490647,-7.14139749654731 +"Q9VIT0",-0.018442311440694,16.4465394062624,-0.261479524485164,0.79884080211658,0.854145165340036,-7.14200036883527 +"Q7JQW6",-0.0149660235126046,15.9021058519961,-0.257070028875221,0.802151551437843,0.857135674438387,-7.14323863160409 +"P08120",0.025685465173197,18.2202980628385,0.256107499171819,0.802874786781372,0.857359247344,-7.14350616226638 +"P20240",0.0222835984627601,17.3162456830558,0.252749851803753,0.805399206444671,0.859504719353622,-7.14443164645953 +"Q9VF28",0.0228668556872798,17.7331892659406,0.249016832070129,0.808208587289539,0.861951357799841,-7.14544643350442 +"Q9W0K9",-0.0206210892261733,14.1875074309763,-0.245671481241882,0.810728638471467,0.864042483762307,-7.14634315989817 +"Q9VA76",0.0199306997099686,15.1947921489252,0.244633927738137,0.811510687242968,0.864042483762307,-7.14661884233544 +"Q7JZW2",0.010883337153988,20.521355456215,0.244351815904898,0.811723364541688,0.864042483762307,-7.14669360124349 +"Q7K2D2",-0.0130193446067395,20.3423801454052,-0.24276354624662,0.812921020476574,0.864499046633576,-7.14711289712379 +"Q9VW58",0.0407576093743476,14.8911496379603,0.242139514744286,0.81339171771582,0.864499046633576,-7.14727689887967 +"Q9VAF5",-0.0122233616260381,15.9324404096414,-0.241721403088786,0.813707136219853,0.864499046633576,-7.14738654933668 +"Q9VEN9",0.0239582866982424,14.8501549283188,0.239617125523392,0.815295104922958,0.865634777219283,-7.14793555486304 +"Q9VUM1",-0.0211819147165766,16.5458859736867,-0.237348011528747,0.817008443884978,0.866902089313069,-7.14852224647363 +"Q9W3T7",-0.0115923374365998,17.4234046917279,-0.22703950802921,0.824804621212098,0.874617996301195,-7.15111801521156 +"P48159",0.0114299672592324,19.858793204773,0.225752967806273,0.825779029927749,0.875094931333854,-7.15143396994385 +"Q9VMF0",0.0249799679688305,13.8761062826665,0.216822619918984,0.832551180156274,0.881711345079787,-7.15357810993011 +"Q9VTP4",-0.0118095115974199,20.9355974844405,-0.212366733478978,0.83593560468236,0.884599543067217,-7.15461588503871 +"Q9VTM6",0.0442716775425964,16.2053868565104,0.211835915921168,0.836339016437051,0.884599543067217,-7.15473808854078 +"Q07093",0.0209669547784621,14.5719061478596,0.2106410757353,0.837247254413694,0.88499489920305,-7.15501205233918 +"A1Z9M5",-0.0277644673253654,15.0261362135918,-0.209948329542145,0.837773948346293,0.88499489920305,-7.15517018787002 +"Q9VY41",-0.0378159030287684,16.5729070693299,-0.20458101465255,0.841857524644483,0.888745791839872,-7.1563778962741 +"Q9W4X7",-0.0107922932479525,19.0813728103012,-0.201891691208997,0.843905473659055,0.890344294790199,-7.15697135937833 +"Q0E980",-0.0126823222613339,18.3553797096807,-0.200035301792272,0.845319843929944,0.890645983144224,-7.15737647045819 +"Q9VMX3",0.0204821750811739,12.5563848001148,0.199048977528573,0.84607155129534,0.890645983144224,-7.15759020076112 +"Q9V3W7",-0.0191102514127479,17.9368101885541,-0.198661011876307,0.846367275797372,0.890645983144224,-7.15767398320639 +"Q9W087",-0.0220401625686613,16.6861783377117,-0.197786736737677,0.847033777995588,0.890645983144224,-7.15786219110393 +"Q9W1W4",-0.0167368507227508,17.2882064445825,-0.197501591572704,0.847251185190633,0.890645983144224,-7.15792339701885 +"Q9VAU6",0.0288471224195863,13.4805338511739,0.19731272988439,0.847395188998731,0.890645983144224,-7.15796388760693 +"Q9VZS1",0.020713975224071,15.4504345758539,0.194221318894443,0.849753166375414,0.892561890122286,-7.15862119807713 +"Q9W3J1",-0.0403940692155516,15.7848510725621,-0.191477035756605,0.851847668599651,0.89419881134312,-7.15919606663983 +"Q7KTW5",0.00917615798670468,21.6110695665812,0.188245468528976,0.854315618482884,0.896225441276384,-7.15986259607185 +"Q9VSW4",0.0282053889498091,15.8235366881298,0.186797302812773,0.855422117596176,0.896822182369844,-7.16015763274169 +"Q9W1H5",0.0108629037516152,17.2416560920484,0.183199962171975,0.858172145889942,0.899140162904788,-7.16088072936769 +"P05389",0.00993614003788679,20.5419099126282,0.181824541783422,0.859224127403664,0.899677240746586,-7.16115350916109 +"A1Z6G9",0.0188126372489652,14.1889757287999,0.180682945492829,0.860097488528769,0.900026732036378,-7.16137836463667 +"Q9VG26",-0.0121904568055804,19.7324497960736,-0.178366726078176,0.86187008126815,0.901316172761927,-7.16183025627517 +"Q9W259",-0.0167718422245784,16.8757635572087,-0.177042679536131,0.862883728674737,0.90181081417886,-7.1620859732575 +"P20351",0.0180205903268806,13.9681251576305,0.165554454325677,0.871689448269107,0.910211001297389,-7.16422519872329 +"Q9VYT1",0.0113876151837378,14.2722935259393,0.165133196829583,0.872012697885628,0.910211001297389,-7.16430092926413 +"Q9VWA8",0.0203458502006004,14.498981594115,0.162670409722295,0.873902994147139,0.911613629917091,-7.16473982959978 +"Q9W258",0.00940275482687625,19.3025467926088,0.158245208979341,0.877301601594222,0.914586919661976,-7.16551196935874 +"Q9VCY3",0.010877252090733,17.8580846417023,0.156296857753957,0.87879878862212,0.915575502449529,-7.16584521214749 +"P02515",0.0116778702959728,18.0377552751154,0.155133214189717,0.879693214791977,0.91593525734895,-7.16604227999543 +"Q9XZ61",-0.00858495628574829,18.5317778658211,-0.152529709787097,0.881695017307841,0.917411983238565,-7.16647788530978 +"Q9VKA1",0.0404630409903994,14.447089477717,0.151858136496188,0.882211523450035,0.917411983238565,-7.16658905887416 +"Q9V3Y4",0.0167627692366743,14.0955836218084,0.143494830301725,0.888648479582482,0.923530008687589,-7.16793261657536 +"Q86BL4",0.0138623605006742,14.971117120802,0.140702621620283,0.890799455997202,0.925188974223744,-7.16836430817901 +"Q9V3V0",-0.00890432972923882,14.2384159160768,-0.139489560074733,0.891734226546773,0.925583503347863,-7.16854922150527 +"Q9VNF5",-0.00960206997267221,15.9301654564493,-0.137736697153778,0.893085266917682,0.926409344041476,-7.16881360176815 +"Q9VLT7",0.0158095916014389,18.0581270048317,0.135676247577702,0.894673839597206,0.927480400527122,-7.16912011542198 +"Q9VTV9",-0.00857138483123521,17.2481045177074,-0.131155968450711,0.898160593304303,0.930516689212159,-7.16977642608825 +"Q9VIQ8",0.00788694965753933,21.3476929233794,0.130350198595542,0.898782370258336,0.930582863805652,-7.16989109050662 +"Q9VYT3",0.00824648487345669,14.4212182011872,0.127570228246868,0.900928096480956,0.932093274252522,-7.17028128498686 +"P51140",-0.0109168173805063,13.6489594604332,-0.127012367075588,0.901358783794555,0.932093274252522,-7.17035857584286 +"Q9W3C4",-0.032865323113759,14.7927514337452,-0.125956284082911,0.902174206234047,0.932358473357119,-7.17050396989051 +"Q6IGW6",-0.00958927461023507,15.6531538178792,-0.122712620941136,0.904679440581526,0.93436861107739,-7.17094296700963 +"Q9VSR8",-0.0121732024107164,15.4083652724595,-0.11940374457936,0.907236167086861,0.93594727209752,-7.17137902366822 +"Q9VVS6",-0.0118535475799,16.5357706641022,-0.119282103001843,0.907330179245617,0.93594727209752,-7.17139482757286 +"Q95RN0",0.00618199438562428,16.9418855534084,0.116462759778098,0.909509557993974,0.937615539390574,-7.17175662082091 +"B7Z0N0",-0.0123338029012956,13.0584725469224,-0.115415785333455,0.910319079601411,0.937870429138452,-7.17188877654989 +"Q95SH0",0.055379726122851,13.9373299340762,0.114010558440453,0.911405770532434,0.938105365038405,-7.17206428214455 +"Q9VXB0",0.00635230969972866,20.2438374341937,0.113666405198899,0.911671940483966,0.938105365038405,-7.17210693819185 +"Q24298",-0.00625285180857915,19.3985001594372,-0.112663672560848,0.91244752413476,0.938324580922799,-7.17223048840425 +"Q9V8M5",0.00870432779992569,19.8552174793146,0.110895421691664,0.913815446474968,0.939152288798674,-7.17244569985604 +"Q8T0N5",0.00693019108446435,18.5736145147931,0.107268078591748,0.91662248059899,0.94007918241275,-7.17287654860405 +"Q9VWU1",0.0106353012903799,14.9186713250977,0.1069328459161,0.916881962763952,0.94007918241275,-7.17291564528946 +"Q7JXF5",0.00644462893734143,18.515884839958,0.106448656743995,0.917256760596818,0.94007918241275,-7.17297189856038 +"Q9W0C3",-0.0114779733960653,18.4515016912742,-0.106415453213728,0.91728246333401,0.94007918241275,-7.17297574682531 +"Q86BI3",-0.00660980477274009,18.0600638577629,-0.105765837701369,0.917785348411579,0.94007918241275,-7.17305079580292 +"Q9V4C8",0.00649161297017997,17.2450843857319,0.105360805873077,0.918098913759214,0.94007918241275,-7.17309735636326 +"P55828",0.0061522276045487,19.9747850273977,0.102451309434065,0.920351799355915,0.941807853574028,-7.1734265786355 +"Q0KI15",0.0055431500947698,15.6179195709911,0.0918843965087706,0.92854002248817,0.949604388418312,-7.17454487560514 +"Q9VSK4",0.00497355468899485,19.7895594964929,0.0792418772931644,0.938347981842047,0.95904683438268,-7.17572328292363 +"Q9VH07",0.00445960122723577,18.2173013461176,0.0783029779097669,0.939076822719093,0.959204005079882,-7.17580386102242 +"Q9V6B9",-0.00625241327308856,15.857780962715,-0.0698082797438504,0.945673598776401,0.965342069425021,-7.17648928507603 +"Q7YTY6",-0.00556057321249348,18.4706386864837,-0.0690745870936042,0.946243575245749,0.965342069425021,-7.17654480064249 +"P02299",0.00349790018093188,22.0033434176027,0.0665053928892947,0.94823972676486,0.966787203082999,-7.17673458215633 +"Q8MRT7",-0.00629483543140452,15.4200663945209,-0.0652180337376772,0.949240090000562,0.967215925547304,-7.17682697430121 +"Q966T5",-0.00469223620661019,16.521060254944,-0.0630516578799007,0.950923714236963,0.968339899479398,-7.17697837907826 +"Q0E9F9",-0.00620815552877119,18.4244679412904,-0.0612804822375694,0.95230039169361,0.969150124066468,-7.17709836691994 +"Q9VMQ7",-0.00677310363976069,15.9004599540012,-0.057941206889473,0.954896343936799,0.971199452247915,-7.17731529347256 +"Q4V5I9",0.00484380295579534,16.1045588087095,0.055610397713271,0.956708642851087,0.972449735695072,-7.17745951136833 +"Q6IGN6",0.00764689238471483,16.7860199677039,0.0548015470486532,0.957337617862724,0.972496435197944,-7.17750817572819 +"Q9VDK7",-0.0029226536690885,17.8725224125528,-0.0483523355893589,0.962353682073911,0.97699692130206,-7.17787069799307 +"Q5LJT3",-0.00413398688194277,17.1015373283195,-0.0454277183867912,0.964628968114773,0.978711142831777,-7.17802016377198 +"Q9W436",0.00473262367418137,14.3909333229969,0.0441771974255894,0.965601947521812,0.979102765025156,-7.17808122889041 +"Q9VUQ7",-0.00381850689258911,16.541158303633,-0.0363965851048648,0.97165698369511,0.984643893562238,-7.17842288836858 +"Q7JXW8",0.00550815757067724,14.8550385820276,0.0348802799737289,0.972837235674683,0.985213117946739,-7.17848179125932 +"Q9VCU6",0.00267608503757089,15.4544439772664,0.034157296793914,0.973400011016922,0.985213117946739,-7.17850899436397 +"Q9VVM1",-0.00344472977536014,15.5502205868336,-0.0313491023782619,0.975586071467868,0.986826905523592,-7.17860925271575 +"Q9VFN9",0.00260321793406071,16.0590149731594,0.0301385198366351,0.976528524905882,0.987181563359401,-7.17864982198694 +"Q9XYW6",0.00257702499317958,16.6062938639541,0.0280570944587126,0.978149027511921,0.988220822465102,-7.17871584119634 +"Q9VD30",-0.00182393087853328,21.4343518013308,-0.0268351608859177,0.979100417933916,0.98858323069841,-7.17875239914769 +"O18373",-0.00146969546918641,19.5771833539344,-0.0253807237971861,0.980232878704902,0.989127913901861,-7.17879379184905 +"Q9VV47",0.00121366100414377,20.2267462639323,0.0235425162907058,0.981664217873669,0.989973346682756,-7.17884280802513 +"Q9VE94",-0.002547406252841,14.6814213846271,-0.0207815893868141,0.983814167920438,0.991208585973257,-7.17890950851748 +"Q9VGQ1",-0.00110516200663824,22.459897762128,-0.0203331932727429,0.984163349855673,0.991208585973257,-7.17891955691834 +"Q9VHG6",0.00139154076619796,15.7738200967352,0.0196802338526561,0.984671838703649,0.991208585973257,-7.17893379757426 +"Q9VN93",-0.00102053719776762,20.2863284699987,-0.0184442585290869,0.985634367660366,0.991579086403795,-7.17895948103029 +"Q9VLM9",0.00105589095899461,18.3987764740882,0.01698411611603,0.9867714999992,0.992074529723063,-7.17898767707033 +"Q9VLM8",-0.00119907562635291,16.8110897095364,-0.016176690057114,0.987400322165423,0.992074529723063,-7.17900227096368 +"P49963",-0.00148211894319061,14.8732283619124,-0.0155207840434167,0.987911147404081,0.992074529723063,-7.17901360306884 +"Q9VNX9",0.00141671340531957,13.5166682558316,0.0112315074275949,0.991251802471255,0.994830328833967,-7.17907614801501 +"Q9W3G8",-0.00110193377260615,15.7518214313318,-0.00826119854318728,0.993565301740492,0.996481241311977,-7.17910770711149 +"Q9VHK6",-0.0005677346434112,18.0738563475364,-0.00734561470520278,0.994278440673059,0.996481241311977,-7.17911549580628 +"Q7KMM4",0.00160727425002882,14.5144829041496,0.0068184980942172,0.994689008863575,0.996481241311977,-7.17911956537955 +"Q7JVG2",-0.000226988402609152,14.7968739633531,-0.00175579525775836,0.998632384010304,0.999357923918479,-7.17914322646358 +"Q9VN71",7.5849417399354e-05,18.6215625376787,0.000896500368218475,0.999301701753926,0.999357923918479,-7.17914446874212 +"P43332",7.67781345984986e-05,17.1511980313934,0.000824320315393977,0.999357923918479,0.999357923918479,-7.17914453644508 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results_ms3fix.csv new file mode 100644 index 0000000..0f14977 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results_ms3fix.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC06",0.861311545357704,16.4572731614066,17.0271950622358,2.27439581990524e-11,3.79369222760194e-08,16.4000243256089 +"Q9VC18",0.8409008937831,18.2956868694891,15.9756984229533,5.7511068997418e-11,4.79642315438466e-08,15.5117621848845 +"Q9VLB7",0.814590382360993,21.0974381148568,14.7606589576254,1.80257074528044e-10,1.00222933437592e-07,14.4047637771722 +"Q9VFN7",-0.588266316630904,18.6270162802085,-13.9954809683938,3.86441769568273e-10,1.6114621790997e-07,13.6586061810281 +"Q9V3N7",0.605663705165842,20.5686569459863,13.7450780112769,4.99893330990734e-10,1.66764415218509e-07,13.4055548939968 +"Q7JYW9",0.651452471682941,17.2438855857285,13.400592162657,7.17078227199795e-10,1.73026022815309e-07,13.0499296520903 +"Q9VLC5",0.701507924379598,21.8300234017748,13.3821226676886,7.31247183314271e-10,1.73026022815309e-07,13.0306123704017 +"Q9VZU7",0.551207876873768,17.579644743353,13.2599690165626,8.32758146802835e-10,1.73026022815309e-07,12.902198492323 +"P10676",-1.06222841949458,19.6680274835087,-13.1533467528725,9.33593648284042e-10,1.73026022815309e-07,12.7891763103134 +"Q9VAJ9",0.869971970779748,17.6372822657718,12.4994318077997,1.91530642114479e-09,2.97796713053442e-07,12.0763192205427 +"Q9VA09",0.717891126775822,16.4222463769768,12.4545726184399,2.01439375040196e-09,2.97796713053442e-07,12.0261389410304 +"Q9VXP3",0.65270190840609,14.6276616252256,12.3150442278242,2.35885793688295e-09,2.97796713053442e-07,11.8689793343977 +"A1Z803",0.629629005558016,18.850181843222,12.2804654008238,2.45353134414646e-09,2.97796713053442e-07,11.8297761161399 +"P21187",0.620905529959316,18.9554877083743,12.2641844665348,2.49949279541258e-09,2.97796713053442e-07,11.8112825517896 +"Q9Y119",-0.735322922691768,17.7137644715383,-11.9944414625794,3.40953869309834e-09,3.79140702672535e-07,11.5015525613983 +"Q9W3J5",0.639137617105979,16.1340150729091,11.8679596831181,3.9516850054697e-09,4.11963161820216e-07,11.3541264320372 +"Q9W2N0",0.542470712111847,16.1920856092483,11.7759211543357,4.40320025641882e-09,4.15741219864059e-07,11.2459505348941 +"Q9W1H8",0.585664501461594,20.5885079530425,11.7490204301733,4.54525060376087e-09,4.15741219864059e-07,11.2141893228491 +"O97125",0.662541786334231,18.5365371323678,11.6730186626527,4.97342552633375e-09,4.15741219864059e-07,11.1241010907944 +"Q9VV31",-1.30560764476998,15.6252071715139,-11.6710772714636,4.98490671299831e-09,4.15741219864059e-07,11.1217929935063 +"Q9VHR8",0.524861763115304,20.4200281317183,11.40665723926,6.84425079416225e-09,5.14826801373419e-07,10.8041838262378 +"Q7JUS9",0.711004592010092,20.4511940936475,11.3999690205398,6.89987582503677e-09,5.14826801373419e-07,10.7960659092596 +"Q9V3A8",0.688036884714643,15.5552073607755,11.3764940544369,7.09893071438168e-09,5.14826801373419e-07,10.7675395573629 +"Q9VN13",0.710376988671154,17.063191730045,11.3365005600549,7.45217698671916e-09,5.17926300576982e-07,10.7188205428374 +"O16797",0.502613650816539,16.7021443619149,11.1118341112362,9.81466844834e-09,6.54834678873245e-07,10.4423052997502 +"Q9V3B6",-0.832423531891063,13.2564357029021,-11.070629965636,1.03280256159664e-08,6.62582566439693e-07,10.3910642672852 +"Q9VU68",0.470565659899183,19.3199390217204,10.9708888765887,1.16919204517277e-08,7.13245973362205e-07,10.2663409792095 +"Q7K148",0.665578619529196,16.849496891228,10.9518703149001,1.19729539892936e-08,7.13245973362205e-07,10.2424479110992 +"Q7JYX5",0.793371589126801,14.9157334791088,10.7622218479595,1.51999556086386e-08,8.47657775356806e-07,10.0022266370317 +"A1ZB70",-0.573687439417457,16.1040253476183,-10.7598532326644,1.52456434416692e-08,8.47657775356806e-07,9.99920362950756 +"Q24253",0.756144490100887,18.9061045823468,10.726553731461,1.59035502014238e-08,8.55713604386285e-07,9.95664433194997 +"Q9W3Y3",-0.482577044523634,18.0873189781384,-10.5881161636925,1.89781208491041e-08,9.89234549259552e-07,9.77850324922088 +"Q8SXD5",-0.567410558158709,20.7561679568443,-10.5390869504578,2.02127331311327e-08,1.02166178371907e-06,9.71494207914322 +"Q9VW54",0.560651678722602,15.8773081089544,10.4345189277314,2.31383819320862e-08,1.13514179596235e-06,9.57854979611287 +"Q9VUY9",0.482887429018454,19.7353463817489,10.3689994870935,2.51969993981627e-08,1.20081699988958e-06,9.49250902242807 +"Q9VFQ9",0.44870724200965,19.1626273449326,10.3097759030395,2.72246522799617e-08,1.26140888897156e-06,9.41434758230646 +"Q9VJQ3",0.450210331341498,20.5325916420758,10.1823283877723,3.21958955814798e-08,1.45142577918671e-06,9.24488400332448 +"Q9VKD3",0.499923639365786,18.7205628702694,10.1194446662556,3.49941116413068e-08,1.53605732151841e-06,9.16062842926984 +"Q94523",0.588152281166998,20.3731997672175,10.0561383799077,3.80719297391715e-08,1.62830714884457e-06,9.07537510789241 +"Q9V521",-0.722962615495037,17.6716149072458,-9.99670384230816,4.12224899817617e-08,1.71897783223946e-06,8.99493908336712 +"Q9VZF6",0.551316518553064,15.1172064773223,9.88091530515029,4.81779161631049e-08,1.93418671569465e-06,8.83712340436324 +"P23779",-0.470902804573221,20.9431527571856,-9.87290966436236,4.87025432009443e-08,1.93418671569465e-06,8.82615729485701 +"Q9VIE8",0.457393424264112,24.8826894305362,9.82064481711093,5.22792483312422e-08,2.02794851666307e-06,8.75439006392783 +"Q9VQE0",0.549085874673338,17.3636870128639,9.75595548849007,5.70942801349277e-08,2.16439225602408e-06,8.66514016396912 +"Q9VXZ8",0.600293034583515,17.9113836919935,9.65018827194113,6.60023655184391e-08,2.44648768188348e-06,8.51820277343191 +"Q9U9Q4",0.486398711129013,17.9148149775483,9.55138213958362,7.56558681223487e-08,2.71270167289677e-06,8.37978904156475 +"P41093",0.622296737158738,18.9391123115763,9.53522805136423,7.73708987842417e-08,2.71270167289677e-06,8.35705320817573 +"Q8SXF0",0.521309132596524,16.3789852273606,9.52881249160751,7.80633574934321e-08,2.71270167289677e-06,8.34801540904334 +"Q9V4E7",1.30292940665368,15.4662884541501,9.42636235227059,9.00532362959654e-08,3.06548567636062e-06,8.20304755047199 +"Q8IN49",0.504142342313788,16.9208595767712,9.37598676561788,9.66474725283739e-08,3.22415968354655e-06,8.13131929612608 +"P45437",0.558508610287818,16.0942517585338,9.30338081837888,1.0706206547203e-07,3.50155931779109e-06,8.02741626519643 +"Q9VPN5",-0.431240780039992,21.260754224716,-9.27717109590236,1.11106887624802e-07,3.5639670876571e-06,7.98975667351335 +"Q8SZN1",-0.609020650279756,20.111525262488,-9.25355125339467,1.14890178619897e-07,3.6157890176979e-06,7.95574897946051 +"Q9VA42",-0.755475941357528,20.2824353439044,-9.18791263676379,1.26134611260916e-07,3.86474767986008e-06,7.8608962069977 +"Q01637",0.485075439620358,15.9823042884879,9.18072425163414,1.27434725654859e-07,3.86474767986008e-06,7.85047736595608 +"P29613",-0.388251559438586,23.8436814000175,-9.12696139654859,1.37617964152175e-07,4.09904936081836e-06,7.77235815855974 +"Q24276",-0.547336177520499,18.6548975736994,-9.06128160351419,1.51235197068406e-07,4.42561945105441e-06,7.67645361724684 +"Q7K569",0.64703792307138,20.5965234990322,9.01975341068784,1.60572359657171e-07,4.61783958462345e-06,7.61554692186964 +"Q0E8E8",0.57202814156042,21.6435114708839,8.98709540198381,1.68341316214136e-07,4.75920873635898e-06,7.56750309289093 +"Q9VFZ4",0.668024980805026,16.5965349127858,8.88457861689009,1.95409741368796e-07,5.42282216508707e-06,7.41584623637067 +"Q9VNE9",0.509236117966548,18.8313822329758,8.87447068832442,1.98316637931841e-07,5.42282216508707e-06,7.40082368092418 +"Q8MSI2",-0.761746348228673,23.9873843716294,-8.85963409325831,2.02666229273468e-07,5.45237532948621e-06,7.3787506172446 +"Q9VNW6",0.886768112530561,21.6437107360233,8.81992293710429,2.14810084482304e-07,5.68735271296004e-06,7.31953746961546 +"Q9VMR6",-0.426275564100102,18.7929663196911,-8.73030509988393,2.45120991618948e-07,6.38846584406883e-06,7.18519336241788 +"Q9VV36",-0.556198564578313,23.0997147437131,-8.67994244050461,2.64103326605898e-07,6.77729767351751e-06,7.10925832412094 +"Q9W299",0.779784425939937,14.7391654507675,8.59885907475818,2.97987415117839e-07,7.52356182385283e-06,6.98633782827983 +"Q9VF86",0.470456506848709,17.6234348742795,8.58945127288188,3.02205420982098e-07,7.52356182385283e-06,6.97202240885483 +"Q9V396",0.411437744347303,20.8718770802329,8.53963587241934,3.25612561708702e-07,7.96617720788934e-06,6.89603474302521 +"Q9VTZ4",0.485339585691356,18.1840541179795,8.53165593986212,3.29536107520602e-07,7.96617720788934e-06,6.88383316070206 +"O17444",0.78459084602213,15.384049081131,8.46291770596076,3.65466504552036e-07,8.70854470846852e-06,6.77839600883304 +"Q0E9B6",0.415810007389194,19.1145416785277,8.41616659111525,3.92243782331611e-07,9.21496660463559e-06,6.7063414724625 +"O01666",0.371951042810053,22.7350079212325,8.40580124703982,3.9845565063084e-07,9.23088923961446e-06,6.69032824622939 +"Q7K485",0.475719983612425,20.5588328085492,8.39533866596395,4.04830871947425e-07,9.25010814257952e-06,6.67415086899028 +"P54385",0.54871898654509,21.5202325042604,8.35167571523802,4.32617803633932e-07,9.75143914137025e-06,6.60648729500127 +"Q9VED8",0.573661669605318,16.3629338971043,8.23758022113143,5.15129247375438e-07,1.14564744616297e-05,6.42851770128443 +"Q9VBC7",0.541127349488576,16.1582736960174,8.16348033168666,5.77461251216089e-07,1.26737548293215e-05,6.31203152559565 +"Q7K2Q8",-0.39839591838369,16.1082680275246,-8.13570378023316,6.02828399289122e-07,1.30586723378475e-05,6.26818208488933 +"P35381",0.381231344047105,25.6887317629981,8.0220857663469,7.19445792869583e-07,1.52359069916181e-05,6.08776714284041 +"A0A0B7P9G0",0.75927509259207,14.5981682735193,8.02016961800659,7.21604707636588e-07,1.52359069916181e-05,6.08470992795065 +"Q9VH81",0.574116866818914,14.4843712733431,7.9884290042571,7.58374702533887e-07,1.58121125478315e-05,6.03399731972693 +"Q7KV34",0.398409889692047,20.9565173062268,7.97528367202199,7.74174882836494e-07,1.594226795767e-05,6.0129558034594 +"Q9VZJ2",-0.389249993012857,17.3393679735216,-7.96340033683737,7.88756026520518e-07,1.60444518565393e-05,5.99391468053879 +"A1Z9A8",0.522674084939705,16.7020277906222,7.92561104827519,8.37073593704189e-07,1.6822153666248e-05,5.93323916622337 +"Q9W309",-0.560497296245732,18.4087310050968,-7.90339521966577,8.66921812618556e-07,1.70275501383284e-05,5.89748040823358 +"Q9VM10",0.500079807440489,17.0723440637747,7.89908446751186,8.72841988652774e-07,1.70275501383284e-05,5.89053419483723 +"Q9W1R3",-0.355342081737362,16.967994979483,-7.89541187939109,8.77919251736358e-07,1.70275501383284e-05,5.884614350439 +"Q9W253",0.514689251093898,15.194697491675,7.85521461526546,9.35563814860448e-07,1.79370165883589e-05,5.81970303842766 +"Q9VHT3",-0.462898367023579,15.7319151931264,-7.82666170511458,9.78916626844982e-07,1.85549196997435e-05,5.77346441284299 +"Q9VNB9",0.743410430435539,18.9527089639193,7.77039571864642,1.07064037403562e-06,2.00654847628248e-05,5.68202821833183 +"P48596",0.310206162525478,21.8671849202627,7.7426588587803,1.1191372527324e-06,2.07413437506404e-05,5.6367977598372 +"Q9VPE2",0.449053627262657,20.8567421228232,7.72918601215156,1.14352132526322e-06,2.09005950601323e-05,5.6147903323671 +"Q9V3D9",0.288460966492806,17.4312660305451,7.72414345295228,1.15279061482744e-06,2.09005950601323e-05,5.6065472125951 +"Q9VXQ0",0.53264128553865,15.039792581842,7.60753031492048,1.39068859159205e-06,2.48201056333551e-05,5.41496262443018 +"Q9VN14",0.282446570030011,19.3247715347831,7.60396161529724,1.39873496974543e-06,2.48201056333551e-05,5.4090706088429 +"Q9VIF2",0.418378605696784,17.468934630371,7.59437069854148,1.42060275672295e-06,2.49427936654093e-05,5.39322720950224 +"Q9VAY9",0.554001358213391,14.5982346967918,7.48738564932145,1.69035327470693e-06,2.93698881480329e-05,5.21565032416677 +"Q7K4T8",0.653598197948861,13.6995246631005,7.4740292523947,1.72762438816856e-06,2.97080152522181e-05,5.19337165056231 +"P32392",0.389346466961886,17.6603191759224,7.42842193692723,1.86152481802521e-06,3.16839122088372e-05,5.11711450589615 +"Q8SXQ1",0.496445655549003,18.6290177333548,7.39958860072567,1.95175787822661e-06,3.2884163039212e-05,5.06875745831237 +"Q9VAC1",0.285033994167378,23.3693261272332,7.34942169112598,2.11985664365795e-06,3.53592088162146e-05,4.98435012354562 +"Q9VHC3",0.441742671876341,17.2194259054418,7.33564359912573,2.1686335363584e-06,3.5618379754039e-05,4.96110768280642 +"Q8IQG9",-0.393547562825674,20.4555174490641,-7.33300660817426,2.17810235905994e-06,3.5618379754039e-05,4.95665633913651 +"Q9I7K0",-0.483577179512285,16.1805296631378,-7.32542022680852,2.20558580447722e-06,3.57176419598836e-05,4.94384490849628 +"O18413",0.281028275309065,19.4214419178193,7.29530274478105,2.31833190642374e-06,3.70591673379042e-05,4.8929063178046 +"X2JAU8",-0.334014278128269,21.7407018705736,-7.29153365838292,2.33286125328533e-06,3.70591673379042e-05,4.8865227750222 +"Q9VG81",0.819544286126288,15.6851787288479,7.25707012724287,2.47022536846705e-06,3.88710935339909e-05,4.82806273483045 +"Q9W2E7",0.374254372519992,18.5299144004002,7.23493067679562,2.56291943913109e-06,3.99528002286977e-05,4.79042163008245 +"Q9VWP2",-0.413266821469218,19.6330517387412,-7.17434860082518,2.83568339447356e-06,4.37955546479805e-05,4.68707567237055 +"A1Z843",0.361834528747448,17.5880030878985,7.13199831358982,3.04430913202118e-06,4.62173995171711e-05,4.61453017226889 +"Q9V3I2",0.365778292767647,17.4902440967385,7.13129431278463,3.04791004010121e-06,4.62173995171711e-05,4.61332213377651 +"P82890",-0.454651506600722,19.6171589226471,-7.10749800444963,3.17228817000867e-06,4.74872912614844e-05,4.57244827081242 +"Q9VLY7",0.423146754673496,15.4502375152215,7.1008080008187,3.20820452732546e-06,4.74872912614844e-05,4.56094304400679 +"Q9W308",-0.597762160571278,17.1418134381764,-7.09551492610269,3.23692294764393e-06,4.74872912614844e-05,4.55183581737964 +"O77410",0.469099715524369,14.348263298953,7.09393735551251,3.24553429484965e-06,4.74872912614844e-05,4.54912071076448 +"Q9Y143",-0.319097896471114,20.9487170866769,-7.07252906107677,3.36479546889676e-06,4.880416384452e-05,4.51224152142306 +"Q9W2L6",0.433625135119776,20.9057171962929,7.0570613408074,3.45381326174376e-06,4.89621445335414e-05,4.48555642967749 +"Q9W3R8",-0.380877088299044,17.3265323674358,-7.05623486575629,3.45863854930444e-06,4.89621445335414e-05,4.48412965272876 +"Q9VEV3",-0.288097810876756,18.2516565823609,-7.05536089191387,3.46374883390761e-06,4.89621445335414e-05,4.48262077379055 +"Q7JWF1",0.439547781873909,20.5600727128267,7.04210976621611,3.54220683981816e-06,4.96504286455184e-05,4.45973030024597 +"Q7K5M6",-0.354121950342279,18.1995592081871,-7.03339580965305,3.59481337519083e-06,4.99301163920471e-05,4.44466423690571 +"A8JTM7",0.459425213061785,17.640158016,7.02562944160139,3.64238880304652e-06,4.99301163920471e-05,4.43122764526886 +"Q23970",-0.46168840716981,21.465804897103,-7.02407936833233,3.65196294953822e-06,4.99301163920471e-05,4.42854486306015 +"Q9VKC8",0.447678020130915,17.7707900149573,6.98769734713515,3.88441255545915e-06,5.26764239228119e-05,4.36548117735236 +"Q9VV39",0.328210017096062,17.5252227826175,6.93031697934823,4.28301531041527e-06,5.76134640142957e-05,4.26564629322436 +"P46415",0.39158156353464,18.0502238290307,6.92098655112519,4.35177463844793e-06,5.80700807754492e-05,4.24936927911374 +"Q9VJZ5",-0.344010016546152,16.9412414825802,-6.8896325381143,4.59142090281582e-06,6.0781667189657e-05,4.19458335353526 +"Q9VM18",-0.295658462536242,22.9303662410684,-6.82050418930745,5.16988147020523e-06,6.74712313092165e-05,4.07331055522632 +"P19334",-1.02046554310178,15.1882842984039,-6.81963203501991,5.17764844579119e-06,6.74712313092165e-05,4.07177628120859 +"Q9W369",-0.329244418922862,22.2458235059154,-6.81258325120733,5.24087113281426e-06,6.77656825545286e-05,4.059372340853 +"P50887",0.660040556929655,17.7754614717795,6.78384997714502,5.50706238673721e-06,7.06598466236743e-05,4.00873815170934 +"Q9VLP0",-0.43858203289207,16.1190876670951,-6.77089727753732,5.63164709961747e-06,7.17067737569614e-05,3.98587519334392 +"O02195",0.3338602689171,18.7009134654294,6.76169043013974,5.72199218039587e-06,7.23051739159115e-05,3.96960990263309 +"Q9NJH0",0.300324812525851,21.1878417031123,6.73377476283725,6.00530432647752e-06,7.53146437335677e-05,3.92022062770574 +"Q8T3L6",-0.352859926715514,17.3944624709409,-6.72128557460923,6.13676794408202e-06,7.63890218711105e-05,3.89808929553191 +"O62619",0.324388577844303,22.2214410786259,6.70285693875228,6.33627255676251e-06,7.82881675902212e-05,3.86539343630191 +"Q9VSA9",-0.394658566382265,22.3317226522773,-6.69359106626846,6.43913327550452e-06,7.89740757613349e-05,3.84893620900102 +"Q9VW68",0.351820816761386,22.9547229972386,6.66865340939067,6.72472992826833e-06,8.18748140171647e-05,3.80458487949934 +"Q9VTY2",-0.40506962350829,20.7753534996972,-6.66130998460819,6.81133000413307e-06,8.23282496151736e-05,3.79150821797483 +"P12080",0.300537725287647,19.0620897410562,6.63344367188325,7.15070234073526e-06,8.58084280888231e-05,3.74181767930621 +"P17336",0.351953060932264,20.7184298598347,6.61048598466046,7.44355665508918e-06,8.81475816951355e-05,3.70079906993132 +"Q9VWV6",-0.55285585445667,23.6390966134418,-6.60881055903121,7.46541370244883e-06,8.81475816951355e-05,3.6978027141583 +"Q7K1Z5",-0.521209839576629,15.9893750506479,-6.60585225595818,7.5041706239264e-06,8.81475816951355e-05,3.6925110901547 +"Q9W461",-0.458675375780498,16.2319006948524,-6.56905427288566,8.0042214028397e-06,9.3363925174382e-05,3.62658769329687 +"Q9VAM6",-0.300401865177911,22.0854760098359,-6.56162082700333,8.10939388006481e-06,9.38788849949919e-05,3.61324790634004 +"Q8T4G5",0.247521842944465,19.6664794384017,6.55801470679269,8.16093424716657e-06,9.38788849949919e-05,3.60677373587643 +"Q9VH95",-0.296644164227637,20.9115341982174,-6.51458405267842,8.80924230257076e-06,0.000100451132948506,3.52865984677975 +"Q9U4G1",0.322773564758638,19.3441652066891,6.50975150911448,8.88463398376853e-06,0.000100451132948506,3.51995192855963 +"A1Z7X8",0.337571128192479,17.0303232491974,6.50794878381286,8.91293026161802e-06,0.000100451132948506,3.51670271053167 +"Q9VT23",0.462658046748043,18.2998447829677,6.49825281330578,9.06674451097132e-06,0.000101366921494221,3.49921904896637 +"Q9VH64",-0.494076220169717,17.5281211343162,-6.49400120436164,9.13506259008351e-06,0.000101366921494221,3.49154849159361 +"Q94901",0.247399056271107,18.9179618462046,6.4914384757726,9.17650188586773e-06,0.000101366921494221,3.48692372568188 +"Q9VJZ4",-0.249606943623878,21.3033885169847,-6.46785371420995,9.56720864095128e-06,0.000104987526402018,3.44431938456607 +"P42281",-0.416957813328771,21.8073675021789,-6.4635326963112,9.64065339074106e-06,0.00010510202520102,3.43650540472674 +"Q7KSQ0",0.309008841693906,20.9228839361195,6.45252920317009,9.83035082002665e-06,0.000106474189401328,3.41659540716823 +"Q9VMW7",-0.289149967790117,19.4030192778855,-6.4060918412662,1.0674871424838e-05,0.000114364330482083,3.33238616786309 +"Q9V419",0.408996286435899,16.4871156672547,6.40498270465359,1.0695944577461e-05,0.000114364330482083,3.33037122490452 +"P18432",-0.39674126573934,23.6507353002834,-6.38487508462459,1.10856019690804e-05,0.000117775694805262,3.2938127451756 +"P06002",0.703099419449474,16.998277330311,6.36057164922765,1.15764232656812e-05,0.000122211860804786,3.24955127676167 +"Q7K3V6",0.482075888134457,16.2608729176929,6.34478772448821,1.19072871710159e-05,0.000124437621964387,3.220761980228 +"P22979",0.408657434018671,19.4570518402564,6.34341792007111,1.19364625385504e-05,0.000124437621964387,3.21826189020879 +"A1ZBJ2",0.513050750151862,19.3867882687751,6.33390166718062,1.21412180704339e-05,0.00012578603566139,3.20088623323078 +"P32748",0.372011696852008,17.2881131598324,6.32243265748204,1.23928679894694e-05,0.000127600640780462,3.17992849959123 +"Q95R98",0.410132406723319,16.3232917792376,6.308437634752,1.2707330930895e-05,0.000130035754556643,3.15433039793833 +"A1Z7B8",0.453332217922773,16.9816878971773,6.30201346379498,1.28544556265905e-05,0.000130739219421664,3.14257102534077 +"Q24439",-0.24137441142301,24.285930061975,-6.28938558419164,1.3148857271043e-05,0.000132922993503634,3.11943931759059 +"Q8IN43",-1.11392451857729,17.8871994134707,-6.28281689887099,1.33047687420568e-05,0.000133688881094884,3.10739816938139 +"Q9VZI8",0.420659408429961,15.7429558136524,6.25526416672623,1.39800492204916e-05,0.000139633066465748,3.05682642310064 +"Q9VXR9",0.39270718867945,15.2278948852988,6.24167162116745,1.43262539399677e-05,0.000141580790189742,3.03183964055153 +"Q9W0S7",0.323232073635722,17.9139971172461,6.24095253565894,1.43448162722221e-05,0.000141580790189742,3.03051706228658 +"Q9VQ91",-0.389367524276574,14.9730225022346,-6.23632726942064,1.44648128038111e-05,0.000141925339745629,3.02200834899587 +"Q9VMI3",0.378702982719808,20.1972907204807,6.21634825135205,1.49952891813492e-05,0.000146269838330354,2.98522102488174 +"Q9VBI2",-0.24689153490915,22.1089763996613,-6.19822403994003,1.54940632468799e-05,0.00015025638078951,2.95180178732124 +"A0A0B4K692",0.394748659568268,15.9518370145568,6.19386542372983,1.5616570602755e-05,0.000150569015984944,2.94375824781437 +"Q9VW66",-0.264075085057936,21.3461254613284,-6.18016301944166,1.60083203972029e-05,0.000153459071393876,2.91845449126075 +"Q9W199",0.547951574963278,15.8423910777886,6.15560636582899,1.67362220561564e-05,0.000159520105083823,2.87304258791434 +"Q9VWH4",-0.217193493714081,24.3652003971346,-6.12685205568717,1.76325817704967e-05,0.000167108786324934,2.81976387100062 +"Q9VPL0",0.423491635601769,15.1423461703483,6.0885402287785,1.89052456367449e-05,0.000178157908034409,2.74860184183465 +"Q7K5K3",0.319756462381161,22.7622661736889,6.06859480065111,1.96053166928126e-05,0.000183717237323659,2.71147575150666 +"Q7K3N4",0.323081197032099,17.1134116789979,6.03021496114246,2.10294164110579e-05,0.000195961265774551,2.63988518472231 +"Q9VVW3",0.431454268865638,16.575180436671,6.026368754319,2.11779496150494e-05,0.000196248999766125,2.63269985864712 +"P14318",-0.393555797243813,22.0865939075188,-6.01383202496395,2.16697205055717e-05,0.000198726331449898,2.609265455782 +"Q9VXC9",0.610837544545532,19.0325347770872,6.0124644628202,2.17240793858412e-05,0.000198726331449898,2.60670785029543 +"P54622",0.401401969386363,17.9440856725228,6.01049258493554,2.1802709025978e-05,0.000198726331449898,2.6030196157101 +"Q9VVW7",-0.277312845573892,16.5827671027172,-6.00182071158624,2.21520360342833e-05,0.000200813022310785,2.58679340222091 +"Q9VK39",-0.369278894071567,18.131973099229,-5.98797728383986,2.2721807544382e-05,0.000204864729643401,2.5608696427973 +"Q8MLS1",-0.33974058596241,18.431906650209,-5.95670306631725,2.40658546318413e-05,0.000214606668674041,2.50220990728678 +"Q9VVB4",-0.392710240963179,15.9952115483397,-5.95667307654018,2.40671824465199e-05,0.000214606668674041,2.50215359403454 +"Q9VB22",-0.365847204306963,17.2004405191688,-5.95394516586665,2.41882816011509e-05,0.000214606668674041,2.49703076275776 +"Q9VBP9",0.517979767166267,13.9443137499968,5.94653935117417,2.45202522639616e-05,0.000215774177699945,2.48311814213277 +"Q8IN44",-0.454274607506584,19.8683741411854,-5.94524862175362,2.45785933830873e-05,0.000215774177699945,2.48069261995875 +"Q9VDT1",0.379567315580626,19.1389226260248,5.91357901119039,2.60562269448731e-05,0.000226812187067692,2.42111005356466 +"Q7K1S1",0.497128384407578,16.5853091780995,5.9125060565081,2.61078776480797e-05,0.000226812187067692,2.41908908442857 +"Q9W552",0.299727535124108,16.2316900724811,5.85890311064604,2.88286475333083e-05,0.00024915121287854,2.31793099826442 +"Q9I7Q5",-0.374750749907637,20.6437911542664,-5.85231317846333,2.91829277080759e-05,0.000250913007304487,2.30546846448072 +"O77477",0.363674600670215,16.8476862213939,5.83317376277403,3.02377665817353e-05,0.000258649203376074,2.26924061574849 +"Q95SS8",0.320790413506234,15.5620005249743,5.82729464016427,3.05696817656752e-05,0.00026015423053646,2.25810271792253 +"P54192",-0.385938646144087,24.3269559788418,-5.81082686347146,3.15197052916102e-05,0.000266877504702568,2.22688067365232 +"Q8SYJ2",-0.268878952512033,22.5464031630968,-5.79498521930914,3.24625822612456e-05,0.000273472662685645,2.19681225803519 +"O76902",0.381074588025932,17.288267739966,5.78906173785761,3.28226275723795e-05,0.000273811845560505,2.18556070709191 +"O76742",0.380940291480119,18.0136812741007,5.78652483231996,3.29780941915468e-05,0.000273811845560505,2.18074049896744 +"Q9VSS2",0.367051995745268,16.2304029222761,5.78624463124741,3.29953123247371e-05,0.000273811845560505,2.18020805579733 +"Q9VA37",-0.309160243702845,21.7725286143784,-5.75644738588179,3.48807016838075e-05,0.000288024804002925,2.1235284650644 +"Q9VGA0",-0.409564143867804,19.2934822168667,-5.74984265621063,3.5313556905447e-05,0.00029016262521323,2.11094949427371 +"Q9VHB8",0.515261203255745,15.5411092225851,5.70618496016582,3.83186981461864e-05,0.000313311708371759,2.02765977419891 +"A1ZBU5",-0.412583764370492,16.6730923471737,-5.70104046675496,3.86899051482529e-05,0.000314803716035541,2.01782897646404 +"Q7JRN6",-0.545520032585889,14.7220934802581,-5.68021046734973,4.02314984414244e-05,0.000325757958253864,1.97798944477477 +"Q9V9Q4",-0.280718780028263,19.1265432706543,-5.63832133680809,4.35277558231835e-05,0.000350745394749131,1.8977041697537 +"Q9VQI7",-0.234208508299034,19.1568733243017,-5.61806271840884,4.52212697637192e-05,0.000361960684632879,1.85879615247498 +"Q9XYZ5",0.336519547062673,16.0115285692361,5.61651316542849,4.53535869833764e-05,0.000361960684632879,1.85581799311359 +"P91927",-0.431509120876783,19.2651784593747,-5.60477280535349,4.63692442764122e-05,0.000368304283109788,1.83324377829633 +"Q9W3E2",-0.544142213058365,17.6355475169739,-5.58559855948588,4.80790367029959e-05,0.000380075038960176,1.79633840694057 +"Q00174",0.282262623317493,21.9951719263408,5.57646316887334,4.89165239308864e-05,0.000384871518475087,1.77873892564375 +"Q7K511",0.733084391750864,16.7702574142731,5.56305019290479,5.01736689386859e-05,0.000392909294787456,1.7528796449912 +"Q9VAG9",-0.258292776352651,17.4339235197905,-5.48034995335378,5.87017465008002e-05,0.000457544454034275,1.59294494379865 +"Q9W0Z5",-0.390466526975183,16.9305587713928,-5.45778202227589,6.12805860371279e-05,0.000475423337255485,1.54915422160827 +"Q9VGW7",0.374209711594977,16.728162935078,5.42820008303179,6.48397920750568e-05,0.000500707283246272,1.49165952885965 +"Q9VJE3",-0.400696268742948,15.3183107314063,-5.42328163643697,6.54520135600069e-05,0.000503105800083371,1.48208987294397 +"Q9VGS3",0.33669350496454,19.3094007689564,5.40332853696306,6.79977209928413e-05,0.000520276140440639,1.44323785116296 +"Q9VDH3",0.238474959797678,20.5735024878118,5.38552654153876,7.03555016291417e-05,0.000535858341175381,1.40853398729525 +"P45888",0.312846456651309,17.2015325842405,5.37293764107764,7.20737981218156e-05,0.000546450433032674,1.38396983293222 +"Q8MZI3",0.549297668779907,17.8046642082326,5.35502663298108,7.45937242585759e-05,0.000562996977662012,1.34898835825894 +"Q9W3M8",0.257032818436063,18.6024120781617,5.34653995714536,7.58193950177125e-05,0.000569670049052002,1.33239998580003 +"Q9VWI0",-0.254338961190236,20.9629955481989,-5.32943539306004,7.83534229634518e-05,0.000586069549340976,1.29894091395779 +"P13060",0.249948040244568,20.2203302059095,5.30973342670239,8.13811605778741e-05,0.000605998999303098,1.26035830383925 +"A1Z847",-0.291619421326356,20.0786029324823,-5.29748237013451,8.33246545152214e-05,0.000617713438806174,1.23634400837396 +"Q9VN01",0.298160998805557,16.0631558684004,5.28925545553464,8.46566507154522e-05,0.000624811032714046,1.22020795035236 +"Q7K2E1",0.414843527343507,17.4426512464403,5.27456084227108,8.7090877522653e-05,0.000639945302677468,1.19136677400841 +"Q7JQR3",-0.294207812272692,19.0812435562556,-5.25595399135013,9.02774032000775e-05,0.000660450476042673,1.15481125023271 +"Q9VZG1",-0.276948482443629,17.756194577628,-5.2526862957723,9.08493403189388e-05,0.000661732312890785,1.14838733614415 +"Q9W227",-0.179415151368143,21.9583561470568,-5.23884994279484,9.33129036673235e-05,0.000676721405726502,1.12117310158035 +"M9PF16",0.206323237776324,21.1898707963483,5.23052216355132,9.48288543805607e-05,0.000684738221241451,1.10478294635632 +"P29327",0.282235810967897,19.5356750332922,5.22255769407356,9.63024877690755e-05,0.00069238167930525,1.08910044886753 +"A1Z8H6",-0.578247457091038,16.7762503279013,-5.17652561328209,0.000105295891845264,0.000753792049776395,0.998320281124094 +"Q8IQ70",0.287705873004761,17.9965369757656,5.16341152627983,0.000108013655712276,0.000767023804955745,0.972414470834613 +"Q7KLW9",0.260239891276548,17.2329593337218,5.16317227622009,0.00010806390537446,0.000767023804955745,0.971941674301936 +"Q5U117",0.462663784070706,14.6035483002809,5.1571902563425,0.000109328187398796,0.000772709392293183,0.960118179708742 +"Q9VU04",-0.375304071729026,16.5615834179153,-5.15049072092907,0.000110762261992786,0.000779541995797331,0.946871810599285 +"A1Z8Y3",-0.35278664168947,15.0429133991574,-5.14129254924934,0.00011276289258887,0.000787675975317536,0.928677052315258 +"Q9W414",0.199496933106911,19.5571386192577,5.14083925473999,0.000112862444904611,0.000787675975317536,0.927780156756242 +"Q9W4I3",0.298724800702248,16.583541444998,5.12994307910356,0.000115282961573491,0.000801216582935763,0.906214025603102 +"Q9VX69",-0.445344757763831,18.1594344446518,-5.11805031876064,0.000117986113104972,0.000816600981987938,0.882660585150452 +"Q7JXZ2",0.5393451388478,17.5511053363175,5.09308296567118,0.000123875983974915,0.00085091947995135,0.833163080271264 +"Q9W3H4",-0.255794964921684,19.5096195075528,-5.09271555200226,0.000123964888266294,0.00085091947995135,0.832434183429482 +"O02649",-0.239086046145847,23.3194044748523,-5.08873918729818,0.000124931284923967,0.000854038455955644,0.824544707442908 +"Q9VFS8",-0.342733959702066,17.2816677610288,-5.08082341930047,0.00012687830417188,0.00086380820962733,0.80883403171095 +"Q95RI2",-0.437078517044895,16.7231717687244,-5.07426042150006,0.000128516314100863,0.00087140330048878,0.795803149469856 +"Q9W3W4",0.322971903562854,15.9394778594065,5.06168640264166,0.000131715787101627,0.000889481509657953,0.77082449580193 +"Q8MLS2",0.215791353962711,17.4140712079737,5.05219517118118,0.000134185182302648,0.000902503564842,0.751958759627933 +"Q9W266",-0.250565509279621,18.4113210385701,-5.03996593099437,0.000137437514643157,0.000920665760742112,0.727636638038672 +"Q8MR62",-0.26492386911595,17.6497943255366,-5.02629930537302,0.000141168467403892,0.000941876014518768,0.70043716890079 +"Q9VNX4",0.395893820575061,20.9977922024353,5.02226094848808,0.00014229079938479,0.000943954353579098,0.69239624592922 +"Q9VCH5",-0.191039325409943,18.0175285715134,-5.02111193585943,0.000142611808814108,0.000943954353579098,0.6901080931699 +"Q9W5W7",0.331453081626748,14.9512381497284,5.01136841965688,0.000145364129429246,0.000958369043035507,0.670699256633069 +"Q9VIB5",-0.475566728027076,14.365377814755,-5.00402643748995,0.000147474208903885,0.000968452678943626,0.656067707772045 +"A1Z992",-0.509268039550697,14.2063575218507,-5.00182065564816,0.000148114297066216,0.000968841754927249,0.651670802514025 +"Q9VFS4",-0.375025967631663,15.2785942287608,-4.9994658342557,0.000148800795607316,0.000969530183878916,0.646976254391128 +"P09180",0.208119300831836,20.6734751591385,4.98905775133269,0.00015187456000098,0.000985707261018036,0.626219967821961 +"Q9W1I8",-0.2601701519385,17.9265513254871,-4.97652045317393,0.000155664202610423,0.00100401134668584,0.601202756588542 +"Q7KUA4",-0.214540315869392,18.7732442697176,-4.97575520916147,0.000155898644359492,0.00100401134668584,0.599675251597304 +"Q8IRD0",0.297076474327568,17.5300171840598,4.96988905352581,0.000157707939510463,0.00101175708885943,0.587963828476206 +"Q9VH98",-0.293625711540116,17.0354702154188,-4.96422846794881,0.000159474345919238,0.00101916938311605,0.576659501312813 +"Q9VVL5",0.235289580055916,17.2949805027842,4.92954635510741,0.000170751307727612,0.00108540686173259,0.507328037597122 +"Q9W4P5",0.241229927967733,19.6128342093616,4.92839253446673,0.000171140290548963,0.00108540686173259,0.505019420326133 +"Q9VI09",-0.308569113344682,20.1381371136,-4.91091280918049,0.000177146066263467,0.00111924105502827,0.470029071745223 +"B7Z0Q1",0.25854493843006,17.7316920724339,4.88745255156889,0.000185549498489459,0.00116791156030346,0.423019957665998 +"Q9W1G0",-0.221344875373454,21.7390385985716,-4.88455028381308,0.000186617237319376,0.00117021636033353,0.417200739385258 +"Q9VV46",-0.466017172177168,23.8985341776894,-4.84946495520141,0.000200036822930874,0.00124966824212995,0.346788543476249 +"A8DYP0",-0.580146686000132,15.2555472982388,-4.82388079125118,0.000210445330710294,0.00130794031956132,0.295370491101009 +"Q9VGZ3",-0.37225347272754,16.8586771197275,-4.82271465223865,0.00021093282132014,0.00130794031956132,0.2930253710193 +"Q9VXK7",0.212480778405741,18.0609063101866,4.82046506249156,0.00021187651925028,0.00130892605225729,0.288501060800657 +"Q86BS3",-0.259060900171146,18.952237040822,-4.81267663263878,0.000215177418121357,0.00132441303847389,0.272833569279403 +"Q9VSY0",-0.30281358104261,22.6100148721128,-4.80887750344059,0.000216806710474175,0.00132748703342709,0.265189066425136 +"Q95SI7",-0.2042247151564,21.2148454381424,-4.80780591408402,0.000217268561226376,0.00132748703342709,0.263032603329213 +"Q9VH66",0.296141210341428,16.7530952809494,4.78347768113481,0.000228030571648962,0.00138584659671456,0.214046250143367 +"Q9VTU2",-0.189140093158024,20.8195611019302,-4.782483369802,0.000228481902935554,0.00138584659671456,0.212042999009822 +"Q9U9Q2",-0.216782679439078,15.5759078657287,-4.77906626980432,0.000230039982141521,0.00138852077668515,0.20515784477859 +"A1Z6V5",-0.275935609851654,20.0504171404888,-4.77787072777966,0.000230587682938722,0.00138852077668515,0.202748684441465 +"Q9VWL4",-0.270616541976862,16.1749416582541,-4.77032518509105,0.000234075501159937,0.00140090936335131,0.187540544043322 +"A1Z7K8",-0.240260258502822,17.6115932718319,-4.76979035357984,0.00023432476761092,0.00140090936335131,0.186462390047852 +"Q7KUT2",0.277116799241199,18.2106855216054,4.76791356870684,0.00023520163215501,0.00140112972298056,0.182678821757905 +"Q9VK12",-0.25735224249485,22.3081435730921,-4.76501491087489,0.000236562563206933,0.00140394360401901,0.176834554648108 +"Q9VMT5",0.335347051188936,16.4814352366706,4.76310023516725,0.000237465946068294,0.00140394360401901,0.17297377835808 +"A1Z6L9",0.42317689549464,15.2620958687615,4.76155191937366,0.00023819906471066,0.00140394360401901,0.16985149571939 +"Q9VIQ5",-0.404097639031633,16.5320015544285,-4.73987303735519,0.000248711603806841,0.00146074279982328,0.126112260683675 +"Q9VM12",0.242195126366429,18.9493164431643,4.73139742575804,0.000252950140177311,0.0014804239783009,0.109000660596729 +"Q9VG92",-0.288903689502082,16.5155170015384,-4.72873565888588,0.000254296505523586,0.00148309989934735,0.103625468048583 +"A1Z968",-0.250072485482427,17.1901096058735,-4.72605705491832,0.000255658818200631,0.00148584985630193,0.098215653140123 +"Q9VLR5",-0.465003244316225,16.8730873765268,-4.7234520508412,0.000256990888176779,0.00148840556069051,0.0929538868315323 +"Q9VEN3",-0.23258430996011,17.5655716551264,-4.71291516240733,0.00026245206469601,0.00151477523845309,0.0716647773632451 +"Q9VJ68",-0.351088140840929,17.8267890303664,-4.70692714559227,0.000265608562299128,0.00152770717901706,0.0595621222136229 +"Q8SX89",-0.387290657472594,15.4980191175485,-4.70117383295896,0.000268678058849046,0.00154005155381515,0.047930954440921 +"Q9W3M7",0.266245824101217,16.064050702907,4.69657265506778,0.000271159064823395,0.00154894972645693,0.0386269715265337 +"Q7K3J0",0.222138372436888,20.3627972375595,4.69341055848739,0.000272877726521315,0.00155344726224421,0.032231896987204 +"Q9VL01",-0.313739684025219,20.4681607333714,-4.68605856436464,0.00027691703545829,0.0015710803236205,0.0173598472077865 +"Q9VAN7",-0.216634703085969,23.6944333150589,-4.6757279696674,0.000282696794123064,0.00159843475456702,-0.00354515070605732 +"Q9VN73",0.216966172857141,18.4122419063573,4.66158265809834,0.000290812262524486,0.00163876639827987,-0.0321839958673831 +"Q9VMD3",0.248619105836422,17.7803358017747,4.65593139339511,0.000294120990575087,0.00165183101777524,-0.0436302527283488 +"Q9VIK6",-0.274023036206058,16.5930698943386,-4.63682387065582,0.000305596985520452,0.00171052272432253,-0.0823505162375771 +"Q7JVK6",0.319295086150436,17.3749025259571,4.63441878562132,0.000307073674599248,0.0017130397633162,-0.0872263679211818 +"Q9VSL5",0.28620227269111,17.5765734007593,4.62249667007169,0.000314502472672622,0.00174863374805978,-0.11140301261999 +"P54185",-0.373529236940524,17.4363329066498,-4.61972767969842,0.000316254078394217,0.00175232119345821,-0.117019815825669 +"Q9VD02",-0.248834890006584,18.2279487637161,-4.61813392510344,0.000317266786825167,0.00175232119345821,-0.120252968055504 +"Q500Y7",-0.218702672354382,20.0524794161375,-4.61405578846589,0.000319873295777142,0.00176065100714493,-0.128526946201115 +"Q9V3Y7",-0.479757063815327,19.5256177056986,-4.61248044293516,0.000320886034875335,0.00176065100714493,-0.131723456029246 +"Q24319",0.360631693535543,16.3572012573831,4.60921134696633,0.000322998133866739,0.00176642913865482,-0.138357350752685 +"O18332",0.264203818072485,20.6419619645781,4.60698713560891,0.000324443295795342,0.00176853404374716,-0.142871365620412 +"Q9VCK6",0.405782359578167,16.5509441839027,4.59580315717134,0.000331811092951413,0.0018028042444396,-0.165574978090804 +"Q9VAN1",-0.313730014222173,14.7771581892853,-4.5924521596123,0.000334051893412877,0.00180411857690121,-0.172379430156845 +"Q7JWX3",0.213575720729931,17.9449793816874,4.59071025235813,0.000335222821418152,0.00180411857690121,-0.175916845280994 +"Q9W392",0.192435777834234,20.0079164538587,4.59059889920788,0.000335297817049986,0.00180411857690121,-0.176142985988883 +"Q9VZ64",-0.228970073097162,19.4075982628994,-4.57929661307461,0.000342999984546369,0.00183962692676316,-0.199101086945785 +"M9NFC0",-0.274559316551109,19.8650537574455,-4.57191497081246,0.000348128007948462,0.00186114588864755,-0.214100510677055 +"Q24238",0.305426849564316,16.3788437452488,4.56530693386974,0.00035278523047784,0.00188001841673175,-0.227531461810623 +"Q8SWS3",-0.373762531835187,16.4742294988022,-4.55235532457023,0.00036209932282729,0.00192350850470038,-0.253865297390738 +"A1ZA23",-0.192406854999685,18.4028599097049,-4.55011997695707,0.000363732175522824,0.00192604847229229,-0.258411571989233 +"Q9VCK0",0.312410536617207,18.2468436096057,4.54362984559213,0.000368515884095014,0.00194520409705849,-0.271613355124807 +"Q7JXC4",-0.19341402293955,21.6189177461977,-4.53899779022738,0.000371969416624555,0.001951978183568,-0.281037451923597 +"Q9VCR4",-0.388765555690748,15.0107289887587,-4.53877050387648,0.00037213972564426,0.001951978183568,-0.281499915093158 +"Q9VNH5",0.221424926245161,17.113419698231,4.53684851600495,0.000373583096007811,0.00195340628257376,-0.285410764681663 +"Q9VLS9",-0.299242476853301,18.9671003246772,-4.52863762543834,0.000379814141153189,0.001979781210761,-0.302121249062043 +"Q9VZD9",0.488771420903708,14.507683285705,4.49153518569828,0.000409324898877818,0.00212695928762679,-0.37769047864485 +"Q9I7K6",-0.278780094355421,16.1907077855354,-4.47297616499763,0.000424956862641896,0.0022013293381574,-0.41552680352151 +"P00408",0.178428662163981,21.3517732865233,4.46589617306217,0.000431079986621047,0.00222190414117898,-0.429966935849285 +"Q9VLT3",0.183032944732091,19.4196832707607,4.46530779299149,0.000431592890732607,0.00222190414117898,-0.431167128393543 +"Q9V8F5",-0.339228126635186,16.0079886319342,-4.4494648975199,0.000445640702780131,0.00228716520688387,-0.463492477599859 +"Q9VR79",0.339156062991243,20.2554311892079,4.43932103196956,0.000454879925184007,0.00232742243928504,-0.484198321404919 +"Q9W1N3",-0.248346735087068,20.5128130276862,-4.42966714163216,0.000463854764177819,0.0023660848521364,-0.503910166859503 +"Q8SZK5",-0.880361957186857,15.3616448454738,-4.42332986639047,0.000469844500758723,0.00238933118068765,-0.516853185454146 +"Q9VD09",-0.486013798365789,14.5798638803691,-4.41982721362146,0.000473188930140028,0.00239902472788318,-0.524007960385232 +"Q9VXZ0",-0.263776702464469,19.6747269518058,-4.40297674298148,0.000489621547110051,0.00247481436539262,-0.558438627634408 +"A1Z6P3",-0.214714167721123,17.2279586687011,-4.39608140686279,0.000496512957346848,0.00250206529563306,-0.57253293210113 +"Q9VI75",-0.398074941871581,17.4077936349294,-4.39294064301688,0.000499684703369596,0.0025043513106877,-0.578953715644268 +"Q9VNZ3",0.883797303968688,15.3175403094516,4.39265970794037,0.000499969416342328,0.0025043513106877,-0.579528070900508 +"Q9W5B4",-0.437095645941721,18.6238852344049,-4.37880535426573,0.000514217643606357,0.00256241897842414,-0.607858327516993 +"Q9VSY6",0.28111586549046,17.7224056013374,4.37840594173994,0.000514634507057607,0.00256241897842414,-0.608675240083335 +"Q9VE50",-0.402572325007242,14.5952834660866,-4.37122749186827,0.000522185717024562,0.00259227909522908,-0.62335881120711 +"Q9V784",-0.579713391385592,14.2129069362637,-4.36410673085365,0.000529788053825994,0.00262221505573222,-0.637927338047718 +"Q8I099",0.249880453281214,16.8593425287776,4.3547525405572,0.000539946919582207,0.00265796899569784,-0.657069709479303 +"Q9VJZ6",-0.296586678101658,19.6998721459442,-4.3545229598735,0.00054019873473715,0.00265796899569784,-0.657539584857719 +"Q9VDK9",0.317025731833617,15.5428172772028,4.35216771070665,0.000542789019575592,0.00266285907250614,-0.662360169224378 +"Q9VCE1",-0.366889293797463,13.6715944952695,-4.34322880753267,0.000552735877316089,0.00270370511250216,-0.680658618182076 +"Q9W1F8",-0.22285043022128,17.6385092340496,-4.33910960780029,0.000557381990661682,0.00271845953340259,-0.689092352519529 +"P40301",0.286972454766627,17.8483080527872,4.33395921174486,0.000563247329417877,0.00273905698387469,-0.699638692920717 +"Q9VN86",0.378387139993052,15.3927364428041,4.33200669793773,0.000565487309011962,0.00274195590532545,-0.7036371868726 +"Q9VW34",0.283491617316827,18.4621667280435,4.32743978284092,0.000570762168751133,0.00275951100717939,-0.712990442263232 +"Q7K204",-0.554036191917602,14.844577389759,-4.31904040559219,0.000580595039415467,0.00279555880026439,-0.730195688817231 +"Q9VHX4",-0.188859773327312,22.8380191014466,-4.31803684246877,0.000581781379071291,0.00279555880026439,-0.732251634700919 +"Q9VFC2",0.277723538610996,19.8695551434363,4.31680068000645,0.000583246080630699,0.00279555880026439,-0.734784167727891 +"Q9VHD3",0.221657854056897,15.6948978699245,4.31330206679473,0.000587411933188144,0.00280745875231468,-0.741952233804247 +"Q9W401",-0.18225781135504,24.4610095631026,-4.30992664854607,0.000591459864967395,0.00281872872790176,-0.748868503842554 +"Q9VB46",0.39634309659227,15.2571874458195,4.30237751751479,0.000600616367995859,0.00285421111628801,-0.76433890549426 +"Q7K3W2",0.21996635721597,17.5828830694103,4.29249931240929,0.000612816634836872,0.00290391519007927,-0.784586691135233 +"Q8IM93",-0.261564432093756,19.0276876481251,-4.29071768426654,0.000615043825722803,0.00290621275157404,-0.788239098677865 +"Q9VNW0",-0.527409600156302,14.6490186642389,-4.28564250163633,0.000621433597520672,0.00292811084933469,-0.798644295182666 +"Q7K8X7",0.278188220118924,19.4890001635212,4.28160868365385,0.000626560517368672,0.00294212182422225,-0.806915389378698 +"Q9W4K0",0.232914415851425,19.7199493509626,4.28053307006633,0.000627934873754869,0.00294212182422225,-0.809121004434071 +"P20348",-0.359248641128268,17.4121223699511,-4.26738308675615,0.00064498773899376,0.00301355615865992,-0.836090463074291 +"Q9VZ19",-0.415606796319391,20.2632641760049,-4.2563256988061,0.000659691892215086,0.00307185639369445,-0.8587746159421 +"Q9VSA3",0.230194623245918,21.7215076102327,4.25524371310156,0.000661148948043349,0.00307185639369445,-0.860994611432017 +"Q0KHZ6",-0.272997552757214,23.0740829402211,-4.24624910227042,0.000673389188301462,0.00311627990139114,-0.879451667237354 +"P05031",0.600836507257858,13.4766928577832,4.24547985595796,0.000674446669305876,0.00311627990139114,-0.88103034328647 +"Q9W3K9",0.346815441679912,19.3447212134322,4.23391635417284,0.00069054840661818,0.00317247721534562,-0.904764622788585 +"Q9VN02",-0.217477000419215,17.2751636351012,-4.23254843868936,0.000692478902207661,0.00317247721534562,-0.907572688288123 +"Q27377",-0.422820358633803,20.0456085409392,-4.23217961496955,0.000693000351621896,0.00317247721534562,-0.9083298261369 +"Q7KN90",-0.186041787233425,17.2669812308476,-4.23132007528475,0.000694217136451531,0.00317247721534562,-0.910094351050702 +"Q9W2M0",-0.212428086095173,17.7615616961272,-4.22747136354268,0.00069969220605492,0.00318876120136505,-0.91799566269248 +"Q9V3W0",-0.300605552314032,20.835338402946,-4.21522278445886,0.000717411140894299,0.00326060431338335,-0.943145982770189 +"Q7K012",0.332555045579953,15.5736184512321,4.20937605119478,0.000726029532990934,0.00329080777453499,-0.955153487462799 +"Q9W260",0.262923708272528,17.4049783784632,4.20714684879453,0.000729343185340575,0.00329686838251512,-0.959732004286046 +"Q9VXN4",0.248329320423576,14.9939832243931,4.20456206434507,0.000733204683547535,0.00330536597880348,-0.965041103062304 +"P17210",-0.177714422314089,20.8329678854535,-4.19953113931568,0.000740780337897857,0.00333051645178875,-0.975375318430673 +"Q7KVQ0",0.376569264783425,15.7066085133946,4.19306128419771,0.000750640009523162,0.00335840347773049,-0.988666809859725 +"Q9VUJ1",0.190776436051042,20.0224658210152,4.1928202569662,0.00075100989040376,0.00335840347773049,-0.98916200212313 +"Q9VRR3",-0.291311456069575,19.7385326526577,-4.1910879601821,0.000753673739661163,0.00336022391354133,-0.992721087259135 +"Q9VZE4",0.248232609515128,17.672458061198,4.18993889519084,0.000755446023727818,0.00336022391354133,-0.995081961275194 +"Q7K3Z3",-0.19977832137786,19.8781562718374,-4.17709113559412,0.00077555323932332,0.00344048617870026,-1.02148255823051 +"Q9VXK6",-0.322064404052025,17.7876241337556,-4.17461179660386,0.000779495746652157,0.00344880346264138,-1.02657803609926 +"Q7K0E6",0.254950455986368,16.738295713821,4.14100023604297,0.000834999532895517,0.00368460111341197,-1.09567807646815 +"Q7KLE5",-0.186072757909578,21.4111840821455,-4.13853086506798,0.00083923245229616,0.00369350852356199,-1.1007562904694 +"Q9VYY3",0.182936300772724,17.544422232198,4.13472859930935,0.000845792876943959,0.00371258557563822,-1.1085759815996 +"Q7JZW0",0.254524423465099,19.7796760222945,4.11918067005919,0.000873166241994084,0.0038159201902414,-1.14055663334709 +"Q95RA9",-0.165615501534752,20.5009681506718,-4.11876528711848,0.000873909779779505,0.0038159201902414,-1.14141114485156 +"Q9W4W8",0.302351264969491,17.4121480285552,4.11481715585391,0.000881009157400096,0.00383687539045264,-1.1495333767458 +"Q0KIE7",0.63091407218826,14.0418513385367,4.11184059798521,0.000886400212877243,0.00385030092468552,-1.15565717681669 +"Q95TK5",0.252758350776055,17.1605456023311,4.09848997448573,0.000910995843679815,0.00394408155893583,-1.18312731141067 +"P16378",0.216311301651825,20.4467666605917,4.09756834560868,0.00091271911375853,0.00394408155893583,-1.18502384371051 +"Q9VA34",-0.30051029881384,14.4307999341644,-4.08396983085373,0.000938534033262933,0.00404396857323816,-1.21300976940359 +"Q9VQD7",-0.180026032819278,20.9709931403091,-4.08285482398827,0.0009406833371801,0.00404396857323816,-1.2153046991483 +"Q9VK00",0.67954378956194,17.8048016385076,4.07785188071678,0.00095038877823335,0.00407518889998259,-1.22560227684178 +"Q9VXF9",-0.176776152478521,17.4720763046938,-4.07199626535619,0.00096187759191932,0.00410569576543051,-1.23765576679496 +"Q9VME1",-0.371327970341579,16.5475663668093,-4.0717183867143,0.000962426285541563,0.00410569576543051,-1.23822778852635 +"Q9VXN3",-0.264374686120693,16.961678007382,-4.05731203066337,0.000991312375083909,0.00421813531030602,-1.26788642245951 +"P12370",0.305367028820122,20.7917273321504,4.05174309965891,0.00100271304910633,0.00425578973513832,-1.27935266253511 +"Q9V9V4",-0.209227371851036,18.6297496139518,-4.04165855519751,0.00102369779268287,0.00433382720354067,-1.30011825660399 +"A1Z9I0",-0.188450396109054,19.4006376320396,-4.02277807869348,0.0010641915544914,0.00448495350991875,-1.33900205098628 +"Q9W1B9",0.415270513188609,20.5911036472902,4.0225122523848,0.00106477313544834,0.00448495350991875,-1.33954956583048 +"A1Z877",0.196585565031242,19.9773855034115,4.01787034716055,0.00107498091760101,0.00451440719797967,-1.34911059238477 +"Q8IRH5",-0.287572180355145,14.4162474663663,-4.0168767742311,0.00107717869592081,0.00451440719797967,-1.35115712988346 +"Q9V431",-0.188489247062716,18.5297012868093,-4.01132122900985,0.00108955176345666,0.0045546182313402,-1.36260065737708 +"Q6NMY2",0.393661668385121,20.1126578858508,4.00974877698825,0.00109307995490457,0.0045546182313402,-1.36583976086913 +"Q9VBP6",-0.165775130019576,23.1284348586979,-4.00891067625434,0.001094965174321,0.0045546182313402,-1.36756618841162 +"Q24583",-0.189308699849317,21.2364726128207,-4.00752628907741,0.00109808642976794,0.00455623921605203,-1.3704179552297 +"Q9VH76",-0.206630836466658,19.3146351699551,-3.99924415597617,0.00111694872979199,0.00462300367566513,-1.38747944447058 +"P15425",0.22317586235436,17.0621512294269,3.99036763315856,0.00113752956892744,0.00468649834270518,-1.40576670460135 +"Q9VCX3",0.518069878327681,12.9894979633501,3.99020561474407,0.00113790877026115,0.00468649834270518,-1.40610050418726 +"Q9V393",0.372705680046867,15.809996868543,3.98070179674893,0.001160377899614,0.00476726683880827,-1.42568153049017 +"O46067",-0.159851136677169,19.7319082821648,-3.97823588006603,0.00116628097723751,0.00477892227426578,-1.43076236209324 +"P08182",-0.182671426093908,19.6615495203309,-3.97712715795429,0.00116894501672688,0.00477892227426578,-1.43304682752991 +"A8JNG6",-0.733428438401805,15.6905811617454,-3.97271846919285,0.00117959935727935,0.00481068882137397,-1.4421308788961 +"Q9VMH8",0.179140629066382,18.9196842380788,3.96540415156193,0.00119749308251262,0.00487175234544159,-1.45720252946706 +"P35220",-0.214892755967742,19.3364119181904,-3.95523654575999,0.00122282476456366,0.00496270488392258,-1.47815470319474 +"Q9VF15",-0.27734052269513,20.8542910198382,-3.95211703486648,0.00123070501402653,0.00498256301795205,-1.48458325879857 +"Q9VBV5",-0.230331870452705,17.1683086893173,-3.94684364787142,0.00124414331353333,0.00501651689454902,-1.49545067375143 +"P36975",-0.301452210157386,22.2356162910213,-3.94646781438555,0.00124510671123699,0.00501651689454902,-1.49622520399852 +"Q9VCR2",0.297372883788498,15.5012250835679,3.94497084100892,0.00124895149818209,0.00501988216618731,-1.49931023132043 +"Q9VRP3",0.29787549397815,18.0137338921209,3.93537686509922,0.00127387937491837,0.00510776633981692,-1.51908243041202 +"P40304",0.25824893364954,18.7817917827255,3.93352663992088,0.00127874440633472,0.0051149776253389,-1.52289565180209 +"Q9VF24",0.283622267893133,16.1311661368688,3.93125763345729,0.00128473627006323,0.00512665095326665,-1.52757200053373 +"Q9W1R0",0.773187535478575,14.1144811437098,3.92665605569582,0.00129697524124103,0.00516313771453471,-1.53705583251533 +"Q9VKE2",-0.368290856598751,24.0769382042761,-3.91912127824621,0.00131727104213242,0.00523144785304018,-1.55258532131927 +"Q9VX36",-0.157098627555566,22.21294527592,-3.91571267730887,0.00132655777759339,0.00525581561288781,-1.55961071683394 +"O61491",0.159935365778153,20.9428219736616,3.91290051161379,0.00133426936944115,0.00527384196262522,-1.56540686666238 +"Q9VZF9",-0.243719069873595,19.0984830401382,-3.90341713205102,0.00136061081633269,0.00535147562710453,-1.58495336493126 +"Q9VEY0",0.235175477682656,18.0345866616263,3.90289364115587,0.00136208011220769,0.00535147562710453,-1.58603236173017 +"Q9VZJ8",0.409086433357558,14.8748339595235,3.90237568367278,0.00136353545654642,0.00535147562710453,-1.58709995449792 +"R9PY51",-0.285280253876326,21.508479189438,-3.89260975680954,0.00139127176634679,0.00544751480344237,-1.60722928156765 +"A1ZA22",0.667856748774142,13.5975987409147,3.87961589583849,0.00142906235970478,0.00558237942854231,-1.63401238521486 +"Q9VJQ6",0.381189958789667,14.4606874918056,3.87395417682149,0.00144585152963067,0.00563476717622418,-1.64568247146549 +"Q9W4W5",0.242060871145341,17.3191382743618,3.86898113619016,0.00146076288305064,0.00567960953130178,-1.65593304761763 +"Q9VKU5",-0.564251105500576,13.6392190760864,-3.86531929791999,0.00147184193445332,0.00570937755039101,-1.6634809319675 +"Q9W370",0.426791464361802,18.3654871504733,3.8569562176789,0.00149746423068884,0.0057952908046148,-1.68071909814918 +"Q9VSR5",0.220702585136248,20.2711842710254,3.85485838392773,0.00150396183832785,0.00580696376465476,-1.68504318114089 +"Q9VWP4",0.306061439896776,15.1885886551156,3.85071917972842,0.00151686582182739,0.00584326141064224,-1.69357493364773 +"M9NDE3",0.174622930922334,16.1745448895629,3.84921414372502,0.00152158545026496,0.00584793670746995,-1.69667711126103 +"Q7K1W5",-0.160061182153285,19.7894286240062,-3.83934592856467,0.00155290067643138,0.00595457086962652,-1.71701726431987 +"Q9VAA9",-0.23442804248474,17.1020432253642,-3.81981240981265,0.00161681952066131,0.00617499185857588,-1.75727790971463 +"Q9VYT0",0.156053239057805,18.2716032183478,3.81952228602383,0.00161778863441107,0.00617499185857588,-1.75787586710889 +"Q9VXN2",-0.375230240013327,18.4387039589227,-3.81381325158064,0.00163697850084242,0.00623170294970733,-1.76964229776114 +"Q9W3T2",-0.17191930515367,16.2646461658621,-3.81288553856067,0.00164011846218316,0.00623170294970733,-1.77155430774203 +"Q9VDD1",-0.396368651102037,14.3595668460589,-3.81046930385491,0.00164832506906858,0.00624865048910544,-1.77653411641498 +"Q7K188",-0.229332205438435,21.9843152495797,-3.80475384801096,0.00166790259561355,0.00630852954531385,-1.78831334431055 +"Q9VZX9",0.170437508524639,18.447175315933,3.80171575182198,0.0016784045056335,0.00633388849637259,-1.79457456187039 +"Q9VJD0",0.256501457569682,16.1266190198027,3.79560480727264,0.00169973091920996,0.0063907300585663,-1.80716833434747 +"O77263",-0.221211210276843,15.5215358325483,-3.79520673547924,0.00170112958393492,0.0063907300585663,-1.80798868896561 +"Q9VU35",-0.190583426697685,22.7126395080507,-3.79260726458592,0.00171029166644432,0.00641071123512164,-1.81334568945956 +"Q7KTG2",0.229146351179281,18.0846112125531,3.7915015261599,0.00171420401859762,0.00641096928928437,-1.81562437675378 +"Q9W0R0",-0.213671994507028,16.735984403513,-3.7710043839636,0.00178838406673087,0.00666548869401957,-1.85786178339895 +"Q9VIN9",0.226925931699586,16.4522736798313,3.77049960361033,0.00179025116002444,0.00666548869401957,-1.85890188631054 +"Q9VBU9",0.190502635987887,20.845503781196,3.76407974098441,0.001814169192674,0.00673694027531983,-1.87212971869536 +"Q9VY42",0.289187638795189,15.2387206589785,3.7625451581332,0.00181993401259099,0.00673694027531983,-1.87529156229984 +"Q9VSL9",0.53670390515607,14.6593232238978,3.76211353023639,0.00182155879146837,0.00673694027531983,-1.87618087863953 +"A1ZAA9",0.215802425654722,16.5801619282819,3.7606685898661,0.00182700863196933,0.00674214689850628,-1.87915797936053 +"Q9VLB1",0.336867296381607,16.769209359997,3.75782717084718,0.00183777350065073,0.00676690110173383,-1.88501223324707 +"M9PF61",-0.156052870042704,22.691028400185,-3.75654378945612,0.00184265659006825,0.00676993654677056,-1.88765637556911 +"Q9VVL8",-0.290317725181724,15.8589451776595,-3.75077466714057,0.00186476927559883,0.00683612121252494,-1.89954211443606 +"Q9VRJ6",-0.256559338362413,15.7394790782555,-3.74175724313934,0.00189986922926009,0.00694952165439873,-1.9181189234823 +"Q7KN75",0.245845805028736,19.3826043172769,3.73997068129075,0.00190690193957619,0.00695998344685577,-1.92179924185403 +"Q9V3Y0",-0.257885616509775,16.3299508385752,-3.73422244556563,0.00192970795564912,0.00702784469437278,-1.93364018716051 +"Q7KMS3",-0.329198573409316,15.5394291596839,-3.72722262091393,0.00195785084064275,0.0071148043620743,-1.94805840823492 +"P07486",0.184540750154046,22.1633684776058,3.71482716006065,0.00200870458788113,0.00728373750562114,-1.97358794895002 +"Q9VZU4",-0.229608836648879,21.4020026679134,-3.69695862630017,0.00208436092655946,0.00754167901410234,-2.0103833911136 +"Q6IHY5",-0.218814214068871,20.8899641977379,-3.69539178815044,0.00209113019236932,0.00754979472050222,-2.01360948860533 +"Q9VEB1",-0.134201238114279,25.1289450051015,-3.68962017966094,0.0021162567894867,0.00762400934095855,-2.02549258528007 +"Q24297",0.230136286961475,17.00903053694,3.68693788121034,0.00212803726472254,0.00763949460952011,-2.03101483032415 +"Q03427",-0.14043184536402,21.7316834795181,-3.68655704184567,0.00212971522387701,0.00763949460952011,-2.03179887622512 +"Q9VSN9",0.238909878327217,16.5201056237236,3.67441125739814,0.00218393249346214,0.00781716609247823,-2.05680161997961 +"Q9VAN0",0.169774965661546,20.4524575107322,3.67114064562861,0.00219876780366604,0.00785341476769797,-2.0635336103236 +"Q9VH77",0.312844521185964,15.53675208586,3.66792070893071,0.00221347221182982,0.00787334327504108,-2.07016097829907 +"Q9V3L6",0.290555000340754,15.8467981646997,3.66785184520565,0.00221378776738265,0.00787334327504108,-2.07030271216408 +"Q9VR25",0.183007778461263,16.977871040057,3.65762576487781,0.00226115234688055,0.00802468535020587,-2.0913481630517 +"Q7JYH3",0.230777043598394,19.2372275614119,3.65530245801493,0.00227205450153613,0.00804625670607701,-2.09612910141799 +"A1Z9J3",-0.202613175415934,17.646106378832,-3.64956462322721,0.00229920620463547,0.00812516090960163,-2.10793574561941 +"Q9VAI9",-0.211108521695351,21.9728393238786,-3.6474350705457,0.00230936608457999,0.0081371489950044,-2.1123174078923 +"Q9W4C2",-0.37507848570068,15.8657578933588,-3.64681031236848,0.00231235528994729,0.0081371489950044,-2.11360285007759 +"Q961Q8",0.432334315373383,15.4986685391188,3.64213333929549,0.0023348564382943,0.00818483384965002,-2.12322531102664 +"O96824",-0.243849395697339,16.7140316095259,-3.64195475297996,0.00233571997148286,0.00818483384965002,-2.12359272157647 +"M9PEG1",-0.285429495187945,20.3109534931276,-3.62960512056671,0.00239621976152307,0.0083792338830618,-2.14899719351465 +"Q961B9",0.294553723625642,14.9362291635852,3.62099391578036,0.00243933402882468,0.0085100234611207,-2.16670799815034 +"Q9VG69",-0.18429415650747,19.9524891538225,-3.62010560140267,0.00244382568218034,0.0085100234611207,-2.16853484767714 +"Q9VCC0",-0.234446789683798,17.4609863366011,-3.61828708080321,0.00245304671905046,0.00852433734870035,-2.17227460324696 +"Q9VGP7",0.368835492726745,15.9570994145514,3.61587710684559,0.00246532062079555,0.00854917836899578,-2.17723047300058 +"Q9VZI3",0.264052063178637,14.3865544601752,3.6122522471883,0.00248389805687032,0.00859497603664139,-2.18468420084178 +"Q9VXY3",0.164749469257544,18.0974322757029,3.61129390826938,0.00248883298902745,0.00859497603664139,-2.18665472665928 +"Q9VFP1",0.455747061508763,15.7432454901806,3.60923816442513,0.00249945218249261,0.00861381454627617,-2.1908815993684 +"Q9VCE0",-0.408666464713647,15.8139199327267,-3.60715913889783,0.00251023788056536,0.00863314800986192,-2.1951561676776 +"Q9Y125",-0.241259232615825,22.6286302161622,-3.60440780240347,0.00252458326136615,0.00866461909456532,-2.20081276461506 +"Q9VSN3",-0.238864952753197,20.8754816954261,-3.59542534048637,0.00257199258293889,0.00880920662903916,-2.21927801177221 +"Q960M4",-0.227767086373984,23.2119323258345,-3.58862916084812,0.00260845527956269,0.00891578566866919,-2.23324662131783 +"Q9W3N7",-0.470851907746653,17.2512404308591,-3.58294666391649,0.00263934049597849,0.00900290377769351,-2.24492464704694 +"Q8IPD8",-0.224986545644853,18.31759193802,-3.57925910152821,0.00265957885192011,0.00905342352041376,-2.25250213111247 +"Q9Y156",0.35064592185055,16.1390687670303,3.57254140273464,0.00269684812847852,0.00916159404949525,-2.26630456470073 +"A1Z9B5",-0.467683337404861,15.7844461984263,-3.57016700648035,0.00271014593711757,0.00918624354043078,-2.2711825835959 +"Q95TN1",0.363894173276632,14.0566093149745,3.56928208314382,0.00271511874426401,0.00918624354043078,-2.27300052401448 +"Q9NK57",-0.370410842630911,15.5090800855934,-3.56290477718841,0.00275122731038647,0.00928741099896015,-2.28610062177362 +"Q9VPX0",0.373291697596427,14.3887328711407,3.56204078494868,0.00275615614177774,0.00928741099896015,-2.28787526129932 +"Q9VY87",0.376776984680898,17.6353165601459,3.5584007460652,0.00277701887756971,0.00933884574150458,-2.29535149773748 +"Q9VKI8",-0.141399093697199,22.3555731383425,-3.55519372096111,0.00279553087954335,0.00938148441466336,-2.30193782956631 +"Q9VHN6",0.288850848272997,15.0574572411412,3.55425948954551,0.00280094678567287,0.00938148441466336,-2.3038563829435 +"Q9VSC3",0.329361310570039,17.5682062031792,3.55039156330533,0.00282348191242606,0.00943801168321978,-2.31179915408622 +"Q9W314",-0.35547500766808,16.2040939137133,-3.53995893516545,0.00288517356718326,0.00962493902012336,-2.33321869329687 +"Q9XTL2",-0.235068410825754,16.9114159726222,-3.52924850184501,0.00294991236371648,0.00980984864299725,-2.35520263430516 +"Q9VPC1",-0.268217151119579,16.0950906862197,-3.52834189562117,0.00295545861451701,0.00980984864299725,-2.35706322480419 +"A1ZB79",-0.184167950715281,20.7839734867978,-3.5278869493564,0.00295824572387747,0.00980984864299725,-2.35799687527092 +"Q2MGK7",-0.261053092308671,17.0802881804803,-3.52631272838508,0.00296791009373055,0.0098223691197273,-2.36122743752846 +"Q9VVN2",0.323209331024838,14.9269588089672,3.52400487650797,0.00298213548053624,0.00983060614306062,-2.36596328473049 +"Q9VQX3",-0.455639831117177,15.3046044687821,-3.52399665547446,0.00298218627601239,0.00983060614306062,-2.36598015424504 +"Q9W445",-0.158141569067432,16.4524107090952,-3.51804897357569,0.00301916319315062,0.00993286825675589,-2.378183773598 +"Q23983",-0.176161595930722,22.3356285651967,-3.51498938647528,0.00303836308796133,0.00997635754078641,-2.38446074155749 +"Q7PL91",-0.273557291902836,18.8534379645936,-3.51304295373646,0.0030506411115464,0.00999699287634459,-2.38845371314735 +"Q94915",-0.413646437098835,16.9808043200414,-3.50864959648487,0.00307853701177207,0.0100470174922785,-2.39746557689847 +"Q9VJI5",0.251283288115289,17.5498214378569,3.50733877738856,0.00308690946151441,0.0100470174922785,-2.40015417404238 +"O18333",0.288581897579965,17.4803216210318,3.50695605040862,0.00308935830437103,0.0100470174922785,-2.40093915940132 +"Q9VPF6",0.299110153727502,14.0052079381834,3.50650015610405,0.0030922778375736,0.0100470174922785,-2.40187420208428 +"Q9VK60",-0.168099646166041,21.3328798617399,-3.50591590856433,0.00309602337591796,0.0100470174922785,-2.40307248037596 +"Q9V9M7",0.236384479821616,18.406933019599,3.49809409277099,0.00314660727211186,0.0101913416114225,-2.41911289570841 +"Q9VMB9",-0.207890820096676,22.5483085290325,-3.49374282607984,0.0031751039406066,0.0102637080870772,-2.42803456838845 +"P48604",-0.173626433931705,20.0969003304925,-3.49163495568132,0.00318900112604342,0.0102886922209679,-2.43235605122136 +"Q9VKG4",-0.218108254638549,15.899107926057,-3.48770337403289,0.0032150847351471,0.0103528211162652,-2.44041571243094 +"Q7K519",0.281769516796953,15.6539194463518,3.48554872242527,0.00322946987142286,0.0103791054827232,-2.4448322965896 +"Q9I7J0",-0.276712706381321,20.9819790374093,-3.48074539273353,0.00326177041528489,0.0104627558705677,-2.45467706671498 +"Q7JWD3",-0.260452218015805,17.0995349645606,-3.47801095133104,0.0032803025012654,0.0105020049368727,-2.46028084822244 +"Q95RQ8",0.746031080256909,14.2995654179286,3.47684243180638,0.00328825394574398,0.0105072942174348,-2.46267538832439 +"Q27272",-0.334442386841156,15.6913536079347,-3.47375718426174,0.00330934086473529,0.010554456142215,-2.46899728148326 +"Q9VDV3",-0.174405988818775,17.5366875014127,-3.4712981847375,0.00332624425048478,0.0105881210110851,-2.47403550613535 +"Q9VVG0",0.156087417207701,18.097966695752,3.46443917725728,0.00337385094420506,0.0107192064284458,-2.48808677791946 +"Q24478",-0.386624343347055,17.3793665516136,-3.45674056133322,0.00342809629070146,0.010870845271654,-2.50385432817164 +"A1ZB69",-0.218352506888401,20.4182601566043,-3.4547487140705,0.00344227235234873,0.0108941946192718,-2.50793318159562 +"Q9VIX1",-0.55079688887662,17.2224333671201,-3.453873184802,0.00344852203775509,0.0108941946192718,-2.50972598209279 +"Q9W3B3",-0.242545046210166,15.6684990905946,-3.44734732749326,0.00349546311082068,0.0110216114723041,-2.52308716112569 +"Q9VEC8",-0.203576703449633,16.5005006984112,-3.44525566690508,0.00351064319747133,0.0110485902894003,-2.52736904507966 +"Q9VJI9",-0.413087210214403,17.6036192033855,-3.44378059423954,0.00352138799118751,0.0110615351587585,-2.5303885139398 +"Q9VVA6",-0.199694530731119,19.2231337194335,-3.44174074325309,0.00353630087680791,0.0110778506795719,-2.53456382940296 +"Q9VLU4",-0.176505191713536,17.1669361613482,-3.44125453125773,0.00353986475552267,0.0110778506795719,-2.5355590000503 +"Q9VF27",-0.12804629340879,22.2454395341154,-3.43633821199859,0.00357610281308044,0.0111702986745659,-2.54562069478432 +"Q9VEP6",-0.185640936944147,18.6233595023705,-3.42249921641213,0.00368010953970835,0.011473687312586,-2.57393405449958 +"Q709R6",-0.346798708032589,15.0989719318642,-3.42027402360388,0.00369711229161278,0.0114807505362066,-2.57848528276632 +"P92177",-0.203840307343668,24.1306861913894,-3.4187963833075,0.00370844624514873,0.0114807505362066,-2.58150732294868 +"Q9VPZ5",-0.218914166449252,18.3574424505945,-3.41860239393809,0.00370993677417229,0.0114807505362066,-2.58190405390937 +"O97477",0.164796504065524,20.9481550008561,3.41775862275132,0.00371642689557001,0.0114807505362066,-2.58362963173076 +"Q9VL16",-0.163003917348071,20.740929896374,-3.41771149301339,0.0037167897419374,0.0114807505362066,-2.58372601413356 +"Q9W086",0.201032115638506,16.8755113177334,3.41361478304255,0.00374846521983014,0.0115413213399905,-2.59210332462396 +"Q9VW73",0.284805380261432,14.2220351405216,3.41338658701261,0.00375023750975711,0.0115413213399905,-2.59256992228494 +"P55830",-0.127115120424477,22.0046667895625,-3.39553413803615,0.00389150983093278,0.0119540301988874,-2.62906073057407 +"Q9VE85",0.236279020140366,15.8153758986667,3.39160927144463,0.00392327298221551,0.0120294473057637,-2.63707987388048 +"Q9VVT6",-0.152090111382925,20.4842038084785,-3.38806964723858,0.00395213992494413,0.012095723660196,-2.64431083962287 +"Q9VU92",0.245750107478436,17.7310641888796,3.38673080661239,0.00396311374102995,0.0121070947253442,-2.64704564196708 +"Q9VAY3",0.318412369322747,13.9219856041427,3.38554573651454,0.00397285250064345,0.0121146580824009,-2.64946622072896 +"Q7K1C5",-0.179468614521952,17.4992795979154,-3.38370049622915,0.00398806394094529,0.0121388515574758,-2.65323500898768 +"Q86BM0",-0.200776959948215,17.4536554402525,-3.38060320028211,0.00401372737495309,0.0121947126801853,-2.65956041331599 +"Q9VJ86",0.294434005500172,16.5313733117483,3.37247750125528,0.00408183942014166,0.0123425248210966,-2.67615120540619 +"P41375",-0.292185978305685,16.731265736926,-3.37235562557393,0.00408286973188028,0.0123425248210966,-2.67640000511628 +"Q8IPW2",-0.162224102671638,17.1944303993259,-3.37215379213456,0.00408457655949959,0.0123425248210966,-2.67681202960279 +"Q9VIV6",0.644546565279573,14.8809002136255,3.36703866167614,0.00412807121147694,0.0124513974335326,-2.68725294695003 +"Q9VSX2",-0.177552898803881,17.944612204411,-3.36574499086628,0.00413914433668744,0.0124575038044726,-2.68989321245602 +"Q8SX68",-0.200475297050376,17.5545048816255,-3.36505845247319,0.00414503274069681,0.0124575038044726,-2.69129431716381 +"Q9W1L1",0.375375484280912,14.8837168405156,3.36268094162151,0.0041654890459127,0.0124899834760318,-2.6961460874424 +"Q9VFF0",0.221759193158928,23.6562289009575,3.36206375002676,0.0041708158250298,0.0124899834760318,-2.69740550643314 +"Q9VJ31",0.179702651150965,17.2345616125975,3.35813388560954,0.00420489259508469,0.0125694638863822,-2.70542387173499 +"O97062",-0.177149269027169,18.4693577748792,-3.35644920591942,0.00421958557059345,0.0125781949510271,-2.7088608243082 +"Q9VKU3",0.218547919479473,15.5394519495429,3.35411562464498,0.00424002239977122,0.0125781949510271,-2.71362120440082 +"A1ZBU8",-0.229751543277036,20.780663367947,-3.35374076865879,0.0042433144498632,0.0125781949510271,-2.71438584576212 +"Q9VBT2",0.714501584398647,12.9708685437615,3.35330108251326,0.0042471790911946,0.0125781949510271,-2.7152827136416 +"Q9VV75",-0.129894460898697,23.9687786679649,-3.35303701285694,0.00424950182669457,0.0125781949510271,-2.7158213523713 +"Q9VQR9",-0.247990702182372,16.2449796779376,-3.35263291068223,0.00425305872444801,0.0125781949510271,-2.71664561190955 +"P48148",0.233437083474669,20.6564043639957,3.34973130534792,0.00427868573844214,0.0126315890472947,-2.72256368007253 +"Q9VVZ4",-0.40707423262746,15.8105322536693,-3.34837325441326,0.00429073278746138,0.012641880827538,-2.72533328209109 +"Q9VEX6",-0.151496031129525,20.7661185753923,-3.3471502114797,0.00430161108140658,0.012641880827538,-2.72782740860672 +"Q9VM58",0.231369917866662,16.4386853940296,3.34678002880526,0.00430490905877793,0.012641880827538,-2.72858228820537 +"Q95SK3",-0.16752674662221,17.2178239519157,-3.34561037639416,0.0043153460949415,0.0126502588512521,-2.73096737243154 +"Q9V3G1",0.201433014346488,21.0871792908584,3.34131495372356,0.00435389141133077,0.0127408611826311,-2.73972528083223 +"Q7K3E2",-0.28198976544823,20.5115944503839,-3.33705984356587,0.00439241260938696,0.0128283224285032,-2.74839934624455 +"Q9VY05",0.237385835122065,18.3250737156592,3.33631823611909,0.00439916092871933,0.0128283224285032,-2.74991094786429 +"Q9VVP9",-0.240318948740539,16.6752461012483,-3.32975173795234,0.00445936492408353,0.0129811879465468,-2.76329308142961 +"Q7K5J8",-0.185588120002777,18.2385081807922,-3.3239519391656,0.00451322043951836,0.0131150726360917,-2.77510939115372 +"A0A126GUP6",-0.331472928847276,17.0003377764123,-3.31900573853885,0.00455966013174227,0.0132269793039063,-2.78518410560445 +"Q9VVU1",0.257985751211688,22.2689631442581,3.31663065391399,0.00458212818897682,0.0132690795472454,-2.79002099166422 +"Q9VD64",-0.379797429798764,15.6498375221605,-3.30727354536188,0.00467172106112687,0.013505079254696,-2.80907156209685 +"Q9VB05",0.118015917930304,20.1980610092194,3.30531456266184,0.00469069721145223,0.0135364756897964,-2.81305886802595 +"P29829",0.233791992132904,21.3721715657302,3.29891034851621,0.00475326904408258,0.0136771817342013,-2.82609134444311 +"Q9W402",-0.140307419617738,21.2296912517434,-3.29864752629319,0.00475585455985419,0.0136771817342013,-2.82662609680067 +"Q9VRQ9",0.19102854684902,14.7381579415385,3.27687830270973,0.00497492880470897,0.0142825839006102,-2.87089470657294 +"Q9VSL4",-0.174532399177732,20.9134564616328,-3.26982811811445,0.0050480030695859,0.0144674727148957,-2.88522107168186 +"Q6IGM9",-0.665461922380455,14.7473315025942,-3.26110355784502,0.0051399076853194,0.0147056020911025,-2.9029425822744 +"Q9VDC6",0.291215540944778,16.9717470624029,3.25599560435606,0.00519448310270522,0.0148362976289594,-2.91331417560612 +"Q7JNE1",-0.144987648750849,17.7962738722791,-3.25067226807819,0.00525197121137316,0.0149748512488383,-2.9241200829222 +"Q9U6R9",-0.157326348178962,20.585257613804,-3.24779841877763,0.00528326836989946,0.0150383816399186,-2.92995245488991 +"O62602",0.296721733781945,14.5895292480106,3.24331759145162,0.00533243524330171,0.0151524735704042,-2.93904430898982 +"Q8MT58",0.143667945754881,21.6263027890721,3.24022166099859,0.00536667065043937,0.0152238208247158,-2.9453248233695 +"Q9Y136",0.303629519501296,15.2665561783888,3.23190908767633,0.00545967389988607,0.0154553053127602,-2.96218267390643 +"Q9VM69",-0.249121016532275,16.8428884116285,-3.23127754874343,0.00546680463700749,0.0154553053127602,-2.96346311121909 +"Q9VQR2",-0.154580192753677,21.316904508939,-3.22603280633862,0.00552638080975107,0.0155879584576805,-2.97409499920247 +"Q7K1H0",-0.147328924088267,16.3191300467885,-3.22550455054859,0.00553241691063959,0.0155879584576805,-2.97516567872403 +"Q7K738",-0.138055807518331,19.7699242135479,-3.22160886950152,0.00557713287704205,0.0156874496440238,-2.98306052851148 +"Q27268",0.306852372055616,19.0147698068027,3.21777510407514,0.00562148750270094,0.0157793755022194,-2.99082818185095 +"Q9VRP4",0.355282302539383,14.3991852990866,3.21715159924666,0.00562873406703871,0.0157793755022194,-2.99209131273371 +"Q94522",-0.159164876422295,23.4699495358943,-3.21208346357005,0.0056879816131358,0.0159187136421317,-3.00235693113658 +"Q9VUN9",0.138202734480274,16.7886163015593,3.2074699739707,0.00574245074512256,0.0160327560803668,-3.01169901445702 +"Q9VJ43",0.177414972756804,20.2566934102394,3.20700622056217,0.00574795451802119,0.0160327560803668,-3.01263795164388 +"Q9V7D2",-0.20580061110919,21.3513529754591,-3.20325961087383,0.00579261071854922,0.0161303417004008,-3.02022257233948 +"Q0E8V7",-0.321738492614681,19.7027123560482,-3.20073467561308,0.00582289912275993,0.0161876595612726,-3.02533308963483 +"Q9VM07",0.223645669565341,17.0004725945388,3.19914348024851,0.00584206708145615,0.0162139232809798,-3.02855330429822 +"Q8MLP9",-0.397825370887979,14.9315103406374,-3.19070286213831,0.00594479350971018,0.0164716205551438,-3.04563003146688 +"Q9VJD4",-0.150907297084121,20.7556801601641,-3.18874509946348,0.00596887452216954,0.0165109165886879,-3.04958965299752 +"Q9W483",0.319819423647035,15.5722123491555,3.18192045285006,0.00605357616168018,0.0167174917842426,-3.06338895270451 +"Q9VIH9",-0.415498693828237,19.1487864122102,-3.17746707803405,0.00610948721062991,0.0168440077145962,-3.0723904539497 +"Q95RS6",0.254481161012059,17.1678953351122,3.1766034563383,0.00612038871762098,0.0168462184504815,-3.07413578343597 +"P20432",-0.167611571906487,23.5621280333249,-3.1714462081164,0.00618589007639762,0.0169911223885296,-3.08455631967069 +"Q7KY04",0.317473047979178,14.0766648791185,3.17085784051906,0.00619340672195804,0.0169911223885296,-3.08574493780143 +"Q9VH26",-0.200831119287582,18.2868908556853,-3.16630349612174,0.00625189652878157,0.0171234210344953,-3.09494411169184 +"Q9VEJ0",-0.12773449415198,22.2142253267539,-3.1634251769457,0.00628914284448331,0.017197197155079,-3.10075656267667 +"Q7JR58",-0.189924345697595,22.8150857901754,-3.16182278328741,0.0063099732010247,0.017225917020146,-3.10399195813416 +"Q8T0Q4",-0.182844701165379,19.9851303663364,-3.14896748663433,0.0064795707433747,0.0176600065358644,-3.12993598856206 +"Q7K5M0",-0.357040319576882,16.6659286359348,-3.14708484048269,0.00650478309607782,0.0176998013120029,-3.13373364102181 +"Q7JPS2",-0.250424316967742,20.6941733676216,-3.1431552476994,0.00655772055456036,0.0178147848290011,-3.14165885114108 +"P48375",-0.209558940161575,21.8927195247809,-3.14153408001337,0.00657968379709871,0.0178453862984726,-3.14492782378782 +"Q8SXY6",0.201689704079801,19.127165737075,3.13672872941087,0.00664521310217107,0.0179938562571775,-3.15461540512947 +"A1ZB68",-0.227819846087602,19.3274439793371,-3.13128596982806,0.00672021260756506,0.0181674467251516,-3.16558422666975 +"B7Z107",-0.46794953707022,15.9791092927627,-3.1223413467377,0.00684528443417093,0.0184756220650439,-3.18360156511683 +"Q9VR30",0.236001830337546,17.3175288672014,3.12108574460126,0.00686302416682128,0.0184935772378964,-3.18612986609475 +"Q9VUX1",0.19546102473655,16.4208572694559,3.11953755326901,0.00688496015787948,0.0185227637795854,-3.18924702776857 +"Q9VAG3",0.269627908560858,16.8183805172991,3.11608386008196,0.00693414423259133,0.0186250444121777,-3.19619956294476 +"P19107",0.14312411552768,24.0713434774427,3.1130225197198,0.00697803031458979,0.0187127886892858,-3.20236086604342 +"O61443",0.251101374282165,16.539192265356,3.11197203642065,0.00699315260800145,0.0187232400483891,-3.20447478180883 +"Q8MRM0",-0.207375925904088,18.5551704840265,-3.10336079521064,0.00711834002418132,0.0190278704492539,-3.22179751852409 +"P40797",0.13945596579735,19.1622356493541,3.09862877379677,0.00718807012128009,0.0191835215396723,-3.23131214295828 +"Q7KN94",-0.145848039819551,22.626052830014,-3.09696451389684,0.00721275392485226,0.0192186478381047,-3.23465768576143 +"B7Z0C9",-0.219594981393982,15.955244232334,-3.09236347009151,0.00728143056270035,0.0193469362988091,-3.24390474687804 +"Q09101",0.219367205289537,14.6597525791805,3.09218560534268,0.00728409831873628,0.0193469362988091,-3.24426215313549 +"Q7JZK1",-0.166670062189933,21.5106809347634,-3.0832286175835,0.00741969428288598,0.019675755268448,-3.26225457383779 +"Q7K2L7",-0.443046268003553,18.2740848877044,-3.07879474416835,0.00748773334180505,0.0198246654192553,-3.27115677094551 +"Q9U915",-0.144104908868471,21.1145993452909,-3.07769901329061,0.00750464206466389,0.0198379444752129,-3.27335629566727 +"Q7K2W6",-0.221079705964463,16.8465569892415,-3.0761842158301,0.00752807950051682,0.0198684123526298,-3.27639674204147 +"Q9Y114",-0.11688050919032,18.610428835204,-3.06875369941991,0.00764409421216496,0.0201427316680745,-3.29130601522346 +"A1ZB71",-0.220511095175983,19.216083660209,-3.06584945521388,0.00768991558524424,0.0202315129277404,-3.29713109134118 +"Q8WTC1",0.213137740904074,15.0733494635534,3.06296717247833,0.00773565758019324,0.020319806053169,-3.30291085036483 +"Q9VD29",-0.194318054351371,20.7202967867946,-3.05165654766077,0.00791775756434141,0.0207654396498765,-3.32557939986903 +"M9NEW0",-0.153308627720172,18.3233948402826,-3.05049472914341,0.00793669974717558,0.0207824414101866,-3.32790677416126 +"Q9VVK7",-0.184393437254307,18.1871969698188,-3.04678825642533,0.00799742798044517,0.0209086361620416,-3.33533023412012 +"Q9V4S8",-0.301145399177084,17.0968661720783,-3.04385976910044,0.00804573218800638,0.0210020051480354,-3.34119399374009 +"Q9W1X5",0.119159807730455,19.4241554633596,3.0389402630597,0.00812752361084129,0.0211823584107551,-3.35104136018982 +"Q5U1B0",-0.347451468125282,14.7139905378266,-3.03144574293959,0.00825369972271872,0.0214776460803351,-3.36603573493248 +"O96299",0.291610682449324,15.6927389107371,3.02992126234859,0.00827960005821911,0.0215114842634104,-3.36908468082209 +"Q9VGA3",0.15706236690648,19.4403160382186,3.02642293347124,0.00833933744515926,0.0216061792627237,-3.37607988813173 +"O46098",-0.178972705184336,18.0065369466164,-3.02562226345122,0.00835306907646742,0.0216061792627237,-3.37768061812411 +"O77134",-0.176236956544798,21.6840676022599,-3.02551516894373,0.00835490744871511,0.0216061792627237,-3.3778947176698 +"P32234",-0.212278467075551,16.7138791448736,-3.02396462910412,0.00838156839779558,0.0216415728909025,-3.38099429361712 +"Q9VHT5",0.182591159931308,15.6335189014043,3.01741381176203,0.00849513214141079,0.0219008970817205,-3.39408525467039 +"Q9VZ66",-0.14818846008337,17.0394247745812,-3.01385695329299,0.00855742445784427,0.0220274444377843,-3.40119023195233 +"A0A0B4KHJ9",-0.221209878418978,24.5681444522225,-3.01185317170904,0.00859271446008964,0.0220728785865465,-3.40519195346759 +"Q9V438",-0.155050158715152,18.9710396139007,-3.01063352333412,0.00861426442033517,0.0220728785865465,-3.4076273695061 +"Q9V3G7",0.216491990795788,18.1052452031936,3.00991660906534,0.00862695631366809,0.0220728785865465,-3.40905880192885 +"Q9VKZ8",0.185521980312437,18.7349348642258,3.00985726705863,0.00862800769689947,0.0220728785865465,-3.40917728378574 +"Q9VDV2",0.393639544939711,14.4313201366146,3.00901080507359,0.00864301845625685,0.0220774192726438,-3.41086726053459 +"Q9W1E8",-0.212337812546682,15.4118294219667,-3.00546571299858,0.00870616431469695,0.0222047126558326,-3.41794380634244 +"Q9VAA6",-0.286714178144825,16.1854697377216,-3.00453463245955,0.00872282380623997,0.0222132368073409,-3.41980203785819 +"Q9VGP6",0.142160158360586,17.9680198566331,3.0018369644438,0.00877126897283314,0.0223025558638501,-3.42518516918177 +"A8JNT7",0.202110111436422,16.8613206001789,2.99475477272226,0.00889971141437162,0.0225947011250713,-3.43931168299638 +"A1Z6R7",-0.156268359327413,17.9225942394132,-2.98784364537298,0.00902682867940471,0.0228812172402162,-3.45308877670108 +"Q9VPC2",-0.293981631873624,14.8166723586628,-2.98704026801577,0.00904172028384969,0.0228812172402162,-3.45468975197014 +"Q9VFP0",-0.214926307863447,16.5097803324512,-2.98639389730012,0.00905371905188411,0.0228812172402162,-3.45597776302416 +"Q9W127",-0.194989240626022,18.6144413935188,-2.96821974261784,0.0093975518845962,0.0237142459054561,-3.49216342563371 +"Q8SYQ8",-0.310434574745582,16.0031817776856,-2.96599112275072,0.00944058515441934,0.0237868520205007,-3.49659673961217 +"P53034",-0.240778831556991,15.7345446543062,-2.96447973468422,0.00946987886099775,0.023824672609569,-3.49960278977689 +"Q9VCW2",0.250658209300108,15.3914870989471,2.95007428620325,0.00975358844172572,0.02450148421807,-3.52823379953905 +"Q8SYQ4",-0.269564595237576,20.9657832459979,-2.94693252101963,0.00981656026313172,0.0246225902539906,-3.53447313105313 +"Q9W385",-0.23911500679934,16.8461705350534,-2.94265192565128,0.00990299865451515,0.0247644021794852,-3.54297120965105 +"A0A0B4KI23",-0.157891210732963,20.5256155739036,-2.94241154119712,0.00990787477115451,0.0247644021794852,-3.54344833510183 +"Q9W5W8",0.155965114105477,20.6968390638825,2.94193056386962,0.00991763828291132,0.0247644021794852,-3.544402967911 +"Q9VAC4",0.113930296402529,19.3880557439099,2.93518236609577,0.0100556181896042,0.0250714067866366,-3.55779215360375 +"A1ZBA5",0.339705673091247,15.6423531027406,2.92925833531126,0.0101782921226056,0.0253393899410539,-3.56953915742027 +"Q9VRL2",-0.686244064379007,12.0550068605055,-2.92798742788755,0.0102047998319908,0.0253675202977059,-3.57205844084001 +"Q9Y162",-0.151274701802606,20.1870384755023,-2.92569074166628,0.010252873761951,0.0254490973734142,-3.57661033020907 +"Q7JVZ8",-0.278428406352361,16.0218361622075,-2.91816252790004,0.0104120099915783,0.0258056948974037,-3.59152383143551 +"Q9VN88",-0.199664548171945,17.0264411912295,-2.91459129343274,0.0104883424059455,0.0259563132538829,-3.5985947507357 +"Q9W3X7",-0.136711035978216,21.6193069399451,-2.90014949696729,0.0108026365711671,0.0266945152603062,-3.62716411134985 +"Q7KJ08",0.2343620193933,14.5672391137075,2.89736135782199,0.0108643643601738,0.0268073369123815,-3.63267508313016 +"Q9V3F8",-0.127814080787719,18.5398325579536,-2.88910606350225,0.0110491567877686,0.027223033267353,-3.64898339839048 +"Q9VDQ3",-0.540108562747502,13.3181937038527,-2.87457119896102,0.0113819931332973,0.0280017176199703,-3.67766423923343 +"P83967",-0.549410222678652,17.523347760646,-2.87203948487206,0.0114409582917017,0.0281053290582599,-3.68265560909216 +"Q9W2M4",-0.130549574097465,22.6603679330122,-2.86115418052816,0.0116978927031802,0.0286942426895657,-3.70410160850025 +"Q9VBC9",-0.284699923363068,15.5342124343136,-2.85702413303837,0.0117968410306505,0.0288944652556903,-3.71223221318629 +"P05205",-0.172171350652803,18.0948586690439,-2.85167212711443,0.0119262782817645,0.0291627592361097,-3.72276319666518 +"Q9V3Z4",0.18423260888682,18.7840867784644,2.85105279559999,0.011941345658431,0.0291627592361097,-3.72398145441583 +"Q9V3W9",-0.123530618987505,18.5048589590713,-2.84564748729252,0.0120736373868002,0.0294427297678109,-3.73461059576115 +"Q9VF70",-0.152991316217015,15.9176633741578,-2.83831918293914,0.012255273022669,0.0298420370829371,-3.74901141036783 +"Q9VN44",-0.152056766218557,19.5035394634771,-2.82902213104435,0.0124895334547951,0.0303681367384813,-3.76726468378424 +"Q9VTB3",-0.164519002854831,19.7206045702098,-2.82370833618751,0.012625376136258,0.0306537516670719,-3.77768919515232 +"Q9VTJ4",-0.16396832770427,15.6203823626319,-2.81932082105277,0.0127386207564121,0.0308837491594409,-3.7862919733145 +"Q7K1M4",0.211362916268364,17.1820306989261,2.81850652385207,0.012759746628152,0.0308900687601705,-3.78788814153318 +"Q9Y0V3",-0.21373441488317,15.1089618577586,-2.81578964438383,0.0128304790705817,0.0310162885358411,-3.7932126724044 +"Q9VY28",0.195872637183358,15.2248863431617,2.80701252913931,0.0130615991417184,0.0314655821207255,-3.8104030485786 +"Q9VVA7",0.152182335916141,17.5142414778267,2.80659979047913,0.0130725663891026,0.0314655821207255,-3.81121100081086 +"Q9VJ80",0.207476924841254,16.4790568495054,2.80658608581815,0.0130729307012367,0.0314655821207255,-3.8112378275841 +"Q9VPU6",-0.159761515581467,15.3207114504349,-2.80378285348532,0.0131476568780412,0.0315998439086062,-3.81672426563834 +"Q94516",-0.114679721348679,23.3667950426379,-2.79595539875846,0.0133585168267649,0.0319767974664867,-3.83203483030253 +"Q9VDU7",-0.150092084092009,18.3145236214828,-2.79536097151663,0.0133746632316363,0.0319767974664867,-3.83319697897138 +"E2QCN9",-0.175799871960781,17.3742846805825,-2.7952929868834,0.0133765111022086,0.0319767974664867,-3.83332988887645 +"Q8MSS7",0.451890920297824,14.1304949571916,2.79512133456327,0.0133811778366953,0.0319767974664867,-3.83366546444389 +"Q9VSK9",-0.198502515674759,14.5095567207282,-2.79079941568552,0.0134992004776399,0.0322126844015785,-3.84211252820454 +"Q868Z9",-0.203479629309587,20.3819580333302,-2.78906159777752,0.0135469408525255,0.032248652227756,-3.84550786325881 +"Q7K084",-0.138440087584161,23.7084076043271,-2.78869374710228,0.0135570672283607,0.032248652227756,-3.84622648007348 +"Q9VVE2",-0.183294598335898,18.3704778145856,-2.78814182829628,0.0135722744987318,0.032248652227756,-3.84730462719384 +"Q9V406",-0.20529200873068,17.0144754808131,-2.78649905136417,0.013617636674547,0.0322797985045355,-3.85051330808386 +"Q9VC66",-0.13372448186977,17.7169785656308,-2.78626586370309,0.0136240876182212,0.0322797985045355,-3.85096872222896 +"Q9W0H8",-0.186404550552737,19.4070931207132,-2.77911318980173,0.0138234065010278,0.032705591551368,-3.8649318801917 +"P40796",-0.238550210793306,18.3438463845507,-2.77571543871646,0.0139190772193146,0.0328800060539912,-3.87156076013967 +"Q9VW59",0.15595609084238,19.7442824057436,2.77509736160039,0.0139365493286401,0.0328800060539912,-3.87276632132006 +"P55841",0.116969449174825,20.6453054138082,2.77345760564096,0.0139830058427502,0.0329430137651232,-3.87596424661243 +"Q9VNC1",0.377922033849451,15.5901754215958,2.77108801962016,0.0140504047095317,0.0330551129132566,-3.88058443053309 +"Q9VXG4",-0.157571751702243,19.9377508678898,-2.758628820117,0.014409996980554,0.0338533450191043,-3.90485588093301 +"Q9VXE0",0.178968162107743,18.0267429344945,2.744465059974,0.0148296134591228,0.0347901480306848,-3.93240392169291 +"Q9VPX6",0.334822989343305,21.4945080024137,2.74313669935183,0.0148695686861016,0.0348018456299595,-3.93498510881923 +"Q9VZG0",0.135036184951627,21.6782828443375,2.742912302752,0.0148763284976985,0.0348018456299595,-3.93542110082608 +"Q9V3E7",-0.168876514986849,18.7248322606082,-2.74159672085065,0.0149160194610762,0.0348458269762957,-3.93797697336253 +"Q9VMH9",0.132519179668879,20.0555466315492,2.73885688389855,0.0149990091777538,0.0349906955363544,-3.94329852113147 +"Q9VC48",0.153663825990659,18.4413668388676,2.7334135325184,0.0151652155596139,0.0353290217226759,-3.95386573892637 +"Q7KUC2",-0.179507307064235,19.3365425267574,-2.72755841957384,0.0153459825885003,0.0357002774862184,-3.96522435332335 +"Q9VII1",-0.34340912947356,19.3167901809795,-2.72428030856597,0.0154480966542479,0.0358877788569435,-3.97158009483311 +"Q9VBU0",0.26464571334871,14.2173254081894,2.72311452106085,0.0154845693202571,0.0359224779223767,-3.97383974385829 +"Q9VH72",-0.496605713557635,18.6242919449318,-2.72222479062764,0.0155124612833578,0.0359372019731123,-3.97556408801455 +"Q9VSL2",-0.168480652332388,20.4508778576293,-2.71835955719299,0.0156341962389119,0.0361447093551176,-3.98305286933112 +"Q9VER6",-0.264520356803734,14.9685891280351,-2.71800617826168,0.0156453717952008,0.0361447093551176,-3.98373734875448 +"Q9W2X6",-0.132961347499883,24.1076171080887,-2.71647941041863,0.0156937443693996,0.0362063148107309,-3.98669427890419 +"Q9W1F2",0.373494497612857,13.6532569826164,2.71329615026988,0.0157950646522821,0.0363897345856443,-3.99285753811586 +"Q9VFB2",0.200898586833068,16.445284471854,2.70891063438377,0.0159356869678834,0.0366630701550753,-4.00134444889529 +"Q9VND8",0.551626916646022,18.4846076302531,2.70584434655139,0.0160347253245502,0.0368126032620306,-4.00727554255101 +"Q9V6Y3",0.223077103674843,15.2553607609896,2.70553278478495,0.0160448216855493,0.0368126032620306,-4.00787806305187 +"Q9W337",-0.20606985886517,17.7708074192759,-2.69909217840493,0.0162549135784298,0.0372434008912376,-4.02032794844243 +"Q8SX57",-0.109162978760871,17.9555109364819,-2.69818084262896,0.0162848548366589,0.037260820120092,-4.02208875006393 +"Q9VMX4",-0.234232563011275,17.297219454768,-2.69428462256339,0.016413463433786,0.0374555333621706,-4.02961432609911 +"Q7JVI6",0.190451040937365,17.4824302335223,2.69424232310267,0.0164148650406155,0.0374555333621706,-4.02969600683717 +"Q8MLW4",-0.137920804320508,18.635221853657,-2.68832375373482,0.01661212126566,0.0378538500971596,-4.04112037491309 +"Q9V9T9",0.279943921441765,13.4340972676549,2.68642572324811,0.0166758622309172,0.0379472553904091,-4.04478218433369 +"Q9NBD7",0.396081542735187,13.228534542692,2.68282001746826,0.016797601674999,0.0381722065311966,-4.05173603134704 +"Q9VGE7",-0.309486361446067,13.8927937472339,-2.67885364722854,0.0169325078308338,0.0384264259344636,-4.05938160765924 +"Q9VVJ7",-0.134829892357807,18.1678271516263,-2.67585008515339,0.0170353606779649,0.0386073119712573,-4.06516858956125 +"Q95083",0.134448551675018,19.8974979266263,2.67242072571811,0.0171535305130992,0.0388223729930114,-4.07177311692709 +"Q9W1X4",0.262777214724679,15.125253145146,2.67033544965736,0.0172257712434297,0.0389330439485647,-4.07578761811797 +"Q9VNI4",-0.203152216286282,16.4984440059768,-2.66868056787562,0.0172833102155851,0.0390102319886277,-4.07897273724435 +"Q9W0B3",-0.15025237013948,19.1545993789373,-2.6666981896278,0.0173524797125077,0.0391134272438688,-4.08278724627457 +"Q9VF39",-0.311707659402554,15.9648201462142,-2.66401637928021,0.0174464783343677,0.0392722346312083,-4.08794598036318 +"Q9V9X4",-0.151680178121691,18.7115250762711,-2.6578918688468,0.0176629870050754,0.0397060139143744,-4.09972004783956 +"Q9VQQ0",-0.232399038805898,18.2870671730229,-2.65605584762872,0.0177283948595722,0.039799411340197,-4.1032477894818 +"M9PHA0",-0.188936909703898,17.4248557463611,-2.65119868868869,0.0179025560587906,0.0401363756801918,-4.11257607510845 +"Q9VIE7",-0.166611062029189,14.9888306814096,-2.64472557502715,0.0181372202168601,0.0406078970761378,-4.12499811839079 +"Q9VRJ5",-0.169604577648499,17.2541909236008,-2.64364652289429,0.0181766247558857,0.0406415684890314,-4.12706775729916 +"Q9VAY2",-0.0901811376347865,21.1246455608706,-2.64042410902637,0.0182947906426632,0.0408510184631355,-4.1332465443046 +"A8WH76",0.158127249786993,19.0424009076152,2.6396689726679,0.0183225881240142,0.040858391699005,-4.13469407100993 +"Q9W425",-0.353361442707396,13.9835143410396,-2.63786251817707,0.0183892507525817,0.0409522967360564,-4.1381562562993 +"Q9VRY5",-0.15199491273022,16.8544426206636,-2.63204875876618,0.0186053790544882,0.0413312814805138,-4.14929273063498 +"Q4QQ70",-0.188510155468634,16.115768978045,-2.63195222513326,0.0186089882445239,0.0413312814805138,-4.14947756736917 +"A1ZB73",-0.695445019731022,13.6051833357404,-2.62562896004907,0.0188468727149705,0.0418039676709717,-4.16157946289888 +"Q9VNA5",0.180747831279184,17.3303088323977,2.62046365082941,0.0190433593317931,0.0421836963684342,-4.17145709653304 +"P61851",-0.182335878149416,23.5429922609122,-2.61856644504151,0.0191160211544144,0.0422456314057217,-4.17508329272492 +"Q9VRL0",-0.146590836953049,22.7535442311755,-2.61841133717249,0.0191219734480335,0.0422456314057217,-4.17537971213787 +"Q9VZZ5",-0.161935425429661,18.4644267642961,-2.6172966596491,0.0191648017813541,0.0422842452001305,-4.17750972575049 +"Q7KSE4",-0.206220482220322,13.8253876470276,-2.61556405896198,0.0192315549338683,0.0423754737512448,-4.18081983659201 +"Q7K1U0",-0.174588951912721,16.6799340674343,-2.61190268467798,0.0193733542544344,0.0426316027656946,-4.18781211908703 +"P11046",0.1718431166369,21.0207360267321,2.61020225568593,0.0194395499288891,0.0427209081441199,-4.19105823949942 +"Q9VP57",0.211827375350218,19.4973851060016,2.60720333015601,0.0195568237877539,0.042922081681544,-4.19678123525922 +"Q9W140",-0.484174257011974,13.8474778106003,-2.59405437646993,0.0200790762230402,0.0440103799474785,-4.22184436546865 +"Q8SXF2",-0.180335213566943,15.5335314436397,-2.59181488343661,0.0201693470832293,0.0441502243239192,-4.22610820124806 +"Q95NU8",-0.176076920569926,17.3584655420832,-2.58717769216511,0.020357503893332,0.0445036913421728,-4.23493256679381 +"Q24185",-0.14564068547428,18.6972885274964,-2.58598761926563,0.0204060623392367,0.0445514554736214,-4.23719623644581 +"Q7KND8",-0.1694988847081,15.4398112725021,-2.57151397569378,0.0210055795400061,0.0458004008793859,-4.26469449249626 +"Q7JVH6",0.114574893313989,18.9829639038314,2.57063938708943,0.0210423412571651,0.0458206595521558,-4.2663541772206 +"Q9VW57",0.141640134423538,16.5655543775563,2.56827735156304,0.0211419330019379,0.0459775022780084,-4.27083544452899 +"Q9VWD0",-0.150419973662807,18.1799227860545,-2.56687951428253,0.0212010830253517,0.0460461021956858,-4.27348666649323 +"Q8IMT6",0.259207558456596,16.1119769029607,2.56028346373343,0.0214823400814556,0.0465962851181638,-4.28598944871396 +"Q9VGV9",-0.203312627861111,16.0676258470841,-2.55684061460607,0.0216305578242025,0.0468568447412594,-4.29251029623916 +"Q7K0X9",-0.178191847570341,16.6692793365383,-2.54080539423246,0.0223338618635653,0.0483176155491918,-4.32283530620705 +"P21914",-0.106605827868457,22.9103826885991,-2.53953491302275,0.022390509471119,0.0483774220179099,-4.3252347061921 +"Q9VRP2",0.111918089239047,20.4374755847437,2.53528966431143,0.0225807914257933,0.048725433503523,-4.33324866986108 +"Q9VXI6",-0.121866146619109,22.0244918135563,-2.52997027865026,0.0228213983339926,0.049180997960077,-4.3432826785119 +"P08985",-0.139900705689755,20.6484552589139,-2.51784339810105,0.0233791009253525,0.0503178585077264,-4.36612565102333 +"Q9VSU7",-0.157248372586656,14.7304313031371,-2.51607543786336,0.0234614852093843,0.0503229568192596,-4.36945214474948 +"P56538",0.150097544243444,17.0907551923562,2.51587349775085,0.0234709129076418,0.0503229568192596,-4.36983204278979 +"Q9NHA8",0.265622382218059,16.2996640799772,2.51548250331378,0.0234891769903063,0.0503229568192596,-4.37056756200328 +"Q7JWU9",-0.347323765596162,15.5097853215988,-2.51520499167975,0.023502148298683,0.0503229568192596,-4.37108957454264 +"Q9VJH8",0.280370502292122,14.3620679663009,2.5144017236102,0.0235397327477676,0.0503388131067645,-4.37260042646579 +"Q9VWF0",-0.190607801568817,16.4659960069505,-2.51319164714339,0.0235964597104792,0.0503955119040708,-4.3748760620668 +"Q76NQ0",0.339845915235484,14.5155723477674,2.50862905038017,0.0238115228834926,0.0507897956133832,-4.38345229308945 +"Q7JWQ7",-0.255194504553591,14.3176547496127,-2.50572851830447,0.0239492124767679,0.0509901621886497,-4.38890102455156 +"Q02748",0.155513970195983,19.5667560634586,2.50536338848322,0.0239665990143294,0.0509901621886497,-4.38958674640232 +"Q6IDF5",-0.184003266637948,19.6151946917311,-2.49325821621027,0.0245498692749264,0.0521645629943658,-4.41229700205687 +"Q9VQJ8",-0.170251675808466,15.2284112349576,-2.49083322137597,0.024668327571651,0.0522973540956331,-4.4168409638541 +"A1ZAL1",-0.19778332079478,17.2474604287819,-2.49069551750424,0.0246750705475199,0.0522973540956331,-4.41709893818021 +"Q9V3Z2",0.173149865681902,16.1845119538762,2.48621451182125,0.0248954524798577,0.0526974806299526,-4.42549038459102 +"Q9VFV9",-0.129737186558582,21.3634138287811,-2.47733843319388,0.0253375293702247,0.0535652712161405,-4.44209355719232 +"Q9VE52",-0.149619398096355,15.9507527472545,-2.46682631258846,0.0258707433239261,0.0546232909674795,-4.46172445590394 +"Q9VVH5",-0.132277858995078,22.5407473111675,-2.46611790667973,0.0259070571259853,0.0546308107283735,-4.4630460919683 +"Q7KMP8",0.130036484709951,19.2071178358408,2.46328066948657,0.0260529833912284,0.0548691619906173,-4.4683377512128 +"Q9W0X2",-0.194332709101696,16.0129307108698,-2.46150453200054,0.0261447315345681,0.0549929535935178,-4.47164905294129 +"Q7JWD6",-0.115475315767799,20.4649865401623,-2.4601887687183,0.0262128963183119,0.0550668905024486,-4.47410140612503 +"P28668",0.198593105898006,15.5354845648377,2.45692937930059,0.0263824805093213,0.0553534308044628,-4.48017391370298 +"Q9VVL7",-0.116918082638669,23.4913505826343,-2.45275616358252,0.0266011310948842,0.0557420686762147,-4.48794389382124 +"O61604",0.106043219861728,20.934800507873,2.44513082638283,0.0270050995223233,0.0565175734043102,-4.5021265197443 +"Q9VF89",0.376108585186341,14.2180039283023,2.43662925483191,0.0274623451808666,0.0574024959419618,-4.51791625089012 +"Q9VJZ1",0.213725422909789,15.4617465883975,2.43224789430934,0.0277008465507358,0.0578285507467176,-4.52604424761935 +"Q9VZ67",0.167014832728585,15.151715056122,2.42657709278854,0.0280124535374662,0.0584059656256171,-4.53655479299248 +"Q7JV09",-0.145262702453948,15.1604740529805,-2.42301142438193,0.0282100814635711,0.0587445891151519,-4.54315804744385 +"Q24372",0.205242922354291,16.9076188387342,2.41820402042035,0.0284786229644793,0.0592298542453261,-4.55205407619271 +"Q9W3N6",0.118209500677567,16.1367186291176,2.40999292564055,0.0289428969695613,0.0601204883502221,-4.56723044438555 +"Q9VL10",0.17020108401244,16.7357983938019,2.40704040359455,0.0291115822505024,0.060395670639102,-4.57268189712455 +"Q7KK90",-0.123780871857949,21.0899032360164,-2.40239105253529,0.0293790973245832,0.0608749494874593,-4.58126026655799 +"Q9VMU2",-0.109439074172426,16.293215342346,-2.39884856299822,0.0295844834155282,0.0612244644380905,-4.58779140723007 +"Q9VMQ5",0.288963214829124,13.5418511673056,2.38625543566275,0.030325641187236,0.0626805074353279,-4.6109736282724 +"P54352",0.198251178365808,16.1096878591445,2.37902935827392,0.0307588046731503,0.0634971363797212,-4.62425084592257 +"P22465",-0.124418372020994,22.6948147991048,-2.37432003054457,0.0310442373379347,0.0639415937478072,-4.63289389017466 +"Q9VL69",0.236567903441284,16.0415248361956,2.37421266269244,0.0310507739422805,0.0639415937478072,-4.63309085139337 +"Q9VLS5",-0.19763690640765,14.6124685115176,-2.37294999919363,0.0311277429151967,0.0640210544790975,-4.63540684139531 +"Q9VMS1",-0.127106318068527,22.3898625006807,-2.36620324437876,0.031542066441881,0.0647532483313281,-4.64777221857966 +"Q9V3T8",-0.241710984561017,15.5803203003116,-2.36589070024133,0.0315613854276797,0.0647532483313281,-4.6483446534866 +"Q0KI98",0.162742660985177,16.6256915397041,2.35962128269894,0.0319512734941676,0.0654726341379257,-4.65981992637834 +"Q9VY78",-0.175972641657133,18.7754759507881,-2.35820460219493,0.0320400014627969,0.06557389256435,-4.66241100728229 +"Q9VBI3",-0.150739001205462,18.6099066652584,-2.35672970861352,0.0321326218626404,0.065670916754092,-4.6651077926703 +"P09040",-0.281919502184126,16.5098125004007,-2.35619678340643,0.0321661504724779,0.065670916754092,-4.66608203320608 +"Q9VYV4",-0.159682994925564,15.5360331227743,-2.35363986206118,0.0323274759929451,0.0658207816409481,-4.6707549181598 +"Q9W229",0.152562335217009,19.1574123724685,2.35322189509613,0.0323539193778908,0.0658207816409481,-4.67151854679348 +"Q0E8C8",0.172599435479968,17.616232053992,2.3528825043622,0.0323754064824488,0.0658207816409481,-4.67213856970114 +"Q8IR45",-0.178762668703518,14.8153645598709,-2.35253534822639,0.0323973991170374,0.0658207816409481,-4.67277273596235 +"Q9VMU0",-0.171871146861626,21.1344903415807,-2.34886288454726,0.0326309155276469,0.0662145585159549,-4.6794787273992 +"Q9VTB0",-0.174322038580746,17.0111822847905,-2.34727496318885,0.0327323744010017,0.0663397332938893,-4.68237679044157 +"A8Y535",-0.168530972921676,22.0363805135977,-2.34554195850178,0.0328434419246994,0.0664840547699012,-4.68553859568093 +"Q7K0B6",-0.142625051644345,20.189040444565,-2.34407320520537,0.0329378511490427,0.0665943463231555,-4.68821742883519 +"Q9VZZ6",0.1326970740406,18.4276476323308,2.34278466948487,0.0330208863995792,0.066614118670609,-4.69056691958047 +"Q9VBT1",0.134911515381701,16.3102333511685,2.34268211407207,0.0330275036814111,0.066614118670609,-4.69075389111376 +"A0A0B4LFA6",0.123695192022151,19.5302978862524,2.33213218311081,0.0337149279278034,0.0678905306445639,-4.70996720082525 +"Q9GYU8",0.547637078848044,12.5654381050296,2.33172455517319,0.0337417565373762,0.0678905306445639,-4.71070874443203 +"Q9VND7",-0.18641963223198,13.9538334154751,-2.33108400512386,0.0337839557744835,0.0678935400383595,-4.71187388877252 +"Q9V931",-0.508960961009231,17.6305092036248,-2.32463408183168,0.0342116466059635,0.0686292274217997,-4.72359769297853 +"O97479",0.232516423513502,17.9029654606802,2.32432416557576,0.0342323244693869,0.0686292274217997,-4.72416062945612 +"Q9VKY3",0.130873879865014,18.7649411749134,2.32231546002255,0.0343666317026798,0.0688157763266146,-4.7278084077932 +"Q9VHL2",-0.0791803574014445,20.6539980627482,-2.31884562467286,0.0345997998125639,0.0691995996251279,-4.734106041764 +"Q9VH25",0.139751853458261,16.2151233629775,2.31801925575003,0.0346555491559078,0.0692280910084482,-4.73560521222749 +"Q9VU70",-0.339304054185911,14.7443793313778,-2.31609304038371,0.0347858248782747,0.0694052104030648,-4.73909869739676 +"Q9VB17",0.131250207744321,15.6066107364688,2.30619307035957,0.0354626690507178,0.070590454364541,-4.75703186878096 +"Q9VHC7",-0.118314037396857,19.9396703558763,-2.30616640256545,0.0354645088474133,0.070590454364541,-4.75708012603442 +"Q9VPU4",-0.370093992417557,12.954192863352,-2.30399709416786,0.035614468294778,0.0708044494823476,-4.76100474347342 +"Q9W1V3",0.180774159950747,16.3824484106225,2.30138017947363,0.0357961606780893,0.0710809476322058,-4.76573678325975 +"Q9VVH3",-0.120414534592573,19.8895513017205,-2.29014034253646,0.0365864624256035,0.0725638755361554,-4.7860316527558 +"Q9W2E8",-0.159138680072655,19.3372938511048,-2.28783593685016,0.0367504963010788,0.0728026458790967,-4.79018657525116 +"Q9XZ19",-0.155248019244626,16.0978403447937,-2.28720819061185,0.0367953001410942,0.0728049355104925,-4.79131807039592 +"P25007",-0.104742672632966,23.8403695104364,-2.28571158925785,0.0369023226687957,0.0729301827151081,-4.79401504243563 +"Q9VGK3",-0.148719504189248,17.0961591176039,-2.27661643746433,0.0375590087811376,0.0741401498780326,-4.81038653644466 +"Q960X8",-0.133564424732196,18.4074759733976,-2.27394932499423,0.0377536413770839,0.0744362574668747,-4.81518133669898 +"Q7K3D4",0.149820296652852,18.5501612876025,2.26691796899928,0.0382712827529831,0.0753677681605382,-4.82780869068903 +"Q9W236",-0.15701649775537,16.5237999397492,-2.26630091131915,0.0383170250126635,0.075368865237173,-4.82891592114564 +"P13677",-0.235542973497999,17.018702021655,-2.26503780396338,0.0384108180017079,0.0754643632825075,-4.83118193988467 +"Q9VGE4",-0.121830212969469,15.6671851780755,-2.26265501147631,0.038588338118613,0.0757239388021723,-4.83545497579431 +"Q9VGL0",-0.289125064455819,12.8872030662109,-2.25907259582505,0.0388566734278688,0.076160906319254,-4.8418750880488 +"Q9VIM0",0.104414116111993,18.067886997628,2.24842570451498,0.0396644768991133,0.077652989985588,-4.86092568859633 +"Q7K180",-0.165581530986413,16.2955493980888,-2.24552228055046,0.0398874690244852,0.0779980050795326,-4.86611301613386 +"Q9VQB4",-0.0883962833604883,21.7795675142566,-2.24378051220401,0.0400218026620636,0.0781690478223912,-4.86922328998822 +"Q9VDL1",-0.170287223451103,14.8424546770046,-2.23966792204011,0.0403406606987241,0.0786996749069847,-4.87656232944178 +"Q6NL44",0.239495848073041,15.2814602183536,2.23827079297075,0.0404495207509817,0.0788198605287821,-4.87905400717407 +"Q9VN91",0.19502002993697,19.6171426144856,2.23639314496727,0.0405962524733891,0.0790134762259196,-4.88240142202123 +"A8E6W0",-0.156333927954853,16.4198914790276,-2.23392977140227,0.0407895086046182,0.079297086657929,-4.88679090238131 +"Q9VC53",-0.125507851593053,17.8703755713381,-2.23195902605131,0.0409447336836448,0.079414935860579,-4.8903008105104 +"Q9W329",-0.128860113318515,16.4551060312353,-2.23154585765243,0.0409773464178899,0.079414935860579,-4.89103646711321 +"Q9VY91",-0.41089739763305,16.9471605967168,-2.2313085868445,0.0409960859104324,0.079414935860579,-4.89145890254939 +"P54353",-0.210405265483885,18.884946922046,-2.2307457239721,0.0410405723691961,0.079414935860579,-4.8924609291362 +"Q9VDI5",0.196958475015999,16.6701730126208,2.22993927400662,0.0411043893195937,0.0794443968548534,-4.89389637433848 +"Q9VHI1",0.16302367638453,14.2265818038507,2.22935030727479,0.0411510544859672,0.0794443968548534,-4.8949445429892 +"P25455",0.169090033926947,15.812939069084,2.22345096506717,0.0416212009213116,0.0802591481349686,-4.90543569825693 +"Q0E8U4",-0.252444054782663,16.215260433161,-2.22011433644215,0.0418893203880039,0.0806828942346311,-4.91136316859069 +"Q9VXE8",-0.171277381433812,16.2342135211109,-2.21105568204151,0.0426253623539181,0.0820058874352197,-4.92743281020348 +"Q9VEP9",-0.135933951743652,17.5441425189941,-2.21012270448116,0.0427018483847186,0.0820242408505838,-4.92908595968493 +"M9PFN0",-0.123875187721293,16.681373867901,-2.20974008532277,0.0427332525774325,0.0820242408505838,-4.92976382178623 +"Q9VSC5",-0.0933378561963139,19.4279197575058,-2.20814778160915,0.0428641745206879,0.0821809690810429,-4.93258415837142 +"Q9VA32",0.169173741660913,17.2328770211429,2.20535790757535,0.0430944614675301,0.0824426765833354,-4.9375231491735 +"Q9U9P7",-0.189252337480047,16.5982610564125,-2.20529667424703,0.0430995287653888,0.0824426765833354,-4.93763151620798 +"Q9Y171",0.363028862968081,15.0908287608899,2.20258213965732,0.0433247239033226,0.0827785102757642,-4.94243397826888 +"Q9W2D6",-0.129361796456145,19.6086359814014,-2.2002985045412,0.0435150176391252,0.0830469673021292,-4.94647174596067 +"Q9V6U9",-0.097879024360541,21.8925138877977,-2.19946576319138,0.0435846022373247,0.0830847046078373,-4.94794360448141 +"P16620",0.157768736263224,17.3350498307145,2.19663032397687,0.0438223092605283,0.0834424792768964,-4.95295304361884 +"Q9VXP4",-0.103882905477828,17.9865149678024,-2.19572677072443,0.0438983104037642,0.0834425260388132,-4.95454867068485 +"Q9VLW8",-0.278802601000562,14.1542319372449,-2.1954408605141,0.0439223848093993,0.0834425260388132,-4.9550535021514 +"Q9VZD8",-0.199941024847236,13.6842350667252,-2.19346228106949,0.0440893224781489,0.0836143037506896,-4.9585461451409 +"Q8MKK0",-0.515338439880727,15.8085060860088,-2.19318148081535,0.0441130619308195,0.0836143037506896,-4.95904168922418 +"Q9V9A7",0.432372063353737,16.0776581630576,2.188682515357,0.0444950343221086,0.0842425848459446,-4.9669767759871 +"Q9VP77",-0.15611925854507,15.3543487810788,-2.1831947312562,0.0449651108408202,0.0850360599574695,-4.97664441760876 +"Q9V3E3",0.225435257844953,15.0275365621174,2.18083246113189,0.0451688733598271,0.085324666777114,-4.98080204923338 +"Q9NHD5",0.186454220950298,16.5803829317287,2.17869663090281,0.045353839881671,0.0855771548898499,-4.98455911745993 +"Q9VW14",-0.192086727397065,13.7546804927289,-2.17647686055419,0.0455468190434476,0.0858441741971418,-4.98846179941894 +"Q9Y0Y5",0.105578248469701,18.6274916578767,2.17176246626838,0.0459591969843562,0.0865236349547474,-4.99674347217442 +"Q95R34",0.178798631298593,15.2945562890114,2.16431327165428,0.0466178431148435,0.087663068464714,-5.00981003787547 +"A1Z7S3",0.0976206303080218,20.0392719829573,2.16373263448285,0.0466695472402074,0.087663068464714,-5.01082753314739 +"Q9VLP3",-0.17037852116546,17.5049675819661,-2.16083504071586,0.0469283634949061,0.0880500678397114,-5.01590305209963 +"Q9VVC8",-0.103806966541251,16.6287960781737,-2.15617113366627,0.047347737139331,0.0887371073577574,-5.02406493407218 +"Q9VXC1",-0.129635444704096,18.3182581743349,-2.15448732391228,0.0474999925928141,0.0889225450559078,-5.02700931742756 +"Q4V5H1",0.181433666997247,14.9747344849668,2.14634036586847,0.0482430753617833,0.0901704370003952,-5.04123814051981 +"Q9VJ58",0.118047766828319,17.200920339582,2.14599621455606,0.0482747003845042,0.0901704370003952,-5.04183857441208 +"Q9VCB9",-0.138240769628137,16.9757986090583,-2.14485778492247,0.048379450264207,0.0902650145869096,-5.04382440306423 +"P35992",0.138674016656843,15.8704760710473,2.14060675996567,0.0487724551472405,0.0908965979727342,-5.05123472613113 +"Q9VC67",-0.1595919824478,15.1425192935636,-2.13758446266024,0.0490536541054962,0.0913186328660353,-5.05649835469329 +"Q9VKR4",0.163262179047397,19.2044761663378,2.13484241292175,0.0493100714457482,0.0916936445613244,-5.06127044711283 +"Q3YMU0",-0.0808255525907171,23.1502296729836,-2.1338337120663,0.0494047086557342,0.091767320754749,-5.06302509806158 +"Q24492",0.145836872143573,15.1695905390193,2.12831174539864,0.0499257582994496,0.0926319964888564,-5.07262272207931 +"Q9VR31",-0.129206609002953,17.2876455497586,-2.12751324374199,0.0500015221752886,0.0926694877648682,-5.07400947127489 +"Q8I941",-0.145738791754621,19.0311556260169,-2.1243982532843,0.0502980941340483,0.0931156726033214,-5.07941655051409 +"Q9V429",-0.0900379403624711,22.333281791088,-2.12290040727553,0.0504412771312617,0.0932772175775438,-5.08201502200134 +"Q9VLS4",-0.163735083812956,20.5854762539263,-2.11646917921486,0.0510603302178827,0.0943174206018032,-5.09316064354874 +"Q9Y0Y2",-0.126876261498687,19.4917901615721,-2.11100225845831,0.0515920513980445,0.0951941833317901,-5.10262059698877 +"Q9VMV5",-0.107711216446646,17.6142726181127,-2.10723484347563,0.0519614350266361,0.0957698051098662,-5.10913195052332 +"Q9NHE5",0.264848816750957,15.6931152590081,2.10352524753085,0.052327523923645,0.0963380904024723,-5.1155371508749 +"Q9VKQ2",-0.151759155419263,15.9684084230538,-2.10181952385765,0.0524966509482485,0.096469153022212,-5.11848027334527 +"Q9W1G7",0.093688336674898,18.909232739313,2.10164097993075,0.0525143830600531,0.096469153022212,-5.1187882642522 +"Q9VEA1",0.123192262654221,18.2271766326935,2.10069125242221,0.0526087978858828,0.0965362759886167,-5.12042631665051 +"Q94529",-0.0953596309385247,19.6401292345299,-2.0997907976456,0.0526984583786942,0.0965945368963317,-5.1219790096151 +"O15971",0.164614921072806,17.1779462284511,2.09604468274016,0.0530729768475735,0.0971742320326593,-5.12843466476407 +"Q9VYS2",-0.211887686932448,14.9817778179093,-2.09077524834506,0.0536039268927538,0.0980387610275365,-5.13750468536075 +"Q9VKM3",-0.14112999574418,21.7846978250863,-2.08865511331359,0.0538189243530282,0.0983241684784786,-5.14115041087945 +"Q9VN50",0.137732080987782,17.8567659741871,2.08768476970761,0.0539175880873615,0.098396648719605,-5.14281830398907 +"Q9VWW2",-0.350915569127483,15.1819099648194,-2.07815870915217,0.0548950360709431,0.100070951001457,-5.15916950192194 +"P38040",-0.200186174228307,19.0316468906913,-2.07625239531887,0.0550925784765336,0.10032142019526,-5.16243663585479 +"Q9VZW7",-0.251289096596903,13.8790692907301,-2.07180888153053,0.0555555698527472,0.101008740365008,-5.17004565030305 +"O46106",-0.13304806923496,16.9949730728889,-2.07099394466229,0.0556408678060282,0.101008740365008,-5.17144014880955 +"Q9VF23",0.457987592914579,15.386895198889,2.07089055406683,0.0556516980788021,0.101008740365008,-5.17161704613717 +"Q9VKC7",0.272841003630578,13.77694344959,2.06698135088938,0.0560626100200407,0.101625463885946,-5.17830191342765 +"Q9VYT6",0.182643074994107,16.4189831722274,2.06650054603934,0.0561133406708368,0.101625463885946,-5.17912361680315 +"O62530",-0.161434143385831,15.6804111760589,-2.06554132202577,0.0562146757914509,0.101698567483883,-5.18076262597679 +"Q9VSL3",0.118139939783266,22.4632904713458,2.05755973684045,0.0570643880119808,0.103123942799549,-5.19438402541061 +"Q9VWD5",0.20337251332305,14.4636649671853,2.05234727163459,0.0576256240333333,0.104025477151082,-5.20326358218093 +"Q9VP55",0.131738841461843,17.1281478888109,2.04969096700987,0.0579135693957725,0.104432252705025,-5.20778375972438 +"Q9W0J9",-0.129941873564981,18.4250195790406,-2.04815868076093,0.0580802674961836,0.104619747498525,-5.21038971063254 +"Q9VQ93",-0.180933963895267,16.6990907946525,-2.04388340555402,0.0585476960730307,0.105347957982541,-5.21765479995085 +"Q9GU68",0.12062703145255,22.2183295334764,2.04270241354882,0.0586774214341544,0.105467606629493,-5.21966017065183 +"A1ZBK7",-0.163858997537176,17.5826493128679,-2.03888505591632,0.0590985331682056,0.106110175806853,-5.22613767996945 +"Q9VW00",-0.132744055290674,15.772342825112,-2.03794703531607,0.0592024320367834,0.106182426491779,-5.22772830978515 +"Q9VBC1",-0.213430396857824,13.2576699576703,-2.03624949697407,0.0593908817920467,0.106385361425083,-5.23060581493662 +"Q9VK18",-0.149058846051544,14.5787447700412,-2.03577963344056,0.0594431395972285,0.106385361425083,-5.23140204091091 +"Q9VKW5",0.186142227959397,17.0256213774463,2.03471945262987,0.059561206049913,0.106443881236118,-5.23319822692917 +"Q7JV69",0.150364266087449,16.1491020418716,2.03422864981813,0.0596159364126054,0.106443881236118,-5.23402957681074 +"Q9VE12",-0.131490032299942,15.6585593211567,-2.03362774523761,0.0596830068721253,0.106443881236118,-5.23504726724395 +"Q9VEV7",0.607278813553419,12.9890221246499,2.03319725375692,0.0597310988231451,0.106443881236118,-5.23577624078387 +"Q9W3T9",-0.0949135367748077,18.6321929634589,-2.02780635947323,0.0603363356864868,0.107407692556094,-5.24489743719284 +"Q9VMR0",0.134158953933877,17.3191895471012,2.02441930908397,0.0607194534103295,0.107974465126257,-5.25062109508282 +"Q7K2N0",-0.170038476972401,15.4331606145847,-2.02348926543228,0.0608250400047111,0.108047035918912,-5.25219178096856 +"O44386",0.100053988947852,16.8803116333893,2.02005451332064,0.0612164332071216,0.108538264388505,-5.25798889379929 +"Q8IN51",-0.186508007505235,17.1056454749177,-2.01947478635541,0.0612827193232187,0.108538264388505,-5.25896678688095 +"Q0E8X8",0.241466982656036,19.8019937928549,2.01935180356818,0.0612967896007022,0.108538264388505,-5.25917421548594 +"Q8I725",0.140927970388891,18.9219100194765,2.01597847754736,0.0616838749692211,0.109107850952981,-5.26486098489612 +"Q9VYV3",0.0878318039003716,20.5132311278314,2.01474364438006,0.0618261258717337,0.109243620714038,-5.266941299624 +"Q9W0C1",0.101262567062996,21.3053258646223,2.00756999864065,0.0626584367691284,0.110597113789319,-5.27901209051655 +"Q94533",-0.144637596939665,15.2846823564665,-2.00606682509025,0.0628341256572117,0.110789980545697,-5.28153825221821 +"Q9VSY8",-0.148020104792106,18.0330451217921,-2.00534173592309,0.0629190330478593,0.110822541841425,-5.28275640942792 +"P08646",0.162872159682784,18.9141711463146,1.986747367593,0.0651323304365072,0.114599923173095,-5.31390727928406 +"O97102",0.140961938362043,21.0496595040098,1.98390178248481,0.0654772038498614,0.115057567168074,-5.31865943895185 +"Q7KTA1",-0.274749415804632,17.0984621039577,-1.98346415623609,0.0655303889746226,0.115057567168074,-5.31938992437137 +"M9PDU4",-0.133501906236088,22.5434736403093,-1.97783521545178,0.0662179777285555,0.116142572924533,-5.32877728181906 +"Q9VIL2",-0.21057491300976,15.998396991885,-1.96739683691397,0.0675103637788503,0.118284965108322,-5.34614355712189 +"Q9VK11",0.133031014747434,18.7485880803531,1.96090097848354,0.068326095617117,0.119588591279487,-5.3569231359729 +"Q9V773",-0.141086534743168,15.5495302690913,-1.95814321444454,0.0686750935927617,0.120073434080426,-5.36149309627237 +"Q24050",-0.103140841304798,16.6331445992496,-1.95469466819589,0.0691137762457042,0.120713904479408,-5.36720236534137 +"Q9VCJ8",0.0794867507106325,17.9012610217986,1.95236559638897,0.0694114826766396,0.121107063916982,-5.37105487442619 +"Q7K568",0.21615493629205,16.1116201461339,1.95098573593716,0.0695884046694965,0.121288880865956,-5.37333599921707 +"Q7K486",-0.108985898241265,17.6059805588514,-1.94123288843025,0.0708505338048946,0.123359802073658,-5.38943136318953 +"Q8T3X9",-0.133598102822912,18.2902065098095,-1.93835455959047,0.0712269463549133,0.12388586706986,-5.39417226022162 +"Q9VNA3",-0.104366486252705,18.6210485266202,-1.9346492440271,0.071714160223893,0.124603353389014,-5.40026903549019 +"Q9W3K6",0.115227992315939,16.2701186024433,1.92819599202604,0.0725698712497092,0.125859723233387,-5.41087044566571 +"Q9V3H2",0.140488104666122,18.4285811453219,1.92805880554655,0.0725881617209345,0.125859723233387,-5.41109558271038 +"Q9VG97",-0.0895321226857071,20.0762224672286,-1.91880883155099,0.0738310278398856,0.127881780308338,-5.42625326400084 +"Q9VIH3",-0.202015749936518,13.778444222652,-1.91559641889232,0.0742671159446021,0.128503681945639,-5.4315069639866 +"O61722",-0.113250926893084,18.9399706572559,-1.91362403053229,0.0745360147398143,0.128835308379285,-5.43473001737735 +"Q7K159",-0.204754779535397,14.6100344569864,-1.90957387538669,0.0750909213996671,0.129660100305015,-5.44134195194812 +"P36241",-0.118222745662191,19.790127525553,-1.90890611403505,0.0751827658243962,0.129684439912195,-5.44243125758616 +"O97418",-0.0857647537526454,21.0072931927883,-1.90200506338976,0.076137862391069,0.131196233954859,-5.4536751010155 +"Q9I7X6",0.206503963831977,14.8254133677801,1.90096711790591,0.076282450286912,0.131309728667254,-5.45536405370691 +"Q9VJN0",-0.203854054638988,17.5332196901205,-1.89101377607649,0.0776815162226875,0.133580174288085,-5.47153132208799 +"P42207",0.127168318352258,16.003793417872,1.88829042327236,0.0780682999900394,0.134107028201221,-5.47594573366263 +"Q9VDT5",-0.181575113127678,19.077019834762,-1.88170448573218,0.0790107991417143,0.135586433095041,-5.48660487379582 +"Q9VKV9",0.13796811045631,15.6154099542281,1.8808695703508,0.0791310060034569,0.135653153148783,-5.48795450591581 +"Q59E14",0.164667270827268,14.5774753958477,1.87234490637452,0.0803677308119534,0.137631801842236,-5.50171316709017 +"Q9W2Y3",-0.182877926232996,16.4173162369327,-1.86947805016674,0.0807875056045704,0.138195205701492,-5.50633145073771 +"B7YZT2",-0.181884185227975,18.4225236876308,-1.86896780332691,0.080862422520777,0.138195205701492,-5.50715295471045 +"Q9VN21",0.0722008398649407,22.0433449873922,1.86323940832391,0.0817077582752325,0.139496971139292,-5.51636609537904 +"Q9VXQ5",0.0696756260340692,20.3553401547352,1.8599407779808,0.0821981033132581,0.14019063019071,-5.52166331838247 +"Q95RF6",0.173348906109002,17.3072302482315,1.85565424868509,0.0828392189577411,0.14112492604406,-5.52853816725227 +"Q9VEB3",-0.268091495924523,12.3281923341598,-1.85514869999816,0.0829151244143756,0.14112492604406,-5.52934832062156 +"Q494G8",-0.110351353359398,15.1141777705739,-1.85340529492521,0.0831773629018639,0.141269385989367,-5.5321410991025 +"Q9VAD4",0.29898602766599,13.3364121012568,1.85315470515354,0.083215116624396,0.141269385989367,-5.53254238522323 +"Q7K860",-0.381250843378535,20.5263825897755,-1.852896188544,0.0832540805920552,0.141269385989367,-5.53295632922276 +"Q9VGT8",0.153536227036897,15.3189516366013,1.8496745163694,0.0837410198136894,0.141951240903693,-5.53811189983841 +"Q9VBS7",0.0696118782317967,19.825321129059,1.84848823844694,0.0839209572678134,0.142111834236257,-5.54000884510994 +"Q24090",0.139174873475485,15.8431289071242,1.84165437878296,0.0849642484953669,0.143732623215286,-5.55092166889287 +"P40417",0.0917762126207222,19.8271230380465,1.83206735422552,0.0864472831598659,0.146000980330458,-5.56618763689292 +"Q9VMM6",-0.206171508198803,18.3751424308599,-1.83185624600082,0.0864801969823096,0.146000980330458,-5.56652322520573 +"Q9V4E0",0.223813393344148,18.4524425057857,1.82792118866849,0.0870957501997491,0.146891518031528,-5.57277406979175 +"Q9W077",-0.108484196217049,20.8249080724984,-1.81815444674867,0.0886403682785824,0.149251065862866,-5.58825134583019 +"Q9VKX2",-0.0775679030453276,23.1080530454381,-1.81794507477525,0.0886737447662472,0.149251065862866,-5.58858255323227 +"Q9VJD1",-0.0999935004216859,18.5407889818358,-1.8163986340706,0.0889206115954099,0.149515705787443,-5.5910281221806 +"Q9VG33",-0.134141643047304,19.9400348092567,-1.81309723701169,0.0894496696194113,0.150253825705114,-5.59624452860736 +"Q4QPU3",0.286898624626977,14.4782059240017,1.80713775651508,0.0904117515340548,0.151717104183907,-5.60564537311058 +"P25171",-0.15166929702549,16.7632053532891,-1.80649845592894,0.0905155001828098,0.151738547040127,-5.6066526574114 +"Q9W1F7",0.0867742746695264,20.3293184925302,1.80176872413344,0.09128633909199,0.152877122093815,-5.61409767546404 +"Q9V3L7",0.130004225516561,17.7097589212558,1.79589328099734,0.0922519788424335,0.154339318665175,-5.62332851976484 +"Q9VK58",-0.62533879033508,13.1365312694011,-1.78788433111955,0.0935827861425067,0.156408905095893,-5.63587970354319 +"Q8SZM2",-0.0942904387055599,21.2541927776403,-1.78499840802817,0.0940664596276857,0.157059914573553,-5.64039339626252 +"A0A0B4KGY6",0.086410995528972,21.7701011619129,1.77628040842976,0.0955409811072725,0.159251715703226,-5.65399969744427 +"P14484",0.117046062956323,19.260130280931,1.77610929856116,0.0955701243518762,0.159251715703226,-5.65426631406733 +"P53997",-0.311948699674932,17.3724232563893,-1.76762108265373,0.0970256830625112,0.161437145512679,-5.66747111987318 +"Q9W503",0.0871047056331697,17.9574976418074,1.7673342140182,0.0970752139983313,0.161437145512679,-5.66791666347406 +"A0A0B4K7J2",0.188912156677526,15.7385480246868,1.76481639079085,0.0975108975622254,0.161875869635718,-5.67182511847032 +"Q9VWD9",-0.0761654405568173,19.4376265104402,-1.76415867809067,0.0976249907047428,0.161875869635718,-5.67284549027671 +"Q9VJQ5",-0.184810626434551,14.3260901627867,-1.76412883256972,0.0976301707754988,0.161875869635718,-5.67289178649723 +"Q9VCA5",0.186004390740321,14.2288016641181,1.76275202837929,0.0978693953717013,0.161967324493065,-5.67502691599373 +"P08928",-0.0731239992210817,22.7236429330293,-1.76269374177961,0.097879534226025,0.161967324493065,-5.67511728178317 +"Q7JX94",0.329786065968538,12.3127334417105,1.75542972499154,0.0991503405925957,0.16390759971105,-5.68636371965082 +"Q7JUN9",-0.413315061189319,13.4694893298639,-1.75231113600852,0.0997003508004061,0.164653648648591,-5.69118259968141 +"A1Z7H8",-0.176655212223023,14.6864032875859,-1.74913949531863,0.100262459956486,0.165418183192304,-5.69607761995899 +"Q8MKN0",0.152707650547512,16.6201769515557,1.74664741920776,0.100706076954931,0.165985905494887,-5.69991968265084 +"Q9VU75",0.0841490007188241,18.2515855139063,1.7424695981748,0.101453633642311,0.167052972275789,-5.7063524925131 +"Q9V3W2",-0.0833337261163294,21.5528556616294,-1.73587279274221,0.10264392332483,0.16884621706688,-5.71648899857714 +"Q9W4Y1",-0.152199485979512,17.5529511047564,-1.73012614364696,0.103690751930489,0.170400171645376,-5.72529819785286 +"Q9VIW6",0.193445771609817,15.0183350224211,1.72931858363811,0.103838604924066,0.170475189973762,-5.72653455948441 +"Q9V9U7",0.142832185134512,17.8296085896576,1.7233279963335,0.104941159414762,0.172115883877899,-5.73569394276324 +"Q9VGU6",0.0928640659201996,18.5755911351436,1.72099170699102,0.105373910164227,0.172655876379107,-5.73926024431932 +"P00334",-0.101764414498049,25.1946168948965,-1.7182129833154,0.105890639366093,0.173264728128754,-5.74349766765296 +"Q9VFP6",-0.0754029400839862,20.2216116606734,-1.71787709141304,0.105953251013986,0.173264728128754,-5.74400957416021 +"Q9W289",-0.13939773919116,17.4671601635844,-1.71358021529704,0.106757058559289,0.17424291246448,-5.7505521426156 +"A1ZB23",-0.229339880140522,15.8673299143689,-1.71356270164014,0.106760345646702,0.17424291246448,-5.75057878684087 +"Q9VJ28",0.101937732408381,18.9764010627754,1.71244838283905,0.106969670292058,0.174413890564177,-5.75227366584091 +"Q9VF51",0.106413452581712,17.6806669277574,1.71179512793452,0.107092550317079,0.174443724539929,-5.75326691979679 +"Q9VG73",-0.121850758040704,18.045500205732,-1.71116423467573,0.107211340720722,0.174466845192356,-5.75422593009416 +"P29746",0.0969983888930273,21.2001867950025,1.70822350622962,0.10776656354716,0.175199442491874,-5.75869292296955 +"Q7K1C3",-0.112691271658228,17.1107463168027,-1.70645848230447,0.108101008771786,0.175572037615715,-5.76137150889745 +"O97064",0.114119471598238,16.5169812575237,1.70578639847681,0.108228595718635,0.175608266204945,-5.76239096400015 +"Q8SZA8",-0.120109367924446,18.0239534725413,-1.70204049583478,0.108942112707377,0.176594211852191,-5.76806796652504 +"Q9VRZ7",-0.129130667252992,17.2305138955547,-1.70016577672397,0.10930074148757,0.177003530875017,-5.77090596132085 +"Q9VP18",-0.0985649510716229,17.1233685215656,-1.69233426347283,0.110810008053647,0.179262279159624,-5.78273844580222 +"Q9VQM2",-0.0843292102297148,20.1208291690672,-1.69181624128205,0.110910474875739,0.179262279159624,-5.78351980131122 +"Q9VZ58",0.0954365424396251,18.1196879992951,1.68957883255925,0.11134531361885,0.179790883946023,-5.78689270491191 +"Q9VCT4",0.318592346750178,13.4078685773468,1.68334815719113,0.112564044415434,0.181583003950623,-5.79626937414027 +"O18404",-0.0963080867312094,23.0004786055228,-1.68173651846971,0.112881160023833,0.181735338025838,-5.79869089630408 +"Q9VLP2",-0.170192200740434,19.3345621578315,-1.68136373217489,0.112954621823782,0.181735338025838,-5.79925078915308 +"Q9W396",-0.087887375734665,16.6450152180121,-1.68120791806692,0.112985339048438,0.181735338025838,-5.79948478325254 +"Q9W1M9",-0.220825594507351,14.2935878377721,-1.68035526196415,0.113153560049539,0.181735515649326,-5.80076499734182 +"Q9VB10",0.0782805348294531,20.9923275423704,1.6801030646164,0.113203357769574,0.181735515649326,-5.80114357169318 +"Q9VIH1",0.100972562548586,15.7525026860657,1.67690082001507,0.113837310833487,0.182577533144478,-5.80594707682606 +"A1Z8Z3",-0.121278446603633,19.9766759157919,-1.67492041305585,0.114230911387755,0.183032814788449,-5.80891461827981 +"Q8T9B6",-0.108505676119137,19.5012820686822,-1.66937542240519,0.115339234608858,0.184631327569649,-5.81721065697434 +"Q9VYF0",0.1121082242512,16.1787616658515,1.66830077092196,0.115555106578383,0.184799537653637,-5.81881628214932 +"Q9W022",-0.0890530889347154,21.1915532082581,-1.66400754732436,0.116421001397819,0.186005967750538,-5.82522361232549 +"Q9W1X8",0.0777752937224641,16.1155487633053,1.66153266531048,0.116922699711524,0.186472319522451,-5.82891200714815 +"O76521",0.11428799906553,16.0865045052312,1.66146482367168,0.116936478549451,0.186472319522451,-5.82901306015617 +"Q9VV60",-0.0779563914982973,20.0499672055497,-1.66062230706186,0.117107713021325,0.186567015586983,-5.83026778632577 +"Q8IQB7",0.196055698715874,14.4316984834557,1.65698010472364,0.117850452865322,0.187443292665597,-5.8356868948794 +"Q9VE08",-0.15752194534311,14.6134434284998,-1.65682338841425,0.117882502401805,0.187443292665597,-5.83591988249089 +"Q9VM50",0.155408317678759,13.5051733527508,1.6555473001699,0.118143750994634,0.187679787294332,-5.83781645282536 +"Q9VJC7",-0.126827322634323,18.6015291215002,-1.65120088732991,0.119037325217825,0.188919370564541,-5.84426863401316 +"Q9VDE2",-0.104448476131246,19.5444834559891,-1.6495961615763,0.119368708258426,0.189265214234842,-5.84664784128445 +"Q9VSY4",-0.0645596833759541,20.4233132001784,-1.64727547299706,0.119849346469769,0.189846828026187,-5.85008570305572 +"Q9W141",-0.077586450804553,21.8629555504522,-1.64371543114255,0.120589906395606,0.190838675396461,-5.85535297873966 +"Q9TVP3",-0.12165140953925,22.91903759782,-1.6425998076046,0.120822787449846,0.191025980536818,-5.85700196742922 +"Q9W0D3",0.204527425018892,12.7992936690734,1.64087001120251,0.12118463926899,0.191416646118063,-5.85955721028761 +"Q9VXA3",-0.0959293531115541,17.7998032703345,-1.63143078223359,0.123175668125093,0.194377497098066,-5.87346755481128 +"Q9VTC1",-0.107706942571381,15.825699492882,-1.62309332900561,0.124957596862411,0.197003092217866,-5.88570735295775 +"Q9VXA9",0.134075648140907,14.2713534025836,1.61833944236088,0.125983485396185,0.19843291184215,-5.89266651501344 +"Q8SXC2",0.237744080976634,14.7302810371679,1.61070054261242,0.12764706648817,0.200863497077611,-5.90381879633761 +"Q9VE75",-0.157897705040021,15.4468058009616,-1.60918701131291,0.127978900820657,0.20119585916009,-5.90602401583485 +"Q6NLJ9",-0.187070798883461,15.1427512647721,-1.60783218554693,0.128276565098997,0.201473927104639,-5.907996754119 +"O18335",-0.0658888929497685,21.6469906656247,-1.60565330670153,0.128756520494718,0.202037512874121,-5.9111669089776 +"A1Z7H7",0.088155048330389,17.86839760322,1.60451900152945,0.129006987826835,0.202240277908986,-5.9128160555794 +"Q9W4U2",-0.14591307347866,18.5773010952399,-1.6038178670408,0.129162014261186,0.20229318289921,-5.913835008801 +"Q9VCR9",-0.0912250764099447,19.3298423332831,-1.59602929171059,0.130894855829167,0.204814840077908,-5.92513276761308 +"P42325",-0.0806805956846794,20.0885314661117,-1.59030558329032,0.132180900660223,0.206473616138346,-5.9334103177135 +"Q9V420",0.0984375094298127,17.5231295704785,1.59020972033108,0.132202531196495,0.206473616138346,-5.93354877256316 +"D0UGE6",-0.195937842837351,15.2701437792784,-1.58422749661477,0.133558338189307,0.208395985126066,-5.94217708001385 +"Q7KNM2",-0.0839364274476395,19.6235813320455,-1.5766001301593,0.135304140613331,0.210922716395361,-5.95314438715396 +"Q9VGR1",-0.182349279044166,14.1539815884489,-1.57390804760288,0.135924934672602,0.211692615344444,-5.95700621973375 +"Q9VD00",-0.0709280698575725,17.917969749388,-1.57268600397494,0.136207535006236,0.211934858573136,-5.95875769190634 +"Q9VVI2",-0.338808232031822,13.7600533686144,-1.57125532614875,0.136539016067688,0.212252636347534,-5.96080694015156 +"Q9VH39",-0.203981985748804,18.3987260339609,-1.5697392845999,0.136891022322282,0.212419719240346,-5.96297699321276 +"Q9VWT3",-0.109750543788591,14.2984685763998,-1.56969550880361,0.136901197951662,0.212419719240346,-5.9630396311982 +"Q9V3Z9",-0.0819308523649127,21.6942295396458,-1.56755598059734,0.137399311251849,0.212994471345803,-5.96609950700428 +"Q7JW03",-0.148215086767895,17.169470865222,-1.56303765758451,0.138456293683076,0.214433702751505,-5.97255154449025 +"Q9VWX8",-0.0739057366155436,20.542046526305,-1.56137204664935,0.1388476683008,0.214840362454298,-5.97492659287524 +"Q24400",-0.0892949318973209,21.4594952140167,-1.55409774640057,0.140567933638249,0.217300568404633,-5.98527774730668 +"Q9V3Y2",-0.0894333337121402,17.877423384072,-1.5446418969482,0.14283101301544,0.220594564546069,-5.99868068798511 +"Q9VI64",-0.0778326415927424,20.9025283628525,-1.54062915236331,0.1438006421484,0.221886652269686,-6.00435043354826 +"Q9VS44",-0.101452308704028,15.1207956322851,-1.53902004987586,0.144191017864195,0.222283380589166,-6.00662096630384 +"Q0KI81",-0.0984668958351591,15.625269608381,-1.53386702300573,0.145447181594042,0.224012833701627,-6.01388050041803 +"Q9VV76",-0.134700682726077,16.32932786377,-1.52777591581716,0.146943894417013,0.226109239748687,-6.02243859288646 +"Q9VI04",0.184986815290372,16.3768863428065,1.52708124738252,0.147115409135336,0.226164518375798,-6.0234130252243 +"Q9VJG0",-0.634443636045191,13.111127835232,-1.52604579775089,0.147371375693308,0.226349405760993,-6.02486487767418 +"P45889",0.0908818141539385,19.1661946900088,1.52296991577151,0.148133952604704,0.226991991554833,-6.02917344869079 +"Q9VRU1",0.156588850521302,17.2560516871822,1.52294321512019,0.148140586754692,0.226991991554833,-6.0292108219064 +"Q9VSJ8",-0.157992524542717,15.7512155574891,-1.52220135960305,0.148325010956296,0.226991991554833,-6.03024901310398 +"Q9W1H6",-0.0945578276219123,17.1568914400105,-1.52216483780554,0.1483340952007,0.226991991554833,-6.03030011399797 +"Q7KML2",-0.337584622417069,13.5477892504771,-1.51799163453236,0.149375197839489,0.228235092596311,-6.03613326969394 +"Q9VA97",-0.115655962887413,18.5438759025509,-1.51749300056146,0.149500002881953,0.228235092596311,-6.03682945368729 +"O44226",-0.0562208650351614,20.1855438162052,-1.51726568272086,0.149556928182115,0.228235092596311,-6.03714677492578 +"Q9VC05",-0.156120810840344,14.8715855011303,-1.51524630292685,0.15006342333766,0.228798711268022,-6.03996416186625 +"Q9W254",-0.0667293882927034,18.1491978131951,-1.51304455023272,0.150617299337589,0.229332807360163,-6.04303283599263 +"Q9VP13",-0.332043677132797,11.8053340771234,-1.51276120190945,0.150688703157517,0.229332807360163,-6.04342751108057 +"P48609",0.0846412382193655,16.9875230355849,1.50931050358018,0.15156055862881,0.230449418225028,-6.04822959645351 +"Q9VB81",0.110662509671727,20.981184292151,1.50457644520189,0.152763539407728,0.232067016149445,-6.05480443955116 +"P54397",-0.112976320434431,14.7812654132882,-1.50369131477055,0.152989346002871,0.23219857063948,-6.05603204539242 +"Q9V4W1",-0.220756453207253,13.6028511347201,-1.50259022628745,0.153270635553807,0.232414018276137,-6.05755842058521 +"Q9V9S0",-0.1153840843746,17.1023461359323,-1.50045136376439,0.153818276253654,0.233032592907444,-6.06052103180072 +"Q7JZV0",0.147220012569429,15.1662541880895,1.49660857647292,0.154806304160308,0.234316620090194,-6.06583593507173 +"O61444",-0.120531862500606,16.4591917716334,-1.49402948112615,0.155472389805822,0.235111465272993,-6.06939736284461 +"P23128",0.212480522467798,14.6640427237968,1.49177923500835,0.15605549850461,0.235779503175443,-6.07250095445307 +"Q7JR49",-0.0871950121635194,18.871921594693,-1.48935356468632,0.156686107545336,0.236518033833141,-6.07584259256335 +"Q9W125",0.108065308774126,21.3659325263436,1.48788456344211,0.15706904050113,0.236881699417618,-6.07786433879399 +"O97454",-0.215840172359435,14.050193638226,-1.48636170460454,0.157466836091648,0.237267102620478,-6.07995863660947 +"Q9VI10",0.122728554463681,17.1973075788165,1.48492939498054,0.157841744564481,0.237617355535699,-6.0819269466052 +"Q95T12",0.100285916336126,15.9373499995644,1.47796630441872,0.159674947877967,0.240160336393551,-6.09147555842655 +"Q9XZ63",-0.164017095206372,19.0151081474752,-1.47410103589251,0.16070019586644,0.241484618653353,-6.09676156480257 +"Q9W5R5",-0.0821758321689376,15.8608511023285,-1.46993929293891,0.161810192441647,0.242933754268828,-6.10244140826659 +"A0A0B4KH34",-0.0749504469135012,23.3811049928496,-1.46646815241464,0.162740857258627,0.244111285887941,-6.10716950594589 +"Q9VA18",-0.104415267811021,21.5716257815935,-1.46474918771322,0.163203378978011,0.244443096230021,-6.10950782301416 +"Q9W0Y1",-0.0956860510840372,17.6826325625003,-1.46447171749722,0.163278139952852,0.244443096230021,-6.10988507377228 +"Q7JXF7",-0.0898463657160455,17.856641172397,-1.46386450127307,0.163441846046659,0.244443096230021,-6.11071046214916 +"E1JIY8",-0.198608582931406,16.4001448480759,-1.46347006764582,0.163548258628719,0.244443096230021,-6.11124647726425 +"A1Z6X6",-0.101265993457051,18.5680378734048,-1.45572846037678,0.165648482872605,0.247360491881384,-6.12174487267672 +"Q8IH23",0.131938278127441,18.2731446292083,1.45064749191157,0.167038995301178,0.249213814098717,-6.12861230807654 +"Q0E9B7",-0.256644974370445,12.7939487488336,-1.44211740984526,0.169395110782762,0.252503167815592,-6.14010065151407 +"Q9V595",-0.0818299612727955,18.5168851432848,-1.44154709468007,0.169553612007317,0.25251377216804,-6.14086692019925 +"Q9VFR0",-0.220225514131712,15.3456380892044,-1.43913447337269,0.170225477994982,0.253288222386824,-6.14410594146653 +"A1Z8Z7",0.090072739131049,18.890075826969,1.43759437962689,0.170655509128172,0.253701772928512,-6.14617140940554 +"Q9VHN4",-0.136501427017219,14.5676682733499,-1.43483618916058,0.171427898677853,0.254623094385271,-6.14986629871317 +"Q5U126",-0.0917679080356848,21.6177235550467,-1.43292180057023,0.171965684656113,0.25519462811957,-6.15242764839244 +"P92204",-0.15412566530993,15.8649455045004,-1.42820589992789,0.173296389291755,0.256940779856575,-6.15872614603524 +"Q8SX78",-0.0931541692439541,15.981165524839,-1.42735641371377,0.173536989732349,0.257069004328204,-6.15985902465236 +"Q9VU84",0.0794112870896164,18.4178087498311,1.4234168325238,0.174656390274805,0.258497656591281,-6.16510613374095 +"Q9VXH4",0.10344871335608,17.1340598825738,1.42283777497255,0.174821423564029,0.258512530589362,-6.16587644286582 +"Q9VEA5",-0.141747766732083,15.6368006582925,-1.41933672273782,0.175821963321699,0.25976176689158,-6.17052871434762 +"Q8SY67",-0.192095343881524,16.0328716455171,-1.4168460195371,0.176536618417695,0.260586796036032,-6.17383306688786 +"O44434",-0.0965298919168767,15.8558483403703,-1.41116889464198,0.178174450261915,0.262771868290782,-6.18134811805612 +"Q9VXN1",-0.152286974206639,13.6332806434948,-1.41009818673069,0.178484736037429,0.262848782290621,-6.18276286158477 +"Q9W074",0.13692956852822,13.5914107105598,1.40990154869838,0.178541768786135,0.262848782290621,-6.18302259284552 +"Q7JYZ0",-0.219494477249674,16.8447190968725,-1.40620022599184,0.179618082174533,0.264200142034498,-6.18790632189261 +"Q9VZW1",-0.175622500597415,14.8265246599849,-1.39932866893061,0.181630333927321,0.266924578846495,-6.19694680109713 +"P52029",-0.135080613701032,18.3743594242194,-1.39597078843629,0.182620320137218,0.267803909269568,-6.20135212194878 +"Q9VP78",-0.0594086212481511,14.8995902208097,-1.39579384128808,0.182672610346478,0.267803909269568,-6.20158403827812 +"Q9W3L4",0.111117894745316,17.656419723343,1.39566618859229,0.18271034097648,0.267803909269568,-6.20175133257058 +"Q9V4N3",0.126151035968274,19.7364903514192,1.39089649196177,0.18412469162606,0.269471202274307,-6.20799373899066 +"Q02910",-0.228154983279875,16.2920398066608,-1.3907409445474,0.18417096558316,0.269471202274307,-6.20819703531383 +"Q9VT75",0.0901106660955229,15.6091150944629,1.38696349651676,0.185297632355029,0.270882077798588,-6.21312864988508 +"Q9VPX5",0.0647170885667592,18.8077847351084,1.38543266383934,0.18575581441526,0.271314096711606,-6.21512425366516 +"Q9VRL1",-0.0885727090916397,20.4818739018956,-1.38311799543248,0.186450349644905,0.272090274022486,-6.21813842257413 +"Q9W0H6",-0.0859213088911872,18.1691102036067,-1.37444588303662,0.189071269927399,0.275627777663591,-6.22939642750594 +"Q9VIG0",-0.0805415407630026,17.3651697124698,-1.37400628333681,0.189204919319432,0.275627777663591,-6.22996564117767 +"Q9V3I0",0.246702165515167,16.3350353897506,1.37131260902859,0.190025537523107,0.276581672415831,-6.23345043343439 +"Q9VE24",0.0824869960468071,15.8843580865115,1.36983649897589,0.190476450813296,0.276996268488734,-6.23535780689893 +"M9PGG8",-0.205526462731129,18.5302472083415,-1.36813409051709,0.190997567936315,0.277451946062416,-6.23755560363687 +"Q9V400",-0.123631784221605,14.2916592840323,-1.36772660181124,0.19112247363652,0.277451946062416,-6.23808135200923 +"Q9VSU6",-0.093304414689527,21.5926538538892,-1.36681330962255,0.191402661175255,0.277617077252456,-6.23925925169356 +"Q9VGR2",-0.0869012757949896,15.6570768685178,-1.36587148796699,0.19169194925394,0.27779510977895,-6.24047330281392 +"Q9VAQ4",-0.109751793869243,15.9898182085765,-1.36439236669889,0.192146987078989,0.278212825041453,-6.24237863731878 +"Q9V3J4",0.0751268237393408,16.6367514584749,1.35580229869886,0.194806929922815,0.281819565577845,-6.25341200502779 +"Q0E8P5",-0.0746325491981779,17.727303580684,-1.34886131497937,0.196977863220344,0.284713237306356,-6.26228729086449 +"A8JNP2",-0.106655839741233,21.1181205697465,-1.34767220550829,0.197351729177612,0.285006653046109,-6.26380418690662 +"Q9V3F3",0.146133410835443,14.6073872056612,1.34587449927205,0.197918027418307,0.285577222953059,-6.26609544504601 +"A1ZBD8",0.168649373347391,14.1506677063594,1.34366852620729,0.198614720238298,0.285979301662066,-6.26890376715564 +"Q86BN8",-0.136596560844227,14.203431753084,-1.34360214495895,0.198635715365166,0.285979301662066,-6.26898821780765 +"Q9VQ35",0.223616549325378,12.2547385004381,1.34301788695513,0.198820582051319,0.285979301662066,-6.26973137280425 +"Q9VZV2",0.119923928313389,15.0230289181824,1.34282233533976,0.198882487966425,0.285979301662066,-6.26998005047675 +"Q9W4A0",-0.07014655437602,17.1129837673686,-1.33910349024387,0.200062717178433,0.287319328377982,-6.27470376955289 +"Q9VL66",0.0826680202971506,15.7470883406072,1.33880117314554,0.200158908618234,0.287319328377982,-6.27508732192917 +"Q8IQW5",-0.0800258299897294,21.9266353790355,-1.32925532162362,0.20321535355136,0.29145589830066,-6.28716302094079 +"A0AQH0",0.140280912117436,16.8968467059548,1.32486251637021,0.204634373323109,0.293238947339301,-6.29269702318931 +"Q9VTB4",-0.0831990591524878,20.6243990858406,-1.32375942608931,0.204991950029257,0.293499203990387,-6.2940844009926 +"Q9VEP8",-0.0682649122586412,17.2263350340453,-1.32191382602458,0.205591335154893,0.294104928849367,-6.2964035967119 +"Q9VQ62",-0.183041811910769,19.6659141763928,-1.32076800549831,0.205964161083047,0.294385793218956,-6.29784215128268 +"O76877",-0.103470806979937,17.3522599733974,-1.31932995375712,0.206432837109472,0.294803058474829,-6.29964619393369 +"Q9VPL3",0.140736765528082,15.8108230451852,1.31758456495531,0.207002821318146,0.295364162496722,-6.30183369387114 +"C0HK95",-0.122982744857548,19.9077057153649,-1.31625609814014,0.207437494554011,0.295731402492385,-6.30349712106812 +"Q9W073",0.0988215007600246,14.584758768203,1.30712605312353,0.210444566480222,0.298939382030109,-6.3148930559148 +"Q8IQC6",-0.215632206386108,15.9142755302804,-1.30712357665427,0.210445386813636,0.298939382030109,-6.31489613841201 +"Q9VQV7",-0.0772581864348201,16.2592205454246,-1.30686521473851,0.210530983491996,0.298939382030109,-6.31521769962727 +"Q9VQL1",-0.0545422096762529,20.1046531700881,-1.30680936848315,0.210549489295049,0.298939382030109,-6.31528720006738 +"P02572",-0.0648930616637209,26.5748942833381,-1.30670584517124,0.210583797293392,0.298939382030109,-6.31541602814221 +"Q9W078",-0.0818818768492058,19.4328549688206,-1.30558359791637,0.210955999636276,0.299213101524922,-6.31681206943809 +"P20007",-0.127461780186833,15.0299587402673,-1.30154175687821,0.21230084650019,0.300864751030006,-6.32183205480181 +"Q9VJ22",0.310944858606513,13.1211862604615,1.29612365796813,0.214114293081368,0.303177114481937,-6.32854182322589 +"Q9VR94",-0.102462224301497,16.2283727919089,-1.29331763518241,0.215058292535444,0.304255497836404,-6.33200798537569 +"Q9U616",-0.112532577935109,19.71264469336,-1.29273021204523,0.215256329886032,0.304277591737204,-6.33273284207349 +"A0A6H2EGA2",-0.0961672405470217,15.8277827915129,-1.28596398601373,0.217547851870739,0.307256407214558,-6.3410630316137 +"Q9VLV5",-0.0646005621134762,17.4819632277792,-1.28276855785096,0.218636737353814,0.308533060834317,-6.34498484253375 +"Q9I7I3",0.161048358424873,14.5919659327704,1.28087390270137,0.219284397869021,0.309185440106109,-6.34730648093034 +"Q9W2N5",0.265837348609137,12.9411073395734,1.27412403901231,0.22160405935928,0.312108288147995,-6.35555502529396 +"Q9VGJ9",0.0771464390784402,18.0003510600551,1.2732444525199,0.221907757876783,0.312108288147995,-6.35662731777584 +"Q9W380",0.116794848561099,18.402032807262,1.27321271292283,0.221918722867819,0.312108288147995,-6.35666599993058 +"Q9VJ19",0.069004325372088,19.1296075959886,1.26980819828449,0.223097351413818,0.313501585643006,-6.36081067730932 +"P02283",-0.0897685143270799,21.5707862207558,-1.26907631568963,0.223351368425165,0.313594345566646,-6.36170050439892 +"P91941",-0.0775226921671894,23.0838243211787,-1.26745937574292,0.223913372100129,0.314119011491182,-6.36366491846129 +"Q8MSV2",0.137745061840757,18.2205161261004,1.26441461614732,0.22497466469902,0.315342639258794,-6.36735848321494 +"Q9VG00",-0.141920938424839,15.2611050093459,-1.26140901130637,0.226026182074073,0.316550521997946,-6.37099749201125 +"Q9VXJ7",-0.11629733188772,14.9658939436786,-1.25803332490275,0.227211769043633,0.317943985540923,-6.37507620058577 +"Q9VHF9",0.115106587510954,17.0237769801219,1.25654956511142,0.227734426251521,0.318327192456031,-6.3768661627427 +"Q8I937",-0.222970964311241,14.014387525103,-1.25583902480377,0.227985048914118,0.318327192456031,-6.37772272934909 +"Q7KTP7",-0.0543502323610134,17.8699040097487,-1.25563188990151,0.228058150470598,0.318327192456031,-6.37797235939162 +"Q9W2D9",0.130210663041128,17.6673753410163,1.25291379288515,0.229019117405885,0.319401244007539,-6.38124499225238 +"Q9V3R3",-0.0969273812388938,13.6155425410513,-1.25150399057127,0.22951879175994,0.31983069728954,-6.38294014631959 +"Q9V9U4",-0.060484460297916,15.9221574066933,-1.23932716119659,0.233870172443288,0.325331746601612,-6.39751690860279 +"Q9W3N9",-0.0964123619582544,20.1933715355376,-1.23901990964093,0.233980795184452,0.325331746601612,-6.39788321244225 +"Q9VVW8",-0.106214684419157,15.7571338686071,-1.23882326554012,0.234051616260152,0.325331746601612,-6.39811761167127 +"Q9V535",0.0698337920528864,18.6015630062895,1.23661742872125,0.234847190319512,0.326165789719356,-6.40074488012788 +"Q9VEK8",-0.0530119667763067,18.8746279299485,-1.23069108271517,0.236995062472488,0.328650939674783,-6.40778450405596 +"Q8SY69",-0.115697961350925,18.9439972479643,-1.23059331527861,0.237030623758252,0.328650939674783,-6.40790040523048 +"Q8IPP8",-0.0770855067702385,19.0707397911429,-1.22983829501326,0.237305389598231,0.328758629443396,-6.4087952113567 +"Q9VMH2",-0.213594174848799,17.3281023559839,-1.22828502264217,0.237871432524442,0.329269335643792,-6.41063464445234 +"Q9VHX2",-0.147365282261621,14.8036108317146,-1.22293916725032,0.239827584694372,0.33170183355739,-6.41695079807372 +"Q8SWZ6",-0.0721710390631216,13.9601255983062,-1.2214001751814,0.240393038469547,0.332208440900749,-6.4187649321982 +"Q8IP97",-0.0766787092212589,19.9560624733381,-1.21975153335274,0.240999925335198,0.332771420082044,-6.42070623723632 +"Q9U1L2",-0.246517489312973,17.575044408311,-1.21469547456715,0.242868528644187,0.335074198327961,-6.42664638818042 +"O76752",0.0643424501320595,17.8854506510797,1.21291161176727,0.243530471143611,0.335605266266589,-6.42873732676894 +"Q9VZ49",0.101805887689608,18.9074786777257,1.21257412003405,0.243655861779879,0.335605266266589,-6.42913262992683 +"P07668",-0.209150444046767,14.6769587685755,-1.20281539426598,0.247303198723817,0.340347966560501,-6.44052374487056 +"Q960W6",0.186696010814321,14.113481403839,1.20115198311033,0.24792907617945,0.340653913494959,-6.44245781926004 +"Q9VVU5",0.12339828202049,15.6115010515281,1.20113900689229,0.247933963418993,0.340653913494959,-6.44247289821545 +"Q9V3N1",-0.0679199361234417,18.3943118978876,-1.19952032715382,0.248544189368621,0.341211282194946,-6.44435282108793 +"Q9Y105",0.247386430449275,17.1291161396942,1.19850595861592,0.248927184670966,0.341287257757618,-6.4455298324002 +"O15943",0.0493208099536169,20.1724977213387,1.19829009041262,0.24900874861572,0.341287257757618,-6.4457802063505 +"A8DZ14",-0.055826350527564,19.4650311530695,-1.19655321716272,0.249665759356985,0.341906803454394,-6.44779335385727 +"Q9VX02",0.0858651452128356,17.2127641189976,1.19295111123102,0.251032581352519,0.343474605772179,-6.45196071542824 +"Q9VL00",-0.145164928076378,15.9879085798822,-1.19245196938147,0.251222433478452,0.343474605772179,-6.45253736298796 +"Q9VIS4",-0.083835742592246,14.1250862440376,-1.181752927153,0.255318424789796,0.348757877037727,-6.46484954433188 +"Q9VHA8",-0.0588814115794278,18.5873791541192,-1.18126904999235,0.255504871546824,0.348757877037727,-6.46540419748463 +"Q8SY33",-0.066109687649309,17.3894677665956,-1.17982221229738,0.256062985647347,0.349233900294173,-6.46706153432489 +"Q7K0S5",-0.0631416858443963,18.3023907241761,-1.1734349004311,0.258538012706871,0.352321409473089,-6.47435790530568 +"Q9W3C3",0.0850058408469536,16.4289933610195,1.17282335317644,0.258775935684227,0.352357763854115,-6.47505475738752 +"Q9VUW4",0.0850595068664344,14.5677812952657,1.17081090583196,0.259560058337584,0.353137175617529,-6.47734578132312 +"Q9VVU2",0.0561378174942,20.0901536210952,1.16844760542194,0.260483195266694,0.354104294787975,-6.48003203178684 +"Q9VJJ1",-0.117820816226873,14.0704204072968,-1.16428941128114,0.262113504510275,0.356030395377149,-6.48474744005494 +"Q9I7C6",0.253209764458896,15.4683864318852,1.16292303530971,0.262650911059868,0.356470072943743,-6.48629384670253 +"Q9VES8",-0.0656260030504576,17.9888676630929,-1.15762645253387,0.264742009952153,0.359015993983895,-6.49227392427602 +"Q9VFJ2",0.12636382982903,13.9127597822094,1.15539022489197,0.265628656584047,0.359925750757263,-6.49479185596078 +"Q9V8Y2",0.114015134291552,19.9141164099919,1.15109960125173,0.267336150194633,0.361945372179097,-6.49961154261685 +"Q9VRD4",0.0582922303891102,20.3159399639281,1.14990748727583,0.267812033824988,0.362251821305153,-6.50094797942454 +"Q8IPX7",-0.156482309802263,15.2352771059203,-1.14899998383076,0.268174732035891,0.362251821305153,-6.50196456948014 +"Q9W136",-0.0738233335471641,18.1784313608829,-1.14890171660377,0.268214028364427,0.362251821305153,-6.5020746084667 +"Q9V597",-0.145487786866212,20.1235599521727,-1.14529909510008,0.269657695217974,0.363906986750469,-6.50610333690474 +"P18053",-0.0546564071635736,21.0588932998648,-1.14377353062426,0.270270794466089,0.364439519134549,-6.50780613233928 +"Q9VLR3",-0.101915347059297,16.758317014552,-1.14207316492716,0.270955381860748,0.365067509647599,-6.5097017847798 +"Q9VTT2",-0.207413104172977,14.0428796483007,-1.13626151151072,0.273305090360783,0.367936150703621,-6.5161629615785 +"P45594",-0.0599441825819831,23.0375658427051,-1.13293760878175,0.274655849812714,0.369456417328715,-6.5198458502714 +"Q9VEC2",-0.056067532404505,16.6923656271245,-1.12971321874877,0.27597095584859,0.370926312937509,-6.52340977081743 +"Q9VK59",0.0595183935430974,18.7636214747353,1.12723080067047,0.27698665467146,0.371924094026357,-6.52614773892807 +"Q9VNR6",-0.125428506150044,14.6587683978239,-1.12680961883833,0.277159261915325,0.371924094026357,-6.52661177341975 +"Q9VCU0",0.139306027337243,17.3680792214299,1.12563854001277,0.277639612959855,0.372269191653568,-6.52790123113028 +"Q9VSD6",-0.0839072478283249,16.4793729940385,-1.12461880491237,0.278058393865113,0.372531245756633,-6.52902312218756 +"Q9VA41",0.085399156531178,17.4602103019853,1.12185060951285,0.279197610374866,0.373315764247553,-6.53206429100038 +"Q9VAY0",-0.128957421096921,14.0260012063073,-1.12162904520997,0.27928894313449,0.373315764247553,-6.53230742947034 +"Q8IPG8",0.139442216115695,15.8970619007562,1.12156489309001,0.279315391955004,0.373315764247553,-6.53237782061616 +"Q9VNI8",-0.0660765478460821,15.7419633164439,-1.12020493942143,0.279876518453038,0.373766239215106,-6.53386923183308 +"P13496",-0.0524888308770279,18.264365092204,-1.11815905310555,0.280722252482298,0.374595773712378,-6.53610999015923 +"Q9VV72",0.0876162005792871,19.409835659099,1.10989455858784,0.284158082958414,0.378877443944552,-6.54512628218135 +"Q9VHE4",-0.0456302281908876,17.9252090180179,-1.10720122524549,0.285284532848396,0.38007555973732,-6.54805233611338 +"Q9VHJ7",0.148739605206025,14.7629691006587,1.10422861686936,0.286531637927602,0.381265509579972,-6.55127477176668 +"O76454",-0.0884475095129567,17.9869049221744,-1.10398300359643,0.286634861518756,0.381265509579972,-6.55154069720666 +"Q9VMB3",-0.0697650638973606,18.6972010404163,-1.09852708535967,0.288934939415148,0.384018708322284,-6.55743481826554 +"Q9VZ24",-0.125894560612693,21.8541420764007,-1.09764833171965,0.289306675878602,0.384206636437507,-6.5583818221243 +"Q9VW26",0.047865612223422,17.5302851929136,1.09560675589107,0.290171685313191,0.385048823470487,-6.56057946416504 +"Q9VBL3",-0.202599515241605,14.4990362513046,-1.0911937467213,0.292048003657072,0.387230580365657,-6.5653178794872 +"Q95029",-0.0604378793998599,21.8280362916362,-1.08813958431446,0.293351810150575,0.388617676622843,-6.56858767535574 +"P53501",-0.0417499166437203,24.6240794348649,-1.08765255903792,0.293560115434521,0.388617676622843,-6.56910836131462 +"Q9VJJ0",-0.0556795196065174,19.7366045342784,-1.08605462107912,0.294244335134524,0.389214552739402,-6.57081533930035 +"Q9W0Q2",-0.0544088917692029,15.5159657278839,-1.08532431287555,0.294557436547907,0.389319971602147,-6.5715947668339 +"Q9VM11",0.092891597372585,17.7965815551599,1.08339838227386,0.295384309172228,0.390103743229831,-6.57364807865267 +"Q9VEY5",-0.0508336338181437,20.834353384993,-1.08180948054767,0.29606776939666,0.390697024805086,-6.57533971792656 +"Q9V470",0.050602234743728,19.9363777477861,1.07865072246183,0.297429954217623,0.392184319079047,-6.57869639643654 +"Q9XY35",0.0585805919616078,19.218393902753,1.07164668987452,0.300466801883136,0.39583393509495,-6.586109223772 +"Q9VJ25",0.137302846522363,15.7067397896782,1.07117434479367,0.300672419523562,0.39583393509495,-6.58660764394209 +"Q9W0A8",0.0559336333016844,18.9039126059631,1.05715551969747,0.306821992069215,0.40361126401534,-6.6013141793389 +"Q9VDC0",-0.0790233863684957,17.569287758235,-1.04506422578517,0.312199227406534,0.410361159427974,-6.61386421332425 +"Q9V405",0.0523539205345642,20.2211633143271,1.04375596120354,0.312785111532471,0.410807532311938,-6.61521462166535 +"Q9VUV6",-0.073729334797342,14.8203500211342,-1.04282543677141,0.313202315680992,0.411031835213135,-6.61617422954396 +"Q9VAS1",0.114289105075711,13.0449283504739,1.03830552388064,0.315234568402029,0.413373632149831,-6.6208248540461 +"A1Z7G2",0.0618745294602263,19.5576824389368,1.03706451154028,0.315794219381968,0.413782213612822,-6.62209868859564 +"Q6NP72",0.0845638484335787,18.743895516546,1.0259960678691,0.320817433974242,0.419712946040047,-6.63340129571475 +"Q9VQG4",0.0648631154079595,19.1605568909256,1.02598224114208,0.320823744724856,0.419712946040047,-6.63341534897513 +"Q7JZN0",0.0819497433374572,16.8210794541388,1.02508754520813,0.321232288705688,0.41991807018894,-6.63432435278019 +"Q9V428",-0.0597153247401536,18.7343447851477,-1.02234187768874,0.322488373083488,0.421229918796599,-6.63710961563854 +"E1JJH5",0.0365521704323903,21.2370675341164,1.02090982709878,0.323144902754919,0.421757197022852,-6.63855973453308 +"Q9VWS1",-0.067851818921147,17.2010323143965,-1.02023139722575,0.323456266247938,0.421780451359568,-6.63924610556058 +"A1Z7P1",0.169490793417243,14.6167915107048,1.01976933421347,0.323668451882642,0.421780451359568,-6.63971334933805 +"Q9VY24",0.0962900091181282,17.7460866149326,1.01335846140882,0.326622709378829,0.42529795413262,-6.64617703910996 +"Q9VQT8",-0.159797006790537,18.0100984349345,-1.01216528924375,0.327174668059683,0.42568435750667,-6.6473761118238 +"Q95SH2",-0.060548033027775,18.721918760571,-1.00473590736221,0.330626471256431,0.42962633780965,-6.65481443420092 +"Q08012",0.0693531328082351,19.1817578223272,1.00407536901894,0.330934618181298,0.42962633780965,-6.65547344566321 +"Q9VG42",-0.367986668596131,16.2275567294779,-1.00398428704313,0.330977124751439,0.42962633780965,-6.65556428732039 +"Q9VMY9",0.105393572284399,14.9968432791892,1.00234001725116,0.331745148624175,0.43016521595468,-6.65720297726404 +"A1Z934",-0.0530863065173897,19.2971216207708,-1.00171971552344,0.332035215068841,0.43016521595468,-6.65782056263378 +"Q9VMQ9",0.05736957843121,22.113574780458,1.0009421086643,0.332399095402067,0.43016521595468,-6.6585942910041 +"Q9VTC3",-0.120561227772846,17.1422931762841,-1.0008892540472,0.332423838948191,0.43016521595468,-6.65864686288252 +"Q9VE56",-0.0615019803883889,17.4745470735157,-0.999040482406778,0.333290153042847,0.430951918818193,-6.66048421326726 +"A1Z933",-0.104113042291271,15.7817833543482,-0.994761155452203,0.335301543933458,0.433216866987613,-6.6647256707021 +"Q86PD3",0.0380467754930365,18.8915751890195,0.99249351181692,0.336370873388426,0.434262087315708,-6.66696676755955 +"Q9VNF3",-0.0484600982122991,19.1388305080053,-0.987267191932313,0.33884458035345,0.436709502512623,-6.67211478476142 +"Q0E8X7",-0.0988741830096842,21.0104884879615,-0.986931281839074,0.33900401065385,0.436709502512623,-6.67244484462506 +"Q9VTW6",-0.21012144388566,16.2685134461319,-0.986830104912253,0.339052041818853,0.436709502512623,-6.67254424008541 +"Q8IMT3",0.0933511307653418,14.7486602429198,0.98600023505308,0.339446182650563,0.436879809152114,-6.67335915970125 +"Q9W2V2",0.10585069298013,14.2953510493031,0.984869042539305,0.339983955071722,0.437234569822385,-6.67446900187398 +"Q9V3V6",0.0394745369783536,21.5772227062807,0.983264212442091,0.340747926669671,0.437879462006942,-6.67604161786581 +"B7YZN4",-0.166223083568719,15.4188163258513,-0.982499813855574,0.341112239957773,0.438010174172105,-6.67678987849426 +"Q9VL89",0.0377739395459429,16.8787305333266,0.979882310060846,0.342361823283813,0.439276554798,-6.67934823810239 +"P0DKM0",0.0628932613791804,16.997481203637,0.977263745402684,0.343615131976072,0.440545764900913,-6.6819016148697 +"Q9VME3",0.0792326681931605,15.7572292719278,0.975195097938002,0.344607513740717,0.441478750322209,-6.68391450337092 +"Q9W2J4",-0.0657395839121993,15.2399241471969,-0.972824628831685,0.345747158211706,0.442598818033097,-6.6862164497593 +"Q9VXI1",-0.0843502024723506,19.5685220790564,-0.972076388931404,0.34610743574037,0.44271755900077,-6.68694203336571 +"Q9VB68",-0.0841666302132715,15.455298963151,-0.97152986739113,0.346370752095926,0.44271755900077,-6.68747169494807 +"Q7KLX3",0.0571865916542151,19.2901611581495,0.965468557627738,0.349300526257463,0.446120427103713,-6.69332836337822 +"A0A6H2EG56",-0.084583992736917,20.9117080524611,-0.963929302094475,0.350047284651993,0.446732112317922,-6.69481048917178 +"Q4V6M1",-0.0524936241398706,18.2215243359801,-0.961805390915109,0.351079512888624,0.447706901757053,-6.69685213430024 +"Q9V3P3",0.0398583760855864,19.3930534619775,0.960002271074804,0.351957499698785,0.44848365889807,-6.69858228346059 +"Q9VZY0",-0.0729776661968771,17.1986881468968,-0.958695806717685,0.352594606727767,0.448952522154134,-6.69983407943312 +"P49028",0.103124494599587,16.3690630820527,0.955661682478252,0.354077315812699,0.450222968833808,-6.70273541254758 +"Q8SXS0",-0.107976728044269,14.5315051557729,-0.955428316525481,0.354191535826623,0.450222968833808,-6.70295822731373 +"Q9VCF8",-0.0534496591285301,16.9538532232398,-0.954998176630837,0.354402133140762,0.450222968833808,-6.70336879281029 +"Q94524",-0.0890245845773663,15.7012025639557,-0.953933467030135,0.354923791177922,0.450505713650523,-6.70438434523491 +"Q59E04",0.0828645078812791,16.3912301896664,0.953004088556404,0.355379578990632,0.450505713650523,-6.70526999310731 +"Q9VZG2",-0.0724650910286648,21.9026255512066,-0.952891212589554,0.35543496352763,0.450505713650523,-6.70537750568462 +"Q9VZS3",-0.0882118080709624,18.3893126913878,-0.949137899380033,0.35728000313369,0.452500413991644,-6.70894603867189 +"P81900",0.046882270390828,22.4225989039302,0.945064080196842,0.35929009340243,0.454700967978189,-6.7128051367861 +"P91926",0.0883683166909712,17.6880934196697,0.939257268666774,0.362168762537303,0.457996585225339,-6.71828036046178 +"P14199",-0.0530628662697659,18.5333447986182,-0.937392739912795,0.363096447621378,0.45882187472156,-6.72003204611828 +"Q8SY96",0.0599211482072199,18.7523192850064,0.936397377054397,0.363592353819379,0.459100716253387,-6.72096589908675 +"P04388",-0.0858509577004849,16.5371310200606,-0.934692496231035,0.364442836096657,0.459826513320139,-6.7225633700513 +"Q9VK69",-0.0467105537207146,20.2715227141799,-0.933887029243254,0.364845119937264,0.459986137607979,-6.72331718883238 +"Q9V9S8",0.0560561656921763,19.9309079815042,0.931851979662364,0.365862867904625,0.460920894006733,-6.72521916482483 +"Q9VB64",-0.054945651955812,18.7733170394194,-0.924913965170244,0.369347273758734,0.464959435946844,-6.73167565654745 +"Q8SZ63",-0.122833176175501,14.0299798104023,-0.923031878023988,0.370296397286161,0.465802707898429,-6.73341968697696 +"Q7KS11",-0.145302847496854,15.652887373598,-0.922313419718299,0.3706591500557,0.465907658095636,-6.73408460664191 +"Q9V5C6",0.0483784556364917,20.6291976808424,0.917536647634214,0.373077133432493,0.468593869401655,-6.73849364174769 +"Q9VD14",0.0578852875780989,17.6244761744166,0.909298994410609,0.377272195563858,0.473506412490983,-6.74604894286699 +"O16158",0.0491555638804364,21.3026178269026,0.905256127551353,0.379342707427334,0.475747094728415,-6.74973456775471 +"Q9VS02",-0.0690183161103697,17.9380007074566,-0.903163350578218,0.380417516761406,0.476736602522934,-6.75163662739213 +"P05812",0.0511791299899986,15.8004272103377,0.900305965336423,0.38188833495879,0.478220527561008,-6.75422722849456 +"C0HK94",-0.0535887288583368,18.4738144502059,-0.897731129084879,0.383216996464295,0.479524343662749,-6.75655533965634 +"Q9W403",0.0623350270405965,15.2792258085667,0.895517420221869,0.384361797566827,0.4805963106008,-6.75855213203837 +"Q95SN8",-0.0892019101209769,17.6489964173654,-0.889946163470768,0.387253101975641,0.483848819547093,-6.76355783017889 +"Q9VLP1",-0.106221335804509,18.4213990376592,-0.88865445973906,0.387925534087695,0.484326190762183,-6.76471438918095 +"Q9VEW1",-0.162898290636116,14.6271042951221,-0.887375786981869,0.388591953164334,0.484795346206514,-6.76585778906874 +"Q9VS84",-0.0472027111744069,17.5099074434401,-0.886333113574858,0.389135941437705,0.485111173630862,-6.76678905751227 +"Q9W147",-0.0666032662427689,13.765443503422,-0.885258450634154,0.389697152788513,0.485447984205557,-6.76774786412116 +"P23625",0.0383408207645175,22.2106880513379,0.878528486385819,0.393223987343698,0.489475829021856,-6.7737284107689 +"Q95RB2",-0.0734235441330604,24.2852879689532,-0.877757472462435,0.393629391425808,0.489615081952459,-6.77441093628633 +"Q9VH37",-0.0975049632524847,16.6353157937398,-0.872978010901879,0.396148673131326,0.49238151027053,-6.77862977510145 +"Q9VGG5",0.0573587034024587,17.050343842667,0.870871629542408,0.397262352927604,0.492553481539685,-6.78048246599808 +"Q7KTJ7",0.0453263821629797,22.0944243530528,0.870058886739879,0.397692618887066,0.492553481539685,-6.78119623981197 +"A1Z8D0",-0.169176768728292,13.8043293756131,-0.869996537305421,0.397725639432238,0.492553481539685,-6.78125097194023 +"Q9U6M0",-0.0573638709261388,16.2770238247298,-0.869881726006177,0.397786448777378,0.492553481539685,-6.78135174731396 +"Q9I7T7",0.118481569858627,14.5037514306828,0.869563611063603,0.397954969290732,0.492553481539685,-6.78163090912642 +"Q9W5P1",0.0847792303787909,14.2808065244119,0.869367638411999,0.39805880882224,0.492553481539685,-6.78180283893623 +"P04359",-0.0689735433979557,18.8216610397909,-0.865821254785323,0.399941025076475,0.494515663326583,-6.7849080707052 +"Q9VAV2",-0.0465769937920868,17.7674501325864,-0.862415151993706,0.401754322761572,0.496389785456519,-6.78787964154166 +"P09208",-0.220493564368354,12.8301734786898,-0.857500549216518,0.404380246983396,0.4992644352097,-6.79214853918305 +"Q9VKV2",0.0887734545903243,14.9648530178989,0.851076489621608,0.407829686336773,0.503150826042705,-6.79769516151325 +"Q9VQF7",0.0860645406081417,18.72478390172,0.847726748955867,0.409635982875152,0.505005779331673,-6.80057233186745 +"Q9VG51",-0.122736224449117,19.1568456996641,-0.84666758046707,0.410208211117562,0.505059132034641,-6.80147992827798 +"Q9VAY6",-0.0436374385739295,15.199815033497,-0.846525805304786,0.41028484646699,0.505059132034641,-6.8016013363756 +"Q9VLT8",-0.0831970611407495,13.9508555856026,-0.844416573268164,0.411426079154491,0.506090486747559,-6.80340537550257 +"Q7JVK8",-0.0444606946403994,19.1486352379856,-0.841733949477754,0.412880546035234,0.507505343247436,-6.80569391863158 +"Q9VRG6",-0.0465690109441557,16.3482489158855,-0.840835570121555,0.413368378398918,0.507730821185122,-6.80645884211319 +"Q9U5L1",-0.03554900197717,17.6808336224665,-0.83956656654406,0.414058104422946,0.508203766135007,-6.80753806449091 +"Q9VYU9",-0.0670512104259871,17.847412932123,-0.838226583872427,0.414787221615589,0.508724327687354,-6.80867603805509 +"Q9VKF0",0.0590117051363421,15.918584706214,0.832111622086291,0.418125112160355,0.512441357151706,-6.81384808719006 +"Q9VN95",0.0540107940275369,17.9434075651836,0.827453393794093,0.420679483067148,0.515193375738622,-6.8177648228275 +"Q9VX98",0.0552530593407248,18.231379640557,0.826154686183731,0.42139343189747,0.515689100810698,-6.81885322141346 +"Q9VTZ5",0.0392536973136508,18.0407135715772,0.815192338615894,0.427450967689711,0.522411941492415,-6.82797801323959 +"E1JGR3",-0.0638680152453599,12.1748890635219,-0.815079930978379,0.427513369386779,0.522411941492415,-6.82807100044078 +"A8DRW0",-0.0612696158507298,21.5385651758816,-0.810076976401311,0.43029660608967,0.525428066586801,-6.83219769846219 +"Q9VRJ4",-0.0301521404840059,20.6966141536974,-0.805072805553971,0.43309206998595,0.528454698417385,-6.83630207690785 +"Q9W2K2",-0.0988224721516087,15.6420207399878,-0.803017299139966,0.434243673837503,0.529472549679061,-6.83798121887417 +"Q95WY3",0.0481196988500248,17.2364245427747,0.800896317518317,0.435433999032306,0.530536092319859,-6.83970971270976 +"Q70PY2",0.117742402018077,17.2412046192329,0.796747360884688,0.437768434177842,0.532991057086599,-6.84307875165368 +"Q9VEJ3",0.0841710705043859,20.0154421212362,0.790455984352507,0.44132339620099,0.536927370432715,-6.84815675403978 +"Q9W4Z2",0.106566519550812,13.8139526377927,0.789830084726826,0.441678055568072,0.536967198751854,-6.84865991315105 +"Q8IMX8",-0.0412678927589347,17.1640523420114,-0.781417419657908,0.446462407518827,0.542388416417628,-6.85538716691028 +"Q8SXG7",0.0837073902504457,13.9753012480127,0.779709835183764,0.447437475195604,0.543177371634838,-6.85674453554656 +"Q9VJU8",0.0602846801459123,15.6308530345953,0.77773855199855,0.448564775768926,0.5438861669704,-6.85830811024997 +"Q9VHM3",0.0744182303618199,14.7258488950276,0.777548626124692,0.448673480666229,0.5438861669704,-6.85845856185717 +"Q9VG76",-0.0604635925244814,15.7770748648319,-0.7766395120523,0.449194043889972,0.544121761226197,-6.8591782552338 +"A1Z7K6",-0.055977747440652,15.5798422287814,-0.768177082817143,0.454057734515188,0.549614151793421,-6.86584012673109 +"Q9V436",-0.0283673391413366,19.1033458462722,-0.762932301338813,0.457088457000789,0.552881469381665,-6.86993506660457 +"Q9VDC3",-0.0410391430898436,19.2790825273927,-0.762300045822399,0.457454651811857,0.552923448711723,-6.87042695440649 +"Q7KM15",-0.0419358771949874,17.0471249906335,-0.756209552307934,0.460991464449904,0.556794904201622,-6.87514593010844 +"Q9VPR1",-0.10119507947214,13.6635818059896,-0.751889577254419,0.463510286038166,0.559432096318134,-6.87847180150981 +"Q7JXB9",0.0746014642770785,16.2168412418384,0.7502271875203,0.464481809751519,0.560199319353242,-6.87974693234968 +"M9MSK4",-0.0408087719222472,20.5689156087235,-0.749174954765772,0.465097393120183,0.56053645355814,-6.88055268952066 +"Q7PLT4",0.113488385449362,15.7998280248291,0.745071383428992,0.467502852607888,0.563028706245456,-6.88368499746435 +"Q9VUZ0",-0.0662777732084514,17.6496653731969,-0.743379866880244,0.468496602246136,0.563790253654584,-6.88497149840182 +"P48611",0.0522076854297353,20.1914804439693,0.742844827965773,0.46881120013124,0.563790253654584,-6.88537786187558 +"Q9W3V3",0.172246465448472,13.1300471011499,0.741529022642127,0.469585428293506,0.564314477228795,-6.88637606189001 +"Q7K0D8",-0.0349300709350402,17.303962028664,-0.74083812151883,0.469992270107745,0.5643967649674,-6.8868995360966 +"Q26377",-0.0740147111862992,16.7800268786748,-0.73944823769739,0.470811361476913,0.564973633772296,-6.8879512321765 +"Q9VKJ4",0.0507807999293011,15.1198273905873,0.736691014935399,0.472438821330069,0.566519017957264,-6.89003212419461 +"Q9VL70",0.0402594828062277,23.5249704850464,0.731644604180978,0.475426296456261,0.569691855236382,-6.8938219247308 +"Q9Y128",0.0778182313843416,14.2987237587115,0.727632336104899,0.477809677923702,0.572136785912947,-6.89681776588741 +"Q9VXM4",0.0854473624292034,20.1878359265085,0.722055504119532,0.481134361828685,0.575704530509502,-6.90095628781673 +"Q9VCD9",-0.0818835183422344,18.5421027848058,-0.720786802101928,0.48189264241229,0.576198514368243,-6.90189363044701 +"Q9VXE5",0.0549807339609742,14.6223877713142,0.718384559243228,0.483330377779238,0.577503631902413,-6.90366423753152 +"Q05856",0.080118063894421,13.6879009214686,0.71642507748097,0.484505017224776,0.578189083856751,-6.90510441076649 +"P38979",0.0290073979811858,22.0948205578159,0.716140625456568,0.484675677493775,0.578189083856751,-6.90531317072376 +"Q9VUK8",0.0311309916713718,20.7463641444383,0.715693576940322,0.484943961819901,0.578189083856751,-6.90564110397943 +"Q9V3V9",-0.0299258008746364,19.5089156306005,-0.710954377808578,0.487793503996586,0.581119651349321,-6.90910577459981 +"Q9VDF4",-0.0319576055813542,18.6747345785675,-0.710447769664458,0.488098699964268,0.581119651349321,-6.90947486481692 +"Q9W306",-0.071726493564567,14.714561137691,-0.709232191517729,0.48883146279583,0.58157694717792,-6.91035947205743 +"Q9VD58",-0.0247194830641071,22.7209055176255,-0.707626370541201,0.489800467243514,0.582314454285232,-6.91152589485683 +"A1Z8D3",0.10910753899031,16.6503761579487,0.703180268377253,0.49248931563379,0.585094144214502,-6.91474249672832 +"Q9W1C8",0.160429222296287,15.9668356058677,0.701882990114438,0.493275503099834,0.585611059907846,-6.91567745272777 +"Q7KW39",0.0336856497929112,21.7006819402605,0.69651223705845,0.496538189996356,0.589065221133657,-6.91953096004982 +"Q8SXX1",0.0290223274348307,19.8913624866939,0.690430590577081,0.500247980814973,0.592855257439516,-6.92386099226168 +"Q9V4Q8",-0.04280369500019,16.89619517376,-0.689678725326305,0.500707738428154,0.592855257439516,-6.92439383104211 +"P22812",0.153659636268619,11.5248508221964,0.689529209267377,0.50079919528314,0.592855257439516,-6.92449972644561 +"A1ZA83",0.042142108252829,17.053003110732,0.687910047950389,0.501790237140602,0.593323535050441,-6.92564512277105 +"A8DYK6",0.0589293001110995,16.6008796660575,0.687720742908757,0.50190617982984,0.593323535050441,-6.92577887213234 +"P41094",0.0265754529571929,21.1793837820127,0.686025763004618,0.502944990375631,0.594130484381411,-6.92697488156023 +"Q9W404",-0.0752181877370486,15.9523130302257,-0.684899290847909,0.503636067871077,0.59452580411108,-6.92776820663706 +"Q9VU45",-0.0705986016158455,17.8858106426453,-0.68342730045801,0.504539947614125,0.595171593083706,-6.92880301747236 +"Q8IH18",0.0456246879293385,15.6534555776582,0.680073975152238,0.506602576389899,0.597182401002369,-6.93115258849009 +"Q9VQ88",-0.0489045096359764,16.4219806876897,-0.679206497693348,0.50713695462802,0.5973901414686,-6.93175863254132 +"Q9W1Y1",0.0478758459600002,17.8305310851913,0.675441529344677,0.509459999571302,0.599588066909525,-6.9343805053323 +"P17704",0.0289910825929809,20.3194271067957,0.675017930636644,0.509721749926682,0.599588066909525,-6.93467463477816 +"Q9VQD8",0.10055368873968,17.5488569371324,0.671525129744627,0.511882973032301,0.601441645360939,-6.93709326477255 +"Q9VY92",-0.0505476076065179,21.3330360042293,-0.671306114851829,0.512018666913989,0.601441645360939,-6.93724453018427 +"Q9V455",-0.064278203355947,19.3460994358926,-0.669409615873685,0.513194533730415,0.602398650430916,-6.93855242600005 +"Q9VR89",-0.0726455180828971,13.939447283686,-0.666537352895844,0.51497833668092,0.604067416022344,-6.94052660083743 +"P22769",-0.0378386546848901,20.1350200457907,-0.662324455469707,0.517601133181523,0.60648649042729,-6.9434077358676 +"Q9U6P7",0.0376584139522702,17.036181548762,0.662057087459515,0.517767843146559,0.60648649042729,-6.94359000282636 +"Q9VFU7",0.0528366333818671,14.828952966526,0.661132820727671,0.518344379646967,0.606735737018345,-6.94421954777039 +"Q9VD68",0.0595855241789938,14.8044667863569,0.660007230603433,0.519046989973803,0.607132103279315,-6.94498509842266 +"Q7K3W4",-0.0440496572023932,19.3137126208907,-0.655069409196043,0.522135637219551,0.610083543696511,-6.94832891055602 +"Q9VIU3",0.17376531817572,12.4926248635221,0.654568288149015,0.522449672752836,0.610083543696511,-6.94866693520033 +"Q9V3Q4",-0.0556636787104097,15.9896449174582,-0.654220796949782,0.522667496368294,0.610083543696511,-6.94890118726889 +"Q7KQM6",-0.0400381284781481,15.1541754843997,-0.651473902925456,0.524391182350056,0.61166747703489,-6.9507487940727 +"Q9VFT4",-0.102127964097093,15.6671139859833,-0.64370858713569,0.529281234813902,0.616939971816624,-6.95593208244501 +"Q9VCI0",-0.107252246933212,14.81265650192,-0.641341980065775,0.530776619504503,0.618250978584854,-6.95750007293217 +"Q9VD26",-0.0490947276190603,16.2112594309386,-0.639618557833613,0.53186707900187,0.618860593013435,-6.95863847939112 +"Q9VGQ8",-0.0425472398666997,16.254275811628,-0.639342253998518,0.53204202061227,0.618860593013435,-6.95882072187005 +"Q9VMC8",-0.0461137857490677,16.3599722848299,-0.636997956273776,0.533527600887404,0.620156124237067,-6.96036395356084 +"P54195",-0.0756238888767093,18.713261626981,-0.633871905203041,0.535512161703145,0.622029446880812,-6.96241344347727 +"Q8IP62",0.0662987834815763,15.7938572295545,0.629520428164193,0.538281479783173,0.624811070479006,-6.96525041593383 +"Q9VII5",0.0501394899977328,17.3477639105238,0.623591907026096,0.542067131955088,0.628767716342898,-6.96908568808978 +"Q9VNQ3",-0.0598658869300479,15.098918905047,-0.621160300722233,0.543624049257283,0.63013545111963,-6.9706487684605 +"P36951",0.0304797091061069,20.3591082516913,0.620035879932585,0.544344824478365,0.630532755020773,-6.97136960356214 +"Q9V3G3",-0.0868079635657732,14.9146128323417,-0.617293949152579,0.546104643582629,0.632132231433606,-6.97312217280319 +"Q8SZK9",0.0294191182673096,22.1503916875227,0.613709004185092,0.548410197016774,0.634178077913605,-6.97540242756183 +"Q9VF82",-0.0435766424431563,14.891650988725,-0.613363815782891,0.548632473878496,0.634178077913605,-6.97562132243794 +"P92181",-0.0419261049628794,16.5019343601809,-0.61157043408501,0.549788071790125,0.635073756056737,-6.97675667575236 +"Q95RG8",0.11229218925582,13.3033636444759,0.608335696067461,0.55187576666946,0.636979481960828,-6.97879651773352 +"Q9VJ60",-0.0435692550323701,16.5183773155597,-0.607831379981209,0.552201637239423,0.636979481960828,-6.97911361355135 +"O97111",-0.0868123108578018,14.7278276950858,-0.599103220481649,0.557857874643931,0.643059388324863,-6.98456185143321 +"Q9VVK5",-0.0498733694322553,15.8650928520295,-0.59777280986146,0.558722757960096,0.643611574777238,-6.98538571136053 +"Q9VHD2",0.0454725444290229,16.6051082668084,0.596445051890543,0.559586630994327,0.644161836092849,-6.98620618617229 +"Q9VN25",0.0557908141239398,14.9322502252662,0.594897243382207,0.560594573881234,0.644877068437171,-6.9871604409428 +"Q9W0H3",0.0473274497001448,16.7032082294702,0.590739738052788,0.563306750244494,0.647550419991603,-6.98971190512043 +"Q7PLI0",0.034055727774053,17.7748031496623,0.586320084785322,0.56619755740028,0.650425293211892,-6.99240550359664 +"O97365",-0.0321017739072857,18.0005488474307,-0.584181749658149,0.567599007334904,0.651586472288108,-6.99370179130189 +"Q7KMQ0",-0.026322214947708,20.7685326007244,-0.583315505655066,0.568167257376992,0.651719066007162,-6.99422563128161 +"Q9VJI7",0.0394815059886824,17.3634249097304,0.582422796831961,0.568753181315145,0.651719066007162,-6.99476469740303 +"Q9VHI7",0.0428762797774151,15.5040863207409,0.58221948722989,0.568886666730472,0.651719066007162,-6.99488735639837 +"Q6WV19",-0.093610417374272,13.5271211872505,-0.581357274664427,0.56945294594995,0.651920050682579,-6.99540708382922 +"Q9V564",-0.0490790123416378,14.0614762901233,-0.579702789335501,0.570540398219985,0.652716998786649,-6.99640231654203 +"Q95U34",0.0314697396109729,19.4638013237098,0.575375455582169,0.573389785931796,0.655527185013184,-6.99899252877678 +"Q9VMG0",-0.124817563130989,14.7384410770333,-0.572701213141177,0.575154380166967,0.657094182272945,-7.00058395970211 +"Q9VQI6",0.0727810966701377,16.1355099818427,0.570549729084657,0.576576081179935,0.658267558800912,-7.0018591441121 +"Q9VCW6",0.0320319202653181,19.8068438440522,0.569810636777631,0.577064894069351,0.658374995422488,-7.00229614285052 +"Q7JYZ9",-0.0330529216956243,18.1199350161953,-0.567631296677058,0.578507492279681,0.659569717787087,-7.00358154789036 +"Q9Y112",0.0224399558539083,22.2378819571763,0.564378521691482,0.580664107072833,0.661576318714129,-7.00549129552489 +"Q9VPB8",-0.0465050589292328,15.6197856618591,-0.560203834987419,0.583438014143101,0.663948375157142,-7.00792688391252 +"Q6AWN0",-0.0350074786298435,18.3995720216313,-0.560047300304283,0.583542157062572,0.663948375157142,-7.00801787162107 +"Q9VKK1",0.0565539214949897,14.529468622612,0.556646299336905,0.585807201825829,0.666071174264133,-7.00998871921691 +"Q9V998",0.071460582685221,15.8395818518793,0.550111156785133,0.59017212963937,0.670535890118673,-7.01374340767284 +"Q9VSL6",-0.0863942650050724,14.5993544440375,-0.549564639596815,0.590537903228016,0.670535890118673,-7.01405547216523 +"Q9VB79",-0.0322862453319335,17.640183735074,-0.529505304676133,0.604042044421493,0.68540280958847,-7.02530289774618 +"Q9NCC3",-0.039204719685987,17.3193819638785,-0.528683444705967,0.604598572273834,0.685567925596706,-7.02575513147519 +"Q9VW40",0.0389422087431228,14.670634129146,0.526995261493234,0.605742529986357,0.686398464685627,-7.02668194090443 +"Q9VMY1",0.0505932760615888,15.5447128040025,0.526249219499632,0.606248407388701,0.686505324863783,-7.02709060597613 +"Q9VNE2",-0.0295362258883856,19.0371859080969,-0.523162854921683,0.608343421079816,0.688410329960063,-7.02877531416865 +"Q9VS97",-0.0561012284155105,15.1302822517695,-0.512248944026025,0.615780067737552,0.696353324058465,-7.03465600789182 +"A1Z6S7",-0.0277755531588966,17.5635706018377,-0.507633645328707,0.618938069042252,0.699450338185959,-7.03710681606518 +"Q7KSM5",0.0242327215675573,18.9305354829409,0.505210873846085,0.620598951011477,0.70058042924657,-7.03838476923138 +"Q9VM33",0.116619332070956,13.8090128542247,0.504949727230009,0.620778102174119,0.70058042924657,-7.03852216476998 +"Q9VC58",-0.0665365880357793,13.1555069332173,-0.501297131449658,0.623286437486042,0.702935617124218,-7.04043668159053 +"Q961D9",-0.127206116145841,12.4366145173645,-0.498599404011305,0.625142134022255,0.704552080776433,-7.04184206730728 +"Q9V3U6",0.0367035927182187,21.0897634108731,0.497941931878184,0.625594789208199,0.704586163672705,-7.04218346618685 +"Q9W330",0.0263493042090417,20.670591381323,0.49475996141575,0.627787699295355,0.706578868032829,-7.0438295726398 +"Q9VTF9",0.0310319340569549,17.4071989376471,0.493089885655583,0.628940111705684,0.707398588216508,-7.04468945193211 +"Q7K1Q7",-0.0254872586349837,16.5300032574157,-0.490662615011254,0.630616790182777,0.708806473062583,-7.04593417026312 +"Q9VFM0",0.0487272949396509,14.3512391004061,0.477993796880554,0.63940183366142,0.718196807102524,-7.05233415092675 +"Q9VAP3",0.0604995922817064,16.4805502870779,0.476639889082215,0.640344017275264,0.718771077264563,-7.05300850670944 +"Q9VRD9",-0.0466179669780935,16.1292785817707,-0.473327730139279,0.642651635370149,0.720876212372165,-7.05465040239116 +"O17452",0.0435430276980888,19.8662812737582,0.470390142478429,0.644701466959391,0.722689547639962,-7.05609731315913 +"Q9VEH2",-0.0255305661679959,15.912390193916,-0.468424370253439,0.646074834596394,0.723742662261105,-7.05706066870491 +"A1Z729",0.0330696120428655,16.6911330642385,0.466998691701558,0.647071702584967,0.724372885846796,-7.05775689107595 +"Q9W3X8",0.0662870850094723,13.8913247374019,0.4653253891559,0.648242604516194,0.725196957969827,-7.05857140839694 +"Q9VQ29",0.0265145812337515,22.1437524929704,0.463778593098805,0.649325835093115,0.725921912155038,-7.05932181812051 +"Q9VS11",-0.0346884981399462,14.9112054089916,-0.460266711353562,0.651788255652779,0.727838247878285,-7.06101654625706 +"Q8I0J3",0.0488004616268043,15.0253026986252,0.460089423821512,0.651912675257888,0.727838247878285,-7.06110176770539 +"Q9W0N6",-0.0510693799204187,14.51720346261,-0.458863099346126,0.652773596183748,0.728311945441132,-7.06169038282463 +"Q9W415",0.0537314789166121,16.7369198250201,0.457178572016589,0.653957020844604,0.729144592759893,-7.06249643615254 +"Q7K0W4",-0.0268845560875839,21.7166996338103,-0.454649728838389,0.65573539765187,0.730639040269418,-7.06370108251101 +"Q9VYG8",0.116749287651253,15.1481553078573,0.453645227951326,0.656442397367728,0.730938530580355,-7.0641777846405 +"Q9VLG9",-0.0375684388667334,15.7522190584489,-0.452390746357361,0.657325817060816,0.731433931192423,-7.06477167792933 +"Q7K4Z4",-0.0406169644564489,14.9335264754016,-0.447818891092489,0.660549821035985,0.734531400992016,-7.06692252084615 +"O62621",0.0494469610375834,13.1314119449409,0.438599486713631,0.667072283879397,0.741290186216412,-7.0711950700729 +"Q95RB1",-0.0262124778125603,15.9436391430334,-0.430971462586265,0.67248993155148,0.746813053147716,-7.07466460238857 +"Q7KUK9",0.0392528612970295,18.4155809725565,0.429253116608628,0.673712952229815,0.747673455967619,-7.07543797809315 +"Q9VTZ6",-0.0321588932335999,17.0784973340279,-0.427037415536651,0.675291363611461,0.748926858047818,-7.07643074642631 +"Q9VYS5",-0.0385642698764581,14.2953490589927,-0.424288295582768,0.677251955501736,0.750602167293618,-7.07765554518041 +"Q9W257",0.0510439670654819,17.065856040695,0.423331914464669,0.677934584023568,0.750859818161561,-7.07807982461456 +"Q7K549",-0.0571731201097361,14.7435324922279,-0.421700479808714,0.67909971158822,0.751651173808329,-7.07880141970464 +"Q9VXH7",-0.0367630474922649,18.1722640139798,-0.418841761631408,0.681143367239289,0.753413220527277,-7.0800592866236 +"Q9U1K7",-0.0440555783010055,17.4736723774197,-0.417480803883875,0.682117202882074,0.753990387281179,-7.08065518494749 +"Q9W158",0.0276857427231061,16.9865816324652,0.415290971639097,0.6836853640908,0.75467050382082,-7.08161002865733 +"Q7JVM1",0.0336910939606554,15.8704092471334,0.41418408498217,0.684478589171863,0.75467050382082,-7.08209080221429 +"Q7JZF5",-0.0222527027875152,16.9290777026881,-0.41414782685469,0.684504579218217,0.75467050382082,-7.08210652962466 +"Q9VFM9",-0.0222828553621888,17.131380677997,-0.414095274816216,0.684542249568886,0.75467050382082,-7.08212932233049 +"Q9VH19",0.0392610969304226,13.9885956301637,0.412514674092346,0.685675658941422,0.755420739177207,-7.08281353376188 +"Q9VUH8",0.0294080798388965,15.4726074432561,0.408504095927679,0.688555034419689,0.7580922755195,-7.08453814983542 +"Q9W265",0.026749182969791,17.0207679098604,0.402020172934237,0.69322064296186,0.762725615079408,-7.08729147028124 +"Q9VL18",0.0192293442883802,20.8673137470251,0.397234008187479,0.696672847916887,0.766018662047045,-7.08929618934433 +"Q9W379",-0.0280514796692426,16.3214366602464,-0.393709946312244,0.699219144708341,0.768311945568849,-7.0907572339751 +"Q8ING0",-0.0382209516409411,14.6477582490549,-0.389276722721459,0.702427644697942,0.771137860191311,-7.09257708802697 +"Q9W0M5",-0.0319609141940926,13.2751233851136,-0.388879307716914,0.702715556049636,0.771137860191311,-7.09273924172345 +"Q9XYZ9",0.0239765534737906,21.9694467034747,0.387309062686902,0.703853594827389,0.771878892946802,-7.09337834645337 +"Q95RQ1",0.0729018078998003,11.9850982268574,0.385497634078811,0.705167339077943,0.772811512208942,-7.09411246557122 +"Q7K9H6",-0.0643586433378722,11.8963154596032,-0.383457236281371,0.706648303297672,0.773926047209794,-7.09493533711017 +"Q9VJC0",0.0171007992565855,16.5593645732023,0.378698790206885,0.710106827900328,0.777203536048391,-7.09683772352718 +"A1ZBM2",0.0259195457513357,18.5850377736808,0.357359184718596,0.725696816374388,0.793745763745887,-7.10508216426956 +"Q9VUW2",0.0718578068995495,14.4107453290171,0.352932111487517,0.728947090753582,0.796778340351883,-7.1067336786846 +"O77430",0.0151150465738112,19.5431140055863,0.349428206739421,0.73152340242419,0.799070749995776,-7.10802644693193 +"Q9VL68",-0.0153235252981752,20.7990471442037,-0.347894646752174,0.732652032330984,0.799779836340368,-7.10858826150889 +"Q9VZ20",0.0143810919644736,18.7115425488531,0.34723455478572,0.733138025898632,0.799786937343962,-7.10882933526069 +"A1Z8H1",-0.016904981865391,23.1161754414329,-0.344806093088069,0.7349269959665,0.801214528936028,-7.10971236039268 +"Q9VPQ2",0.0255258239879463,16.4555904142146,0.340991398699343,0.737740354314732,0.803305682730384,-7.1110871195296 +"Q8SYD0",-0.0243952944396657,15.4522077910631,-0.340899284740013,0.737808336896252,0.803305682730384,-7.11112012979912 +"P08736",-0.0173995704100314,24.3646443327998,-0.339932072049047,0.738522302067244,0.803558512621111,-7.11146621306708 +"Q7K0P0",-0.0241647671191032,15.2798450996036,-0.336071368062029,0.741374615924092,0.806136153429847,-7.11283798121281 +"O97422",0.0482450098291149,15.403029317828,0.333914004121701,0.742970198881566,0.807344815462184,-7.11359780242415 +"Q7KTH8",0.015261127805033,17.6243388310672,0.331298787689317,0.744906038714191,0.808921401416191,-7.11451241248351 +"Q9VL93",-0.0265471519595994,15.3595508872012,-0.328693325602304,0.746836423070121,0.810490015407262,-7.1154165618911 +"Q9VGF3",-0.0210223027161405,15.6839771134999,-0.325771851366085,0.749003020624479,0.812312768791697,-7.11642200314332 +"Q961T9",0.0348682574471759,17.9125659916084,0.323151680421112,0.750948025366499,0.813892986557063,-7.11731621901844 +"Q9VIT0",-0.01844231144071,16.4449159882083,-0.320836737596331,0.752667904088588,0.815227314298549,-7.11810033936855 +"P80455",-0.0269671368509634,20.5361096280356,-0.317923124605119,0.754834483629903,0.816960741456171,-7.11907933631596 +"Q9VU95",0.0685317585057277,16.5867113017961,0.316871187829508,0.75561723290531,0.816960741456171,-7.11943062998653 +"Q7K127",-0.0348308444370211,18.5609370019037,-0.316709373027784,0.755737664308676,0.816960741456171,-7.11948456597671 +"Q9VHG4",-0.0306195417607427,18.369635660303,-0.31130523642918,0.759763451222463,0.820780723211832,-7.12127024807417 +"Q9VRG8",-0.0220054418685223,16.1705222861058,-0.308935863158748,0.761530774277428,0.821583927808533,-7.12204358898045 +"A1Z9E3",0.0137661226813641,21.7944777074245,0.308432004280147,0.761906781187179,0.821583927808533,-7.12220729140655 +"Q9VI53",-0.0169653474521088,16.3619416977296,-0.308101772573128,0.762153251622381,0.821583927808533,-7.12231443966394 +"Q9VIK0",0.0579611478893653,12.7877429779278,0.30766782630536,0.762477170412236,0.821583927808533,-7.12245506719055 +"Q9VK99",-0.0255349211170142,19.9898610221385,-0.30688640474449,0.763060577240814,0.821681757803537,-7.12270780622843 +"Q9W197",0.016994875890326,17.3533409407358,0.305722014515066,0.763930181987234,0.822087447454649,-7.12308323291956 +"Q9VDI3",0.0307819249828754,15.0234047980933,0.300077792013063,0.768150097929177,0.826095656573737,-7.12488307928441 +"Q7JZW2",0.0108833371539667,20.5285320958936,0.297707325224574,0.769924649247451,0.827470563753059,-7.12562909791892 +"P08120",0.0256854651731899,18.2201574118654,0.295553734355038,0.771537995999977,0.828670558485487,-7.12630179250357 +"Q9VGF7",-0.0140724564946453,20.0533189875099,-0.28305949918748,0.780919202888883,0.838206711981117,-7.1301091837168 +"Q9VW58",0.0407576093743476,14.8697571011257,0.28115967255729,0.782348794176908,0.839177892127069,-7.13067387223009 +"P20240",0.0222835984627494,17.3589207454869,0.280520139153149,0.782830215917098,0.839177892127069,-7.13086311508168 +"Q9W0M4",0.0213979583852684,17.8313290861631,0.27867088107595,0.784222796822581,0.840130780411088,-7.13140792487473 +"Q7K2D2",-0.0130193446067608,20.3568335186429,-0.270845383150275,0.790124143025497,0.845909544651174,-7.13367390123479 +"Q9V434",-0.0260309444774727,15.0221477551527,-0.268695461277613,0.791747776516892,0.84710409957035,-7.13428524754113 +"Q9VUM1",-0.0211819147165819,16.5277421508812,-0.267480124972112,0.792666046128512,0.847542926245101,-7.13462870226382 +"Q9VA76",0.0199306997099473,15.2118978935304,0.265059577400065,0.794495877011961,0.848955235654037,-7.13530815480997 +"Q9W3T7",-0.0115923374366105,17.4221886654468,-0.262467546739743,0.796456722322918,0.850505642019608,-7.13602895705981 +"Q9VC31",-0.0189959262658697,17.6712190678343,-0.261387052175027,0.797274524333506,0.85083423326186,-7.13632735236325 +"Q7JQW6",-0.0149660235126117,15.8684640512846,-0.260234033115725,0.798147488682394,0.851221234732885,-7.13664443088569 +"P48159",0.0114299672592075,19.8895885029575,0.257857565729043,0.799947615434732,0.852215919955252,-7.13729357274522 +"Q9VW90",0.0730270299244395,15.0035491269265,0.257653828697931,0.800101996792521,0.852215919955252,-7.13734894961596 +"Q9VAF5",-0.0122233616260434,15.9782523145676,-0.256027028916873,0.801335009131256,0.852984553433909,-7.13778956636855 +"Q9VF28",0.0228668556872726,17.7510924228796,0.253621374172206,0.803159342406489,0.854381239243637,-7.1384360637101 +"Q9VTP4",-0.011809511597427,20.9467022126204,-0.252596078588628,0.803937237020747,0.8546636783624,-7.13870976304686 +"Q9VEN9",0.0239582866982317,14.881487342776,0.251426192776276,0.804825093688874,0.854742511883482,-7.13902071728559 +"Q9VMF0",0.0249799679688181,13.8206371887472,0.251147999383156,0.805036262691217,0.854742511883482,-7.13909445006895 +"Q9VTM6",0.0442716775425822,16.2378378117642,0.245626891199316,0.809230402127608,0.858649052639218,-7.14054102336901 +"Q9VY41",-0.0378159030287684,16.5398282334143,-0.244389339257922,0.810171348168029,0.859100959150841,-7.14086089519982 +"Q9VF77",0.0162952790940611,15.7117370840066,0.239530637311529,0.813868465026134,0.862473062048025,-7.14210122704944 +"A1Z9M5",-0.0277644673253761,15.0694024980801,-0.237383849083351,0.815503474448967,0.863657012940239,-7.14264138618792 +"Q9W1W4",-0.0167368507227614,17.2907682443117,-0.228829192114915,0.822027474773319,0.86978256046726,-7.14474589236178 +"Q9W4X7",-0.0107922932479561,19.1246900831119,-0.228432422560166,0.822330394398602,0.86978256046726,-7.14484163943168 +"Q9VAU6",0.028847122419581,13.4014753203966,0.227711372619542,0.822880965300099,0.869813339746872,-7.14501521826799 +"Q9W087",-0.022040162568679,16.7081530499718,-0.226616129576103,0.823717441732808,0.87014610057652,-7.14527783411301 +"Q7K0S6",-0.0188084423843264,17.3576030452575,-0.22367637174166,0.825963727531115,0.871644595248366,-7.14597650643486 +"Q9W499",0.0255703880038425,16.9090063014245,0.223391977735045,0.826181118158074,0.871644595248366,-7.14604361566286 +"P05389",0.00993614003787258,20.5504569630224,0.221065254888655,0.827960213070922,0.872969428193614,-7.14658947281862 +"Q9VKR0",0.0764728362005584,13.2941885390495,0.215472941359249,0.832240251689987,0.876602348994362,-7.14787821936384 +"Q9V3W7",-0.0191102514127621,17.9121173774179,-0.215190050591175,0.832456906958675,0.876602348994362,-7.14794253943229 +"Q9W3J1",-0.0403940692155587,15.7126345024723,-0.213871450914842,0.833466956782406,0.876628913930086,-7.14824123752761 +"Q9W0K9",-0.020621089226184,14.1832779737809,-0.21378492303673,0.833533247897551,0.876628913930086,-7.14826077460102 +"Q9VZS1",0.0207139752240604,15.4530562217287,0.212373806759435,0.834614521907587,0.877212994670356,-7.14857828047724 +"Q9VG26",-0.0121904568055875,19.710108461498,-0.211665763964849,0.835157192618696,0.877230602826187,-7.14873680493717 +"Q0E980",-0.0126823222613446,18.3692141720927,-0.203377565460215,0.841515932445165,0.883353414297379,-7.15055331214885 +"Q9VMX3",0.0204821750811703,12.5208429207601,0.192988486714858,0.849502520341611,0.891176228886671,-7.15272833819335 +"Q07093",0.0209669547784515,14.5701623715482,0.189811526108814,0.851948245310072,0.893180184272282,-7.15337080482665 +"Q9W1H5",0.0108629037515975,17.2681513831536,0.188061004021867,0.853296524270063,0.894031785478936,-7.15372027202431 +"Q7KTW5",0.00917615798666915,21.5780049411043,0.185601748742129,0.855191476471926,0.895454728659869,-7.15420578338332 +"A1Z6G9",0.0188126372489528,14.2527048756066,0.18455220639786,0.856000470457396,0.89573951362794,-7.15441104933861 +"Q9W259",-0.0167718422245962,16.9085072613927,-0.177354992130037,0.861552569244084,0.900984128839581,-7.15578743071357 +"Q9XZ61",-0.00858495628574829,18.5482073575156,-0.173667866022997,0.864399843254742,0.903395324905332,-7.1564714305164 +"Q9VWA8",0.0203458502005933,14.4770046998866,0.171585920232663,0.866008423369658,0.904509737119969,-7.15685133033647 +"P20351",0.0180205903268789,13.9791973063708,0.167361019887571,0.869274591700647,0.907352953039223,-7.15760823294769 +"Q86BL4",0.0138623605006654,14.9576581937835,0.162412833452725,0.873103034098917,0.910769488443431,-7.1584708095551 +"Q9V3Y4",0.0167627692366707,14.0646680747363,0.161719418709641,0.873639797068039,0.910769488443431,-7.15858962615881 +"Q9VSW4",0.0282053889497895,15.8970339430903,0.160158761905081,0.874848114148233,0.911459496814024,-7.15885519132551 +"Q9VNF5",-0.0096020699726882,15.9532783275783,-0.153001865229408,0.88039331085729,0.91645934162225,-7.16004014971911 +"Q9VLT7",0.0158095916014425,18.0639268983877,0.152197955724526,0.881016592804485,0.91645934162225,-7.16016987900331 +"Q9W258",0.00940275482686559,19.3174119834997,0.150246154171918,0.882530187767125,0.91645934162225,-7.16048201170121 +"Q9VKA1",0.0404630409903888,14.5457442197692,0.149922394736526,0.882781304528121,0.91645934162225,-7.16053339901067 +"Q9VCY3",0.0108772520907117,17.8672602120816,0.149864214321764,0.882826432239992,0.91645934162225,-7.16054262172876 +"Q9W3C4",-0.0328653231137697,14.800857515061,-0.149712976249749,0.882943742198415,0.91645934162225,-7.16056657918259 +"Q9V3V0",-0.00890432972925126,14.3313840693417,-0.147587086409904,0.884593016554178,0.917600218664408,-7.16090078667403 +"Q95RN0",0.00618199438560652,16.9202285683096,0.134562934845973,0.894708938269027,0.927516786222957,-7.1628442271854 +"Q9VIQ8",0.00788694965752512,21.3193103421005,0.133616904706553,0.895444481524322,0.927702729927062,-7.16297841983865 +"Q9VXB0",0.00635230969970735,20.2666335085361,0.131032627201095,0.897454272710232,0.929207775841507,-7.16334018043917 +"Q9VSR8",-0.01217320241072,15.4698579187757,-0.129393363966597,0.898729503137713,0.929411039310335,-7.16356599909954 +"Q9VVS6",-0.0118535475799124,16.5208454528205,-0.129347749804054,0.898764991851061,0.929411039310335,-7.16357224216943 +"P51140",-0.0109168173805188,13.6184514663991,-0.127120190390301,0.90049834640316,0.930272148063505,-7.16387444861975 +"Q24298",-0.00625285180859692,19.3929901094525,-0.126457910690439,0.901013794315415,0.930272148063505,-7.16396328790639 +"Q9V4C8",0.00649161297017287,17.2387864156534,0.126127641177598,0.901270858075913,0.930272148063505,-7.16400741775559 +"Q9V8M5",0.00870432779991859,19.8538082749928,0.122188969542031,0.90433737514369,0.932860075287368,-7.16452481738441 +"Q95SH0",0.0553797261228421,13.8303418593454,0.121010270109253,0.905255378492542,0.933229895751273,-7.16467647138086 +"Q9VTV9",-0.00857138483124231,17.2444726586716,-0.118550381116158,0.907171654651796,0.934627745496724,-7.16498823974108 +"Q7JXF5",0.00644462893732722,18.5029320795648,0.117721144732093,0.907817772088701,0.934716076446884,-7.16509189753466 +"Q9VYT1",0.0113876151837378,14.2902547340875,0.116790807583754,0.908542744254831,0.934803313670287,-7.1652073288027 +"Q8T0N5",0.0069301910844537,18.5929777548029,0.11554761985793,0.90951163832749,0.934803313670287,-7.16536014982496 +"Q86BI3",-0.00660980477275075,18.0561329281244,-0.115455037105967,0.909583799812276,0.934803313670287,-7.16537146540497 +"Q9W0C3",-0.0114779733960901,18.5057816508129,-0.109403842880612,0.91430201342569,0.93907374285348,-7.16609141248632 +"B7Z0N0",-0.0123338029012992,13.0695338342543,-0.107531299924102,0.915762747647014,0.939457345450364,-7.16630636191863 +"Q9VWU1",0.0106353012903817,14.9217294049625,0.107481058081217,0.915801944665643,0.939457345450364,-7.16631207814637 +"P55828",0.00615222760454159,19.9669626463738,0.10506583244917,0.917686487386713,0.940584189369846,-7.16658372236702 +"Q9VYT3",0.00824648487344959,14.3954874762649,0.104627947216001,0.918028213605581,0.940584189369846,-7.1666323118716 +"Q6IGW6",-0.00958927461025283,15.6891045026585,-0.102239024360061,0.91989282386857,0.94191604064627,-7.16689382786364 +"Q9VSK4",0.00497355468896998,19.7403126208098,0.0927376017960536,0.927313596021801,0.948931949794088,-7.16787424203102 +"P02515",0.0116778702959657,18.0326995472869,0.0904458941685357,0.92910452780629,0.950181699804348,-7.16809642783827 +"Q9VH07",0.00445960122722511,18.2239835556808,0.0822671019591599,0.935499272588571,0.956135285954495,-7.16884409973242 +"Q9V6B9",-0.00625241327311166,15.8416982892361,-0.0791981581834398,0.937899991634644,0.957785375583874,-7.1691063959773 +"Q0KI15",0.00554315009476269,15.6037098601969,0.0787352363197313,0.938262172484442,0.957785375583874,-7.16914509623065 +"Q7YTY6",-0.00556057321249881,18.4428378960509,-0.0741883720637284,0.941820282822449,0.960558712821414,-7.16951316555058 +"Q8MRT7",-0.0062948354314134,15.4242879439663,-0.0737538616959337,0.942160373397636,0.960558712821414,-7.1695471943189 +"Q966T5",-0.00469223620662973,16.5266111685044,-0.0730560133486324,0.942706602451232,0.960558712821414,-7.16960142844088 +"P02299",0.00349790018091767,22.0304863036934,0.0709091216461246,0.944387230546043,0.961299623489529,-7.16976504589082 +"Q0E9F9",-0.0062081555287854,18.4525026894022,-0.0706547437918652,0.944586380635095,0.961299623489529,-7.16978410922153 +"Q9VMQ7",-0.00677310363976957,15.9169941817517,-0.0655349336299412,0.94859542495119,0.964790956596698,-7.1701532360121 +"Q6IGN6",0.00764689238470062,16.7636991703126,0.062372126091643,0.951072770201365,0.966721133879267,-7.17036740692945 +"Q9VDK7",-0.0029226536690885,17.8691561342521,-0.0570692026148443,0.955227567552418,0.969838226918673,-7.17070274123965 +"Q4V5I9",0.00484380295579001,16.0392601627442,0.0569738575398357,0.955302282270611,0.969838226918673,-7.17070849808168 +"Q5LJT3",-0.00413398688196409,17.074057694874,-0.0510302764307441,0.95996064114192,0.973974665100196,-7.17104836982532 +"Q9W436",0.00473262367416183,14.4227300302517,0.0414407447898805,0.967479658843471,0.980475658013559,-7.17151788682438 +"Q9VUQ7",-0.00381850689259089,16.536811375786,-0.0411543055993185,0.967704304427724,0.980475658013559,-7.17153041384246 +"Q7JXW8",0.00550815757065592,14.8862472833242,0.0406095595627995,0.968131540016985,0.980475658013559,-7.1715539978556 +"Q9VFN9",0.00260321793405005,16.0444991720098,0.0360568401660011,0.971702545624576,0.983188028192846,-7.1717388156476 +"Q9VVM1",-0.00344472977537258,15.5735425977514,-0.0349418798241929,0.972577182608832,0.983188028192846,-7.17178073203697 +"Q9VCU6",0.00267608503756556,15.4529955935673,0.0349407289436627,0.972578085442563,0.983188028192846,-7.17178077462371 +"Q9XYW6",0.00257702499316537,16.6203581169738,0.0324538347702769,0.974529072865375,0.984563593906388,-7.17186952283663 +"O18373",-0.00146969546919351,19.5967439878403,-0.0298235366246757,0.976592744049132,0.986051269415226,-7.17195626243781 +"Q9VV47",0.00121366100412956,20.1696428458878,0.0258605602824226,0.979702324562007,0.98859254529306,-7.17207311555665 +"Q9VE94",-0.00254740625284455,14.6671265901944,-0.0230251684208854,0.98192734841751,0.990238704450064,-7.17214651418601 +"Q9VD30",-0.00182393087855459,21.4173459245737,-0.0217107073179439,0.982958902282717,0.990680029611825,-7.17217765279903 +"Q9VN93",-0.00102053719777473,20.3013510568696,-0.0204339323808308,0.98396091109497,0.990804412700914,-7.17220614682928 +"Q9VLM8",-0.00119907562637067,16.8423685038192,-0.0188414464115614,0.985210727723814,0.990804412700914,-7.1722392671735 +"Q9VGQ1",-0.00110516200665245,22.4334621165868,-0.0186514483752082,0.985359844929829,0.990804412700914,-7.17224303940141 +"P49963",-0.00148211894319417,14.9163248915629,-0.0185259437496181,0.985458345725909,0.990804412700914,-7.17224551020748 +"Q9VLM9",0.00105589095897685,18.4070665626877,0.0165596901234311,0.987001567035035,0.991656625863259,-7.17228204191056 +"Q9VHG6",0.00139154076619086,15.7066515973361,0.0159310140465198,0.987494997337454,0.991656625863259,-7.17229285845125 +"Q9W3G8",-0.0011019337726168,15.7625507490309,-0.00975483631057594,0.992342754242694,0.995397454205856,-7.17237686605856 +"Q9VNX9",0.00141671340531602,13.5705128688894,0.00966451810462362,0.992413648887493,0.995397454205856,-7.17237779484798 +"Q7KMM4",0.00160727425001816,14.4854726601703,0.00812332267419119,0.993623409125318,0.996011926935716,-7.17239231223749 +"Q9VHK6",-0.00056773464342541,18.0711183088705,-0.00640468754099826,0.994972469418274,0.996765212606415,-7.17240553426792 +"Q7JVG2",-0.000226988402621586,14.8268907763185,-0.00200529127533185,0.998425882703476,0.999277122648805,-7.17242512709912 +"Q9VN71",7.58494173851432e-05,18.6232407142644,0.000945459342829379,0.999257831144361,0.999277122648805,-7.17242678317142 +"P43332",7.67781346020513e-05,17.1823214245895,0.000920883616509961,0.999277122648805,0.999277122648805,-7.17242680746031 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant.csv new file mode 100644 index 0000000..f5e78cd --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant.csv @@ -0,0 +1,6 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P10676",-1.06222841949458,19.7094940821678,-15.2222953299637,1.97370375315921e-08,8.23034465067389e-06,10.0543532220728 +"Q9V4E7",1.30292940665369,15.7149598382524,11.9017847987221,2.22982217294942e-07,2.65667384605688e-05,7.66342726320171 +"P19334",-1.02046554310178,15.2730765209876,-11.1912206229168,4.04742124991322e-07,3.37554932242762e-05,7.06159307574016 +"Q9VV31",-1.30560764476999,15.7123156107349,-10.4948109548456,7.49937676275957e-07,4.31343463458033e-05,6.43444040998491 +"Q8IN43",-1.11392451857727,17.9733984879883,-5.63796861679948,0.000188463286205251,0.00180664805396757,0.696802178099929 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant_fdr_only_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant_fdr_only_ms3fix.csv new file mode 100644 index 0000000..906b72d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant_fdr_only_ms3fix.csv @@ -0,0 +1,775 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC06",0.861311545357704,16.4572731614066,17.0271950622358,2.27439581990524e-11,3.79369222760194e-08,16.4000243256089 +"Q9VC18",0.8409008937831,18.2956868694891,15.9756984229533,5.7511068997418e-11,4.79642315438466e-08,15.5117621848845 +"Q9VLB7",0.814590382360993,21.0974381148568,14.7606589576254,1.80257074528044e-10,1.00222933437592e-07,14.4047637771722 +"Q9VFN7",-0.588266316630904,18.6270162802085,-13.9954809683938,3.86441769568273e-10,1.6114621790997e-07,13.6586061810281 +"Q9V3N7",0.605663705165842,20.5686569459863,13.7450780112769,4.99893330990734e-10,1.66764415218509e-07,13.4055548939968 +"Q7JYW9",0.651452471682941,17.2438855857285,13.400592162657,7.17078227199795e-10,1.73026022815309e-07,13.0499296520903 +"Q9VLC5",0.701507924379598,21.8300234017748,13.3821226676886,7.31247183314271e-10,1.73026022815309e-07,13.0306123704017 +"Q9VZU7",0.551207876873768,17.579644743353,13.2599690165626,8.32758146802835e-10,1.73026022815309e-07,12.902198492323 +"P10676",-1.06222841949458,19.6680274835087,-13.1533467528725,9.33593648284042e-10,1.73026022815309e-07,12.7891763103134 +"Q9VAJ9",0.869971970779748,17.6372822657718,12.4994318077997,1.91530642114479e-09,2.97796713053442e-07,12.0763192205427 +"Q9VA09",0.717891126775822,16.4222463769768,12.4545726184399,2.01439375040196e-09,2.97796713053442e-07,12.0261389410304 +"Q9VXP3",0.65270190840609,14.6276616252256,12.3150442278242,2.35885793688295e-09,2.97796713053442e-07,11.8689793343977 +"A1Z803",0.629629005558016,18.850181843222,12.2804654008238,2.45353134414646e-09,2.97796713053442e-07,11.8297761161399 +"P21187",0.620905529959316,18.9554877083743,12.2641844665348,2.49949279541258e-09,2.97796713053442e-07,11.8112825517896 +"Q9Y119",-0.735322922691768,17.7137644715383,-11.9944414625794,3.40953869309834e-09,3.79140702672535e-07,11.5015525613983 +"Q9W3J5",0.639137617105979,16.1340150729091,11.8679596831181,3.9516850054697e-09,4.11963161820216e-07,11.3541264320372 +"Q9W2N0",0.542470712111847,16.1920856092483,11.7759211543357,4.40320025641882e-09,4.15741219864059e-07,11.2459505348941 +"Q9W1H8",0.585664501461594,20.5885079530425,11.7490204301733,4.54525060376087e-09,4.15741219864059e-07,11.2141893228491 +"O97125",0.662541786334231,18.5365371323678,11.6730186626527,4.97342552633375e-09,4.15741219864059e-07,11.1241010907944 +"Q9VV31",-1.30560764476998,15.6252071715139,-11.6710772714636,4.98490671299831e-09,4.15741219864059e-07,11.1217929935063 +"Q9VHR8",0.524861763115304,20.4200281317183,11.40665723926,6.84425079416225e-09,5.14826801373419e-07,10.8041838262378 +"Q7JUS9",0.711004592010092,20.4511940936475,11.3999690205398,6.89987582503677e-09,5.14826801373419e-07,10.7960659092596 +"Q9V3A8",0.688036884714643,15.5552073607755,11.3764940544369,7.09893071438168e-09,5.14826801373419e-07,10.7675395573629 +"Q9VN13",0.710376988671154,17.063191730045,11.3365005600549,7.45217698671916e-09,5.17926300576982e-07,10.7188205428374 +"O16797",0.502613650816539,16.7021443619149,11.1118341112362,9.81466844834e-09,6.54834678873245e-07,10.4423052997502 +"Q9V3B6",-0.832423531891063,13.2564357029021,-11.070629965636,1.03280256159664e-08,6.62582566439693e-07,10.3910642672852 +"Q9VU68",0.470565659899183,19.3199390217204,10.9708888765887,1.16919204517277e-08,7.13245973362205e-07,10.2663409792095 +"Q7K148",0.665578619529196,16.849496891228,10.9518703149001,1.19729539892936e-08,7.13245973362205e-07,10.2424479110992 +"Q7JYX5",0.793371589126801,14.9157334791088,10.7622218479595,1.51999556086386e-08,8.47657775356806e-07,10.0022266370317 +"A1ZB70",-0.573687439417457,16.1040253476183,-10.7598532326644,1.52456434416692e-08,8.47657775356806e-07,9.99920362950756 +"Q24253",0.756144490100887,18.9061045823468,10.726553731461,1.59035502014238e-08,8.55713604386285e-07,9.95664433194997 +"Q9W3Y3",-0.482577044523634,18.0873189781384,-10.5881161636925,1.89781208491041e-08,9.89234549259552e-07,9.77850324922088 +"Q8SXD5",-0.567410558158709,20.7561679568443,-10.5390869504578,2.02127331311327e-08,1.02166178371907e-06,9.71494207914322 +"Q9VW54",0.560651678722602,15.8773081089544,10.4345189277314,2.31383819320862e-08,1.13514179596235e-06,9.57854979611287 +"Q9VUY9",0.482887429018454,19.7353463817489,10.3689994870935,2.51969993981627e-08,1.20081699988958e-06,9.49250902242807 +"Q9VFQ9",0.44870724200965,19.1626273449326,10.3097759030395,2.72246522799617e-08,1.26140888897156e-06,9.41434758230646 +"Q9VJQ3",0.450210331341498,20.5325916420758,10.1823283877723,3.21958955814798e-08,1.45142577918671e-06,9.24488400332448 +"Q9VKD3",0.499923639365786,18.7205628702694,10.1194446662556,3.49941116413068e-08,1.53605732151841e-06,9.16062842926984 +"Q94523",0.588152281166998,20.3731997672175,10.0561383799077,3.80719297391715e-08,1.62830714884457e-06,9.07537510789241 +"Q9V521",-0.722962615495037,17.6716149072458,-9.99670384230816,4.12224899817617e-08,1.71897783223946e-06,8.99493908336712 +"Q9VZF6",0.551316518553064,15.1172064773223,9.88091530515029,4.81779161631049e-08,1.93418671569465e-06,8.83712340436324 +"P23779",-0.470902804573221,20.9431527571856,-9.87290966436236,4.87025432009443e-08,1.93418671569465e-06,8.82615729485701 +"Q9VIE8",0.457393424264112,24.8826894305362,9.82064481711093,5.22792483312422e-08,2.02794851666307e-06,8.75439006392783 +"Q9VQE0",0.549085874673338,17.3636870128639,9.75595548849007,5.70942801349277e-08,2.16439225602408e-06,8.66514016396912 +"Q9VXZ8",0.600293034583515,17.9113836919935,9.65018827194113,6.60023655184391e-08,2.44648768188348e-06,8.51820277343191 +"Q9U9Q4",0.486398711129013,17.9148149775483,9.55138213958362,7.56558681223487e-08,2.71270167289677e-06,8.37978904156475 +"P41093",0.622296737158738,18.9391123115763,9.53522805136423,7.73708987842417e-08,2.71270167289677e-06,8.35705320817573 +"Q8SXF0",0.521309132596524,16.3789852273606,9.52881249160751,7.80633574934321e-08,2.71270167289677e-06,8.34801540904334 +"Q9V4E7",1.30292940665368,15.4662884541501,9.42636235227059,9.00532362959654e-08,3.06548567636062e-06,8.20304755047199 +"Q8IN49",0.504142342313788,16.9208595767712,9.37598676561788,9.66474725283739e-08,3.22415968354655e-06,8.13131929612608 +"P45437",0.558508610287818,16.0942517585338,9.30338081837888,1.0706206547203e-07,3.50155931779109e-06,8.02741626519643 +"Q9VPN5",-0.431240780039992,21.260754224716,-9.27717109590236,1.11106887624802e-07,3.5639670876571e-06,7.98975667351335 +"Q8SZN1",-0.609020650279756,20.111525262488,-9.25355125339467,1.14890178619897e-07,3.6157890176979e-06,7.95574897946051 +"Q9VA42",-0.755475941357528,20.2824353439044,-9.18791263676379,1.26134611260916e-07,3.86474767986008e-06,7.8608962069977 +"Q01637",0.485075439620358,15.9823042884879,9.18072425163414,1.27434725654859e-07,3.86474767986008e-06,7.85047736595608 +"P29613",-0.388251559438586,23.8436814000175,-9.12696139654859,1.37617964152175e-07,4.09904936081836e-06,7.77235815855974 +"Q24276",-0.547336177520499,18.6548975736994,-9.06128160351419,1.51235197068406e-07,4.42561945105441e-06,7.67645361724684 +"Q7K569",0.64703792307138,20.5965234990322,9.01975341068784,1.60572359657171e-07,4.61783958462345e-06,7.61554692186964 +"Q0E8E8",0.57202814156042,21.6435114708839,8.98709540198381,1.68341316214136e-07,4.75920873635898e-06,7.56750309289093 +"Q9VFZ4",0.668024980805026,16.5965349127858,8.88457861689009,1.95409741368796e-07,5.42282216508707e-06,7.41584623637067 +"Q9VNE9",0.509236117966548,18.8313822329758,8.87447068832442,1.98316637931841e-07,5.42282216508707e-06,7.40082368092418 +"Q8MSI2",-0.761746348228673,23.9873843716294,-8.85963409325831,2.02666229273468e-07,5.45237532948621e-06,7.3787506172446 +"Q9VNW6",0.886768112530561,21.6437107360233,8.81992293710429,2.14810084482304e-07,5.68735271296004e-06,7.31953746961546 +"Q9VMR6",-0.426275564100102,18.7929663196911,-8.73030509988393,2.45120991618948e-07,6.38846584406883e-06,7.18519336241788 +"Q9VV36",-0.556198564578313,23.0997147437131,-8.67994244050461,2.64103326605898e-07,6.77729767351751e-06,7.10925832412094 +"Q9W299",0.779784425939937,14.7391654507675,8.59885907475818,2.97987415117839e-07,7.52356182385283e-06,6.98633782827983 +"Q9VF86",0.470456506848709,17.6234348742795,8.58945127288188,3.02205420982098e-07,7.52356182385283e-06,6.97202240885483 +"Q9V396",0.411437744347303,20.8718770802329,8.53963587241934,3.25612561708702e-07,7.96617720788934e-06,6.89603474302521 +"Q9VTZ4",0.485339585691356,18.1840541179795,8.53165593986212,3.29536107520602e-07,7.96617720788934e-06,6.88383316070206 +"O17444",0.78459084602213,15.384049081131,8.46291770596076,3.65466504552036e-07,8.70854470846852e-06,6.77839600883304 +"Q0E9B6",0.415810007389194,19.1145416785277,8.41616659111525,3.92243782331611e-07,9.21496660463559e-06,6.7063414724625 +"O01666",0.371951042810053,22.7350079212325,8.40580124703982,3.9845565063084e-07,9.23088923961446e-06,6.69032824622939 +"Q7K485",0.475719983612425,20.5588328085492,8.39533866596395,4.04830871947425e-07,9.25010814257952e-06,6.67415086899028 +"P54385",0.54871898654509,21.5202325042604,8.35167571523802,4.32617803633932e-07,9.75143914137025e-06,6.60648729500127 +"Q9VED8",0.573661669605318,16.3629338971043,8.23758022113143,5.15129247375438e-07,1.14564744616297e-05,6.42851770128443 +"Q9VBC7",0.541127349488576,16.1582736960174,8.16348033168666,5.77461251216089e-07,1.26737548293215e-05,6.31203152559565 +"Q7K2Q8",-0.39839591838369,16.1082680275246,-8.13570378023316,6.02828399289122e-07,1.30586723378475e-05,6.26818208488933 +"P35381",0.381231344047105,25.6887317629981,8.0220857663469,7.19445792869583e-07,1.52359069916181e-05,6.08776714284041 +"A0A0B7P9G0",0.75927509259207,14.5981682735193,8.02016961800659,7.21604707636588e-07,1.52359069916181e-05,6.08470992795065 +"Q9VH81",0.574116866818914,14.4843712733431,7.9884290042571,7.58374702533887e-07,1.58121125478315e-05,6.03399731972693 +"Q7KV34",0.398409889692047,20.9565173062268,7.97528367202199,7.74174882836494e-07,1.594226795767e-05,6.0129558034594 +"Q9VZJ2",-0.389249993012857,17.3393679735216,-7.96340033683737,7.88756026520518e-07,1.60444518565393e-05,5.99391468053879 +"A1Z9A8",0.522674084939705,16.7020277906222,7.92561104827519,8.37073593704189e-07,1.6822153666248e-05,5.93323916622337 +"Q9W309",-0.560497296245732,18.4087310050968,-7.90339521966577,8.66921812618556e-07,1.70275501383284e-05,5.89748040823358 +"Q9VM10",0.500079807440489,17.0723440637747,7.89908446751186,8.72841988652774e-07,1.70275501383284e-05,5.89053419483723 +"Q9W1R3",-0.355342081737362,16.967994979483,-7.89541187939109,8.77919251736358e-07,1.70275501383284e-05,5.884614350439 +"Q9W253",0.514689251093898,15.194697491675,7.85521461526546,9.35563814860448e-07,1.79370165883589e-05,5.81970303842766 +"Q9VHT3",-0.462898367023579,15.7319151931264,-7.82666170511458,9.78916626844982e-07,1.85549196997435e-05,5.77346441284299 +"Q9VNB9",0.743410430435539,18.9527089639193,7.77039571864642,1.07064037403562e-06,2.00654847628248e-05,5.68202821833183 +"P48596",0.310206162525478,21.8671849202627,7.7426588587803,1.1191372527324e-06,2.07413437506404e-05,5.6367977598372 +"Q9VPE2",0.449053627262657,20.8567421228232,7.72918601215156,1.14352132526322e-06,2.09005950601323e-05,5.6147903323671 +"Q9V3D9",0.288460966492806,17.4312660305451,7.72414345295228,1.15279061482744e-06,2.09005950601323e-05,5.6065472125951 +"Q9VXQ0",0.53264128553865,15.039792581842,7.60753031492048,1.39068859159205e-06,2.48201056333551e-05,5.41496262443018 +"Q9VN14",0.282446570030011,19.3247715347831,7.60396161529724,1.39873496974543e-06,2.48201056333551e-05,5.4090706088429 +"Q9VIF2",0.418378605696784,17.468934630371,7.59437069854148,1.42060275672295e-06,2.49427936654093e-05,5.39322720950224 +"Q9VAY9",0.554001358213391,14.5982346967918,7.48738564932145,1.69035327470693e-06,2.93698881480329e-05,5.21565032416677 +"Q7K4T8",0.653598197948861,13.6995246631005,7.4740292523947,1.72762438816856e-06,2.97080152522181e-05,5.19337165056231 +"P32392",0.389346466961886,17.6603191759224,7.42842193692723,1.86152481802521e-06,3.16839122088372e-05,5.11711450589615 +"Q8SXQ1",0.496445655549003,18.6290177333548,7.39958860072567,1.95175787822661e-06,3.2884163039212e-05,5.06875745831237 +"Q9VAC1",0.285033994167378,23.3693261272332,7.34942169112598,2.11985664365795e-06,3.53592088162146e-05,4.98435012354562 +"Q9VHC3",0.441742671876341,17.2194259054418,7.33564359912573,2.1686335363584e-06,3.5618379754039e-05,4.96110768280642 +"Q8IQG9",-0.393547562825674,20.4555174490641,-7.33300660817426,2.17810235905994e-06,3.5618379754039e-05,4.95665633913651 +"Q9I7K0",-0.483577179512285,16.1805296631378,-7.32542022680852,2.20558580447722e-06,3.57176419598836e-05,4.94384490849628 +"O18413",0.281028275309065,19.4214419178193,7.29530274478105,2.31833190642374e-06,3.70591673379042e-05,4.8929063178046 +"X2JAU8",-0.334014278128269,21.7407018705736,-7.29153365838292,2.33286125328533e-06,3.70591673379042e-05,4.8865227750222 +"Q9VG81",0.819544286126288,15.6851787288479,7.25707012724287,2.47022536846705e-06,3.88710935339909e-05,4.82806273483045 +"Q9W2E7",0.374254372519992,18.5299144004002,7.23493067679562,2.56291943913109e-06,3.99528002286977e-05,4.79042163008245 +"Q9VWP2",-0.413266821469218,19.6330517387412,-7.17434860082518,2.83568339447356e-06,4.37955546479805e-05,4.68707567237055 +"A1Z843",0.361834528747448,17.5880030878985,7.13199831358982,3.04430913202118e-06,4.62173995171711e-05,4.61453017226889 +"Q9V3I2",0.365778292767647,17.4902440967385,7.13129431278463,3.04791004010121e-06,4.62173995171711e-05,4.61332213377651 +"P82890",-0.454651506600722,19.6171589226471,-7.10749800444963,3.17228817000867e-06,4.74872912614844e-05,4.57244827081242 +"Q9VLY7",0.423146754673496,15.4502375152215,7.1008080008187,3.20820452732546e-06,4.74872912614844e-05,4.56094304400679 +"Q9W308",-0.597762160571278,17.1418134381764,-7.09551492610269,3.23692294764393e-06,4.74872912614844e-05,4.55183581737964 +"O77410",0.469099715524369,14.348263298953,7.09393735551251,3.24553429484965e-06,4.74872912614844e-05,4.54912071076448 +"Q9Y143",-0.319097896471114,20.9487170866769,-7.07252906107677,3.36479546889676e-06,4.880416384452e-05,4.51224152142306 +"Q9W2L6",0.433625135119776,20.9057171962929,7.0570613408074,3.45381326174376e-06,4.89621445335414e-05,4.48555642967749 +"Q9W3R8",-0.380877088299044,17.3265323674358,-7.05623486575629,3.45863854930444e-06,4.89621445335414e-05,4.48412965272876 +"Q9VEV3",-0.288097810876756,18.2516565823609,-7.05536089191387,3.46374883390761e-06,4.89621445335414e-05,4.48262077379055 +"Q7JWF1",0.439547781873909,20.5600727128267,7.04210976621611,3.54220683981816e-06,4.96504286455184e-05,4.45973030024597 +"Q7K5M6",-0.354121950342279,18.1995592081871,-7.03339580965305,3.59481337519083e-06,4.99301163920471e-05,4.44466423690571 +"A8JTM7",0.459425213061785,17.640158016,7.02562944160139,3.64238880304652e-06,4.99301163920471e-05,4.43122764526886 +"Q23970",-0.46168840716981,21.465804897103,-7.02407936833233,3.65196294953822e-06,4.99301163920471e-05,4.42854486306015 +"Q9VKC8",0.447678020130915,17.7707900149573,6.98769734713515,3.88441255545915e-06,5.26764239228119e-05,4.36548117735236 +"Q9VV39",0.328210017096062,17.5252227826175,6.93031697934823,4.28301531041527e-06,5.76134640142957e-05,4.26564629322436 +"P46415",0.39158156353464,18.0502238290307,6.92098655112519,4.35177463844793e-06,5.80700807754492e-05,4.24936927911374 +"Q9VJZ5",-0.344010016546152,16.9412414825802,-6.8896325381143,4.59142090281582e-06,6.0781667189657e-05,4.19458335353526 +"Q9VM18",-0.295658462536242,22.9303662410684,-6.82050418930745,5.16988147020523e-06,6.74712313092165e-05,4.07331055522632 +"P19334",-1.02046554310178,15.1882842984039,-6.81963203501991,5.17764844579119e-06,6.74712313092165e-05,4.07177628120859 +"Q9W369",-0.329244418922862,22.2458235059154,-6.81258325120733,5.24087113281426e-06,6.77656825545286e-05,4.059372340853 +"P50887",0.660040556929655,17.7754614717795,6.78384997714502,5.50706238673721e-06,7.06598466236743e-05,4.00873815170934 +"Q9VLP0",-0.43858203289207,16.1190876670951,-6.77089727753732,5.63164709961747e-06,7.17067737569614e-05,3.98587519334392 +"O02195",0.3338602689171,18.7009134654294,6.76169043013974,5.72199218039587e-06,7.23051739159115e-05,3.96960990263309 +"Q9NJH0",0.300324812525851,21.1878417031123,6.73377476283725,6.00530432647752e-06,7.53146437335677e-05,3.92022062770574 +"Q8T3L6",-0.352859926715514,17.3944624709409,-6.72128557460923,6.13676794408202e-06,7.63890218711105e-05,3.89808929553191 +"O62619",0.324388577844303,22.2214410786259,6.70285693875228,6.33627255676251e-06,7.82881675902212e-05,3.86539343630191 +"Q9VSA9",-0.394658566382265,22.3317226522773,-6.69359106626846,6.43913327550452e-06,7.89740757613349e-05,3.84893620900102 +"Q9VW68",0.351820816761386,22.9547229972386,6.66865340939067,6.72472992826833e-06,8.18748140171647e-05,3.80458487949934 +"Q9VTY2",-0.40506962350829,20.7753534996972,-6.66130998460819,6.81133000413307e-06,8.23282496151736e-05,3.79150821797483 +"P12080",0.300537725287647,19.0620897410562,6.63344367188325,7.15070234073526e-06,8.58084280888231e-05,3.74181767930621 +"P17336",0.351953060932264,20.7184298598347,6.61048598466046,7.44355665508918e-06,8.81475816951355e-05,3.70079906993132 +"Q9VWV6",-0.55285585445667,23.6390966134418,-6.60881055903121,7.46541370244883e-06,8.81475816951355e-05,3.6978027141583 +"Q7K1Z5",-0.521209839576629,15.9893750506479,-6.60585225595818,7.5041706239264e-06,8.81475816951355e-05,3.6925110901547 +"Q9W461",-0.458675375780498,16.2319006948524,-6.56905427288566,8.0042214028397e-06,9.3363925174382e-05,3.62658769329687 +"Q9VAM6",-0.300401865177911,22.0854760098359,-6.56162082700333,8.10939388006481e-06,9.38788849949919e-05,3.61324790634004 +"Q8T4G5",0.247521842944465,19.6664794384017,6.55801470679269,8.16093424716657e-06,9.38788849949919e-05,3.60677373587643 +"Q9VH95",-0.296644164227637,20.9115341982174,-6.51458405267842,8.80924230257076e-06,0.000100451132948506,3.52865984677975 +"Q9U4G1",0.322773564758638,19.3441652066891,6.50975150911448,8.88463398376853e-06,0.000100451132948506,3.51995192855963 +"A1Z7X8",0.337571128192479,17.0303232491974,6.50794878381286,8.91293026161802e-06,0.000100451132948506,3.51670271053167 +"Q9VT23",0.462658046748043,18.2998447829677,6.49825281330578,9.06674451097132e-06,0.000101366921494221,3.49921904896637 +"Q9VH64",-0.494076220169717,17.5281211343162,-6.49400120436164,9.13506259008351e-06,0.000101366921494221,3.49154849159361 +"Q94901",0.247399056271107,18.9179618462046,6.4914384757726,9.17650188586773e-06,0.000101366921494221,3.48692372568188 +"Q9VJZ4",-0.249606943623878,21.3033885169847,-6.46785371420995,9.56720864095128e-06,0.000104987526402018,3.44431938456607 +"P42281",-0.416957813328771,21.8073675021789,-6.4635326963112,9.64065339074106e-06,0.00010510202520102,3.43650540472674 +"Q7KSQ0",0.309008841693906,20.9228839361195,6.45252920317009,9.83035082002665e-06,0.000106474189401328,3.41659540716823 +"Q9VMW7",-0.289149967790117,19.4030192778855,-6.4060918412662,1.0674871424838e-05,0.000114364330482083,3.33238616786309 +"Q9V419",0.408996286435899,16.4871156672547,6.40498270465359,1.0695944577461e-05,0.000114364330482083,3.33037122490452 +"P18432",-0.39674126573934,23.6507353002834,-6.38487508462459,1.10856019690804e-05,0.000117775694805262,3.2938127451756 +"P06002",0.703099419449474,16.998277330311,6.36057164922765,1.15764232656812e-05,0.000122211860804786,3.24955127676167 +"Q7K3V6",0.482075888134457,16.2608729176929,6.34478772448821,1.19072871710159e-05,0.000124437621964387,3.220761980228 +"P22979",0.408657434018671,19.4570518402564,6.34341792007111,1.19364625385504e-05,0.000124437621964387,3.21826189020879 +"A1ZBJ2",0.513050750151862,19.3867882687751,6.33390166718062,1.21412180704339e-05,0.00012578603566139,3.20088623323078 +"P32748",0.372011696852008,17.2881131598324,6.32243265748204,1.23928679894694e-05,0.000127600640780462,3.17992849959123 +"Q95R98",0.410132406723319,16.3232917792376,6.308437634752,1.2707330930895e-05,0.000130035754556643,3.15433039793833 +"A1Z7B8",0.453332217922773,16.9816878971773,6.30201346379498,1.28544556265905e-05,0.000130739219421664,3.14257102534077 +"Q24439",-0.24137441142301,24.285930061975,-6.28938558419164,1.3148857271043e-05,0.000132922993503634,3.11943931759059 +"Q8IN43",-1.11392451857729,17.8871994134707,-6.28281689887099,1.33047687420568e-05,0.000133688881094884,3.10739816938139 +"Q9VZI8",0.420659408429961,15.7429558136524,6.25526416672623,1.39800492204916e-05,0.000139633066465748,3.05682642310064 +"Q9VXR9",0.39270718867945,15.2278948852988,6.24167162116745,1.43262539399677e-05,0.000141580790189742,3.03183964055153 +"Q9W0S7",0.323232073635722,17.9139971172461,6.24095253565894,1.43448162722221e-05,0.000141580790189742,3.03051706228658 +"Q9VQ91",-0.389367524276574,14.9730225022346,-6.23632726942064,1.44648128038111e-05,0.000141925339745629,3.02200834899587 +"Q9VMI3",0.378702982719808,20.1972907204807,6.21634825135205,1.49952891813492e-05,0.000146269838330354,2.98522102488174 +"Q9VBI2",-0.24689153490915,22.1089763996613,-6.19822403994003,1.54940632468799e-05,0.00015025638078951,2.95180178732124 +"A0A0B4K692",0.394748659568268,15.9518370145568,6.19386542372983,1.5616570602755e-05,0.000150569015984944,2.94375824781437 +"Q9VW66",-0.264075085057936,21.3461254613284,-6.18016301944166,1.60083203972029e-05,0.000153459071393876,2.91845449126075 +"Q9W199",0.547951574963278,15.8423910777886,6.15560636582899,1.67362220561564e-05,0.000159520105083823,2.87304258791434 +"Q9VWH4",-0.217193493714081,24.3652003971346,-6.12685205568717,1.76325817704967e-05,0.000167108786324934,2.81976387100062 +"Q9VPL0",0.423491635601769,15.1423461703483,6.0885402287785,1.89052456367449e-05,0.000178157908034409,2.74860184183465 +"Q7K5K3",0.319756462381161,22.7622661736889,6.06859480065111,1.96053166928126e-05,0.000183717237323659,2.71147575150666 +"Q7K3N4",0.323081197032099,17.1134116789979,6.03021496114246,2.10294164110579e-05,0.000195961265774551,2.63988518472231 +"Q9VVW3",0.431454268865638,16.575180436671,6.026368754319,2.11779496150494e-05,0.000196248999766125,2.63269985864712 +"P14318",-0.393555797243813,22.0865939075188,-6.01383202496395,2.16697205055717e-05,0.000198726331449898,2.609265455782 +"Q9VXC9",0.610837544545532,19.0325347770872,6.0124644628202,2.17240793858412e-05,0.000198726331449898,2.60670785029543 +"P54622",0.401401969386363,17.9440856725228,6.01049258493554,2.1802709025978e-05,0.000198726331449898,2.6030196157101 +"Q9VVW7",-0.277312845573892,16.5827671027172,-6.00182071158624,2.21520360342833e-05,0.000200813022310785,2.58679340222091 +"Q9VK39",-0.369278894071567,18.131973099229,-5.98797728383986,2.2721807544382e-05,0.000204864729643401,2.5608696427973 +"Q8MLS1",-0.33974058596241,18.431906650209,-5.95670306631725,2.40658546318413e-05,0.000214606668674041,2.50220990728678 +"Q9VVB4",-0.392710240963179,15.9952115483397,-5.95667307654018,2.40671824465199e-05,0.000214606668674041,2.50215359403454 +"Q9VB22",-0.365847204306963,17.2004405191688,-5.95394516586665,2.41882816011509e-05,0.000214606668674041,2.49703076275776 +"Q9VBP9",0.517979767166267,13.9443137499968,5.94653935117417,2.45202522639616e-05,0.000215774177699945,2.48311814213277 +"Q8IN44",-0.454274607506584,19.8683741411854,-5.94524862175362,2.45785933830873e-05,0.000215774177699945,2.48069261995875 +"Q9VDT1",0.379567315580626,19.1389226260248,5.91357901119039,2.60562269448731e-05,0.000226812187067692,2.42111005356466 +"Q7K1S1",0.497128384407578,16.5853091780995,5.9125060565081,2.61078776480797e-05,0.000226812187067692,2.41908908442857 +"Q9W552",0.299727535124108,16.2316900724811,5.85890311064604,2.88286475333083e-05,0.00024915121287854,2.31793099826442 +"Q9I7Q5",-0.374750749907637,20.6437911542664,-5.85231317846333,2.91829277080759e-05,0.000250913007304487,2.30546846448072 +"O77477",0.363674600670215,16.8476862213939,5.83317376277403,3.02377665817353e-05,0.000258649203376074,2.26924061574849 +"Q95SS8",0.320790413506234,15.5620005249743,5.82729464016427,3.05696817656752e-05,0.00026015423053646,2.25810271792253 +"P54192",-0.385938646144087,24.3269559788418,-5.81082686347146,3.15197052916102e-05,0.000266877504702568,2.22688067365232 +"Q8SYJ2",-0.268878952512033,22.5464031630968,-5.79498521930914,3.24625822612456e-05,0.000273472662685645,2.19681225803519 +"O76902",0.381074588025932,17.288267739966,5.78906173785761,3.28226275723795e-05,0.000273811845560505,2.18556070709191 +"O76742",0.380940291480119,18.0136812741007,5.78652483231996,3.29780941915468e-05,0.000273811845560505,2.18074049896744 +"Q9VSS2",0.367051995745268,16.2304029222761,5.78624463124741,3.29953123247371e-05,0.000273811845560505,2.18020805579733 +"Q9VA37",-0.309160243702845,21.7725286143784,-5.75644738588179,3.48807016838075e-05,0.000288024804002925,2.1235284650644 +"Q9VGA0",-0.409564143867804,19.2934822168667,-5.74984265621063,3.5313556905447e-05,0.00029016262521323,2.11094949427371 +"Q9VHB8",0.515261203255745,15.5411092225851,5.70618496016582,3.83186981461864e-05,0.000313311708371759,2.02765977419891 +"A1ZBU5",-0.412583764370492,16.6730923471737,-5.70104046675496,3.86899051482529e-05,0.000314803716035541,2.01782897646404 +"Q7JRN6",-0.545520032585889,14.7220934802581,-5.68021046734973,4.02314984414244e-05,0.000325757958253864,1.97798944477477 +"Q9V9Q4",-0.280718780028263,19.1265432706543,-5.63832133680809,4.35277558231835e-05,0.000350745394749131,1.8977041697537 +"Q9VQI7",-0.234208508299034,19.1568733243017,-5.61806271840884,4.52212697637192e-05,0.000361960684632879,1.85879615247498 +"Q9XYZ5",0.336519547062673,16.0115285692361,5.61651316542849,4.53535869833764e-05,0.000361960684632879,1.85581799311359 +"P91927",-0.431509120876783,19.2651784593747,-5.60477280535349,4.63692442764122e-05,0.000368304283109788,1.83324377829633 +"Q9W3E2",-0.544142213058365,17.6355475169739,-5.58559855948588,4.80790367029959e-05,0.000380075038960176,1.79633840694057 +"Q00174",0.282262623317493,21.9951719263408,5.57646316887334,4.89165239308864e-05,0.000384871518475087,1.77873892564375 +"Q7K511",0.733084391750864,16.7702574142731,5.56305019290479,5.01736689386859e-05,0.000392909294787456,1.7528796449912 +"Q9VAG9",-0.258292776352651,17.4339235197905,-5.48034995335378,5.87017465008002e-05,0.000457544454034275,1.59294494379865 +"Q9W0Z5",-0.390466526975183,16.9305587713928,-5.45778202227589,6.12805860371279e-05,0.000475423337255485,1.54915422160827 +"Q9VGW7",0.374209711594977,16.728162935078,5.42820008303179,6.48397920750568e-05,0.000500707283246272,1.49165952885965 +"Q9VJE3",-0.400696268742948,15.3183107314063,-5.42328163643697,6.54520135600069e-05,0.000503105800083371,1.48208987294397 +"Q9VGS3",0.33669350496454,19.3094007689564,5.40332853696306,6.79977209928413e-05,0.000520276140440639,1.44323785116296 +"Q9VDH3",0.238474959797678,20.5735024878118,5.38552654153876,7.03555016291417e-05,0.000535858341175381,1.40853398729525 +"P45888",0.312846456651309,17.2015325842405,5.37293764107764,7.20737981218156e-05,0.000546450433032674,1.38396983293222 +"Q8MZI3",0.549297668779907,17.8046642082326,5.35502663298108,7.45937242585759e-05,0.000562996977662012,1.34898835825894 +"Q9W3M8",0.257032818436063,18.6024120781617,5.34653995714536,7.58193950177125e-05,0.000569670049052002,1.33239998580003 +"Q9VWI0",-0.254338961190236,20.9629955481989,-5.32943539306004,7.83534229634518e-05,0.000586069549340976,1.29894091395779 +"P13060",0.249948040244568,20.2203302059095,5.30973342670239,8.13811605778741e-05,0.000605998999303098,1.26035830383925 +"A1Z847",-0.291619421326356,20.0786029324823,-5.29748237013451,8.33246545152214e-05,0.000617713438806174,1.23634400837396 +"Q9VN01",0.298160998805557,16.0631558684004,5.28925545553464,8.46566507154522e-05,0.000624811032714046,1.22020795035236 +"Q7K2E1",0.414843527343507,17.4426512464403,5.27456084227108,8.7090877522653e-05,0.000639945302677468,1.19136677400841 +"Q7JQR3",-0.294207812272692,19.0812435562556,-5.25595399135013,9.02774032000775e-05,0.000660450476042673,1.15481125023271 +"Q9VZG1",-0.276948482443629,17.756194577628,-5.2526862957723,9.08493403189388e-05,0.000661732312890785,1.14838733614415 +"Q9W227",-0.179415151368143,21.9583561470568,-5.23884994279484,9.33129036673235e-05,0.000676721405726502,1.12117310158035 +"M9PF16",0.206323237776324,21.1898707963483,5.23052216355132,9.48288543805607e-05,0.000684738221241451,1.10478294635632 +"P29327",0.282235810967897,19.5356750332922,5.22255769407356,9.63024877690755e-05,0.00069238167930525,1.08910044886753 +"A1Z8H6",-0.578247457091038,16.7762503279013,-5.17652561328209,0.000105295891845264,0.000753792049776395,0.998320281124094 +"Q8IQ70",0.287705873004761,17.9965369757656,5.16341152627983,0.000108013655712276,0.000767023804955745,0.972414470834613 +"Q7KLW9",0.260239891276548,17.2329593337218,5.16317227622009,0.00010806390537446,0.000767023804955745,0.971941674301936 +"Q5U117",0.462663784070706,14.6035483002809,5.1571902563425,0.000109328187398796,0.000772709392293183,0.960118179708742 +"Q9VU04",-0.375304071729026,16.5615834179153,-5.15049072092907,0.000110762261992786,0.000779541995797331,0.946871810599285 +"A1Z8Y3",-0.35278664168947,15.0429133991574,-5.14129254924934,0.00011276289258887,0.000787675975317536,0.928677052315258 +"Q9W414",0.199496933106911,19.5571386192577,5.14083925473999,0.000112862444904611,0.000787675975317536,0.927780156756242 +"Q9W4I3",0.298724800702248,16.583541444998,5.12994307910356,0.000115282961573491,0.000801216582935763,0.906214025603102 +"Q9VX69",-0.445344757763831,18.1594344446518,-5.11805031876064,0.000117986113104972,0.000816600981987938,0.882660585150452 +"Q7JXZ2",0.5393451388478,17.5511053363175,5.09308296567118,0.000123875983974915,0.00085091947995135,0.833163080271264 +"Q9W3H4",-0.255794964921684,19.5096195075528,-5.09271555200226,0.000123964888266294,0.00085091947995135,0.832434183429482 +"O02649",-0.239086046145847,23.3194044748523,-5.08873918729818,0.000124931284923967,0.000854038455955644,0.824544707442908 +"Q9VFS8",-0.342733959702066,17.2816677610288,-5.08082341930047,0.00012687830417188,0.00086380820962733,0.80883403171095 +"Q95RI2",-0.437078517044895,16.7231717687244,-5.07426042150006,0.000128516314100863,0.00087140330048878,0.795803149469856 +"Q9W3W4",0.322971903562854,15.9394778594065,5.06168640264166,0.000131715787101627,0.000889481509657953,0.77082449580193 +"Q8MLS2",0.215791353962711,17.4140712079737,5.05219517118118,0.000134185182302648,0.000902503564842,0.751958759627933 +"Q9W266",-0.250565509279621,18.4113210385701,-5.03996593099437,0.000137437514643157,0.000920665760742112,0.727636638038672 +"Q8MR62",-0.26492386911595,17.6497943255366,-5.02629930537302,0.000141168467403892,0.000941876014518768,0.70043716890079 +"Q9VNX4",0.395893820575061,20.9977922024353,5.02226094848808,0.00014229079938479,0.000943954353579098,0.69239624592922 +"Q9VCH5",-0.191039325409943,18.0175285715134,-5.02111193585943,0.000142611808814108,0.000943954353579098,0.6901080931699 +"Q9W5W7",0.331453081626748,14.9512381497284,5.01136841965688,0.000145364129429246,0.000958369043035507,0.670699256633069 +"Q9VIB5",-0.475566728027076,14.365377814755,-5.00402643748995,0.000147474208903885,0.000968452678943626,0.656067707772045 +"A1Z992",-0.509268039550697,14.2063575218507,-5.00182065564816,0.000148114297066216,0.000968841754927249,0.651670802514025 +"Q9VFS4",-0.375025967631663,15.2785942287608,-4.9994658342557,0.000148800795607316,0.000969530183878916,0.646976254391128 +"P09180",0.208119300831836,20.6734751591385,4.98905775133269,0.00015187456000098,0.000985707261018036,0.626219967821961 +"Q9W1I8",-0.2601701519385,17.9265513254871,-4.97652045317393,0.000155664202610423,0.00100401134668584,0.601202756588542 +"Q7KUA4",-0.214540315869392,18.7732442697176,-4.97575520916147,0.000155898644359492,0.00100401134668584,0.599675251597304 +"Q8IRD0",0.297076474327568,17.5300171840598,4.96988905352581,0.000157707939510463,0.00101175708885943,0.587963828476206 +"Q9VH98",-0.293625711540116,17.0354702154188,-4.96422846794881,0.000159474345919238,0.00101916938311605,0.576659501312813 +"Q9VVL5",0.235289580055916,17.2949805027842,4.92954635510741,0.000170751307727612,0.00108540686173259,0.507328037597122 +"Q9W4P5",0.241229927967733,19.6128342093616,4.92839253446673,0.000171140290548963,0.00108540686173259,0.505019420326133 +"Q9VI09",-0.308569113344682,20.1381371136,-4.91091280918049,0.000177146066263467,0.00111924105502827,0.470029071745223 +"B7Z0Q1",0.25854493843006,17.7316920724339,4.88745255156889,0.000185549498489459,0.00116791156030346,0.423019957665998 +"Q9W1G0",-0.221344875373454,21.7390385985716,-4.88455028381308,0.000186617237319376,0.00117021636033353,0.417200739385258 +"Q9VV46",-0.466017172177168,23.8985341776894,-4.84946495520141,0.000200036822930874,0.00124966824212995,0.346788543476249 +"A8DYP0",-0.580146686000132,15.2555472982388,-4.82388079125118,0.000210445330710294,0.00130794031956132,0.295370491101009 +"Q9VGZ3",-0.37225347272754,16.8586771197275,-4.82271465223865,0.00021093282132014,0.00130794031956132,0.2930253710193 +"Q9VXK7",0.212480778405741,18.0609063101866,4.82046506249156,0.00021187651925028,0.00130892605225729,0.288501060800657 +"Q86BS3",-0.259060900171146,18.952237040822,-4.81267663263878,0.000215177418121357,0.00132441303847389,0.272833569279403 +"Q9VSY0",-0.30281358104261,22.6100148721128,-4.80887750344059,0.000216806710474175,0.00132748703342709,0.265189066425136 +"Q95SI7",-0.2042247151564,21.2148454381424,-4.80780591408402,0.000217268561226376,0.00132748703342709,0.263032603329213 +"Q9VH66",0.296141210341428,16.7530952809494,4.78347768113481,0.000228030571648962,0.00138584659671456,0.214046250143367 +"Q9VTU2",-0.189140093158024,20.8195611019302,-4.782483369802,0.000228481902935554,0.00138584659671456,0.212042999009822 +"Q9U9Q2",-0.216782679439078,15.5759078657287,-4.77906626980432,0.000230039982141521,0.00138852077668515,0.20515784477859 +"A1Z6V5",-0.275935609851654,20.0504171404888,-4.77787072777966,0.000230587682938722,0.00138852077668515,0.202748684441465 +"Q9VWL4",-0.270616541976862,16.1749416582541,-4.77032518509105,0.000234075501159937,0.00140090936335131,0.187540544043322 +"A1Z7K8",-0.240260258502822,17.6115932718319,-4.76979035357984,0.00023432476761092,0.00140090936335131,0.186462390047852 +"Q7KUT2",0.277116799241199,18.2106855216054,4.76791356870684,0.00023520163215501,0.00140112972298056,0.182678821757905 +"Q9VK12",-0.25735224249485,22.3081435730921,-4.76501491087489,0.000236562563206933,0.00140394360401901,0.176834554648108 +"Q9VMT5",0.335347051188936,16.4814352366706,4.76310023516725,0.000237465946068294,0.00140394360401901,0.17297377835808 +"A1Z6L9",0.42317689549464,15.2620958687615,4.76155191937366,0.00023819906471066,0.00140394360401901,0.16985149571939 +"Q9VIQ5",-0.404097639031633,16.5320015544285,-4.73987303735519,0.000248711603806841,0.00146074279982328,0.126112260683675 +"Q9VM12",0.242195126366429,18.9493164431643,4.73139742575804,0.000252950140177311,0.0014804239783009,0.109000660596729 +"Q9VG92",-0.288903689502082,16.5155170015384,-4.72873565888588,0.000254296505523586,0.00148309989934735,0.103625468048583 +"A1Z968",-0.250072485482427,17.1901096058735,-4.72605705491832,0.000255658818200631,0.00148584985630193,0.098215653140123 +"Q9VLR5",-0.465003244316225,16.8730873765268,-4.7234520508412,0.000256990888176779,0.00148840556069051,0.0929538868315323 +"Q9VEN3",-0.23258430996011,17.5655716551264,-4.71291516240733,0.00026245206469601,0.00151477523845309,0.0716647773632451 +"Q9VJ68",-0.351088140840929,17.8267890303664,-4.70692714559227,0.000265608562299128,0.00152770717901706,0.0595621222136229 +"Q8SX89",-0.387290657472594,15.4980191175485,-4.70117383295896,0.000268678058849046,0.00154005155381515,0.047930954440921 +"Q9W3M7",0.266245824101217,16.064050702907,4.69657265506778,0.000271159064823395,0.00154894972645693,0.0386269715265337 +"Q7K3J0",0.222138372436888,20.3627972375595,4.69341055848739,0.000272877726521315,0.00155344726224421,0.032231896987204 +"Q9VL01",-0.313739684025219,20.4681607333714,-4.68605856436464,0.00027691703545829,0.0015710803236205,0.0173598472077865 +"Q9VAN7",-0.216634703085969,23.6944333150589,-4.6757279696674,0.000282696794123064,0.00159843475456702,-0.00354515070605732 +"Q9VN73",0.216966172857141,18.4122419063573,4.66158265809834,0.000290812262524486,0.00163876639827987,-0.0321839958673831 +"Q9VMD3",0.248619105836422,17.7803358017747,4.65593139339511,0.000294120990575087,0.00165183101777524,-0.0436302527283488 +"Q9VIK6",-0.274023036206058,16.5930698943386,-4.63682387065582,0.000305596985520452,0.00171052272432253,-0.0823505162375771 +"Q7JVK6",0.319295086150436,17.3749025259571,4.63441878562132,0.000307073674599248,0.0017130397633162,-0.0872263679211818 +"Q9VSL5",0.28620227269111,17.5765734007593,4.62249667007169,0.000314502472672622,0.00174863374805978,-0.11140301261999 +"P54185",-0.373529236940524,17.4363329066498,-4.61972767969842,0.000316254078394217,0.00175232119345821,-0.117019815825669 +"Q9VD02",-0.248834890006584,18.2279487637161,-4.61813392510344,0.000317266786825167,0.00175232119345821,-0.120252968055504 +"Q500Y7",-0.218702672354382,20.0524794161375,-4.61405578846589,0.000319873295777142,0.00176065100714493,-0.128526946201115 +"Q9V3Y7",-0.479757063815327,19.5256177056986,-4.61248044293516,0.000320886034875335,0.00176065100714493,-0.131723456029246 +"Q24319",0.360631693535543,16.3572012573831,4.60921134696633,0.000322998133866739,0.00176642913865482,-0.138357350752685 +"O18332",0.264203818072485,20.6419619645781,4.60698713560891,0.000324443295795342,0.00176853404374716,-0.142871365620412 +"Q9VCK6",0.405782359578167,16.5509441839027,4.59580315717134,0.000331811092951413,0.0018028042444396,-0.165574978090804 +"Q9VAN1",-0.313730014222173,14.7771581892853,-4.5924521596123,0.000334051893412877,0.00180411857690121,-0.172379430156845 +"Q7JWX3",0.213575720729931,17.9449793816874,4.59071025235813,0.000335222821418152,0.00180411857690121,-0.175916845280994 +"Q9W392",0.192435777834234,20.0079164538587,4.59059889920788,0.000335297817049986,0.00180411857690121,-0.176142985988883 +"Q9VZ64",-0.228970073097162,19.4075982628994,-4.57929661307461,0.000342999984546369,0.00183962692676316,-0.199101086945785 +"M9NFC0",-0.274559316551109,19.8650537574455,-4.57191497081246,0.000348128007948462,0.00186114588864755,-0.214100510677055 +"Q24238",0.305426849564316,16.3788437452488,4.56530693386974,0.00035278523047784,0.00188001841673175,-0.227531461810623 +"Q8SWS3",-0.373762531835187,16.4742294988022,-4.55235532457023,0.00036209932282729,0.00192350850470038,-0.253865297390738 +"A1ZA23",-0.192406854999685,18.4028599097049,-4.55011997695707,0.000363732175522824,0.00192604847229229,-0.258411571989233 +"Q9VCK0",0.312410536617207,18.2468436096057,4.54362984559213,0.000368515884095014,0.00194520409705849,-0.271613355124807 +"Q7JXC4",-0.19341402293955,21.6189177461977,-4.53899779022738,0.000371969416624555,0.001951978183568,-0.281037451923597 +"Q9VCR4",-0.388765555690748,15.0107289887587,-4.53877050387648,0.00037213972564426,0.001951978183568,-0.281499915093158 +"Q9VNH5",0.221424926245161,17.113419698231,4.53684851600495,0.000373583096007811,0.00195340628257376,-0.285410764681663 +"Q9VLS9",-0.299242476853301,18.9671003246772,-4.52863762543834,0.000379814141153189,0.001979781210761,-0.302121249062043 +"Q9VZD9",0.488771420903708,14.507683285705,4.49153518569828,0.000409324898877818,0.00212695928762679,-0.37769047864485 +"Q9I7K6",-0.278780094355421,16.1907077855354,-4.47297616499763,0.000424956862641896,0.0022013293381574,-0.41552680352151 +"P00408",0.178428662163981,21.3517732865233,4.46589617306217,0.000431079986621047,0.00222190414117898,-0.429966935849285 +"Q9VLT3",0.183032944732091,19.4196832707607,4.46530779299149,0.000431592890732607,0.00222190414117898,-0.431167128393543 +"Q9V8F5",-0.339228126635186,16.0079886319342,-4.4494648975199,0.000445640702780131,0.00228716520688387,-0.463492477599859 +"Q9VR79",0.339156062991243,20.2554311892079,4.43932103196956,0.000454879925184007,0.00232742243928504,-0.484198321404919 +"Q9W1N3",-0.248346735087068,20.5128130276862,-4.42966714163216,0.000463854764177819,0.0023660848521364,-0.503910166859503 +"Q8SZK5",-0.880361957186857,15.3616448454738,-4.42332986639047,0.000469844500758723,0.00238933118068765,-0.516853185454146 +"Q9VD09",-0.486013798365789,14.5798638803691,-4.41982721362146,0.000473188930140028,0.00239902472788318,-0.524007960385232 +"Q9VXZ0",-0.263776702464469,19.6747269518058,-4.40297674298148,0.000489621547110051,0.00247481436539262,-0.558438627634408 +"A1Z6P3",-0.214714167721123,17.2279586687011,-4.39608140686279,0.000496512957346848,0.00250206529563306,-0.57253293210113 +"Q9VI75",-0.398074941871581,17.4077936349294,-4.39294064301688,0.000499684703369596,0.0025043513106877,-0.578953715644268 +"Q9VNZ3",0.883797303968688,15.3175403094516,4.39265970794037,0.000499969416342328,0.0025043513106877,-0.579528070900508 +"Q9W5B4",-0.437095645941721,18.6238852344049,-4.37880535426573,0.000514217643606357,0.00256241897842414,-0.607858327516993 +"Q9VSY6",0.28111586549046,17.7224056013374,4.37840594173994,0.000514634507057607,0.00256241897842414,-0.608675240083335 +"Q9VE50",-0.402572325007242,14.5952834660866,-4.37122749186827,0.000522185717024562,0.00259227909522908,-0.62335881120711 +"Q9V784",-0.579713391385592,14.2129069362637,-4.36410673085365,0.000529788053825994,0.00262221505573222,-0.637927338047718 +"Q8I099",0.249880453281214,16.8593425287776,4.3547525405572,0.000539946919582207,0.00265796899569784,-0.657069709479303 +"Q9VJZ6",-0.296586678101658,19.6998721459442,-4.3545229598735,0.00054019873473715,0.00265796899569784,-0.657539584857719 +"Q9VDK9",0.317025731833617,15.5428172772028,4.35216771070665,0.000542789019575592,0.00266285907250614,-0.662360169224378 +"Q9VCE1",-0.366889293797463,13.6715944952695,-4.34322880753267,0.000552735877316089,0.00270370511250216,-0.680658618182076 +"Q9W1F8",-0.22285043022128,17.6385092340496,-4.33910960780029,0.000557381990661682,0.00271845953340259,-0.689092352519529 +"P40301",0.286972454766627,17.8483080527872,4.33395921174486,0.000563247329417877,0.00273905698387469,-0.699638692920717 +"Q9VN86",0.378387139993052,15.3927364428041,4.33200669793773,0.000565487309011962,0.00274195590532545,-0.7036371868726 +"Q9VW34",0.283491617316827,18.4621667280435,4.32743978284092,0.000570762168751133,0.00275951100717939,-0.712990442263232 +"Q7K204",-0.554036191917602,14.844577389759,-4.31904040559219,0.000580595039415467,0.00279555880026439,-0.730195688817231 +"Q9VHX4",-0.188859773327312,22.8380191014466,-4.31803684246877,0.000581781379071291,0.00279555880026439,-0.732251634700919 +"Q9VFC2",0.277723538610996,19.8695551434363,4.31680068000645,0.000583246080630699,0.00279555880026439,-0.734784167727891 +"Q9VHD3",0.221657854056897,15.6948978699245,4.31330206679473,0.000587411933188144,0.00280745875231468,-0.741952233804247 +"Q9W401",-0.18225781135504,24.4610095631026,-4.30992664854607,0.000591459864967395,0.00281872872790176,-0.748868503842554 +"Q9VB46",0.39634309659227,15.2571874458195,4.30237751751479,0.000600616367995859,0.00285421111628801,-0.76433890549426 +"Q7K3W2",0.21996635721597,17.5828830694103,4.29249931240929,0.000612816634836872,0.00290391519007927,-0.784586691135233 +"Q8IM93",-0.261564432093756,19.0276876481251,-4.29071768426654,0.000615043825722803,0.00290621275157404,-0.788239098677865 +"Q9VNW0",-0.527409600156302,14.6490186642389,-4.28564250163633,0.000621433597520672,0.00292811084933469,-0.798644295182666 +"Q7K8X7",0.278188220118924,19.4890001635212,4.28160868365385,0.000626560517368672,0.00294212182422225,-0.806915389378698 +"Q9W4K0",0.232914415851425,19.7199493509626,4.28053307006633,0.000627934873754869,0.00294212182422225,-0.809121004434071 +"P20348",-0.359248641128268,17.4121223699511,-4.26738308675615,0.00064498773899376,0.00301355615865992,-0.836090463074291 +"Q9VZ19",-0.415606796319391,20.2632641760049,-4.2563256988061,0.000659691892215086,0.00307185639369445,-0.8587746159421 +"Q9VSA3",0.230194623245918,21.7215076102327,4.25524371310156,0.000661148948043349,0.00307185639369445,-0.860994611432017 +"Q0KHZ6",-0.272997552757214,23.0740829402211,-4.24624910227042,0.000673389188301462,0.00311627990139114,-0.879451667237354 +"P05031",0.600836507257858,13.4766928577832,4.24547985595796,0.000674446669305876,0.00311627990139114,-0.88103034328647 +"Q9W3K9",0.346815441679912,19.3447212134322,4.23391635417284,0.00069054840661818,0.00317247721534562,-0.904764622788585 +"Q9VN02",-0.217477000419215,17.2751636351012,-4.23254843868936,0.000692478902207661,0.00317247721534562,-0.907572688288123 +"Q27377",-0.422820358633803,20.0456085409392,-4.23217961496955,0.000693000351621896,0.00317247721534562,-0.9083298261369 +"Q7KN90",-0.186041787233425,17.2669812308476,-4.23132007528475,0.000694217136451531,0.00317247721534562,-0.910094351050702 +"Q9W2M0",-0.212428086095173,17.7615616961272,-4.22747136354268,0.00069969220605492,0.00318876120136505,-0.91799566269248 +"Q9V3W0",-0.300605552314032,20.835338402946,-4.21522278445886,0.000717411140894299,0.00326060431338335,-0.943145982770189 +"Q7K012",0.332555045579953,15.5736184512321,4.20937605119478,0.000726029532990934,0.00329080777453499,-0.955153487462799 +"Q9W260",0.262923708272528,17.4049783784632,4.20714684879453,0.000729343185340575,0.00329686838251512,-0.959732004286046 +"Q9VXN4",0.248329320423576,14.9939832243931,4.20456206434507,0.000733204683547535,0.00330536597880348,-0.965041103062304 +"P17210",-0.177714422314089,20.8329678854535,-4.19953113931568,0.000740780337897857,0.00333051645178875,-0.975375318430673 +"Q7KVQ0",0.376569264783425,15.7066085133946,4.19306128419771,0.000750640009523162,0.00335840347773049,-0.988666809859725 +"Q9VUJ1",0.190776436051042,20.0224658210152,4.1928202569662,0.00075100989040376,0.00335840347773049,-0.98916200212313 +"Q9VRR3",-0.291311456069575,19.7385326526577,-4.1910879601821,0.000753673739661163,0.00336022391354133,-0.992721087259135 +"Q9VZE4",0.248232609515128,17.672458061198,4.18993889519084,0.000755446023727818,0.00336022391354133,-0.995081961275194 +"Q7K3Z3",-0.19977832137786,19.8781562718374,-4.17709113559412,0.00077555323932332,0.00344048617870026,-1.02148255823051 +"Q9VXK6",-0.322064404052025,17.7876241337556,-4.17461179660386,0.000779495746652157,0.00344880346264138,-1.02657803609926 +"Q7K0E6",0.254950455986368,16.738295713821,4.14100023604297,0.000834999532895517,0.00368460111341197,-1.09567807646815 +"Q7KLE5",-0.186072757909578,21.4111840821455,-4.13853086506798,0.00083923245229616,0.00369350852356199,-1.1007562904694 +"Q9VYY3",0.182936300772724,17.544422232198,4.13472859930935,0.000845792876943959,0.00371258557563822,-1.1085759815996 +"Q7JZW0",0.254524423465099,19.7796760222945,4.11918067005919,0.000873166241994084,0.0038159201902414,-1.14055663334709 +"Q95RA9",-0.165615501534752,20.5009681506718,-4.11876528711848,0.000873909779779505,0.0038159201902414,-1.14141114485156 +"Q9W4W8",0.302351264969491,17.4121480285552,4.11481715585391,0.000881009157400096,0.00383687539045264,-1.1495333767458 +"Q0KIE7",0.63091407218826,14.0418513385367,4.11184059798521,0.000886400212877243,0.00385030092468552,-1.15565717681669 +"Q95TK5",0.252758350776055,17.1605456023311,4.09848997448573,0.000910995843679815,0.00394408155893583,-1.18312731141067 +"P16378",0.216311301651825,20.4467666605917,4.09756834560868,0.00091271911375853,0.00394408155893583,-1.18502384371051 +"Q9VA34",-0.30051029881384,14.4307999341644,-4.08396983085373,0.000938534033262933,0.00404396857323816,-1.21300976940359 +"Q9VQD7",-0.180026032819278,20.9709931403091,-4.08285482398827,0.0009406833371801,0.00404396857323816,-1.2153046991483 +"Q9VK00",0.67954378956194,17.8048016385076,4.07785188071678,0.00095038877823335,0.00407518889998259,-1.22560227684178 +"Q9VXF9",-0.176776152478521,17.4720763046938,-4.07199626535619,0.00096187759191932,0.00410569576543051,-1.23765576679496 +"Q9VME1",-0.371327970341579,16.5475663668093,-4.0717183867143,0.000962426285541563,0.00410569576543051,-1.23822778852635 +"Q9VXN3",-0.264374686120693,16.961678007382,-4.05731203066337,0.000991312375083909,0.00421813531030602,-1.26788642245951 +"P12370",0.305367028820122,20.7917273321504,4.05174309965891,0.00100271304910633,0.00425578973513832,-1.27935266253511 +"Q9V9V4",-0.209227371851036,18.6297496139518,-4.04165855519751,0.00102369779268287,0.00433382720354067,-1.30011825660399 +"A1Z9I0",-0.188450396109054,19.4006376320396,-4.02277807869348,0.0010641915544914,0.00448495350991875,-1.33900205098628 +"Q9W1B9",0.415270513188609,20.5911036472902,4.0225122523848,0.00106477313544834,0.00448495350991875,-1.33954956583048 +"A1Z877",0.196585565031242,19.9773855034115,4.01787034716055,0.00107498091760101,0.00451440719797967,-1.34911059238477 +"Q8IRH5",-0.287572180355145,14.4162474663663,-4.0168767742311,0.00107717869592081,0.00451440719797967,-1.35115712988346 +"Q9V431",-0.188489247062716,18.5297012868093,-4.01132122900985,0.00108955176345666,0.0045546182313402,-1.36260065737708 +"Q6NMY2",0.393661668385121,20.1126578858508,4.00974877698825,0.00109307995490457,0.0045546182313402,-1.36583976086913 +"Q9VBP6",-0.165775130019576,23.1284348586979,-4.00891067625434,0.001094965174321,0.0045546182313402,-1.36756618841162 +"Q24583",-0.189308699849317,21.2364726128207,-4.00752628907741,0.00109808642976794,0.00455623921605203,-1.3704179552297 +"Q9VH76",-0.206630836466658,19.3146351699551,-3.99924415597617,0.00111694872979199,0.00462300367566513,-1.38747944447058 +"P15425",0.22317586235436,17.0621512294269,3.99036763315856,0.00113752956892744,0.00468649834270518,-1.40576670460135 +"Q9VCX3",0.518069878327681,12.9894979633501,3.99020561474407,0.00113790877026115,0.00468649834270518,-1.40610050418726 +"Q9V393",0.372705680046867,15.809996868543,3.98070179674893,0.001160377899614,0.00476726683880827,-1.42568153049017 +"O46067",-0.159851136677169,19.7319082821648,-3.97823588006603,0.00116628097723751,0.00477892227426578,-1.43076236209324 +"P08182",-0.182671426093908,19.6615495203309,-3.97712715795429,0.00116894501672688,0.00477892227426578,-1.43304682752991 +"A8JNG6",-0.733428438401805,15.6905811617454,-3.97271846919285,0.00117959935727935,0.00481068882137397,-1.4421308788961 +"Q9VMH8",0.179140629066382,18.9196842380788,3.96540415156193,0.00119749308251262,0.00487175234544159,-1.45720252946706 +"P35220",-0.214892755967742,19.3364119181904,-3.95523654575999,0.00122282476456366,0.00496270488392258,-1.47815470319474 +"Q9VF15",-0.27734052269513,20.8542910198382,-3.95211703486648,0.00123070501402653,0.00498256301795205,-1.48458325879857 +"Q9VBV5",-0.230331870452705,17.1683086893173,-3.94684364787142,0.00124414331353333,0.00501651689454902,-1.49545067375143 +"P36975",-0.301452210157386,22.2356162910213,-3.94646781438555,0.00124510671123699,0.00501651689454902,-1.49622520399852 +"Q9VCR2",0.297372883788498,15.5012250835679,3.94497084100892,0.00124895149818209,0.00501988216618731,-1.49931023132043 +"Q9VRP3",0.29787549397815,18.0137338921209,3.93537686509922,0.00127387937491837,0.00510776633981692,-1.51908243041202 +"P40304",0.25824893364954,18.7817917827255,3.93352663992088,0.00127874440633472,0.0051149776253389,-1.52289565180209 +"Q9VF24",0.283622267893133,16.1311661368688,3.93125763345729,0.00128473627006323,0.00512665095326665,-1.52757200053373 +"Q9W1R0",0.773187535478575,14.1144811437098,3.92665605569582,0.00129697524124103,0.00516313771453471,-1.53705583251533 +"Q9VKE2",-0.368290856598751,24.0769382042761,-3.91912127824621,0.00131727104213242,0.00523144785304018,-1.55258532131927 +"Q9VX36",-0.157098627555566,22.21294527592,-3.91571267730887,0.00132655777759339,0.00525581561288781,-1.55961071683394 +"O61491",0.159935365778153,20.9428219736616,3.91290051161379,0.00133426936944115,0.00527384196262522,-1.56540686666238 +"Q9VZF9",-0.243719069873595,19.0984830401382,-3.90341713205102,0.00136061081633269,0.00535147562710453,-1.58495336493126 +"Q9VEY0",0.235175477682656,18.0345866616263,3.90289364115587,0.00136208011220769,0.00535147562710453,-1.58603236173017 +"Q9VZJ8",0.409086433357558,14.8748339595235,3.90237568367278,0.00136353545654642,0.00535147562710453,-1.58709995449792 +"R9PY51",-0.285280253876326,21.508479189438,-3.89260975680954,0.00139127176634679,0.00544751480344237,-1.60722928156765 +"A1ZA22",0.667856748774142,13.5975987409147,3.87961589583849,0.00142906235970478,0.00558237942854231,-1.63401238521486 +"Q9VJQ6",0.381189958789667,14.4606874918056,3.87395417682149,0.00144585152963067,0.00563476717622418,-1.64568247146549 +"Q9W4W5",0.242060871145341,17.3191382743618,3.86898113619016,0.00146076288305064,0.00567960953130178,-1.65593304761763 +"Q9VKU5",-0.564251105500576,13.6392190760864,-3.86531929791999,0.00147184193445332,0.00570937755039101,-1.6634809319675 +"Q9W370",0.426791464361802,18.3654871504733,3.8569562176789,0.00149746423068884,0.0057952908046148,-1.68071909814918 +"Q9VSR5",0.220702585136248,20.2711842710254,3.85485838392773,0.00150396183832785,0.00580696376465476,-1.68504318114089 +"Q9VWP4",0.306061439896776,15.1885886551156,3.85071917972842,0.00151686582182739,0.00584326141064224,-1.69357493364773 +"M9NDE3",0.174622930922334,16.1745448895629,3.84921414372502,0.00152158545026496,0.00584793670746995,-1.69667711126103 +"Q7K1W5",-0.160061182153285,19.7894286240062,-3.83934592856467,0.00155290067643138,0.00595457086962652,-1.71701726431987 +"Q9VAA9",-0.23442804248474,17.1020432253642,-3.81981240981265,0.00161681952066131,0.00617499185857588,-1.75727790971463 +"Q9VYT0",0.156053239057805,18.2716032183478,3.81952228602383,0.00161778863441107,0.00617499185857588,-1.75787586710889 +"Q9VXN2",-0.375230240013327,18.4387039589227,-3.81381325158064,0.00163697850084242,0.00623170294970733,-1.76964229776114 +"Q9W3T2",-0.17191930515367,16.2646461658621,-3.81288553856067,0.00164011846218316,0.00623170294970733,-1.77155430774203 +"Q9VDD1",-0.396368651102037,14.3595668460589,-3.81046930385491,0.00164832506906858,0.00624865048910544,-1.77653411641498 +"Q7K188",-0.229332205438435,21.9843152495797,-3.80475384801096,0.00166790259561355,0.00630852954531385,-1.78831334431055 +"Q9VZX9",0.170437508524639,18.447175315933,3.80171575182198,0.0016784045056335,0.00633388849637259,-1.79457456187039 +"Q9VJD0",0.256501457569682,16.1266190198027,3.79560480727264,0.00169973091920996,0.0063907300585663,-1.80716833434747 +"O77263",-0.221211210276843,15.5215358325483,-3.79520673547924,0.00170112958393492,0.0063907300585663,-1.80798868896561 +"Q9VU35",-0.190583426697685,22.7126395080507,-3.79260726458592,0.00171029166644432,0.00641071123512164,-1.81334568945956 +"Q7KTG2",0.229146351179281,18.0846112125531,3.7915015261599,0.00171420401859762,0.00641096928928437,-1.81562437675378 +"Q9W0R0",-0.213671994507028,16.735984403513,-3.7710043839636,0.00178838406673087,0.00666548869401957,-1.85786178339895 +"Q9VIN9",0.226925931699586,16.4522736798313,3.77049960361033,0.00179025116002444,0.00666548869401957,-1.85890188631054 +"Q9VBU9",0.190502635987887,20.845503781196,3.76407974098441,0.001814169192674,0.00673694027531983,-1.87212971869536 +"Q9VY42",0.289187638795189,15.2387206589785,3.7625451581332,0.00181993401259099,0.00673694027531983,-1.87529156229984 +"Q9VSL9",0.53670390515607,14.6593232238978,3.76211353023639,0.00182155879146837,0.00673694027531983,-1.87618087863953 +"A1ZAA9",0.215802425654722,16.5801619282819,3.7606685898661,0.00182700863196933,0.00674214689850628,-1.87915797936053 +"Q9VLB1",0.336867296381607,16.769209359997,3.75782717084718,0.00183777350065073,0.00676690110173383,-1.88501223324707 +"M9PF61",-0.156052870042704,22.691028400185,-3.75654378945612,0.00184265659006825,0.00676993654677056,-1.88765637556911 +"Q9VVL8",-0.290317725181724,15.8589451776595,-3.75077466714057,0.00186476927559883,0.00683612121252494,-1.89954211443606 +"Q9VRJ6",-0.256559338362413,15.7394790782555,-3.74175724313934,0.00189986922926009,0.00694952165439873,-1.9181189234823 +"Q7KN75",0.245845805028736,19.3826043172769,3.73997068129075,0.00190690193957619,0.00695998344685577,-1.92179924185403 +"Q9V3Y0",-0.257885616509775,16.3299508385752,-3.73422244556563,0.00192970795564912,0.00702784469437278,-1.93364018716051 +"Q7KMS3",-0.329198573409316,15.5394291596839,-3.72722262091393,0.00195785084064275,0.0071148043620743,-1.94805840823492 +"P07486",0.184540750154046,22.1633684776058,3.71482716006065,0.00200870458788113,0.00728373750562114,-1.97358794895002 +"Q9VZU4",-0.229608836648879,21.4020026679134,-3.69695862630017,0.00208436092655946,0.00754167901410234,-2.0103833911136 +"Q6IHY5",-0.218814214068871,20.8899641977379,-3.69539178815044,0.00209113019236932,0.00754979472050222,-2.01360948860533 +"Q9VEB1",-0.134201238114279,25.1289450051015,-3.68962017966094,0.0021162567894867,0.00762400934095855,-2.02549258528007 +"Q24297",0.230136286961475,17.00903053694,3.68693788121034,0.00212803726472254,0.00763949460952011,-2.03101483032415 +"Q03427",-0.14043184536402,21.7316834795181,-3.68655704184567,0.00212971522387701,0.00763949460952011,-2.03179887622512 +"Q9VSN9",0.238909878327217,16.5201056237236,3.67441125739814,0.00218393249346214,0.00781716609247823,-2.05680161997961 +"Q9VAN0",0.169774965661546,20.4524575107322,3.67114064562861,0.00219876780366604,0.00785341476769797,-2.0635336103236 +"Q9VH77",0.312844521185964,15.53675208586,3.66792070893071,0.00221347221182982,0.00787334327504108,-2.07016097829907 +"Q9V3L6",0.290555000340754,15.8467981646997,3.66785184520565,0.00221378776738265,0.00787334327504108,-2.07030271216408 +"Q9VR25",0.183007778461263,16.977871040057,3.65762576487781,0.00226115234688055,0.00802468535020587,-2.0913481630517 +"Q7JYH3",0.230777043598394,19.2372275614119,3.65530245801493,0.00227205450153613,0.00804625670607701,-2.09612910141799 +"A1Z9J3",-0.202613175415934,17.646106378832,-3.64956462322721,0.00229920620463547,0.00812516090960163,-2.10793574561941 +"Q9VAI9",-0.211108521695351,21.9728393238786,-3.6474350705457,0.00230936608457999,0.0081371489950044,-2.1123174078923 +"Q9W4C2",-0.37507848570068,15.8657578933588,-3.64681031236848,0.00231235528994729,0.0081371489950044,-2.11360285007759 +"Q961Q8",0.432334315373383,15.4986685391188,3.64213333929549,0.0023348564382943,0.00818483384965002,-2.12322531102664 +"O96824",-0.243849395697339,16.7140316095259,-3.64195475297996,0.00233571997148286,0.00818483384965002,-2.12359272157647 +"M9PEG1",-0.285429495187945,20.3109534931276,-3.62960512056671,0.00239621976152307,0.0083792338830618,-2.14899719351465 +"Q961B9",0.294553723625642,14.9362291635852,3.62099391578036,0.00243933402882468,0.0085100234611207,-2.16670799815034 +"Q9VG69",-0.18429415650747,19.9524891538225,-3.62010560140267,0.00244382568218034,0.0085100234611207,-2.16853484767714 +"Q9VCC0",-0.234446789683798,17.4609863366011,-3.61828708080321,0.00245304671905046,0.00852433734870035,-2.17227460324696 +"Q9VGP7",0.368835492726745,15.9570994145514,3.61587710684559,0.00246532062079555,0.00854917836899578,-2.17723047300058 +"Q9VZI3",0.264052063178637,14.3865544601752,3.6122522471883,0.00248389805687032,0.00859497603664139,-2.18468420084178 +"Q9VXY3",0.164749469257544,18.0974322757029,3.61129390826938,0.00248883298902745,0.00859497603664139,-2.18665472665928 +"Q9VFP1",0.455747061508763,15.7432454901806,3.60923816442513,0.00249945218249261,0.00861381454627617,-2.1908815993684 +"Q9VCE0",-0.408666464713647,15.8139199327267,-3.60715913889783,0.00251023788056536,0.00863314800986192,-2.1951561676776 +"Q9Y125",-0.241259232615825,22.6286302161622,-3.60440780240347,0.00252458326136615,0.00866461909456532,-2.20081276461506 +"Q9VSN3",-0.238864952753197,20.8754816954261,-3.59542534048637,0.00257199258293889,0.00880920662903916,-2.21927801177221 +"Q960M4",-0.227767086373984,23.2119323258345,-3.58862916084812,0.00260845527956269,0.00891578566866919,-2.23324662131783 +"Q9W3N7",-0.470851907746653,17.2512404308591,-3.58294666391649,0.00263934049597849,0.00900290377769351,-2.24492464704694 +"Q8IPD8",-0.224986545644853,18.31759193802,-3.57925910152821,0.00265957885192011,0.00905342352041376,-2.25250213111247 +"Q9Y156",0.35064592185055,16.1390687670303,3.57254140273464,0.00269684812847852,0.00916159404949525,-2.26630456470073 +"A1Z9B5",-0.467683337404861,15.7844461984263,-3.57016700648035,0.00271014593711757,0.00918624354043078,-2.2711825835959 +"Q95TN1",0.363894173276632,14.0566093149745,3.56928208314382,0.00271511874426401,0.00918624354043078,-2.27300052401448 +"Q9NK57",-0.370410842630911,15.5090800855934,-3.56290477718841,0.00275122731038647,0.00928741099896015,-2.28610062177362 +"Q9VPX0",0.373291697596427,14.3887328711407,3.56204078494868,0.00275615614177774,0.00928741099896015,-2.28787526129932 +"Q9VY87",0.376776984680898,17.6353165601459,3.5584007460652,0.00277701887756971,0.00933884574150458,-2.29535149773748 +"Q9VKI8",-0.141399093697199,22.3555731383425,-3.55519372096111,0.00279553087954335,0.00938148441466336,-2.30193782956631 +"Q9VHN6",0.288850848272997,15.0574572411412,3.55425948954551,0.00280094678567287,0.00938148441466336,-2.3038563829435 +"Q9VSC3",0.329361310570039,17.5682062031792,3.55039156330533,0.00282348191242606,0.00943801168321978,-2.31179915408622 +"Q9W314",-0.35547500766808,16.2040939137133,-3.53995893516545,0.00288517356718326,0.00962493902012336,-2.33321869329687 +"Q9XTL2",-0.235068410825754,16.9114159726222,-3.52924850184501,0.00294991236371648,0.00980984864299725,-2.35520263430516 +"Q9VPC1",-0.268217151119579,16.0950906862197,-3.52834189562117,0.00295545861451701,0.00980984864299725,-2.35706322480419 +"A1ZB79",-0.184167950715281,20.7839734867978,-3.5278869493564,0.00295824572387747,0.00980984864299725,-2.35799687527092 +"Q2MGK7",-0.261053092308671,17.0802881804803,-3.52631272838508,0.00296791009373055,0.0098223691197273,-2.36122743752846 +"Q9VVN2",0.323209331024838,14.9269588089672,3.52400487650797,0.00298213548053624,0.00983060614306062,-2.36596328473049 +"Q9VQX3",-0.455639831117177,15.3046044687821,-3.52399665547446,0.00298218627601239,0.00983060614306062,-2.36598015424504 +"Q9W445",-0.158141569067432,16.4524107090952,-3.51804897357569,0.00301916319315062,0.00993286825675589,-2.378183773598 +"Q23983",-0.176161595930722,22.3356285651967,-3.51498938647528,0.00303836308796133,0.00997635754078641,-2.38446074155749 +"Q7PL91",-0.273557291902836,18.8534379645936,-3.51304295373646,0.0030506411115464,0.00999699287634459,-2.38845371314735 +"Q94915",-0.413646437098835,16.9808043200414,-3.50864959648487,0.00307853701177207,0.0100470174922785,-2.39746557689847 +"Q9VJI5",0.251283288115289,17.5498214378569,3.50733877738856,0.00308690946151441,0.0100470174922785,-2.40015417404238 +"O18333",0.288581897579965,17.4803216210318,3.50695605040862,0.00308935830437103,0.0100470174922785,-2.40093915940132 +"Q9VPF6",0.299110153727502,14.0052079381834,3.50650015610405,0.0030922778375736,0.0100470174922785,-2.40187420208428 +"Q9VK60",-0.168099646166041,21.3328798617399,-3.50591590856433,0.00309602337591796,0.0100470174922785,-2.40307248037596 +"Q9V9M7",0.236384479821616,18.406933019599,3.49809409277099,0.00314660727211186,0.0101913416114225,-2.41911289570841 +"Q9VMB9",-0.207890820096676,22.5483085290325,-3.49374282607984,0.0031751039406066,0.0102637080870772,-2.42803456838845 +"P48604",-0.173626433931705,20.0969003304925,-3.49163495568132,0.00318900112604342,0.0102886922209679,-2.43235605122136 +"Q9VKG4",-0.218108254638549,15.899107926057,-3.48770337403289,0.0032150847351471,0.0103528211162652,-2.44041571243094 +"Q7K519",0.281769516796953,15.6539194463518,3.48554872242527,0.00322946987142286,0.0103791054827232,-2.4448322965896 +"Q9I7J0",-0.276712706381321,20.9819790374093,-3.48074539273353,0.00326177041528489,0.0104627558705677,-2.45467706671498 +"Q7JWD3",-0.260452218015805,17.0995349645606,-3.47801095133104,0.0032803025012654,0.0105020049368727,-2.46028084822244 +"Q95RQ8",0.746031080256909,14.2995654179286,3.47684243180638,0.00328825394574398,0.0105072942174348,-2.46267538832439 +"Q27272",-0.334442386841156,15.6913536079347,-3.47375718426174,0.00330934086473529,0.010554456142215,-2.46899728148326 +"Q9VDV3",-0.174405988818775,17.5366875014127,-3.4712981847375,0.00332624425048478,0.0105881210110851,-2.47403550613535 +"Q9VVG0",0.156087417207701,18.097966695752,3.46443917725728,0.00337385094420506,0.0107192064284458,-2.48808677791946 +"Q24478",-0.386624343347055,17.3793665516136,-3.45674056133322,0.00342809629070146,0.010870845271654,-2.50385432817164 +"A1ZB69",-0.218352506888401,20.4182601566043,-3.4547487140705,0.00344227235234873,0.0108941946192718,-2.50793318159562 +"Q9VIX1",-0.55079688887662,17.2224333671201,-3.453873184802,0.00344852203775509,0.0108941946192718,-2.50972598209279 +"Q9W3B3",-0.242545046210166,15.6684990905946,-3.44734732749326,0.00349546311082068,0.0110216114723041,-2.52308716112569 +"Q9VEC8",-0.203576703449633,16.5005006984112,-3.44525566690508,0.00351064319747133,0.0110485902894003,-2.52736904507966 +"Q9VJI9",-0.413087210214403,17.6036192033855,-3.44378059423954,0.00352138799118751,0.0110615351587585,-2.5303885139398 +"Q9VVA6",-0.199694530731119,19.2231337194335,-3.44174074325309,0.00353630087680791,0.0110778506795719,-2.53456382940296 +"Q9VLU4",-0.176505191713536,17.1669361613482,-3.44125453125773,0.00353986475552267,0.0110778506795719,-2.5355590000503 +"Q9VF27",-0.12804629340879,22.2454395341154,-3.43633821199859,0.00357610281308044,0.0111702986745659,-2.54562069478432 +"Q9VEP6",-0.185640936944147,18.6233595023705,-3.42249921641213,0.00368010953970835,0.011473687312586,-2.57393405449958 +"Q709R6",-0.346798708032589,15.0989719318642,-3.42027402360388,0.00369711229161278,0.0114807505362066,-2.57848528276632 +"P92177",-0.203840307343668,24.1306861913894,-3.4187963833075,0.00370844624514873,0.0114807505362066,-2.58150732294868 +"Q9VPZ5",-0.218914166449252,18.3574424505945,-3.41860239393809,0.00370993677417229,0.0114807505362066,-2.58190405390937 +"O97477",0.164796504065524,20.9481550008561,3.41775862275132,0.00371642689557001,0.0114807505362066,-2.58362963173076 +"Q9VL16",-0.163003917348071,20.740929896374,-3.41771149301339,0.0037167897419374,0.0114807505362066,-2.58372601413356 +"Q9W086",0.201032115638506,16.8755113177334,3.41361478304255,0.00374846521983014,0.0115413213399905,-2.59210332462396 +"Q9VW73",0.284805380261432,14.2220351405216,3.41338658701261,0.00375023750975711,0.0115413213399905,-2.59256992228494 +"P55830",-0.127115120424477,22.0046667895625,-3.39553413803615,0.00389150983093278,0.0119540301988874,-2.62906073057407 +"Q9VE85",0.236279020140366,15.8153758986667,3.39160927144463,0.00392327298221551,0.0120294473057637,-2.63707987388048 +"Q9VVT6",-0.152090111382925,20.4842038084785,-3.38806964723858,0.00395213992494413,0.012095723660196,-2.64431083962287 +"Q9VU92",0.245750107478436,17.7310641888796,3.38673080661239,0.00396311374102995,0.0121070947253442,-2.64704564196708 +"Q9VAY3",0.318412369322747,13.9219856041427,3.38554573651454,0.00397285250064345,0.0121146580824009,-2.64946622072896 +"Q7K1C5",-0.179468614521952,17.4992795979154,-3.38370049622915,0.00398806394094529,0.0121388515574758,-2.65323500898768 +"Q86BM0",-0.200776959948215,17.4536554402525,-3.38060320028211,0.00401372737495309,0.0121947126801853,-2.65956041331599 +"Q9VJ86",0.294434005500172,16.5313733117483,3.37247750125528,0.00408183942014166,0.0123425248210966,-2.67615120540619 +"P41375",-0.292185978305685,16.731265736926,-3.37235562557393,0.00408286973188028,0.0123425248210966,-2.67640000511628 +"Q8IPW2",-0.162224102671638,17.1944303993259,-3.37215379213456,0.00408457655949959,0.0123425248210966,-2.67681202960279 +"Q9VIV6",0.644546565279573,14.8809002136255,3.36703866167614,0.00412807121147694,0.0124513974335326,-2.68725294695003 +"Q9VSX2",-0.177552898803881,17.944612204411,-3.36574499086628,0.00413914433668744,0.0124575038044726,-2.68989321245602 +"Q8SX68",-0.200475297050376,17.5545048816255,-3.36505845247319,0.00414503274069681,0.0124575038044726,-2.69129431716381 +"Q9W1L1",0.375375484280912,14.8837168405156,3.36268094162151,0.0041654890459127,0.0124899834760318,-2.6961460874424 +"Q9VFF0",0.221759193158928,23.6562289009575,3.36206375002676,0.0041708158250298,0.0124899834760318,-2.69740550643314 +"Q9VJ31",0.179702651150965,17.2345616125975,3.35813388560954,0.00420489259508469,0.0125694638863822,-2.70542387173499 +"O97062",-0.177149269027169,18.4693577748792,-3.35644920591942,0.00421958557059345,0.0125781949510271,-2.7088608243082 +"Q9VKU3",0.218547919479473,15.5394519495429,3.35411562464498,0.00424002239977122,0.0125781949510271,-2.71362120440082 +"A1ZBU8",-0.229751543277036,20.780663367947,-3.35374076865879,0.0042433144498632,0.0125781949510271,-2.71438584576212 +"Q9VBT2",0.714501584398647,12.9708685437615,3.35330108251326,0.0042471790911946,0.0125781949510271,-2.7152827136416 +"Q9VV75",-0.129894460898697,23.9687786679649,-3.35303701285694,0.00424950182669457,0.0125781949510271,-2.7158213523713 +"Q9VQR9",-0.247990702182372,16.2449796779376,-3.35263291068223,0.00425305872444801,0.0125781949510271,-2.71664561190955 +"P48148",0.233437083474669,20.6564043639957,3.34973130534792,0.00427868573844214,0.0126315890472947,-2.72256368007253 +"Q9VVZ4",-0.40707423262746,15.8105322536693,-3.34837325441326,0.00429073278746138,0.012641880827538,-2.72533328209109 +"Q9VEX6",-0.151496031129525,20.7661185753923,-3.3471502114797,0.00430161108140658,0.012641880827538,-2.72782740860672 +"Q9VM58",0.231369917866662,16.4386853940296,3.34678002880526,0.00430490905877793,0.012641880827538,-2.72858228820537 +"Q95SK3",-0.16752674662221,17.2178239519157,-3.34561037639416,0.0043153460949415,0.0126502588512521,-2.73096737243154 +"Q9V3G1",0.201433014346488,21.0871792908584,3.34131495372356,0.00435389141133077,0.0127408611826311,-2.73972528083223 +"Q7K3E2",-0.28198976544823,20.5115944503839,-3.33705984356587,0.00439241260938696,0.0128283224285032,-2.74839934624455 +"Q9VY05",0.237385835122065,18.3250737156592,3.33631823611909,0.00439916092871933,0.0128283224285032,-2.74991094786429 +"Q9VVP9",-0.240318948740539,16.6752461012483,-3.32975173795234,0.00445936492408353,0.0129811879465468,-2.76329308142961 +"Q7K5J8",-0.185588120002777,18.2385081807922,-3.3239519391656,0.00451322043951836,0.0131150726360917,-2.77510939115372 +"A0A126GUP6",-0.331472928847276,17.0003377764123,-3.31900573853885,0.00455966013174227,0.0132269793039063,-2.78518410560445 +"Q9VVU1",0.257985751211688,22.2689631442581,3.31663065391399,0.00458212818897682,0.0132690795472454,-2.79002099166422 +"Q9VD64",-0.379797429798764,15.6498375221605,-3.30727354536188,0.00467172106112687,0.013505079254696,-2.80907156209685 +"Q9VB05",0.118015917930304,20.1980610092194,3.30531456266184,0.00469069721145223,0.0135364756897964,-2.81305886802595 +"P29829",0.233791992132904,21.3721715657302,3.29891034851621,0.00475326904408258,0.0136771817342013,-2.82609134444311 +"Q9W402",-0.140307419617738,21.2296912517434,-3.29864752629319,0.00475585455985419,0.0136771817342013,-2.82662609680067 +"Q9VRQ9",0.19102854684902,14.7381579415385,3.27687830270973,0.00497492880470897,0.0142825839006102,-2.87089470657294 +"Q9VSL4",-0.174532399177732,20.9134564616328,-3.26982811811445,0.0050480030695859,0.0144674727148957,-2.88522107168186 +"Q6IGM9",-0.665461922380455,14.7473315025942,-3.26110355784502,0.0051399076853194,0.0147056020911025,-2.9029425822744 +"Q9VDC6",0.291215540944778,16.9717470624029,3.25599560435606,0.00519448310270522,0.0148362976289594,-2.91331417560612 +"Q7JNE1",-0.144987648750849,17.7962738722791,-3.25067226807819,0.00525197121137316,0.0149748512488383,-2.9241200829222 +"Q9U6R9",-0.157326348178962,20.585257613804,-3.24779841877763,0.00528326836989946,0.0150383816399186,-2.92995245488991 +"O62602",0.296721733781945,14.5895292480106,3.24331759145162,0.00533243524330171,0.0151524735704042,-2.93904430898982 +"Q8MT58",0.143667945754881,21.6263027890721,3.24022166099859,0.00536667065043937,0.0152238208247158,-2.9453248233695 +"Q9Y136",0.303629519501296,15.2665561783888,3.23190908767633,0.00545967389988607,0.0154553053127602,-2.96218267390643 +"Q9VM69",-0.249121016532275,16.8428884116285,-3.23127754874343,0.00546680463700749,0.0154553053127602,-2.96346311121909 +"Q9VQR2",-0.154580192753677,21.316904508939,-3.22603280633862,0.00552638080975107,0.0155879584576805,-2.97409499920247 +"Q7K1H0",-0.147328924088267,16.3191300467885,-3.22550455054859,0.00553241691063959,0.0155879584576805,-2.97516567872403 +"Q7K738",-0.138055807518331,19.7699242135479,-3.22160886950152,0.00557713287704205,0.0156874496440238,-2.98306052851148 +"Q27268",0.306852372055616,19.0147698068027,3.21777510407514,0.00562148750270094,0.0157793755022194,-2.99082818185095 +"Q9VRP4",0.355282302539383,14.3991852990866,3.21715159924666,0.00562873406703871,0.0157793755022194,-2.99209131273371 +"Q94522",-0.159164876422295,23.4699495358943,-3.21208346357005,0.0056879816131358,0.0159187136421317,-3.00235693113658 +"Q9VUN9",0.138202734480274,16.7886163015593,3.2074699739707,0.00574245074512256,0.0160327560803668,-3.01169901445702 +"Q9VJ43",0.177414972756804,20.2566934102394,3.20700622056217,0.00574795451802119,0.0160327560803668,-3.01263795164388 +"Q9V7D2",-0.20580061110919,21.3513529754591,-3.20325961087383,0.00579261071854922,0.0161303417004008,-3.02022257233948 +"Q0E8V7",-0.321738492614681,19.7027123560482,-3.20073467561308,0.00582289912275993,0.0161876595612726,-3.02533308963483 +"Q9VM07",0.223645669565341,17.0004725945388,3.19914348024851,0.00584206708145615,0.0162139232809798,-3.02855330429822 +"Q8MLP9",-0.397825370887979,14.9315103406374,-3.19070286213831,0.00594479350971018,0.0164716205551438,-3.04563003146688 +"Q9VJD4",-0.150907297084121,20.7556801601641,-3.18874509946348,0.00596887452216954,0.0165109165886879,-3.04958965299752 +"Q9W483",0.319819423647035,15.5722123491555,3.18192045285006,0.00605357616168018,0.0167174917842426,-3.06338895270451 +"Q9VIH9",-0.415498693828237,19.1487864122102,-3.17746707803405,0.00610948721062991,0.0168440077145962,-3.0723904539497 +"Q95RS6",0.254481161012059,17.1678953351122,3.1766034563383,0.00612038871762098,0.0168462184504815,-3.07413578343597 +"P20432",-0.167611571906487,23.5621280333249,-3.1714462081164,0.00618589007639762,0.0169911223885296,-3.08455631967069 +"Q7KY04",0.317473047979178,14.0766648791185,3.17085784051906,0.00619340672195804,0.0169911223885296,-3.08574493780143 +"Q9VH26",-0.200831119287582,18.2868908556853,-3.16630349612174,0.00625189652878157,0.0171234210344953,-3.09494411169184 +"Q9VEJ0",-0.12773449415198,22.2142253267539,-3.1634251769457,0.00628914284448331,0.017197197155079,-3.10075656267667 +"Q7JR58",-0.189924345697595,22.8150857901754,-3.16182278328741,0.0063099732010247,0.017225917020146,-3.10399195813416 +"Q8T0Q4",-0.182844701165379,19.9851303663364,-3.14896748663433,0.0064795707433747,0.0176600065358644,-3.12993598856206 +"Q7K5M0",-0.357040319576882,16.6659286359348,-3.14708484048269,0.00650478309607782,0.0176998013120029,-3.13373364102181 +"Q7JPS2",-0.250424316967742,20.6941733676216,-3.1431552476994,0.00655772055456036,0.0178147848290011,-3.14165885114108 +"P48375",-0.209558940161575,21.8927195247809,-3.14153408001337,0.00657968379709871,0.0178453862984726,-3.14492782378782 +"Q8SXY6",0.201689704079801,19.127165737075,3.13672872941087,0.00664521310217107,0.0179938562571775,-3.15461540512947 +"A1ZB68",-0.227819846087602,19.3274439793371,-3.13128596982806,0.00672021260756506,0.0181674467251516,-3.16558422666975 +"B7Z107",-0.46794953707022,15.9791092927627,-3.1223413467377,0.00684528443417093,0.0184756220650439,-3.18360156511683 +"Q9VR30",0.236001830337546,17.3175288672014,3.12108574460126,0.00686302416682128,0.0184935772378964,-3.18612986609475 +"Q9VUX1",0.19546102473655,16.4208572694559,3.11953755326901,0.00688496015787948,0.0185227637795854,-3.18924702776857 +"Q9VAG3",0.269627908560858,16.8183805172991,3.11608386008196,0.00693414423259133,0.0186250444121777,-3.19619956294476 +"P19107",0.14312411552768,24.0713434774427,3.1130225197198,0.00697803031458979,0.0187127886892858,-3.20236086604342 +"O61443",0.251101374282165,16.539192265356,3.11197203642065,0.00699315260800145,0.0187232400483891,-3.20447478180883 +"Q8MRM0",-0.207375925904088,18.5551704840265,-3.10336079521064,0.00711834002418132,0.0190278704492539,-3.22179751852409 +"P40797",0.13945596579735,19.1622356493541,3.09862877379677,0.00718807012128009,0.0191835215396723,-3.23131214295828 +"Q7KN94",-0.145848039819551,22.626052830014,-3.09696451389684,0.00721275392485226,0.0192186478381047,-3.23465768576143 +"B7Z0C9",-0.219594981393982,15.955244232334,-3.09236347009151,0.00728143056270035,0.0193469362988091,-3.24390474687804 +"Q09101",0.219367205289537,14.6597525791805,3.09218560534268,0.00728409831873628,0.0193469362988091,-3.24426215313549 +"Q7JZK1",-0.166670062189933,21.5106809347634,-3.0832286175835,0.00741969428288598,0.019675755268448,-3.26225457383779 +"Q7K2L7",-0.443046268003553,18.2740848877044,-3.07879474416835,0.00748773334180505,0.0198246654192553,-3.27115677094551 +"Q9U915",-0.144104908868471,21.1145993452909,-3.07769901329061,0.00750464206466389,0.0198379444752129,-3.27335629566727 +"Q7K2W6",-0.221079705964463,16.8465569892415,-3.0761842158301,0.00752807950051682,0.0198684123526298,-3.27639674204147 +"Q9Y114",-0.11688050919032,18.610428835204,-3.06875369941991,0.00764409421216496,0.0201427316680745,-3.29130601522346 +"A1ZB71",-0.220511095175983,19.216083660209,-3.06584945521388,0.00768991558524424,0.0202315129277404,-3.29713109134118 +"Q8WTC1",0.213137740904074,15.0733494635534,3.06296717247833,0.00773565758019324,0.020319806053169,-3.30291085036483 +"Q9VD29",-0.194318054351371,20.7202967867946,-3.05165654766077,0.00791775756434141,0.0207654396498765,-3.32557939986903 +"M9NEW0",-0.153308627720172,18.3233948402826,-3.05049472914341,0.00793669974717558,0.0207824414101866,-3.32790677416126 +"Q9VVK7",-0.184393437254307,18.1871969698188,-3.04678825642533,0.00799742798044517,0.0209086361620416,-3.33533023412012 +"Q9V4S8",-0.301145399177084,17.0968661720783,-3.04385976910044,0.00804573218800638,0.0210020051480354,-3.34119399374009 +"Q9W1X5",0.119159807730455,19.4241554633596,3.0389402630597,0.00812752361084129,0.0211823584107551,-3.35104136018982 +"Q5U1B0",-0.347451468125282,14.7139905378266,-3.03144574293959,0.00825369972271872,0.0214776460803351,-3.36603573493248 +"O96299",0.291610682449324,15.6927389107371,3.02992126234859,0.00827960005821911,0.0215114842634104,-3.36908468082209 +"Q9VGA3",0.15706236690648,19.4403160382186,3.02642293347124,0.00833933744515926,0.0216061792627237,-3.37607988813173 +"O46098",-0.178972705184336,18.0065369466164,-3.02562226345122,0.00835306907646742,0.0216061792627237,-3.37768061812411 +"O77134",-0.176236956544798,21.6840676022599,-3.02551516894373,0.00835490744871511,0.0216061792627237,-3.3778947176698 +"P32234",-0.212278467075551,16.7138791448736,-3.02396462910412,0.00838156839779558,0.0216415728909025,-3.38099429361712 +"Q9VHT5",0.182591159931308,15.6335189014043,3.01741381176203,0.00849513214141079,0.0219008970817205,-3.39408525467039 +"Q9VZ66",-0.14818846008337,17.0394247745812,-3.01385695329299,0.00855742445784427,0.0220274444377843,-3.40119023195233 +"A0A0B4KHJ9",-0.221209878418978,24.5681444522225,-3.01185317170904,0.00859271446008964,0.0220728785865465,-3.40519195346759 +"Q9V438",-0.155050158715152,18.9710396139007,-3.01063352333412,0.00861426442033517,0.0220728785865465,-3.4076273695061 +"Q9V3G7",0.216491990795788,18.1052452031936,3.00991660906534,0.00862695631366809,0.0220728785865465,-3.40905880192885 +"Q9VKZ8",0.185521980312437,18.7349348642258,3.00985726705863,0.00862800769689947,0.0220728785865465,-3.40917728378574 +"Q9VDV2",0.393639544939711,14.4313201366146,3.00901080507359,0.00864301845625685,0.0220774192726438,-3.41086726053459 +"Q9W1E8",-0.212337812546682,15.4118294219667,-3.00546571299858,0.00870616431469695,0.0222047126558326,-3.41794380634244 +"Q9VAA6",-0.286714178144825,16.1854697377216,-3.00453463245955,0.00872282380623997,0.0222132368073409,-3.41980203785819 +"Q9VGP6",0.142160158360586,17.9680198566331,3.0018369644438,0.00877126897283314,0.0223025558638501,-3.42518516918177 +"A8JNT7",0.202110111436422,16.8613206001789,2.99475477272226,0.00889971141437162,0.0225947011250713,-3.43931168299638 +"A1Z6R7",-0.156268359327413,17.9225942394132,-2.98784364537298,0.00902682867940471,0.0228812172402162,-3.45308877670108 +"Q9VPC2",-0.293981631873624,14.8166723586628,-2.98704026801577,0.00904172028384969,0.0228812172402162,-3.45468975197014 +"Q9VFP0",-0.214926307863447,16.5097803324512,-2.98639389730012,0.00905371905188411,0.0228812172402162,-3.45597776302416 +"Q9W127",-0.194989240626022,18.6144413935188,-2.96821974261784,0.0093975518845962,0.0237142459054561,-3.49216342563371 +"Q8SYQ8",-0.310434574745582,16.0031817776856,-2.96599112275072,0.00944058515441934,0.0237868520205007,-3.49659673961217 +"P53034",-0.240778831556991,15.7345446543062,-2.96447973468422,0.00946987886099775,0.023824672609569,-3.49960278977689 +"Q9VCW2",0.250658209300108,15.3914870989471,2.95007428620325,0.00975358844172572,0.02450148421807,-3.52823379953905 +"Q8SYQ4",-0.269564595237576,20.9657832459979,-2.94693252101963,0.00981656026313172,0.0246225902539906,-3.53447313105313 +"Q9W385",-0.23911500679934,16.8461705350534,-2.94265192565128,0.00990299865451515,0.0247644021794852,-3.54297120965105 +"A0A0B4KI23",-0.157891210732963,20.5256155739036,-2.94241154119712,0.00990787477115451,0.0247644021794852,-3.54344833510183 +"Q9W5W8",0.155965114105477,20.6968390638825,2.94193056386962,0.00991763828291132,0.0247644021794852,-3.544402967911 +"Q9VAC4",0.113930296402529,19.3880557439099,2.93518236609577,0.0100556181896042,0.0250714067866366,-3.55779215360375 +"A1ZBA5",0.339705673091247,15.6423531027406,2.92925833531126,0.0101782921226056,0.0253393899410539,-3.56953915742027 +"Q9VRL2",-0.686244064379007,12.0550068605055,-2.92798742788755,0.0102047998319908,0.0253675202977059,-3.57205844084001 +"Q9Y162",-0.151274701802606,20.1870384755023,-2.92569074166628,0.010252873761951,0.0254490973734142,-3.57661033020907 +"Q7JVZ8",-0.278428406352361,16.0218361622075,-2.91816252790004,0.0104120099915783,0.0258056948974037,-3.59152383143551 +"Q9VN88",-0.199664548171945,17.0264411912295,-2.91459129343274,0.0104883424059455,0.0259563132538829,-3.5985947507357 +"Q9W3X7",-0.136711035978216,21.6193069399451,-2.90014949696729,0.0108026365711671,0.0266945152603062,-3.62716411134985 +"Q7KJ08",0.2343620193933,14.5672391137075,2.89736135782199,0.0108643643601738,0.0268073369123815,-3.63267508313016 +"Q9V3F8",-0.127814080787719,18.5398325579536,-2.88910606350225,0.0110491567877686,0.027223033267353,-3.64898339839048 +"Q9VDQ3",-0.540108562747502,13.3181937038527,-2.87457119896102,0.0113819931332973,0.0280017176199703,-3.67766423923343 +"P83967",-0.549410222678652,17.523347760646,-2.87203948487206,0.0114409582917017,0.0281053290582599,-3.68265560909216 +"Q9W2M4",-0.130549574097465,22.6603679330122,-2.86115418052816,0.0116978927031802,0.0286942426895657,-3.70410160850025 +"Q9VBC9",-0.284699923363068,15.5342124343136,-2.85702413303837,0.0117968410306505,0.0288944652556903,-3.71223221318629 +"P05205",-0.172171350652803,18.0948586690439,-2.85167212711443,0.0119262782817645,0.0291627592361097,-3.72276319666518 +"Q9V3Z4",0.18423260888682,18.7840867784644,2.85105279559999,0.011941345658431,0.0291627592361097,-3.72398145441583 +"Q9V3W9",-0.123530618987505,18.5048589590713,-2.84564748729252,0.0120736373868002,0.0294427297678109,-3.73461059576115 +"Q9VF70",-0.152991316217015,15.9176633741578,-2.83831918293914,0.012255273022669,0.0298420370829371,-3.74901141036783 +"Q9VN44",-0.152056766218557,19.5035394634771,-2.82902213104435,0.0124895334547951,0.0303681367384813,-3.76726468378424 +"Q9VTB3",-0.164519002854831,19.7206045702098,-2.82370833618751,0.012625376136258,0.0306537516670719,-3.77768919515232 +"Q9VTJ4",-0.16396832770427,15.6203823626319,-2.81932082105277,0.0127386207564121,0.0308837491594409,-3.7862919733145 +"Q7K1M4",0.211362916268364,17.1820306989261,2.81850652385207,0.012759746628152,0.0308900687601705,-3.78788814153318 +"Q9Y0V3",-0.21373441488317,15.1089618577586,-2.81578964438383,0.0128304790705817,0.0310162885358411,-3.7932126724044 +"Q9VY28",0.195872637183358,15.2248863431617,2.80701252913931,0.0130615991417184,0.0314655821207255,-3.8104030485786 +"Q9VVA7",0.152182335916141,17.5142414778267,2.80659979047913,0.0130725663891026,0.0314655821207255,-3.81121100081086 +"Q9VJ80",0.207476924841254,16.4790568495054,2.80658608581815,0.0130729307012367,0.0314655821207255,-3.8112378275841 +"Q9VPU6",-0.159761515581467,15.3207114504349,-2.80378285348532,0.0131476568780412,0.0315998439086062,-3.81672426563834 +"Q94516",-0.114679721348679,23.3667950426379,-2.79595539875846,0.0133585168267649,0.0319767974664867,-3.83203483030253 +"Q9VDU7",-0.150092084092009,18.3145236214828,-2.79536097151663,0.0133746632316363,0.0319767974664867,-3.83319697897138 +"E2QCN9",-0.175799871960781,17.3742846805825,-2.7952929868834,0.0133765111022086,0.0319767974664867,-3.83332988887645 +"Q8MSS7",0.451890920297824,14.1304949571916,2.79512133456327,0.0133811778366953,0.0319767974664867,-3.83366546444389 +"Q9VSK9",-0.198502515674759,14.5095567207282,-2.79079941568552,0.0134992004776399,0.0322126844015785,-3.84211252820454 +"Q868Z9",-0.203479629309587,20.3819580333302,-2.78906159777752,0.0135469408525255,0.032248652227756,-3.84550786325881 +"Q7K084",-0.138440087584161,23.7084076043271,-2.78869374710228,0.0135570672283607,0.032248652227756,-3.84622648007348 +"Q9VVE2",-0.183294598335898,18.3704778145856,-2.78814182829628,0.0135722744987318,0.032248652227756,-3.84730462719384 +"Q9V406",-0.20529200873068,17.0144754808131,-2.78649905136417,0.013617636674547,0.0322797985045355,-3.85051330808386 +"Q9VC66",-0.13372448186977,17.7169785656308,-2.78626586370309,0.0136240876182212,0.0322797985045355,-3.85096872222896 +"Q9W0H8",-0.186404550552737,19.4070931207132,-2.77911318980173,0.0138234065010278,0.032705591551368,-3.8649318801917 +"P40796",-0.238550210793306,18.3438463845507,-2.77571543871646,0.0139190772193146,0.0328800060539912,-3.87156076013967 +"Q9VW59",0.15595609084238,19.7442824057436,2.77509736160039,0.0139365493286401,0.0328800060539912,-3.87276632132006 +"P55841",0.116969449174825,20.6453054138082,2.77345760564096,0.0139830058427502,0.0329430137651232,-3.87596424661243 +"Q9VNC1",0.377922033849451,15.5901754215958,2.77108801962016,0.0140504047095317,0.0330551129132566,-3.88058443053309 +"Q9VXG4",-0.157571751702243,19.9377508678898,-2.758628820117,0.014409996980554,0.0338533450191043,-3.90485588093301 +"Q9VXE0",0.178968162107743,18.0267429344945,2.744465059974,0.0148296134591228,0.0347901480306848,-3.93240392169291 +"Q9VPX6",0.334822989343305,21.4945080024137,2.74313669935183,0.0148695686861016,0.0348018456299595,-3.93498510881923 +"Q9VZG0",0.135036184951627,21.6782828443375,2.742912302752,0.0148763284976985,0.0348018456299595,-3.93542110082608 +"Q9V3E7",-0.168876514986849,18.7248322606082,-2.74159672085065,0.0149160194610762,0.0348458269762957,-3.93797697336253 +"Q9VMH9",0.132519179668879,20.0555466315492,2.73885688389855,0.0149990091777538,0.0349906955363544,-3.94329852113147 +"Q9VC48",0.153663825990659,18.4413668388676,2.7334135325184,0.0151652155596139,0.0353290217226759,-3.95386573892637 +"Q7KUC2",-0.179507307064235,19.3365425267574,-2.72755841957384,0.0153459825885003,0.0357002774862184,-3.96522435332335 +"Q9VII1",-0.34340912947356,19.3167901809795,-2.72428030856597,0.0154480966542479,0.0358877788569435,-3.97158009483311 +"Q9VBU0",0.26464571334871,14.2173254081894,2.72311452106085,0.0154845693202571,0.0359224779223767,-3.97383974385829 +"Q9VH72",-0.496605713557635,18.6242919449318,-2.72222479062764,0.0155124612833578,0.0359372019731123,-3.97556408801455 +"Q9VSL2",-0.168480652332388,20.4508778576293,-2.71835955719299,0.0156341962389119,0.0361447093551176,-3.98305286933112 +"Q9VER6",-0.264520356803734,14.9685891280351,-2.71800617826168,0.0156453717952008,0.0361447093551176,-3.98373734875448 +"Q9W2X6",-0.132961347499883,24.1076171080887,-2.71647941041863,0.0156937443693996,0.0362063148107309,-3.98669427890419 +"Q9W1F2",0.373494497612857,13.6532569826164,2.71329615026988,0.0157950646522821,0.0363897345856443,-3.99285753811586 +"Q9VFB2",0.200898586833068,16.445284471854,2.70891063438377,0.0159356869678834,0.0366630701550753,-4.00134444889529 +"Q9VND8",0.551626916646022,18.4846076302531,2.70584434655139,0.0160347253245502,0.0368126032620306,-4.00727554255101 +"Q9V6Y3",0.223077103674843,15.2553607609896,2.70553278478495,0.0160448216855493,0.0368126032620306,-4.00787806305187 +"Q9W337",-0.20606985886517,17.7708074192759,-2.69909217840493,0.0162549135784298,0.0372434008912376,-4.02032794844243 +"Q8SX57",-0.109162978760871,17.9555109364819,-2.69818084262896,0.0162848548366589,0.037260820120092,-4.02208875006393 +"Q9VMX4",-0.234232563011275,17.297219454768,-2.69428462256339,0.016413463433786,0.0374555333621706,-4.02961432609911 +"Q7JVI6",0.190451040937365,17.4824302335223,2.69424232310267,0.0164148650406155,0.0374555333621706,-4.02969600683717 +"Q8MLW4",-0.137920804320508,18.635221853657,-2.68832375373482,0.01661212126566,0.0378538500971596,-4.04112037491309 +"Q9V9T9",0.279943921441765,13.4340972676549,2.68642572324811,0.0166758622309172,0.0379472553904091,-4.04478218433369 +"Q9NBD7",0.396081542735187,13.228534542692,2.68282001746826,0.016797601674999,0.0381722065311966,-4.05173603134704 +"Q9VGE7",-0.309486361446067,13.8927937472339,-2.67885364722854,0.0169325078308338,0.0384264259344636,-4.05938160765924 +"Q9VVJ7",-0.134829892357807,18.1678271516263,-2.67585008515339,0.0170353606779649,0.0386073119712573,-4.06516858956125 +"Q95083",0.134448551675018,19.8974979266263,2.67242072571811,0.0171535305130992,0.0388223729930114,-4.07177311692709 +"Q9W1X4",0.262777214724679,15.125253145146,2.67033544965736,0.0172257712434297,0.0389330439485647,-4.07578761811797 +"Q9VNI4",-0.203152216286282,16.4984440059768,-2.66868056787562,0.0172833102155851,0.0390102319886277,-4.07897273724435 +"Q9W0B3",-0.15025237013948,19.1545993789373,-2.6666981896278,0.0173524797125077,0.0391134272438688,-4.08278724627457 +"Q9VF39",-0.311707659402554,15.9648201462142,-2.66401637928021,0.0174464783343677,0.0392722346312083,-4.08794598036318 +"Q9V9X4",-0.151680178121691,18.7115250762711,-2.6578918688468,0.0176629870050754,0.0397060139143744,-4.09972004783956 +"Q9VQQ0",-0.232399038805898,18.2870671730229,-2.65605584762872,0.0177283948595722,0.039799411340197,-4.1032477894818 +"M9PHA0",-0.188936909703898,17.4248557463611,-2.65119868868869,0.0179025560587906,0.0401363756801918,-4.11257607510845 +"Q9VIE7",-0.166611062029189,14.9888306814096,-2.64472557502715,0.0181372202168601,0.0406078970761378,-4.12499811839079 +"Q9VRJ5",-0.169604577648499,17.2541909236008,-2.64364652289429,0.0181766247558857,0.0406415684890314,-4.12706775729916 +"Q9VAY2",-0.0901811376347865,21.1246455608706,-2.64042410902637,0.0182947906426632,0.0408510184631355,-4.1332465443046 +"A8WH76",0.158127249786993,19.0424009076152,2.6396689726679,0.0183225881240142,0.040858391699005,-4.13469407100993 +"Q9W425",-0.353361442707396,13.9835143410396,-2.63786251817707,0.0183892507525817,0.0409522967360564,-4.1381562562993 +"Q9VRY5",-0.15199491273022,16.8544426206636,-2.63204875876618,0.0186053790544882,0.0413312814805138,-4.14929273063498 +"Q4QQ70",-0.188510155468634,16.115768978045,-2.63195222513326,0.0186089882445239,0.0413312814805138,-4.14947756736917 +"A1ZB73",-0.695445019731022,13.6051833357404,-2.62562896004907,0.0188468727149705,0.0418039676709717,-4.16157946289888 +"Q9VNA5",0.180747831279184,17.3303088323977,2.62046365082941,0.0190433593317931,0.0421836963684342,-4.17145709653304 +"P61851",-0.182335878149416,23.5429922609122,-2.61856644504151,0.0191160211544144,0.0422456314057217,-4.17508329272492 +"Q9VRL0",-0.146590836953049,22.7535442311755,-2.61841133717249,0.0191219734480335,0.0422456314057217,-4.17537971213787 +"Q9VZZ5",-0.161935425429661,18.4644267642961,-2.6172966596491,0.0191648017813541,0.0422842452001305,-4.17750972575049 +"Q7KSE4",-0.206220482220322,13.8253876470276,-2.61556405896198,0.0192315549338683,0.0423754737512448,-4.18081983659201 +"Q7K1U0",-0.174588951912721,16.6799340674343,-2.61190268467798,0.0193733542544344,0.0426316027656946,-4.18781211908703 +"P11046",0.1718431166369,21.0207360267321,2.61020225568593,0.0194395499288891,0.0427209081441199,-4.19105823949942 +"Q9VP57",0.211827375350218,19.4973851060016,2.60720333015601,0.0195568237877539,0.042922081681544,-4.19678123525922 +"Q9W140",-0.484174257011974,13.8474778106003,-2.59405437646993,0.0200790762230402,0.0440103799474785,-4.22184436546865 +"Q8SXF2",-0.180335213566943,15.5335314436397,-2.59181488343661,0.0201693470832293,0.0441502243239192,-4.22610820124806 +"Q95NU8",-0.176076920569926,17.3584655420832,-2.58717769216511,0.020357503893332,0.0445036913421728,-4.23493256679381 +"Q24185",-0.14564068547428,18.6972885274964,-2.58598761926563,0.0204060623392367,0.0445514554736214,-4.23719623644581 +"Q7KND8",-0.1694988847081,15.4398112725021,-2.57151397569378,0.0210055795400061,0.0458004008793859,-4.26469449249626 +"Q7JVH6",0.114574893313989,18.9829639038314,2.57063938708943,0.0210423412571651,0.0458206595521558,-4.2663541772206 +"Q9VW57",0.141640134423538,16.5655543775563,2.56827735156304,0.0211419330019379,0.0459775022780084,-4.27083544452899 +"Q9VWD0",-0.150419973662807,18.1799227860545,-2.56687951428253,0.0212010830253517,0.0460461021956858,-4.27348666649323 +"Q8IMT6",0.259207558456596,16.1119769029607,2.56028346373343,0.0214823400814556,0.0465962851181638,-4.28598944871396 +"Q9VGV9",-0.203312627861111,16.0676258470841,-2.55684061460607,0.0216305578242025,0.0468568447412594,-4.29251029623916 +"Q7K0X9",-0.178191847570341,16.6692793365383,-2.54080539423246,0.0223338618635653,0.0483176155491918,-4.32283530620705 +"P21914",-0.106605827868457,22.9103826885991,-2.53953491302275,0.022390509471119,0.0483774220179099,-4.3252347061921 +"Q9VRP2",0.111918089239047,20.4374755847437,2.53528966431143,0.0225807914257933,0.048725433503523,-4.33324866986108 +"Q9VXI6",-0.121866146619109,22.0244918135563,-2.52997027865026,0.0228213983339926,0.049180997960077,-4.3432826785119 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant_ms3fix.csv new file mode 100644 index 0000000..9a0bb22 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant_ms3fix.csv @@ -0,0 +1,6 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P10676",-1.06222841949458,19.6680274835087,-13.1533467528725,9.33593648284042e-10,1.73026022815309e-07,12.7891763103134 +"Q9VV31",-1.30560764476998,15.6252071715139,-11.6710772714636,4.98490671299831e-09,4.15741219864059e-07,11.1217929935063 +"Q9V4E7",1.30292940665368,15.4662884541501,9.42636235227059,9.00532362959654e-08,3.06548567636062e-06,8.20304755047199 +"P19334",-1.02046554310178,15.1882842984039,-6.81963203501991,5.17764844579119e-06,6.74712313092165e-05,4.07177628120859 +"Q8IN43",-1.11392451857729,17.8871994134707,-6.28281689887099,1.33047687420568e-05,0.000133688881094884,3.10739816938139 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_significant_counts_summary_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_significant_counts_summary_ms3fix.csv new file mode 100644 index 0000000..0b281c8 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/Limma_significant_counts_summary_ms3fix.csv @@ -0,0 +1,4 @@ +"contrast","n_tested","n_significant_fdr05","n_significant_fdr05_abslogFC1" +"SF1g_vs_Earth",1668,475,0 +"SFug_vs_Earth",1668,774,5 +"SF1g_vs_SFug",1668,150,2 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix.csv new file mode 100644 index 0000000..0101461 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix.csv @@ -0,0 +1,1669 @@ +"protein_id","Earth_F1","Earth_F2","Earth_F3","Earth_M1","Earth_M2","Earth_M3","SF1g_F1","SF1g_F2","SF1g_F3","SF1g_M1","SF1g_M2","SF1g_M3","SFug_F1","SFug_F2","SFug_F3","SFug_M1","SFug_M2","SFug_M3" +"A0A0B4K692",14.037240032759,15.7357971900809,17.6543359435988,13.6845027703483,15.8541494341468,17.7246162493948,14.1648261078672,15.8914914541735,17.7610926408992,14.0019483374587,15.8318911140651,17.7320414094911,14.165156617914,16.2146920328162,18.1769758288545,14.4063193910513,16.0923618156888,18.0036278914135 +"A0A0B4K7J2",15.3587116180192,15.6242096694441,16.9290431793959,14.989064187701,15.0460005630306,16.3559631874593,15.146988885336,15.162065305391,16.4674292690608,15.2290527346252,15.1170431520127,16.4318273477707,15.3344314177887,15.4545266848476,16.6662716422739,15.5599169637275,15.7481216162736,16.6731970202038 +"A0A0B4KGY6",20.5248901575634,21.3030869673414,22.8405182590124,20.8814231363393,21.542147860102,23.0844756912557,20.696147394954,21.3616046067982,23.018715292184,20.8478269932793,21.6380689735768,23.4279075372386,20.686338148939,21.3966016978775,22.8390881834122,20.8627875483588,21.6680733223335,23.2421191438671 +"A0A0B4KH34",22.5883610773756,23.7028767501254,24.0327121001698,22.4095172871074,23.6291182732395,24.0760804727598,22.5970213996363,23.7552379956835,23.88035100258,22.4743277862582,23.6297791185023,24.0955433285592,22.5372990059315,23.6380702894803,23.9625243559701,22.5028474446146,23.4706260088979,23.8775961744023 +"A0A0B4KHJ9",23.4968763033741,24.6525773907681,26.3301811924082,23.3140016677722,24.4092018368997,25.8819735318955,23.3796198764758,24.4250505896035,26.2788794819623,23.0661519962765,24.2191971694065,26.0153364505586,23.2500050243595,24.4019767353723,25.8710357558452,23.1975456787903,24.4122932930296,25.6246961652071 +"A0A0B4KI23",20.0036525723621,20.7138764969923,21.3954092959766,19.9185205306108,20.5980337948025,21.2371681586035,19.8154594799554,20.3784754762538,21.3224631254833,19.5749979936243,20.4471844591571,21.1365253614935,19.9831411574068,20.4759649017843,21.2516331143663,19.709332139293,20.4895179140763,21.0097243580233 +"A0A0B4LFA6",18.7137592574966,18.8236827556091,20.5692841430042,19.0881863387764,18.9663779697446,20.5202979826025,18.8890338830905,18.9291705123159,20.6962507647064,19.1093793956455,19.1066405297894,20.7095388203951,18.9492987250953,19.0144330989846,20.6969753942835,18.9689121397638,19.1456627286893,20.6484775125497 +"A0A0B7P9G0",14.5928202575015,12.4577101736729,15.9032729739396,14.2078452697683,12.6252317721446,15.8942016515332,14.6405827368957,12.8808621921004,15.7309379546453,14.6737655281844,12.8829315986479,16.0401341602005,15.1160316745909,13.5757005911733,16.4320948096328,14.9381441901571,13.7010843957103,16.473676992848 +"A0A126GUP6",16.1259169690665,17.3902934054597,18.1643908133209,16.0223950101516,17.2864289805526,17.9862360820398,15.9618717410184,17.2711610048282,18.0336028961272,15.8242349246042,17.1030939835971,17.8496304771478,15.2593731542736,17.0499928831809,17.6481121933974,16.0167001878307,17.2427098928545,17.7699353759704 +"A0A6H2EG56",19.9569217534871,20.5680580802085,22.4814377595333,19.9355489258234,20.6183870440023,22.1307620751317,19.9135764120341,20.50848396884,22.4262634659875,19.7502300917762,20.666025458142,22.2714382275695,19.6996297617628,20.6032276260265,22.0870292855573,20.1014597862797,20.7219081693161,21.9703570528223 +"A0A6H2EGA2",13.4765011388525,16.5556902493391,17.4812285890482,13.5180305480337,16.588571714877,17.5456479704549,13.5029153064511,16.3375859431499,17.4870607897443,13.4202911377221,16.6181062610495,17.779793831187,13.6772094027883,16.2753554613313,17.3431286674074,13.4315229464336,16.520354849318,17.3410954400448 +"A0AQH0",16.4560863425252,16.703312199031,17.3145394335605,16.2884827736285,16.7262636193522,17.2101999606723,16.3790294477212,16.8753042261283,17.4941113988942,16.6277893928358,17.0137391061263,17.5138130052355,16.3510426785485,16.9043675586808,17.6382919133881,15.8784860589703,17.0260717095491,17.7423098823376 +"A1Z6G9",13.5699644284857,14.6316653943782,14.2163233107023,13.6538931598653,14.4223851060239,14.5831850615972,13.7531565352411,14.5628461661978,14.4019719141467,14.2351046549447,14.5140445463424,14.8138551984468,13.922782968704,14.3890031884993,14.1976217673669,14.042855031992,14.2871673756081,14.350861952376 +"A1Z6L9",14.0764359961172,15.3690132464974,15.7317566358339,13.9231297971341,15.2773741447054,15.6300426923757,14.3421534431656,15.7693880047708,16.1354060946877,14.2694656409644,15.5403569070369,16.1063891487859,14.4158551626273,15.9323280380691,16.6094340317063,13.962760226545,15.3777789718309,16.2486574548531 +"A1Z6P3",16.327815022086,16.9776463484285,18.5956729917104,16.4379082037887,17.0339695892703,18.7348688679204,16.240302324189,16.7647036088622,18.3440450114017,16.2476481685412,16.9230893248356,18.655990558708,16.2080471077523,16.8044637229285,18.2655216470917,16.2907115654358,16.9058231508789,18.3450288227904 +"A1Z6R7",15.9221504514777,18.6892651122114,19.1324886819612,16.0679638256346,18.9701574873726,19.4632389085206,15.6243486041131,18.6398005544791,18.8198925087113,16.0524844525748,18.7606310684723,19.1566203426953,15.6714644619104,18.7070107195291,18.8843201152521,15.9048205006851,18.852712686642,19.287325827195 +"A1Z6S7",17.2777121896655,17.7130946130703,17.7610234393646,17.1128523420963,17.7609867688623,17.8099828721427,17.1357512961651,17.7225049987021,17.6487527201087,17.1637774705895,17.8311721433763,17.9376610726866,17.0040832558696,17.7874031999273,17.7014680532753,17.0528372454943,17.9113894827926,17.8118176688893 +"A1Z6V5",19.0597059463171,20.4577946442679,20.6635396311239,19.2780262113391,20.7000690321336,20.9500750243643,19.0598935045914,20.5131644520298,20.5331000449224,19.0863319039288,20.4777770529629,20.6744342503816,18.634428956894,20.2222448059705,20.3105222004377,19.0604076550468,20.5331020212567,20.6928911908302 +"A1Z6X6",18.2249835560681,18.7284788853504,19.1815243436642,18.0357423748362,18.5006635056739,18.9849757670863,18.0769413974575,18.7314007110413,19.0123618739766,18.1496767122777,18.385625448142,19.1635346737752,18.1389244564748,18.734637860318,18.8230302427174,17.9064508607982,18.5922132387361,18.8535158128923 +"A1Z729",15.1921907772887,17.0618967588039,17.847510140223,14.8489998248187,16.9535111576707,18.0637954663945,15.2152120880368,17.1490595647835,17.890337251231,15.07125601028,17.0732499085776,17.9070544107281,14.959613554738,17.2452779264659,18.0012998759559,15.19606786676,16.9115799782501,17.8524825952867 +"A1Z7B8",15.1945612620401,16.8118310794276,18.116033924864,15.2805493225516,17.0603242538398,18.1147848976364,15.4297496996371,17.2036049491291,18.2489343852175,15.5343095543886,17.1830063008825,18.1946144716818,15.4932931386511,17.4444642008959,18.3432958629968,16.0751265310283,17.5008343917623,18.4410639225618 +"A1Z7G2",17.8572624128023,19.1038185392217,21.4641823113576,17.9993968819145,19.2702736332901,21.4076937133554,17.96570097553,19.0925026790431,21.5318323920608,17.9154331066477,19.3507756701826,21.6055369167538,17.8872316180588,19.0221503021602,21.5097322297172,18.0217255781357,19.5065034698384,21.5265314707928 +"A1Z7H7",17.108946184006,17.8827925020272,18.4298540799601,17.0372937015171,17.9003830759532,18.4299816932408,17.2593144434671,18.0698189767311,18.5882362254771,17.0881589309811,17.9803208849507,18.5378746329615,17.0094085429117,17.9775805827658,18.3556417423522,17.2614517945817,18.0924742687029,18.6216245953724 +"A1Z7H8",14.5826587120733,15.1920608953389,15.1485901776769,14.1899677764587,14.9439595507555,14.5509496103357,14.5036172873459,14.9340211074574,14.7329426509491,14.4804481519245,14.9102667477932,14.6375210591355,13.9521296853656,15.0796418190846,14.5997201394368,14.1952563709686,15.0431415834452,14.678365851 +"A1Z7K6",14.9741243946813,16.0430411598156,15.6677907860765,15.0076006269126,16.3629984562714,15.4274261061469,15.0853980410543,16.1180498243544,15.5915532020391,15.0725198296736,16.3700804338652,15.569462211913,15.1673035809736,16.0265070183401,15.2689462341245,15.1514705753026,16.0719445108496,15.4609431256699 +"A1Z7K8",16.6147118575973,18.1174998797055,18.6139202722665,16.3976504408354,18.050646985053,18.4865481060458,16.4236896260187,17.9390339483366,18.4982432462149,16.4607441106235,18.0492354486461,18.5173389811449,16.2547248985924,17.9129669891143,18.3578235424157,16.1598821464533,17.9707790116475,18.1832394022634 +"A1Z7P1",11.2310979752152,15.4034622164991,17.0776781642906,11.5216713069878,15.1537811483383,16.9454414954004,11.868628291717,14.9132798785894,17.0623434588212,11.3313926983586,15.0424530564162,17.2009404348176,12.138160900802,14.9790196387649,17.1536046895558,12.3294415109763,14.6463789977696,17.1034713293662 +"A1Z7S3",19.0034976916024,20.4531373652627,20.6898218637681,18.8688270118014,20.4316261763359,20.7497850443838,18.9494041795116,20.4179660737524,20.4948111241392,18.8474540947125,20.4184281113873,20.5997180215715,18.9353562999248,20.5814370076418,20.7953401863384,19.081253190777,20.5479752459735,20.841057004347 +"A1Z7X8",16.6393722100755,16.7004347450612,16.8868259632061,16.8319002474429,16.776777750769,17.1964207830119,16.9630563580075,16.9085208854377,17.1415421946056,17.0958521018676,16.9433417069984,17.4046150703487,17.1117652253516,16.918793139476,17.3539825158039,17.3048717401179,17.083661053006,17.2840847949661 +"A1Z803",17.8277167660265,18.8294802064259,18.6078754713936,17.940309726905,19.0510329700835,18.5797969069716,18.4016481311947,19.4940079628799,19.1017438902999,18.2417314239631,19.5005800422163,19.113363598482,18.4600613505663,19.6687703798594,19.2905687698946,18.3245707379173,19.6561338292193,19.2138810136972 +"A1Z843",16.4193026654492,17.5728705655592,18.3217689216565,16.5395614917206,17.4164713911488,18.2791857086982,16.6903266540435,17.5699131363226,18.3830543642392,16.5482298175752,17.61543620904,18.5077667400026,16.9457724045111,17.814186848023,18.7935538309685,16.7812346600391,17.6765419952212,18.7088781779545 +"A1Z847",19.3832085857714,19.9453914348949,21.2238002713893,19.5564729876104,20.2252623376241,21.3367869179449,19.0924518794811,19.6709819340046,20.9147980414638,19.2817682809026,19.8746773790414,20.9880467272769,19.0006077212546,19.7540548606919,20.9090014490879,19.5139117281848,19.7706336123489,20.9729966357088 +"A1Z877",19.1539165171895,19.3835404601929,21.1222495656321,19.2247982365102,19.4438383444227,21.0498702796423,19.2711081627496,19.483371689193,21.1622100088242,19.2117099071964,19.406296873113,21.1223022229633,19.1792831632933,19.7199835052681,21.282584437972,19.4283707133709,19.589315973923,21.35818899995 +"A1Z8D0",10.5787734367458,15.5822563068711,16.3811967706391,9.06581080792838,15.526498091396,16.0228304365979,10.5814572848925,15.7661438921611,16.215661316893,9.31442654672228,15.3293724819996,15.9711961503807,9.20246148705085,15.741982451658,16.159481429709,9.61800226507392,15.251322876004,16.1690547283129 +"A1Z8D3",13.4222460083606,17.5161152917894,18.3988806576279,13.8092595587986,17.4357103064754,18.8846019674125,13.9041202329517,16.8611600022091,18.6000137950496,13.9055060990647,17.4356831379051,19.4120147610255,14.0805140771888,16.9587934699464,19.0406516631675,14.0113191804107,16.9535418107722,19.0766388229206 +"A1Z8H1",22.1010988378633,23.0011392195032,24.5577936341808,21.9926670017743,22.8829000150914,24.4647879109827,22.0319986924032,22.8858656050334,24.491753249242,21.7906333535896,22.7520258741184,24.2395378238075,22.0566085962628,23.1856774361987,24.5032485076627,22.0514950662759,22.747932720302,24.3539944015012 +"A1Z8H6",16.3472514327107,16.9853155681758,18.6381602999047,15.7021570165344,16.724818221492,18.2460211610976,15.4936273369762,16.3788820943044,17.9435894657686,15.8125373755325,16.5783264965717,17.947580475785,15.8523599264615,16.3777959713973,17.7455118098915,15.5591937734925,15.9119124986148,17.7274649775115 +"A1Z8Y3",15.0209181777654,15.0336278538899,15.4061555009102,15.1777498816982,15.2336009566491,15.3194006623191,15.0199814494975,14.8152585938492,15.3689623209933,15.1843853366428,14.8604367982547,15.2572304692694,14.6799156302118,14.8509376105678,14.8765223455134,14.9823205631421,14.6942834930323,14.9907535406278 +"A1Z8Z3",19.158047915647,19.8688986950681,21.3939178864488,19.1544641489838,19.8523260923968,21.3019034945534,19.0015611625169,19.5157779131442,21.1102722789672,18.7681295124783,19.5244640408406,20.9285157897331,18.9208633893172,19.8912696521173,20.9987921255734,19.2972077159965,19.8329499267279,21.0608047437439 +"A1Z8Z7",18.9884193100573,18.4907577415898,18.6022460692359,19.1707291432908,18.6943094278975,18.7377519976662,19.1093392769431,18.6673124923318,18.9334489420477,19.1235250712421,19.0452623330224,19.2336129555928,18.9003780471869,18.6047769892866,18.6374984893016,19.1926206833031,18.9514209725609,18.9379549428847 +"A1Z933",14.0163230337882,15.5559936060066,18.2412452908685,13.5889635000562,15.7900836746363,18.0467479247354,13.5478469017777,15.3576709587761,18.0123645770312,13.6940691508641,15.5470847044423,18.059028278941,13.4804259049807,15.5579432117611,17.6691786860598,14.0842844006284,15.7750231678589,18.0478234050547 +"A1Z934",17.8971058042169,19.439748751797,20.3944864536497,18.0074119643652,19.7442629300024,20.4794475944521,17.9937023778176,19.5389948142467,20.3265373715126,17.956232779062,19.6226618752785,20.3036507980945,17.9768956975876,19.6670454498778,20.2983738030678,17.8593494710747,19.5318891436939,20.3103920940769 +"A1Z968",16.7720275111103,16.9960319146529,18.1474295504951,16.7396337437155,16.8987365104219,18.1729423175203,16.8421372337331,16.9070815997759,18.0001987908191,16.754640108576,16.9152104422215,18.0495365476605,16.578218100123,16.795949860994,17.9721397140235,16.4739501163713,16.7797620377075,17.6263468058021 +"A1Z992",15.2596294477578,14.6643251552759,14.2460860291815,14.9351185274835,14.0503518207228,13.6925168478738,14.9150150797595,14.5063988997806,13.7782060236709,14.6351517830893,14.0745099355016,13.164706252225,14.264415347494,14.2033693153366,13.6653214801865,14.4961614248848,13.889798927627,13.2733530954623 +"A1Z9A8",15.4131407384272,16.496337477631,16.9559428198305,15.5597089260416,16.6793163028583,17.1147848725558,16.1738480800267,17.0501120605013,17.4756858326901,15.7749944274188,17.0902339303711,17.4971191158638,16.1512570804119,17.1400173518213,17.4199161446459,16.1110107263114,17.0333349534126,17.4997393903795 +"A1Z9B5",15.8663743012269,15.8163172302267,16.0936036807187,16.1086199995983,15.9963970848471,16.5503327415385,15.2999043917696,15.405777699863,15.7307208529694,15.6049684127846,15.7161628065737,16.305307355829,14.5154489908293,15.3684712574378,15.7308376030483,15.6853429943152,16.2085134890186,16.1169306790778 +"A1Z9E3",21.4240831040894,21.4411515195094,22.7024832967374,21.3974556403614,21.3769880551812,22.5933843354779,21.3992025288364,21.3876280150798,22.4702402562886,21.2038253117779,21.3073587668245,22.5786552160323,21.3532716287323,21.4495896122657,22.6067731275995,21.3963079948772,21.5428406797891,22.6693596441812 +"A1Z9I0",18.4536726353969,19.4812356217125,20.8635233795465,18.2725485281769,19.2614383653642,20.6973033671679,18.1590147664633,19.4123315961928,20.8074048355765,18.067186470853,19.2387868163574,20.598011473194,18.1594388672008,19.4493579761298,20.5897488883142,18.0017140692978,19.2243411884925,20.4744185312755 +"A1Z9J3",17.0459634902251,18.326829212969,18.439101151567,16.5003242383972,17.9561833584094,17.9924338093544,17.0665340243843,18.1208942400078,18.4009971321013,16.6661803063905,17.9664935586581,18.1028240880848,16.8179276790595,17.9790371470004,18.2750560874357,16.4848879567738,17.5384883001736,17.9497590379835 +"A1Z9M5",15.3318104927115,14.0402311861944,16.4485521723853,14.9079623523012,13.9431001283145,15.5684543516202,15.5179403152864,14.0485996015164,16.0632405371328,15.159899943394,14.0443278986426,16.1016021063684,15.0526780439129,13.9502904579356,15.8420012464355,15.1374530674163,14.2752153593889,15.8158857044856 +"A1ZA22",12.3434732164546,13.9936906225864,13.5520652662863,12.3392417808545,13.6202804255198,13.2197439283336,12.661761080962,14.116625158198,14.265973063836,13.0348222296037,14.2786570629365,14.2548077682136,12.6482317298073,14.0550318756175,14.2433762364166,13.7405363750504,14.6613254912234,13.727134024565 +"A1ZA23",17.4634043755078,18.1265344788909,19.3298517492922,17.7188262456455,18.4266205848685,19.573829166385,17.5237875631488,18.1860013477923,19.4565859448477,17.687598964884,18.551486244646,19.7223262381868,17.284707957881,18.0454006144436,19.0912948577745,17.4306335675235,18.2992941001504,19.333294372819 +"A1ZA83",15.6790213247074,16.914873130073,18.405216943784,15.7829329456723,16.9379987059357,18.486700508939,15.7827996126093,16.918940984297,18.225092132322,15.8603449356478,16.9000760921591,18.6004624684007,15.8430843249939,16.8933611256078,18.4187042542265,16.0247250039923,16.751954899477,18.5277666003309 +"A1ZAA9",16.7514733981429,15.7264019933201,16.8671352601997,16.8724796518734,15.7691232165355,17.1102445151366,16.7816113897345,15.8107757465635,16.6602712423174,16.9264502189126,15.7689366826232,17.0063388045775,16.9812587265976,16.0034636241371,17.2043948906213,16.962566954215,16.0568219598877,17.1831664336778 +"A1ZAL1",15.9404264840264,18.041907242395,18.0119785930435,16.0812877369276,18.3991155257727,18.0498214762864,15.5046059593378,17.7798779851209,17.7342788553071,15.6480057424187,18.1216745681624,17.8034704155925,15.6776766646311,17.9702959327831,17.7688861658844,15.5304035038133,18.4832615912268,17.9073132753442 +"A1ZB23",16.8568264669892,16.4148128108281,14.8366764694408,16.7936536769038,16.6286026436776,14.6547380041931,16.4195876967976,16.1844309308745,14.6715480742694,16.5793020673838,16.3449715527077,14.4175172733848,15.8502788727587,16.5041506757921,14.7313521663276,16.6118540611131,16.7661652460478,14.3454697691502 +"A1ZB68",18.4415210954078,19.7364271613102,20.070837379016,18.3266678498652,19.8720589438564,20.276843782923,18.0839493309887,19.6601645221884,19.8923677085051,18.2743401252608,19.7881849955591,20.113191597335,18.3277041379776,19.6738077706672,20.0580687597939,18.0616167506006,19.4600912226099,19.7761484942038 +"A1ZB69",19.4071756393768,19.6714227126288,22.6759848263411,19.0882750322242,19.571942249805,22.680299784189,19.2996622237011,19.8328800418658,22.565432688651,19.0531135707743,19.4555133732465,22.4419954728386,19.1442250094824,19.7275525774166,22.5099834638255,18.9704303189294,19.371002218876,22.0617916147047 +"A1ZB70",13.1742130237324,17.1599024506847,18.6928962961871,13.1321292029595,17.3629231762633,18.7875190665351,12.925873930863,16.9017792500264,18.4863188907838,12.9652061175671,16.9266736150879,18.4895626565815,12.5844834871988,16.8285856475281,18.1882004819464,12.6405458450023,16.5310170487714,18.0946260694106 +"A1ZB71",17.5077070137741,19.7016391029618,20.9545954368124,17.2935098221332,19.7498473558266,21.0658707717524,17.3804902588712,19.4970444686595,20.5580992794358,17.141098111288,19.3595817758956,20.7299195541462,17.3443573625162,19.5823714362927,20.8036044491817,17.3931151855909,19.3663905928099,20.4602639058132 +"A1ZB73",11.8369933261286,15.9706151069939,14.5835813191469,10.5118255253012,15.92061491339,14.4442870109406,11.5698711526112,15.6729872350483,14.061951571539,11.3496417420526,15.7304129656584,14.1452710910021,11.0609492013113,15.8500777749369,14.0250052755761,9.03365387934758,15.4644212793514,13.6611396729918 +"A1ZB79",20.0452626322503,20.3548871391802,22.1716218858281,20.039575028486,20.5372322030842,22.2491698173609,19.912355494055,20.2639552290855,22.0261088268681,19.8320107054647,20.3618339820774,22.0247688167223,19.891137757227,20.4044371249557,21.9261478539962,19.9814070224328,20.2561827893937,21.8334284538928 +"A1ZBA5",14.5401512556609,15.0290035494454,16.6939179742268,14.6645542457015,15.1955756369341,16.5437778684471,14.7658657457824,15.5869541505582,16.5913414673064,14.9131947871292,15.4484931704408,16.8843114287353,14.8421835306998,15.7339009402424,16.402474061946,15.4338331543442,15.7258909022537,16.5669319794773 +"A1ZBD8",11.3209556576026,14.2126726636143,16.2578105017325,11.2559497771196,14.2478687672791,16.5021770753478,11.7614594480682,14.185650806062,16.4116805875177,12.2536530592615,14.7334099670202,16.7593997210632,11.8648878323488,13.8204156568972,15.971274624732,12.0774465368379,14.5436616026094,16.531644429355 +"A1ZBJ2",17.9051125835532,19.4508171054886,20.4981196156444,17.7046865724278,19.3617698618723,20.2283980353396,17.9700998660865,19.7158877487153,20.5628889215306,17.6941187760456,19.3449987063172,20.2980827696926,18.3669727444398,20.3340339053716,21.366210346772,17.9796618573581,19.6459451565217,20.5343842647741 +"A1ZBK7",17.739381054219,16.950870048155,18.6059607836878,17.7782406241667,16.7563782080119,18.2809323595022,17.5690113878105,16.5626649967306,18.4632720964584,17.6508798059841,16.8639373404384,18.1375498339388,17.5361381980514,16.606009300426,18.3439100504494,17.8245777555683,16.5024032291563,18.3155705588682 +"A1ZBM2",17.3362958760143,18.5857614738153,19.5828984707542,17.499269554776,18.7693024970714,19.5858330254674,17.401254299978,18.7969647328709,19.395351201452,17.4202743252966,19.1291368794947,19.5134594168573,17.2482753088141,18.8698254468995,19.3015205432994,17.569042807756,19.0750816076958,19.4511324579417 +"A1ZBU5",16.7884689618155,17.2863553873104,16.6979927349549,16.8176911378535,17.3953734632059,16.4457351415987,16.3387060450012,17.156997393596,16.6342424779968,16.1906275132583,17.0768879058732,16.3304698461461,16.3435895988559,16.9139311909431,16.3170546142245,16.1382234201825,17.0323688924223,16.2109465238876 +"A1ZBU8",20.1460090622682,20.8400349420261,22.0420550695753,20.0663684671184,20.593380218004,21.7623197184592,20.1681439957724,20.7024848690639,22.1353813273329,19.5717292345434,20.3668387517381,21.5855367493547,20.0831728576108,20.6481798306437,21.8439216953767,19.8597917699501,20.2640194222007,21.372572642007 +"A8DRW0",20.7576006509019,21.2962232896295,23.2719742183887,20.5067298262783,21.1671426419403,22.818693496877,20.3949437344898,21.0072317058587,22.906702885357,20.33335978036,21.0881538878543,22.6946706190219,20.3743522775422,21.2791017529528,22.9264752375224,20.6687351993153,21.3476317708236,22.8544501907552 +"A8DYK6",15.2879618954036,17.1545315769912,17.0061395162843,15.3155803172778,17.2956371330336,17.1822972973457,15.3797176859165,17.2654279625961,16.8023547776361,15.4054536833823,17.9157771556929,17.2092314504721,15.3600942022919,17.2320627065732,17.0096125755934,15.5365987079913,17.3846869453718,17.0726683991814 +"A8DYP0",15.522649501512,16.1330351306016,15.8667857977434,14.7172231744476,15.7283409699323,15.479990121261,15.26091125487,15.4630660883264,15.0839122689458,14.5269149187324,15.6686160740345,15.181261488395,14.980058269537,15.6586145920735,15.3487460400067,14.2245478323934,15.1691972576086,14.5859805878781 +"A8DZ14",17.8787433045231,19.3899546283295,21.0447074009615,17.939364199589,19.509215673858,21.1000908145097,17.7884595737512,19.4958038745846,21.0635934902739,17.8609382976085,19.549439903749,21.2231316749074,17.6480933172278,19.4815824180379,20.9008087640282,17.8214008787983,19.6183675433032,21.0568649972099 +"A8E6W0",15.8199411802979,16.9227887093016,16.8540882416623,15.4297446951767,17.0316110130263,16.9213957793341,15.6628820249247,16.7661904968831,16.6548183343521,15.6004003622428,16.8803927167099,16.9722270175163,15.5245596100776,16.8165038261602,16.5571510222295,15.5386091492911,16.791077029978,16.8136654133334 +"A8JNG6",14.5329209982841,16.5258240401265,18.1789719787804,13.9294199078476,15.8408358438545,17.4610312554393,13.8397783020533,16.1442297813605,17.6587766451262,13.6764380624384,15.501580009238,17.0722206929467,12.588683403109,16.250755184367,17.3892023364996,13.2599787756073,15.7198850859281,16.8599286084105 +"A8JNP2",19.5910364976864,21.0401728841134,22.8654156629493,19.3190355026349,21.191755042664,23.0376672541431,19.5005683338414,21.1239722893744,22.6020870470381,19.5178038269688,21.1440991541535,22.7874089541252,19.6909161105011,21.0930862347743,22.7370788190808,19.2993578177287,20.8821204121252,22.7025884115339 +"A8JNT7",15.7114468070416,17.2204297676016,17.3807417949615,15.6137204988738,17.3621769640491,17.195631410969,15.7575265749958,17.2278792903314,17.3977800308858,15.8972755703191,17.5559336997381,17.486420481339,15.9581906946785,17.5212844879762,17.2540988055877,15.9737992436259,17.6441022450309,17.345332435216 +"A8JTM7",16.6216306699571,17.5094078034971,17.9316155559248,16.7943039677909,17.3624790604234,18.0374604725285,16.9762777219892,17.6622136339028,18.3122347389623,17.1579561501322,17.7444749370459,18.3993407673539,17.0480561390915,17.5382030621058,18.4375873356917,17.415755759586,18.045922428281,18.5279240837366 +"A8WH76",18.6162570134603,18.760937821213,19.6046519252918,18.7268102078051,18.9009094849088,19.4449100305814,18.6461282454036,18.7674496266052,19.4152356764728,18.6176263898257,18.855562249735,19.4034976837879,18.6801615971025,19.0390662055218,19.5993220806395,19.1053641740256,18.9930676687356,19.5862582559573 +"A8Y535",21.6654396359512,22.169464258499,22.6799625090257,21.6700259753105,22.2610751092888,22.5544042181162,21.3568156120273,21.9801132476875,22.507117078418,21.2377342080464,22.0947703896259,22.4887411341009,21.2948588341286,21.9365518914224,22.2930221584112,21.7374977891217,22.1862364936993,22.541018701878 +"B7YZN4",13.7640770316261,15.7738137690632,17.1978411063608,13.62212418568,15.7068972717845,17.0949226422852,13.6432437916141,15.9216868595246,16.6026767826833,13.7628930167164,15.4855854915984,16.8005944109983,13.0649281238132,15.581062197239,16.7437073764264,14.4819398047928,15.5041611857621,16.7865388173542 +"B7YZT2",18.1593545761951,18.8693255544718,18.8532225791175,17.8275617041426,18.44270374154,19.1697864880993,17.830522598216,18.2586259286458,18.7663197195938,17.6980255663519,18.3503756149237,19.1489527738591,17.8433587130803,18.1556317194043,18.9767236080589,17.9185916246062,18.4333429179346,18.9030009491144 +"B7Z0C9",14.6736192151079,16.1703844418202,17.2760985545505,14.8352838658241,16.1595233563797,17.452864281711,14.6442610409446,15.8707066246231,16.8396794682149,14.6067626064209,15.9437949811461,17.4712139182393,14.6411181369909,15.8948675213707,16.9990807883453,14.5640522120579,15.955834328122,17.1952508401426 +"B7Z0N0",11.9331566568888,12.2479298635119,14.7357906606306,12.1769415015285,12.3012560943997,14.992761913279,11.8908399129323,12.3025249601276,14.6274159097494,12.4818506592478,12.3744590210588,14.8728479903918,12.4001362058701,12.3797833513887,14.8735922478232,11.8607292693636,11.940275172961,14.8593176254242 +"B7Z0Q1",16.0238734469164,17.6895302130863,18.7723687789854,16.2239984178487,18.0026661509897,18.9353199823619,16.3267399310873,17.8468425604201,18.7844389674881,16.4348867258304,17.9978203401365,18.9329451678903,16.3265644177723,18.0945593334901,18.8862709892791,16.6935927753101,18.1390700762929,19.0589690286244 +"B7Z107",14.9178878954838,15.0727334446917,18.9776208036414,14.8985559104648,15.0166928953384,18.6949038629408,14.2863108866351,14.6036005859837,18.3844023418129,14.6589124706788,14.9526318394506,18.389016742467,13.492685162131,14.5226613126369,18.3398011145893,14.7299941809801,14.9388670776054,18.7466887421969 +"C0HK94",17.9098688467711,17.9651253133777,19.9468150465476,17.7889055733029,17.7140123673144,19.5603808745442,17.8287931926144,17.9659268419759,19.8286772765534,17.7627410432878,17.8808243993886,19.8130136793212,17.8526161086721,17.8442151882959,19.5946046363159,17.7676329978039,17.9279883276356,19.5765183899844 +"C0HK95",19.0318150320058,20.304522895187,21.3602844547944,18.796440274162,19.8652195472991,20.9548600210624,18.8263929360238,19.7750323359961,20.9586199318507,18.3079006363783,19.7492693975363,20.8330996589072,18.8207917337064,19.7184949008115,20.9912209006293,18.9104016449272,20.0936686097577,21.0406679655336 +"D0UGE6",14.2443244431818,16.1601170630933,16.1317136950024,14.4006574713383,16.0686174355407,15.5279935772737,14.0058125107969,15.8201594141337,15.9395740259129,13.9013534321049,15.7720113155058,15.5324570147205,13.7544110132562,15.8969336430412,15.5803964585301,14.3293995960426,16.2815255938686,15.5151303236675 +"E1JGR3",12.1080913481366,12.2205849046128,12.469252778947,11.9327918138666,12.0935130917135,12.1772046351793,12.1109800353979,12.0984669178865,12.7345285339533,11.8823056800158,12.2250291888575,12.477023733843,12.2961948470446,12.0398245762562,12.3540642014445,11.8476700454441,11.7505112165859,12.3299655942084 +"E1JIY8",15.5565656325433,17.309763514888,17.1338207760147,15.6855662202313,16.2939616007677,17.1691129997832,15.6585992475366,16.2710745647879,17.1840597643525,15.7468079880658,16.1719731258207,17.0641625839346,15.7097949328245,16.2429558423431,17.1178821525383,15.6924999623353,16.1741807950457,17.019825561553 +"E1JJH5",19.9060830358368,21.0204724303224,22.60526785925,20.028561035429,21.1391158700806,22.6318546793679,20.0031353298921,21.0831342192745,22.6137854672478,19.9705865075492,21.1280725985755,22.5864786483872,20.0196568816507,21.1573687258906,22.6338238170725,19.9902241679243,21.0984209921438,22.6511733481993 +"E2QCN9",16.695821745929,17.1107087636955,18.6409894780872,16.7282700119952,17.0585290376216,18.4390011258297,16.8001403036172,16.9416683314992,18.5421858865271,16.5120601826578,16.9889783698764,18.6602500817561,16.7897515755596,16.8687363302123,18.487714556535,16.4391703309101,16.7933490550304,18.2397990831462 +"M9MSK4",19.9704733289341,19.9899264382959,21.8282944716962,20.0304815648913,20.1793389152644,21.8931195974211,19.6445413408607,19.8682352123639,21.6050374646109,19.8069285202436,20.0677754333156,21.709546984156,19.7938001494429,19.9644292475763,21.5502881605379,20.207126571825,20.2602514176365,21.8708861379511 +"M9NDE3",15.476081840111,15.8166501662507,16.6954669506272,15.7613439978782,15.8881384576683,16.7461464020971,15.7236511323265,16.0060294190327,16.8594976961768,15.8238216113278,16.0257342279273,16.8876807105425,15.7208739312373,16.1142588445736,16.8354090110159,15.8940999276067,15.98228838977,16.884635295963 +"M9NEW0",17.4946210790894,18.0037626661785,19.7442298642331,17.3500652857992,18.1610503202041,19.8050074042177,17.3272778297178,18.0510762668418,19.6235339417933,17.1401752299992,17.9905456247526,19.4908767588584,17.3504430296755,18.0578251878507,19.5137538813502,17.2227335009247,17.9875180658247,19.5066111877751 +"M9NFC0",18.3129485294861,20.4121381859375,21.4980752560446,18.1616753401318,20.2321962143284,21.0637850208549,18.3977023704878,20.5073986738793,21.4843169622593,18.0071893942927,20.296055230781,21.1640238080597,17.9230207103341,20.4032804663012,21.2919905486995,17.7744987632208,19.9217457343688,20.7189264245524 +"M9PDU4",21.4519137600776,21.9493343493968,24.4752923171848,21.5624186363767,21.943241660484,24.4268407367416,21.4086562686461,21.7509228654252,24.3947194406383,21.3558811802887,21.7472528877803,24.3080213996824,21.3001901164967,21.825434769404,24.2243441344801,21.7261067379311,21.8018526491036,24.1301016154295 +"M9PEG1",19.9943940805014,20.2067344964977,21.5691536078121,20.0117227350873,20.1326054081943,21.3048652261492,19.5809449989986,19.6826001851454,21.1088148691579,19.7366523888436,19.751685507964,21.0100907888307,19.6012161313328,19.8627865330713,21.011183480517,20.1388949521626,19.8183690562527,21.0744484297779 +"M9PF16",20.3478120230412,21.5171385805956,22.3374000699192,19.807076650784,21.059865465949,21.7426996752429,20.2131587825419,21.4555926589295,22.1627989713167,19.8082398156591,21.0901840598539,21.8257756882462,20.5102493507336,21.7034550814884,22.5120712553054,20.0553577656442,21.2296533603934,22.0391450786249 +"M9PF61",22.2157722836341,22.4029414998782,23.869161881073,22.119310676838,22.3709582519138,23.7865969460726,21.9999393874334,22.3040587815432,23.5962244957338,21.9834053821296,22.2677656372373,23.6939516606894,21.8864787456847,22.3702737596513,23.6805031286816,21.9810393547994,22.2955902517066,23.61453907863 +"M9PFN0",17.0736346485328,16.2251695109294,17.1084145775036,16.9555829930401,16.1892613603537,17.118492601404,16.7793628323734,16.2777937914068,16.9590649272472,16.7360155579275,15.9622627599643,16.9523694960995,16.8844160658638,16.3611989387638,16.923731056596,16.6803746953241,16.1513111629386,16.9262726459497 +"M9PGG8",16.9485314830924,18.9893936352796,19.7296553863376,17.1055255902208,19.0285880442764,19.6757025954703,16.8488707552914,18.8860713392197,19.5168297586519,16.8897174655217,18.9944791791976,20.6868465592972,16.847801033413,18.8829815617232,19.2941639240541,16.9172915417012,18.9772138262177,19.3247860711812 +"M9PHA0",16.7184216298396,17.1942171911079,18.7515033291118,16.8067926040369,17.2938379761995,18.4988312908053,16.705342556988,17.0203396315587,18.4860929074036,16.5863787176381,17.0819740779083,18.3736889590244,16.7365104328946,17.0641469644612,18.4736273910303,16.3463635648606,17.27138857635,18.237945633281 +"O01666",21.6949897856092,22.6337748237039,23.4624619626326,21.6697528375903,22.5576761134195,23.4222303898619,21.8124648685036,22.7513073139656,23.6137674221481,21.641560626394,22.6235699397312,23.6739943289475,22.0628802839486,22.9859758800712,24.0279485199256,21.9609785063573,22.8488758785016,23.7859331008735 +"O02195",18.0212506862294,17.5843307288672,19.6278067532097,18.182757576673,17.7281508349632,19.7614088371826,18.4144804052025,17.9920405373943,19.9247277814533,18.3986475095245,17.9431240233752,20.1288496730266,18.2472401514488,17.9544704089434,19.9699933800975,18.5084635914247,17.9677809081053,20.2609185906081 +"O02649",22.6782685982161,22.9749798226071,24.4017192617102,22.8710214604172,23.2114986177855,24.456981296734,22.5024252958323,22.9119168358636,24.2873968173964,22.7653025105434,23.1844665808233,24.3433506688171,22.4155431925838,22.9236875464145,24.132080532315,22.4476469473969,23.005814365727,24.2351801961577 +"O15943",19.0002230869291,20.2634771546072,20.8170659698537,19.3380342374358,20.5217175979976,20.9842243752098,19.112721169333,20.2814029057634,20.7964577647278,19.2665403865258,20.5089449395432,20.993482114415,19.0844314531793,20.4161698544807,20.7179234378808,19.3677781086232,20.6521811693417,20.9821832582494 +"O15971",15.9568159839596,16.9486287560502,18.9018813071026,15.5186668111861,16.778573352071,18.7723888895717,15.7222299852587,16.7700300094832,18.5231354880383,15.7454892865545,16.980614314195,18.7199333022716,16.1209975773336,17.1847110722336,18.7617926810682,15.9013777669955,17.0614678600458,18.8342976687015 +"O16158",20.5196135248082,20.9520117897413,22.1964116678222,20.6612569453742,21.0985639621323,22.3403444996056,20.3708691223712,20.9558344620422,22.2118915503913,20.6395249503237,21.1019806841362,22.3356819527327,20.2584472393865,21.0961101000753,22.2714118340185,20.6848599863122,21.3481505529777,22.4041560599963 +"O16797",15.6684248030967,16.5027345988564,17.4399982865804,15.1949745780123,16.0562236113616,16.9452296855214,16.3762840156291,17.2593804319708,18.0431605642889,15.9971204737308,16.731996812548,17.5998031845437,16.0657033255279,16.9545913384774,17.858930831294,15.7721733979783,16.7331622583074,17.438706316743 +"O17444",15.0735426321919,14.0544715874933,15.5966306267583,15.440294010198,14.1918639847207,15.6155251660722,15.7014525048967,14.1305305765743,15.7084938955951,15.8658969879434,14.7689583542265,16.0853500501202,15.7720391186098,14.8925721517959,16.4262249800988,15.8597375607868,15.1089227170981,16.6203765551779 +"O17452",19.9587816551403,18.744485843417,20.5633196774926,20.0248832668676,18.8664262036899,20.8156661954835,20.0152139462667,18.6779745440624,20.80410500813,20.1646683360344,18.8259989107562,20.8967183320276,19.5255094236001,18.8719766294381,20.8148971722,19.9287043739586,19.2730884747944,20.8206449342882 +"O18332",19.8095542680181,20.2703283670177,21.5415614415687,19.8466740040275,20.2629226017951,21.557297915359,19.7838859459432,20.2913836171142,21.4941319659125,19.8653935536135,20.2686146848674,21.6900054909474,19.9033967846964,20.4767684100168,21.8060953650163,20.070535765004,20.8485006934664,21.7682644880212 +"O18333",15.2846752740165,17.9174415600972,19.00171330465,15.2877866645814,17.7508363816705,18.8908479201805,15.2931440420287,17.763550193653,18.8153877972946,15.6073533538089,18.1658938229497,19.0023663729663,15.857884650907,17.9668845930188,19.2441494089653,15.6493178038468,18.0439297012453,19.1026263326927 +"O18335",20.7877627786293,21.5784744345521,22.5646016463932,20.8785665156921,21.6104588774905,22.7437960431246,20.6952729918565,21.4952987066824,22.4719470569458,20.7473078877278,21.5438703878049,22.7601477161617,20.7608499386812,21.4843908500113,22.4857311653871,20.7840946417378,21.5714982897977,22.6817620525683 +"O18373",18.8778583746559,19.4054925396163,20.3285164403458,18.8524594905665,19.5524794007954,20.4507029640339,18.9403297491038,19.5584783404752,20.3343585406827,18.9765058649168,19.5260822284843,20.4794368102506,18.8547120876751,19.4152087229856,20.2524561436062,19.1405538181427,19.4846935183336,20.3110667464555 +"O18404",22.3081806967821,22.7738635717211,23.9771027864356,22.2492288917518,22.9363464573196,24.078588345346,22.2060838005048,22.8014381531274,23.8560840739296,22.2363264153277,22.8543583985691,23.985551079627,22.1630108974906,22.9894851601498,23.9833378766734,21.9946882914632,22.7346562206786,23.8802837825134 +"O18413",18.1268604316273,19.3890084115035,20.0972492289771,18.166165903488,19.4516648312829,20.2178127162644,18.3417218231904,19.7486152125332,20.2996340881482,18.4351426736058,19.7127065131717,20.4644415119581,18.3496376819201,19.7182974771863,20.3545588499623,18.3813229123625,19.8459713479049,20.4851429056615 +"O44226",18.8376256499285,20.4154583761869,21.2708864030235,19.0054842246513,20.474389018446,21.2848638245133,18.8223766948472,20.3843012180472,21.1968758760793,18.9728799029508,20.4565092733111,21.2667559231704,18.9077008995068,20.3184177794655,21.0802967178159,18.9317419510256,20.4312109280663,21.2820140306586 +"O44386",16.3013605936729,16.9856030890459,17.1179847658125,16.2400520469535,17.0150335874726,17.1947818227906,16.3169860546034,16.9367363425578,17.3449192474766,16.3719628708514,17.066714981003,17.4983341593312,16.3673273531791,16.9665712020194,17.1852197314758,16.488777386355,17.0658310858438,17.3814130805621 +"O44434",14.0482721330005,16.8285170498854,16.4470433023114,14.3636849383579,17.2014398559984,16.6098203643135,13.9855167564417,16.8123945375652,16.3494260578306,14.3518364114465,16.9481166238571,16.5396038032918,13.8819596972197,16.8488143598485,16.4436699610807,14.4870440452768,16.8835493260854,16.3745609028548 +"O46067",18.6055687747454,20.3544233086809,20.6197629194262,18.562536861689,20.2747908930179,20.497434958011,18.6276115360145,20.3216648762306,20.521128770317,18.3998270386624,20.0464545415874,20.3877337050768,18.5499634221747,20.2886265161213,20.4931315315998,18.3470833917713,19.9772834738576,20.2993225599828 +"O46098",16.5184417185136,17.9226406532695,19.9869138627539,16.4897674259995,17.9440382544173,19.8201197322198,16.3913629077077,17.8041889984891,19.5497948623216,16.4782678565286,17.8060419818659,19.7980013689414,16.3501957042347,17.8434110084741,19.486863760626,16.5482832918589,17.7867601108277,19.5925715400463 +"O46106",16.656576542088,16.4502405885073,17.9824895828134,16.7844987348358,16.585264364329,18.0441078330876,16.5151591046138,16.5125805510346,17.9106347689954,16.5153057086084,16.4296999776183,17.8180683252177,16.5605482028336,16.6311486257907,17.7850181726705,16.298502752224,16.6065673676578,17.8231041090747 +"O61443",14.2222149787524,17.5294844707469,17.3864535902563,13.8195405657471,17.6291795926274,17.5384832731086,14.7226593077258,17.956877913061,17.707524042037,14.3496795513976,17.5810108641823,17.6303879098342,14.5041885834188,17.9475385382885,17.5994341176261,14.3200685526561,17.6569386796214,17.6037962453207 +"O61444",14.4767219436387,17.5039939050887,17.1624797407774,15.1012587716372,17.6082165094853,17.0384248990404,14.6600397168135,17.4376398226762,17.2297182441049,14.779255143816,17.5556472840663,17.5441513135913,14.5918293815998,17.3058045548988,17.0562773162124,14.6104856556432,17.4662975004921,17.1372101858181 +"O61491",20.1833875160313,20.7869922726837,21.7761669696056,20.158680603604,20.7300845651745,21.6474090970661,20.291615566912,20.828398046848,21.7844628934884,20.1446211865294,20.6566285700639,21.7400150190671,20.3697270400065,20.9788347414781,21.8436962328118,20.2138565871279,20.9742375702131,21.8619810471966 +"O61604",19.7831171814066,20.8351644807259,21.8076737227475,19.9754468050468,20.9721140450871,21.9111315999871,19.9301092178287,21.0491076403219,21.9174479008325,19.8641139539699,20.9433332402532,21.916742199336,19.9156765108031,21.0764277722295,21.9363440881159,19.9953828096885,21.0729908444234,21.9240851289111 +"O61722",18.5448841068289,19.6354335390756,19.0494909868511,18.5692674646537,19.2669147760027,18.9755038018187,18.5799053495664,19.5435602350553,18.910825053482,18.3372741865838,19.1423913437091,19.0020318731067,18.5179699062078,19.3902403353917,19.0869245993149,18.3862233971076,19.1667944946761,18.8138363811742 +"O62530",15.9549490897404,15.4483139215823,16.4067280264015,15.7022727840957,15.0729577316458,15.9981132222366,15.7575291740432,15.311163113262,15.9014666315279,15.7030389174147,15.130346577881,16.2457920638409,15.7936195976731,15.1755820264536,16.1433911982181,15.7299834367373,14.8690868540896,15.9030668022157 +"O62602",13.8983197527634,14.7094979428115,15.1122300094635,13.4272383375092,14.7650877027828,14.9118155181471,13.6616052129661,14.9138377544188,15.0115017196866,13.7260068658972,15.0511046579334,14.8187613236419,14.0549591592519,15.0969073520072,15.4374022869895,14.0906175256884,15.0614191681646,14.8632141740675 +"O62619",21.4735740660737,21.9912336326056,23.1616781531848,21.2006567596368,21.8864820515301,22.9274371619119,21.3869831068917,22.1923127112812,23.149899842267,21.2298627511983,21.8690966871462,22.9293291995297,21.5576027455759,22.4990895377215,23.5088943242057,21.4413983597021,22.2728005327101,23.3076077920936 +"O62621",12.5923169118721,13.8702315427727,12.9754491207429,12.6931031829154,13.6351985283702,12.9892542439219,12.8888446026319,13.6487459344778,12.8891077905453,12.7346311182968,13.9989020138048,12.3973947217642,13.1627542015737,13.9727525328041,13.0304323503818,12.7177748055477,13.4753892659718,12.6931321405415 +"O76454",17.685908435642,18.0345477320537,18.9097391085755,17.0910651748668,17.7567036060709,18.6880230981613,17.3406610048145,17.9296760759539,18.7010977179715,17.3320321805879,18.0312497909922,18.6282825751556,17.6361467001194,17.9772146128198,18.5884245615284,17.2201865536446,17.691387137818,18.5219425323624 +"O76521",15.6948391334975,15.9154274872771,16.1479807384317,16.0295770387894,15.9205306047298,16.4550296741512,15.8032193490126,16.0604644332888,16.4788082811532,15.6783277635038,15.9453029334128,16.5784609856438,15.8247229783914,16.0496081015842,16.5000112325594,15.9106232360798,15.9806967806697,16.5834503419854 +"O76742",16.768767081851,18.0522054174508,18.7934961114487,16.479159788028,18.070412209015,18.8804838281256,16.7160101736977,18.2650182209861,18.858889859471,16.7842496036007,18.2130011592427,19.0344032960948,16.760366923407,18.5225417729222,19.1156798601814,17.1861580393997,18.5647046541679,19.1807149347216 +"O76752",16.6905506660588,18.3039232643557,19.0633842298685,16.4572211482745,18.1142758946557,18.7167586334537,16.7416068363428,18.2036087157815,18.9520694530149,16.4481153679715,17.9699153624551,18.5445136097432,16.7053179274406,18.3029714976147,18.9641820164184,16.7354787037438,18.2064745630648,18.817743829177 +"O76877",14.931966322311,18.2863952158604,19.3000741012569,14.7722129524118,17.9396957449276,19.290137857168,14.8208269723208,17.9633242405126,19.0822901087479,14.7544265511083,17.9902908410079,19.3093812614644,15.0331988788167,17.8608201698403,19.1090536017277,15.0248438747296,17.8987152029578,18.9730256239839 +"O76902",16.5217893455874,17.4193239296092,17.837101032031,16.4654846134889,17.1793477794034,17.5913163052705,16.4696324875385,17.4399117309927,17.6367101835606,16.4823814410787,17.1216733127272,17.7233366245539,16.7301820052492,17.564917291449,18.1402420885646,16.9510319137684,17.7260396347683,18.1883975997465 +"O77134",20.7118353064961,21.5076969412388,23.2117697583552,20.8235100288495,21.447163648743,23.0920465477843,20.6597953734106,21.2166428358769,23.0641082319034,20.4801142660426,21.2626963170176,23.0992370927617,20.6190445738975,21.267819214358,22.9124453798729,20.8167261344301,21.2258289688198,22.8947362208198 +"O77263",14.579231859729,15.9362681273792,16.2879339098813,14.461214116738,16.1250539227946,16.4551215983859,14.4044186279278,15.8557064815237,16.136436181766,14.2487619849941,16.0201049444849,16.3598369570176,14.401839645131,15.8107132976659,16.0971174147691,14.233546776837,15.7580077503297,16.2163313885142 +"O77410",12.0822496116424,15.3533670722966,15.5820380137794,11.449375188711,14.9933145137187,15.1889472116602,12.2879127015273,15.5357796178538,15.774605527806,11.6933205193255,15.244820178645,15.6191193192338,12.6264566739179,15.873184320047,15.9708984529064,11.8817043734179,15.3908762492026,15.7207698354626 +"O77430",18.4531279886686,19.5682282006118,20.6449737877427,18.4199042829307,19.476455458551,20.6748025219927,18.4225965197902,19.4998217685343,20.6830720886086,18.4646610145207,19.5693348316333,20.5708911170287,18.4353162210369,19.5417120347517,20.5908095692151,18.5146964710098,19.6851249510735,20.5605232728534 +"O77477",15.4902093779572,16.9835702601924,17.5089382260993,15.6146882183146,16.7167074557148,17.5443257031534,15.8393632358243,16.9854373648099,17.9195563714398,15.9275880164679,16.894008612032,17.7934722976309,15.935559914838,17.0887780929191,17.8375872497881,16.1167744965891,17.0667676056503,17.9950194856683 +"O96299",17.4166769396046,14.9065300204272,14.1664685162039,17.5308557603435,14.8885616891333,14.2992127525043,17.4001914338743,14.951262720904,14.5841529340194,17.3477174893107,15.1123907668371,14.9073095971924,17.6011784013535,14.9888408523765,14.9724743633239,17.4780957307112,15.0436694867973,14.8737109383504 +"O96824",16.1486108158006,16.9032869472112,17.8393722047492,16.0157568146089,16.350962984765,17.7780297528733,16.1295806277744,16.5816406111755,17.6844282061389,15.8829003041211,16.3485274348867,17.616549121537,15.9988715159794,16.5122626082238,17.506612163409,15.9219662989209,16.0945871536961,17.5386234055949 +"O97062",16.7808913864031,18.896968526612,20.1530203058344,16.8857219139011,18.7394526864274,19.9417908796354,16.7592588178551,18.7552279934819,20.0622208224859,16.6494978988933,18.7417908983691,19.7476477332762,16.8231552844936,18.6697324309688,19.8180146996585,16.5658256170364,18.6905634346662,19.7676586178271 +"O97064",15.3341552606208,15.8425358606769,18.4128561039353,15.1925585075566,15.86273360342,18.1307894393771,15.4199046020402,15.7923193876184,18.3364004026864,15.2344596992709,16.0340306546611,18.2525735083863,15.5095140575982,16.0053979673836,18.1440782182163,15.4221976287958,16.0985959569485,18.2805617762338 +"O97102",21.0135773234324,20.4845014178925,21.7109424954809,20.9552615713415,20.4413050184148,21.5643656858655,20.8102044401496,20.4308239230375,21.5575150494255,20.9752643452847,20.4815461148068,21.4528385444446,20.9302483056765,20.506927177293,21.6070380046465,21.2551311308202,20.9573787984796,21.7590017256842 +"O97111",13.7542208181303,15.4608336736169,14.7961410391257,13.6792854325944,15.4138644283961,15.3673866993875,13.8824328770853,15.250709397954,14.8386359550984,13.7994053970599,15.3174666191038,15.5896579478883,14.2791672910183,15.0682819313699,14.6578720049894,13.8407319010659,15.3394886603268,14.7653164373339 +"O97125",16.7867063014973,18.207622525478,19.3587745643769,16.9354152865233,18.3030410724351,19.226833887127,17.3523558313473,18.6486435251103,19.7985969954111,17.4313209382756,18.9446999097427,19.8700131898525,17.5251402319135,18.8459229243272,20.022137432014,17.4172991175083,19.0930142469633,19.8901304027166 +"O97365",17.2518670450295,17.9117869581308,18.8101617846003,17.3585208611658,17.7892144162085,18.756935144975,17.4998545580297,17.7257615661074,18.8266300552945,17.5657908513958,17.8972161892137,18.9302642569344,17.335699039683,17.5890600040175,18.6581077332451,17.481611259172,17.851046554317,18.7703509762316 +"O97418",20.486990680691,20.5500620624478,22.0848548375344,20.5782609746223,20.5600114672474,22.1745025145004,20.4237699994516,20.2731223758263,21.9817475334823,20.4175368125387,20.5105397761921,22.1697844211277,20.5401369283069,20.3513762029827,22.0341138458835,20.4848770928126,20.4778628683696,22.0317270761722 +"O97422",14.6065366266438,15.8033945884145,16.0171540089379,14.6218352785017,15.4851095298227,15.7463385172805,14.5378565544897,15.934265768919,15.885806244774,14.7621185302872,15.502301609385,15.7819718548715,14.0025040423434,16.4170711813278,15.8824370808548,14.5251055559207,15.8323004817848,15.9104202663442 +"O97454",11.6513169344841,14.7974922676642,15.7435288581946,11.5923010176729,14.9521737736779,15.8919623749169,11.3215207964202,15.1026945492043,15.7707554223062,11.4055524017177,15.0654304779698,16.275022421386,10.9791940379329,15.0130626970563,15.7396508838737,10.5278656618995,15.0017033618547,16.0722575498369 +"O97477",19.8933005655469,20.5718231855464,21.881710509303,19.9609023771,20.7674321673352,21.9613534998056,20.0971678965513,20.8861074122392,22.0959474230783,20.0086692694385,20.8325035484796,22.0845708319556,19.9989158242302,20.9649440006768,22.1430713546049,19.9193366914099,20.8765211853286,22.1225122727798 +"O97479",16.648645673576,18.384419823832,17.6964554982444,17.0901239610369,19.0753552286423,18.0298960671821,16.7415088971282,18.4748576497324,17.6990438767556,17.1254515009543,18.9846097912628,17.9830155303025,16.9559926760024,19.1596222428725,18.1598573435137,16.8833695742531,19.0699360503627,18.0912169065902 +"P00334",24.8192094033403,24.2417957089339,26.527175569075,25.0240985207751,24.3390825652126,26.6968208694157,24.6862391366085,24.1473317022457,26.2946604987969,24.7689133048884,24.3030821925729,26.6170984865066,24.7856541090569,24.316347054844,26.5795721101022,24.7880046274968,24.0915320725425,26.4764861757221 +"P00408",20.7355019956011,21.385776461182,21.8430189018703,20.7483881131527,21.3263418578018,21.876936142908,20.7259245879689,21.3790199191315,21.6902722418546,20.6987774214231,21.2202733870734,21.7151526819522,20.9403147592365,21.6260303331087,22.0680408961116,20.9286006223512,21.4614531326928,21.9620957019992 +"P02283",20.4905696631679,21.1652879267247,23.2612665405449,20.3114486098293,21.1112600377497,23.2586358807747,20.4136912402494,20.9541107882754,23.1508351563191,20.4991111570046,21.1222711537118,23.4758062464242,20.5556250963747,20.9527327478312,23.3206011158364,20.2811866039984,20.8373651978345,23.1123468109537 +"P02299",20.6735387795047,22.3312022856872,22.9491637762373,20.6786974775959,22.3687543114026,23.0082101746456,20.773621003514,22.4123934829463,23.1277558101228,20.6552139906827,22.3428287314704,23.1968194365134,20.785599467123,22.3051124895849,23.0985181322301,20.6715308613062,22.3207928856187,22.8490003702959 +"P02515",18.2424225822514,18.3392796970523,19.1669638833108,17.2548589041998,17.3740153947088,17.813957578281,17.9359316224807,18.0995528105195,18.7080277624094,17.4532539398875,17.7040125089029,18.2347499055799,18.3597736175952,18.6053079102489,19.1575406952488,17.2553114963948,17.1623356423412,17.7212958997513 +"P02572",25.4145148353135,26.3481478788281,28.1211751687636,25.5083558015365,26.3007967751341,27.9713710863218,25.5269687478329,26.3714120543893,28.1549236372195,25.2256822423569,26.1744314245524,27.9553142719214,25.4221168734846,26.3437992201656,27.9579717044515,25.4230129997608,26.1978567877911,27.9302455902618 +"P04359",18.3802958340893,19.1786062817208,19.3717055087827,17.9471938372235,18.962221577666,19.1537841711591,18.1840022990368,19.2080949594023,19.2532573511611,18.2629160281105,19.0282986902109,19.2795562274198,17.9302895386394,19.4369294654019,19.2143911739314,18.032045515835,18.9782728191513,18.9880374372948 +"P04388",15.6103766092625,15.585119737455,18.4831350128306,15.7479503060779,15.4192396037169,18.3999126610413,15.7599763590511,15.6807197535608,18.36752230738,15.7423106323565,15.9559420256349,18.1855251685426,15.2943018169796,15.7185294690363,18.4057337368448,15.6167687445125,15.5977474667759,18.0975469500322 +"P05031",14.0818852935585,12.6749520747168,13.2527870921993,13.3201805846068,12.9858556683702,13.3426262486444,13.6187640543869,12.9666880837406,13.0271047353349,13.865588139595,12.8745397381271,13.3061937211747,13.7838242909937,13.6662202050273,14.2887681128478,14.1048931240922,13.5295961990152,13.890004073667 +"P05205",17.5358224979572,16.9810822272231,19.6438229449473,17.9244805097223,17.1536071839567,19.8196483576564,17.6152565365199,16.8882905523822,19.5228807748931,17.7186244100665,17.1588980099151,19.719606420004,17.5794136452688,16.6300951193833,19.3797916948248,17.8347112738389,17.1431340924841,19.4582897917462 +"P05389",19.5647815361532,20.6764720145831,21.6487243812872,19.2701514013146,20.5962629310795,21.4652587912378,19.57060879692,20.6968416135092,21.6286549207629,19.4182814069401,20.6280554928635,21.4628641518693,19.535105390645,20.7772052945432,21.4693207080419,19.447265617641,20.6601024429429,21.3922684420686 +"P05812",13.5318591614277,16.0482922186947,17.2602590383846,14.0833836995145,16.334568454932,17.5147000390024,13.7990470397512,16.0013033457361,17.157726406707,14.0462126069944,16.1995045553343,17.350695827703,13.7701130058223,16.0998506924548,17.2568051473801,14.2137241336693,16.2776387751671,17.4620056374023 +"P06002",15.1142701164215,17.38837757453,18.9969532291905,14.5560988865692,16.9390013938098,18.3738199805237,14.4227960116694,16.7303284354806,18.0427164921666,14.5950733917566,16.7617627815284,18.4606759542103,15.5833348419645,17.8487111521044,19.3111808317638,15.6428945056137,17.8570212887428,19.3439750775524 +"P07486",20.8591351654688,22.4444346834446,23.2796150687161,20.9223312304988,22.3205565303469,23.0155046214049,20.8699180697764,22.2955042870039,23.2575176366924,20.6185026190026,22.1006348814971,23.008156002247,21.1020480419823,22.6083203253029,23.4545159896371,20.9081709341607,22.5757790544989,23.2999874552225 +"P07668",13.9182161686772,15.0878105220694,16.1464009624064,13.4086815748286,14.8510708790025,15.7048376386948,13.5077491049113,14.6891327004057,15.2964210136613,13.3510179792789,14.9610879353875,15.4007162736377,13.1350435764058,14.8366153823988,15.7718239605479,14.2856192958639,14.3804700981899,15.452542767992 +"P08120",18.0064416771013,17.5399271202755,19.2218671505561,18.1273846078221,17.617070157708,18.7320412680484,18.1036813943468,17.8178849350761,19.1528418517177,17.9228626700357,17.5753543467474,18.7466314615911,17.8186602917682,17.9403942794358,19.1611030984534,17.9931921124984,17.6456384892638,18.8398565011312 +"P08182",19.3207180879031,19.4148303250968,20.4320341815433,19.4708477318883,19.5921120370226,20.45124500392,19.2236622050901,19.3276170838885,20.2821010588947,19.2002649292763,19.3986021398958,20.2080977707267,19.0762221514696,19.3949457844911,20.1717362665766,19.2740357717851,19.4776175886553,20.1912012478331 +"P08646",16.8360792024022,19.4811481725989,20.0000130452091,16.7589409270532,19.696973356071,20.1333237311127,16.9307968059542,19.8994763946447,20.0395712445993,16.9706410837921,19.7557733173533,20.0686319603277,16.5131866294986,19.8569128862427,20.1117988155931,17.0478826922967,20.0137421970542,20.3401881718585 +"P08736",23.7408302292594,23.9437477211241,25.6252987920656,23.5598708244874,23.8299220838948,25.5284047618902,23.725191114145,23.9715303182501,25.4932231079812,23.4957970734706,23.866930607377,25.6591743661897,23.6384372281841,23.9344307566391,25.4721835369036,23.5393154855215,23.9781294024563,25.5611805805567 +"P08928",21.9413752730247,22.6024997364637,23.5393752698921,22.1161251093644,22.7223542530542,23.624185353593,21.9749399334409,22.6379637709382,23.5094555375829,21.9428437735283,22.7106456708369,23.5966381127423,21.9602618447677,22.6073085698126,23.4259274899572,21.8929322205785,22.7478414269688,23.4728994479809 +"P08985",19.7711969319243,20.4519017870405,22.0725163145431,19.8661414572843,20.2772346379702,21.9961283759138,19.665724858798,20.1833548990056,21.9738972320417,19.5674542129806,20.1629764337337,22.087952248676,19.7700167962042,20.1963707568582,22.085889122839,19.6123988262462,19.9823617506067,21.9486780177836 +"P09040",15.5611995607891,17.6627777649945,16.7632076818095,15.9564791468725,17.5832153830781,17.00175322173,14.8400530756827,17.2830376817856,16.4651208131823,14.9781633851443,17.4431909731492,16.801310572826,14.79629941396,17.4362283192161,16.5079431105018,15.802064738764,17.5504836757241,16.7440964880032 +"P09180",19.4366914540393,20.6041292456584,21.6209478163164,19.256576642774,20.4743632830959,21.5089410001274,19.7806291168714,20.9835699117238,21.9820601326108,19.6073875654751,20.7850505926947,21.9318408561037,19.6397957799988,20.8833172776919,21.9631002187385,19.4904045373673,20.5696188753041,21.604128557902 +"P09208",12.5531076050763,11.9105780023377,14.4712640343146,12.667304103558,11.1281717146549,14.0464902788894,13.063315316136,11.6405538639487,14.1435483967141,13.2140286066361,12.2136613819141,14.4371449596161,12.6183354155372,9.9111052024348,14.3810574382468,13.1253076024354,10.9196602426064,14.4984884513602 +"P0DKM0",16.6186609828818,16.8004874764709,17.2125938533978,16.958499597676,16.8572416279341,17.3164341474108,16.8310461490211,16.6508767531718,17.3854098203306,16.8045582981281,16.768515424076,17.6090602809203,16.7649006336192,16.5488479601291,17.4823620089177,16.9540585253281,16.8266597137427,17.5644484123097 +"P10676",19.3081102317358,20.5087710339919,21.6496788042245,18.854135632443,20.060840603694,21.0621134454014,18.5119268515425,19.611594501348,20.5719298101913,18.5277350637528,19.6833393562663,20.6040401340415,18.167049099586,19.3671315386327,20.2742893743794,17.9753021509631,19.2218423590264,20.0646647119353 +"P11046",20.0505916179758,20.7822382781868,21.9315397138403,20.1577174086054,20.8082277126234,21.9149562714369,20.0740325584982,21.008788850877,22.1221275780458,20.1187652735834,20.7762220023734,21.9517115126419,19.9339874386081,21.12626687701,22.1411100320258,20.2085964253408,21.1122458368965,22.154123092609 +"P12080",17.5287303270396,19.3108707346679,19.6840618656007,17.6828938389723,19.3600294146627,19.633684295703,17.9179475134744,19.6013860068916,20.0514010826122,17.8647713526134,19.5207252747855,19.9576168036159,17.7944037365534,19.5734725285612,20.006868385766,18.0107079935743,19.599093143222,20.0189510406951 +"P12370",19.7744071736803,20.3163075442123,21.752175601594,19.4137959412245,20.3670249773711,21.9961822740585,19.9057594622019,20.6158225977403,22.1086958298662,19.6226049666177,20.6990950082918,22.2271249167869,19.9067120016743,20.5130324000124,22.3472981583886,19.7366713598698,20.7466256401553,22.2017561249611 +"P13060",19.3977408352462,20.1732161189321,21.2925162138694,19.0208434368456,19.8232782580208,20.7838435973373,19.4703852442621,20.3530927628937,21.2740205478197,19.2581975458994,20.0613154003207,21.066367043205,19.468134529848,20.5049991178462,21.4451819700414,19.2923072021553,20.1901914821269,21.0903123997011 +"P13496",17.1481135786509,18.4786848804666,19.2354170334721,17.1753355957897,18.5387207203839,19.2339655774134,17.2127575626673,18.4592904895008,19.1314127970702,17.0579771296033,18.3432162008258,19.2483756929145,17.166245182018,18.5342208121212,19.2952270197179,17.0852337707324,18.3058729252011,19.1085046911237 +"P13677",16.1146616819498,17.9789208733274,18.5184079911593,15.478951178493,17.2281087567756,18.1187467102926,15.3513526624709,17.2272446467781,17.8609769123734,15.3614476777011,17.253676613577,17.8196013338814,15.5382889529594,17.6486745673274,18.3969628104866,15.1288001009445,17.4797126733239,17.8321002459679 +"P14199",17.7420647617995,18.3838064641565,19.7310422851667,17.849988055048,18.2508467225702,19.5675239001163,17.7352346025374,18.2777235897442,19.6946214276551,17.4812054119495,18.2013583132701,19.4778958498753,17.7920393219139,18.413382153887,19.5406124991337,17.7535679312914,18.3283669126547,19.3789261723578 +"P14318",21.7050074564398,21.8060262683049,24.1046975891975,21.259147069725,21.3403019031632,23.5993508680855,21.3901469736641,21.4965665106851,23.7468255230947,21.0525891206946,21.2267264620858,23.3781082187446,21.0837695891513,21.3187090857104,23.4126666026787,21.106908698337,21.2115591873677,23.3195832082079 +"P14484",18.34855434225,18.7799400448942,20.096704089651,18.5383016965596,18.8973685797493,20.2437066057886,18.5970469005558,18.7403592835177,20.290812233232,18.7057478441159,19.329466124936,20.507485574878,18.6298298538066,18.696622860043,20.2911550589175,18.7156389219819,19.0296957535866,20.2439092882951 +"P15425",17.0509357186877,16.5581640831672,17.6503030468249,16.9617871377759,16.2626544242868,17.3571846001303,17.0412521019108,16.587829499101,17.5121054640721,17.0391944740096,16.517668770648,17.3995586240718,17.0865426772336,16.8317714821844,17.7929909144417,17.1763187844401,16.6989029883671,17.593557338332 +"P16378",19.2056029021459,20.0146957299181,22.0879832577966,19.2071060074879,19.7831701120392,21.9355884989213,19.22639911882,19.9060468128306,22.0540844901768,19.1486384671954,19.9163311932485,22.0241389818501,19.5114056095017,20.2401629967129,22.478948713959,19.2150103755628,19.9951622457328,22.0913243767507 +"P16620",15.4430104914459,17.4658008922094,18.4216528685871,15.8666847149158,17.6716210114815,18.6083070814218,15.6019433042485,17.5908847165266,18.4977462664737,16.1140388976159,17.7292853189308,18.5962319113635,15.4769930143778,17.6316497217061,18.5116302945986,16.1318997528564,18.0289883361863,18.6425283579157 +"P17210",19.6335670337415,21.1642058823024,21.9903759930391,19.695279695198,21.1896773684696,21.9727646849354,19.5924446162551,21.110491488857,21.8557976354037,19.515405847573,20.9733547323504,21.7204728362356,19.5085421786198,21.0821461238656,21.8430445752624,19.5152096295866,21.007819076633,21.6228225398341 +"P17336",19.7601528853839,19.989402376142,21.5838429321134,19.8816047802014,19.9357121581707,21.3273554469004,20.3994298670133,20.5786690230988,22.1828694938565,20.2864693127257,20.4401152626075,21.9763249943054,20.3102624517137,20.3885103597926,22.0363163259853,20.010054170628,20.1438376455006,21.7008079908853 +"P17704",19.4834206844595,20.5581443308161,21.1041708840715,19.2620109994685,20.4252534391988,20.933165719189,19.4491867500657,20.7629864145546,21.1373643213525,19.2624304001848,20.5319570582603,20.8994843679394,19.4049610543823,20.7427654611826,21.1454694742324,19.1515663221867,20.486323136366,21.0090271044111 +"P18053",20.1050811390631,20.8346638506948,22.101537626164,20.1572620410397,20.8972273205223,22.2078982479809,20.15634060526,20.963638847214,22.1045137832831,20.1491538041787,20.9944467119176,22.4125836377643,20.0682072198237,20.9187986294638,22.0684139595594,20.0629890902731,20.8072778370196,22.0500450463438 +"P18432",22.9825852929721,23.6701925420048,25.5510335497476,22.7203548449811,23.3766008196105,25.0624689553748,22.7548212966897,23.5193939332832,25.3183248404072,22.1410606522253,23.033449787308,24.6001604802415,22.5638952677509,23.5096387041869,25.0126062515793,22.2897691092665,23.0248369960939,24.5820420813774 +"P19107",23.3978390331295,23.666286928936,25.2298612360669,23.2416042469873,23.6277987171953,25.1651464614644,23.2386708077876,23.579748179762,25.0173007629445,23.2409304796346,23.5616711026461,25.1300433204684,23.3010956715129,23.8789447208362,25.4146590757333,23.4500654673457,23.8283925029523,25.3141238785651 +"P19334",16.2344857870902,16.00734868945,15.6822138040204,15.8818915721234,15.385284384952,15.5086315175947,15.1240587100218,14.471236455691,14.7757142385733,15.4710215435318,15.1802096276133,15.0899585439889,15.4504818170871,14.7661533925419,14.4959624156838,14.967094473038,14.7431216151321,14.1542487831372 +"P20007",14.2839759075938,16.4584523621788,15.9288547329384,13.2916439245198,15.4232404555889,14.3726195373842,14.6148274588871,17.0656783949637,16.4010787496653,13.3649957739384,15.5655840401709,14.7742897478989,13.9813318116398,16.3527586293477,15.5308465462051,13.1774908408197,15.376059618862,14.5755287922086 +"P20240",16.2699236715928,16.9787412241275,18.1989984211352,16.8295951125876,17.2301046606894,18.3232602128138,16.8590555024555,17.0196280411416,18.3241868653709,16.888910685462,17.2157249231337,18.358119204531,16.6504114513118,16.8907538449256,18.1813906635866,16.916776136789,17.2460453268079,18.078947470302 +"P20348",17.239731206999,16.3092827418879,19.4907132011453,17.3057883728259,16.0531780423185,19.2424344182052,16.9962577665536,16.0434519105854,19.1201665351555,16.8015947752014,16.2186493897358,19.111318161894,16.7050529189094,16.1355330171588,18.9389766039569,16.6767275951321,16.2074603408896,18.8218856605654 +"P20351",12.5945296010295,13.0994602711717,15.3822414689,13.265007026769,13.5304080502433,15.8830427566887,12.7064448611482,13.4184893158295,15.4714079564462,13.1196990307553,13.2566272182115,16.0353812407188,12.4899777912362,13.5178958872775,15.5011827886853,13.1590274908979,13.2544418039496,15.9402869547169 +"P20432",23.3601017608889,23.0914568960123,24.6241428622248,23.295222196334,22.9057040745188,24.5951144482143,23.2063967414465,22.974572962471,24.4433366760516,23.1407762004885,22.9063904569101,24.7090165175332,23.2065708766641,22.8144750261951,24.5773207983948,23.0493016037722,22.8399609298081,24.3784435719198 +"P21187",16.5887102104625,18.949724181826,20.097075572187,16.6959027225049,19.0170093235508,19.9809493059264,17.3444806762137,19.525267562061,20.5833883275861,17.3818695784478,19.4699935033951,20.5096032903618,17.295440509148,19.521065526054,20.5439151201039,17.4962652858944,19.5587994472783,20.6393186077352 +"P21914",22.3404734533143,22.9526299781802,23.7712970832388,22.348688752321,22.8206481457642,23.731368673668,22.2558559310332,22.6940174853686,23.6712421845643,22.1105379278496,22.6453411101945,23.7193165500118,22.3005547336424,22.6745258733687,23.7635602830209,22.2076152075659,22.7366597139426,23.6425553077354 +"P22465",21.9074827222629,22.6496828673144,24.2035234650845,21.6291286169424,22.4573746595311,23.9207597587938,21.6548241469851,22.5491108670794,23.9040758863301,21.5153991325942,22.3654002065419,23.7284621966237,21.5341738763781,22.5505920747048,23.9169286130292,21.6874916066654,22.4504741790575,23.8817815079681 +"P22769",19.4300266623649,20.0034494835803,20.9489908664984,19.5538033380216,19.9571030743359,20.9891322350923,19.4004659893438,19.9898641890469,20.8363855780753,19.5903712381958,20.0218071457528,21.0534872921398,19.1443799785084,20.0745435826537,20.8384916547533,19.5102391816841,20.0974725414006,20.9903467927841 +"P22812",11.2017365068063,11.8389291425627,10.939360544069,11.8188293672157,11.085871280038,11.1721762358152,11.4043889766121,11.3311335918815,11.8409882526431,11.7530470631212,11.7534733163105,12.328519628341,12.1641714593977,10.651970856933,11.4730902575342,12.0495375254089,11.2625577962942,11.3775329985508 +"P22979",18.6354082969394,18.8998738228498,19.2988225343364,19.1405745508965,19.4152770707024,19.6037357430988,19.2000440957539,19.5576007262226,19.7543326941185,19.4165773510002,19.8610721272613,19.9979774885001,19.1121573115446,19.6317879464588,19.564540715767,19.2090426881826,19.9407459458132,19.9873620151692 +"P23128",15.1784345621696,13.0076268514124,15.7254345169926,14.576147082975,12.9806826924521,15.7328885834254,15.2088871474112,13.2991865135855,15.6741941278412,14.971663129421,13.1855150384431,15.9360113579796,15.3249991585301,13.1072551729702,16.1680564360314,14.4895076487872,13.7069052609813,15.6793737469339 +"P23625",22.0012139029888,21.6046590636084,23.0809541735621,21.9200607429545,21.5414990139768,23.1130806492124,21.9479894875648,21.5448558731367,23.0629087259679,21.795099812082,21.5010319827729,23.1875190253654,22.0178680840509,21.6871748972112,23.2321589326957,21.8626955492842,21.617189226331,23.0744257813172 +"P23779",20.5050761986773,21.1280735333303,21.9704801989287,20.5757593314007,21.24498740332,21.8923883548109,20.104085128433,20.8333812442552,21.6207914278548,20.1358240627411,20.8511215743597,21.6234329782001,20.04151811903,20.7355209032931,21.2902965476223,20.2246017814207,20.7337125183457,21.4656983233167 +"P25007",23.4969313258061,22.9707324826248,25.1934645879099,23.5468952289431,22.9685484456897,25.2305192682651,23.3666599140989,22.8546961379725,25.0692060847149,23.3980314367955,22.9475242622381,25.3048067093556,23.3784519149769,22.8612212184327,25.1614041783597,23.3106913790577,23.0016157715883,25.0652508410257 +"P25171",15.6051597663109,17.1832413084455,17.3444363510938,15.6793333950525,17.2516648201722,17.8216364710015,15.8654738519591,17.299735237939,17.2611605252841,15.7114285468891,17.1439247457939,17.5950450093378,15.3606097602839,17.0569669732738,17.1873806621445,15.8199932830411,17.0707870253415,17.4797186258387 +"P25455",14.9380568036615,15.0910072489001,17.2124888831514,14.939198844542,15.0698824583303,17.2774910242737,15.0176076348868,14.9368697294435,17.1654032563782,15.1832926988764,14.984150865933,17.2747883287135,15.2027062732498,15.5188821528468,17.4949927100182,15.0014542864283,15.1051258182455,17.2195042256322 +"P28668",14.8347345582548,15.1870391273295,16.2327609540716,14.4095439772575,15.2682233657533,16.1471038088844,15.0717721430907,15.4453589696575,16.5645726288001,15.0508872551518,15.4438129679706,16.7119479839185,14.6898739139861,15.2583223582441,16.3159917758755,14.949199857535,15.6323471791798,16.4252293421186 +"P29327",18.9066641280365,19.4899851369066,19.6651709151716,18.6955800309031,19.476723157003,19.8060243291193,19.2015499778168,19.9659126689439,20.0298650222145,18.9872636271155,19.6554432737525,20.0284057693292,19.0669490365818,19.8295128440357,20.0415066604722,18.9751066306821,19.870544280493,19.9499431106826 +"P29613",23.2769214730458,23.5834614297673,25.5611659432991,23.2519264992501,23.4875745931664,25.3569291457702,22.9341236612529,23.1144573406102,25.1251329320022,22.8757517596711,23.2517254774194,25.1786252173926,22.8852843214687,23.1921199483883,25.09695822226,22.779599257811,23.1641801741076,25.0703278036318 +"P29746",19.940678306946,20.8157365134814,22.1203458490879,20.3436755921485,21.143920083744,22.314211052374,20.1923436629541,20.8837515899075,22.3398477656143,20.4923606944703,21.2350523579663,22.5208811102107,20.2096084815433,20.9639457871438,22.0900465611449,20.5964582981247,21.1180891232638,22.2824094799196 +"P29829",20.8650464330555,21.2105304381426,22.1174335718685,20.5891577486857,20.9805948010058,21.9309127996134,20.6983461854103,21.2037434708452,22.0935006429934,20.6800352054288,21.0777694974255,22.1555896434995,20.7384540152485,21.5936468159196,22.5657613572333,20.6440931105852,21.3531215581293,22.2013508880531 +"P32234",15.7484890445799,16.8151343877854,17.8417589285007,15.9234073061492,16.7613421670531,17.6611771224401,16.1434460440334,16.7055352187513,17.6040907212134,15.8994217004148,16.7538165772582,17.5145672354896,15.6642273366458,16.6036557070179,17.6765932665395,15.5510400561249,16.5890438605703,17.3930779271567 +"P32392",16.1781386829781,17.4090207415485,18.3801662228557,16.2906810726775,17.5500733460212,18.467069288935,16.7751619874943,17.7107656716545,18.79296113042,16.9255744427458,17.8535148278105,18.9413895946756,16.7834113654615,17.7346556186793,18.8230509752496,16.6524191824876,17.801145026084,18.8165459888253 +"P32748",15.0390644597717,17.2162989387931,18.7995868655124,15.1236492754016,17.2959096144544,19.0686473715995,15.2087599629946,17.5949550000623,19.0940433680187,15.2905233504448,17.5767626002144,19.1026093630713,15.2385498897077,17.6053540310264,19.2471170439565,15.7114784400931,17.6661158127826,19.3066114890784 +"P35220",18.4693458766384,19.6966090835154,20.0383247203878,18.5465971867215,19.7546165865827,20.1562384813912,18.3078004089641,19.6382915460279,19.9498419097324,18.3839953455329,19.6545320686479,20.0868459138547,18.2269262493832,19.5866800222041,19.9647117960606,18.2498168735692,19.6738958331908,19.6703446250226 +"P35381",24.8476100613963,25.0429965321213,26.6036673169716,24.9305278672503,25.0446721354162,26.5097035985718,25.138476437412,25.2966503404174,26.9217723957464,24.8743367703953,25.1801997091592,26.7399929930984,25.2825796137373,25.4348024909425,27.0642012344401,25.1120523248369,25.4498097142595,26.9231201977938 +"P35992",14.8695144033613,16.184971439493,16.274115358536,14.8425142072361,16.2123965263471,16.2864723832221,14.8291601759064,16.2995212196112,16.2757211265566,15.1582765767242,16.5057897512139,16.4280876925063,14.9560807487647,16.3077360683991,16.208734370107,15.3511678446339,16.3876135809218,16.2906958053102 +"P36241",19.4128796694858,19.7259129880407,20.463898804522,19.2059563236863,19.605819983694,20.3193504064581,19.298934375435,19.9375243897179,20.6105494433929,19.3700973170182,19.7576900695596,20.4891999870298,19.0051546245787,19.8163493674727,20.4661386749659,18.8724953601596,19.6423677176266,20.2219759571101 +"P36951",19.4962601389492,20.3977136967192,21.4110470028824,19.4484871569922,20.1905940138275,21.1957402851095,19.7052805217014,20.3609463684497,21.3493928504324,19.3090749469193,20.0666542082127,21.2100367911324,19.6160265831202,20.2754871755503,21.376895122759,19.5351446645109,20.258015281505,21.2611517216711 +"P36975",21.6318956763202,21.7757744647507,23.422018187396,21.870215673631,22.091697178396,23.5362141191759,21.5326798764721,21.6578740245488,23.2407845175274,21.6981418278703,21.7349138206942,23.5297818328748,21.5415848375046,21.717987237172,23.218999202073,21.5861733711233,21.5384440616055,22.9159133292471 +"P38040",18.1193231912518,18.8144200496188,20.4080558761732,18.3415577628056,18.721020747813,20.2586846790577,17.9394034202421,18.6340580721169,20.1323689520256,18.3759688058441,18.9523990791309,20.4104381350139,17.7175015366155,18.4790041161766,19.9751425467047,18.1549898347561,19.1425456330228,19.9927615940746 +"P38979",21.024799390351,21.805712936108,23.518970784176,20.8814711692904,21.7883022503223,23.3922741138718,21.1507034996642,21.9593886253898,23.4462011067606,20.928032368645,21.7965773962984,23.4287613678024,21.0637737618784,21.9297602003513,23.4895417898992,20.8590865400402,21.8602893107136,23.3831234291239 +"P40301",17.766250694952,17.410691619056,17.8881964134543,17.5061714684119,17.5995207166924,17.8663968433688,17.7839449853654,17.8973801300738,18.1211175420576,17.8224016967126,17.7284171585367,18.119993196953,17.8847689228107,17.6779550736998,18.1013973330909,17.7858543735823,17.9307617611505,18.378325020201 +"P40304",17.6145259901144,18.845507447761,19.2662087651256,17.6226897176054,19.087798282326,19.3346484808763,17.840791631615,19.100428986257,19.3837032813755,17.7959116064461,19.2295119626967,19.6296536511539,18.076303875023,19.1681459896923,19.4788447889577,17.6877963099992,19.2174421514634,19.6923391705703 +"P40417",18.4615247435439,20.0510807013123,20.7016611076977,18.5050178065071,20.2004515564585,20.8643281587812,18.4171582816597,20.1580736515398,20.5473559476079,18.6324399603353,20.153099308141,20.861302111227,18.5894502823272,20.1356390740768,20.7584369208111,18.8188686402617,20.1941544115645,20.8381720209837 +"P40796",17.5368437644819,18.8459778541695,19.3215751433514,17.2832443751508,18.7101217767828,19.1210483029936,17.6552801893912,18.8073648804782,19.1464735062564,17.0250504306448,18.3773646975737,18.9713800484676,17.6778450164884,18.8835661034421,19.2104453552203,16.9453173924398,18.1401725957929,18.5301634887867 +"P40797",17.3048520891443,19.2077077786785,20.4460083053381,17.3883324189358,19.5888753779115,20.6774748760915,17.3688930883701,19.3783337068842,20.4230640256459,17.4307436069287,19.5433530299356,20.7126167436256,17.4897038156435,19.4376119487452,20.5174295360521,17.6147834047211,19.603282043737,20.787175891985 +"P41093",18.0194403443104,18.4430682390619,19.4412740678872,17.6896071738469,18.2144260611797,19.3354700333957,18.6768209848747,19.0337730957345,19.8871030193672,18.461809436146,18.8955998657055,19.9285629442286,18.7670500619164,18.8427094095765,19.9500322313813,18.5105317511203,19.0357453266072,19.7709975620327 +"P41094",20.5897102574258,20.9117626560117,22.0771710468574,20.3923098556855,20.8053457247283,22.0127069102705,20.702159618086,21.0178982988051,22.1790029539906,20.5143247078046,20.8926270064104,22.1854298714298,20.5443086701597,20.924125909609,22.1443100165344,20.4370243926868,20.9252939062524,21.9733962734803 +"P41375",16.7615844951646,16.2410311685935,17.7337927320925,16.802541546731,15.9211237176919,17.6639198506934,16.7611218779232,15.9864526089778,17.4885750388631,16.776798510307,15.8623798907016,17.7925841857957,16.5966889200209,15.6622885629657,17.5874454994632,16.6378224249675,15.3167368036334,17.5698954300822 +"P42207",14.743067554108,15.9883895420155,17.0763702667166,14.8149561551136,16.0732654846989,17.0029649755484,14.8121135758137,16.1199118357397,17.0613095943059,14.9369987385256,16.0433028511698,16.9336070596247,14.7234972224212,16.0976447649711,17.1249745241442,15.0968314590591,16.0224660890451,17.3966098286739 +"P42281",21.7485139569042,21.4276744632519,23.237668280707,21.6184227326581,21.4947471409603,22.9067328750477,21.2884792990797,20.9718874481942,22.7350256777774,21.2593151736908,21.2064257715635,22.7057096498283,21.2110371151981,21.1402547083002,22.5680684573877,21.3272733724509,21.1935677821483,22.4918111340713 +"P42325",19.6693156094032,19.638913711743,21.0481443491905,19.7807374788011,19.7059690849811,21.170267136772,19.490485495985,19.4426958540831,20.9755361577746,19.5647503816296,19.4742587070167,21.1032286258483,19.6434598542119,19.5632814950387,20.9890019951934,19.5612986138619,19.802210285708,20.9700115527689 +"P43332",16.2775128349607,16.8928128467047,17.9777290781434,16.5688411498655,16.9528733071302,18.2371886371522,16.4992838788838,16.786992998431,18.1605772978629,16.5315806154797,17.0459408697477,18.4430336054856,16.493609275659,16.3942209702091,18.1027069778063,16.8072608489576,17.0172370801549,18.0923833699774 +"P45437",15.5494039109042,15.4991284568465,16.329196579443,15.2087850889763,15.5574608314145,16.2624595928672,15.9169984923683,16.0924299726156,16.9383908229325,15.9460458069524,16.0285026452896,16.6102433308198,16.0540861389628,16.0020062642662,16.9256974730743,15.9983897801677,15.8914177630228,16.885888702685 +"P45594",22.5175727190338,22.4201002213247,24.1087231623095,22.5226575562737,22.4585664387054,24.2645456628625,22.382907157673,22.3288396664816,24.130899249709,22.5571370796297,22.5399047675697,24.5118308221016,22.268175768938,22.2048816240682,24.1526819426358,22.4663011044087,22.5619397008994,24.2785205240677 +"P45888",14.8990232796624,16.2534250971574,19.5634368169171,15.1925979495078,16.5326563427433,19.7138306687112,15.2116734733804,16.5619163186565,20.023249772478,15.231231133125,16.5006699521067,19.9118268172758,15.3146630551328,16.5593154993303,20.0508121656324,15.4036817528806,16.5936400950726,20.1099363265584 +"P45889",18.5905812513919,18.8002227199469,19.8021961399368,18.6717019324212,18.8242227283814,19.9238386851877,18.8091596276974,18.9099961656065,19.8738907616124,18.6676447759145,18.9017288044665,20.0582664854059,18.8421846449947,18.8606954248689,20.0411628247181,18.4710904071391,18.9134575478629,20.029463492606 +"P46415",16.6321669617115,18.2140710357432,19.2498458537361,16.2665807065104,17.974612399233,19.0693146569695,16.7113377240081,18.2274301247293,19.0505344671472,16.6418718583783,18.0499835032742,19.0601986360008,17.0375322897554,18.5802705493069,19.6008830429922,16.8769598100366,18.3354551620658,19.3249801409547 +"P48148",19.4224579188948,20.4266953395082,21.491381551645,19.5483716562549,20.417944224347,21.6694338390416,19.6059261197435,20.5763647479512,21.854101218676,19.6150598168503,20.6903458830334,22.1202892054368,19.5707840912313,20.408808520353,21.9265587470328,19.5048197090146,20.8798052361061,22.0861307268017 +"P48159",18.9721395234172,19.7840824447972,21.0754204866526,18.6909615625892,19.7208501496022,20.8750151598016,18.9186106917089,19.8860029286362,21.1581765472165,18.7876799322555,19.8022457106847,21.1543587854585,18.7915354744111,19.8690986624426,21.1664587053157,18.7176103687075,19.6634330921839,20.9789128273546 +"P48375",21.2097388499511,21.2750305411047,23.5737009399557,21.4187240971586,21.4005403912591,23.4888928348596,20.9354175389241,21.0030511047942,23.3081665667922,20.9544801754496,21.0914099759905,23.3005244164977,20.9767490916064,21.1230928895991,23.0265106056241,21.3532974799469,21.3056796906513,23.3239442558916 +"P48596",20.0576022573479,21.598738741831,22.765344027611,20.267771355284,21.8706899641375,23.1074380579195,20.4877345174518,22.0171247842342,23.1523754164589,20.7726544187974,22.3825796713362,23.6004539730356,20.3592455638264,21.9734605490898,23.044400172184,20.6087622038243,22.1287346604981,23.4142182298611 +"P48604",19.0990957665784,19.6843493524749,21.8582330383615,19.1191220507003,19.6684182019424,21.7609882736235,18.9812677010451,19.5426968782361,21.5784384328356,19.0053196989542,19.6352582772115,21.662570196811,18.939369852319,19.538257214888,21.4069544187447,19.1309887892032,19.6028980932332,21.5299797117028 +"P48609",15.054358586404,18.2687048660841,17.4281595400458,14.9989594441479,18.3118519199068,17.406817883234,15.2548913236905,18.5311211960381,17.5633776268357,15.0625158209896,18.3131386487497,17.6048181152632,14.9186731516242,18.5230616927086,17.5266464617858,15.1943200328533,18.3585912897914,17.4554070403756 +"P48611",19.0779100292027,20.0662705500366,20.9821268962576,19.0268425679634,20.3144917571053,21.0912680172949,18.984908082725,20.5331088212195,21.1728377234931,19.2018542137452,20.7118461755365,21.4110272264287,18.6536203690568,20.3866994685231,21.059696506844,19.0760997405315,20.4418512984747,21.2541885470088 +"P49028",17.7694458898411,14.7825872870897,16.2171137730787,18.0364835946895,15.0124525774796,16.0611564252708,17.6897636091614,15.2268161114327,16.2333384265493,17.7546772410405,15.1793963786005,16.1819176476682,17.6639422941655,15.134781720972,16.6489920717561,17.5416931410803,14.9751743492003,16.5334029378727 +"P49963",13.637015047518,14.6966993854606,16.1842767434504,13.4159872130521,14.898010507308,16.4118276315148,13.4535092388863,14.8827902433633,16.2324692189857,13.6645548323294,15.1697418138839,16.6120423577346,13.0325184161563,14.9000912838841,16.190758237192,13.5670469859944,15.0752237689369,16.469285122481 +"P50887",16.5351797294815,16.9878231249764,18.2540744809661,16.9073431453035,16.9945308033898,18.4364466572017,17.2201080218403,17.2317540857876,18.9612566163061,17.5100653605707,17.6046450489301,19.2394381343797,17.2157173422937,17.0405102981697,18.7892083735727,17.5741373788105,18.0837293331556,19.3723385568947 +"P51140",13.6395567369771,13.2353374000787,13.9598197978748,13.9646308666272,13.2094771000408,13.917685313142,13.7035669831675,13.1591109988808,13.5305085264135,14.0326745593772,13.3004933577528,13.6182584443938,13.5703073979347,13.0902011298342,13.8222643103879,14.1938542506251,13.3292991213787,13.8550801002971 +"P52029",16.5457838318708,19.5417531494238,20.1611160036142,16.2175305845608,19.0498287456577,19.5573287134278,16.1644383511219,19.1418492562042,19.7813708467106,15.9158241210533,18.9319299157674,19.4668587701871,16.7576446568236,19.4196097181869,20.1582074927337,16.0132024643036,18.4561454768208,19.4580475374803 +"P53034",14.5272928926171,15.5451604187219,17.1203794891965,14.9523376808057,15.8305309155062,17.1245074743049,14.7083915875938,15.6087692357789,16.6719896640925,14.7819896945664,15.6992364422438,16.9956824002742,14.5216422265588,15.5035318283357,16.634460239778,14.870526500734,15.5811272731181,16.5442478132858 +"P53501",23.0635308816334,25.1250160042722,26.3465710797995,22.6581915240896,24.7769862636829,25.9241436725005,23.0428600739186,25.1769926833413,26.2463127115523,22.5927420671199,24.7291720304162,25.9069709091255,22.9353526987034,25.0948934263549,26.2357941081184,22.7310282642448,24.7222789719776,25.9245924567167 +"P53997",16.4808624210262,17.5414561473018,19.0105805802771,15.9219051766528,17.4721059269056,19.0647981167679,15.0157100844809,17.4527542478426,18.9896994006438,15.4161055114804,17.5358122287759,19.1818126019705,14.9545418644664,17.5431271764862,18.9310564335596,15.8959770239163,17.3599748676209,18.9353388048326 +"P54185",17.0087367159408,17.4811771526895,17.6303712409745,17.2496179015274,17.9901475924264,17.8085966800749,17.2429043933386,17.7182053733533,17.8540048675404,17.2952906305547,17.8868092949552,17.7606586143304,16.9136410003279,17.4696985422208,17.1735731679554,16.9371044779557,17.3451685220951,17.0882861514355 +"P54192",23.689656638246,24.2116454463193,25.2874269390072,23.8919950627991,24.5531754705009,25.307528364733,23.7145642210363,24.0270797282132,25.28006598559,23.6584501814219,24.3454735850974,25.292349951447,23.493622634777,23.9165451023371,24.9098900095937,23.565529940104,23.9655607612905,24.7746475966387 +"P54195",17.180237730856,19.243767002461,19.4211547825721,17.2073925766749,19.2506583342267,19.4204774325324,17.8301501936784,19.1835545050329,19.6284431703633,17.9140329517486,19.4311056439802,19.857790435468,17.8679518548812,18.8578104128546,19.1904244651309,17.3532659642582,18.9200479870082,19.0804438419298 +"P54352",15.7060012625476,14.4495097771145,17.8876466044244,15.525019823196,14.7491711445127,17.7962167165909,15.6383337498354,14.9577544767085,17.9453359810202,15.4452519678295,14.5346668314122,18.0364007308273,15.5211342566056,14.9808281556069,18.0950264325412,15.8433965259233,14.8289839983886,18.0337030295154 +"P54353",18.1435156445224,18.4955536663132,20.0703625434319,18.4633838724517,18.6519432752,20.1393089321963,17.9523042520201,18.5165903687261,20.0908302572249,18.2261064407122,18.5393965959237,19.9381124068925,17.8922550660196,18.5697470849187,20.0591913102566,18.2824839828235,18.3335248731365,19.5644340240574 +"P54385",20.3880643964272,21.2272182504606,22.5496091414256,20.0629483037568,20.8846229399333,22.1451924836904,20.6827965421516,21.6066704311507,22.816375616221,20.4158891535761,21.3041583185784,22.7306700643511,20.9564550260506,21.9147779036992,23.3208629518727,20.4426934147676,21.3348553045764,22.5803248339979 +"P54397",12.9509399432484,15.5448149026509,16.6128227644963,12.3311543336061,15.2668545357035,16.2091596475209,13.01183038717,15.5033150458991,16.5037842945481,12.2397090374673,15.3014455202994,16.3490588219569,12.7134027067074,15.3152587194748,16.3979824438359,12.3634900786852,15.2870527221563,16.1607015337601 +"P54622",16.3762161022475,17.8224573805664,18.7653741606814,16.7506496094586,18.0653927426515,18.6864085772553,16.8140441220749,18.1521436801586,18.885861604587,16.9171823491733,18.0743134944524,18.8085878929238,16.7703037656801,18.2757830567754,19.1017975988119,17.1611801773104,18.3502415877151,19.2156042028861 +"P55828",18.3323148216643,20.0767850985939,21.5257791063145,18.5193454127446,20.0042813872126,21.3717476550428,18.4099667549277,20.2098253238567,21.4544494278387,18.1643789359679,20.0404921267486,21.4287947366166,18.2389263671808,20.1080670752943,21.5214343939804,18.4193288320689,20.1146585199883,21.4647516586872 +"P55830",21.3053484353933,22.0489984185711,23.0202476484892,21.1158400321514,21.9545193420276,22.7896944572744,21.2875920917383,22.0410775783193,23.0628419174324,21.1200677412605,21.9477289333397,22.9180880047678,21.0827459815752,22.0106325097706,22.9035698757118,20.984908505572,21.7369168867836,22.7531838519469 +"P55841",19.7045073743179,20.7008802525339,21.4092253182671,19.6413358016926,20.5421029726247,21.3320755009713,19.8322505673788,20.9506127990228,21.5858206794451,19.7139971115183,20.7046092537819,21.4661359015369,19.8721521477601,20.7471288726669,21.5386387348412,19.7061445755484,20.8147878486709,21.353091735969 +"P56538",16.1579657567885,16.9885121443409,18.0752196647055,16.2672145390253,16.9291976308486,17.8096209253494,16.3259535823139,17.1687252111515,17.9796282194584,16.1837740003082,16.9587205555735,17.6607453060284,16.4033163890898,17.3325137760273,18.0567159383061,16.3806958108076,17.1479307083089,17.8071433039794 +"P61851",23.2514845314026,23.3097746478713,24.2656552801344,23.2445357089811,23.4031883072043,24.3882182408619,22.9989078947898,23.2050397269353,24.179161805212,23.1802088156377,23.2771013800234,24.3017429098069,22.5722403935873,23.2160082685624,24.1490959663837,23.1299284853962,23.3950721860603,24.3064961475692 +"P80455",20.2905987912005,20.2584255456205,21.3078501314579,20.1655977575605,20.1852801861094,21.2362333219587,20.1351398430508,20.254857885145,21.3780206460539,20.0332382482104,20.152405620867,20.970142414604,19.7676430540692,20.4074071174334,21.3257044186978,20.0397790493277,20.4549116134895,21.2867376597841 +"P81900",21.1306335065592,22.2094433477724,23.71481740703,21.20943376489,22.4758932577667,23.7780432307173,21.0621923907827,22.3987563601249,23.6045203195434,21.176695597115,22.4149054193748,23.6318875319865,21.0592226970915,22.3300716395489,23.6497199927193,21.3291373301631,22.6397938294068,23.7916126481509 +"P82890",19.7053473579849,19.5311935295962,20.550732922375,19.8161916164268,19.4017863334312,20.3352389428016,19.2779119742607,19.3374150319789,20.1272889347451,19.3084587302142,19.1086438424501,19.9960697283726,19.251421637821,19.2896377525494,20.0782290871546,18.9434410801978,19.0901271277368,19.9597249775518 +"P83967",17.2210947271988,15.813561775711,18.5715570755374,18.3627988453218,17.4138263248876,19.6360339841952,17.2783871079805,16.2943594701973,18.8661859778947,17.3161491273271,16.1394657893144,18.7844280892833,16.7172763912103,15.62006411207,18.0452339752118,17.5330608991098,16.5917013374714,19.2150746817064 +"P91926",16.8456517929441,17.9089923697403,18.9152024065281,16.4103986485186,17.481470017301,18.4231885206288,16.4883513692583,17.5940617717676,18.6141827016771,16.7729861362562,17.7086013160947,18.7074808475337,16.7381942732236,17.6339395215198,18.9544154363008,16.7930246297497,17.6134741397463,18.7820656552664 +"P91927",18.1525409910733,19.5586497018518,21.2884848369582,17.9408676802082,19.2413617976187,20.9484953563928,17.9631585365414,19.1353216667059,20.9192568624935,17.5969478117883,18.9258968659512,20.5608845223199,17.9906172798726,19.2882073399683,20.9792870006447,17.4989808773319,18.7013914153376,20.0828617256871 +"P91941",22.4872388110296,23.1548780361271,23.9516846036075,22.3695374270847,23.0949321636441,23.7871467333282,22.3255736512476,23.030712032422,23.8754823428668,22.0930818164574,23.057364271372,23.9009242702119,22.5090442067575,23.2196568347248,23.9290766073689,22.1995385915802,22.9634257098075,23.5595396715792 +"P92177",23.5610006558118,23.7804921490344,25.2940123252552,23.5190442859254,23.9022871042605,25.3826932967757,23.2328682960542,23.7123250676836,25.1307631225848,23.5145974200161,23.8054027167943,25.3003770318118,22.9804423819471,23.701141857992,25.0833245860071,23.4756692691077,23.8246394618806,25.1512704160665 +"P92181",16.0279660805957,16.5631241006397,17.0532292319138,16.016046118991,16.4933345995882,17.008426918301,16.1363037943101,16.284527318551,16.9007390723031,15.97562725701,16.5826779673904,17.0822456034107,16.1604945905594,16.4356368821167,16.6973364291587,16.168444050504,16.5435199328207,16.9051385350929 +"P92204",14.2914805711778,16.0897518296284,17.0937005602467,14.6013208417986,16.3100717566426,17.3092470376973,14.1000595300173,16.3289640102146,17.0476830271961,14.4861220099608,16.0903999312923,17.0493993698033,13.6210255412361,16.223243659085,16.997850602469,14.5189670490345,16.2723707462224,17.1373610072846 +"Q00174",20.8377042562478,21.5880281801189,22.9439235060321,20.9735187709996,21.6751411297018,22.9443966897769,21.2361506534682,21.9322056048808,23.2896831157718,21.017395835503,21.749700440234,23.0689582186169,21.1926133878665,21.9413208391791,23.1803060169965,21.167980095502,21.9723376145206,23.2017303187174 +"Q01637",14.5647012065664,15.5711356109244,16.6804995518417,14.7047722124458,15.8440923380586,16.7437300207025,15.1000776804279,16.0930111953412,17.1360286406583,14.9896040868119,16.1286153790127,17.1058256917294,15.1758294879283,16.2015488360241,17.2153830138274,15.2489147233687,16.0981902772536,17.0795172398594 +"Q02748",17.9596180679771,19.4785294365585,21.5612078614944,17.6488362234066,19.2211646640265,21.1914638156292,17.8737124949956,19.4643951097816,21.3406006065778,17.7983854816479,19.3520977302484,21.3176937596428,18.0843066031323,19.7108787531386,21.8218455074666,17.8066342531079,19.3607945511592,21.2094442222635 +"Q02910",16.5298329843102,14.9460691621482,17.9804591772973,16.1575028967396,14.8053440997276,17.8107699683079,16.0865373625629,14.6437080334874,17.8047953512343,16.3016681391234,15.274933775952,18.0540471801526,16.5198135358058,13.8329424895055,17.9527036529726,16.1153519596338,14.5785106258686,17.8617261250651 +"Q03427",20.966571933348,21.3989276304866,23.0475374611147,21.0291541374649,21.4292284318215,22.9706754588762,20.9257570715878,21.3547146038257,22.9784120729263,20.7841913205431,21.3721130114191,22.9135155169838,20.8821579329737,21.3157201741808,22.8908475877911,20.8630366481158,21.226276116197,22.8214655216693 +"Q05856",14.5829965656219,11.2372018555522,15.1977140517333,14.3839685265673,11.0280111534733,15.2935094015715,14.6392551304787,11.0718360651067,15.3261290767166,14.5747969110049,11.4520223954431,15.390665515279,14.3620603451599,10.979902011139,14.944006456201,14.6447246875752,11.7906255492104,15.4827908886006 +"Q07093",13.9505634752689,14.8783861847169,15.2497445673386,13.7082119324613,14.5572929508784,15.024336912158,14.0252537625783,14.6695656213369,14.9367025495149,14.1302831623974,14.6424239195686,14.995819898156,13.8289001417244,15.0487333814775,15.4700927517482,13.8975807790541,14.6448044707162,14.6042262267726 +"Q08012",18.9362337563414,18.5141645417285,20.377042366649,18.5946384736481,18.4037283609229,20.2314943047026,18.7174038689817,18.6013931163512,20.3431008985065,18.6212947025426,18.4505997445389,20.007126066134,18.5924128728431,18.7119572581926,20.348154192451,18.7574235642445,18.7447572907832,20.3187154223276 +"Q09101",13.9185350091325,15.4223729154506,13.9218961522446,14.121069807908,15.7868975785607,14.2516186147793,14.0202014590952,15.5969636026122,13.9948103515701,14.0309848122637,15.7269805713993,14.3446222404197,13.7786116448475,15.8180205607675,14.3052609948323,14.1629655159074,16.0363506068715,14.6373839865868 +"Q0E8C8",15.4548970388924,18.0062400216786,19.3013796714345,15.5414300836209,17.8292429409342,19.2564397798554,15.5823151923435,18.1193342566949,19.1287556410133,15.3856081720481,17.8560015865179,19.205306437526,15.6503085935928,18.0334978952768,19.2599206618611,15.9827823746808,18.1747425348957,19.3239740889887 +"Q0E8E8",20.4627836173736,21.3698765473729,22.6830605109405,20.2028544657171,21.2884013970754,22.7003444943773,20.3396480804595,21.3161206599788,22.5534973098871,20.3654850443351,21.3198250683221,22.841819397851,21.0345960986489,21.8183706818631,23.4485464137876,20.7547371216297,21.8750399219295,23.2081996443605 +"Q0E8P5",18.1237310390637,16.4366935984191,18.8085897973326,18.0099503242082,16.5883151196547,18.8248584371798,17.9394132427398,16.3107354039466,18.6949815218784,17.881617208027,16.4247640164273,18.703471722766,17.8650487533767,16.518320467874,18.636891170616,18.1853879917437,16.3440458276853,18.7946488093732 +"Q0E8U4",15.3535627592389,17.1182274117281,16.8164066499365,15.0965864332377,16.9702543912972,16.6140523777436,15.0423492556485,17.0319797455896,16.6609615917379,15.2596657050788,16.9169277143605,16.5392880668152,14.4230827716139,17.0173698731926,16.8214258476804,14.5993289543996,16.9540083691769,16.6392098784227 +"Q0E8V7",19.9145972815406,18.9895930765375,20.6361624726478,20.184536847969,18.9534772654204,20.5064138080623,19.654263387378,18.8498521322103,20.4745434274493,19.9133797758655,18.9702775426941,20.3473755946039,19.0860892191066,18.9059861713767,20.3039886961906,19.6482896586689,18.9531479959094,20.3568480552374 +"Q0E8X7",19.2799967359401,21.3881022123121,22.4906899751791,19.2587047649428,21.2034062126709,22.5813607830516,19.5161349975223,21.0920796458692,22.4062561097126,19.2631781250982,21.2387993867141,22.861068248255,19.6495908148648,20.9454910632508,22.5327144534763,19.2024109651948,20.9916560651949,22.2871522240571 +"Q0E8X8",18.7057911582463,19.511382617622,20.4510753472575,19.0201261202746,19.8257877809681,20.648638615368,18.6101214279286,19.1443877618482,20.2460675837822,19.3701898848641,20.1196036123553,21.1711128252001,18.7341006793918,19.2943788588659,20.2303665147724,19.9099888040511,20.2036006984287,21.2391679801629 +"Q0E980",17.2962082843489,18.6199574585155,19.2591114565614,17.3437258579435,18.6205851971411,19.0307369703576,17.4723114080369,18.5568558279375,19.2797104176159,17.2730673956332,18.5666183875972,19.2327351446801,17.4001883510861,18.5332297057463,18.9519748546902,17.349222729102,18.7477825181772,19.1118331324982 +"Q0E9B6",17.1224924636491,19.2480649963589,20.2841911960024,17.007743506776,19.1046600159961,20.2342338733058,17.4893191167973,19.7242376636498,20.7493002413386,17.4776548661653,19.5598775394998,20.5637286375355,17.3398928530086,19.656812825108,20.8134825146998,17.5454916810885,19.5440723364586,20.59649388606 +"Q0E9B7",10.9573286349668,12.4940323556094,14.8324496713155,11.7532487988757,12.256254162621,14.9674697668305,11.56551468958,12.0030283470039,14.7650465463544,11.6322633300618,12.9233313415177,14.4201962902726,11.3177790477461,12.1002069034804,14.7067126003182,11.0799957043401,11.5955428328486,14.9206764552628 +"Q0E9F9",17.2399685572583,19.0135763461882,19.7075847673618,16.5365026296357,18.7673831808285,19.300416633056,17.1554907629712,19.1527994584732,19.7132437357371,16.8357472743506,18.7149273363964,19.4792245458264,16.9086672169219,18.9339497123444,19.3360116753992,16.8666024017267,19.0064132495686,19.476538925195 +"Q0KHZ6",22.2680295072584,22.7129285624781,24.5988865447243,22.426012914797,22.8196165441696,24.5406779759219,22.152372363757,22.6178252141477,24.3783137527589,22.1379678548967,22.609156941394,24.34353801487,22.1923663357391,22.7418347243035,24.384861710667,21.9801709439645,22.4061536918736,24.0227793262583 +"Q0KI15",15.4489327127709,16.2967244954805,15.1595678179725,15.5276012552289,16.1406255977653,15.1174360964439,15.3286250049676,16.1154671248434,15.056421213346,15.5014902210894,16.0765981283424,15.3731409390627,15.6401692787342,16.1614470595397,15.3412368105821,15.5167705017172,16.0226531644224,15.041870061235 +"Q0KI81",13.8578827408359,16.0213731596033,17.087943469625,14.1780174864403,16.0931967417729,17.1103439267536,13.5602688748891,15.9436771051619,17.0190898020182,13.73999432647,16.0041767367512,16.8809324305168,13.7516807323013,16.1024579324476,16.9838270458984,13.9854259103016,16.0022188759484,16.9323456531228 +"Q0KI98",15.5088711216707,16.3675961851743,18.0108536598792,15.2824643537603,16.4079086674825,17.8239478521814,15.442173554757,16.5143617595595,17.8123184182512,15.3726717242209,16.5588228655404,17.7823597461377,15.5621457468057,16.6863011829595,17.9799841923033,15.8197986507519,16.5439017794271,17.785966253812 +"Q0KIE7",12.5986218998658,13.007370420264,16.5278634717242,12.3513795484578,12.3489348139535,15.9909165041841,12.4239171251133,13.3126200947523,16.1579987958397,12.3287399618466,12.7838344497948,16.310555916285,12.8913984213632,14.0922199482,16.5502195507532,12.7590823110332,13.9305655107475,16.3870853494819 +"Q23970",21.0877907359998,21.2831522439044,22.1178060320744,21.373327924994,21.6103088834861,22.3807389820577,21.00587513264,21.3260284095003,22.2274689274232,21.1672443803448,21.4846796087332,22.2370725271993,20.5222813598904,21.2041096142037,21.6872254642426,20.8265234852921,21.1451706450881,21.6976837907807 +"Q23983",21.6324239031041,22.0592692083237,23.5413322782248,21.7139551000057,22.2273268412406,23.6250866776035,21.3540648514025,21.9505595619418,23.2871916222473,21.5246131768006,22.0067454940578,23.3763210256704,21.2599437565064,22.0663256703763,23.4145411773134,21.3806797217871,22.1775889418386,23.4433451650964 +"Q24050",15.1113916326325,16.6138331118824,18.2484902834213,15.0843926987644,16.71418629729,18.3150351174762,15.0672349237256,16.5549086984082,18.2475627753653,15.1044920955003,16.7057259779974,18.1608650803915,14.9309286162401,16.5860028433243,18.1234579633218,15.2102723816132,16.6319806520594,17.9858416370791 +"Q24090",14.7793127772266,15.3415863676534,16.7062658510821,15.2099296875984,15.6933494013214,16.8823274225621,14.7886336982264,15.5531598470576,16.7818072473121,15.3972085540852,15.7297891728128,16.8651295530011,14.7743293591309,15.724619911766,16.7405548838083,15.4651743250759,15.7859827266436,16.9571595418723 +"Q24185",17.79962245137,18.6122453932575,19.8886064777531,18.0041281209266,18.6384662722854,19.8106409876808,17.8291854659466,18.3944346498334,19.6586967019806,17.778768268487,18.5583905879683,19.6981425270174,17.9358821687792,18.4165111272681,19.5864542644086,17.9709711850823,18.432400230719,19.5376466141708 +"Q24238",14.966723469995,16.0482121092446,17.5344416449738,14.9164304149914,16.1623002247703,17.45390609422,15.175517064548,16.3426449493487,17.7301355628933,15.1908354196652,16.3809586093377,18.0025067949094,15.4233133727792,16.4905177097217,17.8441341820351,14.9781829329388,16.3475614846161,17.8308653734901 +"Q24253",17.1062835190602,19.2203921362543,19.3209888956523,16.7676431930477,19.2162424633473,19.371087603548,17.4336270498128,19.7075604754225,19.6295444793941,17.427828754015,19.669156743671,19.9000224175024,17.5390300574609,19.9877214336112,20.2153914072304,17.8879576748426,19.8768459360678,20.0325582423023 +"Q24276",18.0674848586373,18.5948973975908,20.4297740304861,18.1078806797422,18.4832366820008,20.2457491186043,17.6338273299658,18.203550408019,19.9924588103442,17.4455275923948,18.0861890961633,19.8525746207022,17.550876061341,18.3239977533435,19.811911640698,17.4329138064371,18.0377406960923,19.4875657440267 +"Q24297",16.8107907677953,16.0878165484327,17.5649733345329,16.9055509236234,16.1886954116657,17.8402129672248,17.0970763180922,16.2059847287322,17.5520284646518,17.0467664824725,16.339124043929,17.7446719987241,17.2099495953957,16.3442418006456,17.5696348279212,17.3334659840346,16.5302527675274,17.7913126995189 +"Q24298",17.8860170346339,19.5808119301392,20.6605030094669,17.8954538415167,19.7483439841157,20.6386297121766,17.7884271434787,19.533361219676,20.6044794678212,17.835161602568,19.7314292130208,20.7989614103347,17.6720487738002,19.665272694467,20.5705453052819,18.0094186976783,19.7932043925185,20.6617525374515 +"Q24319",13.145046612991,16.8135501690642,19.0103313071736,13.0316012108757,16.6404463417772,18.7227195466279,13.3135169802225,16.6752547615958,18.8422845177468,13.3159457211085,16.664629121669,18.726810992321,13.527267732596,17.2437330909595,19.328175177707,13.7066332376568,16.7252930643897,18.9963830464138 +"Q24372",15.0509223512034,16.544601540259,19.2919129382347,14.8860107924656,16.1093728925373,19.2693818765688,14.9217822190863,16.3651616833482,19.0116015535722,14.9637914417421,16.3468197410721,19.1921201417318,14.9774815147608,16.573243465155,19.5648093361141,15.0810121838652,16.8732644513057,19.3138489741938 +"Q24400",20.6346192389638,21.3039990313887,23.1651057236743,20.3496433645164,20.9314398182358,22.6101479176312,20.7248674124648,21.2660743972308,23.1339132557804,20.1805483904077,20.8350229677442,22.6763468312354,20.3913339659188,21.2487510089637,23.0359216541243,20.1614497665106,21.0351604714424,22.5865686360666 +"Q24439",23.1947471978891,24.1503778297038,26.0366619497846,23.0617760125902,24.0414746231726,26.0149755244528,23.0852270446899,24.0086221576459,25.8344105453205,22.9447354467063,23.8920193583276,25.8299467562125,23.0037747380214,23.9170241317706,25.8817016416016,22.8674137127986,23.7564408894807,25.6254115553821 +"Q24478",16.8643246525693,17.3149744907748,18.7467567790692,16.7962971611229,17.2530251715821,18.4880915578947,16.7206446446359,17.2429808483501,18.5166619380911,16.5413554992559,17.0952381285342,18.1045233042333,16.7979479920249,17.3003239286885,18.5789759377804,15.9488559341897,16.9360311462752,17.5815888139719 +"Q24492",14.7233662928802,14.866843306434,16.1144109480062,14.4276705332629,14.8520209449664,15.9574229751853,14.5901423926994,14.6613639787104,15.9112456875226,14.4886464014669,14.7360456520159,15.9066943556011,14.7980346794167,14.9539316003695,16.372542764584,14.7831522688304,14.6095281281797,16.2995667922162 +"Q24583",19.8431787650786,21.7024942747238,22.3769868123151,19.8127788106045,21.831726451973,22.4340009751098,19.6794765831931,21.4909949824781,22.2533130835093,19.8867141730611,21.6612536618023,22.4182745662148,19.7598495575479,21.49326413769,22.1439113124581,19.7787147849119,21.4911309645849,22.1984431335162 +"Q26377",15.5798634519193,16.9408256068042,18.1135797058738,15.6790836218433,16.9330542517094,17.9614660877491,15.267817448841,16.7128736581899,17.9192105147582,15.4502296260309,16.8707778266665,17.8479175569791,14.9988869781742,16.9669240126231,17.9125037273876,15.8390289357171,17.1747988277733,17.871641977106 +"Q27268",18.059944361475,19.1748050047873,19.3748339916387,18.0910822447087,19.1504217697133,19.4328187463391,18.1840318879708,19.3267173880617,19.3386898211652,18.1254876243465,19.3814332309893,19.5005701002564,18.0519824901014,19.4165692820516,19.608122562242,18.2461105895963,20.1208899463595,19.681345480645 +"Q27272",15.1672601484284,15.8124369644894,16.4553315275354,14.9964892529097,15.7765718541467,16.4083189895582,15.4114685915986,15.6593140094793,16.4468191757843,15.0544362880759,16.210948640711,16.4352150840873,14.9200332853575,15.3482163596641,15.9523673256113,14.5553930244318,15.6520665232039,16.1816778977524 +"Q27377",19.569679081327,19.7013881375687,20.9215857040248,19.8902701842079,20.1533694233606,21.001238700829,19.5590798086955,19.8870411512604,21.1057307369022,19.663312286895,19.8984096044708,20.7692398378483,19.050901477811,19.7587402725261,20.6568623556672,19.4192750117671,19.5434098513842,20.2714201103597 +"Q2MGK7",16.6319845066886,16.9440444435023,18.0464827106184,16.5667632828856,17.0543417978439,18.270720952295,16.3328746037179,16.694867636124,17.687192993768,16.6027210752007,16.7330123054521,17.9321618005677,16.4543109168354,16.5766026755802,17.5191802839174,16.6601287544349,16.6440506710663,18.0937458381476 +"Q3YMU0",22.553735973404,22.9526001522009,23.9976127948249,22.6074115596071,23.030440943904,23.9395207649914,22.5262046230822,22.9067973255758,23.95357148231,22.5571163642823,23.0319762222954,24.0507770338387,22.4888827501281,22.9573675527236,23.8921107145992,22.5226045996422,22.8811906541159,23.854212602179 +"Q494G8",13.5915852038791,15.2654074987531,16.5086176996943,13.8670534367455,15.5441186662101,16.4750533795712,13.4095367501123,15.3393386206389,16.1973993920252,13.6711049135838,15.261604640483,16.3346519039362,13.6990944642402,15.3280131369925,16.3626929907707,13.5952914538579,15.3401099094241,16.2645258094114 +"Q4QPU3",11.8342304312569,13.8489379221742,16.5473771291161,13.2300282299376,14.1853276855287,16.304941405072,12.6982838319663,14.1499054926769,16.3443408021584,12.6630258965,14.3882048097769,16.7408684450185,12.5892363352272,14.5605489571935,16.2188201056972,12.7279066130753,14.8582631742657,16.7174593653885 +"Q4QQ70",16.2199127705538,15.810108490183,16.3521917642678,16.3839851245539,16.087794999273,16.4699024326237,16.2755742675873,15.7109747797876,16.107394771904,16.2252023596296,16.0403371396205,16.2076280561819,16.1099051916553,15.9497604432612,15.8997026445253,16.2094201924982,16.0398062602615,15.9842399164419 +"Q4V5H1",14.6645286709892,13.8751168321505,16.0232776752885,14.6000254418926,13.9165814219596,15.9037436152615,14.6354164317064,14.1532253572112,16.3834696526801,14.9967461198285,14.1534925241857,16.1677213267238,14.4086877513206,14.2511314252556,16.3519116171661,14.8157978104277,13.997041914205,16.2473051411504 +"Q4V5I9",15.6921514843633,16.1295846152413,17.0974562857951,15.4201732918629,15.5859790045908,16.6874767615361,15.2005348426009,15.9560454358231,16.9543266958447,15.1281102425829,15.6756813540694,16.5372786539612,15.637540170905,16.0493271545823,16.734667610724,15.4384761203362,15.7930739241283,16.9887992804485 +"Q4V6M1",17.042916720237,17.8991079316616,19.7479832049376,17.0083857230881,17.9811020601621,19.8032934496504,17.0348980404386,17.8961248629156,19.632902840603,17.0601488730982,17.9649799572983,19.7477670386538,17.0519110104492,17.7893102400104,19.521497097223,17.2666154841791,17.9760714208556,19.5624220921803 +"Q500Y7",20.2158653917433,19.7534386047488,20.9075829411845,19.8237616095387,19.7141085060072,20.7994143871644,19.9319801277959,19.5731245539206,20.5928979971394,19.7506608051461,19.510089437017,20.4697497228087,19.8809652047025,19.5259086501436,20.6770186404073,19.8079218837263,19.4446105547869,20.565530472494 +"Q59E04",15.105646335722,16.0519194664558,17.1620070602585,15.44955008226,16.4363372208259,17.7838468949001,15.2317763631884,16.1771622020371,17.6039794577806,15.3751225337701,16.4008174000839,17.7774842890037,15.2256312982343,16.2186087203625,17.3512951795471,15.266604014076,16.8521317676546,17.5722231278354 +"Q59E14",13.5562221416517,15.0090343239125,14.6478773153688,13.1897593262769,15.4197144131154,14.8776088269902,13.5821161272862,15.43168962327,14.6358783766606,13.8124141573571,15.5127580460382,15.0312644750521,13.5688034849453,15.2539140366558,14.5425673537925,13.672748768419,15.6570722691119,14.9931140593546 +"Q5LJT3",16.5426453659855,16.5287430298944,18.4161675612351,16.6592479929262,16.3267903715771,18.1480316089449,16.4527735808093,16.6934007735366,18.1459303736413,16.3152930538306,16.4233184226031,18.0838743634759,16.4372944480242,16.8555135303545,18.384102370813,16.5592184804813,16.3017269830243,18.058966196574 +"Q5U117",13.2708262506677,15.2384488891054,15.3371254419461,13.2250915797642,14.4273620591546,15.0021591138408,13.3188412368693,15.1954135175665,15.2845798978505,13.0389289860366,14.9889450150415,15.2591513783097,13.9009744622799,15.554919845456,15.8404179964652,13.5834064682172,14.993278598731,15.4039986677539 +"Q5U126",20.4617895266313,21.5320215784815,22.4406311090872,20.9351455904443,21.8901545036738,22.81547170046,20.3985572008563,21.451785582143,22.516491103935,20.5173796728285,21.7477662301843,22.8872236315516,20.497436575219,21.5989133556859,22.3270213192754,20.6040122928017,21.843653753974,22.6535692636079 +"Q5U1B0",14.8966227782063,15.751818977697,14.8554590202122,14.3598768204726,14.883388944917,14.4449501140709,14.8182216720125,15.579698224297,14.377145781098,14.4683173168621,14.88484127397,14.424080910239,14.7171157761631,15.038137393144,14.0691184032333,14.5093248034451,14.654563260779,14.1191482100598 +"Q6AWN0",18.2113973139517,18.5423710514859,19.2456097950472,17.7322088742089,18.131934330465,18.7959548395755,18.0179897239141,18.5586583573165,19.2333026117243,17.6051402224557,18.0982808826717,18.5700170535914,17.9097990667864,18.5350950868825,19.1716064674761,17.9058719664091,18.2156189091869,18.711439836214 +"Q6IDF5",18.770132202278,19.6269869932745,20.8832461169102,18.705879166723,19.6624922524796,20.7043666015304,18.622689517313,19.4973524059511,20.7185402308496,18.3002883292981,19.6709687773311,20.6614781238526,18.7554048416879,19.5782447210771,20.7213544781363,18.2775617458411,19.5363090271855,20.3802089194402 +"Q6IGM9",14.7485475525511,15.9996020313374,15.4660648725465,14.7786489700902,14.5044199991918,15.4036274066236,14.6680614597165,14.1382553250085,14.984249460467,14.5040972444034,14.2357532141871,15.1125002125139,14.6354881115531,13.8931028147487,15.2313902641697,14.404446453712,13.7932822547188,14.9504293991555 +"Q6IGN6",15.6164254609112,16.6498814883734,17.9793523642176,15.7662309997925,16.728418821005,17.9528699947697,15.6297674837379,16.5574819723357,17.912457022247,15.5376000045957,16.7170511577853,17.959987812478,15.5514144948895,16.668919391117,17.8676437635762,15.3770792551838,17.4997195094304,17.7742840691807 +"Q6IGW6",15.4805873216172,15.7947478109252,15.8581708533712,15.0566340756784,15.8771424317728,15.880408237741,15.1215193194146,16.0392943241407,15.6816663562129,15.466848763013,16.1275245338879,16.1291819366328,15.3480146297678,15.9942184265905,15.8072446722541,15.1787185726665,15.9818180971506,15.5801406850149 +"Q6IHY5",20.1307196573957,20.8886308764122,22.1623830030475,20.1791048674321,20.8535275474609,22.1384155552667,20.0547069479931,20.6551317378397,21.9847623581882,19.6951987575948,20.4053369872889,21.8315410407601,19.9661018993515,20.6554872958936,21.899741199214,20.1117657439653,20.5225317988441,21.8842682853335 +"Q6NL44",13.775060615189,16.397159137381,15.4190138363948,13.3180751040597,16.5325611915734,15.7004777621347,13.7111129046895,16.5757369238581,15.324046083066,13.7145312449592,16.4543500591849,15.5648363327045,13.7732783833862,16.6139792125515,15.6215638863577,14.3675900323219,16.5294872575152,15.6734239630383 +"Q6NLJ9",14.7397899259978,14.6866094967881,16.4614008755458,14.6216173377769,14.9469500550076,16.4391703402794,14.643396325072,14.4271919899016,16.1056200506099,14.3656853129703,14.4831670878466,15.8758107300072,14.0393097418071,14.5784417123388,16.1043379543197,14.8586385397192,14.9930100754124,16.1993752144976 +"Q6NMY2",17.4557634275719,20.2134500201875,21.2593307241276,18.1053100001883,20.6193666529033,21.8459356497288,17.7897010067534,20.3729003417326,21.3101907915627,18.1166556960583,21.000286025071,22.0778251244102,18.0635459557306,20.8906430821067,21.9715519391805,18.1868469692872,20.8035260293427,21.9450125093704 +"Q6NP72",17.3601204810528,19.4545500867529,19.4420020485975,17.3727710996118,19.4111712971959,19.2736681066197,17.1712123243666,19.6068189982869,19.3946726180944,17.293223411429,19.4369464208082,19.3512961945796,16.9863933344747,19.8221548801871,19.4746013810327,17.3869885882395,19.7607964106843,19.3907316158138 +"Q6WV19",13.2242796210129,13.5527368226114,13.8437626629018,13.1127928577494,13.5817619068547,13.6521801344264,13.3072745463249,13.7840154845612,13.5474820207176,13.4274739623984,14.0315933011385,14.0169765485006,13.3588499402558,13.9580319580454,13.6381956601371,13.4981402214336,12.9574669046647,12.9951668167744 +"Q709R6",12.7708689593863,15.9104836195062,17.0972522834803,13.2637129607149,15.7515098154775,17.0317004363983,12.5264359492659,15.5235233066311,16.8312692054784,12.7334649352807,15.6395450083101,16.9569924668576,12.6922564531177,15.687971580225,16.9811078217179,12.3775176553105,15.1621165365349,16.843765779862 +"Q70PY2",16.0364822045292,17.2169377733913,17.3054601593184,16.3359023189605,17.6705848886989,17.7690992406363,16.8248623792729,17.8861701234576,18.1425942119977,16.4603683770186,17.7127922100701,17.9395082611979,16.698107152702,17.8388644374557,18.034282594371,16.0010881304314,17.1865749730245,17.2820037096585 +"Q76NQ0",13.1570852991421,14.8912197209157,15.7365231816837,12.1615307558256,14.5403731405965,15.4445833873752,12.8762495816066,15.0578906618449,15.6716630470245,12.8244202156043,15.0746216217827,15.8737506694606,12.6448744132362,15.3507469897921,16.0013210413688,12.6287477651655,15.113813283934,16.230887483455 +"Q7JNE1",16.5671705631531,17.9229370424859,18.8711227912554,16.7431035588226,18.1762011050564,18.9914240904039,16.5819051279133,17.9069875714478,18.8660438768847,16.5079570635988,17.9556088420774,18.8404348092523,16.4794661227641,17.9246608173077,18.6637712100581,16.578667719324,17.939444875212,18.8160225140063 +"Q7JPS2",20.2785958859571,20.3748388671967,21.7248933339691,20.6753682372133,20.6743402524323,21.8874084982803,19.8434685917325,19.9789336780526,21.1730436161954,20.1721789022134,20.2968820577766,21.3022695229265,19.6730305009431,20.2649494389644,21.2414581889678,20.5409273545948,20.6554859956024,21.7370476941699 +"Q7JQR3",18.1536817860875,19.3805832894658,20.470077250971,18.0915890101793,19.1980995637479,20.2057625188675,18.0081119981798,19.2770739775804,20.2434543725919,17.7826299759778,19.0435843019438,19.8731894213246,17.7444287955041,19.09751351468,20.0183710591327,17.8674309347265,19.0607408572951,19.9460613843445 +"Q7JQW6",13.6770419821026,15.9280406095022,18.1184727851075,13.7734885067685,15.9630281254484,17.9974611735849,13.7548838226737,15.8213867726448,17.9945971845169,13.4385463409302,15.8889252348552,17.9087433435485,13.799602662424,15.8758734826174,18.0485873495044,13.7262674759201,16.0524894795749,17.8649165913977 +"Q7JR49",17.8061482147417,18.8582814866442,20.199976571012,17.7529859968807,18.7931867302778,20.0892291346143,17.686672702919,18.936775166123,20.1637114150384,17.5372219637311,18.8848944963126,20.0088667649903,17.8272663364263,18.9405206420736,20.145450229664,17.324763533349,18.7168929091412,20.0217444105355 +"Q7JR58",21.8659156538437,22.4090769147915,24.2553992709769,21.9852719919255,22.6218285474093,24.4066289945514,21.6715041979327,22.3105544754682,23.9100866932508,22.0015586263811,22.5816677012518,24.247475856061,21.7780704421174,22.3579444470034,24.1176525701672,21.8326506957109,22.3054020837805,24.0128550605334 +"Q7JRN6",14.1708953419926,13.9860088379106,16.4486367034181,14.6199567375005,14.0693120970291,16.7963183382578,14.0235767461781,13.6677736231383,16.1785578926908,14.1490681633711,13.7740505762547,16.2955197263102,13.8591692515299,13.1742574797854,15.823820367738,13.8509416920386,14.1000169172337,16.0098021522678 +"Q7JUN9",13.7363016679393,14.1256416923289,13.5310370418139,12.5580361042967,14.1460147992141,13.5272187992613,12.5886938996581,14.0688255304168,13.205193762304,13.5332624791312,14.4628811447167,13.823341278751,11.8263061247489,14.1726058972062,13.3285837988339,12.105422877967,13.9961175508618,13.7153234881006 +"Q7JUS9",19.0448726505279,20.3058689683748,21.5443766072614,18.758692771099,20.0554028814292,21.3844028206593,19.2794643441061,20.4867921303964,21.6280372039588,18.728224130988,20.0200518242565,21.5256631011865,19.7344770837383,20.8692465557604,22.1973672236618,19.5309632966997,20.8658240388018,22.1617660527501 +"Q7JV09",14.6378041766119,14.6004672905155,16.3877698250634,14.7763803446388,14.4540631894018,16.2976409127623,14.8793375501825,14.378895783103,16.4650845093214,14.895119233073,14.5611120467914,16.2723085679138,14.6235163157986,14.4640649793677,16.2780407806304,14.5405087920917,14.1839581744896,16.1924604818919 +"Q7JV69",13.6420397302098,17.1178351080136,18.1269736795504,13.1696423292511,16.711809032044,17.976273347813,13.6067135280602,16.8865601563073,17.8753775523731,13.1772313005768,16.801780741252,17.9448414248306,13.899822349517,17.3297323342114,18.1922209687907,13.295118108415,16.9063336110175,18.0235314514552 +"Q7JVG2",14.1866111989626,13.5139401847136,16.3316075807697,14.8203876902014,13.6380599682607,16.2913181224184,14.6401156765899,13.870844171135,16.1124174150089,14.6463626767274,13.8540842448262,16.1977222292089,15.0065690772576,13.6312912432711,16.0500305889673,14.4834929231706,13.5530715748261,16.0561074074179 +"Q7JVH6",18.0207640810516,18.5724029917201,20.0742697248383,18.0050109490186,18.7287838264167,20.221719574844,18.0416180341615,18.7229752468919,20.1213163452172,17.9370514497462,18.746139685748,20.1908978515379,18.0423355373705,18.8908143938094,20.2727871800453,18.0941743327423,18.7416896641365,20.2685993996692 +"Q7JVI6",16.946674735844,16.5275415781981,18.4470164534889,17.0238728861341,16.5138528899429,18.5879991795493,17.2631448540767,16.8747393601067,18.5145203299744,17.368278762023,16.7517084133067,18.6747307919747,17.1920846396672,17.0591030542466,18.5063017232015,17.1121135326525,16.6985130134129,18.6215480056008 +"Q7JVK6",16.0951382932655,17.077540670465,18.4789367282888,15.9448326242724,17.0147498172369,18.5400242070198,16.0826822418606,17.2361738104785,18.6431415419,16.3551938844972,17.2604782281456,18.9523605623454,16.3114242364908,17.4564338912757,18.5321875127112,16.401938768004,17.51841924915,18.8465891998195 +"Q7JVK8",17.844749209584,19.7131770927481,19.8282808393431,18.0843834995531,19.7841856795343,19.8190541870127,17.9259594221659,19.613214989878,19.8343330343051,17.9247173640931,19.7050553128484,19.7912573127421,17.753288381101,19.8254528771466,19.6881919490803,18.0408107334366,19.748450113892,19.7508722852764 +"Q7JVM1",15.6104524720758,15.5462291825754,15.9210161825842,16.2031299299328,15.7768243760251,16.1643291636414,15.7148144243082,15.2281622835089,15.8235078681664,16.1277037151979,15.7833241602834,16.3437448195034,15.6556430925714,15.2952006493489,16.2087136901838,16.0163419775398,16.0410180200403,16.2072104409146 +"Q7JVZ8",12.5981446446244,17.1280578227827,18.8457645302973,12.0700486596058,17.2766130671933,18.8062387345368,12.5867897626152,17.2134336569554,18.6056324681854,12.2876352269689,17.1826292702722,18.7377660547715,12.1211352918491,17.0750035223164,18.6739177694038,11.6460758416037,16.9767921604347,18.5613724353184 +"Q7JW03",16.6950615175814,16.004545825588,19.0964630308963,16.7624315883175,16.0558137992356,18.7702621307307,16.9525566990271,15.9732424213328,18.7728941570285,16.8117795439173,16.1205180539958,18.5396194346026,16.4967894339267,16.0107815447856,18.5783767953228,16.8902310734059,16.1173305913464,18.4017779329548 +"Q7JWD3",15.1178878700993,18.7258379731076,18.2224987316038,14.7502254175265,18.7214465509099,18.1544916722204,14.7480332997738,18.6420041188427,17.6147820020211,14.6842706548112,18.5181775329499,17.7622986308525,14.871267067235,18.5203558926581,17.8077299449166,14.4710559604694,18.5972884240677,17.8619776180258 +"Q7JWD6",19.3357375287953,20.6613804722032,21.6526993780988,19.3044353269243,20.573470168868,21.6343513769041,19.292435678277,20.4767207767157,21.5692858152914,19.2423260917269,20.4787347910143,21.6789579609163,19.2084079110688,20.4097428215877,21.397994866009,19.3613416791716,20.5526696608533,21.5390654184965 +"Q7JWF1",19.068365314211,20.2350819382036,21.0667934496805,19.3438725196992,20.486323917525,21.35737796883,19.6924162649038,20.7667629161557,21.546419047739,19.7848187492028,20.7208611494191,21.8171137959178,19.7710561106138,20.7805095490778,21.6657093580454,19.6957928039587,20.6514130352518,21.6306209424452 +"Q7JWQ7",13.1456004569379,13.8417015810595,16.7369464736611,12.6824707601055,13.469502264539,16.1593350128809,12.984681262122,13.9560813644533,16.9490631292303,12.9573109244889,13.790019392004,16.5406833496836,12.3190226939213,13.9114287934571,16.6411621055547,12.2112674103655,13.2271311310444,16.1943773875193 +"Q7JWU9",14.8410840232837,14.8535894461757,17.1926879374123,15.0929431209618,15.1414480189755,17.0130442241205,14.584800637398,14.7516089241951,16.8642258187521,15.4520577295359,14.7143568719139,16.6234348587008,14.3695585658328,14.8562343068806,16.7183179968526,14.7488706356946,14.9719422922444,16.3859303798475 +"Q7JWX3",16.9082126532661,17.7900199019313,19.1035916843232,16.6971695885143,17.5410327641079,18.8431649186109,17.2057591589513,17.9878399322152,19.3805363596377,16.7353966167922,17.6303753550625,19.0218841018273,17.0528130340715,17.9914883090961,19.2684008251955,16.9341027001791,17.8234089080967,19.0944320584944 +"Q7JX94",11.5509379391658,13.4801351463991,11.7856860793675,10.9325794349376,12.6814912748078,11.7331513739083,12.3753277025115,13.6150415288254,12.4494012542902,11.1375605611823,13.3004129291035,12.4447790818929,11.2306556296646,13.2522695158757,12.0569866416174,11.6983694766702,13.1899585265382,12.7144578540311 +"Q7JXB9",13.2966857089033,16.1363602531521,19.1815467986946,13.2673065910523,16.0004204125482,18.9838325695429,13.5417826885424,15.8333282644048,19.5409251408249,13.5396199994405,15.9012060119507,19.3663667944777,13.5923150648279,15.7042641142649,19.63078815607,13.3462781878078,15.931506169141,19.1086094274443 +"Q7JXC4",20.8570152456016,21.2432087606156,23.2071031618631,20.7471359883681,21.2804339128851,23.1703389050038,20.6119713472867,21.1050831316052,23.0114811775074,20.5677574619115,21.1141422282988,22.8800962739115,20.6531457130516,21.2136805300697,22.887323370219,20.6434857831569,21.1095082662874,22.8376081739155 +"Q7JXF5",16.8281396919535,18.6258180144849,19.9671833836474,16.9526989288079,18.7702346803992,19.9319004536428,16.8854984659488,18.7900689237403,19.8987827262548,16.7483350692903,18.6982078504788,19.8412663169579,16.8566898058248,18.8544810947612,19.8019024252789,17.0019317852827,18.8190730676491,19.7805647477631 +"Q7JXF7",17.3043146524739,17.2919795639274,19.1681696598309,17.4199497507832,17.1042870531063,19.1049431363658,17.3076759235232,17.1444380743543,18.9647433640901,17.4923326322905,17.2192127012719,19.0429289689374,17.3077577799768,17.033359953472,18.9110811966269,17.6001488372694,17.0530883177602,18.9491295370859 +"Q7JXW8",14.5164193182616,13.7794743901773,16.2034194551524,14.8620143773626,13.471756934953,16.2806225435467,14.5223931928875,13.3498942392614,16.1717797327942,15.0492127366927,13.9523205133141,16.6463877005542,14.6660039392822,12.7437859251248,16.2062263641932,15.2028009397772,13.8276335490364,16.5003052474637 +"Q7JXZ2",16.5043421220449,16.5457143392438,18.7973067520659,16.235079564851,16.5920948688223,18.5135409258605,16.8653291198204,17.2488324308765,19.1534101509069,17.0960392507292,17.1428178285133,18.8012392940057,16.8948230197421,17.3003921975488,19.3441416428456,16.4174937015739,17.4231408725216,19.0441579717432 +"Q7JYH3",17.8057537651873,19.2418208153526,20.5626862129943,17.6835826654196,19.4938974700768,20.5678814798927,17.6822555517614,19.2419779040906,20.3035908052518,17.6261409044517,19.0819454248991,20.2382784355217,18.1119865041749,19.5836529882728,20.6124294629952,18.2387550803166,19.459594934259,20.7338657004952 +"Q7JYW9",15.2373622950224,17.7175192449837,18.3237045447808,14.7072521342566,17.2713730412898,18.0378095706339,15.7422176015709,18.1731661058182,18.9378046159801,15.0834590373984,17.6375281648742,18.3170085254399,15.7500493135037,18.3780042373512,19.0554119551883,15.422691746458,17.9667188388734,18.6308595696904 +"Q7JYX5",13.4756823743854,15.0887308989098,14.8414681495145,13.6813140809484,14.900578319228,15.1923179718265,13.9551373041284,15.2094879040272,15.290795447247,13.8457428124704,15.3307884406851,15.7308375910135,14.2800165078603,15.698588592563,15.9361485083389,14.29706390126,15.7285812421522,15.9999225773991 +"Q7JYZ0",15.5884347430718,18.0566766175665,17.4377949119816,14.9451266605981,18.0388873777856,17.5672287822507,15.203769772421,17.9254982535836,17.3571670192925,15.514684822199,17.9134785668789,17.3390139863186,14.3853723203211,17.6924589972908,17.2318137327201,15.6750134180031,17.9355305604444,17.3969932009768 +"Q7JYZ9",16.2638609592173,18.0145986480034,19.8716744080424,16.2704525214355,18.2737690214918,20.174006139975,16.1083197418338,18.025620015555,19.6786867388564,16.4481984576424,18.3168936761225,20.0427057953481,16.3074025192751,18.0983220535512,19.8485142315742,16.3128756449344,18.1337939694675,19.9691357491893 +"Q7JZF5",16.0776278434225,16.960903347811,17.7439638543719,15.9209318899275,17.0412202276757,17.8626008310133,16.0466905855417,17.0485447921034,17.6729596512132,15.9286602666183,16.9791345256486,17.9664290555415,16.0532021536511,17.0177516094619,17.7162984564614,15.9437233577086,16.9269793901902,17.8157768100237 +"Q7JZK1",20.6756823419337,21.7722015570653,22.4760865088691,20.433285836796,21.8090410191962,22.4738085694184,20.6266755258061,21.7434541938722,22.2168655709087,20.4834333158357,21.6224765276165,22.219160398283,20.5940484986723,21.6894486014926,22.3060719294959,20.480758713097,21.512920444607,22.0568372727746 +"Q7JZN0",15.603357632982,17.539886582303,17.9739670216828,15.1610034126628,16.9399824220802,17.4877539492869,15.4746478213291,17.2052080134774,17.7960619283882,15.4196875987302,17.1845412777058,17.7956830328467,15.6128238692803,17.3103962749124,17.8915708389377,15.6055389269256,17.1000652802961,17.6772542906704 +"Q7JZV0",13.1536060929743,16.176437771418,16.4895929522793,13.0233035260095,16.1689801664609,16.0307209589827,13.0632507734236,15.9886587868324,16.3989616194383,12.6404461754872,15.976541297743,15.9561137210211,13.5982532687032,16.7448051218816,16.6312110061202,13.0892866241258,15.8542035463964,16.0082019763141 +"Q7JZW0",18.9255066420699,19.4037452256021,20.717487865908,18.8960182280275,19.226998084289,20.6336706779326,19.2396110562948,19.3515755395903,20.9434274888013,19.0771134787905,19.4368186519282,20.8516221974475,19.3356598626706,19.3321793359329,20.8266596730019,19.368204799142,19.5671836606153,20.9006859332572 +"Q7JZW2",19.7063903871328,20.8060825132193,21.2428575105735,19.5655038587556,20.7440375097055,21.0306109464413,19.7593889630387,20.8741214422949,21.221794286531,19.553326829021,20.7358620766003,21.1128186540197,19.7872231562537,20.8439447789258,21.203412617066,19.6477135268057,20.6750537978801,21.0034348718205 +"Q7K012",14.6246255293021,14.6808402191964,16.6308967901863,14.7384074275618,14.9530891005656,16.7086094213091,14.7101126821531,15.1230930543535,16.8943937793266,14.6594641758706,15.2802971874499,16.9895039933015,14.6188823836203,14.9850692628817,16.9830368606842,15.2280746972746,15.2553258824933,17.2614096746469 +"Q7K084",22.3209379301148,23.4468256066776,24.804816736243,22.7251015437197,23.9857366684438,25.2030305158769,22.2697687069405,23.5476989378892,24.8980186942909,22.6839043132832,23.9431858980223,25.2665028508151,22.1978570828708,23.55371413909,24.7657694888204,22.4012064931118,23.7494796769075,24.9877815947704 +"Q7K0B6",19.5779309660533,20.3497122665468,20.6447839274078,19.7301035974431,20.3633183449507,20.7839694245553,19.5583310626074,20.3951458040565,20.557172694518,19.6079066201684,20.3488410748287,20.8914440019425,19.4543547004844,20.3594658734528,20.6445238954884,19.5504980442872,20.1290799902468,20.4561457131314 +"Q7K0D8",16.949268374506,17.0272692615851,17.7867024695954,17.137113096469,17.0714671226436,17.8504904946721,17.0649464397314,17.1399812742489,17.8709006584377,17.0278891465668,17.1467891380246,17.7857686456109,16.9089640170853,16.9821508800343,17.6832234966786,17.1146734199079,17.1982998764038,17.7254187037511 +"Q7K0E6",16.6404300678183,15.9632254130774,17.4517335319603,16.4161893666562,15.8575252848284,17.2632262361228,16.7681841704355,16.3036558694118,17.5806959429936,16.6730377968328,15.9091525284104,17.3402340038483,16.6225040922022,16.3901134866809,17.6452811420296,16.8425970591584,16.1160294637126,17.5055073925978 +"Q7K0P0",14.208112699751,16.0272429587319,15.9518440925317,14.1034434818864,16.0149979740965,15.9387431253463,14.0756118293121,16.0534152263169,15.4495871407415,13.7754506918458,15.8258873093048,15.513479533371,14.0207928683968,16.15673642883,16.0044620775002,14.090049597443,15.8940395029862,15.9333152544729 +"Q7K0S5",17.3809585856992,18.3948971347836,19.1511047441487,17.5324527416192,18.5122602695514,19.1658429620097,17.554107224468,18.3498406962252,19.0474864214896,17.3151308447598,18.3126043074377,18.9676807802323,17.5128847602221,18.4352667400732,19.1855668707929,17.4115921156414,18.2847763537387,18.9285794822773 +"Q7K0S6",15.8735007856118,17.4616693446013,18.6443752507157,15.8208095750165,17.4820216103302,18.6531244115553,16.2198321507993,17.940219213153,19.0439477042051,15.6911443201944,17.2818861736399,18.5016739512882,15.8307320853327,17.7285737758864,18.8137954942293,15.6975015108075,17.3402692495821,18.4117782076869 +"Q7K0W4",20.9644032372836,21.3229770825786,23.3028045020364,20.6447878920664,21.0675402289897,22.8434085104936,21.2073572467662,21.3646235470818,23.4877150844634,20.6369408158738,21.091279817437,22.9821413265927,21.0896843778257,21.2492553784159,23.0774956805733,20.7745932846628,20.9940099516612,22.7995754437838 +"Q7K0X9",15.2792279708551,16.9041661867844,18.0031271335393,15.5671835042118,16.9444818540615,17.8962887059821,15.2634062891379,16.8686352900326,17.8109859655385,15.1916619478713,16.9324766215878,17.8600623180761,15.4155350838109,16.9491709465482,17.8233144914282,15.0200807718001,16.707409394374,17.6098135820506 +"Q7K127",17.9830013386481,18.0688345098653,19.1870525199473,18.4604270498875,17.9442806498169,19.5691905672712,18.2382235095591,17.5552342095636,19.4494689035413,18.5648897235422,18.2276209455909,19.8448405382197,18.020031199602,17.2002867819588,19.4894254960159,18.5995576024305,17.9575697135073,19.7369307752997 +"Q7K148",16.507003850649,16.7067377289354,16.6253613334721,16.1294817068932,16.6328170655255,16.3735163183689,16.8188784252603,17.1997492206003,16.7497130311454,16.7042901856474,17.0868261444669,16.78817931012,17.0367314402654,17.3400990910991,17.1374154967693,17.1552096769941,17.3251700672153,16.9737639486762 +"Q7K159",13.1968679086806,16.1611618120438,15.1627931404587,12.9399496952015,15.862793956104,14.9464644973542,13.08720689275,16.2487486820959,14.8563125755544,12.8222215434456,16.0147608334872,14.6398363559485,12.3636746976296,16.2887507014384,14.7950107596961,12.8048540304741,15.9949614841284,14.7942506592639 +"Q7K180",14.2990787611445,17.0569568260314,17.8756677796537,13.9382928595395,17.2092440513623,17.8519400733534,14.1460579788479,17.0261994540658,17.7309393300298,14.2146360160009,17.0992347421923,17.6339501282115,14.206414165064,17.0949113649288,17.8063250213678,13.7823850749421,16.853346665435,17.4943088734285 +"Q7K188",20.9474467909724,21.4967122427217,23.7828783498106,20.9926070156708,21.4690812719146,24.0206585549544,20.7250735747096,21.2144218294807,23.4989008491596,20.8726603353106,21.3903453552534,23.9734973290616,20.4543104550906,21.2708579356797,23.6157280067563,20.7581760707718,21.4595896850481,23.7747288400675 +"Q7K1C3",15.4504988420001,16.9736676128939,18.5184327602905,15.9768306885912,17.0995048173471,18.9243863671874,15.4725408990933,16.8656420636132,18.5288887402834,15.8736897742594,17.132233571695,18.9099441068339,15.5405149898764,16.7977338043194,18.5851440355347,15.880558234513,16.806559759825,18.6566626342923 +"Q7K1C5",16.1007660316743,18.1076771579371,18.4115737829843,16.0816860461758,18.2832004047088,18.5497215240741,16.0208602730134,18.059103429659,18.3594444325183,16.1727468413812,18.0464671970099,18.3359723809185,16.0517383450682,18.1233395509545,18.2134240935926,15.8641017783832,17.9970014202929,18.2082080721313 +"Q7K1H0",15.2039004898995,16.3261934836648,17.5537846396199,15.2115788507175,16.5318821159173,17.5040525861853,15.2260923081022,16.2575914640433,17.3548815720738,15.2310498822866,16.406572227215,17.4893426009935,15.0939111142335,16.2332208876492,17.3458672001488,15.2396710354925,16.2170585177554,17.3176898661954 +"Q7K1M4",15.6698665049664,16.9227796830843,18.533846368129,15.7557808165078,17.1019938255416,18.5080173813724,15.8080071244164,17.1777749215737,18.5920513377972,15.6898560437085,17.1996130565498,18.5565034398119,15.554459956549,17.4977106355631,18.8424225252294,15.6727105093501,17.400442860738,18.7927155897821 +"Q7K1Q7",16.0488022191512,16.7509778963023,17.2034020895477,15.653610588033,16.6480236086771,17.0242283493259,15.9625030983877,16.7324950275755,17.0799214987347,15.6576370988915,16.5435478554788,17.0587881041502,15.8054749463896,16.7419022748855,17.2079290998315,15.8254834108293,16.6802084745263,16.9151229927653 +"Q7K1S1",16.0485325251286,16.8877183639406,16.0980149000554,15.876333693877,17.0589100756255,15.9512744573036,16.3566926116273,17.5354769233515,16.111627618607,16.3022762562942,17.1764001625451,16.2287532950586,16.4473362308712,17.7150978434337,16.3979911246977,16.3439724695037,17.8124512703532,16.1867053835169 +"Q7K1U0",15.2314057668603,17.0966598241865,18.3645550598538,14.9286230196668,16.8071459764722,18.1028704530047,15.1870138221849,17.0994092400457,18.1445509289258,14.8942487388207,17.1205523620847,17.7780516331437,15.1258529985243,16.9287091149301,18.0455587698757,14.9069488476349,16.7338368512277,17.7428198063754 +"Q7K1W5",18.7674264565276,19.4861687735223,21.0760832502746,19.0138980471103,19.6476950428042,21.2525331596417,18.6759114303541,19.3962287456612,20.9121469526842,18.8961938523679,19.5715109945261,21.230480889677,18.4768999691435,19.3647868984536,20.988509534887,18.7573324637176,19.588570568479,21.1073382022802 +"Q7K1Z5",15.5276632750858,15.6315652562367,17.589867396323,15.6691651572688,15.386356771891,17.6531318786572,15.5229255017609,15.0671530821196,17.180840244588,15.5776232634846,15.1803362675958,17.4916321186483,15.2055599648866,14.7817387677038,17.2508298804988,14.9554361052092,14.9101024588228,17.2268235208816 +"Q7K204",14.363717911064,15.3473759821655,15.9137310192429,14.1518126252637,15.4894687843329,15.685341755419,13.9993032071303,14.9982515039307,15.4032916327989,13.4666476240904,15.3889107337607,15.3673093104806,14.1974380835035,15.0830336566048,15.4128130042916,13.1744475384406,14.6746676976736,15.0848309454684 +"Q7K2D2",19.1569411138705,20.1612836429252,21.5862074617667,19.2473180472224,20.252685106844,21.6889035336225,19.1708338459297,20.1177703073016,21.5429929551251,19.4190212204126,20.3227311553692,21.7410921065719,19.2842711641164,20.09633243997,21.529924262758,19.1931122801546,20.3556378797232,21.5559448118886 +"Q7K2E1",16.3396930074405,17.9234533648538,16.9804382304034,16.4881078387926,18.0745719859631,17.1034915253264,17.0238922687143,18.3323980219115,17.5410606636537,16.7616629301474,18.2795742753246,17.7205612065538,16.9478518846381,18.4885086671371,17.7045825709883,16.7359632269695,18.2252910224124,17.2966197446955 +"Q7K2L7",16.8105715876026,19.5891409654316,19.1925875943209,16.680235971939,19.5472292827429,19.1426156632843,16.4074247597863,19.3274078669212,18.7553711819748,16.8423185892913,19.3882973690305,18.9462236890532,16.4690857576276,19.2438914797641,18.8592731835143,15.4820828998361,19.3487793115679,18.9009908249901 +"Q7K2N0",15.2783256203772,15.2049582043019,16.2892333915844,15.3321398358001,15.2166573147471,15.840356328148,15.1714845407314,14.9683235383061,16.2512870406539,14.9584221847763,15.2900415802109,15.8542216497634,15.2069288716857,15.0663103499573,15.9176435056725,15.1390967070345,14.8663396005646,15.9451207982098 +"Q7K2Q8",13.9647984482583,17.2394796552722,17.6778457377637,13.9551973544174,17.2860920786124,17.7218920442215,13.6212442823671,16.9962162376034,17.4191457788562,13.7630248164366,17.2720832345749,17.5768750188152,13.4262974163924,16.9769956832754,17.3310078855287,13.5026405775552,16.8501581767203,17.3678300687715 +"Q7K2W6",17.3605536614894,16.9782204128148,17.5823624826296,16.7412434540325,16.2945372883988,16.7347147920335,17.3060767232971,17.0231408127598,17.1766187655341,16.8380057641301,16.3062517983944,16.5311459952207,17.1334718487324,16.9092517201416,17.0982674593576,16.7811414400841,16.0896042760783,16.3534171112178 +"Q7K3D4",17.7532794143593,17.9374019524333,19.3633898993454,18.0498973439196,18.1274485062118,19.6419342011497,18.0303992116041,17.911922932611,19.3988835561775,18.1773524554514,18.1331751637663,19.6055454424791,17.7014938852061,18.1581862424255,19.6912105649607,18.2008151368662,18.3362160296086,19.6843512382691 +"Q7K3E2",19.370785482045,20.6586558017612,22.5125194987345,19.1223330462168,20.42556348827,22.0756880056703,19.1336375233239,20.5272887339066,22.161805973071,18.8455198689026,20.1524470396544,21.7488489153449,18.9117412651573,20.2962888999648,21.7909499353651,19.0384625865489,20.438918914536,21.9972451284364 +"Q7K3J0",19.3746538287088,20.3279918037683,20.9622678545731,19.5050147765504,20.3971066015765,20.9684140281022,19.6039406693476,20.4899502685296,21.0611383082842,19.4432398582071,20.4308120180697,21.0975411324529,19.5412319571483,20.5442911840625,21.1191758761189,19.8192822840137,20.6160660077848,21.2282318187724 +"Q7K3N4",16.3245298139391,17.0037778757018,17.6509655264138,16.1007543768657,16.8105994203855,17.538821034891,16.6041298326085,17.3139845745702,17.9860401485582,16.3972998433557,17.0138334977389,17.9287390465436,16.602961667223,17.4679187977298,18.05632752245,16.221904325327,17.2413437186189,17.777479199041 +"Q7K3V6",14.7635459756904,16.3372434727048,17.041742034074,14.4521388095035,16.3793742863196,17.1563024183876,14.9126373947054,16.6021465512033,17.1557780397839,15.0036858905163,16.5506295113748,17.3176858087211,15.0804169311214,16.657478501444,17.4441938193845,15.1193317899966,16.82729395164,17.8940873319002 +"Q7K3W2",16.3005742899109,17.4597866427628,18.2072495704132,16.5787080545167,17.6964216971723,18.4088556874752,16.6128319024493,17.8342038038375,18.4942252128175,16.5302007512217,17.8310858329877,18.5663577182734,16.5975416756859,17.852379100482,18.5489317253846,16.6401275736853,17.8482883984784,18.4841256118307 +"Q7K3W4",18.2401272475791,19.5032065972121,20.4515946512854,17.9761888590929,19.5396743462545,20.3858932224455,18.0246847848563,19.5491952060483,20.4837021961801,17.8791175161499,19.4646785774611,20.3163769908114,17.7779313159483,19.6033789623508,20.4362177551232,18.1887589985824,19.5098225326675,20.316277415983 +"Q7K3Z3",19.5534057617491,19.9124360546933,20.5687167979098,19.6546103781845,19.8636191395635,20.4834253298527,19.4378995940849,19.7177896129453,20.3445411861403,19.3665282502018,19.7609117380867,20.3053855159757,19.3622019634497,19.6714075734002,20.2278537455455,19.6101126679603,19.7136879374383,20.2522796458918 +"Q7K485",19.6680027095818,19.964229563704,21.1854610484914,19.6025118502683,20.0154152886442,21.2219835972159,19.9023270629211,20.4664630325022,21.4476173964495,20.0911326080362,20.3961452244897,21.5857772120014,19.8489162611949,20.5052106110682,21.8055784362307,20.0969471165071,20.5649103175447,21.6903612170344 +"Q7K486",16.3040111511474,17.5858892439215,19.0040032719353,16.1070417414053,17.6007892653813,19.0510311583293,16.4304977816237,17.7209329152811,18.91384681515,16.3846550945792,17.6529446378226,19.1531565400764,16.1989346462629,17.4334418890876,18.8165494478271,16.3025274387158,17.4903277633442,18.757069257435 +"Q7K4T8",13.7932697190729,13.9264413832469,12.8606372112233,13.4295490716318,13.5781873576105,12.5990608717918,13.9905155170953,14.3529429041685,13.2691497712201,13.6366672155097,14.0878058805892,12.9584822303783,14.2525573053718,14.9288319411921,13.8242534944241,13.9079231048688,14.3539564907086,12.8412124657049 +"Q7K4Z4",13.5187408916521,15.375285452094,15.7516756742439,13.7180005072722,15.415138521005,15.7929546177047,14.0433999345202,15.4035698863429,15.8008671423486,13.4617552419618,15.2859075944093,15.9080872164407,13.8781428672724,15.2433854348935,15.4835030962428,13.6443939062569,15.3730971154303,15.7055714571374 +"Q7K511",15.0766212546175,16.0503334533876,17.3926668087059,15.5348887336671,16.3922010835999,17.8370495841895,15.6156316537555,16.6176447618113,17.7332226259469,15.8732544880882,16.7341540056523,18.3246977348221,16.2209520375021,17.2443273508685,18.4487093563091,16.1471765396989,16.650498899365,17.9706030849292 +"Q7K519",13.7441828634953,15.915310894294,16.6836675059301,14.0205139826917,15.8184847649065,16.9075844063742,14.1251750267832,16.0156905194571,16.7624948255314,14.2995812357555,15.8146033611568,16.8828991294833,14.2630239777115,16.0313105781632,16.9462836891365,14.6114009815784,15.9541331945429,16.9742090973409 +"Q7K549",11.8416430828232,15.8333809604171,16.2635190233498,12.4994307873039,15.9331065684024,16.0149006888293,12.2247656037337,16.0141688492493,16.2039338643009,12.2862209957413,16.0046468626609,16.2209251828236,11.4561885915889,15.943571772704,15.918318084716,12.5646156209774,16.2177424960733,15.9425058244079 +"Q7K568",16.3356616992798,14.9221648859253,16.4011505794349,16.5528256537375,15.3295437053386,16.5441556533073,16.3046391312486,14.8185294187414,16.5052728390865,16.5520448254831,15.214195129478,17.1465473145739,16.5198395940956,15.3741069307663,16.3074213873103,17.1136972120012,15.4231822456686,16.6441844249337 +"Q7K569",19.0338500372693,20.1699914026839,21.4065510149941,19.002634143144,20.2259027982537,21.571920031004,19.4965601336065,20.8890612125109,22.0736061598259,19.2626867134199,20.4510460539623,21.8605363161269,19.4842150778162,20.8928776598187,22.26866411951,19.4599614343228,20.9644144753335,22.2229441989762 +"Q7K5J8",18.1684243806443,18.479899170609,18.4952547868,18.3391949320765,18.6152328609796,18.305612695617,17.9229149217243,18.0288324617816,18.2102484121051,18.0134979949721,18.2982241731239,18.1257203571158,18.0374251545676,18.2896417794828,18.1208893115223,18.2280635658715,18.3751072558969,18.2389630393687 +"Q7K5K3",21.8535999776624,22.2521245196666,23.775913119358,21.871160037971,22.2704398461732,23.7993294371038,22.0201485746471,22.5122216850525,23.9319833897033,21.7504292938445,22.2556701957007,23.6866653372953,22.1137778714801,22.7932323002972,24.1289185241253,22.0637475746877,22.5839134458413,24.0575159957905 +"Q7K5M0",16.7038306245164,16.8710488355139,17.4428515008148,16.5529462805775,16.4796261278242,17.1838640272147,16.2704090644397,16.6183226544884,17.3871805661803,16.0386883180619,16.211594432112,17.1344275360824,15.8568589120205,17.0010811008291,17.3869241455653,15.8547960988949,16.1447266469045,16.847538574786 +"Q7K5M6",17.4600414465209,17.7025193945966,20.0560872359205,17.4631649170123,17.6286226367444,20.0711162238868,17.2538170377136,17.552746444005,19.8508739208951,17.225862112839,17.2479029433366,19.8224912812695,17.1999944129361,17.5001048015675,19.771958310676,16.9815548070848,17.2570827344379,19.5461250859254 +"Q7K738",18.2033145551286,19.760009019777,21.6718754361257,18.1899887920008,19.7613327783796,21.5789332348694,18.1571665869656,19.6159541486459,21.4235814660003,18.0873908712752,19.6618922440092,21.410077739514,18.090401793671,19.7863103966261,21.4762358501104,18.0529340293719,19.6259692087849,21.3052676926068 +"Q7K860",19.0927688584704,19.6401779613716,22.0434330887784,20.0852889909281,20.8689422290828,22.9686632343916,19.3168476695865,20.0190264878368,22.3153828044586,19.0710263109387,19.8038465472646,21.8377131300997,18.7414731549185,19.5128644130953,21.4430760144319,19.6991104604641,20.5551903757901,22.4600548840518 +"Q7K8X7",18.8329605499845,18.1867721373276,20.8568458825451,18.8277354477436,18.3844362686959,21.1521497473241,19.0641713646527,18.3716632829515,20.989619959446,18.8887910783693,18.2592861554434,21.0775417145632,19.2431319597098,18.5538081753336,21.3555828842265,19.1039615009951,18.5847681615431,21.0687766725261 +"Q7K9H6",10.8296692526262,11.277490389476,13.8053177264065,11.2512934580216,10.4500934169859,13.4940640295681,11.2406983061124,11.3922192381215,13.5727014706608,11.4745678841925,10.6452816659099,13.978505021719,11.2176161460468,11.2773235135515,13.659280284851,10.7561689892836,10.2127920729038,13.5985954064205 +"Q7KJ08",12.9729178802802,15.0641980235588,15.1045196844378,12.8641684171989,15.3547741443949,15.3233355454571,13.1543120434655,15.2282472187913,15.2053825439878,13.152280750399,15.4738051348397,15.2222768482366,13.124570838636,15.460757840877,15.4990741663914,12.9009103223362,15.7266320045044,15.3781406389424 +"Q7KK90",20.1887380470025,20.9536829832362,22.3565916164181,20.1617049139123,20.8406956617993,22.4251654579744,20.0630696860093,20.8497013222859,22.2446481173215,20.1120929259321,20.8719026907611,22.3663713764468,20.2631070250554,20.7111845740149,22.2745291748647,20.0993386124524,20.7159323839534,22.1198016788545 +"Q7KLE5",20.9323267866365,21.415227761735,22.1959127361269,21.0419155076535,21.3947717142486,22.1198924612363,20.8737388123965,21.2307377776265,22.0380831974236,20.7632331079548,21.3362716467844,22.0755915486165,20.9063851635425,21.2550682341944,22.0256135254421,20.7178386671086,21.2138803383529,21.8648244915388 +"Q7KLW9",16.6371275080392,16.4731383420453,18.0221671130905,16.6634371267056,16.5213727369995,18.2874303234564,16.6945786431537,16.5943918373939,18.0543279703391,16.9847556462707,16.63648468905,18.4579435724526,16.8138376952694,16.6333341704594,18.2960637381655,16.994120550111,16.8621017419814,18.5666546020092 +"Q7KLX3",17.6937903845095,19.4398702664473,21.0187933689567,17.2959743083085,19.1534626878066,20.8468274183335,17.6684983924302,19.5215788245428,20.878580101839,17.6134405694665,19.3541321689878,20.9461143707751,17.501248379305,19.4362423822357,21.0314025909826,17.602160464321,19.295248387262,20.9255357801811 +"Q7KM15",16.2282072354168,17.6988799503799,17.4270793784169,16.3562622319375,17.6539736377089,17.4471626259484,15.9528769132684,17.3342472389097,17.1725116293513,16.0371861636512,17.5663896820666,17.4135233477093,16.1471791200075,17.6310558744397,17.1474177528816,16.3186398496881,17.8356946286324,17.4799625709892 +"Q7KML2",12.8116876508884,14.1015692083127,14.6257413279685,12.3199928295442,13.7737648274275,14.5472339988054,12.4210303298722,13.754260408269,14.5196196691237,12.6946430511178,13.7118423574791,14.4243387413344,13.1279973225016,13.9210875089863,14.8546240671326,10.938626419952,13.2675173459388,14.0446294439331 +"Q7KMM4",12.2686806244738,15.4635073465044,16.1065043497759,12.5143456034545,14.8917489446374,15.8372887333013,12.3502773481017,15.1336320358357,15.7677018019531,12.3578304856573,15.0159800786873,15.9392912830358,12.3326918964421,14.6905704960032,16.8202560365991,12.5536551978003,15.4494257906002,15.2451198302025 +"Q7KMP8",17.51252696729,19.0125539062113,20.7649704471556,17.4122204166152,19.0198052260765,20.9622552680686,17.6629792547622,19.2031033773798,20.7867558694819,17.809188026733,19.1262322446628,20.9909789010204,17.557496453549,19.1161917606054,20.905673378541,17.7295938131469,19.1342804557411,21.0213152780937 +"Q7KMQ0",20.0036010102593,20.648475563073,21.5869051726907,20.0059918943053,20.6388119562804,21.5427011640186,20.1088558723317,20.7482921907541,21.6961855893793,20.1336699086409,20.7330338304093,21.7185091899561,20.1450549261455,20.692699754861,21.6153892294572,19.8459772850611,20.5253224646354,21.4441098107808 +"Q7KMS3",13.8313619175184,16.3085359577644,17.054760834219,13.6901254787581,16.4194437220816,16.9456829522803,13.6881759373487,16.2329159624408,16.7531080196882,13.5607199284759,16.2196320829258,16.7305426586424,13.2322483908439,16.2229769494322,16.4819522584706,13.8568991296875,16.0737343247336,16.4069083689981 +"Q7KN75",17.8326140764234,19.5189664915502,20.7808077293616,17.6138427775498,19.4113594411423,20.3843060115175,18.123119930034,19.7069930612176,20.8217874029537,17.7588025790712,19.5029959203886,20.4143109320577,18.1664430283076,19.7862994135947,20.8185501837706,17.8452261513076,19.883403133116,20.5170494476209 +"Q7KN90",15.5678541016155,18.1964305876502,18.5054235844319,15.350895877896,18.1533802560308,18.3825474281305,15.4803913864091,18.1663922506398,18.349147425789,15.308506789335,18.0365621584246,18.2678491965494,15.3793442785153,18.1197947817657,18.2756707635805,15.2800950601663,18.0015638743906,17.9838123539361 +"Q7KN94",22.1303196444398,22.2422084034348,23.6987472792974,22.1907255839017,22.3135252743685,23.7479912781184,22.0406868509803,22.1072471301755,23.4725832863121,21.9873379760127,22.1708476635736,23.718301344994,22.1185400282796,22.1776612810472,23.5754410893244,21.9738945986629,22.0359815278234,23.5669106995061 +"Q7KND8",14.7870167044863,16.0573329003183,15.6611593318911,14.706351736111,16.1239096427741,15.6701094871608,14.8458767201554,16.1964305089367,15.4993567856612,14.6712383429802,16.1076965348864,15.6012377151828,14.6951779862494,16.1906646856238,15.2145983440977,14.5146094598368,16.094107861837,15.2797281568483 +"Q7KNM2",18.639430618964,19.2518493010106,20.7797139746238,18.8330630842284,19.4889028389232,21.027518068274,18.60194300272,19.3485259098654,20.6695413563706,18.721384558637,19.4640569371438,20.8816750047203,18.4663296893146,19.2549846720737,20.6444876207574,18.9544339789862,19.4671909089607,20.7294324512456 +"Q7KQM6",15.8721560907655,14.6310469576653,14.8654764108788,15.8715301209312,14.825754411885,14.9171488772952,15.9594880063063,14.9031103661072,14.8632536447032,15.7071734034246,14.7151387973121,14.9009975333683,15.7551798323663,14.6850573809339,14.8457462876061,15.9243940134847,14.853562462819,14.6789441213422 +"Q7KS11",14.1270682582092,15.5353891119606,17.397803619554,14.2452158490758,15.658298134315,17.374025621748,14.1646385203455,15.2711115197574,17.0735746343218,13.9202943223462,15.4457057640465,18.072863859203,14.3872547464698,15.7525906464723,17.1746881411832,13.9114819788405,15.3154015280391,16.9245664688767 +"Q7KSE4",14.0008245002274,14.1224903526512,13.2657114956276,14.0696766552719,14.4857071558694,13.4650003847921,14.2558389918486,14.3455862261801,13.2922909689503,13.9080796222146,14.1440602979739,13.3296233437717,13.8446725891626,14.1806728676919,12.8934166286204,14.0027109867553,14.1721524390708,13.0784621398166 +"Q7KSM5",17.4551070229528,19.769251190541,19.4948262016004,17.4975249869103,19.7165578951216,19.510091717398,17.5602710512968,19.715626173945,19.3848863118641,17.6902195385223,19.7500264948295,19.6164947640247,17.473352697445,19.6315798560919,19.4043067792316,17.6316658681618,19.77000189855,19.6778482444491 +"Q7KSQ0",19.8551805604757,20.6863681499794,21.7806895336853,19.6844157202676,20.7425243046767,21.9034993765219,19.9601588049172,20.8901690148242,21.8912098934128,19.8541574946791,20.7709940645763,22.0858132363646,20.0438940006043,21.0179976904374,22.1951030983329,20.067910402572,21.0806236843044,22.1012018195192 +"Q7KTA1",17.1768914404821,17.4192691854456,17.1855139162132,17.3699673334534,17.389264175999,17.06085374161,16.8193949734912,17.1950509584251,17.0064449290103,17.0165069057426,17.2121226292624,16.9677743837275,16.0586909554545,17.2356743028093,16.8024170634711,17.1058296466684,17.6841931058405,17.0664582241318 +"Q7KTG2",16.7367173109663,18.3237496487383,18.7482797554561,16.6446334490791,18.4124684201269,18.7284839474954,17.0833746451228,18.6851554057283,18.9595928590492,16.9831907981009,18.4223113162177,18.8258336309365,17.008970621906,18.4514469838785,18.8044692557114,17.1050059861844,18.6703375825359,18.9289802087217 +"Q7KTH8",16.8829685626782,17.7156433727537,18.1524579278064,17.0881907155074,17.7218693886711,18.1080019319493,17.0592184060464,17.5994445848571,18.1214936041919,17.093238769792,17.7456464986692,18.1892265300911,17.0968469285833,17.6035746622865,18.1165868251511,17.1535862735366,17.7314958181159,18.058608158523 +"Q7KTJ7",21.6061579105593,21.9006227792389,22.8258027062295,21.6480214669787,21.8289772681785,22.7065826805194,21.4773415231769,21.8024898068034,22.7341306489012,21.5588420001699,21.8896848872806,22.9328615722324,21.4473021067366,22.0123362006018,22.8086010267318,21.6122227946765,22.0029339710775,22.904727004858 +"Q7KTP7",17.1610888096487,17.8139457182208,18.6755655242329,17.1132701211996,17.733256047282,18.7230559375308,17.0564880203535,17.7311138755541,18.8144602232137,17.2516708652504,17.8038246552203,18.8864516138205,17.058435452922,17.7242294890985,18.7086039260586,17.0198087438028,17.6788889640084,18.7041141880584 +"Q7KTW5",21.0189297399385,21.1175075504933,22.7615697317342,21.0348320880843,21.1030765953937,22.6029732198832,21.070250101919,20.9212441486483,22.6447501759275,20.8812665181207,21.0932629069527,22.4604802893342,21.1630000475476,21.0403439876497,22.6556868793488,21.0879929147876,21.1058134324302,22.6411086116833 +"Q7KUA4",17.5696063333032,19.0117204733498,19.9774876601282,17.5342723607597,19.2067361841236,19.957248072301,17.4435051952274,19.0225046070556,19.8231509880068,17.4989630230455,19.0173586453609,19.886014123505,17.2588434732158,19.0191641596496,19.7336589801721,17.258267227951,18.9158541365004,19.7840412112605 +"Q7KUC2",18.7450061647329,19.4492458274053,20.2103536510214,18.5703085577645,19.2954806642485,20.2138496551569,18.5345629392979,19.4302049637874,19.9105066023726,18.7528204749051,19.4025455592639,20.1356797437326,18.426965720236,19.2919372809838,19.9833462664436,18.6499737593955,19.0830132598843,19.9719643910009 +"Q7KUK9",16.8147027828941,20.7974966893303,17.4295818718763,16.8088382833974,20.9013672948601,17.6211660113714,17.0395552875094,20.4172871948503,17.5117378780767,16.908388225584,20.7736051879581,17.8480606967968,17.0596769067229,20.5375148358049,17.7841835590926,16.8907872780754,20.5542627371204,17.7822447846956 +"Q7KUT2",16.9317710506149,18.1419461410069,18.766009280889,17.0455100719649,18.2994896727347,18.953196862444,17.4348764649944,18.5784390780777,19.1629033609341,17.215378079073,18.3913411142394,19.0708543368226,17.3143906866356,18.4932477071774,19.1940464825712,17.3182291713314,18.3110965149594,19.1696133124267 +"Q7KV34",20.0847760921053,20.5866688769211,21.9296961152269,19.8598845357753,20.3800621520608,21.7909012952166,20.2730639094861,20.7085185805117,22.1744097281563,19.9727391403715,20.4524431057599,21.981699575033,20.6528188361107,20.7717950322863,22.4662420448889,20.3088580032247,20.680383175668,22.1423513132796 +"Q7KVQ0",13.521420481826,15.9570084308342,16.9641865596775,13.3943304094173,16.1406677526498,16.6448873830402,14.0611897377821,16.5225188440747,17.2364403394329,13.7238631217332,16.5184328728879,17.1520907016016,13.702757440473,16.3879076704772,16.864716287633,14.0579636334631,16.6799665446164,17.1886050294828 +"Q7KW39",20.8300799946055,21.2964074878977,22.4295868468762,21.1147020872224,21.6239520456966,22.6805966885501,20.9908699642569,21.4549709942268,22.5379395832623,21.1148765580566,21.6502678578217,22.7105857666112,20.9315124072975,21.552843923108,22.5379730328612,21.1145302287195,21.468449967883,22.5721294897369 +"Q7KY04",14.0632747244971,13.7421770668712,13.8483876418013,14.1025578740829,13.9886819943567,13.7611622034599,14.2553315280082,13.8169912647763,13.9094284243498,14.2783489348964,14.2769449401795,13.9256014339087,14.4441603752773,14.5061756220837,14.1828685100164,14.5119755980377,13.8133955979151,13.9525040896141 +"Q7PL91",17.6791891357229,19.408299674302,20.236276134493,17.3703435350066,19.4404923303093,20.0909435545546,17.2880427751695,18.8598571148123,19.9897115193845,17.2669036675997,19.1478814714306,19.999741836929,17.4340368400904,19.0278892287115,20.0480916400593,17.4152710245899,18.770874244319,19.8880376352013 +"Q7PLI0",16.3102745367873,17.8357156042987,18.7989475917426,16.5555562673268,18.0554537988988,18.9462799546649,16.3996799051439,17.9633576695564,18.6655499328443,16.7492009412776,17.9739780516339,18.9859003193834,16.4410906116066,17.7751790714705,18.7007761644822,16.8607681558916,17.9636263821752,18.9651217347373 +"Q7PLT4",14.0394353190656,16.9599884779952,16.0476824027684,13.5921006101348,17.147030128187,16.3933953355566,14.2121998283599,17.0768208443555,15.7889019902256,14.7628566640435,17.253999584124,16.261930675703,14.4640130308735,16.9581487776319,16.2026463536786,13.8771236235783,17.0279273868687,16.3307034137728 +"Q7YTY6",15.6179341036288,18.7813819275797,21.0303155115049,15.4576747804555,18.8384131650691,21.1147943503017,15.6967645598076,18.7644455612041,20.7566010524046,15.5725058561928,18.65576438313,20.8773364783725,15.6441818921685,18.7008186126003,20.7285459991895,15.8357612651071,18.7575222244945,21.1403204057048 +"Q868Z9",19.7406718534348,20.3597137727132,21.8678208767901,19.4668841181926,19.976739451938,21.4370409514764,19.6509795456236,20.2302860501008,21.8400845420081,19.4000151463234,19.8580476324293,21.418967410225,19.2190180744346,20.3073014770069,21.8469541129464,19.1392470952729,19.9089576469614,21.2065148420654 +"Q86BI3",16.5958638931581,18.0998338332255,19.0364322821105,16.9122916855417,18.437349725398,19.2984411414617,16.7155511828394,18.1789746315142,19.0863850676648,16.9534535317102,18.3279562504086,19.0273057489476,16.8217655619521,18.2321842006314,18.9486306576418,16.9184226251318,18.3776053730794,19.0419453138226 +"Q86BL4",14.839848693969,13.4768116720885,16.3541979319152,14.9098879166657,13.7941588089073,16.410210619764,14.9037653148459,13.5508732889316,16.2715276628697,14.9936754575475,13.613369443858,16.2512308704274,14.9273519588522,13.6713067988995,16.0845039268154,15.2466079554526,13.934382394971,16.0041367713231 +"Q86BM0",16.9279565478236,17.6172181763589,18.3816114670912,16.7711163359605,17.4796935793682,18.1417401244417,16.8476231746234,17.460704113952,17.9863399126982,16.9197189669868,17.4297233471388,18.0876777067465,16.8534995100266,17.3397534834407,18.0927242989151,16.6285762455469,17.1406197858778,18.0595011475477 +"Q86BN8",13.7653477501451,16.4548246732552,12.7866592246739,13.6965929184983,16.7981880101362,12.6829977753062,13.7454765062491,16.4569740788747,12.1550538084281,13.4207796107756,16.3903968060301,11.9434494061898,13.900919156514,16.3462228468384,12.3337221679226,13.9404101916797,16.444405773791,12.3993508502038 +"Q86BS3",17.7106392006879,19.3424036360677,20.0526942943182,17.9023465292902,19.4691333693332,20.1190168878097,17.7283893419716,19.2129195852488,19.929417361755,17.5283455151199,19.1982558858602,19.9048366108543,17.718692607466,19.077898143288,19.8440619516639,17.5457226186601,19.1576030866218,19.6978901087804 +"Q86PD3",17.6129583637238,19.1260276812868,20.0320765347593,17.5344608475541,19.0258497424129,19.9569537145519,17.6068640753262,19.1757768262443,19.9840549225469,17.4736857723735,19.0633011284521,19.9397362558721,17.5752973265079,19.2215667136099,20.0765999164687,17.4474403227498,19.2028740085648,19.9928292493461 +"Q8I099",15.9370998126545,16.7160334843064,17.6864091055638,15.6596780801582,16.5665280702867,17.5222469145533,16.0388300648826,17.0002804909679,17.7243663180831,16.1514131387828,16.9781046276819,17.8998972228654,16.1723139457407,16.8617974105915,17.7463128898658,16.1202519716402,16.9214632582052,17.7651387111669 +"Q8I0J3",13.8734116837248,15.1482852128589,15.7475350627341,14.1193710929819,15.3593659131904,15.5965583147299,13.8579195254733,15.4444845815677,15.5913531653067,14.4308780424247,15.486847437518,15.6621084927616,13.6281107988647,15.3161446755579,15.6254029160933,14.5268736577775,15.4903939921839,15.5504040095036 +"Q8I725",16.5679268096907,18.991820640096,20.8086438827315,16.8185696633345,19.1095007729074,20.649646143924,16.8492450703366,19.2522661524973,20.8672456004116,16.9129028932779,19.2019640771791,20.7729729091736,16.5607268867337,19.3645078982863,20.7806038435585,16.9296168141137,19.4021001778795,20.754120114446 +"Q8I937",12.2011435871982,15.0949074651748,15.0866417944748,12.6595657417765,14.7106669514083,15.0271556142158,12.4935206612329,15.0463477991535,14.9491984654284,12.3289377408176,14.6751045432207,14.5435297193707,11.972619627188,14.7799335488152,14.9481504592829,13.0817915533305,14.2693544151417,14.3904057646227 +"Q8I941",17.8153946922626,19.5078393633161,20.1465535806657,17.6720852553973,19.4323225857839,20.1698324958547,17.7104134841146,19.3544376956294,19.8999246958617,17.6255360144086,19.3278307263286,20.0290354559281,17.7483702741921,19.4392530695919,20.0231127693544,17.848630890001,19.0718182802617,19.7384099393514 +"Q8IH18",15.1164122868663,14.7027978038311,16.8080338696674,15.4720724494763,14.6173085233128,16.9845568904302,15.3855217657945,14.7189896793522,16.9147632783622,15.3508170229379,14.6220416031327,17.0939552735239,15.1680101920471,14.7053849128631,16.7051512832102,15.4595176166044,14.9198566492511,17.0170092971842 +"Q8IH23",15.435928029675,18.6850218974976,20.4468094377918,15.6083572950257,18.8427890141834,20.2603453126976,15.6490196594563,18.7616229968322,20.5764791313483,15.5182878313342,18.7771888146263,20.2838732496461,15.4864650888643,18.8056022783364,20.205659652171,15.9484749511408,19.1953709620542,20.429307723069 +"Q8IM93",17.4966793959571,18.9588309705241,20.82599538038,17.9350733702876,19.1559863637242,20.8840820191016,17.2634032004889,18.7670391446377,20.5034056575022,17.531401139878,18.9559938343325,20.5332262820248,17.4233597073783,18.8992571158861,20.4211881917632,17.6232035979204,18.7891470029444,20.5311052915199 +"Q8IMT3",12.2051711652123,15.4265571556845,16.4706264409926,12.2238042021096,15.5497934161562,16.2997054371905,12.361845962688,15.5695237114163,16.4856780146135,12.4588231394772,15.4181116940537,16.2704794310251,12.873395234088,15.6984722683933,16.5571691828428,12.2458639387201,15.2678940389856,16.0929699389079 +"Q8IMT6",15.268548038437,15.860336143549,17.004273732488,14.899496455392,15.675765340076,17.2485058269407,15.5382942766087,15.8810058813714,17.0883903816441,15.2215662831072,15.6177582931418,17.1994727129152,15.7810348962585,15.9745773567365,17.5078880834548,15.6205042009668,15.5546368921681,17.0735294580377 +"Q8IMX8",16.4305119377098,16.559503226211,18.3807945756096,16.617390119846,16.7434486810361,18.4440745032234,16.5168291402123,16.6114352838814,18.2996616430054,16.3715035945248,16.8007344971251,18.2489392667374,16.3578094218602,16.7309113408551,18.2996339291568,16.4537720670368,16.6751803578885,18.4108085702849 +"Q8IN43",18.1871253164852,18.7519203242923,20.6529369817278,16.6404138295808,17.8445662670322,19.1052017645436,17.2814354642722,17.8867970295765,19.5105927135285,16.2039803650618,17.2687820575084,18.1372199566645,16.4682382053568,17.588972223865,18.5545888862134,16.2147865507398,17.2210154177625,18.4510160882607 +"Q8IN44",19.5780620662497,19.7786235019413,21.6993212832611,19.0849284762467,19.5288329694764,21.4091350788496,19.052604067605,19.2832448456594,21.1884933404131,18.6776811360345,19.0647361425649,20.9318159020495,18.8250397471665,19.2826051395209,20.9168530608549,18.8983110617557,19.3055671025693,21.1248796191182 +"Q8IN49",15.952120104278,16.517789429246,17.3529459402128,15.9718710592751,16.5205165122703,17.2605945396008,16.4446218271737,17.0582016828458,17.772496260496,16.2221834913448,17.0411518266859,17.8602880696867,16.5462121884031,17.0059373434557,17.8266665201737,16.5769631195338,16.9194290051322,17.7254834620673 +"Q8IN51",15.546120294233,17.6189659603823,19.3800678191571,15.0759753111454,17.2321525975112,18.6963647650329,15.0361992993755,17.4507502950607,18.9325910604237,15.0612749596515,17.0100154873245,18.4305419967907,14.8990640777504,17.4942039499747,18.9789432677331,15.1065249199585,17.2350269718939,18.71683551512 +"Q8ING0",14.5182208631548,14.6453568423142,15.2075791479501,13.988351378654,14.6312315754681,15.1334704025284,14.0812032360815,14.4162825834108,15.1927167641414,14.2270303017301,14.6171767007661,15.1061441865649,14.1977067163726,14.4567715400311,15.0115873248783,14.6426482250651,14.3772996085051,15.2088710853718 +"Q8IP62",12.509652253585,16.65495807966,17.7907991954663,12.2297269845594,16.9742964786318,17.8937314214695,12.7360686046613,16.9306076218787,17.9577453551242,12.9562415833708,17.1832745118362,18.0213709274762,11.930854112269,16.8964284050296,17.9098060248637,12.6353884042337,17.1600660324844,17.918414135381 +"Q8IP97",19.335036952764,19.1495528302633,21.4879640271682,19.4533398403595,19.0683208702792,21.4810071900596,19.3140113537829,18.8732853312279,21.5319055793182,19.3402438546086,18.9763148462343,21.682992388454,19.3970900924367,18.9264287026555,21.2578273624227,19.5395349418245,18.9655287619601,21.428739594267 +"Q8IPD8",17.472393287203,17.9012413995023,20.5953424265021,17.0030960723324,17.5188524927986,20.0634188977357,17.3495060984754,17.7753751398596,20.3636791653021,17.0407597875395,17.3173595483634,20.1112052665401,17.3514657201629,17.7691540470976,20.0610845781001,17.0200224550687,17.2824589749494,19.7202395268263 +"Q8IPG8",15.4487950254075,15.7468619644967,16.4213737618283,15.2073897291381,15.3172518303508,16.3724477337152,15.5039385183479,15.760480556446,16.4593119891588,15.6683183455882,16.0082231914707,16.881948226033,15.488448130876,15.1869704078754,16.4551353988396,15.849761410594,15.9926528885502,16.3778051048955 +"Q8IPP8",17.8838947926703,19.2234169092343,19.8478872938614,18.2424163320276,19.4887808779964,19.9904256184647,17.7883204501533,19.0879542205308,19.7606896432394,18.1465564243821,19.5743240234426,20.0243408709357,17.6682564326409,19.165233216193,19.9811652103155,18.061701882305,19.4564905291067,19.8814615130725 +"Q8IPW2",15.3163854628742,17.6469682315904,18.4934931119849,15.684609473654,17.8279815536881,18.6706774125938,15.4193186089101,17.5018236767636,18.3389161739833,15.5418731538474,17.6257379562893,18.7651917413308,15.2475092774793,17.487773315288,18.3036214121498,15.4271871600384,17.625923652662,18.5747558127383 +"Q8IPX7",12.0280779329889,16.3275703680199,17.7887591679039,11.3404912303184,16.3379607030138,17.5516475741891,12.0735236080912,16.3409528935755,17.8027961003782,12.2821535009099,16.2815508913119,17.6438908182435,11.8703941116503,16.2762234134696,17.3993241435535,11.0327318407449,16.2679467213439,17.5889928868584 +"Q8IQ70",17.3797014878046,17.6404556524272,18.4810790053983,17.4865437458097,17.8492383086117,18.4855640898869,17.5331482235294,17.8903768843737,18.4581238320776,17.4545427622885,17.8046862219054,18.4253878217017,17.6909753603906,18.2025981223627,18.7157976725608,17.8238586205377,17.8981704769374,18.7174172751778 +"Q8IQB7",10.3444591741629,15.6376059969221,17.3160284131225,9.71630461560197,15.6033970258566,17.1934680009813,10.3925997556133,15.4337225327831,17.1411492365558,10.6424754738747,15.8774025754822,17.4843624823031,10.0959357950189,15.7573786280981,17.2824892392345,10.5190341864122,15.7949272188096,17.5378323513693 +"Q8IQC6",15.2147501785413,15.8414097630874,16.925353789591,15.5304514997441,15.5845401822054,17.1379478081995,15.2356416631953,15.0983296500751,16.53191025592,15.120672069628,15.8060014958206,17.4892912059879,15.5296054442008,14.7795684933524,16.5893840492159,15.1800343430778,15.895170114516,16.9668975386893 +"Q8IQG9",19.1782134162295,21.1371790925095,22.0765242738764,18.9554484025208,21.0017968326409,21.7544034387115,18.7438244999147,20.9095259163613,21.6069497536278,18.8688779494343,20.7788128725878,21.4454775552054,18.7534502053387,20.8968320223369,21.4334470217037,18.620787813148,20.6827320138827,21.3550310031245 +"Q8IQW5",21.6479873288687,21.5981919888074,22.9766808985127,21.4476351402201,21.5028414806858,22.8080203327108,21.4571337273414,21.5316863073033,22.8768077594985,21.1543789526712,21.4455297921255,22.7313409240259,21.3810375068819,21.6519657342129,22.7217937012545,21.3446768780556,21.7012394457528,22.7004889237094 +"Q8IR45",14.8515454238138,13.6664743685932,16.1198429923777,14.8771199000898,13.6891246063116,16.253409391569,14.9239642655646,13.4930291892399,16.0094197034997,14.7101704733048,13.5172863021688,16.1802347906083,14.8046637691051,13.6686125809684,15.7447209109455,14.8602856383274,13.2557734534114,16.0508843177763 +"Q8IRD0",16.3762407491697,16.6465848105773,18.9066145747009,16.4932903158447,16.7290173231569,18.9967412461755,16.7920494514473,16.7661001563154,18.850889748323,16.8264603237262,16.9818673515455,19.2435053965032,16.6487895273783,16.9271852043965,19.1551572579976,16.9811904134594,17.1004801036712,19.1181453586874 +"Q8IRH5",14.3121296862521,15.1790783499534,14.4701793429409,14.5125467467791,14.9103961340811,13.9522707643405,14.3151537003508,14.9526457869039,14.2775660307336,14.0858886142129,14.7327642176846,14.1806670781451,14.0475614471219,14.862223767051,14.0478031309876,14.056371879192,14.6503843315162,13.9468233863475 +"Q8MKK0",12.2823030869979,17.6722701206469,19.2917632933519,11.0641855591923,17.1802265254708,18.9979160410532,11.3083517335431,17.4095484543829,19.0351209498356,11.3995770513253,16.8340589739029,18.6811537710265,9.98291548914444,17.5900193196936,18.9186788416529,11.2868092468786,16.8231641543076,18.7950469357515 +"Q8MKN0",17.0540849425141,15.4387808365501,17.2315470597961,16.69503219156,15.4177194159893,17.2113846113786,17.0479249911876,15.7877194547495,17.1958503060415,16.9260965884821,15.8039487957362,17.3883009729432,16.995905603851,15.9052010397456,17.1668598381091,16.9009203669336,15.9742229123975,17.0216852000366 +"Q8MLP9",13.5299008442075,15.5888388871039,16.2945514723191,13.1411285423752,15.6652698573155,16.4999558706061,13.204669525706,15.4227944194396,15.9694503241175,13.0595788328873,15.5804877901099,16.4778665166858,12.5700199958612,15.5790997083896,15.9451477892589,12.4399522077553,15.4967152448179,16.3017583025165 +"Q8MLS1",16.7724691393528,19.0411019164317,20.0180607778734,16.54127556709,19.0879927539385,19.9645954668712,16.6768806183672,19.0257884690391,19.7976490199747,16.596371748138,18.9487419131081,19.9163402077939,16.4512346048501,18.9252640723966,19.6514910517661,16.3682049579585,18.5796514430232,19.4112059757888 +"Q8MLS2",14.9866059190458,17.608371926136,19.154322678885,15.1346952032384,17.6942088313209,19.1919477226805,15.0909928417799,17.7728257402119,19.179784715597,15.2705903617455,17.8803590858708,19.4236763119324,15.3434069054904,17.8067375122042,19.3385856756038,15.2760158516521,17.8370595859138,19.4630948742186 +"Q8MLW4",17.450158210656,18.9941452501878,19.5683416668385,17.3746423985442,19.0577188355208,19.7293914195957,17.3221727633272,18.942732871393,19.4596503710503,17.4396856095001,19.0424987549097,19.7059822588832,17.2674432825635,18.9065164537403,19.417342808343,17.499547888188,18.8205090832132,19.435513439372 +"Q8MR62",17.2114954221702,17.5394415300947,18.6334655227543,17.3142454684271,17.533781521249,18.5938686729295,17.2480387891436,17.272790539484,18.3724833046965,17.1635107615766,17.2721689152195,18.3042524889847,17.1040658597117,17.3545183589588,18.2130247293184,17.2006986723113,17.1551736051262,18.2092736975026 +"Q8MRM0",16.8945833477133,19.1612007585026,19.9755689294709,16.8094170548524,19.0567190649113,19.9026094457684,16.8370270001787,19.0291214044619,19.8040891497454,16.7258152463265,19.1409968665802,20.1000773981712,16.7752572705534,18.8785312819203,19.7914994403554,16.4811764345529,19.0622474108816,19.5671312075308 +"Q8MRT7",15.3719020451783,14.7886022560354,16.3277677017885,15.3549915072795,14.3920396233319,16.3039797398059,15.4932813296068,14.4205585082406,16.1920761707155,15.4467393203877,14.6800441990051,16.3636867291865,15.2613419854795,14.6253550637263,16.1344538264425,15.7272652362175,14.6382637790482,16.114833969917 +"Q8MSI2",23.3055553573462,24.4470941975531,25.6957542928784,23.192374459746,24.4219967406025,25.5496798296717,22.4154757942056,23.6624753040329,24.7505967960836,22.8974941121724,24.1082357787401,25.2842092378699,22.5098219011904,23.6778399719813,24.774012587081,22.5939787340704,23.6532688225251,24.8330547715778 +"Q8MSS7",12.0183389856694,14.1656894298038,15.5535213418581,11.2264027682245,14.1650058432659,15.6404448894403,12.5320220549804,14.445366417438,15.6406802359636,12.8233560698839,14.7426690766881,15.9146633361845,12.7782949374029,14.3798893339908,15.7061555005379,12.0930547657209,14.6672061748718,15.8561480675246 +"Q8MSV2",16.6403900680121,17.7985507014832,19.5474468614748,16.9345881327001,17.7629670670774,19.9774801928624,17.006509116345,17.5630422886671,19.5744390769798,17.4180330676581,18.0530778457133,20.2048724561795,17.3105733273995,17.3503877970459,19.6513096056247,17.0763502684803,18.0567004622013,20.042571933903 +"Q8MT58",20.5491306907619,21.4321982327858,22.6440525864133,20.5530943495833,21.4456353600679,22.6092075894589,20.7689965391815,21.6861867342226,22.709224925313,20.6503758646488,21.4859498450425,22.6440710022189,20.6384791389742,21.6018947174077,22.686914412014,20.7843270784537,21.6398744008674,22.7438367358833 +"Q8MZI3",17.0244930829347,16.8637136340864,18.4443607984884,16.7351842611489,17.1770484065701,18.7147292240455,16.907430966772,17.6191171810673,18.8992319886549,17.0352688673056,17.6528060790259,19.155255838134,16.8269449141817,17.7126259594017,19.0321012001312,17.3936561485875,17.8382043859681,19.4517828116831 +"Q8SWS3",17.0460278234039,15.6385749005448,17.683646305581,16.8707729979051,15.6526238448056,17.3788006089219,16.646945379954,15.1786320374447,17.3555302204948,16.4957692924752,15.4257008639162,17.1352354128415,16.4327556669132,15.055469666563,17.0839528456076,16.732257404568,15.4458160561659,17.2776196503336 +"Q8SWZ6",11.9039204631305,14.9313490841556,15.0751758860108,11.9517973376865,15.0883104504257,15.1695934742933,11.4956042780848,14.8483599871197,14.951350940058,11.8947581489057,15.1167729848293,15.1681472734879,11.9027982435401,14.9306785139131,14.8918558868273,11.9111886721388,15.0445380784691,15.0060610664353 +"Q8SX57",17.3375264547523,18.1585164508071,18.8850683737326,17.2107552826859,18.0028583957322,18.5739254243418,17.2901346904052,18.054948588224,18.6509887916212,17.1083581942779,17.893603741864,18.5188399587436,17.1865774558904,18.0609516756862,18.5933186894037,17.1573441514515,17.980476849488,18.5350036875669 +"Q8SX68",15.9642108973883,17.3169244556222,19.5340763508372,16.1499628897239,17.5767448404392,19.5514607547724,15.6026512355775,17.3306771175046,19.3582268709496,16.0118885905764,17.3825649224665,19.3111705369211,15.7827369429321,17.373708306381,19.2702630912252,15.7992021058537,17.3966743713585,19.2679435887303 +"Q8SX78",14.6572980616956,15.7217196783026,17.4130149120643,14.9180323905499,16.018190717093,17.457232405758,14.6946176904058,15.8770881947923,17.2096655426046,14.6884179246137,15.8968213802892,17.4823173989334,14.6804763745287,15.9587961496025,17.3439906002968,14.4884078332047,15.8598547327453,17.2950374596218 +"Q8SX89",14.851769510548,15.6175050657996,16.4251596137681,14.9118849237496,15.8957795718685,16.4497523900571,14.5179324817686,15.5974274903871,16.1133967871158,14.8841807934971,15.6989625181326,16.1724858382257,14.6420746441241,15.5812298139091,15.6752568322419,14.7424319890548,15.4252733462195,15.7618405054062 +"Q8SXC2",13.0215278336321,15.946924105781,15.1554050545652,12.8818011435957,15.7474184361366,15.0134696805091,13.2658686768669,15.4795328198293,15.4432116292012,12.6329642874359,15.7650395992844,15.5988846621046,13.7074396910053,15.7765632245582,15.6983566302391,13.3755386046425,15.3285523688708,15.3065602207636 +"Q8SXD5",20.3318324620108,21.130331860908,22.4202549587178,19.862171489473,20.7359143524694,21.9834640692646,20.0336278585959,20.9439144605276,22.0381062222737,19.3156304446033,20.2978433848337,21.4584258156285,19.8322286341191,20.8330944293767,21.8462399416392,19.0909432691021,20.1892297759565,21.2677697936979 +"Q8SXF0",15.5304719757429,16.1182222014767,16.2582420638321,15.8073410891705,16.1651543942534,16.5613916864073,15.9993036085379,16.5721826024072,16.7020625067921,16.0200258498671,16.6100259892125,16.9086319183294,15.9182229570552,16.7225367817712,16.7538636167479,16.2159649517547,16.8963521807706,17.0617377183626 +"Q8SXF2",14.5304204250809,16.0855605335115,16.7175086108465,14.0990842694168,15.9388087413509,16.4727983473807,14.2459171911245,15.9064212988912,16.2585899436035,14.2250233802504,15.9626202721067,16.3986433257652,14.2243997150034,15.8632657379092,16.297339786688,14.334427478207,15.7961664387624,16.2465704896156 +"Q8SXG7",12.1370120147479,13.8097600597544,15.7358118162585,12.5176894935453,13.8856371505383,15.3543470788743,12.6529771336527,13.9827746524961,15.6404419916361,12.616936733637,13.8967868376626,15.3827455462048,12.1740962135344,13.9119798387258,15.5557392753512,12.8521269466331,14.0184391448486,15.4301205361284 +"Q8SXQ1",16.5682411588685,18.4960659270615,19.647205929128,16.8073466918016,18.7014227976342,19.9383330794018,16.9892548612436,18.7543740151085,19.8694201806976,17.0537426412222,18.9824358488767,20.3771865521532,17.3380016529827,19.0233983441203,20.2571788233458,17.1300849092093,19.0479325400467,20.3406932474849 +"Q8SXS0",13.1105962711598,14.7932041976065,15.9679856492192,12.5015619078937,14.8332983528504,16.0323239540413,13.115660076071,14.7373048792731,15.7974241766221,13.2619415147398,14.7873055296538,16.0373763302758,13.2089040681142,14.4950334998032,15.9161412632244,12.9657490778852,14.3728793052803,15.6324027501979 +"Q8SXX1",18.5925809829035,19.8946720607898,21.0541043666802,18.599866302779,20.0754698777659,21.2314588995541,18.4839858633516,19.9559877708909,21.0233048812157,18.4285123662626,19.9795448391014,21.1027500941131,18.6471103679224,19.9943444546544,21.143623135359,18.6084472681637,20.0912894396435,21.1374717893387 +"Q8SXY6",17.5692526760028,19.101705573642,20.5974991231374,17.6553403501051,18.9576999933466,20.4457741821536,17.7093561106405,19.1287101040609,20.6457967388934,17.4118035179398,19.001752582574,20.5268821919872,17.7374249398752,19.2483243726018,20.6608127148718,18.0256005715825,19.131125924548,20.7341215993869 +"Q8SY33",16.5033789530836,17.5524458853425,17.9636878901104,16.7237242516774,17.7564042535928,18.0502580553081,16.5224465638979,17.6151850449926,17.9775702339094,16.4914694635232,17.7141665440407,17.9864414960227,16.3823687770232,17.6532578653937,17.7948225033225,16.7818373289414,17.6490863806506,17.8918683078876 +"Q8SY67",16.1882412197346,14.0015796289404,18.6318893469559,15.9959536549182,13.7597615521432,18.347969495919,15.9294492421179,13.7307947937547,18.4400338539387,16.3994744116512,13.3753724705665,18.018347113345,15.4256421097515,13.8597289576845,18.4454261986843,16.0639430251343,13.6191229556065,18.3589595884612 +"Q8SY69",18.3528232027125,18.4485942325983,20.0951707647433,18.3883765301652,18.4791638149249,20.3481840006638,18.2087385094688,18.4636131414506,19.9181032837141,18.3552537328985,18.3248036661475,20.1910008061666,17.6601719717423,18.4559751224973,20.1359228711311,18.4243050561807,18.5095236865491,20.2322260696021 +"Q8SY96",19.0955281577609,17.7985479074866,19.6032513332566,18.8808150874652,17.708804097893,19.3397028101826,18.8935954300069,17.9330369346164,19.6869147948128,18.6756206086119,17.6869920102451,19.4527616744883,18.8299883946853,18.0058262234348,19.6707872712395,19.0093046919928,17.6849126645761,19.5853570373597 +"Q8SYD0",13.5587607455241,16.495426599369,16.784585619565,13.0339651588163,16.429887298982,16.4605927960023,13.5297156638288,16.5647800532708,16.4164353537662,13.3355221423459,16.5229998238789,16.3902225321665,13.385724470353,16.5519262067145,16.6662333321147,13.3316086101818,16.2744789309159,16.4068749013408 +"Q8SYJ2",21.8716711744732,22.5662359355356,23.6728286672654,21.826690193302,22.6293692426336,23.6322523150766,21.6569041516042,22.4602039966825,23.4278234253256,21.7165056587876,22.3640153415437,23.4249830202979,21.7325782182727,22.4771524483211,23.3359680736299,21.5886146609775,22.2225724884928,23.2288879235204 +"Q8SYQ4",20.4376379547514,20.8047990757325,22.1041734071967,20.3503506533665,20.8693566201124,22.0472727529016,20.1132120568859,20.6264130741016,21.920413669877,20.3231457348163,20.8083062654062,21.9828142701785,19.5728870672996,20.7330194126901,21.6952068517779,20.2682823322412,20.9175494630969,21.8092577655299 +"Q8SYQ8",15.5165502230686,15.8653919656369,17.1304300910184,15.6831112551193,15.8166603316805,17.0523289885529,15.1056923013828,15.3605295178769,16.7237893071753,15.6505098786828,15.9301487601677,17.0202639713766,14.9673035305415,15.057111432908,16.5676040700844,15.7484761755779,15.9197937221857,16.9415764753054 +"Q8SZ63",13.9504246214266,13.6746596494357,14.698580330219,14.0672692497401,13.6076915051781,14.4489422816885,13.9602323025989,13.341340993851,14.4304451718785,14.0186937218741,14.1053889822455,14.5253991964699,13.9284753090681,12.9646456214306,14.3452077902318,14.3929788882062,13.8141873653874,14.2650736063108 +"Q8SZA8",17.9285986116836,16.9942345123354,19.2701306700208,18.1713340771421,17.2059925923032,19.0661678405137,17.7515298410774,17.0152939951904,19.1956131583073,17.7485104679011,16.9882710152372,19.1796836275801,17.7761598596753,17.1093652211851,19.1382196417696,17.9722825132883,16.8231270662897,19.0966477942442 +"Q8SZK5",14.5744045744024,15.4907495463564,17.7526866777884,14.4274375787518,15.3157380801596,17.4024475130418,14.1362713750735,15.9176325805577,17.1684465935086,13.7290057835154,14.3002238310718,16.6132708569213,13.9496041290836,14.4401591752703,16.9208155636932,14.1261109189164,13.7178037028178,16.5267987375979 +"Q8SZK9",20.8984089922258,21.8825236628613,22.9711740173509,21.1994429058514,22.2014750697907,23.2135666055453,21.114935029307,22.1433004010121,23.096830807455,21.4111814947548,22.4844401540908,23.5466652719337,20.9839774501724,22.0783952395624,23.0517166165015,21.1355494465436,22.1365691136534,23.1568980967961 +"Q8SZM2",20.3337465139417,20.7313234479128,22.5593118114716,20.4401881806994,20.7776669098469,22.7114757298523,20.4169139848518,20.7625451049316,22.524062426706,20.5180656838242,20.9097765066293,22.9024237353666,20.3273414256632,20.4368861570284,22.3224775163271,20.5311665299679,20.7550067424464,22.6150915900582 +"Q8SZN1",19.9239552354415,19.895633830186,21.407899517216,20.1086831551959,19.9463146741462,21.5204823499115,19.5997903861965,19.5857326466628,20.9588808189686,19.4544507536626,19.4622830151707,20.9945034816074,19.2480206599392,19.5874608020725,20.8128279052983,19.5162677119805,19.2880839892575,20.6961837918707 +"Q8T0N5",17.8474834258963,18.5037918359058,19.467445191242,17.6250691701774,18.4803107925988,19.4967960996847,17.9413355901628,18.761186306276,19.4684239944694,17.6447733062442,18.4987560693595,19.4757501424231,18.0276387464435,18.5565864098603,19.5885271558217,17.6068187087393,18.4108458763487,19.2720607647983 +"Q8T0Q4",19.0754625086618,19.7326063815557,21.3484308255341,19.3008454181984,19.67647162932,21.2578374881099,19.049125123219,19.5701846155252,21.3062442429548,19.0360155457717,19.7600417831338,21.3244949876823,18.8417426034853,19.5282684932549,20.9461341395641,19.1030028404962,19.7206941455696,21.1547438220176 +"Q8T3L6",16.7739950490662,17.6255257195747,18.0980944819274,16.9765335159444,17.6699380768504,18.1609889614516,16.8483907083661,17.5446099617916,17.9913452068137,16.7390341049895,17.609527227647,17.874425217992,16.5921141124387,17.4873098206722,17.6737318799552,16.4577154580567,17.3124400282881,17.6646049451107 +"Q8T3X9",17.6813268857769,18.238241219394,19.4192507866918,17.4403566559103,18.3018796579277,19.4206338376001,17.3029420772001,18.1762538482681,19.0913429612928,17.172305643854,18.1350973305384,19.1439858457536,17.2939015699271,18.1608068366288,19.2572065553671,17.6985118896429,18.1079438274199,19.1817297473777 +"Q8T4G5",18.4534024935909,19.7014577807336,20.5422602369378,18.4207390872952,19.6936076071714,20.5501665979111,18.5497922319997,19.764972406412,20.5827233876884,18.5301447480738,19.7372448392959,20.6233536128149,18.7793252563618,19.8423564291883,20.7311327835681,18.8020716796019,19.9465297281069,20.7453489844797 +"Q8T9B6",18.2736496788546,19.4892050392424,20.7379958765147,18.4199147507938,19.5053413664549,20.8031684202963,18.1839353363332,19.3355121363639,20.6589231183988,18.5308712243824,19.8472125691433,20.6591066440592,18.2016119444384,19.395018804264,20.5071375133279,18.3854874589859,19.5583801005795,20.5306052538462 +"Q8WTC1",13.9513607512207,15.9568524744954,15.2168312604652,13.4957466165389,16.120994241598,14.9936031198232,13.7829061929671,16.1389834602978,15.2786899874891,13.8454085958136,16.2556537025007,15.2690450311858,13.8042011936435,16.193707408618,15.4280556593473,13.9736916236807,16.2105772186551,15.4039818056213 +"Q94516",22.7176386074478,22.9854905980294,24.7775499014576,22.6103185135186,23.0104450752311,24.6274618032131,22.4998688169452,22.925527983353,24.5720108550762,22.4577389024512,22.8804766328615,24.4969569070911,22.5171742320671,23.0750718207664,24.66646242778,22.400699125751,22.8790616123972,24.5023569520439 +"Q94522",23.0674250500901,23.1810253730381,24.3316496937805,23.1956578370713,23.3506535441068,24.3550606336082,22.8675463673986,23.0679886063386,24.2224164343578,22.9079013302641,23.1227584508376,24.2625254520447,22.7404345924709,23.2034942895834,24.2516127065493,22.8171116617928,23.2256871669698,24.288142455795 +"Q94523",19.4864608235794,19.9390711178119,21.5181394292738,19.0122319113694,19.5656039604435,21.081295150244,19.6127070241701,20.1065272859807,21.7050512838495,19.287949640089,19.8821247430955,21.3887173602842,20.0724708875296,20.4969774459266,22.2211729326491,19.7817050195946,19.8833085904741,21.6760812035498 +"Q94524",15.0339427788939,15.7110765990833,16.4979943736499,15.054890997967,16.0173180791874,16.538947882469,14.7682457288874,15.4458660354247,16.272323954967,14.9625639154295,15.6648059228731,16.3336466785848,14.6473384166228,15.3014536728166,16.3717447685854,15.4949918887094,15.9401839125392,16.564310544513 +"Q94529",19.3584912271776,19.3346895629748,20.4848062044484,19.3308603224922,19.343038006592,20.4034720213215,19.1797655477979,19.3584350671048,20.2594315355803,19.1426262685415,19.3217731576553,20.3217377404766,19.2521912022866,19.4605896648793,20.344931772127,19.1066029407174,19.2979689016196,20.2209150777457 +"Q94533",15.3749043226603,16.2869199530132,14.9647558372904,15.054093252418,16.1195620200984,14.3916609932398,15.2161548742308,16.1986910185023,14.8203829191527,15.0090993908561,16.1235180188516,14.2404690190014,15.0088756096605,16.2668786288996,14.741153638431,15.0571300174332,15.9768492925283,14.2731836101295 +"Q94901",17.3105410784285,19.0140071512171,19.3753221050549,17.6683097529831,19.3144407634075,19.6512584890749,17.6670119433333,19.3535311506671,19.7001603109404,17.8996753857151,19.6317918157751,20.1189896072925,17.4670935482509,19.2702833283406,19.6351430793124,17.9136527423007,19.5903983795789,19.9417026000094 +"Q94915",14.9873308097942,17.5877757039225,18.3491462431724,15.2544564816843,18.0939917128378,18.7733345458007,14.6975398680479,17.4822303627283,17.8539617099762,15.4027469491358,17.8948496893336,18.7129568096931,14.8126194836653,17.521900093519,18.0995656525784,14.9208436053515,17.3206379601347,17.8885900793699 +"Q95029",20.8075996791664,21.7175880306281,22.9893430132479,20.9782481023766,21.7035473016127,22.8674165534455,20.8005893337796,21.7049259952393,22.9849117887843,20.7889686960139,21.8084883486148,23.0519110024647,20.614910676702,21.7463582877423,22.746026950842,20.9124953741269,21.7726811199894,22.9086429946755 +"Q95083",18.8836106234303,19.5805025580815,20.9596731840875,18.7166096295589,19.7626683950071,20.9954936627301,18.860672680983,19.7600054767897,20.9856446699886,18.9228590609968,19.8135967797671,21.2083765949065,19.0503965660113,19.753725878661,21.0650741356584,18.8990295403844,19.8596722412454,21.077351000985 +"Q95NU8",17.0018206372312,17.2889825356208,17.8601422248084,17.2023100289053,17.5414499669313,17.9895840500755,16.5694095822018,17.1098054519211,17.72938840768,17.0685857519044,17.408373623642,17.8546995764235,16.4755110445505,17.1371072381169,17.6768554138307,17.1742452632324,17.5222119831407,17.8418969772817 +"Q95R34",13.6663504168413,15.6267597074007,16.8880639881256,12.9623142602941,15.4991676718189,16.6039496286161,13.8811866743184,15.8555178768729,16.7083288264132,13.4085414198791,15.3105581784242,16.5718770923132,13.8585947771315,15.8207789296909,16.9259158006748,13.4644385188223,15.4615963022038,16.788073132365 +"Q95R98",15.1744836639209,16.2605287386726,16.99616607631,15.1715460950721,16.1576741807233,17.1490412588909,15.3035880285909,16.351339641685,17.0347956306617,15.4676415738843,16.2880725291561,17.0941401547795,15.4317692040101,16.6690335063395,17.3672687427804,15.893694665766,16.5558403612241,17.4526279738094 +"Q95RA9",20.0762446454632,20.5699408416742,21.223603828542,20.02052417022,20.5503750430865,21.1776112494653,19.8585297664832,20.4739880236463,20.9853517835849,19.851577696023,20.5417724389982,21.0633004556627,19.8806868977481,20.5197669112805,20.9190796688211,19.8699791194588,20.4340947227486,21.0009994491857 +"Q95RB1",15.5565980968597,16.2203665303536,15.9649553300077,15.7345102478444,16.3117920396477,16.0119975743596,15.4658668727194,16.1515689891215,16.1740669964388,15.4614651725202,16.1783023825872,16.1110693899438,15.5063576801506,16.2956412736647,16.1848000697386,15.5633734759455,16.1696293465714,15.9231431061265 +"Q95RB2",23.8781099728772,24.2135165883349,25.1309450998849,23.847857868534,24.1396579035443,24.9346479468275,23.6924574062494,23.9392396679611,24.9907458815642,23.6187874262599,23.8250028925134,25.2200206714021,23.7910189671411,24.173198828161,24.8052246278131,24.0308486727374,24.034823167038,24.8690798523138 +"Q95RF6",15.4355451969088,17.8552891958354,18.1927803025827,15.6308135213767,17.8749026773516,18.2672692107804,16.0582525715564,18.0163969728373,18.3116892539143,15.7173142545097,17.8024258238316,18.0707719451915,15.9551644440024,18.0070337244609,18.5612930078587,15.4281272035037,17.8707355331734,18.4743396284907 +"Q95RG8",12.1556851612904,12.6186472771839,14.8130300526447,11.6827140471889,12.8269602599775,14.6630022499852,12.8727616478826,13.1316246219098,14.8344211671221,12.8120369698444,12.7505077624739,14.865362199257,12.4523050788986,13.0945784785563,14.602747842849,12.9729893015934,12.3005452322475,14.0106262496606 +"Q95RI2",15.9060721393295,17.7061675068239,17.6913335193787,15.4980967804002,17.4807982749316,17.5599136981343,15.3685892115501,17.1971634555013,17.3407701034946,15.4156104841552,17.245459196685,17.3872066499268,14.9603116418415,17.0542173395885,17.2743709779901,15.5275200251627,17.190604890781,17.2128859413652 +"Q95RN0",15.9473461359749,17.1114527820435,17.7402667866249,15.793812512182,17.2799436526537,17.7599454678148,15.7977033418041,17.0641768228794,17.6133566054545,15.8637113244883,17.2386306840022,17.683908810044,15.9624453673861,17.1879349885062,17.7064762370331,15.9508285545809,17.2139184201346,17.6482557359665 +"Q95RQ1",9.54072802601289,13.3682606830823,13.020616006834,8.87016068119866,13.0181234995813,12.6740850554009,10.5789097945132,13.2786745242839,12.87661170738,10.6295779462424,13.3606365022573,13.585998857138,9.77733361842236,13.1940469009746,12.7458539500115,9.41041512500474,13.2110322226775,12.5907029824182 +"Q95RQ8",13.8520896742855,13.7688563384077,15.3309793494929,12.7683893434995,13.7959578932025,14.8758135447126,13.480745745515,13.7327332948837,15.192247128,13.0094846920556,13.382881548027,15.3337263454898,13.8615119466391,13.757928230174,15.6616611919612,14.6713283698534,14.4396544326295,16.476188453885 +"Q95RS6",16.5353198721039,16.6166933697162,18.0353802572661,16.4371834926841,16.6886991756456,17.9394675879635,16.5598952776908,16.7564417367815,18.2866928679278,16.5393314404864,16.8082114664989,18.0391687658034,16.4616818331038,16.8290214252125,18.0403783864373,16.8385442351324,17.2312762767993,18.3787285647664 +"Q95SH0",13.0610065522533,13.7481965437148,14.4068500083747,13.2482459058154,13.9330875187354,15.0604538971953,12.9980111737472,13.5593825248147,12.8812542908113,13.0841489093502,13.7831937394758,15.3922036211038,12.8266861599905,13.5983616219792,12.8674877033649,13.2695824472881,13.8894566537274,17.3385441964758 +"Q95SH2",18.2426178831598,18.6647168086099,19.3976037162157,18.1236975480535,18.611119584613,19.3947103754698,18.2995391279258,18.5415243172699,19.4163058471844,18.0905301868471,18.5701412600377,19.5708533169373,18.3060592174958,18.4838918161931,19.4738689019585,17.9352817210528,18.5862952099776,19.2857808512772 +"Q95SI7",20.6042841723086,21.1723079064451,22.3151995717917,20.5628212773198,21.1626177624173,22.2253501948996,20.411706005599,21.0542149670184,22.0910057932747,20.3953136186352,21.0302115719088,22.024952450701,20.3647703400778,21.1756915047712,22.0980803645976,20.2368109865072,21.0067183103007,21.9351610879894 +"Q95SK3",16.0522194478843,17.0727203755814,18.8247828826217,16.0414137604173,17.0596956074243,18.7193507996756,16.0590441956848,17.1124248021595,18.548228724864,16.041012431632,16.9867478648865,18.6381678477794,15.9794637179716,17.0623758093789,18.5512523539161,15.9190895339747,16.7395164728943,18.5133245057357 +"Q95SN8",17.5011635042011,17.6182271108518,17.9992170583725,17.6135099688364,17.5125400004879,17.8226657835099,17.5278038683705,17.8349976069801,17.888901767382,17.4546298527967,17.5288668662028,17.8473001590526,16.926778695288,17.824272567053,17.82697654455,17.5805049012309,17.6012983541268,17.7722809032851 +"Q95SS8",13.0640172967685,16.1435045243402,16.2842146357383,13.4350089534309,16.4647619500774,16.6687179230325,13.5175945122246,16.4899052616277,16.6675496063819,13.7734070471128,16.7615889409082,16.8607710334702,13.3904611627657,16.5136816145906,16.5989540878167,13.9701745781734,16.5877748251428,16.9239214959359 +"Q95T12",14.3132817908463,16.0886434700736,17.2191283320435,14.2287886372641,16.2537307024101,17.379971836608,14.3454786820313,16.1912605493551,17.0297403907779,14.2487036059849,16.2556177732805,17.2326939542213,14.4793165684331,16.2813947330842,17.5397582014721,14.2347373214951,16.3206443857863,17.2294090569916 +"Q95TK5",16.2789502197887,16.7847581493623,18.4017255216914,16.1870031052473,16.7353236964543,18.2057046053963,16.3709963082986,16.7808018340258,18.1769542647645,16.1095018689344,16.6912483249423,18.0568375404564,16.7830435439977,17.2420027370568,18.623435790906,16.2555862350409,16.9693890245121,18.2365580710833 +"Q95TN1",14.0427534133853,15.0625896975181,12.7996385706247,13.6327018218284,14.9572941900403,12.6652179448641,14.0737166730656,14.9306206879125,13.0421624528248,14.1855845491372,14.9055813991053,13.3775455913135,14.2965277958492,15.0174886046023,13.2709292658428,14.5137784063324,15.1190644091439,13.1257721961502 +"Q95U34",18.1912425495838,19.2496302714171,20.6316935809046,18.2972151638745,19.4452337957045,20.8153367015947,18.1684744511446,19.5123172666959,20.7618759792524,18.2322612775823,19.3721087771726,20.8518635111044,18.1473867644117,19.5101602688152,20.7947111100811,18.3213386059111,19.3090681580125,20.7365055935132 +"Q95WY3",15.8124395516313,17.7276916448312,18.4625388632387,15.6227556711852,17.2796190587274,18.2236889967174,16.087911479783,17.8010360493114,18.4764790747971,15.8834787919666,17.4229286492613,18.0376219590627,15.9925420185562,17.604720136612,18.3845468379776,15.8288090476245,17.4567567566792,18.1500771819819 +"Q960M4",22.4792013238786,22.8982248713512,24.707604215819,22.6506565503245,22.9747306864015,24.5318646226847,22.256197135667,22.7227754724034,24.5077178406143,22.1662053749631,22.7051606923071,24.3387633263919,22.1476778408965,22.9644634300044,24.3973740814397,22.2740692030017,22.8325452923184,24.2595499045549 +"Q960W6",13.8101834897856,13.8249063368623,14.9078621067194,13.3317815195729,13.703350943483,14.6043155509943,14.1599455093033,13.8446769493965,14.5210913361551,13.7284327152498,13.5576585451135,14.7458842541627,14.5442113705331,14.3865444742177,15.0462255265975,13.9598417660148,13.2022809540833,14.1634719208571 +"Q960X8",17.7726649365205,18.7853255679243,18.7966467381275,17.9124148898426,18.8815107664705,18.6642585837352,17.6512048929538,18.8499257858249,18.5341992766366,17.8081776631035,18.9658988192109,18.7009046665785,17.4540339559709,18.6252059330252,18.4743396284907,17.909872646565,18.8694809955964,18.6785017745792 +"Q961B9",13.3083533722785,15.3140289441915,15.4439360888776,13.2332112250972,15.6165742762115,15.907380377384,13.1405144044314,15.675487394916,15.606748928564,13.7124270599202,15.6257785872496,15.6768776596176,13.4317668925317,15.705012300286,15.8259951817208,13.6706306623118,15.7607151361669,16.196686452777 +"Q961D9",12.4295206324021,10.5084198077099,14.846187039907,13.3077249097465,9.4203167853096,14.9225769873078,12.0278784343041,9.54495483450571,14.8350285875451,12.7664757524411,9.78277096804088,14.7956971078333,11.6898266169248,10.6578011268147,14.7698650811841,13.0801157032641,9.77579284772279,14.6981080895975 +"Q961Q8",14.4706199474422,15.3419737114198,15.8401090417144,14.6062003190489,15.3249318861637,16.0035906843275,14.9587114865975,15.3836425334107,16.135475378502,15.3668927996473,15.3203267395167,16.0421276939912,15.5484830694239,15.8680307811402,16.2402172048082,15.105834467782,15.3872455021903,16.0316204570123 +"Q961T9",16.6638513444894,18.2903928221088,19.4026174956602,16.1037540188373,17.8624373211628,18.8643006894641,16.7355365869201,18.2832312984961,19.2208113446382,16.5382991271517,18.0653090385988,18.9990835250181,16.6842848462889,17.8949946418581,18.8618195066952,16.7058409251285,18.1586819813355,19.0909413350995 +"Q966T5",15.8153243547461,17.1659538795324,16.9747970988361,15.5379829139255,16.9338706666423,16.7125093246012,15.8103007196452,17.344960991853,16.8222867494898,15.560961887063,16.9535207481335,16.7342468775673,15.7634904695746,17.4599289802951,16.653074489546,15.5175762016043,17.0354655572533,16.6827491227707 +"Q9GU68",21.1857371787408,21.9667739003106,23.3007745710685,21.1681842537468,21.9103872611733,23.300321782236,21.2500532972574,22.0955594810318,23.4066142398466,21.2840156191002,22.0499928284273,23.455576053644,21.0022900252037,22.1838314843345,23.3326101653178,21.2477398608892,22.3137310944807,23.4757385057656 +"Q9GYU8",10.1248617624172,13.4666845843522,14.4007328333151,8.85611881440072,13.3970175441108,14.4077860341145,9.39512880074549,13.6274717355388,14.0112886894151,8.29429367216926,13.5976848162892,14.6597925578659,10.3533835159321,13.745714023451,14.6198048681396,10.2303043924958,14.1952701194316,14.7945471263488 +"Q9I7C6",14.7292424756118,14.3976332354687,17.0216875717274,14.8310452068644,14.109521304402,16.9528513537622,14.6811485118957,13.819983356306,16.5286018676345,15.6996261388934,14.1567309297615,17.9416440870157,15.0036619014023,14.8990443597955,16.9933115514431,14.8461609170209,14.2601367386318,17.5589242662963 +"Q9I7I3",12.3363483981274,15.1612369737622,16.0115025888488,12.63766007742,15.2692019767402,15.7696586773191,12.613959022146,15.5958774871719,15.7963684405814,12.3840623293019,15.3874306314663,15.5401813442156,12.7725476334871,16.0360243857297,16.1426528007028,12.0931248242567,15.2144184225427,15.893130776048 +"Q9I7J0",20.8086083639444,20.8479583022063,22.0722701182546,20.5716988230563,20.6238574216865,21.8498076925735,20.5146972647053,20.3920896265546,21.685696226385,20.5164229141813,20.6691970741122,22.0093943622726,20.5390081301213,20.3207240508972,21.7100739370415,20.4569231393365,20.5725989126393,21.5145963133981 +"Q9I7K0",15.1982680466031,16.8418600015541,17.2739378336768,15.2343672359086,17.1897179700493,17.1454206722619,14.6472132975606,16.5375456162147,16.6911030190398,14.7701235600218,16.8247188810686,16.9131491195411,14.592586691787,16.4774515145304,16.4634896701958,14.7172158946646,16.8570180060865,16.8743469057157 +"Q9I7K6",13.1863904785134,17.164243558963,18.5215166479258,13.3197787132407,17.3978363210051,18.6069793775767,12.8365687758302,17.0231663716544,18.2898022050757,13.1070692666808,17.0993351919306,18.3559887001485,13.2143649444213,16.9821636690431,18.1344723364936,12.9714201445225,17.0613492326207,18.1602942039909 +"Q9I7Q5",20.91512615055,20.4189345283638,21.9256513181425,20.8142351205116,20.1947930785472,21.4887035118275,20.2452624822456,19.7882240926126,21.0426232931365,20.2756457374423,19.7402043912836,21.2298978636357,20.6215671927576,20.0846125874156,21.266358750379,20.4755385176124,19.8389509001013,21.221911260231 +"Q9I7T7",13.009421063613,14.6806875760077,15.5086459343994,12.9054679813075,14.7428709184345,15.5726895461276,13.4705695399063,14.680136190894,15.5535741017661,13.2119121426435,14.7980570077591,15.8028213103908,13.8639229980075,14.4402620757587,15.3824072305177,13.6136577492041,14.4434172538324,15.3870051317211 +"Q9I7X6",14.1015515259242,14.1791365657821,16.39330895762,13.9021548652758,13.8077426905289,16.2133724005875,14.2386865658943,14.2910621964045,16.0807141148041,14.0882779827723,13.7878483009928,15.9372936647454,14.2906819622525,14.6702223573914,16.1401132094116,14.5391563639515,14.0160975968092,16.1800192988943 +"Q9NBD7",13.35182581285,12.8991264101703,13.8067985917833,12.6674152336529,12.5333048847916,13.3716919813253,13.4038434180148,12.784317951563,13.2454894952486,13.2480462397189,12.6953657640763,13.0997438142761,13.0797778591227,13.4774849880077,13.9679707889085,13.3912699594389,13.5330800491497,13.5570685263569 +"Q9NCC3",16.4495851917194,16.7411564881173,18.6191261746838,16.4448128129885,17.0303742367844,18.66141567768,16.6163124173727,17.0658520680865,18.7245684805182,16.3156781713533,16.8339593172607,18.5347920493908,16.5555687624196,17.1612261352174,18.5396452618197,16.2978051612482,16.7913471587826,18.3656497843701 +"Q9NHA8",14.8484933233141,16.0732431963508,17.7611743193339,14.8694851562487,16.0537742269265,17.4373690180591,15.1297929996888,16.1523071436133,17.8700376477531,15.0864078036362,15.9568834241667,17.517711646957,15.1237492159259,16.1323850328626,17.7828282791111,15.0529479788174,16.805826555365,17.7395364714594 +"Q9NHD5",13.760430259391,17.0334720968921,18.4538303445738,13.7833785084085,17.2101537565593,18.6824818560397,14.0082069250792,17.1047352380062,18.6179809859765,13.6595820407091,17.2929394707851,18.7972291411296,14.1249157132438,17.1865229441738,18.6566729710791,13.7456111479784,17.2670069906462,19.0617423804449 +"Q9NHE5",15.3614837922575,16.151916926172,15.7391109056107,15.497915745405,15.5034458433978,15.6352630458395,15.3179744178567,15.6502955514804,15.3246998038762,15.4359449933601,15.7960844756977,15.5837100020032,15.523375715918,16.0191209135056,15.6961539985559,16.3392147290782,16.1604233388651,15.7399404632655 +"Q9NJH0",20.4307564303059,21.0443954266491,21.7581131819175,20.1688173504975,21.0162336581907,21.673882640488,20.6640462576766,21.2754294355281,21.9488914319642,20.4451832536705,21.2469902898055,21.814263736125,20.7179464451449,21.2865460503133,21.9963430779248,20.5524908282368,21.3480365150884,21.9927846464954 +"Q9NK57",15.0841944159919,15.798076643279,16.347956329416,14.9108630969506,15.6742329416254,16.2637976723038,14.7849734828985,15.6996463939763,16.054503367884,14.9424525505013,15.7619909611909,15.9840976408828,14.0960664469189,15.8049097964374,15.7712835079402,14.5572501842902,15.6443511677321,15.9827949404623 +"Q9TVP3",22.1721529618813,22.2206737628376,24.264080959122,22.4555516302391,22.552359484255,24.4207703820267,22.0344849926157,22.1553043444563,24.1890306132155,22.2719079054503,22.3357571255917,24.114921875943,21.7865442057962,22.2622597692883,23.9813221614151,22.4847589873906,22.5883721305372,24.252423468699 +"Q9U1K7",16.2468180181751,18.1503279032545,18.9192248971303,15.8359506299077,17.7815520489026,18.2172358021209,16.2203908675517,18.0566779188329,18.9002157797756,15.6878690006277,17.5286430048564,18.0944210927345,16.0476993278842,17.9880981934994,18.6225194705072,16.3516114473209,17.6109513209421,18.2658960695312 +"Q9U1L2",16.0769758311614,16.9405976959679,17.8030007218437,17.1699692834888,18.5083444900169,19.9567341800958,16.1344104449731,16.7903462009313,17.3678501226131,17.0299455654222,18.1379216685254,19.4581858778614,16.4642879361469,17.1999865268593,17.9984915967941,16.7982550429214,17.5952969398583,18.9201992241167 +"Q9U4G1",18.1808818508784,19.2078418981804,20.0995224350246,18.3353166928613,19.4088580477907,20.1744397754938,18.0995840537276,19.3886557419411,19.9918353145334,18.3382527492444,19.4617505942873,20.1645324776591,18.3594748395942,19.5870733932579,20.3888359712733,18.6332102861806,19.9374490112116,20.4374585872635 +"Q9U5L1",16.2799464642003,17.5778148831195,19.237293187678,16.1980534165058,17.657894689061,19.2377442430339,16.2135125751823,17.6184039835728,19.1121046457932,16.293071570988,17.6890196804127,19.1646929931134,16.2472248279559,17.6218407659705,19.1157200994689,16.344900959099,17.5472972331007,19.0984689861404 +"Q9U616",19.1872844190241,19.3957037820382,20.5857332315906,19.5203818897735,19.6857587848101,20.4709425528471,19.1227591009573,19.3704054538932,20.5237391995432,19.0448534617248,19.2697456957271,20.4796877160786,19.066691746451,19.7600566778701,20.5172469012641,19.1841818275884,19.3665880451427,20.2758439941567 +"Q9U6M0",16.5361418550541,15.5822537100301,16.6120038029282,16.6387712279014,15.6977400269176,16.7843336809967,16.5685577392957,15.6260675684873,16.4167747967142,16.6812489499322,15.6880426755398,16.6474317330687,16.4970686176125,15.8367590801586,16.6032774192825,16.4260353579555,15.7182641615334,16.4256564417287 +"Q9U6P7",15.5754764175854,17.225427456831,18.0404681967052,15.7988754907776,17.4494571220777,18.2884473009678,15.4853981608641,17.299096517471,17.8396685527898,15.5215852458618,17.3054288870412,18.2178360600854,15.4418249331628,17.265250351174,18.1103071123582,15.9542992197077,17.5215923235829,18.3108285286727 +"Q9U6R9",19.644441766013,21.0817258577955,21.233594518558,19.7762148753218,21.1366687526417,21.21728290514,19.4736936012457,20.933877604016,21.0203045476317,19.6242745761251,21.0056871787019,21.2409002788859,19.5793972169862,21.0437290093132,21.1072452909766,19.460673305354,20.9497440060774,21.0051817576889 +"Q9U915",20.5691767242943,20.9595956340133,21.9637660943038,20.627609213635,20.9510982398495,22.0456828184725,20.3675604564881,20.8104121101587,21.8466659856735,20.5726875465096,20.9426024953582,22.1536316251222,20.3940020206485,20.78688884792,21.8664877385461,20.3727424098989,20.9394478368429,21.8927304175012 +"Q9U9P7",15.4360412857477,16.4047533957293,18.2205921279984,15.3574304439683,16.5752829283463,18.3906560384315,15.1851952827347,16.3430355622438,17.9299455426099,15.2478519163182,16.3814966652163,18.0471756307402,14.7158747016223,16.402771135578,18.1997760372874,15.4274020292415,16.3613944853569,18.1420238062551 +"Q9U9Q2",14.5019016875429,15.3809578561236,17.0859568156486,14.5936209488855,15.4896360762399,17.0969201993437,14.38157718125,15.3590951520904,16.8785264246826,14.3981705920522,15.4577036602393,16.8939774818684,14.1972362989905,15.3555845563884,16.7394379723649,14.4124114212833,15.2534289030097,16.890198355113 +"Q9U9Q4",17.0011623663011,17.0782539342097,18.9381453025742,17.0999155197026,17.0585884889639,18.8117346303141,17.300821602074,17.5291701879136,19.1505008553149,17.1962101174222,17.3079254338567,19.0880486483819,17.4071088338951,17.6901697393157,19.2996929524366,17.5695392914521,17.6613489618756,19.2783327298647 +"Q9V393",16.5160639890825,15.4969115338551,15.1179136957572,16.2285809427971,15.6955166073425,14.9977519130308,16.5959617707828,15.7926020562605,14.8272842597728,16.1630780821731,15.696876005822,15.162430014952,16.8526890370881,16.3840234421859,15.2522792908316,16.6291457178099,16.0274382679347,15.1433970062963 +"Q9V396",19.7938448864803,20.8423395020285,21.1135052881656,20.0687090061762,20.9739115270503,21.2489651449632,20.0226241145895,20.9483911584311,21.3902174512641,20.1685726449681,21.0963241348167,21.5164807643115,20.2069317994071,21.2958129002994,21.6968370575451,20.3936817710981,21.1998792705182,21.7167590220799 +"Q9V3A8",15.1381482459592,15.653825294128,15.1806866448316,15.0360818921713,15.3903850476058,14.8649768907311,15.4120953722122,15.8543935967524,15.4220428325682,15.4517283575272,15.9877620119371,15.2092809838205,15.7929977084792,16.294644318596,15.6118033381259,15.7396433952364,16.3767028798095,15.5765336834679 +"Q9V3B6",13.6017986889661,13.2023345062424,13.7587874591045,13.7224838954655,13.5528405111934,13.840227769614,13.1691893799141,12.9360674972324,13.5883345570741,13.4473615809628,13.1536424543604,13.9588427128681,12.3811998795185,12.3518910780534,12.9359175931775,12.8353950204908,12.6959458307049,13.4835822372945 +"Q9V3D9",16.5170663218001,16.7186483225639,18.3288910546783,16.5699827587955,16.9265031745174,18.4513098852482,16.7458801842781,17.0480366388771,18.6196457723084,16.8032743862666,17.1414934909027,18.6488892430159,16.7738838914072,17.0433390863597,18.7251723019661,16.8948625236111,17.1009449691313,18.704964544085 +"Q9V3E3",12.7719426819164,15.6627365090747,16.3193478455833,12.3807999061628,15.6814817943796,16.2947937196586,12.8899021871459,15.8731770110891,16.512618672725,12.6372488569634,16.10950359084,16.8983913387295,12.9839506369656,15.5779835971058,16.4274458184933,12.7087777709433,16.116847851294,16.6487083290431 +"Q9V3E7",18.5059692895175,18.7749159674315,19.0734304969239,18.7982799432447,18.7287808725947,19.0124083164689,18.5359854455362,18.678150768619,19.0805285560173,18.313550257882,18.6316145148258,19.0328404656255,18.5743730921603,18.5109659136243,18.9919183101494,18.427639594323,18.4381194340164,18.9375094519868 +"Q9V3F3",13.9498162226058,14.3214330771982,15.3266707873964,13.9055002667756,14.3629513522097,15.3173743159609,14.2654779328431,14.4509705047284,15.0641722714431,14.2246867030558,14.4447930529173,15.2385767276089,14.0046947082511,14.4642214437443,15.4990130802399,14.1962106143702,14.9437753878514,14.9526312527024 +"Q9V3F8",17.8319804219691,18.843449787653,18.8731783253268,18.076839545267,18.9830551989214,19.0621333045391,17.7047412254401,18.6474026444645,18.8350776531742,17.8746229478399,18.9288208759056,19.1519320137145,17.7117234925589,18.6398422172392,18.8945002517661,17.9061869733972,18.7815663400788,18.96993282391 +"Q9V3G1",20.2670422029238,20.9148535271106,21.7912072484513,20.2291980373082,20.7871174475522,21.6173349923766,20.695188947653,21.2234820734168,22.0269364802748,20.2531656420433,21.0379485863512,21.9104005081867,20.6440069425281,21.0712030175927,21.9863161614377,20.2917788391744,21.162072419248,21.6599741618208 +"Q9V3G3",14.1420769880836,16.2884164446214,14.3556437105814,14.4595150773442,16.3880113707088,14.2731259108073,14.2067928653398,16.4157898492829,13.9353300508829,14.3479424209882,16.5088318423126,13.755612730446,13.8695316422913,16.3978284884512,13.5029331130875,14.8154058232523,16.40969116076,14.3905514929098 +"Q9V3G7",17.5011317140745,17.9178914804185,18.4970663499684,17.6174922044246,17.9424423856114,18.3738277072643,17.6396909797413,18.2352414695302,18.7506921388575,17.6295229799698,18.1194371876679,18.5211732734204,17.6115951595102,18.3731641984829,18.9539143407303,17.4244022295185,18.0454974242491,18.7402304340453 +"Q9V3H2",17.2423751233533,17.5692368274809,20.0942545499962,17.0791969904888,17.6450908413799,20.2784165658969,17.2416530200018,17.7724361172428,20.1815721399067,17.3435038968511,18.0367555012482,20.4784695153554,17.2404677193933,17.4983943424389,20.1341499989108,17.3482594928152,18.127739679944,20.4024882930905 +"Q9V3I0",14.8078645862721,15.5954717006786,18.1648118495311,14.6814739771771,15.347834293368,18.3015905155451,14.8367957136144,15.3904218991189,18.4985722618801,15.2682374232257,15.7644010741909,18.9939018052454,14.3070997434621,14.8580136217665,18.5511107936201,15.3328641039585,16.4606312646197,18.8695403882361 +"Q9V3I2",15.8941034977585,17.8737742089517,18.5789565768712,15.7285749042041,17.654396976665,18.4925721876968,15.9117192314987,17.958963141514,18.5139741177031,15.71743797428,17.6025543261914,18.4803184892051,16.2585184068701,18.0713578626633,18.9794661677822,16.2699745206028,17.968300308675,18.8694308421599 +"Q9V3J4",15.5861040537744,16.26313892853,18.0543895978796,15.6222137194812,16.279150671622,18.0810643231986,15.4458750581663,15.995895993914,17.8913050048928,15.6914604062646,16.2882181364366,17.9258881214661,15.5792279598706,16.2985293109248,18.0411682590814,15.8009578163847,16.5869459328025,18.0299929578579 +"Q9V3L6",14.3647883579908,16.2016627691647,16.3566020142835,14.2638281867183,16.2037400179698,16.5905014368196,14.4643876617001,16.3930903319909,16.4402668199325,14.8529677132251,16.3745433500366,17.0115355197724,14.5980684602202,16.3340510995249,16.72379107126,14.7331701895765,16.3249875977416,17.0103843666679 +"Q9V3L7",17.1657657100123,17.9223478574956,18.1978614267867,16.9567365657232,17.869884876195,18.0747320027226,16.9321545193701,17.9938634980398,18.1155160918407,16.7812770622052,17.9284960267382,17.869671153441,17.1064728040148,18.2858247031106,18.0722461649998,16.955509201208,18.3769106800676,18.1703902386339 +"Q9V3N1",17.0134533405112,18.7280713241629,19.7608053467308,17.1097035040987,18.597110860541,19.4272203779962,17.1730953748016,18.59939001169,19.5687064285586,16.9981523267273,18.4847566861346,19.4083034427235,17.1398037750732,18.5060506259746,19.5606622441275,17.1747460928878,18.4641347364622,19.3834476627748 +"Q9V3N7",19.4050969822907,20.1895563203673,20.9983698119132,19.5539988664754,20.2544183136449,21.0127993194355,19.8570034914032,20.5195480290094,21.3249188477351,19.8762585291516,20.6426692254981,21.5529654457062,20.1123613840606,20.7334488631755,21.6682620170463,20.0100220377086,20.8957654908409,21.62836205229 +"Q9V3P3",18.9582909003588,19.1825772970166,19.9940676278179,18.9557590865149,19.1742297867993,19.7703095725146,19.0972057466976,19.3993408705677,19.9839741802589,19.0069846150084,19.3226926396206,19.9551454648842,18.9998019784307,19.3616650828824,19.8777529124102,18.934374301508,19.1682627207922,19.9325275315122 +"Q9V3Q4",16.0669208363786,16.2770667239525,15.5132045807882,16.4095291112583,16.2260599599196,15.6037012554413,16.0649014675065,15.9359703026732,15.4944439938836,16.191704532739,16.3483970001306,15.9192083540996,16.3144394185614,15.7680211747854,15.4810918391092,16.3297377295298,16.3113843181869,15.5578259153032 +"Q9V3R3",12.7199029294595,13.2197571875926,14.8132962657915,13.2566952763457,13.2685951557516,14.8099673560396,13.0588671017561,12.9988179384648,14.7055192719447,12.9587477064983,12.9645249820273,14.7984246837053,12.9344572717922,13.1655991403435,14.825332483064,12.9780330484929,12.9938474045503,14.6093805353042 +"Q9V3T8",15.3676102266963,15.0594959535753,16.5843179331927,15.7201484071221,14.9957920340667,16.4981099900401,15.3864029604312,14.7658356936415,16.2169387623058,15.7201432390909,15.2228465790453,16.132914989073,15.3282818593678,14.5517703689785,15.7954183028617,15.7694590566566,15.1112929315015,16.2189861179611 +"Q9V3U6",20.4743150534009,20.6703799889145,22.0113737196677,20.496737508239,20.5564561931793,21.8737538188864,20.3794985859573,20.8029962806621,22.0934733351675,20.6489334204509,20.913370766703,22.39121488589,20.1734871451455,20.5792443783066,22.0021090070714,20.4154820865235,20.9057855544092,22.2271296671409 +"Q9V3V0",14.1182536952796,13.8081184773165,14.4993556610247,14.3491147764512,14.0791772702617,14.603188605315,14.4580739006208,14.0155846908481,14.4693738683912,14.7700346684312,14.3035894013984,15.087265725539,14.1896726619602,13.5964573612941,14.2927396783891,14.5162666236372,14.1437424975276,14.6649036844652 +"Q9V3V6",20.5767335087769,21.3903911349457,22.5230271873628,20.6199357856586,21.4322251608076,22.6113661510032,20.641847554658,21.518030716755,22.6014072340337,20.7489017205868,21.5302529705475,22.8053634374912,20.6080357584259,21.410215409955,22.4572379740112,20.790402146515,21.4771691283724,22.6474657331453 +"Q9V3V9",19.1996655964828,19.2784902364113,20.1597951153059,19.0893886845875,19.2699866915206,20.0668236851243,19.1367209398431,19.2977274646733,20.1373343872659,19.202859263609,19.2851472979759,20.1519467838243,19.0645120617658,19.3449541387079,20.0261174464079,19.2050842273699,19.2607376585853,19.9831896713478 +"Q9V3W0",19.5185070460184,20.4416296370508,22.8448639502847,19.6548102900733,20.5042694542914,22.9801241921802,19.3963510090249,20.3530901781991,22.7086984575737,19.2414390682741,20.398155024357,22.8535816896855,19.3374109115604,20.3904001281003,22.7440160182197,18.965156406054,20.2324331758635,22.4711546162167 +"Q9V3W2",21.276496240438,21.0789440996278,22.4440525054956,21.3689264926579,21.1212942457905,22.4652610468687,21.3365784843784,20.981372900062,22.4228010097986,21.0823725807736,20.8490860269521,22.2692440023056,21.3034321716878,21.0942362102683,22.4089492740109,21.193329401316,21.0176236155847,22.237401601313 +"Q9V3W7",17.6736847158897,17.1158838082722,19.124998303126,17.4501450176844,17.0598997892578,19.253580251333,17.5921994328826,17.1443997207211,19.1273419751111,17.1218416526577,17.0303961117674,19.1602116377321,17.6913691659641,17.4227600863307,19.0920246657928,17.097878720645,17.1881275291695,19.0713702091844 +"Q9V3W9",17.340982111589,18.5998943414513,19.7207693388107,17.3632033274386,18.7214313145203,19.5884015849691,17.3880927637053,18.551574413463,19.5293893625429,17.3275322465446,18.7326747055772,19.6300174478173,17.1946631346088,18.4790235354208,19.4668592065518,17.3412251553205,18.592626937382,19.51910033557 +"Q9V3Y0",14.9695272401491,15.9815741435444,18.3774392634645,15.052576678207,16.1423951192716,18.207887344017,14.9211862973148,15.7231281020439,18.1322865774726,15.1882323457423,15.930544042472,18.1282518510594,14.5742403793644,15.7005777204763,17.9901503966673,14.9492449332514,15.979834359771,17.9900383000646 +"Q9V3Y2",16.8596150750529,17.6408619937177,19.439951479504,16.7342022945217,17.6062080302311,19.2905510782581,16.8153862402034,17.5454503373055,19.3397089167143,16.8294181025043,17.5108416581348,19.1466357581362,16.6480106876411,17.5635621977559,19.2489524391897,16.9380101570636,17.3550274394588,19.2812270279036 +"Q9V3Y4",12.0392049750058,13.0537961672622,17.7165790410954,11.807028278757,12.7900836380861,17.1165213229343,11.8377781905386,12.9986430629376,17.5466111689419,11.5840027414513,12.8913704432462,17.1586162764371,11.6620400168049,13.4722604055133,17.9562547150453,11.3461632904251,12.8905870593576,17.2964845514144 +"Q9V3Y7",18.6091893064762,20.2666358786045,21.0734482743604,17.7606383356299,20.2259836834821,20.7974800629613,17.7300542197642,20.1956961940853,20.8214379967222,17.557441072243,19.961708798373,20.60657172125,17.4037745349533,19.9954575655891,20.4511701340778,17.6495484469303,19.9003467608985,20.4545357161735 +"Q9V3Z2",15.3896191140477,15.9688950749156,17.0865049694041,15.3242790968678,15.8541327443965,16.8676461257107,15.5277823088578,16.0952973798309,17.1689930171525,15.5764878824058,15.8931863660271,17.0384147707214,15.2900993555479,16.1602048200767,17.2864690795835,15.7201587247486,16.0138955867442,17.0591487527329 +"Q9V3Z4",17.1836655643021,18.9359312338683,19.9777041714413,17.201619621672,19.0356053937295,19.9785780781962,17.092772903322,19.0345443394696,19.9174943479517,17.3620996183234,19.0461228368437,19.9289241867089,17.0968654564808,19.0988274477799,20.2478935042367,17.2625622504604,19.3542757003059,20.3580753572664 +"Q9V3Z9",21.0942666938667,21.58948769818,21.9920400104373,21.3386962699643,21.7844210470001,22.2502620038991,21.2753568915508,21.6327141900283,22.0757350981868,21.4040293842086,21.9710866983215,22.5304471188224,21.0289823852401,21.3881747075225,21.7311560805541,21.3422356790019,21.8687650421863,22.1982747146532 +"Q9V400",14.2452906503928,14.4973921213132,15.4133587024418,13.4214251270068,14.0381498132318,14.8446706711588,13.9075179202837,14.2102863114683,14.8406533198154,13.4385225560095,14.1909384844375,14.4831650548071,14.0493264322176,14.4150211288049,15.2303549848655,13.6235469111443,13.7368807034634,14.6633662197199 +"Q9V405",19.2706356957588,19.7373511568338,21.3504397713212,19.4158675662338,19.8435951124731,21.4835066512483,19.2880322174565,19.8723659288325,21.3246607985112,19.401844022608,19.989529325884,21.5875919336502,19.2249814627898,19.8735990271935,21.2617423363398,19.6253491086913,20.0086819489609,21.4211655931011 +"Q9V406",15.5615486460163,17.17082354582,18.8391778527187,15.4116230755442,17.068898333859,18.8890807631927,15.5059676011111,16.92595521986,18.5820078135284,15.1472790521498,16.8752137112132,18.5735828748563,15.2206811591369,16.8716553898698,18.447126010943,15.54487314109,17.0918898990446,18.5331745646825 +"Q9V419",15.8427442205963,16.7927781197485,16.8744748877694,15.2538542439545,16.5166282152851,16.4718387411189,15.9298744284079,16.947074024009,16.9073223434489,15.6934614861956,16.8117845437175,16.5199506092451,16.2087406563553,17.2559715682547,17.187077392075,15.9496307833993,16.9829668091666,16.6219089378375 +"Q9V420",15.8279538226929,17.4403266453971,18.8107857671163,15.8884990762266,17.7762664101978,18.8510391112283,16.0158369700691,17.8454543414018,18.924990488374,16.1503757057831,17.7993498898392,18.8999581508496,16.0144784256083,17.8782123863187,18.9629575310317,15.8513772680998,17.6832852895281,18.7951849888513 +"Q9V428",17.6680627609301,19.0760267035122,19.7231309418399,17.5481533690864,18.9653326552399,19.6403816876128,17.6407944956735,19.0223249366264,19.5879599274413,17.5406869177358,18.9638211806827,19.5787343864976,17.5096399949572,19.1771324077279,19.5364611829698,17.7406605683658,18.7943165269652,19.5045854887946 +"Q9V429",21.7602677734497,21.5439429211717,23.8378771427778,21.7485480173217,21.6409219766294,23.7656506721236,21.6867520550674,21.469806842358,23.8145152883451,21.6720478375489,21.5017943836679,23.7999664678229,21.6639116421939,21.6074255825097,23.6461742371513,21.6520854235164,21.5434109422497,23.6439730336781 +"Q9V431",17.3052066511892,18.764080491718,19.7609536130408,17.2891416256851,18.7496952263109,19.6988124582221,17.3629263771421,18.7397707691336,19.7129226149178,17.406646615749,18.6516767478289,19.6558353878394,17.3237606372284,18.6271976263454,19.5668249482007,17.0251092660186,18.5181157390428,19.375946366954 +"Q9V434",14.6202937109113,15.3659137572137,15.6767992937249,14.4467382667773,14.7146301836082,15.289497893919,14.4366956171844,15.1628214028831,15.7069841807405,14.6218571330086,14.8746025623051,15.5241381511822,14.2206449325044,15.3508759054022,15.7256623982191,14.2448303193156,14.9097795752494,15.5058943085989 +"Q9V436",17.327211760042,19.9585618057298,19.8726496354316,17.5104590574757,19.9809157410997,19.9260020082513,17.398391740657,20.0656580632013,19.8707839172601,17.482462879611,20.021491144438,20.0400415065197,17.3196079180672,19.9346816400646,19.879551642912,17.3871403169175,19.9828812566916,19.9017331985292 +"Q9V438",17.214298818765,19.6395119578118,20.2696851051719,17.4132395847698,19.4823654244909,20.1231665885107,17.3878093441157,19.5774988402615,20.1919260110469,17.2953283244137,19.5227905896379,20.1491259339875,17.3499665503223,19.4824963036592,20.118196412462,17.0907689193348,19.2664017415499,19.904136599901 +"Q9V455",17.5165043249807,19.4978840495016,21.0421374609174,17.6163359804273,19.5225745357778,20.8953227587724,18.1055462251172,19.5029370020102,20.9441900726222,17.6565717847733,19.4059793652605,20.8187163956653,18.0103529417862,19.42200443636,20.8104682113089,17.2716550931036,19.3692381603789,20.821371047304 +"Q9V470",18.7206089169007,19.8105830499793,21.0951801086025,18.7733886355811,19.9802565078714,21.1500002228199,18.7442425425923,19.9007151625302,20.8520416670635,18.8571896688696,20.0442176834095,21.0927444437118,18.7592053280757,19.936818005241,20.968603276249,19.0105147167395,20.0119412761455,21.1465482477665 +"Q9V4C8",16.3016534916133,17.0604478626657,18.139830032755,16.5174744947533,17.3184815639113,18.1131440297821,16.2849949264004,17.1102689998609,18.0291235067279,16.5129608908069,17.3239842531083,18.0958102760748,16.3790657500054,17.1653740798395,17.8659336309089,16.5352577462425,17.4558744600753,18.0884754862303 +"Q9V4E0",18.0275242664258,18.7683476614465,19.2982994290925,16.9000334533547,18.4904785695531,18.796785136147,17.1899291007754,19.0762490557821,19.4075374522789,16.8731292266652,18.64353961673,19.0477632598065,17.5395530957451,19.4058052780017,19.8063773090832,16.9918652584174,18.8484405057828,19.0323074290543 +"Q9V4E7",13.2694067832316,14.899343178545,17.7154972178721,12.7984192613741,14.3611255566728,17.3371788118579,12.5071556792148,14.4594567588722,17.3728937421157,13.0149232090756,14.9031091565813,17.5561355698137,14.351528082651,16.2234923562763,18.5335178944355,14.4614485950952,16.1092166143037,18.5193437067139 +"Q9V4N3",19.2426693114286,19.577124362745,20.0614604170822,19.4315569401208,19.8993661953501,20.000809271604,19.1817755148301,19.9240215691936,20.1797940976671,19.3011434433093,19.7920470271373,19.6951654609365,19.1422711518222,20.0892772289298,20.1944490260065,19.2942058159552,20.0622352496666,20.1874542417601 +"Q9V4Q8",15.3893029928885,17.2458385599263,17.8598419266145,15.6232002630331,17.4172065594756,17.9169913119684,15.5549895169344,17.3892273404281,17.7952853966637,15.4618157459365,17.4227355454368,17.8595185244691,15.5565366836113,17.430017302332,17.7764763155423,15.2232056775158,17.4217558016264,17.7875676632774 +"Q9V4S8",15.9827988527986,17.747610861125,18.2400636610915,15.2929733606623,17.8052006295283,18.3132983262702,15.5942498277258,17.6817609689457,17.9494272224994,15.7280177651039,17.6720241716891,18.1610921535572,15.4618007033466,17.5797259325231,17.837256841588,15.1029648065432,17.6374856772825,17.9558393351299 +"Q9V4W1",11.9261855162779,13.4604622367772,15.679619171815,12.1101157141209,13.026105834226,15.632885749071,11.8658969940672,13.5201910462544,15.6443544450027,12.4231905228985,13.3345334407821,15.7169442506239,11.3917054862656,13.667021857172,15.3674832122161,11.2611392846556,13.4062999241477,15.4171857385875 +"Q9V521",16.6632200028824,18.8173358153278,19.814707843482,16.0171724647353,18.2672994916634,18.947013403024,16.2556701338126,18.2377942290282,19.0593831459622,15.705432459469,17.6873157437105,18.4277502691825,15.9616906596953,17.8562429181686,18.7666986666815,15.4976420045642,17.5803078840212,18.5263911950139 +"Q9V535",17.8667131101451,18.5737032226155,18.9729582539536,18.1552930179202,18.7040019894443,19.1485946684022,17.7640040645939,18.5648440299234,19.0863069077737,17.9710311541433,18.777375780312,19.4030408991861,17.8326562706392,18.6953280560055,18.9537899805135,18.1217517733354,18.9771068976487,19.2596340366562 +"Q9V564",12.9585935880679,14.169245939781,15.2071788334226,12.6511505488766,14.2918440046471,15.0206977685029,13.0397712484398,14.332880338808,14.8286563249224,12.9650587006411,14.5680515805419,15.0692077363206,13.0057832825722,14.1366525833298,14.8837832713271,12.9499345792396,14.2260592887898,14.8020236039897 +"Q9V595",17.4941502343862,18.4008914692569,19.6774838238863,17.623880027065,18.4146635265293,19.6723850179538,17.5063632782116,18.4009156178344,19.503384835094,17.7928206130881,18.4131863548277,19.6113334495531,17.6726979982424,18.2934654036824,19.5459368396393,17.4354647445117,18.2560604149263,19.5888489304387 +"Q9V597",20.1100858238225,19.592073269861,21.1798942837325,19.6489778791066,19.1931595990653,20.9160755306364,19.7731290798387,19.6676400861358,21.2015005491591,20.1132738425474,19.7392275227895,21.3217020073865,19.2318302419154,19.5487218190834,21.3559179842467,19.2658622098656,19.4300361325333,20.9349712773828 +"Q9V5C6",19.6164072196566,20.2538484589459,21.7607679696226,19.6636008149051,20.3995082464722,21.8761329596182,19.7170585522977,20.4714398254375,21.6195510902759,19.6924729159982,20.4937422015874,21.9004915973057,19.7448827610596,20.4821423046059,21.6609287007853,19.6509085757971,20.5190982630627,21.8025757977289 +"Q9V6B9",14.184173927596,16.235281545046,17.4999426856347,13.7953037121043,16.125589696287,17.3251514494415,14.3614365631603,16.262106663941,17.3694059922916,13.8705380597483,15.851347910906,17.1423624636227,14.4693822923565,16.3409049322129,17.1867619009717,14.0532646258508,16.0091428075811,17.0684719774978 +"Q9V6U9",20.7368363931038,21.8791738018822,23.1778372913958,20.6788623421851,22.0312246806738,23.3137089458518,20.7224377523335,21.7964983531838,22.9637504297041,20.611281585207,21.8064595999154,23.1168094959929,20.6616109421484,21.8419862187412,23.0649663486653,20.7020460417195,21.8653707927561,23.0943889648987 +"Q9V6Y3",14.5903738955979,14.5430574214954,15.8297928908986,14.6203828096506,14.7837347113398,16.0565500936171,14.6668735354858,15.0488439733607,16.2309828369653,14.6900514833538,15.2851761803996,16.488319421,14.8938852692642,14.8521943457775,15.9639708099543,14.6527843745655,15.2116135104638,16.1879061346232 +"Q9V773",14.8598090589049,15.3501224643403,16.9458492386745,14.790000879925,15.1838706120213,16.6538683362826,14.7028030958576,15.2433915158555,16.6421768283443,14.5000318281118,15.2977051171815,16.7849144864551,14.738881390532,15.228373528378,16.992355336999,14.4628580653112,15.0786049250421,16.4359281354274 +"Q9V784",14.5733644621746,13.975893758936,15.7952362307582,13.9537380994068,13.220432081378,15.4372350056585,13.9741615748661,13.5749003190846,15.1061101406995,14.0258272906135,13.7308331722215,14.9869734269508,14.1887577159328,13.3923067676524,15.1609437932993,13.5739827323166,12.7221771950046,14.4394510857931 +"Q9V7D2",20.292260511389,21.7257397200646,22.396887562996,20.1258877209639,21.7909043606592,22.4727580339849,20.2762566214332,21.6356439035384,22.1231857642369,20.0958140515193,21.5504990763643,22.2688819877116,20.3301088420389,21.5610587873239,22.2530956000164,20.0164628145915,21.3476565528045,22.0612516466273 +"Q9V8F5",15.2980645679004,15.9124347181142,17.8050628492704,15.1558894566232,15.7729319891998,17.495264417034,15.028545106105,15.7897335245851,17.4170744947246,14.6707390356461,15.305044914051,17.0887310632316,14.6793422981395,15.8047736468027,17.2678913659082,14.9300476020105,15.556093835191,17.166130490279 +"Q9V8M5",19.6437995013868,19.3185961015174,19.8936890358373,20.1444878145702,19.8112533569627,20.2933660822133,19.5149457036166,19.4341935133114,19.7848185973398,20.1579092032943,19.9187320079684,20.2953401725644,19.483968002965,19.6605743382341,20.0387122479032,19.8862048500825,19.9157556490996,20.1722027710028 +"Q9V8Y2",19.6044068608883,20.0792973503698,20.1840248629476,19.3335018857064,20.0263259536358,19.749982822145,19.5952078915339,20.2368999562542,20.1894259928105,19.5752477278355,20.1098126558426,20.108330878442,19.2492783982104,20.2055022774894,19.8699171652849,19.7998241277774,20.4426008840245,20.0945076886556 +"Q9V931",15.7401770578553,18.3423064976366,19.6000884063818,15.8285291406965,18.4187502507238,19.4041668363036,15.375299294927,18.308752125594,19.3301813217176,15.4369875228883,18.2283018726102,19.055372914369,13.8665930651778,18.5552968294977,19.3233089808876,15.0656219143997,18.544880988586,18.9245506449933 +"Q9V998",14.3111965251308,15.9182061915931,17.1866451695642,14.0125719690065,15.8521533501348,17.3420731718585,14.6011057811407,15.7804816637586,17.2898447055581,14.2041678341166,15.949626776965,17.612790321602,14.6833835587701,15.6764000407953,17.3561153602078,13.8041218101861,16.157663399957,17.3739257034828 +"Q9V9A7",13.6942000882315,16.795817792957,17.350332699556,13.9880103529262,15.523640028658,17.1414629507275,14.6264604806122,16.1254456911864,17.709710404603,14.9092762769729,16.3135011749101,18.1322927005182,14.5397054074813,16.1154629250086,17.400228556778,14.8754580161821,16.603041378356,17.5538000093727 +"Q9V9M7",16.5559703445514,18.478974652898,19.8212984678897,16.5027740228721,18.3946335875389,19.6608164162143,16.7904430711202,18.961962325451,20.1611411460404,16.820209403459,18.6806810531118,19.6631154907402,16.6567914179582,18.9413115060361,20.0748657283067,16.7073436133598,18.6827739065593,19.769688198674 +"Q9V9Q4",18.0806883184159,19.7860392811004,19.951857712812,18.2189823268219,19.8696050143373,19.8943373289638,17.957407169119,19.5662014397131,19.5765532985486,18.0546521365275,19.651701178784,19.5525563643516,17.9876378915338,19.3837442195646,19.5362366929592,18.0666827627893,19.5805046362594,19.5623910991755 +"Q9V9S0",16.9908558506843,17.2522934771449,17.3181095580042,16.7455277281859,17.3176902745434,17.317385449081,16.8022241685315,17.1418533521321,17.0368138164189,16.7209505914407,17.4672088590605,17.4817594901572,16.5343653368673,17.1385601444568,17.0890909358563,16.8502248176119,17.201531444383,17.435785152221 +"Q9V9S8",19.5796554608077,19.5487233754023,20.4064273310896,19.5988962386572,19.5780746690527,20.4800828056685,19.649073603574,19.8933960539487,20.4184353917679,19.6400800670345,19.7039664626803,20.7313353325611,19.5356937960376,19.819989853406,20.5737253995431,19.5573251562542,19.6196517919553,20.4218108776349 +"Q9V9T9",10.6907806981322,14.2574826110193,14.6212227657876,11.3595293392859,14.3464726091264,14.3033892631231,11.3440700375923,14.126779005565,14.7198987109118,11.5581267680672,14.5349214827747,14.6925367112777,11.4643814063481,14.2904181534169,14.4832003954004,11.4803783757694,14.7511895480288,14.7889729361615 +"Q9V9U4",14.0857288098154,16.8888132226487,17.076018003358,13.9167288216735,16.7944379324139,16.9175325165779,14.1842349082255,16.9406886875987,16.9551818642943,13.9992553475488,16.7433573740808,16.7805032875437,14.0536211230074,16.927153295665,16.8449268369102,13.8717093984497,16.8947754063124,16.7241664843553 +"Q9V9U7",16.2480513839652,17.8507846751156,19.0749133919905,16.1456731894954,17.9686232826444,19.3290516287329,16.3938573538917,17.9277808491056,19.1886645927558,16.0894472647487,17.974873785309,19.2671425533309,16.7343099355904,17.8620303031271,19.197881905798,16.4859351006104,17.9792361810373,19.214697236588 +"Q9V9V4",17.3268167622229,18.8328575408313,20.1148806571945,17.1015970087452,18.8335587857706,20.0677151530716,17.310641311323,19.0271403801675,20.121570064977,17.0263515016267,18.6810915066361,19.8692107018358,17.1161164836553,18.897653572613,19.9540330791376,16.9059882350332,18.4681013894965,19.6801689167942 +"Q9V9X4",17.7290375913045,18.9883708559342,20.3078441956211,17.400383524909,18.683819301255,19.7650707760022,17.6095040571707,19.0081284047884,20.0992686149544,17.1787715693298,18.4745054998609,19.5983018054542,17.5446485852646,18.846336490285,19.9276407182574,17.4455958169639,18.5360682868983,19.6641552786268 +"Q9VA09",15.0936396421709,15.3486249777658,17.4610495567237,15.4025628128839,15.3150782634847,17.4782142758385,15.7854783593474,15.7282422901301,17.9917630891986,15.8391979222212,15.6960726178753,18.0539946884199,15.9448119713412,16.0987126577165,18.3260684967805,15.8874144185988,16.0149493307244,18.134559414361 +"Q9VA18",21.272459077695,21.2553743710247,22.2213850600901,21.4394673524762,21.2429976050942,22.2676534486837,21.3653840257371,20.911961146558,22.2269392233854,21.2804550533135,21.1889405332406,22.5434018631874,21.3820968114829,20.8937407478027,22.2217903746466,21.1847534300382,21.1799361998847,22.2105277443427 +"Q9VA32",16.332265351969,16.2461015655852,18.5722626089799,16.7048276604166,16.0444668105973,18.7036619866755,16.6977053235808,16.2954923234447,18.771873453736,16.719409660107,16.3253941442963,19.1596970569947,16.749701632561,16.0202393108401,18.7851753874463,16.6368408009509,16.4793198379646,18.9473514644261 +"Q9VA34",13.8436239228436,14.5802229253612,14.805172017367,14.1795253653787,14.7242319705825,15.1612922261907,13.9888785335529,14.5816985466282,15.0652150178116,13.7551036379896,14.5944206153117,14.9840074011002,13.6117116209102,14.329863192934,14.8461633872645,13.5547763015031,14.2625220055436,14.8859701266853 +"Q9VA37",20.8524810914459,21.659508959449,23.4418892775481,20.8120396211345,21.6639290386152,23.4272960790471,20.3955240200102,21.4304059718161,23.1851397001027,20.5115087374715,21.4061076193392,23.1175023378086,20.3132848723983,21.6211833844565,23.1143926402873,20.4561923743214,21.4298836133639,23.0672457201954 +"Q9VA41",16.5336589679007,16.7004348097809,18.2065627289846,16.9934402237205,17.2381783867721,18.9102832898459,16.763280510507,16.823032068694,18.4413646390507,16.7382123849029,17.0910272217401,18.7493568576444,16.4693716102576,16.7608955825319,18.4764227525346,17.1774712762515,17.3661822356857,18.8446098889304 +"Q9VA42",19.6614619506114,20.2204437861831,22.0043374133846,19.8005288291573,20.3995181066953,22.1738892428725,19.1945907855763,19.8885540929354,21.470604828771,19.2115356495102,19.8379129529281,21.4931348708948,18.5698013744947,19.6175160738756,20.9968142777953,19.2519707491365,19.8908605921524,21.4003606133047 +"Q9VA76",14.2957210627104,15.3548432289225,15.5851020815639,14.2239023855882,15.5858040543234,16.0635879813133,14.4973350221428,15.2998124281718,15.8290604924127,14.3933783546406,15.4953254826181,15.9617445164576,14.3926406983694,15.4993538734561,15.8247095763565,14.3684557021446,15.4710093718304,15.6723757705243 +"Q9VA97",18.0227433296128,18.6223268304239,19.28953746375,17.8094221015714,18.6219455795594,19.344215432821,17.9424419477271,18.6422809483125,18.9548070063905,17.9502914893098,18.6195586390616,18.9539405169623,17.9878989083349,18.5076395386435,19.0585811285929,17.9773885063164,18.7033296676867,18.7814172108398 +"Q9VAA6",15.1831889712719,15.9915872947813,17.7980819965331,15.4059706912131,16.0571253349752,17.9505196035885,14.8311919503801,15.6714525457169,17.5542213433071,14.9411644413568,15.6228423685784,17.6649199137917,14.4794064004086,15.6712733161826,17.4547149350171,15.4692902585442,15.8919894102737,17.699514503068 +"Q9VAA9",16.0736615720155,16.8580647468098,18.7080615665064,16.2888244066653,16.8319112992976,18.488920708288,16.145646857021,16.8816658150828,18.3902792612749,16.2725628484866,16.75848137545,18.295821554984,15.9539181677405,16.7598885206237,18.2094047637438,16.0317391709489,16.6729814926205,18.2149439289969 +"Q9VAC1",22.7128975045282,22.8168523458366,24.1143785729165,22.5627381249146,22.7413313086287,24.0208600140603,23.0595758726182,23.2432516791186,24.4384537501585,22.8318210637507,23.0571810436829,24.3692671740952,22.9870374558562,23.2552319647074,24.4398045634048,22.7414969699849,22.9885555860761,24.2671352958599 +"Q9VAC4",18.0719681229744,19.7077592786857,20.0386238026076,18.2119645562904,19.8699181641517,20.0350954515004,18.2374173996891,19.7978254389826,20.0975094485125,18.2661072951499,19.8941750362434,20.1377282409644,18.2343653306405,19.8819417154228,20.1779067028507,18.3374727950706,19.9119524162473,20.0752721943936 +"Q9VAD4",12.3632210602155,13.7875390696358,13.5888805078739,12.2436577305011,13.7557470872942,13.2815641888745,12.3849382084717,14.003495740867,13.2432057654859,13.3838514822382,13.5267628231729,13.6780283476005,12.8776368952617,14.2738397819142,13.7392881824711,12.6284199828553,13.893287199207,13.4020537686818 +"Q9VAF5",15.1978131816498,15.7492115626413,16.4517147174006,15.5969040975068,16.0513590637704,16.5843099197577,15.2945813367208,15.9408554496202,16.4492636403662,15.6259381250592,16.3015258674532,16.8070923273007,15.2927844404258,15.8634178488027,16.3718825621724,15.49709337492,15.9632195257274,16.5695746209219 +"Q9VAG3",15.6676280374071,17.3209944916944,16.8853162187171,15.6813949203235,17.4854776398301,17.0233918003238,15.8668962852773,17.6763766161806,17.1595549027884,15.4491979144919,17.5186380046943,17.314011919994,15.9326486878427,17.8913509341645,17.5309582382654,15.6260021686593,17.5867364499036,17.1142740808258 +"Q9VAG9",15.1033482375546,18.3139371302693,19.5643792298171,14.8423226604572,18.1558692422358,19.4838504039914,14.873895989913,18.1694227044639,19.266658910367,14.7352933336462,18.0496626241597,19.3380326431439,14.7485532735779,18.1807091669101,19.3259711561828,14.5105781310536,17.9532183609291,19.194920157556 +"Q9VAI9",21.3334226483414,21.7900173191203,22.5350794853568,21.6475202694042,22.2340852794655,22.8793893432027,21.1276376083443,21.7976449111602,22.4742722326261,21.6194206552336,22.1793618370974,22.7403930257442,20.7892746691627,21.7513289963878,22.3043515351418,21.5134282134962,22.1476967447828,22.6467830557475 +"Q9VAJ9",16.3184832780629,17.1010273618297,18.3298941271375,16.1415356705485,17.2013796655668,18.2598794987025,16.6786027934287,17.5687640451992,18.5740072818223,16.5105651595456,17.4820615412078,18.7328489343151,17.2625042898213,18.238962329615,19.3377454855265,16.845606451723,17.9866127448096,18.9006001250311 +"Q9VAM6",21.6566168111394,21.8042310114422,23.4335672878655,21.6778646885646,21.8588111321302,23.24190344715,21.3402201048828,21.6020181218872,23.1097308438471,21.3016691706831,21.621404728087,23.0199476421423,21.3563157889158,21.7465885352114,23.0339959767314,21.2661533855236,21.5276784245611,22.9398510762812 +"Q9VAN0",19.0651781653436,20.530787425743,21.3288364358207,18.9944615073527,20.6508610102965,21.5112468367284,19.2480422555891,20.7792638939744,21.5050626879309,19.0838579078584,20.7453657308533,21.6012501604352,19.2103788355024,20.8500907370362,21.4918178618368,19.2259953367711,20.7651178962962,21.5566205078116 +"Q9VAN1",12.1777785770897,15.5172110254673,16.4794883494709,12.6523022082008,15.8076792191598,16.7611434922308,12.1040815262287,15.5327647869702,16.5442073833949,12.5997033653719,15.6523582143991,16.6469064728651,11.7322319563462,15.4062270231753,16.0346971596326,12.3341587328399,15.5113468040797,16.4945611102126 +"Q9VAN7",23.7588228658761,23.2575099671868,24.8277198503032,23.6495255583482,23.0506668077062,24.5553953478429,23.4922012322582,22.9973263281441,24.5784811698486,23.2131064697356,22.8785728498862,24.4406390451762,23.4620392761349,23.0346324368327,24.5498701897963,23.2676846874889,22.9998939539394,24.4857116345555 +"Q9VAP3",15.2907539272041,16.3636731623919,18.084637590773,14.7492016155682,15.9785007002886,18.0635281376722,14.7983531172606,16.2382350886068,18.2011943974606,15.4622992922596,16.4894353278749,18.0368001224539,14.689701463653,16.4459605931799,18.3231398969073,14.8707767953625,16.3825109326107,18.1812030058749 +"Q9VAQ4",16.2437889971522,16.0103711762345,16.5285702993203,15.9543794643056,15.8921270796038,16.2327295599312,15.9414215809477,15.8338387749338,16.1981496825841,15.3258357703544,15.6826092635713,15.7694502921068,16.0086700641588,15.8996595217057,16.4522240598379,15.6350154890679,16.0649466060424,16.1429400725194 +"Q9VAS1",12.1799123948653,13.2828776890516,13.7617778072844,11.7413205071171,13.137880249476,13.7213661041383,12.3901344330527,13.4485175090302,13.4968965201942,12.0670803339679,13.1149576538813,13.9551197240843,11.9579051221863,13.5553180907092,13.9683236333389,12.3303359635809,13.1514729304165,13.547513642155 +"Q9VAU6",13.3226022626296,13.623762436563,13.3666003212681,13.2769430288994,13.5166188322722,13.6901348581524,13.1804464168491,13.385551722199,13.2566239814988,13.0317804869881,13.3437218577427,13.2620250877744,13.3418257685644,13.6317345315425,13.2218942400738,12.9895873766736,13.5725975099286,14.2121050475194 +"Q9VAV2",16.5584138867326,18.09246864367,18.6408180333195,16.7136568636482,18.0722636861968,18.6918549140857,16.735985970223,18.0736728198268,18.575094332857,16.6122688586344,18.022535177312,18.5350551351485,16.6397762197928,17.9863203803137,18.4482035876716,16.8647373534241,18.0403557535974,18.5106207701006 +"Q9VAY0",12.9236726519618,14.576025115008,14.9843060721688,13.0271440454417,14.2522804918878,14.9389082378116,12.8089735360991,14.4204594403215,14.9534320081335,12.3554656180441,14.4475723978553,14.8511900111004,12.4418391072825,14.0944893291563,14.981811735323,12.5953562963312,14.7133338342352,15.10176178537 +"Q9VAY2",20.2810382228087,20.946500095693,22.2954339602228,20.2989623001664,20.9432495719242,22.2020486637417,20.3161549133157,20.986298487192,22.2095654850014,20.2252210850146,20.8960415667686,22.2169597550728,20.2131669371618,20.8674586766565,22.1679076732097,20.2278271385966,20.7881844318602,22.1616011312634 +"Q9VAY3",13.8281034858088,14.8842210589208,12.794004718608,13.7789094080628,14.6426481989774,13.0017204124849,13.9010444299967,14.8152084537732,12.5850869361481,13.663568855178,14.7846677828303,13.0764756349806,14.1589944629816,15.0649763623455,13.4172056700894,13.8178121958139,14.9672059666595,13.4138868409094 +"Q9VAY6",14.6240089223548,15.3413830929339,15.6882962641565,14.6351844695666,15.3825948990974,15.6846815172456,14.5464902681315,15.3070337724562,15.5452153309015,14.6731356740436,15.4661770273007,15.6081448308472,14.5391255393077,15.3987463958556,15.5254255629888,14.8231367280593,15.3076312100599,15.5002590976399 +"Q9VAY9",13.8624825450257,13.3830037430158,14.9440518352123,14.2269601124015,13.9037572851876,15.0816966568817,14.4580236488348,14.0988844637671,15.5402201395222,14.8014393645994,14.177007100055,15.5647373207436,14.5800538215567,14.1645116300032,15.321687324346,14.989355357316,14.128250577967,15.542101615816 +"Q9VB05",19.2889578570899,20.0460859804173,21.1926865581968,19.1909486158289,20.0493643246855,21.0679809829385,19.3719972989737,20.1568148701897,21.2182213650941,19.1912191844895,20.0670495344299,21.179651766877,19.4346473799434,20.2523849340977,21.2209581981605,19.310177689166,20.1291429351087,21.1968086902626 +"Q9VB10",20.2310937030074,20.5834968673501,21.9101900637986,20.2609279648408,20.7090850667409,22.0253458539761,20.2604686179033,20.6183721430856,21.9152829336527,20.3081424383875,20.7373782881943,22.1122890930385,20.3665104755779,20.7441911705716,22.0180648045919,20.2772902136626,20.8653325464758,21.918433517811 +"Q9VB17",14.4464345786812,15.5628981748782,16.7699442289624,14.4817759324608,15.6629419590906,16.5247897483108,14.5101105228484,15.6429726897371,16.5117087901076,14.4793779498838,15.6025773479229,16.487175464705,14.7363874119559,15.8811596518379,16.5430101985046,14.596371621992,15.718352588073,16.7610043964866 +"Q9VB22",17.431911542741,16.6526089551373,18.1143255408905,17.6450777204091,16.8007083389874,17.9797643676285,17.2456895299818,16.5173655541988,17.6925396639855,17.0879398093656,16.3397667836945,17.6709182980671,17.2140828257012,16.5285528917139,17.7471339307265,17.1452877351789,16.3736941959201,17.4205616607112 +"Q9VB46",14.3367025859038,14.922661253226,15.9864921096044,14.3813365807518,15.0144392655373,15.6780630037996,14.5120926582086,15.3488947881074,16.093280471038,14.7523687872336,15.0749423241656,15.830346818799,14.4666376890501,15.6142422407851,16.2314927975501,14.96201367573,15.2953469344886,16.1280200407727 +"Q9VB64",17.9978222067249,19.0594856432301,19.5372672959372,17.7089473193625,19.1104880953122,19.5700161171119,17.6331429820717,19.1667814638255,19.4328113045543,17.5961199835025,19.0250542009652,19.4274173310067,17.6015354988281,19.2354343867578,19.4705382255375,17.6265710153131,19.2015371296823,19.5187365098251 +"Q9VB68",15.1495025486295,15.1537949766736,16.3203769124661,14.9477879737646,14.9184972006515,16.3482087604967,15.1354382482075,15.0977886093398,16.3342271327955,15.1298884071839,14.961538247737,16.3651637273699,14.6243896321133,14.8727426225114,16.4806760365692,14.922394790438,15.2320209239739,16.2009445857967 +"Q9VB79",15.4753144675347,17.9411828665181,19.490664036767,15.3270270757884,18.0411913241007,19.5310111240075,15.4207301209195,18.1460827784596,19.3015539107127,15.5848376031341,18.1454443245219,19.5055941761423,15.2624444237482,18.1616923272626,19.3759755455019,15.3421109479822,18.1535075585679,19.3169426196621 +"Q9VB81",19.7137873439814,20.137076250319,22.377730349844,20.223892403428,20.4880694552477,22.5072421617659,19.9026955755723,20.3971246481032,22.597856818459,19.9656976222485,20.5110486762393,22.7273229308933,19.6823360208142,20.4427300835577,22.3587578628846,20.1987937274559,20.7697035003362,22.6594518275679 +"Q9VBC1",13.3034131705412,11.3942505317157,14.7282925740925,13.6335243525064,11.7099489512863,14.8160638755397,13.5697721147318,11.1932474735792,14.5917525935265,14.0269767698042,12.0701188793802,15.2957868768272,13.3815117139133,10.9148795253352,14.6128973663751,13.3649788854366,11.1956788237647,14.8349647597099 +"Q9VBC7",14.7242548294539,14.8028856174507,17.7520810834619,14.8626322127824,14.9676183448883,18.1139798131027,15.0440744590615,14.9372254081206,18.2560467139475,15.2728200360276,15.1567988377497,18.4882931741946,15.3008021470823,15.0170648188637,18.3870810576024,15.6913297287843,15.5701404925773,18.5037977531614 +"Q9VBC9",14.1874486078386,15.5619591398383,17.0134152527139,14.4388476020049,15.5622858185875,17.3706558586264,14.159387989873,14.913888334243,16.9488442937001,14.25728837204,15.4380303426112,17.3373594661372,14.0646092393812,14.8918510548743,16.9743865365025,14.4814373448925,14.8439103598294,17.1702182039513 +"Q9VBI2",21.280136471517,21.9194178639801,23.5889585026277,21.3138550172541,21.9844151744009,23.5024066979558,21.0924856293134,21.7338059974474,23.3272639084475,21.0627533302792,21.7599313487788,23.2883047336209,20.9982782810112,21.8710248854636,23.2464471539594,21.0169042591189,21.7162219480827,23.2589639906448 +"Q9VBI3",17.3054026551725,18.6570019824507,20.1852174280039,17.0470881138663,18.6783103150736,20.1708237621594,17.3557875380482,18.5553942413696,20.0215432357709,17.2672626401375,18.5751421145162,20.0199356985897,17.3054989621289,18.5908206154425,20.0169674255465,16.9810687085163,18.5196943510423,19.725360186817 +"Q9VBL3",13.5950483657098,14.6406750766981,16.1078571692737,12.5021269777174,14.7913391719272,15.849452260742,12.7618175021648,14.9622192893482,15.8033917469854,12.6468438460967,15.2673053317859,15.7836738544152,12.1239760828989,14.8417534364277,15.6766723814302,13.0390251983286,15.0549185640664,15.5345562674669 +"Q9VBP6",22.3478603523886,22.588989976822,24.5827766400656,22.5142432387252,22.7883015148051,24.6632559140879,22.1626725922991,22.4681292992592,24.373348139447,22.2134884379435,22.583608578579,24.5343759153637,22.133286391541,22.6037802320945,24.4650432199606,22.1884410308476,22.6192617230257,24.4809642593075 +"Q9VBP9",13.9319744379137,12.6051011828629,14.7906019565195,13.7178185304868,12.7279406248539,14.4675400064034,14.1071890179418,13.2447356013943,14.581616153931,13.944319220749,12.7696810772891,14.7602743475599,14.18425384622,13.1678649661298,15.207954488942,14.4295812764477,13.1801551036897,15.1790456606086 +"Q9VBS7",18.8151720835096,20.4365362113577,20.3284399375175,18.5092591198224,20.2658951542587,20.1946895915271,18.9630898142687,20.6176181782035,20.3691236521837,18.7423377976648,20.383899738166,20.2620556771981,18.8906993174423,20.531420370444,20.3839771546014,18.6639326035831,20.3379049590838,20.1597289622292 +"Q9VBT1",14.1021606482339,16.4936492201534,18.1313562745752,13.9000683182346,16.592274968153,18.2249066148662,14.291933383368,16.64994000666,18.1872781660352,14.0214820373081,16.576259750867,18.1590057960714,14.1135189459633,16.6703759730414,18.2173933046276,14.3356984517627,16.6522430149438,18.2646554461679 +"Q9VBT2",9.33360923717036,14.1197868618757,14.0849580598674,9.19541557516916,14.1060605457535,14.3570112995432,10.6486471747164,14.416331228643,14.3500516782726,10.915503325829,14.3982744019504,14.0661333131452,11.1960250793916,14.6318058447988,14.6778157863172,10.4398628227855,14.2492751136269,14.2890664388512 +"Q9VBU0",13.0960816684504,14.2788836631356,15.1239881278729,12.9167242149879,14.3743973821757,15.1239258579094,13.111224682704,14.160998519538,15.1411094337245,12.99044866459,13.7623899236944,15.3298100140022,13.6147054513012,14.6298301599446,15.6641332354838,13.0660432757853,14.1969508947984,15.3302121773108 +"Q9VBU9",19.3619666217301,21.2020619336274,21.8401775083223,19.1395037564792,21.2845918958646,21.7125993263255,19.3824470180206,21.4334972525409,21.870449641585,19.2195467532173,21.3363625240923,21.7519469714467,19.3671944101907,21.4976476301821,21.8927601817201,19.5513797178313,21.4678953699178,21.9070395484345 +"Q9VBV5",16.1444759213962,17.3503018625632,18.3021770343138,16.3656538673208,17.3454832294383,18.2269278059267,16.0666894498903,17.1748707483632,18.0437776374442,16.2381635765764,17.2757986628942,18.1422081133419,16.0868109084202,17.2026771781561,17.9386902479559,16.2046851498911,17.1376087574988,17.7825562563206 +"Q9VC05",14.8768066542404,14.7361611835101,15.7245057853161,14.6253457165065,14.3056779317333,15.3984481596469,14.5323067513237,14.5633103923375,15.4443746229001,14.5533760729693,14.8595334193093,15.3384717646406,14.1697565295058,14.6450253705759,15.5692725266646,14.4823478251608,14.5456739099712,15.3181444040329 +"Q9VC06",15.2011864869755,16.1861312382349,16.647158407117,15.0183870502222,16.1821527004299,16.4826896590096,15.8275658318998,16.9595865560161,17.4603459751674,15.5172891835996,16.7885307293453,17.0743182731662,16.0180775578317,17.1504462204013,17.6603564738099,15.8702036233164,16.8461064750619,17.3403844637141 +"Q9VC18",16.5872276347079,18.1204753177349,18.6208307398409,16.5907112202413,18.1850214289456,18.6333789910108,17.1837048667163,18.74713019427,19.2223446214373,17.4137147134828,18.937945045816,19.29682818142,17.4611258428107,18.9369591064636,19.6098258580726,17.4826279412436,18.8637924952769,19.4287194513126 +"Q9VC31",15.4396141650015,18.2119724959977,19.1015405266939,15.6221812607456,18.4347077710944,19.3420953572818,15.6512379332855,18.2802628372748,18.7732681825222,15.678391464564,18.3997323553245,19.1088028520122,15.6739369308908,18.3983606855739,18.9792585487109,15.4747160225367,18.4358278259877,19.0760360055196 +"Q9VC48",16.5966023839593,19.4009091985766,18.9005811643079,16.7704397453203,19.3490552951679,19.0402057577973,16.8669733517829,19.505320319101,19.0706517580637,16.8563604613471,19.3634668800601,19.2442602830588,16.8451710553954,19.5601021546883,19.0244005990916,17.0093274336052,19.372410273968,19.1683649843249 +"Q9VC53",17.0444618308264,17.9064694263292,18.9842831908675,17.029515864956,17.8104586760543,18.9390910618221,16.8985927393738,17.8411432001505,18.9585508451164,16.6025194653413,17.8503881296878,18.8400529122635,16.9518843152859,17.8074750201694,18.8767484722316,16.745495365093,17.8693923848459,18.7102373836714 +"Q9VC58",10.1466246108765,14.7123212079099,14.8493299351736,10.3000158830777,14.31092527223,14.6208271505477,10.8799724431157,14.4926821377993,14.5474516579568,9.90519626356986,14.4257590170521,15.0671946870009,10.204014820791,14.2993441638995,14.6696098782512,10.3104588959619,14.5219166070426,14.5354801656546 +"Q9VC66",16.7616535679563,17.9024293731494,18.5943139903238,16.966126817374,17.8692162477405,18.5950412976501,16.8329497366457,17.722146363276,18.437573616738,16.8084251327604,17.8519277089605,18.6773759258035,16.743583638738,17.7104483679942,18.353917267964,16.8701472597661,17.8302263998226,18.3781114686907 +"Q9VC67",13.9968030219614,16.4825439294509,15.7495429577744,13.6422021307977,15.9032548725988,15.3893769710753,14.1862971163824,16.3781445430166,15.5058153185928,13.8679231452207,16.1473447618247,15.109926526478,13.9969953007866,16.1540367145352,15.6542491058195,13.4221396678117,15.9314023723202,15.0473488276986 +"Q9VCA5",13.5696846251044,14.2334703317508,14.9771380936299,13.0173163931891,13.7013628153988,15.06665642786,13.6789511125118,14.1474439599409,15.2367906670651,13.4342320095865,13.9556865970721,15.4180418896422,13.8280850089259,14.4904337244429,15.3195461366449,13.2290202777936,13.6737407750699,15.1408291084978 +"Q9VCB9",14.6437123939472,17.0734048705896,19.6100390886777,14.5509461131166,16.9706934524779,19.4896865529731,14.6581828351897,16.8387072534036,19.5311169788567,14.3079410640452,17.0600116022608,19.3208949034976,14.4743105937399,16.9054348025625,19.2726840111225,14.5678434833635,16.9909126389345,19.2978523242905 +"Q9VCC0",16.4601342996922,17.2412863236965,18.865446622758,16.6981583216107,17.4280548898208,18.8961022581978,16.1681948580109,17.2024132390935,18.6571096975484,16.4567171840591,17.2279577073887,18.8136766792704,15.9343269521197,17.2316996195291,18.5190483551524,16.4489711461934,17.2250902991782,18.8233656055003 +"Q9VCD9",16.4352728453892,19.1734878928347,19.9657248111995,17.1393370614954,19.2596190277534,19.8996426898353,16.2247335652553,18.9854261005992,19.615372105842,16.8086963270766,19.0437400986173,19.8250143821518,16.3674369555246,19.0714789859705,19.6157835590713,17.3262564630534,19.2150120915169,19.7858151633173 +"Q9VCE0",13.9650766445823,17.7484582843952,16.6715624832524,13.7762280415491,17.5735123295698,16.6020769346254,13.7797296837389,17.3586848396952,16.0189187730174,13.4515425157282,17.3536757231824,16.4661766060518,13.9392438429939,17.2304715404945,15.7756459741898,13.7740211941423,17.0682688956982,16.0972644821736 +"Q9VCE1",11.5073499309616,14.4059960759113,15.4349955096475,11.8273725770381,14.3698913771665,15.5825537046741,11.4056839283852,14.3977808088863,15.5075940554858,11.1116697018266,14.249060307363,15.3619295248898,11.2302386581688,14.0422281989277,15.1149573432093,11.0951123622667,14.3440633479309,15.1002235021109 +"Q9VCF8",15.5763553269029,17.4610864649617,17.9761608756218,15.671147681686,17.3983531634217,17.9205628349691,15.4032286836428,17.5955735953662,17.8411786478228,15.4315208083211,17.4172820991998,17.7939394436075,15.4015203272545,17.4986253261031,17.7550199672792,15.5618101099292,17.5605597647622,17.9054328974638 +"Q9VCH5",17.214606566141,17.961846449406,18.968394152813,17.3445081263908,18.1735874008359,18.982770359515,17.2212527734793,17.9462846061188,18.8841880384662,17.2559904749415,18.0194742229544,18.8431340135368,17.0287264439832,17.8781320015228,18.7202875097709,17.1235826230146,17.9293307405945,18.8194177837562 +"Q9VCI0",11.5305616206962,16.8395898424914,15.8687062513874,11.50437732297,16.9369806527315,16.0334847049113,11.7470527049616,16.9939447709314,15.8365000154423,12.3560218661806,16.7230967007261,16.1873136675414,10.617144253238,16.9125882485529,16.0378214351086,11.6629666370224,16.7898217504781,16.0498445891887 +"Q9VCJ8",17.1347323833402,17.8546431293907,18.417313731188,17.2227656537106,17.8846548742765,18.4248701286738,17.3923210443567,17.9589324292725,18.492529298824,17.375955084039,17.9510738974202,18.6970063330378,17.2970572329448,17.8752379186972,18.4068048522304,17.3904280944422,17.9201996388637,18.5261726676654 +"Q9VCK0",16.4669907533868,18.6404521129769,19.0360282008505,16.4811918328657,18.5708525594846,19.0019188547302,16.9272276449635,18.6786852791552,19.4646208676418,16.8922390174954,18.7933351912378,19.4177451241166,16.8513701857832,18.6103550504155,19.3316577891832,17.0878422889379,18.6688321009007,19.5218401187775 +"Q9VCK6",14.6877034821477,16.2146543019209,17.1136031402134,15.2214267285339,16.8391864357672,17.8059276160506,15.1058344089709,16.4295866116989,17.3661737442936,15.4992870094792,17.1316230650656,18.184792904004,15.259833005328,16.7928650243524,17.8751747584388,15.3414630844502,17.1132430494854,17.9346169400478 +"Q9VCR2",15.2267781694078,15.1542846938869,15.9633541830203,15.0918017513771,14.8948999590247,15.8947756017112,15.1832167507257,15.2139140411659,15.9743834772983,15.1527540612671,15.279034360149,15.9827227940287,15.3145724089285,15.4080097891534,16.1404585854317,15.6773455464914,15.1370796086306,16.3326657225235 +"Q9VCR4",13.70476806979,15.4064859502166,16.7657131200942,13.4229334885165,15.3368117344699,16.4687714078583,13.3624119090468,15.2490482160228,16.4471259028024,13.4171559195294,15.3617642387902,16.4772414037185,13.0558370734902,15.3109732165169,16.2518896255337,12.7127707609465,15.2117571145979,16.2296626457157 +"Q9VCR9",18.0774998742644,19.4773672800564,20.5240193850202,18.242292711362,19.5931334537116,20.4318459181371,18.1138949330501,19.515278430857,20.4040262210629,18.1413504097163,19.3288358522955,20.2888093654695,17.9207928874572,19.5707607785133,20.4377288173128,17.9721132942542,19.5368588710862,20.3605535154684 +"Q9VCT4",11.3561505765879,13.4147046242348,14.2691918714921,11.5767395343347,14.0320322222129,14.5162300907625,11.7839921131185,13.4526195089195,14.5267376610978,12.5533549027591,13.9952846897954,14.7879935968008,11.1174589815265,13.6877132216806,13.7260222554918,12.6421508095861,14.9201920363969,14.9830656954442 +"Q9VCU0",15.173951759604,17.9080636650182,18.9768735556226,15.5358356873147,17.4768653416642,18.8792137446446,15.3023258836245,17.6476636437823,19.2037650761013,15.3206355786651,17.473837488034,18.9397546437706,15.3847732480055,17.9061427125382,19.0498471080959,16.0332464706732,17.6256585907668,18.7869717878121 +"Q9VCU6",14.660546565792,15.1303227674699,16.1535136067016,15.1433594801133,15.4644955568536,16.166397631555,14.7405795605171,15.2913273227745,16.2370683725427,14.8954076398954,15.423555127594,16.1126549336909,14.9499531388705,15.2543619504011,16.0822865447349,15.1519968147281,15.2084160768382,16.087677593138 +"Q9VCW2",13.7605969605152,16.1617714413789,16.0178143204849,13.4121054886306,15.9796022335876,15.9511309414916,14.0435893334871,16.0744877250694,16.1752225172288,14.099654739051,16.1439124277393,16.4399090104938,14.1790895245065,16.0995133714039,16.1272256614651,13.9712126355399,16.120209588557,16.2897198604173 +"Q9VCW6",18.2979572998833,20.4368773919206,21.2440375252874,17.9190889201216,20.1798024119118,20.8371309212648,18.2733594700245,20.4501506702563,21.0670540741724,17.9055337826327,20.0304365452902,20.7746741881919,18.2705371952607,20.4825804676291,21.0607940442546,18.2766285407956,20.2071290003255,20.809416743716 +"Q9VCX3",10.1165442902444,12.6201654591899,14.6956292059612,10.6395091778274,12.6972596403943,14.6513275180095,11.6304863482439,13.1236404338926,15.3831969740912,10.9502530267119,13.3795421929566,15.394554511186,11.0640306998128,13.3060614345233,15.1815725919793,10.5672156195035,13.4214255592272,14.9885486565467 +"Q9VCY3",16.4354749977471,18.5567192279047,18.4647660341889,16.3946868966165,18.728063816336,18.5361651211483,16.3179788435676,18.6782551063831,18.4122894601672,16.3270498729049,18.7686371584653,18.8094576755542,16.2652073022688,18.6954114903449,18.2533415808401,16.7087238747713,18.6989192489318,18.5595361093288 +"Q9VD00",16.8917130241071,18.8874718806176,18.2283523822723,16.8076845860496,18.874779200651,17.9970590321929,16.9389709320296,18.9163779207983,18.0550068665173,16.7659148362362,18.824614971552,18.0740181692154,16.8965586595615,18.9677251056588,18.0800142564508,16.7445466873364,18.7596995692517,17.812947408486 +"Q9VD02",18.1276081431346,18.2594226954157,18.8324717326507,18.1513402648716,18.2710753920499,18.7251787824808,17.7960362661659,18.0238022965728,18.4306702084919,17.9508371970838,18.1079788659931,18.5525682314149,17.9013571013676,18.2229610268258,18.3488978177544,17.8166175941049,18.1703386667769,18.4139154637343 +"Q9VD09",13.0880594180824,15.6071548641631,15.4427367140797,13.6219099212708,15.3952204946589,15.5767640653152,13.2349726823763,15.2746963982755,15.4293167499843,13.1088495090796,15.3425015455489,15.4996047964333,12.4747606374333,15.3594472323078,15.3106951274969,12.5509727642143,14.9737883570446,15.1460985688785 +"Q9VD14",17.5110520311548,17.693657733629,17.2919292749537,17.6196888090682,17.7732357615708,17.6282725965634,17.5866608396608,17.7417988686494,17.4819988677154,17.5965724704235,17.7619693020281,17.6885866516729,17.3000086441296,17.7747167051653,17.6495880384333,17.5281116891313,18.001210501129,17.61151235442 +"Q9VD26",15.6388096757385,16.5388377348203,16.4680204779785,15.8260520855188,16.3669003634005,16.5181118694401,15.8511104169981,16.3238772632414,16.4533710861085,15.5370256489395,16.5188011831222,16.6995881104068,15.6957558168286,16.15864910142,16.5451394119148,15.5249165597721,16.4889567566031,16.6487461946438 +"Q9VD29",20.9613135080595,20.5625228306136,21.1004485857841,20.694353696087,20.563405288507,21.1072546328455,20.6340414136622,20.445092999211,20.8537245201797,20.8299046298485,20.5008605435211,20.8890292981946,20.5101524164643,20.3495820085473,20.9377555008949,20.8542470457788,20.4164525312776,20.7552007128255 +"Q9VD30",21.0544156740195,20.7298765434736,22.7214022955371,20.6592153126256,20.5431128185,22.9035599564642,20.7475482700605,20.6256424997693,22.5325754740779,20.9206348258572,20.5211141428638,22.9524898137281,21.0373031303439,20.7100737325874,22.8951535367228,20.7573642167745,20.5108522365193,22.689892162401 +"Q9VD58",21.8360447043776,22.3825241460683,24.0087279623822,21.7968201810977,22.441106388551,23.9797499680154,21.8162146111629,22.4158312332156,23.9384584985561,21.7268837662314,22.3608241577605,23.9764572477333,21.7419915548109,22.4743768232501,24.0042136675242,21.7508894922286,22.3754498095642,23.9497351047296 +"Q9VD64",14.8802689211863,15.4730932416388,16.9684529870604,14.8879838902562,15.6831125220668,17.0824170288788,14.5271130408805,15.527699349127,16.858080331254,14.6741289499574,15.5719906343641,16.8661904899235,13.7207125254334,15.3889656335948,16.6658611051919,14.7679802311333,15.4948378243837,16.6581866925575 +"Q9VD68",13.7468025726063,15.0906366016959,15.3204159399489,13.9891493126374,15.144683509334,15.1406886858241,14.0854361376598,15.2099243932408,15.2397081112965,14.1997443567563,15.1963498528164,15.3269729134874,13.7351298169368,15.2633943834909,15.6398436609401,14.0172480382394,15.0279904198798,15.1062834476335 +"Q9VDC0",15.3262461121712,18.115386699345,19.0700434585989,15.5768756317352,18.3741948008449,19.2303913364969,15.3655505611677,18.0135941125948,18.8878418253909,15.6400763714655,18.2794016091692,19.1485794082686,15.5140117566615,18.3239573533161,19.0440631908971,15.2759062336706,18.1249278756732,18.9361313107626 +"Q9VDC3",18.7146678052424,19.2142907270292,20.0362799393178,18.556540293154,19.2880354593861,19.9919442989868,18.6290234974684,19.2641121502337,19.8203966047587,18.656252073144,19.3557960627833,19.9406229169875,18.7367521035109,19.1632089949844,19.9989938480606,18.4747978238132,19.2344683414279,19.9473025527802 +"Q9VDC6",16.1694802676717,16.8143257076318,17.6951350934962,15.9282478410247,16.6391430387452,17.5078356567701,15.8797210628836,17.133438158891,17.8797538789445,16.1583770297927,17.0956971024901,18.0888314339022,15.9837762300359,17.2792277286783,18.0547116989828,16.2429244643986,17.0790070563896,17.8618136725233 +"Q9VDD1",13.9304835090964,14.9153948824103,15.1233665431814,13.6659384396706,14.7806692954256,14.7969267434971,13.7960094654968,14.6475367145298,14.8429722648148,14.0445709848928,14.6442765567719,14.4494903226036,13.6936756929484,14.5644023079377,14.7060818377156,13.6992286741338,14.0109586434921,14.1602203504415 +"Q9VDE2",18.2754384006176,20.5841462451143,20.169445100584,18.165717769607,20.5664652297434,20.122267366107,18.0481272842638,20.4690243591177,19.9485051066431,17.9003421065814,20.3006549541416,19.9937790302977,18.130125664347,20.4312524470168,20.1086396136715,18.3782330991551,20.2267709052925,19.9817675255029 +"Q9VDF4",17.2710380698386,18.635961158622,20.0235535946573,17.404623699589,18.7186186083387,20.0790242381712,17.4165549600271,18.6392675844348,20.0903952953457,17.2243575914936,18.622951976902,20.0778019010659,17.3058751179835,18.6952673600325,19.9923696136242,17.3501798538304,18.6686217861923,19.9287600040658 +"Q9VDH3",19.8564172245767,20.1365668048144,21.0213008644251,19.9358048236997,20.3560359384634,21.3393711574804,20.0393093042877,20.3246825629741,21.1902621283331,20.1741736740903,20.3814235746787,21.4913501505423,20.1369708858618,20.3595443792755,21.4016647616298,20.2120033062968,20.4660003019286,21.5001629372534 +"Q9VDI3",13.2460052231225,15.5558784415675,16.5017246135794,12.7963132919329,15.5371471693615,16.349938694024,13.0120236464064,15.4685506368837,16.4196751177928,13.5224993242887,15.4713060692418,16.3685251539937,13.1160669104074,15.5423061921205,16.3444986026204,13.4308436740219,15.5999634577898,16.1380201465251 +"Q9VDI5",15.0545468363056,17.2729300012193,17.2457698663591,15.0156106982584,17.272903312039,17.4462714042126,15.287778704596,17.5215923235829,17.4396167057483,15.1465975869409,17.4729552854265,17.396758533995,15.1210421441293,17.6652563739469,17.0324588588258,15.3909060015761,17.830910495978,17.4492090940341 +"Q9VDK7",16.9124162832975,17.8120903573409,18.9283808671357,17.0076705946142,17.7560739122281,18.8272704217077,17.1035911737876,17.7876203645538,18.7990960090039,16.9236076522663,17.7272111727514,18.8334150935409,17.1363115358773,17.7458222640026,18.8448787248086,16.9889498172867,17.8568564888062,18.653547683528 +"Q9VDK9",15.1822532479915,14.2372094694302,16.8744365783925,15.0525877792857,14.0943681911126,16.8907005209856,15.3552744173814,14.235344964311,16.8529929173665,15.4203597168598,14.0474234480444,17.2940495602886,15.4895566624707,14.4095328062837,17.2192811681689,15.6156564007331,14.2971735366775,17.2025096038657 +"Q9VDL1",15.2164482934898,12.7884789781194,16.7454476441202,15.3064403991315,12.9727966782561,16.5882658708947,15.2893489866009,12.6240552643763,16.6968319392408,15.1114855511931,12.5796989057565,16.6487311515991,15.1070181759155,12.6888793087337,16.5576973589614,15.2684343663405,12.2959833471777,16.6781419661764 +"Q9VDQ3",10.9642589028468,14.7790801212532,15.0774806015041,10.310296695127,14.894524663033,15.0034634299029,10.6737934772463,14.7221330843395,14.9417088763816,11.1791775248378,14.623713848868,14.7694024068258,9.83842963592582,14.6209381631298,14.7789927681716,9.29015782848583,14.4010169352216,14.8589177062474 +"Q9VDT1",17.1855439574209,19.5053014943957,19.8917803935075,17.4038429999407,19.7124144941128,19.9440550284681,17.6594152952218,19.7354890068808,19.9825920892463,17.544469217105,19.7973232612266,20.2180377695905,17.9547359428506,19.9203004249307,20.1752606036801,17.8124512657827,19.8860167210828,20.1715773030025 +"Q9VDT5",18.0997335991164,19.6240177707082,19.6297738108971,17.8484159585968,19.5903776454292,19.9720134484243,18.0984505080135,19.3653263929055,19.5232544213705,18.1484992394512,19.7656646889404,20.0459479874564,18.1221594013769,19.2237944511976,19.4669657388941,17.7819298525155,19.4919175542179,19.588114556204 +"Q9VDU7",17.4435960378496,18.3955766473725,19.0964499814259,17.7309167177541,18.4627642765517,19.0660113163314,17.5391830946576,18.368959239322,19.0299636899272,17.6829049644723,18.456542530019,19.0937942182732,17.3139992842106,18.1798709688488,18.8974925732049,17.6895096775703,18.3837016005801,18.8301883683185 +"Q9VDV2",11.7205803627768,15.3193734695659,15.7129093169632,11.7780208674219,15.4031805915687,15.2133087848468,12.3687357113565,15.6430258050252,15.9325651693752,12.0409488024821,15.6864522169807,15.4354506979176,11.719667749243,15.7592466364148,16.137852506621,12.5270436312866,15.6135065904583,15.7518935487579 +"Q9VDV3",15.7326498061803,17.5215923235829,19.6619723114471,15.6125961370032,17.5330195584281,19.5673962957068,15.7209741065077,17.3695392102809,19.4947285074013,15.7118466357553,17.5215923235829,19.6296773101159,15.6880329449659,17.3129311445048,19.3666518361058,15.6261357372945,17.2365904210863,19.3524484154783 +"Q9VE08",12.3827935534582,16.179463279026,15.0076413119976,12.8373040817497,16.2186675098655,15.1088733064955,12.6906215008343,16.2046196748357,14.8561745735187,13.2235947358061,16.3335265718252,15.2090902430493,12.2168501239568,16.2414594531308,14.8053724419449,12.4004298379041,16.2240632452797,14.9014362683175 +"Q9VE12",15.1627320069879,15.9111063478148,16.0979193115466,15.2691753900341,15.8590201850488,15.995426434348,15.1250367514411,15.8005700159995,16.0114606853926,15.2287441794151,15.6303213404503,16.2561156503616,15.0674124392005,15.7015696267224,15.9163013811758,15.2297887492493,15.5092879205467,16.0820793650859 +"Q9VE24",14.1377298760852,16.2674240875454,16.1877414937853,14.7066861721079,16.6960811039221,16.5468516226291,14.5347901558454,16.6252073587762,16.1841397781342,15.0084832655826,17.1071196188476,16.8787546915908,14.4836019611561,16.4839793376874,16.0878818442168,14.6792619594452,16.7924122215681,16.5102990082823 +"Q9VE50",14.082976382853,15.245068616834,15.5992296333366,13.5256947677371,15.0558917439714,15.4999857818425,13.4418734509731,15.0434353687146,15.3166390343045,13.0518077008959,15.0173968886444,15.2416900429208,13.1153005076877,14.917925507387,15.1589662755871,13.424087748585,14.754232466553,15.2229004707315 +"Q9VE52",15.3714584228884,16.3569925416407,16.2181504347138,15.4249000616301,16.3576819501395,16.1971893065538,15.6121668444226,16.375871810606,16.1352617162111,15.4453075114975,16.4391683915584,16.1507441297317,15.1147707013324,16.2403710746292,15.8354645488349,15.2805375705164,16.4572473543332,16.100265079342 +"Q9VE56",16.1658001029024,17.4906452115575,18.7063950470134,16.0992923803899,17.7885358588203,18.800559761267,16.1848152173362,17.6642862609977,18.6877259208273,16.0020179753594,17.6917186001175,18.5778385070743,16.0476890616037,17.8074393108741,18.5899821962761,16.0601362522144,17.673812973549,18.5031566851029 +"Q9VE75",15.0291418397939,16.2292497502789,16.354380337946,14.5296907158952,15.6569238628986,15.7876936220425,14.5802221201317,15.7472553048679,15.9245774756879,14.1719488194582,15.5128133573728,15.8789133123208,14.9791046013785,16.1884804654905,16.2549239725473,14.2750179194562,15.6627034430624,15.2794634966801 +"Q9VE85",14.6685750384158,15.501249332466,16.5494074601481,15.1146461839798,15.6508843843994,16.6147397760763,15.2032113012568,15.5938974554092,16.528131092224,15.3380739011344,15.6336609470525,16.7631130071107,14.9803048362148,15.7772949082325,16.580897494998,15.4008440126658,15.9684759555831,16.8093590886335 +"Q9VE94",13.2399017462094,14.5171876678069,16.5958277141465,13.213516709134,14.4156462380942,16.1140904511299,13.4144215082027,14.624746730434,16.425299687657,13.0529284414437,14.2550161757842,16.0588094644538,13.1470611223046,14.4836212541407,16.2827309378843,13.6498522910501,14.6119735081146,15.9056469755095 +"Q9VEA1",17.6439177022053,17.8139151959927,19.0347583108278,17.624983014817,17.7125058639467,19.080840783313,17.668307241432,17.9386355189689,19.0932404140535,17.6166871565286,17.9512129220316,19.2601008173378,17.6709940376033,17.7664228253793,19.1063924574176,17.979341743328,17.9980244214086,19.1288989618909 +"Q9VEA5",13.026873836416,15.5765648030972,18.4207936553183,12.9586676650774,15.7365097940698,18.437653271875,13.0634754761617,15.4733807382426,18.3223878680669,13.0973285819642,15.6648879486284,18.3773117848857,12.5836524559701,15.4084750213214,18.1834417963807,13.4792867081848,15.3017329201562,18.349987523448 +"Q9VEB1",24.590150354629,24.9487834959233,26.2478143439515,24.6196916283528,24.8841338669923,26.1899971060929,24.3804616606326,24.76467606164,25.9952916900569,24.3438469270657,24.6984402949237,25.982359294311,24.4127058225794,24.8533903264042,26.098626620797,24.3771126479267,24.8892910383104,26.0442369112385 +"Q9VEB3",11.2622565326265,12.5834595252038,14.4868133963995,10.0675965712501,12.1847946412426,13.8477083824722,10.8843926059589,12.5388478117132,14.5874626279227,10.1773367479699,12.0940778104791,14.3686352879907,10.1730907169041,12.4482822688199,14.2084204717236,9.62787869418026,12.2609875388287,14.1054203831911 +"Q9VEC2",14.9741224278443,16.9662155529328,17.9918672054004,15.2115214697975,17.0848607612885,18.1248044507637,15.0306983607893,17.0168880230465,17.8215274603681,15.2142300179175,17.0383634825058,17.9704954019871,14.98798993732,17.0946605632364,17.8964092957694,15.0060609118797,17.0986671366829,17.9331988287119 +"Q9VEC8",14.8818031096794,17.0017666475171,17.8290986437282,14.8874215350216,17.1355753824813,17.8891744906985,14.733233213797,17.000860034472,17.774417237163,14.8811959465431,16.96790949908,17.6231772427918,14.6429714447052,16.9829698252354,17.6034930156112,14.9011687574296,16.8348468630984,17.4379296823486 +"Q9VED8",15.6747509608414,15.13473995646,16.4599223392974,16.2292890385939,15.4720802502638,16.9344731579718,16.4309168954642,15.7765565415933,17.0607116072845,16.6018432877462,15.8302626224724,17.5800377688284,16.2157455212046,15.9051428649936,17.0645221998734,16.7179981593299,16.0816886440981,17.3621283315606 +"Q9VEH2",14.3013649787215,16.0984254885415,17.8470402584904,14.0940680065867,15.9355773758076,17.4620386428254,14.144768044308,15.9517998920893,17.6602987998942,13.8666645263341,16.0598762950296,17.415769827894,14.1486157491689,16.2058908487496,17.6847218554779,14.0242725578398,15.9827560635766,17.5390742791524 +"Q9VEJ0",21.5322480979783,21.5519373157727,23.76380891511,21.6186472437839,21.6019018137103,23.8089501908085,21.3547233352885,21.5088452678487,23.6236988992079,21.3501046016049,21.3922376778887,23.6378659103147,21.3577689885372,21.5649201824495,23.6720883500005,21.4589655180134,21.4314939199794,23.6258496532721 +"Q9VEJ3",18.8086990232133,19.77225665976,20.1910939511306,19.6961820989618,20.4587941765843,20.9676739783748,19.0083513623544,19.8959301368458,20.3093192939852,19.4121086579987,20.4119384558354,20.9458840761553,19.1634129503921,20.273286422675,20.7061702573828,19.3496037486601,20.2514096157466,20.6558433161944 +"Q9VEK8",17.7398060445826,19.492238328021,19.4471586301277,17.784358827914,19.553699394287,19.3466809090357,17.8492958352455,19.4057680309424,19.2789405868691,17.8555531749644,19.5876989640525,19.3562336797207,17.6990975223882,19.491284116491,19.3382911740205,17.7797928035865,19.439440394579,19.2979643222449 +"Q9VEN3",16.5983420429118,17.5031748087634,19.008860682173,16.610747099871,17.6104527401429,18.9107410181036,16.3961412407598,17.3269020181248,18.6758031674233,16.4267723100647,17.4595254604659,18.8060146712663,16.494057266941,17.3101960372948,18.7836246957832,16.4004409463885,17.3010622275187,18.5574313582788 +"Q9VEN9",13.8284745021402,15.2757259943464,14.9582437049725,14.2679376089667,15.4854564897301,15.2132164096622,14.4282081373036,15.38334824472,15.1305082153736,14.0805645758251,15.3652188661281,15.2770649907912,14.3687191320808,15.3758880835581,15.0886164666875,13.9241008020743,15.4681451699038,14.9473347757031 +"Q9VEP6",17.4026434845707,19.4969146932827,19.3948975577581,17.2831007621097,19.2082428283175,19.3680621106325,17.5220953703665,19.4733001437401,19.2146526677232,17.2745637307175,19.1853179846292,19.3566638938151,17.2592907686129,19.2304717371576,19.1540963690345,17.1931240877304,19.0763213311851,19.1267115212859 +"Q9VEP8",15.7770340024606,17.8486273875114,18.2180692083747,15.6046207829738,17.8540125070947,18.02840932228,16.0097097848878,18.0281065991746,18.2712244923073,15.6576268579759,17.86033592637,17.9950700042616,15.7351337710212,17.8338370864217,17.9576679197639,15.6778896217422,17.8056103444744,17.91104499372 +"Q9VEP9",16.2077025007116,17.585970420593,18.8474042333996,16.5355025052721,17.6961279457511,18.7779442407898,16.4331486335102,17.5638001847465,18.7591636224424,16.3666988902978,17.5757736025759,18.6102804257492,16.4256408048695,17.4630287490383,18.4781656062621,16.4017709147914,17.5079182949441,18.5585237661499 +"Q9VER6",14.1238702898733,14.3343730259643,17.14264724662,13.8264606721418,14.0596902125229,16.9208185144778,14.1280658412547,14.3710843165941,16.9615058797198,13.821297069912,14.1502540727706,16.7737993420024,13.7556535541335,13.6707629213774,16.8026073272975,14.0262570297528,13.6555136519379,16.9099433362788 +"Q9VES8",15.0237583771951,18.5218801023944,20.1700247746082,15.2023658990796,18.8952244280683,20.3579493213694,15.0272663486242,18.4924935274685,20.3217569778137,15.1270190450847,18.7062881256423,20.1761441239119,15.0497232454939,18.5586858602709,20.0059765115291,15.1093415008347,18.8022337947246,20.251485971559 +"Q9VEV3",17.2965427637916,18.4869267467534,19.4272695654111,17.3900461569797,18.5226062497687,19.4383557060202,17.097578427663,18.1536805384921,19.1940615737945,17.1578183976373,18.3001903581588,19.2315816745617,17.094485226851,18.1036729383133,19.1173953394099,17.2432309511204,18.1700577083399,19.1043181594296 +"Q9VEV7",8.47058044808596,14.988020173093,14.1006152872426,8.84489262750284,14.9398704201448,14.1912987138732,9.42121150293133,15.2373833017771,14.2435762997855,11.2559152025051,15.2881053563089,13.6419783591844,9.86817921220268,15.6873098527472,14.3771268991958,9.33943046494132,15.6208385655071,14.2860655566688 +"Q9VEW1",13.5606860955959,13.8312822351999,16.9265568750939,13.3020405028309,14.2958357429777,16.3922394090209,12.8311585327494,13.6813030536072,16.7642544376507,13.6753151172049,14.4054967872359,16.2904574061271,13.0600689696279,13.8132946354899,16.5252761212218,13.8121172473311,14.1078466226908,16.0126475205411 +"Q9VEX6",19.8504859471518,20.7160858584068,21.9668566098163,19.8361894043416,20.7990588911448,21.9404083750587,19.8923178897148,20.7181195567569,21.8942530280497,19.645487046429,20.5718610426903,21.7589018083579,19.7678864409017,20.6265322359346,21.8585321092239,19.7000903580537,20.6171539813375,21.6299137736916 +"Q9VEY0",16.4461552261104,17.2685221284163,19.2303387172781,16.8719990823322,17.5709035709813,19.3731180531496,17.0036284924498,17.8416733862318,19.7497441258076,17.2671518734326,17.9793812230457,19.8478543856739,16.5789613115914,17.6717585408243,19.3286790830786,17.1821591609929,17.8141270217496,19.5964045261271 +"Q9VEY5",20.397034796088,20.7512474788065,21.4832832005731,20.3875134156036,20.7113260882162,21.5261475857599,20.3502893076283,20.6129998412306,21.3737900829092,20.2572210688127,20.616531288522,21.5994260135858,20.4521834449152,20.5279664276876,21.4753464348862,20.3418716303157,20.6614384695435,21.4927443547904 +"Q9VF15",20.5471503854934,20.5996650986659,21.9938799251469,20.3839049982229,20.5554843227283,21.82554433177,20.2778598065941,20.3728657832588,21.7621262427366,20.4794604109381,20.4927708295518,21.844940296124,20.5044055936602,20.3656364930794,21.5565555201193,20.0249882617859,20.2952478691401,21.4947521880718 +"Q9VF23",12.5922937563663,15.7389657269146,16.3925110307678,12.5178446501544,16.1674294828788,16.5599514385839,13.1135387238441,16.2350994937914,16.6723294060653,13.4351245582945,17.2217161737541,17.6003874954326,14.0640690271365,16.4235103332195,16.672572266221,12.9921339307085,16.0193754172275,16.5452606686404 +"Q9VF24",15.1502472715658,16.6347593163662,16.2325062952509,15.170105259498,16.5618059400568,16.1855891623524,15.5125712305301,16.6417982773002,16.4134898994158,15.2920747629355,16.6369756977028,16.292320498215,15.4230665337284,16.6185720974836,16.437482165582,15.8048774681877,16.7436479135742,16.6091006738928 +"Q9VF27",21.1615684806542,22.1927436676332,23.6325847045378,21.1133569493794,22.2009471340808,23.6768428996836,21.0181156231178,22.12549891313,23.5251232004756,21.0502387674663,21.9956802975096,23.5154449008922,21.1080278215149,22.1233352854111,23.494928931751,21.0317038495139,22.0194100130116,23.4323601743137 +"Q9VF28",16.1569537762725,18.3274615818965,18.7137588382384,16.0247969686516,18.2592199411454,18.8483439223774,16.3222934627994,18.1550364728029,18.6559489824067,16.3061688025491,18.2687091707188,19.0132355292679,16.4756398936064,18.0980971047218,18.8314280751179,15.9111439881865,18.3646202412347,18.7868068598382 +"Q9VF39",14.0873978297387,16.4701979488511,18.2551655297503,13.4294592859991,16.4995974841974,18.1551525494543,13.6576052635279,16.2942946569689,17.7793113120867,13.4496952959381,16.5381078779073,17.7240529258604,14.0501160827129,16.1803868831016,17.7712645457768,13.3218383038692,16.2009658979198,17.5021529581955 +"Q9VF51",16.899476265366,17.5225085466599,18.5404176920435,16.746980094625,17.5006839075809,18.4372239535834,17.1523578694626,17.5387892675519,18.4670566019499,16.9288092927353,17.6219420080156,18.6099880247106,17.2639036351847,17.5393211246892,18.5482722255664,17.0314734149343,17.4748430498374,18.4279577251371 +"Q9VF70",14.8863705871033,16.3753781332568,16.828920596368,14.765274783488,16.3214041655677,16.7812433425612,14.7838642726122,16.2695586804605,16.5606141330642,14.8792565904135,16.2874368448218,16.7379748940807,14.7500448925657,16.2919097801449,16.7657861720438,14.6564965930725,16.0689656535522,16.5074406196636 +"Q9VF77",14.2741507242451,16.4302253600019,16.2946814855084,14.1567485478681,16.5005431966203,16.536200421238,14.3837118306481,16.4480154607231,16.1927727978838,14.1173753412366,16.5920223503404,16.5944985857587,14.2867192640466,16.4992396398687,16.2951882815833,14.363084541962,16.4692255992561,16.3768640833296 +"Q9VF82",14.3048618181899,15.9758655395308,14.4374714788511,14.0941987609571,16.10852084252,14.4001108755002,14.3627422780463,15.9745414789188,14.3538521840529,14.4968054860118,16.1614702120524,14.319707381528,14.4150375588575,15.7713670879358,14.3704634852567,14.1825627861899,16.0536000039717,14.2665385386787 +"Q9VF86",16.8655393495588,17.3085846450306,17.8606643535066,16.9764092899087,17.3723277082686,18.0012269991285,16.9642238551846,17.4492069522325,18.0386071282266,17.2141525044752,17.558495604757,18.4048979602588,17.3566348931947,17.5899822758753,18.4318309326633,17.5593919978156,17.9073797188284,18.3622715681168 +"Q9VF89",13.3228089552883,13.2398983511137,16.0913105655507,12.0406942890301,13.3882938172395,15.9936370769694,13.0392448294391,13.738573972394,16.1570279243553,12.7833192962524,13.7669980576012,16.0289690078983,12.8304511999176,14.0281592653903,16.2170154704233,12.9136360245148,14.1730700211209,16.170962584943 +"Q9VFB2",14.8048664284161,15.5019999749516,18.5727273128827,14.7494015965263,15.7287602040709,18.4407418079167,15.0206681798479,15.8879703049155,18.5761573431253,15.0384541329729,15.9581431680467,18.7313411939372,15.1294703259138,15.7733182546207,18.6056318744155,15.3320545988066,15.6950477638175,18.4683660281888 +"Q9VFC2",18.1214707806436,19.9825175476075,21.3036699713355,17.8111148755012,19.896985356447,21.0599658506375,18.2736423093029,20.2989260238976,21.4322319564016,18.2000352779527,20.155663678593,21.273703339694,18.1693537196939,20.2201241135382,21.2781956840302,18.339360653251,20.3315280804625,21.5035033628626 +"Q9VFF0",22.6545860829873,23.1768891538909,24.5703281221754,22.8955173471914,23.3063202879022,24.5553771487943,22.9801029443915,23.5177610498996,24.838640930268,22.6743619979646,23.4535458909179,24.6991159589566,22.9266316457805,23.6406208791238,24.8452220533104,22.7484912230667,23.5990536712087,24.7295538294049 +"Q9VFJ2",12.8954682267368,15.1043154035036,13.2243378365916,12.8503360319396,15.0683743590452,13.5939101332469,13.1730496907623,15.1992178215405,13.2493062331854,13.5110250658619,15.5218873185969,13.5435229887198,13.1838183815376,15.1491207873109,13.7707449852988,12.8830870442248,15.1849484745312,13.3232052971346 +"Q9VFM0",11.9619558603812,14.4440144492519,16.2116773178399,12.5860737115748,14.517323454745,16.2764472953989,12.5100180956622,14.346023175466,16.2426435805658,12.3192555367091,14.4751928916733,16.1418225792118,12.694231174843,14.6520793166593,16.1481246399956,12.3115374280255,14.5060189346001,15.9778643647061 +"Q9VFM9",15.312790445621,17.5449349623742,18.3850276143334,15.4846818292071,17.8289643248558,18.4631230511716,15.154569769321,17.5316174002753,18.2337496352999,15.5040565829843,17.7280470906774,18.3074644024351,15.096831151927,17.6991270269342,18.3106104475516,15.52213020473,17.7119784712441,18.545147793003 +"Q9VFN7",18.5782521358125,18.4951550353996,19.4926856128568,18.694512577757,18.7478324868014,19.6159917944248,18.2080166727106,18.1219807108383,19.0871244037574,18.3594794166366,18.42967494509,19.360755508402,17.9770843335496,17.9527213185839,18.9913078598191,18.0659639892758,18.0258785112664,19.0818757307719 +"Q9VFN9",14.6436222768414,16.7040825126157,16.6024733355755,14.9580382275714,16.8156788880929,16.622384944457,14.6407114857339,16.5136084613602,16.4528841865845,14.8522735874617,16.8413794836841,16.7919482134404,14.4046463323284,16.5633874385572,16.4339293385422,15.2025468333498,16.9789121213093,16.7784774286715 +"Q9VFP0",16.1291204231939,16.4228385582883,17.2702590953549,16.2825036429438,16.2968602079669,17.3758885926522,16.0053915528267,15.9883107561481,17.1485612417673,16.1010854842433,16.4516129332682,17.2157008222488,15.86676914565,16.1864838052265,17.3411670026412,15.9561515632903,16.0991302096158,17.0382109467955 +"Q9VFP1",14.8009077757999,16.8814860869177,15.7494532702033,14.3449089053347,16.3103604171389,15.0731495722398,15.1135053947153,17.1152045551266,15.8686491423797,14.3870657290187,16.4813110566455,15.3576685210443,15.239951808669,17.3782052341228,16.2986592529827,14.4061744239788,17.4447009137215,15.1270567632122 +"Q9VFP6",19.6787344351326,19.9349224601861,21.3316621657856,19.6080528699261,19.9392943349358,21.286349981086,19.3919978476571,19.8821944815834,21.1185610779547,19.5437239978369,19.8138254728108,21.1330921606785,19.5482856226149,20.0360985280731,21.2116959522206,19.5089587303914,19.805092489453,21.2164672837954 +"Q9VFQ9",18.1796910717402,18.7557258583986,19.6830955700858,18.1325672513329,18.8445194029718,19.5921349437818,18.5906751948256,19.2145518552067,20.1432398947693,18.4847007579879,19.2149154300904,20.2114974272267,18.5492862048013,19.3026005394704,20.1578619250346,18.6161604975115,19.2335936362584,20.0204747472929 +"Q9VFR0",13.7750872571302,15.8781925426561,17.1716003944167,12.8078300307209,15.8342847361078,16.9842314320705,14.2713466936446,15.8405706121109,16.9324665319401,13.1872547906251,15.565443100288,16.8433041756558,13.6070824849718,15.9787755882523,16.9504427121083,12.5629002971019,15.4016262537438,16.629045972134 +"Q9VFS4",15.0584643797222,14.3019130014179,16.991834132383,15.2332619835604,14.3931230701328,17.0460195802229,14.7804659436058,14.0373563427443,16.6114302428494,14.9667168731315,14.2050060416827,16.6146441845926,14.9143474139939,13.8177079280157,16.4307720391459,15.1904207053861,13.781363359286,16.6398488958218 +"Q9VFS8",16.8715356731883,17.3526092636436,18.1706891288903,16.9092150333451,17.2143934385269,18.130403462564,16.6857205605377,16.8354011163104,17.9775606516367,16.9259695861596,17.2599496370614,18.1441299047092,16.5080429759379,16.7259726125752,17.7696314520954,16.851708595839,16.8894022392292,17.8476843662691 +"Q9VFT4",14.0051526795363,16.2035761205003,16.7086880318421,13.8814372799075,16.3693844035323,16.6104963939781,14.1314612586686,16.3959415077247,16.7155538131035,14.3812975564175,16.5583854616097,16.8807101161647,14.1201028749144,16.1936115437879,16.2913473122901,13.0660915420434,16.6989434335559,16.7958704181224 +"Q9VFU7",14.3065756760673,15.2491566194482,14.8858207238385,14.0398994133976,15.2924421787486,15.1395381007367,14.2397715968166,15.1472169532513,14.6511847605837,14.3321752067852,15.3418502914071,15.0650693638591,14.0992426065245,15.1502685670917,14.8663499933983,14.6240931159255,15.3640182514799,15.1264799781082 +"Q9VFV9",20.5193860365089,20.6932443425949,23.0396149633822,20.5166249967126,20.7768705174181,23.0901775666776,20.3117667936081,20.6443636923369,22.891177910547,20.4579974805884,20.8084163078511,22.9343130058914,20.2253034752055,20.5848280302955,22.8778871805508,20.3389640963354,20.9357653555063,22.8947471660493 +"Q9VFZ4",15.7738276564236,16.4439606921886,16.198771066525,15.8164341239338,16.405281234535,16.3257589373421,16.4229593327375,16.9642062323895,17.0832247435,16.3449360332172,16.9430493617617,17.0430354198117,16.3518259386883,17.0388175768356,17.0937642226608,16.676001303817,16.702654079441,17.1091204743357 +"Q9VG00",13.6105317297803,16.7313438331895,15.6847732498069,13.5865675735717,16.6696610262201,15.7586697439734,13.725861903485,16.2478881689801,15.6169711906435,13.4872611955945,16.4984313230197,15.8919077039695,13.840625804706,16.1244415910426,15.9096425800984,13.2297125318424,16.2339841753269,15.8516148429767 +"Q9VG26",18.7967183877657,19.8731903026342,20.2639598802854,19.0428783696032,20.076709799553,20.3778134070165,18.780418832375,19.8319988087185,20.1877464266219,18.8507422030484,20.0017323018149,20.3399161815029,18.7962171774901,19.9884953934017,20.2583993289793,18.7348599664579,20.2876511721237,20.2925043675719 +"Q9VG33",19.6523203501251,19.5006226482592,20.7224993402621,19.6949060446672,19.6188640223961,20.8602852019788,19.3220430865501,19.3771542563161,20.7922331657439,19.6962782624776,19.4983407556201,20.9404316828198,19.0382425843779,19.3451066190166,20.7218052183474,19.5089103745376,19.687600164167,20.9429827889582 +"Q9VG42",15.4386781519323,16.0306013232987,15.3063462156257,17.444215328182,18.2500398417417,17.3170416421504,14.8610670186518,15.4072750647123,14.648610851456,16.5180910979285,17.1427577974936,16.1522943060757,16.3028197948276,17.0683586120968,16.2605401804339,16.0819638402627,16.4051227115575,15.4601973521755 +"Q9VG51",17.3416616315245,19.348840679572,20.6780145828665,17.4203524551285,19.5278985123297,20.6608448549738,17.267242539079,19.3196111904475,20.5126890627456,17.3024409267501,20.5090470900923,20.6933836987433,17.3377553036314,19.3075896928474,20.5303490543043,17.3240806531652,19.2673994481663,20.4740212175859 +"Q9VG69",18.9470039298292,19.8404161562283,21.3749567349314,19.0209796966789,20.0278294816538,21.3203919743327,18.7681804570488,19.8030832500245,21.0949409565294,18.6678204389836,19.8287145452861,21.0246741126684,18.7087078930784,19.9209037305278,21.148799645993,18.7697994075199,19.6927698276437,21.1848325298466 +"Q9VG73",17.3972992300762,18.3022849993832,18.3763485012459,17.3103666392983,18.4871827315295,18.7069933961522,17.3769871416794,18.366541440379,18.2744273622189,17.2308974537294,18.4357318566455,18.7045720013983,17.2818893254301,18.2710942808925,18.1582907815902,17.2391370874363,18.3346863158515,18.5642731582405 +"Q9VG76",16.017464658168,14.7111791546612,16.5696604725277,16.1557624839964,14.6758347699246,16.699852552414,16.033859575503,14.5938467196482,16.4833201213629,16.0459086368627,14.8017836369103,16.7319022484505,16.0722991643399,14.7256439832557,16.2800552508711,16.4099330771228,14.4967966973695,16.4822443635859 +"Q9VG81",15.7294250782972,15.0310296581498,15.7597120060127,14.6613363145146,14.6648809412157,15.6639956449226,15.6245206559243,15.5152499926454,16.6503302762903,15.2323752138675,15.201430113049,16.1712858645026,15.9417998612598,15.9617768285515,17.1288343962479,15.4465282306478,15.2818468093386,16.6668592338248 +"Q9VG92",16.4729425736559,17.2270964727114,16.6559614220605,16.3583622599432,17.0772671825329,16.0699646061367,16.3624058141752,17.1693043667073,16.5292634077351,16.1475575100755,16.9406636849508,16.1403443469786,16.1504823575917,16.9747280440612,16.4410723923032,15.8337899544783,16.7363440893973,15.9917555421963 +"Q9VG97",19.160250341178,20.461863556315,20.4065247480306,19.2503548734496,20.6220256696381,20.6435131127342,19.1303334202332,20.5938864002802,20.4437509681948,19.3147666678009,20.6590741625066,20.6783209245228,19.0799430526739,20.4739608288029,20.4213709301462,19.2396125613953,20.3825239844254,20.4099282077877 +"Q9VGA0",18.6561403608626,19.0618798835057,20.7224124308646,18.5505049820867,19.1408035527201,21.0744429835262,18.2212791892009,18.8685543499341,20.2870956901634,18.4503102321776,18.8430595886527,20.6573973295459,18.2424909042059,18.7584413964486,20.4787237438654,18.3236657364928,18.6015967939434,20.3438807554032 +"Q9VGA3",18.421086793593,18.8350528488629,20.6476547029909,18.3908427184407,18.9722368000163,20.5917420409127,18.4987146509827,19.1332348384412,20.7692181198757,18.611582683252,19.2588722881812,20.9944600961291,18.2784006838899,19.0145349277746,20.7697967113891,18.6256808423441,19.1668921883269,20.9456847525308 +"Q9VGE4",15.4540085094502,15.2382026783319,16.8128159579332,15.1459035226606,15.1091183122323,16.6280189034149,15.3831178493134,15.1078523843276,16.5517292506171,15.1974518143993,15.1488574625688,16.5751699539036,15.2488200407752,14.9753164379103,16.5484582228369,15.2815140219245,15.0268813041227,16.5760965786365 +"Q9VGE7",13.347923142126,13.9970903244506,14.7823186225885,13.3567863849548,14.0620814009018,14.4523818753167,13.5289565809998,13.8139397077005,14.4694251093517,13.4695418216977,14.1509247004503,14.4972541980091,13.2026957684972,13.7231944616475,14.1384873571139,13.604155655026,13.1946912766625,14.2784390627149 +"Q9VGF3",13.7780781487303,16.3856346766734,16.9974057568477,13.5143614410999,16.5469234734382,16.8631041823358,13.6038611700241,16.4188429486348,16.8846101768295,13.6219958862164,16.5265604518716,17.2108358674673,13.6028129840619,16.5267746063092,16.9309419916741,13.5339689512199,16.3498930901689,17.0149822393946 +"Q9VGF7",18.0910871938723,20.2906713259513,21.6881069599723,18.2021837310785,20.4233354816904,21.8939866418178,18.0925483988568,20.1453519047972,21.4595971192927,18.2113552403677,20.243579579992,21.7130016020737,18.0204487833857,20.2112606231558,21.8443721644026,18.2702244235918,20.3563877577595,21.8022428431193 +"Q9VGG5",15.4504187863537,17.566413707301,17.6832403000849,15.646558778953,17.8790628079094,17.7609269260221,15.4412865304088,17.6634682563848,17.6906952153388,15.9594211951292,18.0838553980493,17.7500677390321,15.5651821528121,17.7026390790987,17.6312359396667,15.9185542148665,17.7594600386565,17.7537021019383 +"Q9VGJ9",16.8386505401109,18.4110096444355,18.8247649496345,16.8444036086166,18.3441832554131,18.7710672477915,16.7876166563281,18.4628086294781,18.6131675741159,16.7951518266343,18.3517415696962,18.4647956982635,16.9803894653603,18.5578790817523,18.9538679718277,16.9227479406618,18.2183756868823,18.8636977339885 +"Q9VGK3",16.8066827615832,16.9974638164574,17.7520014347186,16.7852361185828,16.9513098755248,17.7810574230092,16.6441719031768,16.9366244010214,17.6855014365016,16.521406210973,17.0435335209267,17.6444408096549,16.4560553259154,17.047906197249,17.4517934465302,16.4356541995534,17.1339807446985,17.656044490794 +"Q9VGL0",10.7001614058666,14.2654380475843,14.0255900184099,10.9207373798235,14.0308605683268,13.9801430136551,10.5977423144239,14.6131110457029,13.7387484493865,10.293111777018,14.6184749909694,13.9973561336976,10.6826854459722,13.884188385603,13.4702560036099,10.63040989311,13.9191059337291,13.601534384907 +"Q9VGP6",17.1308685665311,17.6895815796769,18.8327873131508,17.0772777428466,17.6166337174871,18.8537740374395,17.2491859387123,17.6507795891389,19.0877687709653,17.313788024676,17.8291779789417,19.0388502525335,17.1260752331497,17.671775862672,18.9684049493596,17.3611256855953,17.8001900282415,19.1263121482775 +"Q9VGP7",14.9404688417777,15.706402244629,16.4356584667533,14.9025738806895,15.7537494513064,16.6266306443096,15.0332941038472,15.848538382552,16.7483163915249,15.4230619293317,15.9309487435004,17.2996498958771,14.8570103976833,16.2656767271352,16.7174728743299,15.5229277320759,16.2893758921855,16.9260328624163 +"Q9VGQ1",21.5195862038908,22.1134862082342,23.6890457472686,21.5916496925773,22.1376716677328,23.7112625390839,21.622344678581,21.9917129575852,23.6508722742165,21.3409005715164,21.9746558591763,23.7030586119524,21.5363606869361,21.8851809248804,23.6383099424539,21.6467039344101,22.1758047352914,23.8737108627758 +"Q9VGQ8",14.6521385962488,16.022841403145,18.0967583104697,14.3828325953332,16.2796247417712,18.0401151863253,14.6978984093567,16.2155958826323,17.9106396855971,14.555534644718,16.3647528183042,18.1392049413098,14.4912945648301,16.204200124923,17.8598666670323,14.5547311880309,16.251160124479,17.8577747247977 +"Q9VGR1",12.4489531386397,15.0211115279681,15.2288717834128,12.6207552389317,14.81730915087,15.2347875822948,12.6403051357901,14.8132589168428,14.8891649178122,12.531599538776,15.0348906849812,15.2129682279088,12.903527871897,14.6193307185918,15.103923952747,12.0022616979592,14.6365176782604,15.0121308283968 +"Q9VGR2",14.1107684272241,15.0204473388896,17.7764691693178,13.9775318210483,15.4499572094012,17.7845488399777,14.1401690536459,15.0948507369764,17.8557612549994,14.1207123298155,15.0873022753397,17.8105500255953,13.9829841946495,15.0912272248104,17.7330313496048,14.0176012328555,15.1554465799483,17.6180245692205 +"Q9VGS3",18.848191588938,18.8287101774083,20.1395440647201,18.4450924239274,18.7900842682702,20.1337704744453,18.8742188781245,18.9080982523853,20.0523404390125,18.481701229692,18.7953537517504,20.0665542650442,19.1480305164794,19.2526079580128,20.4415656275115,18.8291424606137,19.2375798040825,20.2966276607967 +"Q9VGT8",14.1252846790735,15.9598822239301,15.5869499723069,14.1363492934643,15.9785838669178,15.5402656270743,14.0916217404146,16.1689912577116,15.8479881727866,14.3470222393791,15.9784850100388,15.7311723507365,14.3330561337374,16.1885139074156,16.051386650531,14.3734133487722,15.7664939202095,15.5356690643227 +"Q9VGU6",17.8998971665119,18.9008088403113,18.601001633945,17.8932983732588,19.0121591003697,18.6662180526421,17.9805802665073,19.0550486254283,18.6257985443099,18.1224235373121,19.1724967577673,18.900341971662,18.1635860342659,18.9236509201184,18.7140736490919,18.0875323362556,19.0447329968607,18.5969916259677 +"Q9VGV9",15.0336578034045,15.9882174069216,17.5150477473055,14.8433668095931,16.0731870207195,17.6121137743453,14.9775181557519,15.9737648800693,17.1323860923735,14.8992828359679,16.0655010387761,17.2575068871635,14.8935911079383,15.8600162218405,17.2420259394841,15.076692762194,15.6420455689957,17.1313431946702 +"Q9VGW7",15.2575183831866,16.0254975013232,18.5584622160303,15.1193793220279,16.0687229465672,18.3835340300351,15.6298306269614,16.1753167768053,18.4108045283256,15.4034587209721,16.0943699405277,18.3216651699008,15.7513206389004,16.3473742595549,18.698108668719,15.8647520705831,16.3723691850749,18.6244478459078 +"Q9VGZ3",16.9279899860714,17.0275137825994,17.6551935088535,16.6477978430161,16.5082627146986,16.948816454871,16.9171547556855,17.2096398197153,17.5338944901686,16.8106852524078,16.7113037361517,17.0758823571112,16.759551921875,16.7115878474584,17.0568155827285,16.4231461866873,16.0693008619167,16.4616510530789 +"Q9VH07",16.9956169676899,18.3442556698617,19.3013427483986,16.7953591151055,18.5079104126233,19.3459443593451,16.9613670948048,18.4716324174212,19.1144031653359,16.9177717768163,18.5845598058018,19.3743535886636,16.9132577158828,18.4578098768489,19.1858887833011,16.8851285721004,18.5106620755475,19.3644398567068 +"Q9VH19",13.2440825674713,13.1905170301106,15.4638732071748,13.4979531889213,13.0899792857507,15.369087045382,13.2900160234312,12.9964231012734,15.806346544571,13.4659737445237,12.6931128201531,15.5962978777899,13.214471857946,12.9483877135171,15.7411371125153,13.5363434300809,13.0818215160795,15.5688972762544 +"Q9VH25",15.4035038110034,16.0744559282526,16.862526228116,15.3644993658278,16.2307302481114,16.9440932095704,15.5760160312578,16.1798113069771,16.6481024168183,15.5731223183569,16.2671267710356,17.0299129866358,15.5349159085036,16.4249915910699,16.9136002077717,15.6279020859742,16.3020909044664,16.9148192138453 +"Q9VH26",17.3509054449218,17.8363243111102,19.2192713599895,18.0542366134632,18.0870576747693,19.8352811648306,17.4054457839333,17.6408806336128,19.0415136228138,17.7609068608711,18.0323292677058,19.7217928109546,17.3671252410226,17.4377462414562,18.9791261562801,17.9461983269057,18.0050794021843,19.4428144855103 +"Q9VH37",14.6198992063875,16.8371695942875,18.7817325345251,14.7988522956167,16.6484528830118,18.3726205014265,14.8024365379828,16.8084898723181,18.7687770256603,14.7021924148016,16.6003530881575,18.2210110974006,14.3524212922926,16.5848746719916,18.3474826089248,14.9937343910635,16.7849313800196,18.4102528914481 +"Q9VH39",16.7745091285332,20.0156373023487,19.5641696539248,16.0769447310304,18.9576232751951,19.5746323768283,16.7553113399811,19.8513488221878,19.5281407276045,15.9724765433014,18.7998871796409,19.5667629773532,16.389511085925,19.3980232985603,19.501491405521,16.0674894713071,19.048817590769,19.3342917012853 +"Q9VH64",16.0712861118306,18.3081037630853,19.2805326292779,16.0365978867393,18.1348194930785,19.0777090725389,15.8264084440502,17.9652464581474,18.931393592486,15.3718694266389,17.8383050340747,18.7193168702123,15.8597307318788,18.0806791752818,18.932393177991,15.2021552733443,17.4478238775801,18.4218093994561 +"Q9VH66",15.5207390936856,17.5711906079193,16.7305432854703,15.3450313760984,17.7073708789548,16.8360385419773,15.52134753865,17.7104331567069,16.590079835361,15.7022362987247,17.8224332585002,17.010510138887,15.5872352191922,17.9149460363808,16.9522539758469,15.8030311385054,17.9769742927541,17.2533203834749 +"Q9VH72",18.859597665981,18.2580858103727,19.329081899884,20.0137212672674,18.06738317826,19.356030075936,18.3007048648414,18.0599844987482,18.9168302542582,18.1264897548804,17.967101928349,19.0779781936387,18.2443530938525,18.055821348854,18.9361020601012,18.8392325595114,17.9431395420034,18.885617012033 +"Q9VH76",18.9076020629619,18.8798674614317,20.4625141877957,19.0143813106982,18.9276858371645,20.4054732563015,18.6972688848808,18.7581867792607,20.292079715128,18.7671297857344,18.7870294416555,20.4064752386246,18.5779272463436,18.7598942954689,20.0579985050517,18.8608532288695,18.8771181246163,20.2239476972035 +"Q9VH77",14.4089090389943,14.8869536753516,17.0801843100386,14.4535205835294,14.7660781847963,16.8985188938925,14.4395809590175,14.8938779830573,16.8437072828043,14.7136468766181,15.0787754509444,16.8265524927177,14.5964685164132,15.1256573182152,17.2548897729071,15.1140829283168,15.012827874058,17.2673054038083 +"Q9VH81",15.4269972105856,12.5368177608307,14.4881478649713,15.4291255722363,12.745031880175,14.5386525372202,15.9409983323239,13.0590931609525,14.7097891192565,15.6811852174168,13.0083643521932,14.5450058850818,16.1930423833872,13.1805120466703,15.1602057778102,15.9539080974745,13.3125405924121,14.8092651291784 +"Q9VH95",20.1349824994165,20.504107386611,22.5565337478069,20.0706798342468,20.5529499342012,22.5436548700209,19.9451370591165,20.4129887326488,22.2917671420615,19.9858591231759,20.4213686515433,22.404543300126,19.7436414031154,20.399930469719,22.1702462065651,19.8332247479009,20.3412414331505,22.0947590264866 +"Q9VH98",17.1219343056905,17.8470583384653,16.8136365892249,17.0642611692804,17.803044170637,16.6523167266009,16.9483432324147,17.4953168043851,16.3610278666377,16.9572485304666,17.5561057395071,16.477673373569,16.9900841411448,17.5583963843211,16.2371095747665,17.0475366886764,17.3998394428901,16.3075307988595 +"Q9VHA8",17.4625091334181,18.9470312546575,19.4217573512477,17.5159753279712,18.9481665824544,19.3479965246965,17.5731017162355,18.9651031979797,19.5133637894097,17.29348323894,18.9353498253517,19.3588391268143,17.3692766539527,19.0451526247329,19.4691881153465,17.387291639735,18.7979496742472,19.2212889969545 +"Q9VHB8",15.5609935020617,15.0567506006594,14.9162748228069,15.4685975262192,15.2832887441807,15.0813752836613,15.7698113104902,15.5002984607972,15.440662655402,15.6812757403261,15.5761497557072,15.9456399050971,15.8502594178976,15.5097008639243,15.8500026444796,15.7970916930672,15.6674428485246,15.7843502312303 +"Q9VHC3",16.3431800063881,16.5647753889167,18.1034715710209,16.1689588725273,16.449112303192,17.8895402742018,16.8549205437005,16.9426527347911,18.6155820463975,16.580521694922,16.9594250986915,18.3080313156975,16.7973389157898,16.8909641753564,18.3175288324597,16.7309499496687,17.0750812764661,18.3576312977643 +"Q9VHC7",19.9567135863829,19.7089207008959,20.1194470409366,20.1246429726984,19.8094419590823,20.2695192840201,19.8658686622712,19.6694386095779,20.0331858681973,20.0589345945604,19.7460746593105,20.273077148205,19.6214576399935,19.7135627260282,20.1055528236708,19.9222564218467,19.8163419287373,20.0996297793584 +"Q9VHD2",15.1148849954947,16.3491316869699,17.9017850083607,15.367623520045,16.5174077979755,18.1123093058425,15.3104752059056,16.3968277293755,17.9401551134612,15.5591388316847,16.6444351274969,18.0417968986764,15.0602887874051,16.459530374245,18.1180163407917,15.637880712434,16.2855779770451,18.0746833893416 +"Q9VHD3",14.6884715888088,15.5877508475142,16.5266268521307,14.7258603756661,15.4896749496435,16.472634808263,14.8444243913873,15.6393682122158,16.5369814445787,14.873468044431,15.644418954066,16.6575146435676,15.1361711515416,15.8093229902762,16.7866237168601,14.9253877209627,15.6277692905611,16.535691676166 +"Q9VHE4",15.8143571642891,18.2818392032673,19.6967277860671,15.8898223549427,18.399176567564,19.7131356429941,15.8392499358208,18.2450618313586,19.5255652682866,15.7692357808869,18.3264222632087,19.6318911756566,15.9003469382908,18.3129209797919,19.6596566910518,15.8262845280104,18.2205082747505,19.6015599380836 +"Q9VHF9",16.528352615566,15.3569960793663,18.5692761590065,16.8158329756083,15.8752570914541,18.6621203500828,16.6861838222819,15.4962002138948,18.3390470512523,17.0074523030957,16.0535558909615,18.539236293474,16.4329755655237,15.8798161868604,18.5950608194974,17.0843838225953,15.9553412087689,18.550897192904 +"Q9VHG4",17.5405010907644,18.0017464553057,19.338211171365,17.6259317337806,17.9916101006219,19.4173805460088,17.7981951801653,18.6344197139891,19.3345768497304,17.8863375124383,17.8839230476393,19.4689446363628,17.8419361030364,17.90959275582,19.139374799564,17.6883437037454,17.9570257747902,19.1953907103259 +"Q9VHG6",15.0292954474199,15.3739521937187,16.6627879112759,15.1232306690481,15.5256341644077,16.9238455722424,15.0516132315388,15.207626225322,16.4160912310423,15.0308968435326,15.3511593380812,16.3765007217102,15.0548175101275,15.2944709477502,16.9589998309333,15.0109146222502,15.2691017633437,17.0587905283049 +"Q9VHI1",13.6300139899262,14.1456179940918,14.6036720364665,13.3994368408025,14.4769405459204,14.4676441219745,13.5554088853581,14.4205523327915,14.7324235578294,13.6327437827498,14.6566084047421,14.6559423891703,13.5963202425539,14.4908710551936,14.5508853049144,13.5099790651612,14.7162032342659,14.8372086854 +"Q9VHI7",13.9564940682518,15.5301497681422,16.5099358012551,14.3611807262542,15.7777290962322,16.5438135889863,14.2769472885761,15.4845020286955,16.6087625349077,14.3011745140715,16.1520707397129,16.6342328904638,14.2249450326753,15.5990061492336,16.4689975569493,14.2761383971199,15.8462061371403,16.5212674546678 +"Q9VHJ7",13.0228905670928,15.3548761009654,15.7356789569189,13.2612327789534,14.7570938217422,16.2326090375477,13.1350838021561,14.7889440082469,15.7716854943138,13.4125425796709,14.7765176023165,16.2274701674759,13.4770711366082,14.8927748144342,15.9142289691696,13.3294342412438,15.6178365871754,16.0254731458254 +"Q9VHK6",17.0613762838295,17.8713568873913,19.1661877375898,17.2585401776247,17.6868721846466,19.4005080180669,17.1667776394049,17.6089111831968,19.197870909623,17.0525434742506,17.6527429849194,19.7150071978365,17.2987705870335,17.5424105135951,19.2013802698743,17.1238428255971,17.9310110145344,19.3440196706538 +"Q9VHL2",19.3314271209403,20.9271781759004,21.8250901734093,19.3341181251282,20.8889399712966,21.8240226353288,19.3187162669657,20.9648079718807,21.7179020042906,19.2703281432567,20.9175067970635,21.7962336864118,19.283326212115,20.8656262810995,21.726968312836,19.2610663234268,20.8236947296511,21.6950121984664 +"Q9VHM3",14.7207365139917,14.5807272136443,14.8509148382827,14.8584211682936,14.4420024806442,14.9441184987224,14.59336110536,14.4120514277786,14.8321581038425,14.4966290758901,14.4464883886205,15.0442411996758,14.3026537168339,14.3863806706558,15.1334920775885,14.8338520542879,14.9428596914349,15.2441918849488 +"Q9VHN4",12.971236050222,15.2910482247765,15.3824241144198,13.3522184861151,15.1827460641657,15.5561411656347,12.9045587290684,15.4868541828044,15.348544740968,12.9305509233019,15.3371460532128,15.5577546423791,12.7820815711413,15.3621475344006,15.6226641042766,12.661663074011,15.0878523010154,15.4003969583856 +"Q9VHN6",14.9688948899758,14.0924685093397,15.7025087409282,14.7038301083464,13.9466658237998,15.8644644887767,14.960150092441,14.2446518786488,16.1062009994207,14.8091865434815,14.543654098752,16.0796165158272,14.9033009840995,14.3408605467851,16.0823386687434,15.1458307144518,14.2160197097627,16.3235870269619 +"Q9VHR8",18.4634169502612,20.5301677597409,21.0546670139596,18.5695709786167,20.7135832098353,21.0934419398005,19.1451121692571,21.1803561456363,21.5944144602557,19.030567198215,21.0891106245858,21.5220794898598,18.9356624539833,21.1762166133572,21.5749204115305,19.0855963200914,21.2141121160059,21.5875105159378 +"Q9VHT3",14.2320203018832,17.1491082004515,16.7403362923236,13.9786420583095,17.2985018352267,16.8023026440375,13.727556789398,16.8277910557494,16.1542040126906,13.5432611402234,16.8575132181403,16.4397147977516,13.7028244919298,16.8139140527456,16.2001827908732,13.6290761781297,16.7993647424589,16.2781588739532 +"Q9VHT5",14.344523335021,15.591768431183,16.2866929361259,14.5870744104947,15.6128748459883,16.3959076334404,14.8493052715971,15.7633650045311,16.7391732869094,14.7321084995495,15.8709045478699,16.7152534707262,14.7535195256669,15.582452510539,16.699090158564,14.5615118920579,15.8067020030176,16.5111124619958 +"Q9VHX2",14.4144754438752,15.2378141468736,15.5858310615091,13.5283977775571,15.2033272460612,15.4339941145759,13.4021558205498,15.2747368256218,15.5432421077267,13.4721653451087,15.2157055552494,15.6335014292711,13.7287610638355,15.256768823635,15.5978451705278,13.3404721993712,15.2447804039417,15.3510204355713 +"Q9VHX4",22.1191397595882,23.0478683529524,23.7834886512733,22.0745761311447,23.0279728910792,23.6698791422971,21.9217418277099,22.9157666575055,23.576810219869,21.8918558096322,22.9190869993946,23.5463910952219,22.0134004371724,23.0333622094213,23.5884870014098,21.7668182025941,22.7536759356792,23.4340225020943 +"Q9VI04",14.5129903810883,16.6358319620409,18.3864648247078,14.1568356343529,16.2105397846541,17.6571899140595,14.5851579946076,16.9689220857585,18.5898228795338,14.1735121931837,16.5157598660537,17.7211532578309,14.052284008352,16.8088313065922,18.5608431736333,14.3784424067383,16.6764242228958,18.1929482744341 +"Q9VI09",19.8625845179882,20.2736711623948,21.0271295697997,19.6983155002745,20.2171886568865,20.7919249721843,19.6509200324898,20.0975451645704,20.866861957671,19.4097535112483,19.9455502362348,20.625623063597,19.3431128504357,20.0649381526338,20.5010908805073,19.6049577970867,19.8724459008154,20.632854117981 +"Q9VI10",17.0736085647915,17.1150392131719,17.012534038934,16.9616774652148,17.2886357194802,17.2028385719722,17.3849636049873,17.288507400191,17.1427770464568,16.9680449539213,17.3648379039538,17.3573670352751,17.4468287122006,17.2218174884889,17.2491932382284,17.1897561041366,17.2877151174109,16.9953942398814 +"Q9VI53",14.8373210310989,17.1528837408423,16.9183314922651,15.1725049486339,17.2036755290154,16.9542540983698,15.040971393665,17.0376109912897,16.7263897696518,15.038337631058,17.2564627064325,17.0390284712986,14.9520085717203,16.9952216701939,16.733692563407,15.291840320867,17.2297976991406,16.9346179301838 +"Q9VI64",20.101891823564,20.9114891592135,21.6333130312665,20.2446299711917,21.1101318729469,21.8167229317161,19.8336531481435,20.8567196173086,21.5147684376221,20.1245137536118,21.0298532791921,21.7166405652263,19.7979016608394,21.0607347241306,21.5877007879345,20.024952527701,21.1312013795583,21.7486918601785 +"Q9VI75",17.2412777075583,17.3334433511181,18.0466529232531,17.5601684110083,17.5132868141061,18.1499293422848,17.0346609720115,17.145376791679,17.8407604333299,16.896934285378,17.2623589579153,17.8591265409869,17.1317097720348,17.3156668334219,17.7456790829598,16.5809413920569,16.9766214973982,17.7056903202277 +"Q9VIB5",14.6262980183587,13.7145340193408,16.1128311256335,14.0901301772581,13.1932743063065,15.7820642604732,14.5154937065827,13.6692526871519,15.4565329450344,14.3225277881448,13.2292970835623,15.1988330085348,14.2365371171916,13.2551364282046,15.4418509330957,13.980412481245,12.8429419494736,14.908852629998 +"Q9VIE7",13.9696220406599,14.6035875406918,16.6062227495064,13.8847055303327,14.7220452978924,16.3877650643764,13.8486770972069,14.6716757664044,16.5340465051039,14.0971059150576,14.8432378662296,16.455979040627,13.7263048150422,14.5533186786894,16.4236509972498,13.7960189776547,14.562090675148,16.1128977075004 +"Q9VIE8",23.6422147668614,24.1203343824099,25.7073803294236,23.7451374006234,24.2990618021934,25.7863657339752,24.253739443741,24.8216887859277,26.395103586872,24.1125226824892,24.6824164213242,26.2775894527382,24.0836651310325,24.7111935004288,26.2108594001612,24.1224201347742,24.6797424739763,26.2369743206986 +"Q9VIF2",15.592554156837,17.6499259262692,18.4146503724765,15.6656034185516,17.6576055145858,18.4743396284907,15.8849442301869,17.9792741246665,18.8371812421851,15.799903250132,17.8473039970661,18.6725868338397,15.8141183325789,18.1484125498256,18.907161829093,16.1021170663283,18.1779561396746,18.8151847338911 +"Q9VIG0",16.0216603019101,17.2232415251927,18.8168458047456,15.9509144489104,17.4535438465164,18.9776489953338,15.8526778072088,17.3620091844635,18.7193234663655,15.9477221567184,17.4201552959212,18.8667063131392,15.7567882317496,17.1077708874816,18.6017762194705,16.1785540439365,17.4328710686494,18.8828452267434 +"Q9VIH1",14.2294544287282,15.3352869181681,17.2194700802921,14.5038218056108,15.5877986463083,17.2288812007769,14.3388761345851,15.3940426704866,17.2966308013852,14.7509433282281,15.5238758074992,17.4254180719377,14.4902782240496,15.6091586259556,17.2625282843249,14.4590863771503,15.5716521669648,17.3178447767306 +"Q9VIH3",13.1201646766313,14.1583764395956,14.5653028234473,13.2405832079939,14.1050410908877,14.1155488002369,12.8452014977545,14.0692560318941,14.141380335472,13.1232783414978,14.1102496806728,14.3246905424792,13.1221764680852,13.9852918946607,14.0536595476751,13.3481584937427,13.8587335310871,13.724902603923 +"Q9VIH9",18.1539870935631,19.0982886303417,20.9501272321499,18.111279713116,19.1785127293689,20.735551497533,17.6383873875185,19.0192598182745,20.706854155484,17.9120681825911,18.9795435783081,20.4595406684319,17.0153809727385,19.2368925927743,20.5682929192053,17.5098477853733,19.1585097186622,20.2458307443496 +"Q9VII1",18.8542707130174,19.1208053486665,20.6791170041645,18.6559948959296,18.9968862606817,20.6323088010554,18.5445123560643,18.9281022877449,20.3013212783172,18.6060507849292,19.0184397538716,20.4854855265152,17.7355717182336,19.1704128168849,20.4447624217955,18.0896156723888,19.1383612144583,20.3002044029127 +"Q9VII5",16.6056446186561,16.4315369648488,18.4727638777436,16.7735526650028,16.8144726449276,18.8282156481765,16.6906810354676,16.5957405196189,18.6651264082304,16.6632582994037,16.7126722061452,18.779062141866,16.3130794674646,16.4159492923216,18.5297705277095,16.8642754307416,17.0897516788147,19.0141969622898 +"Q9VIK0",11.4105976479627,13.5229620907139,13.4335164062448,10.6327051911438,13.7394518644309,13.6257688547532,11.4791663994724,14.0684577040352,13.1759817459036,11.1942040149738,13.9407795724944,13.2430131679866,10.3035281763122,14.0979974598234,13.6881505095081,10.8220112424008,14.2156468991282,13.5854346554128 +"Q9VIK6",15.7651545159545,16.6915775638233,17.5823229278587,15.9685815484698,16.8025132127411,17.7808617331718,15.6904521713098,16.5833897399752,17.2656189175177,15.6873021352953,16.4302604611842,17.4803498860096,15.5427278452829,16.5551749832466,17.2757250496096,15.8074454649217,16.3764112821778,17.3893886595443 +"Q9VIL2",15.6484120357656,17.5299635256645,15.4394522350293,15.9283830164013,16.8709424507055,15.2600276072037,15.750761896666,16.6912689482403,15.4712136145448,15.7787803554495,16.8078453776496,15.3803633978992,15.6554796794696,16.7832568996998,15.2153418203511,15.84833865135,16.8040834621316,15.1072308797092 +"Q9VIM0",16.9874103943966,17.7597205572948,19.2807367380529,17.1969824962182,17.6503566262906,19.1075225520704,17.2510816204592,17.8096849823427,19.347266838683,17.130699712565,17.81204958361,19.2792397943246,17.2060616076717,17.8743188174335,19.259251753131,17.1226474174447,17.8714682221526,19.275466243162 +"Q9VIN9",15.6076058470572,16.1713457804054,17.0554854357117,15.6655709836067,16.3413714470682,16.9084331090957,15.9619657782493,16.4534380622443,17.2845985554018,15.780094029231,16.4523316159738,17.3473173997754,15.8814901892953,16.2705687844999,17.2764461634002,15.7549926712075,16.4742666967331,17.4536036880065 +"Q9VIQ5",14.405098789096,17.5311182364012,18.3079247898101,14.7221823234385,17.4765049229324,18.088430920556,14.3280963748513,17.2523584825759,17.8340160854572,14.2556739136574,17.1564483287832,18.1115006641096,14.1279434702008,16.9849135061983,17.4824223790242,14.5246639156873,17.0862946214233,17.9004362555107 +"Q9VIQ8",20.3144375741877,20.8795568039302,23.1302151434948,20.1791565167591,20.7332404420323,22.8258902108997,20.1389878863165,20.7318092903416,23.0016794932878,20.0838951375782,20.6882380186941,22.9306612510372,20.3862296201162,20.8515065746075,23.0042552750835,20.41533085323,20.6987201518968,22.753775914315 +"Q9VIS4",14.1096300949849,13.9305751630912,14.347006437303,14.1763740728315,14.0396225879853,14.1134992997482,14.2816771417189,14.1418903925311,14.4946549143385,14.0720435523865,14.0592982564976,14.2715872788686,14.0778480985047,14.0326637056292,13.9848996443688,14.2578286515981,13.7410875055822,14.1193655947077 +"Q9VIT0",14.86618912106,15.054975061995,19.0951080624382,15.0452434674463,15.4254479081248,19.2475997508319,14.9243698982367,15.1621844412113,19.1146790904058,14.9696549003104,15.2684997374151,19.2106268450213,14.8978773844061,15.1853558072772,19.2857640895706,14.8803965903208,15.3226248741702,19.0518907575071 +"Q9VIU3",13.4984206362494,10.6135428040276,13.7864681026705,13.2528415640635,9.23709514251678,13.691468732747,13.1258171651035,10.5222686259999,13.239807330525,13.5732260157096,11.1611146758631,14.0427478565936,13.3222520585558,11.1760730883425,13.2305200152607,13.6306353292957,10.0406317157155,13.722316684159 +"Q9VIV6",8.20846013092993,16.8113978052663,17.1809935061964,9.79911248160025,17.1299177386294,17.6841612590896,9.20614962264617,17.4758389140557,17.6094629213987,10.5827134026649,17.5396344219569,17.9470393274351,9.91118588612235,17.3843281431504,17.7705270421186,10.3126444286892,17.4004802030702,17.9021566102388 +"Q9VIW6",14.396963807562,14.9291740752734,15.5003966825612,14.1504045259795,14.8481178218848,15.679905188529,14.2894183386775,15.1512200645048,15.601787791883,14.3270038150779,14.9883880977941,15.8016134624032,14.139254936278,15.1517723842189,15.7326342690435,14.9626803512882,14.8027537091215,15.8765410814989 +"Q9VIX1",16.1259473487717,17.7438012863588,19.1334481057544,16.0022389069183,17.5689133393688,18.6402049969839,15.6058424917298,17.7126888727522,18.6522215125643,15.537980554531,17.2434534709521,18.1272870705795,14.650233830679,17.4872504382397,18.478711797023,15.2151004123562,17.4051585714682,18.6733176011301 +"Q9VJ19",18.138528751816,19.278597668273,20.0385259746144,17.9712272045162,19.2271893447099,19.912176765605,17.8760382551478,19.376536496565,20.0000398461364,18.1517811519346,19.3738920026261,20.0081316040834,18.0572028917558,19.2458701003767,20.1242062451003,18.076366159623,19.3994689310457,20.0771573338657 +"Q9VJ22",11.5606919825043,12.9551446788606,14.1063160423236,10.5418748446555,13.3890471900411,14.4038381163661,11.9556450444892,12.9761603794272,14.3948375912309,12.2035349633631,13.8335935956815,15.038086252974,10.388207273052,13.2593160491105,14.6332826924288,11.5511384355859,13.985845184168,15.0047923720452 +"Q9VJ25",13.7208029947511,16.4589527715967,16.9160494710559,13.2979225259183,16.1996097999226,17.0458216352766,13.9997032120309,16.1784067911833,16.9949709073866,14.02909852851,16.599295118514,16.8177061804057,14.1872478478348,16.0334892342704,16.8440232093048,14.0140660013911,16.5216642960124,16.8624856888418 +"Q9VJ28",17.7706526592392,18.6741242145663,19.9269131846195,18.1678824296816,18.8709859596891,19.9796738339683,18.1336241907429,18.9022676030317,20.1395631601388,18.0808403608797,18.886500388938,20.0403324682484,17.9800915782974,18.9554256950471,19.9868252966088,18.2084990571308,18.8370085543234,20.0340084948068 +"Q9VJ31",15.6487392560485,17.4247855916959,18.6497039702874,15.2679800649165,17.3719864321708,18.6309991502703,15.5659571427916,17.5414771477571,18.5865577230519,15.4427189352147,17.4142142864545,18.6045789538005,15.7125173496794,17.5739516216375,18.7919509928316,15.6088898829962,17.7069630476861,18.6781374774645 +"Q9VJ43",19.311002889916,19.9920318275874,20.767527659068,19.503293871588,20.2242475248457,20.9962330211847,19.543861163791,20.1692798049034,20.8933098818163,19.6190270477057,20.4466400232132,21.2952000379592,19.6523710580239,20.245746168195,20.9272691371355,19.5437961662497,20.4590755315726,21.0305685695538 +"Q9VJ58",15.6724953879759,17.4985751103712,17.9316253371385,15.7686556067971,17.7358399366466,18.0001856352006,15.7499174241752,17.8184377435509,18.1605017339373,15.9237485232738,17.8024678605434,18.2384521977656,15.5564262918595,17.7555336260713,18.2303964272955,15.9048261727129,17.7366393651365,18.131841732024 +"Q9VJ60",15.1651354009632,16.7384201973671,17.6258412637703,15.5149887002637,16.831550417259,17.4152582413399,15.3327589275103,16.7823614799352,17.4864326509612,15.2328457574605,16.8530326753732,17.3223872771012,15.3900019331177,17.0064881047705,17.3832736637114,15.1350437339826,16.8034248031022,17.3115464520846 +"Q9VJ68",17.4990705423015,17.6103366702769,18.7781468530612,17.4044102517509,17.715514463767,18.8822076975897,17.3841562521767,17.4264515552902,18.5126755566784,17.6035994951709,17.4581946068579,18.8242809679724,17.4066914441542,17.1243650924262,18.3108030336996,17.4098182646504,17.0759558202967,18.4555239784746 +"Q9VJ80",15.3745480837951,16.0180343257948,17.4778347268196,15.6640307408557,16.2076005849503,17.3230343256964,15.7846839391211,16.314782432048,17.3420680679715,15.7795924711773,16.5101359992749,17.5167332566338,15.6542300524339,16.5601568893135,17.3859269662475,15.6629627759269,16.6168304403293,17.4298372127082 +"Q9VJ86",15.4282295111169,15.9178219204348,17.7578147351851,15.4504220852941,15.8552672994388,17.6270025757299,15.7793461062574,16.5433136984511,18.2122805685828,15.4736529278536,15.9193239033269,17.7970821195972,15.8627301760587,16.6758868397307,18.0702520582428,15.6023441886495,15.9680681492119,17.6238807483071 +"Q9VJC0",15.3552478748944,16.3602189912486,18.0728735671063,15.3689445905446,16.3220389359752,17.961187500388,15.3615014897257,16.2092226635557,17.9911195349108,15.3812959844858,16.2650843990174,17.8767105300931,15.4398170639241,16.4151364749127,17.9751187548932,15.496122561032,16.3694881931375,17.8474332077971 +"Q9VJC7",17.5213533786901,18.2375694454019,20.1566393743726,17.6162493559023,18.2017409193694,20.3066751849438,17.3114946318072,17.9807579176293,20.1258303774657,17.4643428820222,18.3118222157168,20.313784780808,17.2112734271357,17.7886202470719,20.3025479890052,17.2777749314964,18.3926475363838,20.3063995917812 +"Q9VJD0",15.0415031396457,16.1269077454293,16.8297871387681,15.1192807240468,16.0167982465596,16.6898858362167,15.0877010121273,16.1170772857147,16.8144364517497,15.4897938317593,16.473202836718,17.1095965316299,15.3185684126058,16.1698613359466,16.9506139118207,15.3707739578804,16.5180343017446,17.0353196560861 +"Q9VJD1",17.2847092177255,18.1176755946775,20.200133203026,17.4610551877162,18.1959017474145,20.2578648625995,17.2260594846793,18.122679418236,20.1428087194953,17.2626994121844,18.3764717580669,20.1687642565942,17.0544844032826,18.168184873346,19.9848017374288,17.3527001051019,18.3162650748412,20.0409426166288 +"Q9VJD4",19.9006152156566,20.5302047532016,22.0179997988637,19.9523979638169,20.6460757009403,22.0285148661446,19.8048149300634,20.3771440578925,21.9532724163049,19.7559952475468,20.5109658792087,21.9538775371941,19.6257293410016,20.4021011336881,21.7250125785128,19.9062303321924,20.5779407488776,21.9333503818464 +"Q9VJE3",14.8021953609462,15.3172605158662,16.2324058701652,15.0508285684609,15.3456469089053,16.4198473547861,14.6227962420811,14.8528760540082,15.867917434371,14.8399874381198,15.2586318904587,16.3551925604722,14.6294770563037,14.6956349867936,15.7761171477385,14.9403087613833,14.8934471420108,15.8290218724424 +"Q9VJG0",11.0850033397421,12.8464640500517,16.5819602145661,11.1362405428364,12.2644996881479,16.3237801357941,9.28760848186061,12.7059565314053,16.7253887701968,11.6466618123001,12.3940680941604,16.5713832182479,8.73239264560775,13.3206984309821,16.5584741554346,10.3349612517505,11.2388358791451,16.2459237919471 +"Q9VJH8",13.8697767369411,15.5680391263525,13.3087245697813,13.7497922687196,15.4047017311234,13.3816427613648,14.4721771021344,15.5538674932489,13.1861467870225,14.1507998305962,15.4046900658751,13.5019647122204,14.6815016298738,15.5239381546355,13.810828886783,14.102420312535,15.4965980091035,13.3496132151046 +"Q9VJI5",15.4773240266628,17.2624253720085,19.0202596487542,15.4931579967014,17.5486826158036,19.2596777722343,15.8691420938658,17.7460547077037,19.1115230538388,16.1748013234596,18.0324473820929,19.3320627274423,15.7079472529737,17.6035214719544,19.0567279701311,16.0746378125725,17.9186162408432,19.2077764123817 +"Q9VJI7",17.7959931267096,16.6903741906515,17.2935756293721,17.94423618989,16.6768531869455,17.6235933564478,17.7771563400426,16.621226771685,17.378632177149,18.0185404818594,16.7543479905635,17.7056042178826,17.7163903284701,16.3810986727961,17.4219821762704,18.2780405455395,16.9190436606671,17.5449593322054 +"Q9VJI9",17.5363978211842,16.9224169375266,19.0912466718629,17.400260138755,16.94468637031,19.1543353536119,16.7704217930752,16.835420926925,18.8769773296185,17.0062490261315,16.775430078281,18.9804831816927,16.2483139864338,16.8684399492185,18.8017846723667,17.0282522538427,16.8868229663402,18.7372062037624 +"Q9VJJ0",18.7017992767567,19.7039208983053,20.6411229997363,18.8079190005541,19.889488506689,20.6793970552041,18.6299170652926,19.9290077649612,20.5189197138198,18.9734146445257,19.9398454219184,20.7545586496417,18.6309433818145,19.8332101179142,20.5436666133663,18.7186018755751,19.7430594278806,20.6200892030556 +"Q9VJJ1",13.2829091534738,13.9822941407281,14.8936883441408,13.3598581345491,14.2921044644861,14.6888852287724,13.196696781735,14.2144942968569,15.1776596616217,13.374129255924,14.113360042303,14.8986732579626,13.5655118409424,13.7607049991994,14.6481902826675,13.3350964742053,13.6982857360963,14.7850252356783 +"Q9VJN0",16.3745133875693,17.9381490437204,19.2949393870675,16.0989864579805,17.6241914943509,18.7208015491566,16.292361618237,17.8355821804757,18.8940259825806,15.6081104717888,17.7414584081337,18.3463774490959,16.1777311169861,17.8244920347287,18.4564919096792,16.2026311526315,17.6038421914103,18.5632685865755 +"Q9VJQ3",19.2988649977811,20.0769114607181,21.3605603667545,19.3166583890286,20.2806094291439,21.4807439210029,19.5023783919744,20.4434401625102,21.5105939773619,19.5572939978492,20.5117314282167,21.7312524825443,19.6323624424551,20.5522669854306,21.7749962361036,19.9423893730177,20.6419979867547,21.9715975287165 +"Q9VJQ5",11.5755563544425,15.0024713435847,15.9402125194227,12.1872662275865,15.1245399353183,16.2813154959395,11.9953111652552,15.2141386008369,15.9207498655046,12.2701359437312,15.0803121954944,16.2751151653569,11.2866953635613,14.8411514018703,15.6832511277719,12.2685156991387,15.0818037374994,15.8410807878454 +"Q9VJQ6",15.1353883345277,13.4067182255617,14.1692521766103,15.1425354156562,13.7970828199636,14.1777461184227,15.3234469391693,13.3310266894223,14.1138286305048,15.2885521999434,13.6446501839727,14.6462842752657,15.389932475826,13.7515073019469,14.3867534947203,16.0480600911045,14.0915416039362,14.4480678759464 +"Q9VJU8",14.7714683091213,15.8944493813439,16.2345622660399,14.7593313285441,15.8655600858234,16.212948931736,14.8232824441681,15.8351773354789,15.9236783696578,14.8690743647376,15.9697662900297,16.0960271325514,14.6884913516864,15.839930203094,16.2070346858144,15.1735131045304,16.1781109345183,16.0129481038406 +"Q9VJZ1",13.3721718119363,15.4987597660989,16.9269997163779,13.5026980227445,15.7646969075686,16.9498444375597,13.7581509407025,15.6276426135374,16.8377308242889,14.0975064731583,15.6893079810579,16.9884058963797,13.695193964714,15.5609457863224,16.9031421936891,14.2471236852485,15.823425497525,17.0676920722456 +"Q9VJZ4",20.9299804670488,21.6915541046469,21.9535312103327,20.7483995743507,21.5866930059108,21.850431689514,20.6893462410353,21.5075770215827,21.7598127853285,20.4342132118175,21.3917464169239,21.6547591871717,20.6794329814589,21.5002387644374,21.822779611714,20.4641703770611,21.2476846398472,21.5486420155422 +"Q9VJZ5",15.7627367278829,17.1985402236844,18.3244310304855,15.8044299660912,17.3461333649135,18.328857939647,15.6036913435254,17.0584449744597,17.9459495891143,15.5841783166283,17.1794462869337,18.1044377696509,15.2877676020349,17.0924648826435,17.9506990926246,15.3929799158056,17.0722577929121,17.904899867407 +"Q9VJZ6",19.2453257823097,19.3584805826273,21.1925297433164,19.0045741862555,19.3624829211301,20.960961070729,18.8720498233963,19.3622855282342,21.0477123273108,18.9836435685347,19.104774894131,20.7580439812621,18.8709247918849,19.4166912078649,20.8960907816455,18.7609514096762,18.8111236638042,20.5890523628825 +"Q9VK00",16.3230044494198,18.5352931870679,19.0782446324897,15.6842958262533,17.4538140449269,17.9758733913537,16.3327736088628,18.4895746846225,18.9066691044233,15.9765772229491,18.0626745789667,18.5398464929182,16.3997680424683,18.6589730856195,19.0905481186414,16.9013323726296,18.7500894998578,19.3270771496663 +"Q9VK11",17.9549557148606,18.637945336069,19.729963439316,17.7100371672393,18.7752848172375,19.4858157660681,17.7736171287788,18.7825603009056,19.5384217834667,17.8842885383644,18.7074115196456,19.4020956051286,17.846983130938,18.9936601836736,19.819834323519,17.7437965684218,19.0289586495953,19.6589554731275 +"Q9VK12",21.17433765743,22.4528206285148,23.8530920634412,21.2305549359904,22.4149778994197,23.6584434206805,21.070115657992,22.2590835202062,23.5835795353387,20.9310145187912,22.1159795106982,23.5624718166465,21.1597147241341,22.3316347010996,23.5920342947667,20.8674444941613,22.0315389605937,23.2577459757524 +"Q9VK18",13.2265211332622,14.057208532517,16.1809051855312,13.7377822274864,14.1521209858421,16.4036441004168,13.3562453862428,14.1519537284426,16.1317551610206,13.5923468901773,14.2484789757332,16.3146144653224,13.2139676619833,14.1358974986819,15.9620842481836,13.123564904531,14.268192967813,16.1601218075536 +"Q9VK39",17.0374586457024,18.593863282657,19.5514239917431,17.0330555893784,18.5798492448781,19.3082369167229,16.7978331437733,18.2074202091462,19.253321871905,16.8625179547128,18.2457400994893,19.0165805293609,16.5716519903778,18.2177824638259,18.988560804016,16.6640686268981,18.4133657847512,19.0327846367836 +"Q9VK58",10.8359886729487,12.6171202917648,17.5118093035751,9.01947005721517,12.3242273555305,17.2842803269662,10.1340288129572,12.8338913077013,17.0708290137791,11.8134812300201,12.5588695243605,16.6127036864106,9.7439538967261,12.1239368442352,16.5425998287809,9.33278448731974,10.9752147715823,17.1223734373458 +"Q9VK59",18.203953283925,18.4466898024638,19.2878972687234,18.3764088886741,18.6858413751907,19.3465694679373,18.3572342567613,18.6257433340624,19.3469257395754,18.2321326794798,18.6820387564992,19.4492812437705,18.3811217321587,18.5940258118539,19.3114297680214,18.2428412520314,18.8197385873386,19.355313296769 +"Q9VK60",20.9867256503332,21.3316129646185,22.0734748453489,20.9363622093818,21.2688575256262,22.0436376533684,20.799525645954,21.2467124351623,21.9060170961916,20.7083931918396,21.1806106216681,21.877834700145,20.7427080825629,21.1710432540793,21.8732350572081,20.782445915169,21.34748778721,21.7151528754515 +"Q9VK69",19.5070690598902,19.6466526774109,21.7702425764612,19.4625877073281,19.5468680804355,21.7244101998342,19.5273570154674,19.516188103098,21.7213722882604,19.5408725689071,19.6542932847108,21.8919283143984,19.5137042926997,19.3535366247817,21.6154087609591,19.5435794061139,19.6247545599713,21.7265833345101 +"Q9VK99",19.4424919410427,19.557710773661,20.4263211254869,19.829534216993,19.6445530130506,20.7443123394716,19.6319873347339,19.5230775057015,20.6800364766879,19.9455658078544,19.8390215392649,21.0611724415416,19.1029946787249,19.5125652139848,20.7034194674829,19.4983676758791,19.9226947894187,20.7516720575133 +"Q9VKA1",12.1789039177419,16.7914929150536,15.4219426984437,9.92612532639798,16.8077649401822,15.4349179455113,11.7898428024612,16.7959946660623,15.1178295782807,11.976782489259,16.8556379176355,15.9222347695438,11.5235109699782,16.628885364157,15.4668116775864,11.0383065442844,16.5874145963246,15.5589968369423 +"Q9VKC7",13.3877694033469,13.9668660908075,14.0330799954311,12.7187418659445,13.7351568175733,13.6436125351649,13.3250647212016,13.8296150532678,14.174756985541,13.3945407406274,14.238302204638,14.4152029490246,13.6177639380151,13.9769218425666,14.1541926040026,13.2353303924355,13.6259375559495,14.5121263970823 +"Q9VKC8",17.3130310284665,17.7586180359487,17.8403498647846,17.1279607607537,17.5569734848122,17.8360010349482,17.4176307976189,17.8910504414992,17.9118975670402,17.2266825055982,17.812615273779,18.0624071434823,17.5013793735396,18.0088001830303,18.3287961857206,17.61499996275,18.3332705408943,18.3317560845647 +"Q9VKD3",17.5215442902054,18.0149367251579,19.5454047868043,17.6040373425039,18.1636015184372,19.6986190466413,17.8837895892962,18.5989851280543,19.9206426626995,17.9732352434162,18.5359392035389,19.9617105821495,17.8676146238187,18.7413853800254,20.073101000315,18.1285267790747,18.6354912824681,20.1015664802429 +"Q9VKE2",23.3796099068032,23.8051233595858,25.0515278694278,23.8013465104075,24.0952832817162,25.2475616655409,23.435651566286,23.6690866492487,25.0904515751438,23.4818482551551,23.8999111668844,25.2567784168806,23.4203374486818,23.7329730277528,24.8829584011444,22.9588297316168,23.478224892028,24.6973839526652 +"Q9VKF0",15.4586469542225,15.3014438696128,16.8077311295231,15.6434715497593,15.6313753988534,16.7918089371585,15.4988318542632,15.1217842718455,16.4475089313709,15.6452467938546,15.5480538976278,16.6500730538123,15.5484992743184,15.4004641846498,16.8393560637495,15.9509017815883,15.570483022842,16.6788437427996 +"Q9VKG4",15.2340278349768,15.3888018547331,17.5222557065874,15.3378483725317,15.4480104049606,17.5123473780996,14.9449052209938,15.1706069036317,17.1244846051394,15.189453070166,15.1216798453299,17.0548794478184,15.0150718421352,15.2636161174619,17.1619759825625,15.3413073438489,15.2912398442295,17.0614308938199 +"Q9VKI8",21.5798205438536,22.4073202274232,23.2529271513351,21.5381421547668,22.5012795703993,23.2713282803989,21.5027230805823,22.4357812939514,23.1740852584703,21.449814482447,22.3720632163875,23.2126078641561,21.3400172225384,22.4246968499081,23.1726918872065,21.3127149267385,22.3764248819349,23.0758775976674 +"Q9VKJ4",12.7279224792291,16.2500578191298,16.3580274577856,12.7610280017242,16.2200244509097,16.2400547010516,12.8136597987823,16.4655177822548,16.2438615952217,12.7552587013162,16.350331586463,16.1093489472981,13.136434406547,16.3578367708781,16.1052540959951,12.6982228353196,16.2944831663129,16.2695684343532 +"Q9VKK1",13.6176001187881,15.1342891222492,14.8933880069182,13.4015696331226,15.0588441706957,14.9937375369402,13.3038591417071,14.889583117624,14.9124479163444,13.7976298485274,15.1026135573807,14.9861209190348,13.585960520171,15.1488767443908,14.834331087318,13.3410614635877,15.6160238360445,14.912498466172 +"Q9VKM3",20.8473322065399,21.4754439632438,23.3795071484234,20.6324763842648,21.5164565525446,23.3221866678399,20.8058127730925,21.3718986080348,23.0857196452561,20.7103406560158,21.4094837632159,23.2412795346906,20.8568808823161,21.553707448403,23.2546671956965,20.4503101171156,21.2057257593886,23.0053315454715 +"Q9VKQ2",16.726077720632,13.5181057405376,17.6123426176291,17.02938402978,13.9315087087679,17.5219574328672,16.6039896982539,13.4558681381609,17.5420253363036,16.7595149843221,13.6510129616664,17.6507429283499,16.5291527337692,13.5512059661392,17.2179715263819,17.0277169459664,13.5966279538785,17.5061461915631 +"Q9VKR0",10.1822036073842,14.7147215065647,14.7862237988975,10.0251421152403,15.0122054683282,14.4808158002803,12.1674837798192,15.0132172964991,14.6106952133005,8.87951403103679,15.1316303385965,14.6313914330452,9.65551584661988,15.1789552390941,14.5460278608407,10.4567448245024,15.0960546542907,14.7268508885507 +"Q9VKR4",18.4257107749411,18.7507244365557,19.3065862846369,18.7687622652731,19.2784527400638,19.9738907547902,18.5232113211112,18.954927370806,19.6168881523457,18.9538425779199,19.3935438477046,20.2503301373876,18.6497016812061,19.1460011136449,19.7906692266702,18.8376449172539,19.1291825109979,19.9305008807723 +"Q9VKU3",14.0599563471009,14.1085513224472,17.8474613837705,14.231673848504,14.1690070455528,17.8741923682739,14.3896433861361,14.4368537139732,17.8493182312662,14.4474181528115,14.4949201693489,18.1990092900607,14.5151901951002,14.1456373538059,17.8617959408882,14.4902296789937,14.6010317136931,17.988244950045 +"Q9VKU5",11.2904955489563,14.337722587583,15.9751004668043,11.4556253932603,14.4466869038271,15.9590130276839,11.6836824583204,13.6075096506844,15.2622954757376,11.1488174126964,14.3413019649447,15.9185551839449,11.1046080615112,13.4218010571907,15.2672913596638,11.1908217396259,13.4135938029781,15.6810212741419 +"Q9VKV2",14.0888871809413,14.9831654721159,15.9143831650901,13.7765288546602,14.9212646588645,15.5101596783624,14.044806878596,15.12517983583,15.684291492809,14.3255392486109,14.9632230669428,16.3028950517815,14.0227331779231,15.0789451837773,15.6477908468336,14.2158341054563,15.0115755418857,15.7501508817004 +"Q9VKV9",13.8975776833444,15.8305686311652,16.7167998861894,13.8330135730089,16.2629599535109,16.6930030984489,13.9654883961727,16.0794656915953,16.7677875149729,14.1299547875093,16.1473308412695,16.6916976305136,13.9116051871365,16.1543340852254,16.8521873838216,14.3231112813724,16.036049752245,16.7844437986047 +"Q9VKW5",15.1853917739891,17.2327960269844,18.9375022821009,14.8957092135902,16.850218902707,18.4856787169996,15.3814178789627,17.2092863709936,18.5927018688891,15.2275776207058,17.0520813934399,18.7066724605434,15.6909439744487,17.4677999472777,18.8979409297732,15.2896734464534,17.0662377103453,18.2915542758293 +"Q9VKX2",22.6535727314034,22.8433011673181,24.0907901903785,22.5999366478563,22.8668771110868,23.9195164371002,22.5116673191258,22.8933687603804,24.0059900371744,22.3977480028894,22.7540821878876,23.8995173584139,22.484812260799,22.9790481559621,23.9691115624111,22.3878946360666,22.7967348146171,23.8909854370153 +"Q9VKY3",17.7726373708947,17.9435366334478,20.0994877229189,17.8588801984465,18.1780184550643,20.2508282145519,17.967674343955,18.1341897202572,20.1949634614612,17.8853183185707,18.2501944964415,20.3445803379174,18.1354412114763,18.2335878253114,20.2488998894265,17.886901746782,18.184038822389,20.199762379129 +"Q9VKZ8",17.4081246460614,18.896073260222,19.7380312072547,17.2768468851492,18.9087931270353,19.8418239512989,17.2896979004794,18.8377451426895,19.5229001316999,17.4873893417205,18.8875254827984,19.9510515207589,17.4410185493647,18.9792624050358,19.8482714641586,17.8111150401411,19.1221915308516,19.9809659693445 +"Q9VL00",14.4603803608495,15.6161574769402,17.9073369212925,14.7320437101994,15.5688613811093,18.034546744072,14.3427897681196,15.4378722868247,17.6680202566739,14.4092255595677,16.147552447,18.0092304992261,14.1842863091445,15.328166499098,17.7954561971224,14.9993469868916,15.3337570261629,17.8073240075855 +"Q9VL01",19.35946174207,20.916548122874,21.6694867310488,19.3063056070168,21.0045749161421,21.5948346334439,19.153003124787,20.8035236997628,21.4489342658399,19.0302797766824,20.9005310801731,21.2706358524009,18.7119544323552,20.6995623512212,21.2366192245359,19.1390395238695,20.7446022340641,21.4369958823983 +"Q9VL10",14.4891015651651,16.9175827642839,18.4686532409988,14.4134370189011,17.0664403503836,18.2276889973426,14.8557806361732,17.2683628060295,18.645800297478,14.6242546690614,17.2883498992064,18.3748084022617,14.8725339488507,17.3669481390652,18.6055128939072,14.5018412316635,17.1380715241014,18.1192027035618 +"Q9VL16",20.0097452737814,20.5992951727005,21.7505584163919,19.9616354492564,20.6669171093369,21.9583399469949,19.9058670888256,20.4612482204403,21.5807427641703,20.0347800078473,20.5751302301015,21.8640105905116,19.8797658874088,20.3476809904825,21.6041437695476,20.0335479116277,20.465241793984,21.638087511323 +"Q9VL18",19.9385784301254,20.7345276938613,22.1211851517799,19.8375475944665,20.5327525190968,21.9097699613584,20.0279307681206,20.6159800385199,22.1223803964572,19.8650412449393,20.7036685799201,22.0125476513884,20.07937684721,20.5955447926936,22.0370650844669,19.893207858139,20.6845825745577,21.8999602593514 +"Q9VL66",13.9664073180089,16.5056102672003,16.5785221189409,14.010808423208,16.6445881308764,16.6183669355011,14.1533478191865,16.5334604753622,16.3877217100377,13.9801583560545,16.5956920629738,16.6525951980613,13.984117749239,16.7615549165842,16.8119074487795,13.9636166065918,16.6692830404683,16.6298315538559 +"Q9VL68",20.1280795210823,20.9413250117674,21.2048555468904,20.228828396217,21.1162970605846,21.205587704533,20.118610096904,20.9491038353857,21.2288135499733,20.2084481244245,21.0716596329885,21.2482080256307,20.1129588826829,21.1092131887617,21.2644227078499,20.0897079850244,20.9901978848061,21.1665314401607 +"Q9VL69",15.7433223574914,16.2175148205644,16.2784296253685,15.3449083731523,15.7893333222562,16.2346573752494,15.4786042031129,15.9576314914335,16.5328083491927,15.3508083013896,16.1241973553269,16.6676581822537,15.7935921005891,15.9504964204973,16.7562510919502,15.6495851846666,16.0476167806675,16.8300317163592 +"Q9VL70",22.4073467223149,23.0516504558792,24.4971768637587,22.8276249829913,23.4077544265904,24.8111283428182,22.4695382906634,23.1277143908217,24.5922632433806,22.6759387021928,23.4597812519672,24.8773123662661,22.5425629221511,23.3020968723503,24.7029867502954,22.6487944531228,23.3223930167422,24.7254046765284 +"Q9VL89",16.0792981069617,17.3527375110276,17.1491667609914,16.0249753604179,17.3486691724154,17.1716483236128,16.0325317161624,17.4112559057302,17.1220471217242,16.0839650569631,17.531605710832,17.156109980337,16.0938382085721,17.4225525051765,17.135414479749,16.1348972600869,17.466247510312,17.1001889088059 +"Q9VL93",15.6788633044997,15.0755182417023,15.2769273249106,15.9583574762986,14.9591199118791,15.1061112559605,15.9172725750435,14.7691352625039,15.4813012985262,16.0091456554611,14.9914908492604,15.3530582100822,15.9777539050188,14.9832268750685,15.1132867614359,15.979751542805,14.8261687297247,15.0154267894404 +"Q9VLB1",15.9721457595063,16.7377125187555,17.3054702564952,15.6887856527511,16.7259017897616,17.1115104187899,15.8768543576696,17.04917707495,17.4223976739935,15.7111767243362,17.1146771489433,17.5672289296444,15.8903139116057,17.1550078859203,17.3017489325898,16.2512050385013,17.3212301540047,17.6432242517275 +"Q9VLB7",19.9273986476833,20.6985113212754,21.3375236954723,19.8129105037295,20.7876069182941,21.4673750164989,20.3162413042041,21.2791096481032,21.9351213860331,20.2403137845877,21.1536241710833,21.8792812733376,20.4073342081444,21.6192087163388,22.2548632482705,20.6755405224133,21.6383756830804,22.3235460188721 +"Q9VLC5",20.4870862698723,21.1679257347629,22.4898614573994,20.4990700667834,21.2909162949881,22.5760641768369,21.0492124390204,21.8402649836806,23.0532049336572,20.9170456450545,21.7714125493668,23.0783851336037,21.138246945194,22.064984054325,23.4205597629067,21.058270387998,21.8125719051766,23.2253384913204 +"Q9VLG9",14.0806187700648,16.0535265750155,16.7807680967949,14.3886591501523,16.2416577790139,16.988032035038,14.0830452971124,15.9313313513821,16.7906074762411,14.2192628324694,16.559691571561,17.1148903443561,14.0759387235433,16.2284180382541,16.9832253994916,14.1749946542329,16.0886812900951,16.756593667262 +"Q9VLM8",16.6870100458132,16.668872310731,17.6934157528317,16.2242398852031,16.5198992360305,17.0766982534878,16.8303091590799,16.7680922389479,17.7729078524047,16.3487921253007,16.4660296342881,17.243425544288,16.7464448857058,16.6745692318772,17.7079633096247,16.2769542309571,16.4569779226536,17.000031449521 +"Q9VLM9",15.4564390735051,19.5336706863726,20.0867936860708,15.4743156437487,19.6288096512107,20.2094624307446,15.5762383435645,19.4092738773405,19.8935964642892,15.7534727558022,19.5789621077541,20.330336890569,15.6903983937261,19.4103503554587,20.0225195272453,15.6451869775826,19.4896807228621,20.1376905405315 +"Q9VLP0",14.9321055521127,16.4934362053032,17.5501141676248,15.3028781511421,16.5333482825863,17.4368899570072,14.754756740751,16.189628980964,17.1068762461541,14.6813694517153,16.3136444587841,17.2312496951439,14.816087952878,16.0421707444292,17.0443456775412,14.5151390820843,16.1607876571735,17.0387490043177 +"Q9VLP1",17.3401965061297,18.400407974417,19.497752789425,17.4867704869246,18.4491024700769,19.5019952149063,17.2433540078443,18.3015368721311,19.4666098835683,17.6437739855803,18.6168370356101,19.5979480241998,16.5481951878512,18.6286614466641,19.4638389405656,17.3415830515868,18.6845712097401,19.3720475906447 +"Q9VLP2",17.8191190520542,19.7060379288103,20.5621370698374,18.0603111395572,19.7935031957452,20.6933042578328,17.571270853293,19.5165835173575,20.3886095475767,17.8633208741912,19.7009670207822,20.7336949445342,17.1657292892966,19.7010997378692,20.612138195645,17.4313761541387,20.0054318976536,20.6974841647915 +"Q9VLP3",17.2784885696641,17.4923363684874,17.9629283903887,17.4437436124727,17.6592161910895,17.9041942028951,17.1695390486344,17.224676245894,17.7652881307091,17.2601147751177,17.5215506334185,17.688704098613,16.7756507569394,17.4769060122362,17.6382731143262,17.3164543101572,17.745732603488,17.7656194108578 +"Q9VLR3",14.6695022363532,17.2980774022212,18.4329160381552,14.7899155158756,17.2385335072721,18.5637296726497,14.7493658453989,17.3379316585889,18.3259975016253,14.5502572642478,17.0983709049157,18.2139264244609,14.642984579476,17.1644401544071,18.2578299507898,15.0043143263965,17.3404275708318,17.97118570827 +"Q9VLR5",17.1268350987354,16.5199210688189,17.8665986529498,17.0731454256043,16.3536074829573,18.0318372252948,16.6764429747255,15.9723165151624,17.7431939574757,16.5525125477247,15.8975784973615,17.7196578422086,16.8791099706646,15.9008291958195,18.0503232504523,16.2286508332025,15.6531160517131,17.4698961866112 +"Q9VLS4",20.2789271375177,19.635902133101,22.2599374715018,20.2674090475753,19.6538119584917,22.0726413451198,19.9052265078798,19.5384844520363,22.1403209982782,19.9944219201875,19.6058598331772,21.9994111753771,19.7390287498325,19.7298812114926,21.8621220372176,20.0927786936364,19.764747141066,21.9976607571845 +"Q9VLS5",14.8201595105617,15.096248009186,14.1055594512457,14.6343893492921,15.2475327404225,14.1695389229858,14.7040668157144,15.2714763803486,13.8697847195687,14.7308883772462,15.3461418489269,14.1410405365701,14.6529143866026,14.9500938878585,13.683056012845,14.6913301945136,15.3322165162486,13.5779955471798 +"Q9VLS9",17.9261898686873,19.4097408404173,20.1192916354626,17.8151591608456,19.3711243025636,20.0592895924048,17.6979307277565,19.2820203105538,19.87794713939,17.6276136866303,19.3135354304061,20.0026226098104,17.5237609537704,19.3484260792239,19.9988836310146,17.2285869556469,19.1581968143526,19.6474861052531 +"Q9VLT3",18.2586350232821,19.4048737455813,20.1962643806926,18.2720658507774,19.5194054251737,20.3049118738274,18.3764491121031,19.6711853825254,20.2315295744794,18.3344514357226,19.6031200014054,20.3270531003956,18.404708092386,19.6901343221053,20.3283531236644,18.5462053891972,19.7105138190732,20.3744392213009 +"Q9VLT7",17.2204192031579,18.2174242394941,19.1444565813409,17.2053781149301,17.8132516752723,18.7004034399908,17.1689613940144,17.9595744757753,18.8436025291394,17.313775120025,17.9614240179411,19.2058225761025,17.2040987376902,17.6993628913508,18.8583000670446,17.5707818582169,18.095337663222,18.9683095862702 +"Q9VLT8",13.1457647968284,14.1796625694889,14.7991955031881,13.0541692825361,14.2674414658912,14.6322047352635,12.9098407881864,13.8528767661833,14.5938439925338,13.2130829766625,14.2653529516599,14.6227087260729,12.758526580534,14.1211519738597,14.3821467501906,13.1644173097129,14.653547584536,14.4994657875186 +"Q9VLU4",15.5227723289067,17.7756454536179,19.0476953269121,14.9728984443674,17.6631948047115,18.5339475764753,15.3770119898848,17.8255377302017,18.945845791859,14.9894577285068,17.440973223686,18.4527477204295,15.2776304865527,17.7086041122135,18.8609066293344,14.9620441316674,17.3272537210014,18.3206837039402 +"Q9VLV5",16.9072167257401,17.3292895470009,18.2186393560607,16.8081566761498,17.3425251317645,18.4094617714967,16.8942084113876,17.3266540999311,18.1963283637637,16.8009761017079,17.4386085688906,18.3755875106007,16.8305297576462,17.3208735542118,18.3017051077834,16.6566561351914,17.3095536927081,18.2083675879912 +"Q9VLW8",13.8475507270744,13.3774065671828,16.093094704276,13.8222540083537,12.6730289806682,15.8250300912494,13.8446383405507,13.0865286477202,15.7786579875211,13.9918349813266,12.8575364428526,15.6130639188308,13.8352238807412,12.7592812183362,15.7608779748944,13.9459086344751,12.0585640757494,15.6056936886048 +"Q9VLY7",13.2950278392377,15.8463069126098,16.4524674548818,13.402654447841,15.7967609332164,16.5542832439686,13.633678385143,16.0052407836268,16.7644403482126,13.5275641390866,16.0962520510273,16.8432173753395,13.7724328640546,16.0224068679494,16.996929306215,14.0492063573683,16.1336495497579,16.9117564144511 +"Q9VM07",14.8217385333015,16.4526430591209,18.5036602692809,15.3757997191521,16.7884996193322,18.622007599123,15.5910427174613,17.0703460510586,19.0916238728979,15.6854203516528,17.1248999500242,18.9746021425902,15.3046104625603,16.9238520521923,18.7229988966209,15.3729670114443,16.8579944941748,18.7237998997103 +"Q9VM10",16.1811057424848,16.7221237723822,17.9922834783146,15.9554608853907,16.5949169058341,17.7696503295335,16.1922615549576,16.7296755847647,17.8270910076225,16.2918379300111,16.7776798218406,18.052086176225,16.5510146692366,17.1985869670124,18.1674823635996,16.6514612322658,17.279074550834,18.3684001756344 +"Q9VM11",15.7173603545949,18.2440149077197,18.6376907501918,16.0513737619147,18.6233666814682,18.9649690473939,15.9669365696279,18.5322359173581,18.7078398765852,16.4308086313388,18.6094465495904,19.056299857576,16.0397214736636,18.5243340337423,19.0321675442496,15.9907299545347,18.3899611288056,18.8192109525228 +"Q9VM12",17.7473363702562,19.1694547688558,19.4395818561821,17.7067771188858,19.2334228282027,19.4706001446909,18.0594707436747,19.521228940397,19.7404762867931,17.8664955309737,19.3073052959497,19.6052022468231,17.9079243204921,19.6431799585903,19.803131867427,17.8747802438046,19.447535365079,19.5437920898792 +"Q9VM18",22.0025977580678,23.1816792648561,24.4720896982342,21.7177640638982,22.9296881275346,24.2401276661392,21.7365956950896,22.9526560805689,24.1297668623994,21.6353484938772,22.8325747002299,24.1457081248242,21.6789612535748,22.8516830000448,24.1383905851485,21.5693861365688,22.6176762123533,23.9138986158225 +"Q9VM33",12.4588380670367,14.2172329210276,15.172704114995,12.3059031908664,13.9984805689423,14.9628417122134,12.7151519487061,14.3417572657592,13.4823099441467,12.7076375924355,14.4588118381882,13.9248456442212,13.2943724126583,14.5652904359542,14.7749140821055,12.5267469549546,14.4359973039594,14.2183953778752 +"Q9VM50",12.0747958494586,14.531077770662,13.3756493060762,12.5730318824589,14.3189335210932,13.5341417435731,12.3858260442551,14.29273235883,13.3411693778999,12.5316199930458,14.887064023575,13.9069984991921,12.4408949721459,14.407499946983,13.5749987876832,12.3172052482867,14.8512619591267,13.748219065169 +"Q9VM58",15.10053937997,15.2313619376598,18.2223431552927,15.2610425773766,15.3183857596003,18.5316006463959,15.2666141845335,15.5050489736971,18.5692918973969,15.2736349967181,15.5968358854223,18.9661447349743,15.3515957808182,15.4741674396792,18.603798842943,15.1541855063551,15.6881859314037,18.7815594622961 +"Q9VM69",15.2533819544568,17.7355290435973,18.2345240625023,15.0521537360898,17.5502020888857,17.8199735335557,15.4419789437387,17.8533299391338,17.8871102287342,14.916923992668,17.5709869370676,17.7048586289881,15.1330225821065,17.6668246766146,17.7379859139787,14.9223089927985,17.4848217562098,17.206074398186 +"Q9VMB3",17.996760005826,19.3845223097173,19.3275935070755,17.7306359473815,19.1442273820268,18.7393665428464,18.0516049852347,19.3017641280239,19.1035022053482,17.7747446029388,19.2515919627032,18.8387898368817,17.8449595162434,19.3304669591048,18.9523475360955,17.8997690274226,19.1321268585848,18.7448454140384 +"Q9VMB9",21.3730276635297,22.3401103153729,24.20633709623,21.6739146398926,22.5039597405907,24.1071537509026,21.2736948088092,22.1645005133656,24.0224906413802,21.2388447716329,22.1977429896617,23.8106183052782,21.1671695177133,22.2959111403481,23.8947964840186,21.4181212324098,22.2850783960022,23.8960815154466 +"Q9VMC8",17.2575905269978,15.6700941410295,16.1098444134138,17.2168574385557,15.804251997493,16.2404364832286,17.2306866769843,15.5314131775167,16.0290996000106,17.1232478444279,15.8322984979531,16.4112880431029,17.3165482721155,15.3475751586644,16.1520298333962,17.2149091406548,15.7833028000533,16.2080270813398 +"Q9VMD3",15.1697100881625,18.1770247485348,18.8198620457739,15.5011006672572,18.7766922992343,19.1973438116009,15.4564940013922,18.5515343716469,19.045818940405,15.8653602850409,19.0101905322979,19.3414643450159,15.2353958918371,18.5983712478317,19.1092549718474,15.7379927683521,19.0734576226504,19.3789757930635 +"Q9VME1",16.5180825357478,16.5104364244024,17.4039693515456,16.6323283964218,16.3999482315006,17.3084777459525,16.1261055455284,16.1850803147392,16.6319248416854,16.2476222091219,16.2584639542531,17.0884801881475,16.1394047924274,15.9962837267831,16.612612161645,16.6757182517458,16.2719723375334,16.8492835933866 +"Q9VME3",14.0937458995635,15.2558641409647,17.6280622150516,14.0302247199922,15.1946768614684,17.8820366019064,14.3207974035305,15.2609758195645,17.7338148526576,14.3123383307619,15.1898361626647,18.1677474384683,14.1799432762744,15.1935554743623,17.557196297136,14.4962817688042,15.377168601933,17.7558610295959 +"Q9VMF0",13.4555983599203,13.9021586952656,14.2073595270125,13.2788455889134,14.0588963071631,14.2788393138178,13.0623507028417,13.7644545895734,14.1714729883535,13.2318608114403,13.7394783924341,14.2885765208076,13.0330686051833,13.8691053350576,14.6435946187217,13.1196846646266,14.3698357425348,14.2962886337816 +"Q9VMG0",11.1741091147367,15.5531016086102,18.1474429211319,9.64684730516738,15.6243192643216,18.4779701101358,10.2487795640036,15.4476355721366,17.9736176065495,11.3289306274847,15.4323318157893,18.3619689312138,10.3453089340672,15.3267366930832,17.9486565988346,10.7556718726314,15.3144545492587,18.1840562974426 +"Q9VMH2",16.2312582272737,17.591004304804,18.9658966899132,14.9789897392759,17.814475691454,19.0270232637826,15.0305060794286,17.7143358728864,18.9643169639333,15.3482389727447,17.9300090773596,18.9827046574443,14.6948078078621,17.7882709146135,18.9449559426137,15.1430003937501,17.8377843085814,18.9182634999898 +"Q9VMH8",18.4137550152404,18.6974971839606,19.2341206908443,18.4533564849068,18.7867061530243,19.195707138568,18.6004912805616,18.8385389480369,19.4200476137172,18.5434261717057,18.9989343791289,19.5157487847808,18.4943423642378,18.8395264354081,19.2913965202818,18.7421116325706,19.0116517407482,19.4769577476963 +"Q9VMH9",18.7907674824631,19.72426438447,21.2362347660184,18.8204880494319,19.9472669930276,21.3292267211492,18.9035805172888,19.9245242312313,21.3423616545723,18.8507919339002,19.9760065960669,21.5109625636929,18.805305782399,19.9667696915741,21.4977907164514,18.9866557156149,20.0600053710914,21.3268361974427 +"Q9VMI3",20.004780093071,19.5015500138246,20.5431910731688,20.0737978659507,19.4720394589449,20.4960070943927,20.2011661117783,19.8818627469834,20.7531444413623,20.0326565787886,19.5990911141115,20.6283628806042,20.1756926679955,20.0788043815947,21.0617359038716,20.3008208824392,19.8177466745328,20.9287829852379 +"Q9VMM6",17.368923839215,18.4678840450664,19.6708832881182,17.5008045079645,18.4047763007414,19.5195964454436,17.0818733770339,18.3284156181219,19.4360863748835,17.4539592701541,18.3816732874903,19.4418480238883,16.5680673163644,18.4743717836879,19.2658449327508,17.2532099538337,18.7268083052531,19.4075370854667 +"Q9VMQ5",12.0294337117732,13.9942752672045,13.8762125481888,11.907937105307,14.0885817269663,14.0131022347376,12.3902098674395,14.5319476064332,14.2122134726194,12.5779186692174,14.5255649619119,13.9626019565508,11.895090491741,14.7741798913149,14.3894491423357,12.2850937684218,14.0388711029969,14.2606374863418 +"Q9VMQ7",15.429963021612,15.7802770116419,16.6284023740084,15.3551542007379,15.5839563411664,16.6453260857598,15.5268749064886,15.8903271859698,16.5299874711339,15.5306992432986,15.5568195897839,16.6656674268418,15.5266419896695,15.7643759683884,16.5736649087034,15.9147810716208,15.3691994394062,16.2337770352994 +"Q9VMQ9",21.277385533549,21.6501385708312,23.274412259496,21.4814759202295,21.6602282020035,23.1395240601337,21.367146579523,21.5526269566311,23.3229929345399,21.4375882826354,21.7729014845755,23.2805432472655,21.3645634299583,21.7256075132982,23.1461877087853,21.6655050514913,21.7054640995121,23.2200542137851 +"Q9VMR0",16.6742640727299,16.5412329658622,18.4530920555877,16.6034148728109,16.5524344997096,18.6007576868453,16.859129763671,16.479463163598,18.4721970047774,16.9333665659926,16.5859669922914,18.7599423267966,16.8448133205944,16.6089182705143,18.5366089355766,17.1433645278662,16.4970718975553,18.5993729250421 +"Q9VMR6",17.6075187586033,19.4012999349812,20.1167631406779,17.5674629932813,19.5052714456281,20.0814484362769,17.400160266433,19.2297771141953,19.6608864009633,17.2153555639864,19.1215825405031,19.6437558340629,17.2566680527968,19.189280497589,19.6670153424538,17.1867913771191,18.9287785629284,19.4935774919609 +"Q9VMS1",21.0261839931964,22.4309653559798,23.908803407826,20.9646446544179,22.4070679336056,24.0773996327028,20.9423063576251,22.2890121622033,23.72483621093,20.8270101357031,22.3343055233885,24.0325625753569,20.8904882204351,22.1520144994902,23.9155623270754,20.9329560877081,22.3559175412703,23.8054883933383 +"Q9VMT5",16.1574725565245,16.5291098060486,16.1785731429425,16.0676265639013,16.7136497661663,16.2096276661674,16.2785193183796,16.9260472757598,16.2868954916068,16.1213272825239,16.9795424393388,16.3493011418276,16.3290704159303,17.2814207859332,16.6888705912158,16.2343086948429,16.9820029350718,16.3524683858903 +"Q9VMU0",19.1477410297662,21.5797360885275,22.8478890008276,19.3767065358163,21.7730396179624,22.8385246317945,18.9944891280663,21.5397496748832,22.7635392392818,19.0235951496012,21.488509048581,22.5148969798206,18.7862909307639,21.6172922564404,22.6183600965295,19.3040780596652,21.5829447904684,22.6234438896573 +"Q9VMU2",15.9360098976185,16.5451381827151,16.7153874082877,15.8372730553865,16.4273594710513,16.6361367067639,15.7662206951435,16.5262627439647,16.6046210523373,15.8843630833904,16.4156147379006,16.5428188508799,15.7020827424128,16.4503452894705,16.660559360959,15.7853377672823,16.4271050505588,16.415240066105 +"Q9VMV5",16.6272387557013,17.5508040423165,18.9830367122396,16.5215777662649,17.3457752080201,18.9376807912126,16.6890773380988,17.4705232344364,18.8609196959767,16.4247743633904,17.3335004451247,18.9921527961722,16.6369532929656,17.3551251052286,18.7874146541172,16.5451015169939,17.231788338979,18.7634630687909 +"Q9VMW7",18.4890362325264,19.5209780305219,20.8135278995557,18.5338322629332,19.4132552394231,20.630326929762,18.2931410031207,19.2821200839324,20.6332448872121,18.2444985039076,19.2639552093299,20.4703739317319,18.3445110714905,19.2666147954508,20.4706853107213,18.2237322632629,18.9878537404462,20.3726596066099 +"Q9VMX3",12.3327865118055,13.9416276010804,11.4062601086404,11.8889260834914,13.7555251326353,11.9517368377921,12.20076429186,13.7098398769987,11.6323191624574,11.9014146377496,13.9839892920842,11.2702277111554,12.1176862866985,13.8784466386883,11.7325862587938,12.0587086957891,13.786668759235,11.8256586867274 +"Q9VMX4",16.636225741205,17.8494141551907,18.1518266295977,16.4491297644237,17.6249010772407,17.8551753606662,16.518789660451,17.4765405856148,17.696114229141,16.4076501423243,17.6081903860511,17.9147151036607,16.2348540964355,17.1733563406634,17.8554043763341,16.6237034893708,17.4749628977467,17.7989961497059 +"Q9VMY1",13.5184609742366,15.6007584475835,16.9913964405027,13.4031665608712,15.8566007295604,17.1431143373664,13.7513171169319,15.8333574725436,17.2372993014052,13.9160765655869,16.2117953658019,17.5244300131651,13.1877637539785,15.7568644656663,17.2886162915306,13.1538649190854,15.9492520349705,17.4806956812589 +"Q9VMY9",14.410548561821,15.2866752296473,15.47019414632,14.1300516486321,15.2115711766412,14.8759871876049,14.9025629717254,15.3294227787095,15.3695317555892,14.557957911693,15.1295542563486,15.2517320163013,15.0431862272494,15.3566401609329,15.5099564657261,14.0140937321859,15.0660960413229,15.0274167569556 +"Q9VN01",14.5423430348132,16.6282510085484,16.458300850134,14.2799268707452,16.7684806899166,16.7144682371509,14.4308349322209,16.9482689212369,16.729874805975,14.6221171209195,16.9825460145082,16.8506564608971,14.5399406533479,17.0401211089872,16.8913862569711,14.6896436086451,17.0961369251123,16.923508131078 +"Q9VN02",16.2586970758501,17.818916888613,18.277453240118,16.3013471647864,17.6047377019485,18.26011359352,15.9947395803321,17.6077221816108,18.0652473770049,15.9496605770191,17.5599506275015,18.0379557611971,15.9998086697179,17.629012478624,18.2133254886872,16.0374774097494,17.4601735442791,17.8766060712631 +"Q9VN13",16.0655339966199,16.4808736372686,17.3394372637347,16.1609667300484,16.509745589958,17.4207883045587,16.5899774592112,16.8752820940449,17.8898659959367,16.6204715744256,17.0117838545513,17.9331171862362,17.0359577417402,17.1915525010422,18.2743559370704,16.7932310834252,17.0159038465307,17.9286063444065 +"Q9VN14",18.0569536896859,19.1002131502009,20.0534657136542,18.1653515360603,19.2273881187624,20.2421591334194,18.2812652273292,19.3657933829988,20.3362671498863,18.4911933592598,19.488833402199,20.4967930006769,18.226946884426,19.3702288788905,20.3983990342932,18.5600927082839,19.5087890565275,20.4757541995421 +"Q9VN21",20.9955860548284,21.6250723753724,23.3005653054156,20.923094521203,21.7049788604299,23.4053541338874,21.1219501993556,21.7066679518368,23.374788106348,21.0053753986177,21.7384135016867,23.4905070737521,21.0178739547769,21.7163302516497,23.3572000831801,21.097311237809,21.7501979783033,23.4489427846074 +"Q9VN25",14.8274465005617,15.7475044733162,14.5902824806786,14.6828133587395,15.6340126475154,13.6868266184894,15.1340163872323,16.0997691668859,14.4778854663836,14.7191207533618,15.7911400363903,13.8860552011923,14.9550499234614,16.0333140470907,14.2100613624236,14.9411005654481,15.5117278375837,13.852377228037 +"Q9VN44",17.84714990782,20.3489273062725,20.9681094394211,17.360625739069,20.1343605350662,20.7081607992578,17.7169824741524,20.4262592688635,20.8443179416183,17.514478281088,20.0615632597024,20.6777822606613,17.6500314593166,20.2599192333925,20.775529779744,17.5134916866841,19.8930260010672,20.3629949693906 +"Q9VN50",16.730361926168,17.8799653682897,18.6436904178912,16.4564082171852,17.8069676171484,18.8955038002776,16.6865360295229,18.1903743021996,18.8654861771176,16.6895217668732,18.2164550160885,19.1212270637196,16.7889850165226,17.9462756922492,18.8571820360154,16.6976405358452,18.0343995455251,18.9148070067293 +"Q9VN71",17.349385613783,18.7991660049489,19.7700873758157,17.36930597097,18.6437960844271,19.797406627875,17.6498383148268,18.8015260040166,19.5719209596293,17.4564737416483,18.5544750178707,19.7253483666226,17.7916215200504,18.5646764428459,19.7982446162511,17.2515018457695,18.671671436854,19.6518869125533 +"Q9VN73",16.8501603321325,18.8728861473303,19.4504506962087,16.684117876136,18.777660601251,19.1782081611865,17.0245175053104,18.9715078960409,19.3586117460934,16.89473324059,18.8808666966613,19.3613525641027,17.1998204786958,19.0415242382446,19.5012748242725,17.0791653652016,18.8991423798776,19.394353565096 +"Q9VN86",14.8342462736854,15.2064138123262,16.0798653816224,14.3943923631306,15.0485295763021,15.7399884363682,14.8095121953796,15.0375074511421,16.3312730957921,14.6015474453001,15.3197959910862,16.0924252649451,15.1615891235357,15.4496367164608,16.7111990886803,14.7702340513472,15.4008332345907,16.0802664687787 +"Q9VN88",16.1584059770846,16.7103925537877,18.4240853344669,16.4425115757604,16.8606170091868,18.2460922095236,15.912414924843,16.5379810318673,18.1923779755966,16.2262365274792,16.7810791687304,18.3396297830253,15.9326090984821,16.6887107511278,18.0781992028445,16.2808646734486,16.5208176914585,18.1429159534171 +"Q9VN91",18.5503569556933,19.2452423089981,20.4774217524008,18.5720072889864,19.4387052302669,20.6895746650954,18.5679646374547,19.3598247408744,20.5474400598566,18.8197486952363,19.615830781537,21.0810215632786,18.2484565690391,19.5534205701429,20.8857458285908,18.5969814700481,19.9146887019296,20.9441352413121 +"Q9VN93",19.6501626576789,20.0287132610158,21.2391755382361,19.6095745601395,20.0193903085321,21.1740161059828,19.606865015116,20.0411554494307,21.1723548277311,19.6792448398586,20.1239063371707,21.3648509143611,19.5976821233146,19.9933943134805,21.2805515656513,19.4216559381705,20.1314657746726,21.2901594931092 +"Q9VN95",17.0450490714097,17.5869546670762,19.0507142753207,16.9070181191263,17.6530770213514,19.1925220044516,17.0938259371142,17.4250365703326,19.1259210694098,17.1221263932206,17.6967804773463,19.3229106442439,17.1725022618628,17.3397936672072,19.191107041015,17.1158298014812,17.7568493775805,19.1833177737545 +"Q9VNA3",17.2136990256951,19.2933221315441,19.5409318184626,17.2185700365303,19.3351431285753,19.4557552579071,17.1566966426552,19.0478360422279,19.3706582130181,17.1926497555143,19.4790873404457,19.44330160539,17.1138156262147,19.1394328822002,19.378504344038,17.1986571428302,19.1508292974587,19.4499831884564 +"Q9VNA5",17.7742570659281,16.3018893155714,17.3162457712504,17.78272772702,16.6616753347128,17.3504636955098,17.8532694111716,16.8853869900488,17.4480467414573,17.7902586423477,16.8614404074185,17.6481519830541,17.8112105767799,16.6059472422309,17.414852070922,17.8234065092676,16.9731565774946,17.6431729209727 +"Q9VNB9",17.5496472177843,18.1414815118977,19.705241048502,17.3916923127159,18.1518318177221,19.8209663435332,18.3756831418109,18.7442312731656,20.2182734735856,18.4025942803696,18.8182950205895,20.6075010741018,18.412343220586,18.3222035497385,20.3558997540343,18.48013680913,19.0531791247531,20.5975603765266 +"Q9VNC1",13.7042185437274,15.1973749372358,17.3007754081018,13.3523500248923,15.1993777827206,17.4208868532059,13.8578849586804,15.2349773745336,17.6512238424652,13.9556750826092,15.5163165217766,17.7895805057946,14.0201959061981,15.0378099562235,17.5719165189086,14.780526222076,15.3165305983698,17.7155365512046 +"Q9VND7",15.5804946296315,13.1880393225834,13.0620058480655,15.9956933803604,13.3414484735717,13.0103366417822,15.7998077132639,13.2305723952636,12.8343107151799,15.7578605949678,13.5158503190892,12.7930809421905,15.7037322821406,13.2961787548223,12.7509674745654,15.6199304917652,12.974795644748,12.7138958545614 +"Q9VND8",17.694131314962,18.1483620546593,19.0385825101222,17.6884174614951,18.2705379811794,19.1282611743646,17.574599060872,17.7198743991573,18.9190954688412,17.7138517195297,18.3689368329358,19.1802333697787,17.7740037693303,17.9523465935561,19.3082517046058,18.8023869588063,19.9491701429682,19.4918948273921 +"Q9VNE2",18.0505643232723,19.2716366349172,19.9306185941692,17.8652577601555,19.1583033539248,19.8902694377844,18.1143935043194,19.2560499478837,19.7947649190469,18.0555220338964,19.3202239905261,19.9723090969563,18.1240882887618,19.236852073269,19.9045598480419,18.0026442076128,19.0910940582149,19.6301942729927 +"Q9VNE9",17.1385950857211,18.8706113530731,19.5760629557539,16.8451956905025,18.6996020115794,19.5152896940864,17.752442413398,19.5558661879482,20.3562314717124,17.4599586579674,19.2287496006279,20.265501572679,17.7124196474681,19.2047708418029,20.3004514749217,17.2578741863645,19.1965518248302,20.0287055231284 +"Q9VNF3",19.0562261405989,18.6362719585487,20.04767332389,18.9019541194883,18.6752962915983,19.7590758736957,18.949766092224,18.5993480567404,19.8119306594665,18.8841416830813,18.6006159183241,19.7909119078936,18.8963491207774,18.6923841796017,19.8254851308148,18.8983971332936,18.7463089460449,19.7268126080139 +"Q9VNF5",14.1594355662138,16.433939736128,17.1590876577617,14.0205137886993,16.6323734928286,17.2044487069826,14.2508827102771,16.615121450355,17.1941118456369,14.0881640509725,16.7334804167908,17.1152639449847,14.2240470219034,16.5344003867638,17.254860342674,13.8723961339072,16.6021134857609,17.0643691577683 +"Q9VNH5",15.9831339744137,17.0444210375602,17.4488673392872,16.220399039254,17.1995877210241,17.831927713216,16.17704283717,17.3476156902658,17.7542966390721,16.4527735808093,17.5144994552647,18.0101031585944,16.065549149139,17.3898264674158,17.5947473324492,16.4047712398766,17.5623778863683,18.0396143069773 +"Q9VNI4",15.4557362941468,16.3971457254703,17.9877345737083,15.5020905230751,16.4170662920432,17.9577986655931,15.0908369847981,16.437523317226,17.6840158511687,15.4693050602395,16.32408887645,17.7499911673443,15.2564169321282,16.4903502323329,17.7293925885091,15.0087322636238,16.1779220549012,17.8358447048239 +"Q9VNI8",14.5523061969535,15.8774499022607,16.9705530424562,14.2720952722642,15.9659187978425,17.0357045181208,14.4346067288839,15.9866329480086,16.7975981772955,14.4496277870118,15.8728119786963,16.8624659033747,14.254035649224,15.9650545558595,17.0202165472272,14.255086175119,15.8489731922101,16.9342023231817 +"Q9VNQ3",13.017342725767,16.0075752289475,16.3861201467406,12.6061234719026,16.2052629517572,16.380115776559,12.8207044537979,16.1815698912803,16.1606978660219,13.070866511338,16.2302045068835,16.4706117797573,12.9378918444886,16.2015109851225,16.2902659491828,12.4008388520645,16.0877539384281,16.325083410807 +"Q9VNR6",14.7693635270651,13.7569263805068,15.7227436103288,14.5158019077699,14.0015544591646,15.7265064129203,14.1291867749945,13.8709013168506,15.4901784403452,14.2744563707527,14.1745356177272,15.6853510815495,14.0312517247651,13.903630441362,15.3718790641444,14.6933662346037,14.2838093675013,15.4563884284787 +"Q9VNW0",14.4017620360009,15.3029418485279,15.3911108401576,14.1793675806965,15.1044281822518,15.393871696026,13.5537012558585,14.8909229561255,15.0077100843688,13.4729172454044,15.1406677878244,15.2339098603355,13.2731656757688,14.8621699587787,14.8994630720602,14.0513754161978,14.827673544708,14.6951769152094 +"Q9VNW6",19.9633459533339,21.2746518618896,22.0726951463864,20.1893529261176,21.0512867658311,22.1733219687918,20.8687301177643,21.7299405578098,23.0488561695026,20.7085363941337,21.6246517301599,22.8361603591655,21.2216089382493,22.1437224900938,23.5133877094229,20.643034929598,21.7184198191857,22.805089410984 +"Q9VNX4",20.2762945195278,20.8991650043924,22.0795588974836,19.8429663730472,20.4809702967128,21.6561063179504,20.0954874292066,20.913618713146,21.9575025545004,19.8227174235258,20.6063418959034,21.7191058858744,20.7366732344909,21.587146015101,22.6727874353667,20.0517137211001,20.6787079301371,21.8833959963689 +"Q9VNX9",11.9732879702328,14.2156282064209,14.9763209338533,11.8152356015749,14.0947800605182,14.0205066221734,11.8762736100872,14.1399398722286,14.7498265579315,12.0405108438206,14.8896094199439,14.3730522660189,11.9018407386858,14.2376955935314,14.4697017548976,11.7140558150242,14.480685905624,14.3002798674424 +"Q9VNZ3",13.6488793063894,16.106293809785,14.7646334600599,13.9992158321448,15.9148334921514,15.0097669483774,14.2935507723433,16.2859318820121,15.0771894362189,14.3864664567376,16.1756432324061,15.306914268782,14.3957611257485,16.0428210556744,15.2864855456992,14.8721803711818,17.9957233907233,16.1534351836928 +"Q9VP13",13.876727128407,11.2186643958394,11.1172105473567,13.2102371444662,10.9642073271366,10.853275302851,13.8878324026202,10.4160219258489,11.3782023139755,13.923126139598,11.0749990480159,11.3274499288461,13.7221370125026,9.62985065717347,10.3568979349128,13.911992034235,10.3283115775462,11.2988705668899 +"Q9VP18",17.3535050917783,17.1780643682856,17.0591443321023,17.1771960506087,17.3407034828317,16.8082660583546,17.4221136632851,17.3330248329446,16.8987424380051,17.2388529669736,17.3744990104749,16.711031415004,17.2779603539165,17.1751157430231,16.9197172609311,17.1041886987409,17.0746946118468,16.7738130090732 +"Q9VP55",14.6551922502393,17.5914100263924,18.7909794792486,14.6745073707684,17.5908872643555,18.8433300474673,15.1559617315011,17.6045238535361,19.0405534692067,14.8108628218124,17.6692787596769,18.9424354371483,14.9402727130567,17.7682605070613,18.748907479704,14.9267578357761,17.6848497683525,18.867691183292 +"Q9VP57",18.2546850841646,19.6706311325751,20.086902058782,18.6197839353006,19.9300829916346,20.1272539549271,18.4937820173158,19.7432172825395,20.1288354419679,18.360920007829,19.6140508409585,19.9624837505491,18.5011266830319,19.7908427087006,20.1132401042251,18.7959762791156,20.2586623397899,20.5004552946224 +"Q9VP77",12.6038924908088,16.6367042214884,17.2992644126394,12.4690763979268,16.5564210956906,17.0226539555626,12.6343393127645,16.6613953819636,17.1526388147777,12.4040702598405,16.4492917365255,16.8372329565844,12.6663197595317,16.5827343816494,16.8471911800729,12.6224727666256,16.3327783121095,16.599800622857 +"Q9VP78",13.6852565633642,15.3835046035252,15.6105927770404,13.7855899473654,15.4842758075371,15.6773905513024,13.6111663683863,15.3396999681131,15.4967465600185,13.7767688606805,15.35541150547,15.7160619391255,13.5957349855622,15.2356062736417,15.5703230838066,13.8286068789008,15.4912897927518,15.5485975079827 +"Q9VPB8",13.6676700598799,16.9062546317329,16.1402116420259,13.8010465529633,16.8265221352807,16.2473632609851,13.7713620611518,16.9287911938646,15.9550752279722,14.092400395342,16.9069369822194,16.6024698407536,13.5953665638372,16.8601447437616,16.1411168563433,13.8625624365571,16.8840886420923,15.9667586867011 +"Q9VPC1",15.2101993113033,16.0546756791614,17.0398654708183,15.662367049398,16.1707945397135,17.3092353711099,15.3503484342634,15.8169961947875,16.8601496824477,15.3819791142304,16.0696877290615,16.9474992608721,15.4180551796527,15.8371471070517,16.6072795282879,15.1308042779738,16.0176354475458,16.8269129742752 +"Q9VPC2",13.9244854386242,15.9079313835841,15.3651246286295,13.7268007670346,15.9684691601803,15.3837252091327,13.5234547365676,15.4911892327122,14.662397890438,13.6553275434466,15.6154025253922,14.9631471442452,13.1908486612994,15.5499014669957,14.6814555069666,13.937209466313,15.9495602913075,15.2036714030614 +"Q9VPE2",20.5377770317177,20.511286498137,20.5356458044506,20.7072275139143,20.5294164146531,20.7176278879378,20.9032501915151,20.9294685822299,21.083522875623,20.7530074330786,20.8630888806001,21.1167361825745,21.0655876046433,20.8850348103123,21.2223034840295,20.8951867153475,21.0349004211005,21.1302898789533 +"Q9VPF6",12.206998567346,14.0709651463726,14.7324771674673,12.5426222729987,13.9593465304836,15.1439932278317,12.4154408635799,14.2894498855494,15.5753930843696,12.7357149684253,14.4500113748017,15.5202659632101,12.5096967442682,14.2864716705402,15.0595927764273,12.7006181448154,14.6238523495763,15.2708321492376 +"Q9VPL0",13.764066269334,14.5602325579533,16.1087018988001,14.2169245068916,14.5117428670609,16.2411905288304,14.3008887068528,14.7488529394114,16.290720563136,14.3051219794974,14.9405120106448,16.6294677953765,14.1047064341079,14.8778887438677,16.4947834417747,14.7242122432439,15.1012058354625,16.6410117440243 +"Q9VPL3",14.7976298713742,15.2933004264834,16.4854959538992,15.0197502340468,15.361271704454,16.8943485531578,15.3223464865161,15.6178397363268,16.6477126559148,15.2554705786456,15.947402079873,17.2560291960575,15.3006229046778,15.0410520767718,16.538831892729,15.1288850823853,15.8907059466448,16.7961194333751 +"Q9VPN5",20.4316562399959,21.187450404825,22.8208415881448,20.396717663205,21.2830589319829,22.7323872293579,20.2989059981983,20.9360225077356,22.5322379632679,20.2920169232605,20.9776419342388,22.5399712834039,20.0934930588077,20.8201586495762,22.2650702526913,20.1333217013869,20.7882067913981,22.1644169234113 +"Q9VPQ2",13.9147265346175,17.2319041394348,18.0554310581215,14.0979829876534,17.190733127385,18.1485548937589,14.1353392814988,17.3427357970229,18.0660791315679,13.8116486306443,17.2368477565879,18.1761564326713,14.2529531873156,17.3165054939245,18.0736576930115,14.101779112934,17.2561642339416,17.7914279637713 +"Q9VPR1",14.1643735664729,14.7196995085651,12.8089073547562,13.5626559548827,14.5336560376445,12.5481275909994,14.0491429053971,14.5194995674133,12.330204287936,13.5767109927257,14.5843720812664,12.8168731232653,14.2222441998887,14.2604640099705,12.3229105011546,13.9768311832513,14.6889487709529,12.25885087127 +"Q9VPU4",13.095904323936,14.4230576007201,12.0064567416422,12.9668635174583,14.273904281331,12.0328914852144,12.818364806923,14.0626956208107,11.2224204524365,13.0529032413285,14.2117190201082,12.4297764526308,12.8789686580472,14.21892067004,11.0493271293773,12.5546708993918,13.9896731455862,11.8869534933541 +"Q9VPU6",13.9884677996193,16.3604488875104,15.7033832244795,14.0467972753295,16.2007543992469,15.7486292153647,14.1688236359493,16.3182434728652,15.6355594098377,14.1618739473029,16.3601611160391,15.989752016222,13.8765843298483,16.1830996026718,15.6118377110562,13.7669775606436,16.1633968774041,15.4880156264374 +"Q9VPX0",13.919944195912,15.5504039422101,14.5147498018965,13.0983429846821,14.9177087480604,13.1693261094208,14.3216708724475,15.9273008335295,14.4564647623636,13.1037888973666,15.2625216603904,13.3447429044931,14.3875329717007,15.9555772784029,14.3276706269013,13.4418023002822,15.5263435572327,13.7712992332407 +"Q9VPX5",17.3408077410563,18.9166583462194,19.9648729975575,17.3863429939147,18.9399667992124,20.1830604387399,17.3441720907846,18.870919780586,19.8773625303654,17.4848496491857,18.9538070055904,20.1572930106377,17.3907640141487,18.8307449198248,19.9701653418519,17.6731387894242,19.0194395494275,20.2357592334237 +"Q9VPX6",20.5092654951062,20.8938925716578,22.5272245654187,20.5429045216269,20.8400748210699,22.4551014354707,20.6202391370291,20.963915351896,22.5741710025229,20.5870128295382,21.9413617202348,22.6685792454645,20.7776387664456,21.0659118186933,22.77092018349,20.8675006612738,21.2977365483468,22.9976933681606 +"Q9VPZ5",16.6004835831274,18.93860867853,19.9420814878555,16.5614008412748,18.9458221681676,19.8424217165299,16.566168152322,18.8264578035489,19.7168881112945,16.4140208839505,18.7445979129685,19.8176792943414,16.3140145639928,18.6069908009577,19.4535161107907,16.5092973580623,18.9686877659445,19.6648268770415 +"Q9VQ29",21.5486265470054,22.0132229813243,22.8720954577009,21.4301206610415,21.9985081885002,22.9640732428408,21.4955022804809,22.1398617965484,22.7893783698859,21.339941438955,22.1601073801946,22.8503719631735,21.6174665230339,21.9704028054336,23.0576048094742,21.4459613790343,22.0169463149826,22.8773527338571 +"Q9VQ35",13.3491776739743,9.33654814295281,13.2119792247194,13.8465048126075,10.472744557158,12.95140963664,13.8470964071024,8.95139217244164,13.2121207790173,13.844252567423,9.72139613951758,13.3306075503281,13.7705035616555,9.46604241199863,13.2294883278611,14.2105613285279,10.3526407078008,13.4808270061604 +"Q9VQ62",19.4150486870515,19.7964363612797,20.1399065208753,19.3284528883704,19.8546949153513,20.0885160448908,19.056636161759,19.7548361526397,20.0267905113101,19.407638208528,19.6215110287227,19.9711831479378,18.3377701436305,20.0045709870715,20.0350986260021,19.0451354689424,20.0787781468737,20.0234511738343 +"Q9VQ88",15.0982728910822,16.1881260085985,17.5887128711969,15.3076431781963,16.3657373936246,17.939185125221,15.047552951461,16.151162144703,17.7969706969053,15.5531922859654,16.3004984479141,18.0643479734422,15.3074449457251,16.1081474194955,17.6350280040156,15.040690958784,16.2643777308048,17.8385613512788 +"Q9VQ91",14.244453082857,14.7188615514889,17.043701111223,13.9790046122358,14.5484556603294,16.889545734444,13.7654924065611,14.4022210691967,16.6095086830692,13.6425855435583,13.9946306730801,16.5881283052603,13.7456041593211,14.5085029170968,16.6037604439749,13.5519269827929,14.3601023290078,16.3179197747253 +"Q9VQ93",15.9854303389411,16.675035680387,17.8700639321948,15.5030612426274,16.7122233551546,17.9193241879865,15.8748782348457,16.4778149960016,17.8007057242594,15.8036600104152,16.5108325639536,17.8710690830584,15.7726144954081,16.2067957709538,17.9230365285773,15.6204373225255,16.5574528027723,17.499198033683 +"Q9VQB4",20.7200184266018,21.7829012942928,22.7446973138369,20.8701539405799,21.9752157581112,22.96120953335,20.5745973039082,21.7477095514111,22.5986325254975,20.7289748573664,21.8723900985718,22.9318960864809,20.5706961477665,21.7976171149142,22.733888104017,20.7104622532004,21.8984485220803,22.8127064246311 +"Q9VQD7",20.404370524536,20.7160487083543,22.3441993213,20.3110126136664,20.6436072852599,22.1340168755819,20.1930906851201,20.5483453608707,22.1663403093753,20.1354779649321,20.4634805894855,21.9447871552993,20.1720563591053,20.557065960736,22.1006112473021,20.2301006520431,20.3229742416173,22.0902906709791 +"Q9VQD8",17.3071425361668,17.4758732991729,18.0238989717955,17.1645383372632,17.3351850577368,17.9674255692743,16.7700649130761,17.0180752322483,17.8473315142579,17.3741300820922,17.4403619491114,18.2780115023398,17.0598571294608,16.8508307393553,17.9421003306334,17.9840618899598,17.9688883010794,18.0716475133589 +"Q9VQE0",15.9022054609028,17.0681671032218,18.2326680632614,15.6986313196999,16.9525722664489,18.0718454204168,16.5332912591855,17.5964039816846,18.6563154958936,16.4421103377551,17.582728651891,18.5888219891971,16.3618622542689,17.6305493668615,18.9274808276875,16.3544660277299,17.4831262803025,18.4631201251413 +"Q9VQF7",18.2145794750223,17.558685685949,19.6302631591418,18.7243784107502,18.0179744809183,20.03351940821,18.506326333483,17.7249201122016,19.9728703207988,18.4616620914962,17.8492625912522,19.6558802980958,18.0633291920005,17.8219397548805,19.7740357921477,18.7225292515681,18.1678024023986,20.1461514706453 +"Q9VQG4",17.9120498576075,18.9631947491891,20.3208646210401,18.0462793120533,19.0433587820223,20.5221579141165,18.1221253669131,19.0784983114934,20.3139445231724,17.961197709292,19.021294157205,20.3879748040798,18.2204708097591,19.1374572409088,20.5501853118989,18.0119961987032,19.0632260421357,20.2137483250708 +"Q9VQI6",15.2793662111719,16.1893046205801,16.9003489181243,15.1247527905218,16.155558451179,16.9055173017464,15.3031510780596,16.0857503013744,16.6905780334338,15.5536754721483,16.2212176736596,17.038423947825,15.4871437495206,15.8080467422076,16.8446744826247,14.942612462071,16.470185206162,17.4388722307584 +"Q9VQI7",18.6871476670298,18.9382278815551,20.1073113198414,18.6408223615644,19.0953992486989,20.2345803231453,18.5073911346619,18.9153556555147,19.9827257915254,18.5634821289779,18.856041404517,19.9969971683572,18.4384169076945,18.8659930033733,19.8079933587796,18.472958589342,18.7683981838803,19.9444777089711 +"Q9VQJ8",14.2674777332704,15.5465209862847,16.0048438866878,14.1805642410406,15.7757307314285,16.2626564689976,14.2744261005073,15.4666981290358,15.8253962580715,14.0018233875467,15.6689939874375,15.8199863260702,14.1015913265247,15.5136713687251,15.7678752143084,14.1844226848977,15.6593709611386,15.7893524372645 +"Q9VQL1",19.0310027374513,20.111422799727,21.3995875123557,18.9955489132892,20.0642736536635,21.2114151296457,19.0578135905197,20.1764771793849,21.3508485964972,18.9381957090961,19.9919040617695,21.0692696901113,18.9890629365102,20.161769595264,21.2245795695034,18.9597695687196,20.0361836063675,21.1146322117103 +"Q9VQM2",19.6090742655827,19.9847793998692,21.0298764159337,19.485290856183,19.9846433958218,21.1119760101047,19.428875223461,20.0025203552258,20.7706648494646,19.3352771620642,19.9498176609465,20.7824643664357,19.455585412085,19.9071779412586,20.9674885476246,19.3842041144373,20.0512482368614,20.93396082985 +"Q9VQQ0",18.1342709857721,18.201499164374,18.9450204855878,18.1217636972313,18.3077506636146,18.9694176431168,17.8802713222695,18.0278294665353,18.513193997163,17.9552813721076,18.0969115892577,18.7286703205219,17.940434983385,17.977457551804,18.524744997073,18.461460992004,17.8965855891696,18.4846442934257 +"Q9VQR2",20.9175603793537,20.7599270851886,22.6205715573957,20.8542752492436,20.7470186672789,22.6238028235971,20.70734958893,20.5119700379742,22.5171186003978,20.6461157246631,20.5954894616795,22.6074073796637,20.5446137099102,20.6631916971525,22.5191886402741,20.6803177481775,20.7193453967459,22.4690174132754 +"Q9VQR9",15.2281880004732,16.0449918993931,17.870812378914,15.3182275611312,15.7274957117573,17.773893027153,15.3075272005314,15.8362357846668,17.7880430832924,15.4012086355026,15.7590685008989,17.8782780534346,14.9321467754347,15.65908919853,17.8576536300729,15.1503125708785,15.3807156156872,17.4957465751243 +"Q9VQT8",16.7012866462782,18.3065391208191,19.7813470141915,16.4775146093141,18.3777106735801,19.4260860353922,16.2650522201194,18.1297696284568,19.2318884472003,16.3252659215815,18.1098390387139,18.9377704143426,15.6856381584722,18.1192454285421,19.2256822789552,16.4416063738484,18.8039413805027,19.8355884385114 +"Q9VQV7",15.5614415920694,15.7205228021446,17.5733084380451,15.7124203818033,15.8683765999743,17.3002653197379,15.707609970762,15.7156492684715,17.3726522523291,15.5731378588093,15.7415157995868,17.5462835187428,15.4603692319484,15.7153857322615,17.4505920996649,15.652904523281,15.7051400656511,17.2883943623589 +"Q9VQX3",13.5758254612472,16.5724083077023,17.4376878447941,12.9489580237822,16.2728994517111,16.7394661991986,13.1694438750994,16.1904063775658,16.6817765384368,12.6829855176221,16.3428573970791,16.0547591421057,12.7841754665118,16.2512618572867,16.4218649373253,13.0789872557908,16.1109215564656,16.1661952283523 +"Q9VR25",16.2222518501767,16.7165735184502,17.7150425923991,16.3277350727357,16.9283090831408,17.6530485845424,16.2743808629294,16.66692374464,17.5462331476263,16.2816505976,16.8465131910116,17.762009103562,16.5175023153349,17.0389362665242,17.9029358946875,16.4303458729874,16.9673146474778,17.8039723752008 +"Q9VR30",15.7439975727037,17.5320894013657,18.2318474864281,15.5975743409238,17.6677876358816,18.4534466212069,16.0204888135022,17.7770246898687,18.2758266754954,15.6177978307216,17.7041378430401,18.4507466579532,16.1265273622399,17.7718805053224,18.4133156956142,16.0449686362345,17.7160158012125,18.5700460399116 +"Q9VR31",15.7972490131477,17.4461473188027,18.8428608579915,15.7178524271738,17.4317282669715,18.8938037100654,15.702219873797,17.3864147024109,18.685276164681,15.5796283297923,17.3307765977483,19.0092606929375,15.816015236265,17.2769576906894,18.7093756928627,15.5291178686943,17.358175901993,18.6647595496306 +"Q9VR79",19.5259021886705,19.6981040009651,20.5333595480005,19.797685917735,19.6624732918792,20.5819049133039,19.9590052165129,19.9486694717956,21.1712553755903,20.2288915894618,20.3071858439199,21.3489578094065,19.5670818520593,19.974419348982,20.862725744033,20.2280695513306,20.1954889865342,21.0065807555626 +"Q9VR89",13.8060755843581,14.7717773949295,13.4810980099972,13.6974781682434,14.7226483183228,13.4132287540599,13.8150779361294,14.5646726331183,13.6060671752592,13.9406910882994,14.5616441922474,13.0731587299702,13.9464174854103,14.0940207318931,13.6365026453373,13.8784754088127,14.4778480556232,13.4231687943369 +"Q9VR94",14.5132307039066,17.9042713419418,16.7129914290233,14.113547129131,17.3732375415765,16.380637656408,15.0503951745899,17.9104483474168,16.7521956647277,14.4676548039456,17.7614077899809,16.7875502155343,14.6283610428465,17.5304634785309,16.6795693314473,13.9933299224996,17.3670318234678,16.1843868573863 +"Q9VRD4",19.5778183868615,20.1062189859846,21.6354784179799,19.3076071568544,19.990329999239,21.2701252598668,19.4587701479156,20.0541561033383,21.5929746301766,19.2933983964435,19.9069829574113,21.2557273195136,19.5466436883062,20.1617362666343,21.4585976467176,19.4762544052499,20.111288714987,21.4828108672259 +"Q9VRD9",14.3034311440147,16.5048710011574,16.2280650136776,15.2240675377632,17.2871568700335,17.1165926865481,14.3329145154418,16.7279647676532,16.34587026312,15.2113664150981,17.3899594761201,17.2702783299182,14.0928760576985,16.8012020463601,16.6459230729498,14.7285834304265,17.0304122905603,17.0854795533308 +"Q9VRG6",15.9987958609702,15.9142545417158,16.9792370925715,15.9964559099411,16.2405997547762,17.1658864690408,15.9397186042343,15.9901549152942,16.8270368155534,16.0651687564578,16.1464989409849,16.9888572610476,16.0316895971387,16.1023119730586,16.7584829624457,16.1326198813859,16.0741366564046,16.9165744929172 +"Q9VRG8",13.9085537985657,16.42485928945,18.3046290611069,13.4932225526518,16.5150361598205,18.1601446236525,14.1608029625871,16.5413674716774,18.3538001439334,13.9337216657116,16.4389096308361,18.1599409558745,14.0353251403855,16.5233479907641,18.2624549467891,13.546191803769,16.3456970085378,17.9613959437908 +"Q9VRJ4",19.971097015493,20.3306710840091,21.7136352899549,19.9979826660501,20.4874547181009,21.8393223152124,19.8558931867078,20.3146798914724,21.7202334573149,19.9470021947479,20.4043769125418,21.797455789031,19.9064617443534,20.4374206395877,21.7621922198651,19.8986428209631,20.4083524915078,21.7461803296393 +"Q9VRJ5",16.183317936657,17.8531675462001,18.0581384099823,16.39592863307,17.7958524561604,17.7711399387875,16.2571168091166,17.8191083414211,17.9685721975084,16.1190503339455,17.555637952387,17.7584886146119,16.1927101608499,17.810670483138,17.7834648464977,15.9572629296603,17.7523352771382,17.5434737576821 +"Q9VRJ6",14.3228656360738,17.0180830955978,16.1810094987217,14.2689148929328,17.1462592571441,16.3098849655422,14.2010632653624,17.1394693186168,15.8534211546112,14.0979810117473,16.8942366861201,16.16977331029,14.1924849189484,16.9534518071518,16.0207268413576,13.9219648512703,16.7492027524367,15.8698301446732 +"Q9VRL0",21.8932403389002,22.8226817694301,24.0357934288891,21.7747234160739,22.769408092142,23.8068556414115,21.7221343050884,22.7186567517902,23.8750357314859,21.4056886523528,22.7412937924299,23.7751265760359,21.7649108897022,22.8780551737916,23.9691348549934,21.4329901298782,22.5298675143498,23.6481991024134 +"Q9VRL1",19.7287277096394,19.868093857949,21.7733211810117,19.8852965160703,20.0421188063483,21.8467342810085,19.7326133229245,20.0343893071702,21.5781969854783,19.8940582861991,20.0088124861818,21.6685113966629,19.5449622383527,20.0899728935785,21.6682068403963,19.6519508679632,20.1148356864511,21.5429275707356 +"Q9VRL2",11.2712856951225,12.3239468312101,14.2999740949889,9.43977496286838,12.2466376404364,14.1437674310141,10.6747725031516,12.0431186002546,13.9266186850049,10.6170812320371,12.2092412568837,14.1859822867599,9.12127632961716,11.567039391022,13.9065552935008,9.44488211723477,11.7776440424442,13.7905250955474 +"Q9VRP2",19.5775918813851,20.3578517812698,21.3765971310682,19.4523731550454,20.1924047080057,21.2319981852781,19.713558930809,20.3655055740063,21.4055668909289,19.6065650370521,20.2785363113963,21.4556855616554,19.6733396115612,20.3060701147471,21.3662772147878,19.7228695015897,20.3710722645478,21.420696670253 +"Q9VRP3",16.673753593906,17.606333222534,19.3505933134785,16.6215119948148,17.6633909422266,19.2422482872706,16.7695302379572,17.8110465588869,19.3268064071375,16.8584561962559,17.9028048387484,19.4756501468605,17.0816079643614,17.8725143901288,19.7500594494922,16.6268702126209,17.8222429811526,19.7917893203436 +"Q9VRP4",13.3852163238723,12.3956028254104,17.0242159479163,12.977465682319,12.5036609275297,16.78767136262,13.9674622468294,12.9252621523718,17.0238272990246,13.4622643270251,12.8077328243,16.7194265794356,14.1480243133983,12.7691372296368,17.1578732572017,13.5180859167787,12.8725355787227,16.7398705891657 +"Q9VRQ9",13.2272847001034,16.2261403377368,14.685492631788,12.9292028388493,16.181275560142,14.5065303838536,13.3471646471494,16.4644903847783,14.7045867717049,13.2783185388235,16.32976269558,14.504495723616,13.3964195864365,16.576521970692,14.581051534612,13.3193253343848,16.5010879997319,14.5276913077099 +"Q9VRR3",18.5998788099837,19.7794589669862,21.1585947124241,18.6678679126918,19.9235551958444,21.1472018432862,18.5046625544341,19.8029449468574,21.0566819901878,18.3635126997117,19.7497682258667,21.0107711847664,18.6030318630968,19.7541895319259,20.9486084519184,18.100097074329,19.457779100606,20.6649826829228 +"Q9VRU1",16.2477747754383,17.2705263898308,18.0460964559216,16.2188288251874,16.8803848790161,18.1981964495087,16.3628150366162,17.3077786964908,18.2448230679685,16.2549429532973,17.0542259981667,18.7211959638059,16.2660190044225,16.8996323495138,18.2865158119711,16.365125093926,17.4362808870524,18.547767731145 +"Q9VRY5",15.6337205499168,17.0854308445154,18.1882344115105,15.5133220885005,17.156725400221,18.0579322140824,15.5773999701453,17.057732506944,17.9028336332011,15.4660381672178,16.9584972658296,18.0587040874942,15.2738953963663,17.1385323720434,17.9021088315101,15.3470411285941,16.9897653659997,18.0720529378518 +"Q9VRZ7",15.7848084124679,17.2912010833979,18.9425728367894,15.5491148116377,17.4937706068602,18.6835728728197,15.7767890998208,17.2629537037475,18.9368146743421,15.5717566817492,17.4112990874072,18.4743396284907,15.7517541452653,17.2373061713415,18.7483748444667,15.4375431679718,17.318781714709,18.4764965767005 +"Q9VS02",16.6495413403549,18.5818948416451,18.8840959754805,16.258717420264,18.5468931084542,18.8375881461792,16.4448119466475,18.817328472597,18.5486019381231,16.4853655130049,18.7281605078145,18.7563925879379,16.3266389784145,18.6124060503552,18.8845338099661,16.2115063776706,18.6006566558929,18.7088790634164 +"Q9VS11",13.2261149698255,14.7878874713425,16.1475608459523,13.7878457467898,15.0821856613425,16.2984786912155,13.5263594754028,14.8257285842804,16.3336989247365,13.5048809888168,15.2427386900841,16.5162749144317,13.368112900687,14.930741021014,16.2921232658395,13.4783833017294,14.8262124038984,16.2263695044603 +"Q9VS44",13.5351064236193,16.2888529268065,15.7952443087988,13.4834633500759,16.2229630327043,15.6970363578014,13.6101952954983,16.1624768829405,15.6277095316221,13.6151583132834,16.2430898225842,15.4790725878144,13.50358103941,16.1671978766067,15.5944944386958,13.1925551588965,16.3322802786391,15.6238437553339 +"Q9VS84",16.645093961661,17.1375257002226,18.7542455207675,16.6048804894854,17.097675509129,18.8258204647168,16.7156365160202,17.1054248404949,18.6806023583767,16.9526145409649,17.1382764637481,18.7385122373992,16.5373911319727,16.9803820791304,18.6146826839875,16.7865835685774,17.1402860814178,18.7226998338501 +"Q9VS97",14.3126963740425,14.8141498115773,15.7377639577981,14.8474549255521,15.10709305443,16.0884739941551,14.6381748424591,14.8752902162351,15.8970924434752,14.8829346554243,14.8579883884802,15.7149431211606,14.7849791756245,15.0985168935728,15.7821175889892,14.6023323365844,14.8536469352989,15.4494318169922 +"Q9VSA3",20.3150362058582,21.3539261364854,22.7691983273249,20.5126852986035,21.5742209068513,22.8975870740271,20.6133371418881,21.7085500761561,23.0308534402641,20.6363124612045,21.6888170659693,23.0827911609308,20.5808473174925,21.8038888240675,23.1844890643776,20.4921814673201,21.7374148611016,23.0050001542668 +"Q9VSA9",21.8074842063714,22.2319568705897,23.7197685274547,21.8769109191578,22.2126169748314,23.5025376143882,21.6261867255835,22.1430480203949,23.4747745518464,21.3410280971186,21.8808607890135,23.1705107297411,21.5216005502721,22.079437228542,23.4182937416481,21.1408313740181,21.7591616440045,23.0639991760149 +"Q9VSC3",16.3652216782465,17.7371565081358,18.2219845296763,16.0942603463257,17.6546487131487,18.0723491702696,16.5072546263923,18.0864346435156,18.3115926755392,16.5341057653042,18.0912608060925,18.4296533853565,16.1776753420474,18.147428394623,18.2645721041834,16.8831501551249,18.2525076341517,18.3964551790925 +"Q9VSC5",19.2925681654926,19.0479651069826,19.9592171337703,19.3980489254411,19.1470434426277,19.9854114106333,19.2839971949744,19.0945242189595,19.9627796520466,19.2883545224011,19.0919765758648,19.8804422381402,19.2079938935914,19.0809078089139,19.8195284433924,19.2602402307404,19.1497173790389,19.7518392920928 +"Q9VSD6",16.0095731755157,16.4098919371024,17.759445194876,15.6733155928646,16.1383583577502,17.4247322854255,15.9071261979291,16.2969807192247,17.5881856738948,15.6001632555116,15.7239871175756,17.1850813284582,16.094270046645,16.5136496744886,17.8286977613898,15.7330409379998,15.740506848932,17.0017077871093 +"Q9VSJ8",14.8362723265783,16.2637205159305,16.4918197328322,14.5879534219167,16.1532936569407,16.7080750032133,14.7506330201664,16.1544027610013,16.116658340134,14.7218655175159,16.1790336296867,16.4649725987316,15.0221142952425,16.1043478308083,16.5655502287761,14.4673401280655,15.8221354923907,16.1116915348723 +"Q9VSK4",18.5183725263924,19.8641285056853,20.8425459729944,18.5799051367692,19.8897464206734,21.027737752376,18.2955673020548,19.7986549223015,20.6729278503324,18.4864940547492,19.860454204645,20.7368148825782,18.4092308555643,19.8800758191672,20.9040823354442,18.7753501618689,19.9859106436751,20.797627827305 +"Q9VSK9",14.23116738701,15.4881949974474,14.0887033987146,14.285125427929,15.4703430522975,13.9567085072344,14.2961700302924,15.3779208724599,13.8263434230352,14.490190934945,15.2091140681815,14.1228111969761,14.1531877072096,15.289458082701,13.947436196967,14.0861246114392,15.2098036814896,13.6432173967779 +"Q9VSL2",19.2912674670911,20.5532246241159,21.9149886232237,19.1796445042404,20.5189700802475,21.8228263207359,19.156866830913,20.4660889032845,21.6453243966848,19.0837993599261,20.4222848946829,21.7904777265208,19.1045439259522,20.4325005839618,21.6692878213093,19.3446961838033,20.2304606077102,21.4885485829234 +"Q9VSL3",20.963881003568,22.054917222347,23.5834550104656,21.1430073724844,22.2507780876713,23.8844177933838,21.2040448355642,22.2672807663427,23.8008395524598,21.6297336732184,22.6389403526229,24.3286366854767,21.2277898767296,22.1124524872078,23.7684397539774,21.246434003427,22.259426241458,23.97475376582 +"Q9VSL4",20.1510749989446,20.9674575377959,22.0757654165947,20.0925407792042,20.8252755975946,22.0369700873358,19.8898353656137,20.748616340386,21.7590002242247,20.0400690870512,20.7321377533367,22.0215830989055,20.0264401866567,20.7359968573591,21.8474603665159,20.0745277285586,20.6746348412428,21.7428300420703 +"Q9VSL5",16.6693356703082,17.9498541745165,17.6715513048591,16.4622268841682,18.010781288096,17.7873866045302,16.8346819310899,18.1551750244057,17.7806666213479,16.7302233296111,18.1118868555621,17.9462019625478,16.9226893865517,18.2932432001935,17.9682884793198,17.0910412732339,18.0392848439158,17.9538023794102 +"Q9VSL6",11.8907124274884,15.8903704519476,16.347523751193,11.0748104140158,15.9402009190774,16.4534785387159,11.9061897915958,16.1099458488798,16.3201015420446,11.4422613035134,15.8733675809525,16.460686510843,12.3314908342585,15.9531749426422,16.4034757695482,10.8859457143745,15.5420098044878,15.9626338470962 +"Q9VSL9",13.3019079332279,15.2245575834382,14.5876724710094,13.4944941460553,15.6883832237305,14.1944515115225,13.8157814333164,15.2797128904986,14.8190682982374,13.6227676950907,15.4896964385178,14.6376341055948,14.3095670776146,15.2319122714712,15.2418077090243,14.310379924303,15.779766505494,14.8382568120132 +"Q9VSN3",20.2807489200288,20.1417868918438,22.1862687985995,20.6046837077831,20.4192707618192,22.3426243488414,20.2630017148502,20.0331615139483,22.156725656549,20.2762301161645,20.1118433717537,22.4001310030915,20.1233719759494,20.0273477387962,21.7718267360209,20.4262865593983,20.2032288587705,21.9901318434613 +"Q9VSN9",16.1261916724785,16.6383220962529,16.7298573074288,15.7032233488551,16.3942477229662,16.7059372495775,16.1682940281663,16.7707757662237,16.826541958612,16.0234221287498,16.4799411653827,17.0639081148096,16.3446435234923,16.7962452810084,17.0317446384369,16.061764342915,16.6133319845286,16.8835088971411 +"Q9VSR5",19.2756448723412,19.3849727451316,21.3150167161342,19.4443805719768,19.7011766624879,21.4754053915082,19.6702291784621,19.7412208756078,21.6543137506222,19.7228261066047,19.9402430950566,21.6350744421267,19.5132734565564,19.7321145458161,21.2995606093827,19.7299425369712,20.056001253517,21.5899200681542 +"Q9VSR8",13.5482755342561,15.5375296023765,17.199588020083,13.7395348735958,15.445934791033,17.015848420645,13.4089055757535,15.6891932509072,17.2746828083244,13.7732099431473,15.9323931350529,17.4786745552635,13.1389069419714,15.7280584394017,17.2942766248218,13.4468084302677,15.5448709190871,17.2607506719753 +"Q9VSS2",15.5037505602341,15.5063686024411,17.0023335158704,15.2217253087983,15.7106384692353,16.8891851589535,15.8257497533237,16.1438014496639,17.3504428126245,15.7717532252437,16.0772071516695,17.1079830029068,15.6966157258271,16.061044985852,17.3448158773103,15.8151460378761,16.0469787149807,17.0717122481583 +"Q9VSU6",21.2703657128681,21.2593916497867,22.6320614751098,21.1927536683525,21.2243953154135,22.4662864866629,21.1025203417918,21.3026171098494,22.4731942354017,21.013901411206,21.0690976218615,22.1757565216443,20.9756942414564,21.3127662319561,22.4516897343896,20.8934945917227,21.4523640060946,22.3994190144372 +"Q9VSU7",14.8257185955805,15.1687451856109,14.2431141244158,14.7654029332107,15.2133438944789,14.5890997817225,14.7398477909287,15.0477594704357,14.3446598709528,14.7783403027625,15.0967978904989,14.4729993363703,14.6531625543453,15.0574385425802,14.2710001187049,14.8370708333007,14.8019335278937,14.2413287026746 +"Q9VSW4",15.7054853367037,15.3855472519783,16.5815342683009,15.4924469047125,15.3622872736203,16.3293029266139,15.6058849840891,15.8930349577534,16.1835682286272,15.5459869803442,15.7931314468699,17.2425641203833,15.2855017094668,15.9370090874539,16.7421456831208,15.0300960015848,15.9497512809018,16.0813325331005 +"Q9VSX2",17.8801381551785,17.6360063435899,19.4039543192784,17.2746634807615,17.1862723979514,18.9560109703304,17.6348478452584,17.5142220659079,19.0507258901774,17.2694004166374,17.0946429706386,18.8304065494203,17.581093076933,17.3285101993863,19.0796116795318,17.32728234609,17.1093638046917,18.8458671676342 +"Q9VSY0",22.2565180670903,22.5980735369301,24.0886116458415,22.0452638823384,22.3847571386636,23.6277259155117,21.984696991329,22.1934719319995,23.8306185402154,21.5670372128402,21.8702601435407,23.3491639916091,21.9198198311243,22.2989929028318,23.5513871945536,21.8805147217408,22.1078197696204,23.425534280249 +"Q9VSY4",19.3384481736634,20.7219756276495,21.2112890803109,19.5117117614714,20.8006706686065,21.28912921741,19.2726773592952,20.6933682341953,21.0427259689194,19.3651927940443,20.7039508464239,21.1826314423653,19.3227850141176,20.7730981672948,21.1869551058521,19.3470005450284,20.7292087664826,21.1268188300804 +"Q9VSY6",16.8792334824887,17.7382171348313,17.7136175731994,16.9020471589887,18.0170902762467,17.887751775882,17.0817558176136,18.0490563487462,17.9992295719072,17.1737816988396,18.2497774884135,18.4870899023363,16.8822747300758,18.2416793398977,18.0853392897321,17.1387336819249,18.2852658248994,18.1913597280497 +"Q9VSY8",17.636324345782,17.8471620590824,18.9313877035824,17.4196099129656,17.8691041154219,19.0718702547435,17.5044741540195,17.6757421368341,18.6645292761361,17.2988159654122,17.7231074013438,19.0653471041093,17.4487324091228,17.599278915,18.5927909040155,17.5793653975328,17.7515445969022,18.9156255402517 +"Q9VT23",16.4353791208493,18.1905818576022,19.0125547179463,16.828345122395,18.5810262763993,19.2919055763094,16.7753043307784,18.6040861366639,19.3387471368154,16.9516030881804,18.76437540451,19.50755637298,16.9773360869263,18.9394783117155,19.7742263359013,17.0256669791289,18.8901589706072,19.5088742677106 +"Q9VT75",13.1754839673688,16.6128342083344,16.6916437950721,13.3467112236093,16.6690579798285,16.6686461324451,13.7254758108198,16.7404734553942,16.7051027888765,13.3878138336437,16.8036562724099,16.7321309292984,13.5121811163407,16.6408228936501,16.5548560488875,13.5691909185916,16.6991017227162,16.7288886030451 +"Q9VTB0",15.2997795907693,17.359073534068,18.5426171389529,15.2906686521566,17.3958607208394,18.4958166526789,15.3543928662935,17.2889962863605,18.3578287731023,15.6926919418256,17.4245537224782,18.3611171887233,15.0165890512708,17.2320228677112,18.3983964209738,15.3330535547342,17.0850610828217,18.2727610804689 +"Q9VTB3",19.5165088840496,18.8909920699917,20.9662468313777,19.4835191887079,19.1760280479668,20.9992684648115,19.3381254103474,18.8639791662215,20.6532986617141,19.3425858368921,18.9389242503585,20.7559559815613,19.3785468930855,19.0749597487482,20.8035245112481,19.1982810225388,18.8592446720205,20.7308926221351 +"Q9VTB4",19.7775124631725,20.2411932660763,21.9610561805351,19.86168463464,20.2640102107479,21.967577066341,19.5942288248609,20.1077638726858,21.8039290070015,19.7960912396776,20.1197467562919,22.1705505565026,19.8233141125193,20.1602286114589,21.9533300346552,19.5893967135493,20.2180721928872,21.8294978015281 +"Q9VTC1",14.3077422133116,16.3785658015506,16.5575328271792,14.700414351081,16.6700978101139,16.7906294377994,14.2829247669593,16.5852152899014,16.3418859789656,14.4386545618326,16.5293168122398,16.5208702353342,14.3262747868303,16.5583810546001,16.55795246681,14.3474267121681,16.4769040059905,16.4918017592085 +"Q9VTC3",16.7244162637417,17.3281113968239,17.7103078631417,17.1650851220547,17.1983406208368,17.4170889830131,16.4785316643727,16.8112782711554,17.4562521326622,16.9260379834242,17.2334823322702,17.2923616566414,16.7506627321383,16.7618708957984,17.2844316612296,17.1432918639974,17.589171925163,17.2905538046484 +"Q9VTF9",16.8519720205287,17.1727708095578,17.9147340341925,16.9149567203096,17.2168198288691,18.1131709406652,17.0089336782846,17.132315751147,17.9637312017406,16.9789435254901,17.3696131508902,18.3210032575079,16.8981087670209,17.0500053642851,17.9439111191453,16.7931994275499,17.4645389047633,18.2208523757002 +"Q9VTJ4",13.3529287453769,15.9938930543413,17.759318335068,13.267090249276,16.0096895279456,17.9431379398108,12.9959984648374,15.800407006844,17.4398718423029,13.4085114262099,16.0414136155186,17.8123744342494,13.0521857477085,15.7524744399723,17.5932042537841,13.2586360546401,15.8922568406042,17.7934905488839 +"Q9VTM6",16.4559549390219,15.9457887153322,15.9136696725461,16.4953047129034,15.8854862661791,16.403301800452,15.9386043386256,15.8302576360059,16.0071180750338,16.8960677517073,16.3706033786218,16.7737871536364,15.8030660457099,15.2844107618197,16.4676950219078,16.3198484875122,16.9210826614645,16.5690331932762 +"Q9VTP4",19.6385925936941,21.5281310312707,21.9035814075473,19.4946781076705,21.3538710046223,21.7301592966303,19.6502999996334,21.6699257603994,21.9688192214402,19.4485153645216,21.3480664614807,21.7278432064059,19.4426775965183,21.6219665949609,22.0277108947557,19.3909151024427,21.3926697725555,21.7022164106175 +"Q9VTT2",12.7384800556853,14.244479497656,15.8300712593569,12.7244208000829,14.180058443916,15.4366890382637,12.6692142092008,13.8112140277582,15.196141487847,13.4589110505259,13.3398309202515,15.2326024089453,13.077814654798,14.0731837139084,15.6391985484816,12.897002671273,13.4355038782932,14.7870170031688 +"Q9VTU2",19.933249668215,21.0353177581257,21.9309437406479,19.9431668491964,21.0684852989743,21.8790219490941,19.7475477430229,20.8242942444848,21.6675551500125,19.6277121744623,20.7886337527452,21.6508268004574,19.8117011735114,20.9686392983179,21.7328638910391,19.7807904469703,20.7368825934617,21.6244673020049 +"Q9VTV9",16.2718086046469,17.2917390177114,18.0954105723626,16.3460996945391,17.2947767414473,18.2145066300307,16.3612048364797,17.630788905881,18.1083366376807,16.165152226948,17.2502010702787,17.9075699663318,16.1832474445298,17.4562157499724,18.2221454538233,16.3791262348791,17.230583882675,17.9915941858711 +"Q9VTW6",13.3067830174074,17.1471609873513,18.6669681191251,12.7696577826269,16.9847732933858,18.9200354702684,12.9766550098713,17.1351687757185,18.393896333314,14.1966724925196,17.0316946102962,18.7691261316376,12.0474230697877,17.0709525883743,18.5435196086508,13.0405239615579,17.0955123413118,18.7367184371685 +"Q9VTY2",19.8841059989756,20.6837183823125,22.7417134512027,19.5039299739342,20.6861167147068,22.616547469166,19.3288594981446,20.491198659884,22.2159571457432,19.3528147373455,20.467590634052,22.2980960798349,19.3295395546889,20.5128061037437,22.1849961418129,19.1861862820998,20.4052109110247,22.0669752558782 +"Q9VTZ4",16.6655960013305,17.7488117519641,18.9031409845719,16.978728594794,17.9774198916159,19.1486217476825,17.2361168579924,18.3137940336378,19.3102854546506,17.116727284748,18.2583059937516,19.3210690407855,17.2072606459898,18.3464073840507,19.3444680723848,17.475129135161,18.4423737214753,19.5187175270454 +"Q9VTZ5",16.8699912905005,18.0504251158253,19.2321745798455,16.9057209079502,18.0393421854325,19.0815842731076,16.9250032615656,18.1909641441908,19.1460271943283,16.7156062489656,17.9830331397064,19.178211410427,16.8809533214683,18.3054469176411,19.1903248997066,16.8559166608372,18.0633909244196,19.1187278124707 +"Q9VTZ6",16.5782269473364,16.9321912450444,18.3720601576002,16.2119676894114,16.7983351522187,17.7097284502812,16.6522158663051,17.1064705545237,17.9054358889368,16.3147171720397,16.7776257281863,17.6444208781276,16.6000508393656,17.1206529181114,17.8311152180415,16.2353331905161,16.8131431616811,17.8092609547751 +"Q9VU04",15.7630421571119,16.6731764695782,17.5005994400777,16.4236976729507,16.7054922550968,17.6789849106668,15.7445113754665,16.4058385183121,17.1330541351808,15.869393749789,16.383150006192,17.3343923569457,15.6716824893337,16.0129126632251,17.2004533033458,15.9088966717779,16.4277756540436,17.2714476933818 +"Q9VU35",21.6305457803478,22.5609441526798,24.1188719004448,21.8153347338629,22.7123814476968,24.1966984281378,21.4831537308066,22.2077611291348,24.0132065958623,21.6348778968707,22.4741389249499,24.0883205411349,21.6126924723821,22.2968046280286,24.0371066923156,21.6342158584827,22.3704085446779,23.9400476870969 +"Q9VU45",15.3650046072141,18.8375129165962,19.5064867319328,15.5251835832834,18.6697348878988,19.419362754557,15.6203957418697,18.6246357069068,19.5621019011604,15.4519946246222,18.733673143891,19.7288110958965,15.5474048144249,18.5192161148077,19.7488834395476,14.8557423598568,18.7354407088671,19.4930064342832 +"Q9VU68",17.904511056992,19.455027620808,20.7260468136817,17.6326676155548,19.1355139321567,20.3674860542773,17.8215024912471,19.3160505926028,20.4350978168767,17.5989846241913,19.0261700838122,20.2951966359011,18.3861221823026,19.8998870281208,21.0899104246452,18.2583901301906,19.5364588403692,20.8738784472373 +"Q9VU70",14.525704416046,14.3162311106364,15.9087882440147,14.6287002904633,14.1013158461506,16.3726529358611,13.999958359016,13.3143437659452,15.4370800259394,14.3038728570115,14.3824972373294,16.2901143583297,14.3982108770372,13.5895046585891,15.6476126529809,13.9615946521573,14.224198298492,15.9964473788001 +"Q9VU75",16.7757299583543,18.50699799905,19.6604389862694,16.670327239494,18.2461411285374,19.3355322013372,16.8723231382449,18.4914000426117,19.7412051329414,16.6337808912985,18.4317131824541,19.4628878323655,16.9116609580477,18.5700064719776,19.5255630341171,16.6785158489356,18.4709656725434,19.5433495317339 +"Q9VU84",17.4989356353577,17.634064856118,19.7672765831209,17.7431605889461,17.7994298691656,19.8047489507103,17.6313876861805,17.6474946645507,19.8129738325211,17.6253852722407,17.9138487723982,19.9177665796935,17.6978144273919,17.7254702889669,19.7667642466653,17.6398529791546,18.0783964454208,19.8157858183567 +"Q9VU92",16.1813576753689,18.28760595879,17.9711186748946,16.6993879476515,18.4825823254317,18.0742533641404,16.4825453456764,18.3762708905889,18.03074763813,16.5906725422674,18.5450852229194,18.2667212228263,16.3444232607393,18.6172064192489,18.389624674607,16.5335447206437,18.880091419144,18.4059160967647 +"Q9VU95",17.5532426242468,15.6877505591808,17.4435924829755,15.4909229661871,15.5465372688205,17.2282486730668,16.4480487740255,16.508040199282,18.0065366626406,15.7464036196004,15.7989204662974,17.7410740104953,16.1970805614212,16.3501237745806,17.9395657474777,15.8096043048032,15.6042430949243,17.4608676423048 +"Q9VUH8",15.0736984575515,15.9578899053862,15.243518035221,15.0230918415954,16.0437750101205,15.2484662385382,15.2055084090837,15.879002398816,15.1058829962944,15.3845152937675,16.1276965520449,15.4470008727437,15.2871066496544,15.8406520939517,14.8914056892327,15.3341256795366,16.099487505194,15.314110349877 +"Q9VUJ1",19.0472186655281,19.1974813046853,21.2913852326691,19.0941885143207,19.3723780387707,21.3788661434833,19.2320738827599,19.4515199778252,21.3651843482322,19.2315682809226,19.5840363213248,21.6323075519884,19.0915222897991,19.3900105667515,21.4425653855628,19.3006606238523,19.7186909576365,21.5827266921613 +"Q9VUK8",19.6296449255889,20.5757311723614,21.9329841575385,19.6971443697826,20.6516160329791,21.8896888246309,19.8210658555884,20.6594161043781,21.8951183949252,19.7079828075857,20.583087567411,21.8274789542091,19.6376264571682,20.7114158409286,21.852600755524,19.7644117986476,20.6788420000574,21.9186985805838 +"Q9VUM1",15.4034211141036,17.2369251457251,16.7058592367543,15.7416392843094,17.3181244084146,16.9328923969626,15.5059122172543,17.348130310123,16.5182171321072,15.5102025076661,17.2991343621554,16.7671305023148,15.6371452751286,17.4168076332968,16.5798283364699,15.8421476074802,17.2169068860132,16.5189343595815 +"Q9VUN9",15.6390328861383,17.6427839967727,16.5014951409878,15.9117949049959,17.6844473936203,16.739897631235,15.9292321923011,17.6759385923585,16.7612111626566,16.0308573340965,17.7845104367984,16.9452233954741,15.8355706400835,17.6429182714564,16.6950310984296,16.1015414608505,17.7845419236112,16.8890649662006 +"Q9VUQ7",15.6471150042425,17.3032356330586,17.0871057577486,15.0826440234894,17.2043712109049,16.9339337130316,15.4300612931535,17.2697507723561,16.8160551501418,15.3144729883017,17.3351363900561,17.0032285265437,15.0372531140094,17.3204897698832,17.0124590927719,15.5014530425486,17.2488346641566,17.1150046177503 +"Q9VUV6",14.7016623006433,14.187563986391,16.0772254099648,14.6376306330968,13.8574235355736,15.7503728815761,14.5563619826921,14.0489836802256,15.7416563276176,14.5751685682643,14.1272125385846,15.7355357973234,14.5977587440489,14.073975011528,15.9784728858785,14.6947033457745,13.839574405988,15.5850183452437 +"Q9VUW2",14.9453278610087,16.888021960928,11.6400628786514,15.0143701548315,16.3438373820687,11.8852806659832,14.7892505401315,17.003973265716,10.5543951892972,14.8164827436348,16.274516666645,12.0898488685436,14.8342859835722,16.9541383850896,11.7121127091883,14.7673438312846,17.0357783667986,11.8443884689355 +"Q9VUW4",13.1862324171116,15.6529010727964,14.6195154646549,13.1367606327651,15.8882329326562,14.6569282407459,13.25960669675,15.6070397496654,14.6930998522348,13.2466021854009,15.82436573264,14.7978505354326,13.3970353410205,15.8311189170515,14.7993738695204,12.9355461076567,15.8654009641696,14.8224526025101 +"Q9VUX1",15.4218500539391,15.5264160453857,17.5826318506075,15.7956270115337,15.5420885094516,17.6409892721262,15.8748167575791,15.7115485124076,17.9835171634169,15.9697802442324,15.7622075082916,18.0815890297713,16.0043446997896,15.5135860199399,17.8083225752619,15.881809849056,15.5698804136191,17.9044253337967 +"Q9VUY9",18.4463780781447,19.4420713254995,20.9137552984628,18.1163970044914,19.3044090769397,20.7277845659209,18.7264399824063,19.8399543999351,21.0931906801773,18.4920378673229,19.485925035831,20.7997716327788,19.0267070494222,20.0754966546256,21.3773510096965,18.6520640205955,19.6566006679253,21.0599005213045 +"Q9VUZ0",18.1756271659764,16.2282100089215,18.7855023904185,18.1008714608445,16.2668861065402,18.5661085257464,17.6638416011613,16.5230103113611,18.6293004140181,18.087626742525,16.2827123806497,18.6587405901842,17.6899825800436,16.4269408168305,18.7217327853893,17.860186526605,16.3678968638596,18.6587994464688 +"Q9VV31",13.8802716571374,17.2166014138472,18.8292093752036,13.369061833691,16.8247007878886,18.0708715309514,12.7505500523664,16.6418819248187,17.8600141340388,12.0603903769161,16.2817816589228,17.1113236113683,12.3055671858383,16.3950465871226,17.2316919754535,11.5469055354708,15.8337274126356,17.0441320335786 +"Q9VV36",21.9407978014875,22.9980548391222,25.9067937469265,21.7133654327717,22.8391065813998,25.3589855965101,21.3302828791997,22.4068729684636,25.221271554156,21.2028312610453,22.4816127235918,24.9749773914141,21.3017976074846,22.6293962882524,25.0906586400184,21.1432512445393,22.4112066370567,24.8436021933966 +"Q9VV39",16.2209932068921,17.156413306179,18.4590217562644,16.2471784541127,17.3436979240413,18.5777902216845,16.5073087953989,17.459413839821,18.7525587366984,16.4260066178224,17.4951531154697,18.8341191409797,16.5038719478854,17.6404484432645,18.6651244442172,16.6985296322038,17.6206060390074,18.845774465172 +"Q9VV46",23.2169193432041,23.3860027797115,25.1874715089102,23.653654775182,23.7260524950618,25.3918036815283,23.3840227269704,23.4118939934991,25.3332128967635,23.2029800333862,23.3691574271466,25.1446419865113,23.1331441372351,23.2940604627873,24.9403018737052,22.8240598011679,22.9857008885331,24.5885343871065 +"Q9VV47",19.9469370200885,19.828963740975,20.939187462131,19.8809738400101,19.8950273409735,20.8657471964033,19.8304382809667,19.6936632143522,20.6181666786468,19.7729575773162,19.7590976304213,20.6582926770899,20.0583845770763,20.0037114736169,20.8724395740557,19.8271662496347,19.7961366936554,20.8062799985672 +"Q9VV60",18.6068346392905,20.4808280438596,21.4078654921138,18.5040724005492,20.3416810272033,21.1891726807178,18.7774036876081,20.5171087201061,21.298097034476,18.4208905271869,20.1870636239654,21.1056758880729,18.7417581090517,20.3576847033155,21.2044087964009,18.4764221598988,20.2292806393111,21.0531615267664 +"Q9VV72",18.356625931704,18.9993227180716,20.6098811864612,18.2314313959569,19.075156795314,20.7806489181355,18.3972605769757,19.1954951218315,20.7698900309514,18.3984158985888,19.2029481053707,20.7812010353021,18.020493153064,19.1913715890079,20.817935967381,18.6822163035655,19.2220846088215,20.6446625272789 +"Q9VV75",23.5513029709289,23.7861280344811,24.8706918137727,23.551661416752,23.7798231592125,24.8350203940205,23.4109417849088,23.7143965199417,24.7683209231971,23.2595496645716,23.6029075579331,24.7120107598732,23.458718651279,23.7604112344937,24.8023404492933,23.2690774926333,23.5819464481812,24.7227667478952 +"Q9VV76",13.7169301025215,17.3803259345972,17.9863066183576,13.9091727576937,17.5270711925548,17.8908964918067,13.766832126417,17.4013626010415,17.6059786801324,13.7863860432919,17.5811659076054,17.7729740906651,13.7066854845478,17.375459273057,17.5432278467878,13.4405825220138,17.8397598436773,17.6967840310914 +"Q9VVA6",18.7210522806588,19.3800609039294,20.0198896119164,18.7979584289604,19.2003685737418,19.960898443688,18.5729654050908,18.9973198357272,19.758249219796,18.6163228721971,19.1227733293671,19.9864869862227,18.5595602636825,18.9228919626834,19.7252377193524,18.7795936286837,19.1644824890697,19.7302949950364 +"Q9VVA7",16.3595703763547,17.9984663951711,17.6018443911163,16.5033739435852,18.1411566109506,17.9939131665293,16.5162772980559,18.1835822132568,17.7838992225648,16.494419876322,18.1686327808012,17.9997914269681,16.4899034369643,18.1634225712394,17.7733762654612,16.6211352112148,18.4830641675726,17.9805172467517 +"Q9VVB4",15.0241849748604,16.8705625995151,16.6541929943906,15.2327547604747,16.9126791396523,16.3745956707356,14.88536621753,16.6876319769832,16.4041743316155,14.8667135076251,16.7780317720807,16.5102112308011,14.5137735213229,16.6272798955074,16.3275765953745,14.6161604605674,16.4112415771789,16.2166766438983 +"Q9VVC8",15.3918098268012,17.0678170246704,17.2199760513851,15.7621486808093,17.2915811555024,17.4498787768278,15.329300261345,17.0306154909948,17.0587464187333,15.5161875661298,17.2639231898799,17.3759752472987,15.2819899745815,16.9981864559718,16.9374114511519,15.5829444846454,17.4409793337014,17.3188580166968 +"Q9VVE2",17.8816268901852,17.9491293597242,19.6094964782477,17.7219669783906,17.9170841531505,19.6382704554501,17.6734690644314,17.8879180429198,19.2958600967986,17.8761593892684,18.0548821727195,19.5449308561211,17.8151175376918,17.8537820410653,19.3326396039301,17.6276278148612,17.7619436684914,19.2266960590931 +"Q9VVG0",17.1149457464151,17.490904727643,19.286796351762,17.3041793622401,17.5433817151798,19.3125010093137,17.2972846709468,17.5620430439492,19.2802273453649,17.4024400718924,17.7555225689083,19.4239404941214,17.4323075336571,17.6665414407278,19.2378692664181,17.5432324398576,17.7260864796867,19.3831962554526 +"Q9VVH3",19.6456321040616,19.8455138497688,20.6302485065269,19.3909080181491,19.7632073590858,20.5650688330635,19.5699408011948,19.7970128813603,20.4468122056021,19.2207496834193,19.6391450066913,20.3795927189449,19.6707659412091,19.784979904214,20.5744022833643,19.350400342403,19.4808785542732,20.2566644376366 +"Q9VVH5",21.8855055971179,22.0914524556285,24.0535304169685,21.7275903489662,22.0456449185676,23.9726371364685,21.839038289282,21.8897340354453,23.864389471586,21.5343656266887,21.9313129429902,23.9155566415593,21.8614148551418,21.8736604375215,23.9701725543331,21.6642912251218,21.9208246473103,23.6923300003182 +"Q9VVI2",14.2304124545682,11.8153279597889,15.564922424105,13.843299737935,11.7253297007112,15.6139242875318,14.2157668727416,11.8634784607002,15.5069453515333,14.1776370608343,12.518392821376,15.8451563307855,14.1611161595761,11.2573813694013,15.4456200210412,13.9622386396894,10.2752207558957,15.6587902268454 +"Q9VVJ7",16.826858436463,17.9471326471895,19.8575082173458,16.9109556729756,17.9957456847049,19.787980453564,16.8414677623433,17.8779057717778,19.8105335710371,16.9810083493448,17.9045440948003,19.7620463096316,16.7879330117778,17.9179345330181,19.7317867722656,16.8409425745942,17.7269449966394,19.5116598698008 +"Q9VVK5",16.0938681538964,15.5072208009198,16.6706111552529,15.6558224444613,14.9608634844903,16.4871308989838,15.8662595142211,15.53390679591,16.4665065594962,15.6469229640382,15.1648754936826,16.4414063497679,15.5895493832167,15.4468038829614,16.4903656498614,15.7448930945516,15.282760354736,16.5219043560839 +"Q9VVK7",17.3090199362581,18.430654222806,18.8827334929367,17.4828667405241,18.4629872340144,19.0232768015501,17.4101221205942,18.3838188685024,18.9503796359756,17.2803428509582,18.3104243677392,18.9577413803157,17.2879196130648,18.3039148538243,18.506974658674,17.3278329092797,18.2013813271425,18.8571544425782 +"Q9VVL5",16.2593540387677,18.4829430086484,16.8942170951059,16.1827500921918,18.3308658474115,17.031917728521,16.2279707515359,18.5880183404874,17.0779981354623,16.1322228601313,18.4136321999034,17.0939736609668,16.397457778734,18.6383190441321,17.3316137448738,16.3088636465789,18.6948281329472,17.2227029437158 +"Q9VVL7",23.0352556530349,23.1575182843364,24.3612125793663,23.3115259886795,23.2216783579069,24.4181815016752,22.8413893393145,22.9907376565514,24.2814425902088,23.0162246686505,23.0846860043302,24.3205939941959,22.809568243606,23.0951846067378,24.3370948716322,22.9907426632332,23.1780391595529,24.3932343244051 +"Q9VVL8",14.371964483679,16.896361145337,16.4513381657782,14.6961316962306,17.098670326019,16.5789465970346,14.4044633822936,16.891239730576,16.2220975693605,14.3981262525879,16.7779384522936,16.3222293336921,14.5114679122404,16.8973964288917,16.033906915955,14.2686991822434,16.5418853999115,16.0981502237462 +"Q9VVM1",14.9408398724757,15.8707940572917,15.8881987658616,15.2633266645418,15.7487819615008,15.5997163886562,15.1217176816544,15.9029983621886,15.5401297277801,15.3426112238614,16.0603192186602,15.7533435033774,14.5980879248999,15.8355839859647,15.6776804437296,15.2391847928261,16.0787394003468,15.8617127839084 +"Q9VVN2",13.7149547383169,14.9607607544758,15.3678346002704,13.8667921330787,14.9201211028816,15.4760634847476,13.8174149950882,15.0873311129231,15.6879877590817,14.0628584820354,15.5533246458516,15.9240319527388,14.0178495961117,15.0927983649947,15.7424114006169,13.9362330981888,15.7885204286073,15.6679699114006 +"Q9VVP9",14.8006751386073,17.2322108727356,17.9980252638777,14.8909308743646,17.3072287207806,18.233378820967,15.0948031561065,17.2805165363447,17.9305913241614,14.9970144227195,17.2413071911564,18.1272115017591,14.5331590577538,16.8320478479655,17.5821790414064,14.9837586319948,17.0750038200929,18.0143875996761 +"Q9VVS6",15.5921807972317,16.6586219470637,17.5636401000716,15.6168612253511,16.4035172062533,17.4153633513814,15.5898921785113,16.4848831234633,17.3030450267041,15.5848566598255,16.6957784350461,17.2875147579931,15.9078127745059,16.2125991978015,17.2936118116333,15.9109092506104,16.5712722571181,17.2828580502041 +"Q9VVT6",19.1994498472254,20.9162689945209,21.6014407495249,19.2835774467445,20.9213240405509,21.5112766038509,19.04866008824,20.8321325813831,21.5300120020472,19.1225455132004,20.7454192246963,21.4827644465089,19.0584794392872,20.9125802772968,21.3865370761475,19.1130700797946,20.7186012128227,21.3315289287711 +"Q9VVU1",20.2446690571787,22.3609869605872,23.2000606032854,20.6132860457142,22.8458252039554,23.5209869147318,20.3951964819862,22.5531256092485,23.375552053727,20.7249785809047,22.8956571920713,23.7772826005322,20.7274936735985,22.9139029521567,23.665050449888,20.6760768137417,22.786020651674,23.565184751664 +"Q9VVU2",18.6808038344667,20.5605969968683,21.0589755250051,18.4692590442715,20.4579132689639,20.9430489328383,18.8717630059014,20.8228106661591,21.1959627169846,18.4475356202444,20.5557984097721,21.0508726508586,18.8361693751728,20.7209502156176,21.1530798981146,18.5475330845542,20.4231066534315,20.8265852804882 +"Q9VVU5",15.2353498409629,15.6856988015311,15.8899917621935,14.9134608197319,15.5722081439712,16.291417605997,15.2023512762958,15.4531379482734,15.5699919651406,15.1941867841544,15.4996515578197,16.1710557549232,15.2133422196406,15.6870734118525,15.8606542431498,15.5901865957564,15.7440319162103,16.2332282799009 +"Q9VVW3",14.1042848274452,17.1164595753595,17.7837925402797,14.0102171593596,17.3052068793807,17.8782943570774,14.3002195123848,17.288392134277,17.9032389852808,14.4966352533149,17.3135824064446,18.065943277377,14.8363057017396,17.4709504232216,18.0954670241526,14.7382767009079,17.5784220341838,18.0675590678905 +"Q9VVW7",14.2304726284777,17.3413954581627,18.4205890281446,14.3043112833754,17.5262481290636,18.5440657653563,14.0429229151643,17.1167303154944,18.273491877548,14.2252452149323,17.323834397802,18.4372956162516,13.8365030875956,17.1782689398222,18.1262967987954,14.0910067478462,17.3283552375715,18.142774407506 +"Q9VVW8",14.9674037854222,15.3027136450231,16.9729726081866,15.2202004020667,15.3889030163529,17.0032278751972,14.984556854948,15.3701243142774,17.0294010359898,14.9111395871224,15.3504085918308,16.9092246927777,15.1113089351388,15.4985724727852,17.0503789594514,14.5026787758368,15.2655319565398,16.789662125982 +"Q9VVZ4",16.0251236542307,14.6754836145749,17.149855915562,16.2661915600704,14.858890803218,17.0139085833102,15.8297641687537,14.6724115367467,16.7041222974896,15.7298968798638,15.1865270185638,16.9303957984616,15.7036281073902,14.9620743546326,16.5230999623756,15.3340071040163,14.5177591681721,16.5064400386148 +"Q9VW00",12.1965476617673,16.9492558367805,18.6022852364146,11.9106117830284,16.9163913573223,18.6824476102562,12.0321031651346,16.964339023033,18.5562881142334,11.5611782388544,16.6652269356226,18.4044207357441,11.91809685595,16.952800801197,18.6123653824243,11.6835811837067,16.9348923619484,18.3593385685989 +"Q9VW14",14.5795762167485,13.8026290307517,12.9136957889524,14.2949414754132,14.1163110854698,13.0961441993671,14.4719535539827,14.0893033659605,13.0407276630891,14.4207995531888,14.0048361472022,13.1025533566742,14.3328197218256,13.8292880968125,12.5784084556308,14.592511794547,13.5534280766046,12.7643212868998 +"Q9VW26",17.0267126934026,17.625870921643,17.8134102047537,16.9641957641396,17.6485013505673,17.6613985892337,17.1153669174213,17.8511407131551,17.9127528593069,17.1153202316015,17.8852117632531,17.8979682668858,17.0540081256066,17.7939276605035,17.9240411552865,16.9664941486864,17.6344952978493,17.6543168091482 +"Q9VW34",16.769975702397,18.6853024624455,19.3022220014748,16.7277422001787,18.7989366149827,19.2350171819948,17.0179285801407,18.8093291066287,19.6069671327195,17.088629469448,19.1014039760208,19.9554008089772,16.7840584402571,18.8686575581491,19.5872532234257,17.0674035346482,19.1617249850918,19.7510481258025 +"Q9VW40",13.7115870541538,14.9926560346881,15.560561160534,13.2578824128432,14.9481209453345,15.4780355803555,13.5221076839983,15.0875970540475,15.3428142429202,13.5344265597324,15.0667434686589,15.3863856869943,13.8583432638354,15.2061798026409,15.4846787145309,13.4163425380905,14.969313342547,15.2476387787232 +"Q9VW54",15.1265207575234,15.6934345281064,15.9970179912587,14.9461417409382,15.5911734490716,15.8345695148436,15.7755000388997,16.1268658476206,16.3488818502106,15.3929681930921,16.0609052282032,16.3447987673327,15.6941509948319,16.1172988181429,16.4533495111089,15.7010610488154,16.0933843185677,16.4935233626109 +"Q9VW57",15.0481189737161,16.4038358301339,17.7749234110914,15.1549527053217,16.5330911419386,17.9120902315194,15.3773706492403,16.4751805144778,17.6825234701166,15.4089607981932,16.6391793529472,18.0928986170546,15.2032677903164,16.526731119413,17.835230568934,15.5251147559161,16.57988857096,18.0066202947228 +"Q9VW58",14.8978202210974,13.1959260648739,16.7613879792917,14.5496365467631,12.9618749762625,16.8579792113501,14.4023699877594,13.3275979452626,16.6202853238683,14.5418640096693,13.4434417708224,16.6262731273569,14.0822798688818,13.6865439359521,16.8880895398317,14.1597550826418,13.6961362515346,16.9563659770426 +"Q9VW59",18.9441666969429,19.7682064939108,20.5657917960148,18.5972608003565,19.7040505867338,20.6052232880524,18.6805223353761,19.7371447160318,20.5016142549859,18.7248900912688,19.7709796283339,20.6767964083125,18.9062729211239,19.8333562116131,20.6789963919601,18.8954205400997,19.9659094969094,20.8404806453592 +"Q9VW66",20.6767487898122,21.2341187331813,22.3706688200326,20.7370424470723,21.4572164655548,22.5199327799139,20.387637992056,21.1428527370533,22.2294235763482,20.5067485131729,21.2795971730302,22.2769927514636,20.2412059540515,21.1460919181395,22.0775649743982,20.4448315363738,21.2873098132611,22.2142733289952 +"Q9VW68",22.0117462028848,22.6476518022661,23.3193050644413,22.0731894548138,22.8523034034132,23.5997776600174,22.3351945494411,23.0221338040665,23.6173112732292,22.2547731613268,23.0168388691225,23.8198902168678,22.3887755234622,23.16878904651,23.8583982634363,22.3018517379183,23.1121215562944,23.7849623607837 +"Q9VW73",14.405280094754,13.2049345732004,14.782359156494,14.1517783089343,13.1491845564994,14.8309270729546,14.5997270238834,13.2557527606088,14.6373087239807,14.7292764321573,13.313704302621,14.7031034788951,14.7196139262441,13.4137123511558,15.1131746142963,14.808629784315,13.1580569751185,15.0201083932756 +"Q9VW90",14.7260891781953,14.305368765856,17.0129362833746,13.9741791760991,13.3818274637281,16.274457771749,15.0398861378742,13.7537019001082,16.996909000233,14.5509667457936,13.6434555302157,16.2910855129007,16.1115679663976,14.7492673324048,17.7647626517287,13.6123948112541,12.4469028939785,15.4281251627851 +"Q9VWA8",14.3460996882291,13.3574785211545,15.652026010392,14.4746867469828,13.380224003763,15.7223370435667,14.3246897373845,13.397364190632,15.3550916861397,14.182034429884,13.7035686863349,15.635556738203,14.1734715237011,13.532081812326,15.4809729033083,15.0487162896021,13.3956319067499,15.4240526796042 +"Q9VWD0",17.6793977087118,17.9038874049904,19.4251465450644,17.4251089122582,17.7492607219279,19.498085753066,17.4106764182303,17.7689129891996,19.4433721260172,17.2664996845526,17.6007309310223,19.2891637498978,17.5218385720118,17.7000942720331,19.6022297912787,17.0922020701119,17.5007617662843,19.3612407323222 +"Q9VWD5",14.1368488238189,13.5504749713151,15.4597881376123,14.1065162290052,13.3333615010619,15.5235071463896,14.3036760454265,13.3066924359831,15.6537408836606,14.4060362490207,13.762847421185,15.4717476757147,14.3672175782593,13.3388338190281,15.4330716860114,14.628834014279,14.0108331430878,15.5519416484758 +"Q9VWD9",18.5215241836255,19.4308714500012,20.4210885893657,18.5531977371592,19.5333302000045,20.395105192306,18.4278173553079,19.4884110953166,20.317338431864,18.5557884838798,19.5407425315841,20.2939372283881,18.3908690321269,19.5615102567073,20.2155929195619,18.5174654673153,19.4343129359701,20.2783740974399 +"Q9VWF0",16.119364817611,16.5117668545907,17.0982749681184,16.1519970168308,16.402237875077,17.2614633925447,15.9865665821449,16.3052025557965,16.7594023865224,16.1911460985379,16.085418985517,17.1136284764584,15.7696209220466,16.3268975131138,17.0348554833623,16.0177634270067,16.1455115144968,17.1068092553334 +"Q9VWH4",23.8210062605574,24.2162427337803,25.5354808391785,23.817340803719,24.2170442012131,25.4373937691307,23.6369121054666,24.0680363385776,25.2870585465092,23.5556637019565,23.9925775346345,25.2475026684043,23.5963818256062,24.129646775897,25.3343550256186,23.540592246043,23.9548728605252,25.1854989116047 +"Q9VWI0",19.4553121861328,21.295482012672,22.6199839467457,19.4127922633419,21.4119153473202,22.4811680679033,19.310790094718,21.2339098938235,22.3061236514454,19.1547783468077,21.2241791678731,22.2768648318218,19.108257014705,21.2721079620175,22.3214850097369,19.1308511217239,21.1851224184591,22.132796530332 +"Q9VWL4",15.2414638097925,16.4159131991382,17.8291500334248,14.857897418656,16.087457124286,17.4719036328413,15.1552240920877,16.237577447456,17.6672797567622,14.913384879662,15.7546808963662,17.2369315918237,15.1101762288347,16.3262050889112,17.4713412931482,14.5212183122139,15.7443069462437,17.1068380969259 +"Q9VWP2",18.505722345932,19.9472547817063,21.2330480247738,18.3901020808154,20.0197309781649,21.1983931087088,18.1422512381325,19.7421809643293,20.6480134451189,18.1948509363612,19.7585297864837,20.8002032155281,18.1174974695905,19.7608273980944,20.7630087342049,18.0313882001741,19.6158234331687,20.5261051560534 +"Q9VWP4",12.915066850162,16.1272218296992,15.8306762664145,13.4149573071621,16.1894753601392,15.6381285741942,13.5085624951358,16.337456500351,15.6807917062541,13.3612342855259,16.3869898445484,16.0521399453417,13.4737340326894,16.4720032018748,15.7432877782935,13.624612598159,16.6424757782247,15.9957814379106 +"Q9VWS1",15.610061973361,16.9182515753857,18.8419839336301,15.7966526450181,17.1733375462302,18.8009499590254,15.7078002089297,17.102053084162,18.8112143234642,15.7296648908796,17.4700140024915,18.9224707974361,15.709536071812,17.0093120252779,18.5652863200681,15.5061133811297,17.2235806265548,18.7202982942811 +"Q9VWT3",14.8767046001389,13.699349179885,14.9463023132601,14.3245954383908,13.4243008895043,14.837640711815,14.7671518349568,13.5945444968405,14.8305511308394,14.4236186545165,13.3388948925452,14.8583903622415,14.4867821850411,13.3615176953086,14.8708370795732,14.4546964046125,13.4802901700003,14.796266335727 +"Q9VWU1",15.1893296354029,15.1120465196932,14.5299718162855,15.3714747073388,15.0608417601648,14.2164576078296,15.4250371460294,14.919364876139,14.0815155626513,15.3394017410908,15.2083435038198,14.5934105584219,14.9269964900985,15.1066004172037,14.257197967866,15.4563198798116,15.434160371226,14.3626587282514 +"Q9VWV6",23.0150137281624,23.4299509968868,24.8907736794803,23.5149083577214,23.7851485571282,25.222543199638,22.7018403814027,23.0814148988914,24.4532434663312,22.8172603687954,23.3078233254668,24.7426146897711,22.7356192088788,23.2375384061706,24.5510187111049,22.586940670464,23.0703579969868,24.3597283986722 +"Q9VWW2",14.3872490645379,15.0176152846848,16.5140174369214,14.7143675238535,14.6333912445469,16.5076764848386,14.2210424457306,14.4249059834719,16.2784827812358,15.2497698889784,14.5249540895699,17.1320835137615,14.2099504942317,14.4548573009499,16.2287893044251,14.0515269541736,14.70585665052,16.017842920318 +"Q9VWX8",19.9993391026272,20.0136969708359,21.7208469107541,19.9194713835521,20.219336434083,21.7444635609527,19.8992391486878,19.989905459881,21.6232553659258,19.7520164667105,20.1120351755291,21.5895115508394,19.912547866173,20.1227823641264,21.5290679161148,19.8982826838238,20.1085632345131,21.6024758783607 +"Q9VX02",15.7105284276996,17.1410258020061,18.5210382741457,15.7242177751103,17.1550894860249,18.7926037734912,15.8121114710162,17.2072181470901,18.4862795326174,15.7963563315135,17.1427765849734,18.7808141265145,16.1528124297343,17.1384387630723,18.6281851484889,15.8319794776144,17.0906867331555,18.7175918576894 +"Q9VX36",21.6891745275579,21.7900131582849,23.420974881242,21.7113153335267,21.8641834708807,23.443396840692,21.5137133455462,21.7011111141512,23.2655338570915,21.5645500183209,21.6940290884568,23.198552883958,21.4221110382342,21.8054081531059,23.2352426548722,21.5650641669962,21.7108878259404,23.2377526077018 +"Q9VX69",17.1447145048281,18.3337072672788,19.9402485127192,17.3079187234949,18.1742554749211,19.6459747313195,16.7946044768528,17.9333795043738,19.2345668639452,17.0680045007199,18.004483348362,19.4132114269392,16.5524651117774,17.7250106086899,19.0536428892891,17.1008254130423,18.0875778439188,19.3552288012612 +"Q9VX98",18.4250077183858,18.1331362019451,18.4216717267086,18.2210512725766,18.0716144512373,18.1385278824552,18.3118037701224,18.1062684795283,18.3419091568077,18.090799519969,18.010001407712,18.1505143332257,18.1630246997644,18.2553667947688,18.365104280909,18.3129803288064,18.0578154644749,18.5882360406295 +"Q9VXA3",16.6334448640095,17.6246373524526,18.9590086245294,16.9259900227455,17.762446348891,19.1747797411677,16.732683078291,17.5760802530865,18.7925257935852,16.9025690405636,17.7383984420293,19.069164469544,16.85730736721,17.4478277196514,18.9707052468015,16.7826387372793,17.6015766056453,18.8446751585389 +"Q9VXA9",12.4519045428789,14.0273920546479,16.3632617376341,12.0120243234626,13.9162357248179,16.3338587522751,12.5187177895176,14.0912837287587,16.3649666669485,12.6377546181361,13.9599298707021,16.2979004121623,12.7781976490054,13.9209984764666,16.304894041866,12.5905146650045,14.0306271133311,16.2838990788885 +"Q9VXB0",19.0234448680283,20.1539066821552,21.3961886744045,19.068894136471,20.2876963502369,21.5138369647674,18.9745981271703,20.1625593437027,21.4006903232075,19.1916091643755,20.3752598124184,21.7686371724507,18.9478125395593,19.9813924414334,21.3157454153126,19.2145663992281,20.3902251308685,21.6323396078596 +"Q9VXC1",17.1042153971417,18.5937700556815,19.5614550913811,17.0486236094226,18.5971104871013,19.4974593751978,16.9304875645512,18.4339264696938,19.4154878053355,17.0180707056119,18.4345249116936,19.4686943175141,16.8066720467346,18.5091514397415,19.7049461041491,16.729965275372,18.3995867820234,19.4744996996809 +"Q9VXC9",18.7027818015376,18.0300096606038,19.5809942841248,18.5651453082188,17.7615602547322,19.4285907048639,19.0323440113047,18.3914209820015,20.0761302460754,18.9510601145712,18.2130620316378,20.118419306544,18.6741192161642,18.5100330563825,20.4664074191071,19.025794993471,18.6838428306631,20.3739097655665 +"Q9VXE0",16.8849655643799,18.5009513090684,18.2715615984533,16.8826168780409,18.5554148750351,18.4021947052628,16.908653350482,18.4685697620407,18.1717831411787,17.3216019595289,18.7964147892348,18.7451309853077,17.1005920484308,18.5656423159635,18.2876503395245,17.2314334010958,18.8043513413042,18.5818444565682 +"Q9VXE5",14.1107764057934,14.6785337065925,14.9227238299103,14.0873378945882,14.6853185302832,15.037662131384,14.3295209712937,14.9217070986796,15.0093297597191,14.1312081506357,14.6527714399324,14.7838530625254,14.2193244174717,14.9887845601842,14.8400014704816,14.3951453965536,14.5356510434465,14.8733300141798 +"Q9VXE8",14.9759240538577,16.4750344456013,17.5369989489505,15.1949309197348,16.375074487773,17.6343351731963,14.8149316081891,16.2677318214568,17.0131659274801,14.8827191223615,16.3898430368989,17.4905200939863,14.7208341809234,16.4540125720031,17.2007390279184,15.1532840452139,16.4137935095154,17.2219704049365 +"Q9VXF9",15.9655768177171,17.7294059040672,18.8968166431842,16.0844245351334,17.7388533158519,18.8158072843029,16.0606709235899,17.6536516073655,18.771182285106,16.1083940134286,17.6920675164099,18.8102950529465,15.8439195333135,17.5970114111455,18.607917971775,15.7700162393639,17.6229384970881,18.7284239326996 +"Q9VXG4",19.0501554652655,20.1419794102034,21.165912536878,18.8142178872525,19.7925375486536,20.9959383908876,19.0339295987038,20.1188065068365,20.9750573779298,18.7209544796039,19.928544240894,21.1261714499802,18.9428732333724,19.8631957917694,20.923379853226,18.6846437352372,19.8209172629597,20.7803008523625 +"Q9VXH4",15.9100222884837,17.3875366880039,17.8283089929647,15.694078740099,17.5394211046218,17.9514704024749,15.6887249663241,17.6951660649887,17.9751782576324,15.8693681972203,17.7751036744217,18.1671680123091,15.6219217679976,17.8198901124296,18.1245509975623,15.666543708861,17.6597673666868,18.0388565432472 +"Q9VXH7",18.4331276614411,17.8397149066645,18.430142838034,18.1582672595268,18.0333931528716,18.4367036691296,18.1414588904297,17.9226750420104,18.2715145867318,18.1799585390328,18.1065771774078,18.0364473256423,18.0723839499781,18.0481343191981,18.3348939811334,18.1727709706966,18.3408497652893,18.1417382164188 +"Q9VXI1",18.0474947731048,19.3760803916283,20.7691144265328,18.3041544961453,19.9942650851851,21.3751315109241,17.8628445807312,19.1956706281277,20.4341898227492,18.314061302249,19.9074139057167,21.2928370312355,18.1658592678946,19.4564548751271,20.7674511350114,18.3396697051418,19.6598336527061,20.9708708328052 +"Q9VXI6",21.1942761674127,21.9483451126337,23.3925341609185,21.0445655392571,21.8593372136879,23.2678444059921,21.0033824375367,21.8406061169278,23.1663777351345,20.9288593037284,21.6730044190533,23.1460143115431,20.8402632166367,21.922121835377,23.3057008479426,21.0406505874234,21.739120894257,23.1278483385507 +"Q9VXJ7",14.4267221275407,14.7499268804615,15.8617821556413,14.3067298689871,15.0407612006974,15.6361186640047,14.3561622277915,14.8999244943843,15.8102152651442,14.713180146586,14.9058256074707,15.354485441499,14.4109201749363,14.9096896571036,15.6328359580463,14.3716186364737,14.5920127742691,15.4071797051774 +"Q9VXK6",16.6959695923113,18.67880668053,18.7381720899279,16.4888545430417,18.6466052201961,18.6400495318575,16.426762459439,18.5584251806862,18.4707714007864,16.2484705632806,18.4048666509259,18.2234092610658,16.516844350592,18.6396819728419,18.590591072041,16.0094730142644,18.3389363692747,17.8605444545385 +"Q9VXK7",16.7187402280791,18.5897785257232,18.7877729208136,16.655872028837,18.5981996233906,18.6694324041569,16.6942161239706,18.6631018032394,18.6402684959168,16.5490181952778,18.538713444522,18.6965193879964,16.9321563819788,18.8788911601877,19.0264105814694,16.958302918563,18.6905511819227,18.8083681773133 +"Q9VXM4",19.7624461760768,19.5102688575151,20.7731864976325,19.8707915103396,19.7862306916007,20.8224678302891,19.8260053531966,19.7034896591572,20.7265943271119,20.2581303576762,20.6356479820516,20.6677116964766,19.8404555256198,19.8165611163343,20.8105125833317,19.829641065336,19.9464845119096,20.7944209354976 +"Q9VXN1",12.694704659562,13.740014184437,15.0641299900652,12.0498925021028,13.7250063224051,15.2276447139369,12.1108450567136,13.5276826579724,14.6365480431046,12.3965290470125,13.5571566307385,15.0812272475867,12.0895465490818,13.4140090812326,14.7100515809646,12.4505482166553,13.8440448903578,15.079470208977 +"Q9VXN2",18.6244874930184,17.6566319145816,19.8142142875935,18.6643240085931,17.7238980072767,19.6247941773868,17.9615081466045,17.5999608071422,19.4743887795476,18.0542104520827,17.5760821192975,19.2652026191134,17.9858202772333,17.583395764011,19.2438807456031,18.4643007725796,17.2007645999446,19.3788062889986 +"Q9VXN3",16.2458302799451,17.0854537289329,18.0059205946864,16.1116074963704,17.0825247211034,17.9182295159303,16.0057436244458,17.002850578772,17.8668490230439,16.0502801648697,16.9766917908233,18.0949043937076,15.9567100401436,16.9935596002224,17.6321815352213,15.9693089390955,16.8506478312495,17.460910274312 +"Q9VXN4",14.9085296298504,13.7105187991433,15.6957793909701,15.0285031575742,13.945980796371,15.6589686096932,15.3409925158173,13.9295882754917,15.974487443499,15.208019387997,14.1768748500608,15.8751988764632,15.2200721953141,14.0258758520572,16.0438703582715,15.2928622276008,13.8904085622799,15.9651671106202 +"Q9VXP3",13.7494665495332,14.8662776358966,13.7337691236034,13.865265040868,14.9899197588589,13.9101435674878,14.3259637731537,15.3748295010002,14.4220999076155,14.6228693555583,15.5890368699929,14.8172150438071,14.2932022791636,15.4059899026704,14.4312217822965,14.5246910691324,15.7968047025065,14.5791433909151 +"Q9VXP4",15.8215299407524,18.2926774267834,19.8715978661747,15.8957743804373,18.345089769095,19.9067514180251,15.7936500950817,18.1065668890434,19.8507821195286,16.0068616182171,18.4526173314297,19.9032471974743,15.6330237535446,18.1481200237627,19.8011286194315,15.863068365075,18.2959701351951,19.768812471392 +"Q9VXQ0",14.9281524411664,14.5387731760958,14.2941569772105,15.1243166685401,14.7120177146545,14.2803774378513,15.6888002479226,15.2867482207246,15.1253445196795,15.6710409910641,15.1423720467294,14.8505239027662,15.4925746800945,15.0982220156462,14.6129242681617,15.814445298469,15.2007661533425,14.8547097130364 +"Q9VXQ5",18.9918808275704,20.5513202433059,21.1937354660206,19.1909654816917,20.5953353487996,21.2713130904076,19.1735176314129,20.6608553439813,21.2902629104146,19.1631175188625,20.6875548949304,21.4136598138357,19.0794391075519,20.6183423408922,21.2172299675048,19.2602328631093,20.6608147030997,21.3765452318425 +"Q9VXR9",14.1751272615217,14.4940071873802,17.0200193720917,13.6706832251861,14.1039554874326,16.672162118388,14.3227405299289,14.6688353970333,17.1064450508758,14.1780653500984,14.298540281168,16.8993288901965,14.3345208420348,14.8525363212499,17.2495683007348,14.4212038119015,14.5695164030271,17.064852105129 +"Q9VXY3",17.1164493604358,18.0717171497827,18.3584868264192,17.3034221759364,18.29450828553,18.6390828206732,17.4192748471222,18.302408905399,18.592216418029,17.4764901248051,18.5155380153849,18.8920225988116,17.3909326509276,18.2585375315292,18.6751100890971,17.4038531746304,18.3079932079433,18.735736780195 +"Q9VXZ0",18.6588673539991,19.5316595917648,21.2412332377743,18.4693273816755,19.666561399209,21.4363191364516,18.3886653450574,19.5077121503877,21.1118910655527,18.2290017322801,19.4281877241843,21.0543511280809,18.3979724851501,19.4584788364006,21.2059311146537,18.0875035124605,19.2994510371323,20.9719709002903 +"Q9VXZ8",16.8732245125951,17.7693669834962,18.0536479739363,17.1106918946098,17.8447277299194,17.9591126077131,17.43353930693,18.0430324865406,18.438297384393,17.306258817119,18.0253687316837,18.3351081171763,17.6416512808177,18.3498867986545,18.7196126085028,17.7934388915199,18.1365196619877,18.5714206682886 +"Q9VY05",16.6624889821597,18.7007100462774,19.69665198754,16.3106513228449,18.414288370014,19.2259420444149,16.8554283985407,18.859664435482,19.7917391863974,16.7864738396951,18.6364994140418,19.4757410904749,16.8917882563033,19.0825172821467,19.8611528018673,16.7173503613821,18.7044442340202,19.1777948282636 +"Q9VY24",16.8958099241009,17.564299624569,17.8452198445743,17.304104385884,18.0424206526751,18.4284967300356,17.2037179571316,17.9268809592725,17.940410980633,17.3602288038216,18.0129132509355,18.2469647386067,17.2739841625033,18.0925405462004,18.1929925650643,17.2025918616129,17.8518980190067,18.0440840621602 +"Q9VY28",14.4113956334307,15.0774707499216,15.6647530581881,14.4710176072908,15.32684361284,15.4641710189688,14.5727349493937,15.5339944342524,15.808678105942,14.6668727663397,15.6686383762541,15.7904963603493,14.5783287401562,15.488097442168,15.9349355069677,14.5351391686168,15.5303354002164,15.524051245615 +"Q9VY41",15.711771314987,17.0793659986522,17.5244397040856,15.6929745230274,16.2728957183402,17.2694428659731,15.7270910176447,16.3922732748624,17.1425691153165,15.9290583509243,16.5355465402728,17.1154850704789,15.9309481109185,15.9800529536803,17.314574258183,16.1815248867793,16.8406543242426,17.0762401730892 +"Q9VY42",13.8100733883309,14.2541814588935,17.2176921001656,13.9543367849034,14.1658750879462,17.197463086541,13.8469166311827,14.480571851149,17.3626169414294,13.9975761614008,14.3466417259909,17.3282789041277,13.975534987033,14.8531694062031,17.5402755011913,14.2587571872034,14.3695061452144,17.3375045127066 +"Q9VY78",17.3226925009895,19.2867533340891,20.1371341045959,17.0935320432228,19.2751044034008,20.1075044841045,16.9781317536726,19.3221978883663,19.847939564862,17.1288790269022,19.3484687332719,19.9433442562492,17.3536161791811,19.1642134452383,19.8623371813465,16.8905096129015,19.184241024641,19.7119675771514 +"Q9VY87",16.8732624728242,16.9283932971633,18.8468470904439,16.6616107894956,16.5999955101423,18.864001128722,16.7115300868103,16.7609599484658,19.0370429096251,16.8211352751638,17.0602417559902,19.2359056209026,16.8845819356046,16.7593893325865,19.2939334687355,17.0553831275915,17.5543230382179,19.4871612941408 +"Q9VY91",17.5278292756374,17.144326936048,17.3507793229548,16.6276702521839,16.9831808667857,17.5060858785283,16.3245168930406,16.941994496039,17.0701220753058,16.1291616863644,17.1739691660155,17.5947657456587,16.8969955897827,16.8153103544705,17.2013723721165,15.9134486568789,17.0093209812196,16.8380401918717 +"Q9VY92",19.9107510792818,20.9021760875595,22.8266684016349,20.3055192045453,21.2523584187753,22.9466839048254,19.9388261235513,20.903839372887,22.7746798108111,20.0716982367233,21.2523410934775,23.0682348910721,20.0278135196497,21.2457564723004,22.7025217164444,20.1348093829331,20.9989361934792,22.7310341661763 +"Q9VYF0",14.2763899548554,16.5718460897172,17.1323572140781,14.3643462105278,16.7619804399814,17.3618129061708,14.5046111577043,16.8580173459481,17.1834509624969,14.8904355586615,16.7874740127195,17.3836059716283,14.2669556136835,16.7531691367134,17.0848236468847,14.702832715258,16.9120016789423,17.4215993693561 +"Q9VYG8",14.8440571019859,14.5390730312768,15.8566601730961,14.5676525842782,14.2525022196153,15.6586599643583,15.0651356811563,14.3848389590354,15.710873464599,15.0132170824727,16.3610274992097,15.9939969798299,15.0431128072476,14.0593688004579,16.0771783692791,14.8927804020885,14.477378270611,15.8692821508342 +"Q9VYS2",15.3133476244012,14.2997486024655,15.9899381769386,14.7553198612728,14.369139245479,15.8119451534649,14.6419887440559,14.3477242259167,15.6905442019321,14.7442204280078,14.7369683823025,15.7030035337028,14.6734303571694,14.3558839444772,15.7456641944413,14.6716779528318,14.2606312332648,15.5608248602429 +"Q9VYS5",14.7658016105147,13.2280111901439,14.9677311920061,14.6336947654206,13.2015224858207,14.982986473125,14.8115974986554,13.4970973479791,15.0793380682823,14.7294222410797,12.9845117662786,14.8862063247909,14.7047479725512,13.5525193044391,15.1828787317117,14.620554631275,12.6905125136115,14.7971489441839 +"Q9VYT0",17.9234186204635,18.2243449812315,18.9181416023035,17.5792170103974,18.0177932617339,18.6810366686582,17.8922331165344,18.2584676894376,18.8114306072399,17.5342046840249,18.0567461038923,18.7115520052082,18.0651345115403,18.3946079998966,19.1168306141942,17.7074935258851,18.1523185739208,18.8438863536977 +"Q9VYT1",13.3568687510929,14.5791376831437,14.9309718508333,13.5312975380005,14.3563563132511,14.8449661737633,13.2529488691596,14.7197736851684,14.8204357995623,13.8957407389931,14.3018542544753,14.966309554945,13.4676242106017,14.5128160776591,14.7311761347941,13.6689651530198,14.5252957283708,14.7620466967417 +"Q9VYT3",13.3643197400442,14.8668104442283,15.1457842599231,13.2379770184769,14.7098894795169,15.1777888103136,13.1880034738666,14.7358232747412,14.6397332855877,13.3913980619712,14.9268290453127,15.1823690170426,13.393406115679,14.8349421150482,14.9585576143648,13.4595629612486,14.9115636632621,14.994016192141 +"Q9VYT6",17.0455436556287,16.072131023878,16.3898479321427,16.8385726707915,15.854436727562,16.2203299225861,16.6719839523188,15.8340251451551,16.0047760644004,16.777928195423,15.8806025212692,16.4347989063846,16.8318516379163,16.366968026413,16.580975750376,16.8035728324448,16.3028637462305,16.6304883891733 +"Q9VYU9",16.7386510773411,17.4836686284871,19.5649009090407,17.0550997929798,17.1814299085536,19.3339150670864,16.8873310928061,17.5198668488406,19.4589312595576,16.4987033508278,17.1848393851691,19.3907373365911,16.9304035009807,17.472467909298,19.564312381627,16.4527735808093,17.1883274683591,19.3470732798587 +"Q9VYV3",19.0868216431666,20.3015482244078,21.7864759808684,19.2258913431973,20.4770074464029,21.8262198566507,19.1416722513135,20.4422754664413,21.8642764662249,19.2139745424054,20.6860904705207,21.9549512912701,19.0324942545123,20.5646360964748,21.8221304304207,19.2509631354815,20.6287744114862,21.9319569897205 +"Q9VYV4",13.6806676817977,15.5004953226903,17.5899090131763,13.9528511909713,15.68507203217,17.4591986213202,13.6704341912628,15.3448016294541,17.3902393975645,13.8075417481928,15.428385137054,17.228904351711,13.6314295282172,15.6664276498359,17.261690502307,13.6200973850093,15.5003810918662,17.2300697353368 +"Q9VYY3",16.2331786243914,17.8678972037285,18.360167685581,16.2380497936446,17.7427688797505,18.194523243428,16.3950026066164,17.8929483871351,18.5255750441214,16.3606860341066,17.9257394222693,18.3288600196317,16.5133499224945,17.8914166814273,18.486134505353,16.49308155386,17.8630845487694,18.4871360232561 +"Q9VZ19",19.1593106724933,20.3956353624637,21.6417582035882,19.0706463605371,20.4469055221348,21.6989500486931,19.3988741880098,20.6492140596269,21.6163860769386,18.9852494703783,20.3411994666155,21.4150603446141,19.1271882252562,20.2897294988183,21.4952864833388,18.2936243695459,19.8216496815178,20.8920871335171 +"Q9VZ20",17.6535436387087,18.7691849624652,19.4574462516562,17.8685387801268,18.9159832189911,19.5619448055436,17.7634028738441,18.817096295631,19.4543247065271,17.8154417731447,18.8949546793183,19.5229756841211,17.6915823705375,18.8559785155441,19.4675055852351,17.8930287189772,18.9861216954193,19.4187113235652 +"Q9VZ24",21.6916476017331,21.0516006150304,22.9636863360916,21.9080754568125,21.1541666174246,23.0438091139109,21.4085782597855,20.8291485173152,22.8177642347105,21.6550933671519,21.0363046216999,22.7570642562188,20.9208975818422,21.1065207095842,22.7843681026738,21.7132197774739,21.5874122185851,22.945199987168 +"Q9VZ49",18.274084839012,18.6573967391501,19.4768826278096,18.5235480912844,18.70690440378,19.6097677205338,18.5361798401047,18.6581257077265,19.3769676607487,18.4300523634676,18.7104174094042,19.5148690483332,18.8285321023777,18.5527771791758,19.2429820092316,18.6462112250353,19.0253132269459,19.5636040049412 +"Q9VZ58",16.8870365393896,18.2531256510005,18.8804306644688,16.7726837378963,18.4410924527137,18.9050301141465,17.0833003699423,18.557248484706,18.8005760614427,17.2481424766458,18.5995241697168,19.0141748509904,16.9447951218187,18.5002760295677,18.7981348343109,17.0750990645002,18.531831817157,18.8618815468987 +"Q9VZ64",18.4016509594423,19.5749919660401,20.6732109781434,18.32040482177,19.5805761342493,20.6642172205659,18.1542264688433,19.6028014394592,20.3322175244849,18.1858566829741,19.5686236901638,20.4367592044254,18.0361021024365,19.5246614660267,20.4589931503079,18.0431104681426,19.4231600473475,20.3552044073669 +"Q9VZ66",15.7351207489132,16.8060297203182,18.7996612478878,15.7605656024847,16.8329435506261,18.5741210868271,15.8562806809235,16.8175855351217,18.6816410919234,15.679897736588,16.9152151692417,18.6312725750484,15.6040834396277,16.749206915287,18.4078041237821,15.630057690936,16.7889192614417,18.4392397654825 +"Q9VZ67",13.7727091788812,15.2065953180757,16.1217821612882,13.9439389700348,15.1420781606128,16.083658475689,13.6985161497921,15.4189095124266,16.2619919453466,14.1083689689769,15.2948270790264,16.4046438290936,13.8504465112128,15.5633219031677,16.2664609704313,13.9505171544778,15.3722927680306,16.2698119536327 +"Q9VZD8",12.923660193269,13.9836941222956,14.7937209790696,12.6528900157197,13.7118145470194,14.6959347200312,12.8940153401028,13.8049782585454,14.6743816810901,12.4283376033739,13.7148527430903,14.4758825691253,12.930209885999,13.8621979124162,14.9989936605276,12.426758076603,13.3403189816514,14.0035899111239 +"Q9VZD9",13.9066033845601,13.0661877208112,15.8049310775417,14.191090353646,12.5461075496582,15.8868819035147,14.5698471021144,13.2722005943276,15.7842899452894,14.4654808913027,13.0768933635973,16.2333547411733,14.6767875643825,12.9930746493653,16.3689241084852,14.6873611840635,13.4656833841474,16.1425996247103 +"Q9VZE4",16.0482611140847,17.5436659801467,18.8013067556442,16.3895102572698,17.5243269609993,18.9791414441955,16.2396473269393,17.6094920280049,18.8158712758178,16.3716414832017,17.7785864952992,19.2271858105299,16.2177604580775,17.6235123202425,18.9557486267338,16.6833046217426,18.0818490818685,19.2134330607661 +"Q9VZF6",12.4147610894653,15.9258933875519,15.8029142183639,12.3458928411153,15.9785521574775,15.8771196475658,13.1736824133863,16.4370189478795,16.6685456023429,12.8967638550783,16.4143376886324,16.5212022900843,13.0861952099766,16.4871326665596,16.3874397924153,12.9150463712415,16.4002897730772,16.376928639588 +"Q9VZF9",18.5137227098927,19.320184118717,20.121146727875,18.4961357086005,19.1912146872463,19.742630116089,18.3938269606354,19.1388960205588,19.9849418575744,18.2533866635399,19.0368196210585,19.6570698815207,18.2943675292273,19.2655205355245,19.6450929426319,18.3286750604195,18.9398151789204,19.4492484024555 +"Q9VZG0",21.0995932560173,20.6184207590236,22.4443339540587,21.5045433959964,21.1111249431289,22.8310628174906,21.1817793975465,20.7603304323138,22.6299168494362,21.5009722010626,21.1752992787895,22.9324176777853,21.3214620768523,20.9682123980165,22.4950045534089,21.6012734843048,21.2197277173023,22.8136160055405 +"Q9VZG1",17.4092115301458,17.6105721683695,18.9067086882981,17.512945244388,17.4149839436108,18.8216393822524,17.192556797043,17.2977243158126,18.7467754639574,17.0381793823328,17.1586338117117,18.4872016069797,17.2660296767559,17.3924310345675,18.5340107450731,17.2174519347613,17.1896536689655,18.4147930022796 +"Q9VZG2",20.6900561972158,21.3775432114426,22.6827171410758,21.5140598927186,21.9057409754861,23.354047046939,20.8734349470477,21.3163921209305,22.9260275613321,21.1747590032943,21.8217242753698,23.5213836301606,21.0067526525113,21.2505635843149,22.7553214357559,21.2008915967004,21.6876090927218,23.1882355567018 +"Q9VZI3",14.2501407772654,13.6563418539635,15.4064814258578,14.0778857775055,13.1480187503438,14.9425624702291,14.3849895793247,13.6866311778465,15.2855102484415,14.0452785711924,13.6021260020357,15.4062702149109,14.6394703660168,13.8844289347593,15.5138696552054,14.1268145870076,13.6418420023097,15.2593178889383 +"Q9VZI8",14.8089399395632,15.8988358061385,15.6926420799819,15.1190686843363,15.9642420042909,15.7213854625474,15.1512669777032,16.0161156288142,15.7946343280336,15.1468073919466,16.2250111464722,16.1051847684772,15.1604094138477,16.5212549787763,16.2409583564657,15.279130107277,16.444733776786,16.0825837942854 +"Q9VZJ2",16.0430258179083,17.2755218168142,19.1461852180084,16.1431350015085,17.3349031245503,19.2162854965912,15.9933479918603,17.1846597518179,18.9907389973703,15.8603480090964,17.1643776619447,18.9325381186143,15.6693626230861,17.1365903633853,18.746240395553,15.6768666301247,16.9658893302068,18.6286071749479 +"Q9VZJ8",13.6557132563945,14.9672574845198,15.0881116208489,13.4883186304135,15.0309925158358,15.6338589972944,14.1605410593784,15.1747149445818,15.5972899622021,14.2137888441945,15.0995333806106,15.3181194696972,14.4085024602346,15.4178902833101,15.6372068846986,14.0200078784409,15.2503797610882,15.58478383768 +"Q9VZS1",13.8504136893225,15.2383114657338,16.8734669669244,13.9266640339196,15.5749325242481,17.1766768493028,13.6349785568429,15.2651068984176,17.1016091134277,14.0319288887893,15.6254289100501,17.0907447133415,13.3263227488448,15.4711414706027,17.1905647322173,13.6554043857738,15.8423911765835,17.2789248667736 +"Q9VZS3",17.1133078045502,19.21199000992,18.8823537047438,17.0848349074508,19.1667447457282,19.1033315931961,16.9582406330178,19.3438297181803,18.8878566733525,16.9946313553092,19.188839694293,19.0383756880761,16.5237497778616,19.4819751981163,18.7497594033737,17.1258552732784,19.2309359359675,18.9210163285658 +"Q9VZU4",21.3880862409027,21.1492981283527,21.9775498256747,21.4865920552707,21.2557080002139,21.9922672682753,21.1455654433908,21.0850184422707,21.8751534041135,21.2132657499211,21.0212278328627,21.7744671323949,21.0369073258515,21.2342121049426,21.8396342063341,20.9926552453935,21.1382417420804,21.6301978741946 +"Q9VZU7",16.6677597879958,17.1375421465648,18.0853745945406,16.5397508809354,16.9405524087911,18.0374673849617,17.0645773009201,17.6024803559899,18.5505736585887,16.9683480213468,17.5067711197899,18.6167132548965,17.1866591435142,17.6551901373358,18.7040361009986,17.1426610660619,17.5228794265271,18.5042685905945 +"Q9VZV2",14.6798315879653,14.3019287995305,16.0160533741033,14.9125005083224,14.3645462682399,15.5862434822804,14.8282497369984,14.1310859941986,15.8648295204772,14.9675985118168,14.4870368323842,15.6939683206441,15.0083312506127,14.2028786015363,15.999436881724,14.9446961044703,14.6278460856504,15.7974586663284 +"Q9VZW1",12.2365463536103,17.620495509984,15.2232459491287,12.3326580871324,16.9674339139643,15.2181888846191,12.4666390399145,16.9120671300277,14.8030207917959,12.7415946393117,16.8807776813826,14.9299422040032,12.2808613268084,17.0709855754662,15.1861544282154,12.0597055314128,16.9160974399726,15.031029392979 +"Q9VZW7",14.6926736367238,13.4780706230014,14.4704753611971,14.0719686565515,13.4668004313668,13.7923240261644,14.4499978773049,13.4520052658623,14.046758346925,14.0531767920954,13.6351099344364,13.7493081260888,14.5413971119424,13.7250250815444,14.2423573049094,13.6636366020161,12.9199583341297,13.3722037208818 +"Q9VZX9",17.6569522276436,18.2211937835661,19.5973916080395,17.6366620285489,18.256068100767,19.4118112854389,17.5579647052386,18.1172734313186,19.2892662017088,17.2629202825346,18.0501871817085,19.1887607651292,17.8838399894314,18.5368996859921,19.7560902116197,17.757767118756,18.3529851710952,19.5151219082575 +"Q9VZY0",15.9700593129734,17.5840684406959,17.817867463746,16.2037970224487,17.7847489275382,17.956664624222,15.8014589568792,17.4783234146094,17.7053444193675,16.3204012061524,17.9505481204414,18.1237649406255,15.6241043982076,17.7178486122006,17.4412272503367,16.3122988135043,17.7644075817601,18.0194531384338 +"Q9VZZ5",17.5293948980168,18.471048159761,19.7679491196798,17.2181713415284,18.6113845276114,19.8145824667376,17.3445169757678,18.4507607937034,19.512046362078,17.1498845745132,18.3468418092357,19.7021827679404,17.33733630834,18.4738736893225,19.634380968318,17.2174023294854,18.3787626446044,19.3991620206867 +"Q9VZZ6",16.8533613818217,19.0054431222543,19.4516729564052,16.7698813989325,19.0760403437888,19.1670006160162,16.8608678212925,19.0764277573769,19.3115358876616,16.9484993865566,18.9417025055072,19.1156419408776,16.8894276533893,19.177379854866,19.3875858629383,17.0024959213468,19.1823531007924,19.4803398701296 +"Q9W022",20.0565250352626,20.6732371345219,23.0921606851582,20.0988011735014,20.7557198790195,22.9703305148887,19.7490862371041,20.5756682789427,23.0200148910866,19.8784316158858,20.6226361931388,22.8428902213913,19.8513935006955,20.7371045464949,22.9528531001495,20.036796568806,20.6927894080721,22.8415187645263 +"Q9W073",13.0755975985692,14.7807193058462,15.7610181442312,13.1563697010901,14.7615916441545,15.7717609147281,13.0741469565289,14.6157178976345,15.7035768460879,12.962429015401,14.9020534321605,16.0606900580431,13.1746043915766,14.8837094903135,15.6560817732788,13.0276846296386,15.0472057791384,16.1107002492334 +"Q9W074",12.1758518867139,13.9134395128496,15.0429204676643,12.3244762610477,13.4573944838772,14.5244417765312,12.3410471364072,13.5512019650998,14.6243771828667,12.0386773708932,13.7454038833963,14.6460590628752,12.8057443988558,13.7024428815904,14.9556228121691,12.2543367245172,13.6888044588372,14.8531505238835 +"Q9W077",19.5414253558701,20.3222291295726,22.6922431691906,19.7552356166826,20.5265489862985,22.6170435366693,19.5732921926994,20.3134605366714,22.5902973699027,19.3103241174545,20.3830696015217,22.4193550754559,19.5149934057113,20.4313733670671,22.4481895752519,19.5661736604621,20.3568551811162,22.4862354273729 +"Q9W078",18.3002778851786,19.0215206606767,20.9812035265496,18.2304353780678,19.2743294387961,21.0246030062664,18.2958153437142,19.0359972617225,20.9208419788602,18.3568441345352,19.2274695721781,20.7809726177849,18.1560495510588,19.1412935671614,20.6959047385661,18.4489992049027,19.0362637592221,20.8625678135291 +"Q9W086",15.0227476846766,16.6864243805588,18.2249180924569,15.0302257689891,16.941974479241,18.3399321863436,15.1284472704524,16.9628089315394,18.7194478374999,15.2224969211302,17.2930976211427,18.7342672590729,14.9234048286422,17.0156812148161,18.5174504162808,15.1872532294803,17.2035619372854,18.6050636595924 +"Q9W087",14.749433822225,17.0926344928019,18.4842111940771,14.5878110579226,17.2369342720154,18.0321656749341,14.8818182017778,17.2177714275432,18.0334747491049,14.9807153744996,17.3894060619377,18.0094290320897,14.7538802473438,17.2718341659676,17.7797769571641,14.9156197024793,17.3133837601486,18.0164547054607 +"Q9W0A8",17.4288308036535,19.2115777068177,20.2663278201216,17.1353201504715,18.9207911447009,20.0286659764967,17.6447142418042,19.5676422643763,20.3609170193402,17.1748270257409,19.0449494238283,20.1587479279116,17.5648845434016,19.2979987128371,20.2402477963491,17.3166966579048,18.9909731918861,19.9163144996934 +"Q9W0B3",18.4496128992857,19.0663939334378,20.3156915276432,18.3746016931162,18.947166002443,20.2649162296217,18.3750045509237,18.8452835970201,20.1020219461363,18.4127746517529,18.9463145199218,20.1661392048582,18.4637890814402,18.843292746887,20.0503513768272,18.1501809332509,19.0043267356803,20.0049271906251 +"Q9W0C1",19.9911675150564,21.8177890842755,21.9447735147347,19.9785103879206,21.9604512149136,22.06398195037,19.7633813895522,21.7634500726718,21.7734655858447,20.0962788660718,21.897353113377,22.0810137987646,20.0363506731573,21.7714060720506,22.1601674633096,20.1541270685834,22.0671154763636,22.1750823161846 +"Q9W0C3",18.3849533292946,17.4867025172889,19.1252134689704,18.5282039566291,17.7297220709548,19.4886487246956,18.1092490879541,17.4263991917988,19.2205535509152,18.6405854686722,18.2998236196752,19.9894385003274,17.894951780553,17.4161270476828,19.1605479975206,18.3537505548766,18.2630641426757,19.5861347041481 +"Q9W0D3",12.4556427362014,13.8147898708152,11.9828589472243,12.3473645398046,13.6438620104858,11.5758474233236,12.6463773045217,14.1736565447672,11.7534903625021,12.3724485833173,13.9518086298029,12.6216090125867,12.6958395894606,14.1590011208413,11.8489036044787,12.5409713298768,13.9336999322017,11.8691145011092 +"Q9W0H3",16.0884314242331,16.9678280625877,17.6368261034677,15.3717754869414,16.9110591408212,17.1940149923608,15.6899052553806,17.1587234934292,17.4414468130966,15.3349871214567,17.0144087783848,17.3944415496908,15.7791274561474,17.2884170823006,17.5801968311296,15.5669476536007,16.9902367645196,17.248974120915 +"Q9W0H6",16.4242080687057,18.0585734727535,20.0543885857719,16.7478647923994,18.1145171106264,19.89240066472,16.4450371837142,18.1252708469093,19.8912814441791,16.6645707017003,17.9776469740039,19.8717989778064,16.3229131534985,18.1265536425639,19.8444205882554,16.5596857554356,18.0555593758744,19.867292326002 +"Q9W0H8",18.3088201817822,19.4472918341252,20.7299691106068,18.2879671396173,19.6006989141969,20.6612037427277,18.3976442178447,19.3338360205579,20.4338280257113,18.3717502849206,19.4247375665208,20.4124055144864,18.1469396076868,19.3218407540914,20.3107267586024,18.498078492595,19.2568619751569,20.3830760316071 +"Q9W0J9",18.2494873539657,19.0500852707047,18.4743396284907,18.0938141635094,18.9263022137673,18.397470783885,18.1275521386771,18.9403552031534,18.1481003537183,17.9068254203926,18.7529492207433,18.1712224987907,17.8973930737081,18.9052928747269,18.1850564859223,18.096667941839,19.1130602685114,18.2143775282254 +"Q9W0K9",14.1007101389326,13.6940711889939,14.8980679847695,13.8459353183054,13.9730870338736,14.6750361886615,14.3960409651511,13.4907121655465,14.6515561543003,14.165554212258,13.5200290058997,14.8250218531857,14.1208904709342,13.5876486245049,14.979794488777,13.9964702826776,13.6528053215131,14.7255721297726 +"Q9W0M4",16.7201817890123,17.6729304686895,19.3413935659618,16.5041359966848,17.5601474362741,18.8873761166403,16.9984611013404,17.616374766428,19.1490165758533,16.7737440399871,17.8460241322763,19.0795844382132,16.7805081844276,17.5902116263073,19.0280427738954,16.568626042123,17.7671729672964,19.0799915295247 +"Q9W0M5",12.5417242491201,12.7349692931572,14.0888147404732,12.6840121176829,13.3073680382574,14.1083733848231,12.8345835048886,12.7523611764216,13.9700978927403,13.2273316828873,13.1218016469287,14.3072868663142,12.5482630371697,12.8584443656799,13.7575424796869,12.8208244466269,13.171198373034,14.117223636152 +"Q9W0N6",14.2461425949707,14.142279528738,15.0767704974337,14.187549903953,14.1435347640267,15.0361134995226,13.967754322579,14.0174445567459,15.3113859156534,14.5155681218116,14.367840583735,15.7713035286877,14.039097953152,13.6599165604756,14.8842611734197,14.4352689299027,14.4192191815873,15.0882107105848 +"Q9W0Q2",15.2339190223195,16.1608460241939,15.0620943993842,15.2477272443947,16.3846664434614,15.2150255672563,15.1554635898355,16.3405654036506,15.0376764662551,15.1504632129894,16.3501534896859,14.9709568880878,15.0904372441126,16.3853530319612,15.0308995364359,15.1052450042611,16.3411523671566,15.0247381664674 +"Q9W0R0",15.5676144375231,16.4253539430845,18.4299107109493,15.7571450730428,16.3660024142885,18.3385132659823,15.6122548426264,16.4927659254622,18.3628482218812,15.6267656302793,16.5195306890238,18.1465062312626,15.429548902172,16.3988237383189,18.1593342487035,15.3835616836801,16.2690988887325,17.9621404162214 +"Q9W0S7",16.0950252965399,17.7401138310131,19.7537568183872,15.7905229555141,17.318877967208,19.3839446602004,16.4816268912237,18.0775555115193,19.8818646572009,16.3394867710232,17.7537342953503,19.8138044845724,16.3713036617401,18.0671376099234,19.9383311827204,16.2520151528488,17.7269305195309,19.6659158439133 +"Q9W0X2",14.3863727869796,17.1966313310304,17.6071937643121,13.957669923153,16.4735094345529,17.1970474927769,14.319951081139,16.6073776346122,17.4809631127943,13.8937086065653,16.3578606261537,17.1020385233929,14.1257446291651,16.6877716621007,17.2077467997439,14.1266147754371,16.38548143596,17.1190691757879 +"Q9W0Y1",17.2412837854012,17.5595502519231,18.2151256291682,17.0406091776028,17.7448224590993,18.3720510365616,17.2092270016612,17.8601748848652,18.2372064981519,17.1354892450762,17.7565362504839,18.315983871758,17.2289184057717,17.6850054934422,18.185378033817,17.0858894953829,17.4041921553598,18.0099424494785 +"Q9W0Z5",15.5158468886361,17.3682432341404,18.249174840869,15.7182468778898,17.6695926306027,18.5486470383337,15.2372228421283,17.1072118331145,17.8253417121428,15.4599640877638,17.2412796699321,18.082333880897,15.1916054968377,17.2706210152345,17.742403972538,15.0399193065382,17.3122479442019,18.1701546132705 +"Q9W125",21.4812264291946,19.9707883951854,22.4673273998314,21.6884150260158,19.9997364630319,22.4497439887118,21.4725329090354,19.9694387115045,22.5510828780166,21.3664066764146,19.9791873596888,22.4852696829386,21.5725169261416,20.0329492754024,22.6058570647308,21.4384434544694,20.4678957434294,22.587967090442 +"Q9W127",17.4666315588959,18.5307190827321,20.2791361376313,17.4966245671192,18.4903249101658,20.184552893687,17.1671736595287,18.4497944705514,20.0359454907052,17.3438923394261,18.4616225203146,19.8754737461053,17.3342480421687,18.5530964196501,20.1379337942785,16.9648958337375,18.3558155627358,19.9320640539048 +"Q9W136",17.3973274035509,17.9488723404089,19.1339970786664,17.5738875918225,18.076011183724,19.3115464504376,17.2641108485578,17.8528398562094,19.0590144730519,17.4057517668118,17.9609188197634,19.2287846355604,17.1424140966309,18.0330023307975,18.9050386913134,17.735928715941,18.0111095369878,19.1712086756569 +"Q9W140",11.6060501757044,14.896220544813,15.6782855248166,11.9338555059274,15.0113457128836,15.5628188536747,11.0963179491189,14.7077195094906,15.2956700002193,11.0112190949035,15.0522409530804,15.6193259904257,10.7200480018776,14.6461503357051,15.7882637302865,10.1509690079947,14.7496798828371,15.7284198170468 +"Q9W141",20.9619177883084,20.9504616836419,23.9534638862612,20.9116889296139,20.8659907340255,23.8485917274342,20.9755041465656,20.9290461755965,23.8018693140876,20.7701763368179,20.7499918577997,23.7879012835298,20.9726545252772,21.0475958513686,23.7868982005082,20.8511998491775,20.7941192298868,23.5741283882394 +"Q9W147",12.129238723772,14.1968007885775,15.1734614986374,11.9997313196103,14.378865965264,15.0207503091162,11.9436677888545,14.1340158603537,14.8279577379096,12.2482503298051,14.2666478598915,14.9593658722826,12.0346016587898,14.4763385802069,15.0159476641085,11.885342891542,14.1449008884442,14.9420973244296 +"Q9W158",15.4994852273246,16.8223552616,18.1661255358906,15.5301652101689,17.201594745567,18.3548145209196,15.692480767866,16.9941807396554,18.2195807558681,15.7499682936337,17.3403417612213,18.4467216068496,15.3231753147711,17.1218887690235,18.1534074333745,15.8505829598258,17.0571071337,18.2344933471144 +"Q9W197",16.2515811174703,17.8183917185602,18.1822171527662,16.009146269988,17.7076957937639,18.0615522878566,16.2843681859829,17.7529176427414,18.1604301957801,16.1504637377842,17.8084365188174,18.0403827159864,16.1527934831586,17.6856628223812,18.2252381069542,16.0127434691625,17.9192068744564,18.1369088396343 +"Q9W199",12.5537852715875,16.2573735724064,17.800680095853,12.0289611542247,16.4721744887782,17.8537005393275,12.8526277134242,16.6439854271546,18.2480395938051,13.1449912758761,16.6717150367885,18.3806206590125,12.9970757325249,16.8065616790104,18.2224544732105,12.9374839457532,16.9315107882208,18.3592979532373 +"Q9W1B9",19.0833431631589,19.9206654251453,22.1883327349203,18.9773060867207,20.0490198714898,22.0433299741902,19.3276495320645,20.5238490784234,22.2750418527297,19.0297855410184,20.2131500786576,22.2547719779477,19.2981508390173,20.7006319808827,22.3718667689381,19.0361669858267,20.9594209619315,22.3873827981606 +"Q9W1C8",14.3380956806107,16.5371575162278,16.755117286673,14.565745269665,16.5413954115155,16.912342042139,14.5491175473352,16.4987219825209,16.4890355600452,14.1505130031187,16.3911257135529,17.0622453516059,14.2536357993807,16.5509275067317,16.4903589141518,14.3603203937625,16.4906177189938,18.4665682075882 +"Q9W1E8",15.4418252608721,14.7077346061975,16.4591044195023,15.395277206972,14.5952595157958,16.4359725066947,15.4836074219079,14.5525150853563,16.3922308742412,15.3687760029179,14.4865047582336,16.3329752959554,15.2397937850659,14.7911634825071,16.0691770180856,15.207375201347,14.529628954708,15.9240081990407 +"Q9W1F2",13.6681452283844,13.1438655882696,13.339618729732,14.4580994872734,12.9398000944795,13.3272284519883,14.1758040681104,13.12310387208,13.3397618042436,14.144403995058,13.4045499977057,13.5765198039663,14.5878265768811,12.8014714591462,13.8451517447928,14.4239091664449,13.807739328703,13.6516262898362 +"Q9W1F7",19.3724570127956,20.305421029284,21.2118446867181,19.1997215730332,20.3707176306956,21.3054290268992,19.3342368952975,20.4344972760868,21.122735251629,19.2691571285892,20.3868013038213,21.3284774432513,19.3980219563025,20.4452205823941,21.264249603933,19.3699956331532,20.3909740956926,21.4177747359676 +"Q9W1F8",16.2348403296646,17.9493755630688,19.0209862770289,16.3907846461466,18.1058656864928,19.1812933768986,15.9900337565433,17.6425150487707,18.8983982066055,15.8226024167951,17.8184402206354,18.8919873862697,15.898889859492,17.8352495736893,18.9130051799802,16.0740976504285,17.8711533938835,18.9536476404991 +"Q9W1G0",21.0935793147346,21.5739606649846,23.1610914334171,20.829247730002,21.3974340676829,23.0332108710228,20.8876195932389,21.4810048287946,22.9911738924793,20.7719773860512,21.340114487489,22.9818256747879,20.8393711007846,21.4790137875209,22.9490237054865,20.5169109039215,21.2675621969556,22.7085731349342 +"Q9W1G7",17.7759322087671,19.5797379155572,19.5960098502908,17.6883952279263,19.3894507035605,19.2953112960199,17.8607774567462,19.5676266009736,19.473499839706,17.5545092776932,19.2698853412333,19.4280863669889,17.9078877198346,19.6078983204095,19.6430042600987,17.81848214701,19.5105784345653,19.3991163402532 +"Q9W1H5",15.3691993870377,17.9824156377073,18.1683425785183,15.5772994103592,18.0167346268359,18.3033562005775,15.531015203586,18.0338058792421,18.3445787225515,15.5475585019775,17.9509839023437,18.5189095824826,15.5625351797214,17.757313957688,18.1360871107038,15.6291580261453,17.9570493327579,18.4403816565291 +"Q9W1H6",17.4691780622608,15.746417592078,18.4675950778929,17.2932697502431,15.7991767745515,18.3936553711222,17.350413224379,15.8424046437534,18.3611696382258,17.4131111155758,15.743885520332,18.3418234873566,17.2979064947144,15.9154397072928,18.4222611779123,17.3776818763959,15.4754125381227,18.1132438679791 +"Q9W1H8",18.9079699075851,20.3040856949314,21.7048547953948,18.6407050445424,20.3322915225853,21.6995652964224,19.2784564458553,20.7594188067233,22.2289861338535,19.0451588212377,20.5771426462546,22.0110487691478,19.4977523313492,20.9676809996174,22.5309207254555,19.1925179284579,20.7176381630658,22.1969491222851 +"Q9W1I8",16.2787923530138,18.4112736276723,19.2969321082318,16.4098446875555,18.5447550815099,19.3958654768628,16.1928522414799,18.2290311626906,19.1695597091682,16.1817858311912,18.4973083903767,19.2934807658006,15.9905073975183,18.0959436869478,18.9123501669684,16.3902802810795,18.2889113080305,19.0984495826706 +"Q9W1L1",14.1241699876836,14.3599695419448,15.1790978743397,14.1207783862732,14.4974439675003,15.3923188121599,14.244329144957,14.6662613301226,15.6682589282462,14.687817592866,14.9906322816376,16.049793805963,14.9286445693968,14.5707855055175,15.200801152308,14.690925659909,14.8702282893754,15.6646462990803 +"Q9W1M9",12.3837024913853,14.9115211341414,16.1188300415643,12.2098612098925,14.5067136420718,15.8864553128312,12.7704055612912,14.9260024759608,16.1780226813414,12.0263042149569,14.7322457007879,15.9423863488314,12.7100286483008,14.664774084903,15.9338489228834,11.2636608886756,14.2885215448662,15.8312961752133 +"Q9W1N3",19.8366638562005,20.6892756472827,21.5276665291573,19.8848208951798,20.7288129234752,21.3785233750319,19.6164875147761,20.512463217819,21.1955261655584,19.5939650471558,20.4591667966274,21.2515797142831,19.6867898613233,20.6588397810292,21.1868115800283,19.6198031538789,20.2137243147488,21.1897141247967 +"Q9W1R0",13.1300942883188,14.4242584567136,13.6752267654946,13.5389444463506,14.0883262876247,13.2640227803843,13.4618146068518,14.7530005009318,13.9889021991388,13.7594524901832,14.67227627615,14.5443432508767,13.3508941888558,14.9749660414915,14.1900104337648,14.9972640988914,14.9470068183446,14.2998566564101 +"Q9W1R3",16.6625458174225,16.8449047837554,18.2537707134091,16.6120616015464,16.7947461511495,18.0248542063442,16.3948089443543,16.571955139921,17.8141263764162,16.3305235128306,16.3246810511444,17.7341005491968,16.3152200143127,16.6302079849116,17.8094547684797,16.2938463400123,16.3102778393316,17.7018238361551 +"Q9W1V3",15.4976991771079,14.499545338401,18.9756965016382,15.5970596673257,14.3834830776238,18.6925470118013,15.7977739598835,14.8065507331433,19.0192580847144,15.5433455241876,14.5253555352815,18.8150810464949,15.7379373147212,14.7860969720208,18.6642006108861,15.7819953962839,14.6995584777174,19.060886961973 +"Q9W1W4",16.557908702038,17.0577794338945,18.2440186948092,16.7095124018583,17.03602658185,18.1742034052134,16.5336104451202,16.795000050238,18.0310750669616,16.7810861600528,17.1871109573403,18.4474683829072,16.3132477907203,16.7372509909993,18.1597849582706,16.8769932596708,17.2263132812954,18.3654378343704 +"Q9W1X4",13.0924714564298,15.977494108276,15.7550331900857,13.0028908171109,16.1104652592025,15.8276014050088,12.9543004982577,16.462247030266,16.0465620502582,13.3443280666914,16.2561975432877,16.0823456632912,12.7151974103286,16.5225179344823,15.9414128454051,13.3711774667201,16.5723796509351,16.2199342165904 +"Q9W1X5",17.7629615078895,19.4469808268462,20.6706612278679,17.9117787515503,19.4799087727467,20.7662668783304,17.9193445570291,19.4413515551497,20.8447684221988,18.0232490196347,19.6256652326695,20.9883447769463,17.8331861179933,19.4522817493376,20.843134735632,18.1123261866142,19.5716174194732,20.9409706025636 +"Q9W1X8",16.1764662066697,16.3143535267857,15.7342068736289,16.0100101034645,16.300834208427,15.7748947864476,16.3755164015614,16.4542908119667,15.770176746919,16.2257916719669,16.3055621448934,15.8603567890055,16.3068743405171,16.4379661714398,15.7930579104248,16.1028838681214,16.3160582900172,15.820576887238 +"Q9W1Y1",16.8451935933416,17.9310068207864,18.4579423949734,16.8971351437412,18.1401088350009,18.5387094595432,16.6879250337216,18.1177104215672,18.4611984665664,16.998481053493,18.2928857464065,18.4839112411553,16.5056003486254,18.1486667994599,18.4729262725673,16.8124770569797,18.4829321636897,18.6747486818247 +"Q9W227",20.5953798596295,22.0469665906285,23.6710360320531,20.4429722054375,21.9868009017011,23.5232165516804,20.4909252135633,21.9855293711271,23.537817267406,20.4106867291989,21.9047849405567,23.4644137511183,20.4195108408001,21.9224334093178,23.4115494339948,20.3555692825852,21.7343933220505,23.346424944173 +"Q9W229",19.0443491782607,18.719747495022,19.8539798291335,18.6739653113269,18.3615947154917,19.6440530211276,19.0656907428354,18.9363266004687,19.8737628156538,18.8039023526741,18.7520080705451,19.8909790102296,19.1022722737312,18.7299608965553,20.0758270159967,18.7000909137472,18.8150854435834,19.7898270180506 +"Q9W236",14.344886796212,17.3974145371117,18.0327893398871,14.3976392708588,17.5373219020982,18.0101189812025,14.2037802237998,17.3515868546445,17.7169855340729,14.3986138682342,17.2876492022024,17.971540564324,14.1942077489982,17.3508775002554,18.0903109220377,14.2954351472704,17.1253151347839,17.7219253874926 +"Q9W253",13.11423131079,14.9473375407415,16.5228923167667,12.9972925189794,15.1224726090841,16.4299430521446,13.4855025064436,15.5743970054962,16.8380547894216,13.7234362398769,15.6477933549258,16.8788967504091,13.3818876357772,15.7199068748534,16.9856100567045,13.4192180746651,15.7541646782622,16.9615175348074 +"Q9W254",16.9446317590591,18.2670151282466,19.1432018449662,17.1174441329694,18.3367489662507,19.240773115748,16.9939739434608,18.1493868231549,19.215856149372,17.0008054201764,18.3158731778261,19.3104115587968,17.0012400192186,18.0674794042163,19.1148600322703,17.1144970999252,18.2305466548465,19.1208154070069 +"Q9W257",17.1766965866922,16.2488606308826,17.2081479127696,17.4928058926638,16.3546183063197,17.8104860871467,16.845491111413,16.2444965654628,17.1644995961489,17.601623240744,16.5891031165451,17.8507004668539,16.4758514982122,16.3808277210208,17.5767128734357,17.637737724808,16.8064104424126,17.7203389589782 +"Q9W258",18.376022457963,19.1076086551553,20.1638795722649,18.3861065723153,19.4285178121616,20.3249374213123,18.4969010077834,19.1791670504201,20.2079821716652,18.3566081008753,19.3571512493668,20.4850446115774,18.4690553476044,19.2348505533478,20.0983216236894,18.495606829173,19.4019578683974,20.1436967979216 +"Q9W259",16.7233300759103,17.0551089573109,16.9279536255112,16.7214387386061,17.0978291676781,16.7792363049092,16.7744954489414,17.0032583904023,16.9065437595631,16.6778262380025,17.1915043435464,17.2903398381085,16.3170723747588,17.1353065979181,17.0578857907226,16.454922758613,17.3905662943593,16.8485120002065 +"Q9W260",16.4560467498613,17.1951595502709,17.9062067388672,16.5865434299001,17.2058624031079,18.2231116873834,16.5353535010854,17.0624028647672,18.2160760109951,16.7352505240319,17.3681197192245,18.6490048238163,16.6787312616674,17.1983525691767,18.2411053696479,16.8933853183577,17.593499651784,18.5453986383923 +"Q9W265",15.8577163472515,16.5625500704426,18.1665008644818,16.0629524326156,16.8210886863246,18.2463307989751,16.2113376961832,16.9356036885828,18.1571401314276,16.1457672064712,17.0067070974245,18.3224930593968,16.13159381673,16.8531381552454,18.2296332077369,15.9048043346337,16.639621530301,18.1188432532628 +"Q9W266",17.5786758576353,18.4481554789387,19.6246662853626,17.6811063151984,18.6807045088146,19.5350963689919,17.2575058029312,18.2176908901324,19.2680085234136,17.3576770765092,18.3434107926474,19.3660690344226,17.3119702277231,18.3905613903844,19.353815617001,17.3107230625444,18.4504789641811,19.2274624974298 +"Q9W289",16.5769524194113,17.757646143093,18.3784389891853,16.7475501930329,17.694526713691,18.2165113262923,16.5647531035065,17.5863449918969,18.2445425776522,16.3455030900303,17.6910373102115,18.0698367369578,16.5671570443774,17.6704250425221,18.0731131296747,16.4459158343708,17.9562303357465,17.8223979628674 +"Q9W299",13.0630238383173,14.5524680610714,15.6296798554132,13.1789806883317,14.3688498991126,15.4079015180146,13.4512921878302,15.0354376957521,16.0613902842643,13.6369077501247,14.4638562291029,15.5755796905794,13.8756355662119,15.485813660449,16.4329348687146,13.9563487917612,14.9754654700491,16.1534120587145 +"Q9W2D6",18.6822019251346,19.1790805301489,21.1368339606963,18.8062500205471,19.1898499199839,21.0965982112415,18.6856951283552,19.0304040178769,21.0886220065464,18.5157871258963,19.1251477594755,21.1043332703068,18.3990054808924,19.0414836620416,20.8985614982451,18.8219486956257,19.1174259254402,21.0362185267704 +"Q9W2D9",15.6406630279834,17.807177826039,19.5589575122668,15.2764136849399,17.5889567316891,19.5293793119795,15.7646537979851,17.7460170865431,19.4379256100414,15.8529561195189,17.9575974964339,19.6692458597292,15.7447923911824,17.4730019163592,19.7107618725495,15.4710114765775,18.100997506864,19.6822469096118 +"Q9W2E7",17.9428333808941,18.5307522587472,17.936458137154,18.1386482910648,18.8907206813131,18.2589807467082,18.4303271610385,18.9856339135715,18.4670963064484,18.348012615272,19.0680007260204,18.5970752579706,18.3021815408557,18.986025051787,18.3887042543704,18.5455353705729,19.1955379371028,18.5259355763125 +"Q9W2E8",18.0080293826548,20.0551347889053,20.4300410601837,17.7540869679158,20.1475003240039,20.2418282556463,17.5681559999502,20.0383903886535,20.1908196842318,17.8329830276294,20.0389260971547,20.0836046440833,17.7514658253078,20.2432661356612,20.247676444939,17.5025824860931,19.8844604269841,20.0523373798885 +"Q9W2J4",14.942250777853,15.8007894461466,15.7543012386124,14.5625663094106,15.2102531377327,15.4207006128755,14.8696208101619,15.609996868997,15.6148454488633,14.5122999778357,15.2940046171614,15.4305813847373,15.1535473989147,15.4735537573573,15.848096864936,14.4753265823632,15.1771139237017,15.1687854918848 +"Q9W2K2",13.9401823986291,15.8699890332437,16.9953046907156,13.6981131390577,15.9705179607034,17.7146674434586,13.6283973645362,15.8866362722795,16.7932361390783,13.9587506996643,16.0166453460987,17.4880929994175,13.7124118663118,15.9224226449693,16.8335878350706,14.265870259085,15.8395983980075,17.0219488294543 +"Q9W2L6",19.8852838970367,20.3222043816518,21.8949531737978,19.8006130491939,20.462211976747,22.0346413003904,19.70626515319,20.4490367426649,21.9254611058232,19.8982702432585,20.8149638933541,22.1073460266285,20.156292134275,20.8596737620755,22.4548008996827,20.3117860190592,20.8275853455157,22.3915204289281 +"Q9W2M0",16.85327127786,18.2510204909848,18.6522031791061,16.7639963911638,18.3000535142358,18.4379620343363,16.7432608971389,18.1157132414124,18.3569361636369,16.698157327081,18.2124405373188,18.3391571048984,16.7060128845319,18.2357463255062,18.2961030864775,16.5739391020266,18.0673760656483,18.1047609069251 +"Q9W2M4",21.8113884084704,22.4695310799914,23.9591517819558,21.825954969837,22.4784864087889,23.8549423857399,21.6500226901723,22.3966934893149,23.9513518419553,21.6427073944104,22.3904820700195,23.8397526833656,21.6327548612848,22.4351316085691,23.880742210497,21.7158519943914,22.2998804784832,23.6517964369733 +"Q9W2N0",14.0271644914143,16.1749825513736,17.9431719507477,13.8894887025188,16.1854449274391,17.8281482608443,13.8923362894273,16.2719924825885,18.0248030085484,13.9049791835973,16.1896310615934,17.8221728993678,14.4980496003243,16.6902159821851,18.3729595518405,14.5473346328616,16.7973929632946,18.3972724265029 +"Q9W2N5",12.2374556416478,9.68509682065196,15.5647971761821,11.9464160763169,11.0270368273143,15.8330879139933,12.5126628624647,11.6172846140258,15.6166704358279,12.4670089203578,10.8554370717111,15.6880632040656,12.2669658067615,11.28500417518,15.677791680436,11.9926315073256,11.0018685413411,15.6646528367171 +"Q9W2V2",14.6741137101138,15.161817997977,13.228227036699,14.481269314352,15.2321890770639,13.036758988247,14.6423436114098,15.1211793175948,12.6837000700883,14.3567771904613,15.619629073162,12.6288332179532,14.8131599632601,15.3795437533491,13.2972000918228,14.5294410442114,15.3632049005043,13.0669305291859 +"Q9W2X6",23.2458758060301,24.1656494056072,25.1446940835385,23.2482121610347,24.3065060680741,25.1212240636488,23.1868960505932,24.0536303853449,25.0761072853909,22.9586995377455,24.0402045709396,24.9550150247159,23.1507603925694,24.2594297158486,24.9791342825857,23.0844076045088,24.073419999521,24.8872415079006 +"Q9W2Y3",14.5760973854034,17.865362591533,17.6932455598886,13.8729157913571,17.5012440306148,17.5369923871205,14.065681787556,17.6550232875584,17.3206388597797,14.4210609542676,17.5973292207601,17.4575102204299,14.0665219950525,17.5434325492918,17.3674301405568,14.1271684918813,17.4938225696155,17.3502144421217 +"Q9W306",15.1559858380665,15.4150968691283,13.2293031135347,15.7438480412783,15.5252945895843,13.4851026081576,15.1944630977805,15.2391756739541,13.3149978516987,15.3431429818231,15.5587192620924,13.5326984529777,15.0100582508194,14.9023516426488,13.7029835931518,15.5169689051082,15.4121425683525,13.5797671382817 +"Q9W308",16.5780781645169,16.3098357960198,19.1686563907475,16.5252068122187,16.7138547222441,19.387020105848,16.3909051010621,16.0996316401226,18.7938048552437,16.3794245394717,16.2189050547687,18.8912396767431,16.0621667956711,15.9090552247311,18.5033841126815,16.3778670487589,15.9276713399421,18.3159345063828 +"Q9W309",17.661951423771,18.3613946021054,19.9438122351081,17.7035678684685,18.2910992919714,20.0891612888086,17.3282461559602,17.9955778367613,19.6118554444044,17.5422794873107,18.1445720955967,19.9956374287169,17.1785160992005,17.7772995931384,19.2394390075717,17.3104541376701,17.9657838999135,19.2165101952644 +"Q9W314",15.1597354544636,16.5735649343413,17.3650636244223,15.1204714034324,16.8216458162829,17.300673707274,14.9701948811851,16.566373128875,17.1328112448933,14.84993430396,16.4900252971934,17.1148917563085,14.2590568496184,16.4580233190137,16.8263466634574,15.1396059474999,16.5125417324773,17.0127303821416 +"Q9W329",15.4795227211124,16.74291456045,17.3396782934252,15.3175584538883,16.8561119538389,17.389489272141,15.1759648160162,16.650383301076,17.2986015032414,15.2643907871552,16.8534351830195,17.4717431419269,15.2608503038131,16.6048149833094,17.2526486121439,15.1087987876766,16.8639429354522,17.2610589525496 +"Q9W330",19.8024581558797,20.4593264999258,21.7220159009213,19.8074139907685,20.5485634691875,21.7424076120629,19.662094051777,20.5799676607473,21.6043346128935,19.7531563838702,20.5086933382528,21.6399317335284,19.5872966234153,20.6785061098961,21.8351529656578,19.85570211717,20.5979590435822,21.6856645942786 +"Q9W337",16.1021840445548,17.6145201998727,19.941414344486,16.0409222942309,17.8931440928043,20.0646100099921,15.8350450491773,17.2198287261778,19.5553369525565,15.9510584505841,17.5767450299737,19.659348519806,16.2120433154712,17.4928564246973,19.6029368566959,16.0737027320255,17.4175820299155,19.6212544739445 +"Q9W369",21.3368893889801,22.9009818997974,23.7274970050496,21.0880567210584,22.5529365242968,23.3012647566148,20.9104830401654,22.4311389814497,23.1751500720354,20.7119576947672,22.2796430761778,23.0766641638253,21.0847265687062,22.5111048358451,23.2183212213386,20.8820925597593,22.2756043302689,22.960310266342 +"Q9W370",17.9916522494945,17.9103959697525,18.2445550550151,17.9722406501993,17.8780422459723,18.1753589136433,18.5575862429018,18.5741341755063,18.7284312763895,18.6388469472313,18.5920473892953,18.5824837228696,18.2654188804298,18.0923085154721,18.1251284259578,18.7699154647635,18.8531748477549,18.6270477358698 +"Q9W379",14.6913228952973,16.506303507981,18.2199437603486,14.5160263012485,16.3056098191182,17.8618751290073,14.7122454019746,16.4564384949602,18.0419288955089,14.6510379736384,16.2451413005697,17.6452138697964,14.593872857346,16.4027510819274,18.0081297636047,14.8147697311802,16.1620464841714,17.9512026167557 +"Q9W380",18.3404052481277,18.6319928433364,18.1773962444656,18.3666260763302,18.3322631450906,18.1288848527067,18.4333371058613,18.4644357318269,18.1318543492686,18.5132665170071,18.7097293569561,18.328061558315,18.4446462860502,18.2568730315298,18.4928817749756,18.3040173551875,18.8718172728876,18.3081017807933 +"Q9W385",15.4023507684144,17.3108665791992,17.9156409680172,15.630375775779,17.4740484251409,18.0839909728226,15.1531047548027,17.0394123575981,17.7915705440754,15.8271062192078,17.3010509191784,17.9189678981474,15.2536126060646,17.2296332397186,17.5257279591575,15.6160288128714,17.0467994753942,17.7107813553709 +"Q9W392",19.0160741059286,19.8409844429459,20.7305149079726,19.0237462309694,19.9640786988141,20.7277062707644,19.1698303153478,20.0842731269564,20.9852705763237,19.169389422649,20.0597811401018,20.913127606282,19.031024130453,20.1553763239072,20.9325353897773,19.2069147366102,20.1361914894244,20.9956772542284 +"Q9W396",14.2691699263445,17.4266982314391,18.1151083191345,14.4720367824624,17.6412553843386,18.3004752651479,14.4042076987203,17.2824952974218,18.0318949466979,14.2694820025935,17.5336872658481,18.1663431496105,14.0924164207761,17.3775973225174,18.0273791047148,14.4616944935995,17.5905723523415,18.1477599605096 +"Q9W3B3",15.1395514205899,14.6733358830544,17.6749914744278,15.0792823917846,14.6993392153071,17.4891739544764,15.0733668258838,14.6605419927503,17.1389675519477,15.016492521452,14.8383882657924,17.2491480708562,14.851487492063,14.7060090223157,17.1588144725019,14.84581659755,14.6282259477637,17.110050530185 +"Q9W3C3",15.4155304960787,17.0158149234323,17.1968299440599,15.1334161381171,16.9363734420632,16.7911638624909,15.1767505905224,16.9202364138501,17.1803296210473,15.0296432733719,16.8011051727661,17.1255227692267,15.3092834118612,17.3094621959318,17.4366100276482,15.2043180164797,16.8155801220835,16.9239100773192 +"Q9W3C4",14.3057107219587,15.0107780235755,16.0275116006383,13.6275190813441,14.5182764854395,15.365308658856,13.9238781351876,14.9464653234881,15.5220127795716,13.966353540755,15.11304222149,15.4306660656636,13.9249811778994,14.722549685044,15.4353372053235,13.4648372721549,16.0265120845965,15.0836952081113 +"Q9W3E2",17.2138137759267,17.9373512117381,19.2259776008246,17.1369933735645,17.7966289149251,18.8594188150454,16.6648882254861,17.4757512150674,18.6183304831598,16.1909480586344,17.3029929521607,18.1114302653228,16.9055935216209,17.6312897463702,18.8842641567316,16.1687273975736,17.3750370334876,17.9404185578903 +"Q9W3G8",15.449718665603,15.9275204641115,16.6407988235313,14.8936949878374,15.4202993645334,16.1822020836919,15.4063598247357,15.6590272991009,16.9864382765302,14.8959863202628,15.3033493101795,16.4528952757654,14.9604071333507,15.6327199565911,17.1505197234179,14.7626099904148,15.2173601094081,16.7840058734903 +"Q9W3H4",19.1838536345707,19.4994460734501,20.7633605248827,18.9017537179282,19.3013372311648,20.3857616667719,18.9599840680348,19.3637182123786,20.4351111367699,18.5805609611078,19.0667365504661,20.2307842991854,18.8790821701179,19.3160662341883,20.4230127382611,18.5784491296565,19.2526049842261,20.0515278027887 +"Q9W3J1",15.5780287118186,15.8450848694662,16.718386900749,14.0787752476353,15.8540694121175,16.7559435012325,14.0543389198231,15.7077178585267,16.7726706905269,14.1962302486896,16.0055850588137,16.672665397376,14.2509702379808,16.0286224164404,17.0276908300632,14.307636608277,16.0402882665308,16.9327158684335 +"Q9W3J5",14.8041623774699,15.5265335256431,17.315922366822,14.6193715605864,15.1674636220989,16.9763791235047,15.379792041087,15.9445009144326,17.7618523451277,15.3077909919755,15.6215845778272,17.7422595870286,15.4690752638263,16.1504777680817,17.9525030856579,15.2453319882064,15.7989260756797,17.6283440973089 +"Q9W3K6",15.4566536933859,16.9409902676686,16.6819022320639,15.3267064137462,16.9399572722794,16.2634158384748,15.4576286820455,16.8450235458844,16.3071978605006,15.2527394523196,16.9025732990633,16.1863526150316,15.6218748244306,17.0694755744339,16.6423885312916,15.4737242111767,17.1338977785519,16.3596327516297 +"Q9W3K9",18.6953759066722,19.048610572227,19.1739708721549,18.9328889594055,19.5714324387931,19.697047422284,18.8891959267762,19.2890700606554,19.3162340787664,19.0765012420811,19.5597335593663,19.7547019809811,19.1826124453031,19.6713076719818,19.8739181624237,19.1387325309504,19.554921282091,19.7787267288662 +"Q9W3L4",15.0742568724138,18.0209991939077,19.7090628178376,15.1975990348401,18.1953930689774,19.9497784863831,14.8192324673407,18.1354101036902,19.6548169331582,14.7847382742552,17.9009660074669,19.5595049170716,15.1476345271371,18.5343950180735,20.1314601472495,15.101509120946,18.0937746580174,19.8050233714082 +"Q9W3M7",15.3172291400271,16.3538157258193,15.8673856393794,15.2420539675883,16.5808579276051,15.9395778531838,15.3613572043709,16.6188245126288,16.16946540975,15.5109640946588,16.8334490320518,16.4595369470527,15.4903342452246,16.7615799516325,16.2365494154925,15.4615953287428,16.7425003269017,16.2058359302163 +"Q9W3M8",17.3238529386203,18.2853688909113,19.6758344985334,17.4706618033872,18.3814490257635,19.6518621346189,17.5272196249401,18.4134464472416,19.705530820959,17.7257074873034,18.5513694050623,19.7998881271195,17.726689039832,18.4556770182008,19.7542442136129,17.9070922333844,18.6607914064131,19.8267322910079 +"Q9W3N6",15.3443271718997,16.1798797375758,16.5911562698638,15.238678836533,16.3312442636694,16.7387064074658,15.3563133241957,16.3900459857163,16.6683231720398,15.3808140588469,16.3971189373613,16.7110774678758,15.2862050504612,16.3731461050776,16.776089482364,15.5674960087513,16.311047576411,16.8192654680077 +"Q9W3N7",15.9652521192983,17.4860685402327,18.8250860750545,16.7640436641693,17.1664206350774,18.7155724771245,16.0510477548322,16.6626912762168,18.6059571155066,16.0094260230545,17.0997712926268,19.0736587177932,15.9322602125817,16.5686934026042,18.60834764788,15.7733920632686,16.5785922556683,18.6360464824739 +"Q9W3N9",18.6753913430781,20.4341253506643,21.3270507805125,18.8744378373602,20.6730711625554,21.4011832489651,18.8104582400453,20.4534979586403,21.260138353205,18.7631922901072,20.615569124963,21.3857863981944,18.6492588612717,20.5912535142127,21.3784090119598,18.2872189801155,20.5827326521824,21.3179125316442 +"Q9W3R8",16.122339724775,17.9778636035078,18.8575264986011,15.9593030750844,17.7533843060929,18.5991590969179,15.9307696211833,17.868520442844,18.5046425177434,15.7461696191226,17.3938666778503,18.1797236549363,15.8577920038215,17.8044199707195,18.3547835229891,15.6126858156651,17.2777386910384,18.0768937709511 +"Q9W3T2",15.4073373393019,17.2510838319149,17.0639920843114,14.9523425132085,16.8344539701004,16.7024002320735,15.2476527817311,17.0585750364404,16.8167026619831,14.9175227263585,16.7717434579442,16.5597302101604,15.152038664151,16.9643942384218,17.0086420523501,14.8687299180371,16.7277120373824,16.4585772296462 +"Q9W3T7",16.5574156566537,17.7774455827337,18.0028986227457,16.653015826206,17.7062666794941,17.8781627948443,16.5497093979397,17.6308288559484,17.9765047361525,16.5699378776134,17.7162085243063,18.0753502853461,16.5264610009494,17.629932460265,17.9992128139879,16.6054348630395,17.7883112673609,17.9562987324551 +"Q9W3T9",17.4802183990957,18.7504484265342,19.5671523355279,17.509488308354,18.9804056364806,19.8256381369406,17.3646446069028,18.6798235308249,19.4228725161342,17.5339973296191,18.9074523477725,19.8134617457893,17.3230775244975,18.6428092330116,19.5996033920966,17.5602173716915,18.8196808547283,19.5984816462586 +"Q9W3V3",11.105813162161,13.4150650051966,13.9401428989543,12.2628602275534,13.3541262635714,13.7673249716689,11.3882444424965,13.5603114952271,13.8174520049324,12.1428851589199,13.4395612818008,15.2682495864193,11.8076996043812,13.7157389003989,13.5314134073596,12.009201599586,14.1508649037635,13.6638929063072 +"Q9W3W4",15.144155094101,16.6000106343065,15.785791971136,15.0521043953369,16.3949825461122,15.7542848391567,15.3880390464021,16.7236831433288,15.7642477017232,15.3930971611124,16.5764248648842,15.6646191701897,15.3175626306007,16.7983733202952,16.0427284696994,15.575420273713,16.8374567305201,16.0976194766982 +"Q9W3X7",20.6339005207512,21.9167131964588,22.6953670791988,20.6747712983345,21.9092214741995,22.6342877573683,20.4587591361265,21.6634301657229,22.5144637076628,20.1991560958801,21.6669075320876,22.5365518447791,20.5455845858133,21.7548703006375,22.5166062064987,20.4635324285416,21.8248502740079,22.538551314943 +"Q9W3X8",12.9839834695127,14.0366682970105,14.4647653808617,12.8245292291088,14.0622908816974,14.633663744639,13.0855495915273,14.0853677198278,14.249459460972,13.1307432411168,14.0756839525895,15.0075167914835,13.5672849823475,14.0864700488491,14.5536730063846,12.6449037628578,14.2868949737456,14.2643967387021 +"Q9W3Y3",17.1914851540934,18.3723175264949,19.7167023398875,17.0255305306849,18.3487131992307,19.5868782575404,16.8213971894694,18.1752900892428,19.2374630928212,16.6132252940087,17.9576496576663,19.1789245345609,16.5715418065188,17.9655799022484,19.1685278797549,16.6673622371698,17.8261239009406,19.1470290141577 +"Q9W401",23.9500506190331,24.1000916913953,26.022542542471,23.7106098019524,23.8875457823235,25.7478111833911,23.8105394419583,23.9905420042082,25.8780223170761,23.4926994832088,23.7807240534166,25.6018884629764,23.5851572196756,23.96707187948,25.8699967293546,23.5709043608894,23.7708154750843,25.5611590879524 +"Q9W402",21.1877280164123,20.9625101708958,21.8633255122054,21.1649854533889,21.0467299174226,21.8149550327591,20.930087955874,20.868268231043,21.6593545499855,20.9190303216231,20.8705870067974,21.6484907775967,20.9825161150034,20.9847393788654,21.778798595876,21.0307115418601,20.8639743592362,21.5576495945367 +"Q9W403",14.2656239027644,15.525342392786,16.0590052648278,14.4016119845111,15.6429290358823,16.0742988911188,13.8233259560913,15.3668484418968,15.8909618672382,14.2794979014551,15.3914595349909,15.9623377465046,14.4366257170312,15.3615922205184,15.956101492259,14.53574643866,15.8870427636751,16.1657130019902 +"Q9W404",14.2005733609949,16.0801393435389,17.9044639667188,13.8625859679885,16.0073828159536,17.8106759546751,14.2073041902749,16.069049896292,17.7715159312899,14.1015521974037,16.0744241838489,17.6374544516352,13.7663893773826,16.0013862954498,17.6131436469846,14.2466448983916,16.4442686063845,17.3426794588544 +"Q9W414",18.7454174678802,19.639717368504,19.8356408496476,18.7243433431104,19.6711953360154,19.9110130065198,18.9570706604145,19.8972656052008,20.0080156520905,18.9697262813665,19.8950740984519,20.0497065071175,18.944260927512,19.9451719171589,20.1043008546449,18.9164176007043,19.881823726468,19.9323339438309 +"Q9W415",14.4756467539893,18.1587308813506,17.3179372620909,14.69736155397,18.1743233507913,17.5640154408117,14.8926041657004,18.0118967895422,17.1351114851884,14.6983421979624,18.0253242383605,17.4028586141003,14.4365141189828,18.2981677260103,17.7129496345103,14.2304192045187,18.3350198785252,17.6973335539562 +"Q9W425",13.477559757254,14.8505095888258,14.6991346641032,13.1290698521766,14.6289785906772,14.5930019441251,12.8466919269957,14.008678755428,14.7922162393341,12.5611371237373,14.1386722715034,14.7195216836351,13.2433341076368,13.9841344477636,14.6282529809811,13.0581721340317,13.7441838214186,14.6000082490857 +"Q9W436",14.1967188019471,13.2296597634526,15.477936327311,14.0121813430288,13.8814621148922,15.5334437163272,14.2223498307543,13.3552556467002,15.7354708707767,13.8561959561095,13.8680672999508,15.8806010642758,14.117413048811,13.5469505777242,15.5571373265521,13.8067868248578,13.7015151041712,15.6299949268876 +"Q9W445",15.6850939990038,17.3658768554316,17.0030600513736,15.3524035064322,17.1826823960218,16.6199529690496,15.5474418768975,17.3651690468993,16.7550101949741,15.252436390132,17.1884323961643,16.5656127184252,15.5298552824334,17.3872612404809,16.6476755286829,15.1827933057281,17.0451804344449,16.467454571138 +"Q9W461",14.9698691939002,16.8841262975768,17.3610889321753,15.0140946516309,16.9417251392119,17.4872911120313,14.8564465357184,16.837530965557,16.9752799087566,15.1673022061106,16.7352948132581,17.0380196795726,14.5487673478786,16.5585290969099,16.8284229666127,14.7385739219113,16.3816049547599,16.8502447837712 +"Q9W483",15.2126674773047,15.175665919465,15.5216927215311,15.242742240927,15.1294611328236,15.9657056141054,15.273416261813,15.4543723862672,15.8696755509169,15.5433297576227,15.4068872100354,16.3373543639479,15.4797522149435,15.6108323248176,15.7797308905055,15.3138281551948,15.9464908503535,16.0362172122242 +"Q9W499",16.3793324814359,17.5917818973904,17.0272925426704,15.9426551223979,17.3488750424756,16.8014768794145,16.3880481761715,18.0614306553777,16.6012920974754,16.4009348263052,17.5127590311257,17.0613983795925,16.6640048248284,17.723592509977,16.8042024371421,16.1214166687324,17.4485055528165,16.4831143003113 +"Q9W4A0",15.9098558708658,17.8675410261648,17.8433819739742,15.5979091609811,17.9673345615334,17.8328278992947,15.798585715549,17.8954423080934,17.5857002094924,15.7140138354021,17.8027310547577,17.6204130299683,15.7021040820893,17.9325462549182,17.7270405259553,15.6907475576674,17.8671924594724,17.6783402864552 +"Q9W4C2",15.6844087662348,16.1440119792147,16.7898447679702,15.4715335941861,15.8209819452367,16.3502623616948,15.7286419183612,15.9367619289715,16.4238212479378,15.7307778650655,15.4840367719897,16.0079864332617,15.4407467261909,15.4824184770889,15.9295205544754,15.5780933576653,15.567916488906,16.0118768960068 +"Q9W4I3",15.1374755867136,16.5895038715582,17.1375809599959,15.4134792310759,16.5990031391329,17.2625429428625,15.3678055360615,16.8564491512707,17.5103104110046,15.7236454082569,17.0851225249231,17.8888927115552,15.2229329974069,16.8144435020266,17.450134891525,15.7307330977496,17.0449121559184,17.6687778909262 +"Q9W4K0",18.5307792359926,19.3300672372904,21.0616036356356,18.509581802753,19.2985283742089,20.9639492805049,18.6182965142104,19.3666100352521,21.041832689465,18.5439216932482,19.3737930106755,21.2281287465966,18.6742371797638,19.5379770053447,21.1149156596145,18.9699570107809,19.6063383748166,21.1885708311734 +"Q9W4P5",19.881501666825,18.6896944506069,20.2106060381064,19.7505599562583,18.6633587677433,20.0397661223423,19.7396118949656,18.7152354957079,20.1245228196034,19.7363785951306,18.6133905486797,20.18352284285,19.9583480878682,18.9533720179856,20.6102841403976,19.8663568981742,18.8997418658799,20.3947635593832 +"Q9W4U2",16.3249965837104,19.4877741667749,20.3975513841517,16.5093407804805,19.3667224146451,19.9565563530222,16.2250838250214,19.3407583825294,20.4535369997975,16.1084277460339,19.2417686073599,19.8114392288786,16.2347398262735,19.4334530526345,20.0537401723059,16.4193580552209,19.1264665147774,19.8997056207006 +"Q9W4W5",16.4843808182055,17.2726427908319,17.5521316407361,16.7771516013766,17.6440790689353,17.7697619486927,16.5441831844467,17.2941567716397,17.6282183566198,16.7531687142323,17.4079984969412,17.664102450204,16.9903607423719,17.7344923607136,17.7469567414754,17.0312707574912,17.5695887235348,17.8798437700632 +"Q9W4W8",16.7170295239217,17.3234070388236,18.1489300727255,16.4436872330359,17.117511649988,17.9557143782564,16.9794084468888,17.4605127680815,18.1646081321579,16.5031758499588,17.1385727425721,17.9457191910147,17.4592359346367,17.5243669272161,18.3188479908081,16.865704799666,17.2245040659237,18.1277277683176 +"Q9W4X7",17.3254301080102,19.0713526266532,20.7967931196359,17.436087408201,19.0777471280114,20.8132033510392,17.5961554135148,19.0252507328618,20.8532161626726,17.6579994335134,19.1287908376959,21.006535192141,17.4629094050317,19.0134200038403,20.7349177034973,17.5038874378303,18.8971477864136,20.8435776454499 +"Q9W4Y1",15.7017945461945,17.6804927680227,19.1419287680279,15.8536864102744,18.2105998904441,19.3296550158362,15.4867316796964,17.6150889517616,18.9736307919584,15.8412809480072,17.9831842647137,19.1300853677553,15.1327729231629,17.8335852015061,19.0156193914498,16.0296496325025,17.9634441566272,19.0298891776743 +"Q9W4Z2",12.5881444813057,15.5525665048927,13.0829551515737,12.12684917236,15.6561206386,13.0337451265945,13.0040754612839,15.6021257566363,13.1491239651344,12.9754891389021,15.6350843827562,13.565087507598,12.8705224115269,15.3980788156723,13.2356403296525,12.0974058482277,15.7265767569625,13.3515560305894 +"Q9W503",16.3432006206452,18.7576970930456,18.6769692218998,16.2934579470309,18.6549865253261,18.6748182731942,16.472068790631,18.7675778916943,18.5893347699212,16.5489424054389,18.7446773385546,18.7874687602115,16.4404583122995,18.7810708307214,18.7894444322791,16.3261679365198,18.7603422450974,18.8262741580237 +"Q9W552",15.5860665266331,16.0805480961055,16.6047557203871,15.5855154570228,16.0976527811385,16.646588347925,15.6351973506529,16.1677827296511,16.5822579309112,15.7263421754289,16.2148599775388,16.8433620713087,15.7654223484823,16.3986810402581,16.8024540270658,16.0819558516607,16.5382061034691,16.8127727690207 +"Q9W5B4",19.0660293463041,17.7355145043939,20.0988396972577,18.807581643999,17.5142525493239,19.9711844541795,18.7422089604013,17.5547761074673,19.7676126094451,18.429087609529,17.1999223777117,19.7720960394673,18.101737782112,17.2254397311719,19.448261014982,18.6029247894708,17.3613023159326,19.8311626861386 +"Q9W5P1",12.1007530523693,15.4506365370433,15.2245225153759,11.9978109942071,15.64227297832,15.2465174749068,12.216640929519,15.4633606844011,14.8672469362061,11.8856800931765,15.6396595838913,15.1482267255027,11.9972596716191,15.5672855117018,14.83640891224,12.4539467236943,15.8054069546994,15.5108811605406 +"Q9W5R5",14.7885423666739,15.584048972654,17.1553588773761,15.1121379291676,15.6526212770178,17.218949348728,14.9141181831318,15.5420672695604,17.0383975320921,14.7817320022176,15.5606863765146,17.1280559281752,14.9620200146795,15.5456664042489,17.0805377943548,14.9665725653947,15.3831745767532,17.0806324231727 +"Q9W5W7",14.5027010513342,15.0234092374412,14.512819733024,14.7363025163015,15.0617509083941,14.4548105120689,15.1514122301071,15.3274338797137,14.7829127498405,15.0684499698661,15.4124755768847,14.8072958818114,15.1207715376575,15.1535620003283,14.6279967303771,15.1897506604715,15.5371234249339,14.6513080945562 +"Q9W5W8",19.7423971929227,19.851884170735,22.2848946215984,19.6979017502253,19.8146186677165,22.1024660276416,19.8374139012295,20.0168005764134,22.3011263474847,19.8104502657495,20.0882822564469,22.5649142562488,19.7885310910562,19.9909351049112,22.3325855542021,19.8128214663333,20.1629999108158,22.3420799881538 +"Q9XTL2",16.4071799032859,17.1259359874276,17.7155926409809,16.3235873887719,17.2380444231092,17.4166570400101,16.2612044519844,17.2791816651958,17.3729909428098,16.2231567257283,17.0948809929791,17.130488426286,16.2758429176456,17.1748910056929,17.1762082173214,16.1306615532882,17.0669827536942,16.9920004709889 +"Q9XY35",19.0351592451918,18.8174378174867,20.1575116490127,18.6640915803758,18.5229336656151,20.1622568526646,18.7835450779509,18.8816719115681,20.0110747179004,18.6486850432147,18.6048203439202,19.931027982537,18.9136834445269,18.8911744320533,20.2932493846599,18.7586281588684,18.7619711714126,20.0921677705954 +"Q9XYW6",15.7708319311519,16.7884754103258,17.1393413771678,15.9009473266241,16.8326427270562,17.1977933364192,15.7380436638098,16.880915822618,17.205945694555,15.8171596257192,16.9308412722497,17.3180136591282,15.340487691684,16.8718525268425,17.0400143647459,16.0713114360483,17.1114233045213,17.2104049348621 +"Q9XYZ5",15.3752672703037,15.9763299277833,16.3967345122839,15.1468372966258,15.9604606289409,16.314343924669,15.5468110305338,16.0923360211127,16.4333505193861,15.3740974403329,16.1911480233034,16.2107068079918,15.5575934937155,16.4311308407876,16.6743262514997,15.7495230751006,16.2048145942664,16.5717025876129 +"Q9XYZ9",20.9872054754214,22.5383238492489,22.3513062184277,20.905679857747,22.5152063189939,22.4006961136978,20.9184442823207,22.4147319144322,22.3122741628347,21.0315954906761,22.6543170932973,22.5779827310675,20.9994112692503,22.3884392208229,22.5530590120966,20.9968738848573,22.6369929806228,22.2675007867295 +"Q9XZ19",14.122837001997,16.7100769314115,17.3908516769932,14.4613178787954,16.8587718649701,17.6577397270926,13.8419365072551,16.7476348923332,17.1977060989116,14.2282483809767,16.7385776360821,17.535320643676,13.9782091712135,16.8074779409587,17.1061681067727,14.1550455370336,16.6842674182249,17.5389387915886 +"Q9XZ61",17.1379874782695,18.8122912187247,19.5198296969838,17.2032124156636,18.8714567970283,19.6716444571138,17.2874713065909,18.8666954080243,19.5605437696964,17.1778591363894,18.892956950751,19.7008714739752,17.2837518550382,18.8296176155269,19.5625588031179,17.2890539622351,18.6721620492586,19.5277680408925 +"Q9XZ63",18.166822272936,18.888329933632,20.1251754724928,18.2117680760518,18.841840387042,19.9541851453221,18.1157256626317,18.7771166474942,20.0318162177711,18.7964443403882,18.8247693163092,20.3339344662446,17.7902727347281,18.7870886086525,20.1183913807052,18.0330487083199,18.7731077969719,19.7021094868608 +"Q9Y0V3",14.7432184947418,15.6428167316259,15.111679626724,14.7428933729168,15.5594202095644,15.1770602286345,14.720218464711,15.7188906472659,15.1471627174604,14.87244810607,15.7204082943215,15.1104143707107,14.1747810306054,15.6634793716564,14.8526997802696,14.338704410041,15.6820053873317,14.9830121950044 +"Q9Y0Y2",19.7770512400373,19.3929722647421,20.1035698696216,19.3241297066956,19.2252242139884,19.5896270390922,19.5188789239555,19.3114368948435,19.8097082653955,19.4657019540062,19.122788724988,19.5598170457459,19.4423891052647,19.2310877804927,19.8082888919486,19.4439485588534,19.1450547867645,19.5805476418612 +"Q9Y0Y5",17.4789245953867,18.5583262971559,19.4641236948559,17.6064851779738,18.5002947988877,19.7134745970639,17.6463196912951,18.5445008707698,19.5947217238455,17.7742239056578,18.5892522249696,19.8691036117776,17.5717879015866,18.5314923828799,19.6622218876312,17.8592488813846,18.6034799891785,19.7268676094814 +"Q9Y105",18.0663705403368,14.5222390375287,18.5803266814626,17.6550017114926,15.110092635404,18.5681741940128,18.0157349559235,15.332581934893,18.4079126910994,17.4950691459468,14.8895339048865,17.6945296985754,17.3684681469501,15.7175990689164,18.7772579720463,17.6214101067648,15.8510877123291,18.6507003759266 +"Q9Y112",21.0748536828325,22.1628864818136,23.4008132918131,21.1647315972215,22.1892520069184,23.4233922176989,21.0912264889926,22.1886345107556,23.3275980264179,21.0881079157443,22.1543382001676,23.4654717953765,21.1141303230598,22.3039593489728,23.4754802541929,21.1199783753133,22.1739784913553,23.3630422205275 +"Q9Y114",18.1019889711474,18.993351642023,18.9343260250661,18.1843332921558,18.9677635731584,18.8518273558837,18.0411068425769,18.8680902871132,18.800978756546,18.0747667652937,18.9367861260825,18.9000915923322,18.0018712517757,18.7770318527212,18.7160617176092,18.0612846553818,18.964132882905,18.8119254438996 +"Q9Y119",17.660290955114,18.4718118846905,19.3594387679793,16.8962644050119,17.6891607225194,18.4462620807038,17.2669907916616,18.0697976659618,18.742860353121,16.5530277657946,17.5481974745181,18.0323663407446,16.7967396819812,17.5881538520076,18.47540703377,16.3450737357941,17.1204514422192,17.7854655340961 +"Q9Y125",22.1117509585878,22.5901769992141,23.8009550150391,21.9301157350266,22.4568296356859,23.5706479446967,21.9691990462589,22.3204743325141,23.6554652825298,22.0195105623688,22.2965055112737,23.5807919751679,21.5580077764018,22.4092989837381,23.4474564883958,21.8289744136486,22.3771375238944,23.3920457064767 +"Q9Y128",13.2199020006874,15.7104097580973,14.0854428045614,13.447511281545,15.4084877492507,13.5533204969668,13.3147770875328,15.7628413067672,13.7770766095147,13.4411060485105,15.8803237376973,13.8838452962614,13.3767206760931,15.8042239473401,13.7228162414547,13.5882529272204,15.9547686359888,13.4452010513178 +"Q9Y136",14.6365883413754,15.2524825500297,15.3117011805875,14.5451540599,15.3415611390613,15.4736381032745,14.644262694637,15.5527165968222,15.6544325046611,14.5618200875814,15.6271934608345,15.8135580009969,14.4672237473625,15.636268626759,15.860142157485,14.4941100788652,15.7206011357762,16.2045567449883 +"Q9Y143",21.1350655211888,20.9617894657418,21.212699459469,21.1431058857125,21.0191533704964,21.3030249196568,20.8547630573219,20.8668971956218,21.0146291095484,20.8470558643415,20.8381378061741,21.0203346614734,20.6578919988645,20.840811726256,21.0098008166848,20.7147412901818,20.6906078602414,20.9463975512102 +"Q9Y156",15.0072432797914,14.6965379140064,17.7408327564844,15.38162735743,14.8562225736149,17.7422254384693,15.3577197726439,15.0110442578852,18.0614955377784,15.8156396761509,15.1643555442846,18.1397288471071,14.9986374729262,15.0728347960669,17.9022373630235,16.045524036237,15.3005711170498,18.2087600655962 +"Q9Y162",18.7132131514679,20.7437818747689,21.5898204912596,18.4142417848918,20.6124933849477,21.6089737498655,18.5381158662259,20.6332838426924,21.41739508659,18.3808099233472,20.4598518496335,21.479835326965,18.6419608987312,20.6463937069867,21.4250946892676,18.3577071229579,20.3577920873906,21.345927721052 +"Q9Y171",11.3000627171692,15.422446912568,17.348173648017,11.933824297368,15.6116533111177,17.3938635300522,12.6054829884511,15.5952234242043,17.448073711558,12.8047075491347,15.4914168483629,17.4917911639141,12.5845839755926,15.6417375927057,17.5612048325265,11.9057487372955,15.898092190513,17.5968302654673 +"R9PY51",21.9972957955868,20.6411480913745,22.7711091149006,21.7095429931997,20.6263153392128,22.3862151920838,21.5107043558913,20.4168335679574,22.4348701618921,21.4771298227057,20.5336034035447,22.2279125684334,21.4005283961375,20.4618136465229,22.1750447325882,21.6598715443185,20.4784764485828,22.2442102349504 +"X2JAU8",20.7921389642778,21.7396598462604,23.1943387537045,21.0750638066186,21.8907462235813,23.261989447866,20.4647707314365,21.3716338703413,22.7400202039926,20.5361439330527,21.4220927685813,22.894183747073,20.5651268633651,21.4780307354565,22.9678652887237,20.6566462562053,21.4396789937025,22.842503236086 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix_batch_corrected.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix_batch_corrected.csv new file mode 100644 index 0000000..8d74d4a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix_batch_corrected.csv @@ -0,0 +1,1669 @@ +"protein_id","Earth_F1","Earth_F2","Earth_F3","Earth_M1","Earth_M2","Earth_M3","SF1g_F1","SF1g_F2","SF1g_F3","SF1g_M1","SF1g_M2","SF1g_M3","SFug_F1","SFug_F2","SFug_F3","SFug_M1","SFug_M2","SFug_M3" +"A0A0B4K692",15.9124115044161,15.7509036978092,15.7640579642136,15.5596742420054,15.869255941875,15.8343382700095,16.0399975795242,15.9065979619018,15.8708146615139,15.8771198091157,15.8469976217933,15.8417634301059,16.040328089571,16.2297985405444,16.2866978494693,16.2814908627083,16.1074683234171,16.1133499120283 +"A0A0B4K7J2",15.8275653415064,16.0040965289643,16.0803025963886,15.4579179111881,15.4258874225507,15.507222604452,15.6158426088231,15.5419521649112,15.6186886860535,15.6979064581123,15.4969300115329,15.5830867647633,15.8032851412759,15.8344135443678,15.8175310592666,16.0287706872147,16.1280084757937,15.8244564371965 +"A0A0B4KGY6",21.5450890895707,21.5882575579161,21.5351487364304,21.9016220683466,21.8273184506767,21.7791061686736,21.7163463269613,21.646775197373,21.713345769602,21.8680259252866,21.9232395641516,22.1225380146565,21.7065370809463,21.6817722884522,21.5337186608301,21.8829864803661,21.9532439129082,21.936749621285 +"A0A0B4KH34",23.4512370700713,23.4463636703202,23.4263491872792,23.2723932798032,23.3726051934344,23.4697175598692,23.4598973923321,23.4987249158784,23.2739880896895,23.3372037789539,23.3732660386971,23.4891804156687,23.4001749986272,23.3815572096751,23.3561614430796,23.3657234373103,23.2141129290927,23.2712332615117 +"A0A0B4KHJ9",24.7809873310885,24.8006723404773,24.8979752149846,24.5981126954866,24.5572967866089,24.4497675544719,24.6637309041903,24.5731455393128,24.8466735045386,24.350263023991,24.3672921191157,24.5831304731349,24.5341160520739,24.5500716850816,24.4388297784216,24.4816567065047,24.5603882427388,24.1924901877835 +"A0A0B4KI23",20.6950841673903,20.7223165637182,20.6955376342225,20.609952125639,20.6064738615284,20.5372964968493,20.5068910749836,20.3869155429797,20.6225914637292,20.2664295886525,20.455624525883,20.4366536997394,20.674572752435,20.4844049685102,20.5517614526122,20.4007637343212,20.4979579808022,20.3098526962692 +"A0A0B4LFA6",19.2909621871043,19.356319376006,19.4594445929996,19.6653892683841,19.4990145901414,19.410458432598,19.4662368126981,19.4618071327128,19.5864112147018,19.6865823252531,19.6392771501863,19.5996992703906,19.526501654703,19.5470697193815,19.587135844279,19.5461150693715,19.6782993490862,19.5386379625452 +"A0A0B7P9G0",14.4961235881711,14.0352916599506,14.4223881569923,14.1111486004378,14.2028132584223,14.4133168345859,14.5438860675653,14.4584436783781,14.250053137698,14.577068858854,14.4605130849256,14.5592493432532,15.0193350052605,15.153282077451,14.9512099926856,14.8414475208267,15.278665881988,14.9927921759007 +"A0A126GUP6",17.2578394143213,17.1666844901265,17.2560772833993,17.1543174554064,17.0628200652194,17.0779225521182,17.0937941862732,17.047552089495,17.1252893662056,16.956157369859,16.8794850682639,16.9413169472262,16.3912955995284,16.8263839678477,16.7397986634758,17.1486226330856,17.0191009775213,16.8616218460488 +"A0A6H2EG56",20.9757353507544,20.8654177415804,21.1652645008942,20.9543625230906,20.9157467053742,20.8145888164925,20.9323900093013,20.8058436302119,21.1100902073483,20.7690436890435,20.9633851195139,20.9552649689303,20.71844335903,20.9005872873984,20.7708560269182,21.1202733835469,21.019267830688,20.6541837941832 +"A0A6H2EGA2",15.7998721836519,15.9008622943412,15.8126854992467,15.8414015928331,15.9337437598792,15.8771048806534,15.8262863512505,15.682757988152,15.8185176999428,15.7436621825214,15.9632783060516,16.1112507413855,16.0005804475876,15.6205275063335,15.6745855776059,15.754893991233,15.8655268943201,15.6725523502433 +"A0AQH0",17.0227802661084,16.7253158351745,16.7258418738339,16.8551766972116,16.7482672554956,16.6215024009457,16.9457233713044,16.8973078622717,16.9054138391676,17.1944833164189,17.0357427422698,16.9251154455089,16.9177366021317,16.9263711948243,17.0495943536615,16.4451799825535,17.0480753456926,17.153612322611 +"A1Z6G9",13.9597098408868,14.4165183071431,14.0417249855362,14.0436385722664,14.2072380187888,14.4085867364312,14.1429019476422,14.3476990789628,14.2273735889806,14.6248500673458,14.2988974591074,14.6392568732807,14.3125283811051,14.1738561012643,14.0230234422008,14.4326004443931,14.0720202883731,14.17626362721 +"A1Z6L9",15.1735651537864,15.0867358964404,14.9169048282217,15.0202589548033,14.9950967946485,14.8151908847634,15.4392826008348,15.4871106547139,15.3205542870754,15.3665947986336,15.25807955698,15.2915373411736,15.5129843202965,15.6500506880122,15.794582224094,15.0598893842142,15.0955016217739,15.4338056472408 +"A1Z6P3",17.2637016254883,17.3039890595956,17.3334436771411,17.3737948071909,17.3603123004374,17.4726395533511,17.1761889275913,17.0910463200293,17.0818156968324,17.1835347719435,17.2494320360027,17.3937612441387,17.1439337111546,17.1308064340956,17.0032923325223,17.2265981688381,17.232165862046,17.0827995082211 +"A1Z6R7",17.9708726414917,17.8419297468402,17.9311018573185,18.1166860156485,18.1228221220014,18.2618520838779,17.673070794127,17.7924651891079,17.6185056840686,18.1012066425887,17.9132957031011,17.9552335180526,17.7201866519243,17.8596753541579,17.6829332906094,17.953542690699,18.0053773212708,18.0859390025523 +"A1Z6S7",17.7167804915232,17.4889066804528,17.5461430701244,17.551920643954,17.5367988362449,17.5951025029025,17.5748195980227,17.4983170660847,17.4338723508685,17.6028457724471,17.6069842107588,17.7227807034465,17.4431515577272,17.5632152673099,17.4865876840352,17.491905547352,17.6872015501751,17.5969372996491 +"A1Z6V5",20.0803240571197,20.0241864499865,20.0765297146027,20.2986443221417,20.2664608378522,20.3630651078431,20.080511615394,20.0795562577483,19.9460901284012,20.1069500147314,20.0441688586815,20.0874243338604,19.6550470676966,19.7886366116891,19.7235122839165,20.0810257658494,20.0994938269753,20.105881274309 +"A1Z6X6",18.7042348698208,18.6843468172115,18.7464050980503,18.5149936885889,18.456531437535,18.5498565214725,18.5561927112102,18.6872686429025,18.5772426283627,18.6289280260304,18.3414933800032,18.7284154281613,18.6181757702275,18.6905057921792,18.3879109971035,18.3857021745509,18.5480811705973,18.4183965672784 +"A1Z729",16.8027671545402,16.6872672739505,16.6115632478249,16.4595762020701,16.5788816728172,16.8278485739965,16.8257884652883,16.77443007993,16.654390358833,16.6818323875315,16.6986204237241,16.6711075183301,16.5701899319894,16.8706484416125,16.7653529835579,16.8066442440115,16.5369504933967,16.6165357028887 +"A1Z7B8",16.674984241168,16.5928414472821,16.8546005778817,16.7609723016794,16.8413346216942,16.8533515506541,16.910172678765,16.9846153169836,16.9875010382351,17.0147325335165,16.9640166687369,16.9331811246995,16.973716117779,17.2254745687504,17.0818625160144,17.5555495101562,17.2818447596168,17.1796305755794 +"A1Z7G2",19.4738197562243,19.4371635958691,19.5142799112881,19.6159542253365,19.6036186899376,19.457791313286,19.582258318952,19.4258477356906,19.5819299919914,19.5319904500697,19.6841207268301,19.6556345166844,19.5037889614808,19.3554953588076,19.5598298296477,19.6382829215576,19.8398485264859,19.5766290707234 +"A1Z7H7",17.8499148543152,17.7672950567253,17.8043828549527,17.7782623718263,17.7848856306513,17.8045104682334,18.0002831137763,17.9543215314293,17.9627650004697,17.8291276012903,17.8648234396489,17.9124034079542,17.7503772132209,17.862083137464,17.7301705173448,18.0024204648909,17.9769768234011,17.9961533703651 +"A1Z7H8",14.9517156689697,14.8612822322789,15.1103118838405,14.5590247333551,14.6131808876956,14.5126713164992,14.8726742442423,14.6032424443975,14.6946643571126,14.849505108821,14.5794880847332,14.599242765299,14.3211866422621,14.7488631560247,14.5614418456003,14.564313327865,14.7123629203853,14.6400875571635 +"A1Z7K6",15.4775637820297,15.4574464880142,15.7499460705295,15.5110400142609,15.7774037844701,15.5095813905999,15.5888374284027,15.532455152553,15.6737084864921,15.5759592170219,15.7844857620638,15.6516174963661,15.6707429683219,15.4409123465388,15.3511015185775,15.654909962651,15.4863498390482,15.5430984101229 +"A1Z7K8",17.8410712827425,17.7223994411203,17.7826612857066,17.6240098659805,17.6555465464677,17.6552891194858,17.6500490511638,17.5439335097514,17.666984259655,17.6871035357687,17.6541350100609,17.686079994585,17.4810843237376,17.517866550529,17.5265645558558,17.3862415715985,17.5756785730623,17.3519804157034 +"A1Z7P1",14.1111573719105,14.9971912378076,14.6038897462868,14.4017307036831,14.7475101696468,14.4716530773965,14.7486876884123,14.5070088998979,14.5885550408173,14.2114520950539,14.6361820777248,14.7271520168137,15.0182202974973,14.5727486600734,14.679816271552,15.2095009076716,14.2401080190782,14.6296829113624 +"A1Z7S3",20.0951375965047,20.0173143514944,20.034004972634,19.9604669167037,19.9958031625676,20.0939681532497,20.041044084414,19.9821430599841,19.8389942330052,19.9390939996148,19.982605097619,19.9439011304375,20.0269962048271,20.1456139938735,20.1395232952044,20.1728930956793,20.1121522322052,20.1852401132129 +"A1Z7X8",16.6785591454624,16.8421697808006,16.7059039920798,16.8710871828298,16.9185127865084,17.0154988118856,17.0022432933944,17.0502559211771,16.9606202234793,17.1350390372546,17.0850767427378,17.2236930992224,17.1509521607385,17.0605281752153,17.1730605446776,17.3440586755048,17.2253960887454,17.1031628238398 +"A1Z803",18.4785589198197,18.3129944845338,18.4735190394924,18.5911518806982,18.5345472481914,18.4454404750704,19.0524902849879,18.9775222409878,18.9673874583988,18.8925735777563,18.9840943203243,18.9790071665809,19.1109035043595,19.1522846579674,19.1562123379934,18.9754128917105,19.1396481073273,19.0795245817961 +"A1Z843",17.3532344711246,17.5499702959053,17.4107373856351,17.473493297396,17.3935711214949,17.3681541726768,17.6242584597189,17.5470128666687,17.4720228282178,17.4821616232506,17.592535939386,17.5967352039812,17.8797042101865,17.791286578369,17.8825222949471,17.7151664657145,17.6536417255672,17.7978466419331 +"A1Z847",20.1570746543862,20.1504941076096,20.2448315300597,20.3303390562253,20.4303650103388,20.3578181766153,19.866317948096,19.8760846067193,19.9358293001342,20.0556343495175,20.0797800517561,20.0090779859473,19.7744737898694,19.9591575334067,19.9300327077583,20.2877777967997,19.9757362850636,19.9940278943792 +"A1Z877",19.8864375705493,19.8565348225856,19.9167341498796,19.9573192898701,19.9168327068154,19.8443548638898,20.0036292161094,19.9563660515857,19.9566945930717,19.9442309605563,19.8792912355056,19.9167868072108,19.9118042166531,20.1929778676608,20.0770690222195,20.1608917667307,20.0623103363157,20.1526735841975 +"A1Z8D0",14.6562808409566,13.8536563324693,14.0322893408302,13.1433182121392,13.7978981169941,13.6739230067889,14.6589646891033,14.0375439177593,13.866753887084,13.3919339509331,13.6007725075978,13.6222887205717,13.2799688912617,14.0133824772561,13.8105739999,13.6955096692847,13.5227229016021,13.8201472985039 +"A1Z8D3",16.2171279735134,16.9729907798884,16.147123204376,16.6041415239515,16.8925857945744,16.6328445141606,16.6990021981045,16.3180354903082,16.3482563417977,16.7003880642175,16.8925586260042,17.1602573077736,16.8753960423417,16.4156689580455,16.7888942099156,16.8062011455635,16.4104172988713,16.8248813696686 +"A1Z8H1",23.2131906879347,23.2080578492283,23.2387831543842,23.1047588518457,23.0898186448165,23.1457774311862,23.1440905424746,23.0927842347585,23.1727427694454,22.902725203661,22.9589445038436,22.9205273440109,23.1687004463342,23.3925960659238,23.1842380278662,23.1635869163473,22.9548513500271,23.0349839217046 +"A1Z8H6",17.328980616994,17.2687240876511,17.3730225961461,16.6838862008177,17.0082267409673,16.9808834573391,16.4753565212595,16.6622906137797,16.67845176201,16.7942665598158,16.861735016047,16.6824427720264,16.8340891107448,16.6612044908726,16.480374106133,16.5409229577758,16.19532101809,16.462327273753 +"A1Z8Y3",15.0529530704299,15.1618503686735,15.2458980934621,15.2097847743627,15.3618234714328,15.159143254871,15.0520163421619,14.9434811086328,15.2087049135452,15.2164202293073,14.9886593130383,15.0969730618213,14.7119505228763,14.9791601253514,14.7162649380653,15.0143554558066,14.8225060078159,14.8304961331797 +"A1Z8Z3",20.0846781906156,20.0979602241442,20.2382260824041,20.0810944239524,20.0813876214729,20.1462116905087,19.9281914374855,19.7448394422203,19.9545804749225,19.6947597874469,19.7535255699167,19.7728239856884,19.8474936642859,20.1203311811934,19.8431003215286,20.2238379909651,20.062011455804,19.9051129396992 +"A1Z8Z7",18.7976598816891,18.6385269091106,18.6452363300834,18.9799697149226,18.8420785954182,18.7807422585136,18.9185798485748,18.8150816598526,18.9764392028952,18.9327656428738,19.1930315005432,19.2766032164403,18.7096186188186,18.7525461568074,18.6804887501491,19.0018612549349,19.0991901400817,18.9809452037321 +"A1Z933",16.0627875727872,15.7404770731079,16.0102972847683,15.6354280390552,15.9745671417376,15.8157999186351,15.5943114407767,15.5421544258774,15.781416570931,15.740533689863,15.7315681715436,15.8280802728407,15.5268904439797,15.7424266788624,15.4382306799595,16.1307489396274,15.9595066349602,15.8168753989545 +"A1Z934",19.2457777426336,19.1461032117517,19.3394600552782,19.3560839027819,19.4506173899571,19.4244211960806,19.3423743162343,19.2453492742014,19.2715109731411,19.3049047174788,19.3290163352332,19.248624399723,19.3255676360044,19.3733999098325,19.2433474046964,19.2080214094915,19.2382436036486,19.2553656957054 +"A1Z968",17.2687026480456,17.3040127928975,17.3427735353153,17.2363088806509,17.2067173886665,17.3682863023404,17.3388123706684,17.2150624780205,17.1955427756392,17.2513152455113,17.223191320466,17.2448805324806,17.0748932370583,17.1039307392386,17.1674836988436,16.9706252533067,17.0877429159521,16.8216907906222 +"A1Z992",14.715071701197,14.6392236680859,14.8157452629323,14.3905607809228,14.0252503335328,14.2621760816245,14.3704573331987,14.4812974125906,14.3478652574216,14.0905940365286,14.0494084483116,13.7343654859757,13.7198576009333,14.1782678281466,14.2349807139372,13.9516036783241,13.864697440437,13.843012329213 +"A1Z9A8",16.2511751992764,16.2834732554872,16.330772581125,16.3977433868908,16.4664520807146,16.4896146338504,17.011882540876,16.8372478383575,16.8505155939846,16.6130288882681,16.8773697082273,16.8719488771583,16.9892915412611,16.9271531296775,16.7947459059405,16.9490451871606,16.8204707312689,16.8745691516741 +"A1Z9B5",16.1373773178991,15.8488235006584,15.7900943936146,16.3796230162706,16.0289033552789,16.2468234544345,15.5709074084418,15.4382839702948,15.4272115658654,15.8759714294568,15.7486690770055,16.0017980687249,14.7864520075016,15.4009775278696,15.4273283159443,15.9563460109875,16.2410197594504,15.8134213919737 +"A1Z9E3",21.8562031100682,21.8180364521589,21.8934783581091,21.8295756463401,21.7538729878307,21.7843793968496,21.8313225348151,21.7645129477294,21.6612353176603,21.6359453177566,21.6842436994741,21.769650277404,21.785391634711,21.8264745449153,21.7977681889712,21.8284280008559,21.9197256124386,21.8603547055529 +"A1Z9I0",19.6687143778717,19.5372913263772,19.592425932407,19.4875902706517,19.3174940700289,19.4262059200284,19.3740565089381,19.4683873008576,19.536307388437,19.2822282133278,19.2948425210221,19.3269140260545,19.3744806096756,19.5054136807945,19.3186514411747,19.2167558117726,19.2803968931572,19.203321084136 +"A1Z9J3",17.9284335865187,17.9916146222646,17.8918456459778,17.3827943346907,17.620968767705,17.4451783037652,17.9490041206779,17.7856796493034,17.8537416265121,17.548650402684,17.6312789679537,17.5555685824957,17.7003977753531,17.643822556296,17.7278005818466,17.3673580530674,17.2032737094692,17.4025035323944 +"A1Z9M5",15.2165889549546,15.0593395789425,15.5446653173941,14.7927408145443,14.9622085210626,14.664567496629,15.4027187775295,15.0677079942645,15.1593536821416,15.0446784056371,15.0634362913906,15.1977152513772,14.937456506156,14.9693988506837,14.9381143914444,15.0222315296594,15.294323752137,14.9119988494944 +"A1ZA22",13.146394221914,13.4703542574875,13.2724806259258,13.1421627863138,13.096944060421,12.9401592879732,13.4646820864213,13.5932887930991,13.9863884234755,13.837743235063,13.7553206978376,13.9752231278531,13.4511527352666,13.5316955105187,13.9637915960562,14.5434573805097,14.1379891261245,13.4475493842045 +"A1ZA23",18.3481045061142,18.2568381601305,18.3148479374462,18.603526376252,18.556924266108,18.558825354539,18.4084876937552,18.3163050290319,18.4415821330017,18.5722990954904,18.6817899258856,18.7073224263408,18.1694080884874,18.1757042956831,18.0762910459285,18.3153336981299,18.42959778139,18.318290560973 +"A1ZA83",16.9032064108356,17.08167541788,17.0142295698488,17.0071180318005,17.1048009937428,17.0957131350038,17.0069846987375,17.085743272104,16.8341047583868,17.0845300217759,17.0668783799661,17.2094750944655,17.067269411122,17.0601634134149,17.0277168802913,17.2489100901204,16.9187571872841,17.1367792263957 +"A1ZAA9",16.4523286031788,16.4506433844241,16.4420386640599,16.5733348569092,16.4933646076395,16.6851479189967,16.4824665947704,16.5350171376675,16.2351746461776,16.6273054239484,16.4931780737272,16.5812422084376,16.6821139316334,16.7277050152411,16.7792982944814,16.6634221592509,16.7810633509917,16.7580698375379 +"A1ZAL1",17.4574858976158,17.1566788636001,17.380147558249,17.598347150517,17.5138871469778,17.4179904414919,17.0216653729271,16.8946496063259,17.1024478205127,17.1650651560081,17.2364461893675,17.171639380798,17.1947360782205,17.0850675539882,17.13705513109,17.0474629174027,17.5980332124319,17.2754822405497 +"A1ZB23",16.205572574367,15.8082870818757,16.0944560910153,16.1423997842816,16.0220769147252,15.9125176257677,15.7683338041755,15.5779052019221,15.9293276958439,15.9280481747617,15.7384458237553,15.6752968949593,15.1990249801366,15.8976249468396,15.9891317879022,15.960600168491,16.1596395170953,15.6032493907248 +"A1ZB68",19.5163318597281,19.3654153712822,19.3670384047237,19.4014786141855,19.5010471538284,19.5730448086307,19.158760095309,19.2891527321603,19.1885687342128,19.3491508895812,19.417173205531,19.4093926230427,19.402514902298,19.3027959806391,19.3542697855015,19.136427514921,19.0890794325819,19.0723495199115 +"A1ZB69",20.6649554968998,20.4846306735933,20.6049970078538,20.3460548897472,20.3851502107694,20.6093119657016,20.557442081224,20.6460880028303,20.4944448701636,20.3108934282972,20.268721334211,20.3710076543512,20.4020048670053,20.5407605383811,20.4389956453381,20.2282101764523,20.1842101798405,19.9908037962174 +"A1ZB70",16.3744964367969,16.3121142669094,16.340401066898,16.3324126160239,16.5151349924879,16.435023837246,16.1261573439275,16.0539910662511,16.1338236614947,16.1654895306315,16.0788854313126,16.1370674272924,15.7847669002632,15.9807974637527,15.8357052526573,15.8408292580668,15.6832288649961,15.7421308401214 +"A1ZB71",19.3804110482874,19.3749103077631,19.4086201974977,19.1662138566466,19.4231185606279,19.5198955324377,19.2531942933846,19.1703156734608,19.0121240401212,19.0138021458014,19.0328529806969,19.1839443148315,19.2170613970295,19.255642641094,19.2576292098671,19.2658192201043,19.0396617976111,18.9142886664986 +"A1ZB73",14.5483541907436,13.8076102301712,14.0352253313546,13.2231863899162,13.7576100365673,13.8959310231483,14.2812320172262,13.5099823582256,13.5135955837467,14.0610026066676,13.5674080888357,13.5969151032098,13.7723100659263,13.6870728981142,13.4766492877838,11.7450147439626,13.3014164025287,13.1127836851995 +"A1ZB79",20.8789446790622,20.7757725480153,20.9170544301812,20.8732570752978,20.9581176119193,20.994602361714,20.7460375408669,20.6848406379206,20.7715413712212,20.6656927522765,20.7827193909124,20.7702013610754,20.7248198040389,20.8253225337908,20.6715803983493,20.8150890692446,20.6770681982287,20.5788609982459 +"A1ZBA5",15.3225405718486,15.2180535938736,15.722478613611,15.4469435618891,15.3846256813623,15.5723385078312,15.5482550619701,15.7760041949864,15.6199021066905,15.6955841033168,15.637543214869,15.9128720681195,15.6245728468874,15.9229509846706,15.4310347013301,16.2162224705319,15.9149409466819,15.5954926188614 +"A1ZBD8",13.7158979787556,14.07272712606,14.0028137181339,13.6508920982725,14.1079232297248,14.2471802917492,14.1564017692212,14.0457052685077,14.1566838039191,14.6485953804144,14.5934644294659,14.5044029374645,14.2598301535018,13.6804701193428,13.7162778411334,14.4723888579909,14.4037160650551,14.2766476457563 +"A1ZBJ2",19.3551254523431,19.1953632935492,19.3035605587939,19.1546994412177,19.1063160499329,19.0338389784891,19.4201127348764,19.4604339367759,19.3683298646801,19.1441316448354,19.0895448943778,19.1035237128421,19.8169856132297,20.0785800934322,20.1716512899215,19.429674726148,19.3904913445823,19.3398252079236 +"A1ZBK7",17.6389922294536,17.8264755072032,17.8307441494049,17.6778517994013,17.6319836670601,17.5057157252194,17.4686225630451,17.4382704557789,17.6880554621755,17.5504909812187,17.7395427994867,17.362333199656,17.435749373286,17.4816147594743,17.5686934161666,17.7241889308029,17.3780086882045,17.5403539245853 +"A1ZBM2",18.5089316209226,18.2997871411882,18.696237058473,18.6719052996843,18.4833281644442,18.6991716131862,18.5738900448863,18.5109904002437,18.5086897891708,18.5929100702049,18.8431625468675,18.6267980045761,18.4209110537224,18.5838511142724,18.4148591310183,18.7416785526644,18.7891072750687,18.5644710456605 +"A1ZBU5",17.0253435294947,16.8157953622589,16.9316781923272,17.0545657055327,16.9248134381545,16.6794205989709,16.5755806126804,16.6864373685445,16.867927935369,16.4275020809375,16.6063278808217,16.5641553035184,16.5804641665351,16.4433711658917,16.5507400715968,16.3750979878617,16.5618088673709,16.4446319812599 +"A1ZBU8",20.9441365323379,21.051541971027,21.0324205705047,20.8644959371882,20.8048872470049,20.7526852193886,20.9662714658422,20.9139918980648,21.1257468282623,20.3698567046131,20.578345780739,20.575902250284,20.8813003276806,20.8596868596446,20.8342871963061,20.6579192400199,20.4755264512016,20.3629381429363 +"A8DRW0",21.7902122486356,21.6372076240013,21.8983782862833,21.539341424012,21.508126976312,21.4450975647716,21.4275553322234,21.3482160402304,21.5331069532516,21.3659713780937,21.429138222226,21.3210746869165,21.4069638752759,21.6200860873246,21.552879305417,21.7013467970489,21.6886161051953,21.4808542586498 +"A8DYK6",16.5079404794172,16.3807239963389,16.5599685129229,16.5355589012914,16.5218295523813,16.7361262939844,16.5996962699301,16.4916203819439,16.3561837742748,16.6254322673959,17.1419695750406,16.7630604471108,16.5800727863055,16.4582551259209,16.563441572232,16.7565772920049,16.6108793647195,16.6264973958201 +"A8DYP0",15.9061459745021,15.751770743411,15.8645537119439,15.1007196474377,15.3470765827417,15.4777580354615,15.6444077278601,15.0818017011357,15.0816801831463,14.9104113917225,15.2873516868438,15.1790294025956,15.3635547425271,15.2773502048829,15.3465139542072,14.6080443053835,14.787932870418,14.5837485020786 +"A8DZ14",19.5209411956763,19.347591774422,19.4448723637159,19.5815620907422,19.4668528199504,19.5002557772641,19.4306574649043,19.4534410206771,19.4637584530283,19.5031361887617,19.5070770498415,19.6232966376618,19.290291208381,19.4392195641304,19.3009737267826,19.4635987699514,19.5760046893957,19.4570299599643 +"A8E6W0",16.6438098223238,16.4745862229861,16.478422085952,16.2536133372025,16.5834085267107,16.5457296236238,16.4867506669506,16.3179880105676,16.2791521786418,16.4242690042686,16.4321902303944,16.596560861806,16.3484282521034,16.3683013398447,16.1814848665191,16.3624777913169,16.3428745436625,16.4379992576231 +"A8JNG6",16.5856322518062,16.2192202110594,16.4328645543253,15.9821311613697,15.5342320147875,15.7149238309842,15.8924895555754,15.8376259522934,15.9126692206712,15.7291493159606,15.194976180171,15.3261132684917,14.6413946566311,15.9441513552999,15.6430949120446,15.3126900291294,15.4132812568611,15.1138211839554 +"A8JNP2",21.2227040525394,21.0790924509924,21.1948285412174,20.9507030574878,21.230674609543,21.3670801324111,21.1322358886943,21.1628918562534,20.9314999253062,21.1494713818217,21.1830187210325,21.1168218323933,21.322583665354,21.1320058016533,21.0664916973489,20.9310253725816,20.9210399790042,21.032001289802 +"A8JNT7",16.7541075089648,16.659782625326,16.898728235314,16.656381200797,16.8015298217735,16.7136178513214,16.8001872769189,16.6672321480558,16.9157664712382,16.9399362722422,16.9952865574625,17.0044069216914,17.0008513966016,16.9606373457006,16.7720852459402,17.0164599455491,17.0834551027553,16.8633188755685 +"A8JTM7",17.2594586178659,17.5057823319545,17.2974130795585,17.4321319156998,17.3588535888807,17.4032579961623,17.6141056698981,17.6585881623602,17.678032262596,17.7957840980411,17.7408494655033,17.7651382909877,17.6858840870004,17.5345775905632,17.8033848593254,18.0535837074948,18.0422969567384,17.8937216073703 +"A8WH76",18.9265999831383,18.9171732193749,19.1380735574518,19.0371531774831,19.0571448830707,18.9783316627415,18.9564712150816,18.9236850247672,18.9486573086328,18.9279693595037,19.0117976478969,18.936919315948,18.9905045667805,19.1953016036838,19.1327437127996,19.4157071437036,19.1493030668975,19.1196798881174 +"A8Y535",22.2080914737846,22.1011428737262,22.205632055965,22.2126778131439,22.192753724516,22.0800737650555,21.8994674498607,21.9117918629147,22.0327866253573,21.7803860458798,22.0264490048531,22.0144106810403,21.837510671962,21.8682305066496,21.8186917053506,22.2801496269551,22.1179151089265,22.0666882488173 +"B7YZN4",15.4596923651036,15.5304289657525,15.745610576194,15.3177395191575,15.4635124684738,15.6426921121184,15.3388591250916,15.6783020562139,15.1504462525166,15.4585083501939,15.2422006882877,15.3483638808315,14.7605434572907,15.3376773939283,15.2914768462596,16.1775551382703,15.2607763824514,15.3343082871874 +"B7YZT2",18.7023091333939,18.8735149959493,18.3060785804412,18.3705162613414,18.4468931830175,18.622642489423,18.3734771554148,18.2628153701233,18.2191757209175,18.2409801235508,18.3545650564012,18.6018087751827,18.3863132702791,18.1598211608818,18.4295796093826,18.461546181805,18.437532359412,18.355856950438 +"B7Z0C9",15.9680139345508,16.1264434652439,16.0256448116839,16.1296785852671,16.1155823798034,16.2024105388443,15.9386557603875,15.8267656480468,15.5892257253483,15.9011573258638,15.8998540045697,16.2207601753727,15.9355128564338,15.8509265447944,15.7486270454787,15.8584469315008,15.9118933515456,15.944797097276 +"B7Z0N0",12.8787481235045,13.0597589538582,12.9783701036685,13.1225329681443,13.113085184746,13.2353413563169,12.836431379548,13.1143540504739,12.8699953527873,13.4274421258636,13.1862881114051,13.1154274334297,13.3457276724859,13.191612441735,13.1161716908611,12.8063207359793,12.7521042633073,13.1018970684621 +"B7Z0Q1",17.4172895668894,17.4594741731176,17.6090086989811,17.6174145378217,17.7726101110209,17.7719599023576,17.7201560510603,17.6167865204514,17.6210788874838,17.8283028458034,17.7677643001678,17.769585087886,17.7199805377453,17.8645032935214,17.7229109092747,18.0870088952831,17.9090140363242,17.8956089486201 +"B7Z107",16.3996061038509,16.2006448781699,16.367991161796,16.3802741188319,16.1446043288167,16.0852742210954,15.7680290950022,15.7315120194619,15.7747726999675,16.1406306790459,16.0805432729289,15.7793871006216,14.9744033704981,15.6505727461151,15.730171472744,16.2117123893471,16.0667785110836,16.1370591003515 +"C0HK94",18.565257003235,18.5559243572523,18.7006278462091,18.4442937297668,18.304811411189,18.3141936742057,18.4841813490783,18.5567258858505,18.5824900762149,18.4181291997517,18.4716234432632,18.5668264789827,18.508004265136,18.4350142321705,18.3484174359775,18.4230211542679,18.5187873715102,18.3303311896459 +"C0HK95",20.1572303711702,20.294527329454,20.2448646813631,19.9218556133264,19.8552239815661,19.8394402476311,19.9518082751882,19.7650367702631,19.8432001584193,19.4333159755426,19.7392738318033,19.7176798854758,19.9462070728707,19.7084993350785,19.875801127198,20.0358169840915,20.0836730440247,19.9252481921023 +"D0UGE6",15.4084751446734,15.4303667648412,15.697313291763,15.5648081728299,15.3388671372885,15.0935931740342,15.1699632122885,15.0904091158816,15.5051736226735,15.0655041335965,15.0422610172536,15.098056611481,14.9185617147478,15.1671833447891,15.1459960552906,15.4935502975342,15.5517752956164,15.0807299204281 +"E1JGR3",12.2533081166742,12.3241523188159,12.2204685962063,12.0780085824042,12.1970805059167,11.9284204524385,12.2561968039355,12.2020343320897,12.4857443512125,12.0275224485533,12.3285966030606,12.2282395511023,12.4414116155822,12.1433919904593,12.1052800187038,11.9928868139817,11.854078630789,12.0811814114677 +"E1JIY8",16.2817381500298,17.2992567890217,16.4191549843946,16.4107387377177,16.2834548749014,16.454447208163,16.383771765023,16.2605678389217,16.4693939727324,16.4719805055522,16.1614663999544,16.3494967923145,16.4349674503109,16.2324491164768,16.4032163609181,16.4176724798217,16.1636740691794,16.3051597699328 +"E1JJH5",21.1567760769061,21.1531091583909,21.2219380901123,21.2792540764984,21.271752598149,21.2485249102301,21.2538283709615,21.215770947343,21.23045569811,21.2212795486185,21.2607093266439,21.2031488792494,21.27034992272,21.2900054539591,21.2504940479348,21.2409172089936,21.2310577202122,21.2678435790615 +"E2QCN9",17.4092374014001,17.5246651296221,17.5136174566895,17.4416856674662,17.4724854035483,17.311629104432,17.5135559590883,17.3556246974259,17.4148138651294,17.2254758381288,17.402934735803,17.5328780603584,17.5031672310306,17.282692696139,17.3603425351373,17.1525859863811,17.207305420957,17.1124270617485 +"M9MSK4",20.630497024958,20.5038492696107,20.6543479443576,20.6905052609152,20.6932617465792,20.7191730700824,20.3045650368846,20.3821580436786,20.4310909372723,20.4669522162675,20.5816982646304,20.5356004568173,20.4538238454668,20.478352078891,20.3763416331992,20.8671502678489,20.7741742489512,20.6969396106124 +"M9NDE3",15.9173146562593,16.0190118049432,16.0518724957864,16.2025768140266,16.0905000963607,16.1025519472563,16.1648839484749,16.2083910577252,16.215903241336,16.2650544274762,16.2280958666198,16.2440862557017,16.1621067473857,16.3166204832661,16.1918145561751,16.335332743755,16.1846500284625,16.2410408411221 +"M9NEW0",18.5037965935043,18.285194484519,18.4536225314777,18.3592408002141,18.4424821385446,18.5144000714623,18.3364533441327,18.3325080851823,18.3329266090379,18.1493507444141,18.271977443093,18.200269426103,18.3596185440904,18.3392570061912,18.2231465485948,18.2319090153396,18.2689498841652,18.2160038550197 +"M9NFC0",20.0818297689394,19.981722859117,20.1596093434118,19.9305565795851,19.8017808875079,19.725319108222,20.1665836099412,20.0769833470588,20.1458510496264,19.776070633746,19.8656399039605,19.8255578954268,19.6919019497874,19.9728651394807,19.9535246360666,19.5433800026741,19.4913304075483,19.3804605119196 +"M9PDU4",22.5278596170841,22.6564681261071,22.6922126834679,22.6383644933832,22.6503754371944,22.6437611030248,22.4846021256526,22.4580566421355,22.6116398069215,22.4318270372952,22.4543866644907,22.5249417659656,22.3761359735032,22.5325685461143,22.4412645007633,22.8020525949376,22.5089864258139,22.3470219817127 +"M9PEG1",20.4613766924746,20.6085577917711,20.7003477005656,20.4787053470605,20.5344287034677,20.4360593189026,20.0479276109718,20.0844234804187,20.2400089619114,20.2036350008168,20.1535088032373,20.1412848815842,20.068198743306,20.2646098283447,20.1423775732705,20.6058775641358,20.2201923515261,20.2056425225313 +"M9PF16",21.4140337546555,21.3643611757422,21.4239557431583,20.8732983823983,20.9070880610956,20.829255348482,21.2793805141561,21.3028152540762,21.2493546445557,20.8744615472734,20.9374066550005,20.9123313614853,21.5764710823479,21.550677676635,21.5986269285445,21.1215794972585,21.0768759555401,21.125700751864 +"M9PF61",22.8758097120659,22.7587052030748,22.8533607494446,22.7793481052698,22.7267219551104,22.7707958144442,22.6599768158652,22.6598224847398,22.5804233641054,22.6434428105614,22.6235293404338,22.678150529061,22.5465161741165,22.7260374628479,22.6647019970531,22.6410767832312,22.6513539549032,22.5987379470016 +"M9PFN0",16.9034440509235,16.7120437914376,16.7917308946046,16.7853923954309,16.676135640862,16.8018089185051,16.6091722347641,16.764668071915,16.6423812443483,16.5658249603183,16.4491370404726,16.6356858132005,16.7142254682546,16.848073219272,16.607047373697,16.5101840977148,16.6381854434469,16.6095889630508 +"M9PGG8",18.5524890465605,18.5598529126354,18.5552385455137,18.7094831536889,18.5990473216322,18.5012857546464,18.4528283187595,18.4565306165755,18.342412917828,18.4936750289897,18.5649384565534,19.5124297184733,18.451758596881,18.453440839079,18.1197470832302,18.5212491051692,18.5476731035735,18.1503692303573 +"M9PHA0",17.4933091251578,17.4647555345381,17.7060774903635,17.581680099355,17.5643763196296,17.453405452057,17.4802300523061,17.2908779749888,17.4406670686553,17.3612662129562,17.3525124213385,17.3282631202761,17.5113979282127,17.3346853078913,17.428201552282,17.1212510601787,17.5419269197802,17.1925197945327 +"O01666",22.6228932221079,22.6352527533709,22.5330805964669,22.5976562740889,22.5591540430865,22.4928490236962,22.7403683050023,22.7527852436326,22.6843860559824,22.5694640628927,22.6250478693982,22.7446129627818,22.9907837204472,22.9874538097382,23.0985671537599,22.888881942856,22.8503538081686,22.8565517347078 +"O02195",18.426690831575,18.4235946206885,18.3831027160428,18.5881977220186,18.5674147267845,18.5167048000157,18.8199205505481,18.8313044292156,18.6800237442864,18.8040876548701,18.7823879151965,18.8841456358597,18.6526802967943,18.7937343007647,18.7252893429306,18.9139037367703,18.8070447999266,19.0162145534412 +"O02649",23.3843050722368,23.2589903359225,23.4116722743741,23.5770579344378,23.4955091311009,23.4669343093978,23.208461769853,23.1959273491791,23.2973498300603,23.471338984564,23.4684770941388,23.353303681481,23.1215796666045,23.2076980597299,23.1420335449789,23.1536834214176,23.2898248790424,23.2451332088216 +"O15943",19.9777660679301,19.9953259389903,20.1076742044697,20.3155772184368,20.2535663823807,20.2748326098258,20.090264150334,20.0132516901465,20.0870659993437,20.2440833675268,20.2407937239263,20.2840903490309,20.0619744341803,20.1480186388638,20.0085316724968,20.3453210896242,20.3840299537247,20.2727914928654 +"O15971",17.3071659771961,17.1725707571549,17.3275893127615,16.8690168044226,17.0025153531757,17.1980968952305,17.0725799784952,16.9939720105879,16.9488434936971,17.095839279791,17.2045563152997,17.1456413079304,17.4713475705701,17.4086530733383,17.187500686727,17.251727760232,17.2854098611504,17.2600056743603 +"O16158",21.2998027236149,21.1625210247931,21.2057132339638,21.4414461441808,21.3090731971841,21.3496460657471,21.1510583211779,21.166343697094,21.2211931165329,21.4197141491303,21.312489919188,21.3449835188743,21.0386364381932,21.3066193351271,21.28071340016,21.4650491851188,21.5586597880295,21.4134576261378 +"O16797",16.5247890660157,16.4985307855177,16.587837837,16.0513388409314,16.0520197980229,16.093069235941,17.2326482785481,17.2551766186321,17.1910001147085,16.8534847366498,16.7277929992093,16.7476427349633,16.9220675884469,16.9503875251387,17.0067703817137,16.6285376608974,16.7289584449687,16.5865458671627 +"O17444",14.8387645775518,14.9139674399728,14.9719128289188,15.2055159555579,15.0513598372002,14.9908073682328,15.4666744502566,14.9900264290538,15.0837760977557,15.6311189333033,15.628454206706,15.4606322522808,15.5372610639697,15.7520680042754,15.8015071822594,15.6249595061467,15.9684185695777,15.9956587573385 +"O17452",19.8887694285873,19.7341086828155,19.6437090646471,19.9548710403145,19.8560490430884,19.896055582638,19.9452017197136,19.6675973834609,19.8844943952845,20.0946561094813,19.8156217501547,19.9771077191822,19.455497197047,19.8615994688366,19.8952865593546,19.8586921474055,20.2627113141929,19.9010343214428 +"O18332",20.5716095123791,20.5092039358828,20.5406306283426,20.6087292483884,20.5017981706602,20.5563671021329,20.5459411903042,20.5302591859793,20.4932011526864,20.6274487979744,20.5074902537325,20.6890746777213,20.6654520290573,20.7156439788819,20.8051645517902,20.832591009365,21.0873762623316,20.767333674795 +"O18333",17.2683032635168,17.4630071390233,17.4725197362236,17.2714146540817,17.2964019605966,17.3616543517541,17.276772031529,17.3091157725791,17.2861942288682,17.5909813433092,17.7114594018758,17.4731728045399,17.8415126404073,17.5124501719449,17.7149558405389,17.6329457933471,17.5894952801714,17.5734327642663 +"O18335",21.6591109851999,21.678133175787,21.5935946985878,21.7499147222626,21.7101176187254,21.7727890953192,21.5666211984271,21.5949574479173,21.5009401091403,21.6186560942983,21.6435291290397,21.7891407683563,21.6321981452517,21.5840495912461,21.5147242175817,21.6554428483084,21.6711570310326,21.7107551047628 +"O18373",19.5341991316528,19.5118307356749,19.5658374872904,19.5088002475633,19.658817596854,19.6880240109784,19.5966705061007,19.6648165365338,19.5716795876273,19.6328466219137,19.6324204245429,19.7167578571951,19.5110528446719,19.5215469190442,19.4897771905508,19.7968945751396,19.5910317143921,19.5483877934 +"O18404",23.1157394700849,22.9259841836497,23.0174234012043,23.0567876650545,23.0884670692481,23.1189089601146,23.0136425738076,22.953558765056,22.8964046886983,23.0438851886305,23.0064790104977,23.0258716943956,22.9705696707933,23.1416057720784,23.0236584914421,22.802247064766,22.8867768326071,22.920604397282 +"O18413",19.248160445081,19.1660730303924,19.1988845966345,19.2874659169417,19.2287294501718,19.3194480839218,19.463021836644,19.5256798314221,19.4012694558056,19.5564426870594,19.4897711320606,19.5660768796155,19.4709376953738,19.4953620960753,19.4561942176197,19.5026229258161,19.6230359667938,19.586778273319 +"O44226",20.1102012456487,20.1876210934716,20.2261480900186,20.2780598203715,20.2465517357308,20.2401255115084,20.0949522905674,20.156463935332,20.1521375630744,20.245455498671,20.2286719905958,20.2220176101655,20.180276495227,20.0905804967503,20.035558404811,20.2043175467458,20.203373645351,20.2372757176536 +"O44386",16.8339278427929,16.8598330077781,16.7111875979603,16.7726192960735,16.8892635062048,16.7879846549385,16.8495533037235,16.8109662612899,16.9381220796244,16.9045301199714,16.9409448997351,17.091536991479,16.8998946022992,16.8408011207516,16.7784225636236,17.021344635475,16.940061004576,16.9746159127099 +"O44434",15.717734809747,15.7638934313824,15.842204244068,16.0331476151044,16.1368162374954,16.00498130607,15.6549794331882,15.7477709190622,15.7445869995871,16.021299088193,15.8834930053542,15.9347647450484,15.5514223739662,15.7841907413455,15.8388309028372,16.1565067220233,15.8189257075824,15.7697218446113 +"O46067",19.8220452194007,19.8757909892631,19.8819187941887,19.7790133063442,19.7961585736001,19.7595908327735,19.8440879806698,19.8430325568128,19.7832846450796,19.6163034833177,19.5678222221696,19.6498895798393,19.7664398668299,19.8099941967035,19.7552874063623,19.5635598364266,19.4986511544398,19.5614784347453 +"O46098",18.0622588476562,18.0779974319954,18.2877399548855,18.0335845551421,18.0993950331432,18.1209458243514,17.9351800368503,17.9595457772149,17.8506209544532,18.0220849856712,17.9613987605917,18.098827461073,17.8940128333773,17.9987677871999,17.7876898527576,18.0921004210015,17.9421168895535,17.8933976321779 +"O46106",17.096451107443,16.9092967489066,17.0835588570591,17.2243733001908,17.0443205247283,17.1451771073333,16.9550336699688,16.9716367114339,17.0117040432411,16.9551802739634,16.8887561380176,16.9191375994634,17.0004227681886,17.09020478619,16.8860874469162,16.738377317579,17.0656235280571,16.9241733833204 +"O61443",16.4383486541588,16.351838393015,16.3479659925818,16.0356742411534,16.4515335148954,16.4999956754341,16.9387929831322,16.7792318353291,16.6690364443625,16.565813226804,16.4033647864504,16.5919003121598,16.7203222588252,16.7698924605566,16.5609465199516,16.5362022280625,16.4792926018895,16.5653086476462 +"O61444",16.2326486130807,16.4835857472709,16.4269612291533,16.8571854410792,16.5878083516675,16.3029063874164,16.4159663862555,16.4172316648583,16.4941997324809,16.535181813258,16.5352391262484,16.8086328019673,16.3477560510417,16.2853963970809,16.3207588045883,16.3664123250851,16.4458893426742,16.4016916741941 +"O61491",20.899228072991,20.9039516186017,20.9433670667279,20.8745211605637,20.8470439110925,20.8146091941884,21.0074561238717,20.945357392766,20.9516629906107,20.8604617434891,20.7735879159819,20.9072151161894,21.0855675969662,21.0957940873961,21.0108963299341,20.9296971440876,21.0911969161311,21.0291811443189 +"O61604",20.807276609489,20.7784419847588,20.8402367906322,20.9996062331293,20.91539154912,20.9436946678718,20.9542686459112,20.9923851443548,20.9500109687171,20.8882733820523,20.886610744286,20.9493052672207,20.9398359388855,21.0197052762624,20.9689071560006,21.0195422377709,21.0162683484563,20.9566481967958 +"O61722",18.9956006955935,19.2178484090131,19.0163595281491,19.0199840534183,18.8493296459401,18.9423723431167,19.0306219383309,19.1259751049928,18.87769359478,18.7879907753484,18.7248062136466,18.9689004144047,18.9686864949723,18.9726552053292,19.0537931406128,18.8369399858721,18.7492093646136,18.7807049224722 +"O62530",15.8617947658486,15.9608167268222,15.9873795450536,15.6091184602038,15.5854605368856,15.5787647408887,15.6643748501513,15.8236659185018,15.48211815018,15.6098845935228,15.6428493831208,15.826443582493,15.7004652737812,15.6880848316934,15.7240427168702,15.6368291128455,15.3815896593294,15.4837183208678 +"O62602",14.6780578584279,14.3660514278023,14.6759384188081,14.2069764431737,14.4216411877737,14.4755239274917,14.4413433186306,14.5703912394097,14.5752101290311,14.5057449715617,14.7076581429243,14.3824697329865,14.8346972649164,14.753460836998,15.001110696334,14.870355631353,14.7179726531555,14.4269225834121 +"O62619",22.3133355131865,22.0941721857324,22.2189781529452,22.0404182067496,21.9894206046569,21.9847371616724,22.2267445540045,22.2952512644079,22.2071998420274,22.0696241983111,21.972035240273,21.9866291992901,22.3973641926887,22.6020280908482,22.5661943239661,22.2811598068149,22.3757390858368,22.364907791854 +"O62621",12.9254913863401,13.2347735180134,13.2777326710342,13.0262776573834,12.9997405036108,13.2915377942132,13.2220190770999,13.0132879097185,13.1913913408366,13.0678055927648,13.3634439890454,12.6996782720555,13.4959286760417,13.3372945080448,13.3327159006731,13.0509492800157,12.8399312412125,12.9954156908328 +"O76454",18.2884800162038,18.1179894949434,18.223725765124,17.6936367554286,17.8401453689605,18.0020097547099,17.9432325853764,18.0131178388435,18.0150843745201,17.9346037611497,18.1146915538818,17.9422692317042,18.2387182806812,18.0606563757094,17.9024112180769,17.8227581342064,17.7748289007076,17.835929188911 +"O76521",15.9577920555163,16.0232602690146,15.7771950346755,16.2925299608082,16.0283633864673,16.0842439703949,16.0661722710314,16.1682972150263,16.108022577397,15.9412806855225,16.0531357151503,16.2076752818875,16.0876759004102,16.1574408833217,16.1292255288031,16.1735761580986,16.0885295624071,16.2126646382292 +"O76742",17.9999964209543,17.7845727859207,17.8298994038755,17.7103891271313,17.8027795774849,17.9168871205524,17.947239512801,17.9973855894559,17.8952931518978,18.015478942704,17.9453685277126,18.0708065885216,17.9915962625103,18.2549091413921,18.1520831526082,18.417387378503,18.2970720226377,18.2171182271484 +"O76752",17.9462862088332,18.0058456991142,18.1057262523356,17.7129566910489,17.8161983294142,17.7591006559208,17.9973423791172,17.90553115054,17.9944114754821,17.7038509107459,17.6718377972136,17.5868556322103,17.961053470215,18.0048939323732,18.0065240388855,17.9912142465182,17.9083969978233,17.8600858516441 +"O76877",17.394647037092,17.6487816200734,17.4750069822628,17.2348936671929,17.3020821491406,17.4650707381739,17.2835076871019,17.3257106447256,17.2572229897538,17.2171072658894,17.3526772452208,17.4843141424704,17.4958795935977,17.2232065740533,17.2839864827337,17.4875245895107,17.2611016071708,17.1479585049899 +"O76902",17.2066401177682,17.2990560564169,17.2725181330424,17.1503353856697,17.0590799062111,17.026733406282,17.1544832597194,17.3196438578004,17.0721272845721,17.1672322132595,17.0014054395349,17.1587537255654,17.41503277743,17.4446494182567,17.575659189576,17.6358826859492,17.605771761576,17.623814700758 +"O77134",21.7107319615683,21.870456555823,21.8501134886989,21.8224066839216,21.8099232633272,21.7303902781279,21.6586920284828,21.5794024504611,21.7024519622471,21.4790109211147,21.6254559316018,21.7375808231054,21.6179412289697,21.6305788289422,21.5507891102166,21.8156227895023,21.588588583404,21.5330799511635 +"O77263",15.7125988570512,15.5401615392311,15.5506735007073,15.5945811140601,15.7289473346466,15.7178611892118,15.5377856252499,15.4595998933756,15.399175772592,15.3821289823162,15.6239983563369,15.6225765478435,15.5352066424531,15.4146067095178,15.359857005595,15.3669137741592,15.3619011621817,15.4790709793402 +"O77410",14.4270097325051,14.303073379289,14.2875715859243,13.7941353095737,13.9430208207111,13.8944807838051,14.63267282239,14.4854859248462,14.480139099951,14.0380806401882,14.1945264856374,14.3246528913787,14.9712167947806,14.8228906270394,14.6764320250514,14.2264644942805,14.340582556195,14.4263034076075 +"O77430",19.5445249112621,19.5545626653389,19.5672424004222,19.5113012055242,19.4627899232781,19.5970711346721,19.5139934423837,19.4861562332613,19.605340701288,19.5560579371142,19.5556692963603,19.4931597297081,19.5267131436304,19.5280464994788,19.5130781818946,19.6060933936033,19.6714594158006,19.4827918855329 +"O77477",16.5171983893526,16.8753782496998,16.5901412251965,16.6416772297099,16.6085154452223,16.6255287022506,16.8663522472197,16.8772453543173,17.000759370537,16.9545770278632,16.7858166015394,16.8746752967281,16.9625489262333,16.9805860824266,16.9187902488854,17.1437635079844,16.9585755951577,17.0762224847655 +"O96299",15.6469632244754,15.6173930084184,15.2253192433419,15.7611420452143,15.5994246771244,15.3580634796423,15.6304777187451,15.6621257088952,15.6430036611575,15.5780037741815,15.8232537548283,15.9661603243305,15.8314646862243,15.6997038403677,16.0313250904619,15.7083820155819,15.7545324747885,15.9325616654885 +"O96824",16.8463613624589,17.1521072667441,16.892801338558,16.7135073612672,16.5997833042978,16.8314588866822,16.8273311744328,16.8304609307083,16.7378573399477,16.5806508507795,16.5973477544195,16.6699782553458,16.6966220626377,16.7610829277566,16.5600412972179,16.6197168455793,16.343407473229,16.5920525394038 +"O97062",18.5061906748519,18.6173703064037,18.7073192375941,18.6110212023499,18.4598544662191,18.496089811395,18.4845581063039,18.4756297732735,18.6165197542455,18.3747971873421,18.4621926781607,18.3019466650358,18.5484545729424,18.3901342107604,18.3723136314181,18.2911249054852,18.4109652144579,18.3219575495867 +"O97064",16.4990048921641,16.4202482130825,16.6702941199864,16.3574081390998,16.4404459558256,16.3882274554282,16.5847542335835,16.370031740024,16.5938384187376,16.3993093308142,16.6117430070667,16.5100115244375,16.6743636891415,16.5831103197892,16.4015162342674,16.587047260339,16.6763083093541,16.5379997922849 +"O97102",21.073288974658,20.9837471802483,21.1519850818995,21.0149732225672,20.9405507807705,21.0054082722841,20.8699160913753,20.9300696853933,20.9985576358441,21.0349759965103,20.9807918771625,20.8938811308632,20.9899599569022,21.0061729396487,21.0480805910651,21.3148427820458,21.4566245608354,21.2000443121028 +"O97111",14.6095078937238,14.8802205835748,14.5214670535743,14.5345725081879,14.8332513383541,15.0927127138361,14.7377199526788,14.6700963079119,14.563961969547,14.6546924726534,14.7368535290617,15.3149839623369,15.1344543666118,14.4876688413278,14.383198019438,14.6960189766593,14.7588755702847,14.4906424517825 +"O97125",18.0818704826875,18.0703356238364,18.2008972848283,18.2305794677135,18.1657541707935,18.0689566075784,18.6475200125375,18.5113566234686,18.6407197158625,18.7264851194658,18.807413008101,18.7121359103039,18.8203044131037,18.7086360226855,18.8642601524655,18.7124632986986,18.9557273453217,18.7322531231681 +"O97365",17.8368586233808,18.118321524229,18.0186356401508,17.9435124395171,17.9957489823066,17.9654090005255,18.0848461363811,17.9322961322055,18.035103910845,18.1507824297471,18.1037507553119,18.1387381124849,17.9206906180344,17.7955945701157,17.8665815887956,18.0666028375233,18.0575811204151,17.9788248317821 +"O97418",21.0056884587421,21.1035261297251,21.012692992206,21.0969587526734,21.1134755345247,21.1023406691719,20.9424677775028,20.8265864431037,20.9095856881539,20.9362345905898,21.0640038434694,21.0976225757992,21.058834706358,20.9048402702601,20.9619520005551,21.0035748708637,21.0313269356469,20.9595652308437 +"O97422",15.5002398464407,15.3773500463002,15.5494953312554,15.5155384982986,15.0590649877083,15.278679839598,15.4315597742866,15.5082212268047,15.4181475670914,15.6558217500841,15.0762570672706,15.314313177189,14.8962072621403,15.9910266392135,15.4147784031723,15.4188087757176,15.4062559396705,15.4427615886617 +"O97454",14.4552187643556,13.8589263846523,13.8781929113349,14.3962028475443,14.013607890666,14.0266264280573,14.1254226262916,14.1641286661925,13.9054194754465,14.2094542315891,14.126864594958,14.4096864745263,13.7830958678044,14.0744968140445,13.874314937014,13.331767491771,14.0631374788429,14.2069216029772 +"O97477",20.8617401290235,20.7034229364682,20.7816711949046,20.9293419405766,20.899031918257,20.8613141854072,21.0656074600279,21.017707163161,20.9959081086798,20.9771088329152,20.9641032994014,20.9845315175572,20.9673553877068,21.0965437515986,21.0430320402065,20.8877762548866,21.0081209362504,21.0224729583814 +"O97479",17.6440957537644,17.4292518200614,17.6561734218265,18.0855740412253,18.1201872248718,17.9896139907643,17.7369589773166,17.5196896459619,17.6587618003378,18.1209015811427,18.0294417874922,17.9427334538847,17.9514427561908,18.2044542391019,18.1195752670959,17.8788196544415,18.1147680465922,18.0509348301723 +"P00334",25.2018064478758,25.1965507211051,25.1898235123683,25.4066955653106,25.2938375773838,25.3594688127091,25.068836181144,25.1020867144168,24.9573084420903,25.1515103494238,25.2578372047441,25.2797464298,25.1682511535923,25.2711020670152,25.2422200533956,25.1706016720322,25.0462870847137,25.1391341190155 +"P00408",21.2910240321688,21.337733899207,21.3355394272777,21.3039101497205,21.2782992958267,21.3694566683154,21.2814466245366,21.3309773571564,21.1827927672619,21.2542994579909,21.1722308250984,21.2076732073595,21.4958367958042,21.5779877711336,21.5605614215189,21.4841226589189,21.4134105707178,21.4546162274065 +"P02283",21.636083822153,21.712236172126,21.5688041361586,21.4569627688144,21.658208283151,21.5661734763884,21.5592053992345,21.5010590336766,21.4583727519328,21.6446253159897,21.669219399113,21.7833438420378,21.7011392553598,21.4996809932325,21.62813871145,21.4267007629835,21.3843134432358,21.4198844065674 +"P02299",21.9976581532437,22.0148412249289,21.9414054632565,22.0028168513349,22.0523932506443,22.0004518616649,22.097740377253,22.0960324221881,22.119997497142,21.9793333644217,22.0264676707121,22.1890611235327,22.109718840862,21.9887514288267,22.0907598192494,21.9956502350452,22.0044318248605,21.8412420573151 +"P02515",18.5248634357367,18.4912285837103,18.7325741431675,17.5372997576852,17.5259642813668,17.3795678381377,18.2183724759661,18.2515016971774,18.2736380222661,17.7356947933728,17.8559613955609,17.8003601654366,18.6422144710805,18.7572567969069,18.7231509551055,17.5377523498801,17.3142845289991,17.286906159608 +"P02572",26.5693005352707,26.6336348053561,26.6809025422784,26.6631415014937,26.5862837016621,26.5310984598366,26.6817544477901,26.6568989809173,26.7146510107343,26.3804679423141,26.4599183510804,26.5150416454362,26.5769025734418,26.6292861466935,26.5176990779664,26.577798699718,26.4833437143191,26.4899729637766 +"P04359",19.0791663650578,18.8681966892529,18.9832445702822,18.646064368192,18.6518119851981,18.7653232326585,18.8828728300053,18.8976853669343,18.8647964126605,18.961786559079,18.717889097743,18.8910952889192,18.6291600696079,19.1265198729339,18.8259302354308,18.7309160468036,18.6678632266834,18.5995764987943 +"P04388",16.5188935512831,16.4627010814857,16.6970367267793,16.6564672480985,16.2968209477476,16.61381437499,16.6684933010717,16.5583010975914,16.5814240213287,16.6508275743771,16.8335233696655,16.3994268824913,16.2028187590002,16.596110813067,16.6196354507935,16.5252856865331,16.4753288108066,16.3114486639809 +"P05031",13.7627222368029,13.0353362710005,13.2115659526712,13.0010175278512,13.3462398646539,13.3014051091163,13.2996009976313,13.3270722800243,12.9858835958068,13.5464250828394,13.2349239344108,13.2649725816466,13.4646612342381,14.026604401311,14.2475469733197,13.7857300673366,13.8899803952989,13.8487829341389 +"P05205",17.9292963547721,18.0834230320429,18.1480082833125,18.3179543665373,18.2559479887765,18.3238336960216,18.0087303933349,17.990631357202,18.0270661132584,18.1120982668814,18.261238814735,18.2237917583693,17.9728875020838,17.7324359242031,17.8839770331901,18.2281851306538,18.2454748973039,17.9624751301115 +"P05389",20.6475394742399,20.5544390126852,20.6879994450983,20.3529093394013,20.4742299291817,20.5045338550489,20.6533667350068,20.5748086116114,20.667929984574,20.5010393450268,20.5060224909657,20.5021392156804,20.6178633287318,20.6551722926453,20.508595771853,20.5300235557278,20.5380694410451,20.4315435058797 +"P05812",15.4248964305688,15.6885264219792,15.726987565959,15.9764209686556,15.9748026582165,15.9814285665768,15.6920843088923,15.6415375490206,15.6244549342815,15.9392498761355,15.8397387586188,15.8174243552774,15.6631502749634,15.7400848957393,15.7235336749546,16.1067614028104,15.9178729784516,15.9287341649767 +"P06002",17.1268028210667,17.1324544671417,17.2403436319337,16.5686315912144,16.6830782864214,16.6172103832668,16.4353287163146,16.4744053280923,16.2861068949097,16.6076060964018,16.5058396741401,16.7040663569534,17.5958675466097,17.5927880447161,17.554571234507,17.6554272102588,17.6010981813545,17.5873654802955 +"P07486",22.1424859662597,22.2169315340346,22.2237674173352,22.2056820312896,22.0930533809369,21.959656970024,22.1532688705672,22.068001137594,22.2016699853115,21.9018534197934,21.8731317320872,21.9523083508661,22.3853988427732,22.380817175893,22.3986683382562,22.1915217349516,22.348275905089,22.2441398038416 +"P07668",14.9941203205918,14.9637380377359,15.1945692948252,14.4845857267432,14.7269983946691,14.7530059711136,14.5836532568259,14.5650602160723,14.3445893460801,14.4269221311935,14.8370154510541,14.4488846060566,14.2109477283204,14.7125428980653,14.8199922929668,15.3615234477785,14.2563976138564,14.5007111004108 +"P08120",18.2312286300379,18.0707063107231,18.4663010071719,18.3521715607587,18.1478493481557,17.9764751246642,18.3284683472834,18.3486641255237,18.3972757083334,18.1476496229723,18.106133537195,17.9910653182069,18.0434472447048,18.4711734698834,18.4055369550691,18.2179790654351,18.1764176797114,18.0842903577469 +"P08182",19.7213091286653,19.6420923522527,19.8041811136252,19.8714387726505,19.8193740641786,19.8233919360019,19.6242532458523,19.5548791110444,19.6542479909766,19.6008559700385,19.6258641670518,19.5802447028085,19.4768131922318,19.6222078116471,19.5438831986585,19.6746268125473,19.7048796158112,19.563348179915 +"P08646",18.9073291252173,18.611314931586,18.798596363407,18.8301908498683,18.8271401150581,18.9319070493105,19.0020467287693,19.0296431536318,18.8381545627971,19.0418910066071,18.8859400763404,18.8672152785255,18.5844365523137,18.9870796452298,18.9103821337909,19.1191326151118,19.1439089560413,19.1387714900563 +"P08736",24.4889009028812,24.387610238967,24.4333656006009,24.3079414981092,24.2737846017377,24.3364715704255,24.4732617877668,24.415392836093,24.3012899165165,24.2438677470924,24.3107931252199,24.467241174725,24.3865079018059,24.378293274482,24.2802503454389,24.2873861591433,24.4219919202992,24.369247389092 +"P08928",22.6936051802699,22.6547070981473,22.7349380009633,22.8683550166096,22.7745616147377,22.8197480846643,22.7271698406861,22.6901711326218,22.7050182686541,22.6950736807735,22.7628530325205,22.7922008438135,22.7124917520129,22.6595159314961,22.6214902210284,22.6451621278237,22.8000487886524,22.6684621790522 +"P08985",20.7108300102652,20.8913236684186,20.6934613548241,20.8057745356253,20.7166565193483,20.6170734161948,20.6053579371389,20.6227767803837,20.5948422723227,20.5070872913215,20.6023983151118,20.708897288957,20.7096498745451,20.6357926382362,20.70683416312,20.5520319045872,20.4217836319847,20.5696230580646 +"P09040",16.7486355076544,16.679434632404,16.5591148675348,17.1439150937378,16.5998722504876,16.7976604074553,16.027489022548,16.299694549195,16.2610279989075,16.1655993320096,16.4598478405587,16.5972177585512,15.9837353608253,16.4528851866255,16.3038502962271,16.9895006856293,16.5671405431336,16.5400036737285 +"P09180",20.5749190970902,20.5609295404354,20.5259198784885,20.3948042858249,20.431163577873,20.4139130622994,20.9188567599223,20.9403702065009,20.8870321947829,20.745615208526,20.7418508874718,20.8368129182758,20.7780234230496,20.8401175724689,20.8680722809105,20.6286321804182,20.5264191700811,20.5091006200741 +"P09208",12.5097146422029,13.4534630797114,12.9717719198143,12.6239111406846,12.6710567920286,12.546998164389,13.0199223532627,13.1834389413224,12.6440562822137,13.1706356437628,13.7565464592879,12.9376528451157,12.5749424526638,11.4539902798085,12.8815653237465,13.0819146395621,12.4625453199801,12.9989963368598 +"P0DKM0",16.7941881554097,17.0558638541872,16.7816903031536,17.1340267702039,17.1126180056503,16.8855305971666,17.0065733215491,16.906253130888,16.9545062700865,16.980085470656,17.0238918017922,17.1781567306762,16.9404278061471,16.8042243378453,17.0514584586735,17.129585697856,17.0820360914589,17.1335448620656 +"P10676",20.4187612102406,20.4345452853407,20.6132535743709,19.9647866109478,19.9866148550428,20.0256882155478,19.6225778300473,19.5373687526968,19.5355045803377,19.6383860422576,19.6091136076151,19.5676149041879,19.2777000780908,19.2929057899815,19.2378641445259,19.0859531294679,19.1476166103751,19.0282394820818 +"P11046",20.9807125242727,20.8673093785911,20.9163477071392,21.0878383149022,20.8932988130277,20.8997642647358,21.004153464795,21.0938599512813,21.1069355713446,21.0488861798803,20.8612931027777,20.9365195059407,20.864108344905,21.2113379774143,21.1259180253246,21.1387173316377,21.1973169373008,21.1389310859078 +"P12080",18.7909109410579,18.878697625259,18.8540543609913,18.9450744529906,18.9278563052537,18.8036767910937,19.1801281274927,19.1692128974826,19.2213935780029,19.1269519666317,19.0885521653765,19.1276092990066,19.0565843505717,19.1412994191523,19.1768608811567,19.2728886075926,19.166920033813,19.1889435360858 +"P12370",20.8394760216193,20.5650501817322,20.4383641161352,20.4788647891634,20.615767614891,20.6823707885997,20.9708283101409,20.8645652352601,20.7948843444074,20.6876738145567,20.9478376458116,20.9133134313281,20.9717808496132,20.7617750375323,21.0334866729297,20.8017402078088,20.9953682776752,20.8879446395023 +"P13060",20.3001362421129,20.2091974681515,20.3541394577832,19.9232388437123,19.8592596072403,19.8454668412512,20.3727806511289,20.3890741121131,20.3356437917336,20.1605929527661,20.0972967495401,20.1279902871189,20.3705299367148,20.5409804670656,20.5068052139552,20.194702609022,20.2261728313464,20.1519356436149 +"P13496",18.2715348676113,18.2997156345874,18.2909649903908,18.2987568847502,18.3597514745047,18.2895135343321,18.3361788516277,18.2803212436216,18.186960753989,18.1813984185637,18.1642469549466,18.3039236498333,18.2896664709785,18.355251566242,18.3507749766366,18.2086550596929,18.1269036793219,18.1640526480424 +"P13677",17.6377799945183,17.5282332064641,17.4459773454541,17.0020694910615,16.7774210899123,17.0463160645874,16.8744709750394,16.7765569799149,16.7885462666682,16.8845659902697,16.8029889467137,16.7471706881762,17.061407265528,17.1979869004641,17.3245321647814,16.651918413513,17.0290250064606,16.7596696002627 +"P14199",18.5497262129944,18.6079039033942,18.699283394734,18.6576495062429,18.474944161808,18.5357650096836,18.5428960537323,18.5018210289819,18.6628625372225,18.2888668631444,18.4254557525078,18.4461369594427,18.5997007731089,18.6374795931248,18.5088536087011,18.5612293824863,18.5524643518924,18.3471672819252 +"P14318",22.5253398792899,22.4926386062708,22.5977528283815,22.0794794925751,22.0269142411291,22.0924061072695,22.2104793965143,22.183178848651,22.2398807622787,21.8729215435448,21.9133388000517,21.8711634579285,21.9041020120014,22.0053214236763,21.9057218418627,21.9272411211872,21.8981715253336,21.8126384473918 +"P14484",19.0194980299694,19.1278282180374,19.0778722287883,19.209245384279,19.2452567528926,19.2248747449259,19.2679905882752,19.0882474566609,19.2719803723694,19.3766915318353,19.6773542980793,19.4886537140153,19.300773541526,19.0445110331862,19.2723231980548,19.3865826097013,19.3775839267298,19.2250774274324 +"P15425",17.0537484657717,17.044150104635,17.161504278273,16.9645998848598,16.7486404457547,16.8683858315784,17.0440648489948,17.0738155205688,17.0233066955202,17.0420072210936,17.0036547921159,16.9107598555199,17.0893554243176,17.3177575036523,17.3041921458898,17.1791315315241,17.1848890098349,17.1047585697802 +"P16378",20.4000091492853,20.4855342087627,20.4227385318126,20.4015122546273,20.2540085908838,20.2703437729372,20.4208053659594,20.3768852916753,20.3888397641927,20.3430447143348,20.3871696720932,20.358894255866,20.7058118566411,20.7110014755576,20.813703987975,20.4094166227022,20.4660007245775,20.4260796507667 +"P16620",17.0056319595837,17.1144790567505,17.2103532359082,17.4293061830536,17.3202991760226,17.3970074487429,17.1645647723863,17.2395628810677,17.2864466337948,17.6766603657537,17.3779634834719,17.3849322786846,17.0396144825156,17.2803278862471,17.3003306619197,17.6945212209942,17.6776665007274,17.4312287252369 +"P17210",20.8897934190326,20.9092246556762,20.9891308343742,20.9515060804892,20.9346961418434,20.9715195262704,20.8486710015462,20.8555102622308,20.8545524767388,20.7716322328641,20.7183735057242,20.7192276775707,20.7647685639109,20.8271648972394,20.8417994165975,20.7714360148777,20.7528378500068,20.6215773811692 +"P17336",20.3705871672743,20.4617910984246,20.5010199279404,20.4920390620918,20.4081008804534,20.2445324427274,21.0098641489036,21.0510577453814,21.1000464896835,20.896903594616,20.9125039848901,20.8935019901323,20.920696733604,20.8608990820753,20.9534933218122,20.6204884525183,20.6162263677833,20.6179849867123 +"P17704",20.4672517561306,20.2929997975487,20.3854843456678,20.2458420711395,20.1601089059314,20.2144791807853,20.4330178217367,20.4978418812872,20.4186777829488,20.2462614718559,20.2668125249928,20.1807978295357,20.3887921260534,20.4776209279152,20.4267829358287,20.1353973938578,20.2211786030986,20.2903405660075 +"P18053",21.0474687889881,20.9908816177542,21.0029322091795,21.0996496909647,21.0534450875817,21.1092928309965,21.0987282551851,21.1198566142734,21.0059083662986,21.0915414541037,21.150664478977,21.3139782207798,21.0105948697488,21.0750163965232,20.9698085425749,21.0053767401982,20.963495604079,20.9514396293593 +"P18432",24.0579061826078,23.9652423785403,24.1806628235764,23.7956757346169,23.6716506561459,23.6920982292035,23.8301421863255,23.8144437698187,23.947954114236,23.2163815418611,23.3284996238435,23.2297897540703,23.6392161573867,23.8046885407224,23.642235525408,23.3650899989023,23.3198868326294,23.2116713552061 +"P19107",24.1574815595059,24.0471567143241,24.0893489243025,24.0012467733637,24.0086685025833,24.0246341497,23.9983133341641,23.9606179651501,23.8767884511801,24.000573006011,23.9425408880341,23.9895310087039,24.0607381978893,24.2598145062242,24.2741467639689,24.2097079937221,24.2092622883403,24.1736115668007 +"P19334",15.9012644350121,16.1034072936239,15.9193765519246,15.5486702200453,15.4813429891259,15.7457942654989,14.7908373579437,14.5672950598649,15.0128769864776,15.1378001914537,15.2762682317872,15.3271212918931,15.1172604650089,14.8622119967158,14.7331251635881,14.6338731209599,14.8391802193059,14.3914115310414 +"P20007",15.5282236949613,15.4481155189274,15.6949437888222,14.5358917118873,14.4129036123375,14.138708593268,15.8590752462546,16.0553415517123,16.1671678055492,14.6092435613059,14.5552471969195,14.5403788037828,15.2255795990073,15.3424217860963,15.296935602089,14.4217386281872,14.3657227756106,14.3416178480924 +"P20240",16.8930656570466,17.2408289661434,17.3137686936655,17.4527370980413,17.4921924027053,17.4380304853441,17.4821974879093,17.2817157831575,17.4389571379012,17.5120526709158,17.4778126651497,17.4728894770613,17.2735534367655,17.1528415869415,17.2961609361169,17.5399181222427,17.5081330688238,17.1937177428323 +"P20348",17.6976614710132,17.5601458714097,17.7819198076093,17.7637186368401,17.3040411718403,17.5336410246692,17.4541880305678,17.2943150401071,17.4113731416196,17.2595250392156,17.4695125192575,17.4025247683581,17.1629831829236,17.3863961466806,17.2301832104209,17.1346578591462,17.4583234704114,17.1130922670294 +"P20351",13.6846126070943,13.7324371530954,13.6591815809115,14.3550900328338,14.1633849321669,14.1599828687002,13.796527867213,14.0514661977532,13.7483480684577,14.2097820368201,13.8896041001351,14.3123213527304,13.580060797301,14.1508727692012,13.7781229006968,14.2491104969627,13.8874186858733,14.2172270667284 +"P20432",23.7125015642814,23.7314915383513,23.6317084164933,23.6476219997265,23.5457387168578,23.6026800024828,23.558796544839,23.61460760481,23.4509022303201,23.493176003881,23.5464250992491,23.7165820718016,23.5589706800567,23.4545096685341,23.5848863526633,23.4017014071648,23.4799955721471,23.3860091261883 +"P21187",18.4104197550582,18.5649019661727,18.6601882432446,18.5176122671006,18.6321871078976,18.544061976984,19.1661902208094,19.1404453464078,19.1465009986436,19.2035791230435,19.0851712877418,19.0727159614193,19.1171500537437,19.1362433104007,19.1070277911614,19.3179748304901,19.173977231625,19.2024312787928 +"P21914",22.9902351409591,23.1090422823095,22.9651230914647,22.9984504399657,22.9770604498935,22.925194681894,22.9056176186779,22.8504297894979,22.8650681927903,22.7602996154944,22.8017534143238,22.9131425582377,22.9503164212871,22.8309381774981,22.9573862912468,22.8573768952106,22.8930720180719,22.8363813159613 +"P22465",22.9475475043964,22.8407251907143,22.9724163595511,22.6691933990758,22.6484169829311,22.6896526532604,22.6948889291186,22.7401531904794,22.6729687807967,22.5554639147277,22.5564425299418,22.4973550910903,22.5742386585115,22.7416343981048,22.6858215074958,22.7275563887989,22.6415165024575,22.6506744024347 +"P22769",20.1268323101358,20.114429526576,20.1412051757319,20.2506089857925,20.0680831173316,20.1813465443258,20.0972716371147,20.1008442320426,20.0285998873088,20.2871768859667,20.1327871887484,20.2457016013732,19.8411856262793,20.1855236256493,20.0307059639867,20.207044829455,20.2084525843963,20.1825611020176 +"P22812",10.9946355125758,12.0431239674225,10.9422667134399,11.6117283729851,11.2900661048977,11.1750824051861,11.1972879823815,11.5353284167413,11.8438944220139,11.5459460688906,11.9576681411703,12.3314257977119,11.9570704651671,10.8561656817927,11.475996426905,11.8424365311783,11.4667526211539,11.3804391679216 +"P22979",18.9734927548096,18.8058660565549,19.0547458427612,19.4786590087667,19.3212693044074,19.3596590515235,19.5381285536241,19.4635929599277,19.5102560025432,19.7546618088704,19.7670643609664,19.7539007969249,19.4502417694148,19.5377801801638,19.3204640241918,19.5471271460528,19.8467381795183,19.7432853235939 +"P23128",14.8842041644174,14.4571409869018,14.5701507792554,14.2819166852228,14.4301968279415,14.5776048456882,14.914656749659,14.7487006490749,14.518910390104,14.6774327316688,14.6350291739325,14.7807276202424,15.0307687607779,14.5567693084596,15.0127726982942,14.195277251035,15.1564193964707,14.5240900091967 +"P23625",22.2877473578392,22.2326121054402,22.1664676768799,22.2065941978049,22.1694520558085,22.1985941525302,22.2345229424152,22.1728089149685,22.1484222292857,22.0816332669324,22.1289850246047,22.2730325286832,22.3044015389013,22.3151279390429,22.3176724360135,22.1492290041346,22.2451422681628,22.1599392846351 +"P23779",21.1837515189124,21.1500934276985,21.2697849843254,21.2544346516358,21.2670072976882,21.1916931402076,20.7827604486681,20.8554011386234,20.9200962132515,20.8144993829762,20.873141468728,20.9227377635968,20.7201934392651,20.7575407976614,20.5896013330189,20.9032771016558,20.755732412714,20.7650031087133 +"P25007",23.9210239696295,23.8770456066368,23.8630588200745,23.9709878727665,23.8748615697017,23.9001135004297,23.7907525579222,23.7610092619846,23.7388003168794,23.8221240806189,23.8538373862502,23.9744009415202,23.8025445588003,23.7675343424447,23.8309984105242,23.734784022881,23.9079288956004,23.7348450731903 +"P25171",16.6946986856772,16.7787266432402,16.6594120969328,16.7688723144188,16.847150154967,17.1366122168405,16.9550127713254,16.8952205727337,16.5761362711231,16.8009674662554,16.7394100805887,16.9100207551768,16.4501486796502,16.6524523080686,16.5023564079835,16.9095322024074,16.6662723601362,16.7946943716777 +"P25455",15.7039431158046,15.7862932723675,15.7513165475408,15.7050851566852,15.7651684817977,15.8163186886631,15.78349394703,15.6321557529109,15.7042309207677,15.9491790110195,15.6794368894004,15.8136159931029,15.9685925853929,16.2141681763142,16.0338203744076,15.7673405985715,15.8004118417129,15.7583318900216 +"P28668",15.5358838388798,15.3500063641447,15.3686444366313,15.1106932578826,15.4311906025686,15.282987291444,15.7729214237158,15.6083262064728,15.7004561113598,15.7520365357769,15.6067802047859,15.8478314664781,15.3910231946112,15.4212895950594,15.4518752584351,15.6503491381601,15.7953144159951,15.5611128246782 +"P29327",19.4701535894727,19.3109732766764,19.2806933139656,19.2590694923393,19.2977112967727,19.4215467279133,19.765039439253,19.7869008087137,19.6453874210085,19.5507530885517,19.4764314135223,19.6439281681232,19.6304384980181,19.6505009838054,19.6570290592662,19.5385960921184,19.6915324202628,19.5654655094766 +"P29613",24.12000171098,24.1282230025416,24.1733241325906,24.0950067371843,24.0323361659407,23.9690873350618,23.7772038991871,23.6592189133845,23.7372911212937,23.7188319976053,23.7964870501936,23.7907834066841,23.7283645594029,23.7368815211626,23.7091164115515,23.6226794957453,23.7089417468819,23.6824859929233 +"P29746",20.8450109292507,20.9891740658995,21.0425756743652,21.2480082144532,21.3173576361621,21.2364408776512,21.0966762852588,21.0571891423256,21.2620775908916,21.396693316775,21.4084899103843,21.443110935488,21.113941103848,21.1373833395619,21.0122763864222,21.5007909204294,21.2915266756818,21.2046393051969 +"P29829",21.5346958823833,21.3461342402948,21.3121803203884,21.2588071980135,21.1161986031579,21.1256595481334,21.3679956347382,21.3393472729973,21.2882473915134,21.3496846547567,21.2133732995777,21.3503363920195,21.4081034645763,21.7292506180718,21.7605081057532,21.313742559913,21.4887253602815,21.3960976365731 +"P32234",16.6406962747954,16.8242588795862,16.9404272064842,16.8156145363648,16.7704666588539,16.7598454004237,17.035653274249,16.7146597105522,16.7027589991969,16.7916289306304,16.7629410690591,16.6132355134732,16.5564345668613,16.6127801988188,16.775261544523,16.4432472863404,16.5981683523712,16.4917462051403 +"P32392",17.2375600699265,17.3928107121713,17.3369548652846,17.3501024596258,17.5338633166439,17.4238579313639,17.8345833744426,17.6945556422772,17.7497497728489,17.9849958296942,17.8373047984333,17.8981782371045,17.8428327524098,17.7184455893021,17.7798396176785,17.7118405694359,17.7849349967068,17.7733346312542 +"P32748",17.0585067232019,17.01184609907,16.9845974418053,17.1430915388318,17.0914567747312,17.2536579478924,17.2282022264248,17.3905021603392,17.2790539443117,17.309965613875,17.3723097604913,17.2876199393643,17.2579921531379,17.4009011913033,17.4321276202495,17.7309207035232,17.4616629730595,17.4916220653713 +"P35220",19.4416774713606,19.3655834783444,19.3970187308367,19.5189287814437,19.4235909814117,19.51493249184,19.2801320036863,19.3072659408569,19.3085359201813,19.3563269402551,19.3235064634768,19.4455399243036,19.1992578441054,19.255654417033,19.3234058065095,19.2221484682914,19.3428702280198,19.0290386354715 +"P35381",25.5054113118897,25.4902064747334,25.4986561238661,25.5883291177437,25.4918820780283,25.4046924054663,25.7962776879055,25.7438602830296,25.8167612026409,25.5321380208888,25.6274096517714,25.6349817999928,25.9403808642308,25.8820124335546,25.9591900413345,25.7698535753304,25.8970196568716,25.8181090046883 +"P35992",15.7388714816374,15.7391094128759,15.8506203068769,15.7118712855122,15.76653449973,15.862977331563,15.6985172541826,15.8536591929941,15.8522260748975,16.0276336550003,16.0599277245968,16.0045926408472,15.8254378270409,15.861874041782,15.7852393184479,16.2205249229101,15.9417515543047,15.8672007536511 +"P36241",20.0087542499782,19.7684297609084,19.8255074511619,19.8018309041787,19.6483367565618,19.6809590530979,19.8948089559274,19.9800411625857,19.9721580900328,19.9659718975106,19.8002068424273,19.8508086336696,19.6010292050711,19.8588661403405,19.8277473216058,19.468369940652,19.6848844904943,19.58358460375 +"P36951",20.3369893886083,20.4985868243664,20.4694446255759,20.2892164066513,20.2914671414748,20.254137907803,20.5460097713606,20.461819496097,20.4077904731259,20.1498041965784,20.16752733586,20.2684344138259,20.4567558327793,20.3763603031976,20.4352927454526,20.3758739141701,20.3588884091523,20.3195493443646 +"P36975",22.2240634235212,22.2586089579108,22.3470159470349,22.462383420832,22.574531671556,22.4612118788148,22.1248476236731,22.1407085177088,22.1657822771663,22.2903095750713,22.2177483138543,22.4547795925137,22.1337525847056,22.2008217303321,22.1439969617119,22.1783411183243,22.0212785547655,21.840911088886 +"P38040",19.0428459900239,19.055492323997,19.2434608030229,19.2650805615777,18.9620930221911,19.0940896059074,18.8629262190142,18.875130346495,18.9677738788753,19.2994916046163,19.1934713535091,19.2458430618636,18.6410243353876,18.7200763905547,18.8105474735544,19.0785126335283,19.383617907401,18.8281665209244 +"P38979",22.1349754931887,22.0438617073933,22.1706459100529,21.9916472721281,22.0264510216077,22.0439492397487,22.2608796025019,22.1975373966751,22.0978762326375,22.0382084714827,22.0347261675837,22.0804364936793,22.1739498647161,22.1679089716367,22.1412169157762,21.9692626428779,22.0984380819989,22.0347985550008 +"P40301",17.8563267241001,17.551545261975,17.6572667413873,17.59624749756,17.7403743596114,17.6354671713017,17.8740210145134,18.0382337729928,17.8901878699905,17.9124777258607,17.8692708014557,17.889063524886,17.9748449519587,17.8188087166188,17.8704676610239,17.8759304027304,18.0716154040695,18.1473953481339 +"P40304",18.6233145843727,18.5191600937871,18.5837675248412,18.6314783118637,18.7614509283521,18.6522072405919,18.8495802258734,18.7740816322831,18.7012620410911,18.8047002007044,18.9031646087228,18.9472124108695,19.0850924692813,18.8417986357184,18.7964035486734,18.6965849042576,18.8910947974895,19.0098979302859 +"P40417",19.7179044958179,19.72945395551,19.7669081012261,19.7613975587811,19.8788248106561,19.9295751523096,19.6735380339337,19.8364469057374,19.6126029411363,19.8888197126093,19.8314725623387,19.9265491047554,19.8458300346012,19.8140123282745,19.8236839143395,20.0752483925357,19.8725276657621,19.903419014512 +"P40796",18.5267599542665,18.5623962540136,18.6152405537227,18.2731605649353,18.426540176627,18.4147137133649,18.6451963791757,18.5237832803223,18.4401389166277,18.0149666204293,18.0937830974179,18.265045458839,18.6677612062729,18.5999845032863,18.5041107655916,17.9352335822244,17.856590995637,17.8238288991581 +"P40797",19.0342030012078,18.9100827803839,19.0142823915691,19.1176833309993,19.291250379617,19.2457489623225,19.0982440004336,19.0807087085896,18.991338111877,19.1600945189922,19.245728031641,19.2808908298567,19.219054727707,19.1399869504506,19.0857036222832,19.3441343167846,19.3056570454424,19.355449978216 +"P41093",18.6043426971842,18.6379602176606,18.6614797364147,18.2745095267207,18.4093180397784,18.5556757019232,19.2617233377485,19.2286650743332,19.1073086878947,19.0467117890198,19.0904918443042,19.1487686127561,19.3519524147902,19.0376013881752,19.1702378999087,19.0954341039941,19.2306373052059,18.9912032305602 +"P41094",21.2391211224638,21.1783041877216,21.1612186501096,21.0417207207234,21.0718872564381,21.0967545135227,21.3515704831239,21.284439830515,21.2630505572428,21.1637355728426,21.1591685381202,21.269477474682,21.1937195351977,21.1906674413188,21.2283576197866,21.0864352577247,21.1918354379623,21.0574438767325 +"P41375",16.7700906029049,17.1406281134255,16.8256896795202,16.8110476544713,16.820720662524,16.755816798121,16.7696279856635,16.8860495538099,16.5804719862907,16.7853046180473,16.7619768355336,16.8844811332234,16.6051950277612,16.5618855077977,16.6793424468909,16.6463285327078,16.2163337484654,16.6617923775099 +"P42207",15.8922835211398,15.9346861986141,15.9808576430863,15.9641721221453,16.0195621412975,15.9074523519181,15.9613295428455,16.0662084923383,15.9657969706756,16.0862147055573,15.9895995077684,15.8380944359943,15.872713189453,16.0439414215697,16.0294619005139,16.2460474260909,15.9687627456437,16.3010972050436 +"P42281",22.1470411840861,21.9959490796944,22.2708664370826,22.01694995984,22.0630217574028,21.9399310314233,21.6870065262616,21.5401620646366,21.7682238341531,21.6578424008727,21.7747003880059,21.7389078062039,21.60956434238,21.7085293247427,21.6012666137634,21.7258005996328,21.7618423985908,21.5250092904469 +"P42325",20.1395058365328,20.1228903214263,20.0939775123776,20.2509277059307,20.1899456946644,20.2161002999591,19.9606757231146,19.9266724637664,20.0213693209617,20.0349406087592,19.9582353167,20.1490617890354,20.1136500813415,20.047258104722,20.0348351583805,20.0314888409915,20.2861868953913,20.015844715956 +"P43332",16.9301528255825,17.226787925898,16.9911140083283,17.2214811404873,17.2868483863235,17.2505735673371,17.1519238695056,17.1209680776243,17.1739622280478,17.1842206061015,17.379915948941,17.4564185356706,17.1462492662809,16.7281960494023,17.1160919079912,17.4599008395794,17.3512121593482,17.1057683001623 +"P45437",15.8647041330494,15.7482225598045,15.7648022543399,15.5240853111215,15.8065549343725,15.698065267764,16.2322987145135,16.3415240755735,16.3739964978294,16.2613460290976,16.2775967482476,16.0458490057167,16.369386361108,16.2511003672241,16.3613031479711,16.3136900023129,16.1405118659807,16.3214943775819 +"P45594",23.1026799974128,23.0386273275216,22.9050887777336,23.1077648346526,23.0770935449023,23.0609112782866,22.968014436052,22.9473667726785,22.9272648651331,23.1422443580086,23.1584318737667,23.3081964375257,22.853283047317,22.8234087302652,22.9490475580599,23.0514083827877,23.1804668070964,23.0748861394918 +"P45888",16.8917440899547,16.9546871305534,16.8694539732287,17.1853187598001,17.2339183761393,17.0198478250229,17.2043942836727,17.2631783520526,17.3292669287897,17.2239519434173,17.2019319855027,17.2178439735875,17.3073838654251,17.2605775327263,17.356829321944,17.3964025631729,17.2949021284686,17.4159534828701 +"P45889",19.081382168141,19.0980301781002,19.0135877650345,19.1625028491703,19.1220301865347,19.1352303102854,19.2999605444464,19.2078036237598,19.08528238671,19.1584456926635,19.1995362626198,19.2696581105036,19.3329855617437,19.1585028830222,19.2525544498158,18.9618913238881,19.2112650060163,19.2408551177037 +"P46415",17.9879825656756,18.0339910690486,18.0741102164667,17.6223963104744,17.7945324325384,17.8935790197002,18.0671533279721,18.0473501580346,17.8747988298779,17.9976874623423,17.8699035365795,17.8844629987314,18.3933478937194,18.4001905826122,18.4251474057229,18.2327754140007,18.1553751953711,18.1492445036853 +"P48148",20.5342923975589,20.516439044954,20.289803367535,20.660206134919,20.5076879297929,20.4678556549316,20.7177605984076,20.666108453397,20.652523034566,20.7268942955144,20.7800895884792,20.9187110213268,20.6826185698954,20.4985522257989,20.7249805629228,20.6166541876787,20.969548941552,20.8845525426918 +"P48159",20.0486384341932,19.8860521163636,19.8969519043103,19.7674604733652,19.8228198211686,19.6965465774592,19.9951096024848,19.9879726002026,19.9797079648741,19.8641788430314,19.9042153822511,19.9758902031162,19.8680343851871,19.971068334009,19.9879901229733,19.7941092794835,19.7654027637503,19.8004442450122 +"P48375",21.9610571692259,21.9679493003191,22.1294638614665,22.1700424164334,22.0934591504736,22.0446557563704,21.6867358581989,21.6959698640086,21.863929488303,21.7057984947244,21.7843287352049,21.8562873380084,21.7280674108812,21.8160116488135,21.5822735271349,22.1046157992217,21.9985984498657,21.8797071774023 +"P48596",21.499158791522,21.470702266906,21.451823968362,21.7093278894581,21.7426534892124,21.7939179986705,21.9292910516259,21.8890883093091,21.8388553572099,22.2142109529715,22.2545431964111,22.2869339137867,21.8008020980005,21.8454240741647,21.730880112935,22.0503187379984,22.000698185573,22.1006981706122 +"P48604",20.1501354539376,20.1692700133031,20.3222726901741,20.1701617380595,20.1533388627706,20.2250279254362,20.0323073884042,20.0276175390642,20.0424780846483,20.0563593863133,20.1201789380397,20.1266098486237,19.9904095396782,20.0231778757161,19.8709940705574,20.1820284765623,20.0878187540614,19.9940193635155 +"P48609",16.9612618953706,16.8718162994559,16.9181447977073,16.9058627531146,16.9149633532787,16.8968031408956,17.1617946326572,17.13423262941,17.0533628844973,16.9694191299563,16.9162500821215,17.0948033729247,16.8255764605908,17.1261731260804,17.0166317194474,17.10122334182,16.9617027231632,16.9453922980371 +"P48611",20.2658513059679,19.8487063155233,20.0117498540057,20.2147838447286,20.096927522592,20.120890975043,20.1728493594902,20.3155445867062,20.2024606812412,20.3897954905104,20.4942819410232,20.4406501841768,19.841561645822,20.1691352340098,20.0893194645921,20.2640410172967,20.2242870639614,20.2838115047569 +"P49028",16.3958413435641,16.0997822983466,16.2735233080988,16.6628790484125,16.3296475887365,16.1175659602909,16.3161590628844,16.5440111226896,16.2897479615694,16.3810726947635,16.4965913898574,16.2383271826883,16.2903377478885,16.4519767322289,16.7054016067762,16.1680885948033,16.2923693604572,16.5898124728928 +"P49963",15.0915679834248,14.6759314432174,14.7504917497868,14.8705401489589,14.8772425650647,14.9780426378512,14.9080621747931,14.8620223011201,14.7986842253222,15.1191077682362,15.1489738716406,15.1782573640711,14.4870713520631,14.8793233416409,14.7569732435285,15.0215999219012,15.0544558266936,15.0355001288174 +"P50887",17.150216038211,17.439452481021,17.1874088161921,17.5223794540329,17.4461601594344,17.3697809924276,17.8351443305697,17.6833834418322,17.894590951532,18.1251016693001,18.0562744049746,18.1727724696057,17.8307536510232,17.4921396542143,17.7225427087987,18.1891736875399,18.5353586892002,18.3056728921206 +"P51140",13.4072430709248,13.6331356818168,13.7943351821891,13.7323172005748,13.6072753817789,13.7522006974563,13.4712533171151,13.5569092806189,13.3650239107277,13.8003608933248,13.6982916394909,13.4527738287081,13.3379937318823,13.4879994115723,13.6567796947022,13.9615405845727,13.7270974031168,13.6895954846113 +"P52029",18.6510725878012,18.8259265299664,18.7716538671413,18.3228193404912,18.3340021262003,18.1678665769548,18.2697271070522,18.4260226367467,18.3919087102377,18.0211128769836,18.2161032963099,18.0773966337142,18.862933412754,18.7037830987295,18.7687453562608,18.118491220234,17.7403188573633,18.0685854010074 +"P53034",15.5348074497774,15.6516457207441,16.0063796300141,15.959852237966,15.9370162175283,16.0105076151225,15.7159061447541,15.715254537801,15.5579898049101,15.7895042517267,15.805721744266,15.8816825410918,15.5291567837191,15.6100171303578,15.5204603805956,15.8780410578943,15.6876125751403,15.4302479541034 +"P53501",24.85032606488,24.8115388757962,24.8732530250289,24.4449867073362,24.4635091352069,24.4508256177299,24.8296552571652,24.8635155548654,24.7729946567817,24.3795372503665,24.4156949019403,24.4336528543549,24.72214788195,24.7814162978789,24.7624760533478,24.5178234474914,24.4088018435016,24.4512744019461 +"P53997",18.2391019970783,17.4296743045357,17.3641228469912,17.680144752705,17.3603240841394,17.418340383482,16.773949660533,17.3409724050764,17.3432416673579,17.1743450875326,17.4240303860097,17.5353548686845,16.7127814405186,17.43134533372,17.2845987002737,17.6542165999684,17.2481930248547,17.2888810715466 +"P54185",17.3371871026498,17.2689756463826,17.5141223605725,17.5780682882364,17.7779460861194,17.6923477996728,17.5713547800475,17.5060038670464,17.7377559871384,17.6237410172637,17.6746077886483,17.6444097339284,17.2420913870369,17.2574970359139,17.0573242875534,17.2655548646646,17.1329670157882,16.9720372710335 +"P54192",24.3476428373571,24.3686880762014,24.4723981100141,24.5499812619102,24.7102181003829,24.4924995357399,24.3725504201473,24.1841223580952,24.4650371565968,24.3164363805329,24.5025162149794,24.4773211224539,24.1516088338881,24.0735877322192,24.0948611806005,24.2235161392151,24.1226033911726,23.9596187676456 +"P54195",18.3346608124874,18.8092046485147,18.701294054887,18.3618156583063,18.8160959802804,18.7006167048473,18.9845732753099,18.7489921510866,18.9085824426782,19.06845603338,18.9965432900339,19.1379297077829,19.0223749365126,18.4232480589083,18.4705637374457,18.5076890458896,18.4854856330619,18.3605831142447 +"P54352",16.2024995240359,15.8090452389684,16.0316128810823,16.0215180846842,16.1087066063666,15.9401829932488,16.1348320113236,16.3172899385624,16.0893022576781,15.9417502293177,15.8942022932661,16.1803670074852,16.0176325180938,16.3403636174608,16.2389927091991,16.3398947874115,16.1885194602424,16.1776693061733 +"P54353",18.8684543568101,18.8627079443228,18.9782695531346,19.1883225847394,19.0190975532096,19.047215941899,18.6772429643078,18.8837446467357,18.9987372669276,18.9510451529999,18.9065508739333,18.8460194165952,18.6171937783073,18.9369013629283,18.9670983199593,19.0074226951112,18.7006791511461,18.4723410337601 +"P54385",21.4168224278992,21.3687335633212,21.3793357970929,21.0917063352289,21.0261382527939,20.9749191393576,21.7115545736237,21.7481857440113,21.6461022718882,21.4446471850481,21.445673631439,21.5603967200184,21.9852130575227,22.0562932165599,22.15058960754,21.4714514462397,21.476370617437,21.4100514896652 +"P54397",15.1304509420558,14.9562900749084,15.0218365934315,14.5106653324135,14.678329707961,14.618173476456,15.1913413859774,14.9147902181566,14.9127981234832,14.4192200362747,14.7129206925569,14.758072650892,14.8929137055148,14.7267338917322,14.806996272771,14.5430010774926,14.6985278944138,14.5697153626952 +"P54622",17.5220390871128,17.6431543960359,17.7988541603466,17.8964725943239,17.8860897581211,17.7198885769204,17.9598671069402,17.9728406956281,17.9193416042522,18.0630053340386,17.8950105099219,17.842067892589,17.9161267505454,18.0964800722449,18.135277598477,18.3070031621757,18.1709386031846,18.2490842025512 +"P55828",19.9519006139457,19.951396156352,20.0315822562749,20.1389312050261,19.8788924449707,19.8775508050033,20.0295525472092,20.0844363816148,19.9602525777992,19.7839647282493,19.9151031845067,19.9345978865771,19.8585121594623,19.9826781330524,20.0272375439409,20.0389146243504,19.9892695777464,19.9705548086476 +"P55830",22.160598093674,22.0970195966649,22.1169768121146,21.9710896904321,22.0025405201215,21.8864236208998,22.142841750019,22.0890987564131,22.1595710810578,21.9753173995412,21.9957501114335,22.0148171683932,21.9379956398559,22.0586536878645,22.0002990393372,21.8401581638528,21.7849380648775,21.8499130155724 +"P55841",20.6047481917568,20.6028319997919,20.6070327535702,20.5415766191315,20.4440547198827,20.5298829362744,20.7324913848177,20.8525645462808,20.7836281147482,20.6142379289572,20.6065610010399,20.6639433368401,20.772392965199,20.649080619925,20.7364461701443,20.6063853929872,20.7167395959289,20.5508991712721 +"P56538",16.9622342694224,16.991667332322,17.2677959640905,17.0714830516593,16.9323528188297,17.0021972247344,17.1302220949478,17.1718803991325,17.1722045188434,16.9880425129421,16.9618757435546,16.8533216054134,17.2075849017238,17.3356689640083,17.249292237691,17.1849643234415,17.1510858962899,16.9997196033644 +"P61851",23.7315924873491,23.5517361560073,23.5435858160519,23.7246436649275,23.6451498153403,23.6661487767794,23.4790158507363,23.4470012350713,23.4570923411296,23.6603167715841,23.5190628881594,23.5796734457244,23.0523483495337,23.4579697766984,23.4270265023012,23.6100364413426,23.6370336941964,23.5844266834867 +"P80455",20.7547089619996,20.5089871788786,20.5931783274007,20.6297079283595,20.4358418193675,20.5215615179015,20.5992500138498,20.5054195184031,20.6633488419968,20.4973484190094,20.4029672541251,20.2554706105468,20.2317532248683,20.6579687506915,20.6110326146406,20.5038892201268,20.7054732467476,20.572065855727 +"P81900",22.3920131960558,22.2205649427035,22.4423161226023,22.4708134543866,22.4870148526978,22.5055419462896,22.3235720802793,22.409877955056,22.3320190351156,22.4380752866116,22.4260270143059,22.3593862475588,22.3206023865881,22.3411932344801,22.3772187082916,22.5905170196597,22.6509154243379,22.5191113637232 +"P82890",19.9387108811478,19.8552185159529,19.9933444128553,20.0495551395897,19.7258113197879,19.777850433282,19.5112754974236,19.6614400183356,19.5699004252255,19.5418222533771,19.4326688288068,19.438681218853,19.4847851609839,19.6136627389062,19.5208405776349,19.1768046033607,19.4141521140935,19.4023364680322 +"P83967",17.3396479714868,17.0247464014151,17.2418192055453,18.4813520896098,18.6250109505917,18.3062961142031,17.3969403522685,17.5055440959014,17.5364481079026,17.4347023716151,17.3506504150185,17.4546902192912,16.8358296354983,16.8312487377741,16.7154961052197,17.6516141433978,17.8028859631755,17.8853368117143 +"P91926",17.8589774042887,17.9403292667151,17.8705398982086,17.4237242598632,17.5128069142758,17.3785260123094,17.501676980603,17.6253986687424,17.5695201933577,17.7863117476008,17.7399382130695,17.6628183392143,17.7515198845683,17.6652764184946,17.9097529279814,17.8063502410944,17.6448110367211,17.737403146947 +"P91927",19.5605339209788,19.682023363321,19.7571182455835,19.3488606101136,19.3647354590878,19.4171287650182,19.3711514664468,19.258695328175,19.3878902711189,19.0049407416938,19.0492705274203,19.0295179309453,19.3986102097781,19.4115810014375,19.44792040927,18.9069738072374,18.8247650768068,18.5514951343125 +"P91941",23.2403940481822,23.1518741826229,23.2015332199592,23.1226926642373,23.0919283101399,23.0369953496799,23.0787288884001,23.0277081789178,23.1253309592185,22.8462370536099,23.0543604178678,23.1507728865635,23.2621994439101,23.2166529812206,23.1789252237205,22.9526938287328,22.9604218563033,22.8093882879309 +"P92177",24.3110831290574,24.1234636141495,24.2009583868944,24.2691267591711,24.2452585693757,24.2896393584149,23.9829507692999,24.0552965327987,24.037709184224,24.2646798932618,24.1483741819095,24.207323093451,23.7305248551927,24.0441133231072,23.9902706476463,24.2257517423533,24.1676109269957,24.0582164777057 +"P92181",16.449086792115,16.5812549939695,16.6139776270647,16.4371668305103,16.511465492918,16.5691753134519,16.5574245058293,16.3026582118808,16.461487467454,16.3967479685292,16.6008088607203,16.6429939985616,16.5816153020786,16.4537677754465,16.2580848243096,16.5895647620232,16.5616508261505,16.4658869302438 +"P92204",15.886596818474,15.7355636786146,15.8527724639643,16.1964370890948,15.9558836056288,16.0683189414148,15.6951757773135,15.9747758592008,15.8067549309137,16.081238257257,15.7362117802785,15.8084712735209,15.2161417885323,15.8690555080712,15.7569225061866,16.1140832963307,15.9181825952086,15.8964329110022 +"Q00174",21.761982349324,21.7734111383538,21.8342624547209,21.8977968640759,21.8605240879367,21.8347356384657,22.1604287465445,22.1175885631157,22.1800220644606,21.9416739285793,21.9350833984689,21.9592971673058,22.1168914809427,22.126703797414,22.0706449656853,22.0922581885782,22.1577205727555,22.0920692674063 +"Q01637",15.5830222621295,15.5640076266432,15.6693064805598,15.7230932680088,15.8369643537774,15.7325369494206,16.118398735991,16.08588321106,16.1248355693765,16.0079251423749,16.1214873947315,16.0946326204475,16.1941505434913,16.1944208517429,16.2041899425455,16.2672357789318,16.0910622929724,16.0683241685775 +"Q02748",19.6644586107245,19.6139754591982,19.7209212961073,19.3536767661539,19.3566106866663,19.351177250242,19.5785530377429,19.5998411324214,19.5003140411907,19.5032260243953,19.4875437528882,19.4774071942557,19.7891471458796,19.8463247757784,19.9815589420795,19.5114747958553,19.496240573799,19.3691576568763 +"Q02910",16.5367549779417,16.5578576043608,16.3617487414532,16.1644248903711,16.4171325419402,16.1920595324637,16.0934593561944,16.2554964757,16.1860849153902,16.3085901327549,16.8867222181646,16.4353367443084,16.5267355294373,15.4447309317181,16.3339932171284,16.1222739532654,16.1902990680812,16.243015689221 +"Q03427",21.7897772388605,21.7811144486829,21.8421453374059,21.8523594429774,21.8114152500178,21.7652833351674,21.7489623771003,21.736901422022,21.7730199492175,21.6073966260556,21.7542998296154,21.708123393275,21.7053632384862,21.6979069923771,21.6854554640823,21.6862419536283,21.6084629343933,21.6160733979605 +"Q05856",13.7395971260225,13.6651696053666,13.6131457415183,13.5405690869679,13.4559789032878,13.7089410913564,13.7958556908793,13.4998038149212,13.7415607665015,13.7313974714055,13.8799901452576,13.806097205064,13.5186609055605,13.4078697609535,13.3594381459859,13.8013252479758,14.2185932990249,13.8982225783855 +"Q07093",14.5972603045697,14.7083474681493,14.7730864546054,14.3549087617621,14.3872542343108,14.5476787994248,14.6719505918791,14.4995269047694,14.4600444367817,14.7769799916981,14.472385203001,14.5191617854228,14.4755969710252,14.8786946649099,14.993434639015,14.5442776083549,14.4747657541486,14.1275681140394 +"Q08012",19.4147570389017,19.1248223119695,19.2878613138477,19.0731617562084,19.0143861311638,19.1423132519014,19.195927151542,19.2120508865921,19.2539198457052,19.0998179851029,19.0612575147799,18.9179450133328,19.0709361554034,19.3226150284335,19.2589731396497,19.2359468468048,19.3554150610242,19.2295343695264 +"Q09101",14.5728928801206,14.3508611886875,14.3390500080196,14.7754276788961,14.7153858517976,14.6687724705544,14.6745593300833,14.525451875849,14.4119642073451,14.6853426832518,14.6554688446361,14.7617760961947,14.4329695158356,14.7465088340044,14.7224148506073,14.8173233868955,14.9648388801084,15.0545378423618 +"Q0E8C8",17.4715721836879,17.6192955363376,17.67164901198,17.5581052284165,17.4422984555931,17.6267091204008,17.5989903371391,17.7323897713539,17.4990249815588,17.4022833168437,17.4690571011768,17.5755757780715,17.6669837383883,17.6465534099357,17.6301900024066,17.9994575194763,17.7877980495547,17.6942434295341 +"Q0E8E8",21.5796110168968,21.5154489721665,21.4206606866237,21.3196818652403,21.4339738218689,21.4379446700605,21.4564754799827,21.4616930847724,21.2910974855703,21.4823124438583,21.4653974931157,21.5794195735342,22.1514234981722,21.9639431066567,22.1861465894708,21.8715645211529,22.0206123467231,21.9457998200438 +"Q0E8P5",17.8501765265545,17.7268514401019,17.7919864681589,17.7363958116991,17.8784729613375,17.8082551080061,17.6658587302306,17.6008932456295,17.6783781927047,17.6080626955178,17.7149218581101,17.6868683935923,17.5914942408675,17.8084783095569,17.6202878414423,17.9118334792345,17.6342036693682,17.7780454801996 +"Q0E8U4",16.6063938791971,16.3320265939983,16.3497763477081,16.3494175531959,16.1840535735674,16.1474220755152,16.2951803756066,16.2457789278598,16.1943312895095,16.5124968250369,16.1307268966307,16.0726577645869,15.675913891572,16.2311690554629,16.3547955454521,15.8521600743577,16.1678075514471,16.1725795761943 +"Q0E8V7",19.8837836091674,19.7552497352276,19.9013194863308,20.1537231755958,19.7191339241105,19.7715708217453,19.6234497150048,19.6155087909005,19.7397004411323,19.8825661034923,19.7359342013843,19.6125326082869,19.0552755467334,19.6716428300669,19.5691457098736,19.6174759862957,19.7188046545996,19.6220050689204 +"Q0E8X7",20.9288158233078,21.2553349359383,20.9746381641853,20.9075238523105,21.070638936297,21.0653089720578,21.16495408489,20.9593123694953,20.8902042987189,20.9119972124658,21.1060321103403,21.3450164372612,21.2984099022325,20.812723786877,21.0166626424825,20.8512300525624,20.8588887888211,20.7711004130633 +"Q0E8X8",19.4493986053084,19.6301861887955,19.5886643290218,19.7637335673368,19.9445913521416,19.7862275971323,19.3537288749907,19.2631913330217,19.3836565655466,20.1137973319262,20.2384071835289,20.3087018069645,19.4777081264539,19.4131824300394,19.3679554965368,20.6535962511132,20.3224042696022,20.3767569619273 +"Q0E980",18.3096351187498,18.3816667814224,18.4839752992535,18.3571526923444,18.382294520048,18.2556008130498,18.4857382424378,18.3185651508444,18.504574260308,18.2864942300341,18.3283277105041,18.4575989873723,18.413615185487,18.2949390286532,18.1768386973823,18.362649563503,18.5094918410841,18.3366969751903 +"Q0E9B6",18.906601727596,18.8896524453747,18.8584944830397,18.7918527707229,18.7462474650119,18.8085371603431,19.2734283807442,19.3658251126657,19.3236035283759,19.2617641301121,19.2014649885156,19.1380319245728,19.1240021169555,19.2984002741238,19.3877858017371,19.3296009450354,19.1856597854744,19.1707971730973 +"Q0E9B7",12.3669223495387,13.0592484472628,12.8576398650901,13.1628425134476,12.8214702542745,12.9926599606052,12.9751084041519,12.5682444386574,12.790236740129,13.0418570446337,13.4885474331712,12.4453864840472,12.727372762318,12.6654229951339,12.7319027940928,12.489589418912,12.1607589245021,12.9458666490375 +"Q0E9F9",18.7686414395164,18.5345708216238,18.6579174096681,18.0651755118938,18.2883776562641,18.2507492753623,18.6841636452293,18.6737939339088,18.6635763780434,18.3644201566087,18.2359218118321,18.4295571881327,18.43734009918,18.45494418778,18.2863443177054,18.3952752839848,18.5274077250043,18.4268715675013 +"Q0KHZ6",23.149292460744,23.1357588896381,23.2947932640787,23.3072758682827,23.2424468713296,23.2365846952762,23.0336353172427,23.0406555413077,23.0742204721133,23.0192308083823,23.031987268554,23.0394447342244,23.0736292892247,23.1646650514635,23.0807684300214,22.8614338974501,22.8289840190336,22.7186860456126 +"Q0KI15",15.5587110772164,15.7648484272785,15.5816655217291,15.6373796196744,15.6087495295633,15.5395338002004,15.4384033694131,15.5835910566414,15.4785189171025,15.6112685855349,15.5447220601403,15.7952386428192,15.7499476431797,15.6295709913376,15.7633345143387,15.6265488661628,15.4907770962203,15.4639677649916 +"Q0KI81",15.6376073373439,15.6187926760367,15.7107993566836,15.9577420829482,15.6906162582063,15.7331998138121,15.3399934713971,15.5410966215953,15.6419456890767,15.519718922978,15.6015962531847,15.5037883175753,15.5314053288093,15.699877448881,15.6066829329569,15.7651505068096,15.5996383923819,15.5552015401813 +"Q0KI98",16.6365418027138,16.4801389848545,16.7706401791559,16.4101350348034,16.5204514671628,16.583734371458,16.5698442358,16.6269045592398,16.5721049375278,16.5003424052639,16.6713656652206,16.5421462654144,16.6898164278487,16.7988439826398,16.73977071158,16.9474693317949,16.6564445791074,16.5457527730887 +"Q0KIE7",14.0816166937891,13.8032975525153,14.2489415455495,13.8343743423811,13.1448619462048,13.7119945780094,13.9069119190367,14.1085472270036,13.879076869665,13.81173475577,13.5797615820461,14.0316339901103,14.3743932152865,14.8881470804513,14.2712976245785,14.2420771049565,14.7264926429988,14.1081634233072 +"Q23970",21.556421796576,21.4067155735215,21.5256116418811,21.8419589855702,21.7338722131032,21.7885445918645,21.4745061932162,21.4495917391174,21.6352745372299,21.635875440921,21.6082429383502,21.644878137006,20.9909124204666,21.3276729438208,21.0950310740493,21.2951545458683,21.2687339747052,21.1054894005874 +"Q23983",22.4904390500331,22.3135951538906,22.4289911857289,22.5719702469347,22.4816527868075,22.5127455851076,22.2120799983315,22.2048855075087,22.1748505297514,22.3826283237296,22.2610714396247,22.2639799331745,22.1179589034354,22.3206516159432,22.3022000848175,22.238694868716,22.4319148874056,22.3310040726004 +"Q24050",16.6597508404694,16.6125381143051,16.7014260731617,16.6327519066013,16.7128912997126,16.7679709072166,16.6155941315625,16.5536137008309,16.7004985651057,16.6528513033372,16.7044309804201,16.6138008701319,16.4792878240771,16.584707845747,16.5763937530622,16.7586315894501,16.6306856544821,16.4387774268195 +"Q24090",15.5533436174603,15.5466340369019,15.7271873416,15.9839605278321,15.8983970705698,15.90324891308,15.5626645384601,15.758207516306,15.80272873783,16.1712393943189,15.9348368420612,15.886051043519,15.5483601993645,15.9296675810144,15.7614763743261,16.2392051653096,15.991030395892,15.9780810323902 +"Q24185",18.6104847021012,18.8007925438652,18.8891970764143,18.8149903716577,18.8270134228931,18.811231586342,18.6400477166777,18.5829818004411,18.6592873006417,18.5896305192181,18.7469377385761,18.6987331256786,18.7467444195103,18.6050582778759,18.5870448630697,18.7818334358134,18.6209473813267,18.5382372128319 +"Q24238",16.2370667694242,16.1316900066536,16.1806204481356,16.1867737144206,16.2457781221793,16.1000848973819,16.4458603639772,16.4261228467576,16.3763143660551,16.4611787190944,16.4644365067466,16.6486855980713,16.6936566722084,16.5739956071307,16.490312985197,16.248526232368,16.431039382025,16.477044176652 +"Q24253",18.6519930600338,18.5135101872055,18.4821613037276,18.3133527340213,18.5093605142984,18.5322600116232,18.9793365907864,19.0006785263736,18.7907168874693,18.9735382949886,18.9622747946221,19.0611948255776,19.0847395984345,19.2808394845624,19.3765638153057,19.4336672158162,19.1699639870189,19.1937306503775 +"Q24276",19.0159640442504,18.9615262990886,19.1146659433752,19.0563598653552,18.8498655834986,18.9306410314935,18.5823065155788,18.5701793095168,18.6773507232334,18.3940067780078,18.4528179976611,18.5374665335914,18.4993552469541,18.6906266548413,18.4968035535872,18.3813929920501,18.4043695975901,18.1724576569158 +"Q24297",16.7525546261664,16.8141612018839,16.8968648227106,16.8473147819944,16.9150400651169,17.1721044554025,17.0388401764633,16.9323293821834,16.8839199528295,16.9885303408435,17.0654686973803,17.0765634869018,17.1517134537668,17.0705864540969,16.9015263160989,17.2752298424057,17.2565974209787,17.1232041876967 +"Q24298",19.4312526284739,19.2983981339356,19.3976812118306,19.4406894353566,19.465930187912,19.3758079145404,19.3336627373186,19.2509474234723,19.341657670185,19.3803971964079,19.4490154168172,19.5361396126985,19.2172843676402,19.3828588982634,19.3077235076456,19.5546542915182,19.5107905963148,19.3989307398153 +"Q24319",16.1622459544657,16.3769336682048,16.4297484665584,16.0488005523504,16.2038298409178,16.1421367060126,16.3307163216972,16.2386382607364,16.2617016771315,16.3331450625832,16.2280126208095,16.1462281517058,16.5444670740707,16.8071165901001,16.7475923370918,16.7238325791315,16.2886765635302,16.4158002057986 +"Q24372",16.978374439417,16.9834764167137,16.9255859735663,16.8134628806793,16.548247768992,16.9030549119005,16.8492343073,16.8040365598029,16.6452745889038,16.8912435299558,16.7856946175268,16.8257931770635,16.9049336029745,17.0121183416096,17.1984823714458,17.0084642720789,17.3121393277604,16.9475220095255 +"Q24400",21.6870374298501,21.6600862962378,21.7566002679389,21.4020615554027,21.2875270830849,21.2016424618958,21.7772856033511,21.6221616620798,21.7254078000451,21.232966581294,21.1911102325933,21.2678413755,21.4437521568051,21.6048382738128,21.6274161983889,21.2138679573969,21.3912477362915,21.1780631803312 +"Q24439",24.4543982344149,24.475314726662,24.4520740163006,24.321427049116,24.3664115201308,24.4303875909688,24.3448780812157,24.3335590546041,24.2498226118365,24.2043864832321,24.2169562552858,24.2453588227286,24.2634257745472,24.2419610287288,24.2971137081177,24.1270647493244,24.0813777864388,24.0408236218981 +"Q24478",17.6321202235497,17.5039120900209,17.7900236088427,17.5640927321033,17.4419627708282,17.5313583876681,17.4884402156164,17.4319184475962,17.5599287678646,17.3091510702364,17.2841757277803,17.1477901340068,17.5657435630054,17.4892615279346,17.6222427675539,16.7166515051702,17.1249687455213,16.6248556437453 +"Q24492",15.2577880704735,15.256478243674,15.1903542331729,14.9620923108561,15.2416558822064,15.0333662603521,15.1245641702926,15.0509989159504,14.9871889726894,15.0230681790601,15.1256805892559,14.9826376407679,15.33245645701,15.3435665376095,15.4484860497507,15.3175740464236,14.9991630654197,15.375510077383 +"Q24583",21.2861992654998,21.3271561420024,21.3093044446153,21.2557993110257,21.4563883192517,21.36631860741,21.1224970836143,21.1156568497568,21.1856307158094,21.3297346734822,21.285915529081,21.350592198515,21.202870057969,21.1179260049687,21.0762289447582,21.2217352853331,21.1157928318636,21.1307607658163 +"Q26377",16.8907386535064,16.7876434548513,16.9558866562396,16.9899588234304,16.7798720997564,16.8037730381149,16.5786926504281,16.559691506237,16.761517465124,16.7611048276181,16.7175956747136,16.6902245073449,16.3097621797613,16.8137418606701,16.7548106777534,17.1499041373043,17.0216166758204,16.7139489274719 +"Q27268",18.9482743019112,18.7611020412628,18.9002070147269,18.9794121851449,18.7367188061889,18.9581917694274,19.072361828407,18.9130144245372,18.8640628442535,19.0138175647827,18.9677302674648,19.0259431233447,18.9403124305376,19.0028663185271,19.1334955853302,19.1344405300325,19.7071869828351,19.2067185037333 +"Q27272",15.8411003245628,15.7605315138084,15.833396802082,15.6703294290441,15.7246664034657,15.7863842641048,16.0853087677331,15.6074085587983,15.8248844503309,15.7282764642103,16.15904319003,15.8132803586339,15.5938734614919,15.2963109089831,15.3304326001579,15.2292332005662,15.6001610725229,15.5597431722989 +"Q27377",20.0898679804823,19.9232702717461,20.1795146706921,20.4104590833631,20.375251557538,20.2591676674964,20.0792687078508,20.1089232854378,20.3636597035695,20.1835011860503,20.1202917386482,20.0271688045157,19.5710903769663,19.9806224067035,19.9147913223345,19.9394639109224,19.7652919855616,19.529349077027 +"Q2MGK7",17.1708088305418,17.2498460357212,17.2018567945464,17.1055876067388,17.3601433900627,17.426095036223,16.871698927571,17.0006692283429,16.842567077696,17.1415453990538,17.038813897671,17.0875358844957,16.9931352406885,16.882404267799,16.6745543678454,17.1989530782881,16.9498522632852,17.2491199220756 +"Q3YMU0",23.1613063346966,23.1427676833819,23.1998749023513,23.2149819208997,23.220608475085,23.1417828725178,23.1337749843748,23.0969648567568,23.1558335898364,23.1646867255749,23.2221437534764,23.2530391413651,23.0964531114207,23.1475350839046,23.0943728221256,23.1301749609349,23.0713581852969,23.0564747097054 +"Q494G8",15.0668186040498,15.0331531905767,15.2656386077,15.3422868369163,15.3118643580337,15.2320742875769,14.884770150283,15.1070843124625,14.9544203000309,15.1463383137545,15.0293503323066,15.0916728119419,15.174327864411,15.0957588288161,15.1197138987764,15.0705248540286,15.1078556012477,15.0215467174171 +"Q4QPU3",13.6886511322647,13.9952791725732,14.5466151777093,15.0844489309454,14.3316689359277,14.3041794536652,14.552704532974,14.2962467430759,14.3435788507516,14.5174465975078,14.5345460601759,14.7401064936117,14.443657036235,14.7068902075925,14.2180581542904,14.5823273140831,15.0046044246647,14.7166974139817 +"Q4QQ70",16.0983484308524,15.9860804494969,16.2977841446553,16.2624207848525,16.2637669585868,16.4154948130113,16.154009927886,15.8869467391015,16.0529871522915,16.1036380199282,16.2163090989343,16.1532204365694,15.9883408519539,16.1257324025751,15.8452950249129,16.0878558527969,16.2157782195753,15.9298322968294 +"Q4V5H1",14.9523961182619,14.7920864046227,14.8184406555436,14.8878928891652,14.8335509944318,14.6989065955166,14.9232838789791,15.0701949296834,15.1786326329352,15.2846135671012,15.070462096658,14.9628843069789,14.6965551985932,15.1681009977279,15.1470745974212,15.1036652577004,14.9140114866772,15.0424681214055 +"Q4V5I9",16.311913954999,16.3038961965797,16.3033822338211,16.0399357624986,15.7602905859291,15.8934027095621,15.8202973132366,16.1303570171614,16.1602526438707,15.7478727132186,15.8499929354077,15.7432046019871,16.2573026415407,16.2236387359206,15.9405935587499,16.0582385909719,15.9673855054666,16.1947252284745 +"Q4V6M1",18.1869617476354,18.2028495221578,18.300196587043,18.1524307504865,18.2848436506582,18.3555068317558,18.178943067837,18.1998664534118,18.1851162227084,18.2041939004966,18.2687215477944,18.2999804207592,18.1959560378476,18.0930518305066,18.0737104793284,18.4106605115775,18.2798130113518,18.1146354742857 +"Q500Y7",20.3664856374387,20.2190379697823,20.2913633304556,19.9743818552341,20.1797078710407,20.1831947764355,20.0826003734913,20.0387239189541,19.9766783864105,19.9012810508414,19.9756888020505,19.8535301120798,20.0315854503978,19.9915080151771,20.0607990296785,19.9585421294217,19.9102099198204,19.9493108617651 +"Q59E04",16.2211547541799,16.0869868598856,16.0114312483707,16.5650585007179,16.4714046142557,16.6332710830123,16.3472847816464,16.2122295954669,16.4534036458928,16.4906309522281,16.4358847935137,16.6269084771159,16.3411397166923,16.2536761137923,16.2007193676593,16.382112432534,16.8871991610844,16.4216473159476 +"Q59E14",14.5700202031767,14.2058126010763,14.43730097668,14.2035573878019,14.6164926902791,14.6670324883014,14.5959141888112,14.6284679004337,14.4253020379718,14.8262122188821,14.7095363232019,14.8206881363634,14.5826015464703,14.4506923138195,14.3319910151038,14.686546829944,14.8538505462757,14.7825377206659 +"Q5LJT3",17.1222909071833,17.0812185396034,17.2840465103283,17.2388935341239,16.8792658812861,17.0159105580381,17.0324191220071,17.2458762832456,17.0138093227346,16.8949385950284,16.9757939323121,16.9517533125692,17.016939989222,17.4079890400635,17.2519813199063,17.1388640216791,16.8542024927332,16.9268451456673 +"Q5U117",14.4846963869761,14.7756025352105,14.5861016595326,14.4389617160726,13.9645157052597,14.2511353314274,14.5327113731777,14.7325671636715,14.533556115437,14.2527991223451,14.5260986611466,14.5081275958962,15.1148445985883,15.092073491561,15.0893942140518,14.7972766045257,14.5304322448361,14.6529748853404 +"Q5U126",21.5104596052145,21.4723626328378,21.4516199761477,21.9838156690275,21.83049555803,21.8264605675205,21.4472272794395,21.3921266364993,21.5274799709956,21.5660497514117,21.6881072845406,21.8982124986121,21.5461066538022,21.5392544100422,21.3380101863359,21.6526823713849,21.7839948083303,21.6645581306684 +"Q5U1B0",14.9823667881726,15.3337348363896,15.1877991515533,14.4456208304389,14.4653048036096,14.777290245412,14.9039656819788,15.1616140829896,14.709485912439,14.5540613268284,14.4667571326626,14.7564210415801,14.8028597861294,14.6200532518366,14.4014585345744,14.5950688134114,14.2364791194716,14.4514883414009 +"Q6AWN0",18.7139014742953,18.5949499701158,18.6905267160737,18.2347130345526,18.1845132490948,18.240871760602,18.5204938842577,18.6112372759464,18.6782195327509,18.1076443827994,18.1508598013015,18.0149339746179,18.4123032271301,18.5876740055124,18.6165233885027,18.4083761267527,18.2681978278168,18.1563567572405 +"Q6IDF5",19.8133342601523,19.6467893221224,19.8202417301881,19.7490812245972,19.6822945813275,19.6413622148083,19.6658915751873,19.5171547347991,19.6555358441275,19.3434903871723,19.6907711061791,19.5984737371305,19.7986068995621,19.5980470499251,19.6583500914142,19.3207638037153,19.5561113560334,19.317204532718 +"Q6IGM9",14.8726640898076,16.3195309273995,15.0220194392279,14.9027655073467,14.8243488952539,14.959581973305,14.7921779969729,14.4581842210706,14.5402040271485,14.6282137816598,14.5556821102492,14.6684547791953,14.7596046488096,14.2130317108108,14.7873448308512,14.5285629909684,14.1132111507809,14.506383965837 +"Q6IGN6",16.800371681372,16.6100019353448,16.8352856967853,16.9501772202534,16.6885392679764,16.8088033273374,16.8137137041988,16.5176024193072,16.7683903548147,16.7215462250565,16.6771716047568,16.8159211450457,16.7353607153503,16.6290398380885,16.723577096144,16.5610254756446,17.4598399564019,16.6302174017484 +"Q6IGW6",15.8943047105827,15.514728042839,15.7244732324919,15.470351464644,15.5971226636867,15.7467106168616,15.5352367083802,15.7592745560545,15.5479687353335,15.8805661519785,15.8475047658018,15.9954843157534,15.7617320187333,15.7141986585043,15.6735470513747,15.5924359616321,15.7017983290644,15.4464430641356 +"Q6IHY5",20.9977508761782,21.1151540335269,21.0688286271504,21.0461360862145,21.0800507045756,21.0448611793696,20.9217381667756,20.8816548949544,20.8912079822911,20.5622299763773,20.6318601444036,20.737986664863,20.833133118134,20.8820104530082,20.8061868233169,20.9787969627478,20.7490549559587,20.7907139094364 +"Q6NL44",15.2799127861084,15.1614070587239,15.1499137441325,14.8229272749791,15.2968091129164,15.4313776698723,15.2159650756089,15.3399848452011,15.0549459908037,15.2193834158785,15.2185979805278,15.2957362404421,15.2781305543056,15.3782271338945,15.3524637940954,15.8724422032413,15.2937351788582,15.4043238707759 +"Q6NLJ9",15.3378016602126,15.143465692011,15.406532946108,15.2196290719918,15.4038062502305,15.3843024108416,15.2414080592869,14.8840481851245,15.050752121172,14.9636970471852,14.9400232830695,14.8209428005694,14.637321476022,15.0352979075618,15.0494700248819,15.4566502739341,15.4498662706353,15.1445072850598 +"Q6NMY2",19.6154508041577,19.6760792141476,19.6370141535816,20.2649973767741,20.0819958468634,20.2236190791829,19.9493883833392,19.8355295356927,19.6878742210168,20.2763430726441,20.4629152190311,20.4555085538643,20.2232333323164,20.3532722760668,20.3492353686345,20.346534345873,20.2661552233029,20.3226959388244 +"Q6NP72",18.8422311244031,18.6163725876463,18.7980689043538,18.8548817429621,18.5729937980893,18.6297349623761,18.6533229677168,18.7686414991803,18.7507394738508,18.7753340547792,18.5987689217016,18.707363050336,18.4685039778249,18.9839773810805,18.8306682367891,18.8690992315898,18.9226189115777,18.7467984715702 +"Q6WV19",13.4299322834009,13.4355902802159,13.7552565429093,13.3184455201374,13.4646153644592,13.5636740144339,13.5129272087129,13.6668689421657,13.4589759007251,13.6331266247864,13.914446758743,13.9284704285081,13.5645026026438,13.8408854156499,13.5496895401447,13.7037928838215,12.8403203622692,12.9066606967819 +"Q709R6",15.1424647390711,15.3969305735896,15.2392095497121,15.6353087403998,15.2379567695609,15.1736577026301,14.8980317289507,15.0099702607145,14.9732264717101,15.1050607149656,15.1259919623935,15.0989497330894,15.0638522328026,15.1744185343084,15.1230650879496,14.7491134349953,14.6485634906183,14.9857230460938 +"Q70PY2",16.8848850632764,16.8728216582746,16.801173415688,17.1843051777077,17.3264687735821,17.2648124970059,17.67326523802,17.5420540083409,17.6383074683673,17.3087712357657,17.3686760949533,17.4352215175675,17.5465100114492,17.4947483223389,17.5299958507406,16.8494909891785,16.8424588579077,16.7777169660282 +"Q76NQ0",14.9571729751461,14.4020144988721,14.4256407277231,13.9616184318296,14.051167918553,14.1337009334147,14.6763372576107,14.5686854398013,14.3607805930639,14.6245078916083,14.5854163997392,14.5628682155001,14.4449620892402,14.8615417677485,14.6904385874083,14.4288354411696,14.6246080618905,14.9200050294945 +"Q7JNE1",17.7870660761695,17.7482375391671,17.8259267815577,17.962999071839,18.0015016017377,17.9462280807062,17.8018006409297,17.732288068129,17.8208478671871,17.7278525766153,17.7809093387586,17.7952387995546,17.6993616357805,17.7499613139889,17.6185752003604,17.7985632323405,17.7647453718933,17.7708265043086 +"Q7JPS2",20.775507674803,20.6947738531474,20.9080465591725,21.1722800260592,20.994275238383,21.0705617234837,20.3403803805784,20.2988686640034,20.3561968413988,20.6690906910593,20.6168170437274,20.4854227481299,20.1699422897889,20.5848844249151,20.4246114141712,21.0378391434407,20.9754209815532,20.9202009193733 +"Q7JQR3",19.2936132589005,19.2855609282692,19.4251681393546,19.2315204829924,19.1030772025513,19.160853407251,19.1480434709929,19.1820516163838,19.1985452609754,18.9225614487909,18.9485619407472,18.8282803097081,18.8843602683171,19.0024911534834,18.9734619475162,19.0073624075396,18.9657184960985,18.9011522727281 +"Q7JQW6",15.8505342349173,15.874880710013,15.9981404317821,15.9469807595832,15.9098682259591,15.8771288202595,15.9283760754884,15.7682268731556,15.8742648311915,15.6120385937449,15.835765335366,15.7884109902231,15.9730949152387,15.8227135831281,15.928254996179,15.8997597287348,15.9993295800857,15.7445842380723 +"Q7JR49",19.0222266847601,18.8751111762418,18.9670684113959,18.9690644668991,18.8100164198755,18.8563209749983,18.9027511729374,18.9536048557206,18.9308032554224,18.7533004337495,18.9017241859102,18.7759586053742,19.0433448064447,18.9573503316712,18.912542070048,18.5408420033674,18.7337225987389,18.7888362509194 +"Q7JR58",22.8251728427006,22.7930836766828,22.9121353202288,22.9445291807823,23.0058353093005,23.0633650438033,22.6307613867895,22.6945612373595,22.5668227425027,22.960815815238,22.9656744631431,22.9042119053129,22.7373276309742,22.7419512088946,22.7743886194192,22.7919078845678,22.6894088456718,22.6695911097853 +"Q7JRN6",14.7807208334822,14.91286572961,14.9119543202291,15.2297822289901,14.9961689887286,15.2596359550688,14.6334022376677,14.5946305148377,14.6418755095018,14.7588936548607,14.7009074679542,14.7588373431212,14.4689947430195,14.1011143714849,14.2871379845489,14.4607671835283,15.0268738089331,14.4731197690788 +"Q7JUN9",14.4811204721797,13.4331165864021,13.4787433435004,13.3028549085371,13.4534896932873,13.4749251009477,13.3335127038985,13.3763004244899,13.1529000639904,14.2780812833716,13.7703560387898,13.7710475804374,12.5711249289892,13.4800807912794,13.2762901005204,12.8502416822074,13.303592444935,13.6630297897871 +"Q7JUS9",20.3166176979823,20.3231986621859,20.2553018659959,20.0304378185533,20.0727325752402,20.0953280793938,20.5512093915605,20.5041218242074,20.3389624626934,19.9999691784424,20.0373815180676,20.2365883599211,21.0062221311926,20.8865762495714,20.9082924823964,20.8027083441541,20.8831537326128,20.8726913114847 +"Q7JV09",15.0728338275263,15.3205144328844,15.23269303178,15.2114099955532,15.1741103317708,15.1425641194789,15.3143672010969,15.098942925472,15.310007716038,15.3301488839874,15.2811591891604,15.1172317746304,15.058545966713,15.1841121217367,15.122963987347,14.9755384430061,14.9040053168586,15.0373836886086 +"Q7JV69",16.3260472144097,16.3079286527442,16.2528726506199,15.8536498134511,15.9019025767746,16.1021723188824,16.2907210122602,16.076653701038,16.0012765234425,15.8612387847767,15.9918742859826,16.0707403959,16.5838298337169,16.519825878942,16.3181199398602,15.9791255926149,16.0964271557481,16.1494304225246 +"Q7JVG2",14.3829121014628,14.6639490631933,14.9852977997897,15.0166885927016,14.7880688467405,14.9450083414384,14.8364165790902,15.0208530496148,14.7661076340289,14.8426635792276,15.0040931233059,14.8514124482289,15.2028699797579,14.7813001217508,14.7037208079873,14.6797938256709,14.7030804533058,14.7097976264379 +"Q7JVH6",18.9802355875346,18.8215659274311,18.8656352826444,18.9644824555015,18.9779467621277,19.0130851326501,19.0010895406444,18.9721381826029,18.9126819030233,18.8965229562292,18.995302621459,18.982263409344,19.0018070438535,19.1399773295204,19.0641527378514,19.0536458392252,18.9908525998475,19.0599649574752 +"Q7JVI6",17.2780767343,17.2723954268514,17.3707606063796,17.3552748845901,17.2587067385962,17.51174333244,17.5945468525327,17.61959320876,17.4382644828651,17.6996807604791,17.49656226196,17.5984749448654,17.5234866381232,17.8039569028999,17.4300458760922,17.4435155311085,17.4433668620662,17.5452921584915 +"Q7JVK6",17.2715058111575,17.1918105852968,17.1882992955651,17.1212001421644,17.1290197320687,17.249386774296,17.2590497597526,17.3504437253103,17.3525041091763,17.5315614023891,17.3747481429774,17.6617231296217,17.4877917543828,17.5707038061074,17.2415500799875,17.578306285896,17.6326891639817,17.5559517670957 +"Q7JVK8",19.0643996792474,19.1302229863924,19.1915844760354,19.3040339692164,19.2012315731787,19.182357823705,19.1456098918292,19.0302608835224,19.1976366709974,19.1443678337564,19.1221012064928,19.1545609494345,18.9729388507643,19.242498770791,19.0514955857726,19.2604612030999,19.1654960075364,19.1141759219687 +"Q7JVM1",15.5928474506049,15.8048453177452,15.6800050688853,16.1855249084619,16.0354405111949,15.9233180499426,15.6972094028373,15.4867784186786,15.5824967544675,16.110098693727,16.0419402954532,16.1027337058045,15.6380380711005,15.5538167845186,15.9677025764849,15.9987369560689,16.2996341552101,15.9661993272157 +"Q7JVZ8",16.4016759022874,16.0078057349978,16.1624853604192,15.8735799172687,16.1563609794083,16.1229595646588,16.3903210202782,16.0931815691704,15.9223532983074,16.0911664846319,16.0623771824873,16.0544868848935,15.9246665495121,15.9547514345314,15.9906385995258,15.4496070992667,15.8565400726498,15.8780932654403 +"Q7JW03",17.0963907401074,17.1269779847626,17.5727016491957,17.1637608108435,17.1782459584102,17.24650074903,17.3538859215531,17.0956745805075,17.2491327753279,17.2131087664433,17.2429502131704,17.015858052902,16.8981186564527,17.1332137039602,17.0546154136222,17.2915602959319,17.239762750521,16.8780165512542 +"Q7JWD3",17.443632789674,17.2045211889122,17.4180705962244,17.0759703371012,17.2001297667146,17.350063536841,17.0737782193486,17.1206873346473,16.8103538666417,17.010015574386,16.9968607487545,16.9578704954731,17.1970119868098,16.9990391084628,17.0033018095372,16.7968008800442,17.0759716398724,17.0575494826464 +"Q7JWD6",20.509943366297,20.6009138971585,20.5389601156418,20.478641164426,20.5130035938233,20.5206121144471,20.4666415157787,20.416254201671,20.4555465528344,20.4165319292286,20.4182682159696,20.5652186984593,20.3826137485705,20.349276246543,20.284255603552,20.5355475166733,20.4922030858086,20.4253261560395 +"Q7JWF1",20.0690510666061,20.1883292334248,20.1128604020642,20.3445582720943,20.4395712127462,20.4034449212137,20.6931020172989,20.7200102113768,20.5924860001227,20.7855045015979,20.6741084446403,20.8631807483015,20.7717418630089,20.733756844299,20.7117763104291,20.6964785563539,20.6046603304729,20.6766878948289 +"Q7JWQ7",14.7465296218937,14.460045576246,14.5176733135189,14.2833999250613,14.0878462597255,13.9400618527386,14.5856104270778,14.5744253596397,14.7297899690881,14.5582400894448,14.4083633871905,14.3214101895414,13.9199518588772,14.5297727886436,14.4218889454124,13.8121965753214,13.8454751262309,13.975104227377 +"Q7JWU9",15.502650226098,15.4818447910436,15.9028663897301,15.7545093237761,15.7697033638434,15.7232226764383,15.2463668402123,15.379864269063,15.5744042710699,16.1136239323502,15.3426122167818,15.3336133110186,15.0311247686471,15.4844896517486,15.4284964491703,15.4104368385089,15.6001976371123,15.0961088321653 +"Q7JWX3",17.930949742991,17.9409717552004,17.9299027413291,17.7199066782393,17.691984617377,17.6694759756168,18.2284962486763,18.1387917854844,18.2068474166436,17.7581337065172,17.7813272083317,17.8481951588332,18.0755501237965,18.1424401623652,18.0947118822014,17.9568397899041,17.9743607613658,17.9207431155003 +"Q7JX94",12.3760995901876,12.5396504345179,11.9010091402268,11.7577410859594,11.7410065629267,11.8484744347676,13.2004893535334,12.6745568169443,12.5647243151494,11.9627222122041,12.3599282172224,12.5601021427522,12.0558172806865,12.3117848039946,12.1723097024767,12.523531127692,12.2494738146571,12.8297809148904 +"Q7JXB9",16.0828622439793,16.4353539574135,16.0963765593572,16.0534831261283,16.2994141168096,15.8986623302056,16.3279592236184,16.1323219686662,16.4557549014875,16.3257965345165,16.2001997162121,16.2811965551404,16.3784915999039,16.0032578185263,16.5456179167327,16.1324547228838,16.2304998734024,16.0234391881069 +"Q7JXC4",21.7958477352366,21.6844503685197,21.8270290643241,21.685968478003,21.7216755207892,21.7902648074647,21.5508038369217,21.5463247395093,21.6314070799684,21.5065899515464,21.5553838362028,21.5000221763725,21.5919782026865,21.6549221379737,21.5072492726799,21.5823182727919,21.5507498741915,21.4575340763765 +"Q7JXF5",18.4521894803336,18.3691028221308,18.5998487876214,18.576748717188,18.5135194880451,18.5645658576168,18.5095482543289,18.5333537313862,18.5314481302288,18.3723848576704,18.4414926581247,18.4739317209319,18.480739594205,18.5977659024071,18.4345678292529,18.6259815736628,18.562357875295,18.4132301517371 +"Q7JXF7",17.7555925621514,18.0075597923424,18.0013115217384,17.8712276604607,17.8198672815213,17.9380849982733,17.7589538332007,17.8600183027693,17.7978852259976,17.943610541968,17.9347929296869,17.8760708308449,17.7590356896543,17.748940181887,17.7442230585344,18.0514267469469,17.7686685461752,17.7822713989934 +"Q7JXW8",14.5995258508752,15.1449107481903,14.7548765645258,14.9451209099761,14.837193292966,14.8320796529202,14.6054997255011,14.7153305972744,14.7232368421676,15.1323192693062,15.3177568713271,15.1978448099276,14.7491104718957,14.1092222831378,14.7576834735667,15.2859074723908,15.1930699070494,15.0517623568372 +"Q7JXZ2",17.3865963285688,17.0546542526402,17.4061126321455,17.1173337713749,17.1010347822188,17.1223468059401,17.7475833263443,17.757772344273,17.7622160309865,17.9782934572532,17.6517577419097,17.4100451740852,17.7770772262661,17.8093321109453,17.9529475229251,17.2997479080979,17.9320807859181,17.6529638518228 +"Q7JYH3",19.1849022480472,19.1285667872727,19.2967917582143,19.0627311482795,19.3806434419969,19.3019870251127,19.0614040346214,19.1287238760106,19.0376963504719,19.0052893873117,18.9686913968192,18.9723839807418,19.4911349870348,19.4703989601928,19.3465350082152,19.6179035631765,19.346340906179,19.4679712457153 +"Q7JYW9",17.1574091927159,17.1040198918472,17.0171570002238,16.6272990319502,16.6578736881533,16.7312620260769,17.6622644992644,17.5596667526817,17.6312570714231,17.003505935092,17.0240288117376,17.0104609808829,17.6700962111973,17.7645048842147,17.7488644106313,17.3427386441515,17.3532194857369,17.3243120251334 +"Q7JYX5",14.4689230233187,14.6783384784244,14.2586199210667,14.6745547298817,14.4901858987425,14.6094697433787,14.9483779530617,14.7990954835418,14.7079472187992,14.8389834614037,14.9203960201996,15.1479893625657,15.2732571567935,15.2881961720775,15.353300279891,15.2903045501932,15.3181888216668,15.4170743489513 +"Q7JYZ0",17.2144202171752,16.9743073188473,16.8941787365974,16.5711121347015,16.9565180790664,17.0236126068664,16.8297552465245,16.8431289548644,16.8135508439082,17.1406702963024,16.8311092681597,16.7953978109343,16.0113577944245,16.6100896985716,16.6881975573358,17.3009988921065,16.8531612617252,16.8533770255925 +"Q7JYZ9",18.0986110013562,17.9907007668335,18.0608222470734,18.1052025635743,18.2498711403218,18.3631539790061,17.9430697839727,18.001722134385,17.8678345778874,18.2829484997813,18.2929957949525,18.2318536343792,18.142152561414,18.0744241723812,18.0376620706052,18.1476256870733,18.1098960882976,18.1582835882203 +"Q7JZF5",17.0115661966323,16.894225401684,16.8767034472892,16.8548702431373,16.9745422815486,16.9953404239305,16.9806289387515,16.9818668459764,16.8056992441304,16.8625986198281,16.9124565795216,17.0991686484588,16.9871405068609,16.9510736633348,16.8490380493787,16.8776617109184,16.8603014440631,16.9485164029409 +"Q7JZK1",21.6373825713402,21.5912921011871,21.6952957353409,21.3949860662026,21.6281315633179,21.6930177958902,21.5883757552127,21.562544737994,21.4360747973804,21.4451335452422,21.4415670717382,21.4383696247547,21.5557487280788,21.5085391456143,21.5252811559676,21.4424589425035,21.3320109887287,21.2760464992463 +"Q7JZN0",16.9449272101357,17.147619394646,17.0246646321861,16.5025729898166,16.5477152344232,16.5384515597902,16.8162173984828,16.8129408258203,16.8467595388915,16.7612571758839,16.7922740900487,16.84638064335,16.9543934464341,16.9181290872554,16.942268449441,16.9471085040794,16.707798092639,16.7279519011737 +"Q7JZV0",15.2251692042766,15.1910875110521,15.4033801013429,15.0948666373118,15.183629906095,14.9445081080463,15.1348138847258,15.0033085264666,15.3127487685019,14.7120092867895,14.9911910373772,14.8699008700847,15.6698163800055,15.7594548615157,15.5449981551838,15.160849735428,14.8688532860305,14.9219891253777 +"Q7JZW0",19.5648303198652,19.797004498237,19.6849049154778,19.5353419058229,19.6202573569239,19.6010877275024,19.8789347340901,19.7448348122252,19.910844538371,19.7164371565858,19.8300779245631,19.8190392470173,19.9749835404659,19.7254386085678,19.7940767225717,20.0075284769373,19.9604429332502,19.868102982827 +"Q7JZW2",20.5649980295252,20.5547642560086,20.6355681253917,20.424111501148,20.4927192524948,20.4233215612596,20.6179966054311,20.6228031850842,20.6145049013493,20.4119344714134,20.4845438193896,20.505529268838,20.6458307986461,20.5926265217151,20.5961232318843,20.5063211691981,20.4237355406694,20.3961454866388 +"Q7K012",15.4349828312371,15.2081728859384,15.2932068215093,15.5487647294968,15.4804217673076,15.3709194526321,15.5204699840881,15.6504257210955,15.5567038106496,15.4698214778056,15.8076298541919,15.6518140246245,15.4292396855553,15.5124019296237,15.6453468920072,16.0384319992096,15.7826585492353,15.9237197059699 +"Q7K084",23.5962161894351,23.4507930564997,23.5255710271007,24.00037980304,23.9897041182659,23.9237848067345,23.5450469662608,23.5516663877112,23.6187729851486,23.9591825726035,23.9471533478443,23.9872571416728,23.4731353421911,23.5576815889121,23.4865237796781,23.6764847524322,23.7534471267295,23.7085358856281 +"Q7K0B6",20.1871172454443,20.2144921520981,20.1708177624656,20.3392898768341,20.2280982305019,20.310003259613,20.1675173419984,20.2599256896077,20.0832065295757,20.2170928995594,20.2136209603799,20.4174778370003,20.0635409798754,20.2242457590041,20.1705577305461,20.1596843236782,19.9938598757981,19.9821795481891 +"Q7K0D8",17.2194213207923,17.2369050314257,17.3069137534685,17.4072660427553,17.2811028924843,17.3707017785452,17.3350993860177,17.3496170440896,17.3911119423108,17.2980420928531,17.3564249078653,17.3059799294839,17.1791169633716,17.191786649875,17.2034347805516,17.3848263661942,17.4079356462444,17.2456299876242 +"Q7K0E6",16.718235356122,16.6115707858782,16.7255828708559,16.4939946549599,16.5058706576291,16.5370755750183,16.8459894587392,16.9520012422125,16.8545452818891,16.7508430851365,16.5574979012111,16.6140833427438,16.700309380506,17.0384588594816,16.9191304809251,16.9204023474622,16.7643748365134,16.7793567314934 +"Q7K0P0",15.4423809379154,15.3117014916245,15.4331173214747,15.3377117200508,15.2994565069891,15.4200163542893,15.3098800674766,15.3378737592094,14.9308603696845,15.0097189300102,15.1103458421974,14.994752762314,15.2550611065612,15.4411949617226,15.4857353064432,15.3243178356074,15.1784980358788,15.4145884834159 +"Q7K0S5",18.2321615978071,18.3156802753248,18.3791185914997,18.383655753727,18.4330434100926,18.3938568093607,18.4053102365758,18.2706238367663,18.2755002688406,18.1663338568676,18.2333874479788,18.1956946275834,18.3640877723299,18.3560498806143,18.413580718144,18.2627951277492,18.2055594942799,18.1565933296283 +"Q7K0S6",17.375517092909,17.2801658286601,17.3238624593598,17.3228258823137,17.3005180943889,17.3326116201994,17.7218484580965,17.7587156972117,17.7234349128492,17.1931606274915,17.1003826576986,17.1811611599323,17.3327483926299,17.5470702599451,17.4932827028735,17.1995178181047,17.1587657336408,17.091265416331 +"Q7K0W4",21.7948083953475,21.8580623820282,21.9373140445229,21.4751930501303,21.6026255284393,21.47791805298,22.0377624048302,21.8997088465315,22.1222246269499,21.4673459739378,21.6263651168866,21.6166508690792,21.9200895358896,21.7843406778656,21.7120052230598,21.6049984427267,21.5290952511108,21.4340849862703 +"Q7K0X9",16.6589913794456,16.6890554744246,16.8384744373085,16.9469469128023,16.7293711417018,16.7316360097513,16.6431696977284,16.6535245776729,16.6463332693077,16.5714253564618,16.7173659092281,16.6954096218453,16.7952984924014,16.7340602341885,16.6586617951974,16.3998441803906,16.4922986820142,16.4451608858198 +"Q7K127",18.2329166032736,18.8041337100519,18.2018380551352,18.710342314513,18.6795798500035,18.5839761024591,18.4881387741846,18.2905334097502,18.4642544387292,18.8148049881677,18.9629201457775,18.8596260734076,18.2699464642275,17.9355859821454,18.5042110312038,18.849472867056,18.6928689136939,18.7517163104876 +"Q7K148",16.6312348609254,16.5076680671896,16.7001999849414,16.2537127171697,16.4337474037797,16.4483549698383,16.9431094355367,17.0006795588545,16.8245516826147,16.8285211959238,16.8877564827212,16.8630179615893,17.1609624505418,17.1410294293533,17.2122541482386,17.2794406872705,17.1261004054696,17.0486026001455 +"Q7K159",14.9377732376367,14.6760000241473,14.9070495993991,14.6808550241576,14.3776321682074,14.6907209562947,14.8281122217061,14.7635868941993,14.6005690344948,14.5631268724017,14.5295990455906,14.3840928148889,14.1045800265857,14.8035889135418,14.5392672186365,14.5457593594302,14.5097996962318,14.5385071182043 +"Q7K180",16.4968173499768,16.2958573734509,16.4390286434018,16.1360314483718,16.4481445987818,16.4153009371015,16.3437965676803,16.2651000014854,16.2943001937779,16.4123746048333,16.3381352896118,16.1973109919595,16.4041527538964,16.3338119123484,16.3696858851159,15.9801236637744,16.0922472128546,16.0576697371766 +"Q7K188",22.1400496667978,22.0975261056183,21.9894616110886,22.1852098914962,22.0698951348112,22.2272418162324,21.9176764505349,21.8152356923774,21.7054841104376,22.0652632111359,21.9911592181501,22.1800805903396,21.646913330916,21.8716717985763,21.8223112680343,21.9507789465971,22.0604035479447,21.9813121013455 +"Q7K1C3",16.8621395874139,17.1385236580811,16.9419359696895,17.388471434005,17.2643608625342,17.3478895765865,16.8841816445071,17.0304981088003,16.9523919496824,17.2853305196732,17.2970896168821,17.3334473162329,16.9521557352902,16.9625898495066,17.0086472449338,17.2921989799269,16.9714158050121,17.0801658436913 +"Q7K1C5",17.5513957436404,17.5041585624254,17.5644626665299,17.5323157581418,17.6796818091971,17.7026104076197,17.4714899849794,17.4555848341474,17.5123333160639,17.6233765533473,17.4429486014983,17.488861264464,17.5023680570342,17.5198209554429,17.3663129771381,17.3147314903492,17.3934828247813,17.3610969556768 +"Q7K1H0",16.3219965898994,16.3165704144125,16.4453116088723,16.3296749507174,16.522259046665,16.3955795554377,16.3441884081021,16.247968394791,16.2464085413262,16.3491459822865,16.3969491579627,16.3808695702459,16.2120072142334,16.2235978183969,16.2373941694012,16.3577671354925,16.2074354485031,16.2092168354478 +"Q7K1M4",17.1601170446428,16.8880912181687,17.0782842933681,17.2460313561843,17.0673053606259,17.0524553066116,17.2982576640928,17.1430864566581,17.1364892630364,17.180106583385,17.1649245916342,17.100941365051,17.0447104962254,17.4630221706475,17.3868604504686,17.1629610490265,17.3657543958224,17.3371535150212 +"Q7K1Q7",16.7532202496199,16.5981219641438,16.6518399912375,16.3580286185017,16.4951676765186,16.4726662510158,16.6669211288563,16.579639095417,16.5283594004246,16.3620551293602,16.3906919233203,16.5072260058401,16.5098929768583,16.5890463427269,16.6563670015214,16.529901441298,16.5273525423678,16.3635608944551 +"Q7K1S1",16.4046510720111,16.1086851021652,16.5209296149484,16.2324522407595,16.27987681385,16.3741891721966,16.7128111585098,16.756443661576,16.5345423334999,16.6583948031767,16.3973669007697,16.6516680099515,16.8034547777537,16.9360645816582,16.8209058395906,16.7000910163862,17.0334180085778,16.6096200984099 +"Q7K1U0",16.865657635346,16.8122083301297,17.014754685425,16.5628748881525,16.5226944824154,16.7530700785758,16.8212656906705,16.8149577459889,16.794750554497,16.5285006073063,16.8361008680279,16.4282512587148,16.76010486701,16.6442576208733,16.6957583954468,16.5412007161206,16.4493853571708,16.3930194319465 +"Q7K1W5",19.7922447106636,19.7664372269542,19.7709965427067,20.0387163012464,19.927963496236,19.9474464520738,19.7007296844901,19.676497199093,19.6070602451163,19.921012106504,19.8517794479579,19.9253941821091,19.5017182232796,19.6450553518854,19.6834228273191,19.7821507178537,19.8688390219108,19.8022514947123 +"Q7K1Z5",16.1073094477844,16.4613982061563,16.1803882737047,16.2488113299674,16.2161897218106,16.243652756039,16.1025716744595,15.8969860320392,15.7713611219697,16.1572694361832,16.0101692175154,16.0821529960301,15.7852061375852,15.6115717176234,15.8413507578806,15.5350822779078,15.7399354087424,15.8173443982634 +"Q7K204",15.3160674692409,15.0283353121798,15.2804221310517,15.1041621834406,15.1704281143472,15.0520328672278,14.9516527653072,14.679210833945,14.7699827446077,14.4189971822674,15.069870063775,14.7340004222894,15.1497876416804,14.7639929866191,14.7795041161004,14.1267970966175,14.3556270276879,14.4515220572772 +"Q7K2D2",20.2685250205624,20.3003770728793,20.3355301251208,20.3589019539142,20.391778536798,20.4382261969766,20.2824177526216,20.2568637372557,20.2923156184792,20.5306051271045,20.4618245853232,20.490414769926,20.3958550708082,20.2354258699241,20.2792469261121,20.3046961868465,20.4947313096772,20.3052674752427 +"Q7K2E1",17.0661490610971,17.1454717216937,17.0319638199069,17.2145638924492,17.296590342803,17.1550171148299,17.7503483223709,17.5544163787514,17.5925862531572,17.488118983804,17.5015926321646,17.7720867960573,17.6743079382947,17.710527023977,17.7561081604918,17.4624192806261,17.4473093792523,17.348145334199 +"Q7K2L7",18.6360365476264,18.4557681405596,18.500495459169,18.5057009319629,18.4138564578709,18.4505235281325,18.2328897198102,18.1940350420492,18.0632790468229,18.6677835493152,18.2549245441585,18.2541315539013,18.2945507176515,18.1105186548921,18.1671810483624,17.30754785986,18.2154064866959,18.2088986898382 +"Q7K2N0",15.530419941561,15.536013720872,15.7060835538305,15.584234156984,15.5477128313172,15.2572064903941,15.4235788619152,15.2993790548762,15.6681372029,15.2105165059602,15.621097096781,15.2710718120094,15.4590231928695,15.3973658665274,15.3344936679186,15.3911910282184,15.1973951171347,15.3619709604559 +"Q7K2Q8",16.3675326598784,16.2442435051203,16.2703476762955,16.3579315660374,16.2908559284605,16.3143939827533,16.0239784939872,16.0009800874515,16.0116477173879,16.1657590280567,16.2768470844231,16.169376957347,15.8290316280125,15.9817595331236,15.9235098240605,15.9053747891752,15.8549220265684,15.9603320073032 +"Q7K2W6",17.1803618354366,17.2246096839584,17.5161650375389,16.5610516279797,16.5409265595423,16.6685173469427,17.1258848972443,17.2695300839033,17.1104213204434,16.6578139380773,16.5526410695379,16.4649485501299,16.9532800226796,17.1556409912851,17.0320700142669,16.6009496140313,16.3359935472219,16.2872196661271 +"Q7K3D4",18.317901127394,18.386838102193,18.349332036551,18.6145190569543,18.5768846559715,18.6278763383552,18.5950209246388,18.3613590823707,18.3848256933831,18.7419741684861,18.582611313526,18.5914875796847,18.2661155982408,18.6076223921852,18.6771527021662,18.7654368499009,18.7856521793683,18.6702933754746 +"Q7K3E2",20.8119666370631,20.7537231057963,20.9762710396814,20.5635142012349,20.520630792305,20.5394395466172,20.574818678342,20.6223560379416,20.6255575140178,20.2867010239207,20.2475143436895,20.2126004562918,20.3529224201755,20.3913562039999,20.2547014763119,20.479643741567,20.533986218571,20.4609966693832 +"Q7K3J0",20.1895571706057,20.2230860606959,20.2522702557487,20.3199181184472,20.2922008585041,20.2584164292777,20.4188440112445,20.3850445254572,20.3511407094598,20.2581432001039,20.3259062749973,20.3875435336284,20.3561352990452,20.4393854409901,20.4091782772945,20.6341856259105,20.5111602647124,20.5182342199479 +"Q7K3N4",17.0626781830505,16.9752799072422,16.9413151257621,16.8389027459771,16.7821014519259,16.8291706342393,17.3422782017199,17.2854866061106,17.2763897479065,17.1354482124671,16.9853355292792,17.2190886458919,17.3411100363344,17.4394208292701,17.3466771217983,16.9600526944384,17.2128457501592,17.0678287983892 +"Q7K3V6",16.135792761461,16.0390886779499,15.9676500430583,15.8243855952741,16.0812194915647,16.0822104273719,16.284884180476,16.3039917564484,16.0816860487682,16.3759326762868,16.2524747166199,16.2435938177055,16.452663716892,16.3593237066891,16.3701018283688,16.4915785757672,16.5291391568851,16.8199953408845 +"Q7K3W2",17.3401266514095,17.2889754662196,17.3385083854578,17.6182604160154,17.5256105206291,17.5401145025197,17.652384263948,17.6633926272943,17.625484027862,17.5697531127203,17.6602746564445,17.6976165333179,17.6370940371846,17.6815679239389,17.6801905404291,17.6796799351839,17.6774772219353,17.6153844268752 +"Q7K3W4",19.5393717481016,19.2885931811038,19.3669635668713,19.2754333596154,19.3250609301461,19.3012621380314,19.3239292853788,19.3345817899399,19.399071111766,19.1783620166724,19.2500651613527,19.2317459063973,19.0771758164708,19.3887655462424,19.3515866707091,19.4880034991049,19.2952091165591,19.2316463315689 +"Q7K3Z3",19.9341022643148,20.0172836505095,20.0831726995279,20.0353068807501,19.9684667353797,19.9978812314708,19.8185960966506,19.8226372087615,19.8589970877584,19.7472247527675,19.8657593339029,19.8198414175938,19.7428984660154,19.7762551692164,19.7423096471636,19.990809170526,19.8185355332545,19.7667355475099 +"Q7K485",20.3585292500461,20.2043333659277,20.2548307058033,20.2930383907326,20.2555190908679,20.2913532545279,20.5928536033854,20.7065668347259,20.5169870537615,20.7816591485005,20.6362490267134,20.6551468693134,20.5394428016592,20.7453144132919,20.8749480935427,20.7874736569714,20.8050141197684,20.7597308743464 +"Q7K486",17.6220470677097,17.6111488502999,17.6607077489945,17.4250776579677,17.6260488717596,17.7077356353886,17.7485336981861,17.7461925216595,17.5705512922092,17.7026910111415,17.678204244201,17.8098610171357,17.5169705628253,17.4587014954659,17.4732539248863,17.6205633552782,17.5155873697226,17.4137737344943 +"Q7K4T8",13.657714059915,13.4212717200947,13.5013625335333,13.2939934124739,13.0730176944584,13.2397861941019,13.8549598579374,13.8477732410164,13.9098750935302,13.5011115563518,13.5826362174371,13.5992075526884,14.1170016462139,14.4236622780399,14.4649788167342,13.7723674457109,13.8487868275565,13.481937788015 +"Q7K4Z4",14.7415284755644,14.9594145934665,14.9447589489592,14.9407880911846,14.9992676623775,14.98603789242,15.2661875184325,14.9876990277153,14.9939504170638,14.6845428258742,14.8700367357817,15.101170491156,15.1009304511847,14.8275145762659,14.6765863709581,14.8671814901692,14.9572262568028,14.8986547318526 +"Q7K511",16.1021245510024,16.20573094188,16.2117660238286,16.5603920300521,16.5475985720923,16.6561487993122,16.6411349501404,16.7730422503036,16.5523218410696,16.8987577844731,16.8895514941447,17.1437969499448,17.246455333887,17.3997248393608,17.2678085714318,17.1726798360838,16.8058963878574,16.7897023000519 +"Q7K519",15.2207892985112,15.6443081218924,15.4780638433159,15.4971204177075,15.5474819925049,15.7019807437599,15.6017814617991,15.7446877470555,15.5568911629172,15.7761876707714,15.5436005887552,15.677295466869,15.7396304127274,15.7603078057616,15.7406800265223,16.0880074165943,15.6831304221413,15.7686054347267 +"Q7K549",14.4396981280231,14.5858105343939,14.9130344041732,15.0974858325037,14.6855361423792,14.6644160696527,14.8228206489336,14.7665984232261,14.8534492451242,14.8842760409412,14.7570764366377,14.8704405636469,14.0542436367887,14.6960013466807,14.5678334655393,15.1626706661773,14.97017207005,14.5920212052312 +"Q7K568",15.8841638261061,15.8534979794062,15.9213153591277,16.1013277805638,16.2608767988195,16.0643204330001,15.8531412580749,15.7498625122222,16.0254376187793,16.1005469523094,16.1455282229588,16.6667120942667,16.0683417209219,16.3054400242472,15.8275861670032,16.6621993388275,16.3545153391495,16.1643492046265 +"Q7K569",20.3403889463716,20.1676326346223,20.1023708739534,20.3091730522463,20.2235440301921,20.2677398899633,20.8030990427088,20.8867024444492,20.7694260187852,20.5692256225223,20.4486872859006,20.5563561750862,20.7907539869186,20.890518891757,20.9644839784693,20.7665003434252,20.9620557072718,20.9187640579355 +"Q7K5J8",18.2886790697937,18.3705844010889,18.4843148671707,18.4594496212259,18.5059180914595,18.2946727759877,18.0431696108737,17.9195176922614,18.1993084924758,18.1337526841216,18.1889094036037,18.1147804374865,18.1576798437171,18.1803270099627,18.1099493918929,18.3483182550209,18.2657924863768,18.2280231197394 +"Q7K5K3",22.6703889296359,22.5697903612336,22.6414583258176,22.6879489899444,22.5881056877402,22.6648746435633,22.8369375266206,22.8298875266195,22.7975285961629,22.5672182458179,22.5733360372677,22.5522105437548,22.9305668234536,23.1108981418642,22.9944637305848,22.8805365266611,22.9015792874083,22.92306120225 +"Q7K5M0",17.1568377106994,16.98257750517,16.8783157449757,17.0059533667605,16.5911547974804,16.6193282713756,16.7234161506226,16.7298513241446,16.8226448103412,16.4916954042449,16.3231231017681,16.5698917802433,16.3098659982035,17.1126097704852,16.8223883897262,16.3078031850779,16.2562553165606,16.2830028189469 +"Q7K5M6",18.3955281990235,18.4205821103357,18.4025377676787,18.3986516695149,18.3466853524836,18.417566755645,18.1893037902162,18.2708091597441,18.1973244526533,18.1613488653417,17.9659656590757,18.1689418130277,18.1354811654388,18.2181675173066,18.1184088424342,17.9170415595875,17.975145450177,17.8925756176837 +"Q7K738",19.8430393306076,19.8280219339545,19.9641377464691,19.8297135674799,19.829345692557,19.8711955452129,19.7968913624447,19.6839670628233,19.7158437763438,19.7271156467543,19.7299051581866,19.7023400498575,19.73012656915,19.8543233108036,19.7684981604539,19.6926588048509,19.6939821229624,19.5975300029502 +"Q7K860",20.2847322073615,20.0998858820736,20.3917618191853,21.2772523398192,21.3286501497848,21.3169919647985,20.5088110184777,20.4787344085388,20.6637115348655,20.2629896598299,20.2635544679666,20.1860418605066,19.9334365038096,19.9725723337973,19.7914047448387,20.8910738093553,21.0148982964921,20.8083836144587 +"Q7K8X7",19.3285020632632,19.2856499372996,19.2624265692944,19.3232769610222,19.4833140686678,19.5577304340734,19.5597128779313,19.4705410829235,19.3952006461953,19.3843325916479,19.3581639554154,19.4831224013125,19.7386734729885,19.6526859753056,19.7611635709758,19.5995030142738,19.6836459615151,19.4743573592755 +"Q7K9H6",11.5976490395156,12.2979391329211,12.0168891960721,12.019273244911,11.470542160431,11.7056354992336,12.0086780930017,12.4126679815666,11.7842729403264,12.2425476710818,11.665730409355,12.1900764913845,11.9855959329361,12.2977722569966,11.8708517545165,11.5241487761729,11.2332408163489,11.810166876086 +"Q7KJ08",14.5119636186018,14.2467014094386,14.3829705602364,14.4032141555205,14.5372775302747,14.6017864212557,14.693357781787,14.4107506046711,14.4838334197865,14.6913264887205,14.6563085207195,14.5007277240352,14.6636165769575,14.6432612267568,14.7775250421901,14.4399560606578,14.9091353903842,14.6565915147411 +"Q7KK90",21.1306327479583,21.2197362832441,21.1486436154545,21.103599614868,21.1067489618072,21.2172174570108,21.004964386965,21.1157546222938,21.0367001163579,21.0539876268878,21.137955990769,21.1584233754832,21.2050017260111,20.9772378740228,21.066581173901,21.0412333134081,20.9819856839613,20.9118536778909 +"Q7KLE5",21.4709378612332,21.5187522650569,21.5537771582084,21.5805265822502,21.4982962175704,21.4777568833177,21.4123498869932,21.3342622809483,21.3959476195051,21.3018441825515,21.4397961501063,21.4334559706979,21.4449962381393,21.3585927375162,21.3834779475235,21.2564497417054,21.3174048416748,21.2226889136202 +"Q7KLW9",17.0721106468361,17.0859604227789,16.97436189356,17.0984202655024,17.1341948177331,17.239625103926,17.1295617819505,17.2072139181274,17.0065227508087,17.4197387850676,17.2493067697836,17.4101383529222,17.2488208340662,17.246156251193,17.2482585186351,17.4291036889079,17.4749238227149,17.5188493824787 +"Q7KLX3",19.4214327929355,19.3632756383831,19.3677455885948,19.0236167167345,19.0768680597424,19.1957796379717,19.3961408008562,19.4449841964786,19.2275323214772,19.3410829778926,19.2775375409236,19.2950665904132,19.228890787731,19.3596477541715,19.3803548106207,19.329802872747,19.2186537591978,19.2744879998193 +"Q7KM15",17.1019403070554,17.1259647723239,17.1262614848344,17.2299953035761,17.0810584596529,17.1463447323658,16.826609984907,16.7613320608537,16.8716937357687,16.9109192352898,16.9934745040105,17.1127054541267,17.0209121916461,17.0581406963837,16.8465998592991,17.1923729213267,17.2627794505764,17.1791446774066 +"Q7KML2",13.9738139673861,13.8943515160542,13.6708327037292,13.4821191460419,13.566547135169,13.5923253745662,13.5831566463699,13.5470427160105,13.5647110448845,13.8567693676155,13.5046246652206,13.4694301170952,14.2901236389993,13.7138698167278,13.8997154428934,12.1007527364497,13.0602996536803,13.0897208196939 +"Q7KMM4",14.3579064253225,14.8415025579633,14.6392833374683,14.6035714043032,14.2697441560964,14.3700677209937,14.4395031489504,14.5116272472947,14.3004807896455,14.447056286506,14.3939752901462,14.4720702707281,14.4219176972908,14.0685657074622,15.3530350242914,14.642880998649,14.8274210020591,13.7778988178949 +"Q7KMP8",19.1056439811147,19.1176439136059,19.0667634259362,19.00533743044,19.1248952334712,19.2640482468492,19.256096268587,19.3081933847744,19.0885488482625,19.4023050405578,19.2313222520574,19.292771879801,19.1506134673738,19.2212817680001,19.2074663573216,19.3227108269716,19.2393704631358,19.3231082568743 +"Q7KMQ0",20.7316084615264,20.7525688704619,20.7548044140347,20.7339993455724,20.7429052636693,20.7106004053626,20.8368633235989,20.852385498143,20.8640848307233,20.861677359908,20.8371271377982,20.8864084313001,20.8730623774126,20.7967930622499,20.7832884708012,20.5739847363282,20.6294157720243,20.6120090521248 +"Q7KMS3",15.7275359467635,15.6017586175519,15.8653641451864,15.5862995080032,15.7126663818691,15.7562862632477,15.5843499665938,15.5261386222282,15.5637113306557,15.456893957721,15.5128547427132,15.5411459696098,15.128422420089,15.5161996092196,15.2925555694381,15.7530731589326,15.3669569845211,15.2175116799656 +"Q7KN75",19.3252103032514,19.2665678986589,19.5406100954248,19.1064390043778,19.158960848251,19.1441083775808,19.615716156862,19.4545944683263,19.581589769017,19.2513988058992,19.2505973274973,19.174113298121,19.6590392551356,19.5339008207034,19.5783525498338,19.3378223781356,19.6310045402247,19.2768518136842 +"Q7KN90",17.4403207501402,17.3510578336809,17.4783296898765,17.2233625264207,17.3080075020615,17.3554535335752,17.3528580349338,17.3210194966704,17.3220535312337,17.1809734378597,17.1911894044552,17.2407553019941,17.25181092704,17.2744220277963,17.2485768690252,17.152561708691,17.1561911204212,16.9567184593807 +"Q7KN94",22.682788360741,22.6936826867117,22.6948042797194,22.7431943002029,22.7649995576454,22.7440482785404,22.5931555672815,22.5587214134523,22.468640286734,22.5398066923139,22.6223219468505,22.714358345416,22.6710087445808,22.629135564324,22.5714980897463,22.5263633149641,22.4874558111003,22.5629676999281 +"Q7KND8",15.5234494853519,15.3687871504243,15.6132723009195,15.4427845169765,15.4353638928801,15.6222224561892,15.5823095010209,15.5078847590427,15.4514697546897,15.4076711238457,15.4191507849924,15.5533506842112,15.4316107671149,15.5021189357298,15.1667113131261,15.2510422407024,15.405562111943,15.2318411258767 +"Q7KNM2",19.5602477955345,19.4961788717266,19.6145672273374,19.7538802607989,19.7332324096391,19.8623713209875,19.5227601792905,19.5928554805813,19.5043946090841,19.6422017352074,19.7083865078598,19.7165282574339,19.3871468658851,19.4993142427896,19.479340873471,19.8752511555566,19.7115204796766,19.5642857039591 +"Q7KQM6",15.1780113306188,15.0162773792779,15.1743907494129,15.1773853607845,15.2109848334976,15.2260632158293,15.2653432461596,15.2883407877199,15.1721679832373,15.0130286432779,15.1003692189248,15.2099118719024,15.0610350722196,15.0702878025465,15.1546606261402,15.2302492533379,15.2387928844316,14.9878584598763 +"Q7KS11",15.6539633525928,15.6918603681268,15.7144372690042,15.7721109434593,15.8147693904812,15.6906592711983,15.691533614729,15.4275827759236,15.3902082837721,15.4471894167297,15.6021770202127,16.3894975086532,15.9141498408534,15.9090619026385,15.4913217906335,15.438377073224,15.4718727842053,15.2412001183269 +"Q7KSE4",13.8125782563416,13.7060997764393,13.8703483157254,13.8814304113861,14.0693165796574,14.0696372048899,14.0675927479628,13.9291956499681,13.8969277890481,13.7198333783288,13.7276697217619,13.9342601638694,13.6564263452768,13.76428229148,13.4980534487182,13.8144647428695,13.7557618628588,13.6830989599144 +"Q7KSM5",18.8342856450122,18.9742794219687,18.9106193481133,18.8767036089697,18.9215861265493,18.9258848639109,18.9394496733561,18.9206544053728,18.800679458377,19.0693981605817,18.9550547262572,19.0322879105376,18.8525313195044,18.8366080875197,18.8200999257445,19.0108444902212,18.9750301299777,19.093641390962 +"Q7KSQ0",20.8671116660092,20.7444726012992,20.710653976832,20.6963468258011,20.8006287559965,20.8334638196687,20.9720899104507,20.9482734661439,20.8211743365595,20.8660886002126,20.8290985158961,21.0157776795113,21.0558251061378,21.0761021417571,21.1250675414796,21.0798415081055,21.1387281356242,21.0311662626659 +"Q7KTA1",17.3508066685577,17.1618022297729,17.2690656438103,17.5438825615291,17.1317972203264,17.144405469207,16.9933102015668,16.9375840027525,17.0899966566073,17.1904221338182,16.9546556735898,17.0513261113246,16.2326061835301,16.9782073471367,16.8859687910681,17.2797448747441,17.4267261501679,17.1500099517288 +"Q7KTG2",17.8943463882928,17.9141159684205,18.0002843584475,17.8022625264056,18.002834739809,17.9804885504868,18.2410037224493,18.2755217254104,18.2115974620405,18.1408198754274,18.0126776358998,18.0778382339279,18.1665996992325,18.0418133035606,18.0564738587028,18.2626350635109,18.2607039022181,18.1809848117131 +"Q7KTH8",17.4449657843881,17.6537031495954,17.6524009292549,17.6501879372173,17.6599291655128,17.6079449333977,17.6212156277563,17.5375043616987,17.6214366056403,17.6552359915019,17.6837062755108,17.6891695315396,17.6588441502932,17.5416344391282,17.6165298265995,17.7155834952466,17.6695555949575,17.5585511599714 +"Q7KTJ7",22.1422676298958,22.0888729800949,22.1014427860369,22.1841311863152,22.0172274690345,21.9822227603268,22.0134512425134,21.9907400076595,22.0097707287087,22.0949517195064,22.0779350881366,22.2085016520398,21.9834118260731,22.2005864014578,22.0842411065393,22.1483325140131,22.1911841719336,22.1803670846654 +"Q7KTP7",17.9208658172012,17.9363066030722,17.793427631829,17.8730471287521,17.8556169321334,17.840918045127,17.816265027906,17.8534747604054,17.9323223308099,18.0114478728029,17.9261855400716,18.0043137214167,17.8182124604745,17.8465903739499,17.8264660336548,17.7795857513553,17.8012498488597,17.8219762956546 +"Q7KTW5",21.5542227793098,21.6319710546696,21.7118131881866,21.5701251274556,21.61754009957,21.5532166763356,21.6055431412903,21.4357076528246,21.59499363238,21.416559557492,21.607726411129,21.4107237457866,21.6982930869189,21.554807491826,21.6059303358012,21.6232859541589,21.6202769366065,21.5913520681358 +"Q7KUA4",18.915607667437,18.7527417087274,18.8904650906168,18.8802736948935,18.9477574195012,18.8702255027896,18.7895065293612,18.7635258424331,18.7361284184955,18.8449643571793,18.7583798807385,18.7989915539936,18.6048448073496,18.7601853950272,18.6466364106607,18.6042685620848,18.656875371878,18.6970186417491 +"Q7KUC2",19.4682757554349,19.4603837615672,19.4759461261575,19.2935781484666,19.3066185984104,19.4794421302929,19.25783253,19.4413428979492,19.1760990775086,19.4760900656072,19.4136834934258,19.4012722188687,19.1502353109381,19.3030752151457,19.2489387415797,19.3732433500976,19.0941511940461,19.237556866137 +"Q7KUK9",18.3099589614201,18.5494886718995,18.1823337107812,18.3040944619233,18.6533592774292,18.3739178502763,18.5348114660353,18.1692791774194,18.2644897169816,18.4036444041099,18.5255971705272,18.6008125357017,18.5549330852488,18.289506818374,18.5369353979975,18.3860434566014,18.3062547196896,18.5349966236005 +"Q7KUT2",17.9324306514513,17.9833716245797,17.9239241964798,18.0461696728013,18.1409151563075,18.1111117780348,18.4355360658308,18.4198645616505,18.3208182765249,18.2160376799094,18.2327665978122,18.2287692524134,18.3150502874719,18.3346731907503,18.351961398162,18.3188887721677,18.1525219985322,18.3275282280175 +"Q7KV34",20.8492699788198,20.94654102928,20.8053300761535,20.6243784224899,20.7399343044197,20.6665352561432,21.0375577962006,21.0683907328705,21.0500436890829,20.7372330270861,20.8123152581187,20.8573335359596,21.4173127228253,21.1316671846452,21.3418760058155,21.0733518899392,21.0402553280269,21.0179852742062 +"Q7KVQ0",15.4844415244381,15.2958665916388,15.6623073562607,15.3573514520295,15.4795259134544,15.3430081796235,16.0242107803943,15.8613770048792,15.9345611360162,15.6868841643453,15.8572910336925,15.8502114981849,15.6657784830851,15.7267658312818,15.5628370842163,16.0209846760753,16.018824705421,15.8867258260661 +"Q7KW39",21.514666728173,21.4892740487193,21.5521335524871,21.7992888207899,21.8168186065182,21.803143394161,21.6754566978244,21.6478375550484,21.6604862888732,21.7994632916241,21.8431344186433,21.8331324722221,21.6160991408649,21.7457104839295,21.6605197384721,21.799116962287,21.6613165287046,21.6946761953478 +"Q7KY04",13.8639980978156,13.7947808649593,13.9950604703947,13.9032812474014,14.0412857924448,13.9078350320533,14.0560549013267,13.8695950628644,14.0561012529432,14.0790723082149,14.3295487382675,14.0722742625022,14.2448837485958,14.5587794201717,14.3295413386099,14.3126989713563,13.8659993960031,14.0991769182075 +"Q7PL91",19.1236626039533,19.1525219615815,19.047580378983,18.8148170032371,19.1847146175888,18.9022477990447,18.7325162433999,18.6040794020918,18.8010157638745,18.7113771358302,18.8921037587101,18.811046081419,18.8785103083208,18.7721115159911,18.8593958845493,18.8597444928204,18.5150965315985,18.6993418796913 +"Q7PLI0",17.5323159501106,17.6826336576222,17.7299881250958,17.7775976806501,17.9023718522222,17.8773204880181,17.6217213184673,17.8102757228798,17.5965904661975,17.971242354601,17.8208961049573,17.9169408527367,17.66313202493,17.6220971247939,17.6318166978354,18.082809569215,17.8105444354986,17.8961622680905 +"Q7PLT4",15.6813084978854,15.6891639696305,15.6766337323133,15.2339737889546,15.8762056198224,16.0223466651015,15.8540730071797,15.8059963359908,15.4178533197705,16.4047298428633,15.9831750757593,15.8908820052479,16.1058862096933,15.6873242692672,15.8315976832235,15.5189968023981,15.757102878504,15.9596547433177 +"Q7YTY6",18.4233015901196,18.4744955112843,18.5318344413094,18.2630422669464,18.5315267487737,18.6163132801063,18.5021320462984,18.4575591449087,18.2581199822091,18.3778733426837,18.3488779668346,18.3788554081771,18.4495493786594,18.393932196305,18.2300649289941,18.641128751598,18.4506358081991,18.6418393355094 +"Q868Z9",20.6864939145513,20.6348308008517,20.646881787535,20.4127061793091,20.2518564800766,20.2161018622214,20.5968016067401,20.5054030782394,20.619145452753,20.3458372074399,20.1331646605679,20.1980283209699,20.1648401355511,20.5824185051455,20.6260150236913,20.0850691563894,20.1840746751,19.9855757528104 +"Q86BI3",17.832438741227,17.8803160923071,18.0193751749601,18.1488665336105,18.2178319844796,18.2813840343113,17.9521260309083,17.9594568905958,18.0693279605144,18.1900283797791,18.1084385094902,18.0102486417972,18.058340410021,18.0126664597129,17.9315735504914,18.1549974732007,18.158087632161,18.0248882066722 +"Q86BL4",14.827317338197,14.7609861312627,15.082554828513,14.8973565608937,15.0783332680816,15.1385675163617,14.8912339590739,14.8350477481058,14.9998845594674,14.9811441017755,14.8975439030323,14.9795877670251,14.9148206030803,14.9554812580737,14.8128608234131,15.2340765996806,15.2185568541452,14.7324936679208 +"Q86BM0",17.5568635245814,17.6595882022553,17.7103344644369,17.4000233127183,17.5220636052647,17.4704631217874,17.4765301513813,17.5030741398484,17.3150629100439,17.5486259437446,17.4720933730352,17.4164007040922,17.4824064867845,17.3821235093371,17.4214472962609,17.2574832223048,17.1829898117742,17.3882241448935 +"Q86BN8",14.2238584809188,14.1764210615183,14.6065521056372,14.155103649272,14.5197843983993,14.5028906562694,14.2039872370228,14.1785704671377,13.9749466893914,13.8792903415493,14.1119931942931,13.763342287153,14.3594298872877,14.0678192351014,14.1536150488859,14.3989209224534,14.1660021620541,14.219243731167 +"Q86BS3",18.9738536059773,19.0516050591532,19.0802784659433,19.1655609345797,19.1783347924187,19.1466010594349,18.991603747261,18.9221210083343,18.9570015333801,18.7915599204093,18.9074573089456,18.9324207824794,18.9819070127554,18.7870995663734,18.8716461232891,18.8089370239495,18.8668045097072,18.7254742804056 +"Q86PD3",18.9627491013708,18.8817035202111,18.926609958188,18.884251585201,18.7815255813373,18.8514871379806,18.9566548129731,18.9314526651687,18.8785883459755,18.8234765100205,18.8189769673764,18.8342696793008,18.9250880641548,18.9772425525343,18.9711333398974,18.7972310603968,18.9585498474891,18.8873626727748 +"Q8I099",16.7831778391223,16.7346747894108,16.8216897739917,16.505756106626,16.5851693753911,16.6575275829812,16.8849080913504,17.0189217960722,16.859646986511,16.9974911652506,16.9967459327863,17.0351778912933,17.0183919722085,16.8804387156958,16.8815935582937,16.966329998108,16.9401045633095,16.9004193795948 +"Q8I0J3",14.8259535821421,14.7993342760046,15.143944101171,15.0719129913992,15.0104149763361,14.9929673531669,14.8104614238906,15.0955336447134,14.9877622037436,15.3834199408421,15.1378965006637,15.0585175311986,14.580652697282,14.9671937387036,15.0218119545302,15.4794155561948,15.1414430553296,14.9468130479406 +"Q8I725",18.7166721395861,18.6933707064316,18.9583484865005,18.9673149932299,18.811050839243,18.799350747693,18.997990400232,18.9538162188329,19.0169502041806,19.0616482231732,18.9035141435147,18.9226775129427,18.709472216629,19.066057964622,18.9303084473275,19.078362144009,19.1036502442151,18.903824718215 +"Q8I937",13.7592679603772,14.3465758697921,14.2768490166786,14.2176901149555,13.9623353560256,14.2173628364195,14.0516450344119,14.2980162037707,14.1394056876321,13.8870621139966,13.9267729478379,13.7337369415745,13.530744000367,14.0316019534325,14.1383576814866,14.6399159265095,13.521022819759,13.5806129868265 +"Q8I941",19.1098118832168,19.183411369181,19.1765643838466,18.9665024463515,19.1078945916489,19.1998432990355,19.0048306750688,19.0300097014943,18.9299354990425,18.9199532053628,19.0034027321936,19.059046259109,19.0427874651463,19.1148250754568,19.0531235725353,19.1430480809552,18.7473902861266,18.7684207425323 +"Q8IH18",15.4444759755701,15.6418568528655,15.5409111319293,15.8001361381801,15.5563675723471,15.7174341526921,15.7135854544983,15.6580487283866,15.6476405406241,15.6788807116417,15.5611006521671,15.8268325357857,15.4960738807509,15.6444439618975,15.4380285454721,15.7875813053082,15.8589156982855,15.7498865594461 +"Q8IH23",18.1013171829673,18.1135671994509,18.3528749825462,18.273746448318,18.2713343161367,18.166410857452,18.3144088127485,18.1901682987855,18.4825446761026,18.1836769846265,18.2057341165796,18.1899387944005,18.1518542421566,18.2341475802898,18.1117251969254,18.6138641044331,18.6239162640076,18.3353732678234 +"Q8IM93",18.9788469754305,19.0654762133077,19.2371825581231,19.417240949761,19.2626316065078,19.2952691968447,18.7455707799623,18.8736843874212,18.9145928352453,19.0135687193513,19.0626390771161,18.9444134597679,18.9055272868516,19.0059023586697,18.8323753695063,19.1053711773937,18.8957922457279,18.942292469263 +"Q8IMT3",14.5590141344163,14.6868253511561,14.856515276317,14.5776471713135,14.8100616116278,14.6855942725149,14.715688931892,14.8297919068879,14.8715668499379,14.8126661086812,14.6783798895253,14.6563682663495,15.227238203292,14.9587404638648,14.9430580181672,14.5997069079241,14.5281622344571,14.4788587742323 +"Q8IMT6",15.9922842496027,16.2116330620026,15.9292406028687,15.6232326665577,16.0270622585297,16.1734726973213,16.2620304877744,16.232302799825,16.0133572520248,15.9453024942729,15.9690552115954,16.1244395832959,16.5047711074242,16.3258742751901,16.4328549538355,16.3442404121325,15.9059338106217,15.9984963284183 +"Q8IMX8",17.1365948995229,17.0366866703895,17.197528169618,17.3234730816591,17.2206321252146,17.2608080972319,17.2229121020253,17.0886187280599,17.1163952370138,17.0775865563378,17.2779179413036,17.0656728607459,17.0638923836733,17.2080947850337,17.1163675231652,17.1598550288498,17.152363802067,17.2275421642934 +"Q8IN43",19.2416614413731,18.8787775177568,19.4715436633754,17.6949499544687,17.9714234604967,17.9238084461912,18.3359715891601,18.013654223041,18.329199395176,17.2585164899497,17.3956392509729,16.9558266383121,17.5227743302447,17.7158294173295,17.373195567861,17.2693226756277,17.347872611227,17.2696227699083 +"Q8IN44",20.4269984482587,20.273062692838,20.3559457103554,19.9338648582558,20.0232721603731,20.0657595059439,19.901540449614,19.7776840365561,19.8451177675074,19.5266175180435,19.5591753334615,19.5884403291438,19.6739761291755,19.7770443304176,19.5734774879492,19.7472474437647,19.8000062934659,19.7815040462125 +"Q8IN49",16.5873177160478,16.5948113727446,16.6407263849445,16.6070686710449,16.5975384557688,16.5483749843324,17.0798194389435,17.1352236263444,17.0602767052276,16.8573811031146,17.1181737701844,17.1480685144184,17.1814098001729,17.0829592869542,17.1144469649054,17.2121607313036,16.9964509486307,17.013263906799 +"Q8IN51",17.5309059587984,17.3844255582755,17.6298225566985,17.0607609757107,16.9976121954044,16.9461195025744,17.0209849639409,17.2162098929539,17.1823457979652,17.0460606242169,16.7754750852177,16.6802967343322,16.8838497423157,17.2596635478678,17.2286980052746,17.0913105845238,17.000486569787,16.9665902526615 +"Q8ING0",14.8901189920334,14.7690952829532,14.7119425784325,14.3602495075326,14.7549700161071,14.6378338330108,14.45310136496,14.5400210240498,14.6970801946238,14.5989284306086,14.7409151414051,14.6105076170473,14.5696048452511,14.5805099806702,14.5159507553608,15.0145463539437,14.5010380491441,14.7132345158542 +"Q8IP62",15.8038541593596,15.482210120961,15.6693452483906,15.523928890334,15.8015485199328,15.7722774743938,16.030270510436,15.7578596631797,15.8362914080485,16.2504434891454,16.0105265531372,15.8999169804005,15.2250560180436,15.7236804463307,15.788352077788,15.9295903100083,15.9873180737854,15.7969601883053 +"Q8IP97",19.8945565868061,20.1123767464981,19.9656204768914,20.0128594744016,20.031144786514,19.9586636397827,19.873530987825,19.8361092474627,20.0095620290414,19.8997634886507,19.939138762469,20.1606488381772,19.9566097264788,19.8892526188902,19.7354838121459,20.0990545758666,19.9283526781948,19.9063960439902 +"Q8IPD8",18.583777988426,18.6247597370938,18.7604393876876,18.1144807735554,18.2423708303901,18.2285158589213,18.4608907996983,18.4988934774511,18.5287761264876,18.1521444887624,18.0408778859549,18.2763022277256,18.4628504213859,18.4926723846891,18.2261815392857,18.1314071562917,18.0059773125409,17.8853364880118 +"Q8IPG8",15.8180817328384,15.9751837253879,15.8237652935061,15.576676436569,15.545573591242,15.774839265393,15.8732252257788,15.9888023173372,15.8617035208366,16.0376050530191,16.2365449523619,16.2843397577108,15.857734838307,15.4152921687667,15.8575269305175,16.2190481180249,16.2209746494415,15.7801966365733 +"Q8IPP8",18.98944353145,18.9614567376266,19.0042987266895,19.3479650708073,19.2268207063887,19.1468370512928,18.893869188933,18.8259940489231,18.9171010760674,19.2521051631618,19.3123638518349,19.1807523037637,18.7738051714205,18.9032730445853,19.1375766431435,19.1672506210847,19.1945303574989,19.0378729459005 +"Q8IPW2",17.0713353393995,17.2220305665361,17.163480900514,17.4395593501793,17.4030438886338,17.3406652011229,17.1742684854354,17.0768860117092,17.0089039625124,17.2968230303727,17.200800291235,17.4351795298599,17.0024591540046,17.0628356502336,16.9736092006788,17.1821370365637,17.2009859876076,17.2447436012674 +"Q8IPX7",15.4921263347919,15.2574799754844,15.3948011586364,14.8045396321214,15.2678703104783,15.1576895649216,15.5375720098942,15.27086250104,15.4088380911107,15.7462019027129,15.2114604987764,15.249932808976,15.3344425134533,15.2061330209341,15.005366134286,14.4967802425479,15.1978563288084,15.1950348775909 +"Q8IQ70",17.8147767635101,17.7560716837565,17.9303876983635,17.9216190215153,17.964854339941,17.934872782852,17.968223499235,18.005992915703,17.9074325250427,17.889618037994,17.9203022532347,17.8746965146668,18.1260506360961,18.318214153692,18.1651063655259,18.2589338962433,18.0137865082666,18.166725968143 +"Q8IQB7",14.4910228241713,14.3852321507192,14.4218386093171,13.8628682656103,14.3510231796537,14.2992781971759,14.5391634056217,14.1813486865802,14.2469594327504,14.7890391238831,14.6250287292793,14.5901726784977,14.2424994450273,14.5050047818951,14.3882994354291,14.6655978364206,14.5425533726067,14.6436425475639 +"Q8IQC6",15.8271665090905,16.2548486768584,15.8994985452708,16.1428678302934,15.9979790959763,16.1120925638793,15.8480579937445,15.5117685638461,15.5060550115999,15.7330884001772,16.2194404095915,16.4634359616677,16.14202177475,15.1930074071233,15.5635288048957,15.792450673627,16.308609028287,15.9410422943692 +"Q8IQG9",20.7802971508626,20.6915500831871,20.9200695485657,20.5575321371539,20.5561678233185,20.5979487134007,20.3459082345479,20.4638969070389,20.4504950283171,20.4709616840674,20.3331838632654,20.2890228298946,20.3555339399719,20.4512030130145,20.276992296393,20.2228715477811,20.2371030045603,20.1985762778138 +"Q8IQW5",22.1691477855643,21.9529182430282,22.1007941875962,21.9687955969158,21.8575677349066,21.9321336217943,21.9782941840371,21.8864125615241,22.000921048582,21.6755394093669,21.8002560463464,21.8554542131094,21.9021979635776,22.0066919884338,21.845906990338,21.8658373347512,22.0559656999737,21.8246022127929 +"Q8IR45",14.8289517386504,14.9334555116819,14.8754555344525,14.8545262149264,14.9561057494003,15.0090219336437,14.9013705804012,14.7600103323285,14.7650322455744,14.6875767881414,14.7842674452574,14.9358473326831,14.7820700839417,14.9355937240571,14.5003334530203,14.837691953164,14.5227545965,14.8064968598511 +"Q8IRD0",17.2199211363919,17.31806283636,17.3914561616961,17.3369707030669,17.4004953489395,17.4815828331707,17.6357298386695,17.437578182098,17.3357313353182,17.6701407109484,17.6533453773281,17.7283469834983,17.4924699146005,17.5986632301792,17.6399988449927,17.8248708006816,17.7719581294538,17.6029869456826 +"Q8IRH5",14.5067684736336,14.714077051788,14.7405418537247,14.7071855341606,14.4453948359157,14.2226332751243,14.5097924877323,14.4876444887385,14.5479285415175,14.2805274015945,14.2677629195192,14.4510295889289,14.2422002345034,14.3972224688856,14.3181656417714,14.2510106665736,14.1853830333509,14.2171858971313 +"Q8MKK0",16.8701188118264,16.2292282819216,16.1469894072487,15.6520012840208,15.7371846867454,15.8531421549501,15.8961674583716,15.9665066156576,15.8903470637324,15.9873927761538,15.3910171351775,15.5363798849233,14.5707312139729,16.1469774809683,15.7739049555497,15.8746249717071,15.3801223155822,15.6502730496484 +"Q8MKN0",16.737601113315,16.3376923789111,16.6491193466342,16.3785483623609,16.3166309583503,16.6289568982168,16.7314411619885,16.6866309971104,16.6134225928797,16.609612759283,16.7028603380971,16.8058732597814,16.6794217746519,16.8041125821066,16.5844321249472,16.5844365377345,16.8731344547585,16.4392574868747 +"Q8MLP9",15.4705361933795,14.9648149098786,14.9779401003725,15.0817638915472,15.0412458800901,15.1833444986595,15.145304874878,14.7987704422143,14.6528389521708,15.0002141820592,14.9564638128845,15.1612551447392,14.5106553450332,14.9550757311642,14.6285364173123,14.3805875569272,14.8726912675925,14.9851469305699 +"Q8MLS1",18.636636350269,18.5382518053179,18.6567436780711,18.4054427780062,18.5851426428246,18.6032783670689,18.5410478292834,18.5229383579252,18.4363319201724,18.4605389590543,18.4458918019942,18.5550231079915,18.3154018157663,18.4224139612827,18.2901739519637,18.2323721688747,18.0768013319093,18.0498888759865 +"Q8MLS2",17.2169592798609,17.2558493538334,17.2764918903725,17.3650485640535,17.3416862590184,17.314116934168,17.3213462025949,17.4203031679094,17.3019539270845,17.5009437225605,17.5278365135683,17.5458455234199,17.5737602663054,17.4542149399017,17.4607548870914,17.5063692124671,17.4845370136113,17.5852640857061 +"Q8MLW4",18.6931050388499,18.6686802290174,18.6508598598151,18.6175892267381,18.7322538143503,18.8119096125723,18.565119591521,18.6172678502225,18.5421685640269,18.682632437694,18.7170337337393,18.7885004518598,18.5103901107573,18.5810514325699,18.4998610013196,18.7424947163819,18.4950440620428,18.5180316323486 +"Q8MR62",17.6542805854833,17.8345901106092,17.8955317789265,17.7570306317403,17.8289301017635,17.8559349291018,17.6908239524567,17.5679391199986,17.6345495608687,17.6062959248898,17.5673174957341,17.566318745157,17.5468510230249,17.6496669394734,17.4750909854907,17.6434838356245,17.4503221856407,17.4713399536748 +"Q8MRM0",18.6958744393769,18.6615684446528,18.673910151657,18.6107081465161,18.5570867510615,18.6009506679546,18.6383180918424,18.5294890906121,18.5024303719315,18.5271063379902,18.6413645527304,18.7984186203574,18.576548362217,18.3788989680705,18.4898406625416,18.2824675262165,18.5626150970318,18.265472429717 +"Q8MRT7",15.3536030851196,15.6220796284371,15.5125892894454,15.3366925472208,15.2255169957336,15.4888013274628,15.4749823695482,15.2540358806423,15.3768977583725,15.4284403603291,15.5135215714067,15.5485083168434,15.2430430254208,15.458832436128,15.3192754140995,15.7089662761589,15.4717411514498,15.2996555575739 +"Q8MSI2",24.4738230025204,24.4393267666099,24.5352540786474,24.3606421049202,24.4142293096594,24.3891796154406,23.5837434393797,23.6547078730898,23.5900965818525,24.0657617573466,24.100468347797,24.1237090236389,23.6780895463646,23.6700725410381,23.6135123728499,23.7622463792446,23.645501391582,23.6725545573468 +"Q8MSS7",13.9035890125474,13.868546674319,13.9654140704649,13.1116527951024,13.8678630877811,14.0523376180471,14.4172720818583,14.1482236619532,14.0525729645704,14.7086060967619,14.4455263212033,14.3265560647913,14.6635449642809,14.082746578506,14.1180482291447,13.9783047925989,14.3700634193871,14.2680407961314 +"Q8MSV2",17.7964988640133,18.2549458005523,17.9349429664045,18.0906969287014,18.2193621661465,18.3649762977921,18.1626179123462,18.0194373877361,17.9619351819095,18.5741418636593,18.5094729447824,18.5923685611092,18.4666821234007,17.8067828961149,18.0388057105544,18.2324590644816,18.5130955612703,18.4300680388327 +"Q8MT58",21.5180328695668,21.5098778067923,21.5974708336019,21.5219965283882,21.5233149340744,21.5626258366475,21.7378987179864,21.7638663082291,21.6626431725016,21.6192780434537,21.563629419049,21.5974892494075,21.6073813177791,21.6795742914142,21.6403326592026,21.7532292572586,21.7175539748739,21.6972549830719 +"Q8MZI3",17.8419942510122,17.1911252346324,17.2994480298648,17.5526854292264,17.5044600071161,17.5698164554219,17.7249321348495,17.9465287816133,17.7543192200313,17.8527700353831,17.9802176795719,18.0103430695105,17.6444460822593,18.0400375599478,17.8871884315077,18.2111573166651,18.1656159865141,18.3068700430595 +"Q8SWS3",16.8161692280029,16.7133348377737,16.8387449637532,16.6409144025041,16.7273837820345,16.533899267094,16.417086784553,16.2533919746735,16.5106288786669,16.2659106970742,16.5004608011451,16.2903340710137,16.2028970715122,16.1302296037918,16.2390515037798,16.502398809167,16.5205759933948,16.4327183085057 +"Q8SWZ6",14.0207015375223,13.898139832643,13.9916040631316,14.0685784120783,14.0551011989131,14.0860216514141,13.6123853524766,13.8151507356072,13.8677791171788,14.0115392232975,14.0835637333168,14.0845754506086,14.0195793179319,13.8974692624006,13.8082840639481,14.0279697465306,14.0113288269566,13.922489243556 +"Q8SX57",18.0779213529903,18.0888014369887,18.2143884893129,17.951150180924,17.9331433819138,17.9032455399221,18.0305295886433,17.9852335744057,17.9803089072015,17.848753092516,17.8238887280457,17.8481600743239,17.9269723541284,17.9912366618679,17.922638804984,17.8977390496896,17.9107618356697,17.8643238031472 +"Q8SX68",17.6336070020051,17.4752136682858,17.7063910335568,17.8193589943408,17.7350340531027,17.7237754374919,17.2720473401944,17.4889663301682,17.5305415536692,17.6812846951933,17.54085413513,17.4834852196407,17.452133047549,17.5319975190446,17.4425777739448,17.4685982104706,17.5549635840221,17.4402582714499 +"Q8SX78",15.9505885407016,15.8141400610041,16.0273040503569,16.2113228695559,16.1106110997945,16.0715215440505,15.9879081694118,15.9695085774939,15.8239546808971,15.9817084036196,15.9892417629908,16.0966065372259,15.9737668535346,16.051216532304,15.9582797385893,15.7816983122107,15.9522751154468,15.9093265979143 +"Q8SX89",15.5914095709728,15.4794945489621,15.8235300701808,15.6515249841744,15.7577690550309,15.8481228464698,15.2575725421934,15.4594169735495,15.5117672435285,15.6238208539219,15.5609520012951,15.5708562946384,15.3817147045489,15.4432192970715,15.0736272886546,15.4820720494796,15.287262829382,15.1602109618189 +"Q8SXC2",14.6042854979369,15.0032000505389,14.5163714455026,14.4645588079005,14.8036943808944,14.3744360714465,14.8486263411717,14.5358087645871,14.8041780201386,14.2157219517407,14.8213155440422,14.959851053042,15.2901973553101,14.832839169316,15.0593230211765,14.9582962689473,14.3848283136287,14.667526611701 +"Q8SXD5",21.3435947258711,21.1981117737404,21.3407127820252,20.8739337533333,20.8036942653018,20.903921892572,21.0453901224562,21.0116943733599,20.958564045581,20.3273927084636,20.365623297666,20.3788836389359,20.8439908979794,20.900874342209,20.7666977649466,20.1027055329624,20.2570096887888,20.1882276170052 +"Q8SXF0",15.9942354644155,15.9831284038554,15.9295723727809,16.2711045778431,16.0300605966321,16.232721995356,16.4630670972105,16.4370888047859,16.3733928157408,16.4837893385397,16.4749321915912,16.5799622272781,16.3819864457278,16.5874429841499,16.4251939256966,16.6797284404272,16.7612583831493,16.7330680273113 +"Q8SXF2",15.7874064588734,15.6936181400626,15.852464970503,15.3560703032093,15.5468663479019,15.6077547070371,15.502903224917,15.5144789054422,15.3935463032599,15.4820094140429,15.5706778786577,15.5335996854217,15.4813857487959,15.4713233444602,15.4322961463445,15.5914135119995,15.4042240453135,15.381526849272 +"Q8SXG7",13.6205068401356,13.8674983604295,14.1945786901957,14.001184318933,13.9433754512134,13.8131139528115,14.1364719590404,14.0405129531712,14.0992088655733,14.1004315590246,13.9545251383377,13.841512420142,13.657591038922,13.9697181394009,14.0145061492884,14.3356217720207,14.0761774455237,13.8888874100656 +"Q8SXQ1",18.2161469063354,18.2908120816083,18.2045540271143,18.4552524392685,18.4961689521811,18.4956811773881,18.6371606087105,18.5491201696554,18.4267682786839,18.701648388689,18.7771820034235,18.9345346501395,18.9859074004495,18.8181444986672,18.8145269213321,18.7779906566761,18.8426786945935,18.8980413454712 +"Q8SXS0",14.6146992742888,14.6548717259681,14.6022151177286,14.0056649110226,14.6949658812121,14.6665534225507,14.6197630791999,14.5989724076347,14.4316536451315,14.7660445178687,14.6489730580154,14.6716057987852,14.7130070712431,14.3567010281649,14.5503707317339,14.4698520810142,14.234546833642,14.2666322187074 +"Q8SXX1",19.9238596110336,19.7874831403427,19.8300146589973,19.9311449309091,19.9682809573188,20.0073691918712,19.8152644914817,19.8487988504438,19.7992151735327,19.7597909943927,19.8723559186543,19.8786603864302,19.9783889960524,19.8871555342072,19.9195334276761,19.9397258962937,19.9841005191964,19.9133820816558 +"Q8SXY6",19.0116220520534,19.1339848855881,19.1228504351407,19.0977097261557,18.9899793052927,18.9711254941568,19.1517254866912,19.160989416007,19.1711480508967,18.8541728939905,19.0340318945202,19.0522335039904,19.1797943159259,19.2806036845479,19.1861640268751,19.4679699476331,19.1634052364941,19.2594729113902 +"Q8SY33",17.3253091633214,17.2851559896026,17.4090475756125,17.5456544619152,17.4891143578529,17.4956177408103,17.3443767741357,17.3478951492527,17.4229299194115,17.313399673761,17.4468766483008,17.4318011815248,17.204298987261,17.3859679696538,17.2401821888247,17.6037675391791,17.3817964849107,17.3372279933897 +"Q8SY67",16.2206622547004,16.3100578813415,16.290990059589,16.028374689884,16.0682398045443,16.007070208552,15.9618702770837,16.0392730461558,16.0991345665717,16.431895446617,15.6838507229676,15.6774478259781,15.4580631447173,16.1682072100856,16.1045269113174,16.0963640601001,15.9276012080076,16.0180603010943 +"Q8SY69",19.0652089501487,18.945645869868,18.8857333800374,19.1007622776015,18.9762154521945,19.1387466159579,18.921124256905,18.9606647787203,18.7086658990082,19.0676394803347,18.8218553034171,18.9815634214607,18.3725577191785,18.9530267597669,18.9264854864252,19.1366908036169,19.0065753238187,19.0227886848961 +"Q8SY96",18.9503720476801,18.747847219451,18.7991081313731,18.7356589773844,18.6581034098574,18.535559608299,18.7484393199261,18.8823362465808,18.8827715929292,18.5304644985311,18.6362913222094,18.6486184726048,18.6848322846045,18.9551255353992,18.8666440693559,18.864148581912,18.6342119765405,18.7812138354762 +"Q8SYD0",15.6484190714122,15.4743845715769,15.7159693214689,15.1236234847045,15.4088452711899,15.3919764979061,15.6193739897169,15.5437380254787,15.3478190556701,15.4251804682341,15.5019577960868,15.3216062340704,15.4753827962411,15.5308841789225,15.5976170340186,15.4212669360699,15.2534369031239,15.3382586032447 +"Q8SYJ2",22.6859136613338,22.6593808564309,22.7654412595096,22.6409326801626,22.7225141635289,22.7248649073207,22.4711466384648,22.5533489175778,22.5204360175698,22.5307481456482,22.4571602624389,22.5175956125421,22.5468207051333,22.5702973692163,22.4285806658741,22.4028571478381,22.315717409388,22.3215005157646 +"Q8SYQ4",21.2258352341892,20.9773416698738,21.1434335336177,21.1385479328042,21.0418992142537,21.0865328793226,20.9014093363237,20.7989556682429,20.9596737962979,21.1113430142541,20.9808488595475,21.0220743965995,20.3610843467373,20.9055620068314,20.7344669781988,21.056479611679,21.0900920572382,20.8485178919509 +"Q8SYQ8",16.074458106692,16.2103011215799,16.2276130514519,16.2410191387428,16.1615694876235,16.1495119489864,15.6636001850063,15.7054386738199,15.8209722676088,16.2084177623063,16.2750579161107,16.1174469318101,15.525211414165,15.4020205888511,15.6647870305179,16.3063840592014,16.2647028781288,16.0387594357389 +"Q8SZ63",13.9273920830099,14.1199871069166,14.2762854111549,14.0442367113233,14.0530189626589,14.0266473626244,13.9371997641822,13.7866684513319,14.0081502528143,13.9956611834574,14.5507164397264,14.1031042774058,13.9054427706514,13.4099730789115,13.9229128711676,14.3699463497895,14.2595148228683,13.8427786872467 +"Q8SZA8",18.0611495224303,17.9954739177866,18.1363403538229,18.3038849878888,18.2072319977543,17.9323775243157,17.8840807518241,18.0165334006415,18.0618228421093,17.8810613786478,17.9895104206884,18.0458933113822,17.908710770422,18.1106046266362,18.0044293255717,18.104833424035,17.8243664717409,17.9628574780463 +"Q8SZK5",15.778910359919,15.9886765724579,16.0502538661703,15.6319433642683,15.8136651062611,15.7000147014237,15.3407771605901,16.4155596066592,15.4660137818905,14.933511569032,14.7981508571733,14.9108380453032,15.1541099146002,14.9380862013718,15.2183827520751,15.330616704433,14.2157307289193,14.8243659259798 +"Q8SZK9",21.9248847932727,21.8784647435555,21.9487571356099,22.2259187068982,22.197416150485,22.1911497238043,22.1414108303539,22.1392414817063,22.0744139257139,22.4376572958017,22.480381234785,22.5242483901926,22.0104532512192,22.0743363202567,22.0292997347605,22.1620252475904,22.1325101943477,22.134481215055 +"Q8SZM2",21.1600355717573,21.2566487474205,21.2076974541482,21.266477238515,21.3029922093546,21.359861372529,21.2432030426674,21.2878704044393,21.1724480693827,21.3443547416398,21.4351018061371,21.5508093780433,21.1536304834788,20.9622114565361,20.9708631590038,21.3574555877835,21.2803320419542,21.2634772327349 +"Q8SZN1",20.3936191808601,20.3795742664248,20.4542951355586,20.5783471006146,20.4302551103849,20.5668779682541,20.0694543316151,20.0696730829016,20.0052764373112,19.9241146990812,19.9462234514094,20.04089909995,19.7176846053578,20.0714012383112,19.8592235236409,19.9859316573992,19.7720244254963,19.7425794102133 +"Q8T0N5",18.6582746894219,18.5615233756505,18.5989223879716,18.435860433703,18.5380423323435,18.6282732964144,18.7521268536885,18.8189178460207,18.5999011911991,18.4555645697698,18.5564876091042,18.6072273391528,18.8384300099691,18.614317949605,18.7200043525514,18.417609972265,18.4685774160934,18.403537961528 +"Q8T0Q4",19.9928938683594,20.0530255731655,20.1105802742267,20.218276777896,19.9968908209298,20.0199869368025,19.9665564829166,19.890603807135,20.0683936916473,19.9534469054693,20.0804609747436,20.0866444363749,19.7591739631829,19.8486876848648,19.7082835882567,20.0204342001938,20.0411133371795,19.9168932707101 +"Q8T3L6",17.4371603618635,17.4784297180449,17.5820251706599,17.6396988287417,17.5228420753206,17.644919650184,17.5115560211634,17.3975139602619,17.4752758955461,17.4021994177868,17.4624312261172,17.3583559067245,17.255279425236,17.3402138191424,17.1576625686876,17.120880770854,17.1653440267583,17.1485356338432 +"Q8T3X9",18.5399759418679,18.3417439425074,18.4570990074874,18.2990057120012,18.405382381041,18.4584820583958,18.1615911332911,18.2797565713815,18.1291911820885,18.030954699945,18.2386000536517,18.1818340665492,18.1525506260181,18.2643095597422,18.2950547761627,18.5571609457338,18.2114465505332,18.2195779681733 +"Q8T4G5",19.5306360158388,19.5869090873173,19.5795754081062,19.4979726095431,19.5790589137551,19.5874817690795,19.6270257542475,19.6504237129957,19.6200385588568,19.6073782703217,19.6226961458796,19.6606687839833,19.8565587786097,19.727807735772,19.7684479547365,19.8793052018497,19.8319810346906,19.7826641556481 +"Q8T9B6",19.442353348572,19.4687087719166,19.589788474123,19.5886184205113,19.4848450991291,19.6549610179047,19.3526390060507,19.3150158690381,19.5107157160071,19.6995748940999,19.8267163018175,19.5108992416675,19.3703156141558,19.3745225369382,19.3589301109363,19.5541911287034,19.5378838332537,19.3823978514545 +"Q8WTC1",15.2158243857967,14.884073853688,15.0251462466966,14.7602102511149,15.0482156207906,14.8019181060546,15.0473698275431,15.0662048394903,15.0870049737205,15.1098722303896,15.1828750816933,15.0773600174172,15.0686648282195,15.1209287878105,15.2363706455787,15.2381552582567,15.1377985978476,15.2122967918528 +"Q94516",23.5505272837221,23.3929400202275,23.5372118029851,23.443207189793,23.4178944974292,23.3871237047406,23.3327574932196,23.3329774055511,23.3316727566038,23.2906275787256,23.2879260550596,23.2566188086187,23.3500629083414,23.4825212429645,23.4261243293075,23.2335878020254,23.2865110345952,23.2620188535715 +"Q94522",23.6046951128031,23.45904033712,23.5163646669856,23.7329278997843,23.6286685081887,23.5397756068132,23.4048164301117,23.3460035704205,23.4071314075629,23.4451713929771,23.4007734149196,23.4472404252498,23.2777046551839,23.4815092536653,23.4363276797544,23.3543817245058,23.5037021310518,23.4728574290001 +"Q94523",20.3174063730749,20.333335361074,20.2929296365162,19.8431774608648,19.9598682037056,19.8560853574864,20.4436525736655,20.5007915292428,20.4798414910919,20.1188951895845,20.2763889863576,20.1635075675266,20.9034164370251,20.8912416891887,20.9959631398916,20.6126505690901,20.2775728337362,20.4508714107922 +"Q94524",15.741483055098,15.7321617927183,15.7693689038108,15.7624312741711,16.0384032728224,15.8103224126299,15.4757860050915,15.4669512290598,15.5436984851279,15.6701041916336,15.6858911165082,15.6050212087457,15.3548786928268,15.3225388664516,15.6431192987463,16.2025321649135,15.9612691061742,15.8356850746739 +"Q94529",19.7701975435386,19.6220697373671,19.7857197136951,19.7425666388533,19.6304181809843,19.7043855305682,19.591471864159,19.6458152414971,19.5603450448269,19.5543325849026,19.6091533320476,19.6226512497233,19.6638975186476,19.7479698392716,19.6458452813737,19.5183092570784,19.5853490760119,19.5218285869923 +"Q94533",15.539543767917,15.4095324874975,15.6775038575494,15.2187326976747,15.2421745545826,15.1044090134988,15.3807943194875,15.3213035529866,15.5331309394117,15.1737388361128,15.2461305533358,14.9532170392605,15.1735150549172,15.3894911633839,15.4539016586901,15.2217694626899,15.0994618270126,14.9859316303885 +"Q94901",18.5741221827978,18.5695602325906,18.5561879193121,18.9318908573524,18.8699938447811,18.8321243033321,18.9305930477026,18.9090842320406,18.8810261251975,19.1632564900844,19.1873448971487,19.2998554215496,18.7306746526202,18.8258364097141,18.8160088935696,19.17723384667,19.1459514609524,19.1225684142665 +"Q94915",16.9555455968891,16.9183491035513,17.0503580564486,17.2226712687792,17.4245651124666,17.474546359077,16.6657546551429,16.812803762357,16.5551735232525,17.3709617362307,17.2254230889624,17.4141686229694,16.7808342707602,16.8524734931478,16.8007774658547,16.8890583924464,16.6512113597635,16.5898018926462 +"Q95029",21.8185006604417,21.8033594749599,21.8926705876408,21.9891490836519,21.7893187459445,21.7707441278384,21.811490315055,21.7906974395711,21.8882393631772,21.7998696772892,21.8942597929466,21.9552385768576,21.6258116579773,21.8321297320741,21.6493545252349,21.9233963554022,21.8584525643212,21.8119705690684 +"Q95083",19.8922455331624,19.7229719297825,19.8085689026545,19.725244539291,19.9051377667081,19.844389381297,19.8693075907152,19.9024748484906,19.8345403885555,19.931493970729,19.9560661514681,20.0572723134734,20.0590314757435,19.896195250362,19.9139698542253,19.9076644501165,20.0021416129464,19.9262467195519 +"Q95NU8",17.4449724613101,17.3127929444752,17.393179991875,17.6454618529843,17.5652603757857,17.5226218171421,17.0125614062808,17.1336158607756,17.2624261747466,17.5117375759834,17.4321840324964,17.3877373434901,16.9186628686295,17.1609176469713,17.2098931808973,17.6173970873114,17.5460223919952,17.3749347443483 +"Q95R34",15.4206690279717,15.3255862186769,15.4349188657191,14.7166328714244,15.1979941830952,15.1508045062096,15.6355052854488,15.5543443881491,15.2551837040066,15.1628600310094,15.0093846897004,15.1187319699067,15.6129133882618,15.5196054409671,15.4727706782683,15.2187571299527,15.1604228134801,15.3349280099584 +"Q95R98",16.0906549046178,16.2034056916101,16.1371178826756,16.0877173357689,16.1005511336608,16.2899930652565,16.2197592692878,16.2942165946225,16.1757474370273,16.3838128145812,16.2309494820936,16.2350919611451,16.347940444707,16.611910459277,16.508220549146,16.8098659064629,16.4987173141616,16.593579780175 +"Q95RA9",20.6509557469023,20.5559193287736,20.6629142400036,20.5952352716591,20.5363535301859,20.6169216609268,20.4332408679223,20.4599665107457,20.4246621950464,20.4262887974621,20.5277509260976,20.5026108671242,20.4553979991872,20.5057453983799,20.3583900802826,20.4446902208979,20.420073209848,20.4403098606472 +"Q95RB1",15.9522086488864,15.9427889130627,15.8469223952719,16.1301207998711,16.0342144223567,15.8939646396238,15.8614774247462,15.8739913718305,16.056034061703,15.857075724547,15.9007247652962,15.9930364552081,15.9019682321773,16.0180636563738,16.0667671350028,15.9589840279723,15.8920517292804,15.8051101713907 +"Q95RB2",24.3535512228639,24.4445647160293,24.4244557222038,24.3232991185207,24.3707060312387,24.2281585691464,24.167898656236,24.1702877956555,24.2842565038831,24.0942286762465,24.0560510202078,24.513531293721,24.2664602171278,24.4042469558554,24.098735250132,24.5062899227241,24.2658712947324,24.1625904746328 +"Q95RF6",17.0385725798306,17.2580554561518,17.1869866593445,17.2338409042985,17.2776689376681,17.2614755675421,17.6612799544782,17.4191632331537,17.3058956106761,17.3203416374316,17.205192084148,17.0649783019532,17.5581918269242,17.4097999847773,17.5554993646204,17.0311545864256,17.2735017934898,17.4685459852524 +"Q95RG8",12.9676334379833,13.1348669829349,13.4848620702008,12.4946623238817,13.3431799657285,13.3348342675413,13.6847099245754,13.6478443276609,13.5062531846783,13.6239852465372,13.266727468225,13.5371942168131,13.2642533555914,13.6107981843074,13.2745798604051,13.7849375782863,12.8167649379986,12.6824582672167 +"Q95RI2",17.1832105276474,17.1169374981632,17.0034251397215,16.7752351687182,16.8915682662708,16.8720053184771,16.645727599868,16.6079334468405,16.6528617238375,16.6927488724731,16.6562291880243,16.6992982702696,16.2374500301594,16.4649873309277,16.586462598333,16.8046584134806,16.6013748821202,16.524977561708 +"Q95RN0",16.9816001648818,16.8490051253165,16.9684604144449,16.8280665410889,17.0174959959267,16.9881390956348,16.831957370711,16.8017291661525,16.8415502332746,16.8979653533952,16.9761830272752,16.912102437864,16.996699396293,16.9254873317792,16.9346698648531,16.9850825834879,16.9514707634076,16.8764493637865 +"Q95RQ1",11.7246387209713,12.1148965211303,12.0900694738277,11.054071376157,11.7647593376293,11.7435385223946,12.7628204894716,12.0253103623318,11.9460651743737,12.8134886412008,12.1072723403052,12.6554523241316,11.9612443133807,11.9406827390225,11.8153074170052,11.5943258199631,11.9576680607255,11.6601564494119 +"Q95RQ8",14.544396796906,14.2554198001155,14.1521087651646,13.46069646612,14.2825213549103,13.6969429603842,14.1730528681355,14.2192967565915,14.0133765436717,13.7017918146762,13.8694450097348,14.1548557611615,14.5538190692596,14.2444916918818,14.4827906076328,15.3636354924739,14.9262178943374,15.2973178695566 +"Q95RS6",17.1412225153492,16.9628647963861,17.0833061873509,17.0430861359294,17.0348706023155,16.9873935180483,17.1657979209361,17.1026131634513,17.3346187980126,17.1452340837317,17.1543828931687,17.0870946958882,17.0675844763491,17.1751928518824,17.0883043165221,17.4444468783778,17.5774477034692,17.4266544948512 +"Q95SH0",13.8100682201913,13.826591969319,13.5793929148325,13.9973075737534,14.0114829443396,14.2329968036531,13.7470728416852,13.637777950419,12.0537971972691,13.8332105772882,13.86158916508,14.5647465275616,13.5757478279284,13.6767570475834,12.0400306098227,14.0186441152261,13.9678520793316,16.5110871029336 +"Q95SH2",18.7982490296417,18.8103540697308,18.6963353086129,18.6793286945354,18.7567568457338,18.6934419678671,18.8551702744077,18.6871615783908,18.7150374395816,18.646161333329,18.7157785211585,18.8695849093345,18.8616903639777,18.629529077314,18.7726004943557,18.4909128675347,18.7319324710985,18.5845124436744 +"Q95SI7",21.3898452103764,21.2868596741106,21.4150867660584,21.3483823153876,21.2771695300828,21.3252373891664,21.1972670436668,21.1687667346838,21.1908929875414,21.180874656703,21.1447633395742,21.1248396449678,21.1503313781456,21.2902432724367,21.1979675588643,21.022372024575,21.1212700779662,21.0350482822561 +"Q95SK3",17.2546695518725,17.2849641721096,17.4100889821053,17.2438638644055,17.2719394039525,17.3046568991592,17.261494299673,17.3246685986877,17.1335348243476,17.2434625356202,17.1989916614147,17.223473947263,17.1819138219598,17.2746196059071,17.1365584533997,17.1215396379629,16.9517602694225,17.0986306052193 +"Q95SN8",17.7160947897793,17.6138564439335,17.7886564397126,17.8284412544145,17.5081693335696,17.6121051648501,17.7427351539487,17.8306269400618,17.6783411487221,17.6695611383749,17.5244961992845,17.6367395403927,17.1417099808662,17.8199019001348,17.6164159258901,17.7954361868091,17.5969276872085,17.5617202846252 +"Q95SS8",15.1009072299968,15.2119688632001,15.17886036365,15.4718988866593,15.5332262889372,15.5633636509443,15.5544844454529,15.5583696004876,15.5621953342937,15.8102969803411,15.830053279768,15.7554167613819,15.427351095994,15.5821459534505,15.4935998157285,16.0070645114018,15.6562391640027,15.8185672238476 +"Q95T12",15.9422473560683,15.794111533973,15.8846947029222,15.857754202486,15.9591987663095,16.0455382074866,15.9744442472532,15.8967286132545,15.6953067616566,15.8776691712068,15.96108583718,15.8982603251,16.108282133655,15.9868627969836,16.2053245723508,15.863702886717,16.0261124496857,15.8949754278702 +"Q95TK5",17.1086489419019,17.0780497906344,17.2787351583062,17.0167018273605,17.0286153377265,17.0827142420111,17.2006950304117,17.0740934752979,17.0539639013793,16.9392005910475,16.9845399662144,16.9338471770711,17.6127422661108,17.535294378329,17.5004454275207,17.0852849571541,17.2626806657842,17.113567707698 +"Q95TN1",13.9751856184268,14.1204258477721,13.8093702153292,13.5651340268699,14.0151303402944,13.6749495895686,14.0061488781071,13.9884568381666,14.0518940975293,14.1180167541786,13.9634175493593,14.387277236018,14.2289600008906,14.0753247548564,14.2806609105472,14.4462106113739,14.176900559398,14.1355038408547 +"Q95U34",19.4287240712089,19.3136785054906,19.330163825206,19.5346966854996,19.509282029778,19.5138069458961,19.4059559727697,19.5763655007694,19.4603462235538,19.4697427992075,19.4361570112461,19.5503337554058,19.3848682860368,19.5742085028887,19.4931813543825,19.5588201275363,19.373116392086,19.4349758378146 +"Q95WY3",17.1775413342815,17.4153241383689,17.4098045870508,16.9878574538354,16.967251552265,17.1709547205296,17.4530132624332,17.488668542849,17.4237447986092,17.2485805746169,17.1105611427989,16.9848876828748,17.3576438012064,17.2923526301497,17.3318125617897,17.1939108302748,17.1443892502168,17.0973429057941 +"Q960M4",23.3621324115912,23.2605071230547,23.4623908764028,23.5335876380372,23.3370129381051,23.2866512832685,23.1391282233797,23.0850577241069,23.2625045011981,23.0491364626757,23.0674429440107,23.0935499869757,23.0306089286091,23.326745681708,23.1521607420235,23.1570002907143,23.194827544022,23.0143365651387 +"Q960W6",14.001265498548,14.1851513735086,14.3565350613107,13.5228635283353,14.0635959801293,14.0529885055856,14.3510275180657,14.2049219860428,13.9697642907464,13.9195147240122,13.9179035817598,14.194557208754,14.7352933792955,14.746789510864,14.4948984811888,14.1509237747772,13.5625259907296,13.6121448754484 +"Q960X8",18.428746079092,18.3632435633132,18.5626476001671,18.5684960324141,18.4594287618594,18.4302594457748,18.3072860355253,18.4278437812137,18.3002001386762,18.464258805675,18.5438168145998,18.4669055286181,18.1101150985425,18.2031239284141,18.2403404905303,18.5659537891365,18.4473989909852,18.4445026366188 +"Q961B9",14.8284319331018,14.6339920012731,14.6038944709726,14.7532897859206,14.9365373332931,15.067338759479,14.6605929652548,14.9954504519976,14.766707310659,15.2325056207435,14.9457416443312,14.8368360417126,14.9518454533551,15.0249753573676,14.9859535638158,15.1907092231352,15.0806781932485,15.356644834872 +"Q961D9",12.3158781415861,12.9966915967238,12.4715577417091,13.1940824189305,11.9085885743235,12.5479476891099,11.9142359434882,12.0332266235196,12.4603992893472,12.6528332616251,12.2710427570548,12.4210678096354,11.5761841261089,13.1460729158286,12.3952357829861,12.9664732124482,12.2640646367367,12.3234787913995 +"Q961Q8",14.9598314715708,15.4029503915651,15.2899208374406,15.0954118431774,15.385908566309,15.4534024800538,15.447923010726,15.4446192135559,15.5852871742282,15.8561043237758,15.381303419662,15.4919394897174,16.0376945935525,15.9290074612855,15.6900290005345,15.5950459919105,15.4482221823356,15.4814322527385 +"Q961T9",18.0044895279618,18.1104509631239,18.2419211711727,17.4443922023097,17.6824954621779,17.7036043649766,18.0761747703925,18.1032894395111,18.0601150201507,17.8789373106241,17.8853671796138,17.8383872005306,18.0249230297613,17.7150527828731,17.7011231822077,18.0464791086009,17.9787401223506,17.930245010612 +"Q966T5",16.6743294321574,16.5436149107518,16.7381309902053,16.3969879913368,16.3115316978618,16.4758432159705,16.6693057970565,16.7226220230725,16.585620640859,16.4199669644742,16.331181779353,16.4975807689365,16.6224955469859,16.8375900115145,16.4164083809152,16.3765812790156,16.4131265884728,16.44608301414 +"Q9GU68",22.2143966730609,22.0983907588273,22.1404982182318,22.1968437480669,22.04200411969,22.1400454293993,22.2787127915774,22.2271763395485,22.2463378870099,22.3126751134202,22.181609686944,22.2952997008073,22.0309495195237,22.3154483428512,22.1723338124811,22.2763993552092,22.4453479529974,22.315462152929 +"Q9GYU8",13.14795137442,12.3604822188529,12.4838455868116,11.8792084264036,12.2908151786115,12.4908987876109,12.4182184127483,12.5212693700395,12.0944014429116,11.3173832841721,12.4914824507898,12.7429053113623,13.3764731279349,12.6395116579517,12.7029176216361,13.2533940044987,13.0890677539323,12.8776598798453 +"Q9I7C6",15.2324813822155,15.5921780132929,15.3239038872994,15.3342841134681,15.3040660822263,15.2550676693342,15.1843874184994,15.0145281341303,14.8308181832065,16.2028650454972,15.3512757075857,16.2438604025877,15.5069008080061,16.0935891376198,15.295527867015,15.3493998236247,15.4546815164561,15.8611405818682 +"Q9I7I3",14.455363950108,14.3091712602971,14.7445527503333,14.7566756294006,14.4171362632751,14.5027088388036,14.7329745741266,14.7438117737069,14.5294186020659,14.5030778812825,14.5353649180012,14.2732315057001,14.8915631854677,15.1839586722646,14.8757029621873,14.2121403762372,14.3623527090777,14.6261809375324 +"Q9I7J0",21.2226942954628,21.2588664415996,21.247276047343,20.9857847545747,21.0347655610797,21.0248136216619,20.9287831962237,20.8029977659479,20.8607021554734,20.9305088456997,21.0801052135055,21.184400291361,20.9530940616397,20.7316321902904,20.8850798661299,20.8710090708549,20.9835070520326,20.6896022424864 +"Q9I7K0",16.5188352553166,16.2343376664413,16.5608929600761,16.5549344446221,16.5821956349365,16.4323757986612,15.9677805062742,15.9300232811019,15.9780581454391,16.0906907687353,16.2171965459558,16.2001042459404,15.9131539005005,15.8699291794176,15.7504447965951,16.0377831033781,16.2494956709737,16.1613020321149 +"Q9I7K6",16.2711662101807,16.2336022869623,16.3673821882593,16.4045544449079,16.4671950490043,16.4528449179102,15.9213445074975,16.0925250996537,16.1356677454092,16.191844998348,16.1686939199298,16.2018542404821,16.2991406760886,16.0515223970424,15.9803378768272,16.0561958761898,16.1307079606199,16.0061597443244 +"Q9I7Q5",21.0010214379632,21.0517724195762,21.2069181395169,20.9001304079248,20.8276309697596,20.7699703332019,20.3311577696588,20.421061983825,20.3238901145109,20.3615410248555,20.373042282496,20.5111646850101,20.7074624801708,20.717450478628,20.5476255717534,20.5614338050256,20.4717887913137,20.5031780816054 +"Q9I7T7",14.1673472485156,14.5535338362428,14.4778734892618,14.06339416621,14.6157171786696,14.54191710099,14.6284957248088,14.5529824511291,14.5228016566285,14.369838327546,14.6709032679942,14.7720488652532,15.02184918291,14.3131083359938,14.3516347853801,14.7715839341066,14.3162635140675,14.3562326865835 +"Q9I7X6",14.7335466826926,14.8791983155774,15.0612520510563,14.5341500220442,14.5078044403242,14.8813154940238,14.8706817226627,14.9911239461999,14.7486572082405,14.7202731395407,14.4879100507881,14.6052367581817,14.9226771190208,15.3702841071867,14.8080563028479,15.1711515207199,14.7161593466045,14.8479623923306 +"Q9NBD7",13.3899972684089,13.1405476115691,13.5272059348255,12.7055866892118,12.7747260861905,13.0920993243675,13.4420148735738,13.0257391529619,12.9658968382908,13.2862176952778,12.9367869654752,12.8201511573183,13.1179493146817,13.7189061894066,13.6883781319507,13.4294414149978,13.7745012505486,13.277475869399 +"Q9NCC3",17.3223400694143,17.1232192179543,17.3643085671519,17.3175676906834,17.4124369666215,17.4065980701481,17.4890672950676,17.4479147979236,17.4697508729862,17.1884330490482,17.2160220470977,17.2799744418589,17.4283236401145,17.5432888650544,17.2848276542878,17.1705600389431,17.1734098886196,17.1108321768381 +"Q9NHA8",16.1296779903528,16.1771706797805,16.3760621688655,16.1506698232874,16.1577017103562,16.0522568675906,16.4109776667275,16.2562346270431,16.4849254972847,16.3675924706749,16.0608109075964,16.1325994964886,16.4049338829646,16.2363125162923,16.3977161286427,16.3341326458561,16.9097540387947,16.354424320991 +"Q9NHD5",16.493792425318,16.4313832791104,16.3225569964286,16.5167406743355,16.6080649387775,16.5512085078944,16.7415690910063,16.5026464202244,16.4867076378312,16.3929442066361,16.6908506530033,16.6659557929844,16.8582778791708,16.584434126392,16.5253996229339,16.4789733139054,16.6649181728645,16.9304690322997 +"Q9NHE5",15.475280818953,15.9648176769936,15.8124131280936,15.6117127721005,15.3163465942194,15.7085652683224,15.4317714445522,15.4631963023021,15.3980020263591,15.5497420200555,15.6089852265193,15.6570122244861,15.6371727426135,15.8320216643272,15.7694562210388,16.4530117557736,15.9733240896867,15.8132426857484 +"Q9NJH0",21.1220580391629,21.0292985671656,21.081908432544,20.8601189593545,21.0011367987072,20.9976778911145,21.3553478665335,21.2603325760446,21.2726866825908,21.1364848625274,21.231893430322,21.1380589867515,21.4092480540019,21.2714491908298,21.3201383285514,21.2437924370938,21.3329396556049,21.3165798971219 +"Q9NK57",15.8639744719934,15.5766220781655,15.7896308385279,15.6906431529521,15.452778376512,15.7054721814157,15.5647535389,15.4781918288629,15.4961778769959,15.7222326065028,15.5405363960775,15.4257721499947,14.8758465029204,15.5834552313239,15.2129580170521,15.3370302402918,15.4228966026186,15.4244694495742 +"Q9TVP3",22.8902904458058,22.7872569244966,22.9793603135385,23.1736891141636,23.118942645914,23.1360497364432,22.7526224765402,22.7218875061153,22.904309967632,22.9900453893749,22.9023402872507,22.8302012303595,22.5046816897207,22.8288429309473,22.6966015158316,23.2028964713151,23.1549552921962,22.9677028231154 +"Q9U1K7",17.655433847017,17.7712918822929,17.8896450892501,17.2445664587495,17.402516027941,17.1876559942406,17.6290066963935,17.6776418978713,17.8706359718954,17.0964848294695,17.1496069838948,17.0648412848543,17.4563151567261,17.6090621725378,17.5929396626269,17.7602272761627,17.2319152999805,17.236316261651 +"Q9U1L2",17.0397128887867,16.986893183919,16.7939681762673,18.1327063411142,18.5546399779681,18.9477016345193,17.0971475025985,16.8366416888825,16.3588175770366,17.9926826230475,18.1842171564765,18.4491533322849,17.4270249937723,17.2462820148104,16.9894590512176,17.7609921005467,17.6415924278095,17.9111666785402 +"Q9U4G1",19.2005936454864,19.053402323758,19.2342502148391,19.3550284874693,19.2544184733682,19.3091675553082,19.1192958483356,19.2342161675187,19.1265630943478,19.3579645438523,19.3073110198649,19.2992602574735,19.3791866342022,19.4326338188355,19.5235637510878,19.6529220807886,19.7830094367892,19.572186367078 +"Q9U5L1",17.6979951176782,17.6399366330464,17.7571227842732,17.6161020699838,17.7200164389879,17.757573839629,17.6315612286602,17.6805257334997,17.6319342423884,17.7111202244659,17.7511414303396,17.6845225897086,17.6652734814338,17.6839625158974,17.635549696064,17.762949612577,17.6094189830277,17.6182985827356 +"Q9U616",19.712237038131,19.6336387354846,19.8228456590372,20.0453345088803,19.9236937382566,19.7080549802937,19.6477117200641,19.6083404073396,19.7608516269899,19.5698060808317,19.5076806491736,19.7168001435252,19.5916443655578,19.9979916313166,19.7543593287107,19.7091344466952,19.6045229985892,19.5129564216033 +"Q9U6M0",16.2551950551587,16.1677563309822,16.3074479818716,16.357824428006,16.2832426478696,16.47977785994,16.2876109394003,16.2115701894394,16.1122189756575,16.4003021500368,16.2735452964918,16.3428759120121,16.2161218177172,16.4222617011106,16.2987215982259,16.1450885580601,16.3037667824855,16.121100620672 +"Q9U6P7",16.9820813883542,16.9172335625634,16.942057120204,17.2054804615464,17.1412632278101,17.1900362244667,16.8920031316329,16.9909026232033,16.7412574762886,16.9281902166306,16.9972349927736,17.1194249835842,16.8484299039316,16.9570564569064,17.0118960358571,17.3609041904765,17.2133984293153,17.2124174521716 +"Q9U6R9",20.6365834896428,20.6417447368419,20.6814339158819,20.7683565989515,20.6966876316881,20.6651223024639,20.4658353248754,20.4938964830624,20.4681439449556,20.6164162997548,20.5657060577483,20.6887396762097,20.5715389406159,20.6037478883596,20.5550846883005,20.4528150289837,20.5097628851239,20.4530211550127 +"Q9U915",21.1998130076728,21.1758541186137,21.1168713263248,21.2582454970135,21.1673567244499,21.1987880504935,20.9981967398666,21.0266705947592,20.9997712176945,21.2033238298881,21.1588609799587,21.3067368571432,21.024638304027,21.0031473325205,21.0195929705671,21.0033786932774,21.1557063214434,21.0458356495222 +"Q9U9P7",16.8060030655547,16.59155875673,16.6638249871905,16.7273922237754,16.7620882893471,16.8338888976236,16.5551570625418,16.5298409232445,16.373178401802,16.6178136961253,16.5683020262171,16.4904084899323,16.0858364814294,16.5895764965787,16.6430088964795,16.7973638090486,16.5481998463577,16.5852566654472 +"Q9U9Q2",15.6636565316042,15.5741313545038,15.7310284732071,15.7553757929468,15.68280957462,15.7419918569022,15.5433320253113,15.5522686504706,15.5235980822411,15.5599254361135,15.6508771586195,15.539049139427,15.3589911430518,15.5487580547685,15.3845096299234,15.5741662653446,15.4466024013899,15.5352700126715 +"Q9U9Q4",17.6535177220415,17.6054927874021,17.7585510936414,17.752270875443,17.5858273421563,17.6321404213813,17.9531769578145,18.0564090411059,17.9709066463821,17.8485654731626,17.8351642870491,17.9084544394491,18.0594641896355,18.2174085925081,18.1200987435038,18.2218946471925,18.188587815068,18.0987385209319 +"Q9V393",15.82847426767,15.4580137501647,15.8444012008601,15.5409912213845,15.6566188236521,15.7242394181337,15.9083720493703,15.7537042725701,15.5537717648757,15.4754883607606,15.6579782221316,15.8889175200549,16.1650993156755,16.3451256584954,15.9787667959345,15.9415559963974,15.9885404842443,15.8698845113993 +"Q9V396",20.5566612629266,20.6547735000707,20.538254913677,20.8315253826226,20.7863455250925,20.6737147704745,20.7854404910359,20.7608251564733,20.8149670767755,20.9313890214145,20.9087581328589,20.9412303898229,20.9697481758535,21.1082468983416,21.1215866830565,21.1564981475445,21.0123132685605,21.1415086475913 +"Q9V3A8",15.2649064448038,15.2827471300987,15.4250066100162,15.1628400910159,15.0193068835765,15.1092968559158,15.5388535710568,15.4833154327231,15.6663627977529,15.5784865563718,15.6166838479078,15.4536009490052,15.9197559073238,15.9235661545668,15.8561233033106,15.866401594081,16.0056247157802,15.8208536486526 +"Q9V3B6",13.6653296509819,13.47664989618,13.4209411071511,13.7860148574813,13.827155901131,13.5023814176606,13.2327203419299,13.21038288717,13.2504882051208,13.5108925429786,13.427957844298,13.6209963609147,12.4447308415342,12.626206467991,12.5980712412241,12.8989259825065,12.9702612206425,13.1457358853411 +"Q9V3D9",17.2308406746521,17.153420072717,17.1803449516731,17.2837571116476,17.3612749246705,17.3027637822431,17.4596545371301,17.4828083890302,17.4710996693032,17.5170487391187,17.5762652410558,17.5003431400108,17.4876582442593,17.4781108365128,17.5766261989609,17.6086368764631,17.5357167192845,17.5564184410798 +"Q9V3E3",15.0707089040176,14.8533180122282,14.8300001203286,14.679566128264,14.8720632975331,14.8054459944039,15.1886684092471,15.0637585142427,15.0232709474702,14.9360150790646,15.3000850939936,15.4090436134748,15.2827168590667,14.7685651002594,14.9380980932386,15.0075439930445,15.3074293544475,15.1593606037884 +"Q9V3E7",18.7048352796818,18.8726569828544,18.7768234913368,18.9971459334089,18.8265218880176,18.7158013108818,18.7348514357005,18.7758917840419,18.7839215504302,18.5124162480462,18.7293555302487,18.7362334600384,18.7732390823245,18.6087069290472,18.6953113045623,18.6265055844872,18.5358604494393,18.6409024463997 +"Q9V3F3",14.4661390202834,14.4307961464179,14.700984920499,14.4218230644533,14.4723144214294,14.6916884490636,14.7818007305208,14.5603335739481,14.4384864045457,14.7410095007334,14.554156122137,14.6128908607116,14.5210175059287,14.573584512964,14.8733272133425,14.7125334120478,15.0531384570711,14.3269453858051 +"Q9V3F8",18.5207972121774,18.5792595015629,18.4485518212087,18.7656563354752,18.7188649128313,18.6375068004209,18.3935580156483,18.3832123583744,18.4104511490561,18.5634397380482,18.6646305898155,18.7273055095963,18.4005402827671,18.3756519311491,18.4698737476479,18.5950037636055,18.5173760539887,18.5453063197918 +"Q9V3G1",20.9574913918437,20.9692533060904,21.0463582805517,20.9196472262281,20.841517226532,20.8724860244769,21.3856381365729,21.2778818523966,21.2820875123752,20.9436148309632,21.092348365331,21.1655515402871,21.3344561314479,21.1256027965725,21.241467193538,20.9822280280943,21.2164721982278,20.9151251939212 +"Q9V3G3",14.7498123508754,14.8016010842736,15.2347237081373,15.067250440136,14.9011960103611,15.1522059083632,14.8145282281316,14.9289744889351,14.8144100484388,14.95567778378,15.0220164819649,14.6346927280019,14.4772670050831,14.9110131281034,14.3820131106434,15.4231411860442,14.9228758004122,15.2696314904657 +"Q9V3G7",18.0357377060616,17.9175243259521,17.9628275124477,18.1520981964117,17.942075231145,17.8395888697436,18.1742969717285,18.2348743150638,18.2164533013367,18.164128971957,18.1190700332016,17.9869344358997,18.1462011514973,18.3727970440165,18.4196755032096,17.9590082215057,18.0451302697828,18.2059915965245 +"Q9V3H2",18.4217135615246,18.2228757545137,18.261277184792,18.2585354286601,18.2987297684127,18.4454392006927,18.4209914581732,18.4260750442756,18.3485947747025,18.5228423350224,18.690394428281,18.6454921501512,18.4198061575646,18.1520332694717,18.3011726337067,18.5275979309865,18.7813786069768,18.5695109278863 +"Q9V3I0",16.270510718071,16.3610447814721,15.9365926369387,16.144120108976,16.1134073741615,16.0733713029527,16.2994418454133,16.1559949799124,16.2703530492877,16.7308835550246,16.5299741549844,16.765682592653,15.769745875261,15.62358670256,16.3228915810277,16.7955102357574,17.2262043454131,16.6413211756437 +"Q9V3I2",17.4209595052947,17.5091271682468,17.41674761004,17.2554309117402,17.2897499359601,17.3303632208656,17.4385752390348,17.5943161008091,17.3517651508719,17.2442939818162,17.2379072854865,17.3181095223739,17.7853744144062,17.7067108219584,17.817257200951,17.796830528139,17.6036532679701,17.7072218753287 +"Q9V3J4",16.601882343259,16.6145772246332,16.6871730122917,16.6379920089658,16.6305889677252,16.7138477376107,16.4616533476509,16.3473342900172,16.5240884193049,16.7072386957492,16.6396564325399,16.5586715358783,16.5950062493552,16.649967607028,16.6739516734936,16.8167361058693,16.9383842289057,16.66277637227 +"Q9V3L6",15.6653847611187,15.743115072793,15.5145533075272,15.5644245898462,15.7451923215981,15.7484527300634,15.764984064828,15.9345426356192,15.5982181131763,16.153564116353,15.9159956536649,16.1694868130161,15.8986648633481,15.8755034031532,15.8817423645037,16.0337665927044,15.8664399013699,16.1683356599117 +"Q9V3L7",17.8925386541792,17.569218838477,17.8242175016384,17.6835095098901,17.5167558571763,17.7010880775743,17.658927463537,17.6407344790212,17.7418721666924,17.5080500063721,17.5753670077196,17.4960272282928,17.8332457481817,17.932695684092,17.6986022398515,17.6822821453749,18.0237816610489,17.7967463134857 +"Q9V3N1",18.3062728360488,18.5591308478896,18.6369263274665,18.4025229996363,18.4281703842677,18.3033413587319,18.4659148703392,18.4304495354167,18.4448274092942,18.2909718222649,18.3158162098613,18.2844244234592,18.4326232706108,18.3371101497013,18.4367832248632,18.4675655884254,18.2951942601889,18.2595686435105 +"Q9V3N7",20.1712970464286,20.2189788925976,20.202747175545,20.3201989306133,20.2838408858751,20.2171766830674,20.6232035555411,20.5489706012396,20.529296211367,20.6424585932895,20.6720917977283,20.7573428093381,20.8785614481985,20.7628714354058,20.8726393806782,20.7762221018465,20.9251880630711,20.8327394159219 +"Q9V3P3",19.3592749242499,19.3075026927143,19.4681582082291,19.356743110406,19.299155182497,19.2444001529258,19.4981897705887,19.5242662662654,19.4580647606701,19.4079686388995,19.4476180353183,19.4292360452954,19.4007860023218,19.4865904785801,19.3518434928214,19.3353583253991,19.2931881164899,19.4066181119234 +"Q9V3Q4",15.8270269045078,16.1222283948026,15.9079368418089,16.1696351793875,16.0712216307697,15.9984335164619,15.8250075356357,15.7811319735233,15.8891762549042,15.9518106008682,16.1935586709807,16.3139406151203,16.0745454866907,15.6131828456355,15.8758241001299,16.089843797659,16.1565459890371,15.9525581763238 +"Q9V3R3",13.3509949147867,13.7334427605223,13.6685187075346,13.8877872616729,13.7822807286812,13.6651897977827,13.6899590870833,13.5125035113944,13.5607417136879,13.5898396918256,13.478210554957,13.6536471254484,13.5655492571194,13.6792847132732,13.6805549248072,13.6091250338201,13.5075329774799,13.4646029770473 +"Q9V3T8",15.399256235447,15.688643993752,15.9235238842652,15.7517944158728,15.6249400742435,15.8373159411125,15.418048969182,15.3949837338183,15.5561447133783,15.7517892478416,15.851994619222,15.4721209401455,15.3599278681185,15.1809184091553,15.1346242539342,15.8011050654073,15.7404409716782,15.5581920690336 +"Q9V3U6",21.1326694976545,21.0221045394251,21.0012947249035,21.1550919524925,20.9081807436899,20.8636748241222,21.0378530302109,21.1547208311728,21.0833943404033,21.3072878647045,21.2650953172136,21.3811358911258,20.8318415893991,20.9309689288173,20.9920300123071,21.0738365307771,21.2575101049198,21.2170506723767 +"Q9V3V0",14.0494017102247,14.1483909302172,14.227935193179,14.2802627913962,14.4194497231624,14.3317681374694,14.3892219155658,14.3558571437487,14.1979534005455,14.7011826833762,14.643861854299,14.8158452576933,14.1208206769052,13.9367298141947,14.0213192105435,14.4474146385822,14.4840149504282,14.3934832166195 +"Q9V3V6",21.4896468026207,21.5078997543291,21.4926052741356,21.5328490795023,21.5497337801911,21.580944237776,21.5547608485018,21.6355393361385,21.5709853208065,21.6618150144306,21.6477615899309,21.774941524264,21.5209490522697,21.5277240293385,21.426816060784,21.7033154403588,21.5946777477559,21.6170438199181 +"Q9V3V9",19.5588760981403,19.4978986190327,19.5811762310271,19.4485991862449,19.489395074142,19.4882048008455,19.4959314415006,19.5171358472948,19.558715502987,19.5620697652664,19.5045556805973,19.5733278995454,19.4237225634232,19.5643625213293,19.447498562129,19.5642947290274,19.4801460412068,19.404570787069 +"Q9V3W0",21.0015663271302,20.8903051070197,20.9131291992039,21.1378695711851,20.9529449242604,21.0483894410994,20.8794102901367,20.8017656481681,20.7769637064929,20.7244983493859,20.846830494326,20.9218469386047,20.8204701926722,20.8390755980692,20.812281267139,20.4482156871658,20.6811086458324,20.5394198651359 +"Q9V3W2",21.5691626735255,21.6080402448763,21.6222899271596,21.6615929257453,21.650390391039,21.6434984685327,21.6292449174659,21.5104690453105,21.6010384314626,21.3750390138611,21.3781821722006,21.4474814239696,21.5960986047753,21.6233323555168,21.5871866956749,21.4859958344035,21.5467197608332,21.415639022977 +"Q9V3W7",18.147948975687,17.8677566781036,17.8988611734973,17.9244092774817,17.8117726590892,18.0274431217043,18.0664636926798,17.8962725905525,17.9012048454824,17.596105912455,17.7822689815988,17.9340745081034,18.1656334257613,18.1746329561621,17.8658875361641,17.5721429804423,17.9400003990009,17.8452330795557 +"Q9V3W9",18.5198912807925,18.4918824258868,18.6498720851717,18.542112496642,18.6134193989558,18.5175043313301,18.5670019329088,18.4435624978985,18.4584921089039,18.5064414157481,18.6246627900127,18.5591201941783,18.3735723038123,18.3710116198563,18.3959619529128,18.520134324524,18.4846150218175,18.448203081931 +"Q9V3Y0",16.3569767663861,16.4018494008564,16.5697144799155,16.4400262044441,16.5626703765836,16.400162560468,16.3086358235518,16.1434033593559,16.3245617939236,16.5756818719794,16.350819299784,16.3205270675103,15.9616899056014,16.1208529777883,16.1824256131183,16.3366944594884,16.400109617083,16.1823135165155 +"Q9V3Y2",17.9329313662938,17.9812934350225,18.0262037469584,17.8075185857625,17.9466394715358,17.8768033457125,17.8887025314443,17.8858817786102,17.9259611841687,17.9027343937452,17.8512730994396,17.7328880255906,17.721326978882,17.9039936390606,17.8352047066441,18.0113264483045,17.6954588807635,17.867479295358 +"Q9V3Y4",14.391170134245,14.1023407792647,14.3160692698536,14.1589934379962,13.8386282500886,13.7160115516926,14.1897433497778,14.0471876749401,14.1461013977002,13.9359679006905,13.9399150552487,13.7581065051954,14.0140051760442,14.5208050175158,14.5557449438036,13.6981284496643,13.9391316713601,13.8959747801727 +"Q9V3Y7",20.3496993595087,19.701282104131,19.8982919958015,19.5011483886623,19.6606299090086,19.6223237844024,19.4705642727966,19.6303424196118,19.6462817181633,19.2979511252754,19.3963550238995,19.431415442691,19.1442845879858,19.4301037911156,19.2760138555189,19.3900584999627,19.334992986425,19.2793794376145 +"Q9V3Z2",16.1027266541779,16.15580503346,16.1864874707295,16.0373866369981,16.0410427029408,15.9676286270361,16.2408898489881,16.2822073383752,16.2689755184778,16.289595422536,16.0800963245715,16.1383972720467,16.0032068956782,16.3471147786211,16.3864515809088,16.4332662648789,16.2008055452886,16.1591312540583 +"Q9V3Z4",18.7678214403397,18.6358001869998,18.6936793422721,18.7857754977096,18.7354743468611,18.6945532490271,18.6769287793596,18.7344132926012,18.6334695187826,18.946255494361,18.7459917899753,18.6448993575398,18.6810213325184,18.7986964009115,18.9638686750676,18.846718126498,19.0541446534375,19.0740505280973 +"Q9V3Z9",21.5412350162071,21.5779423406194,21.5566170456576,21.7856645923047,21.7728756894394,21.8148390391194,21.7223252138911,21.6211688324676,21.6403121334071,21.850997706549,21.9595413407608,22.0950241540427,21.4759507075805,21.3766293499619,21.2957331157744,21.7892040013422,21.8572196846257,21.7628517498735 +"Q9V400",14.7560116682493,14.6076066448923,14.792423161006,13.9321461448634,14.148364336811,14.223735129723,14.4182389381402,14.3205008350475,14.2197177783797,13.9492435738661,14.3011530080167,13.8622295133714,14.5600474500741,14.5252356523841,14.6094194434298,14.1342679290009,13.8470952270425,14.0424306782842 +"Q9V405",20.1206806644962,20.0709940544646,20.166751904953,20.2659125349712,20.1772380101039,20.2998187848801,20.1380771861939,20.2060088264633,20.140972932143,20.2518889913454,20.3231722235148,20.403904067282,20.0750264315272,20.2072419248243,20.0780544699716,20.4753940774287,20.3423248465917,20.2374777267329 +"Q9V406",17.1773620143214,17.1845596766887,17.2096283535449,17.0274364438493,17.0826344647277,17.2595312640189,17.1217809694161,16.9396913507287,16.9524583143546,16.7630924204549,16.8889498420819,16.9440333756825,16.836494527442,16.8853915207385,16.8175765117692,17.1606865093951,17.1056260299133,16.9036250655087 +"Q9V419",16.5168089180328,16.395359906973,16.5978284031084,15.9279189413911,16.1192100025096,16.1951922564579,16.6039391258445,16.5496558112335,16.6306758587878,16.3675261836321,16.414366330942,16.243304124584,16.8828053537919,16.8585533554792,16.9104309074139,16.6236954808359,16.5855485963911,16.3452624531764 +"Q9V420",17.3929965150915,17.2263070554285,17.4597626646864,17.4535417686252,17.5622468202292,17.5000160087983,17.5808796624676,17.6314347514332,17.573967385944,17.7154183981817,17.5853302998706,17.5489350484196,17.5795211180069,17.6641927963501,17.6119344286017,17.4164199604984,17.4692656995595,17.4441618864213 +"Q9V428",18.7944078616197,18.8105457535342,18.8622667911283,18.674498469776,18.6998517052619,18.7795175369012,18.7671395963631,18.7568439866484,18.7270957767297,18.6670320184254,18.6983402307047,18.717870235786,18.6359850956467,18.9116514577499,18.6755970322582,18.8670056690554,18.5288355769872,18.643721338083 +"Q9V429",22.3962807730213,22.3260076041619,22.419799460216,22.3845610168933,22.4229866596197,22.3475729895617,22.3227650546391,22.2518715253483,22.3964376057833,22.3080608371205,22.2838590666581,22.3818887852611,22.2999246417655,22.3894902654999,22.2280965545894,22.2880984230881,22.32547562524,22.2258953511162 +"Q9V431",18.5494427424964,18.6186923451307,18.6621056683209,18.5333777169923,18.6043070797236,18.5999645135022,18.6071624684493,18.5943826225463,18.6140746701979,18.6508827070562,18.5062886012415,18.5569874431195,18.5679967285356,18.4818094797581,18.4679770034809,18.2693453573258,18.3727275924555,18.2770984222341 +"Q9V434",15.2105981361137,15.3249576145894,15.1274510111469,15.0370426919797,14.6736740409839,14.7401496113409,15.0270000423868,15.1218652602589,15.1576358981624,15.212161558211,14.8336464196808,14.9747898686041,14.8109493577068,15.3099197627779,15.176314115641,14.835134744518,14.8688234326251,14.9565460260208 +"Q9V436",19.0263453275192,19.0712093767978,19.0608684968864,19.2095926249528,19.0935633121678,19.1142208697061,19.0975253081341,19.1783056342693,19.059002778715,19.1815964470881,19.134138715506,19.2282603679745,19.0187414855443,19.0473292111326,19.0677705043669,19.0862738843946,19.0955288277596,19.0899520599841 +"Q9V438",18.8934365090455,19.1153740954773,19.1146852772259,19.0923772750503,18.9582275621564,18.9681667605647,19.0669470343962,19.053360977927,19.0369261831009,18.9744660146942,18.9986527273034,18.9941261060415,19.0291042406028,18.9583584413247,18.963196584516,18.7699066096152,18.7422638792154,18.749136771955 +"Q9V455",19.1664427025087,19.3905472271794,19.4995359057116,19.2662743579552,19.4152377134556,19.3527212035667,19.7554846026451,19.395600179688,19.4015885174164,19.3065101623013,19.2986425429383,19.2761148404595,19.6602913193141,19.3146676140378,19.2678666561031,18.9215934706315,19.2619013380567,19.2787694920983 +"Q9V470",19.8461283632269,19.7995388502359,19.9807048620197,19.8989080819073,19.969212308128,20.0355249762371,19.8697619889186,19.8896709627868,19.7375664204807,19.9827091151958,20.0331734836661,19.978269197129,19.884724774402,19.9257738054976,19.8541280296662,20.1360341630658,20.000897076402,20.0320730011837 +"Q9V4C8",17.1185386906298,17.060162408409,17.3232302879953,17.3343596937697,17.3181961096546,17.2965442850224,17.1018801254169,17.1099835456041,17.2125237619682,17.3298460898234,17.3236987988516,17.2792105313151,17.1959509490219,17.1650886255828,17.0493338861491,17.352142945259,17.4555890058185,17.2718757414705 +"Q9V4E0",19.2262943719809,18.3486467193495,18.5192302656344,18.0988035589097,18.0707776274561,18.0177159726889,18.3886992063304,18.656548113685,18.6284682888209,18.0718993322203,18.223838674633,18.2686940963485,18.7383232013002,18.9861043359047,19.0273081456251,18.1906353639725,18.4287395636858,18.2532382655962 +"Q9V4E7",15.3352149689414,15.2063410291533,15.3426911815541,14.8642274470838,14.6681234072811,14.9643727755399,14.5729638649246,14.7664546094804,15.0000877057977,15.0807313947854,15.2101070071896,15.1833295334957,16.4173362683608,16.5304902068846,16.1607118581175,16.527256780805,16.4162144649119,16.1465376703959 +"Q9V4N3",19.7135559666034,19.4229361086604,19.744762015992,19.9024435952956,19.7451779412655,19.6841108705138,19.6526621700049,19.769833315109,19.8630956965768,19.7720300984841,19.6378587730528,19.3784670598463,19.613157806997,19.9350889748452,19.8777506249162,19.76509247113,19.908046995582,19.8707558406699 +"Q9V4Q8",16.8173230199952,16.7542368821487,16.9234235772853,17.0512202901398,16.9256048816981,16.9805729626392,16.9830095440412,16.8976256626506,16.8588670473345,16.8898357730432,16.9311338676592,16.9231001751398,16.984556710718,16.9384156245545,16.8400579662131,16.6512257046225,16.9301541238489,16.8511493139482 +"Q9V4S8",17.5525308055135,17.1571756596877,17.2607669098138,16.8627053133772,17.214765428091,17.3340015749925,17.1639817804407,17.0913257675085,16.9701304712217,17.2977497178188,17.0815889702518,17.1817954022796,17.0315326560616,16.9892907310858,16.8579600903103,16.6726967592582,17.0470504758452,16.9765425838522 +"Q9V4W1",13.6993310646171,13.6608776482707,13.7060582119824,13.88326126246,13.2265212457195,13.6593247892384,13.6390425424063,13.7206064577479,13.6707934851701,14.1963360712376,13.5349488522756,13.7433832907913,13.1648510346048,13.8674372686655,13.3939222523834,13.0342848329947,13.6067153356412,13.4436247787549 +"Q9V521",18.3180302892684,18.4145680422536,18.5626653301701,17.6719827511213,17.8645317185893,17.6949708897121,17.9104804201986,17.8350264559541,17.8073406326504,17.360242745855,17.2845479706364,17.1757077558706,17.6165009460813,17.4534751450944,17.5146561533696,17.1524522909502,17.1775401109471,17.274348681702 +"Q9V535",18.5163678846385,18.4598728995802,18.4371338024956,18.8049477924136,18.590171666409,18.6127702169442,18.4136588390873,18.4510137068881,18.5504824563157,18.6206859286366,18.6635454572767,18.8672164477281,18.4823110451325,18.5814977329701,18.4179655290555,18.7714065478288,18.8632765746133,18.7238095851982 +"Q9V564",14.0916878868851,13.9432666072547,14.3000638671317,13.7842448476937,14.0658646721208,14.113582802212,14.172865547257,14.1069010062818,13.9215413586315,14.0981529994582,14.3420722480156,14.1620927700297,14.1388775813894,13.9106732508035,13.9766683050362,14.0830288780567,14.0000799562635,13.8949086376988 +"Q9V595",18.4234725617536,18.5545794813656,18.5944734844103,18.5532023544323,18.568351538638,18.5893746784777,18.4356856055789,18.5546036299431,18.420374495618,18.7221429404554,18.5668743669364,18.5283231100771,18.6020203256097,18.4471534157911,18.4629265001633,18.364787071879,18.409748427035,18.5058385909627 +"Q9V597",20.5431192631458,20.1871568171223,20.1517772971479,20.08201131843,19.7882431463267,19.8879585440518,20.206162519162,20.2627236333971,20.1733835625745,20.5463072818707,20.3343110700508,20.2935850208019,19.6648636812388,20.1438053663447,20.3278009976621,19.6988956491889,20.0251196797946,19.9068542907981 +"Q9V5C6",20.5647164272133,20.4464162564363,20.6198909645755,20.6119100224617,20.5920760439626,20.7352559545711,20.6653677598544,20.664007622928,20.4786740852289,20.6407821235548,20.6863099990778,20.7596145922586,20.6931919686162,20.6747101020963,20.5200516957382,20.5992177833538,20.7116660605531,20.6616987926819 +"Q9V6B9",15.9035223533628,15.9395842416197,16.0762915632941,15.514652137871,15.8298923928608,15.901500327101,16.0807849889271,15.9664093605148,15.9457548699511,15.5898864855151,15.5556506074798,15.7187113412822,16.1887307181232,16.0452076287867,15.7631107786312,15.7726130516176,15.7134455041549,15.6448208551572 +"Q9V6U9",21.9438377714519,21.9015687818211,21.9484409331087,21.8858637205332,22.0536196606128,22.0843125875647,21.9294391306816,21.8188933331227,21.7343540714171,21.8182829635552,21.8288545798543,21.8874131377058,21.8686123204966,21.8643811986802,21.8355699903782,21.9090474200677,21.8877657726951,21.8649926066116 +"Q9V6Y3",15.1600094286012,14.8443148253455,14.9588999540452,15.1900183426539,15.0849921151899,15.1856571567637,15.2365090684891,15.3501013772109,15.3600899001118,15.2596870163571,15.5864335842498,15.6174264841465,15.4635208022676,15.1534517496276,15.0930778731009,15.2224199075688,15.512870914314,15.3170131977697 +"Q9V773",15.7336086082225,15.6693080396285,15.7528641140687,15.6638004292426,15.5030561873095,15.4608832116768,15.5766026451752,15.5625770911438,15.4491917037385,15.3738313774293,15.6168906924697,15.5919293618493,15.6126809398496,15.5475591036662,15.7993702123932,15.3366576146288,15.3977905003303,15.2429430108216 +"Q9V784",14.7379660858866,14.7527101461535,14.8538182198287,14.1183397231188,13.9972484685956,14.495816994729,14.1387631985781,14.3517167063021,14.16469212977,14.1904289143255,14.507649559439,14.0455554160213,14.3533593396448,14.1691231548699,14.2195257823697,13.7385843560286,13.4989935822222,13.4980330748636 +"Q9V7D2",21.4541483931922,21.4751756287313,21.4855637725263,21.287775602767,21.5403402693258,21.5614342435152,21.4381445032364,21.3850798122051,21.2118619737671,21.2577019333224,21.2999349850309,21.3575581972419,21.4919967238421,21.3104946959905,21.3417718095467,21.1783506963946,21.0970924614712,21.1499278561576 +"Q9V8F5",16.3456151887638,16.2302545787244,16.4396923677967,16.2034400774867,16.0907518498101,16.1298939355602,16.0760957269684,16.1075533851954,16.0517040132509,15.7182896565095,15.6228647746613,15.7233605817578,15.726892919003,16.122593507413,15.9025208844344,15.977598222874,15.8739136958013,15.8007600088053 +"Q9V8M5",19.6923885970604,19.4958868819946,19.6678091596866,20.1930769102437,19.9885441374399,20.0674862060626,19.5635347992901,19.6114842937886,19.5589387211891,20.2064982989678,20.0960227884456,20.0694602964137,19.5325570986386,19.8378651187113,19.8128323717525,19.934793945756,20.0930464295767,19.9463228948521 +"Q9V8Y2",19.9922787888882,19.8100072474256,20.0654430378919,19.7213738137063,19.7570358506916,19.6314009970893,19.9830798195338,19.96760985331,20.0708441677548,19.9631196558354,19.8405225528985,19.9897490533863,19.6371503262103,19.9362121745453,19.7513353402292,20.1876960557772,20.1733107810803,19.9759258635998 +"Q9V931",18.151818262156,17.5731009404866,17.9576527592311,18.2401703449972,17.6495446935739,17.7617311891529,17.7869404992276,17.539546568444,17.6877456745669,17.848628727189,17.4590963154602,17.4129372672183,16.2782342694785,17.7860912723478,17.6808733337369,17.4772631187004,17.7756754314361,17.2821149978426 +"Q9V998",15.881353797285,15.8686994729384,15.6659946160646,15.5827292411607,15.8026466314801,15.8214226183589,16.1712630532949,15.730974945104,15.7691941520585,15.7743251062708,15.9001200583104,16.0921397681024,16.2535408309243,15.6268933221407,15.8354648067082,15.3742790823402,16.1081566813024,15.8532751499833 +"Q9V9A7",15.3330064808881,16.627324457502,15.8800196423544,15.6268167455828,15.355146693203,15.6711498935259,16.2652668732688,15.9569523557314,16.2393973474014,16.5480826696295,16.145007839455,16.6619796433166,16.1785118001379,15.9469695895536,15.9299154995764,16.5142644088387,16.4345480429009,16.0834869521711 +"Q9V9M7",18.2906480519303,18.1958515005644,18.3697439128444,18.237451730251,18.1115104352053,18.209261861169,18.525120778499,18.6788391731175,18.7095865909952,18.5548871108378,18.3975579007782,18.2115609356949,18.391469125337,18.6581883537025,18.6233111732615,18.4420213207387,18.3996507542258,18.3181336436287 +"Q9V9Q4",19.1462231548689,19.2729499234616,19.3994122339979,19.2845171632749,19.3565156566985,19.3418918501496,19.0229420055721,19.0531120820742,19.0241078197344,19.1201869729805,19.1386118211451,19.0001108855374,19.0531727279869,18.8706548619257,18.983791214145,19.1322175992423,19.0674152786205,19.0099456203613 +"Q9V9S0",17.3191772377296,17.1014500211238,17.14063162698,17.0738491152312,17.1668468185222,17.1399075180569,17.1305455555769,16.9910098961109,16.8593358853948,17.0492719784861,17.3163654030393,17.3042815591331,16.8626867239126,16.9877166884356,16.9116130048321,17.1785462046573,17.0506879883618,17.2583072211968 +"Q9V9S8",19.9171093885844,19.7856643224989,19.8320324562163,19.9363501664338,19.8150156161493,19.9056879307952,19.9865275313507,20.1303370010454,19.8440405168946,19.9775339948112,19.940907409777,20.1569404576878,19.8731477238143,20.0569308005026,19.9993305246698,19.8947790840308,19.8565927390519,19.8474160027616 +"Q9V9T9",12.8086668615879,13.307035977019,13.4537832363322,13.4774155027416,13.3960259751261,13.1359497336677,13.461956201048,13.1763323715647,13.5524591814563,13.6760129315229,13.5844748487744,13.5250971818222,13.5822675698038,13.3399715194166,13.315760865945,13.5982645392252,13.8007429140285,13.621533406706 +"Q9V9U4",15.9893398150553,15.9460996428887,16.1151205778781,15.8203398269134,15.851724352654,15.9566350910979,16.0878459134654,15.9979751078388,15.9942844388143,15.9028663527887,15.8006437943208,15.8196058620637,15.9572321282473,15.984439715905,15.8840294114303,15.7753204036896,15.9520618265524,15.7632690588753 +"Q9V9U7",17.7281142689058,17.75317175205,17.6924634301154,17.6257360744361,17.8710103595788,17.9466016668578,17.8739202388323,17.83016792604,17.8062146308808,17.5695101496893,17.8772608622434,17.8846925914558,18.214372820531,17.7644173800615,17.8154319439229,17.965997985551,17.8816232579717,17.8322472747129 +"Q9V9V4",18.8253144924069,18.6725399588639,18.7767005089778,18.6000947389293,18.6732412038032,18.7295350048549,18.8091390415071,18.8668227982001,18.7833899167603,18.5248492318108,18.5207739246687,18.5310305536191,18.6146142138393,18.7373359906456,18.615852930921,18.4044859652173,18.3077838075291,18.3419887685776 +"Q9V9X4",18.9559058100852,18.9436911257017,19.1256557070729,18.6272517436897,18.6391395710225,18.582882287454,18.8363722759514,18.9634486745559,18.9170801264062,18.4056397881105,18.4298257696284,18.416113316906,18.7715168040453,18.8016567600525,18.7454522297092,18.6724640357447,18.4913885566657,18.4819667900786 +"Q9VA09",15.8570351647205,16.0705913317932,15.9756876801468,16.1659583354334,16.037044617512,15.9928523992616,16.5488738818969,16.4502086441574,16.5064012126217,16.6025934447708,16.4180389719027,16.568632811843,16.7082074938908,16.8206790117438,16.8407066202036,16.6508099411484,16.7369156847518,16.6491975377841 +"Q9VA18",21.5233155674981,21.7148417186841,21.5110612226277,21.6903238422792,21.7024649527536,21.5573296112213,21.6162405155402,21.3714284942174,21.516615385923,21.5313115431166,21.6484078809,21.833078025725,21.6329533012859,21.3532080954621,21.5114665371841,21.4356099198413,21.6394035475441,21.5002039068802 +"Q9VA32",16.9250173015144,17.2438095879401,16.9818026370797,17.2975796099619,17.0421748329521,17.1132020147753,17.2904572731261,17.2932003457995,17.1814134818358,17.3121616096523,17.3231021666511,17.5692370850945,17.3424535821063,17.017947333195,17.1947154155461,17.2295927504962,17.4770278603195,17.3568914925259 +"Q9VA34",14.4521539599783,14.4988629834654,14.2780019221281,14.7880554025134,14.6428720286867,14.6341221309519,14.5974085706875,14.5003386047324,14.5380449225727,14.3636336751243,14.5130606734159,14.4568373058613,14.2202416580448,14.2485032510382,14.3189932920257,14.1633063386378,14.1811620636477,14.3588000314464 +"Q9VA37",22.0681712530273,21.8968678093208,21.988840266095,22.0277297827159,21.9012878884869,21.9742470675939,21.6112141815917,21.6677648216878,21.7320906886496,21.7271988990529,21.6434664692109,21.6644533263555,21.5289750339798,21.8585422343283,21.6613436288341,21.6718825359028,21.6672424632356,21.6141967087423 +"Q9VA41",17.2146301076293,17.1640200608987,17.0620063381381,17.6744113634491,17.7017636378899,17.7657268989994,17.4442516502356,17.2866173198118,17.2968082482042,17.4191835246315,17.5546124728579,17.6048004667979,17.1503427499862,17.2244808336498,17.3318663616881,17.8584424159801,17.8297674868036,17.7000534980839 +"Q9VA42",20.6622490714348,20.5270781959592,20.6969158827852,20.8013159499807,20.7061525164714,20.8664677122731,20.1953779063996,20.1951885027115,20.1631832981716,20.2123227703335,20.1445473627042,20.1857133402954,19.570588495318,19.9241504836517,19.6893927471959,20.2527578699598,20.1974950019284,20.0929390827053 +"Q9VA76",15.1457134186414,15.1157163825658,14.9742365719895,15.0738947415192,15.3466772079667,15.4527224717389,15.3473273780738,15.0606855818151,15.2181949828383,15.2433707105716,15.2561986362614,15.3508790068832,15.2426330543005,15.2602270270995,15.2138440667822,15.2184480580756,15.2318825254737,15.0615102609499 +"Q9VA97",18.618254851685,18.5466891990269,18.7696635730749,18.4049336236436,18.5463079481624,18.8243415421459,18.5379534697993,18.5666433169155,18.4349331157153,18.545803011382,18.5439210076646,18.4340666262871,18.5834104304071,18.4320019072465,18.5387072379177,18.5729000283886,18.6276920362897,18.2615433201646 +"Q9VAA6",16.3169565901311,16.3593453207515,16.2965563517037,16.5397383100722,16.4248833609454,16.4489939587591,15.9649595692392,16.0392105716871,16.0526956984777,16.0749320602159,15.9906003945486,16.1633942689624,15.6131740192677,16.0390313421529,15.9531892901877,16.6030578774033,16.2597474362439,16.1979888582387 +"Q9VAA9",17.0479792935668,17.16627576386,17.4255328279049,17.2631421282166,17.1401223163478,17.2063919696866,17.1199645785723,17.1898768321329,17.1077505226734,17.2468805700378,17.0666923925002,17.0132928163826,16.9282358892918,17.0680995376739,16.9268760251424,17.0060568925002,16.9811925096706,16.9324151903955 +"Q9VAC1",23.2662957998193,23.1691111517281,23.2087214717339,23.1161364202057,23.0935901145202,23.1152029128777,23.6129741679093,23.5955104850101,23.5327966489759,23.3852193590418,23.4094398495744,23.4636100729126,23.5404357511473,23.6074907705989,23.5341474622221,23.294895265276,23.3408143919677,23.3614781946773 +"Q9VAC4",19.2334746169151,19.25188634764,19.3329902397126,19.3734710502311,19.414045233106,19.3294618886054,19.3989238936298,19.3419525079369,19.3918758856175,19.4276137890906,19.4383021051977,19.4320946780694,19.3958718245812,19.4260687843771,19.4722731399557,19.4989792890113,19.4560794852015,19.3696386314986 +"Q9VAD4",13.0526789348817,13.2505058872108,13.4364558156328,12.9331156051673,13.2187139048691,13.1291394966334,13.074396083138,13.466462558442,13.0907810732448,14.0733093569044,12.9897296407478,13.5256036553594,13.5670947699279,13.7368065994892,13.5868634902299,13.3178778575215,13.3562540167819,13.2496290764406 +"Q9VAF5",15.7585464035037,15.7491989908731,15.890994067315,16.1576373193607,16.0513464920021,16.023589269672,15.8553145585747,15.9408428778519,15.8885429902805,16.186671346913,16.301513295685,16.246371677215,15.8535176622797,15.8634052770345,15.8111619120868,16.0578265967739,15.9632069539591,16.0088539708363 +"Q9VAG3",16.7820472190392,16.5594459862489,16.5324455425305,16.7958141019557,16.7239291343846,16.6705211241372,16.9813154669095,16.9148281107351,16.8066842266017,16.563617096124,16.7570894992488,16.9611412438074,17.0470678694748,17.1298024287191,17.1780875620787,16.7404213502914,16.8251879444581,16.7614034046392 +"Q9VAG9",17.7349398196446,17.6107241118985,17.6360006660979,17.4739142425473,17.452656223865,17.5554718402722,17.5054875720031,17.466209686093,17.3382803466478,17.3668849157363,17.3464496057888,17.4096540794246,17.380144855668,17.4774961485393,17.3975925924636,17.1421697131436,17.2500053425583,17.2665415938368 +"Q9VAI9",21.9678112948897,21.7795007949967,21.9112073629323,22.2819089159524,22.2235687553418,22.2555172207782,21.7620262548926,21.7871283870365,21.8504001102015,22.2538093017818,22.1688453129737,22.1165209033196,21.4236633157109,21.7408124722641,21.6804794127173,22.1478168600444,22.1371802206591,22.022910933323 +"Q9VAJ9",17.3295492699798,17.1418416795635,17.2780138174868,17.1526016624654,17.2421939833006,17.2079991890518,17.6896687853456,17.6095783629331,17.5221269721716,17.5216311514624,17.5228758589416,17.6809686246644,18.2735702817381,18.2797766473488,18.2858651758759,17.8566724436398,18.0274270625434,17.8487198153805 +"Q9VAM6",22.308952829357,22.1962516957249,22.3892105853651,22.3302007067823,22.2508318164129,22.1975467446497,21.9925561231005,21.9940388061699,22.0653741413468,21.9540051889007,22.0134254123697,21.9755909396419,22.0086518071335,22.1386092194941,21.989639274231,21.9184894037413,21.9196991088438,21.8954943737808 +"Q9VAN0",20.3796500080063,20.2629971541086,20.2821548647923,20.3089333500154,20.3830707386622,20.4645652657,20.5625140982518,20.51147362234,20.4583811169026,20.3983297505211,20.477575459219,20.5545685894068,20.524850678165,20.5823004654018,20.4451362908085,20.5404671794338,20.4973276246618,20.5099389367832 +"Q9VAN1",14.6882273720288,14.723104702544,14.763145877455,15.1627510031399,15.0135728962365,15.0448010202149,14.6145303211678,14.738658464047,14.8278649113791,15.110152160311,14.8582518914758,14.9305640008493,14.2426807512853,14.612120700252,14.3183546876167,14.844607527779,14.7172404811564,14.7782186381967 +"Q9VAN7",23.9793594992946,23.9155095582965,23.949183625775,23.8700621917668,23.7086663988158,23.6768591233146,23.7127378656768,23.6553259192538,23.6999449453204,23.4336431031542,23.5365724409959,23.562102820648,23.6825759095535,23.6926320279423,23.671333965268,23.4882213209075,23.657893545049,23.6071754100273 +"Q9VAP3",16.7944565123973,16.5278374819777,16.4167706859939,16.2529042007615,16.1426650198744,16.3956612328931,16.3020557024539,16.4023994081926,16.5333274926815,16.9660018774529,16.6535996474607,16.3689332176749,16.1934040488462,16.6101249127657,16.6552729921282,16.3744793805558,16.5466752521965,16.5133361010958 +"Q9VAQ4",16.382088644731,16.1029306477958,16.2977111801802,16.0926791118844,15.9846865511651,16.0018704407911,16.0797212285265,15.9263982464951,15.9672905634441,15.4641354179332,15.7751687351326,15.5385911729668,16.1469697117376,15.992218993267,16.2213649406979,15.7733151366466,16.1575060776037,15.9120809533793 +"Q9VAS1",13.1137259528775,13.0459686857647,13.0648732525591,12.6751340651293,12.9009712461891,13.024461549413,13.3239479910649,13.2116085057433,12.7999919654689,13.0008938919801,12.8780486505944,13.258215169359,12.8917186801985,13.3184090874223,13.2714190786137,13.2641495215931,12.9145639271296,12.8506090874297 +"Q9VAU6",13.5335466929255,13.512906608585,13.2665117189502,13.4878874591953,13.4057630042941,13.5900462558345,13.391390847145,13.274695894221,13.1565353791809,13.242724917284,13.2328660297647,13.1619364854565,13.5527701988603,13.5208787035644,13.121805637756,13.2005318069695,13.4617416819505,14.1120164452015 +"Q9VAV2",17.6383908272431,17.8119826994369,17.841327037042,17.7936338041587,17.7917777419637,17.8923639178083,17.8159629107335,17.7931868755937,17.7756033365796,17.692245799145,17.742049233079,17.735564138871,17.7197531603033,17.7058344360807,17.6487125913941,17.9447142939347,17.7598698093643,17.7111297738231 +"Q9VAY0",14.2575986490757,14.1846662199046,14.0417389701583,14.3610700425556,13.8609215967844,13.996341135801,14.142899533213,14.0291005452181,14.010864906123,13.689391615158,14.056213502752,13.9086229090898,13.7757651043964,13.703130434053,14.0392446333124,13.9292822934451,14.3219749391318,14.1591946833594 +"Q9VAY2",21.1452886841686,21.1665235182145,21.2111600763414,21.1632127615264,21.1632729944457,21.1177747798603,21.1804053746756,21.2063219097135,21.1252916011199,21.0894715463745,21.1160649892901,21.1326858711914,21.0774173985217,21.087482099178,21.0836337893283,21.0920775999565,21.0082078543816,21.077327247382 +"Q9VAY3",13.8920169503112,13.9463853591457,13.6679269538807,13.8428228725652,13.7048124992023,13.8756426477576,13.9649578944991,13.8773727539981,13.4590091714207,13.7274823196804,13.8468320830553,13.9503978702532,14.222907927484,14.1271406625704,14.2911279053621,13.8817256603163,14.0293702668844,14.287809076182 +"Q9VAY6",15.1836436889412,15.173937060147,15.296107530357,15.194819236153,15.2151488663105,15.292492783446,15.1061250347179,15.1395877396693,15.153026597102,15.2327704406301,15.2987309945138,15.2159560970477,15.0987603058941,15.2313003630687,15.1332368291893,15.3827714946458,15.140185177273,15.1080703638403 +"Q9VAY9",13.9743314335284,14.0053359731416,14.2098707165838,14.3388090009042,14.5260895153134,14.3475155382532,14.5698725373375,14.7212166938929,14.8060390208936,14.9132882531021,14.7993393301808,14.8305562021151,14.6919027100595,14.786843860129,14.5875062057175,15.1012042458188,14.7505828080928,14.8079204971874 +"Q9VB05",20.1890275287274,20.1273398931486,20.211362973828,20.0910182874665,20.1306182374168,20.0866573985697,20.2720669706112,20.238068782921,20.2368977807253,20.091288856127,20.1483034471612,20.1983281825082,20.3347170515809,20.333638846829,20.2396346137916,20.2102473608035,20.21039684784,20.2154851058938 +"Q9VB10",20.9393490098145,20.8661817293174,20.9192498950242,20.9691832716479,20.9917699287082,21.0344056852017,20.9687239247104,20.9010570050529,20.9243427648783,21.0163977451946,21.0200631501616,21.121348924264,21.074765782385,21.0268760325389,21.0271246358174,20.9855455204697,21.1480174084431,20.9274933490365 +"Q9VB17",15.5113023121797,15.4910251760904,15.7769494942517,15.5466436659593,15.5910689603028,15.5317950136001,15.5749782563469,15.5710996909493,15.5187140553969,15.5442456833823,15.5307043491351,15.4941807299943,15.8012551454544,15.8092866530501,15.5500154637939,15.6612393554905,15.6464795892852,15.7680096617759 +"Q9VB22",17.3373538680135,17.3176000210308,17.5438921497245,17.5505200456816,17.4656994048809,17.4093309764624,17.1511318552543,17.1823566200923,17.1221062728195,16.9933821346382,17.004757849588,17.100484906901,17.1195251509738,17.1935439576074,17.1767005395604,17.0507300604515,17.0386852618136,16.8501282695452 +"Q9VB46",15.0253647022437,14.9680942313272,15.2523970151633,15.0699986970917,15.0598722436385,14.9439679093585,15.2007547745485,15.3943277662086,15.3591853765969,15.4410309035735,15.1203753022668,15.0962517243579,15.15529980539,15.6596752188863,15.497397703109,15.6506757920699,15.3407799125898,15.3939249463316 +"Q9VB64",19.0771160785105,18.6996725293539,18.8177865380278,18.7882411911481,18.7506749814361,18.8505353592025,18.7124368538572,18.8069683499494,18.7133305466449,18.675413855288,18.665241087089,18.7079365730973,18.6808293706137,18.8756212728817,18.7510574676281,18.7058648870987,18.8417240158062,18.7992557519157 +"Q9VB68",15.6199012450577,15.5696968430101,15.4340763497014,15.4181866701928,15.334399066988,15.461908197732,15.6058369446357,15.5136904756763,15.4479265700308,15.6002871036121,15.3774401140734,15.4788631646052,15.0947883285415,15.2886444888479,15.5943754738045,15.3927934868662,15.6479227903103,15.314644023032 +"Q9VB79",17.7134207627575,17.4831830716869,17.7105575363754,17.5651333710112,17.5831915292696,17.7509046236159,17.6588364161423,17.6880829836284,17.5214474103211,17.8229438983569,17.6874445296907,17.7254876757507,17.500550718971,17.7036925324314,17.5958690451103,17.580217243205,17.6955077637367,17.5368361192705 +"Q9VB81",20.747104520549,20.6606351068362,20.8208543167592,21.2572095799957,21.0116283117649,20.9503661286811,20.93601275214,20.9206835046203,21.0409807853743,20.9990147988161,21.0346075327565,21.1704468978086,20.7156531973818,20.9662889400748,20.8018818297998,21.2321109040235,21.2932623568534,21.1025757944832 +"Q9VBC1",13.0143869603893,13.2388997918758,13.1726695240844,13.3444981423544,13.5545982114464,13.2604408255315,13.2807459045799,13.0378967337393,13.0361295435184,13.7379505596523,13.9147681395403,13.740163826819,13.0924855037614,12.7595287854954,13.0572743163669,13.0759526752847,13.0403280839248,13.2793417097017 +"Q9VBC7",15.7332096232726,15.8858703935264,15.6601415135675,15.8715870066011,16.050603120964,16.0220402432083,16.0530292528802,16.0202101841963,16.1641071440531,16.2817748298463,16.2397836138253,16.3963536043002,16.309756940901,16.1000495949394,16.2951414877081,16.700284522603,16.653125268653,16.411858183267 +"Q9VBC9",15.4568245161472,15.8941840658213,15.4118144184223,15.7082235103135,15.8945107445705,15.7690550243348,15.4287638981816,15.246113260226,15.3472434594085,15.5266642803486,15.7702552685942,15.7357586318456,15.3339851476898,15.2240759808573,15.3727857022109,15.7508132532011,15.1761352858124,15.5686173696597 +"Q9VBI2",22.2617107064294,22.1975913939492,22.3292107377463,22.2954292521664,22.2625887043699,22.2426589330744,22.0740598642258,22.0119795274164,22.0675161435662,22.0443275651915,22.0381048787478,22.0285569687395,21.9798525159236,22.1491984154327,21.9866993890781,21.9984784940312,21.9943954780518,21.9992162257634 +"Q9VBI3",18.7049578841193,18.6708480443933,18.7718161371144,18.4466433428131,18.6921563770162,18.75742247127,18.7553427669951,18.5692403033122,18.6081419448814,18.6668178690843,18.5889881764588,18.6065344077003,18.7050541910758,18.6046666773852,18.6035661346571,18.3806239374631,18.533540412985,18.3119588959276 +"Q9VBL3",15.3159449548617,14.2133428496272,14.8142928071928,14.2230235668693,14.3640069448562,14.555887898661,14.4827140913167,14.5348870622772,14.5098273849045,14.3677404352486,14.839973104715,14.4901094923343,13.8448726720508,14.4144212093567,14.3831080193492,14.7599217874805,14.6275863369954,14.240991905386 +"Q9VBP6",23.2162965371291,23.1087462814223,23.1945841507248,23.3826794234656,23.3080578194054,23.2750634247471,23.0311087770395,22.9878856038596,22.9851556501062,23.0819246226839,23.1033648831794,23.1461834260229,23.0017225762815,23.1235365366948,23.0768507306199,23.0568772155881,23.1390180276261,23.0927717699667 +"Q9VBP9",13.823765466284,13.6001685068232,13.9037436041889,13.6096095588572,13.7230079488141,13.5806816540728,13.9989800463122,14.2398029253545,13.6947578016005,13.8361102491194,13.7647484012493,13.8734159952294,14.0760448745904,14.1629322900901,14.3210961366115,14.321372304818,14.1752224276499,14.292187308278 +"Q9VBS7",19.8764114231867,19.8329782384978,19.8707585707003,19.5704984594996,19.6623371813987,19.7370082247099,20.0243291539459,20.0140602053435,19.9114422853665,19.803577137342,19.7803417653061,19.8043743103809,19.9519386571195,19.9278623975841,19.9262957877843,19.7251719432602,19.7343469862238,19.702047595412 +"Q9VBT1",16.2849170352573,16.1980920823521,16.2441570253531,16.082824705258,16.2967178303517,16.3377073656441,16.4746897703914,16.3543828688587,16.3000789168131,16.2042384243314,16.2807026130657,16.2718065468493,16.2962753329867,16.3748188352401,16.3301940554055,16.518454838786,16.3566858771425,16.3774561969458 +"Q9VBT2",12.0163005784215,12.7703997395291,12.7516538409627,11.8781069164203,12.7566734234069,13.0237070806386,13.3313385159676,13.0669441062965,13.016747459368,13.5981946670801,13.0488872796038,12.7328290942405,13.8787164206428,13.2824187224523,13.3445115674126,13.1225541640366,12.8998879912803,12.9557622199466 +"Q9VBU0",14.1808690836699,14.2623006474439,14.055783728345,14.0015116302075,14.357814366484,14.0557214583815,14.1960120979236,14.1444155038463,14.0729050341966,14.0752360798096,13.7458069080026,14.2616056144743,14.6994928665208,14.6132471442528,14.5959288359559,14.1508306910049,14.1803678791067,14.262007777783 +"Q9VBU9",20.8704640233479,20.6772229471193,20.8565190932127,20.648001158097,20.7597529093565,20.7289409112158,20.8909444196384,20.9086582660327,20.8867912264753,20.7280441548351,20.8115235375841,20.7682885563371,20.8756918118085,20.972808643674,20.9091017666104,21.0598771194492,20.9430563834096,20.9233811333249 +"Q9VBV5",17.128371465131,17.2708204787282,17.3977628744139,17.3495494110556,17.2660018456033,17.3225136460269,17.0505849936251,17.0953893645282,17.1393634775443,17.2220591203112,17.1963172790593,17.237793953442,17.070706452155,17.1231957943211,17.034276088056,17.188580693626,17.0581273736638,16.8781420964208 +"Q9VC05",15.2084022304196,14.9985163167341,15.1305550759128,14.9569412926857,14.5680330649574,14.8044974502437,14.8639023275029,14.8256655255616,14.8504239134968,14.8849716491485,15.1218885525334,14.7445210552373,14.501352105685,14.9073805037999,14.9753218172614,14.81394340134,14.8080290431953,14.7241936946297 +"Q9VC06",16.0830080260746,15.9579120797266,15.9935560265262,15.9002085893212,15.9539335419216,15.8290872784189,16.7093873709989,16.7313673975078,16.8067435945766,16.3991107226987,16.560311570837,16.4207158925755,16.8998990969308,16.922227061893,17.0067540932191,16.7520251624155,16.6178873165536,16.6867820831234 +"Q9VC18",17.7630624676632,17.7842749224729,17.7811963021477,17.7665460531966,17.8488210336835,17.7937445533175,18.3595396996716,18.4109297990079,18.382710183744,18.5895495464381,18.6017446505539,18.4571937437268,18.636960675766,18.6007587112015,18.7701914203793,18.6584627741989,18.5275921000148,18.5890850136194 +"Q9VC31",17.5208202699985,17.5230475686232,17.7092593490714,17.7033873657425,17.7457828437198,17.9498141796593,17.7324440382824,17.5913379099003,17.3809870048997,17.759597569561,17.71080742795,17.7165216743898,17.7551430358877,17.7094357581994,17.5869773710884,17.5559221275337,17.7469028986132,17.6837548278972 +"Q9VC48",18.2138234842585,18.4170653505172,18.2672039120681,18.3876608456195,18.3652114471085,18.4068285055575,18.4841944520821,18.5214764710416,18.4372745058239,18.4735815616463,18.3796230320007,18.610883030819,18.4623921556946,18.5762583066289,18.3910233468518,18.6265485339044,18.3885664259086,18.5349877320851 +"Q9VC53",18.0360924720185,17.9292905247945,17.9698314512102,18.021146506148,17.8332797745195,17.9246393221648,17.8902233805658,17.8639642986157,17.9440991054591,17.5941501065333,17.873209228153,17.8256011726062,17.9435149564779,17.8302961186347,17.8622967325743,17.7371260062851,17.8922134833112,17.6957856440141 +"Q9VC58",13.011084391195,13.4073367401383,13.2898546226267,13.1644756633962,13.0059408044583,13.0613518380008,13.7444322234342,13.1876976700276,12.98797634541,12.7696560438884,13.1207745492805,13.507719374454,13.0684746011095,12.9943596961279,13.1101345657044,13.1749186762804,13.216932139271,12.9760048531077 +"Q9VC66",17.648151108047,17.8050088619563,17.8052369614262,17.8526243574647,17.7717957365474,17.8059642687525,17.7194472767364,17.6247258520829,17.6484965878404,17.6949226728511,17.7545071977674,17.8882988969059,17.6300811788287,17.6130278568011,17.5648402390664,17.7566447998568,17.7328058886294,17.5890344397931 +"Q9VC67",15.2872622516983,15.4589420240568,15.4826856334316,14.9326613605346,14.8796529672047,15.1225196467325,15.4767563461193,15.3545426376225,15.23895799425,15.1583823749576,15.1237428564306,14.8430692021352,15.2874545305235,15.1304348091411,15.3873917814767,14.7125988975486,14.9078004669261,14.7804915033558 +"Q9VCA5",14.3389380513707,14.4285822952563,14.012772703858,13.7865698194554,13.8964747789043,14.1022910380882,14.4482045387781,14.3425559234465,14.2724252772932,14.2034854358527,14.1507985605777,14.4536764998704,14.5973384351921,14.6855456879485,14.355180746873,13.9982737040598,13.8688527385755,14.176463718726 +"Q9VCB9",17.0856882557719,17.0760093762764,17.1654587211663,16.9929219749412,16.9732979581647,17.0451061854617,17.1001586970143,16.8413117590904,17.0865366113453,16.7499169258698,17.0626161079476,16.8763145359862,16.9162864555645,16.9080393082493,16.8281036436111,17.0098193451881,16.9935171446213,16.8532719567791 +"Q9VCC0",17.5600368426789,17.4428556471799,17.5639747562879,17.7980608645975,17.6296242133041,17.5946303917276,17.2680974009977,17.4039825625768,17.3556378310783,17.5566197270459,17.429527030872,17.5122048128003,17.0342294951065,17.4332689430124,17.2175764886823,17.5488736891802,17.4266596226615,17.5218937390302 +"Q9VCD9",18.2604200938959,18.5907966447585,18.723268810769,18.964484310002,18.6769277796771,18.6571866894049,18.049880813762,18.4027348525229,18.3729161054115,18.6338435755833,18.4610488505411,18.5825583817214,18.1925842040313,18.4887877378942,18.3733275586408,19.1514037115601,18.6323208434407,18.5433591628869 +"Q9VCE0",15.9980229235199,16.1735329482827,16.2135415404273,15.8091743204867,15.9985869934572,16.1440559918003,15.8126759626764,15.7837595035827,15.5608978301923,15.4844887946657,15.7787503870699,16.0081556632267,15.9721901219315,15.655546204382,15.3176250313647,15.8069674730798,15.4933435595857,15.6392435393486 +"Q9VCE1",13.8160398997899,13.7760872184832,13.7562143982474,14.1360625458664,13.7399825197383,13.903772593274,13.7143738972134,13.7678719514582,13.8288129440857,13.4203596706549,13.6191514499348,13.6831484134897,13.5389286269971,13.4123193414996,13.4361762318092,13.403802331095,13.7141544905027,13.4214423907108 +"Q9VCF8",17.0226113938533,16.9263596192323,17.0646316544008,17.1174037486363,16.8636263176923,17.0090336137482,16.8494847505932,17.0608467496369,16.9296494266018,16.8777768752714,16.8825552534705,16.8824102223866,16.8477763942049,16.9638984803738,16.8434907460582,17.0080661768796,17.0258329190328,16.9939036762428 +"Q9VCH5",18.0340239696627,17.9945991173473,18.1162240813501,18.1639255299124,18.2063400687772,18.1306002880521,18.040670177001,17.9790372740602,18.0320179670032,18.0754078784631,18.0522268908957,17.9909639420738,17.8481438475049,17.9108846694641,17.8681174383079,17.9430000265362,17.9620834085358,17.9672477122932 +"Q9VCI0",14.7735307217714,14.7862426834262,14.6790843093775,14.7473464240452,14.8836334936663,14.8438627629014,14.9900218060368,14.9405976118662,14.6468780734323,15.5989909672558,14.6697495416608,14.9976917255314,13.8601133543132,14.8592410894877,14.8481994930987,14.9059357380976,14.7364745914129,14.8602226471787 +"Q9VCJ8",17.7337834896665,17.8484471698691,17.8244585843834,17.8218167600369,17.8784589147549,17.8320149818691,17.991372150683,17.9527364697509,17.8996741520193,17.9750061903653,17.9448779378986,18.1041511862331,17.8961083392711,17.8690419591756,17.8139497054257,17.9894792007685,17.9140036793421,17.9333175208607 +"Q9VCK0",17.9293574090871,18.2268770068875,17.9872366512396,17.943558488566,18.1572774533952,17.9531273051193,18.3895943006638,18.2651101730658,18.4158293180309,18.3546056731957,18.3797600851484,18.3689535745057,18.3137368414835,18.1967799443261,18.2828662395723,18.5502089446382,18.2552569948113,18.4730485691666 +"Q9VCK6",16.052723046232,16.0120720711086,15.9511658069414,16.5864462926183,16.6366042049548,16.6434902827786,16.4708539730553,16.2270043808865,16.2037364110216,16.8643065735636,16.9290408342533,17.022355570732,16.6248525694124,16.59028279354,16.7127374251669,16.7064826485346,16.9106608186731,16.7721796067758 +"Q9VCR2",15.4535918049428,15.474306035453,15.4165192059193,15.318615386912,15.2149213005908,15.3479406246101,15.4100303862607,15.533935382732,15.4275485001972,15.379567696802,15.5990557017151,15.4358878169276,15.5413860444634,15.7280311307195,15.5936236083306,15.9041591820263,15.4571009501968,15.7858307454224 +"Q9VCR4",15.4361841883288,15.1044081938729,15.3363747578991,15.1543496070553,15.0347339781262,15.0394330456632,15.0938280275856,14.9469704596791,15.0177875406073,15.1485720380682,15.0596864824465,15.0479030415234,14.787253192029,15.0088954601732,14.8225512633386,14.4441868794853,14.9096793582542,14.8003242835206 +"Q9VCR9",19.3293515225301,19.3035038355862,19.4460311812247,19.4941443596277,19.4192700092413,19.3538577143417,19.3657465813158,19.3414149863867,19.3260380172675,19.393202057982,19.1549724078252,19.2108211616741,19.1726445357229,19.396897334043,19.3597406135173,19.2239649425199,19.362995426616,19.282565311673 +"Q9VCT4",12.9257113342825,12.9054821510416,13.2088535869906,13.1463002920294,13.5228097490196,13.4558918062611,13.3535528708132,12.9433970357262,13.4663993765963,14.1229156604537,13.4860622166021,13.7276553122994,12.6870197392211,13.1784907484874,12.6656839709903,14.2117115672807,14.4109695632036,13.9227274109428 +"Q9VCU0",17.0835695430528,17.6031043128141,17.3722151243779,17.4454534707634,17.1719059894601,17.2745553134,17.2119436670732,17.3427042915783,17.5991066448567,17.2302533621138,17.1688781358299,17.335096212526,17.2943910314543,17.6011833603341,17.4451886768512,17.9428642541219,17.3206992385628,17.1823133565675 +"Q9VCU6",15.1899016260399,15.287905227382,15.4665760865417,15.6727145403612,15.6220780167656,15.4794601113951,15.269934620765,15.4489097826866,15.5501308523828,15.4247627001432,15.5811375875061,15.425717413531,15.4793081991184,15.4119444103132,15.395349024575,15.681351874976,15.3659985367502,15.4007400729781 +"Q9VCW2",15.2410426125073,15.45667574237,15.2424643675017,14.8925511406227,15.2745065345787,15.1757809885085,15.5240349854792,15.3693920260605,15.3998725642457,15.580100391043,15.4388167287304,15.6645590575107,15.6595351764986,15.3944176723949,15.3518757084819,15.4516582875319,15.4151138895481,15.5143699074341 +"Q9VCW6",19.9476169424824,19.9458918214172,20.0853634531917,19.5687485627207,19.6888168414084,19.6784568491691,19.9230191126236,19.9591650997529,19.9083800020767,19.5551934252317,19.5394509747868,19.6160001160962,19.9201968378598,19.9915948971256,19.9021199721589,19.9262881833947,19.7161434298221,19.6507426716203 +"Q9VCX3",12.2780357265372,12.5183143025094,12.635988926349,12.8010006141202,12.5954084837137,12.5916872383973,13.7919777845367,13.021789277212,13.323556694479,13.1117444630047,13.2776910362761,13.3349142315738,13.2255221361056,13.2042102778427,13.1219323123671,12.7287070557963,13.3195744025467,12.9289083769345 +"Q9VCY3",17.8945482451827,17.7363117652587,17.8261002493993,17.8537601440521,17.90765635369,17.8974993363587,17.7770520910032,17.8578476437371,17.7736236753776,17.7861231203405,17.9482296958194,18.1707918907646,17.7242805497044,17.8750040276989,17.6146757960505,18.1677971222069,17.8785117862858,17.9208703245392 +"Q9VD00",17.9687846526084,17.9336635219174,18.1050891124712,17.8847562145509,17.9209708419508,17.8737957623919,18.0160425605309,17.9625695620981,17.9317435967162,17.8429864647375,17.8708066128518,17.9507548994144,17.9736302880628,18.0139167469586,17.9567509866497,17.8216183158377,17.8058912105515,17.6896841386849 +"Q9VD02",18.3982574790627,18.3114416351927,18.5098034569456,18.4219896007997,18.323094331827,18.4025105067758,18.0666856020939,18.0758212363499,18.1080019327868,18.2214865330118,18.1599978057702,18.2298999557098,18.1720064372956,18.2749799666029,18.0262295420493,18.0872669300329,18.2223576065539,18.0912471880292 +"Q9VD09",14.654669143042,14.8615505958657,14.6217312574175,15.1885196462304,14.6496162263615,14.755758608653,14.8015824073359,14.5290921299781,14.608311293322,14.6754592340393,14.5968972772515,14.6785993397711,14.0413703623929,14.6138429640104,14.4896896708346,14.1175824891739,14.2281840887472,14.3250931122162 +"Q9VD14",17.6118457916434,17.5270357626837,17.3577574854105,17.7204825695567,17.6066137906255,17.6941008070202,17.6874546001494,17.5751768977041,17.5478270781722,17.697366230912,17.5953473310827,17.7544148621297,17.4008024046182,17.60809473422,17.7154162488901,17.6289054496199,17.8345885301836,17.6773405648768 +"Q9VD26",16.1711240727112,16.3507600986577,16.1237837171684,16.3583664824915,16.1788227272379,16.17387510863,16.3834248139708,16.1357996270787,16.1091343252984,16.0693400459122,16.3307235469596,16.3553513495967,16.2280702138013,15.9705714652574,16.2009026511047,16.0572309567448,16.3008791204405,16.3045094338337 +"Q9VD29",20.934274843204,20.8098335837952,20.880176497458,20.6673150312315,20.8107160416886,20.8869825445193,20.6070027488067,20.6924037523926,20.6334524318535,20.802865964993,20.7481712967028,20.6687572098685,20.4831137516088,20.5968927617289,20.7174834125687,20.8272083809234,20.6637632844592,20.5349286244994 +"Q9VD30",21.6090146936463,21.5404438057617,21.3562360136223,21.2138143322524,21.3536800807881,21.5383936745494,21.3021472896873,21.4362097620574,21.1674091921631,21.475233845484,21.3316814051519,21.5873235318132,21.5919021499707,21.5206409948755,21.5299872548079,21.3119632364013,21.3214194988074,21.3247258804861 +"Q9VD58",22.7788095036849,22.6950775706256,22.7534097385176,22.7395849804051,22.7536598131083,22.7244317441508,22.7589794104703,22.7283846577729,22.6831402746915,22.6696485655387,22.6733775823178,22.7211390238687,22.6847563541183,22.7869302478073,22.7488954436596,22.693654291536,22.6880032341214,22.694416880865 +"Q9VD64",15.9537418502056,15.5996475629367,15.7684257367431,15.9614568192755,15.8096668433647,15.8823897785616,15.6005859698998,15.6542536704249,15.6580530809368,15.7476018789767,15.6985449556621,15.6661632396063,14.7941854544527,15.5155199548927,15.4658338548747,15.8414531601526,15.6213921456817,15.4581594422403 +"Q9VD68",14.5890176531572,14.7396068613099,14.8292305997841,14.8313643931883,14.7936537689479,14.6495033456592,14.9276512182107,14.8588946528548,14.7485227711317,15.0419594373072,14.8453201124304,14.8357875733226,14.5773448974877,14.9123646431049,15.1486583207752,14.8594631187903,14.6769606794937,14.6150981074687 +"Q9VDC0",17.4457560925943,17.4794307157561,17.5864894617647,17.6963856121582,17.738238817256,17.7468373396627,17.4850605415907,17.3776381290059,17.4042878285567,17.7595863518885,17.6434456255803,17.6650254114345,17.6335217370845,17.6880013697272,17.5605091940629,17.3954162140937,17.4889718920844,17.4525773139284 +"Q9VDC3",19.3657447332463,19.2400546317812,19.3594391065619,19.2076172211579,19.3137993641381,19.3151034662309,19.2801004254723,19.2898760549856,19.1435557720028,19.3073290011479,19.3815599675353,19.2637820842317,19.3878290315148,19.1889728997363,19.3221530153047,19.1258747518171,19.2602322461799,19.2704617200244 +"Q9VDC6",17.0808061807734,16.7792663045637,16.8188685834626,16.8395737541264,16.6040836356771,16.6315691467365,16.7910469759853,17.0983787558229,17.0034873689109,17.0697029428944,17.060637699422,17.2125649238686,16.8951021431376,17.2441683256102,17.1784451889491,17.1542503775003,17.0439476533215,16.9855471624897 +"Q9VDD1",14.4850658941155,14.681088661708,14.8030903788646,14.2205208246897,14.5463630747232,14.4766505791803,14.3505918505159,14.4132304938275,14.522696100498,14.5991533699119,14.4099703360696,14.1292141582868,14.2482580779675,14.3300960872353,14.3858056733989,14.253811059153,13.7766524227898,13.8399441861248 +"Q9VDE2",19.6702578025114,19.6989106776991,19.6598612661054,19.5605371715008,19.6812296623281,19.6126835316284,19.4429466861576,19.5837887917025,19.4389212721646,19.2951615084752,19.4154193867264,19.4841951958192,19.5249450662408,19.5460168796015,19.5990557791929,19.7730525010489,19.3415353378773,19.4721836910243 +"Q9VDF4",18.6170010996124,18.6472476581024,18.6663040654031,18.7505867293628,18.7299051078191,18.721774708917,18.7625179898009,18.6505540839153,18.7331457660915,18.5703206212674,18.6342384763824,18.7205523718117,18.6518381477572,18.7065538595129,18.63512008437,18.6961428836042,18.6799082856727,18.5715104748116 +"Q9VDH3",20.370806509253,20.3726936989371,20.2707846856262,20.450194108376,20.5921628325861,20.5888549786815,20.553698588964,20.5608094570967,20.4397459495342,20.6885629587666,20.6175504688013,20.7408339717433,20.6513601705381,20.5956712733982,20.6511485828309,20.726392590973,20.7021271960512,20.7496467584545 +"Q9VDI3",15.0821180095192,15.0500912451667,15.1713990235835,14.6324260783296,15.0313599729607,15.0196131040281,14.8481364328031,14.9627634404829,15.0893495277969,15.3586121106854,14.965518872841,15.0381995639978,14.9521796968041,15.0365189957197,15.0141730126245,15.2669564604186,15.094176261389,14.8076945565292 +"Q9VDI5",16.5553061869586,16.4370117151413,16.5809288017841,16.5163700489115,16.436985025961,16.7814303396375,16.7885380552491,16.6856740375049,16.7747756411732,16.647356937594,16.6370369993485,16.7319174694199,16.6218014947823,16.8293380878689,16.3676177942507,16.8916653522291,16.9949922099,16.7843680294591 +"Q9VDK7",17.7694812413613,17.9003007316458,17.9831055347669,17.864735552678,17.844284286533,17.8819950893389,17.9606561318514,17.8758307388587,17.8538206766352,17.7806726103301,17.8154215470563,17.8881397611722,17.9933764939411,17.8340326383075,17.8996033924399,17.8460147753505,17.9450668631111,17.7082723511593 +"Q9VDK9",15.3724558210739,15.5598513439897,15.3615921307506,15.2427903523681,15.4170100656721,15.3778560733437,15.5454769904638,15.5579868388705,15.3401484697246,15.6105622899422,15.3700653226039,15.7812051126468,15.6797592355531,15.7321746808432,15.706436720527,15.8058589738155,15.619815411237,15.6896651562239 +"Q9VDL1",14.8423736750492,14.9726182413874,14.9353829992927,14.9323657806909,15.1569359415242,14.7782012260673,14.9152743681603,14.8081945276444,14.8867672944134,14.7374109327526,14.7638381690245,14.8386665067716,14.7329435574749,14.8730185720017,14.747632714134,14.8943597478999,14.4801226104457,14.8680773213489 +"Q9VDQ3",13.9064335959546,13.423706022465,13.4906800071845,13.2524713882348,13.5391505642449,13.4166628355833,13.6159681703541,13.3667589855513,13.354908282062,14.1213522179455,13.2683397500798,13.1826018125063,12.7806043290336,13.2655640643416,13.1921921738521,12.2323325215936,13.0456428364334,13.2721171119278 +"Q9VDT1",18.7310568037254,18.8847498866489,18.9668191549498,18.9493558462451,19.091862886366,19.0190937899104,19.2049281415263,19.114937399134,19.0576308506886,19.0899820634094,19.1767716534798,19.2930765310328,19.5002487891551,19.2997488171839,19.2502993651223,19.3579641120872,19.265465113336,19.2466160644448 +"Q9VDT5",19.1602220073667,19.1908545215704,19.0024486517847,18.908904366847,19.1572143962914,19.3446882893119,19.1589389162638,18.9321631437677,18.895929262258,19.2089876477014,19.3325014398026,19.418622828344,19.1826478096271,18.7906312020598,18.8396405797817,18.8424182607658,19.0587543050801,18.9607893970915 +"Q9VDU7",18.19143469658,18.3355310584062,18.4086569116618,18.4787553764844,18.4027186875854,18.3782182465673,18.287021753388,18.3089136503558,18.3421706201631,18.4307436232027,18.3964969410528,18.4060011485092,18.0618379429409,18.1198253798825,18.2096995034408,18.4373483363007,18.3236560116139,18.1423952985544 +"Q9VDV2",14.1260676452969,14.1798960545115,14.4468994494975,14.183508149942,14.2637031765143,13.947298917381,14.7742229938765,14.5035483899708,14.6665553019095,14.4464360850022,14.5469748019264,14.1694408304519,14.1251550317631,14.6197692213604,14.8718426391552,14.9325309138067,14.4740291754039,14.4858836812922 +"Q9VDV3",17.5872980796418,17.6424023280846,17.6865140334839,17.4672444104647,17.6538295629297,17.5919380177436,17.5756223799692,17.4903492147826,17.5192702294381,17.5664949092168,17.6424023280846,17.6542190321527,17.5426812184274,17.4337411490065,17.3911935581426,17.480784010756,17.357400425588,17.3769901375151 +"Q9VE08",14.3709713430064,14.5592734185319,14.6396533829435,14.8254818712979,14.5984776493715,14.7408853774413,14.6787992903825,14.5844298143417,14.4881866444645,15.2117725253544,14.7133367113311,14.8411023139952,14.205027913505,14.6212695926367,14.4373845128907,14.3886076274523,14.6038733847856,14.5334483392633 +"Q9VE12",15.6408097420899,15.8343530962078,15.6965948280516,15.7472531251362,15.7822669334418,15.5941019508529,15.6031144865431,15.7238167643924,15.6101362018976,15.7068219145171,15.5535680888433,15.8547911668666,15.5454901743025,15.6248163751154,15.5149768976808,15.7078664843514,15.4325346689396,15.6807548815909 +"Q9VE24",15.4303290642264,15.4897448859991,15.6728215071904,15.999285360249,15.9184019023759,16.0319316360342,15.8273893439865,15.84752815723,15.6692197915393,16.3010824537237,16.3294404173014,16.3638347049959,15.7762011492972,15.7063001361411,15.5729618576219,15.9718611475864,16.0147330200218,15.9953790216874 +"Q9VE50",15.2379697558177,14.8346936509032,14.8546112263028,14.6806881407018,14.6455167780406,14.7553673748087,14.5968668239377,14.6330604027838,14.5720206272706,14.2068010738606,14.6070219227136,14.4970716358869,14.2702938806523,14.5075505414562,14.4143478685532,14.5790811215496,14.3438575006222,14.4782820636977 +"Q9VE52",15.9473543180951,15.9365231017441,16.0627239794038,16.0007959568367,15.9372125102429,16.0417628512438,16.1880627396292,15.9554023707094,15.9798352609011,16.0212034067041,16.0186989516618,15.9953176744217,15.6906665965391,15.8199016347326,15.6800380935249,15.8564334657231,16.0367779144366,15.944838624032 +"Q9VE56",17.5470553447838,17.2791192490872,17.5366657676023,17.4805476222713,17.57700989635,17.6308304818559,17.5660704592176,17.4527602985275,17.5179966414161,17.3832732172408,17.4801926376472,17.4081092276632,17.4289443034851,17.5959133484038,17.420252916865,17.4413914940958,17.4622870110787,17.3334274056918 +"Q9VE75",15.8817599714033,15.8431511872454,15.8878607693702,15.3823088475045,15.270825299865,15.3211740534667,15.432840251741,15.3611567418344,15.4580579071121,15.0245669510676,15.1267147943393,15.412393743745,15.8317227329879,15.8023819024569,15.7884044039715,15.1276360510655,15.2766048800289,14.8129439281043 +"Q9VE85",15.3663417248046,15.6290480672756,15.7238420389497,15.8124128703686,15.778683119209,15.7891743548779,15.9009779876456,15.7216961902188,15.7025656710256,16.0358405875232,15.7614596818621,15.9375475859123,15.6780715226036,15.9050936430421,15.7553320737996,16.0986106990546,16.0962746903927,15.9837936674351 +"Q9VE94",14.6207480333465,14.6996156622722,15.0325534325441,14.594362996271,14.5980742325595,14.5508161695275,14.7952677953397,14.8071747248993,14.8620254060547,14.4337747285807,14.4374441702496,14.4955351828514,14.5279074094417,14.6660492486061,14.7194566562819,15.0306985781871,14.79440150258,14.3423726939071 +"Q9VEA1",18.1703891855797,18.1776390373982,18.1445629860478,18.1514544981914,18.0762297053522,18.190645458533,18.1947787248065,18.3023593603744,18.2030450892735,18.1431586399031,18.3149367634372,18.3699054925579,18.1974655209778,18.1301466667848,18.2161971326377,18.5058132267024,18.3617482628141,18.238703637111 +"Q9VEA5",15.6287937074128,15.6864402571371,15.7089983302817,15.5605875360742,15.8463852481097,15.7258579468383,15.6653953471584,15.5832561922824,15.6105925430303,15.699248452961,15.7747634026683,15.6655164598491,15.1855723269668,15.5183504753613,15.4716464713441,16.0812065791816,15.4116083741961,15.6381921984113 +"Q9VEB1",25.2651005195329,25.2379426536592,25.2837050213118,25.2946417932566,25.1732930247282,25.2258877834531,25.0554118255365,25.0538352193759,25.0311823674171,25.0187970919696,24.9875994526596,25.0182499716712,25.0876559874832,25.1425494841401,25.1345172981573,25.0520628128305,25.1784501960463,25.0801275885988 +"Q9VEB3",13.2250235553047,12.5599102599825,12.5475956389427,12.0303635939283,12.1612453760212,11.9084906250154,12.847159628637,12.5152985464918,12.6482448704659,12.1401037706481,12.0705285452577,12.4294175305339,12.1358577395823,12.4247330035985,12.2692027142668,11.5906457168585,12.2374382736073,12.1662026257343 +"Q9VEC2",16.5957175340442,16.6086385934419,16.7278490586915,16.8331165759974,16.7272838017976,16.8607863040548,16.6522934669892,16.6593110635556,16.5575093136592,16.8358251241173,16.6807865230148,16.7064772552782,16.6095850435198,16.7370836037454,16.6323911490605,16.6276560180795,16.741090177192,16.669180682003 +"Q9VEC8",16.5610048068947,16.5149459706143,16.6367176234158,16.5666232322368,16.6487547055785,16.6967934703862,16.4124349110122,16.5140393575692,16.5820362168507,16.5603976437583,16.4810888221772,16.4307962224794,16.3221731419204,16.4961491483325,16.4111119952988,16.5803704546449,16.3480261861956,16.2455486620363 +"Q9VED8",15.7259275474156,15.7975953735841,15.745890335599,16.2804656251682,16.1349356673879,16.2204411542734,16.4820934820385,16.4394119587174,16.3466796035861,16.6530198743204,16.4931180395965,16.86600576513,16.2669221077789,16.5679982821177,16.350490196175,16.7691747459042,16.7445440612222,16.6480963278622 +"Q9VEH2",16.117129528811,15.9717613551585,16.157939841784,15.9098325566762,15.8089132424246,15.772938226119,15.9605325943975,15.8251357587062,15.9711983831878,15.6824290764235,15.9332121616465,15.7266694111876,15.9643802992584,16.0792267153666,15.9956214387715,15.8400371079292,15.8560919301935,15.849973862446 +"Q9VEJ0",22.3010637938645,22.2576066129183,22.2893239220782,22.3874629396701,22.307571110856,22.3344651977768,22.1235390311747,22.2145145649944,22.1492139061761,22.118920297491,22.0979069750343,22.163380917283,22.1265846844233,22.2705894795952,22.1976033569687,22.2277812138996,22.137163217125,22.1513646602403 +"Q9VEJ3",19.5844148375193,19.6104295364216,19.5772052601629,20.4718979132679,20.2969670532459,20.3537852874071,19.7840671766605,19.7341030135074,19.6954306030175,20.1878244723048,20.250111332497,20.3319953851876,19.9391287646982,20.1114592993367,20.0922815664151,20.1253195629662,20.0895824924083,20.0419546252267 +"Q9VEK8",18.8297832730842,18.8718447199074,18.9775750097398,18.8743360564156,18.9333057861733,18.8770972886477,18.9392730637471,18.7853744228288,18.8093569664811,18.945530403466,18.9673053559388,18.8866500593328,18.7890747508899,18.8708905083773,18.8687075536325,18.8697700320882,18.8190467864653,18.828380701857 +"Q9VEN3",17.6761635468821,17.6501942485047,17.7840197384614,17.6885686038413,17.7574721798842,17.685900074392,17.4739627447301,17.4739214578661,17.4509622237117,17.504593814035,17.6065449002073,17.5811737275547,17.5718787709113,17.4572154770362,17.5587837520716,17.4782624503588,17.44808166726,17.3325904145672 +"Q9VEN9",14.5602943851844,14.7649161957246,14.7372336205501,14.9997574920109,14.9746466911083,14.9922063252398,15.1600280203478,14.8725384460982,14.9094981309512,14.8123844588693,14.8544090675063,15.0560549063688,15.1005390151249,14.8650782849363,14.8676063822651,14.6559206851185,14.957335371282,14.7263246912807 +"Q9VEP6",18.7035332862566,18.8418460759346,18.7490763734204,18.5839905637956,18.5531742109694,18.7222409262947,18.8229851720524,18.8182315263919,18.5688314833855,18.5754535324034,18.530249367281,18.7108427094774,18.5601805702988,18.5754031198094,18.5082751846968,18.4940138894163,18.4212527138369,18.4808903369482 +"Q9VEP8",17.2596998996623,17.2032074463823,17.3808232523021,17.0872866801756,17.2085925659656,17.1911633662074,17.4923756820895,17.3826866580455,17.4339785362347,17.1402927551776,17.2149159852408,17.157824048189,17.2177996682229,17.1884171452925,17.1204219636913,17.160555518944,17.1601904033452,17.0737990376474 +"Q9VEP9",17.356767644797,17.5646764066457,17.7196331032616,17.6845676493575,17.6748339318038,17.6501731106518,17.5822137775956,17.5425061707991,17.6313924923044,17.5157640343832,17.5544795886285,17.4825092956111,17.5747059489548,17.441734735091,17.3503944761241,17.5508360588768,17.4866242809968,17.4307526360119 +"Q9VER6",15.1455253417304,15.2626824538049,15.1926827669224,14.8481157239988,14.9879996403634,14.9708540347802,15.1497208931118,15.2993937444346,15.0115414000221,14.8429521217691,15.0785635006112,14.8238348623048,14.7773086059905,14.5990723492179,14.8526428475999,15.0479120816099,14.5838230797784,14.9599788565811 +"Q9VES8",17.9227136375693,17.8479467923925,17.9450028242359,18.1013211594538,18.2212911180664,18.1329273709971,17.9262216089984,17.8185602174666,18.0967350274414,18.0259743054589,18.0323548156404,17.9511221735396,17.9486785058682,17.884752550269,17.7809545611568,18.0082967612089,18.1283004847227,18.0264640211867 +"Q9VEV3",18.3349156921453,18.44906090581,18.4267624780008,18.4284190853335,18.4847404088252,18.4378486186099,18.1359513560167,18.1158146975486,18.1935544863842,18.196191325991,18.2623245172153,18.2310745871514,18.1328581552047,18.0658070973699,18.1168882519997,18.2816038794742,18.1321918673965,18.1038110720194 +"Q9VEV7",11.9262343297076,12.6834543528132,12.9495272259007,12.3005465091245,12.635304599865,13.0402106525314,12.876865384553,12.9328174814973,13.0924882384437,14.7115690841268,12.9835395360291,12.4908902978425,13.3238330938243,13.3827440324674,13.226038837854,12.795084346563,13.3162727452273,13.1349774953269 +"Q9VEW1",14.8142259798279,14.4358766841217,15.06842254194,14.555580387063,14.9004301918995,14.5341050758671,14.0846984169814,14.285897502529,14.9061201044969,14.928855001437,15.0100912361577,14.4323230729733,14.3136088538599,14.4178890844117,14.6671417880679,15.0656571315631,14.7124410716127,14.1545131873872 +"Q9VEX6",20.8345283414454,20.8074025060873,20.8914975678423,20.8202317986352,20.8903755388253,20.8650493330847,20.8763602840083,20.8094362044374,20.8188939860756,20.6295294407225,20.6631776903708,20.6835427663839,20.7519288351953,20.7178488836151,20.7831730672499,20.6841327523472,20.708470629018,20.5545547317176 +"Q9VEY0",17.5890660299184,17.6120478115011,17.7439022303852,18.0149098861402,17.9144292540661,17.8866815662568,18.1465392962579,18.1851990693166,18.2633076389148,18.4100626772406,18.3229069061305,18.361417898781,17.7218721153995,18.0152842239091,17.8422425961857,18.325069964801,18.1576527048344,18.1099680392342 +"Q9VEY5",20.8670359038538,20.9386825981318,20.825846973482,20.8575145233693,20.8987612075415,20.8687113586689,20.8202904153941,20.8004349605559,20.7163538558181,20.7272221765785,20.8039664078473,20.9419897864948,20.922184552681,20.7154015470129,20.8179102077951,20.8118727380814,20.8488735888688,20.8353081276993 +"Q9VF15",21.0318131625492,21.0070110524334,21.1018711943237,20.8685677752786,20.9628302764957,20.9335356009467,20.7625225836498,20.7802117370263,20.8701175119133,20.9641231879938,20.9001167833192,20.9529315653007,20.989068370716,20.7729824468469,20.664546789296,20.5096510388416,20.7025938229076,20.6027434572485 +"Q9VF23",14.8600215141712,14.8248448211726,15.0389041787049,14.7855724079593,15.2533085771368,15.2063445865211,15.381266481649,15.3209785880494,15.3187225540025,15.7028523160994,16.3075952680121,16.2467806433697,16.3317967849414,15.5093894274775,15.3189654141581,15.2598616885134,15.1052545114855,15.1916538165775 +"Q9VF24",15.8892563206936,16.1263322461543,16.0019243163348,15.9091143086259,16.0533788698449,15.9550071834363,16.2515802796579,16.1333712070883,16.1829079204998,16.0310838120634,16.1285486274909,16.0617385192989,16.1620755828563,16.1101450272718,16.2069001866659,16.5438865173156,16.2352208433624,16.3785186949768 +"Q9VF27",22.3265060994952,22.3285806499525,22.3318101033776,22.2782945682203,22.3367841164001,22.3760682985233,22.1830532419587,22.2613358954493,22.2243485993153,22.2151763863073,22.131517279829,22.214670299732,22.2729654403559,22.2591722677304,22.1941543305908,22.1966414683549,22.1552469953309,22.1315855731534 +"Q9VF28",17.7085467171411,17.833029919356,17.6565975599102,17.5763899095203,17.764788278605,17.7911826440492,17.873886403668,17.6606048102625,17.5987877040785,17.8577617434178,17.7742775081784,17.9560742509397,18.0272328344751,17.6036654421813,17.7742667967897,17.4627369290551,17.8701885786942,17.72964558151 +"Q9VF39",16.3861992989886,16.071092970241,16.3554690391105,15.728260755249,16.1004925055873,16.2554560588145,15.9564067327778,15.8951896783588,15.879614821447,15.748496765188,16.1390028992971,15.8243564352206,16.3489175519628,15.7812819044914,15.871568055137,15.6206397731191,15.8018609193097,15.6024564675557 +"Q9VF51",17.5763097644054,17.6701608236948,17.7159319159691,17.4238135936645,17.6483361846159,17.6127381775091,17.8291913685021,17.6864415445868,17.6425708258755,17.6056427917747,17.7695942850506,17.7855022486362,17.9407371342241,17.6869734017241,17.723786449492,17.7083069139738,17.6224953268724,17.6034719490627 +"Q9VF70",16.0171493413853,16.0239326311139,16.0495873442289,15.8960535377699,15.9699586634249,16.0019100904221,15.9146430268942,15.9181131783176,15.7812808809251,16.0100353446954,15.935991342679,15.9586416419416,15.8808236468477,15.9404642780021,15.9864529199047,15.7872753473545,15.7175201514093,15.7281073675245 +"Q9VF77",15.7222560999173,15.6520838428734,15.6247176269647,15.6048539235403,15.7224016794918,15.8662365626943,15.8318172063203,15.6698739435946,15.5228089393401,15.5654807169087,15.8138808332119,15.924534727215,15.7348246397188,15.7210981227402,15.6252244230396,15.8111899176341,15.6910840821276,15.7069002247858 +"Q9VF82",14.8871446922062,14.8599556674342,14.9710984769315,14.6764816349733,14.9926109704234,14.9337378735806,14.9450251520625,14.8586316068222,14.8874791821332,15.0790883600281,15.0455603399557,14.8533343796084,14.9973204328737,14.6554572158392,14.9040904833371,14.7648456602061,14.9376901318751,14.800165536759 +"Q9VF86",17.332915575482,17.4010233684781,17.300849404136,17.4437855158319,17.464766431716,17.4414120497579,17.4316000811079,17.5416456756799,17.478792178856,17.6815287303984,17.6509343282044,17.8450830108881,17.8240111191179,17.6824209993227,17.8720159832927,18.0267682237388,17.9998184422759,17.8024566187462 +"Q9VF89",14.7191204511836,13.7354033652728,14.1994940554964,13.4370057849254,13.8837988313985,14.1018205669151,14.4355563253344,14.2340789865531,14.265211414301,14.1796307921477,14.2625030717603,14.1371524978439,14.2267626958129,14.5236642795493,14.3251989603689,14.3099475204101,14.66857503528,14.2791460748886 +"Q9VFB2",16.2376650231895,16.1897445017352,16.4521841913257,16.1822001912997,16.4165047308545,16.3201986863597,16.4534667746213,16.575714831699,16.4556142215683,16.4712527277464,16.6458876948302,16.6107980723802,16.5622689206872,16.4610627814043,16.4850887528585,16.76485319358,16.382792290601,16.3478229066318 +"Q9VFC2",19.838529654689,19.7044485576194,19.8646800872782,19.5281737495466,19.618916366459,19.6209759665802,19.9907011833482,20.0208570339096,19.9932420723443,19.9170941519981,19.877594688605,19.8347134556367,19.8864125937393,19.9420551235501,19.8392057999729,20.0564195272964,20.0534590904745,20.0645134788053 +"Q9VFF0",23.4975331103811,23.3840862326912,23.5201840159813,23.7384643745852,23.5135173667025,23.5052330426002,23.8230499717853,23.7249581286999,23.7884968240738,23.5173090253584,23.6607429697182,23.6489718527625,23.7695786731743,23.8478179579241,23.7950779471163,23.5914382504605,23.806250750009,23.6794097232108 +"Q9VFJ2",13.7254306021023,13.8124311582916,13.6862597064382,13.6802984073051,13.7764901138332,14.0558320030934,14.0030120661278,13.9073335763285,13.7112281030319,14.3409874412274,14.2300030733848,14.0054448585663,14.0137807569031,13.8572365420989,14.2326668551453,13.7130494195903,13.8930642293192,13.7851271669811 +"Q9VFM0",13.9160163262546,14.3051448459254,14.396486455293,14.5401341774483,14.3784538514185,14.4612564328519,14.4640785615357,14.2071535721395,14.4274527180189,14.2733160025825,14.3363232883467,14.3266317166648,14.6482916407165,14.5132097133328,14.3329337774486,14.265597893899,14.3671493312735,14.1626735021592 +"Q9VFM9",17.0983277929863,17.002204094311,17.1422211350313,17.2702191765724,17.2862334567926,17.2203165718695,16.9401071166863,16.9888865322121,16.9909431559978,17.2895939303496,17.1853162226143,17.064657923133,16.8823684992923,17.1563961588711,17.0678039682495,17.3076675520953,17.1692476031809,17.3023413137009 +"Q9VFN7",18.8913835617307,18.8266308142782,18.84807840806,19.0076440036752,19.07930826568,18.971384589628,18.5211480986288,18.4534564897169,18.4425171989606,18.6726108425548,18.7611507239686,18.7161483036052,18.2902157594678,18.2841970974625,18.3467006550223,18.379095415194,18.357354290145,18.4372685259751 +"Q9VFN9",15.9044816583035,16.0124068670223,16.0332895997069,16.2188976090335,16.1240032424995,16.0532012085883,15.901570867196,15.8219328157668,15.8837004507158,16.1131329689238,16.1497038380907,16.2227644775717,15.6655057137904,15.8717117929638,15.8647456026735,16.4634062148119,16.2872364757159,16.2092936928028 +"Q9VFP0",16.5820637869538,16.6917461456539,16.5484081442295,16.7354470067036,16.5657677953325,16.6540376415267,16.4583349165865,16.2572183435137,16.4267102906418,16.5540288480032,16.7205205206338,16.4938498711234,16.3197125094099,16.4553913925921,16.6193160515158,16.4090949270502,16.3680377969813,16.3163599956701 +"Q9VFP1",15.8287342597278,15.6895201998195,15.9135926733736,15.3727353892626,15.1183945300407,15.2372889754101,16.1413318786431,15.9232386680284,16.03278854555,15.4148922129466,15.2893451695473,15.5218079242146,16.2677782925969,16.1862393470246,16.462798656153,15.4340009079067,16.2527350266233,15.2911961663825 +"Q9VFP6",20.3537205118795,20.2546294930192,20.3369690562056,20.2830389466731,20.2590013677689,20.291656871506,20.066983924404,20.2019015144165,20.1238679683747,20.2187100745839,20.1335325056439,20.1383990510985,20.2232716993619,20.3558055609061,20.2170028426406,20.1839448071383,20.1247995222861,20.2217741742154 +"Q9VFQ9",18.9168049203062,18.8240354162651,18.8776721636532,18.869681099899,18.9128289608384,18.7867115373492,19.3277890433916,19.2828614130732,19.3378164883367,19.2218146065539,19.2832249879569,19.4060740207941,19.2864000533673,19.370910097337,19.352438518602,19.3532743460775,19.3019031941249,19.2150513408603 +"Q9VFR0",15.7521417539688,15.4740151596673,15.5987232805669,14.7848845275596,15.4301073531191,15.4113543182206,16.2484011904832,15.4363932291222,15.3595894180902,15.1643092874637,15.1612657172993,15.2704270618059,15.5841369818104,15.5745982052635,15.3775655982584,14.5399547939406,14.997448870755,15.0561688582842 +"Q9VFS4",15.3131123919164,15.4910956062988,15.5480035153079,15.4879099957546,15.5823056750138,15.6021889631478,15.0351139558,15.2265389476252,15.1675996257743,15.2213648853257,15.3941886465636,15.1708135675174,15.1689954261881,15.0068905328966,14.9869414220708,15.4450687175803,14.970545964167,15.1960182787467 +"Q9VFS8",17.3611713633826,17.5879889734479,17.4456737288917,17.3988507235393,17.4497731483313,17.4053880625654,17.1753562507319,17.0707808261147,17.2525452516381,17.4156052763538,17.4953293468658,17.4191145047106,16.9976786661321,16.9613523223796,17.0446160520967,17.3413442860333,17.1247819490336,17.1226689662705 +"Q9VFT4",15.7413428002716,15.4673830280318,15.7086910035753,15.6176274006429,15.6331913110638,15.6104993657112,15.8676513794039,15.6597484152562,15.7155567848366,16.1174876771529,15.8221923691412,15.8807130878978,15.8562929956498,15.4574184513194,15.2913502840232,14.8022816627787,15.9627503410874,15.7958733898556 +"Q9VFU7",14.8619023733405,14.8206174424031,14.7590332036104,14.5952261106708,14.8639030017034,15.0127505805086,14.7950982940899,14.7186777762062,14.5243972403556,14.8875019040584,14.9133111143619,14.938281843631,14.6545693037977,14.7217293900466,14.7395624731703,15.1794198131987,14.9354790744347,14.9996924578801 +"Q9VFV9",21.4877927187968,21.3160767970422,21.4483758266469,21.4850316790005,21.3997029718655,21.4989384299423,21.2801734758961,21.2671961467842,21.2999387738117,21.4264041628763,21.4312487622984,21.3430738691561,21.1937101574935,21.2076604847428,21.2866480438155,21.3073707786233,21.5585978099536,21.3035080293141 +"Q9VFZ4",16.1393651710731,16.2908340754492,15.9863601686149,16.1819716385833,16.2521546177955,16.113348039432,16.7884968473871,16.81107961565,16.8708138455898,16.7104735478667,16.7899227450223,16.8306245219016,16.7173634533378,16.8856909600961,16.8813533247507,17.0415388184665,16.5495274627015,16.8967095764256 +"Q9VG00",15.2915432826296,15.5748238229056,15.1602817072414,15.267579126421,15.5131410159362,15.234178201408,15.4068734563343,15.0913681586962,15.092479648078,15.1682727484438,15.3419113127358,15.3674161614041,15.5216373575553,14.9679215807587,15.3851510375329,14.9107240846917,15.0774641650431,15.3271233004112 +"Q9VG26",19.6731876931403,19.5733358010912,19.6873450764538,19.9193476749779,19.77685529801,19.8011986031849,19.6568881377496,19.5321443071755,19.6111316227902,19.727211508423,19.7018778002719,19.7633013776712,19.6726864828647,19.6886408918587,19.6817845251476,19.6113292718325,19.9877966705808,19.7158895637403 +"Q9VG33",20.1069050422592,19.93604271322,19.8324945831671,20.1494907368013,20.054284087357,19.9702804448838,19.7766277786842,19.812574321277,19.9022284086489,20.1508629546117,19.9337608205809,20.0504269257248,19.4928272765121,19.7805266839775,19.8318004612524,19.9634950666717,20.1230202291278,20.0529780318632 +"Q9VG42",15.558429009446,15.5407988276265,15.6763978537841,17.5639661856958,17.7602373460696,17.6870932803087,14.9808178761656,14.9174725690401,15.0186624896144,16.6378419554422,16.6529553018214,16.5223459442341,16.4225706523414,16.5785561164246,16.6305918185923,16.2017146977765,15.9153202158853,15.8302489903339 +"Q9VG51",19.1662517463088,18.9589552769935,19.2433098706607,19.2449425699128,19.1380131097513,19.226140142768,19.0918326538633,18.929725787869,19.0779843505397,19.1270310415344,20.1191616875138,19.2586789865375,19.1623454184157,18.9177042902689,19.0956443420985,19.1486707679495,18.8775140455878,19.03931650538 +"Q9VG69",20.0857444464619,19.9406191448235,20.1360132297036,20.1597202133116,20.1280324702489,20.081448469105,19.9069209736815,19.9032862386196,19.8559974513016,19.8065609556163,19.9289175338812,19.7857306074407,19.8474484097111,20.021106719123,19.9098561407653,19.9085399241526,19.7929728162388,19.9458890246188 +"Q9VG73",18.1367032895333,17.9815316010018,17.9576978401702,18.0497706987554,18.166429333148,18.2883427350766,18.1163912011365,18.0457880419975,17.8557767011433,17.9703015131865,18.114978458264,18.2859213403227,18.0212933848872,17.950340882511,17.7396401205146,17.9785411468934,18.01393291747,18.1456224971649 +"Q9VG76",15.6720015903344,15.8207398591981,15.8055628358242,15.8102994161628,15.7853954744616,15.9357549157106,15.6883965076694,15.7034074241852,15.7192224846595,15.7004455690291,15.9113443414473,15.9678046117471,15.7268360965064,15.8352046877927,15.5159576141676,16.0644700092893,15.6063574019065,15.7181467268825 +"Q9VG81",15.9752729147265,15.4401726631727,15.1047211645605,14.907184150944,15.0740239462386,15.0090048034704,15.8703684923536,15.9243929976683,15.9953394348381,15.4782230502968,15.6105731180719,15.5162950230504,16.1876476976892,16.3709198335744,16.4738435547956,15.6923760670772,15.6909898143615,16.0118683923725 +"Q9VG92",16.767536163541,16.7217128341896,16.8667514706972,16.6529558498282,16.5718835440111,16.2807546547734,16.6569994040603,16.6639207281855,16.7400534563717,16.4421510999606,16.4352800464291,16.3511343956153,16.4450759474768,16.4693444055395,16.6518624409399,16.1283835443634,16.2309604508755,16.2025455908329 +"Q9VG97",20.0405959889515,20.0058635898823,19.9821790666899,20.1307005212231,20.1660257032054,20.2191674313935,20.0106790680067,20.1378864338474,20.0194052868541,20.1951123155744,20.2030741960738,20.253975243182,19.9602887004474,20.0179608623702,19.9970252488054,20.1199582091688,19.9265240179927,19.985582526447 +"Q9VGA0",19.5422240102248,19.4763061728382,19.4219024921698,19.436588631449,19.5552298420526,19.7739330448314,19.1073628385631,19.2829806392667,18.9865857514686,19.3363938815398,19.2574858779853,19.3568873908511,19.1285745535681,19.1728676857811,19.1782138051706,19.2097493858551,19.0160230832759,19.0433708167084 +"Q9VGA3",19.3903514363944,19.211898238481,19.3015446705714,19.3601073612422,19.3490821896343,19.2456320084932,19.4679792937842,19.5100802280592,19.4231080874562,19.5808473260535,19.6357176777992,19.6483500637096,19.2476653266914,19.3913803173927,19.4236866789696,19.5949454851456,19.5437375779449,19.5995747201113 +"Q9VGE4",15.8360577277719,15.8043497598251,15.8646196581183,15.5279527409822,15.6752653937255,15.6798226036,15.765167067635,15.6739994658208,15.6035329508022,15.579501032721,15.715004544062,15.6269736540887,15.6308692590969,15.5414635194035,15.600261923022,15.6635632402461,15.593028385616,15.6279002788217 +"Q9VGE7",13.8223736638096,14.0662304263822,14.2387279989732,13.8312369066385,14.1312215028335,13.9087912517014,14.0034071026834,13.8830798096322,13.9258344857365,13.9439923433813,14.2200648023819,13.9536635743938,13.6771462901808,13.7923345635792,13.5948967334986,14.0786061767096,13.2638313785941,13.7348484390997 +"Q9VGF3",15.8528754986714,15.6105069156573,15.6977361679227,15.589158791041,15.7717957124221,15.5634345934109,15.6786585199652,15.6437151876186,15.5849405879045,15.6967932361575,15.7514326908555,15.9111662785424,15.6776103340031,15.7516468452931,15.6312724027491,15.608766301161,15.5747653291527,15.7153126504697 +"Q9VGF7",19.9964315528566,20.0655592012367,20.0078747257024,20.1075280900629,20.1982233569759,20.2137544075479,19.9978927578412,19.9202397800827,19.7793648850228,20.1166995993521,20.0184674552775,20.0327693678039,19.9257931423701,19.9861484984413,20.1641399301327,20.1755687825762,20.131275633045,20.1220106088494 +"Q9VGG5",16.8371923526001,16.840941002068,17.0219394390714,17.0333323451994,17.1535901026765,17.0996260650086,16.8280600966553,16.9379955511518,17.0293943543253,17.3461947613756,17.3583826928163,17.0887668780186,16.9519557190585,16.9771663738658,16.9699350786532,17.3053277811129,17.0339873334236,17.0924012409248 +"Q9VGJ9",17.9775082605473,18.020361059881,18.0765558137526,17.983261329053,17.9535346708586,18.0228581119096,17.9264743767645,18.0721600449236,17.864958438234,17.9340095470707,17.9610929851417,17.7165865623817,18.1192471857966,18.1672304971978,18.2056588359458,18.0616056610982,17.8277271023277,18.1154885981066 +"Q9VGK3",17.2946407925564,17.0751531747484,17.1863540454545,17.273194149556,17.0289992338157,17.2154100337451,17.13212993415,17.0143137593124,17.1198540472375,17.0093642419462,17.1212228792176,17.0787934203907,16.9440133568886,17.12559555554,16.886146057266,16.9236122305266,17.2116701029895,17.0903971015298 +"Q9VGL0",12.9498897693751,12.9307779518092,13.1105217506764,13.170465743332,12.6962004725517,13.0650747459216,12.8474706779324,13.2784509499279,12.823680181653,12.5428401405265,13.2838148951944,13.0822878659642,12.9324138094807,12.549528289828,12.5551877358764,12.8801382566185,12.584445837954,12.6864661171735 +"Q9VGP6",17.889168224579,17.947911643617,17.8161575911628,17.8355774008945,17.8749637814272,17.8371443154515,18.0074855967602,17.909109653079,18.0711390489773,18.0720876827239,18.0875080428817,18.0222205305456,17.8843748911976,17.930105926612,17.9517752273717,18.1194253436432,18.0585200921815,18.1096824262895 +"Q9VGP7",15.7843454420949,15.6977197522956,15.6004643587695,15.7464504810067,15.7450669589731,15.7914365363258,15.8771707041644,15.8398558902187,15.9131222835411,16.2669385296489,15.922266251167,16.4644557878933,15.7008869980004,16.2569942348018,15.8822787663461,16.3668043323931,16.2806933998522,16.0908387544325 +"Q9VGQ1",22.4101240258257,22.5005295993376,22.4114645342303,22.4821875145122,22.5247150588363,22.4336813260456,22.5128825005159,22.3787563486887,22.3732910611782,22.2314383934513,22.3616992502797,22.425477398914,22.426898508871,22.2722243159839,22.3607287294156,22.537241756345,22.5628481263949,22.5961296497374 +"Q9VGQ8",16.3506760747905,16.0540880322305,16.3669742028424,16.0813700738749,16.3108713708567,16.310331078698,16.3964358878984,16.2468425117179,16.1808555779698,16.2540721232597,16.3959994473898,16.4094208336825,16.1898320433719,16.2354467540085,16.130082559405,16.2532686665726,16.2824067535646,16.1279906171704 +"Q9VGR1",14.078367623423,14.3513566701647,14.269212156433,14.250169723715,14.1475542930665,14.275127955315,14.2697196205734,14.1435040590394,13.9295052908324,14.1610140235593,14.3651358271777,14.253308600929,14.5329423566803,13.9495758607883,14.1442643257672,13.6316761827425,13.966762820457,14.052471201417 +"Q9VGR2",15.7095507858688,15.5276523131798,15.670481836383,15.5763141796929,15.9571621836914,15.6785615070429,15.7389514122905,15.6020557112665,15.7497739220646,15.7194946884602,15.5945072496299,15.7045626926605,15.5817665532941,15.5984321991006,15.62704401667,15.6163835915001,15.6626515542384,15.5120372362857 +"Q9VGS3",19.3865295082652,19.1693719110464,19.2605444117548,18.9834303432546,19.1307460019083,19.25477082148,19.4125567974517,19.2487599860234,19.1733407860472,19.0200391490192,19.1360154853885,19.1875546120788,19.6863684358066,19.5932696916509,19.5625659745461,19.3674803799409,19.5782415377207,19.4176280078314 +"Q9VGT8",15.2097784098679,15.2720088294942,15.1903296359485,15.2208430242587,15.2907104724818,15.1436452907159,15.176115471209,15.4811178632756,15.4513678364282,15.4315159701735,15.2906116156028,15.3345520143781,15.4175498645318,15.5006405129796,15.6547663141726,15.4579070795666,15.0786205257735,15.1390487279643 +"Q9VGU6",18.4509353493036,18.4582504353123,18.4925218561523,18.4443365560505,18.5696006953708,18.5577382748493,18.531618449299,18.6124902204293,18.5173187665171,18.6734617201038,18.7299383527683,18.7918621938692,18.7146242170576,18.4810925151194,18.6055938712991,18.6385705190474,18.6021745918617,18.4885118481749 +"Q9VGV9",16.1472654046804,16.122054564452,16.2676029884993,15.9569744108689,16.2070241782498,16.3646690155391,16.0911257570277,16.1076020375997,15.8849413335673,16.0128904372438,16.1993381963064,16.0100621283573,16.0071987092142,15.9938533793709,15.9945811806779,16.1903003634698,15.7758827265261,15.883898435864 +"Q9VGW7",16.4813046911593,16.5730520014256,16.7871214079551,16.3431656300006,16.6162774466696,16.6121932219599,16.8536169349341,16.7228712769077,16.6394637202505,16.6272450289448,16.6419244406302,16.5503243618257,16.9751069468731,16.8949287596573,16.9267678606439,17.0885383785558,16.9199236851773,16.8531070378326 +"Q9VGZ3",17.0389461148417,17.1799227752369,17.3918283874457,16.7587539717865,16.6606717073361,16.6854513334632,17.0281108844558,17.3620488123527,17.2705293687609,16.9216413811781,16.8637127287892,16.8125172357034,16.8705080506453,16.8639968400958,16.7934504613207,16.5341023154576,16.2217098545542,16.1982859316712 +"Q9VH07",18.3081836496375,18.0887675158585,18.2442642204542,18.1079257970531,18.2524222586201,18.2888658314008,18.2739337767523,18.2161442634179,18.0573246373916,18.2303384587638,18.3290716517986,18.3172750607193,18.2258243978304,18.2023217228457,18.1288102553568,18.197695254048,18.2551739215443,18.3073613287625 +"Q9VH19",13.8578713955726,14.1790724157936,13.8615289933906,14.1117420170225,14.0785346714337,13.7667428315977,13.9038048515325,13.9849784869563,14.2040023307868,14.079762572625,13.681668205836,13.9939536640057,13.8282606860473,13.9369430992,14.1387928987311,14.1501322581822,14.0703769017625,13.9665530624702 +"Q9VH25",16.1053005871602,16.0430448329112,16.1921405473005,16.0662961419847,16.19931915277,16.273707528755,16.2778128074146,16.1484002116357,15.9777167360029,16.2749190945137,16.2357156756942,16.3595273058203,16.2367126846605,16.3935804957286,16.2432145269562,16.3296988621311,16.270679809125,16.2444335330299 +"Q9VH26",17.9903265887541,18.2833122449891,18.1328622822783,18.6936577572955,18.5340456086481,18.7488720871194,18.0448669277656,18.0878685674917,17.9551045451026,18.4003280047034,18.4793172015846,18.6353837332434,18.0065463848549,17.884734175335,17.8927170785689,18.5856194707381,18.4520673360632,18.3564054077991 +"Q9VH37",16.5436256437698,16.761773473063,16.9334022183673,16.722578732999,16.5730567617873,16.5242901852687,16.7261629753651,16.7330937510935,16.9204467095025,16.6259188521839,16.5249569669329,16.3726807812428,16.276147729675,16.509478550767,16.499152292767,16.9174608284458,16.709535258795,16.5619225752904 +"Q9VH39",18.8338614458144,19.0691404248593,18.4513142141329,18.1362970483117,18.0111263977058,18.4617769370364,18.8146636572623,18.9048519446985,18.4152852878126,18.0318288605826,17.8533903021515,18.4539075375613,18.4488634032063,18.4515264210709,18.3886359657291,18.1268417885884,18.1023207132796,18.2214362614934 +"Q9VH64",17.8713992670665,17.8737285971936,17.9147946399338,17.8367110419751,17.7004443271868,17.7119710831947,17.6265215992861,17.5308712922556,17.5656556031419,17.1719825818747,17.4039298681829,17.3535788808681,17.6598438871147,17.6463040093901,17.5666551886468,17.0022684285802,17.0134487116884,17.056071410112 +"Q9VH66",16.693897597159,16.5403945169994,16.5881808729169,16.5181898795718,16.6765747880349,16.6936761294238,16.6945060421234,16.6796370657869,16.4477174228075,16.8753948021981,16.7916371675802,16.8681477263335,16.7603937226656,16.8841499454609,16.8098915632935,16.9761896419788,16.9461782018342,17.1109579709215 +"Q9VH72",18.7532064098571,18.8237917042067,18.8697672621739,19.9073300111435,18.6330890720939,18.896715438226,18.1943136087175,18.6256903925821,18.4575156165482,18.0200984987565,18.5328078221829,18.6186635559287,18.1379618377286,18.6215272426879,18.4767874223911,18.7328413033875,18.5088454358373,18.4263023743229 +"Q9VH76",19.4180434796689,19.3628723081205,19.4690679243999,19.5248227274052,19.4106906838533,19.4120269929058,19.2077103015878,19.2411916259495,19.2986334517322,19.2775712024413,19.2700342883443,19.4130289752288,19.0883686630506,19.2428991421577,19.0645522416559,19.3712946455765,19.3601229713051,19.2305014338078 +"Q9VH77",15.3246263077062,15.4630106801412,15.5884100365372,15.3692378522412,15.3421351895859,15.4067446203911,15.3552982277293,15.4699349878468,15.3519330093029,15.62936414533,15.6548324557339,15.3347782192164,15.512185785125,15.7017143230047,15.7631154994057,16.0298001970286,15.5888848788476,15.7755311303069 +"Q9VH81",14.1404923483581,14.0474624019682,14.2640080860613,14.1426207100087,14.2556765213125,14.3145127583103,14.6544934700963,14.56973780209,14.4856493403466,14.3946803551892,14.5190089933307,14.3208661061718,14.9065375211596,14.6911566878078,14.9360659989003,14.6674032352469,14.8231852335496,14.5851253502685 +"Q9VH95",21.0942625864719,20.9768771501827,21.1244838971798,21.0299599213022,21.025719697773,21.1116050193938,20.9044171461719,20.8857584962206,20.8597172914344,20.9451392102312,20.894138415115,20.9724934494989,20.7029214901708,20.8727002332908,20.738196355938,20.7925048349563,20.8140111967223,20.6627091758595 +"Q9VH98",17.1358365098303,17.2725684071831,17.3742243163672,17.0781633734203,17.2285542393548,17.2129044537433,16.9622454365546,16.9208268731029,16.92161559378,16.9711507346064,16.9816158082249,17.0382611007113,17.0039863452847,16.9839064530389,16.7976973019088,17.0614388928163,16.8253495116079,16.8681185260019 +"Q9VHA8",18.6162820024952,18.5946182155394,18.6203975212887,18.6697481970483,18.5957535433363,18.5466366947375,18.7268745853126,18.6126901588616,18.7120039594507,18.4472561080171,18.5829367862337,18.5574792968553,18.5230495230298,18.6927395856149,18.6678282853875,18.5410645088121,18.4455366351292,18.4199291669955 +"Q9VHB8",15.4140978596365,15.165587944279,14.9543331216125,15.321701883794,15.3921260878002,15.1194335824669,15.622915668065,15.6091358044168,15.4787209542076,15.5343800979009,15.6849870993268,15.9836982039027,15.7033637754724,15.6185382075438,15.8880609432852,15.650196050642,15.7762801921442,15.8224085300359 +"Q9VHC3",16.9832942479972,16.9705327981229,17.0575999202058,16.8090731141364,16.8548697123981,16.8436686233866,17.4950347853095,17.3484101439972,17.5697103955824,17.220635936531,17.3651825078977,17.2621596648823,17.4374531573989,17.2967215845625,17.2716571816446,17.3710641912778,17.4808386856722,17.3117596469491 +"Q9VHC7",19.9714049626337,19.9046276261669,19.9090487394148,20.1393343489492,20.0051488843532,20.0591209824983,19.8805600385219,19.8651455348489,19.8227875666756,20.0736259708112,19.9417815845814,20.0626788466833,19.6361490162443,19.9092696512991,19.8951545221491,19.9369477980975,20.0120488540083,19.8892314778367 +"Q9VHD2",16.3782779201416,16.5120881715936,16.4754355990901,16.6310164446919,16.6803642825993,16.6859598965719,16.5738681305525,16.5597842139992,16.5138057041905,16.8225317563316,16.8073916121207,16.6154474894058,16.323681712052,16.6224868588688,16.6916669315211,16.9012736370808,16.4485344616688,16.648333980071 +"Q9VHD3",15.517738913267,15.6495978433926,15.6355125317941,15.5551277001243,15.5515219455219,15.5815204879264,15.6736917158455,15.7012152080941,15.6458671242422,15.7027353688892,15.7062659499443,15.766400323231,15.9654384759998,15.8711699861545,15.8955093965236,15.7546550454209,15.6896162864395,15.6445773558295 +"Q9VHE4",17.8996833986002,17.9093933679616,17.9838473870616,17.9751485892537,18.0267307322584,18.0002552439887,17.9245761701319,17.8726159960529,17.8126848692812,17.8545620151979,17.9539764279031,17.9190107766512,17.9856731726019,17.9404751444862,17.9467762920464,17.9116107623215,17.8480624394449,17.8886795390782 +"Q9VHF9",16.7929327449094,16.6112452809372,17.0504468280922,17.0804131049517,17.1295062930249,17.1432910191685,16.9507639516253,16.7504494154657,16.820217720338,17.2720324324391,17.3078050925324,17.0204069625597,16.6975556948671,17.1340653884312,17.0762314885831,17.3489639519387,17.2095904103398,17.0320678619897 +"Q9VHG4",18.1799291970789,18.3083291409143,18.3922003794418,18.2653598400952,18.2981927862305,18.4713697540856,18.4376232864798,18.9410023995977,18.3885660578073,18.5257656187529,18.1905057332479,18.5229338444396,18.481364209351,18.2161754414286,18.1933640076408,18.32777181006,18.2636084603988,18.2493799184028 +"Q9VHG6",15.6858189907698,15.7436130189509,15.6366035426938,15.779754212398,15.8952949896399,15.8976612036603,15.7081367748887,15.5772870505541,15.3899068624602,15.6874203868824,15.7208201633134,15.3503163531281,15.7113410534774,15.6641317729823,15.9328154623512,15.6674381656001,15.6387625885759,16.0326061597228 +"Q9VHI1",14.3026119926849,13.8877342034416,14.188957824358,14.0720348435612,14.2190567552702,14.052929909866,14.2280068881168,14.1626685421413,14.3177093457209,14.3053417855085,14.3987246140919,14.2412281770618,14.2689182453126,14.2329872645434,14.1361710928059,14.1825770679199,14.4583194436157,14.4224944732915 +"Q9VHI7",15.2277670511678,15.3026254356903,15.466187150791,15.6324537091702,15.5502047637803,15.5000649385222,15.5482202714922,15.2569776962435,15.5650138844436,15.5724474969876,15.9245464072609,15.5904842399996,15.4962180155914,15.3714818167817,15.4252489064852,15.547411380036,15.6186818046884,15.4775188042037 +"Q9VHJ7",14.5128171501306,15.0865047124774,14.514123762369,14.7511593619912,14.4887224332542,15.0110538429979,14.625010385194,14.5205726197588,14.550130299764,14.9024691627088,14.5081462138285,15.005914972926,14.966997719646,14.6244034259461,14.6926737746198,14.8193608242817,15.3494651986874,14.8039179512755 +"Q9VHK6",17.9721860947433,18.2269244015478,17.8998104125195,18.1693499885384,18.0424396988031,18.1341306929966,18.0775874503186,17.9644786973533,17.9314935845528,17.9633532851644,18.008310499076,18.4486298727662,18.2095803979473,17.8979780277516,17.9350029448041,18.0346526365109,18.2865785286909,18.0776423455836 +"Q9VHL2",20.685594818383,20.6832172508333,20.7148834010336,20.6882858225709,20.6449790462295,20.7138158629532,20.6728839644084,20.7208470468136,20.607695231915,20.6244958406995,20.6735458719964,20.6860269140362,20.6374939095578,20.6216653560324,20.6167615404603,20.6152340208696,20.579733804584,20.5848054260908 +"Q9VHM3",14.812309803243,14.7714911298755,14.5685776328001,14.949994457545,14.6327663968754,14.6617812932398,14.6849343946114,14.6028153440098,14.54982089836,14.5882023651415,14.6372523048517,14.7619039941932,14.3942270060853,14.577144586887,14.8511548721059,14.9254253435393,15.1336236076661,14.9618546794663 +"Q9VHN4",14.6051861845953,14.5674174380639,14.4721047667591,14.9861686204884,14.459115277453,14.645821817974,14.5385088634417,14.7632233960918,14.4382253933073,14.5645010576752,14.6135152665001,14.6474352947184,14.4160317055146,14.6385167476879,14.7123447566159,14.2956132083843,14.3642215143028,14.4900776107249 +"Q9VHN6",15.1111532423177,14.9192056559662,14.7335132419597,14.8460884606883,14.7734029704264,14.8954689898082,15.1024084447829,15.0713890252753,15.1372055004522,14.9514448958234,15.3703912453786,15.1106210168588,15.0455593364414,15.1675976934117,15.113343169775,15.2880890667937,15.0427568563893,15.3545915279935 +"Q9VHR8",20.0117907369087,19.9662714799324,20.0701895071206,20.1179447652643,20.1496869300268,20.1089644329615,20.6934859559046,20.6164598658277,20.6099369534167,20.5789409848626,20.5252143447772,20.5376019830208,20.4840362406309,20.6123203335486,20.5904429046915,20.6339701067389,20.6502158361973,20.6030330090988 +"Q9VHT3",16.1617053350307,15.9233245427825,16.0364349168451,15.908327091457,16.0727181775577,16.0984012685589,15.6572418225455,15.6020073980805,15.450302637212,15.4729461733709,15.6317295604714,15.7358134222731,15.6325095250773,15.5881303950766,15.4962814153947,15.5587612112772,15.5735810847899,15.5742574984747 +"Q9VHT5",15.3400350806941,15.5206094420658,15.3623401795699,15.5825861561678,15.5417158568711,15.4715548768845,15.8448170172702,15.6922060154139,15.8148205303534,15.7276202452227,15.7997455587527,15.7909007141702,15.74903127134,15.5112935214218,15.7747374020081,15.5570236377311,15.7355430139004,15.5867597054398 +"Q9VHX2",15.5703483338735,14.8025694783577,14.8652028400267,14.6842706675554,14.7680825775453,14.7133658930935,14.5580287105481,14.8394921571059,14.8226138862443,14.628038235107,14.7804608867335,14.9128732077886,14.8846339538338,14.8215241551191,14.8772169490454,14.4963450893695,14.8095357354258,14.6303922140889 +"Q9VHX4",22.9925701663946,22.9362652800603,23.021661317359,22.9480065379511,22.9163698181871,22.9080518083829,22.7951722345163,22.8041635846134,22.8149828859547,22.7652862164386,22.8074839265025,22.7845637613077,22.8868308439788,22.9217591365292,22.8266596674955,22.6402486094004,22.6420728627871,22.67219516818 +"Q9VI04",16.5800062875077,16.3766667668482,16.5786141134811,16.2238515407723,15.9513745894614,15.8493392028328,16.652173901027,16.7097568905658,16.7819721683071,16.2405280996031,16.256594670861,15.9133025466042,16.1192999147714,16.5496661113996,16.7529924624066,16.4454583131576,16.4172590277031,16.3850975632074 +"Q9VI09",20.405780930001,20.3332517304055,20.4243525897763,20.2415119122872,20.2767692248971,20.1891479921609,20.1941164445026,20.1571257325811,20.2640849776476,19.952949923261,20.0051308042454,20.0228460835735,19.8863092624484,20.1245187206445,19.8983139004839,20.1481542090995,19.9320264688261,20.0300771379576 +"Q9VI10",17.1001029093993,17.051254651539,17.0498242559592,16.9881718098226,17.2248511578472,17.2401287889973,17.4114579495951,17.224722838558,17.180067263482,16.9945392985291,17.3010533423208,17.3946572523002,17.4733230568084,17.1580329268559,17.2864834552535,17.2162504487444,17.2239305557779,17.0326844569066 +"Q9VI53",16.1437654126547,16.3688833824195,16.3958874691321,16.4789493301897,16.4196751705927,16.4318100752367,16.3474157752208,16.253610632867,16.2039457465187,16.3447820126138,16.4724623480097,16.5165844481655,16.2584529532761,16.2112213117711,16.211248540274,16.5982847024228,16.4457973407178,16.4121739070508 +"Q9VI64",20.9831630389079,20.797329183341,20.866201791795,21.1259011865357,20.9959718970744,21.0496116922446,20.7149243634875,20.7425596414361,20.7476571981507,21.0057849689557,20.9156933033196,20.9495293257549,20.6791728761834,20.9465747482582,20.820589548463,20.906223743045,21.0170414036858,20.981580620707 +"Q9VI75",17.5747892524797,17.4834446117744,17.5631401176754,17.8936799559297,17.6632880747623,17.6664165367072,17.3681725169329,17.2953780523353,17.3572476277522,17.2304458302994,17.4123602185715,17.3756137354092,17.4652213169562,17.4656680940782,17.2621662773821,16.9144529369782,17.1266227580545,17.22217751465 +"Q9VIB5",14.6964426183169,14.7625057550892,14.9947147899269,14.1602747772163,14.2412460420549,14.6639479247667,14.5856383065409,14.7172244229003,14.3384166093278,14.392672388103,14.2772688193107,14.0807166728282,14.3066817171497,14.303108163953,14.3237345973891,14.0505570812032,13.890913685222,13.7907362942914 +"Q9VIE7",15.0713803260772,14.9330922512588,15.1749597535221,14.98646381575,15.0515500084595,14.9565020683921,14.9504353826243,15.0011804769714,15.1027835091196,15.1988642004749,15.1727425767967,15.0247160446427,14.8280631004595,14.8828233892564,14.9923880012655,14.897777263072,14.8915953857151,14.681634711516 +"Q9VIE8",24.5316209374773,24.450617585236,24.4876909559816,24.6345435712393,24.6293450050195,24.5666763605333,25.1431456143569,25.1519719887538,25.1754142134301,25.0019288531051,25.0126996241503,25.0579000792962,24.9730713016484,25.0414767032549,24.9911700267192,25.0118263053901,25.0100256768024,25.0172849472566 +"Q9VIF2",17.2516153781056,17.2087808479589,17.1967342295182,17.3246646398201,17.2164604362755,17.2564234855324,17.5440054514555,17.5381290463562,17.6192650992268,17.4589644714006,17.4061589187558,17.4546706908814,17.4731795538475,17.7072674715153,17.6892456861346,17.7611782875969,17.7368110613643,17.5972685909328 +"Q9VIG0",17.4354438493076,17.2551459362917,17.3711578462491,17.3646979963079,17.4854482576154,17.5319610368373,17.2664613546063,17.3939135955625,17.273635507869,17.3615057041159,17.4520597070202,17.4210183546427,17.1705717791471,17.1396752985806,17.156088260974,17.592337591334,17.4647754797484,17.4371572682469 +"Q9VIH1",15.5198803984019,15.5841537983366,15.6801772304499,15.7942477752845,15.8366655264769,15.6895883509347,15.6293021042588,15.6429095506551,15.7573379515429,16.0413692979017,15.7727426876678,15.8861252220955,15.7807041937233,15.8580255061242,15.7232354344827,15.749512346824,15.8205190471334,15.7785519268884 +"Q9VIH3",13.7653484516658,13.8889958841146,14.1894996038938,13.8857669830284,13.8356605354068,13.7397455806834,13.490385272789,13.7998754764131,13.7655771159185,13.7684621165323,13.8408691251919,13.9488873229256,13.7673602431197,13.7159113391797,13.6778563281215,13.9933422687771,13.5893529756062,13.3490993843695 +"Q9VIH9",19.5792816499566,19.1352405312636,19.4878807748345,19.5365742695094,19.2154646302908,19.2733050402176,19.0636819439119,19.0562117191965,19.2446076981686,19.3373627389846,19.01649547923,18.9972942111165,18.440675529132,19.2738444936962,19.1060464618899,18.9351423417668,19.1954616195841,18.7835842870342 +"Q9VII1",19.7567248705698,19.3754275825947,19.5220406126839,19.558449053482,19.2515084946099,19.4752324095748,19.4469665136167,19.1827245216731,19.1442448868366,19.5085049424816,19.2730619877998,19.3284091350346,18.638025875786,19.4250350508131,19.287686030315,18.9920698299411,19.3929834483865,19.1431280114321 +"Q9VII5",17.3016599430571,17.1026136575931,17.1056718605981,17.4695679894039,17.4855493376719,17.4611236310311,17.3866963598687,17.2668172123633,17.298034391085,17.3592736238048,17.3837488988896,17.4119701247205,17.0090947918657,17.087025985066,17.162678510564,17.5602907551427,17.7608283715591,17.6471049451443 +"Q9VIK0",13.2246385138462,12.379822470204,12.7626151608711,12.4467460570274,12.5963122439211,12.9548676093795,13.2932072653559,12.9253180835253,12.5050805005299,13.0082448808574,12.7976399519846,12.5721119226129,12.1175690421958,12.9548578393136,13.0172492641344,12.6360521082844,13.0725072786184,12.9145334100392 +"Q9VIK6",16.6146137967541,16.7114262509705,16.713014959912,16.8180408292694,16.8223618998882,16.9115537652251,16.5399114521094,16.6032384271224,16.396310949571,16.5367614160949,16.4501091483314,16.6110419180629,16.3921871260825,16.5750236703938,16.4064170816628,16.6569047457213,16.396259969325,16.5200806915976 +"Q9VIL2",15.8784497551337,16.6138004068676,16.1255776344581,16.1584207357693,15.9547793319086,15.9461530066325,15.980799616034,15.7751058294434,16.1573390139737,16.0088180748175,15.8916822588527,16.066488797328,15.8855173988377,15.867093780903,15.9014672197799,16.078376370718,15.8879203433348,15.793356279138 +"Q9VIM0",17.9061501838987,18.0313410900687,18.0903764157769,18.1157222857203,17.9219771590646,17.9171622297944,18.1698214099613,18.0813055151167,18.156906516407,18.0494395020671,18.083670116384,18.0888794720486,18.1248013971738,18.1459393502074,18.068891430855,18.0413872069468,18.1430887549265,18.085105920886 +"Q9VIN9",16.2845929437807,16.2630657290826,16.2867783903111,16.3425580803301,16.4330913957453,16.1397260636951,16.6389528749727,16.5451580109214,16.5158915100012,16.4570811259544,16.5440515646509,16.5786103543748,16.5584772860187,16.3622887331771,16.5077391179996,16.431979767931,16.5659866454102,16.6848966426059 +"Q9VIQ5",16.5431572123693,16.8151801077774,16.8858044951607,16.8602407467118,16.7605667943086,16.6663106259066,16.4661547981246,16.536420353952,16.4118957908077,16.3937323369307,16.4405102001593,16.6893803694601,16.2660018934741,16.2689753775745,16.0603020843747,16.6627223389606,16.3703564927994,16.4783159608613 +"Q9VIQ8",21.3807416515902,21.4350219324469,21.5084459375756,21.2454605941616,21.288705570549,21.2041210049805,21.205291963719,21.2872744188583,21.3799102873686,21.1501992149807,21.2437031472108,21.308892045118,21.4525336975187,21.4069717031242,21.3824860691643,21.4816349306325,21.2541852804135,21.1320067083958 +"Q9VIS4",14.072149403685,14.064805138576,14.2502571531181,14.1388933815316,14.17385256347,14.0167500155633,14.244196450419,14.2761203680159,14.3979056301536,14.0345628610866,14.1935282319823,14.1748379946837,14.0403674072048,14.166893681114,13.8881503601839,14.2203479602983,13.875317481067,14.0226163105228 +"Q9VIT0",16.3804832156382,16.2633764118377,16.3724126180173,16.5595375620245,16.6338492579675,16.524904306411,16.438663992815,16.3705857910539,16.3919836459849,16.4839489948886,16.4769010872578,16.4879314006004,16.4121714789843,16.3937571571199,16.5630686451497,16.394690684899,16.5310262240129,16.3291953130862 +"Q9VIU3",12.5905133716087,12.6477133254722,12.6602048458667,12.3449342994227,11.2712656639614,12.5652054759431,12.2179099004627,12.5564391474444,12.1135440737212,12.6653187510688,13.1952851973077,12.9164845997898,12.414344793915,13.2102436097871,12.1042567584569,12.7227280646549,12.0748022371601,12.5960534273552 +"Q9VIV6",13.4193160191133,14.402031814537,14.3795036087424,15.0099683697836,14.7205517479001,14.8826713616356,14.4170055108295,15.0664729233264,14.8079730239446,15.7935692908483,15.1302684312276,15.1455494299811,15.1220417743057,14.9749621524211,14.9690371446646,15.5235003168725,14.9911142123408,15.1006667127848 +"Q9VIW6",15.0376778675059,14.9689380722282,14.8199186256625,14.7911185859234,14.8878818188397,14.9994271316303,14.9301323986214,15.1909840614597,14.9213097349842,14.9677178750218,15.0281520947489,15.1211354055045,14.7799689962219,15.1915363811737,15.0521562121447,15.6033944112321,14.8425177060763,15.1960630246002 +"Q9VIX1",17.8254901250608,17.4393569902889,17.7383496255353,17.7017816832074,17.2644690432989,17.2451065167648,17.3053852680188,17.4082445766823,17.2571230323452,17.2375233308201,16.9390091748822,16.7321885903603,16.3497766069681,17.1828061421698,17.0836133168039,16.9146431886453,17.1007142753983,17.278219120911 +"Q9VJ19",19.2229456120057,19.0912795069956,19.1414272757022,19.0556440647059,19.0398711834325,19.0150780666927,18.9604551153375,19.1892183352875,19.1029411472242,19.2361980121243,19.1865738413486,19.1110329051711,19.1416197519455,19.0585519390993,19.227107546188,19.1607830198127,19.2121507697682,19.1800586349534 +"Q9VJ22",13.3150294856908,12.676479759774,12.6306434582237,12.2962123478421,13.1103822709545,12.9281655322662,13.7099825476757,12.6974954603406,12.919165007131,13.9578724665496,13.5549286765949,13.5624136688741,12.1425447762385,12.9806511300239,13.1576101083289,13.3054759387724,13.7071802650814,13.5291197879453 +"Q9VJ25",15.5527359326899,15.8337895593583,15.7092797453555,15.1298554638571,15.5744465876842,15.8390519095762,15.8316361499697,15.5532435789449,15.7882011816862,15.8610314664488,15.9741319062756,15.6109364547053,16.0191807857737,15.408326022032,15.6372534836044,15.8459989393299,15.896501083774,15.6557159631414 +"Q9VJ28",18.6901220093527,18.7961398747425,18.8854281743298,19.0873517797951,18.9930016198653,18.9381888236787,19.0530935408564,19.0242832632079,19.0980781498491,19.0003097109932,19.0085160491141,18.9988474579587,18.8995609284109,19.0774413552233,18.9453402863192,19.1279684072443,18.9590242144996,18.9925234845171 +"Q9VJ31",17.3421670967049,17.1537841830597,17.2272775382672,16.9614079055728,17.1009850235347,17.2085727182501,17.259384983448,17.270475739121,17.1641312910317,17.136146775871,17.1432128778183,17.1821525217803,17.4059451903358,17.3029502130013,17.3695245608114,17.3023177236525,17.43596163905,17.2557110454443 +"Q9VJ43",20.0388042672763,19.9925550911072,20.0392030181878,20.2310952489483,20.2247707883655,20.2679083803045,20.2716625411514,20.1698030684233,20.1649852409361,20.346828425066,20.447163286733,20.566875397079,20.3801724353842,20.2462694317149,20.1989444962553,20.2715975436101,20.4595987950924,20.3022439286736 +"Q9VJ58",17.1107374930921,16.9749131762332,17.0170451661602,17.2068977119133,17.2121780025086,17.0856054642224,17.1881595292914,17.2947758094129,17.245921562959,17.3619906283901,17.2788059264054,17.3238720267874,16.9946683969758,17.2318716919333,17.3158162563172,17.3430682778292,17.2129774309985,17.2172615610458 +"Q9VJ60",16.3883836409732,16.4209178999589,16.7200953211686,16.7382369402737,16.5140481198508,16.5095122987381,16.5560071675203,16.464859182527,16.5806867083594,16.4560939974705,16.535530377965,16.4166413344994,16.6132501731276,16.6889858073623,16.4775277211097,16.3582919739926,16.485922505694,16.4058005094828 +"Q9VJ68",17.8745685309672,18.0353226658242,17.9776628688483,17.7799082404165,18.1405004593143,18.0817237133768,17.7596542408424,17.8514375508375,17.7121915724655,17.9790974838366,17.8831806024052,18.0237969837595,17.7821894328198,17.5493510879735,17.5103190494867,17.785316253316,17.500941815844,17.6550399942617 +"Q9VJ80",16.2002635894155,16.1258343966817,16.5443191503122,16.4897462464761,16.3154006558373,16.389518749189,16.6103994447416,16.4225825029349,16.4085524914641,16.6053079767977,16.6179360701619,16.5832176801264,16.4799455580544,16.6679569602005,16.4524113897401,16.4886782815473,16.7246305112163,16.4963216362008 +"Q9VJ86",16.3601486569935,16.3025815970841,16.4411359126592,16.3823412311707,16.2400269760881,16.3103237532041,16.711265252134,16.9280733751004,16.895601746057,16.4055720737302,16.3040835799762,16.4804032970714,16.7946493219353,17.06064651638,16.753573235717,16.5342633345261,16.3528278258612,16.3072019257813 +"Q9VJC0",16.5141241873289,16.5960519548098,16.6781642911105,16.5278209029792,16.5578718995364,16.5664782243923,16.5203778021603,16.4450556271168,16.596410258915,16.5401722969203,16.5009173625786,16.4820012540974,16.5986933763587,16.6509694384739,16.5804094788975,16.6549988734666,16.6053211566986,16.4527239318014 +"Q9VJC7",18.722467732348,18.6869055199732,18.5061889461434,18.8173637095602,18.6510769939408,18.6562247567146,18.512608985465,18.4300939922006,18.4753799492364,18.6654572356801,18.7611582902882,18.6633343525788,18.4123877807936,18.2379563216433,18.652097560776,18.4788892851543,18.8419836109551,18.6559491635519 +"Q9VJD0",15.9301853131042,16.0165464732132,16.0514662375256,16.0079628975053,15.9064369743435,15.9115649349742,15.9763831855859,16.0067160134986,16.0361155505073,16.3784760052178,16.3628415645019,16.3312756303875,16.2072505860643,16.0595000637306,16.1722930105783,16.2594561313389,16.4076730295286,16.2569987548436 +"Q9VJD1",18.551880231113,18.4422681654163,18.6083696188997,18.7282262011037,18.5204943181533,18.6661012784732,18.4932304980668,18.4472719889748,18.551045135369,18.5298704255719,18.7010643288057,18.5770006724679,18.3216554166701,18.4927774440848,18.3930381533025,18.6198711184893,18.64085764558,18.4491790325025 +"Q9VJD4",20.8319982041077,20.7784795343975,20.8383420292166,20.883780952268,20.8943504821363,20.8488570964976,20.7361979185145,20.6254188390885,20.7736146466579,20.6873782359979,20.7592406604046,20.7742197675471,20.5571123294527,20.650375914884,20.5453548088658,20.8376133206435,20.8262155300735,20.7536926121994 +"Q9VJE3",15.3062405211366,15.574988330932,15.4706328949089,15.5548737286513,15.6033747239711,15.6580743795299,15.1268414022716,15.1106038690741,15.1061444591148,15.3440325983103,15.5163597055246,15.5934195852159,15.1335222164941,14.9533628018594,15.0143441724823,15.4443539215737,15.1511749570766,15.0672488971861 +"Q9VJG0",13.8256531626246,13.4958381063016,13.1919363354337,13.8768903657188,12.9138737443978,12.9337562566617,12.0282583047431,13.3553305876552,13.3353648910644,14.3873116351826,13.0434421504103,13.1813593391155,11.4730424684902,13.9700724872321,13.1684502763022,13.0756110746329,11.888209935395,12.8558999128147 +"Q9VJH8",14.0607667231086,14.4381346625969,14.2476390473694,13.9407822548871,14.2747972673678,14.3205572389529,14.6631670883019,14.4239630294933,14.1250612646106,14.3417898167638,14.2747856021195,14.4408791898085,14.8724916160413,14.3940336908799,14.7497433643711,14.2934102987025,14.3666935453479,14.2885276926927 +"Q9VJI5",17.2276437134804,17.1269555114643,17.4054098224807,17.243477683519,17.4132127552594,17.6448279459608,17.6194617806834,17.6105848471595,17.4966732275653,17.9251210102772,17.8969775215488,17.7172129011688,17.4582669397913,17.4680516114103,17.4418781438576,17.8249574993901,17.7831463802991,17.5929265861082 +"Q9VJI7",17.2376918676881,17.3799750214971,17.1622760575479,17.3859349308686,17.3664540177911,17.4922937846236,17.2188550810211,17.3108276025306,17.2473326053249,17.4602392228379,17.4439488214091,17.5743046460585,17.1580890694486,17.0706995036417,17.2906826044462,17.719739286518,17.6086444915128,17.4136597603813 +"Q9VJI9",18.1417011879993,17.6538332694785,17.7545269730959,18.0055635055701,17.6761027022619,17.8176156548449,17.3757251598903,17.5668372588769,17.5402576308514,17.6115523929466,17.506846410233,17.6437634829257,16.8536173532488,17.5998562811704,17.4650649735997,17.6335556206578,17.6182392982921,17.4004865049954 +"Q9VJJ0",19.6946379369486,19.6007700763056,19.751435161544,19.8007576607461,19.7863376846893,19.7897092170119,19.6227557254846,19.8258569429615,19.6292318756276,19.9662533047177,19.8366945999187,19.8648708114495,19.6237820420065,19.7300592959145,19.6539787751741,19.711440535767,19.6399086058809,19.7304013648634 +"Q9VJJ1",14.0009626206324,14.04250726808,14.1154217496304,14.0779116017077,14.352317591838,13.910618634262,13.9147502488936,14.2747074242087,14.3993930671113,14.0921827230826,14.1735731696549,14.1204066634522,14.2835653081009,13.8209181265513,13.8699236881571,14.0531499413639,13.7584988634482,14.0067586411679 +"Q9VJN0",17.7820107101576,17.7100828417043,18.1155082664954,17.5064837805688,17.3961252923347,17.5413704285845,17.6998589408252,17.6075159784595,17.7145948620085,17.015607794377,17.5133922061175,17.1669463285238,17.5852284395743,17.5964258327126,17.2770607891071,17.6101284752198,17.3757759893941,17.3838374660034 +"Q9VJQ3",20.2897987078392,20.1916768606648,20.2548612567497,20.3075920990867,20.3953748290906,20.375044810998,20.4933121020325,20.558205562457,20.404894867357,20.5482277079073,20.6264968281635,20.6255533725395,20.6232961525132,20.6670323853773,20.6692971260987,20.9333230830758,20.7567633867014,20.8658984187117 +"Q9VJQ5",13.97106639161,14.2711586372708,14.2760151885693,14.582776264754,14.3932272290043,14.617118165086,14.3908212024227,14.4828258945229,14.2565525346511,14.6656459808986,14.3489994891804,14.6109178345034,13.6822054007288,14.1098386955563,14.0190537969184,14.6640257363061,14.3504910311854,14.1768834569919 +"Q9VJQ6",14.2080899169622,14.1969845799,14.3062842398375,14.2152369980906,14.587349174302,14.31477818165,14.3961485216037,14.1212930437607,14.250860693732,14.3612537823778,14.4349165383111,14.783316338493,14.4626340582604,14.5417736562853,14.5237855579475,15.1207616735389,14.8818079582745,14.5850999391736 +"Q9VJU8",15.5547945265853,15.5948033775579,15.7508820523619,15.5426575460081,15.5659140820374,15.7292687180579,15.6066086616321,15.5355313316929,15.4399981559798,15.6524005822016,15.6701202862437,15.6123469188734,15.4718175691504,15.5402841993079,15.7233544721364,15.9568393219944,15.8784649307323,15.5292678901625 +"Q9VJZ1",15.0551109172498,15.2997099291447,15.4431104480186,15.185637128058,15.5656470706144,15.4659551692004,15.441090046016,15.4285927765832,15.3538415559296,15.7804455784718,15.4902581441037,15.5045166280204,15.3781330700275,15.3618959493683,15.4192529253298,15.930062790562,15.6243756605708,15.5838028038863 +"Q9VJZ4",21.5757785085715,21.5073602960735,21.4919269773835,21.3941976158733,21.4024991973373,21.3888274565648,21.335144282558,21.3233832130092,21.2982085523794,21.0800112533401,21.2075526083505,21.1931549542225,21.3252310229815,21.3160449558639,21.3611753787649,21.1099684185837,21.0634908312737,21.087037782593 +"Q9VJZ5",17.1313475651351,16.9819004520068,17.1724599649109,17.1730408033434,17.1294935932359,17.1768868740724,16.9723021807776,16.8418052027822,16.7939785235396,16.9527891538805,16.9628065152561,16.9524667040763,16.6563784392871,16.8758251109659,16.7987280270499,16.7615907530578,16.8556180212345,16.7529288018324 +"Q9VJZ6",19.9889530012443,19.8223795956062,19.9850035114029,19.7482014051902,19.8263819341091,19.7534348388155,19.615677042331,19.8261845412131,19.8401860953973,19.7272707874693,19.5686739071099,19.5505177493486,19.6145520108195,19.8805902208438,19.6885645497319,19.5045786286108,19.2750226767831,19.3815261309689 +"Q9VK00",17.8581808341636,18.0150249787319,18.0633364560819,17.2194722109971,16.9335458365909,16.9609652149459,17.8679499936066,17.9693064762866,17.8917609280154,17.5117536076929,17.5424063706307,17.5249383165104,17.9349444272121,18.1387048772836,18.0756399422336,18.4365087573734,18.2298212915219,18.3121689732585 +"Q9VK11",18.8845974204465,18.565563281901,18.8727037878981,18.6396788728252,18.7029027630695,18.6285561146502,18.7032588343648,18.7101782467375,18.6811621320488,18.8139302439503,18.6350294654776,18.5448359537107,18.7766248365239,18.9212781295055,18.9625746721011,18.6734382740077,18.9565765954273,18.8016958217096 +"Q9VK12",22.4102842324389,22.4932916648515,22.5766744520956,22.4665015109993,22.4554489357564,22.3820258093349,22.3060622330009,22.2995545565429,22.3071619239931,22.1669610938001,22.156450547035,22.2860542053009,22.395661299143,22.3721057374363,22.3156166834211,22.1033910691702,22.0720099969304,21.9813283644068 +"Q9VK18",14.4301945360228,14.4669778543866,14.567462460901,14.941455630247,14.5618903077116,14.7902013757866,14.5599187890035,14.5617230503121,14.5183124363904,14.7960202929379,14.6582482976027,14.7011717406922,14.417641064744,14.5456668205515,14.3486415235534,14.3272383072917,14.6779622896825,14.5466790829234 +"Q9VK39",18.3416674197909,18.3494995344281,18.4915789658835,18.337264363467,18.3354854966491,18.2483918908633,18.1020419178618,17.9630564609173,18.1934768460454,18.1667267288013,18.0013763512603,17.9567355035013,17.8758607644663,17.9734187155969,17.9287157781564,17.9682774009867,18.1690020365223,17.972939610924 +"Q9VK58",13.8259020828186,13.5147748786367,13.6242413068333,12.0093834670851,13.2218819424025,13.3967123302243,13.1239422228271,13.7315458945733,13.1832610170373,14.80339463989,13.4565241112325,12.7251356896687,12.733867306596,13.0215914311072,12.655031832039,12.3226978971896,11.8728693584543,13.234805440604 +"Q9VK59",18.6686260764886,18.5679649992977,18.7019492793259,18.8410816812377,18.8071165720246,18.7606214785398,18.8219070493249,18.7470185308963,18.7609777501779,18.6968054720434,18.8033139533331,18.863333254373,18.8457945247223,18.7153010086877,18.7254817786239,18.707514044595,18.9410137841725,18.7693653073715 +"Q9VK60",21.493578729533,21.406772061631,21.4914626691365,21.4432152885816,21.3440166226387,21.4616254771561,21.3063787251538,21.3218715321749,21.3240049199793,21.2152462710395,21.2557697186806,21.2958225239327,21.2495611617627,21.2462023510918,21.2912228809958,21.2892989943689,21.4226468842225,21.1331406992391 +"Q9VK69",20.2627300990024,20.3611265031895,20.3001077115705,20.2182487464402,20.261341906214,20.2542753349435,20.2830180545795,20.2306619288765,20.2512374233697,20.2965336080193,20.3687671104893,20.4217934495077,20.2693653318119,20.0680104505602,20.1452738960684,20.2992404452261,20.3392283857498,20.2564484696195 +"Q9VK99",19.8571960206432,19.8809679899527,19.6883598295947,20.2442382965935,19.9678102293422,20.0063510435795,20.0466914143345,19.8463347219931,19.9420751807958,20.3602698874549,20.1622787555565,20.3232111456494,19.5176987583254,19.8358224302765,19.9654581715908,19.9130717554797,20.2459520057103,20.0137107616211 +"Q9VKA1",15.3190694624907,14.5927054015869,14.4805646671615,13.0662908711468,14.6089774267156,14.4935399142291,14.9300083472099,14.5972071525957,14.1764515469986,15.1169480340078,14.6568504041688,14.9808567382617,14.6636765147269,14.4300978506903,14.5254336463043,14.1784720890332,14.388627082858,14.6176188056602 +"Q9VKC7",13.8848443426751,13.8483429462637,13.6545282006467,13.2158168052727,13.6166336730296,13.2650607403805,13.8221396605297,13.711091908724,13.7962051907566,13.8916156799556,14.1197790600942,14.0366511542402,14.1148388773433,13.8583986980228,13.7756408092182,13.7324053317637,13.5074144114057,14.1335746022979 +"Q9VKC8",17.716873638636,17.635853390912,17.5592718996518,17.5318033709231,17.4342088397755,17.5549230698154,17.8214734077884,17.7682857964625,17.6308196019074,17.6305251157677,17.6898506287423,17.7813291783495,17.9052219837091,17.8860355379937,18.0477182205878,18.0188425729194,18.2105058958576,18.0506781194319 +"Q9VKD3",18.412315849089,18.2871097224804,18.3824602305983,18.4948089013875,18.4357745157596,18.5356744904353,18.7745611481798,18.8711581253768,18.7576981064935,18.8640068022998,18.8081122008613,18.7987660259435,18.7583861827022,19.0135583773479,18.910156444109,19.0192983379582,18.9076642797905,18.9386219240369 +"Q9VKE2",24.0436108745875,24.1019611676592,24.09068909357,24.4653474781918,24.3921210897896,24.2867228896831,24.0996525340703,23.9659244573221,24.1296127992861,24.1458492229394,24.1967489749578,24.2959396410229,24.0843384164661,24.0298108358262,23.9221196252867,23.6228306994011,23.7750627001014,23.7365451768075 +"Q9VKF0",15.7529652924354,15.7910944682548,16.0237621926681,15.9377898879722,16.1210259974955,16.0078400003035,15.7931501924761,15.6114348704876,15.6635399945159,15.9395651320675,16.0377044962699,15.8661041169573,15.8428176125313,15.8901147832919,16.0553871268945,16.2452201198012,16.060133621484,15.8948748059445 +"Q9VKG4",15.9560334802584,16.0072506190656,16.1818012969732,16.0598540178133,16.0664591692932,16.1718929684854,15.6669108662754,15.7890556679643,15.7840301955252,15.9114587154476,15.7401286096625,15.7144250382042,15.7370774874168,15.8820648817945,15.8215215729483,16.0633129891305,15.9096886085621,15.7209764842057 +"Q9VKI8",22.4815216137083,22.343299025765,22.4152472831386,22.4398432246215,22.4372583687411,22.4336484122023,22.4044241504371,22.3717600922932,22.3364053902737,22.3515155523017,22.3080420147292,22.3749279959596,22.2417182923932,22.3606756482498,22.33501201901,22.2144159965932,22.3124036802766,22.2381977294709 +"Q9VKJ4",15.0323288326634,15.0468432803924,15.2568356430887,15.0654343551584,15.0168099121723,15.1388628863547,15.1180661522166,15.2623032435174,15.1426697805248,15.0596650547504,15.1471170477256,15.0081571326012,15.4408407599813,15.1546222321407,15.0040622812982,15.0026291887539,15.0912686275755,15.1683766196563 +"Q9VKK1",14.6391219537495,14.5053859867971,14.500769307409,14.423091468084,14.4299410352436,14.601118837431,14.3253809766684,14.2606799821718,14.5198292168352,14.8191516834888,14.4737104219286,14.5935022195255,14.6074823551324,14.5199736089387,14.4417123878087,14.362583298549,14.9871207005923,14.5198797666628 +"Q9VKM3",21.9148378617355,21.8380224391917,21.94942301728,21.6999820394603,21.8790350284925,21.8921025366965,21.873318428288,21.7344770839826,21.6556355141127,21.7778463112113,21.7720622391637,21.8111954035472,21.9243865375117,21.9162859243509,21.8245830645531,21.5178157723111,21.5683042353365,21.5752474143282 +"Q9VKQ2",15.9151801248986,15.869125918733,16.0722200351671,16.2184864340465,16.2825288869633,15.9818348504052,15.7930921025205,15.8068883163563,16.0019027538416,15.9486173885887,16.0020331398618,16.1106203458879,15.7182551380357,15.9022261443346,15.6778489439199,16.2168193502329,15.9476481320739,15.9660236091011 +"Q9VKR0",13.2486247789999,12.9844459617187,13.4500781721278,13.091563286856,13.2819299234822,13.1446701735106,15.2339049514349,13.282941751653,13.2745495865308,11.9459352026525,13.4013547937505,13.2952458062756,12.7219370182356,13.448679694248,13.2098822340711,13.5231659961181,13.3657791094447,13.390705261781 +"Q9VKR4",18.9370413516614,18.8463952662648,18.6995848782076,19.2800928419934,19.3741235697728,19.3668893483609,19.0345418978315,19.050598200515,19.0098867459164,19.4651731546402,19.4892146774136,19.6433287309583,19.1610322579264,19.2416719433539,19.1836678202409,19.3489754939742,19.2248533407069,19.323499474343 +"Q9VKU3",15.243723028536,15.3220030521865,15.450242972596,15.4154405299391,15.3824587752921,15.4769739570994,15.5734100675712,15.6503054437126,15.4520998200917,15.6311848342467,15.7083718990882,15.8017908788862,15.6989568765354,15.3590890835453,15.4645775297136,15.6739963604288,15.8144834434324,15.5910265388704 +"Q9VKU5",13.617372855981,14.0488390024681,13.9371067448946,13.7825027002849,14.1578033187121,13.9210193057742,14.0105597653451,13.3186260655694,13.2243017538279,13.475694719721,14.0524183798298,13.8805614620352,13.4314853685358,13.1329174720758,13.2292976377541,13.5176990466505,13.1247102178632,13.6430275522322 +"Q9VKV2",14.9746852911423,14.9341261967788,15.0776243302262,14.6623269648612,14.8722253835274,14.6734008434985,14.930604988797,15.0761405604929,14.8475326579451,15.2113373588119,14.9141837916057,15.4661362169176,14.9085312881241,15.0299059084402,14.8110320119697,15.1016322156573,14.9625362665486,14.9133920468365 +"Q9VKV9",15.5028624861485,15.3608604262248,15.5812232883257,15.438298375813,15.7932517485705,15.5574265005852,15.5707731989768,15.6097574866549,15.6322109171092,15.7352395903134,15.6776226363291,15.5561210326499,15.5168899899406,15.684625880285,15.7166107859579,15.9283960841765,15.5663415473046,15.648867200741 +"Q9VKW5",16.9325608334104,17.1120140124727,17.3111152371913,16.6428782730115,16.7294368881953,16.85929167209,17.128586938384,17.088504356482,16.9663148239795,16.9747466801271,16.9312993789282,17.0802854156337,17.43811303387,17.347017932766,17.2715538848636,17.0368425058747,16.9454556958336,16.6651672309197 +"Q9VKX2",23.2556871771514,23.0957855132141,23.2361913987344,23.2020510936043,23.1193614569829,23.0649176454561,23.1137817648738,23.1458531062765,23.1513912455303,22.9998624486374,23.0065665337837,23.0449185667698,23.086926706547,23.2315325018582,23.114512770767,22.9900090818147,23.0492191605132,23.0363866453712 +"Q9VKY3",18.6197696807872,18.5545501495427,18.6413418969315,18.7060125083391,18.7890319711591,18.7926823885645,18.8148066538475,18.745203236352,18.7368176354738,18.7324506284633,18.8612080125364,18.88643451193,18.9825735213688,18.8446013414063,18.7907540634391,18.7340340566745,18.7950523384839,18.7416165531416 +"Q9VKZ8",18.6906941164678,18.6924096330091,18.6591253640613,18.5594163555556,18.7051294998223,18.7629181081055,18.5722673708858,18.6340815154765,18.4439942885065,18.7699588121269,18.6838618555855,18.8721456775655,18.7235880197711,18.7755987778229,18.7693656209651,19.0936845105475,18.9185279036386,18.902060126151 +"Q9VL00",15.926943491603,16.0320048706333,16.0249263968459,16.1986068409529,15.9847087748024,16.1521362196255,15.8093528988731,15.8537196805177,15.7856097322274,15.8757886903212,16.563399840693,16.1268199747796,15.650849439898,15.744013892791,15.9130456726758,16.4659101176451,15.7496044198559,15.924913483139 +"Q9VL01",20.7109484409779,20.5398184555392,20.6947296994756,20.6577923059248,20.6278452488074,20.6200776018707,20.504489823695,20.426794032428,20.4741772342668,20.3817664755903,20.5238014128383,20.2958788208277,20.0634411312632,20.3228326838865,20.2618621929628,20.4905262227774,20.3678725667293,20.4622388508251 +"Q9VL10",16.5987417806645,16.4790885775742,16.797507212209,16.5230772344005,16.6279461636739,16.5565429685529,16.9654208516726,16.8298686193198,16.9746542686883,16.7338948845609,16.8498557124967,16.703662373472,16.9821741643501,16.9284539523554,16.9343668651175,16.611481447163,16.6995773373917,16.448056674772 +"Q9VL16",20.7797849003642,20.8209728162336,20.758841146276,20.7316750758392,20.88859475287,20.9666226768791,20.6759067154084,20.6829258639733,20.5890254940545,20.8048196344301,20.7968078736346,20.8722933203957,20.6498055139916,20.5693586340156,20.6124264994317,20.8035875382105,20.6869194375171,20.6463702412072 +"Q9VL18",20.8656117199837,20.9573320744448,20.971347481338,20.7645808843248,20.7555568996804,20.7599322909165,20.9549640579789,20.8387844191034,20.9725427260153,20.7920745347977,20.9264729605037,20.8627099809465,21.0064101370683,20.8183491732772,20.887227414025,20.8202411479974,20.9073869551413,20.7501225889095 +"Q9VL66",15.7037529465681,15.63433379223,15.7124529653521,15.7481540517671,15.7733116559061,15.7522977819123,15.8906934477456,15.6621840003919,15.5216525564489,15.7175039846136,15.7244155880035,15.7865260444725,15.7214633777981,15.8902784416139,15.9458382951907,15.7009622351509,15.798006565498,15.763762400267 +"Q9VL68",20.7793544975635,20.7107393869221,20.7841661952544,20.8801033726982,20.8857114357393,20.7848983528971,20.7698850733852,20.7185182105404,20.8081241983374,20.8597231009057,20.8410740081432,20.8275186739947,20.7642338591641,20.8786275639164,20.843733356214,20.7409829615056,20.7596122599608,20.7458420885247 +"Q9VL69",16.2247104402867,16.2445746249691,15.7699817381685,15.8262964559476,15.8163931266608,15.7262094880494,15.9599922859082,15.9846912958382,16.0243604619927,15.8321963841849,16.1512571597315,16.1592102950537,16.2749801833844,15.977556224902,16.2478032047503,16.1309732674619,16.0746765850722,16.3215838291592 +"Q9VL70",23.3370161951218,23.2980558718671,23.3211019749639,23.7572944557983,23.6541598425783,23.6350534540234,23.3992077634704,23.3741198068096,23.4161883545857,23.6056081749998,23.7061866679551,23.7012374774713,23.4722323949581,23.5485022883381,23.5269118615005,23.5784639259298,23.5687984327301,23.5493297877335 +"Q9VL89",16.8831110220942,16.8092899917719,16.8888013651146,16.8287882755504,16.8052216531597,16.911282927736,16.8363446312949,16.8678083864745,16.8616817258474,16.8877779720956,16.9881581915763,16.8957445844601,16.8976511237046,16.8791049859208,16.8750490838722,16.9387101752195,16.9227999910563,16.8398235129291 +"Q9VL93",15.1182234485131,15.500959150547,15.4121262720525,15.397717620312,15.3845608207238,15.2413102031024,15.3566327190569,15.1945761713486,15.6165002456681,15.4485057994745,15.4169317581051,15.4882571572241,15.4171140490322,15.4086677839132,15.2484857085778,15.4191116868184,15.2516096385694,15.1506257365823 +"Q9VLB1",16.8429415454416,16.4896374500299,16.6827495392855,16.5595814386864,16.477826721036,16.4887897015802,16.7476501436049,16.8011020062245,16.7996769567838,16.5819725102715,16.8666020802177,16.9445082124347,16.761109697541,16.9069328171947,16.6790282153801,17.1220008244366,17.0731550852791,17.0205035345178 +"Q9VLB7",20.794880267413,20.599876693103,20.568676703915,20.6803921234592,20.6889722901217,20.6985280249416,21.1837229239338,21.1804750199307,21.1662743944758,21.1077954043174,21.0549895429109,21.1104342817803,21.2748158278741,21.5205740881664,21.4860162567132,21.543022142143,21.539741054908,21.5546990273148 +"Q9VLC5",21.4589543793267,21.3399365494877,21.3459825332201,21.4709381762378,21.4629271097129,21.4321852526577,22.0210805484748,22.0122757984054,21.909326009478,21.8889137545088,21.9434233640916,21.9345062094245,22.1101150546484,22.2369948690498,22.2766808387275,22.0301384974524,21.9845827199014,22.0814595671412 +"Q9VLG9",15.6624179239178,15.6218611992442,15.6306343187132,15.9704583040053,15.8099924032426,15.8378982569563,15.6648444509655,15.4996659756107,15.6404736981594,15.8010619863225,16.1280261957897,15.9647565662744,15.6577378773964,15.7967526624827,15.8330916214099,15.756793808086,15.6570159143237,15.6064598891803 +"Q9VLM8",17.0104201609558,16.9188340521289,17.1200438962913,16.5476500003457,16.7698609774284,16.5033263969474,17.1537192742225,17.0180539803457,17.1995359958643,16.6722022404433,16.7159913756859,16.6700536877476,17.0698550008484,16.924530973275,17.1345914530843,16.6003643460996,16.7069396640515,16.4266595929805 +"Q9VLM9",18.2641637715379,18.4322793488938,18.3804603255167,18.2820403417815,18.5274183137319,18.5031290701905,18.3839630415974,18.3078825398617,18.1872631037351,18.561197453835,18.4775707702753,18.624003530015,18.4981230917589,18.3089590179799,18.3161861666912,18.4529116756154,18.3882893853834,18.4313571799775 +"Q9VLP0",16.2174703974272,16.323687817525,16.4344977100885,16.5882429964567,16.363599894808,16.3212734994708,16.0401215860656,16.0198805931858,15.9912597886178,15.9667342970299,16.1438960710058,16.1156332376075,16.1014527981925,15.872422356651,15.9287292200049,15.8005039273989,15.9910392693952,15.9231325467814 +"Q9VLP1",18.4942833394695,18.3082875106363,18.435786419866,18.6408573202643,18.3569820062963,18.4400288453472,18.397440841184,18.2094164083504,18.4046435140092,18.7978608189201,18.5247165718294,18.5359816546407,17.702282021191,18.5365409828834,18.4018725710065,18.4956698849265,18.5924507459595,18.3100812210856 +"Q9VLP2",19.5018266494639,19.3033295369387,19.2821378642993,19.7430187369668,19.3907948038737,19.4133050522947,19.2539784507026,19.113875125486,19.1086103420386,19.5460284716008,19.2982586289106,19.4536957389961,18.8484368867062,19.2983913459977,19.3321389901068,19.1140837515484,19.6027235057821,19.4174849592534 +"Q9VLP3",17.5761243061326,17.4772342746845,17.6803947477231,17.7413793489412,17.6441140972866,17.6216605602295,17.4671747851028,17.2095741520911,17.4827544880435,17.5577505115861,17.5064485396157,17.4061704559474,17.0732864934079,17.4618039184333,17.3557394716606,17.6140900466257,17.7306305096852,17.4830857681922 +"Q9VLR3",16.6934292896139,16.8100975504004,16.8969688367154,16.8138425691362,16.7505536554512,17.0277824712099,16.7732928986595,16.8499518067681,16.7900503001855,16.5741843175085,16.6103910530949,16.677979223021,16.6669116327367,16.6764603025863,16.7218827493499,17.0282413796571,16.852447719011,16.4352385068302 +"Q9VLR5",17.243806333486,17.3434469767069,16.9261015103112,17.1901166603549,17.1771333908453,17.0913400826561,16.7934142094761,16.7958424230504,16.8026968148371,16.6694837824753,16.7211044052495,16.77916069957,16.9960812054152,16.7243551037074,17.1098261078137,16.3456220679531,16.4766419596011,16.5293990439726 +"Q9VLS4",20.8181047153392,20.5665972654665,20.7900647613149,20.8065866253967,20.5845070908572,20.6027686349329,20.4444040857012,20.4691795844018,20.6704482880913,20.5335994980089,20.5365549655427,20.5295384651902,20.2782063276539,20.6605763438581,20.3922493270308,20.6319562714578,20.6954422734315,20.5277880469976 +"Q9VLS5",14.7270032497575,14.5014316235384,14.7935320976974,14.5412330884879,14.6527163547749,14.8575115694376,14.6109105549103,14.676659994701,14.5577573660204,14.637732116442,14.7513254632793,14.8290131830218,14.5597581257984,14.3552775022109,14.3710286592967,14.5981739337094,14.737400130601,14.2659681936315 +"Q9VLS9",19.2567499678084,19.0630005355083,19.1354718412506,19.1457192599667,19.0243839976546,19.0754697981927,19.0284908268775,18.9352800056448,18.8941273451779,18.9581737857513,18.9667951254971,19.0188028155984,18.8543210528914,19.0016857743149,19.0150638368026,18.5591470547679,18.8114565094436,18.6636663110411 +"Q9VLT3",19.3128991434647,19.2246849003646,19.3221891057266,19.3263299709601,19.3392165799571,19.4308365988614,19.4307132322857,19.4909965373087,19.3574542995134,19.3887155559053,19.4229311561887,19.4529778254296,19.4589722125687,19.5099454768886,19.4542778486984,19.6004695093799,19.5303249738566,19.5003639463349 +"Q9VLT7",18.0037770302065,18.3236219773725,18.2549010164139,17.9887359419787,17.9194494131507,17.8108478750638,17.952319221063,18.0657722136537,17.9540469642124,18.0971329470736,18.0676217558195,18.3162670111754,17.9874565647388,17.8055606292292,17.9687445021176,18.3541396852655,18.2015354011005,18.0787540213432 +"Q9VLT8",14.0556534266876,13.9071792698217,14.1617901729961,13.9640579123953,13.994958166224,13.9947994050716,13.8197294180456,13.5803934665161,13.9564386623418,14.1229716065218,13.9928696519926,13.9853033958809,13.6684152103932,13.8486686741925,13.7447414199986,14.0743059395721,14.3810642848688,13.8620604573266 +"Q9VLU4",17.5060726386073,17.3190467740608,17.5209936967686,16.956198754068,17.2065961251545,17.0072459463317,17.3603122995854,17.3689390506446,17.4191441617155,16.9727580382074,16.9843745441289,16.926046090286,17.2609307962533,17.2520054326564,17.3342049991909,16.945344441368,16.8706550414443,16.7939820737967 +"Q9VLV5",17.5728893188822,17.4666686756957,17.4155876342239,17.4738292692919,17.4799042604592,17.6064100496599,17.5598810045297,17.4640332286259,17.3932766419269,17.46664869485,17.5759876975853,17.5725357887639,17.4962023507883,17.4582526829065,17.4986533859465,17.3223287283335,17.4469328214028,17.4053158661544 +"Q9VLW8",14.120547568899,14.7295808490094,14.4679235806248,14.0952508501783,14.0252032624948,14.1998589675982,14.1176351823753,14.4387029295469,14.1534868638698,14.2648318231512,14.2097107246792,13.9878927951796,14.1082207225658,14.1114555001628,14.1357068512432,14.2189054762997,13.410738357576,13.9805225649536 +"Q9VLY7",15.1318380156707,15.3131082448,15.1488559462585,15.239464624274,15.2635622654066,15.2506717353454,15.470488561576,15.472042115817,15.4608288395894,15.3643743155196,15.5630533832176,15.5396058667163,15.6092430404876,15.4892082001396,15.6933177975918,15.8860165338012,15.6004508819482,15.6081449058278 +"Q9VM07",16.4636146619116,16.5834097826759,16.7310174171159,17.0176758477622,16.9192663428872,16.849364746958,17.2329188460714,17.2011127746135,17.3189810207328,17.3272964802629,17.2556666735792,17.2019592904252,16.9464865911704,17.0546187757473,16.9503560444559,17.0148431400543,16.9887612177298,16.9511570475452 +"Q9VM10",16.9495928038683,16.9107915690456,17.0351286202677,16.7239479467743,16.7835847024974,16.8124954714865,16.9607486163412,16.918343381428,16.8699361495756,17.0603249913947,16.9663476185039,17.0949313181781,17.3195017306201,17.3872547636757,17.2103275055527,17.4199482936494,17.4677423474973,17.4112453175875 +"Q9VM11",17.481120118809,17.5533699264322,17.5645759672651,17.8151335261288,17.9327217001808,17.8918542644672,17.730696333842,17.8415909360706,17.6347250936586,18.1945683955529,17.9188015683029,17.9831850746494,17.8034812378777,17.8336890524548,17.9590527613229,17.7544897187488,17.6993161475181,17.7460961695962 +"Q9VM12",18.8361887587393,18.7317500191743,18.7884342173805,18.7956295073689,18.7957180785212,18.8194525058893,19.1483231321578,19.0835241907155,19.0893286479915,18.9553479194568,18.8696005462682,18.9540546080215,18.9967767089752,19.2054752089088,19.1519842286253,18.9636326322877,19.0098306153975,18.8926444510776 +"Q9VM18",23.2095217656235,23.2177192749933,23.2291256805413,22.9246880714539,22.9657281376717,22.9971636484463,22.9435197026453,22.9886960907061,22.8868028447065,22.842272501433,22.8686147103671,22.9027441071313,22.8858852611305,22.887723010182,22.8954265674556,22.7763101441245,22.6537162224905,22.6709345981296 +"Q9VM33",13.5997425601518,13.6899840529472,14.5590484899602,13.4468076839816,13.4712317008619,14.3491860871786,13.8560564418213,13.8145083976788,12.8686543191119,13.8485420855506,13.9315629701078,13.3111900191865,14.4352769057734,14.0380415678738,14.1612584570708,13.6676514480698,13.908748435879,13.6047397528404 +"Q9VM50",13.1927402039342,13.4881561933678,13.3006265288948,13.6909762369345,13.276011943799,13.4591189663916,13.5037703987307,13.2498107815358,13.2661466007184,13.6495643475214,13.8441424462808,13.8319757220107,13.5588393266216,13.3645783696888,13.4999760105018,13.4351496027623,13.8083403818325,13.6731962879875 +"Q9VM58",16.3046227030377,16.2010496771123,16.0485720927725,16.4651259004443,16.2880734990528,16.3578295838757,16.4706975076012,16.4747367131496,16.3955208348766,16.4777183197858,16.5665236248748,16.7923736724541,16.5556791038859,16.4438551791317,16.4300277804228,16.3582688294227,16.6578736708563,16.6077883997759 +"Q9VM69",16.9763086657756,16.9348017149743,17.3123246798066,16.7750804474085,16.7494747602626,16.89777415086,17.1649056550574,17.0526026105108,16.9649108460385,16.6398507039868,16.7702596084446,16.7826592462924,16.8559492934252,16.8660973479916,16.815786531283,16.6452357041172,16.6840944275868,16.2838750154903 +"Q9VMB3",18.8108820320678,18.8242734167735,19.0737203737775,18.5447579736233,18.583978489083,18.4854934095485,18.8657270114765,18.7415152350801,18.8496290720503,18.5888666291806,18.6913430697594,18.5849167035837,18.6590815424852,18.770218066161,18.6984744027975,18.7138910536644,18.5718779656409,18.4909722807404 +"Q9VMB9",22.5638740868976,22.5905349951819,22.7650659930531,22.8647610632605,22.7543844203996,22.6658826477258,22.4645412321771,22.4149251931746,22.5812195382033,22.4296911950008,22.4481676694706,22.3693472021013,22.3580159410812,22.546335820157,22.4535253808417,22.6089676557777,22.5355030758112,22.4548104122697 +"Q9VMC8",16.3909228285383,16.3685771304077,16.2780291224951,16.3501897400962,16.5027349868712,16.4086211923099,16.3640189785248,16.2298961668949,16.1972843090918,16.2565801459685,16.5307814873313,16.5794727521841,16.449880573656,16.0460581480426,16.3202145424774,16.3482414421954,16.4817857894315,16.376211790421 +"Q9VMD3",17.4557036062636,17.2594820799435,17.4514111962641,17.7870941853582,17.859149630643,17.8288929620912,17.7424875194932,17.6339917030556,17.6773680908953,18.1513538031419,18.0926478637066,17.9730134955061,17.5213894099381,17.6808285792404,17.7408041223377,18.0239862864532,18.1559149540591,18.0105249435537 +"Q9VME1",16.6757719473916,16.7876386263431,16.9690777379612,16.7900178080656,16.6771504334413,16.873586132368,16.2837949571722,16.4622825166799,16.197033228101,16.4053116207657,16.5356661561937,16.653588574563,16.2970942040712,16.2734859287238,16.1777205480605,16.8334076633896,16.5491745394741,16.4143919798022 +"Q9VME3",15.6120866050035,15.7677472360662,15.5978384145101,15.5485654254322,15.7065599565699,15.8518128013648,15.8391381089705,15.772858914666,15.7035910521161,15.8306790362019,15.7017192577663,16.1375236379268,15.6982839817144,15.7054385694638,15.5269724965945,16.0146224742442,15.8890516970345,15.7256372290544 +"Q9VMF0",14.0793340931799,13.7721410403413,13.7136414486772,13.9025813221729,13.9288786522389,13.7851212354825,13.6860864361012,13.6344369346491,13.6777549100182,13.8555965446999,13.6094607375098,13.7948584424723,13.6568043384429,13.7390876801333,14.1498765403864,13.7434203978861,14.2398180876105,13.8025705554463 +"Q9VMG0",15.3292756220881,14.8417794351102,14.7035985872804,13.8020138125188,14.9129970908216,15.0341257762844,14.4039460713551,14.7363133986366,14.529773272698,15.4840971348361,14.7210096422893,14.9181245973624,14.5004754414186,14.6154145195832,14.5048122649832,14.9108383799829,14.6031323757586,14.7402119635912 +"Q9VMH2",18.3215603798684,17.1397932991714,17.326805542951,17.0692918918707,17.3632646858214,17.3879321168204,17.1208082320234,17.2631248672539,17.3252258169711,17.4385411253394,17.4787980717271,17.3436135104821,16.7851099604569,17.3370599089809,17.3058647956515,17.2333025463448,17.3865733029489,17.2791723530276 +"Q9VMH8",18.7921920951154,18.7550389486549,18.798141846275,18.8317935647818,18.8442479177186,18.7597282939988,18.9789283604366,18.8960807127312,18.9840687691479,18.9218632515806,19.0564761438232,19.0797699402115,18.8727794441128,18.8970682001024,18.8554176757125,19.1205487124456,19.0691935054425,19.040978903127 +"Q9VMH9",19.9867158671627,19.8466714714423,19.9178792943465,20.0164364341315,20.06967408,20.0108712494772,20.0995289019884,20.0469313182037,20.0240061829004,20.0467403185998,20.0984136830392,20.192607092021,20.0012541670986,20.0891767785464,20.1794352447795,20.1826041003145,20.1824124580638,20.0084807257708 +"Q9VMI3",20.0705851135478,19.9736583359733,20.0052777305433,20.1396028864275,19.9441477810937,19.9580937517672,20.2669711322551,20.3539710691321,20.2152310987367,20.0984615992654,20.0711994362602,20.0904495379787,20.2414976884723,20.5509127037434,20.5238225612461,20.3666259029161,20.2898549966815,20.3908696426123 +"Q9VMM6",18.5395932259806,18.3790382525328,18.5890596938863,18.6714738947301,18.3159305082078,18.4377728512117,18.2525427637995,18.2395698255883,18.3542627806515,18.6246286569197,18.2928274949567,18.3600244296563,17.73873670313,18.3855259911542,18.1840213385188,18.4238793405993,18.6379625127195,18.3257134912347 +"Q9VMQ5",13.3903376100955,13.2105563417055,13.2990275753654,13.2688410036293,13.3048628014673,13.4359172619142,13.7511137657618,13.7482286809343,13.6350284997961,13.9388225675397,13.7418460364129,13.3854169837274,13.2559943900633,13.9904609658159,13.8122641695123,13.6459976667442,13.2551521774979,13.6834525135184 +"Q9VMQ7",15.7996047977925,16.0397786040008,15.999259005469,15.7247959769183,15.8434579335254,16.0161827172204,15.8965166826691,16.1498287783287,15.9008441025945,15.9003410194791,15.8163211821429,16.0365240583024,15.89628376585,16.0238775607473,15.944521540164,16.2844228478013,15.6287010317651,15.60463366676 +"Q9VMQ9",21.9586828477759,22.0858855468139,22.1573679692864,22.1627732344564,22.0959751779862,22.0224797699241,22.0484438937499,21.9883739326138,22.2059486443303,22.1188855968623,22.2086484605582,22.1634989570559,22.0458607441851,22.1613544892809,22.0291434185757,22.3468023657182,22.1412110754948,22.1030099235755 +"Q9VMR0",17.1503947658869,17.3162412147083,17.2019531135846,17.0795455659679,17.3274427485557,17.3496187448422,17.335260456828,17.2544714124441,17.2210580627743,17.4094972591497,17.3609752411374,17.5088033847935,17.3209440137515,17.3839265193603,17.2854699935735,17.6194952210232,17.2720801464014,17.348233983039 +"Q9VMR6",19.0281589095911,18.9649345720348,19.1324883526365,18.9881031442691,19.0689060826817,19.0971736482354,18.8208004174208,18.7934117512489,18.6766116129218,18.6359957149742,18.6852171775567,18.6594810460214,18.6773082037846,18.7529151346426,18.6827405544123,18.607431528107,18.492413199982,18.5093027039194 +"Q9VMS1",22.4854482523628,22.4926140206709,22.3878904839685,22.4239089135843,22.4687165982967,22.5564867088453,22.4015706167915,22.3506608268944,22.2039232870725,22.2862743948695,22.3959541880796,22.5116496514994,22.3497524796015,22.2136631641813,22.3946494032178,22.3922203468745,22.4175662059614,22.2845754694808 +"Q9VMT5",16.4408536545113,16.1085828746662,16.3157189763381,16.3510076618882,16.2931228347839,16.3467734995629,16.5619004163665,16.5055203443774,16.4240413250024,16.4047083805108,16.5590155079563,16.4864469752232,16.6124515139172,16.8608938545508,16.8260164246113,16.5176897928298,16.5614760036893,16.4896142192859 +"Q9VMU0",21.1767478990671,21.1173478506311,21.2812703694231,21.4057134051172,21.310651380066,21.27190600039,21.0234959973672,21.0773614369868,21.1969206078773,21.0526020189021,21.0261208106846,20.9482783484161,20.8152978000648,21.154904018544,21.0517414651251,21.3330849289661,21.120556552572,21.0568252582529 +"Q9VMU2",16.4106773664255,16.3730492791176,16.4128088430782,16.3119405241935,16.2552705674538,16.3335581415544,16.2408881639505,16.3541738403672,16.3020424871278,16.3590305521974,16.2435258343031,16.2402402856705,16.1767502112198,16.278256385873,16.3579807957496,16.2600052360893,16.2550161469613,16.1126615008955 +"Q9VMV5",17.6673908682449,17.7838239314117,17.7098647106008,17.5617298788085,17.5787950971153,17.6645087895738,17.7292294506424,17.7035431235316,17.5877476943379,17.464926475934,17.5665203342199,17.7189807945334,17.6771054055092,17.5881449943238,17.5142426524784,17.5852536295375,17.4648082280741,17.4902910671521 +"Q9VMW7",19.5372636208717,19.63486779189,19.6514107498424,19.5820596512784,19.5271450007912,19.4682097800487,19.341368391466,19.3960098453005,19.4711277374988,19.2927258922528,19.377844970698,19.3082567820186,19.3927384598357,19.3805045568189,19.3085681610079,19.2719596516082,19.1017435018143,19.2105424568966 +"Q9VMX3",12.770248348,12.6197876383869,12.2906382351394,12.3263879196858,12.4336851699418,12.8361149642911,12.6382261280544,12.3879999143052,12.5166972889565,12.338876473944,12.6621493293907,12.1546058376545,12.555148122893,12.5566066759948,12.6169643852929,12.4961705319836,12.4648287965414,12.7100368132265 +"Q9VMX4",17.4550530469379,17.6120727028741,17.5703407761814,17.2679570701566,17.3875596249241,17.2736895072499,17.3376169661839,17.2391991332982,17.1146283757247,17.2264774480572,17.3708489337345,17.3332292502444,17.0536814021684,16.9360148883468,17.2739185229178,17.4425307951037,17.2376214454301,17.2175102962895 +"Q9VMY1",15.5747321297907,15.2773664988984,15.2585172336337,15.4594377164253,15.5332087808752,15.4102351304975,15.807588272486,15.5099655238584,15.5044200945363,15.9723477211411,15.8884034171168,15.7915508062962,15.2440349095326,15.4334725169812,15.5557370846617,15.2101360746395,15.6258600862854,15.74781647439 +"Q9VMY9",14.8976583321257,15.0535252349028,15.2162343707597,14.6171614189368,14.9784211818967,14.6220274120446,15.3896727420302,15.096272783965,15.1155719800289,15.0450676819978,14.8964042616041,14.997772240741,15.5302959975542,15.1234901661884,15.2559966901658,14.5012035024907,14.8329460465784,14.7734569813954 +"Q9VN01",16.0880311997649,15.7807727655639,15.7600909281667,15.825615035697,15.9210024469321,16.0162583151836,15.9765230971727,16.1007906782524,16.0316648840078,16.1678052858713,16.1350677715236,16.1524465389298,16.0856288182997,16.1926428660027,16.1931763350038,16.2353317735969,16.2486586821278,16.2252982091107 +"Q9VN02",17.4435722980421,17.4806616199515,17.4308332865875,17.4862223869785,17.2664824332869,17.4134936399895,17.1796148025242,17.2694669129492,17.2186274234744,17.1345357992112,17.2216953588399,17.1913358076666,17.1846838919099,17.2907572099624,17.3667055351567,17.2223526319415,17.1219182756175,17.0299861177326 +"Q9VN13",16.5843692957531,16.696541780081,16.6049338217892,16.6798020291816,16.7254137327703,16.6862848626132,17.1088127583444,17.0909502368573,17.1553625539911,17.1393068735588,17.2274519973637,17.1986137442906,17.5547930408735,17.4072206438545,17.5398524951249,17.3120663825584,17.2315719893431,17.1941029024609 +"Q9VN14",19.0847579902948,19.0814436867208,19.0444308765253,19.1931558366693,19.2086186552823,19.2331242962905,19.3090695279382,19.3470239195187,19.3272323127574,19.5189976598687,19.4700639387189,19.487758163548,19.2547511850349,19.3514594154105,19.3893641971643,19.5878970088928,19.4900195930475,19.4667193624132 +"Q9VN21",22.0120658144555,21.9614738762181,21.9476840449428,21.9395742808301,22.0413803612757,22.0524728734145,22.1384299589828,22.0430694526826,22.0219068458751,22.0218551582448,22.0748150025325,22.1376258132792,22.0343537144041,22.0527317524955,22.0043188227072,22.1137909974361,22.086599479149,22.0960615241345 +"Q9VN25",14.8831054776938,14.8768433304521,15.4052846464107,14.7384723358716,14.7633515046512,14.5018287842215,15.1896753643644,15.2291080240217,15.2928876321157,14.7747797304939,14.9204788935262,14.7010573669244,15.0107089005934,15.1626529042265,15.0250635281558,14.9967595425802,14.6410666947195,14.6673793937691 +"Q9VN44",19.7502294466087,19.6651241690222,19.7488330378826,19.2637052778577,19.4505573978159,19.4888843977194,19.6200620129411,19.7424561316132,19.6250415400799,19.4175578198767,19.3777601224521,19.4585058591229,19.5531109981054,19.5761160961423,19.5562533782055,19.4165712254729,19.2092228638169,19.1437185678522 +"Q9VN50",17.9122189850022,17.7243250855601,17.6174736417865,17.6382652760194,17.6513273344188,17.8692870241729,17.8683930883571,18.0347340194699,17.8392694010129,17.8713788257075,18.0608147333588,18.095010287615,17.9708420753568,17.7906354095196,17.8309652599107,17.8794975946795,17.8787592627955,17.8885902306246 +"Q9VN71",18.494605160206,18.7498548873861,18.6741789469556,18.514525517393,18.5944849668643,18.7014981990148,18.7950578612499,18.7522148864537,18.4760125307692,18.6016932880713,18.5051639003079,18.6294399377624,18.9368410664734,18.5153653252831,18.702336187391,18.3967213921925,18.6223603192911,18.5559784836931 +"Q9VN73",18.3069831054788,18.3778633937867,18.4886506764061,18.1409406494823,18.2826378477074,18.2164081413839,18.4813402786567,18.4764851424972,18.3968117262908,18.3515560139362,18.3858439431177,18.3995525443,18.656643252042,18.546501484701,18.5394748044698,18.5359881385479,18.4041196263339,18.4325535452933 +"Q9VN86",15.4650624744264,15.3553641248123,15.3000988683954,15.0252085638716,15.1974798887882,14.9602219231411,15.4403283961206,15.1864577636282,15.5515065825651,15.2323636460411,15.4687463035723,15.3126587517181,15.7924053242766,15.5985870289469,15.9314325754533,15.4010502520882,15.5497835470767,15.3004999555516 +"Q9VN88",17.0260067054644,17.0535673773241,17.2133097825507,17.3101123041402,17.2037918327232,17.0353166576074,16.7800156532228,16.8811558554036,16.9816024236804,17.0938372558591,17.1242539922668,17.1288542311091,16.8002098268619,17.0318855746642,16.8674236509283,17.1484654018284,16.8639925149948,16.9321404015009 +"Q9VN91",19.6082469674359,19.3410995345256,19.3236745151307,19.629897300729,19.5345624557943,19.5358274278253,19.6258546491974,19.4556819664018,19.3936928225865,19.877638706979,19.7116880070645,19.9272743260085,19.3063465807818,19.6492777956704,19.7319985913207,19.6548714817907,20.0105459274571,19.790388004042 +"Q9VN93",20.3573161921688,20.273726743835,20.2870085209271,20.3167280946294,20.2644037913513,20.2218490886738,20.3140185496058,20.2861689322499,20.2201878104221,20.3863983743485,20.3689198199899,20.4126838970521,20.3048356578045,20.2384077962997,20.3283845483422,20.1288094726603,20.3764792574917,20.3379924758002 +"Q9VN95",17.9123980392241,17.9539469354441,17.8163730391384,17.7743670869407,18.0200692897193,17.9581807682693,17.9611749049287,17.7920288387004,17.8915798332274,17.9894753610351,18.0637727457142,18.0885694080615,18.0398512296772,17.7067859355751,17.9567658048326,17.9831787692957,18.1238416459484,17.9489765375722 +"Q9VNA3",18.6523995140753,18.6734288544223,18.7221246072041,18.6572705249105,18.7152498514535,18.6369480466486,18.5953971310354,18.4279427651062,18.5518510017596,18.6313502438945,18.8591940633239,18.6244943941316,18.552516114595,18.5195396050784,18.5596971327795,18.6373576312105,18.530936020337,18.6311759771979 +"Q9VNA5",17.2987109095733,16.9172821700563,17.1763990731204,17.3071815706652,17.2770681891977,17.2106169973797,17.3777232548168,17.5007798445336,17.3082000433272,17.3147124859929,17.4768332619033,17.508305284924,17.3356644204251,17.2213400967158,17.275005372792,17.3478603529128,17.5885494319794,17.5033262228427 +"Q9VNB9",18.4003400179708,18.5556534261726,18.4403763340407,18.2423851129024,18.5660037319969,18.5561016290719,19.2263759419974,19.1584031874405,18.9534087591243,19.2532870805561,19.2324669348644,19.3426363596404,19.2630360207725,18.7363754640133,19.091035039573,19.3308296093165,19.467351039028,19.3326956620653 +"Q9VNC1",15.349252175626,15.5371524970216,15.3159642164175,14.9973836567908,15.5391553425064,15.4360756615216,15.502918590579,15.5747549343194,15.6664126507808,15.6007087145077,15.8560940815624,15.8047693141103,15.6652295380966,15.3775875160093,15.5871053272243,16.4255598539745,15.6563081581556,15.7307253595203 +"Q9VND7",13.7914081964184,13.8840585863788,14.1550730174832,14.2066069471473,14.0374677373671,14.1034038111998,14.0107212800508,13.926591659059,13.9273778845975,13.9687741617547,14.2118695828846,13.8861481116082,13.9146458489275,13.9921980186177,13.8440346439831,13.8308440585521,13.6708149085434,13.806963023979 +"Q9VND8",18.3041738977159,18.2314316841697,18.3454702978579,18.298460044249,18.3536076106899,18.4351489621003,18.1846416436259,17.8029440286677,18.2259832565769,18.3238943022835,18.4520064624463,18.4871211575144,18.3840463520842,18.0354162230665,18.6151394923415,19.4124295415602,20.0322397724786,18.7987826151278 +"Q9VNE2",19.0523385450329,19.0864625332249,19.1140184741009,18.8670319819161,18.9731292522325,19.0736693177161,19.11616772608,19.0708758461914,18.9781647989786,19.057296255657,19.1350498888338,19.155708976888,19.1258625105224,19.0516779715767,19.0879597279736,19.0044184293734,18.9059199565226,18.8135941529244 +"Q9VNE9",18.6088963717933,18.5759682827386,18.4004047400162,18.3154969765747,18.404958941245,18.3396314783486,19.2227436994703,19.2612231176138,19.1805732559747,18.9302599440397,18.9341065302935,19.0898433569412,19.1827209335404,18.9101277714684,19.1247932591839,18.7281754724367,18.9019087544958,18.8530473073906 +"Q9VNF3",19.2639176003603,19.1167315747444,19.3595222479329,19.1096455792497,19.155755907794,19.0709247977386,19.1574575519855,19.0798076729361,19.1237795835094,19.0918331428427,19.0810755345198,19.1027608319365,19.1040405805388,19.1728437957973,19.1373340548577,19.106088593055,19.2267685622406,19.0386615320568 +"Q9VNF5",16.0101406817965,15.7953132356017,15.9470090427052,15.871218904282,15.9937469923023,15.9923700919261,16.1015878258598,15.9764949498288,15.9820332305804,15.9388691665552,16.0948539162645,15.9031853299283,16.0747521374862,15.8957738862375,16.0427817276176,15.7231012494899,15.9634869852347,15.8522905427119 +"Q9VNH5",16.8792753692009,16.8147860261413,16.7823609559189,17.1165404340412,16.9699527096052,17.1654213298476,17.0731842319572,17.117980678847,17.0877902557037,17.3489149755965,17.2848644438459,17.343596775226,16.9616905439262,17.160191455997,16.9282409490808,17.3009126346638,17.3327428749495,17.3731079236089 +"Q9VNI4",16.6569939571217,16.5215736483765,16.6620489878272,16.70334818605,16.5414942149494,16.632113079712,16.292094647773,16.5619512401322,16.3583302652876,16.6705627232144,16.4485167993562,16.4243055814632,16.4576745951031,16.6147781552391,16.403707002628,16.2099899265987,16.3023499778074,16.5101591189428 +"Q9VNI8",15.9246432118213,15.699939656225,15.7757262736241,15.644432287132,15.7884085518067,15.8408777492887,15.8069437437517,15.8091227019729,15.6027714084634,15.8219648018796,15.6953017326606,15.6676391345426,15.6263726640918,15.7875443098238,15.825389778395,15.6274231899868,15.6714629461744,15.7393755543496 +"Q9VNQ3",15.3073003209209,14.9541812169246,15.1495565636095,14.8960810670565,15.1518689397344,15.143552193428,15.1106620489518,15.1281758792575,14.9241342828908,15.3608241064919,15.1768104948606,15.2340481966262,15.2278494396425,15.1481169730997,15.0537023660517,14.6907964472184,15.0343599264053,15.0885198276759 +"Q9VNR6",15.0258941682305,14.4171351811453,14.8060041685249,14.7723325489353,14.6617632598031,14.8097669711163,14.3857174161599,14.5311101174891,14.5734389985413,14.5309870119181,14.8347444183657,14.7686116397456,14.2877823659305,14.5638392420005,14.4551396223405,14.9498968757691,14.9440181681398,14.5396489866748 +"Q9VNW0",15.2287324985853,14.9304931330641,14.936589093037,15.0063380432809,14.731979466788,14.9393499489053,14.380671718443,14.5184742406617,14.5531883372482,14.2998877079889,14.7682190723607,14.7793881132148,14.1001361383532,14.4897212433149,14.4449413249395,14.8783458787823,14.4552248292442,14.2406551680888 +"Q9VNW6",21.0079551461578,21.327917060418,20.9748207550342,21.2339621189414,21.1045519643594,21.0754475774396,21.9133393105882,21.7832057563382,21.9509817781504,21.7531455869576,21.6779169286882,21.7382859678133,22.2662181310731,22.1969876886221,22.4155133180707,21.6876441224219,21.7716850177141,21.7072150196318 +"Q9VNX4",21.1364446051467,21.0359655642623,21.0826082519949,20.7031164586661,20.6177708565826,20.6591556724617,20.9556375148255,21.0504192730158,20.9605519090116,20.6828675091447,20.7431424557733,20.7221552403857,21.5968233201098,21.7239465749709,21.6758367898779,20.9118638067191,20.8155084900069,20.8864453508802 +"Q9VNX9",13.656933409218,13.4430845655992,14.0652191356899,13.4988810405601,13.3222364196964,13.10940482401,13.5599190490723,13.3673962314069,13.8387247597681,13.7241562828057,14.1170657791221,13.4619504678555,13.585486177671,13.4651519527097,13.5585999567342,13.3977012540094,13.7081422648023,13.389178069279 +"Q9VNZ3",14.7004106384167,15.0036263087778,14.8157696290397,15.0507471641721,14.8121659911442,15.0609031173572,15.3450821043706,15.183264381005,15.1283256051988,15.437997788765,15.0729757313989,15.3580504377619,15.4472924577759,14.9401535546673,15.3376217146791,15.9237117032091,16.8930558897162,16.2045713526727 +"Q9VP13",11.9267192285589,12.4186559843694,11.8672268586748,11.2602292446181,12.1641989156666,11.6032916141691,11.9378245027721,11.6160135143789,12.1282186252936,11.9731182397499,12.2749906365459,12.0774662401641,11.7721291126545,10.8298422457035,11.1069142462309,11.961984134387,11.5283031660762,12.048886878208 +"Q9VP18",17.2145708091267,17.0554158816167,17.3207271014228,17.0382617679571,17.2180549961628,17.0698488276751,17.2831793806335,17.2103763462758,17.1603252073256,17.099918684322,17.251850523806,16.9726141843245,17.1390260712648,17.0524672563542,17.1813000302516,16.9652544160893,16.9520461251779,17.0353957783937 +"Q9VP55",16.9227476851912,17.0680228853075,17.0468111853816,16.9420628057203,17.0675001232706,17.0991617536004,17.423517166453,17.0811367124512,17.2963851753397,17.0784182567643,17.145891618592,17.1982671432814,17.2078281480085,17.2448733659764,17.0047391858371,17.194313270728,17.1614626272676,17.1235228894251 +"Q9VP57",19.24769118904,19.3334350225437,19.4310920639381,19.612790040176,19.5928868816032,19.4714439600831,19.4867881221912,19.4060211725081,19.473025447124,19.3539261127044,19.2768547309271,19.3066737557051,19.4941327879073,19.4536465986692,19.4574301093811,19.788982383991,19.9214662297585,19.8446452997785 +"Q9VP77",15.3915461073046,15.4544988143294,15.6938162033026,15.2567300144226,15.3742156885316,15.4172057462258,15.4219929292604,15.4791899748046,15.5471906054408,15.1917238763363,15.2670863293665,15.2317847472476,15.4539733760276,15.4005289744904,15.2417429707361,15.4101263831214,15.1505729049505,14.9943524135202 +"Q9VP78",14.8709928501306,14.9014634991617,14.9068975946374,14.9713262341319,15.0022347031736,14.9736953688994,14.7969026551527,14.8576588637496,14.7930513776155,14.9625051474469,14.8733704011065,15.0123667567225,14.7814712723287,14.7535651692782,14.8666279014036,15.0143431656673,15.0092486883883,14.8449023255797 +"Q9VPB8",15.4890543767838,15.6405839054335,15.5844980514215,15.6224308698672,15.5608514089812,15.6916496703806,15.5927463780557,15.6631204675651,15.3993616373678,15.9137847122459,15.6412662559199,16.0467562501492,15.4167508807411,15.5944740174621,15.5854032657389,15.6839467534609,15.6184179157928,15.4110450960966 +"Q9VPC1",15.9463311030527,16.1552769158275,16.2031324424028,16.3984988411474,16.2713957763796,16.4725023426944,16.0864802260128,15.9175974314536,16.0234166540322,16.1181109059798,16.1702889657276,16.1107662324566,16.1541869714021,15.9377483437178,15.7705464998724,15.8669360697232,16.1182366842119,15.9901799458596 +"Q9VPC2",15.0814700284061,14.9775280655516,15.1385433568801,14.8837853568165,15.0380658421478,15.1571439373832,14.6804393263495,14.5607859146797,14.4358166186886,14.8123121332286,14.6849992073597,14.7365658724958,14.3478332510813,14.6194981489632,14.4548742352172,15.0941940560949,15.019156973275,14.977090131312 +"Q9VPE2",20.5841797395049,20.5758293531214,20.4247002416791,20.7536302217014,20.5939592696375,20.6066823251662,20.9496528993022,20.9940114372143,20.9725773128514,20.7994101408657,20.9276317355845,21.005790619803,21.1119903124304,20.9495776652967,21.1113579212579,20.9415894231347,21.0994432760849,21.0193443161817 +"Q9VPF6",13.6936912452904,13.796156925002,13.5205927108934,14.0293149509432,13.684538309113,13.9321087712578,13.9021335415243,14.0146416641788,14.3635086277957,14.2224076463698,14.1752031534311,14.3083815066363,13.9963894222127,14.0116634491696,13.8477083198534,14.1873108227598,14.3490441282057,14.0589476926637 +"Q9VPL0",14.6704257496944,14.9125062359015,14.8500687404915,15.123283987252,14.8640165450091,14.9825573705218,15.2072481872132,15.1011266173596,15.0320874048273,15.2114814598578,15.292785688593,15.3708346370678,15.0110659144683,15.230162421816,15.236150283466,15.6305717236043,15.4534795134108,15.3823785857156 +"Q9VPL3",15.4710020569517,15.5788614765763,15.5265627182288,15.6931224196243,15.6468327545469,15.9354153174874,15.9957186720936,15.9034007864197,15.6887794202444,15.9288427642232,16.2329631299659,16.2970959603871,15.9739950902554,15.3266131268647,15.5798986570586,15.8022572679629,16.1762669967377,15.8371861977047 +"Q9VPN5",21.4180585339028,21.4494480929149,21.5724416061479,21.3831199571119,21.5450566200728,21.4839872473611,21.2853082921053,21.1980201958255,21.283837981271,21.2784192171675,21.2396396223287,21.2915713014071,21.0798953527147,21.0821563376661,21.0166702706944,21.1197239952938,21.050204479488,20.9160169414145 +"Q9VPQ2",16.3179119930548,16.4250127955999,16.459136943519,16.5011684460907,16.3838417835501,16.5522607791564,16.5385247399361,16.535844453188,16.4697850169655,16.2148340890816,16.4299564127531,16.5798623180688,16.656138645753,16.5096141500897,16.477363578409,16.5049645713713,16.4492728901068,16.1951338491689 +"Q9VPR1",13.9026289053595,13.8321746519193,13.9581768725156,13.3009112937692,13.6461311809986,13.6973971087587,13.7873982442836,13.6319747107674,13.4794738056954,13.3149663316122,13.6968472246206,13.9661426410246,13.9604995387753,13.3729391533247,13.4721800189139,13.7150865221378,13.8014239143071,13.4081203890293 +"Q9VPU4",13.1554846127739,13.1805887409727,13.1893453125516,13.0264438062962,13.0314354215837,13.2157800561239,12.8779450957609,12.8202267610634,12.405309023346,13.1124835301664,12.9692501603609,13.6126650235403,12.9385489468851,12.9764518102927,12.2322157002868,12.6142511882297,12.7472042858388,13.0698420642636 +"Q9VPU6",15.307591825272,15.416809611989,15.3278984743481,15.3659213009823,15.2571151237255,15.3731444652333,15.487947661602,15.3746041973438,15.2600746597063,15.4809979729556,15.4165218405177,15.6142672660907,15.195708355501,15.2394603271505,15.2363529609248,15.0861015862963,15.2197576018828,15.1125308763061 +"Q9VPX0",14.5964966966542,14.4158274767132,14.9727737666512,13.7748954854243,13.7831322825635,13.6273500741756,14.9982233731897,14.7927243680325,14.9144887271183,13.7803413981088,14.1279451948935,13.8027668692478,15.064085472443,14.821000812906,14.7856945916561,14.1183548010244,14.3917670917358,14.2293231979954 +"Q9VPX5",18.711913263079,18.8025203478511,18.7079054739032,18.7574485159374,18.825828800844,18.9260929150856,18.7152776128072,18.7567817822177,18.6203950067111,18.8559551712084,18.839669007222,18.9003254869834,18.7618695361714,18.7166069214564,18.7131978181976,19.0442443114469,18.9053015510591,18.9787917097694 +"Q9VPX6",21.3530132623499,21.2212517687551,21.3561176010778,21.3866522888706,21.1674340181671,21.2839944711298,21.4639869042728,21.2912745489933,21.403064038182,21.4307605967819,22.268720917332,21.4974722811236,21.6213865336893,21.3932710157906,21.5998132191491,21.7112484285175,21.625095745444,21.8265864038197 +"Q9VPZ5",18.4636951366002,18.4575236074383,18.5599550054744,18.4246123947476,18.4647370970758,18.4602952341487,18.4293797057948,18.3453727324572,18.3347616289134,18.2772324374233,18.2635128418768,18.4355528119603,18.1772261174657,18.125905729866,18.0713896284096,18.3725089115352,18.4876026948527,18.2827003946604 +"Q9VQ29",22.2127759017173,22.107133896464,22.1140351878493,22.0942700157534,22.09241910364,22.2060129729891,22.1596516351928,22.2337727116882,22.0313181000342,22.0040907936669,22.2540182953344,22.0923116933218,22.2816158777458,22.0643137205734,22.2995445396225,22.1101107337462,22.1108572301224,22.1192924640054 +"Q9VQ35",11.7925667825307,11.8744926214127,12.2306456377031,12.2898939211638,13.0106890356179,11.9700760496238,12.2904855156588,11.4893366509015,12.230787192001,12.2876416759794,12.2593406179775,12.3492739633118,12.2138926702119,12.0039868904585,12.2481547408449,12.6539504370842,12.8905851862607,12.4994934191442 +"Q9VQ62",19.9825159370641,19.6105459390161,19.7583296931264,19.8959201383829,19.6688044930877,19.7069392171419,19.6241034117715,19.5689457303761,19.6452136835612,19.9751054585405,19.4356206064591,19.5896063201889,18.905237393643,19.8186805648079,19.6535217982532,19.6126027189549,19.8928877246101,19.6418743460854 +"Q9VQ88",16.2944540435695,16.3804318387648,16.2002258885433,16.5038243306836,16.5580432237909,16.5506981425674,16.2437341039484,16.3434679748692,16.4084837142517,16.7493734384527,16.4928042780803,16.6758609907886,16.5036260982125,16.3004532496618,16.246541021362,16.2368721112713,16.456683560971,16.4500743686252 +"Q9VQ91",15.3959644538706,15.2697550203569,15.3412962713415,15.1305159832494,15.0993491291974,15.1871408945625,14.9170037775747,14.9531145380646,14.9071038431877,14.7940969145718,14.5455241419481,14.8857234653788,14.8971155303347,15.0593963859648,14.9013556040934,14.7034383538064,14.9109957978758,14.6155149348437 +"Q9VQ93",16.9245075261331,16.850767280169,16.7552551452208,16.4421384298194,16.8879549549367,16.8045154010125,16.8139554220377,16.6535465957836,16.6858969372853,16.7427371976073,16.6865641637357,16.7562602960843,16.7116916826001,16.3825273707358,16.8082277416032,16.5595145097175,16.7331844025544,16.3843892467089 +"Q9VQB4",21.8037687859545,21.7167550853191,21.7270931634579,21.9539042999326,21.9090695491375,21.943605382971,21.6583476632609,21.6815633424375,21.5810283751185,21.8127252167191,21.8062438895981,21.9142919361019,21.6544465071192,21.7314709059405,21.716283953638,21.7942126125531,21.8323023131066,21.7951022742521 +"Q9VQD7",21.1343455316113,21.1451214909428,21.1851515316362,21.0409876207417,21.0726800678484,20.9749690859181,20.9230656921954,20.9774181434593,21.0072925197115,20.8654529720074,20.892553372074,20.7857393656355,20.9020313661806,20.9861387433245,20.9415634576383,20.9600756591184,20.7520470242058,20.9312428813153 +"Q9VQD8",17.5793669919627,17.6765278065213,17.5510200086512,17.4367627930591,17.5358395650852,17.4945466061301,17.042289368872,17.2187297395967,17.3744525511136,17.6463545378881,17.6410164564598,17.8051325391955,17.3320815852567,17.0514852467037,17.4692213674892,18.2562863457557,18.1695428084277,17.5987685502147 +"Q9VQE0",17.0504646971763,17.0462628410173,17.1063130891924,16.8468905559734,16.9306680042444,16.9454904463477,17.681550495459,17.5744997194801,17.5299605218246,17.5903695740286,17.5608243896865,17.462467015128,17.5101214905425,17.608645104657,17.8011258536184,17.5027252640035,17.461222018098,17.3367651510722 +"Q9VQF7",18.4905625843556,18.4267054164023,18.4862603193553,19.0003615200834,18.8859942113716,18.8895165684234,18.7823094428163,18.5929398426549,18.8288674810122,18.7376452008295,18.7172823217055,18.5118774583093,18.3393123013338,18.6899594853338,18.6300329523611,18.9985123609013,19.0358221328519,19.0021486308587 +"Q9VQG4",19.0269202061451,19.0725800929556,19.096608928736,19.1611496605909,19.1527441257888,19.2979022218123,19.2369957154507,19.18788365526,19.0896888308682,19.0760680578296,19.1306795009716,19.1637191117757,19.3353411582967,19.2468425846753,19.3259296195948,19.1268665472408,19.1726113859023,18.9894926327667 +"Q9VQI6",16.1330925657657,16.169804103229,16.0661230808816,15.9784791451156,16.1360579338279,16.0712914645037,16.1568774326534,16.0662497840233,15.856352196191,16.4074018267421,16.2017171563085,16.2041981105822,16.3408701041145,15.7885462248565,16.010448645382,15.7963388166648,16.4506846888109,16.6046463935156 +"Q9VQI7",19.2923178597864,19.1885319762669,19.2518370323731,19.2459925543209,19.3457033434107,19.379106035677,19.1125613274185,19.1656597502265,19.1272515040571,19.1686523217345,19.1063454992288,19.1415228808888,19.0435871004511,19.1162970980851,18.9525190713112,19.0781287820986,19.0187022785921,19.0890034215028 +"Q9VQJ8",15.3275047225968,15.1697678605673,15.3215700230788,15.240591230367,15.3989776057111,15.5793826053886,15.3344530898337,15.0899450033184,15.1421223944625,15.0618503768731,15.2922408617201,15.1367124624612,15.1616183158511,15.1369182430077,15.0846013506994,15.2444496742241,15.2826178354212,15.1060785736555 +"Q9VQL1",20.1404236649418,20.1257374871191,20.2758518974732,20.1049698407796,20.0785883410555,20.0876795147632,20.1672345180101,20.190791866777,20.2271129816147,20.0476166365865,20.0062187491615,19.9455340752288,20.0984838640006,20.176084282656,20.1008439546209,20.06919049621,20.0504982937596,19.9908965968278 +"Q9VQM2",20.280185595681,20.1255774039392,20.2179670817654,20.1564021862813,20.1254413998918,20.3000666759364,20.0999865535594,20.1433183592958,19.9587555152962,20.0063884921625,20.0906156650165,19.9705550322674,20.1266967421834,20.0479759453286,20.1555792134562,20.0553154445356,20.1920462409314,20.1220514956816 +"Q9VQQ0",18.3390909333334,18.4038939999378,18.5378057024627,18.3265836447926,18.5101454991783,18.5622028599917,18.0850912698309,18.230224302099,18.1059792140379,18.1601013196689,18.2993064248214,18.3214555373968,18.1452549309463,18.1798523873677,18.1175302139479,18.6662809395654,18.0989804247334,18.0774295103006 +"Q9VQR2",21.509426154913,21.4106745364576,21.3779583305674,21.4461410248029,21.3977661185479,21.3811895967688,21.2992153644893,21.1627174892433,21.2745053735694,21.2379815002224,21.2462369129485,21.3647941528354,21.1364794854695,21.3139391484215,21.2765754134458,21.2721835237368,21.370092848015,21.226404186447 +"Q9VQR9",16.2502325544189,16.5553721255084,16.338387598853,16.3402721150768,16.2378759378726,16.241468247092,16.329571754477,16.3466160107821,16.2556183032314,16.4232531894482,16.2694487270143,16.3458532733736,15.9541913293804,16.1694694246454,16.3252288500119,16.1723571248241,15.8910958418025,15.9633217950633 +"Q9VQT8",18.3953244262771,18.0087966773178,18.3850516776939,18.171552389313,18.0799682300788,18.0297906988945,17.9590900001183,17.8320271849555,17.8355931107026,18.0193037015804,17.8120965952126,17.5414750778449,17.3796759384711,17.8215029850409,17.8293869424575,18.1356441538473,18.5061989370015,18.4392931020138 +"Q9VQV7",16.2093482110484,16.2353116362209,16.4106129849899,16.3603270007823,16.3831654340506,16.1375698666827,16.355516589741,16.2304381025478,16.2099567992739,16.2210444777883,16.2563046336631,16.3835880656875,16.1082758509274,16.2301745663377,16.2878966466097,16.30081114226,16.2199288997274,16.1256989093036 +"Q9VQX3",15.8403673300204,15.5868869518492,16.158667331874,15.2134998925553,15.2873780958581,15.4604456862786,15.4339857438725,15.2048850217127,15.4027560255167,14.9475273863953,15.357336041226,14.7757386291856,15.048717335285,15.2657405014337,15.1428444244052,15.3435291245639,15.1254002006126,14.8871747154322 +"Q9VR25",16.8578117949397,16.8336828166332,16.9623733494532,16.9632950174988,17.0454183813238,16.9003793415964,16.9099408076924,16.7840330428229,16.7935639046803,16.917210542363,16.9636224891946,17.009339860616,17.153062260098,17.1560455647071,17.1502666517415,17.0659058177504,17.0844239456607,17.0513031322548 +"Q9VR30",17.2029673471842,17.154795622452,17.1501714908613,17.0565441154043,17.2904938569679,17.3717706256402,17.4794585879827,17.399730910955,17.1941506799286,17.0767676052021,17.3268440641264,17.3690706623864,17.5854971367204,17.3945867264087,17.3316397000474,17.503938410715,17.3387220222988,17.4883700443448 +"Q9VR31",17.3945474380946,17.362092788792,17.3296169630553,17.3151508521207,17.3476737369608,17.3805598151292,17.2995182987439,17.3023601724001,17.1720322697448,17.1769267547392,17.2467220677376,17.4960167980013,17.4133136612119,17.1929031606787,17.1961317979265,17.1264162936412,17.2741213719823,17.1515156546944 +"Q9VR79",19.8968939919168,19.9891450328271,19.8713267128923,20.1686777209812,19.9535143237411,19.9198720781957,20.3299970197591,20.2397105036575,20.5092225404821,20.5998833927081,20.5982268757818,20.6869249742983,19.9380736553056,20.2654603808439,20.2006929089248,20.5990613545768,20.4865300183962,20.3445479204544 +"Q9VR89",13.8981535895019,14.1791227909265,13.9816746088564,13.7895561733872,14.1299937143198,13.9138053529191,13.9071559412732,13.9720180291153,14.1066437741185,14.0327690934432,13.9689895882444,13.5737353288294,14.0384954905541,13.5013661278901,14.1370792441965,13.9705534139565,13.8851934516202,13.9237453931962 +"Q9VR94",16.2805170329957,16.4915007466983,16.3584756951778,15.8808334582201,15.960466946333,16.0261219225625,16.817681503679,16.4976777521733,16.3976799308822,16.2349411330347,16.3486371947374,16.4330344816888,16.3956473719355,16.1176928832874,16.3250535976017,15.7606162515887,15.9542612282243,15.8298711235408 +"Q9VRD4",20.4503429871844,20.3670401119803,20.5021326916613,20.1801317571773,20.2511511252347,20.1367795335482,20.3312947482385,20.314977229334,20.4596289038579,20.1659229967664,20.167804083407,20.122381593195,20.4191682886292,20.42255739263,20.325251920399,20.3487790055728,20.3721098409827,20.3494651409073 +"Q9VRD9",15.7838365423782,15.6772218409473,15.5753087755242,16.7044729361267,16.4595077098234,16.4638364483947,15.8133199138053,15.9003156074431,15.6931140249666,16.6917718134617,16.5623103159099,16.6175220917648,15.5732814560621,15.97355288615,15.9931668347964,16.20898882879,16.2027631303502,16.4327233151774 +"Q9VRG6",16.3196366751677,16.1845106605622,16.3881401595276,16.3172967241386,16.5108558736227,16.5747895359969,16.2605594184318,16.2604110341406,16.2359398825096,16.3860095706552,16.4167550598313,16.3977603280037,16.3525304113362,16.372568091905,16.1673860294018,16.4534606955833,16.344392775251,16.3254775598733 +"Q9VRG8",16.232773097393,16.1305119837081,16.2747570680215,15.8174418514791,16.2206888540786,16.130272630567,16.4850222614144,16.2470201659355,16.323928150848,16.2579409645389,16.1445623250942,16.1300689627891,16.3595444392128,16.2290006850222,16.2325829537036,15.8704111025963,16.0513497027959,15.9315239507053 +"Q9VRJ4",20.7381978978044,20.6301259481699,20.6470795434827,20.7650835483616,20.7869095822617,20.7727665687402,20.6229940690193,20.6141347556332,20.6536777108426,20.7141030770594,20.7038317767025,20.7309000425587,20.6735626266649,20.7368755037484,20.6956364733929,20.6657437032746,20.7078073556686,20.6796245831671 +"Q9VRJ5",17.2532777263745,17.3428964603934,17.4984497060714,17.4658884227875,17.2855813703537,17.2114512348766,17.3270765988342,17.3088372556144,17.4088834935976,17.1890101236631,17.0453668665803,17.198799910701,17.2626699505674,17.3003993973313,17.2237761425868,17.0272227193779,17.2420641913315,16.9837850537713 +"Q9VRJ6",15.8947989516067,15.7741116876754,15.8530475911111,15.8408482084658,15.9022878492217,15.9819230579316,15.7729965808954,15.8954979106944,15.5254592470007,15.6699143272803,15.6502652781977,15.8418114026795,15.7644182344814,15.7094803992293,15.6927649337471,15.4938981668032,15.5052313445143,15.5418682370626 +"Q9VRL0",22.9811699480764,22.8328988182833,22.9376467708597,22.8626530252501,22.7796251409952,22.7087089833821,22.8100639142646,22.7288738006434,22.7768890734565,22.493618261529,22.7515108412831,22.6769799180065,22.8528404988784,22.8882722226448,22.870988196964,22.5209197390544,22.540084563203,22.550052444384 +"Q9VRL1",20.4710001213435,20.3235972535648,20.5755453736918,20.6275689277744,20.4976222019641,20.6489584736886,20.4748857346286,20.489892702786,20.3804211781584,20.6363306979032,20.4643158817976,20.470735589343,20.2872346500568,20.5454762891943,20.4704310330764,20.3942232796673,20.5703390820669,20.3451517634157 +"Q9VRL2",13.2314470822894,12.3510157313404,12.3127438076917,11.3999363500352,12.2737065405667,12.1565371437169,12.6349338903185,12.0701875003849,11.9393883977077,12.577242619204,12.236310157014,12.1987519994627,11.081437716784,11.5941082911523,11.9193250062036,11.4050435044016,11.8047129425745,11.8032948082502 +"Q9VRP2",20.3906844465551,20.4834205736847,20.4379357734834,20.2654657202154,20.3179735004206,20.2933368276932,20.526651495979,20.4910743664212,20.466905533344,20.4196576022221,20.4041051038112,20.5170242040705,20.4864321767312,20.431638907162,20.427615857203,20.5359620667596,20.4966410569626,20.4820353126682 +"Q9VRP3",17.9155324527076,17.8403449590421,17.8748027181689,17.8632908536164,17.8974026787346,17.766457691961,18.0113090967587,18.045058295395,17.8510158118279,18.1002350550574,18.1368165752564,17.999859551551,18.323386823163,18.1065261266368,18.2742688541826,17.8686490714224,18.0562547176606,18.3159987250341 +"Q9VRP4",14.2079818212551,14.0824662015017,14.5145870744422,13.8002311797018,14.190524303621,14.2780424891459,14.7902277442122,14.6121255284632,14.5141984255505,14.2850298244079,14.4945962003914,14.2097977059615,14.9707898107811,14.4560006057282,14.6482443837276,14.3408514141615,14.559398954814,14.2302417156917 +"Q9VRQ9",14.7158233673507,14.5844184544984,14.8386758477791,14.4177415060966,14.5395536769036,14.6597135998446,14.8357033143967,14.82276850154,14.857769987696,14.7668572060708,14.6880408123416,14.6576789396071,14.8849582536838,14.9348000874536,14.7342347506031,14.8078640016321,14.8593661164935,14.6808745237009 +"Q9VRR3",19.8652363102669,19.7733756249629,19.8993205541642,19.933225412975,19.917471853821,19.8879276850263,19.7700200547173,19.796861604834,19.7974078319279,19.6288701999949,19.7436848838433,19.7514970265065,19.86838936338,19.7481061899026,19.6893342936586,19.3654545746123,19.4516957585826,19.4057085246629 +"Q9VRU1",17.2179088478059,17.3851065436679,16.9613822297169,17.1889628975549,16.9949650328532,17.1134822233041,17.3329491089837,17.4223588503278,17.1601088417639,17.2250770256649,17.1688061520038,17.6364817376013,17.23615307679,17.0142125033508,17.2018015857665,17.3352591662935,17.5508610408895,17.4630535049404 +"Q9VRY5",17.0195936204569,16.8754261725868,17.012366012899,16.8991951590406,16.9467207282924,16.8820638154709,16.9632730406854,16.8477278350154,16.7269652345896,16.8519112377578,16.748492593901,16.8828356888827,16.6597684669064,16.9285277001147,16.7262404328986,16.7329141991342,16.7797606940711,16.8961845392404 +"Q9VRZ7",17.3700279215371,17.1858295843754,17.4627248267426,17.134334320707,17.3883991078377,17.2037248627729,17.3620086088901,17.157582204725,17.4569666642953,17.1569761908185,17.3059275883848,16.9944916184439,17.3369736543346,17.131934672319,17.26852683442,17.022762677041,17.2134102156865,16.9966485666537 +"Q9VS02",18.1914451184187,17.8720056096419,18.0520814294199,17.8006211983279,17.837003876451,18.0055736001186,17.9867157247114,18.1074392405937,17.7165873920625,18.0272692910687,18.0182712758113,17.9243780418773,17.8685427564783,17.9025168183519,18.0525192639055,17.7534101557345,17.8907674238897,17.8768645173558 +"Q9VS11",14.6553708149419,14.7498439083405,14.756348563838,15.2171015919062,15.0441420983405,14.9072664091011,14.9556153205192,14.7876850212783,14.9424866426221,14.9341368339332,15.2046951270821,15.1250626323173,14.7973687458034,14.8926974580119,14.9009109837252,14.9076391468458,14.7881688408963,14.835157222346 +"Q9VS44",15.1658921257738,15.1735050890446,15.2798064444061,15.1142490522304,15.1076151949425,15.1815984934087,15.2409809976528,15.0471290451787,15.1122716672294,15.2459440154379,15.1277419848224,14.9636347234218,15.1343667415645,15.0518500388449,15.0790565743031,14.823340861051,15.2169324408773,15.1084058909413 +"Q9VS84",17.4479680369876,17.5475046979723,17.5413924476914,17.4077545648119,17.5076545068786,17.6129673916407,17.5185105913467,17.5154038382446,17.4677492853005,17.7554886162914,17.5482554614978,17.525659164323,17.3402652072992,17.39036107688,17.4018296109113,17.589457643904,17.5502650791675,17.5098467607739 +"Q9VS97",14.7648832408642,15.0099845134144,15.0897423891392,15.2996417923738,15.3029277562671,15.4404524254962,15.0903617092808,15.0711249180723,15.2490708748163,15.335121522246,15.0538230903174,15.0669215525017,15.2371660424463,15.2943515954099,15.1340960203304,15.0545192034061,15.049481637136,14.8014102483333 +"Q9VSA3",21.5114771673631,21.430964101613,21.4957194006925,21.7091262601085,21.6512588719789,21.6241081473947,21.809778103393,21.7855880412836,21.7573745136316,21.8327534227094,21.7658550310968,21.8093122342983,21.7772882789974,21.880926789195,21.9110101377451,21.6886224288251,21.8144528262292,21.7315212276343 +"Q9VSA9",22.5868665465618,22.5124992683043,22.6598437895497,22.6562932593481,22.493159372546,22.4426128764833,22.4055690657738,22.4235904181095,22.4148498139415,22.120410437309,22.1614031867281,22.1105859918361,22.3009828904624,22.3599796262566,22.3583690037431,21.9202137142085,22.0397040417191,22.0040744381099 +"Q9VSC3",17.5064832291855,17.3104565947038,17.5074228921693,17.2355218972647,17.2279487997167,17.3577875327625,17.6485161773313,17.6597347300836,17.5970310380322,17.6753673162432,17.6645608926605,17.7150917478494,17.3189368929865,17.720728481191,17.5500104666763,18.0244117060639,17.8258077207197,17.6818935415854 +"Q9VSC5",19.4319541008915,19.3738624424238,19.4939338629302,19.53743486084,19.4729407780689,19.5201281397932,19.4233831303734,19.4204215544008,19.4974963812064,19.4277404578,19.417873911306,19.4151589673,19.3473798289904,19.4068051443551,19.3542451725522,19.3996261661393,19.4756147144801,19.2865560212526 +"Q9VSD6",16.6526979684766,16.752035821962,16.7741765170556,16.3164403858254,16.4805022426098,16.4394636076051,16.55025099089,16.6391246040842,16.6029169960744,16.2432880484725,16.0661310024352,16.1998126506377,16.7373948396058,16.8557935593482,16.8434290835693,16.3761657309606,16.0826507337916,16.0164391092889 +"Q9VSJ8",15.8564580991531,15.9021137589598,15.833240717228,15.6081391944915,15.79168689997,16.0494959876091,15.7708187927413,15.7927960040307,15.4580793245298,15.7420512900907,15.817426872716,15.8063935831274,16.0423000678173,15.7427410738377,15.9069712131719,15.4875259006403,15.46052873542,15.4531125192681 +"Q9VSK4",19.7478651409691,19.7246127071371,19.7525691569658,19.8093977513459,19.7502306221253,19.9377609363474,19.5250599166315,19.6591391237534,19.5829510343039,19.7159866693259,19.7209384060969,19.6468380665496,19.6387234701409,19.740560020619,19.8141055194156,20.0048427764455,19.846394845127,19.7076510112764 +"Q9VSK9",14.483729757934,14.6569459257461,14.667390099492,14.537687798853,14.6390939805962,14.5353952080117,14.5487324012164,14.5466718007586,14.4050301238125,14.742753305869,14.3778649964802,14.7014978977534,14.4057500781336,14.4582090109997,14.5261228977443,14.3386869823632,14.3785546097883,14.2219040975553 +"Q9VSL2",20.5486756127327,20.5668475327447,20.6439575689533,20.4370526498819,20.5325929888763,20.5517952664655,20.4142749765545,20.4797118119133,20.3742933424144,20.3412075055677,20.4359078033117,20.5194466722504,20.3619520715938,20.4461234925906,20.3982567670389,20.6021043294449,20.244083516339,20.217517528653 +"Q9VSL3",22.1913563474152,22.2542418340846,22.1566550548809,22.3704827163316,22.4501026994088,22.4576178377991,22.4315201794114,22.4666053780803,22.374039596875,22.8572090170656,22.8382649643605,22.901836729892,22.4552652205769,22.3117770989453,22.3416397983927,22.4739093472742,22.4587508531955,22.5479538102353 +"Q9VSL4",21.0187834362393,21.1002275114762,21.0752870056197,20.9602492164988,20.9580455712749,21.0364916763608,20.7575438029084,20.8813863140663,20.7585218132497,20.9077775243458,20.864907727017,21.0211046879305,20.8941486239514,20.8687668310395,20.8469819555409,20.9422361658532,20.8074048149231,20.7423516310953 +"Q9VSL5",17.460875991907,17.4330566774942,17.3968084802826,17.253767205767,17.4939837910737,17.5126437799537,17.6262222526887,17.6383775273834,17.5059237967714,17.5217636512099,17.5950893585398,17.6714591379712,17.7142297081505,17.7764457031712,17.6935456547433,17.8825815948327,17.5224873468935,17.6790595548337 +"Q9VSL6",14.9014984573181,14.6048799713205,14.6222282019903,14.0855964438455,14.6547104384503,14.7281829895132,14.9169758214256,14.8244553682528,14.5948059928419,14.4530473333432,14.5878771003254,14.7353909616404,15.3422768640883,14.6676844620151,14.6781802203455,13.8967317442042,14.2565193238608,14.2373382978935 +"Q9VSL9",14.1520814555244,14.4348759884776,14.5271805436736,14.3446676683517,14.8987016287699,14.1339595841867,14.6659549556128,14.490031295538,14.7585763709016,14.4729412173872,14.7000148435572,14.5771421782589,15.159740599911,14.4422306765106,15.1813157816885,15.1605534465994,14.9900849105334,14.7777648846773 +"Q9VSN3",20.8271767830925,20.861162064448,20.9204657629316,21.1511115708469,21.1386459344233,21.0768213131736,20.8094295779139,20.7525366865524,20.8909226208811,20.8226579792282,20.8312185443578,21.1343279674237,20.6697998390131,20.7467229114004,20.5060237003531,20.972714422462,20.9226040313747,20.7243288077935 +"Q9VSN9",16.5750407887593,16.5429503839161,16.3763799034848,16.1520724651359,16.2988760106294,16.3524598456334,16.6171431444471,16.6754040538869,16.473064554668,16.4722712450305,16.3845694530459,16.7104307108656,16.7934926397731,16.7008735686716,16.6782672344929,16.5106134591958,16.5179602721919,16.5300314931971 +"Q9VSR5",19.9874463562145,19.8968688198875,20.091319157505,20.1561820558502,20.2130727372438,20.2517078328789,20.3820306623355,20.2531169503637,20.4306161919929,20.4346275904781,20.4521391698125,20.4113768834974,20.2250749404297,20.2440106205721,20.0758630507534,20.4417440208446,20.5678973282729,20.3662225095249 +"Q9VSR8",15.5088599031998,15.3610574981758,15.4154757553399,15.7001192425396,15.2694626868324,15.2317361559019,15.3694899446973,15.5127211467066,15.4905705435813,15.733794312091,15.7559210308522,15.6945622905204,15.0994913109152,15.551586335201,15.5101643600787,15.4073927992115,15.3683988148864,15.4766384072322 +"Q9VSS2",16.095030047293,15.8124316290768,16.1049910021759,15.8130047958572,16.016701495871,15.9918426452589,16.4170292403826,16.4498644762995,16.4531002989299,16.3630327123026,16.3832701783052,16.2106404892122,16.287895212886,16.3671080124876,16.4474733636158,16.406425524935,16.3530417416163,16.1743697344637 +"Q9VSU6",21.7882312388577,21.5819401811823,21.7916474177247,21.7106191943421,21.5469438468091,21.6258724292778,21.6203858677813,21.6251656412449,21.6327801780166,21.5317669371956,21.391646153257,21.3353424642592,21.4935597674459,21.6353147633516,21.6112756770045,21.4113601177123,21.7749125374901,21.5590049570521 +"Q9VSU7",14.7895593970295,14.8348400701649,14.6131784384127,14.7292437346598,14.879438779033,14.9591640957194,14.7036885923777,14.7138543549897,14.7147241849497,14.7421811042115,14.7628927750529,14.8430636503673,14.6170033557943,14.7235334271343,14.6410644327019,14.8009116347497,14.4680284124477,14.6113930166715 +"Q9VSW4",16.1582856269772,15.5624543119723,15.9518269180334,15.945247194986,15.5391943336144,15.6995955763465,16.0586852743625,16.0699420177475,15.5538608783597,15.9987872706177,15.9700385068639,16.6128567701158,15.7383019997402,16.1139161474479,16.1124383328533,15.4828962918582,16.1266583408958,15.451625182833 +"Q9VSX2",18.3301794727796,18.2691155843065,18.3208037609607,17.7247047983627,17.8193816386681,17.8728604120126,18.0848891628595,18.1473313066246,17.9675753318596,17.7194417342385,17.7277522113553,17.7472559911025,18.0311343945341,17.961619440103,17.996461121214,17.7773236636912,17.7424730454083,17.7627166093164 +"Q9VSY0",22.9242244881259,22.9658591717786,23.0531195899576,22.712970303374,22.752542773512,22.5922338596277,22.6524034123646,22.5612575668479,22.7951264843314,22.2347436338758,22.2380457783891,22.3136719357251,22.5875262521599,22.6667785376802,22.5158951386697,22.5482211427764,22.4756054044689,22.3900422243651 +"Q9VSY4",20.4021254325717,20.4082434427191,20.4613440063329,20.5753890203798,20.4869384836761,20.539184143432,20.3363546182035,20.3796360492649,20.2927808949414,20.4288700529526,20.3902186614935,20.4326863683874,20.386462273026,20.4593659823645,20.4370100318741,20.4106778039367,20.4154765815522,20.3768737561024 +"Q9VSY6",17.5920013221708,17.3637750006629,17.3752918676857,17.6148149986709,17.6426481420782,17.5494260703682,17.7945236572957,17.6746142145778,17.6609038663934,17.8865495385218,17.8753353542451,18.1487641968226,17.595042569758,17.8672372057293,17.7470135842184,17.851501521607,17.910823690731,17.8530340225359 +"Q9VSY8",18.1881491034349,18.135883976777,18.0908410282348,17.9714346706186,18.1578260331166,18.2313235793958,18.0562989116724,17.9644640545288,17.8239826007884,17.8506407230652,18.0118293190385,18.2248004287616,18.0005571667758,17.8880008326947,17.7522442286679,18.1311901551857,18.0402665145969,18.0750788649041 +"Q9VT23",17.9029514491073,17.8288088143203,17.9067554329702,18.295917450653,18.2192532331173,18.1861062913333,18.2428766590364,18.2423130933819,18.2329478518393,18.4191754164384,18.4026023612281,18.4017570880039,18.4449084151843,18.5777052684336,18.6684270509252,18.4932393073869,18.5283859273252,18.4030749827345 +"Q9VT75",15.331789583436,15.5276248807417,15.6205475065975,15.5030168396765,15.5838486522358,15.5975498439705,15.881781426887,15.6552641278016,15.634006500402,15.544119449711,15.7184469448173,15.6610346408238,15.6684867324079,15.5556135660574,15.483759760413,15.7254965346588,15.6138923951236,15.6577923145705 +"Q9VTB0",16.9797659327181,17.0726611164787,17.1490432145934,16.9706549941054,17.1094483032501,17.1022427283194,17.0343792082423,17.0025838687712,16.9642548487428,17.3726782837744,17.1381413048889,16.9675432643638,16.6965753932197,16.9456104501219,17.0048224966143,17.013039896683,16.7986486652324,16.8791871561094 +"Q9VTB3",19.8608522483225,19.6442419809836,19.8686535561129,19.8278625529808,19.9292779589587,19.9016751895466,19.6824687746203,19.6172290772135,19.5557053864493,19.686929201165,19.6921741613504,19.6583627062964,19.7228902573584,19.8282096597401,19.7059312359833,19.5426243868117,19.6124945830124,19.6332993468702 +"Q9VTB4",20.6615402176098,20.6804232002256,20.6377984919485,20.7457123890773,20.7032401448972,20.6443193777544,20.4782565792983,20.5469938068351,20.4806713184148,20.6801189941149,20.5589766904411,20.8472928679159,20.7073418669566,20.5994585456082,20.6300723460685,20.4734244679867,20.6573021270365,20.5062401129415 +"Q9VTC1",15.7328688074964,15.6711851653666,15.8397868691784,16.1255409452659,15.9627171739299,16.0728834797986,15.7080513611442,15.8778346537173,15.6241400209648,15.8637811560174,15.8219361760558,15.8031242773334,15.7514013810152,15.8510004184161,15.8402065088092,15.772553306353,15.7695233698064,15.7740558012077 +"Q9VTC3",17.0020385017376,17.3166953327667,17.4441016892031,17.4427073600506,17.1869245567796,17.1508828090744,16.7561539023686,16.7998622070982,17.1900459587236,17.2036602214201,17.222066268213,17.0261554827027,17.0282849701341,16.7504548317412,17.0182254872909,17.4209141019933,17.5777558611058,17.0243476307097 +"Q9VTF9",17.3514852683119,17.3456257789528,17.2423658170143,17.4144699680927,17.3896747982641,17.440802723487,17.5084469260678,17.305170720542,17.2913629845624,17.4784567732732,17.5424681202852,17.6486350403297,17.397622014804,17.2228603336801,17.2715429019672,17.292712675333,17.6373938741584,17.548484158522 +"Q9VTJ4",15.7507526600007,15.6992530027689,15.6561344720167,15.6649141638997,15.7150494763732,15.8399540767595,15.3938223794612,15.5057669552715,15.3366879792516,15.8063353408337,15.7467735639462,15.7091905711981,15.4500096623322,15.4578343883998,15.4900203907328,15.6564599692638,15.5976167890317,15.6903066858326 +"Q9VTM6",16.3756517048727,16.1440216238592,15.7957399981683,16.4150014787542,16.0837191747062,16.2853721260742,15.8583011044764,16.0284905445329,15.889188400656,16.8157645175582,16.5688362871488,16.6558574792586,15.7227628115607,15.4826436703467,16.3497653475299,16.239545253363,17.1193155699915,16.4511035188984 +"Q9VTP4",21.0743483455677,20.9890614730095,21.0068952139348,20.9304338595441,20.8148014463611,20.8334731030179,21.086055751507,21.1308562021382,21.0721330278278,20.8842711163952,20.8089969032195,20.8311570127935,20.878433348392,21.0828970366997,21.1310247011432,20.8266708543164,20.8536002142943,20.8055302170051 +"Q9VTT2",13.8537191303917,14.4399807323261,14.5193309499804,13.8396598747893,14.3755596785861,14.1259487288872,13.7844532839072,14.0067152624284,13.8854011784704,14.5741501252323,13.5353321549216,13.9218620995688,14.1930537295043,14.2686849485786,14.328458239105,14.0122417459794,13.6310051129633,13.4762766937923 +"Q9VTU2",20.9454494275821,20.9511700357043,21.0028917037022,20.9553666085636,20.9843375765529,20.9509699121483,20.7597475023901,20.7401465220634,20.7395031130667,20.6399119338295,20.7044860303238,20.7227747635117,20.8239009328785,20.8844915758965,20.8048118540933,20.7929902063375,20.6527348710403,20.6964152650591 +"Q9VTV9",17.2318414229814,17.177160781722,17.2499559900175,17.3061325128736,17.1801985054579,17.3690520476856,17.3212376548142,17.5162106698917,17.2628820553356,17.1251850452825,17.1356228342894,17.0621153839868,17.1432802628643,17.341637513983,17.3766908714782,17.3391590532136,17.1160056466856,17.146139603526 +"Q9VTW6",16.5190105745774,16.3381306674101,16.2637708818962,15.981885339797,16.1757429734447,16.5168382330395,16.1888825670414,16.3261384557774,15.9906990960851,17.4089000496897,16.222664290355,16.3659288944087,15.2596506269578,16.2619222684331,16.1403223714219,16.2527515187279,16.2864820213707,16.3335211999396 +"Q9VTY2",21.2285534911414,20.9179649810558,21.1630193602936,20.8483774661,20.9203633134501,21.0378533782569,20.6733069903104,20.7254452586273,20.6372630548342,20.6972622295113,20.7018372327952,20.7194019889258,20.6739870468547,20.747052702487,20.6063020509038,20.5306337742656,20.6394575097679,20.4882811649691 +"Q9VTZ4",17.7363903659741,17.7516804071944,17.829477964698,18.0495229594376,17.9802885468462,18.0749587278086,18.306911222636,18.3166626888682,18.2366224347767,18.1875216493916,18.2611746489819,18.2474060209116,18.2780550106334,18.349276039281,18.2708050525109,18.5459234998046,18.4452423767056,18.4450545071715 +"Q9VTZ5",18.0518395801964,17.9857049495332,18.1150464564417,18.0875691976461,17.9746220191404,17.9644561497038,18.1068515512615,18.1262439778986,18.0288990709245,17.8974545386616,17.9183129734143,18.0610832870232,18.0628016111642,18.240726751349,18.0731967763028,18.0377649505332,17.9986707581275,18.0015996890669 +"Q9VTZ6",17.224638997202,17.0859521191114,17.5718872336677,16.858379739277,16.9520960262857,16.9095555263487,17.2986279161707,17.2602314285907,17.1052629650043,16.9611292219052,16.9313866022533,16.8442479541952,17.2464628892312,17.2744137921784,17.030942294109,16.8817452403816,16.9669040357481,17.0090880308426 +"Q9VU04",16.4277548889556,16.8000356264189,16.7090275513932,17.0884104047944,16.8323514119375,16.8874130219824,16.4092241073102,16.5326976751528,16.3414822464964,16.5341064816327,16.5100091630327,16.5428204682613,16.3363952211774,16.1397718200658,16.4088814146614,16.5736094036216,16.5546348108843,16.4798758046973 +"Q9VU35",22.7080485429397,22.8365105228692,22.7658027676635,22.8928374964548,22.9879478178862,22.8436292953565,22.5606564933985,22.4833274993242,22.660137463081,22.7123806594626,22.7497052951393,22.7352514083535,22.690195234974,22.572370998218,22.6840375595343,22.7117186210746,22.6459749148674,22.5869785543156 +"Q9VU45",17.8565276279809,18.036621312747,17.8158553150152,18.0167066040502,17.8688432840496,17.7287313376394,18.1119187626366,17.8237441030575,17.8714704842428,17.943517645389,17.9327815400418,18.0381796789789,18.0389278351917,17.7183245109584,18.0582520226301,17.3472653806236,17.9345491050178,17.8023750173657 +"Q9VU68",19.2907537286327,19.3801152928835,19.4147164699655,19.0189102871955,19.0606016042322,19.0561557105612,19.2077451628878,19.2411382646783,19.1237674731606,18.985227295832,18.9512577558876,18.983866292185,19.7723648539432,19.8249747001963,19.7785800809291,19.6446328018313,19.4615465124447,19.5625481035211 +"Q9VU70",14.9670768388019,15.072595289157,14.7110516427382,15.0700727132192,14.8576800246713,15.1749163345845,14.4413307817719,14.0707079444659,14.2393434246629,14.7452452797674,15.1388614158501,15.0923777570531,14.8395832997931,14.3458688371097,14.4498760517043,14.4029670749132,14.9805624770126,14.7987107775236 +"Q9VU75",18.2702591331981,18.3057127634273,18.3671950470483,18.1648564143378,18.0448558929147,18.0422882621161,18.3668523130887,18.290114806989,18.4479611937203,18.1283100661423,18.2304279468314,18.1696438931444,18.4061901328915,18.3687212363549,18.232319094896,18.1730450237794,18.2696804369207,18.2501055925128 +"Q9VU84",18.2773216203102,18.2520894565124,18.370865997774,18.5215465738986,18.41745446956,18.4083383653634,18.409773671133,18.2655192649451,18.4165632471742,18.4037712571932,18.5318733727926,18.5213559943466,18.4762004123444,18.3434948893613,18.3703536613185,18.4182389641071,18.6964210458152,18.4193752330098 +"Q9VU92",17.4404332821906,17.4871964416491,17.5124525852137,17.9584635544732,17.6821728082908,17.6155872744595,17.7416209524982,17.575861373448,17.5720815484491,17.8497481490892,17.7446757057785,17.8080551331454,17.6034988675611,17.8167969021081,17.9309585849261,17.7926203274654,18.0796819020031,17.9472500070838 +"Q9VU95",17.9324034509955,16.3585259671293,16.3936562482781,15.8700837929359,16.217312676769,16.1783124383695,16.8272096007743,17.1788156072305,16.9566004279433,16.1255644463492,16.4696958742459,16.691137775798,16.57624138817,17.0208991825291,16.8896295127804,16.1887651315519,16.2750185028729,16.4109314076075 +"Q9VUH8",15.3282981789428,15.4390801043901,15.5077281148259,15.2776915629867,15.5249652091244,15.5126763181431,15.4601081304749,15.3601925978199,15.3700930758994,15.6391150151587,15.6088867510487,15.7112109523486,15.5417063710456,15.3218422929556,15.1556157688376,15.5887254009278,15.5806777041979,15.5783204294819 +"Q9VUJ1",19.9034791103462,19.7675942645349,19.8650118280015,19.9504489591388,19.9424909986203,19.9524927388156,20.088334327578,20.0216329376747,19.9388109435646,20.0878287257407,20.1541492811744,20.2059341473208,19.9477827346172,19.960123526601,20.0161919808952,20.1569210686704,20.288803917486,20.1563532874937 +"Q9VUK8",20.6663630343003,20.6787438637804,20.7932533574082,20.7338624784939,20.7546287243981,20.7499580245006,20.8577839642997,20.762428795797,20.7553875947948,20.744700916297,20.68610025883,20.6877481540787,20.6743445658796,20.8144285323476,20.7128699553937,20.801129907359,20.7818546914764,20.7789677804535 +"Q9VUM1",16.3244185973277,16.4586625056516,16.5631243936037,16.6626367675335,16.5398617683411,16.7901575538121,16.4269097004784,16.5698676700495,16.3754822889567,16.4311999908903,16.5208717220818,16.6243956591643,16.5581427583528,16.6385449932233,16.4370934933193,16.7631450907043,16.4386442459397,16.3761995164309 +"Q9VUN9",16.51964428462,16.7288768625624,16.5347908767164,16.7924063034775,16.77054025941,16.7731933669637,16.8098435907827,16.7620314581482,16.7945068983853,16.9114687325781,16.8706033025881,16.9785191312027,16.7161820385651,16.7290111372461,16.7283268341582,16.9821528593322,16.8706347894009,16.9223607019293 +"Q9VUQ7",16.848426469071,16.559743935442,16.6292859905367,16.2839554883179,16.4608795132883,16.4761139458197,16.631372757982,16.5262590747396,16.3582353829298,16.5157844531302,16.5916446924395,16.5454087593317,16.2385645788379,16.5769980722667,16.55463932556,16.7027645073771,16.50534296654,16.6571848505383 +"Q9VUV6",14.8947980593575,14.9854584811434,15.0861951564982,14.8307663918109,14.655318030326,14.7593426281096,14.7494977414062,14.846878174978,14.7506260741511,14.7683043269785,14.925107033337,14.7445055438569,14.7908945027631,14.8718695062803,14.987442632412,14.8878391044887,14.6374689007403,14.5939880917772 +"Q9VUW2",14.4948963376153,14.5487229520708,14.429793410902,14.5639386314381,14.0045383732115,14.6750111982338,14.3388190167381,14.6646742568588,13.3441257215478,14.3660512202414,13.9352176577878,14.8795794007942,14.3838544601788,14.6148393762324,14.5018432414389,14.3169123078912,14.6964793579414,14.6341190011861 +"Q9VUW4",14.5603831489265,14.4425058065656,14.4557599990708,14.51091136458,14.6778376664254,14.4931727751618,14.6337574285649,14.3966444834346,14.5293443866507,14.6207529172158,14.6139704664092,14.6340950698485,14.7711860728354,14.6207236508206,14.6356184039363,14.3096968394716,14.6550056979388,14.658697136926 +"Q9VUX1",16.01800255404,16.3429854799923,16.1699099159,16.3917795116346,16.3586579440582,16.2282673374187,16.47096925768,16.5281179470142,16.5707952287094,16.5659327443333,16.5787769428983,16.6688670950638,16.6004971998905,16.3301554545465,16.3956006405544,16.4779623491569,16.3864498482258,16.4917033990891 +"Q9VUY9",19.6050537928298,19.543341513789,19.6538093954882,19.2750727191764,19.4056792652292,19.4678386629463,19.8851156970913,19.9412245882246,19.8332447772027,19.650713582008,19.5871952241206,19.5398257298042,20.1853827641073,20.1767668429151,20.1174051067219,19.8107397352806,19.7578708562149,19.79995461833 +"Q9VUZ0",17.8956031929806,17.528599300758,17.7651370715778,17.8208474878488,17.5672753983766,17.5457432069057,17.3838176281656,17.8233996031975,17.6089350951774,17.8076027695293,17.5831016724862,17.6383752713435,17.4099586070478,17.727330108667,17.7013674665486,17.5801625536092,17.668286155696,17.6384341276282 +"Q9VV31",16.8533543884146,16.3095186211551,16.7632094366185,16.3421445649682,15.9176179951966,16.0048715923663,15.7236327836436,15.7347991321266,15.7940141954537,15.0334731081933,15.3746988662307,15.0453236727831,15.2786499171155,15.4879637944305,15.1656920368683,14.519988266748,14.9266446199436,14.9781320949934 +"Q9VV36",23.6017915074459,23.4700612431876,23.7737936369027,23.3743591387302,23.3111129854652,23.2259854864863,22.9912765851582,22.878879372529,23.0882714441322,22.8638249670038,22.9536191276572,22.8419772813903,22.9627913134431,23.1014026923178,22.9576585299946,22.8042449504977,22.883213041122,22.7106020833728 +"Q9VV39",17.3122345471237,17.2290139774993,17.2951797447125,17.3384197943443,17.4162985953616,17.4139482101326,17.5985501356305,17.5320145111413,17.5887167251465,17.517247958054,17.5677537867901,17.6702771294278,17.595113288117,17.7130491145848,17.5012824326653,17.7897709724354,17.6932067103277,17.6819324536201 +"Q9VV46",23.879656718036,23.9223922829443,23.9883446308455,24.3163921500138,24.2624419982947,24.1926768034636,24.0467601018022,23.948283496732,24.1340860186988,23.8657174082181,23.9055469303795,23.9455151084466,23.7958815120669,23.8304499660202,23.7411749956405,23.4867971759997,23.5220903917659,23.3894075090418 +"Q9VV47",20.2304369417942,20.1691732378638,20.3154780435365,20.1644737617158,20.2352368378623,20.2420377778088,20.1139382026725,20.0338727112409,19.9944572600523,20.0564574990219,20.09930712731,20.0345832584954,20.341884498782,20.3439209705057,20.2487301554612,20.1106661713404,20.1363461905441,20.1825705799727 +"Q9VV60",20.0689049242426,20.1785207897824,20.2481024612388,19.9661426855013,20.0393737731262,20.0294096498428,20.2394739725602,20.2148014660289,20.138334003601,19.8829608121391,19.8847563698882,19.9459128571979,20.2038283940038,20.0553774492383,20.044645765526,19.9384924448509,19.9269733852339,19.8933984958914 +"Q9VV72",19.4187210474938,19.261428554101,19.2856802346419,19.2935265117467,19.3372626313435,19.4564479663162,19.4593556927656,19.457600957861,19.4456890791321,19.4605110143787,19.4650539414002,19.4570000834827,19.0825882688539,19.4534774250374,19.4937350155616,19.7443114193554,19.484190444851,19.3204615754596 +"Q9VV75",24.1032063087149,24.0506378767388,24.054278633729,24.103564754538,24.0443330014702,24.0186072139768,23.9628451226948,23.9789063621994,23.9519077431534,23.8114530023576,23.8674174001908,23.8955975798295,24.010621989065,24.0249210767515,23.9859272692495,23.8209808304193,23.8464562904389,23.9063535678514 +"Q9VV76",16.3251597935439,16.192129672945,16.5662731889875,16.5174024487161,16.3388749309026,16.4708630624365,16.3750618174394,16.2131663393892,16.1859452507622,16.3946157343143,16.3929696459532,16.3529406612949,16.3149151755702,16.1872630114048,16.1231944174177,16.0488122130362,16.6515635820251,16.2767506017212 +"Q9VVA6",19.2696105202134,19.4718784409432,19.379513835348,19.346516668515,19.2921861107556,19.3205226671196,19.1215236446454,19.089137372741,19.1178734432275,19.1648811117518,19.2145908663809,19.3461112096542,19.1081185032372,19.0147094996972,19.084861942784,19.3281518682383,19.2563000260834,19.089919218468 +"Q9VVA7",17.3763651637652,17.3229870831658,17.260528915711,17.5201687309957,17.4656772989453,17.652597691124,17.5330720854664,17.5081029012515,17.4425837471596,17.5112146637325,17.4931534687959,17.6584759515629,17.5066982243748,17.4879432592341,17.4320607900559,17.6379299986254,17.8075848555673,17.6392017713465 +"Q9VVB4",16.1629042828033,16.1512029877019,16.2348332982609,16.3714740684176,16.193319527839,15.955235974606,16.0240855254729,15.9682723651699,15.9848146354859,16.005432815568,16.0586721602674,16.0908515346715,15.6524928292658,15.9079202836941,15.9082168992449,15.7548797685103,15.6918819653656,15.7973169477687 +"Q9VVC8",16.5432091059229,16.514429327724,16.6219644692099,16.913547959931,16.738193458556,16.8518671946526,16.4806995404667,16.4772277940483,16.4607348365581,16.6675868452515,16.7105354929335,16.7779636651235,16.4333892537031,16.4447987590254,16.3393998689766,16.7343437637671,16.887591636755,16.7208464345216 +"Q9VVE2",18.4861100922994,18.4154839346313,18.5386587012265,18.3264501805047,18.3834387280576,18.5674326784289,18.2779522665455,18.354272617827,18.2250223197774,18.4806425913826,18.5212367476267,18.4740930790999,18.4196007398059,18.3201366159724,18.2618018269089,18.2321110169754,18.2282982433985,18.1558582820719 +"Q9VVG0",17.8638474713323,17.9647914273792,18.0640079271086,18.0530810871573,18.017268414916,18.0897125846603,18.0461863958639,18.0359297436855,18.0574389207115,18.1513417968096,18.2294092686446,18.201152069468,18.1812092585743,18.140428140464,18.0150808417647,18.2921341647748,18.199973179423,18.1604078307992 +"Q9VVH3",20.0604505907093,20.016608892257,20.044334977391,19.8057265047968,19.934302401574,19.9791553039276,19.9847592878424,19.9681079238486,19.8608986764662,19.635568170067,19.8102400491795,19.793679189809,20.0855844278568,19.9560749467023,19.9884887542284,19.7652188290506,19.6519735967614,19.6707509085007 +"Q9VVH5",22.6742185845657,22.6734281938854,22.6828416912638,22.5163033364139,22.6276206568245,22.6019484107638,22.6277512767298,22.4717097737022,22.4937007458812,22.3230786141365,22.5132886812471,22.5448679158546,22.6501278425896,22.4556361757785,22.5994838286283,22.4530042125696,22.5028003855673,22.3216412746134 +"Q9VVI2",13.8920540022919,13.9995261504244,13.7190826857457,13.5049412856587,13.9095278913468,13.7680845491725,13.8774084204653,14.0476766513357,13.661105613174,13.8392786085579,14.7025910120116,13.9993165924263,13.8227577072998,13.4415795600369,13.599780282682,13.6238801874131,12.4594189465313,13.8129504884861 +"Q9VVJ7",18.1298246201728,18.2199251774608,18.2817495033646,18.2139218566855,18.2685382149762,18.2122217395828,18.1444339460531,18.1506983020491,18.2347748570559,18.2839745330547,18.1773366250716,18.1862875956504,18.0908991954876,18.1907270632895,18.1560280582844,18.143908758304,17.9997375269107,17.9359011558196 +"Q9VVK5",16.1927417468617,16.0562418508327,16.0227165123747,15.7546960374266,15.5098845344032,15.8392362561057,15.9651331071864,16.0829278458228,15.818611916618,15.7457965570035,15.7138965435955,15.7935117068898,15.6884229761821,15.9958249328742,15.8424710069833,15.8437666875169,15.8317814046488,15.8740097132057 +"Q9VVK7",18.1465328776304,18.26898771362,18.2068870607504,18.3203796818964,18.3013207248284,18.3474303693638,18.2476350619664,18.2221523593164,18.2745332037893,18.1178557923305,18.1487578585532,18.2818949481295,18.1254325544371,18.1422483446383,17.8311282264877,18.165345850652,18.0397148179565,18.181308010392 +"Q9VVL5",17.3028980135619,17.2531557491776,17.0804603797825,17.2262940669861,17.1010785879407,17.2181610131976,17.2715147263301,17.3582310810166,17.2642414201389,17.1757668349256,17.1838449404326,17.2802169456434,17.4410017535283,17.4085317846613,17.5178570295504,17.3524076213731,17.4650408734764,17.4089462283924 +"Q9VVL7",23.5258218095828,23.5275615220681,23.5006031850867,23.8020921452274,23.5917215956386,23.5575721073956,23.3319554958623,23.3607808942831,23.4208331959292,23.5067908251984,23.4547292420619,23.4599845999163,23.3001344001539,23.4652278444695,23.4764854773526,23.481308819781,23.5480823972846,23.5326249301255 +"Q9VVL8",15.789100843126,15.9047244091584,16.0258385425099,16.1132680556776,16.1070335898404,16.1534469737663,15.8215997417406,15.8996029943973,15.7965979460922,15.8152626120349,15.7863017161149,15.8967297104238,15.9286042716874,15.905759692713,15.6084072926867,15.6858355416904,15.5502486637328,15.6726506004779 +"Q9VVM1",15.4300877768505,15.528133824051,15.7416110947275,15.7525745689167,15.4061217282601,15.453128717522,15.6109655860293,15.5603381289479,15.393542056646,15.8318591282363,15.7176589854195,15.6067558322432,15.0873358292747,15.492923752724,15.5310927725955,15.728432697201,15.7360791671061,15.7151251127743 +"Q9VVN2",14.7392297068142,14.6539101618206,14.6504102244282,14.891067101576,14.6132705102264,14.7586391089055,14.8416899635854,14.780480520268,14.9705633832396,15.0871334505326,15.2464740531964,15.2066075768966,15.042124564609,14.7859477723395,15.0249870247748,14.960508066686,15.4816698359522,14.9505455355584 +"Q9VVP9",16.5925310262645,16.7460711424713,16.6923091064847,16.6827867620219,16.8210889905163,16.9276626635741,16.8866590437638,16.7943768060805,16.6248751667684,16.7888703103768,16.7551674608921,16.8214953443661,16.325014945411,16.3459081177012,16.2764628840135,16.775614519652,16.5888640898286,16.7086714422832 +"Q9VVS6",16.4126074357129,16.6750220387598,16.7268133698942,16.4372878638324,16.4199172979495,16.578536621204,16.4103188169925,16.5012832151595,16.4662182965267,16.4052832983067,16.7121785267423,16.4506880278157,16.7282394129871,16.2289992894977,16.4567850814559,16.7313358890916,16.5876723488143,16.4460313200267 +"Q9VVT6",20.5460232532886,20.5594184144543,20.6117179235284,20.6301508528077,20.5644734604843,20.5215537778543,20.3952334943031,20.4752820013165,20.5402891760506,20.4691189192636,20.3885686446297,20.4930416205124,20.4050528453504,20.5557296972302,20.396814250151,20.4596434858578,20.3617506327561,20.3418061027745 +"Q9VVU1",21.9500154259161,21.9040303432298,21.9516708519054,22.3186324144516,22.388868586598,22.2725971633518,22.1005428507236,22.096168991891,22.127162302347,22.4303249496421,22.4387005747139,22.5288928491522,22.4328400423359,22.4569463347992,22.416660698508,22.3814231824791,22.3290640343166,22.316795000284 +"Q9VVU2",20.1287801281267,20.0605545828281,20.1110416453854,19.9172353379315,19.9578708549236,19.9951150532185,20.3197392995614,20.3227682521189,20.2480288373649,19.8955119139044,20.0557559957318,20.1029387712388,20.2841456688328,20.2209078015773,20.2051460184949,19.9955093782142,19.9230642393913,19.8786514008685 +"Q9VVU5",15.622037969734,15.6902328897828,15.4987695451707,15.3001489485029,15.5767422322229,15.9001953889743,15.5890394050668,15.4576720365251,15.1787697481178,15.5808749129255,15.5041856460714,15.7798335379004,15.6000303484117,15.6916075001042,15.469432026127,15.9768747245275,15.748566004462,15.8420060628781 +"Q9VVW3",16.2651420715908,16.3461377698859,16.3932571016077,16.1710744035052,16.5348850739071,16.4877589184053,16.4610767565305,16.5180703288035,16.5127035466087,16.6574924974605,16.543260600971,16.6754078387049,16.9971629458852,16.700628617748,16.7049315854805,16.8991339450535,16.8081002287102,16.6770236292185 +"Q9VVW7",16.691496084963,16.6216904812272,16.6792705485948,16.7653347398607,16.8065431521281,16.8027472858065,16.5039463716496,16.3970253385589,16.5321733979983,16.6862686714176,16.6041294208664,16.6959771367019,16.2975265440809,16.4585639628867,16.3849783192456,16.5520302043315,16.608650260636,16.4014559279562 +"Q9VVW8",15.7749895972736,15.697138514162,15.7709619271963,16.027786213918,15.7833278854919,15.8012171942069,15.7921426667993,15.7645491834164,15.8273903549995,15.7187253989737,15.7448334609697,15.7072140117874,15.9188947469901,15.8929973419241,15.8483682784611,15.3102645876881,15.6599568256787,15.5876514449917 +"Q9VVZ4",16.0208873288458,15.6738247855928,16.155751069929,16.2619552346855,15.8572319742359,16.0198037376771,15.8255278433688,15.6707527077646,15.7100174518566,15.7256605544789,16.1848681895817,15.9362909528286,15.6993917820053,15.9604155256505,15.5289951167426,15.3297707786314,15.5161003391901,15.5123351929817 +"Q9VW00",16.0852040054724,15.8244476092419,15.8384371202481,15.7992681267335,15.7915831297837,15.9185994940897,15.9207595088398,15.8395307954944,15.7924399980668,15.4498345825595,15.540418708084,15.6405726195775,15.8067531996551,15.8279925736584,15.8485172662577,15.5722375274119,15.8100841344098,15.5954904524323 +"Q9VW14",13.8854896568598,13.6580102230138,13.7524011565791,13.6008549155245,13.9716922777318,13.9348495669937,13.777866994094,13.9446845582225,13.8794330307158,13.7267129933001,13.8602173394642,13.9412587243009,13.6387331619369,13.6846692890746,13.4171138232575,13.8984252346583,13.4088092688666,13.6030266545264 +"Q9VW26",17.5166482395065,17.4162981633947,17.5330474168981,17.4541313102435,17.438928592319,17.3810358013782,17.6053024635252,17.6415679549068,17.6323900714514,17.6052557777054,17.6756390050047,17.6176054790302,17.5439436717105,17.5843549022552,17.6436783674309,17.4564296947903,17.424922539601,17.3739540212926 +"Q9VW34",18.3228527759288,18.2432434066026,18.1914039837858,18.2806192737106,18.3568775591398,18.1241991643059,18.5708056536726,18.3672700507857,18.4961491150306,18.6415065429799,18.6593449201779,18.8445827912883,18.336935513789,18.4265985023061,18.4764352057368,18.6202806081801,18.7196659292489,18.6402301081136 +"Q9VW40",14.8321062645243,14.6181883891813,14.8145095956704,14.3784016232136,14.5736532998277,14.7319840154919,14.6426268943687,14.7131294085407,14.5967626780565,14.6549457701029,14.6922758231522,14.6403341221306,14.9788624742058,14.8317121571341,14.7386271496672,14.5368617484609,14.5948456970402,14.5015872138596 +"Q9VW54",15.5644384041277,15.6235656054421,15.6289692673188,15.3840593875424,15.5213045264072,15.4665207909037,16.213417685504,16.0569969249563,15.9808331262707,15.8308858396963,15.9910363055388,15.9767500433928,16.1320686414361,16.0474298954785,16.085300787169,16.1389786954196,16.0235153959033,16.125474638671 +"Q9VW57",16.3273757391551,16.4430724527118,16.4564300230745,16.4342094707607,16.5723277645165,16.5935968435026,16.6566274146793,16.5144171370557,16.3640300820997,16.6882175636322,16.6784159755251,16.7744052290378,16.4825245557554,16.5659677419909,16.5167371809172,16.8043715213551,16.6191251935379,16.688126906706 +"Q9VW58",15.3286230360876,14.6804296752148,14.8460815539605,14.9804393617533,14.4463785866035,14.9426727860188,14.8331728027496,14.8121015556036,14.7049788985371,14.9726668246596,14.9279453811633,14.7109667020257,14.513082683872,15.1710475462931,14.9727831145005,14.590557897632,15.1806398618756,15.0410595517114 +"Q9VW59",19.8970268718252,19.7158810440656,19.6652570709776,19.5501209752388,19.6517251368886,19.7046885630152,19.6333825102584,19.6848192661867,19.6010795299487,19.6777502661511,19.7186541784888,19.7762616832753,19.8591330960062,19.7810307617679,19.7784616669229,19.8482807149821,19.9135840470642,19.939945920322 +"Q9VW66",21.5238383790508,21.3223797211396,21.4353182428357,21.5841320363108,21.5454774535131,21.584582202717,21.2347275812946,21.2311137250116,21.2940729991512,21.3538381024114,21.3678581609885,21.3416421742667,21.0882955432901,21.2343529060978,21.1422143972013,21.2919211256124,21.3755708012194,21.2789227517983 +"Q9VW68",22.7388807618156,22.6324017192259,22.6074205885506,22.8003240137446,22.8370533203731,22.8878931841268,23.0623291083719,23.0068837210264,22.9054267973386,22.9819077202576,23.0015887860824,23.1080057409771,23.115910082393,23.1535389634699,23.1465137875457,23.0289862968491,23.0968714732542,23.073077884893 +"Q9VW73",14.0582643068942,14.1777454605213,14.1565640570328,13.8047625210746,14.1219954438203,14.2051319734934,14.2527112360237,14.2285636479297,14.0115136245196,14.3822606442975,14.286515189942,14.077308379434,14.3725981383843,14.3865232384767,14.4873795148352,14.4616139964552,14.1308678624394,14.3943132938144 +"Q9VW90",15.0604576358528,15.5954972450673,15.3884393465058,14.3085476337566,14.6719559429394,14.6499608348802,15.3742545955317,15.0438303793194,15.3724120633643,14.885335203451,14.9335840094269,14.666588576032,16.445936424055,16.039395811616,16.14026571486,13.9467632689116,13.7370313731897,13.8036282259164 +"Q9VWA8",14.3981546521517,14.3734250342143,14.5840245334096,14.5267417109054,14.3961705168228,14.6543355665843,14.3767447013071,14.4133107036918,14.2870902091573,14.2340893938066,14.7195151993948,14.5675552612206,14.2255264876237,14.5480283253859,14.4129714263258,15.1007712535247,14.4115784198098,14.3560512026218 +"Q9VWD0",18.4600332671202,18.3798688434686,18.1685295481778,18.2057444706666,18.2252421604062,18.2414687561794,18.1913119766387,18.2448944276778,18.1867551291306,18.0471352429609,18.0767123695005,18.0325467530113,18.3024741304201,18.1760757105113,18.3456127943921,17.8728376285202,17.9767432047625,18.1046237354357 +"Q9VWD5",14.2756589677026,14.4636327232235,14.4078202418202,14.2453263728888,14.2465192529703,14.4715392505975,14.4424861893102,14.2198501878915,14.6017729878684,14.5448463929044,14.6760051730934,14.4197797799226,14.5060277221429,14.2519915709365,14.3811037902192,14.7676441581626,14.9239908949963,14.4999737526837 +"Q9VWD9",19.4647069841633,19.3703015488441,19.538475689985,19.496380537697,19.4727602988474,19.5124922929253,19.3710001558457,19.4278411941595,19.4347255324833,19.4989712844176,19.480172630427,19.4113243290073,19.3340518326646,19.5009403555503,19.3329800201812,19.4606482678531,19.373743034813,19.3957611980592 +"Q9VWF0",16.5459510138652,16.6815903117759,16.5018653146789,16.578583213085,16.5720613322622,16.6650537391052,16.4131527783991,16.4750260129817,16.162992733083,16.6177322947921,16.2552424427023,16.517218823019,16.1962071183008,16.496720970299,16.4384458299229,16.4443496232609,16.315334971682,16.510399601894 +"Q9VWH4",24.5248905004672,24.4850397234769,24.5627996095721,24.5212250436288,24.4858411909097,24.4647125395243,24.3407963453764,24.3368333282742,24.3143773169028,24.2595479418663,24.2613745243312,24.2748214387979,24.3002660655159,24.3984437655936,24.3616737960122,24.2444764859528,24.2236698502218,24.2128176819982 +"Q9VWI0",21.1561775630935,20.98802476051,21.226575821947,21.1136576403025,21.1044580951582,21.0877599431047,21.0116554716787,20.9264526416615,20.9127155266468,20.8556437237684,20.9167219157111,20.8834567070232,20.8091223916657,20.9646507098555,20.9280768849383,20.8317164986846,20.8776651662971,20.7393884055334 +"Q9VWL4",16.4498446778388,16.4964980736588,16.5401842908579,16.0662782867023,16.1680419988066,16.1829378902744,16.363604960134,16.3181623219766,16.3783140141953,16.1217657477083,15.8352657708867,15.9479658492568,16.318557096881,16.4067899634318,16.1823755505813,15.7295991802602,15.8248918207643,15.817872354359 +"Q9VWP2",19.9084720395056,19.7729152967896,20.004637816117,19.7928517743889,19.8453914932482,19.969982900052,19.545000931706,19.5678414794126,19.419603236462,19.5976006299347,19.584190301567,19.5717930068712,19.5202471631641,19.5864879131777,19.534598525548,19.4341378937477,19.4414839482519,19.2976949473966 +"Q9VWP4",14.7206275771385,14.9565400656753,15.195797303462,15.2205180341386,15.0187935961152,15.0032496112416,15.3141232221123,15.166774736327,15.0459127433016,15.1667950125025,15.2163080805244,15.4172609823892,15.2792947596659,15.3013214378508,15.1084088153409,15.4301733251356,15.4717940142007,15.3609024749581 +"Q9VWS1",17.1344560925691,16.9698590797652,17.2659823100424,17.3210467642262,17.2249450506097,17.2249483354377,17.2321943281379,17.1536605885415,17.2352126998765,17.2540590100878,17.521621506871,17.3464691738485,17.2339301910201,17.0609195296574,16.9892846964805,17.0305075003379,17.2751881309343,17.1442966706934 +"Q9VWT3",14.6195816569293,14.5146682022708,14.3881062340839,14.0674724951812,14.2396199118902,14.2794446326388,14.5100288917472,14.4098635192264,14.2723550516631,14.1664957113069,14.154213914931,14.3001942830653,14.2296592418315,14.1768367176944,14.3126410003969,14.1975734614029,14.2956091923861,14.2380702565508 +"Q9VWU1",14.82629910707,14.8935496832813,15.1114991810303,15.0084441790059,14.8423449237528,14.7979849725745,15.0620066176965,14.7008680397271,14.6630429273962,14.9763712127579,14.9898466674079,15.1749379231667,14.5639659617656,14.8881035807917,14.8387253326108,15.0932893514787,15.215663534814,14.9441860929963 +"Q9VWV6",23.7588465557001,23.7503419134069,23.8265499354226,24.2587411852591,24.1055394736483,24.1583194555802,23.4456732089404,23.4018058154114,23.3890197222734,23.5610931963332,23.6282142419869,23.6783909457133,23.4794520364165,23.5579293226907,23.4867949670471,23.3307734980017,23.3907489135069,23.2955046546144 +"Q9VWW2",15.0968413007731,15.5725951572136,15.2494453281575,15.4239597600886,15.1883711170758,15.2431043760746,14.9306346819657,14.9798858560008,15.0139106724718,15.9593621252136,15.0799339620987,15.8675114049975,14.9195427304668,15.0098371734787,14.9642171956612,14.7611191904087,15.2608365230489,14.753270811554 +"Q9VWX8",20.6445695203365,20.4613568906461,20.6279565732346,20.5647018012614,20.6669963538933,20.6515732234332,20.5444695663971,20.4375653796913,20.5303650284062,20.3972468844198,20.5596950953394,20.4966212133198,20.5577782838823,20.5704422839367,20.4361775785953,20.543513101533,20.5562231543234,20.5095855408411 +"Q9VX02",17.0852915612492,17.20791733495,17.0793836076521,17.0989809086599,17.2219810189688,17.3509491069977,17.1868746045658,17.2741096800341,17.0446248661238,17.1711194650631,17.2096681179174,17.339159460021,17.5275755632839,17.2053302960162,17.1865304819954,17.206742611164,17.1575782660994,17.2759371911958 +"Q9VX36",22.3244650651142,22.2420196324016,22.333677869569,22.346605871083,22.3161899449973,22.3560998290191,22.1490038831025,22.1531175882679,22.1782368454186,22.1998405558772,22.1460355625735,22.1112558722851,22.0574015757905,22.2574146272225,22.1479456431993,22.2003547045525,22.1628943000571,22.1504555960289 +"Q9VX69",18.3093934943607,18.4500727040066,18.6592040864588,18.4725977130275,18.2906209116489,18.3649303050591,17.9592834663854,18.0497449411015,17.9535224376848,18.2326834902525,18.1208487850898,18.1321670006788,17.71714410131,17.8413760454177,17.7725984630287,18.2655044025749,18.2039432806466,18.0741843750008 +"Q9VX98",18.4022761406721,18.2588153758911,18.3187241304764,18.1983196948628,18.1972936251832,18.0355802862229,18.2890721924087,18.2319476534743,18.2389615605755,18.0680679422553,18.135680581658,18.0475667369935,18.1402931220507,18.3810459687147,18.2621566846767,18.2902487510927,18.1834946384209,18.4852884443973 +"Q9VXA3",17.6274759493276,17.7992795024945,17.7903353891695,17.9200211080636,17.9370884989328,18.0061065058078,17.726714163609,17.7507224031283,17.6238525582253,17.8966001258817,17.9130405920712,17.9004912341841,17.8513384525281,17.6224698696933,17.8020320114415,17.7766698225974,17.7762187556871,17.676001923179 +"Q9VXA9",14.2250723474616,14.3076676291107,14.3098183585886,13.7851921280453,14.1965112992807,14.2804153732296,14.2918855941003,14.3715593032216,14.311523287903,14.4109224227188,14.240205445165,14.2444570331167,14.5513654535881,14.2012740509294,14.2514506628204,14.3636824695872,14.310902687794,14.230455699843 +"Q9VXB0",20.219924170759,20.1953668972222,20.1582491566069,20.2653734392017,20.3291565653038,20.2758974469698,20.171077429901,20.2040195587697,20.1627508054099,20.3880884671062,20.4167200274853,20.5306976546531,20.14429184229,20.0228526565003,20.077805897515,20.4110457019588,20.4316853459354,20.394400090062 +"Q9VXC1",18.4828011383375,18.4173498723605,18.3592895335062,18.4272093506184,18.4206903037803,18.2952938173229,18.309073305747,18.2575062863728,18.2133222474607,18.3966564468078,18.2581047283727,18.2665287596392,18.1852577879304,18.3327312564205,18.5027805462742,18.1085510165679,18.2231665987024,18.272334141806 +"Q9VXC9",18.9101090044136,18.7975563016876,18.6061204401651,18.7724725110947,18.529106895816,18.4537168609042,19.2396712141806,19.1589676230852,19.1012564021156,19.1583873174472,18.9806086727216,19.1435454625843,18.8814464190402,19.2775796974663,19.4915335751474,19.233122196347,19.4513894717468,19.3990359216068 +"Q9VXE0",17.856731298548,17.9124701781218,17.8882769952319,17.854382612209,17.9669337440885,18.0189101020413,17.8804190846501,17.880088631094,17.7884985379573,18.293367693697,18.2079336582882,18.3618463820863,18.0723577825989,17.9771611850169,17.9043657363031,18.2031991352638,18.2158702103575,18.1985598533468 +"Q9VXE5",14.5209453043849,14.5571270813869,14.6339615565244,14.4975067931796,14.5639119050776,14.7488998579981,14.7396898698851,14.800300473474,14.7205674863332,14.5413770492272,14.5313648147268,14.4950907891396,14.6294933160632,14.8673779349787,14.5512391970957,14.805314295145,14.4142444182409,14.5845677407939 +"Q9VXE8",16.2530335865885,16.3133329878375,16.4215908739834,16.4720404524657,16.2133730300092,16.5189270982292,16.09204114092,16.106030363693,15.897757852513,16.1598286550924,16.2281415791351,16.3751120190192,15.9979437136543,16.2923111142393,16.0853309529514,16.4303935779447,16.2520920517516,16.1065623299694 +"Q9VXF9",17.4654861119866,17.5291608334396,17.5971524195423,17.5843338294028,17.5386082452244,17.516143060661,17.5605802178593,17.453406536738,17.4715180614641,17.608303307698,17.4918224457824,17.5106308293046,17.3438288275829,17.3967663405179,17.3082537481331,17.2699255336333,17.4226934264606,17.4287597090577 +"Q9VXG4",20.1134439332493,20.135400151207,20.1092033278904,19.8775063552364,19.7859582896573,19.9392291819,20.0972180666877,20.1122272478402,19.9183481689423,19.7842429475878,19.9219649818977,20.0694622409926,20.0061617013563,19.8566165327731,19.8666706442384,19.7479322032211,19.8143380039634,19.7235916433749 +"Q9VXH4",17.3023055595599,16.875449068719,16.9481133411734,17.0863620111752,17.0273334853369,17.0712747506836,17.0810082374003,17.1830784457038,17.0949826058411,17.2616514682965,17.2630160551368,17.2869723605178,17.0142050390738,17.3078024931446,17.244355345771,17.0588269799372,17.1476797474019,17.1586608914559 +"Q9VXH7",18.4123971302368,17.9634215267374,18.3271667491655,18.1375367283224,18.1570997729445,18.3337275802611,18.1207283592253,18.0463816620833,18.1685384978633,18.1592280078284,18.2302837974807,17.9334712367738,18.0516534187737,18.1718409392709,18.2319178922649,18.1520404394922,18.4645563853621,18.0387621275503 +"Q9VXI1",19.4436694979501,19.3463160476029,19.4027040457128,19.7003292209907,19.9645007411597,20.0087211301041,19.2590193055765,19.1659062841023,19.0677794419293,19.7102360270943,19.8776495616913,19.9264266504156,19.5620339927399,19.4266905311017,19.4010407541914,19.7358444299871,19.6300693086807,19.6044604519853 +"Q9VXI6",22.2101017723032,22.1424143275339,22.1826393411279,22.0603911441475,22.053406428588,22.0579495862014,22.0192080424272,22.034675331828,21.9564829153439,21.9446849086188,21.8670736339534,21.9361194917525,21.8560888215271,22.1161910502772,22.0958060281519,22.0564761923139,21.9331901091572,21.9179535187601 +"Q9VXJ7",14.9617272075001,14.8661307217423,15.2105732344011,14.8417349489465,15.1569650419783,14.9849097427644,14.8911673077509,15.0161283356651,15.159006343904,15.2481852265454,15.0220294487515,14.7032765202587,14.9459252548957,15.0258934983845,14.9816270368061,14.9066237164331,14.7082166155499,14.7559707839372 +"Q9VXK6",18.0858646389121,17.9218771352098,18.1052065886473,17.8787495896425,17.8896756748759,18.0070840305769,17.8166575060398,17.8014956353659,17.8378058995059,17.6383656098814,17.6479371056057,17.5904437597852,17.9067393971928,17.8827524275217,17.9576255707604,17.3993680608651,17.5820068239545,17.2275789532579 +"Q9VXK7",18.0282622254813,17.9908122127455,18.0772172363891,17.9653940262392,17.9992333104129,17.9588767197324,18.0037381213728,18.0641354902617,17.9297128114923,17.85854019268,17.9397471315444,17.9859637035719,18.241678379381,18.27992484721,18.3158548970449,18.2678249159652,18.091584868945,18.0978124928888 +"Q9VXM4",20.0523704378778,19.7983243142621,20.1952067790844,20.1607157721406,20.0742861483477,20.2444881117411,20.1159296149976,19.9915451159042,20.1486146085639,20.5480546194772,20.9237034387987,20.0897319779285,20.1303797874208,20.1046165730814,20.2325328647836,20.119565327137,20.2345399686567,20.2164412169495 +"Q9VXN1",14.0293076312021,13.7386425334079,13.7308986694542,13.3844954737429,13.723634671376,13.8944133933259,13.4454480283538,13.5263110069433,13.3033167224936,13.7311320186527,13.5557849797094,13.7479959269756,13.424149520722,13.4126374302035,13.3768202603536,13.7851511882954,13.8426732393287,13.746238888366 +"Q9VXN2",18.7707495935891,18.5385470047954,18.786037096809,18.8105861091639,18.6058130974904,18.5966169866023,18.1077702471753,18.4818758973559,18.4462115887631,18.2004725526535,18.4579972095113,18.237025428329,18.132082377804,18.4653108542248,18.2157035548186,18.6105628731504,18.0826796901583,18.3506290982141 +"Q9VXN3",17.1509281965154,17.0485103611309,17.1377660459181,17.0167054129407,17.0455813533015,17.050074967162,16.9108415410161,16.96590721097,16.9986944742756,16.95537808144,16.9397484230214,17.2267498449393,16.8618079567139,16.9566162324205,16.764026986453,16.8744068556658,16.8137044634475,16.5927557255437 +"Q9VXN4",14.7360163352178,14.7579608343024,14.8208506504436,14.8559898629416,14.99342283153,14.7840398691667,15.1684792211847,14.9770303106508,15.0995587029725,15.0355060933644,15.2243168852199,15.0002701359367,15.0475589006816,15.0733178872163,15.168941617745,15.1203489329683,14.9378505974389,15.0902383700937 +"Q9VXP3",14.1468851635239,14.1567961993013,14.0458319462081,14.2626836548587,14.2804383222636,14.2222063900925,14.7233823871444,14.6653480644048,14.7341627302202,15.020287969549,14.8795554333975,15.1292778664118,14.6906208931544,14.696508466075,14.7432846049012,14.9221096831231,15.0873232659112,14.8912062135197 +"Q9VXP4",17.9723935497035,18.0056854653676,18.0077262186394,18.0466379893883,18.0580978076792,18.0428797704898,17.9445137040328,17.8195749276276,17.9869104719933,18.1577252271681,18.1656253700139,18.039375549939,17.7838873624957,17.8611280623469,17.9372569718962,18.0139319740261,18.0089781737793,17.9049408238567 +"Q9VXQ0",14.5147233017989,14.5820825367389,14.6642767559348,14.7108875291726,14.7553270752976,14.6504972165756,15.2753711085551,15.3300575813677,15.4954642984039,15.2576118516966,15.1856814073725,15.2206436814906,15.079145540727,15.1415313762894,14.9830440468861,15.4010161591015,15.2440755139857,15.2248294917607 +"Q9VXQ5",20.2040287439392,20.2776232522063,20.2552845407515,20.4031133980605,20.3216383577,20.3328621651385,20.3856655477816,20.3871583528816,20.3518119851455,20.3752654352313,20.4138579038307,20.4752088885666,20.2915870239206,20.3446453497926,20.2787790422357,20.472380779478,20.3871177120001,20.4380943065734 +"Q9VXR9",15.2192986433753,15.2240035597971,15.2458516178212,14.7148546070397,14.8339518598496,14.8979943641175,15.3669119117825,15.3988317694503,15.3322772966053,15.222236731952,15.028536653585,15.125161135926,15.3786922238883,15.5825326936668,15.4754005464643,15.4653751937551,15.2995127754441,15.2906843508585 +"Q9VXY3",17.8621445804958,17.8773655762241,17.8071431799179,18.0491173959963,18.1001567119714,18.0877391741719,18.1649700671821,18.1080573318404,18.0408727715277,18.2221853448651,18.3211864418262,18.3406789523103,18.1366278709876,18.0641859579706,18.1237664425958,18.1495483946903,18.1136416343846,18.1843931336937 +"Q9VXZ0",19.9617046707011,19.7243780870575,19.7456774257796,19.7721646983776,19.8592798945017,19.9407633244569,19.6915026617595,19.7004306456804,19.6163352535579,19.5318390489822,19.620906219477,19.5587953160862,19.7008098018522,19.6511973316933,19.710375302659,19.3903408291625,19.492169532425,19.4764150882955 +"Q9VXZ8",17.4248074206567,17.652600276776,17.6188317725948,17.6622748026714,17.7279610231993,17.5242964063717,17.9851222149916,17.9262657798204,18.0034811830515,17.8578417251806,17.9086020249636,17.9002919158348,18.1932341888793,18.2331200919343,18.2847964071613,18.3450217995815,18.0197529552676,18.1366044669471 +"Q9VY05",18.2835325043313,18.2927631316062,18.4835553800396,17.9316948450165,18.0063414553428,18.0128454369144,18.4764719207122,18.4517175208109,18.5786425788969,18.4075173618667,18.2285524993707,18.2626444829744,18.5128317784749,18.6745703674756,18.6480561943668,18.3383938835537,18.2964973193491,17.9646982207632 +"Q9VY24",17.4351570231912,17.3952273973918,17.4749449726612,17.8434514849742,17.8733484254979,18.0582218581225,17.7430650562219,17.7578087320953,17.57013610872,17.8995759029119,17.8438410237583,17.8766898666936,17.8133312615935,17.9234683190231,17.8227176931513,17.7419389607031,17.6828257918294,17.6738091902472 +"Q9VY28",15.0970338323877,14.8647937571412,15.1917918520113,15.1566558062479,15.1141666200597,14.991209812792,15.2583731483508,15.321317441472,15.3357168997652,15.3525109652968,15.4559613834737,15.3175351541726,15.2639669391133,15.2754204493877,15.461974300791,15.2207773675739,15.317658407436,15.0510900394382 +"Q9VY41",16.3893715143545,17.1023960970581,16.8238094063122,16.3705747223948,16.2959258167461,16.5688125681997,16.4046912170122,16.4153033732683,16.4419388175431,16.6066585502917,16.5585766386787,16.4148547727055,16.608548310286,16.0030830520862,16.6139439604096,16.8591250861468,16.8636844226485,16.3756098753158 +"Q9VY42",15.0749281906337,15.0812445053058,15.1257742514505,15.2191915872062,14.9929381343585,15.1055452378259,15.1117714334855,15.3076348975613,15.2706990927143,15.2624309637036,15.1737047724032,15.2363610554126,15.2403897893358,15.6802324526154,15.4483576524762,15.5236119895062,15.1965691916267,15.2455866639915 +"Q9VY78",18.9702749322994,18.798732813376,18.9775721939991,18.7411144745327,18.7870838826877,18.9479425735077,18.6257141849824,18.8341773676532,18.6883776542653,18.7764614582121,18.8604482125588,18.7837823456525,19.001198610491,18.6761929245253,18.7027752707498,18.5380920442113,18.6962205039279,18.5524056665547 +"Q9VY87",17.6739950850551,17.6198260435482,17.3546817318281,17.4623434017264,17.2914282565272,17.3718357701063,17.5122626990412,17.4523926948507,17.5448775510094,17.6218678873947,17.7516745023751,17.7437402622868,17.6853145478355,17.4508220789714,17.8017681101197,17.8561157398224,18.2457557846028,17.994995935525 +"Q9VY91",17.9050528133728,17.0801370660017,17.0377456552657,17.0048937899194,16.9189909967394,17.1930522108391,16.7017404307761,16.8778046259927,16.7570884076166,16.5063852240998,17.1097792959693,17.2817320779695,17.2742191275182,16.7511204844243,16.8883387044273,16.2906721946144,16.9451311111733,16.5250065241825 +"Q9VY92",21.1788841590637,21.1426441520423,21.3180672573702,21.5736522843272,21.4928264832581,21.4380827605607,21.2069592033332,21.1443074373698,21.2660786665464,21.3398313165052,21.4928091579603,21.5596337468074,21.2959465994316,21.4862245367832,21.1939205721796,21.402942462715,21.2394042579621,21.2224330219116 +"Q9VYF0",15.9542230855919,15.9765263048984,16.0498438681604,16.0421793412642,16.1666606551626,16.2792995602531,16.1824442884407,16.2626975611293,16.1009376165793,16.568268689398,16.1921542279007,16.3010926257106,15.94478874442,16.1578493518946,16.0023103009671,16.3806658459944,16.3166818941234,16.3390860234385 +"Q9VYG8",15.0878864666384,15.0081968757665,15.143706963954,14.8114819489307,14.721626064105,14.9457067552162,15.3089650458087,14.853962803525,14.9979202554569,15.2570464471251,16.8301513436994,15.2810437706878,15.2869421719001,14.5284926449475,15.364225160137,15.136609766741,14.9465021151006,15.1563289416921 +"Q9VYS2",15.4951279476873,14.8865104813905,15.2213959747275,14.9371001845589,14.9559011244041,15.0434029512537,14.8237690673421,14.9344861048417,14.9220019997209,14.9260007512939,15.3237302612275,14.9344613314916,14.8552106804556,14.9426458234022,14.9771219922301,14.8534582761179,14.8473931121898,14.7922826580318 +"Q9VYS5",14.3501808829247,14.3309978144245,14.2803652953155,14.2180740378305,14.3045091101013,14.2956205764344,14.3959767710654,14.6000839722596,14.3919721715917,14.3138015134897,14.0874983905592,14.1988404281004,14.2891272449612,14.6555059287197,14.4955128350211,14.2049339036849,13.7934991378921,14.1097830474933 +"Q9VYT0",18.411404927337,18.3119017645605,18.342598512101,18.0672033172709,18.1053500450629,18.1054935784557,18.3802194234079,18.3460244727666,18.2358875170374,18.0221909908984,18.1443028872213,18.1360089150057,18.5531208184138,18.4821647832256,18.5412875239917,18.1954798327586,18.2398753572498,18.2683432634952 +"Q9VYT1",14.1182159417025,14.3701867935532,14.3785755498142,14.2926447286101,14.1474054236605,14.2925698727442,14.0142960597692,14.5108227955779,14.2680394985432,14.6570879296027,14.0929033648847,14.413913253926,14.2289714012113,14.3038651880685,14.178779833775,14.4303123436294,14.3163448387802,14.2096503957226 +"Q9VYT3",14.4206959877614,14.431321583475,14.5248968729592,14.2943532661941,14.2744006187636,14.5569014233497,14.2443797215838,14.3003344139879,14.0188458986238,14.4477743096884,14.4913401845594,14.5614816300787,14.4497823633961,14.3994532542949,14.337670227401,14.5159392089658,14.4760748025088,14.3731288051772 +"Q9VYT6",16.6362846704356,16.4392763310208,16.431961610193,16.4293136855985,16.2215820347048,16.2624436006364,16.2627249671257,16.2011704522979,16.0468897424507,16.3686692102299,16.247747828412,16.4769125844348,16.4225926527232,16.7341133335558,16.6230894284262,16.3943138472518,16.6700090533733,16.6726020672236 +"Q9VYU9",17.82557027684,17.9926482024922,17.9690021355368,18.1420189924786,17.6904094825586,17.7380162935825,17.9742502923049,18.0288464228457,17.8630324860536,17.5856225503267,17.6938189591741,17.7948385630872,18.0173227004795,17.9814474833031,17.9684136081231,17.5396927803082,17.6973070423642,17.7511745063548 +"Q9VYV3",20.4414165759852,20.2980573329503,20.4353719395073,20.5804862760159,20.4735165549454,20.4751158152895,20.4962671841322,20.4387845749837,20.5131724248638,20.568569475224,20.6825995790631,20.603847249909,20.3870891873309,20.5611452050173,20.4710263890596,20.6055580683002,20.6252835200287,20.5808529483593 +"Q9VYV4",15.4895305169968,15.5156013016195,15.765940199048,15.7617140261705,15.7001780110992,15.6352298071918,15.4792970264619,15.3599076083833,15.5662705834362,15.616404583392,15.4434911159832,15.4049355375827,15.4402923634163,15.6815336287652,15.4377216881787,15.4289602202084,15.5154870707955,15.4061009212085 +"Q9VYY3",17.4053761007372,17.5483435820799,17.5075238308839,17.4102472699904,17.4232152581018,17.3418793887308,17.5672000829621,17.5733947654864,17.6729311894243,17.5328835104524,17.6061858006206,17.4762161649345,17.6855473988403,17.5718630597787,17.6334906506558,17.6652790302058,17.5435309271208,17.6344921685589 +"Q9VZ19",20.4167593007948,20.334843939939,20.4451009978115,20.3280949888385,20.3861140996102,20.5022928429164,20.6563228163112,20.5884226371023,20.4197288711618,20.2426980986797,20.2804080440909,20.2184031388373,20.3846368535576,20.2289380762936,20.298629277562,19.5510729978473,19.7608582589932,19.6954299277403 +"Q9VZ20",18.584163161672,18.6075076167568,18.6885040744013,18.7991583030901,18.7543058732827,18.7930026282886,18.6940223968074,18.6554189499226,18.6853825292721,18.746061296108,18.7332773336099,18.7540335068662,18.6222018935008,18.6943011698358,18.6985634079802,18.8236482419405,18.8244443497109,18.6497691463103 +"Q9VZ24",21.9962043373339,21.7782171414912,21.93251307403,22.2126321924133,21.8807831438854,22.0126358518494,21.7131349953863,21.555765043776,21.7865909726489,21.9596501027527,21.7629211481607,21.7258909941572,21.225454317443,21.8331372360449,21.7531948406122,22.0177765130747,22.3140287450458,21.9140267251064 +"Q9VZ49",18.6417954398574,18.8463863058454,18.9201824602689,18.8912586921298,18.8958939704753,19.0530675529931,18.9038904409501,18.8471152744218,18.8202674932081,18.797762964313,18.8994069760994,18.9581688807926,19.1962427032231,18.741766745871,18.6862818416909,19.0139218258807,19.2143027936412,19.0069038374005 +"Q9VZ58",18.0048816536526,17.892297216152,18.1234139850543,17.8905288521593,18.0802640178652,18.148013434732,18.2011454842053,18.1964200498575,18.0435593820282,18.3659875909088,18.2386957348683,18.2571581715759,18.0626402360817,18.1394475947193,18.0411181548964,18.1929441787632,18.1710033823085,18.1048648674842 +"Q9VZ64",19.6190239717403,19.4367877717251,19.5940421601604,19.5377778340679,19.4423719399343,19.585048402583,19.3715994811413,19.4645972451442,19.2530487065019,19.403229695272,19.4304194958488,19.3575903864424,19.2534751147345,19.3864572717117,19.3798243323249,19.2604834804406,19.2849558530325,19.276035589384 +"Q9VZ66",17.0635445402489,17.0271378028933,17.2501293739771,17.0889893938203,17.0540516332012,17.0245892129163,17.1847044722592,17.0386936176968,17.1321092180126,17.0083215279236,17.1363232518168,17.0817407011377,16.9325072309634,16.9703149978621,16.8582722498714,16.9584814822716,17.0100273440168,16.8897078915718 +"Q9VZ67",15.0370080794406,15.0253062506411,15.0387723281633,15.2082378705943,14.9607890931782,15.0006486425641,14.9628150503515,15.237620444992,15.1789821122218,15.3726678695364,15.1135380115918,15.3216339959687,15.1147454117723,15.3820328357331,15.1834511373065,15.2148160550373,15.1910037005961,15.1868021205079 +"Q9VZD8",13.898583407483,13.9316197615177,13.8708721256335,13.6278132299337,13.6597401862416,13.7730858665951,13.8689385543167,13.7529038977675,13.751532827654,13.4032608175878,13.6627783823124,13.5530337156892,13.9051331002129,13.8101235516383,14.0761448070915,13.401681290817,13.2882446208736,13.0807410576878 +"Q9VZD9",13.9980915902537,14.5038464628651,14.2757841297943,14.2825785593395,13.9837662917121,14.3577349557673,14.6613353078079,14.7098593363814,14.255142997542,14.5569690969962,14.5145521056512,14.7042077934259,14.768275770076,14.4307333914192,14.8397771607378,14.778849389757,14.9033421262013,14.6134526769629 +"Q9VZE4",17.3956982983968,17.5225518969178,17.474983654561,17.7369474415819,17.5032128777705,17.6528183431123,17.5870845112513,17.588377944776,17.4895481747346,17.7190786675138,17.7574724120703,17.9008627094467,17.5651976423896,17.6023982370137,17.6294255256506,18.0307418060546,18.0607349986397,17.8871099596829 +"Q9VZF6",14.7265772700771,14.7692290946778,14.6477623306262,14.6577090217271,14.8218878646035,14.7219677598281,15.485498593998,15.2803546550054,15.5133937146052,15.20858003569,15.2576733957584,15.3660504023465,15.3980113905884,15.3304683736856,15.2322879046776,15.2268625518532,15.2436254802031,15.2217767518503 +"Q9VZF9",19.232186644645,19.2699254651843,19.4529414466555,19.2145996433529,19.1409560337135,19.0744248348695,19.1122908953877,19.0886373670261,19.3167365763548,18.9718505982922,18.9865609675258,18.9888646003011,19.0128314639796,19.2152618819917,18.9768876614124,19.0471389951718,18.8895565253877,18.7810431212359 +"Q9VZG0",21.4096054650581,21.3211843485987,21.4315581554428,21.8145556050373,21.813888532704,21.8182870188747,21.4917916065873,21.4630940218888,21.6171410508204,21.8109844101034,21.8780628683646,21.9196418791694,21.6314742858931,21.6709759875916,21.482228754793,21.9112856933456,21.9224913068773,21.8008402069246 +"Q9VZG1",17.892677013536,18.0227669221579,18.0110484511195,17.9964107277783,17.8271786973992,17.9259791450737,17.6760222804332,17.7099190696011,17.8511152267787,17.521644865723,17.5708285655001,17.5915413698011,17.7494951601462,17.8046257883559,17.6383505078944,17.7009174181515,17.6018484227539,17.5191327651009 +"Q9VZG2",21.5160227001744,21.7202398859383,21.5140539636215,22.3400263956772,22.2484376499818,22.1853838694848,21.6994014500063,21.6590887954262,21.7573643838779,22.0007255062529,22.1644209498654,22.3527204527063,21.8327191554698,21.5932602588106,21.5866582583016,22.026858099659,22.0303057672175,22.0195723792475 +"Q9VZI3",14.3825986277219,14.4396648605957,14.4907005687692,14.210343627962,13.931341756976,14.0267816131404,14.5174474297812,14.4699541844786,14.3697293913529,14.1777364216489,14.3854490086678,14.4904893578223,14.7719282164733,14.6677519413914,14.5980887981168,14.2592724374641,14.4251650089418,14.3435370318497 +"Q9VZI8",15.4409586674366,15.4634260629112,15.4960330953358,15.7510874122097,15.5288322610636,15.5247764779012,15.7832857055766,15.5807058855869,15.5980253433875,15.77882611982,15.789601403245,15.9085757838311,15.7924281417211,16.0858452355491,16.0443493718196,15.9111488351504,16.0093240335587,15.8859748096392 +"Q9VZJ2",17.4847127791658,17.4378994488826,17.5421206246825,17.584821962766,17.4972807566187,17.6122209032653,17.4350349531178,17.3470373838863,17.3866744040444,17.3020349703539,17.3267552940131,17.3284735252884,17.1110495843437,17.2989679954537,17.142175802227,17.1185535913822,17.1282669622752,17.0245425816219 +"Q9VZJ8",14.5394018610753,14.685296715719,14.486383784969,14.3720072350943,14.749031747035,15.0321311614144,15.0442296640592,14.892754175781,14.9955621263221,15.0974774488753,14.8175726118097,14.7163916338172,15.2921910649155,15.1359295145093,15.0354790488186,14.9036964831217,14.9684189922873,14.9830560018 +"Q9VZS1",15.5658511938023,15.1884822798565,15.2078586483218,15.6421015383995,15.5251033383708,15.5110685307002,15.3504160613228,15.2152777125403,15.4360007948252,15.7473663932691,15.5755997241728,15.4251363947389,15.0417602533246,15.4213122847254,15.5249564136148,15.3708418902536,15.7925619907062,15.6133165481711 +"Q9VZS3",18.5358505373601,18.3305834842736,18.3412174975803,18.5073776402606,18.2853382200818,18.5621953860326,18.3807833658277,18.462423192534,18.346720466189,18.4171740881191,18.3074331686467,18.4972394809126,17.9462925106714,18.6005686724699,18.2086231962102,18.5483980060882,18.3495294103211,18.3798801214023 +"Q9VZU4",21.5795768986943,21.4040164211456,21.5313408750902,21.6780827130624,21.5104262930068,21.5460583176908,21.3370561011824,21.3397367350635,21.428944453529,21.4047564077127,21.2759461256556,21.3282581818104,21.2283979836431,21.4889303977355,21.3934252557496,21.1841459031852,21.3929600348733,21.1839889236101 +"Q9VZU7",17.3191118312197,17.322950957418,17.2486137404635,17.1911029241594,17.1259612196443,17.2007065308846,17.715929344144,17.7878891668431,17.7138128045116,17.6197000645708,17.6921799306431,17.7799524008193,17.8380111867381,17.840598948189,17.8672752469215,17.7940131092858,17.7082882373803,17.6675077365174 +"Q9VZV2",14.8126592227834,14.9724039541229,15.2127505846928,15.0453281431404,15.0350214228323,14.7829406928699,14.9610773718165,14.801561148791,15.0615267310667,15.1004261466349,15.1575119869766,14.8906655312336,15.1411588854307,14.8733537561287,15.1961340923135,15.0775237392884,15.2983212402428,14.9941558769179 +"Q9VZW1",14.7100701838969,15.3857106281694,14.9845070006567,14.806181917419,14.7326490321497,14.9794499361472,14.9401628702011,14.677282248213,14.564281843324,15.2151184695983,14.6459927995679,14.6912032555312,14.754385157095,14.8362006936516,14.9474154797435,14.5332293616993,14.681312558158,14.792290444507 +"Q9VZW7",14.3262678146816,13.910978302008,14.4039735042328,13.7055628345093,13.8997081103734,13.7258221692001,14.0835920552626,13.8849129448689,13.9802564899606,13.6867709700531,14.0680176134429,13.6828062691245,14.1749912899002,14.157932760551,14.1758554479451,13.2972307799738,13.3528660131363,13.3057018639175 +"Q9VZX9",18.4781098182177,18.4126012070912,18.5848265939403,18.4578196191231,18.4474755242921,18.3992462713396,18.3791222958127,18.3086808548436,18.2767011876096,18.0840778731088,18.2415946052336,18.1761957510299,18.7049975800055,18.7283071095172,18.7435251975205,18.5789247093302,18.5443925946203,18.5025568941582 +"Q9VZY0",17.1300608415093,17.0694324047184,17.1725019711876,17.3637985509845,17.2701128915608,17.3112991316636,16.9614604854151,16.9636873786319,17.0599789268091,17.4804027346883,17.435912084464,17.478399448067,16.7841059267435,17.2032125762232,16.7958617577782,17.4723003420401,17.2497715457826,17.3740876458754 +"Q9VZZ5",18.6943705910376,18.4800296533508,18.5939919330692,18.3831470345493,18.6203660212011,18.640625280127,18.5094926687887,18.4597422872932,18.3380891754674,18.314860267534,18.3558233028254,18.5282255813298,18.5023120013609,18.4828551829122,18.4604237817074,18.3823780225063,18.3877441381941,18.225204834076 +"Q9VZZ6",18.3935867535959,18.3565329738208,18.5603577330646,18.3101067707067,18.4271301953553,18.2756853926755,18.4010931930667,18.4275176089433,18.4202206643209,18.4887247583308,18.2927923570737,18.2243267175369,18.4296530251635,18.5284697064325,18.4962706395977,18.542721293121,18.5334429523589,18.5890246467889 +"Q9W022",21.3029058883115,21.1885977694151,21.3304191972162,21.3451820265503,21.2710805139126,21.2085890269467,20.995467090153,21.0910289138359,21.2582734031446,21.1248124689347,21.1379968280319,21.0811487334494,21.0977743537444,21.252465181388,21.1911116122075,21.2831774218548,21.2081500429652,21.0797772765843 +"Q9W073",14.5818843179715,14.5336451491746,14.5018055815005,14.6626564204924,14.5145174874829,14.5125483519974,14.5804336759312,14.3686437409629,14.4443642833572,14.4687157348033,14.6549792754889,14.8014774953124,14.6808911109789,14.636635333642,14.3968692105481,14.5339713490409,14.8001316224668,14.8514876865027 +"Q9W074",13.4439069675345,13.8284023591343,13.859902540559,13.5925313418683,13.3723573301619,13.3414238494259,13.6091022172278,13.4661648113845,13.4413592557615,13.3067324517138,13.660366729681,13.46304113577,14.0737994796764,13.6174057278751,13.7726048850639,13.5223918053378,13.6037673051219,13.6701325967783 +"Q9W077",20.8227593702218,20.7582144016964,20.9749238827151,21.0365696310343,20.9625342584223,20.8997242501938,20.8546262070511,20.7494458087952,20.8729780834272,20.5916581318062,20.8190548736455,20.7020357889804,20.796327420063,20.8673586391909,20.7308702887764,20.8475076748138,20.79284045324,20.7689161408974 +"Q9W078",19.4350626044229,19.3315632528711,19.5363762151108,19.3652200973122,19.5843720309906,19.5797756948276,19.4306000629586,19.346039853917,19.4760146674214,19.4916288537796,19.5375121643725,19.3361453063461,19.2908342703031,19.4513361593558,19.2510774271273,19.5837839241471,19.3463063514165,19.4177405020903 +"Q9W086",16.8124963851815,16.5446776041949,16.5769161683159,16.819974469494,16.8002277028772,16.6919302622026,16.9181959709573,16.8210621551755,17.0714459133589,17.0122456216351,17.1513508447788,17.0862653349318,16.7131535291471,16.8739344384523,16.8694484921398,16.9770019299852,17.0618151609215,16.9570617354513 +"Q9W087",16.6460404711555,16.547126846038,17.1331121919105,16.4844177068531,16.6914266252515,16.6810666727675,16.7784248507083,16.6722637807793,16.6823757469383,16.8773220234301,16.8438984151738,16.6583300299231,16.6504868962743,16.7263265192037,16.4286779549976,16.8122263514098,16.7678761133847,16.6653557032941 +"Q9W0A8",18.9551978391205,18.9431682387063,19.0083702527659,18.6616871859385,18.6523816765896,18.770708409141,19.1710812772712,19.299232796265,19.1029594519845,18.7011940612079,18.776539955717,18.9007903605559,19.0912515788686,19.0295892447258,18.9822902289934,18.8430636933718,18.7225637237748,18.6583569323377 +"Q9W0B3",19.233218309928,19.2788637231434,19.3196163272953,19.1582071037586,19.1596357921487,19.2688410292737,19.1586099615661,19.0577533867258,19.1059467457883,19.1963800623953,19.1587843096274,19.1700640045102,19.2473944920826,19.0557625365927,19.0542761764792,18.9337863438933,19.2167965253859,19.0088519902771 +"Q9W0C1",21.2931907296217,21.2435207766225,21.2170186078224,21.280533602486,21.3861829072606,21.3362270434577,21.0654046041176,21.1891817650188,21.0457106789324,21.3983020806372,21.323084805724,21.3532588918523,21.3383738877227,21.1971377643976,21.4324125563972,21.4561502831488,21.4928471687106,21.4473274092722 +"Q9W0C3",18.5721192837776,18.2221777364225,18.2025722953538,18.7153699111121,18.4651972900884,18.566007551079,18.2964150424371,18.1618744109324,18.2979123772986,18.8277514231552,19.0352988388088,19.0667973267108,18.0821177350361,18.1516022668163,18.237906823904,18.5409165093596,18.9985393618093,18.6634935305315 +"Q9W0D3",12.7451623914111,12.6679471884029,12.8401819744269,12.6368841950143,12.4970193280735,12.4331704505262,12.9358969597314,13.0268138623549,12.6108133897048,12.6619682385269,12.8049659473906,13.4789320397894,12.9853592446702,13.012158438429,12.7062266316813,12.8304909850864,12.7868572497894,12.7264375283118 +"Q9W0H3",17.15311058741,16.6159240717174,16.9240509311612,16.4364546501183,16.5591551499508,16.4812398200542,16.7545844185575,16.8068195025589,16.7286716407901,16.3996662846335,16.6625047875145,16.6816663773843,16.8438066193242,16.9365130914303,16.867421658823,16.6316268167776,16.6383327736493,16.5361989486084 +"Q9W0H6",18.0659383297367,18.1513301059049,18.3199016915894,18.3895950534304,18.2072737437778,18.1579137705376,18.0867674447453,18.2180274800607,18.1567945499966,18.3063009627313,18.0704036071553,18.1373120836239,17.9646434145295,18.2193102757153,18.1099336940729,18.2014160164667,18.1483160090258,18.1328054318196 +"Q9W0H8",19.3807133150876,19.4568404440635,19.648527367363,19.3598602729227,19.6102475241352,19.5797619994839,19.4695373511501,19.3433846304962,19.3523862824676,19.443643418226,19.4342861764591,19.3309637712426,19.2188327409922,19.3313893640298,19.2292850153586,19.5699716259004,19.2664105850953,19.3016342883634 +"Q9W0J9",18.612550250991,18.5270973411442,18.634264661026,18.4568770605347,18.4033142842067,18.5573958164203,18.4906150357024,18.4173672735929,18.3080253862535,18.2698883174179,18.2299612911828,18.3311475313259,18.2604559707334,18.3823049451663,18.3449815184575,18.4597308388643,18.5900723389509,18.3743025607606 +"Q9W0K9",14.1797212146704,14.2242902727195,14.288837825306,13.9249463940432,14.5033061175993,14.065806029198,14.4750520408889,14.0209312492722,14.0423259948368,14.2445652879958,14.0502480896253,14.2157916937222,14.199901546672,14.1178677082306,14.3705643293136,14.0754813584154,14.1830244052387,14.1163419703091 +"Q9W0M4",17.8272346829128,17.8287826553074,18.0784884854435,17.6111888905853,17.7159996228919,17.6244710361219,18.105513995241,17.7722269530458,17.8861114953349,17.8807969338876,18.0018763188941,17.8166793576948,17.8875610783282,17.7460638129251,17.765137693377,17.6756789360235,17.9230251539143,17.8170864490063 +"Q9W0M5",13.0407244611711,13.019068862691,13.3057149588885,13.1830123297338,13.5914676077911,13.3252736032384,13.3335837169396,13.0364607459554,13.1869981111556,13.7263318949383,13.4059012164625,13.5241870847295,13.0472632492207,13.1425439352136,12.9744426981021,13.3198246586779,13.4552979425678,13.3341238545673 +"Q9W0N6",14.5314490865191,14.5344437954632,14.3992997391601,14.4728563955015,14.5356990307519,14.3586427412489,14.2530608141275,14.4096088234712,14.6339151573797,14.8008746133601,14.7600048504602,15.093832770414,14.3244044447005,14.0520808272008,14.206790415146,14.7205754214512,14.8113834483125,14.4107399523111 +"Q9W0Q2",15.5860088638846,15.3496889587262,15.5211616232869,15.5998170859597,15.5735093779937,15.6740927911591,15.5075534314006,15.5294083381829,15.4967436901579,15.5025530545544,15.5389964242181,15.4300241119905,15.4425270856777,15.5741959664934,15.4899667603387,15.4573348458261,15.5299953016888,15.4838053903701 +"Q9W0R0",16.7407837461489,16.7494090801125,16.9326862652956,16.9303143816685,16.6900575513164,16.8412888203286,16.7854241512521,16.8168210624901,16.8656237762275,16.7999349389051,16.8435858260518,16.6492817856089,16.6027182107977,16.7228788753468,16.6621098030498,16.5567309923058,16.5931540257605,16.4649159705677 +"Q9W0S7",17.787358958971,17.8733859925017,17.9281509944675,17.4828566179452,17.4521501286966,17.5583388362807,18.1739605536548,18.2108276730079,18.0562588332812,18.0318204334543,17.8870064568389,17.9881986606527,18.0636373241712,18.200409771412,18.1127253588008,17.9443488152799,17.8602026810195,17.8403100199936 +"Q9W0X2",16.2642931974429,16.5914566878319,16.3344479970473,15.8355903336164,15.8683347913544,15.9243017255121,16.1978714916023,16.0022029914137,16.2082173455295,15.7716290170286,15.7526859829552,15.8292927561281,16.0036650396284,16.0825970189023,15.9350010324791,16.0045351859004,15.7803067927616,15.8463234085231 +"Q9W0Y1",17.7670134960855,17.5738025652278,17.6751436051793,17.566338888287,17.759074772404,17.8320690125727,17.7349567123455,17.8744271981699,17.6972244741629,17.6612189557605,17.7707885637886,17.7760018477691,17.754648116456,17.6992578067469,17.6453960098281,17.6116192060671,17.4184444686645,17.4699604254895 +"Q9W0Z5",17.08593807673,16.9706026176623,17.0767242692534,17.2883380659837,17.2719520141245,17.376196466718,16.8073140302222,16.7095712166363,16.6528911405271,17.0300552758576,16.8436390534539,16.9098833092813,16.7616966849315,16.8729803987563,16.5699534009224,16.610010494632,16.9146073277237,16.9977040416548 +"Q9W125",21.343902051993,21.266721596822,21.3087185753964,21.5510906488142,21.2956696646685,21.2911351642769,21.3352085318337,21.2653719131411,21.3924740535817,21.229082299213,21.2751205613253,21.3266608585037,21.43519254894,21.3288824770389,21.4472482402959,21.3011190772678,21.763828945066,21.4293582660071 +"Q9W127",18.785495285602,18.671598315226,18.8193931784314,18.8154882938253,18.6312041426596,18.7248099344871,18.4860373862348,18.5906737030452,18.5762025315053,18.6627560661322,18.6025017528084,18.4157307869054,18.6531117688748,18.6939756521439,18.6781908350786,18.2837595604436,18.4966947952296,18.4723210947049 +"Q9W136",18.155855360548,18.1468446899767,18.1774967721015,18.3324155488196,18.2739835332918,18.3550461438728,18.0226388055549,18.0508122057771,18.1025141664871,18.1642797238089,18.1588911693311,18.2722843289955,17.900942053628,18.2309746803652,17.9485383847485,18.494456672938,18.2090818865556,18.2147083690921 +"Q9W140",14.3671180303836,13.8998055322784,13.913632682672,14.6949233606066,14.014930700349,13.7981660115301,13.8573858037982,13.711304496956,13.5310171580747,13.7722869495828,14.0558259405458,13.8546731482811,13.4811158565569,13.6497353231704,14.0236108881419,12.912036862674,13.7532648703025,13.9637669749022 +"Q9W141",21.9176830761339,21.9238829787076,22.02427730337,21.8674542174393,21.8394120290912,21.919405144543,21.931269434391,21.9024674706622,21.8726827311964,21.7259416246433,21.7234131528654,21.8587147006386,21.9284198131027,22.0210171464343,21.857711617617,21.806965137003,21.7675405249525,21.6449418053483 +"Q9W147",13.8545434417984,13.6959826348766,13.9489749343121,13.7250360376367,13.878047811563,13.7962637447909,13.6689725068808,13.6331977066528,13.6034711735842,13.9735550478314,13.7658297061905,13.7348793079572,13.7599063768161,13.9755204265059,13.7914610997832,13.6106476095684,13.6440827347432,13.7176107601042 +"Q9W158",16.8784238975248,16.7193588256041,16.8901833016863,16.9091038803691,17.098598309571,17.0788722867153,17.0714194380662,16.8911843036594,16.9436385216638,17.1289069638339,17.2373453252253,17.1707793726454,16.7021139849713,17.0188923330275,16.8774651991702,17.229521630026,16.954110697704,16.9585511129102 +"Q9W197",17.4614060142817,17.3896807641759,17.401103210339,17.2189711667994,17.2789848393797,17.2804383454295,17.4941930827943,17.3242066883572,17.3793162533529,17.3602886345956,17.3797255644332,17.2592687735593,17.36261837997,17.2569518679969,17.444124164527,17.2225683659739,17.4904959200722,17.3557948972072 +"Q9W199",15.6436888338111,15.4692111514686,15.4989389545673,15.1188647164483,15.6840120678403,15.5519593980419,15.9425312756477,15.8558230062168,15.9462984525194,16.2348948380996,15.8835526158506,16.0788795177269,16.0869792947484,16.0183992580726,15.9207133319248,16.0273875079768,16.1433483672829,16.0575568119516 +"Q9W1B9",20.5490464524813,20.1173128396804,20.5259820310627,20.4430093760431,20.245667286025,20.3809792703327,20.793352821387,20.7204964929585,20.6126911488722,20.4954888303408,20.4097974931927,20.5924212740902,20.7638541283397,20.8972793954179,20.7095160650805,20.5018702751492,21.1560683764667,20.725032094303 +"Q9W1C8",15.9353600041662,16.0023354805051,15.6926749988401,16.1630095932205,16.0065733757928,15.8498997543062,16.1463818708908,15.9638999467982,15.4265932722123,15.7477773266743,15.8563036778301,15.9998030637731,15.8509001229363,16.016105471009,15.4279166263189,15.957584717318,15.955795683271,17.4041259197554 +"Q9W1E8",15.497545536325,15.5090962943645,15.6020224558823,15.4509974824249,15.3966212039628,15.5788905430748,15.5393276973608,15.3538767735233,15.5351489106212,15.4244962783709,15.2878664464006,15.4758933323355,15.2955140605188,15.5925251706741,15.2120950544656,15.2630954767999,15.330990642875,15.0669262354208 +"Q9W1F2",13.0783707906421,13.5937008474887,13.4795579082552,13.8683250495311,13.3896353536986,13.4671676305115,13.5860296303681,13.5729391312991,13.4797009827668,13.5546295573157,13.8543852569247,13.7164589824895,13.9980521391388,13.2513067183653,13.985090923316,13.8341347287026,14.2575745879221,13.7915654683595 +"Q9W1F7",20.377843805464,20.2458008688185,20.2660780545153,20.2051083657015,20.3110974702301,20.3596623946964,20.3396236879659,20.3748771156213,20.1769686194262,20.2745439212575,20.3271811433557,20.3827108110485,20.4034087489709,20.3856004219286,20.3184829717302,20.3753824258215,20.3313539352271,20.4720081037647 +"Q9W1F8",17.8048081205358,17.7174515493617,17.6829424998648,17.9607524370178,17.8739416727856,17.8432495997345,17.5600015474145,17.4105910350635,17.5603544294414,17.3925702076663,17.5865162069283,17.5539436091056,17.4688576503632,17.6033255599822,17.5749614028161,17.6440654412998,17.6392293801763,17.6156038633351 +"Q9W1G0",22.0095002418507,21.8898175913182,21.9293135799674,21.7451686571181,21.7132909940165,21.8014330175731,21.803540520355,21.7968617551282,21.7593960390295,21.6878983131673,21.6559714138227,21.7500478213381,21.7552920279007,21.7948707138545,21.7172458520368,21.4328318310376,21.5834191232892,21.4767952814845 +"Q9W1G7",18.9175009417506,19.0014411021537,19.0327379307109,18.8299639609098,18.8111538901569,18.73203937644,19.0023461897296,18.9893297875701,18.9102279201261,18.6960780106766,18.6915885278297,18.864814447409,19.049456452818,19.0296015070059,19.0797323405188,18.9600508799934,18.9322816211617,18.8358444206733 +"Q9W1H5",17.1012231520534,17.3008497980984,17.1178846531114,17.309323175375,17.335168787227,17.2528982751706,17.2630389686018,17.3522400396332,17.2941207971446,17.2795822669932,17.2694180627348,17.4684516570757,17.2945589447372,17.0757481180791,17.0856291852969,17.3611817911611,17.275483493149,17.3899237311222 +"Q9W1H6",17.2591427483431,17.1495195694001,17.2745284144886,17.0832344363254,17.2022787518735,17.2005887077178,17.1403779104613,17.2455066210755,17.1681029748214,17.2030758016581,17.146987497654,17.1487568239522,17.0878711807967,17.3185416846149,17.2291945145079,17.1676465624782,16.8785145154447,16.9201772045747 +"Q9W1H8",20.4027177807896,20.2828840091109,20.2313086080107,20.1354529177469,20.3110898367648,20.2260191090383,20.7732043190598,20.7382171209028,20.7554399464694,20.5399066944422,20.5559409604341,20.5375025817637,20.9925002045538,20.9464793137969,21.0573745380715,20.6872658016625,20.6964364772453,20.7234029349011 +"Q9W1I8",17.9646665465279,17.9932877436214,18.0290437987685,18.0957188810696,18.1267691974591,18.1279771673995,17.878726434994,17.8110452786398,17.9016713997049,17.8676600247053,18.0793225063258,18.0255924563374,17.6763815910323,17.6779578028969,17.6444618575051,18.0761544745936,17.8709254239797,17.8305612732073 +"Q9W1L1",14.5417759380183,14.5844662297774,14.5369952361725,14.5383843366079,14.7219406553329,14.7502161739927,14.6619350952917,14.8907580179551,15.0261562900789,15.1054235432006,15.2151289694702,15.4076911677958,15.3462505197315,14.7952821933501,14.5586985141408,15.1085316102437,15.094724977208,15.0225436609131 +"Q9W1M9",14.4499631600737,14.5334792081251,14.4306112988922,14.2761218785809,14.1286717160554,14.1982365701592,14.8366662299797,14.5479605499444,14.4898039386694,14.0925648836454,14.3542037747716,14.2541676061594,14.7762893169893,14.2867321588866,14.2456301802114,13.329921557364,13.9104796188499,14.1430774325413 +"Q9W1N3",20.6430551624677,20.6583748948053,20.7521759753676,20.691212201447,20.6979121709978,20.6030328212422,20.4228788210433,20.4815624653415,20.4200356117687,20.400356353423,20.4282660441499,20.4760891604934,20.4931811675905,20.6279390285517,20.4113210262386,20.4261944601461,20.1828235622713,20.414223571007 +"Q9W1R0",13.5381647454534,13.8954338702141,13.7959808948596,13.9470149034852,13.5595017011252,13.3847769097493,13.8698850639864,14.2241759144322,14.1096563285038,14.1675229473177,14.1434516896504,14.6650973802416,13.7589646459903,14.446141454992,14.3107645631298,15.405334556026,14.4181822318451,14.420610785775 +"Q9W1R3",17.195706425159,17.2334376048694,17.3320772845586,17.1452222092829,17.1832789722636,17.1031607774936,16.9279695520908,16.9604879610351,16.8924329475656,16.8636841205671,16.7132138722585,16.8124071203463,16.8483806220491,17.0187408060257,16.8877613396291,16.8270069477488,16.6988106604457,16.7801304073046 +"Q9W1V3",16.2208457478121,16.2652287266589,16.486866542676,16.32020623803,16.1491664658817,16.2037170528391,16.5209205305877,16.5722341214012,16.5304281257523,16.2664920948918,16.2910389235394,16.3262510875328,16.4610838854254,16.5517803602787,16.175370651924,16.5051419669881,16.4652418659753,16.5720570030108 +"Q9W1W4",17.2199504864396,17.3419674622699,17.2977888820322,17.3715541862599,17.3202146102254,17.2279735924364,17.1956522295218,17.0791880786134,17.0848452541845,17.4431279444544,17.4712989857157,17.5012385701301,16.9752895751219,17.0214390193747,17.2135551454936,17.5390350440724,17.5105013096709,17.4192080215933 +"Q9W1X4",15.137663648986,14.7858636656803,14.9014714401251,15.0480830096671,14.9188348166068,14.9740396550482,14.9994926908139,15.2706165876704,15.1930003002976,15.3895202592476,15.0645671006921,15.2287839133306,14.7603896028848,15.3308874918867,15.0878510954445,15.4163696592763,15.3807492083395,15.3663724666298 +"Q9W1X5",19.2599759477973,19.368168697502,19.2524589173044,19.4087931914581,19.4010966434025,19.3480645677668,19.4163589969368,19.3625394258055,19.4265661116353,19.5202634595424,19.5468531033253,19.5701424663827,19.3302005579011,19.3734696199934,19.4249324250685,19.609340626522,19.492805290129,19.5227682920001 +"Q9W1X8",16.0924245379248,16.075058097836,16.0575439713236,15.9259684347196,16.0615387794773,16.0982318841422,16.2914747328165,16.214995383017,16.0935138446136,16.141750003222,16.0662667159437,16.1836938867001,16.2228326717721,16.1986707424901,16.1163950081194,16.0188421993765,16.0767628610675,16.1439139849326 +"Q9W1Y1",17.8845893068824,17.5759861081592,17.7735673940596,17.9365308572821,17.7850881223738,17.8543344586295,17.7273207472624,17.7626897089401,17.7768234656526,18.0378767670339,17.9378650337794,17.7995362402416,17.5449960621663,17.7936460868328,17.7885512716535,17.8518727705206,18.1279114510625,17.9903736809109 +"Q9W227",22.1012286514838,22.0751713151217,22.1369825157056,21.9488209972919,22.0150056261943,21.9891630353329,21.9967740054177,22.0137340956203,22.0037637510585,21.9165355210533,21.9329896650498,21.9303602347708,21.9253596326545,21.950638133811,21.8774959176473,21.8614180744395,21.7625980465436,21.8123714278255 +"Q9W229",19.3033830886333,19.1580393305461,19.1566540832367,18.9329992216995,18.7998865510159,18.9467272752308,19.3247246532079,19.3746184359928,19.176437069757,19.0629362630467,19.1902999060692,19.1936532643329,19.3613061841038,19.1682527320795,19.3785012700999,18.9591248241198,19.2533772791075,19.0925012721538 +"Q9W236",16.5629262267323,16.5795202883449,16.6326441581336,16.6156787013792,16.7194276533314,16.609973799449,16.4218196543201,16.5336926058777,16.3168403523193,16.6166532987545,16.4697549534356,16.5713953825705,16.4122471795186,16.5329832514886,16.6901657402841,16.5134745777907,16.3074208860171,16.321780205739 +"Q9W253",14.955334088043,14.6810230218559,14.9481040583993,14.8383952962323,14.8561580901986,14.8551547937772,15.3266052836965,15.3080824866106,15.2632665310542,15.5645390171298,15.3814788360402,15.3041084920418,15.2229904130301,15.4535923559678,15.4108217983372,15.260320851918,15.4878501593766,15.38672927644 +"Q9W254",18.0650641764526,18.1883712490181,18.1014133068012,18.2378765503629,18.2581050870222,18.1989845775831,18.1144063608542,18.0707429439265,18.174067611207,18.1212378375699,18.2372292985976,18.2686230206318,18.1216724366121,17.9888355249879,18.0730714941053,18.2349295173187,18.151902775618,18.0790268688419 +"Q9W257",17.037518284965,16.877330541137,16.7188563042425,17.3536275909366,16.9830882165741,17.3211944786195,16.7063128096858,16.8729664757172,16.6752079876217,17.4624449390168,17.2175730267995,17.3614088583267,16.336673196485,17.0092976312752,17.0874212649085,17.4985594230808,17.434880352667,17.231047350451 +"Q9W258",19.2633843888436,19.1401451071801,19.2439811893594,19.2734685031959,19.4610542641864,19.4050390384068,19.384262938664,19.211703502445,19.2880837887597,19.2439700317559,19.3896877013916,19.565146228672,19.356417278485,19.2673870053726,19.1784232407839,19.3829687600536,19.4344943204222,19.2237984150161 +"Q9W259",17.020323064831,16.8180205935011,16.8680490004004,17.0184317275268,16.8607408038683,16.7193316797983,17.0714884378621,16.7661700265925,16.8466391344522,16.9748192269232,16.9544159797366,17.2304352129977,16.6140653636794,16.8982182341082,16.9979811656118,16.7519157475337,17.1534779305495,16.7886073750957 +"Q9W260",17.2134733308405,17.3295718023456,17.0143679058134,17.3439700108793,17.3402746551826,17.3312728543296,17.2927800820647,17.1968151168418,17.3242371779412,17.4926771050111,17.5025319712991,17.7571659907624,17.4361578426466,17.3327648212514,17.3492665365941,17.6508118993369,17.7279119038586,17.6535598053385 +"Q9W265",16.8261222847977,16.7801997755828,16.9804452217953,17.0313583701618,17.0387383914649,17.0602751562886,17.1797436337294,17.1532533937231,16.9710844887412,17.1141731440174,17.2243568025647,17.1364374167104,17.0999997542762,17.0707878603857,17.0435775650505,16.8732102721799,16.8572712354413,16.9327876105763 +"Q9W266",18.5737205057818,18.4376428466591,18.6401342694958,18.6761509633449,18.6701918765349,18.5505643531251,18.2525504510777,18.2071782578528,18.2834765075468,18.3527217246557,18.3328981603677,18.3815370185558,18.3070148758696,18.3800487581047,18.3692836011342,18.3057677106909,18.4399663319014,18.242930481563 +"Q9W289",17.5028073022076,17.4987712171506,17.7114590323315,17.6734050758291,17.4356517877486,17.5495313694385,17.4906079863027,17.3274700659545,17.5775626207983,17.2713579728266,17.4321623842691,17.4028567801039,17.4930119271736,17.4115501165797,17.4061331728209,17.371770717167,17.6973554098041,17.1554180060135 +"Q9W299",14.2751578186553,14.4779850092493,14.4920289268972,14.3911146686697,14.2943668472905,14.2702505894987,14.6634261681682,14.9609546439301,14.9237393557483,14.8490417304627,14.3893731772809,14.4379287620634,15.0877695465499,15.411330608627,15.2952839401987,15.1684827720992,14.9009824182271,15.0157611301985 +"Q9W2D6",19.6390231771274,19.6738178757224,19.6852753631299,19.7630712725399,19.6845872655574,19.6450396136751,19.6425163803481,19.5251413634504,19.63706340898,19.4726083778891,19.619885105049,19.6527746727404,19.3558267328852,19.5362210076152,19.4470029006787,19.7787699476185,19.6121632710137,19.5846599292041 +"Q9W2D9",17.6829566193018,17.6955950730673,17.6282466739201,17.3187072762584,17.4773739787173,17.5986684736328,17.8069473893036,17.6344343335714,17.5072147716947,17.8952497108373,17.8460147434622,17.7385350213825,17.7870859825009,17.3614191633875,17.7800510342028,17.513305067896,17.9894147538923,17.751536071265 +"Q9W2E7",18.188158054678,18.1178882310571,18.1039974910602,18.3839729648487,18.477856653623,18.4265201006143,18.6756518348224,18.5727698858814,18.6346356603546,18.5933372890559,18.6551366983303,18.7646146118768,18.5475062146396,18.5731610240969,18.5562436082766,18.7908600443568,18.7826739094127,18.6934749302187 +"Q9W2E8",19.6091059521677,19.324482279783,19.559616999793,19.3551635374287,19.4168478148815,19.3714041952556,19.1692325694632,19.3077378795312,19.3203956238412,19.4340595971423,19.3082735880324,19.2131805836927,19.3525423948208,19.5126136265389,19.3772523845483,19.1036590556061,19.1538079178618,19.1819133194979 +"Q9W2J4",15.4295729489601,15.6130949681608,15.4546735454911,15.0498884805177,15.0225586597468,15.1210729197542,15.356942981269,15.4223023910111,15.3152177557421,14.9996221489428,15.1063101391756,15.130953691616,15.6408695700218,15.2858592793715,15.5484691718147,14.9626487534703,14.9894194457158,14.8691577987635 +"Q9W2K2",15.714915517403,15.5943748306812,15.4961857745043,15.4728462578315,15.6949037581409,16.2155485272473,15.40313048331,15.611022069717,15.294117222867,15.7334838184381,15.7410311435362,15.9889740832062,15.4871449850856,15.6468084424068,15.3344689188593,16.0406033778589,15.563984195445,15.522829913243 +"Q9W2L6",20.8312493439941,20.6053088942766,20.6658832142156,20.7465784961513,20.7453164893718,20.8055713408082,20.6522306001474,20.7321412552897,20.696391146241,20.8442356902159,21.0980684059788,20.8782760670463,21.1022575812324,21.1427782747003,21.2257309401006,21.2577514660166,21.1106898581405,21.1624504693459 +"Q9W2M0",17.8917266606868,17.8155238245942,18.0492444626698,17.8024517739906,17.8645568478452,17.8350033179,17.7817162799657,17.6802165750218,17.7539774472007,17.7366127099078,17.7769438709283,17.7361983884622,17.7444682673587,17.8002496591157,17.6931443700412,17.6123944848534,17.6318793992577,17.5018021904889 +"Q9W2M4",22.758642955055,22.7181981571425,22.7632301582202,22.7732095164215,22.7271534859399,22.6590207620044,22.5972772367569,22.645360566466,22.7554302182197,22.5899619409949,22.6391491471706,22.64383105963,22.5800094078693,22.6837986857201,22.6848205867614,22.6631065409759,22.5485475556343,22.4558748132377 +"Q9W2N0",16.092691283972,15.9821248325428,16.0705028770207,15.9550154950765,15.9925872086084,15.9554791871174,15.957863081985,16.0791347637578,16.1521339348214,15.970505976155,15.9967733427626,15.9495038256409,16.563576392882,16.4973582633544,16.5002904781135,16.6128614254193,16.6045352444638,16.5246033527759 +"Q9W2N5",12.9413728454088,11.714249485188,12.8317273078851,12.6503332800779,13.0561894918503,13.1000180456964,13.2165800662256,13.6464372785618,12.883600567531,13.1709261241188,12.8845897362471,12.9549933357686,12.9708830105225,13.3141568397159,12.944721812139,12.6965487110866,13.0310212058771,12.9315829684201 +"Q9W2V2",14.3866139537822,14.1442416940049,14.5333030970027,14.1937695580204,14.2146127730918,14.3418350485508,14.3548438550781,14.1036030136227,13.988776130392,14.0692774341297,14.60205276919,13.9339092782569,14.5256602069284,14.3619674493771,14.6022761521265,14.2419412878798,14.3456285965322,14.3720065894896 +"Q9W2X6",24.2076843220386,24.1234598228067,24.2250751503305,24.2100206770432,24.2643164852736,24.2016051304409,24.1487045666017,24.0114408025444,24.1564883521829,23.9205080537539,23.9980149881391,24.0353960915079,24.1125689085779,24.2172401330481,24.0595153493777,24.0462161205173,24.0312304167205,23.9676225746926 +"Q9W2Y3",16.8051725547498,16.6733097869035,16.6562231951718,16.1019909607035,16.3091912259852,16.4999700224037,16.2947569569024,16.4629704829288,16.2836164950629,16.650136123614,16.4052764161305,16.4204878557131,16.2955971643989,16.3513797446622,16.33040777584,16.3562436612277,16.3017697649859,16.3131920774048 +"Q9W306",14.5431357899448,14.7875279058593,14.4697221249253,15.1309979931567,14.8977256263153,14.7255216195483,14.5816130496589,14.6116067106851,14.5554168630893,14.7302929337014,14.9311502988233,14.7731174643683,14.3972082026978,14.2747826793797,14.9434026045425,14.9041188569865,14.7845736050834,14.8201861496724 +"Q9W308",17.3342835257433,17.2551569378914,17.4671298876495,17.2814121734452,17.6591758641157,17.6854936027499,17.1471104622886,17.0449527819942,17.0922783521457,17.1356299006982,17.1642261966403,17.189713173645,16.8183721568975,16.8543763666027,16.8018576095834,17.1340724099853,16.8729924818137,16.6144080032847 +"Q9W309",18.6165132334709,18.680837720621,18.6698073068925,18.6581296781684,18.610542410487,18.815156360593,18.2828079656601,18.315020955277,18.3378505161888,18.4968412970106,18.4640152141123,18.7216325005013,18.1330779089004,18.0967427116541,17.9654340793561,18.2650159473701,18.2852270184291,17.9425052670489 +"Q9W314",16.4473295614837,16.2072964766907,16.4437379750528,16.4080655104525,16.4553773586323,16.3793480579045,16.2577889882053,16.2001046712245,16.2114855955238,16.1375284109801,16.1237568395428,16.193566106939,15.5466509566385,16.0917548613631,15.9050210140879,16.42720005452,16.1462732748267,16.0914047327721 +"Q9W329",16.6667811074041,16.436086772161,16.4592476954225,16.50481684018,16.5492841655499,16.5090586741383,16.3632232023078,16.343555512787,16.4181709052387,16.4516491734469,16.5466073947305,16.5913125439242,16.4481086901047,16.2979871950204,16.3722180141412,16.2960571739683,16.5571151471632,16.3806283545469 +"Q9W330",20.7283626500559,20.5677485276502,20.6876893790206,20.7333184849447,20.6569854969119,20.7080810901622,20.5879985459533,20.6883896884717,20.5700080909928,20.6790608780465,20.6171153659772,20.6056052116277,20.5132011175916,20.7869281376205,20.8008264437571,20.7816066113463,20.7063810713066,20.6513380723779 +"Q9W337",17.8371654828234,17.8495482019084,17.9714049041818,17.7759037324994,18.12817209484,18.0946005696878,17.5700264874458,17.4548567282135,17.5853275122522,17.6860398888527,17.8117730320094,17.6893390795017,17.9470247537398,17.7278844267329,17.6329274163916,17.8086841702941,17.6526100319511,17.6512450336403 +"Q9W369",22.5803452326561,22.6549037977402,22.7301192634308,22.3315125647344,22.3068584222397,22.303887014996,22.1539388838414,22.1850608793925,22.1777723304166,21.9554135384432,22.0335649741206,22.0792864222064,22.3281824123822,22.2650267337879,22.2209434797198,22.1255484034353,22.0295262282117,21.9629325247231 +"Q9W370",17.9911959941311,17.9591992629335,18.1962080171975,17.9717843948359,17.9268455391533,18.1270118758257,18.5571299875384,18.6229374686873,18.6800842385719,18.6383906918678,18.6408506824763,18.534136685052,18.2649626250663,18.1411118086531,18.0767813881402,18.7694592094,18.901978140936,18.5787006980522 +"Q9W379",16.3495470287628,16.4813583867727,16.5866647480914,16.174250434714,16.2806646979099,16.2285961167501,16.3704695354402,16.4314933737519,16.4086498832516,16.3092621071039,16.2201961793614,16.0119348575392,16.2520969908115,16.3778059607191,16.3748507513474,16.4729938646457,16.1371013629631,16.3179236044985 +"Q9W380",18.3420549572957,18.4895070869939,18.3182322916402,18.3682757854982,18.189777388748,18.2697208998813,18.4349868150293,18.3219499754844,18.2726903964431,18.5149162261751,18.5672436006135,18.4688976054896,18.4462959952182,18.1143872751873,18.6337178221501,18.3056670643555,18.729331516545,18.4489378279678 +"Q9W385",16.7680914806111,16.9234019482143,16.9373648868054,16.9961164879757,17.086583794156,17.1057148916108,16.5188454669994,16.6519477266132,16.8132944628636,17.1928469314045,16.9135862881935,16.9406918169355,16.6193533182613,16.8421686087337,16.5474518779457,16.9817695250681,16.6593348444093,16.7325052741591 +"Q9W392",19.9211607361276,19.808786693113,19.8576260276065,19.9288328611684,19.9318809489811,19.8548173903984,20.0749169455468,20.0520753771235,20.1123816959577,20.074476052848,20.0275833902688,20.040238725916,19.936110760652,20.1231785740743,20.0596465094113,20.1120013668092,20.1039937395914,20.1227883738623 +"Q9W396",16.5860172569405,16.5963291404668,16.6286300795108,16.7888841130585,16.8108862933663,16.8139970255242,16.7210550293164,16.4521262064495,16.5454167070741,16.5863293331895,16.7033181748758,16.6798649099867,16.4092637513722,16.5472282315451,16.5409008650911,16.7785418241956,16.7602032613692,16.6612817208858 +"Q9W3B3",15.8070509696306,15.6408615858184,16.0399662226232,15.7467819408253,15.6668649180711,15.8541487026718,15.7408663749244,15.6280676955142,15.5039423001431,15.6839920704927,15.8059139685564,15.6141228190516,15.5189870411037,15.6735347250796,15.5237892206973,15.5133161465906,15.5957516505276,15.4750252783804 +"Q9W3C3",16.6330335360263,16.4783795727639,16.5167622547806,16.3509191780647,16.3989380913948,16.1110961732116,16.39425363047,16.3828010631817,16.5002619317681,16.2471463133195,16.2636698220978,16.4454550799475,16.5267864518089,16.7720268452635,16.756542338369,16.4218210564273,16.2781447714151,16.24384238804 +"Q9W3C4",15.2376882488031,14.7553649013642,15.3509471960052,14.5594966081885,14.2628633632283,14.688744254223,14.855855662032,14.6910522012768,14.8454483749385,14.8983310675993,14.8576290992787,14.7541016610305,14.8569587047438,14.4671365628327,14.7587728006904,14.3968147989992,15.7710989623853,14.4071308034783 +"Q9W3E2",18.1358672340995,17.9863902164204,18.2548851379694,18.0590468317374,17.8456679196075,17.8883263521902,17.5869416836589,17.5247902197498,17.6472380203046,17.1130015168073,17.352031956843,17.1403378024676,17.8276469797937,17.6803287510526,17.9131716938764,17.0907808557464,17.42407603817,16.9693260950351 +"Q9W3G8",16.1508065942665,16.1633584624883,15.703872896491,15.5947829165009,15.6561373629102,15.2452761566516,16.1074477533992,15.8948652974777,16.04951234949,15.5970742489262,15.5391873085563,15.5159693487251,15.6614950620142,15.8685579549679,16.2135937963776,15.4636979190783,15.4531981077849,15.84707994645 +"Q9W3H4",19.8461925285542,19.7090807000239,19.8913870043255,19.5640926119117,19.5109718577386,19.5137881462147,19.6223229620183,19.5733528389523,19.5631376162127,19.2428998550912,19.2763711770399,19.3588107786282,19.5414210641013,19.525700860762,19.5510392177039,19.2407880236399,19.4622396107998,19.1795542822315 +"Q9W3J1",16.8796665519202,15.6441580582892,15.6176758718245,15.3804130877368,15.6531426009406,15.6552324723079,15.3559767599246,15.5067910473497,15.6719596616023,15.4978680887911,15.8046582476368,15.5719543684514,15.5526080780823,15.8276956052635,15.9269798011386,15.6092744483786,15.8393614553538,15.8320048395089 +"Q9W3J5",15.8005900798538,15.958967517925,15.8870606721562,15.6157992629703,15.5998976143809,15.5475174288389,16.3762197434708,16.3769349067145,16.3329906504619,16.3042186943594,16.0540185701091,16.3133978923628,16.4655029662102,16.5829117603637,16.5236413909921,16.2417596905903,16.2313600679617,16.1994824026431 +"Q9W3K6",16.2952177496451,16.2391225804649,16.5452058630084,16.1652704700054,16.2380895850758,16.1267194694194,16.2961927383047,16.1431558586807,16.1705014914452,16.0913035085788,16.2007056118597,16.0496562459762,16.4604388806898,16.3676078872303,16.5056921622362,16.3122882674359,16.4320300913482,16.2229363825743 +"Q9W3K9",19.0542126182396,18.9441525214734,18.919592211341,19.291725670973,19.4669743880395,19.4426687614701,19.2480326383436,19.1846120099019,19.0618554179526,19.4353379536485,19.4552755086128,19.5003233201672,19.5414491568706,19.5668496212282,19.6195395016098,19.4975692425178,19.4504632313374,19.5243480680523 +"Q9W3L4",17.7098482129347,17.5305959088952,17.5638747623293,17.833190375361,17.7049897839649,17.8045904308748,17.4548238078616,17.6450068186777,17.5096288776498,17.4203296147761,17.4105627224544,17.4143168615632,17.783225867658,18.043991733061,17.9862720917412,17.7371004614668,17.6033713730049,17.6598353158998 +"Q9W3M7",15.9840241794987,15.7693618492864,15.7850444764407,15.9088490070599,15.9964040510723,15.857236690245,16.0281522438425,16.0343706360959,16.0871242468112,16.1777591341304,16.248995155519,16.3771957841139,16.1571292846962,16.1771260750996,16.1542082525537,16.1283903682144,16.1580464503689,16.1234947672775 +"Q9W3M8",18.3127278288708,18.4297639368076,18.5425645623866,18.4595366936377,18.5258440716599,18.518592198472,18.5160945151906,18.5578414931379,18.5722608848121,18.7145823775539,18.6957644509586,18.6666181909726,18.7155639300825,18.6000720640971,18.620974277466,18.895967123635,18.8051864523094,18.693462354861 +"Q9W3N6",16.1187400592359,15.9861845990582,16.0104385210452,16.0130917238693,16.1375491251517,16.1579886586472,16.1307262115319,16.1963508471986,16.0876054232212,16.1552269461832,16.2034237988436,16.1303597190572,16.0606179377975,16.17945096656,16.1953717335454,16.3419088960876,16.1173524378933,16.2385477191891 +"Q9W3N7",17.1339222439566,17.8102694040207,17.3322150866081,17.9327137888276,17.4906214988654,17.2227014886781,17.2197178794905,16.9868921400049,17.1130861270602,17.1780961477128,17.4239721564148,17.5807877293468,17.10093033724,16.8928942663923,17.1154766594337,16.9420621879269,16.9027931194564,17.1431754940276 +"Q9W3N9",20.1921032866194,20.0691219256656,20.17534226197,20.3911497809015,20.3080677375567,20.2494747304225,20.3271701835866,20.0884945336416,20.1084298346625,20.2799042336485,20.2505656999643,20.2340778796519,20.165970804813,20.2262500892139,20.2267004934172,19.8039309236568,20.2177292271837,20.1662040131016 +"Q9W3R8",17.5773621156021,17.6250970222681,17.7552706890137,17.4143254659115,17.4006177248532,17.4969032873305,17.3857920120104,17.5157538616042,17.402386708156,17.2011920099497,17.0411000966106,17.0774678453489,17.3128143946486,17.4516533894798,17.2525277134017,17.0677082064922,16.9249721097987,16.9746379613638 +"Q9W3T2",16.5810461813659,16.5810695690762,16.560297505086,16.1260513552725,16.1644397072618,16.1987056528481,16.4213616237952,16.3885607736017,16.3130080827577,16.0912315684226,16.1017291951056,16.056035630935,16.325747506215,16.2943799755832,16.5049474731247,16.0424387601011,16.0576977745437,15.9548826504208 +"Q9W3T7",17.4026085517001,17.4914686864957,17.4436826239372,17.4982087212525,17.4202897832562,17.3189467960357,17.3949022929862,17.3448519597104,17.4172887373439,17.4151307726598,17.4302316280683,17.5161342865376,17.3716538959959,17.343955564027,17.4399968151794,17.450627758086,17.5023343711229,17.3970827336466 +"Q9W3T9",18.6504707725279,18.585871385101,18.5614770035289,18.6797406817861,18.8158285950475,18.8199628049416,18.5348969803349,18.5152464893918,18.4171971841352,18.7042497030512,18.7428753063393,18.8077864137903,18.4933298979296,18.4782321915785,18.5939280600976,18.7304697451237,18.6551038132952,18.5928063142597 +"Q9W3V3",12.4497428974612,12.9391674646867,13.0721107041639,13.6067899628537,12.8782287230616,12.8992927768785,12.7321741777967,13.0844139547173,12.949419810142,13.4868148942201,12.963663741291,14.4002173916289,13.1516293396814,13.2398413598891,12.6633812125692,13.3531313348862,13.6749673632537,12.7958607115168 +"Q9W3W4",15.7719031866298,15.8843332871384,15.8737212257753,15.6798524878657,15.6793051989442,15.842214093796,16.0157871389308,16.0080057961608,15.8521769563624,16.0208452536412,15.8607475177162,15.7525484248289,15.9453107231295,16.0826959731271,16.1306577243387,16.2031683662418,16.1217793833521,16.1855487313375 +"Q9W3X7",21.7572567831218,21.7466879792182,21.7420360340688,21.7981275607051,21.7391962569589,21.6809567122383,21.5821153984971,21.4934049484823,21.5611326625328,21.3225123582507,21.496882314847,21.5832207996491,21.6689408481838,21.5848450833969,21.5632751613687,21.5868886909122,21.6548250567673,21.585220269813 +"Q9W3X8",13.8358091608361,13.8224303887923,13.8271775977564,13.6763549204322,13.8480529734793,13.9960759615337,13.9373752828507,13.8711298116097,13.6118716778667,13.9825689324402,13.8614460443714,14.3699290083782,14.4191106736709,13.872232140631,13.9160852232794,13.4967294541812,14.0726570655275,13.6268089555969 +"Q9W3Y3",18.4637137635743,18.3520241253293,18.4647671315722,18.2977591401658,18.3284197980652,18.3349430492251,18.0936257989503,18.1549966880773,17.9855278845058,17.8854539034896,17.9373562565008,17.9269893262456,17.8437704159997,17.9452865010828,17.9165926714395,17.9395908466507,17.8058304997751,17.8950938058423 +"Q9W401",24.7244000276828,24.6449694401799,24.7033153850367,24.4849592106021,24.4324235311081,24.4285840259568,24.584888850608,24.5354197529928,24.5587951596418,24.2670488918585,24.3256018022013,24.2826613055421,24.3595066283253,24.5119496282646,24.5507695719203,24.3452537695391,24.3156932238689,24.2419319305181 +"Q9W402",21.3815760341288,21.2593999119292,21.3725877534556,21.3588334711054,21.3436196584559,21.3242172740093,21.1239359735904,21.1651579720763,21.1686167912357,21.1128783393395,21.1674767478308,21.1577530188469,21.1763641327198,21.2816291198988,21.2880608371262,21.2245595595765,21.1608641002696,21.0669118357869 +"Q9W403",15.2544443945789,15.2753658030611,15.3201613627381,15.3904324763257,15.3929524461574,15.3354549890291,14.8121464479058,15.1168718521719,15.1521179651485,15.2683183932696,15.141482945266,15.2234938444149,15.4254462088458,15.1116156307935,15.2172575901693,15.5245669304745,15.6370661739503,15.4268690999005 +"Q9W404",16.0887113924812,15.91967718352,16.1767880952515,15.7507239994748,15.8469206559346,16.0830000832077,16.0954422217611,15.9085877362731,16.0438400598225,15.98969022889,15.91396202383,15.9097785801678,15.6545274088689,15.8409241354308,15.8854677755173,16.1347829298779,16.2838064463656,15.6150035873871 +"Q9W414",19.4263500403066,19.3751479791285,19.4192776665967,19.4052759155367,19.4066259466399,19.4946498234689,19.6380032328409,19.6326962158253,19.5916524690397,19.6506588537929,19.6305047090764,19.6333433240666,19.6251934999383,19.6806025277834,19.687937671594,19.5973501731306,19.6172543370925,19.51597076078 +"Q9W415",16.6407519131555,16.7284068956073,16.583156088668,16.8624667131362,16.7439993650481,16.8292342673888,17.0577093248665,16.581572803799,16.4003303117656,16.8634473571286,16.5950002526172,16.6680774406774,16.6016192781489,16.8678437402671,16.9781684610874,16.3955243636849,16.904695892782,16.9625523805333 +"Q9W425",14.4084132813216,14.608164350596,14.0106263782654,14.0599233762442,14.3866333524474,13.9044936582874,13.7775454510633,13.7663335171982,14.1037079534963,13.4919906478049,13.8963270332736,14.0310133977973,14.1741876317044,13.7417892095338,13.9397446951433,13.9890256580993,13.5018385831888,13.911499963248 +"Q9W436",14.5841745312807,14.0552380425557,14.2649023188743,14.3996370723624,14.7070403939953,14.3204097078905,14.6098055600879,14.1808339258034,14.52243686234,14.2436516854431,14.693645579054,14.6675670558391,14.5048687781445,14.3725288568273,14.3441033181154,14.1942425541914,14.5270933832744,14.4169609184509 +"Q9W445",16.7125006479945,16.562520502953,16.7790097548616,16.3798101554229,16.3793260435432,16.3959026725376,16.5748485258882,16.5618126944207,16.5309598984621,16.2798430391227,16.3850760436857,16.3415624219131,16.557261931424,16.5839048880023,16.4236252321709,16.2101999547188,16.2418240819663,16.243404274626 +"Q9W461",16.319260912561,16.392891781217,16.5029317298744,16.3634863702917,16.450490622852,16.6291339097304,16.2058382543791,16.3462964491971,16.1171227064557,16.5166939247713,16.2440602968983,16.1798624772718,15.8981590665393,16.06729458055,15.9702657643118,16.087965640572,15.8903704384,15.9920875814703 +"Q9W483",15.4405904751592,15.2939266313268,15.1755090118147,15.4706652387815,15.2477218446853,15.6195219043891,15.5013392596676,15.572633098129,15.5234918412006,15.7712527554773,15.5251479218972,15.9911706542316,15.707675212798,15.7290930366794,15.4335471807891,15.5417511530493,16.0647515622153,15.6900335025078 +"Q9W499",16.9722734328818,16.8862974172877,17.1398360713271,16.5355960738438,16.6433905623729,16.9140204080713,16.9809891276174,17.3559461752751,16.7138356261322,16.9938757777511,16.8072745510231,17.1739419082493,17.2569457762743,17.0181080298743,16.9167459657989,16.7143576201783,16.7430210727138,16.5956578289681 +"Q9W4A0",17.2873036011419,17.0917268493767,17.2417484204861,16.9753568912573,17.1915203847453,17.2311943458066,17.1760334458251,17.1196281313053,16.9840666560043,17.0914615656782,17.0269168779697,17.0187794764802,17.0795518123654,17.1567320781302,17.1254069724672,17.0681952879436,17.0913782826844,17.0767067329671 +"Q9W4C2",15.9444662883096,16.2704152740055,16.4033839511045,15.7315911162609,15.9473852400276,15.9638015448292,15.988699440436,16.0631652237624,16.0373604310721,15.9908353871403,15.6104400667805,15.621525616396,15.7008042482657,15.6088217718797,15.5430597376097,15.8381508797401,15.6943197836969,15.6254160791411 +"Q9W4I3",16.2883383888342,16.3414729257512,16.2347491036824,16.5643420331965,16.3509721933259,16.3597110865489,16.5186683381821,16.6084182054637,16.6074785546911,16.8745082103775,16.8370915791161,16.9860608552416,16.3737957995275,16.5664125562196,16.5473030352114,16.8815958998702,16.7968812101114,16.7659460346126 +"Q9W4K0",19.6095996808304,19.6311309153216,19.6817195127666,19.5884022475908,19.5995920522401,19.5840651576358,19.6971169590482,19.6676737132833,19.661948566596,19.622742138086,19.6748566887068,19.8482446237276,19.7530576246015,19.839040683376,19.7350315367455,20.0487774556187,19.9074020528479,19.8086867083044 +"Q9W4P5",19.6722096929829,19.5467298022012,19.5628626603541,19.5412679824162,19.5203941193377,19.3920227445901,19.5303199211235,19.5722708473022,19.4767794418511,19.5270866212885,19.470425900274,19.5357794650978,19.7490561140261,19.8104073695799,19.9625407626453,19.6570649243321,19.7567772174743,19.7470201816309 +"Q9W4U2",18.5986398761602,18.7322514055613,18.8794308529155,18.7829840729303,18.6111996534314,18.438435821786,18.4987271174712,18.5852356213157,18.9354164685613,18.3820710384837,18.4862458461463,18.2933186976424,18.5083831187233,18.6779302914209,18.5356196410697,18.6930013476707,18.3709437535638,18.3815850894644 +"Q9W4W5",17.0400997895465,17.1046213630942,17.1644340971326,17.3328705727176,17.4760576411977,17.3820644050893,17.0999021557878,17.1261353439021,17.2405208130164,17.3088876855733,17.2399770692036,17.2764049066005,17.546079713713,17.5664709329759,17.359259197872,17.5869897288323,17.4015672957971,17.4921462264598 +"Q9W4W8",17.3011372544589,17.4374092019446,17.4508201790674,17.0277949635731,17.231513813109,17.2576044845982,17.563516177426,17.5745149312025,17.4664982384997,17.087283580496,17.2525749056931,17.2476092973565,18.0433436651739,17.6383690903371,17.6207380971499,17.4498125302032,17.3385062290447,17.4296178746594 +"Q9W4X7",18.9530419901052,19.1604245238523,19.0801093403418,19.0636992902959,19.1668190252105,19.0965195717451,19.2237672956098,19.114322630061,19.1365323833785,19.2856113156084,19.2178627348951,19.2898514128469,19.0905212871267,19.1024919010395,19.0182339242032,19.1314993199252,18.9862196836128,19.1268938661558 +"Q9W4Y1",17.5804262943113,17.3523780005999,17.591411787334,17.7323181583912,17.8824851230213,17.7791380351422,17.3653634278131,17.2869741843387,17.4231138112645,17.719912696124,17.6550694972908,17.5795683870614,17.0114046712797,17.5054704340832,17.4651024107559,17.9082813806192,17.6353293892043,17.4793721969804 +"Q9W4Z2",13.791682700164,13.7714270000988,13.6605564375093,13.3303873912183,13.874981133806,13.6113464125301,14.2076136801422,13.8209862518424,13.72672525107,14.1790273577604,13.8539448779622,14.1426887935336,14.0740606303853,13.6169393108784,13.8132416155882,13.300944067086,13.9454372521685,13.9291573165251 +"Q9W503",17.8966489270251,17.9708027474465,17.910415261119,17.8469062534108,17.868092179727,17.9082643124135,18.0255170970109,17.9806835460952,17.8227808091404,18.1023907118188,17.9577829929555,18.0209147994307,17.9939066186794,17.9941764851223,18.0228904714983,17.8796162428997,17.9734478994983,18.0597201972429 +"Q9W552",16.0876733141341,16.0626163805598,16.1210806484318,16.0871222445238,16.0797210655928,16.1629132759697,16.1368041381539,16.1498510141054,16.0985828589559,16.2279489629299,16.1969282619931,16.3596869993534,16.2670291359833,16.3807493247124,16.3187789551105,16.5835626391617,16.5202743879234,16.3290976970654 +"Q9W5B4",19.0649862254063,18.9275318077985,18.9078655147508,18.8065385231012,18.7062698527285,18.7802102716727,18.7411658395034,18.7467934108719,18.5766384269383,18.4280444886312,18.3919396811163,18.5811218569605,18.1006946612141,18.4174570345766,18.2572868324751,18.6018816685729,18.5533196193373,18.6401885036318 +"Q9W5P1",14.272877666017,14.1366726864458,14.3663617523258,14.1699356078548,14.3283091277224,14.3883567118567,14.3887655431666,14.1493968338035,14.009086173156,14.0578047068242,14.3256957332937,14.2900659624526,14.1693842852668,14.2533216611043,13.9782481491899,14.626071337342,14.4914431041018,14.6527203974905 +"Q9W5R5",15.7285396254582,15.900189262191,15.8992213290548,16.0521351879519,15.9687615665548,15.9628118004066,15.8541154419161,15.8582075590974,15.7822599837708,15.7217292610019,15.8768266660516,15.8719183798539,15.9020172734638,15.8618066937859,15.8244002460335,15.906569824179,15.6993148662902,15.8244948748514 +"Q9W5W7",14.4923745401063,14.7220215492203,14.8245339324727,14.7259760050736,14.7603632201733,14.7665247115177,15.1410857188792,15.0260461914928,15.0946269492892,15.0581234586383,15.1110878886638,15.1190100812602,15.1104450264296,14.8521743121074,14.9397109298259,15.1794241492436,15.235735736713,14.963022294005 +"Q9W5W8",20.6576503122191,20.5611364534443,20.6603892195927,20.6131548695217,20.5238709504258,20.4779606256358,20.7526670205259,20.7260528591228,20.6766209454789,20.7257033850459,20.7975345391562,20.940408854243,20.7037842103526,20.7001873876206,20.7080801521963,20.7280745856297,20.8722521935252,20.7175745861481 +"Q9XTL2",17.0483237191241,16.8740324887001,17.3263523238703,16.9647312046101,16.9861409243817,17.0274167228995,16.9023482678226,17.0272781664683,16.9837506256992,16.8643005415665,16.8429774942515,16.7412481091754,16.9169867334838,16.9229875069653,16.7869679002108,16.7718053691264,16.8150792549666,16.6027601538783 +"Q9XY35",19.4529210562567,19.2891634965637,19.2680241588708,19.0818533914408,18.9946593446921,19.2727693625227,19.2013068890158,19.3533975906451,19.1215872277584,19.0664468542797,19.0765460229972,19.041540492395,19.3314452555918,19.3629001111303,19.4037618945179,19.1763899699333,19.2336968504897,19.2026802804534 +"Q9XYW6",16.6180597689528,16.5061416833641,16.5744472663286,16.748175164425,16.5503090000945,16.63289922558,16.5852715016108,16.5985820956563,16.6410515837158,16.6643874635201,16.6485075452879,16.753119548289,16.187715529485,16.5895187998807,16.4751202539067,16.9185392738492,16.8290895775595,16.6455108240229 +"Q9XYZ5",15.9284409051045,15.8451551576537,15.9747356476128,15.7000109314265,15.8292858588113,15.8923450599979,16.0999846653345,15.9611612509831,16.011351654715,15.9272710751336,16.0599732531738,15.7887079433207,16.1107671285162,16.299956070658,16.2523273868285,16.3026967099013,16.0736398241368,16.1497037229418 +"Q9XYZ9",21.9834504688506,21.9831019898206,21.9102830844268,21.9019248511763,21.9599844595656,21.9596729796968,21.91468927575,21.8595100550039,21.8712510288338,22.0278404841054,22.0990952338691,22.1369595970666,21.9956562626795,21.8332173613946,22.1120358780956,21.9931188782865,22.0817711211945,21.8264776527286 +"Q9XZ19",16.0894116005788,16.0501161622085,16.0842378476144,16.4278924773772,16.198811095767,16.3511258977138,15.808511105837,16.0876741231302,15.8910922695329,16.1948229795586,16.078616866879,16.2287068142972,15.9447837697953,16.1475171717557,15.799554277394,16.1216201356154,16.0243066490219,16.2323249622099 +"Q9XZ61",18.456305476754,18.5363019030213,18.4775010142027,18.521530414148,18.5954674813249,18.6293157743328,18.6057893050753,18.5907060923209,18.5182150869154,18.4961771348739,18.6169676350476,18.6585427911942,18.6020698535226,18.5536282998235,18.5202301203368,18.6073719607196,18.3961727335552,18.4854393581115 +"Q9XZ63",18.9962501212353,19.0880626327569,19.0960149250686,19.0411959243511,19.0415730861669,18.9250245978979,18.945153510931,18.9768493466191,19.0026556703469,19.6258721886875,19.0245020154342,19.3047739188204,18.6197005830273,18.9868213077775,19.089230833281,18.8624765566192,18.9728404960969,18.6729489394366 +"Q9Y0V3",15.2534697059861,15.0872751490902,15.1569699980154,15.2531445841612,15.0038786270288,15.2223505999259,15.2304696759553,15.1633490647302,15.1924530887518,15.3826993173143,15.1648667117858,15.155704742002,14.6850322418497,15.1079377891207,14.897990151561,14.8489556212853,15.126463804796,15.0283025662957 +"Q9Y0Y2",19.7734914868072,19.6466683153443,19.8534335722495,19.3205699534655,19.4789202645906,19.3394907417201,19.5153191707254,19.5651329454457,19.5595719680234,19.4621422007762,19.3764847755902,19.3096807483738,19.4388293520347,19.4847838310949,19.5581525945765,19.4403888056234,19.3987508373667,19.3304113444891 +"Q9Y0Y5",18.4502512277161,18.6312601943924,18.4198631652901,18.5778118103031,18.5732286961242,18.6692140674981,18.6176463236244,18.6174347680064,18.5504611942796,18.7455505379871,18.6621861222061,18.8248430822117,18.5431145339159,18.6044262801164,18.6179613580654,18.8305755137139,18.676413886415,18.6826070799156 +"Q9Y105",17.4918109121286,16.4141661282299,17.2629592189696,17.0804420832844,17.0020197261053,17.2508067315198,17.4411753277153,17.2245090255943,17.0905452286064,16.9205095177385,16.7814609955877,16.3771622360824,16.7939085187419,17.6095261596177,17.4598905095533,17.0468504785565,17.7430148030303,17.3333329134336 +"Q9Y112",22.2038975761482,22.2052602656594,22.2293956146517,22.2937754905372,22.2316257907642,22.2519745405374,22.2202703823083,22.2310082946014,22.1561803492565,22.2171518090599,22.1967119840134,22.294054118215,22.2431742163754,22.3463331328186,22.3040625770314,22.249022268629,22.2163522752011,22.1916245433661 +"Q9Y114",18.6348591766295,18.6859210832264,18.7088863783806,18.7172034976379,18.6603330143618,18.6263877091982,18.5739770480589,18.5606597283166,18.5755391098605,18.6076369707758,18.629355567286,18.6746519456467,18.5347414572578,18.4696012939246,18.4906220709237,18.5941548608639,18.6567023241084,18.5864857972141 +"Q9Y119",18.4543242040927,18.4376475159093,18.5995698877818,17.6902976539906,17.6549963537382,17.6863932005063,18.0610240406403,18.0356332971807,17.9829914729234,17.3470610147733,17.5140331057369,17.2724974605471,17.5907729309599,17.5539894832265,17.7155381535725,17.1391069847728,17.0862870734381,17.0255966538986 +"Q9Y125",22.8374547593679,22.8104033843229,22.8550248291503,22.6558195358067,22.6770560207947,22.6247177588079,22.694902847039,22.5407007176229,22.709535096641,22.7452143631488,22.5167318963825,22.634861789279,22.2837115771819,22.6295253688469,22.501526302507,22.5546782144287,22.5973639090032,22.4461155205878 +"Q9Y128",14.1205807558007,14.2556243276186,14.6395494799268,14.3481900366584,13.953702318772,14.1074271723322,14.2154558426462,14.3080558762885,14.3311832848801,14.3417848036238,14.4255383072186,14.4379519716267,14.2773994312064,14.3494385168614,14.2769229168201,14.4889316823337,14.4999832055101,13.9993077266832 +"Q9Y136",15.3449513514772,14.9972348102046,14.8585859103107,15.2535170700019,15.0863133992363,15.0205228329977,15.3526257047389,15.2974688569972,15.2013172343843,15.2701830976833,15.3719457210095,15.3604427307201,15.1755867574644,15.3810208869339,15.4070268872083,15.202473088967,15.4653533959511,15.7514414747115 +"Q9Y143",21.1916786715972,21.0409403149968,21.0769354598055,21.199719036121,21.0983042197515,21.1672609199933,20.9113762077304,20.9460480448768,20.878865109885,20.90366901475,20.9172886554291,20.8845706618099,20.714505149273,20.919962575511,20.8740368170213,20.7713544405902,20.7697587094965,20.8106335515467 +"Q9Y156",15.7119134476252,15.8186789805521,15.9140215221049,16.0862975252638,15.9783636401606,15.9154142040898,16.0623899404777,16.1331853244309,16.2346843033989,16.5203098439847,16.2864966108303,16.3129176127276,15.70330764076,16.1949758626126,16.075426128644,16.7501942040708,16.4227121835955,16.3819488312167 +"Q9Y162",20.3925768356999,20.3552208925346,20.299017789262,20.0936054691238,20.2239324027133,20.3181710478678,20.2174795504579,20.244722860458,20.1265923845924,20.0601736075792,20.0712908673992,20.1890326249673,20.3213245829631,20.2578327247524,20.1342919872699,20.0370708071898,19.9692311051562,20.0551250190543 +"Q9Y171",14.2018231005572,14.9031806268793,14.9656795503177,14.835584680756,15.092387025429,15.0113694323529,15.5072433718391,15.0759571385155,15.0655796138587,15.7064679325227,14.9721505626742,15.1092970662148,15.4863443589806,15.1224713070169,15.1787107348272,14.8075091206835,15.3788259048243,15.214336167768 +"R9PY51",21.8799295003849,21.6232621979466,21.9063613035304,21.5921766979978,21.6084294457849,21.5214673807137,21.3933380606893,21.3989476745294,21.570122350522,21.3597635275037,21.5157175101168,21.3631647570633,21.2831621009356,21.443927753095,21.310296921218,21.5425052491165,21.4605905551549,21.3794624235803 +"X2JAU8",21.8511924090255,21.9233879771801,21.9515571780372,22.1341172513662,22.0744743545011,22.0192078721986,21.5238241761841,21.555362001261,21.4972386283253,21.5951973778003,21.6058208995011,21.6514021714056,21.6241803081127,21.6617588663762,21.7250837130564,21.7156997009529,21.6234071246223,21.5997216604187 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/design_matrix_condition_batch_sex_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/design_matrix_condition_batch_sex_ms3fix.csv new file mode 100644 index 0000000..e63e721 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/design_matrix_condition_batch_sex_ms3fix.csv @@ -0,0 +1,19 @@ +"sample","Earth","SF1g","SFug","batchTMTb","batchTMTc","sexMale" +"SFug_M1",0,0,1,0,0,1 +"SFug_M2",0,0,1,1,0,1 +"SFug_M3",0,0,1,0,1,1 +"SFug_F1",0,0,1,0,0,0 +"SFug_F2",0,0,1,1,0,0 +"SFug_F3",0,0,1,0,1,0 +"SF1g_M1",0,1,0,0,0,1 +"SF1g_M2",0,1,0,1,0,1 +"SF1g_M3",0,1,0,0,1,1 +"SF1g_F1",0,1,0,0,0,0 +"SF1g_F2",0,1,0,1,0,0 +"SF1g_F3",0,1,0,0,1,0 +"Earth_M1",1,0,0,0,0,1 +"Earth_M2",1,0,0,1,0,1 +"Earth_M3",1,0,0,0,1,1 +"Earth_F1",1,0,0,0,0,0 +"Earth_F2",1,0,0,1,0,0 +"Earth_F3",1,0,0,0,1,0 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/all_model_significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/all_model_significant_counts_summary.csv new file mode 100644 index 0000000..0c000df --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/all_model_significant_counts_summary.csv @@ -0,0 +1,10 @@ +"model","contrast","n_significant" +"condition_only","SF1g_vs_Earth",0 +"condition_only","SFug_vs_Earth",0 +"condition_only","SF1g_vs_SFug",0 +"condition_batch","SF1g_vs_Earth",41 +"condition_batch","SFug_vs_Earth",108 +"condition_batch","SF1g_vs_SFug",11 +"condition_batch_sex","SF1g_vs_Earth",48 +"condition_batch_sex","SFug_vs_Earth",113 +"condition_batch_sex","SF1g_vs_SFug",13 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_Earth_results.csv new file mode 100644 index 0000000..4047469 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.677337048443508,18.1282760796353,12.5358146896418,6.41290643339207e-08,7.36022869640016e-05,8.79766996029268 +"Q9VFZ4",0.639562902078255,16.4804537361971,11.7295258897874,1.28270593296848e-07,7.36022869640016e-05,8.13997240662761 +"Q9VLC5",0.533100280623366,21.6850374737522,11.5423534758884,1.51556621712871e-07,7.36022869640016e-05,7.98031180668832 +"Q9W370",0.583547445019455,18.3204812365226,11.0503590812335,2.37638188041011e-07,7.36022869640016e-05,7.54730035785959 +"P21187",0.580871936934624,18.8453311878769,10.9596927200247,2.58653134710081e-07,7.36022869640016e-05,7.46532714450581 +"Q9VN13",0.490525440369574,16.9081536405495,10.9348494124192,2.64756427928063e-07,7.36022869640016e-05,7.44274458190238 +"Q9VHR8",0.52279870593258,20.3322073283353,10.3504731129904,4.64353462302016e-07,0.000107534837527998,6.89605297738134 +"Q9VXQ0",0.647839252227998,14.9702186953671,10.2442098389243,5.15754616441238e-07,0.000107534837527998,6.79335041330216 +"Q9VQE0",0.57893034694257,17.2771467791299,9.86366019150861,7.56791136172248e-07,0.000121683930303126,6.41685761403111 +"Q9VIE8",0.540427659600912,24.8202962323816,9.8443821825572,7.7188179708175e-07,0.000121683930303126,6.39741550142497 +"Q9VA42",-0.52730769138142,20.44637604246,-9.66945700171383,9.24663491143739e-07,0.000121683930303126,6.2193320291937 +"Q9VZF6",0.627736242643975,15.0380570115786,9.65212435789203,9.41493759730285e-07,0.000121683930303126,6.20152122060554 +"Q9VNB9",0.73428633524464,18.8272865429815,9.64513290166304,9.48375955599906e-07,0.000121683930303126,6.19432838388546 +"Q9VLB7",0.462060910732596,20.9029181391919,9.39120413181549,1.23915899892043e-06,0.00013531868777229,5.92973304398701 +"A1Z803",0.502810500204976,18.7241072580702,9.3713560948397,1.26564090849273e-06,0.00013531868777229,5.90877301542234 +"Q9VFQ9",0.445307743632579,19.0872762215348,9.34768787962019,1.29802098582533e-06,0.00013531868777229,5.88372537362254 +"Q9VZU7",0.483502751290402,17.4764925762768,9.19329864073751,1.53246829383629e-06,0.000150362183183467,5.71890051867989 +"P17336",0.564301229115877,20.6951623777099,9.06949525510898,1.75350486366235e-06,0.000152907192134089,5.5849047173021 +"Q9VNW6",0.682036784364254,21.4617941625739,9.06694604753996,1.75840295613806e-06,0.000152907192134089,5.58212837684654 +"O97125",0.537872792050312,18.4053353355981,9.02883369825891,1.83341956995311e-06,0.000152907192134089,5.54053660495726 +"Q8IN49",0.470517595558322,16.831231728593,8.92359269128684,2.05908112326496e-06,0.000163549872076474,5.424868528812 +"Q8SZN1",-0.457887943304772,20.2382174886971,-8.6417094616364,2.82486079952352e-06,0.000214175809709329,5.10902465591672 +"P41093",0.623397237729094,18.8355796054782,8.41078581327548,3.68182532982811e-06,0.000262033738850516,4.84356328630111 +"Q9VA09",0.499263239720838,16.2661598746717,8.39032598622427,3.77026962374843e-06,0.000262033738850516,4.81974524017153 +"Q9W253",0.502318549677815,15.1068541662566,8.20979292233125,4.65759978744158e-06,0.000307174212139967,4.60743906394774 +"P23779",-0.358021434103978,21.0404501196927,-8.16188259938329,4.92915888005991e-06,0.000307174212139967,4.55044444734717 +"Q9VNE9",0.66223218560279,18.7720088912541,8.15454294939241,4.97224444111458e-06,0.000307174212139967,4.54168872791254 +"Q0E9B6",0.42712200214967,19.0471253430896,7.96448222227423,6.24176664200322e-06,0.000361500008839119,4.31267965764391 +"Q9VC06",0.651655167867565,16.2787785075986,7.95875439278526,6.28507209612377e-06,0.000361500008839119,4.30570937748347 +"Q9VXP3",0.67286212914663,14.5222380106146,7.79047583955936,7.71317878915503e-06,0.000428852740677019,4.09911017736994 +"Q24276",-0.452482484912032,18.7619292187209,-7.6468715062173,9.20900239650748e-06,0.00049550374185079,3.91998856034989 +"Q9I7Q5",-0.572597641264363,20.6732751306916,-7.56741068720755,1.01683025337711e-05,0.000530022769572818,3.81974420985569 +"Q9VKD3",0.387693116567448,18.6185371765754,7.42348798088759,1.21901630340313e-05,0.000590048467441377,3.63609893048345 +"Q01637",0.407371955573721,15.8885078012101,7.40922008101935,1.24129557908189e-05,0.000590048467441377,3.61774592826129 +"P45437",0.521029435087762,15.9949204609525,7.39683448263058,1.26099019941861e-05,0.000590048467441377,3.60179250178903 +"Q9V3N7",0.393187325729443,20.4323002652192,7.38908334971325,1.27348590095261e-05,0.000590048467441377,3.59179830601961 +"Q7K485",0.371976413082468,20.4622555495255,7.28419948518569,1.45628906193672e-05,0.000656510852786606,3.45578335567347 +"X2JAU8",-0.420848631305201,21.7818985247322,-7.19276895207978,1.63869458683112e-05,0.000719300676535345,3.3360226532511 +"Q24253",0.460850351484655,18.730864810894,7.03137173233182,2.02325237072999e-05,0.000865329475481444,3.12187301622469 +"M9PEG1",-0.391447802550285,20.3408553577652,-6.88303977233307,2.46280365173683e-05,0.00100090875007648,2.92193144772808 +"Q9VA37",-0.301825946781918,21.8252777044823,-6.85929021306536,2.54221158404069e-05,0.00100090875007648,2.88963758930574 +"P32392",0.454036383297463,17.6062097508181,6.85716907468114,2.54943593417924e-05,0.00100090875007648,2.88674954326591 +"Q9VW54",0.476843657269496,15.7698981589251,6.83864032026242,2.61348553133039e-05,0.00100090875007648,2.86149515082761 +"Q9W5W7",0.376364388276611,14.9034811872323,6.83103085953177,2.64028687070535e-05,0.00100090875007648,2.8511098033166 +"P29613",-0.339693782658394,23.9164829560539,-6.74744385976558,2.95484919646227e-05,0.0010864560110277,2.73650117763524 +"Q9VAJ9",0.365775025611789,17.4082541131139,6.73716433822853,2.99622161314592e-05,0.0010864560110277,2.72233939849609 +"A1Z9A8",0.473793718254587,16.6067687153514,6.7201337343687,3.06613586478742e-05,0.00108815204733307,2.69884436279212 +"Q9VXC9",0.452225779675558,18.904293225518,6.69257918897111,3.18297669064923e-05,0.00110608440000061,2.66074476901775 +"Q9VHT3",-0.441811719713076,15.8125793621821,-6.5177041650343,4.04494260715516e-05,0.00137693148341527,2.41645460228975 +"Q7K2E1",0.458232235587591,17.3807421099237,6.48404929019073,4.23781593753329e-05,0.00141373539676111,2.36894405289318 +"A1Z6L9",0.359234454457928,15.1809093126729,6.40077103732535,4.75860765289602e-05,0.00155634462059423,2.25068652968115 +"Q9VMR6",-0.334707831550769,18.8792735357994,-6.32763864026271,5.27248964018157e-05,0.00163749605330324,2.14601834676773 +"Q9VHC3",0.457015836325521,17.1483476542039,6.32045698435714,5.32605873819347e-05,0.00163749605330324,2.13569847056555 +"Q9VLR5",-0.40170710328368,16.9611372740849,-6.31475632619301,5.36899451366445e-05,0.00163749605330324,2.12750147711295 +"Q9W3J5",0.557991313558908,16.0139677528003,6.31074640510996,5.39941744194715e-05,0.00163749605330324,2.12173280054298 +"P09180",0.361481455578037,20.6643489681242,6.21610590617171,6.17357892052711e-05,0.00183884457847129,1.98491054479106 +"Q9VAA6",-0.350113554872008,16.2226888712912,-6.15608527261837,6.72533255767972e-05,0.00195295815799381,1.89746819548876 +"Q9VR79",0.527422574355459,20.2302829306034,6.14930813905591,6.79086170045808e-05,0.00195295815799381,1.88756201888024 +"Q9W3Y3",-0.376279525027101,18.1854647388084,-6.13372656379988,6.94411896492195e-05,0.00196318481923556,1.86476109411962 +"Q9VTU2",-0.247269233178034,20.8413962607865,-6.11014122694965,7.18315774752206e-05,0.00199691785381113,1.83018108231882 +"P50887",0.608644887749229,17.6568887674278,6.06790248813779,7.63345106495725e-05,0.00208731088136864,1.76805031033484 +"Q9VCX3",0.740206365909239,12.9401757315591,6.04554873512094,7.88384983153409e-05,0.00212100992241917,1.73506431888563 +"P12080",0.285596259557806,19.0095098758866,6.01221343320463,8.27365462785596e-05,0.00219054855861329,1.68573855502175 +"Q9VWP2",-0.334703622357949,19.7150234088379,-5.9501279068883,9.05544931483102e-05,0.00236007647767784,1.59344017657744 +"A8JTM7",0.332600069877426,17.5424496232923,5.90086400026469,9.7317146861965e-05,0.0024973077071655,1.51980299619273 +"Q9VAC1",0.33841545208988,23.3307173711924,5.87525634416642,0.000101043021256604,0.00255363271903054,1.48138609879241 +"A1Z8Z3",-0.313472922569595,19.9648565775649,-5.85924437811313,0.000103449671201743,0.0025754336054404,1.4573161240477 +"P42281",-0.37781940489921,21.8833835391386,-5.83248175995548,0.000107609406479008,0.00260475450448117,1.4170016625962 +"Q7JWF1",0.461762802531485,20.4905172526239,5.83159255189061,0.000107750635976739,0.00260475450448117,1.41566038894993 +"Q7KVQ0",0.432005766677923,15.6530863862465,5.81625708440262,0.000110217593320997,0.00261675408407217,1.39251033394715 +"Q9VAM6",-0.279667294460396,22.1389987491518,-5.79290988980295,0.000114089438452622,0.00261675408407217,1.35720000791046 +"O02195",0.316027418808567,18.6422979455918,5.78812307031198,0.000114901002579761,0.00261675408407217,1.34995057982014 +"Q9VB22",-0.345029471083386,17.2648846754239,-5.77643118893715,0.000116909188977071,0.00261675408407217,1.33222966565905 +"Q9VEY0",0.488066118062257,18.0375391887424,5.75486417640836,0.000120712111713437,0.00261675408407217,1.29948901897699 +"Q9VXZ8",0.328472190262122,17.7660313788427,5.74577807748457,0.000122353460818262,0.00261675408407217,1.2856751675057 +"Q8SXF0",0.395234844043852,16.2710879905024,5.74424104234083,0.000122633455967582,0.00261675408407217,1.28333717716055 +"Q9W1R3",-0.337114616627289,17.0302565706242,-5.74245743949283,0.000122959221594456,0.00261675408407217,1.2806236990895 +"Q9W1H8",0.385123226935125,20.4574736570444,5.73554154162248,0.00012423110149084,0.00261675408407217,1.2700978271683 +"Q9VV36",-0.523209203391218,23.1979127313407,-5.73455269127842,0.000124414097716358,0.00261675408407217,1.26859224384829 +"Q7JXZ2",0.519931583660593,17.4579788873117,5.72869618070961,0.000125503793001063,0.00261675408407217,1.25967243095629 +"Q9VPE2",0.351682165801794,20.7656712747026,5.71416521765215,0.000128251566852579,0.00262240393279211,1.23751927600438 +"Q9VSS2",0.407155963316541,16.1759115842471,5.710684884746,0.000128919138182826,0.00262240393279211,1.23220876242392 +"P10676",-0.655514005724665,19.9128512890527,-5.67880684571527,0.000135208430383291,0.00271720074553409,1.18348491387541 +"Q9W3E2",-0.634307082032201,17.7112104076546,-5.66294678460955,0.00013845824665798,0.00274938518363703,1.15918839623462 +"P48375",-0.295596312640075,21.9133064527281,-5.62315464941172,0.000146982788517336,0.00288432107349313,1.09806797918593 +"Q9VCK0",0.329403135052601,18.1976072865754,5.60001201762463,0.000152195525965787,0.00295188531756899,1.0624148278014 +"P82890",-0.364117076765673,19.7080232453864,-5.5620214192573,0.000161182943242939,0.00309026608424393,1.00371785401571 +"A1ZA22",0.590691853952409,13.4734284669821,5.54209452491998,0.000166120825646045,0.00314874474065458,0.972845948697322 +"Q9VBI2",-0.220774129974707,22.1544778896352,-5.52691728128558,0.00016998938550661,0.00318586848342725,0.949293698804627 +"Q9VAY9",0.539726643299582,14.5035220179372,5.4957162301816,0.000178245816355016,0.00327114194813987,0.900770242568008 +"Q9W1N3",-0.236095795017967,20.5562459735456,-5.49492155366754,0.000178461581103554,0.00327114194813987,0.89953252408262 +"Q9VEB1",-0.219249144551984,25.1371372270476,-5.46402400518414,0.000187069244304097,0.00339164673368733,0.851338092423719 +"Q7K569",0.437107860350572,20.4536955014001,5.45089051744011,0.000190860484546628,0.00342317514219113,0.830810321124317 +"Q9VM07",0.495597714395705,17.008523657083,5.44276647698694,0.000193246378623438,0.00342909531429676,0.818099841098796 +"A1ZB70",-0.269028125908738,16.250416473106,-5.43140076359981,0.000196637517995064,0.00344238292991842,0.800301540422931 +"Q9VLY7",0.253815375113426,15.3514911595159,5.42592926511058,0.00019829247557593,0.00344238292991842,0.791726694727939 +"Q9VHT5",0.308544748154965,15.6240793061197,5.41972637035718,0.000200186537291419,0.00344238292991842,0.782000371791236 +"O18413",0.258916716577374,19.3709186121459,5.37704852791253,0.000213749630373174,0.00362915131029036,0.71492931376086 +"Q9VEV3",-0.237806036402905,18.308054846586,-5.37037378325131,0.000215957483369025,0.00362915131029036,0.704415701816321 +"Q9VKG4",-0.306213743134979,15.9207750537474,-5.36211223066991,0.000218723738396485,0.00362915131029036,0.69139374805051 +"Q9VPC2",-0.394269585730578,14.8489546383323,-5.35907310750911,0.000219750768788565,0.00362915131029036,0.686600968991264 +"Q9I7K0",-0.416619711101173,16.2722854377917,-5.35159493060058,0.00022229973696165,0.00363525452207874,0.674802009412379 +"Q9VIF2",0.261085776810939,17.3729893912739,5.34170737942563,0.000225718146322046,0.00365531910742887,0.659189194058719 +"P19334",-0.76460943930176,15.4010045728876,-5.29389441302987,0.000243052469565174,0.00389818768494913,0.583492113204746 +"Q9W266",-0.289673782480826,18.4465639112498,-5.27998783956994,0.000248354853277706,0.00394529424064014,0.561413664748522 +"Q7K148",0.395453052232693,16.6935461934237,5.26887284435811,0.000252680888469729,0.00397614832044819,0.543747252884708 +"Q9VQ91",-0.403575845308751,15.0355490361087,-5.22492012409143,0.000270584980158385,0.00421809109256248,0.473714593585905 +"Q24238",0.290097407084513,16.3253843632414,5.20248350705658,0.000280237699093106,0.00429339906071411,0.437858525849977 +"Q9W414",0.208255238827402,19.5253488480266,5.20173976152951,0.000280563847492709,0.00429339906071411,0.436668713806386 +"Q9VD02",-0.25086732414681,18.2690825063605,-5.19134336018396,0.000285165173193071,0.00431814052100254,0.420028754120134 +"Q8MSI2",-0.582327975782238,24.1442451584085,-5.18645047309419,0.000287358272081104,0.00431814052100254,0.412192121308197 +"Q9VFS4",-0.301499419805511,15.3533529813371,-5.15234757961922,0.000303148205487472,0.00451474291743842,0.357477181924104 +"Q9Y143",-0.222170154630678,21.0180546930622,-5.12523530108117,0.000316355423371278,0.00466974200162205,0.313860438923708 +"Q9VSC3",0.302446826066287,17.5088269040002,5.09129790516588,0.000333750162266896,0.00488329184790511,0.259117555473693 +"Q9VV39",0.24491089616938,17.4566379262803,5.0581812757363,0.000351701082235027,0.00507744412257662,0.205542456154865 +"Q9VWH4",-0.209459618671705,24.4026882919273,-5.05566227715189,0.000353107624831468,0.00507744412257662,0.201461001666078 +"Q9VTZ4",0.35566328226783,18.0815514697937,5.02334957880669,0.000371686558172457,0.00529891606009965,0.149027086955365 +"Q9V3D9",0.249136366340906,17.376635102771,5.01149568360478,0.00037875864237065,0.00535397809723936,0.129755225829261 +"Q9VLP0",-0.328541123710643,16.2105248241074,-4.93293617165533,0.000429367354182904,0.0060051601496509,0.00154229064220335 +"Q9VMQ5",0.381818989999163,13.5091665940291,4.92681189030763,0.000433601636238664,0.0060051601496509,-0.0084885855611363 +"Q7JPS2",-0.474778117691944,20.6985184536622,-4.92390600761546,0.000435626125963884,0.0060051601496509,-0.0132498907408625 +"P28668",0.36815769283969,15.530646478345,4.91648071977972,0.00044084463730529,0.00602728569692807,-0.0254215233395252 +"Q9VH98",-0.25108929215315,17.0914972372399,-4.90394853800073,0.000449802358236404,0.00609975880925464,-0.0459815606563234 +"Q9W199",0.495884097313935,15.7423879023532,4.88432642144221,0.000464215327177926,0.00624444488494177,-0.0782162667351107 +"O16797",0.700026653213751,16.6512775871783,4.85200260092471,0.000489029437040668,0.00652560880787068,-0.131431150790043 +"Q9VK39",-0.286745643782403,18.2072751232891,-4.8381255714851,0.000500107746703591,0.00661687121722534,-0.154320376087978 +"Q9W1F8",-0.303194807280091,17.66226024291,-4.83103677598912,0.000505868605913206,0.00661687121722534,-0.166022889631418 +"Q9VTY2",-0.32693587254894,20.8558873954418,-4.82871635866074,0.000507769493887796,0.00661687121722534,-0.169855012554485 +"Q9V3A8",0.345533189898447,15.3834505975204,4.81171931494316,0.000521924943923569,0.00674861090282568,-0.197947355917899 +"Q9U9Q4",0.26414610048294,17.7967064239191,4.78446260343421,0.000545499005143883,0.00699917185061536,-0.243077436919029 +"Q9VQQ0",-0.246260761973602,18.3234900589626,-4.70600870739528,0.000619821806346724,0.00789208223653691,-0.37352701160425 +"Q9W2E7",0.366292080740038,18.4662116230169,4.69663834060654,0.000629385982732236,0.00795315014543461,-0.389161709456143 +"Q9VME1",-0.372594272015878,16.6092433115872,-4.68995738165279,0.000636299805354874,0.0079585573426592,-0.400316050400366 +"Q9VPN5",-0.212552574567731,21.3690757223014,-4.68702790736433,0.000639356525129696,0.0079585573426592,-0.405208849921954 +"Q9VIN9",0.254988806321776,16.419129836985,4.6548803234977,0.000673932891300066,0.00832461124719986,-0.458974736225688 +"Q9VUX1",0.312309412109174,16.4077551632286,4.65008456568596,0.000679257091277031,0.00832461124719986,-0.467006939359859 +"Q8SWS3",-0.338772212339318,16.5423549740241,-4.64289429877245,0.000687322606830594,0.00832461124719986,-0.479055141112595 +"Q9VZG1",-0.292498263204557,17.7997610279085,-4.63566042969202,0.000695538629771616,0.00832461124719986,-0.491183099643909 +"A1Z847",-0.308033048844088,20.1244705647838,-4.63378439486866,0.000697686180625477,0.00832461124719986,-0.494329464751655 +"Q8SYJ2",-0.191435322340823,22.604123593544,-4.63056434147256,0.00070138852184701,0.00832461124719986,-0.499730981514918 +"Q9W402",-0.190735876694081,21.2446710788336,-4.62856374271125,0.000703699152191355,0.00832461124719986,-0.503087577482367 +"Q9VX69",-0.349761515561458,18.2495891113129,-4.62336506142355,0.000709740931772552,0.00833695686053955,-0.511812293151308 +"Q7K5J8",-0.300696750983935,18.2502547622958,-4.60974959103062,0.00072582411987107,0.00846625616744717,-0.534678859376424 +"Q9VH64",-0.376084855156829,17.6301323985133,-4.58878962284732,0.000751335183264331,0.00866437690563547,-0.569926177551499 +"Q9V9Q4",-0.240406399234587,19.1800484641246,-4.58469385480941,0.000756429291368956,0.00866437690563547,-0.576820310680445 +"Q8IN44",-0.480054656949747,19.9397899008626,-4.58257133427472,0.00075908342473232,0.00866437690563547,-0.580393839792238 +"Q9VFN7",-0.342899664269552,18.7659551083739,-4.57898743175011,0.000763587173338378,0.00866437690563547,-0.586429076113524 +"Q7KUT2",0.285978225747797,18.1659762928163,4.57151358977584,0.000773069723597449,0.00871270472270639,-0.599020105949163 +"P29327",0.304715440338725,19.4923823363594,4.56526489668953,0.000781092694226487,0.00874404438905893,-0.609552532846327 +"Q9VV31",-0.914129140048026,15.9080548630959,-4.55990758257485,0.000788040750712005,0.0087630131479175,-0.618586397278158 +"B7Z107",-0.383919990922106,16.0711058066324,-4.55554213543013,0.000793750371825842,0.00876349350317156,-0.625950361482827 +"Q7JXC4",-0.202450725636044,21.6496472995715,-4.55186627480442,0.000798591734101965,0.00876349350317156,-0.632152923927065 +"Q9VN14",0.269102363427834,19.2754730720111,4.50889132695765,0.000857547152024461,0.00934894542207059,-0.704792222360631 +"Q9VED8",0.562512169993475,16.2654653689014,4.48419676975233,0.000893473313167278,0.00967736030105858,-0.74663547791143 +"Q960M4",-0.257577071352102,23.2449251760672,-4.47980829436823,0.000900021133840963,0.00968538871772081,-0.754079230769848 +"Q9VSR5",0.294551748150035,20.2467087006717,4.4420338051908,0.000958505242995807,0.0102108302932398,-0.818248717423886 +"Q7K5M6",-0.237976352437119,18.277937132895,-4.44041965730943,0.00096109134055075,0.0102108302932398,-0.820994572580837 +"Q9W1L1",0.438885752315135,14.8317393044745,4.42318916534073,0.000989156799712601,0.0104424907716495,-0.850325011191683 +"Q95RI2",-0.314597136280856,16.8164317516926,-4.39300186848527,0.00104041447155914,0.0108589244440758,-0.90179573895421 +"Q8I099",0.284149399290143,16.8234072775656,4.3923087892788,0.00104162344787298,0.0108589244440758,-0.902978728237716 +"Q9VWV6",-0.459023564726404,23.7468779708063,-4.38703111888705,0.00105087793638315,0.0108873565086154,-0.911988814811003 +"Q6NLJ9",-0.332444422497998,15.1497007939836,-4.36668379356623,0.00108737033514995,0.0111043314136183,-0.946756295100428 +"Q9W3X7",-0.237498807342018,21.6252941507142,-4.36595518386508,0.00108870140668917,0.0111043314136183,-0.948002160672121 +"Q9VW34",0.34341048507692,18.4249046031174,4.36202102032459,0.00109591809736571,0.0111043314136183,-0.954730331411954 +"Q9W369",-0.387098211229397,22.2910552770182,-4.36064714953273,0.00109845004990829,0.0111043314136183,-0.957080333329061 +"P48596",0.457556396197216,21.8400422654538,4.3475902025744,0.00112282071471513,0.0112823189888243,-0.979425036897598 +"Q9VI75",-0.300923428004683,17.4903313775524,-4.33744978218687,0.0011421374662385,0.0114076963693761,-0.996792082266269 +"Q9VXN2",-0.362832827443675,18.5033085676865,-4.32675214870108,0.00116289268261436,0.0115458630630997,-1.01512613690585 +"Q9W392",0.179761255044312,19.9737314037546,4.3167078482691,0.00118273933772043,0.011673427309572,-1.03235228509403 +"Q7K3Z3",-0.183859594086346,19.914105779949,-4.30867388960052,0.00119886842035697,0.0117630148538554,-1.04613885043388 +"Q9VG69",-0.224027368852258,19.9765826445163,-4.28353852806368,0.00125083141279684,0.0122010923774569,-1.08931869072324 +"Q9VJQ3",0.240390312671298,20.4225865837405,4.2601624228596,0.00130127040423168,0.0125876482668647,-1.12953911864216 +"Q7K3N4",0.302429815863025,17.0561229159643,4.25771420821717,0.00130667444765318,0.0125876482668647,-1.13375493274755 +"Q9VN02",-0.217664926695086,17.3113784807918,-4.25481693519298,0.00131309999906142,0.0125876482668647,-1.13874486822217 +"Q8T3X9",-0.246626889398968,18.293634729184,-4.24122627604803,0.00134368450616124,0.0128072328930111,-1.16216406341407 +"Q9VY28",0.270960551981887,15.2047555560976,4.22287966825331,0.00138615570707041,0.0131369756783719,-1.19381026174064 +"Q95SI7",-0.172529413007513,21.2541654410266,-4.20609956081619,0.00142622732600523,0.0133931450987817,-1.22278590178216 +"Q9VH81",0.296610540200922,14.342434074437,4.20485607889931,0.00142924450094913,0.0133931450987817,-1.22493431700267 +"Q9VXN4",0.259480160954469,14.9544534777443,4.19036100077468,0.00146491034960521,0.0135014849649483,-1.24999008533076 +"Q9W4I3",0.38210666862215,16.5476509562009,4.19032860882518,0.00146499108269491,0.0135014849649483,-1.25004610182095 +"Q0KHZ6",-0.187829651254141,23.1337771825978,-4.18646594456068,0.00147465165267205,0.0135014849649483,-1.25672672434334 +"Q9VHB8",0.42442622470513,15.4400931922841,4.18381745040131,0.00148131393258871,0.0135014849649483,-1.26130829495671 +"Q9W0Z5",-0.352732914082212,17.0019254613709,-4.18163208532415,0.00148683483826332,0.0135014849649483,-1.26508925970096 +"Q9VQT8",-0.345149738193445,18.0058391474991,-4.17532291607172,0.00150289442225358,0.0135014849649483,-1.27600772721448 +"Q23983",-0.216649712730323,22.3582408117186,-4.17434867604946,0.0015053903577183,0.0135014849649483,-1.27769408733363 +"Q9VJZ5",-0.214830162065365,17.0201064610847,-4.17428202416029,0.00150556127306977,0.0135014849649483,-1.27780946197152 +"Q6IHY5",-0.287683946225027,20.9149549447233,-4.16753077140221,0.00152297871322481,0.0135846443511176,-1.28949828329422 +"Q9VW68",0.26036138103624,22.8808429551575,4.16205195678484,0.00153726772467637,0.0136391625785116,-1.29898751744541 +"Q9VGA3",0.234577795340915,19.4270582151399,4.14194233584089,0.00159092326116887,0.0140115968502102,-1.33384345935992 +"Q9VDE2",-0.203841211787982,19.5453260794016,-4.14005974033676,0.00159604520476015,0.0140115968502102,-1.33710866239589 +"Q9VFB2",0.235706166346841,16.4176026373008,4.13328287857742,0.0016146255350718,0.0141004994371716,-1.34886552239331 +"Q9VNZ3",0.34701219993204,15.080776574784,4.11656510318954,0.00166143084006302,0.0144336804230475,-1.37788813273568 +"Q9VSA3",0.223001232877056,21.6819429412969,4.09979656323177,0.00170979903943943,0.0147222668807788,-1.40702679291178 +"Q9W308",-0.318123520697164,17.2880469049173,-4.09894230043742,0.00171230202330401,0.0147222668807788,-1.40851198589226 +"Q9Y156",0.354215719342315,16.0812227463039,4.09267863661257,0.00173077139462934,0.0147335764285753,-1.41940396867163 +"Q9VK12",-0.210330340967325,22.3588725970958,-4.09250593421748,0.00173128356115153,0.0147335764285753,-1.41970433792195 +"Q9VM12",0.222167659589619,18.9056126776404,4.0809703388335,0.00176585312578652,0.0149514873797559,-1.4397739698557 +"Q9VZU4",-0.189133918956053,21.4470166269703,-4.07591546282604,0.00178122701465259,0.0150054881840431,-1.44857250845952 +"A1ZAL1",-0.322103922085383,17.2597042153659,-4.07197898845368,0.00179329580104261,0.0150312431966788,-1.45542605826358 +"Q9VX36",-0.16359465077657,22.2380457099757,-4.06517491109266,0.00181435730884612,0.0151317399557767,-1.46727571969814 +"Q9VEN3",-0.191859920643477,17.6111231050059,-4.05809825101932,0.00183653567143317,0.0152405049748783,-1.47960478948341 +"Q9W337",-0.309905376277593,17.7878464761847,-4.05257873829652,0.00185402950605147,0.0153095109707616,-1.48922427489123 +"Q9W086",0.302390541428574,16.858899036092,4.04425579438575,0.00188073697773406,0.0154535432456178,-1.50373506075735 +"Q8IQG9",-0.291682818226196,20.5380861669683,-4.03317107552384,0.00191692913557415,0.0156737146967533,-1.52307100008339 +"Q9VNC1",0.30511245599598,15.515053486312,4.02162675968936,0.00195539218434939,0.0159102154316819,-1.54322079028646 +"Q9VNW0",-0.41227549895723,14.7561092811315,-4.01607317098098,0.00197418033155851,0.0159851106458233,-1.55291856435329 +"Q9I7K6",-0.247469097650725,16.2423896340454,-3.99616387230037,0.00204309036835705,0.0164328823048208,-1.5877076348396 +"Q9VMW7",-0.202270495914615,19.4656908511631,-3.99443689359383,0.00204918436415031,0.0164328823048208,-1.59072700811636 +"Q7JRN6",-0.333763554694253,14.8483062320043,-3.99153940205253,0.00205945118898072,0.0164361941780854,-1.59579345525231 +"Q9VMY1",0.32679639088567,15.5823144437963,3.98069072867368,0.002098368620552,0.0166354194502624,-1.61476970164496 +"P40301",0.239337825627278,17.7925402054695,3.96844665758445,0.00214321027918253,0.0166354194502624,-1.63619925799301 +"Q9VXK6",-0.259292023613447,17.8517635978374,-3.96762758619621,0.00214624524714754,0.0166354194502624,-1.63763326541312 +"Q9VMH8",0.18934075189776,18.8915274870396,3.96625419101878,0.0021513442071252,0.0166354194502624,-1.64003789909667 +"A8Y535",-0.222513339380889,22.0554719480081,-3.96579913306816,0.00215303645761029,0.0166354194502624,-1.64083468183295 +"Q7JYX5",0.363782950793182,14.711906774532,3.96355368503371,0.00216140698458988,0.0166354194502624,-1.64476660860517 +"Q9VMB9",-0.249435196065118,22.5760329363872,-3.96307614324747,0.00216319150395084,0.0166354194502624,-1.64560287222597 +"P22979",0.465652077338909,19.39844137514,3.96280638054478,0.00216420025222238,0.0166354194502624,-1.64607528517426 +"Q9V931",-0.266520522915261,17.755742770142,-3.95484951958199,0.00219417464916277,0.0167884555724931,-1.66001231259173 +"Q70PY2",0.438638162913353,17.2750635123791,3.94566071972812,0.00222932650372565,0.0169795278913899,-1.67611396572998 +"A1ZB71",-0.267822675827347,19.2449502459631,-3.93550873524269,0.00226884305810309,0.017201955549618,-1.69391180726191 +"Q9VKU3",0.254386771324585,15.5090004382705,3.92992064617133,0.00229090398094757,0.0172597478089104,-1.70371222938978 +"Q7K1S1",0.298407141925473,16.4693342402845,3.9283459621583,0.00229716067960318,0.0172597478089104,-1.70647439372815 +"Q9VF23",0.718199960919366,15.353932661404,3.90999858463462,0.0023713799518089,0.0177284800201529,-1.73867289699003 +"Q9VW26",0.172945204647323,17.5431541896136,3.90771182841363,0.00238080307225075,0.0177284800201529,-1.74268796261996 +"Q8MR62",-0.198842223086626,17.7049619113941,-3.89838097294951,0.00241965711211553,0.0178510638988035,-1.75907542514442 +"Q9W314",-0.202820721300206,16.288782129386,-3.895816308107,0.00243045117747884,0.0178510638988035,-1.76358089887432 +"Q7KTA1",-0.230744168924026,17.1515878810719,-3.89431557178708,0.00243679054768793,0.0178510638988035,-1.76621756348307 +"Q9VWI0",-0.195001306271049,21.0152749842171,-3.89353998272312,0.00244007348257026,0.0178510638988035,-1.7675802780284 +"Q9VEJ0",-0.168336314168393,22.2287474391098,-3.8887132617338,0.00246060741705587,0.017922677605455,-1.77606194392639 +"Q7JVI6",0.233360798050835,17.4578400195516,3.87833402295196,0.00250537158794032,0.0180299164123985,-1.79430698314897 +"Q9VHX4",-0.158545386500283,22.874548128139,-3.87819276819594,0.00250598658408242,0.0180299164123985,-1.79455534547577 +"A1ZB23",-0.261325412769121,15.9002223056209,-3.87778606662641,0.00250775815807941,0.0180299164123985,-1.79527044064985 +"Q9VL01",-0.207383992158224,20.5381766293535,-3.86736536935235,0.00255359537701251,0.0182196922945414,-1.81359738949469 +"P54385",0.383150768389179,21.4011846368102,3.86506514630243,0.00256382967175629,0.0182196922945414,-1.81764395392364 +"P32748",0.220749519878932,17.2009008475282,3.86437175486727,0.00256692307507029,0.0182196922945414,-1.81886385268219 +"Q9VPF6",0.38831220457269,13.9702232543697,3.83518614205677,0.00270069441006431,0.0190879587965562,-1.87024427435138 +"P09040",-0.452959376250632,16.5282924384203,-3.82345752302079,0.00275646555126566,0.0193433916054772,-1.89091028778209 +"O77477",0.250164442795523,16.768155428303,3.81944680811391,0.00277580925527653,0.0193433916054772,-1.89797956743552 +"Q7PL91",-0.278900996510473,18.8981402291428,-3.81810414561924,0.0027823162471258,0.0193433916054772,-1.90034640610714 +"Q9VIK6",-0.242273031787896,16.6440320677759,-3.81791754709756,0.00278322181373773,0.0193433916054772,-1.90067535149025 +"Q9W0S7",0.377638513671188,17.8691928449794,3.79651316458927,0.00288914712908905,0.0199505082330699,-1.93842483020476 +"Q9VZJ2",-0.172174324112804,17.4404222505071,-3.79545350064236,0.00289449819688424,0.0199505082330699,-1.94029454172723 +"Q9VJI9",-0.30072682625444,17.6911938024145,-3.79172801184319,0.00291339254194526,0.0199981018928588,-1.94686856710185 +"Q9VGA0",-0.313081302315233,19.3778233811034,-3.77586494212215,0.00299528224580459,0.0204759458442707,-1.97487153904912 +"Q9W1R0",0.50981938320759,13.9417218624182,3.77253738693149,0.00301275971248471,0.0205113600017326,-1.98074786027892 +"Q7KTG2",0.227521020548849,18.0461492655848,3.76640150361028,0.00304526423937981,0.0206483770377461,-1.99158555317496 +"P54195",0.353564840158086,18.7973970632995,3.74518986837455,0.00316044916169213,0.0213426283469736,-2.02907074967918 +"Q9VV47",-0.170703423631384,20.1407877216145,-3.73417335871665,0.00322203721539268,0.0215836210276753,-2.04855080439035 +"Q9VIQ5",-0.265527688799963,16.6224461526391,-3.73374619481095,0.00322445008175043,0.0215836210276753,-2.04930629918162 +"Q9VAU6",-0.222752031122097,13.3547342744031,-3.73189025014353,0.0032349551899993,0.0215836210276753,-2.05258891394819 +"Q4V5H1",0.251132959132303,14.9561120891565,3.72866094566201,0.00325331812275464,0.0216196598755169,-2.05830111890253 +"Q8MZI3",0.384930252280974,17.6857200273528,3.72631551055474,0.00326672247102617,0.0216225915939351,-2.06245029382807 +"Q9VCE0",-0.318031096093394,15.897136904949,-3.72246823490571,0.0032888334818899,0.0216599460294353,-2.06925704250858 +"Q9V6Y3",0.3310592679943,15.236178271097,3.72082281414906,0.00329833710520177,0.0216599460294353,-2.07216846902671 +"Q9VBC7",0.321967787993605,16.0315592108535,3.71037201682082,0.00335936387673244,0.0219741919466263,-2.09066417283115 +"Q9U9P7",-0.208342603393042,16.6266214016737,-3.70790907743085,0.00337391487850178,0.0219831641302381,-2.09502403835063 +"Q9W3M7",0.275446157818351,16.021209787843,3.70285071571192,0.00340400376533278,0.0220929115975684,-2.10397945191491 +"Q7K204",-0.387955677549398,14.9645968408066,-3.69791959569466,0.00343360215693789,0.0221623141303099,-2.11271108829853 +"A1Z7B8",0.202689103429508,16.864358675108,3.6966491731456,0.00344127059937067,0.0221623141303099,-2.11496088903696 +"P48148",0.247633743666608,20.6198642934485,3.67012367748831,0.00360547837113837,0.0231305304733031,-2.16195681576919 +"Q9VSA9",-0.28581103318254,22.4156403355409,-3.66616572656797,0.00363066380624751,0.0232028629456737,-2.16897270332923 +"Q7JWD3",-0.287136996036043,17.1384962045599,-3.65913351322596,0.00367585950660456,0.0233790598612143,-2.18144021895309 +"Q00174",0.221896889266301,21.9380672001126,3.65752683378231,0.00368626663279338,0.0233790598612143,-2.18428911142008 +"Q9VJZ4",-0.22052253132404,21.3498370763053,-3.65498477607584,0.00370279461517985,0.0233949296140909,-2.188796866352 +"Q9VZX9",-0.218951077727628,18.3538709668035,-3.65146076277213,0.0037258334025631,0.0234516608131142,-2.19504648107006 +"Q7KM15",-0.22247168080867,17.0240250028971,-3.63179618436478,0.00385713097097603,0.0241868212766467,-2.22993265641233 +"Q9VPL0",0.302117561008073,15.0515352186491,3.61637726032081,0.00396340602327342,0.0247601544824721,-2.25730092950733 +"Q9NJH0",0.21710095278689,21.1239169244015,3.61319702787027,0.0039856979744276,0.0248065082886016,-2.26294727709301 +"Q7K3V6",0.235369366604147,16.1394091827487,3.60760361464591,0.00402521858141931,0.0249593479323696,-2.27287932939049 +"A1Z8H6",-0.414863409162802,16.8998555787378,-3.5996370771672,0.00408220358289106,0.0252189465787492,-2.28702791291822 +"Q9VXZ0",-0.214026492555188,19.7269814372015,-3.59158005220322,0.00414067985330449,0.0253456202181188,-2.30134030688868 +"Q9VIH9",-0.252015517577416,19.2452833905567,-3.5913397416094,0.00414243714496087,0.0253456202181188,-2.30176723874653 +"Q9VJI5",0.367417309373057,17.5272965600473,3.59053957535927,0.00414829395656262,0.0253456202181188,-2.30318882054603 +"Q2MGK7",-0.255251213167242,17.1247640090554,-3.57768644650568,0.00424354748175038,0.0258329824801447,-2.32602786496987 +"P08182",-0.173573696600336,19.6935110462622,-3.56522830714608,0.00433801940403985,0.0263120595125035,-2.34817218156944 +"Q9VH95",-0.15020737727189,20.9853810234146,-3.55319978066531,0.00443128393743967,0.0267363499230896,-2.36955928956428 +"Q9VSY6",0.317122237703263,17.6815540191244,3.55208522742861,0.00444002933375049,0.0267363499230896,-2.37154131253982 +"Q9VK60",-0.153596192952701,21.3633137116365,-3.54341077049457,0.00450870237859641,0.0269673741953419,-2.38696896383711 +"Q94524",-0.234453079180659,15.6918019122848,-3.54315673472154,0.0045107298564151,0.0269673741953419,-2.38742081685652 +"Q9VL10",0.245742128855859,16.7200217206071,3.53129082553084,0.00460648271430314,0.027441475598063,-2.40852957780984 +"M9PF61",-0.153232699107154,22.717507240348,-3.52774375774683,0.00463550911532718,0.0275161181650026,-2.41484068295265 +"Q9VFC2",0.243079700611592,19.8174939140012,3.51727315356187,0.00472229161593298,0.027884775318054,-2.43347326878829 +"Q7KMS3",-0.177469378850006,15.6195837876786,-3.51622740764152,0.00473105000899837,0.027884775318054,-2.43533441446923 +"Q94522",-0.171722581742252,23.4943840644114,-3.48821489106047,0.00497196604101032,0.0291683666052269,-2.48520368640904 +"Q7K511",0.435807391984795,16.598530515687,3.48687456404766,0.00498380364657654,0.0291683666052269,-2.4875904782294 +"Q9W5B4",-0.287949748572732,18.72159215829,-3.48060692623031,0.00503954310517944,0.0293914611868507,-2.49875237353209 +"Q9V406",-0.221857657405341,17.0459298741558,-3.4775301158464,0.00506713916116582,0.0294494359610613,-2.50423225791835 +"Q9V8F5",-0.356629976633103,16.0616263447071,-3.46787950927175,0.00515470427012049,0.0298543288977812,-2.52142217274996 +"A1ZB79",-0.16278594198614,20.8182318133719,-3.46231121159448,0.00520593193116209,0.0300466936372954,-2.53134185710534 +"A0AQH0",0.200817041361933,16.8835559088093,3.46033814669606,0.00522420871553156,0.0300482073707126,-2.53485700747806 +"Q9VW66",-0.195412548740467,21.4015817315576,-3.43722505298887,0.00544326481507179,0.0310123702495723,-2.57604269087929 +"A1ZBA5",0.253863369922769,15.5714284400307,3.4370884858302,0.00544458670143201,0.0310123702495723,-2.57628608513914 +"Q8IM93",-0.283696373518428,19.0675930632366,-3.43677558823914,0.00544761659659753,0.0310123702495723,-2.57684374280944 +"Q86BS3",-0.182344936116198,19.0081998515264,-3.43270058428255,0.00548723414229628,0.0310742014773339,-2.58410659269342 +"Q9VZ24",-0.218172080686884,21.8597449164904,-3.43182990844681,0.00549573707183064,0.0310742014773339,-2.58565844599329 +"Q7JVK6",0.229801321446498,17.3067710508147,3.42807229798969,0.00553258837269105,0.0311768831271915,-2.59235605592753 +"Q26377",-0.189841015738912,16.7730582797804,-3.42461469945963,0.00556672067458528,0.0312636029804991,-2.59851922394564 +"P40304",0.201437072622614,18.7292816502794,3.41802176356521,0.00563240200547202,0.0315263306883468,-2.61027191123838 +"Q9VVN2",0.304403688991311,14.8699563134575,3.41592583301632,0.00565344802833675,0.0315382986998853,-2.61400836435988 +"Q9VQR2",-0.15628416145821,21.3423838796138,-3.40770918430677,0.00573673280463653,0.0318962343937791,-2.62865726926934 +"Q9VAN7",-0.249885550369051,23.724997291026,-3.39873388764702,0.00582914141144851,0.0322753185748602,-2.64466034714464 +"Q8MSS7",0.554892322146086,14.0723467041167,3.39734151229441,0.00584361283549628,0.0322753185748602,-2.64714311734915 +"Q9VBP6",-0.191634112333823,23.1517542166488,-3.39342532758107,0.00588451217185693,0.0323090893042654,-2.65412634085408 +"A1Z7X8",0.237532769616497,16.957388334736,3.39304811009298,0.00588846711540568,0.0323090893042654,-2.65479899931768 +"Q9V3G1",0.256728130367197,21.0628229744707,3.38855974022942,0.00593573440340017,0.0324616556881032,-2.6628029151534 +"Q9W309",-0.23880304358045,18.5557629299153,-3.37556766015941,0.00607475088282846,0.0331133479495355,-2.68597314826164 +"P91927",-0.338155683050452,19.3526555524919,-3.37317480052511,0.00610071502008752,0.0331465558746123,-2.6902409112552 +"Q7K2Q8",-0.199452658315355,16.2078245572666,-3.36992709458145,0.00613613614812216,0.0332307632956746,-2.69603347194608 +"Q9VRP3",0.164410505269323,17.9418438116731,3.36541922515861,0.00618564946807412,0.0332372263372918,-2.70407390786209 +"O97477",0.161407346184248,20.9201240571983,3.36469270980261,0.00619366740434403,0.0332372263372918,-2.70536978098007 +"Q9VTB3",-0.189949029968346,19.7437860661667,-3.36351591076994,0.00620667725221067,0.0332372263372918,-2.70746883362055 +"Q7K0P0",-0.258492100241925,15.2448180052697,-3.36258079168566,0.00621703514222724,0.0332372263372918,-2.70913681662097 +"Q9VMU0",-0.206476280743388,21.1573680104107,-3.35681419444359,0.0062813000698453,0.03341286053372,-2.7194230324132 +"Q95SS8",0.335098519722937,15.5109201404261,3.35604253614411,0.00628995096378182,0.03341286053372,-2.72079951829229 +"Q9VGP6",0.161437932972621,17.9475394593416,3.35150609841088,0.00634105433451086,0.0335773924760766,-2.72889178152241 +"M9MSK4",-0.198261560158727,20.5494749393378,-3.34141068377209,0.0064563054885555,0.0340794859332613,-2.7469012403176 +"P12370",0.259868211560672,20.7332496911371,3.32954363865778,0.00659451704656651,0.0346921312422541,-2.76807253725559 +"Q9VDT1",0.215731378570883,19.0483554172597,3.32789397853698,0.00661396746704845,0.0346921312422541,-2.77101570279699 +"O17444",0.381392393653631,15.1860841980659,3.31712863180493,0.00674234084796983,0.0351376198060411,-2.79022273732973 +"Q94901",0.339546812259574,18.8920866294908,3.31552083206638,0.00676173010652725,0.0351376198060411,-2.79309137120941 +"Q9VFP6",-0.14927020142181,20.2218676071311,-3.31549054500539,0.00676209589792518,0.0351376198060411,-2.79314540950026 +"Q86BN8",-0.345413355911251,14.1913950473802,-3.31217350134082,0.00680227968285075,0.0352366537608542,-2.79906372633186 +"Q7JZW0",0.182790281503902,19.7252995947235,3.31022005112662,0.00682605816340783,0.0352503560884343,-2.80254913089813 +"Q8SXQ1",0.311299752567717,18.5154191402664,3.30706537173245,0.00686463758484374,0.0353401712701215,-2.80817784893688 +"Q9V3E3",0.301623200119597,15.0026620095224,3.30412615238576,0.00690078192052845,0.035416936133666,-2.81342217884849 +"Q8IP62",0.288690698495909,15.8198727514766,3.30119393370596,0.00693703329924969,0.0354937777397193,-2.81865405683652 +"Q9W127",-0.185681153933345,18.6484909480719,-3.29728684131756,0.00698563870514293,0.0356331662390777,-2.82562542877326 +"Q9VQD7",-0.183622210602582,21.0003981161485,-3.29468865904574,0.00701815269805922,0.0356898740864719,-2.8302613593834 +"A1ZBU5",-0.283947607477881,16.7632956673842,-3.28826909940462,0.00709915007307916,0.0359920435315989,-2.84171584376932 +"Q9VPL3",0.365833998319754,15.8248831230624,3.28119874040793,0.0071894604167635,0.0363122484506838,-2.85433164252417 +"A1Z9B5",-0.394800586394481,15.8745405464955,-3.27992546682403,0.00720584786401458,0.0363122484506838,-2.85660357806322 +"Q9VV75",-0.151083429790344,23.9868962499661,-3.27461491675702,0.00727460721749656,0.0365483278276635,-2.86607933556406 +"Q500Y7",-0.230944799426521,20.0868895070179,-3.26960171361419,0.00734012903938777,0.036766772485582,-2.87502451667072 +"Q7JYH3",-0.196905563824462,19.1274842862416,-3.26723666755215,0.00737124791646948,0.0368121003732667,-2.87924451574274 +"Q7K4T8",0.351402984063997,13.5402257611282,3.2601024812299,0.00746593354854894,0.0371736631611332,-2.89197411799627 +"M9PDU4",-0.140597902966711,22.5645412918935,-3.25429190406088,0.00754396531486534,0.0373662884746929,-2.90234188033666 +"Q9VLS9",-0.149854249305694,19.041872108744,-3.25388771719352,0.00754942399039059,0.0373662884746929,-2.90306306278403 +"Q9VFT4",0.214102467398678,15.7368403852488,3.25040015478257,0.00759669175348129,0.0374889995408485,-2.90928582073628 +"Q9W5W8",0.187470862122218,20.676095836201,3.24600762418004,0.00765665303322345,0.0376734432431171,-2.9171232049987 +"Q9VU04",-0.31244212726596,16.6346110872807,-3.24233842488053,0.00770710885680126,0.0378101693327779,-2.92366990285296 +"Q9Y136",0.215476328550809,15.2012590599801,3.23857108882339,0.00775926573719544,0.037954414221824,-2.93039161315445 +"Q94516",-0.14938740018653,23.3801237163897,-3.2312707452481,0.00786135829348548,0.0383413615015608,-2.94341665911511 +"Q9VJ58",0.181024744852733,17.1917418747813,3.22586364837437,0.00793785311459448,0.0386015714144128,-2.95306355806616 +"R9PY51",-0.255095440988942,21.5610567005652,-3.22371974232709,0.00796839206585771,0.0386374359472403,-2.95688846745277 +"P35381",0.195375189083563,25.5942171798297,3.21967847720533,0.0080262827782569,0.0388053323887899,-2.96409830570256 +"Q9V9M7",0.277180832993022,18.3743349984906,3.20998430558576,0.00816689743758033,0.0393710546990867,-2.98139253605169 +"Q9VCJ8",0.154806364395085,17.9005664989609,3.20556860239754,0.00823177379588685,0.0395694486787875,-2.9892697092116 +"Q9VUJ1",0.185862077265991,19.9898506885425,3.20021060001819,0.00831119725289648,0.039836428212159,-2.9988275137156 +"O77134",-0.168571352408982,21.71471802904,-3.19348744512993,0.00841195753798481,0.0400988546232309,-3.01081996559847 +"Q95RA9",-0.140629935675463,20.5327349952375,-3.19335013659005,0.00841402824827987,0.0400988546232309,-3.01106488332498 +"P42325",-0.160398691425602,20.088691882769,-3.1892339810945,0.00847634338939487,0.0402807429444748,-3.01840675060672 +"Q9VQI7",-0.146915919713457,19.2104568404491,-3.17626402648411,0.00867577467255924,0.0411113413461046,-3.04153907100285 +"Q9W0J9",-0.190749096474551,18.4365420208165,-3.17419380521238,0.00870804457521513,0.0411473607690052,-3.0452311023474 +"Q709R6",-0.269049533856613,15.1697299122323,-3.16852319244312,0.00879706040934687,0.0413731065925411,-3.05534365611176 +"Q9VCW2",0.282292394496773,15.3549830949299,3.16799318111458,0.00880542736232141,0.0413731065925411,-3.05628880751634 +"Q9VIX1",-0.389180001841188,17.3411689964387,-3.1638912624914,0.00887045498689377,0.041561569994772,-3.06360343112417 +"Q9VH76",-0.148225711844905,19.3588078301365,-3.16129712525838,0.00891183067615346,0.0416384693776582,-3.06822917089928 +"P13677",-0.427249557535944,17.026008086565,-3.1470653160195,0.00914232607996253,0.0425055918156667,-3.09360403293582 +"Q7KMQ0",0.118676636807358,20.7970861118416,3.14570996236016,0.00916458948406495,0.0425055918156667,-3.09602034272795 +"P17210",-0.146317250168536,20.8678198178634,-3.14514604281929,0.00917386873719426,0.0425055918156667,-3.09702567937709 +"Q9VXI6",-0.158109712663023,22.0387622436521,-3.13254644487199,0.0093836920368546,0.0433573360594833,-3.11948574780059 +"Q7K738",-0.134898459978459,19.7934597393909,-3.13052542294368,0.00941779755193713,0.0433947135818539,-3.12308804258569 +"Q9W3L4",-0.215403461896168,17.5834798481119,-3.12394219583599,0.0095297638844509,0.0437219429275432,-3.13482129585956 +"A0A0B4KI23",-0.198592492230055,20.5451472287763,-3.12327190370191,0.00954123934390031,0.0437219429275432,-3.1360158863964 +"Q9VGP7",0.319720986194623,15.8874410813416,3.11724051925906,0.00964512777492649,0.0440769126810339,-3.14676440126628 +"Q9W1X4",0.230004102656466,15.0759947573471,3.10270792245806,0.00990016860159487,0.0450165232781674,-3.17265839612992 +"Q9VSY0",-0.367616895806925,22.6496832498258,-3.10245232750033,0.00990471465412917,0.0450165232781674,-3.1731137523178 +"Q9VSL5",0.167949966347702,17.5091643042536,3.09199494130709,0.0100925308983071,0.0457454933108051,-3.19174228743407 +"Q24439",-0.150841971448386,24.3412478705413,-3.08825824732085,0.0101605113752838,0.0459288156476244,-3.19839783667674 +"Q8IPG8",0.294683463684665,15.8996950726651,3.08119519566992,0.0102902727548358,0.0463585904861267,-3.21097671230922 +"Q9VXY3",0.235714048462402,18.0818014606941,3.08006597005522,0.010311173303569,0.0463585904861267,-3.21298762750066 +"Q7K1Z5",-0.2395398762109,16.1231883511383,-3.07483069364018,0.0104086329225194,0.0465030629381035,-3.22230993998862 +"Q9W299",0.337259996232127,14.5354473081595,3.07433139405068,0.0104179762813788,0.0465030629381035,-3.22319897485907 +"Q9VDI5",0.159544503649261,16.6311109382236,3.07385249883264,0.0104269457666971,0.0465030629381035,-3.2240516694812 +"Q7K3W2",0.202884879889318,17.5433750969865,3.07176962808026,0.0104660477116106,0.0465529802212441,-3.22776021257022 +"Q9W2X6",-0.160268122200581,24.1252262035553,-3.06653042222285,0.0105650592832554,0.0468684012884839,-3.23708784982318 +"Q9VMT5",0.180928907947663,16.3998077042656,3.06252528200779,0.0106413860970715,0.0469624702252747,-3.24421767802042 +"Q9V3G7",0.174317697904254,18.0621341559124,3.06221874582417,0.010647250686432,0.0469624702252747,-3.24476333764883 +"Q9VDV2",0.326634168332337,14.3545459830234,3.05965430399638,0.0106964409625372,0.0469624702252747,-3.24932810453143 +"Q9VI09",-0.212426735619474,20.2055890287783,-3.0595272456699,0.0106988841040794,0.0469624702252747,-3.24955426431733 +"Q9VZD9",0.333377441345451,14.400322385628,3.05731339700272,0.0107415435438161,0.047025970160329,-3.25349473723342 +"Q9VII1",-0.175911839345446,19.4019412509131,-3.0423007804764,0.0110353871586311,0.0481077468052737,-3.28021047414298 +"Q9VN50",0.226117168093566,17.8485414752068,3.04101126115013,0.0110610018439527,0.0481077468052737,-3.28250477938766 +"Q9GU68",0.118272095338526,22.197832538882,3.04029955058471,0.0110751647321493,0.0481077468052737,-3.28377101852146 +"P45888",0.214266218720573,17.1329614684768,3.03355193929762,0.011210351904482,0.0485684856537037,-3.2957748729822 +"Q9VVW3",0.194959371696166,16.4638555756651,3.03044011248745,0.0112732556905888,0.0487144831396427,-3.30131003228985 +"Q9VF27",-0.124657022229567,22.2673454615467,-3.02745120597604,0.0113340094230525,0.0488504592187381,-3.30662611503745 +"Q9VVA6",-0.171018432415664,19.2611954909413,-3.02550257773516,0.0113737954889867,0.0488955950402829,-3.31009172332491 +"Q9VHN6",0.244104594567458,15.0018577241448,3.01181867611059,0.0116571753905498,0.0499850091296581,-3.33442307959501 +"Q0E8P5",-0.13952586667882,17.7289267859703,-3.00830104706229,0.0117311632429582,0.0501732827929599,-3.34067624562848 +"M9PHA0",-0.168297861763325,17.4597850726352,-3.00520672749738,0.0117966379906999,0.0503242766457478,-3.34617637596387 +"P48604",-0.13077591643124,20.1329798223979,-3.00073874015145,0.0118918283084626,0.0506009429043766,-3.35411729654833 +"Q9VLP3",-0.18517240043516,17.5308983556154,-2.99922304580676,0.0119242953279211,0.0506099862772833,-3.35681088581253 +"Q95RG8",0.417779220036577,13.33556278473,2.98979120865911,0.0121283435066985,0.0513453730182059,-3.37356968329492 +"Q9W425",-0.385222732754727,14.0370976998163,-2.98484036723457,0.0122368511847213,0.0515483533786487,-3.38236451171187 +"Q9VM58",0.252049536074486,16.4035703440865,2.98478372312983,0.0122380982841396,0.0515483533786487,-3.38246512798548 +"Q9VAQ4",-0.351776868674888,15.9677726617538,-2.96692249478201,0.012637776577199,0.0530977615384582,-3.41418244507514 +"Q9VNH5",0.254665756070185,17.082055682161,2.95868156366439,0.0128265775028722,0.0536406562207171,-3.42880987782829 +"O61443",0.303797186166577,16.5061246716231,2.95847664831215,0.0128313080527974,0.0536406562207171,-3.42917354302 +"Q95RQ1",0.636405896617434,12.0668652736604,2.95494521942289,0.0129131081582226,0.0538476610197882,-3.43544038459944 +"Q9V3W0",-0.1654815237974,20.9079599997511,-2.95337723235062,0.0129495957597569,0.0538651514395873,-3.43822266511848 +"P21914",-0.144799149577413,22.921784772959,-2.94898297031564,0.0130524039987232,0.0539261813790164,-3.44601912254398 +"Q7K012",0.220066064055652,15.4994444467147,2.94846728091512,0.0130645226516465,0.0539261813790164,-3.4469339948904 +"Q9W022",-0.159674497467154,21.1946251549918,-2.94807196212411,0.0130738202502717,0.0539261813790164,-3.44763530881288 +"M9NDE3",0.157097830450205,16.1425202176639,2.94723243980332,0.0130935872053367,0.0539261813790164,-3.44912462648675 +"Q9W1B9",0.227041800869383,20.4905204430389,2.94516108851594,0.0131424865172287,0.0539393271504866,-3.45279901785992 +"P48611",0.24277873754793,20.214541005084,2.94435969331556,0.0131614545265276,0.0539393271504866,-3.45422054500209 +"Q9VSL3",0.331503229294096,22.4791610296337,2.93703968974433,0.0133359856619571,0.0545206472650599,-3.46720289309909 +"A1ZBD8",0.384636524382813,14.1585573359741,2.92892752451483,0.0135321169678422,0.0551872154091951,-3.48158591319189 +"P20348",-0.224948240709328,17.4943805435423,-2.92158401155882,0.0137121566658204,0.0557850666307036,-3.49460213590988 +"P06002",-0.392528019038798,16.6984895206547,-2.91901221680092,0.0137757748611897,0.0559075242541713,-3.49915968021748 +"Q9VT23",0.266979966404442,18.1901220951191,2.90724381920653,0.0140706816187702,0.0569657692721086,-3.52000861274913 +"Q9VZI8",0.205651044098145,15.6370111848588,2.90543770615646,0.0141164976900221,0.0570128768691449,-3.52320741973808 +"Q9VE50",-0.316000740020236,14.6768074510857,-2.88685056491741,0.0145967661443103,0.0588101592480908,-3.55611257739875 +"Q9VAG9",-0.171790116438618,17.4913894258349,-2.88478900253932,0.0146510315859614,0.0588865558683942,-3.55976052974648 +"Q7KLE5",-0.130398479472404,21.4514752548699,-2.87655128268882,0.0148698901705966,0.0596225403955652,-3.57433382141714 +"A8DRW0",-0.232216918512332,21.5202855614131,-2.87175260333807,0.014998884397091,0.0598191037619197,-3.58282056834709 +"Q9VSL4",-0.159640424658669,20.9450271905823,-2.87174444638379,0.0149991046153387,0.0598191037619197,-3.5828349927743 +"Q9VU35",-0.188886270735125,22.7446862718274,-2.86957301781619,0.0150578430788189,0.0598191037619197,-3.58667466133563 +"Q7K2L7",-0.215889601543989,18.3857853767815,-2.86940623111964,0.0150623642565985,0.0598191037619197,-3.58696956865905 +"Q9W403",-0.209063337285574,15.2236035766723,-2.86505893309817,0.0151806885457867,0.0601458159011216,-3.59465550619923 +"Q9VZ64",-0.155761178310044,19.4579614242135,-2.85903961962087,0.0153460563371458,0.0606569241003772,-3.60529487884643 +"Q9VBT2",0.599683257196205,12.8326485584947,2.85304142081364,0.0155126339436185,0.0611703863308643,-3.61589381529101 +"Q9VNA5",0.216549210917567,17.3061510904575,2.85003957376405,0.0155966757812119,0.0613452181463603,-3.62119695460853 +"C0HK95",-0.310471221303086,19.8969547601003,-2.84787642955362,0.015657518376209,0.0613452181463603,-3.62501792542842 +"Q9VF86",0.207471943288812,17.501194695878,2.84752930664361,0.0156673039150776,0.0613452181463603,-3.62563104341354 +"Q9W483",0.272850070741079,15.5110808863967,2.84423905974135,0.0157603610533866,0.0615650637869995,-3.63144202164009 +"Q9VXC1",-0.11690704025429,18.3419854825272,-2.83792721015093,0.0159404242999328,0.062122961991327,-3.64258678307121 +"Q9VN01",0.195421260741554,15.9963390789222,2.82848830430893,0.0162135324908502,0.0630400284259631,-3.65924612319197 +"Q8IRD0",0.218730568039263,17.4674467872905,2.8249132754138,0.0163181877078993,0.0632993885971534,-3.66555375040286 +"Q9VAN0",0.146911875892748,20.4203511681605,2.82008299836567,0.0164606595870548,0.0636653154315304,-3.67407415599952 +"M9PFN0",-0.167281054457479,16.6947854213985,-2.81913189680262,0.0164888586729144,0.0636653154315304,-3.67575159597174 +"Q9VQM2",-0.156003454316217,20.1229383300911,-2.81574340244234,0.0165897156262639,0.0638093967059913,-3.68172711040288 +"Q9V420",0.173515785576305,17.5192363649313,2.81530916876484,0.0166026847544366,0.0638093967059913,-3.68249278885116 +"Q9W3R8",-0.274313961883191,17.4077724032216,-2.81189056094792,0.0167051408025233,0.0640555743876067,-3.68852013228097 +"Q9V396",0.183555818919505,20.7653238019371,2.80731479535857,0.0168432635655362,0.0644370725397121,-3.69658586296395 +"Q9VZ58",0.193927875638096,18.1201971310883,2.8014664556466,0.017021457273217,0.0649137998994259,-3.7068917389081 +"Q0KI81",-0.200103041537298,15.6247414000698,-2.80067519467814,0.0170457100455327,0.0649137998994259,-3.70828582621871 +"Q9VHG6",-0.200809727814267,15.672719462445,-2.79223617196681,0.0173065227702542,0.0657569020063418,-3.72315020586149 +"Q9W3M8",0.155688770131889,18.5426826003717,2.7908945817337,0.0173483497595475,0.0657660168157392,-3.72551259215174 +"Q9VH72",-0.572468400497534,18.6944157827014,-2.78307449797278,0.0175941677308551,0.0665466480160235,-3.73927913581099 +"Q9VLS4",-0.164150701061864,20.6126961650203,-2.77473837450231,0.0178600234612889,0.0673993645552711,-3.75394701590953 +"Q8I941",-0.132808316834872,19.0576005037959,-2.75894499514917,0.0183747052867848,0.0690905545320021,-3.78171573159618 +"Q9W4Z2",0.315100856164051,13.8309472739698,2.75845185954613,0.0183910109185905,0.0690905545320021,-3.78258234416698 +"Q9VHD3",0.117526044703343,15.6405995926894,2.7454073801526,0.0188275862621013,0.0703863746644273,-3.80549610564948 +"Q7KN94",-0.137752201918751,22.6517101429674,-2.74504213004946,0.0188399574975921,0.0703863746644273,-3.80613741958053 +"P48609",0.14350174862404,16.9832262476158,2.74437614264818,0.0188625356564742,0.0703863746644273,-3.80730673484866 +"Q9VVL8",-0.179552948879158,15.9257922612402,-2.73747425123267,0.0190981092177624,0.0711063530697045,-3.81942177989521 +"Q9VG81",0.480802078861087,15.4921309799493,2.7305808833445,0.0193363054360292,0.0718328674104605,-3.83151628131238 +"Q9VMI3",0.167486379045926,20.0989707894151,2.72636037052162,0.0194835947159851,0.0722000522071237,-3.83891843363669 +"Q24185",-0.139348583673367,18.7226106587089,-2.7252731536974,0.0195217167538446,0.0722000522071237,-3.8408249038841 +"P54622",0.197605761751564,17.8432193096859,2.72101190417112,0.019671846986675,0.0723344143656477,-3.84829576597755 +"Q9VRR3",-0.131369306565375,19.81374158692,-2.71999272265184,0.0197079235670087,0.0723344143656477,-3.85008227745559 +"Q9VA32",0.227664329655973,17.2144298288652,2.71979631214052,0.0197148835613126,0.0723344143656477,-3.85042654860011 +"P07668",-0.318482123066055,14.6935952294134,-2.7188098317421,0.0197498773031554,0.0723344143656477,-3.85215559420426 +"Q9VB46",0.215371841454878,15.1609683871979,2.7181061775889,0.0197748758697454,0.0723344143656477,-3.85338884560543 +"A1Z7H7",0.122412142977396,17.8594146109394,2.71081459512221,0.0200357755415403,0.0731283886286417,-3.86616476338841 +"Q9VVL7",-0.161716351957995,23.5033705515209,-2.70637365583119,0.0201963445873922,0.0734690487690842,-3.87394269932247 +"Q9U9Q2",-0.129990515266849,15.6265036729973,-2.70579935257012,0.0202172022691904,0.0734690487690842,-3.87494836310479 +"M9NEW0",-0.155875161293139,18.3485185226404,-2.7012878994096,0.0203817940010619,0.0739061573777635,-3.88284693045626 +"Q9VUY9",0.247754041498744,19.6156762456592,2.69729245660267,0.0205286674859563,0.0742772610988614,-3.88983991629595 +"Q9VM18",-0.185216103623464,22.9980497113099,-2.69322349225752,0.020679320412273,0.0746604035663884,-3.89695947807702 +"Q9VDC6",0.246941843594071,16.9158321893537,2.68460193686788,0.0210021569272468,0.0756589896908392,-3.91203771406443 +"Q9W140",-0.317680470096871,13.9559224845882,-2.6822867157386,0.0210896969732275,0.0756589896908392,-3.91608514298262 +"Q9VJD4",-0.119956371735519,20.7859898639028,-2.68222634278429,0.0210919845361153,0.0756589896908392,-3.91619067644189 +"Q9VP55",0.179551605735007,17.1141602092794,2.68055612765281,0.0211553672549827,0.0757235033933715,-3.91911006338257 +"Q9VXE8",-0.222231069790125,16.2542674699572,-2.67594997746912,0.0213311428864161,0.0761891784465569,-3.92715927807174 +"Q8SX89",-0.19457752777735,15.5946864154098,-2.67341851175927,0.0214283603781983,0.0763728741684502,-3.931581786143 +"A0A126GUP6",-0.155344372211365,17.0849380239928,-2.67129213588577,0.0215103593005237,0.0765016616487707,-3.93529592861369 +"Q7JYW9",0.432693870019069,17.0988504068374,2.66890895063266,0.0216026301089478,0.0766330349683761,-3.93945791224437 +"Q9VD64",-0.158354299263443,15.7500442822161,-2.66796760310138,0.0216391843345954,0.0766330349683761,-3.94110166440582 +"Q9VPZ5",-0.124167719509874,18.4097192194926,-2.66193255208097,0.0218749924453696,0.0773039987264333,-3.95163700416932 +"Q8I725",0.15174813169866,18.90022538463,2.65648210947767,0.022090138445324,0.0778848663688484,-3.9611474776179 +"O46106",-0.133621534928796,17.0170521734791,-2.6553272316555,0.0221359926678165,0.0778848663688484,-3.96316209215605 +"P55841",0.153883182046055,20.6319627944243,2.65423506635299,0.0221794433604335,0.0778848663688484,-3.96506713679045 +"Q9V9A7",0.553870469291105,16.0258458868216,2.64821062567631,0.0224206371334839,0.0785664343248974,-3.97557244581422 +"Q9V521",-0.525567173324953,17.8250079168567,-2.63975077129368,0.0227637100772675,0.0796014012764824,-3.99031587336015 +"Q9V3I0",0.308880542450574,16.3042814249873,2.63031823581731,0.0231523358352041,0.0807909961780763,-4.00674225301473 +"Q8SYQ4",-0.139880898799262,21.0323246279439,-2.62719906520475,0.0232822810199981,0.0810748324454213,-4.01217129571024 +"Q961Q8",0.269958506924786,15.3995501851485,2.61487070001387,0.0238029541856583,0.0825121191769232,-4.0336151410832 +"Q9W2M0",-0.132140269366676,17.8103476799311,-2.61472962117057,0.0238089783666044,0.0825121191769232,-4.03386040008643 +"Q9VSK4",-0.145253849704904,19.714445794296,-2.61312167914318,0.0238777449628053,0.0825121191769232,-4.03665551914178 +"Q9V3L6",0.259278102285151,15.793159514967,2.61270754567196,0.0238954877932315,0.0825121191769232,-4.03737535235631 +"Q9W265",0.176984946565852,17.0413490066314,2.61161483297053,0.0239423655165652,0.0825121191769232,-4.03927454441077 +"Q9V3H2",0.190969882001681,18.4135800907668,2.60902940261056,0.0240536421833182,0.0827246910552059,-4.04376743248254 +"A1Z8Z7",0.238047896907084,18.8997262300764,2.60292729971531,0.0243182988613979,0.0834628034996124,-4.05436742459833 +"Q9VF24",0.142369520168234,16.0603536342658,2.59514224401266,0.0246601108118613,0.0843351520067029,-4.06788249404471 +"Q24478",-0.207010908318722,17.4737395146761,-2.59483734195138,0.0246735936326565,0.0843351520067029,-4.06841161926599 +"Q9VJ22",0.574157495402439,13.1132308901598,2.59132147899463,0.0248295904608875,0.084694799363518,-4.0745119676977 +"Q9VJ80",0.197152229719123,16.4427565795115,2.58816297022122,0.0249705584237773,0.0849665229854512,-4.07999060400759 +"Q9VGU6",0.147217755991321,18.5691727391688,2.58725720500743,0.0250111287684991,0.0849665229854512,-4.08156141903745 +"Q9VJ86",0.281406866144897,16.4801297876057,2.58341572272496,0.0251839148681601,0.0853796138213233,-4.08822201641429 +"Q9VCC0",-0.177185558400815,17.5096043400956,-2.58130874533996,0.025279182291886,0.0855287546914115,-4.09187421656812 +"Q9VSL2",-0.119346584607058,20.4871469776389,-2.57504711597038,0.0255643979717316,0.0863186554996929,-4.10272378337795 +"Q9VYY3",0.132037680559403,17.505449745367,2.57300573663226,0.0256580637984307,0.0864598998298633,-4.10625951496558 +"Q7JX94",0.526423634869975,12.2905420255327,2.55527569894259,0.0264858811154934,0.0890694550416189,-4.13693948871377 +"A1Z6P3",-0.155350337777755,17.2736383349785,-2.55360089244174,0.0265654195052928,0.089157182565047,-4.13983484294809 +"Q7JQR3",-0.211958228620109,19.1439864555764,-2.54950241262054,0.0267610502098788,0.0895341792500442,-4.14691815891883 +"Q9VVW7",-0.157926992564589,16.6488835524811,-2.54900048870537,0.0267851051833166,0.0895341792500442,-4.14778542647021 +"Q9V3U6",0.1910784987572,21.1093752964266,2.54345580576145,0.027052251751594,0.0902463118433175,-4.15736313261106 +"Q9VZJ8",0.283289192559598,14.7856866804976,2.53147176422707,0.027638603152144,0.0920183434286952,-4.17804576254349 +"Q9VYV4",-0.16631456781443,15.5615416931137,-2.52484338614027,0.0279682421354556,0.0928025733829027,-4.18947448302321 +"A1Z843",0.127594362831765,17.4886573054546,2.52449990795883,0.0279854283043166,0.0928025733829027,-4.19006649884764 +"Q9VKC7",0.315375991005357,13.7385591135474,2.52094260531834,0.0281640294109527,0.0932095259076768,-4.19619659147436 +"Q9VVT6",-0.111967304390266,20.5162392948745,-2.51728173132859,0.0283489950615512,0.0936358886389454,-4.20250278829493 +"O46098",-0.142377278553234,18.0424649685857,-2.51595906820462,0.028416114463481,0.0936720927373248,-4.20478060370505 +"Q9VC48",0.141539918047386,18.4137355498786,2.50981927470329,0.0287297233157932,0.0945190897253316,-4.21535004450548 +"Q9VMF0",-0.153917297773697,13.7866576497953,-2.50179107998069,0.0291448980112508,0.0956962399267054,-4.22915987540248 +"Q9VLB1",0.199997585579567,16.6902531921331,2.48848426316501,0.0298460012912236,0.0978057566871531,-4.252023382874 +"Q9VKC8",0.148224919883987,17.646268161561,2.4830751373243,0.0301356791280761,0.098561397618884,-4.2613076678342 +"Q9V3V0",0.274452294929976,14.3800942284064,2.47483404320312,0.0305823007410559,0.0998263750216855,-4.27544198449024 +"Q6IGM9",-0.542998986007357,14.8786523123864,-2.46645294033478,0.0310431296952978,0.1009664675653,-4.28980290432359 +"Q9VUN9",0.167920193322528,16.7705354222863,2.46625500485143,0.0310540944606295,0.1009664675653,-4.29014189802383 +"Q9U6R9",-0.131865148143959,20.615722205173,-2.46518978144514,0.0311131680626884,0.1009664675653,-4.29196611763364 +"D0UGE6",-0.260342662042577,15.2920659498837,-2.45653791658598,0.0315970445545627,0.102176002074057,-4.30677430976751 +"Q9VV72",0.115357303896175,19.3998564762219,2.45633636910178,0.0316084035193126,0.102176002074057,-4.3071190928689 +"Q9VVB4",-0.156140183832145,16.100091598022,-2.4532986555147,0.0317800877400892,0.102532275339398,-4.31231466053186 +"Q8MKN0",0.183548675225321,16.599865847244,2.45205566237763,0.0318506002287731,0.102561392242458,-4.31444008522503 +"Q9V6U9",-0.133401039792627,21.9029067226191,-2.44715709241496,0.0321299722135747,0.10309900336962,-4.32281323443571 +"Q9V3B6",-0.237505774695666,13.4943259177498,-2.44696150668058,0.0321411761104332,0.10309900336962,-4.3231474491644 +"Q9V3P3",0.121684874335877,19.400048149005,2.44372050359577,0.032327387633181,0.103301003065206,-4.32868450615072 +"Q9VRP4",0.305357059886482,14.3316507082212,2.44370967143875,0.0323280117506222,0.103301003065206,-4.32870300864339 +"Q9VJD0",0.211274186505474,16.0763308983638,2.43566775887009,0.0327946130765139,0.104591614936186,-4.34243282316003 +"Q7KSQ0",0.133304143861274,20.8420983461984,2.42986197120656,0.033135536245326,0.105477241330542,-4.3523366378857 +"Q9W1X5",0.134027599732832,19.4067734607383,2.42819399879564,0.0332341171623257,0.105548177119915,-4.35518065398519 +"Q9VBV5",-0.132251922074797,17.2230439924558,-2.42734545751681,0.0332843771972875,0.105548177119915,-4.35662725619152 +"Q8MLS2",0.14134612930515,17.3656984448703,2.4253969336808,0.0334000701466338,0.105714074012496,-4.35994854906096 +"Q94529",-0.111931337975022,19.6532605551803,-2.42033760097554,0.0337022937625204,0.106468609840689,-4.36856853807658 +"Q7K3E2",-0.265999544749079,20.5612577814084,-2.41862663553822,0.0338050996005891,0.106591504978795,-4.37148242168515 +"Q9I7T7",0.182881212245036,14.4947377761041,2.4121901189908,0.0341945817823113,0.107616155496029,-4.38243863826246 +"Q9VFF0",0.167418438242777,23.610212242945,2.40946133978676,0.0343610156690646,0.107835826540949,-4.38708087937311 +"Q7K5M0",-0.262257470849462,16.7412324973188,-2.40892728107312,0.0343936808871611,0.107835826540949,-4.3879892407728 +"Q9VY42",0.127163384749997,15.1635186768384,2.40132765538264,0.034861782987779,0.10909841280228,-4.40090848482936 +"Q9V3W2",-0.135586604434707,21.5580358029291,-2.40026872103058,0.0349274970830941,0.109099372911238,-4.40270765984431 +"Q9W3H4",-0.233102936804322,19.5560340063926,-2.39710403311034,0.0351246043021976,0.10935933938035,-4.40808313894492 +"Q8MT58",0.118581016926051,21.5981769766415,2.39682796067194,0.0351418500646688,0.10935933938035,-4.40855196624938 +"Q9V7D2",-0.142359417542309,21.3962266095718,-2.39433447553886,0.0352979860931628,0.109640671887142,-4.41278565327765 +"Q9V3V6",0.11535411758625,21.5832902135523,2.38973963121813,0.0355874672422519,0.110334377992707,-4.42058364262551 +"Q8SX68",-0.182700152464568,17.5908799552316,-2.38773719687587,0.0357143417715581,0.110522304406232,-4.42398054380763 +"Q494G8",-0.173033277345622,15.1221226754694,-2.38167043322381,0.036101413458091,0.111350811115207,-4.43426665351451 +"Q9VGT8",0.139660851383372,15.2910497028195,2.38144957824689,0.0361155808233375,0.111350811115207,-4.43464095433771 +"Q9VD29",-0.139440856213259,20.7618293288761,-2.37971909071977,0.0362267743328672,0.111476404659656,-4.43757337189971 +"O76742",0.137841312862346,17.9096747290843,2.37873771163731,0.0362899806535932,0.111476404659656,-4.43923607930383 +"Q9VWF0",-0.183956639965867,16.4988725008125,-2.37412069582005,0.0365887777773433,0.112187649508472,-4.44705556348854 +"P08985",-0.132293269906789,20.6730399491593,-2.37217593982606,0.0367153470606832,0.112369172288476,-4.45034779866055 +"P61851",-0.120115697341721,23.5837516040717,-2.37013046009244,0.0368489288058103,0.112571452835333,-4.45380961655412 +"Q9VWD0",-0.15025519118316,18.2050202454115,-2.36252541400233,0.0373497182863331,0.113892742416094,-4.46667216137498 +"Q9W289",-0.144934662408446,17.4894702995801,-2.35722194620373,0.0377028378230753,0.114759732643959,-4.47563410108999 +"Q9VNI4",-0.160301802801696,16.539444444272,-2.35249574684959,0.038020238426173,0.115515041338537,-4.48361503535992 +"Q7KMP8",0.149150907103788,19.1886308254548,2.3503794782606,0.0381631974725451,0.115709767406661,-4.48718699228577 +"Q0E8V7",-0.162514815329398,19.7828727176982,-2.3491347799421,0.0382475221993971,0.115709767406661,-4.48928737180695 +"A8JNG6",-0.429330088528204,15.8635022931246,-2.34847282499807,0.0382924410122761,0.115709767406661,-4.4904042459947 +"Q9Y171",0.404445211555512,15.0372266751598,2.34600140220411,0.0384605969489976,0.116007731846163,-4.49457320461423 +"A1ZB68",-0.15202632209024,19.3780462076846,-2.34262674537577,0.0386913609138591,0.116493122751475,-4.50026345991057 +"A8DYP0",-0.377223767032291,15.3860588990668,-2.33835295337404,0.0389855276737587,0.117167315603296,-4.50746591995121 +"Q9V3Y7",-0.31007758984612,19.6338571286627,-2.33392017390595,0.0392929172178961,0.117878751653688,-4.51493169255981 +"Q9VJE3",-0.228463826603113,15.4137988498868,-2.32940900240448,0.0396081424743454,0.118611098109889,-4.52252463069019 +"Q8SXD5",-0.396070167730159,20.8792931149422,-2.32183425786834,0.0401429314610556,0.119997149958854,-4.53526287087358 +"Q9VVH5",-0.133660644360951,22.5625631567724,-2.31918297398398,0.0403317551858612,0.120345917084108,-4.539718144765 +"Q9VQX3",-0.404169406754459,15.3891228446954,-2.31211545207208,0.0408392916288007,0.121456387583966,-4.5515860849394 +"Q9VJ43",0.195496860866523,20.2301378961315,2.31197360894819,0.0408495404284202,0.121456387583966,-4.55182414432242 +"Q9V3Z2",0.134847433275512,16.1492699041948,2.30924731425335,0.0410470092349436,0.121826354811185,-4.55639878915198 +"Q95RS6",0.122832966634888,17.1035404425473,2.30015651122806,0.0417121277363583,0.123580513435605,-4.57163944430393 +"Q9NK57",-0.141909450372111,15.6088987914084,-2.29832703245218,0.0418472269712645,0.123760947851187,-4.57470403216024 +"P22465",-0.175113275629112,22.7071020438403,-2.2917282063074,0.0423380264292713,0.124942942152085,-4.5857507594628 +"P14484",0.211057100390462,19.2562911100107,2.2909441856592,0.0423967057902159,0.124942942152085,-4.58706250608824 +"Q9U616",-0.172435672026545,19.7214162740006,-2.28133268520072,0.0431224510476047,0.126771935395676,-4.60313067652132 +"Q9VT75",0.155045963964101,15.6049191997584,2.28071705884472,0.0431693401107578,0.126771935395676,-4.60415904519476 +"Q9W4X7",0.124555671808125,19.1490467928292,2.27948211067982,0.0432635473327819,0.126825302198735,-4.60622165857694 +"P35220",-0.106737457079511,19.3902532606664,-2.27729978039103,0.0434305077381976,0.127091380539147,-4.60986562085586 +"Q9VR94",0.288622699034676,16.3106306498486,2.27253010223458,0.0437975701067298,0.127941062938748,-4.61782549297856 +"Q9VFJ2",0.243544521267177,13.9112292591442,2.27128024724081,0.0438942469002873,0.127999307394544,-4.61991032515276 +"Q9VY05",0.232468935230187,18.2846899264902,2.26823187506,0.0441308989958721,0.128282032887248,-4.62499346460053 +"Q9VZZ5",-0.151049538349422,18.4932303163811,-2.26805052500415,0.0441450161134775,0.128282032887248,-4.6252957872493 +"P52029",-0.278511627918448,18.3729676908,-2.25464924322279,0.0452002994622425,0.131041798651167,-4.64761241022673 +"A0A0B7P9G0",0.19468867868569,14.3775246891028,2.25374520094946,0.0452723518642696,0.131041798651167,-4.64911614469502 +"Q8SZK5",-0.51643549164201,15.5690262492624,-2.2530177924067,0.0453304063679398,0.131041798651167,-4.65032591633323 +"Q8SZK9",0.238460317487991,22.1803287010149,2.25129267488808,0.0454683732462852,0.131213229368173,-4.65319443204311 +"Q9V9S8",0.140737838481446,19.9356788993537,2.24542290792562,0.0459408275454231,0.13234766899096,-4.66294860758758 +"Q9VSU6",-0.151361177739819,21.5985284624957,-2.2413124045032,0.0462744731034184,0.133079001959486,-4.66977371257127 +"Q9W236",-0.131669096682096,16.5541939228873,-2.23768426150023,0.0465708909449758,0.133700939924647,-4.67579405613247 +"Q9VJZ6",-0.165974027249835,19.7710720341031,-2.23488372483785,0.046800934632204,0.134130513688172,-4.68043863611438 +"Q9VF39",-0.242317215950257,16.02833649669,-2.22828820559531,0.0473470082024779,0.13546279533745,-4.69136846463779 +"Q9W1I8",-0.128907539023118,17.9917901196294,-2.22644075315721,0.0475010556956909,0.13567082345961,-4.69442781780239 +"O01666",0.112629764478783,22.6297958677089,2.21600692625576,0.0483800934734308,0.137945292160141,-4.71168809667854 +"Q8T3L6",-0.116290562869104,17.4927006860345,-2.20562965873914,0.0492697524821431,0.140052705659349,-4.72882420708385 +"Q9W461",-0.174720202925512,16.3556724529583,-2.20483821926621,0.0493382403897387,0.140052705659349,-4.73012985642754 +"Q9VWP4",0.2019414315643,15.1202250804107,2.20445889541924,0.0493710976784757,0.140052705659349,-4.73075556871296 +"Q9VD68",0.137626523868464,14.807542698942,2.19990117955446,0.0497675246464542,0.140937574041232,-4.73827048951227 +"Q9VYF0",0.189810365637976,16.1730273187074,2.19664874131284,0.0500522722291995,0.141503711997127,-4.74362954910424 +"Q9W2E8",-0.147290156267761,19.3657917184177,-2.19397078623691,0.0502878888058991,0.141929269929339,-4.74803972241888 +"Q8IN43",-0.815559482841657,18.1225810058562,-2.18741365259488,0.0508692776100604,0.143327626779697,-4.75882945112033 +"P41094",0.117072667591227,21.1900374089588,2.15858183323976,0.0535023627555111,0.15021609149167,-4.80612057972788 +"Q7K188",-0.172414158844823,22.0320236249183,-2.15783418859291,0.0535723343703308,0.15021609149167,-4.80734356338597 +"Q9VEC8",-0.107341105879863,16.5504694152478,-2.15770667196606,0.0535842772407335,0.15021609149167,-4.80755213575643 +"B7Z0C9",-0.198559179300739,15.9953493629152,-2.15209987864188,0.0541118991857722,0.151440684298436,-4.81671795803722 +"Q9VMX4",-0.157445436846857,17.3490560696306,-2.15008019905712,0.0543031636263564,0.151675192648412,-4.82001730643883 +"Q6WV19",0.191216976347427,13.5901941557665,2.14904915552848,0.0544010508422996,0.151675192648412,-4.821701134388 +"Q9VQ62",-0.130743367820301,19.705137552393,-2.14743440334159,0.054554691571731,0.151675192648412,-4.824337574776 +"Q9VDH3",0.159284096907744,20.5205581840305,2.1473847572798,0.0545594218159756,0.151675192648412,-4.82441862019022 +"Q9VE75",-0.295224956502617,15.4502342098912,-2.14546653537872,0.054742486743506,0.151930894988632,-4.82754946430725 +"A1Z8H1",-0.134762003533588,23.0993501014658,-2.14392293530866,0.0548902223270166,0.152087858540637,-4.83006803749922 +"Q9W077",-0.14415448342967,20.8370437239991,-2.14178657213188,0.0550953137568394,0.15240295745673,-4.83355255504033 +"Q6IDF5",-0.146964324766667,19.6520350598159,-2.13644905914289,0.0556108935865901,0.153574454474226,-4.84225209034545 +"Q95TN1",0.225835952516322,13.972950582635,2.133652176819,0.0558828809335836,0.154070488259864,-4.84680712536435 +"Q9VRJ6",-0.148512099877417,15.8002468410634,-2.13133105962031,0.0561095574322514,0.154399063292762,-4.85058545530917 +"Q7K3J0",0.0985288936019657,20.3051725956809,2.13053816834013,0.0561871890999441,0.154399063292762,-4.85187573969501 +"P18432",-0.33267083575598,23.7275372495705,-2.12708834858099,0.0565261442164392,0.155075014067468,-4.85748737145982 +"Q9VQJ8",-0.163411643173436,15.2579265196982,-2.1216799329778,0.057061433008431,0.156286486466442,-4.86627733933369 +"Q7KY04",0.159400836841641,13.9974073359323,2.11950222030073,0.0572783189909057,0.156597053909636,-4.86981400903391 +"P35992",0.137762037387189,15.8472117383929,2.11860426199482,0.0573679764886309,0.156597053909636,-4.87127187800623 +"Q9TVP3",-0.164030387181526,22.9322496698029,-2.11771923107912,0.0574564730172047,0.156597053909636,-4.87270850602244 +"O77263",-0.136593059532304,15.5725073927185,-2.11506359576613,0.0577227918113124,0.157066258958025,-4.87701776142037 +"Q9VCE1",-0.182406808093727,13.763489791853,-2.11312105258948,0.0579183367066821,0.157323104573576,-4.88016845700971 +"Q9VHI1",0.155058970576553,14.1980837401519,2.1122539892997,0.0580058209309049,0.157323104573576,-4.881574392024 +"A8JNT7",0.13977806735207,16.8172469075921,2.11115037778664,0.0581173527329568,0.157369714867812,-4.88336353654699 +"A1Z933",-0.170215409709789,15.788118466827,-2.1053950633214,0.058702278102019,0.158695947932201,-4.8926874986634 +"Q9VIV6",0.591132614740927,14.7645734609891,2.10205682940532,0.0590440918478853,0.159361723628273,-4.8980907043471 +"Q9VRL0",-0.144127812943989,22.7783865413358,-2.09034739679984,0.0602579628550164,0.162375253703017,-4.91701448151671 +"P09208",0.322556131022376,12.9574306886497,2.08524976502086,0.0607937294889949,0.163554743205876,-4.92523866897514 +"Q9W1X8",0.113488143481565,16.108538355978,2.08346725705439,0.060982129407377,0.163565343774501,-4.92811240855116 +"Q59E14",0.217650743058103,14.558861429415,2.08335709124021,0.060993791263633,0.163565343774501,-4.92828998182759 +"Q9VWX8",-0.108531865871882,20.5485931275316,-2.07945301797763,0.0614084241104019,0.16406855710128,-4.93458022751748 +"Q7KUA4",-0.0942624169607491,18.8290473055139,-2.07879863378797,0.0614781821947906,0.16406855710128,-4.93563407148479 +"Q9VEA1",0.102877199875014,18.2032587451212,2.0774839953952,0.0616185495679832,0.16406855710128,-4.93775077753404 +"Q9Y162",-0.128872090291228,20.2159846943879,-2.07704460980908,0.0616655311154445,0.16406855710128,-4.93845810484416 +"P92177",-0.123866027019691,24.1779886226673,-2.07697242649074,0.0616732525794378,0.16406855710128,-4.93857430005364 +"P08646",0.126402062037357,18.8809474367599,2.07497450821282,0.06188733167106,0.16427175753312,-4.94178969962385 +"Q9VMH9",0.109996516698725,20.0297063244427,2.0743863851921,0.0619504827418715,0.16427175753312,-4.94273595343262 +"P19107",-0.0933619950893494,24.0080751064186,-2.0735063825284,0.0620450882768977,0.16427175753312,-4.94415160536007 +"Q9VMM6",-0.134835412496205,18.4213936981768,-2.06971028005961,0.0624547512957363,0.165094334645465,-4.9502553538526 +"Q9VZ67",0.152749203346774,15.1215016457703,2.06707448594139,0.0627406920391099,0.165481427701253,-4.95449056532559 +"Q7K0E6",0.163771735244818,16.6806075176996,2.06653281664316,0.0627996065556915,0.165481427701253,-4.95536063009994 +"Q9VRQ9",0.145482051529862,14.6987287678438,2.06085952660519,0.0634197917958264,0.166852070529083,-4.96446741671179 +"Q9VXQ5",0.0990696092735774,20.3486265476028,2.05714970349001,0.063828443245394,0.167598549252908,-4.97041646840843 +"Q9VTC3",-0.224234368180969,17.1451078575115,-2.05646186225225,0.0639044828086626,0.167598549252908,-4.97151896593904 +"Q9VLT3",0.0979387178828404,19.3749954088305,2.05525001902415,0.0640386567356425,0.16768678090275,-4.97346095609818 +"Q9W0D3",0.283170818273845,12.7783129971127,2.05412559440226,0.0641633882276905,0.167750049473022,-4.97526240327336 +"Q9VSY4",-0.102112980644709,20.4278142645296,-2.05076319934812,0.0645377375040701,0.168464704470718,-4.98064670362417 +"Q9I7J0",-0.164450542251743,21.0468081824944,-2.03777179206209,0.0660034565046672,0.172021508515289,-5.00141318379299 +"Q9VMD3",0.271521469205871,17.7427163446969,2.0367519066455,0.0661198330538301,0.172055977431808,-5.00304094060591 +"P45889",0.101320527239547,19.1527875064974,2.03444004314832,0.0663843459072133,0.172475216469208,-5.00672935920272 +"Q95NU8",-0.190671174966603,17.3853793197788,-2.02975578762276,0.0669233373878628,0.17360517381486,-5.0141969606903 +"Q9W0B3",-0.0951406358224389,19.1888267296801,-2.0250535367723,0.0674685166063567,0.174747648601557,-5.02168539718733 +"P36975",-0.155606566613695,22.3101659333048,-2.01782853790233,0.0683142835705414,0.176425487425114,-5.03317593544783 +"A1Z6R7",-0.198581156022025,17.9415868331853,-2.01771327256133,0.0683278566406616,0.176425487425114,-5.03335909967275 +"Q9VRP2",0.106100243965951,20.4178529289917,2.01200467565442,0.0690032338396351,0.177893962974515,-5.04242442716873 +"Q9VBP9",0.194473113304173,13.8040660131588,2.00670469606329,0.0696358444997555,0.178964422527518,-5.05083027470082 +"B7YZT2",-0.211522073662664,18.4478980704297,-2.00628964676963,0.0696856130834937,0.178964422527518,-5.05148811674241 +"Q9VXH4",0.143311826041403,17.123462282462,2.00583362860263,0.0697403325197162,0.178964422527518,-5.05221082077642 +"Q9VW00",-0.178997212157885,15.7867579748493,-2.00493355479246,0.0698484536604334,0.178966544862677,-5.05363704730489 +"Q9VZF9",-0.153348843922142,19.1541645894424,-2.00068787476945,0.070360577009486,0.179803456040951,-5.06036060555556 +"Q9VF15",-0.112600948804019,20.9279710359359,-2.00043919583144,0.0703906815316195,0.179803456040951,-5.06075421415676 +"Q9VIM0",0.107882194610188,18.0510626580257,1.99761813635761,0.0707330348266895,0.180187715616443,-5.06521778812557 +"P36241",0.121696234377765,19.84981781317,1.99691389447837,0.0708187408300817,0.180187715616443,-5.06633160534035 +"Q9VVG0",0.11145821377157,18.0645139256447,1.99653253367045,0.070865192712462,0.180187715616443,-5.06693468280444 +"Q9VCR4",-0.131789363505911,15.1183526134046,-1.99498230796017,0.0710543114281277,0.180220938843521,-5.06938562989839 +"P00334",-0.138476219188934,25.205458996531,-1.99465459137229,0.0710943511744824,0.180220938843521,-5.06990364450713 +"Q9W2D9",0.171141312558998,17.6524953387624,1.99189003700198,0.0714329566141228,0.180804509305549,-5.0742719327101 +"P14318",-0.253928057657806,22.1754578303237,-1.99004644788847,0.0716595957505956,0.181103341987869,-5.07718342158549 +"O44386",0.113472958345863,16.8658724634643,1.98789634573409,0.0719247616758866,0.181498490885596,-5.08057737351588 +"Q9VSN9",0.172517294064191,16.4692218799586,1.98624065909976,0.0721295751747809,0.18174037974552,-5.08318971199849 +"Q7KV34",0.155147495335431,20.849571925552,1.98274139285783,0.072564232828486,0.182559789378453,-5.08870747343288 +"Q9VPC1",-0.170079500973657,16.1561498197639,-1.98174876878004,0.072687973696441,0.182595692960337,-5.09027184113684 +"Q94523",0.230045824124524,20.2154899775159,1.98010775239132,0.0728929740827493,0.18283530942861,-5.09285725829015 +"Q7JZK1",-0.121340050159422,21.5460142804668,-1.97783261881239,0.0731780800674982,0.183274831160041,-5.09644004905076 +"Q9VXR9",0.223000141216762,15.1341591792751,1.97669966753365,0.0733204412017804,0.183356065853928,-5.09822344825525 +"Q95RB2",-0.143080239008786,24.2859157771627,-1.97064049818212,0.0740861879952271,0.18499365505395,-5.10775305362028 +"Q9VJ28",0.132149315035917,18.9644467044786,1.96634835024882,0.0746331116510638,0.185859252014528,-5.11449512275888 +"Q9VRY5",-0.102359979652434,16.8880475949649,-1.96617175138084,0.0746556947540369,0.185859252014528,-5.11477237225906 +"A1Z9E3",-0.0981059760861918,21.7735380038497,-1.96359894609563,0.0749854203309736,0.18640190925792,-5.11881016801642 +"Q9VKY3",0.112255347213154,18.7400257728273,1.96209508473199,0.0751787778273371,0.186604466392854,-5.1211691747084 +"Q27268",0.0955039890212994,18.9284030142877,1.9596218664034,0.0754977761562,0.187117816684311,-5.12504685895279 +"O97418",-0.109696936404085,21.0175986213052,-1.95857194387689,0.075633575718667,0.187176267505544,-5.12669228949128 +"Q9VGK3",-0.0996788579369188,17.1291191426775,-1.95620674691561,0.0759403268605047,0.187656985486403,-5.1303974515997 +"Q9W3W4",0.129796934581833,15.8534533806491,1.95312689448299,0.0763414940738196,0.188369248691022,-5.13521890698098 +"Q9VFP0",-0.144467954982929,16.5573444425752,-1.94613062342436,0.0772601074406962,0.190354297209869,-5.14615777048432 +"Q95083",0.108766201756058,19.8708094430273,1.94468209759638,0.0774515747569705,0.190544582145467,-5.14842019757338 +"Q9VSR8",0.178391337743259,15.5036475425365,1.94181164631572,0.0778322922775225,0.191199209895298,-5.15290107998123 +"Q9W2M4",-0.0880741442575506,22.6892054336685,-1.9291365452351,0.0795342341262718,0.195092797827384,-5.17264861003517 +"Q9VFV9",-0.0979805387452259,21.3903294678431,-1.92289146011129,0.0803853831677221,0.196891070666315,-5.18235488005624 +"Q7K0X9",-0.111207820531646,16.7101419823065,-1.90983939091413,0.0821914871182517,0.200780049565997,-5.20259021219742 +"Q9VEX6",-0.104690785653592,20.7991687881599,-1.90967913813025,0.0822138931975877,0.200780049565997,-5.20283823313587 +"Q9VSY8",-0.14057372562046,18.0589562024527,-1.90820458152003,0.0824203258874662,0.200879590113495,-5.2051198938637 +"Q9VCA5",0.217586258147605,14.203064576896,1.90766834768272,0.0824955151245468,0.200879590113495,-5.20594941823227 +"Q03427",-0.0855652426376778,21.7642332208665,-1.90461928655616,0.0829242491722202,0.201629223934786,-5.21066392368593 +"P22812",0.392441292067069,11.5390378254514,1.90344877547783,0.0830893815443468,0.201736664360947,-5.21247277903887 +"Q8SYQ8",-0.212256519735714,16.0712838826449,-1.89922695557856,0.0836875036198129,0.202539083731756,-5.21899233516023 +"Q8IR45",-0.103901993061521,14.8576351172618,-1.89879253767971,0.0837492737852116,0.202539083731756,-5.21966277164972 +"Q9VVI2",0.222360055555136,13.9100494552176,1.89854736664437,0.0837841533422731,0.202539083731756,-5.22004110954226 +"Q9VU70",-0.354254373266818,14.7984382872286,-1.89271733374339,0.0846175196015102,0.204257630528682,-5.22903049130956 +"Q9V9T9",0.232909238285668,13.3796008335553,1.88939926258166,0.0850952153194773,0.20483154120319,-5.23414039140058 +"Q95R98",0.105022924194644,16.2040847976956,1.88855135427425,0.0852176840822418,0.20483154120319,-5.23544545665875 +"Q9VF51",0.111942100761187,17.6638527936904,1.88850990637377,0.0852236748171546,0.20483154120319,-5.23550924390089 +"Q9W136",-0.11170360810927,18.1844218707138,-1.88730500915986,0.0853979957705351,0.204955189849284,-5.23736323773 +"Q9VME3",0.150149928116795,15.7558433705495,1.88107100060935,0.0863051589701472,0.206360609684688,-5.24694595243131 +"Q9VMS1",-0.110838668753576,22.4137581619113,-1.88001358342808,0.0864599079230235,0.206360609684688,-5.24856977057242 +"Q9V597",0.196034450272109,20.2047282895068,1.87917142918624,0.0865833362038856,0.206360609684688,-5.24986268631211 +"Q9VVH3",-0.131220895573829,19.9078193306557,-1.87764893383597,0.0868068877327338,0.206360609684688,-5.25219934014106 +"Q9VLR3",-0.119470795548249,16.772376997647,-1.87763715558398,0.0868086192245035,0.206360609684688,-5.25221741305546 +"Q9VCD9",-0.228350291494202,18.5313389090041,-1.87657674934725,0.0869646369100159,0.206360609684688,-5.25384429457498 +"Q9W552",0.0947792177132669,16.147577430392,1.8765386952355,0.086970240596738,0.206360609684688,-5.2539026686415 +"Q9VB64",-0.11711656862548,18.7721128286337,-1.87604368390746,0.0870431640622854,0.206360609684688,-5.25466194834467 +"Q8IN51",-0.271378941472536,17.1225849871741,-1.87567818699115,0.0870970438956958,0.206360609684688,-5.25522250455299 +"Q8IQW5",-0.13074661780659,21.9315195527309,-1.87470875740991,0.0872401009280687,0.20640636645109,-5.25670902957088 +"Q9XTL2",-0.144182363100391,16.9657417157141,-1.87386283828865,0.0873651078669383,0.20640934833152,-5.25800584028226 +"O96299",0.182453210653541,15.6259442183629,1.87134137183282,0.0877386969119321,0.206972973204055,-5.26186950873475 +"Q9W229",0.170830007007396,19.1350299285641,1.87057969395476,0.0878518375470451,0.206972973204055,-5.26303610766212 +"Q8T4G5",0.0710995704407651,19.595822085827,1.86942529139228,0.088023569114396,0.207085068099877,-5.26480374294181 +"Q9VE24",0.299330085450308,15.9067507687377,1.8665425195994,0.0884537617577216,0.207804048749126,-5.26921541431604 +"Q9VAG3",0.15341208918842,16.7540732293102,1.86347966824665,0.0889129382047161,0.20858900270811,-5.2738988070772 +"Q9VN73",0.113017639092256,18.3587561219203,1.85820593636481,0.089708685449663,0.210160235014098,-5.28195348162952 +"Q9W1V3",0.143555684967909,16.3461163048003,1.85694689479774,0.0898996225185263,0.210312160393972,-5.28387468267374 +"Q7JQW6",-0.108408413890809,15.855384656807,-1.85574264112042,0.0900825988526392,0.210445062865829,-5.28571164591481 +"P23128",0.179040504209093,14.6230559670091,1.85403493028629,0.0903426557066372,0.210757412193945,-5.28831551335392 +"A1Z992",-0.295673309044739,14.3268346501935,-1.85116477683709,0.0907812816846551,0.211269263925528,-5.29268901414516 +"P53997",-0.316635715622894,17.4236335370105,-1.85045084017541,0.0908906898619658,0.211269263925528,-5.29377634996101 +"A1Z6V5",-0.127418213454838,20.1211593081969,-1.85011599451321,0.0909420452629072,0.211269263925528,-5.29428624898306 +"Q9VCT4",0.322488925477687,13.3554192826763,1.84834303490666,0.0912144071846232,0.211568824840178,-5.29698528416624 +"Q9VI10",0.142027395203449,17.1800692931958,1.84762663039492,0.0913246725928825,0.211568824840178,-5.29807550512755 +"Q9V8Y2",0.139564227837663,19.8993720698676,1.84529003965755,0.0916851562972197,0.212109349103693,-5.30162977372714 +"Q9VPX6",0.264469312722532,21.4269785580863,1.84408683245871,0.0918712910532133,0.212245586532908,-5.30345909044162 +"O77410",0.251044375430528,14.23373745635,1.83864318292734,0.0927177388881099,0.213897415478356,-5.31172756997791 +"Q9W2D6",-0.090137543215846,19.6367336563508,-1.83784298087219,0.0928427630733391,0.213897415478356,-5.31294192560844 +"Q9VC53",-0.120505459820361,17.8921272785657,-1.83673945010943,0.0930154320327979,0.213999642249251,-5.31461614213164 +"Q7JNE1",-0.102170310000478,17.8275747035293,-1.82558815767359,0.0947767814510795,0.217751613581819,-5.33150428528262 +"Q9VW57",0.141516851384775,16.5419271413126,1.82471438251551,0.0949160709092643,0.217771673007776,-5.33282526364549 +"Q24492",-0.10793275545311,15.1029894557293,-1.82314552902354,0.0951666317247176,0.218046623237403,-5.33519621706181 +"A1Z6G9",0.200593759044487,14.2798662896977,1.81545674448421,0.0964033358007225,0.220384792165053,-5.34680019648189 +"Q9VKV2",0.2085910940893,14.9700270487171,1.81515987460762,0.0964513778660002,0.220384792165053,-5.34724770675498 +"Q9VRU1",0.180662323573749,17.2339657909374,1.80960645360883,0.0973541042779591,0.222143154494714,-5.35561182265392 +"Q9VGF7",-0.120656248167059,20.0379004316469,-1.80381896275898,0.0983030466380489,0.223906607162476,-5.36431372802424 +"Q8WTC1",0.139216417685443,15.0255062861996,1.80325836602502,0.0983954095024552,0.223906607162476,-5.36515582247262 +"Q9W2N5",0.410539442057763,12.9209181303799,1.79675902372146,0.0994719961826928,0.225855759325548,-5.37490834699894 +"Q9VN91",0.169753712799469,19.5804282233065,1.79645407196362,0.0995227716452504,0.225855759325548,-5.37536546823002 +"Q9VE85",0.160097588117031,15.7632991566394,1.79095470991524,0.100442477403161,0.227633223245207,-5.38360170889731 +"A0A0B4LFA6",0.12640424311823,19.5101335294313,1.78253822353116,0.101864962843292,0.230543769365822,-5.39618002120167 +"Q9Y0Y5",0.116082144498588,18.6116459324699,1.78104030272346,0.102120033180771,0.230807879871987,-5.39841522310874 +"A1ZBK7",-0.144074602730264,17.6132565449253,-1.78022889658057,0.102258443066902,0.230807960805943,-5.39962557300104 +"Q9VBS7",0.13135545994864,19.8240097463065,1.77926247293335,0.102423517402198,0.2308681446309,-5.40106676055 +"P00408",-0.0810905388520453,21.2787819759933,-1.77746015212688,0.102732015213001,0.231152427710793,-5.40375333181494 +"Q9VLP2",-0.143327647683719,19.367404950131,-1.77690738279647,0.102826799377343,0.231152427710793,-5.40457699789541 +"A1Z9I0",-0.124497656454647,19.4427048213335,-1.77522768513804,0.103115305172288,0.231489002728637,-5.4070789982345 +"Q9VXN1",-0.19856728156345,13.6509484213031,-1.77113021014178,0.103822162814961,0.232288910016319,-5.41317690494337 +"Q9VN88",-0.142064208044708,17.0693186726126,-1.77029944953408,0.103966010684202,0.232288910016319,-5.41441229800781 +"Q8SZA8",-0.126259366450874,18.0429467007743,-1.77017003547959,0.103988435194217,0.232288910016319,-5.41460471581623 +"Q8MLP9",-0.167466344163543,15.0362077402394,-1.76944122620227,0.104114802884872,0.232288910016319,-5.41568819152252 +"Q9W0H8",-0.110291548835722,19.4508460460915,-1.76913506987225,0.104167928472546,0.232288910016319,-5.41614326120509 +"Q9VDK9",0.145648206175643,15.4614167342875,1.76768730957278,0.10441948205893,0.232538980072489,-5.41829461340562 +"Q8SXF2",-0.141160919307653,15.5701163616107,-1.76607390318148,0.104700463621311,0.232853831093795,-5.42069095770386 +"P02299",0.083177608362714,22.0431832716936,1.76471382912354,0.104937856479601,0.233071031435385,-5.42271008735257 +"Q7K1M4",0.0885868907093563,17.1263408752882,1.76284513656252,0.10526481820593,0.233486325488686,-5.42548288237077 +"Q9VSL9",0.195532332045325,14.5130106441866,1.76069113538083,0.105642840435117,0.233953793889887,-5.42867698560463 +"Q9VY91",-0.317557078285709,17.0312002162135,-1.76004717567257,0.105756091482599,0.233953793889887,-5.42963146975699 +"Q7K0S5",-0.098444360533211,18.3070305593687,-1.75798852662799,0.106118874341135,0.23444540715366,-5.43268150997175 +"Q9VGV9",-0.12660511203123,16.1142958710326,-1.75413207549189,0.106801494372413,0.235636378291998,-5.43838973598327 +"Q9W1G0",-0.105801369833856,21.7951866620571,-1.75329169625125,0.106950771888662,0.235636378291998,-5.43963271035484 +"Q9VFS8",-0.13668575729055,17.3731314547144,-1.75255515330407,0.107081759439649,0.235636378291998,-5.44072182871882 +"Q9V3J4",-0.107903095557552,16.5937253346355,-1.74597783145863,0.108257900445424,0.237910642876109,-5.45043620489436 +"Q9VY78",-0.108959941179716,18.8159735078106,-1.74462151338012,0.1085018756903,0.237927355288579,-5.45243685284655 +"Q9VN21",0.0805084967433807,22.0326961235611,1.74434991827847,0.108550789792931,0.237927355288579,-5.4528373656858 +"Q9VAC4",0.0825722472219468,19.363841019646,1.74315599010391,0.108766050920966,0.238086316189202,-5.4545975956634 +"Q9W158",0.14478890393724,17.0014845355471,1.74071960148785,0.109206515297432,0.238737178920206,-5.45818748838322 +"Q9VEV7",0.592148725425002,12.8852873077029,1.73700087020957,0.10988190229309,0.23989923170795,-5.46366134981997 +"O97062",-0.113700255742003,18.5094574885979,-1.73524706123639,0.11020172589489,0.240282978813957,-5.46624059362522 +"Q7KJ08",0.12539847406536,14.510018186254,1.73302563335671,0.110608024841678,0.240854027984229,-5.46950541132141 +"A0A0B4K692",0.115441573937673,15.8394943903569,1.72849413659807,0.111441009343117,0.242351504021277,-5.47615791736025 +"Q24583",-0.101856506591034,21.2825994283386,-1.72175480114731,0.112690256151295,0.244479087603251,-5.4860332048673 +"Q05856",0.121883923251611,13.681508887379,1.72163551198585,0.112712481035312,0.244479087603251,-5.48620780223619 +"Q7KLW9",0.136301534720594,17.1689296257497,1.7190804925375,0.113189453675233,0.245194816532842,-5.48994578087036 +"Q9VDL1",-0.111287677540819,14.8806691385649,-1.71728117832452,0.113526435498229,0.245605829326908,-5.49257624842131 +"Q9Y125",-0.103088263022837,22.6918685831969,-1.71606033999019,0.113755589904846,0.245782803058656,-5.49436012146569 +"Q9VY87",0.142117551361075,17.5334104904791,1.70781532299974,0.115314074917061,0.248827783909001,-5.5063884201312 +"Q9VYT6",-0.136124524606334,16.3354147264617,-1.70398630839626,0.11604431507209,0.250079996822023,-5.51196297652325 +"Q9W4K0",0.0796788538437561,19.6555910213194,1.70313118460661,0.11620796136646,0.250109522011942,-5.51320693358311 +"Q7K486",0.10054465873548,17.6590666347211,1.70198436222651,0.116427754244424,0.2502596573192,-5.51487465672075 +"Q7JWX3",0.179766668955445,17.90374858627,1.69903110465073,0.116995468213088,0.251106078688626,-5.51916630526731 +"Q9VHG4",0.181835973746473,18.4101481698476,1.69832355147736,0.117131850029335,0.251106078688626,-5.52019386961245 +"Q9VI64",-0.123671664799037,20.9078606325836,-1.69759119283812,0.117273162648945,0.251106078688626,-5.52125719511417 +"Q9W3B3",-0.129794851826311,15.7277149640269,-1.69614579723069,0.117552506446939,0.251215279540018,-5.52335500601499 +"Q9VYG8",0.468414098615371,15.1873078950761,1.69544805484461,0.117687567824125,0.251215279540018,-5.52436731778882 +"Q7K519",0.135116613412608,15.5825157096549,1.69480718200312,0.117811743038015,0.251215279540018,-5.525296906267 +"Q9VCR9",-0.0923272350167004,19.3448628195836,-1.69421495271062,0.11792659705026,0.251215279540018,-5.52615575417863 +"Q9Y119",-0.38499807070286,17.8947057673184,-1.69167170838125,0.118420957915365,0.251709815176084,-5.52984195455687 +"A1Z8Y3",-0.114199677454184,15.1414756668116,-1.69146841329964,0.118460554504332,0.251709815176084,-5.53013647205476 +"Q9VIW6",0.109078244758447,14.9720328060109,1.69028993140027,0.11869032484052,0.251877177905836,-5.53184335222863 +"P14199",-0.109538832304231,18.5327759486574,-1.68827410675881,0.119084274617961,0.252392083942515,-5.53476139626442 +"Q76NQ0",0.241213385297465,14.4424926069052,1.68669061650218,0.119394550992681,0.252728567329685,-5.53705217080611 +"Q7K1C5",-0.0900050655089935,17.5441016251712,-1.68349136658771,0.120023625931855,0.253738159764682,-5.54167653994588 +"Q9XYZ5",0.113079380342342,15.9182019502723,1.67982604044206,0.120747973977432,0.254477154364413,-5.54696823272774 +"Q9VMR0",0.110811610596908,17.2929384975561,1.67910070012466,0.120891777426602,0.254477154364413,-5.54801461080466 +"Q9VM10",0.109181826913595,16.9238477657801,1.67871946519629,0.120967420838863,0.254477154364413,-5.54856447426293 +"Q4QQ70",-0.126130701124033,16.1575839130139,-1.67863874093247,0.120983443291954,0.254477154364413,-5.54868089515362 +"Q9V784",-0.259515618979364,14.362892130229,-1.67658065409089,0.121392578463544,0.254696367075953,-5.55164795760398 +"Q9W401",-0.144039309620325,24.4977556152842,-1.67657827234186,0.121393052653107,0.254696367075953,-5.55165139002849 +"Q9VYV3",0.0998793322470384,20.5006004152391,1.67512955193479,0.121681788277092,0.254981435736418,-5.55373865775437 +"Q9VJZ1",0.1639290111398,15.4178262826175,1.67359391518318,0.121988513452179,0.25530343844195,-5.55594998306101 +"Q8SY69",-0.108466567660315,18.9644854738045,-1.67141766066788,0.122424371939909,0.255894551874395,-5.55908173847865 +"Q9VHE4",-0.0762720773176806,17.9277070811952,-1.66852773955293,0.123005302360097,0.256787039219826,-5.56323675480345 +"Q9W260",0.16554614742158,17.3449281669426,1.66603295430215,0.123508771179822,0.257515787909929,-5.56682021487425 +"Q9VWD5",0.132373983631265,14.4179364600161,1.66215618725545,0.124294767262871,0.258831050929424,-5.57238237375095 +"Q9VKI8",-0.0672904553637217,22.391491093681,-1.65929992715235,0.124876697356886,0.259718617445494,-5.57647540950928 +"P29746",0.164278297223586,21.1952337149088,1.64768589711893,0.127267878918225,0.26406475349244,-5.59307480005852 +"Q9VK99",0.172656282679746,20.0271487096242,1.64761301932738,0.127283010676212,0.26406475349244,-5.5931787390897 +"Q7KTW5",-0.0946057974374206,21.5591785888691,-1.64630595793587,0.127554668891847,0.264299612064101,-5.59504241156066 +"Q7JZV0",-0.169778182363173,15.0888844868392,-1.63997806775433,0.128877116596853,0.266585468448704,-5.60405237093548 +"Q9VD09",-0.140317299312008,14.7184822632723,-1.63950007397206,0.128977501821405,0.266585468448704,-5.6047321074939 +"Q7K860",-0.389238568806324,20.588593109434,-1.63721675221723,0.129457984629607,0.267247423715575,-5.60797747122897 +"B7YZN4",-0.157165942277469,15.4480296966613,-1.6343706313755,0.130059111561737,0.268156487126053,-5.61201891010258 +"Q9V3Y0",-0.11796176209144,16.3962524170632,-1.63293329215139,0.130363626495609,0.268452504931698,-5.61405827817685 +"Q9W3N6",0.0799500431713884,16.1106404694203,1.6303967809346,0.13090254771905,0.26922990085743,-5.61765453693025 +"Q9VMY9",0.192622289950094,14.9938158034195,1.62639728328005,0.131756296589464,0.270652096935007,-5.62331807608026 +"O46067",-0.101682874613601,19.7682448486216,-1.62524569445923,0.132003028033558,0.270825400688776,-5.62494722009737 +"Q9VGJ9",-0.0931328819143147,17.9591134333765,-1.62296843080879,0.132492137989511,0.271494946150497,-5.62816676631684 +"Q9W227",-0.078702478026635,22.0050441178417,-1.62124698901206,0.132862927794206,0.271920691485565,-5.63059866590441 +"Q7KN90",-0.091280438101327,17.3137817535752,-1.61908448835464,0.133330014478958,0.272542235479046,-5.63365140787618 +"Q9W503",0.0848233792182995,17.9425999697994,1.61578973735084,0.134044439524379,0.273667227817214,-5.63829769742258 +"P54353",-0.116787935436019,18.9356173546346,-1.61367097159819,0.13450564472706,0.274022196839404,-5.64128252058206 +"Q8MKK0",-0.303475615449456,15.9297062967274,-1.61348189482275,0.134546870030858,0.274022196839404,-5.64154876616245 +"Q7JWD6",-0.0706021896420062,20.4917112804779,-1.60948166203924,0.13542166773277,0.275398378981954,-5.64717711652158 +"Q9Y114",-0.0686284149149614,18.6379509357816,-1.60888398903423,0.135552799247113,0.275398378981954,-5.64801730421008 +"Q9VJH8",0.164494799469162,14.296026932115,1.60552183793898,0.136292547855944,0.276564440174834,-5.65274009669976 +"Q9VKX2",-0.0852701032119327,23.1196973292512,-1.60343284816188,0.136753956151296,0.277163546610402,-5.65567140190845 +"Q9VKM3",-0.0914779904251404,21.8164948252635,-1.60128680537711,0.137229393455566,0.277561075887647,-5.65868029680271 +"Q8SX57",-0.108629402819311,17.973793695599,-1.60060589081213,0.137380547032702,0.277561075887647,-5.65963446091152 +"Q9VBC9",-0.179968913500874,15.5991175898512,-1.60029634691434,0.137449309762108,0.277561075887647,-5.66006814065899 +"Q9VKU5",-0.250413630297743,13.7855671728703,-1.59749205837478,0.138073637234225,0.278068240812488,-5.66399464887156 +"A1Z7S3",-0.0781522580132865,19.9937063965191,-1.59705743127495,0.138170621866213,0.278068240812488,-5.66460282100845 +"O97365",0.0945052111442699,18.0270003072571,1.59632364772871,0.138334497146847,0.278068240812488,-5.66562936757461 +"Q9XZ19",-0.152028487004163,16.1242516033745,-1.5956525081309,0.138484531365531,0.278068240812488,-5.66656801907367 +"Q9VCH5",-0.0792314876007758,18.0680030987166,-1.59543137300338,0.13853399767097,0.278068240812488,-5.66687724330098 +"Q9VVU2",0.129024244584397,20.0929450560278,1.59123611864146,0.139475382972949,0.279621320671729,-5.67273860424086 +"Q7KK90",-0.0697987602643337,21.119530399925,-1.58964322038428,0.139834282888801,0.280004302351165,-5.67496157933053 +"Q9VJ68",-0.113388007433439,17.9249204094078,-1.58412694761039,0.141083422706816,0.282166845413631,-5.68264904715629 +"Q9VPU6",0.0976554661109859,15.3902411999805,1.57815799820268,0.142446051505757,0.284550914864195,-5.69094843721783 +"Q7JXB9",0.142846094291263,16.2157817694612,1.57462941306124,0.143256974471416,0.285828508873591,-5.69584538656623 +"Q4V5I9",-0.193474036417889,16.0053998890226,-1.57179868324908,0.143910429833111,0.286446289711745,-5.69976884812289 +"Q9VCR2",0.0933551877011034,15.4176599869219,1.5707252034607,0.144158914822583,0.286446289711745,-5.70125554920344 +"Q9VM11",0.177465316465552,17.7951952421133,1.57070083121651,0.144164560758435,0.286446289711745,-5.70128929574007 +"Q7JR58",-0.136878970525437,22.8555807436537,-1.57004815922272,0.144315826801484,0.286446289711745,-5.70219288146698 +"Q9W4A0",-0.100327389925184,17.1196447205064,-1.56930773419337,0.144487598426488,0.286446289711745,-5.70321766792894 +"Q9VIS4",0.10074064673285,14.1698215993571,1.56883660830799,0.144596987971996,0.286446289711745,-5.70386957093943 +"P48159",0.0981008781833737,19.902128660235,1.56583499903161,0.145295620907273,0.287488844215103,-5.70802001986082 +"Q9V3E7",-0.103519146279236,18.7638712412239,-1.5639226888774,0.145742248764389,0.288030889738152,-5.71066161651333 +"Q9VTJ4",-0.137913510309394,15.6520528868151,-1.56210000137842,0.146169057471136,0.288532530014029,-5.71317750022336 +"Q9VCK6",0.305799339813081,16.4666499540122,1.56030686274974,0.146590008437752,0.289021435075851,-5.71565077393594 +"Q9W3N7",-0.236648555154428,17.3687496409156,-1.55666374802027,0.147448503680543,0.290370843139487,-5.72067013676281 +"Q9W5R5",-0.0911002466542676,15.8730596719424,-1.55106251114764,0.148776956609907,0.292641466539299,-5.72837270069699 +"Q9VSN3",-0.122381675426457,20.9347064004394,-1.54721063911576,0.149696533473851,0.294103436789616,-5.73365928975264 +"P91941",-0.0937132317072695,23.0940463466166,-1.54337891455881,0.150616191536647,0.295562126450739,-5.73890984502676 +"P07486",-0.11522396727678,22.082650899675,-1.54150119974368,0.151068651273373,0.296101657254978,-5.7414797895695 +"Q7JWQ7",0.190380478799716,14.4344496642639,1.53380017841315,0.152936657972203,0.299411203635722,-5.751998700273 +"P25007",-0.0776944656771938,23.8623346570345,-1.53203293153897,0.15336814278598,0.29990394157915,-5.75440779365267 +"Q86BM0",-0.0979248348163964,17.5042602877658,-1.52963421257086,0.153955490512488,0.300189609257512,-5.7576748223596 +"Q9W380",0.100519368196288,18.3798544191077,1.52812813897479,0.154325259414338,0.300189609257512,-5.75972437975321 +"Q8SXX1",-0.0790111125895301,19.868519858784,-1.52800028803,0.154356684514675,0.300189609257512,-5.75989830677811 +"Q9W0N6",0.186484373428012,14.5653073181548,1.52794199658633,0.154371014085852,0.300189609257512,-5.75997760268148 +"Q9VSW4",0.234594459356234,15.9267312233331,1.52776683806092,0.154414079582101,0.300189609257512,-5.76021586516401 +"Q9VA97",-0.107811698329133,18.5644592737919,-1.52640110485866,0.154750223041075,0.300492866161249,-5.76207301895436 +"Q9VZE4",0.126035317908752,17.6107197443444,1.52218157823187,0.155792759095201,0.302165490896274,-5.76780399307647 +"P13060",0.165323347358221,20.164568083721,1.519298065603,0.156508684208132,0.303201492751642,-5.77171443925262 +"Q9VSD6",-0.185632041823386,16.4764034030107,-1.51436453796658,0.157740175933967,0.305232730229533,-5.77839375318592 +"O97102",-0.0769601825464754,20.9898454941314,-1.51042917801251,0.158728488828412,0.306789246078553,-5.78371148237827 +"Q9VEY5",-0.0743824937264428,20.8389008473113,-1.50650889164629,0.159718314291971,0.307870586897251,-5.7889998087153 +"Q9W141",-0.0796042724813439,21.8755503219735,-1.50610353115548,0.159820965400348,0.307870586897251,-5.78954611001617 +"Q9VXA9",0.127645991751484,14.2479358518285,1.50602174390223,0.159841683604928,0.307870586897251,-5.78965632235765 +"Q9VAY0",-0.144207267120951,14.0449524688195,-1.50265334989467,0.160696968866844,0.309160950484309,-5.79419197435583 +"Q9VG42",-0.842804394435491,16.2097515532707,-1.50015855024053,0.161332969502706,0.309788488111452,-5.79754698620386 +"O76877",-0.0999903697956324,17.3700851807581,-1.49991723774993,0.161394602019695,0.309788488111452,-5.79787130857424 +"B7Z0Q1",0.112652783777399,17.6642858902534,1.49811168105716,0.161856393289155,0.310317774719897,-5.80029687086216 +"Q9VCI0",0.188371555099245,14.8798025100809,1.49610101634519,0.162371978451846,0.310948863441653,-5.80299569926707 +"Q9U6P7",-0.118189760138582,17.0039304507548,-1.49434012768415,0.162824672370403,0.311458203570909,-5.80535729344009 +"Q9VCF8",-0.0868238449338072,16.9571991354603,-1.49237972025322,0.163329932950247,0.312008164536863,-5.80798430178874 +"Q9W1E8",-0.0697606795703258,15.4709819128872,-1.49177410075578,0.163486292449172,0.312008164536863,-5.80879538883886 +"Q9VHM3",-0.0953319020685459,14.6851541678955,-1.48974690438582,0.164010610681007,0.312651084132479,-5.81150875901531 +"Q9VGQ1",-0.0798595176266232,22.420520584318,-1.48879108316784,0.164258325995105,0.312765853607118,-5.81278726042432 +"Q8IQB7",0.193408138327497,14.398581273605,1.48392838154061,0.165523538541543,0.314815578434771,-5.81928313083411 +"Q9V3Z9",0.140032609628442,21.7448785920388,1.48229879098245,0.165949400020233,0.315266058352789,-5.82145686235106 +"Q9V419",0.176191501091864,16.3801488219581,1.47432046567518,0.168047934887519,0.318889596578364,-5.83207621623143 +"Q9VN86",0.148104266701717,15.29129144059,1.47344260680754,0.16828021685574,0.318967501949288,-5.83324232598513 +"Q9V998",0.135861784308883,15.8384052883691,1.46733234012665,0.169904605457123,0.32167622853103,-5.84134602274558 +"Q9V773",-0.102082953057149,15.5795452884962,-1.46661948306466,0.1700949841513,0.32167622853103,-5.84228996987128 +"Q9VJN0",-0.222277534922265,17.5641247858464,-1.46574219053495,0.170329527396956,0.321754984935587,-5.8434512345315 +"Q9VRG8",0.130349557562125,16.1995823596556,1.46354353288068,0.170918548116254,0.322475303673896,-5.84635952281536 +"O96824",-0.132065535729099,16.7733038188035,-1.4628768015913,0.171097508244243,0.322475303673896,-5.8472408644348 +"Q8MLS1",-0.0772872741894339,18.5322722998316,-1.45906158969253,0.172124638656571,0.32404503078912,-5.85227892023564 +"Q9VZD8",-0.12821106367948,13.7295135643944,-1.45789336039,0.172440197188805,0.324273110384359,-5.85381981059774 +"Q9VXE0",0.152408176255406,17.9924882431678,1.45387825739213,0.173528501136225,0.325952184566692,-5.85910934879374 +"Q9W3K6",-0.109685043795631,16.2134284310387,-1.44980210035255,0.174639323106843,0.327669731093605,-5.86446920341493 +"Q9VCB9",-0.103604639088109,17.004611425753,-1.44894421925358,0.174873878320824,0.327741156223746,-5.86559595424298 +"Q9VZI3",0.154895789764433,14.3243530707431,1.44650074927676,0.175543419804708,0.328626738758982,-5.86880275076336 +"Q9W0M4",0.129506613472586,17.8457808689467,1.44302356857477,0.176499961743747,0.330047013664317,-5.87335983094112 +"Q9W1H5",0.0849173251912685,17.2786833027683,1.44135782601281,0.176959757053624,0.330536253936668,-5.87554025048386 +"Q9VW73",0.119068159884982,14.1469447070819,1.44054524892655,0.177184421203433,0.330585698621169,-5.8766032720467 +"P20240",0.139166986524753,17.3746873770868,1.43522607994858,0.178661061818402,0.332968325266028,-5.88355174338075 +"Q8IPX7",0.175060139346025,15.3166145657454,1.43144961673947,0.179715749413264,0.334560122791657,-5.88847428221929 +"P49963",0.128548529479888,14.9382436861239,1.43049160489629,0.179984138206583,0.334686223554717,-5.88972161572357 +"Q9W4Y1",-0.148025899151191,17.5790132835577,-1.42751063600439,0.180821431109783,0.335668727540115,-5.89359917494671 +"Q9VF70",-0.0733143654819912,15.9564414186498,-1.42717830515534,0.180914979651417,0.335668727540115,-5.89403111701401 +"Q8SY67",-0.171987168872896,16.0682388986654,-1.4253711090308,0.181424407342842,0.336239901608733,-5.8963787822697 +"Q24297",0.0979353472212061,16.9486409991564,1.42119160184148,0.182607204134649,0.338056400107208,-5.90180038480209 +"P20432",-0.0818754472153636,23.6043526494245,-1.41178227788267,0.185293856110502,0.342349523452191,-5.91396577284884 +"Q9VIH3",-0.11516010150374,13.8265894557136,-1.41082967218493,0.185567700723871,0.342349523452191,-5.91519428436378 +"Q9VXH7",-0.112119654402147,18.1658317540769,-1.41066469395749,0.185615161437064,0.342349523452191,-5.91540698726233 +"Q9VTF9",0.0983527018229005,17.4132470765986,1.41020592392695,0.185747193479756,0.342349523452191,-5.91599837892876 +"Q9VNR6",-0.144714449255957,14.6764588249979,-1.40823244656261,0.186316053194778,0.343018958861909,-5.91854082815191 +"P18053",0.079501194025454,21.0903623012569,1.40670943164713,0.186756067111911,0.343449966860714,-5.92050125145555 +"P83967",-0.389982861809067,17.6414873579041,-1.40372677247887,0.187620317388136,0.344659349563228,-5.92433625314124 +"Q9W0A8",0.1600473834566,18.9119426254386,1.40276686340421,0.187899172770412,0.344791881387291,-5.925569266264 +"Q9V400",-0.231533906453924,14.2942808943639,-1.40175099943603,0.188194662194773,0.344954611583386,-5.92687351400092 +"O02649",-0.0999350580322904,23.3824439805622,-1.39765171784984,0.189391006960149,0.346687513857795,-5.9321298044266 +"Q9NHA8",0.111600237597031,16.229723325504,1.39708888378994,0.189555762972607,0.346687513857795,-5.93285065738497 +"Q9VH66",0.107687740453983,16.6723295009113,1.39354480828231,0.19059596839249,0.347991022650955,-5.93738508813218 +"Q9VVZ4",-0.156056071847837,15.9202143192371,-1.39323974864556,0.190685728239192,0.347991022650955,-5.93777501683101 +"Q9V429",-0.0587209381105822,22.353507614857,-1.39058878280044,0.191467232614574,0.349035348635092,-5.941160976169 +"Q9VL16",-0.08745207776089,20.7806891891966,-1.38841420972392,0.192110297082562,0.349825300800997,-5.94393508440729 +"Q7JWU9",-0.190718655072281,15.5937734676188,-1.38748407288898,0.192385908424519,0.349945142041546,-5.94512073185427 +"Q9VF89",0.239581672124773,14.1325646785943,1.38639688071733,0.192708476486966,0.350150042244291,-5.94650587072802 +"Q9VJ25",0.163336923251563,15.6881949947126,1.38537601154953,0.193011778315074,0.350319527997327,-5.94780581608309 +"Q9VXM4",0.215364635369401,20.1952475782603,1.38160380339001,0.194135971337759,0.351976956729763,-5.9526033931167 +"Q9VXN3",-0.0753744602176845,17.0372404927192,-1.37900621781364,0.194913279632953,0.352695825313206,-5.95590170162504 +"A0A0B4KGY6",0.135621454402813,21.7639010724704,1.37886582095098,0.194955366270249,0.352695825313206,-5.95607984717881 +"Q9VQB4",-0.0999993072561018,21.792366390834,-1.37777975698508,0.195281191029451,0.352902520733612,-5.95745749019801 +"Q9V3L7",-0.0943916812166918,17.6506922325475,-1.36763402871883,0.198346958076753,0.357910878865856,-5.97028997894333 +"P54192",-0.103907378133311,24.4382842978676,-1.367190951755,0.198481752368655,0.357910878865856,-5.97084885857602 +"Q961D9",-0.280323412952109,12.4322959872544,-1.36628313866278,0.198758168287685,0.358022272898336,-5.97199353638412 +"Q8MSV2",0.193091804655459,18.2067830729294,1.36444719269581,0.199318166071495,0.358643690406962,-5.97430686324604 +"Q95RF6",0.120041786167523,17.2694542438897,1.35430207443851,0.202436312123452,0.363861819635687,-5.9870499597218 +"Q9VTT2",-0.241047498405347,14.0718427666241,-1.35102944508057,0.203450761739368,0.365253129055092,-5.99114616534186 +"Q9VV46",-0.119332586553444,24.0339844706563,-1.35030951636955,0.203674489663388,0.365253129055092,-5.99204631700073 +"Q9VGW7",0.103721894053788,16.6207133468886,1.34968958904201,0.203867304046937,0.365253129055092,-5.9928211582792 +"Q8IRH5",-0.131985932719353,14.4901072043648,-1.34125851104148,0.20650463761533,0.369581261311557,-6.0033337398728 +"Q9VR30",0.103213242011902,17.2560637974242,1.33963441222598,0.207015899883964,0.370099165065865,-6.00535336647976 +"Q9VTC1",-0.117685799300469,15.8419875071891,-1.33436350652754,0.208682374457423,0.372474891981257,-6.01189578716269 +"Q9VIQ8",-0.0812042690080688,21.3031473140466,-1.33401993982075,0.208791381296448,0.372474891981257,-6.01232158772066 +"Q9VKF0",-0.120496506059201,15.8788313868253,-1.32741267412658,0.210896883420883,0.375829061480804,-6.02049490734833 +"Q9VU68",-0.121375141473209,19.1428546115085,-1.32381070378597,0.21205204795334,0.377484328693886,-6.02493824103424 +"Q9VNF3",-0.07329723168165,19.1427676687958,-1.32236866853109,0.212515970264585,0.3779068639673,-6.0267146583907 +"O18404",-0.0639114713784004,23.0219293892035,-1.31994014580853,0.213299144541075,0.37880290995216,-6.02970313438977 +"Q9VJC0",-0.0592628097280947,16.5437871718288,-1.31939875054886,0.213474061963448,0.37880290995216,-6.0303688170054 +"Q9VLT8",-0.103455358649574,13.9613453795412,-1.31769739427981,0.214024513990183,0.379263560894499,-6.03245945862516 +"Q9VSJ8",-0.10892813169594,15.7857250437206,-1.31719150099595,0.214188413886461,0.379263560894499,-6.03308072624262 +"Q9VRJ5",-0.0965951119777841,17.2946265974873,-1.31580224898645,0.214639035390539,0.379658442239044,-6.03478591868259 +"Q8SXG7",0.122067546928424,13.9677433757507,1.31119869588947,0.216137818250398,0.381904534789898,-6.04042702704141 +"Q9VKQ2",-0.112703700526165,16.0002108581059,-1.30927031594422,0.216768186677724,0.382613053310522,-6.04278574016926 +"Q8SWZ6",-0.107525513869492,13.966261692349,-1.30813682058535,0.217139417344145,0.382863158699825,-6.04417100042068 +"Q9W4U2",-0.14365448219402,18.6019963727004,-1.30495184708274,0.218185313609771,0.384301059240863,-6.04805870313326 +"Q7YTY6",-0.0861826579046898,18.4303276441376,-1.30385449363575,0.218546620845782,0.384531396171692,-6.04939656866187 +"Q9VBU9",0.0755581864255888,20.7945959336043,1.30119756590682,0.219423449627516,0.385272516480158,-6.05263241143315 +"Q9VVU1",0.155996288836207,22.2089672753269,1.30117838351989,0.219429790561241,0.385272516480158,-6.05265575585273 +"Q7KN75",0.131018883029672,19.3224921961056,1.29963204911932,0.219941439882741,0.385662796808769,-6.05453677024393 +"Q9VWS1",0.100329945785461,17.2403712450011,1.29910968865924,0.220114497938818,0.385662796808769,-6.05517181653834 +"Q0E8U4",-0.0863196573252445,16.2850218418677,-1.29709183979211,0.220784056074694,0.386430016298624,-6.05762320317833 +"Q9VVA7",0.0913796557102877,17.4787439751396,1.29569647511079,0.221248034399726,0.386836185931597,-6.05931672605098 +"Q9NHE5",-0.130071169068021,15.5831537919131,-1.29390436556531,0.221845102507535,0.387097254652957,-6.06148980240101 +"O18335",-0.0749692581171288,21.6564587535884,-1.2938552155283,0.221861496072078,0.387097254652957,-6.06154936957349 +"Q9W396",-0.08943892466249,16.6594045224799,-1.29301558793361,0.222141699098361,0.387181143256077,-6.06256669526872 +"Q95SK3",-0.0640928344330725,17.2629840617176,-1.2897057952558,0.223249063849663,0.388705050627597,-6.0665722299646 +"A1Z7K8",-0.0654486967531227,17.6807719085407,-1.28464681462468,0.224950340786879,0.390959078949253,-6.07268000204607 +"Q6IGN6",-0.0631389459816063,16.7506270485208,-1.28446280435157,0.225012419539138,0.390959078949253,-6.07290182569149 +"Q9VJC7",-0.0886991422051686,18.6290217053441,-1.28252558103563,0.225666817792783,0.391688087490492,-6.07523571432585 +"Q9VDD1",-0.131320517361926,14.4698029768659,-1.27844603102681,0.227049956155195,0.393679133957241,-6.08014206032707 +"Q9VWL4",-0.156451092330183,16.2390719901914,-1.27220242076482,0.229180116358496,0.396959952321882,-6.08762858827594 +"Q9VKV9",0.0913003393942837,15.5846373073084,1.2706373635316,0.229716604772661,0.397476448921991,-6.0895009309932 +"Q9W1F2",0.147897660172804,13.5534084267743,1.26905205231193,0.230261072397943,0.398005667108569,-6.09139575528068 +"P80455",-0.086696845996066,20.5306491993199,-1.25522671839947,0.235053681432231,0.405869089678014,-6.10784541869878 +"Q9V3T8",-0.130065386850898,15.6392130640234,-1.25225361184288,0.236094759385715,0.407245148557779,-6.11136525113547 +"Q9NHD5",0.0928211633035545,16.5337017186292,1.24904804229905,0.237221393883402,0.408765790286688,-6.11515327150843 +"P13496",-0.0595345855990885,18.2719389382299,-1.24740579926218,0.237800252378311,0.409043579633478,-6.11709108174937 +"Q9VEH2",-0.106556227570662,15.9031410113769,-1.24625999758616,0.2382047971923,0.409043579633478,-6.11844196605926 +"Q9V3G3",-0.122748290482388,14.9230907717833,-1.24617702067564,0.238234115070815,0.409043579633478,-6.11853975840162 +"Q9VIH1",0.104178955706256,15.7362083245005,1.24581085681732,0.238363524822387,0.409043579633478,-6.11897124184609 +"P40796",-0.139316244019675,18.4001437474785,-1.24323143312225,0.239276746633242,0.410188708514129,-6.12200809948077 +"Q9VAF5",0.131324033965608,16.0042141074372,1.23883280678027,0.240840517856264,0.412445568566991,-6.12717582410218 +"Q9VR31",-0.0726775387975866,17.3186014962933,-1.23637337412737,0.241718445219092,0.4135244785902,-6.13005925667409 +"Q9VUH8",0.0931945057228845,15.4783371675969,1.23460669121198,0.242350667301083,0.414181263379311,-6.13212783651851 +"Q9VFM9",-0.0933362244283558,17.1232522590463,-1.23347033678248,0.242758020387978,0.414452792228401,-6.1334571919697 +"Q9W4C2",-0.15816954149166,15.9644224650104,-1.23078396046669,0.243723194514627,0.415675141564824,-6.13659614085441 +"Q9VKR4",0.198102691835718,19.1830725552947,1.22942260557081,0.244213479024797,0.415725677189347,-6.13818486155823 +"Q9VMU2",-0.0595672597011099,16.31976715712,-1.22902073026322,0.244358362848595,0.415725677189347,-6.1386536008185 +"Q9W3T2",-0.13994718271546,16.2986280704607,-1.22862656669915,0.244500533167116,0.415725677189347,-6.1391132322923 +"Q7K1W5",-0.0935553107683731,19.8271897995959,-1.22751485723804,0.244901870282923,0.415984032211727,-6.14040898623553 +"A1ZBU8",-0.15334209160762,20.8316902004381,-1.22651388417644,0.24526368066092,0.415995975396242,-6.14157490918544 +"Q9VAA9",-0.0841644312139138,17.1661585009902,-1.22535260885734,0.245683968433545,0.415995975396242,-6.14292664501126 +"Q9W499",0.15574153337726,16.9264397609861,1.22530497419504,0.245701220598894,0.415995975396242,-6.14298207144702 +"P11046",0.067729462225163,20.9747432315574,1.22473840246924,0.245906493849337,0.415995975396242,-6.14364119374967 +"Q9VV76",-0.0826672747297152,16.3604502122237,-1.22148597777328,0.247087521198685,0.417570400566775,-6.14742042129847 +"Q9W385",-0.131010132727237,16.9040405151986,-1.217788973546,0.248435472296217,0.419423449180253,-6.15170694187923 +"Q9VM50",0.156296703912641,13.4794200308433,1.21688545697861,0.248765789155673,0.41955645734243,-6.15275302471775 +"Q9W330",-0.0556679746127458,20.6525302841512,-1.21433015442641,0.249701875650259,0.420709826853164,-6.15570832125011 +"Q9VHI7",0.129731157884272,15.5114160871291,1.2113237559315,0.250806797524944,0.422145043664588,-6.15917924791024 +"Q9VIB5",-0.187865781393324,14.4925890938651,-1.20776953831437,0.252118063301853,0.423924324180938,-6.16327414619077 +"Q7PLT4",0.19617955218396,15.7946951550433,1.20450744999301,0.253326336512466,0.425527018431815,-6.16702435982614 +"Q9W147",-0.0864905259800981,13.7732295045062,-1.20324577641189,0.253794888306247,0.425885184803642,-6.16847273824086 +"O18373",0.0579470539832911,19.6068917286606,1.19945232246578,0.255207812679178,0.427825760350622,-6.1728205310488 +"Q9W0X2",-0.176087524691248,16.0483603597885,-1.19736999241174,0.255986048203944,0.428545942353874,-6.17520266463291 +"Q9VB05",0.058154950149504,20.1684148616009,1.1969285740971,0.256151261706722,0.428545942353874,-6.17570722696697 +"Q9W259",0.0898451914397462,16.9290720740408,1.19528364370486,0.256767666867728,0.429146761859089,-6.17758619971906 +"Q9VBT1",0.0735805160155447,16.2775262653772,1.19376298177785,0.257338547189263,0.42929027288827,-6.17932145188725 +"Q9V3Y2",-0.0639914897144713,17.8965692470237,-1.193444564289,0.257458212976618,0.42929027288827,-6.17968458767681 +"Q7K9H6",0.199340885605272,11.95099182165,1.19299926249348,0.257625637386785,0.42929027288827,-6.18019230202904 +"Q8SZM2",0.0800124747641782,21.2989583363362,1.19218265525242,0.257932888489352,0.429373311377484,-6.18112298349012 +"Q9VTB4",-0.0801205940820999,20.6387786732111,-1.18731276392791,0.259771210552339,0.432002372085046,-6.18666294634654 +"Q7KML2",-0.109042547625094,13.6421437000119,-1.1819931573804,0.261791079114839,0.434927808728637,-6.19269445704682 +"Q9V3R3",-0.100552081097309,13.6310929879481,-1.18093015215295,0.262196182814097,0.435167395954142,-6.193897205432 +"Q95RN0",-0.0618799581035354,16.9078545771638,-1.17191080408067,0.265653248635638,0.440466817817341,-6.20406842278588 +"A0A0B4KHJ9",-0.116762726472423,24.6224206239501,-1.1680797128062,0.267132458409874,0.442286592680054,-6.20837042451335 +"A8WH76",-0.0581627685716803,18.9799980295909,-1.16768523483582,0.267285134518616,0.442286592680054,-6.20881276755382 +"Q9VBC1",0.193693542027898,13.3610956802942,1.16701094267446,0.267546266195548,0.442286592680054,-6.20956860701156 +"Q9VG26",-0.0731192321294216,19.7019854084116,-1.16301309718526,0.269098605689465,0.444412350782206,-6.21404294237425 +"P43332",0.0934085686556756,17.197863926654,1.16035220104601,0.2701357116641,0.445683844763323,-6.2170143315906 +"Q9VB81",0.108991384488274,20.9624620196752,1.15918209088869,0.270592758478921,0.445996760022569,-6.2183192936455 +"Q9VG00",-0.0955376118082842,15.2924890535195,-1.15656801246959,0.271616001308854,0.447241352599376,-6.22123091344924 +"Q9VSX2",-0.157133321508351,17.9776076170942,-1.15535487539175,0.272091889972029,0.447583108948072,-6.22258038345918 +"P54185",0.0982043150731968,17.5772100381422,1.15466707389939,0.272361988834479,0.447586007266907,-6.22334498727536 +"P53034",-0.105691641100451,15.7971889913085,-1.14312795171791,0.276924584065939,0.45419124200156,-6.23611924753517 +"Q9VU92",0.0992894860219096,17.6656957340571,1.14282426520916,0.277045459045272,0.45419124200156,-6.23645407669459 +"Q9VAD4",0.199945453906874,13.2700743343526,1.14244053494427,0.277198252012943,0.45419124200156,-6.23687705772371 +"Q9V3F3",0.0841551950750166,14.5727019345619,1.1391795963423,0.278499324826785,0.455875244171813,-6.24046702789468 +"Q9VEN9",0.105976386720602,14.89116397833,1.13830608482843,0.278848647062597,0.455999552255306,-6.24142730235083 +"Q9VHD2",0.0882810986520113,16.6046642684407,1.13672339387741,0.279482438491867,0.456588352012178,-6.24316571473114 +"Q9VE08",0.130480709546152,14.6876975285385,1.13587618453164,0.279822162900926,0.456696054519319,-6.24409549596666 +"Q9VVC8",-0.101410556935798,16.6464966408648,-1.13380660915452,0.280653390200442,0.457604941206585,-6.24636447438872 +"Q7K1H0",-0.0609770185483214,16.3580768517266,-1.12945139238889,0.282408859853642,0.460017556870971,-6.25112861607294 +"Q7K2N0",-0.111315026752779,15.4712876024501,-1.1247539710875,0.284311751000915,0.462250425763689,-6.25625079698614 +"Q9Y0V3",0.0520756560553366,15.1888859387289,1.12458583552588,0.284380044247416,0.462250425763689,-6.25643382195928 +"Q9W3V3",0.295228573448398,13.1218363749085,1.12401740311291,0.284611023536756,0.462250425763689,-6.25705243154952 +"P92204",-0.0988241197844797,15.8998500396396,-1.11892468431799,0.286686871135263,0.464845989824078,-6.2625836057502 +"A1Z877",0.0464642434083089,19.9196010223024,1.11872989271466,0.286766500916652,0.464845989824078,-6.26279477107446 +"Q9W329",-0.0684594204034426,16.4866494989409,-1.11745233052221,0.287289183118812,0.465241123730271,-6.26417899653992 +"Q9U915",-0.0705614175430149,21.1508740786565,-1.11250895365496,0.289318537243286,0.468073055404269,-6.26952321699403 +"Q9VPB8",0.111327903072644,15.653841998681,1.11150083701217,0.28973373586548,0.468290573084904,-6.27061075819215 +"Q9VNF5",0.0645375784005395,15.9672352806359,1.11019241851477,0.290273296508712,0.468708478776894,-6.27202108654659 +"E1JIY8",-0.175352244955015,16.4371223348939,-1.10833889021451,0.291038964880836,0.469211214548597,-6.27401671018597 +"Q7KLX3",0.0889376656132441,19.2859219052003,1.10807706397588,0.291147246437528,0.469211214548597,-6.27429839372206 +"Q9VIL2",-0.13282454672008,16.0464512051016,-1.10293637687803,0.293279493711096,0.472191308407441,-6.27981816960039 +"Q9W3J1",-0.236846744877191,15.6866247347313,-1.09867575680631,0.295055733982865,0.474152144002262,-6.28437739023831 +"Q9V4W1",0.111622746223485,13.6950404101597,1.09865142212951,0.295065902562559,0.474152144002262,-6.28440338972454 +"Q6NMY2",0.194733751813477,20.0138929550246,1.0920387211839,0.297839023972585,0.478147730496894,-6.29145133636843 +"P16620",0.108842225849594,17.300600622935,1.08969228953557,0.298827783496494,0.478988490791073,-6.29394398075195 +"Q9Y128",0.105815999195855,14.290420348116,1.08943332312755,0.298937061698745,0.478988490791073,-6.29421881951091 +"O61604",0.0560343862568473,20.9087918322953,1.0885268451948,0.299319814915387,0.479141507945168,-6.29518044198223 +"Q8I0J3",0.10484399413869,15.026509877106,1.08549101815831,0.300604380290285,0.480349619232617,-6.29839625002371 +"P41375",-0.0760135663997659,16.8159921352946,-1.08538225080842,0.30065048110243,0.480349619232617,-6.29851133129397 +"Q27272",0.100298842111442,15.8195508772337,1.07806731946396,0.303763220127638,0.484295652048235,-6.30622950741859 +"Q8I937",-0.123907037504118,14.068060006956,-1.07720844651484,0.304130292441973,0.484295652048235,-6.3071329577811 +"Q9V9X4",-0.151007715577911,18.7369171830487,-1.0768740811353,0.304273287000746,0.484295652048235,-6.30748451983922 +"Q9W2V2",-0.1269856072972,14.2389032170935,-1.07685445785557,0.304281680663399,0.484295652048235,-6.30750514961489 +"O17452",0.068519372531064,19.863186826614,1.07071372598728,0.306916922469973,0.488024238970366,-6.31394587780599 +"Q9V3F8",-0.0880065371896137,18.5677694953513,-1.06877788440949,0.30775123142639,0.488876506104982,-6.31597009638734 +"P51140",-0.0969823907925278,13.6059266737272,-1.06811087784476,0.308039093475022,0.488876506104982,-6.31666686469934 +"Q9VGE4",-0.0706481948155417,15.6960205499294,-1.06265158455968,0.310402803775413,0.492159578609686,-6.32235645530942 +"Q95TK5",-0.0678541927530674,17.0649837866135,-1.06176342400228,0.310788637064449,0.492303368113486,-6.32327983834318 +"Q9VC66",-0.0597304683349975,17.7515983148648,-1.06069644024791,0.311252630791153,0.492570577001559,-6.32438830474429 +"Q9XZ63",0.115280893893733,19.0889939948596,1.05980073761118,0.311642541913297,0.492720151574767,-6.32531812974724 +"Q9VEP8",0.0818834090470055,17.2627372396394,1.05670480556561,0.312993065710953,0.494386774247982,-6.32852706991746 +"Q9VPU4",-0.166866392677388,13.049746462045,-1.05333048883906,0.314470020334647,0.495317801328763,-6.33201582849019 +"O61722",-0.087584438954547,18.9631235597279,-1.05324243699649,0.314508630802943,0.495317801328763,-6.33210674463547 +"Q9W2L6",0.083572564350284,20.7751042453114,1.05296371163208,0.314630874435653,0.495317801328763,-6.33239449591411 +"Q9VFP1",0.193856395215922,15.6236392022137,1.05203066883562,0.315040348030098,0.495317801328763,-6.33335730030288 +"Q9VVL5",0.058628022973469,17.2263219799278,1.05130456916007,0.315359278722875,0.495317801328763,-6.33410607781593 +"Q9VNE2",0.057768898067561,19.0566594664043,1.05129334286078,0.315364211637378,0.495317801328763,-6.33411765142108 +"Q9VZW1",-0.144087868667217,14.8610508487395,-1.04815629571212,0.316744914321821,0.49701836038457,-6.33734778650598 +"Q7K8X7",0.0683622536342234,19.4076644657539,1.04701878000076,0.317246681143054,0.497093268341755,-6.33851710426167 +"E1JGR3",0.0878159195830186,12.2108143885341,1.04669709255641,0.317388687520365,0.497093268341755,-6.33884759663429 +"Q7KTP7",0.0539711825495921,17.8970159509606,1.04583215185923,0.317770744067192,0.497224766514142,-6.33973579905251 +"Q9W3K9",0.127685112848322,19.2503969183469,1.04515525215652,0.318069979570479,0.497226547257318,-6.34043048356899 +"A0A0B4K7J2",-0.124764285142264,15.6547832582705,-1.04337262739399,0.318859026093524,0.497993310415728,-6.34225818052767 +"Q9VKE2",-0.0911208273137731,24.18451501859,-1.0395156732253,0.320571228778071,0.500199073528365,-6.34620389115825 +"Q7K3W4",-0.0631549420603896,19.3178700162814,-1.03870957510731,0.320929939879528,0.500290784784161,-6.34702702304553 +"A8DYK6",0.122635829893298,16.6016758710027,1.03498408659415,0.322591649478855,0.502411644566509,-6.35082441502159 +"Q9VRJ4",-0.0500869428341026,20.6983170433863,-1.03262064454891,0.323649142893159,0.50316739471971,-6.35322765131242 +"Q6IGW6",0.103057417032678,15.7094771637006,1.03255126546811,0.323680224540916,0.50316739471971,-6.35329813020502 +"Q9V3W7",-0.0836335591151531,17.9045485347029,-1.03050105483852,0.324599713410532,0.503898315417818,-6.35537907995246 +"Q8IMT3",0.064800689321368,14.7283433142183,1.03015610196852,0.324754609756687,0.503898315417818,-6.35572886973954 +"Q9V428",-0.0477943789273212,18.7462841635732,-1.02836933609427,0.32555780920535,0.504675116872234,-6.35753914398285 +"Q5LJT3",-0.0845058937776884,17.0613513748717,-1.02718245263984,0.326092157970526,0.505034094238475,-6.35874021014287 +"Q9VP78",-0.055125841390133,14.9102054543274,-1.026144475038,0.326559999472717,0.505289498256486,-6.3597896527304 +"O18333",0.0857324129175048,17.3984163906581,1.02092001543616,0.328922328771884,0.50806840790366,-6.36505850678168 +"Q8IMT6",0.0982603819842964,16.0419511138059,1.02082555570225,0.328965156196615,0.50806840790366,-6.36515356451603 +"Q7K159",-0.100157354426882,14.6615931577604,-1.0197064217917,0.329472877440475,0.508381831240253,-6.36627922947435 +"Q9Y0Y2",-0.104040420873783,19.5167421785927,-1.01793700276629,0.330276794805501,0.508903432801701,-6.36805688891863 +"Q8T0Q4",-0.0575913255155669,20.0364800458056,-1.0176196936154,0.33042111374355,0.508903432801701,-6.36837540547841 +"A1Z7G2",0.0598590413794327,19.54703410268,1.01677810699692,0.330804110293838,0.509023298865426,-6.36921979604314 +"Q9VU45",0.0663877888107276,17.9204081413191,1.01366799588467,0.332222323907893,0.510734411316465,-6.3723352447768 +"Q7KW39",0.0806975955645193,21.7029029895903,1.01278230165142,0.332627018574589,0.510885697037214,-6.37322101096057 +"Q9VN25",0.156516822024253,14.9397394242289,1.01145852739456,0.333232558023591,0.511076358204713,-6.37454369484248 +"Q9V436",0.0505048739428169,19.1212191049764,1.01052061462357,0.333662081397476,0.511076358204713,-6.37547996577819 +"Q9VK59",0.0576659872057377,18.7533930080886,1.01050255444421,0.333670356166026,0.511076358204713,-6.37549798726478 +"Q9VIU3",0.264190781253298,12.4787348876725,1.00910051349738,0.334313199997309,0.511591208803221,-6.37689620782596 +"Q9VKA1",0.316195746651996,14.5849558305478,1.0031911772048,0.337032654479297,0.515279988699786,-6.38277169843832 +"Q9VHX2",-0.143722117820779,14.828778906165,-1.0023250198099,0.337432614462388,0.515419048464527,-6.3836304812788 +"Q7K549",0.0947800412306812,14.7783868724696,0.999846238697068,0.338579144476278,0.516697175650899,-6.38608474210403 +"Q9VM33",-0.247581056937401,13.7288762340449,-0.993521924150317,0.341517271671341,0.520704578745701,-6.39232352154435 +"Q9W3X8",0.104736625781156,13.8866851466956,0.98747327875228,0.344344673788518,0.524535996236757,-6.39825939527028 +"Q9VVK7",-0.0497848673340187,18.2403639710146,-0.978587355878729,0.34852913062464,0.530214924520551,-6.40692453451701 +"Q9VAS1",0.107928570379681,13.0248200771786,0.978208194407034,0.348708496522209,0.530214924520551,-6.40729281232677 +"Q9V405",0.0604380455122175,20.2137850150676,0.97669439237327,0.349425280337438,0.53075912622534,-6.40876196583938 +"Q8ING0",-0.0806094062291578,14.6470636652304,-0.976108879588152,0.349702805588519,0.53075912622534,-6.40932969631084 +"Q9VJJ1",0.0792123050421463,14.1228960635461,0.975394274996776,0.350041734457958,0.530790557341704,-6.41002221004594 +"Q9W445",-0.0891611923033739,16.4902643667338,-0.973737797767398,0.350828295358425,0.530887394338984,-6.4116258389915 +"Q9VXB0",0.0715643778769923,20.2764434682824,0.973719786752541,0.35083685470805,0.530887394338984,-6.41164326277703 +"Q9VGG5",0.100362171286502,17.0479513034139,0.973089192816663,0.351136626030351,0.530887394338984,-6.41225312587182 +"Q9V4S8",-0.0992289303257632,17.1807098167497,-0.972419127734504,0.35145536364489,0.530887394338984,-6.41290079799773 +"Q9V3N1",-0.0673267472341976,18.4057307520564,-0.970363623775233,0.352434431056801,0.530887394338984,-6.41488526446232 +"Q9VL93",0.0777510559377443,15.3813584471773,0.970182101971338,0.352520987002271,0.530887394338984,-6.41506034292297 +"Q8IQC6",-0.158767813456974,15.9596916301663,-0.970181349135159,0.352521346012792,0.530887394338984,-6.41506106897881 +"Q9XY35",-0.0830942888758983,19.1850179906198,-0.96951065363562,0.352841290188621,0.530887394338984,-6.4157077174513 +"Q9VS11",0.103268031880681,14.9399795803517,0.969240762876454,0.352970096116267,0.530887394338984,-6.41596782522466 +"Q7K0S6",0.123867089241514,17.3845170409259,0.965806991862482,0.354611827314095,0.53226094562442,-6.41927179678174 +"Q9W0M5",0.124700157777839,13.3065603828079,0.965675964206568,0.354674581975441,0.53226094562442,-6.41939767550777 +"Q9VNX9",0.162242195876182,13.597080997067,0.965329346240513,0.35484063041628,0.53226094562442,-6.41973060308662 +"Q9VX98",-0.0666187643238629,18.2018588267228,-0.9645499100774,0.355214225915003,0.532342613500652,-6.42047888524682 +"Q9VYS2",-0.112498191350722,15.0336573483283,-0.956170787262122,0.359248318229742,0.53790502226859,-6.42849081640205 +"Q94915",-0.166958351382808,17.0908600738439,-0.954881047816678,0.359872159553952,0.537969195694938,-6.42971878197461 +"Q9VKW5",0.0970734461939013,16.9797528758255,0.954748689596039,0.359936224457765,0.537969195694938,-6.4298447212676 +"Q9VG33",-0.0705027330268031,19.972998234768,-0.952748390565372,0.360905415493284,0.53872761075718,-6.43174621093577 +"A8E6W0",-0.0737764443616449,16.4597067142857,-0.95206646337609,0.361236250754836,0.53872761075718,-6.43239367993754 +"Q9VP77",-0.0748406852767118,15.3939150863811,-0.951703174603139,0.361412587792137,0.53872761075718,-6.43273845099118 +"Q9VN93",0.0445574920138334,20.3091174846045,0.94800470298298,0.363211289721578,0.540698773584587,-6.43624204681304 +"Q9VUV6",-0.0711599754229919,14.8330664701628,-0.947651725692019,0.363383288482207,0.540698773584587,-6.43657581992811 +"Q8IH18",0.064151133253235,15.6489392038906,0.946822645460963,0.363787510892356,0.540817796941578,-6.43735937772298 +"Q9VY41",-0.118144459260977,16.5327427912138,-0.943692707517627,0.365316414494092,0.542541040867991,-6.44031220505245 +"Q9W0Y1",0.056862568706709,17.7240050076461,0.943118902529165,0.365597200201212,0.542541040867991,-6.4408526388292 +"Q961B9",0.102391625109734,14.8551098598949,0.940833894322028,0.366716867674634,0.543680809554848,-6.44300198110296 +"Q9VVE2",-0.064059115481566,18.4208994947839,-0.940221941329976,0.367017141222277,0.543680809554848,-6.44357684757988 +"O44434",-0.0853139089056949,15.8738059861917,-0.93850837979038,0.367858881224372,0.543914157560938,-6.44518486614266 +"Q9XZ61",0.0449959969406066,18.5585683424342,0.938496263514133,0.36786483788324,0.543914157560938,-6.44519622724648 +"Q9VK00",0.209598360205243,17.6132201020212,0.937756672629057,0.368228568447853,0.543914157560938,-6.44588948489229 +"Q9V564",0.0841525410626485,14.0918613844143,0.937247727370438,0.368479015613825,0.543914157560938,-6.44636627562231 +"Q9VJQ5",0.107400176647486,14.4055937343728,0.933657694430182,0.370249065685257,0.546043714909822,-6.44972322373437 +"A1Z968",-0.0429994708549906,17.2663005225585,-0.930683477790116,0.371720039501212,0.54772882145585,-6.45249600800056 +"Q9VHC7",-0.0570176669823113,19.9696054238449,-0.927854107446726,0.373123202464152,0.549055912780018,-6.45512673908822 +"Q9VI04",0.165745962677446,16.342848398156,0.927540377052619,0.373279019839653,0.549055912780018,-6.45541802187412 +"Q7JVK8",-0.0465488452904488,19.1556973286507,-0.926452282252561,0.373819788608156,0.549366878765114,-6.45642760989112 +"Q9VGQ8",0.0682192581041843,16.2798281012676,0.924389025658762,0.374846715244964,0.550340541400844,-6.45833921632538 +"Q9VU75",0.0730237844789698,18.2357064777465,0.923686620046158,0.375196770176259,0.550340541400844,-6.45898916231412 +"Q9VNA3",-0.0611986332438583,18.6456375831638,-0.923134390524677,0.375472143953333,0.550340541400844,-6.45949985111919 +"O62530",-0.0889997162887664,15.7193892711393,-0.921856978131747,0.376109680818039,0.550790998774793,-6.46068016928753 +"Q9VH25",0.0657138400333057,16.1794917184969,0.920902727484956,0.376586428943109,0.551005406558865,-6.46156097480093 +"Q9W5P1",-0.0736164332543154,14.2402773754099,-0.920112936664221,0.376981333185372,0.55109979294759,-6.46228938690178 +"Q7K180",-0.0633604502894034,16.3401831667027,-0.913012554823598,0.38054466007485,0.555821797727539,-6.46881387096707 +"Q9VAP3",0.116003702003095,16.4797177066512,0.911228133481592,0.381443866801046,0.556647742628298,-6.47044673324381 +"Q7KMM4",-0.0862270948127115,14.4705657196182,-0.910554802256334,0.381783557944873,0.556656446374168,-6.4710621615238 +"Q9VG92",-0.0953425644030119,16.5959278039719,-0.909215840245861,0.382459683285797,0.557155241677475,-6.47228481688354 +"P05205",-0.072484502947006,18.1401683687703,-0.905566294297313,0.384306808714945,0.559357554045837,-6.475609486013 +"Q9VEP9",-0.0569644145325512,17.5799597671533,-0.903702795085403,0.385252365508243,0.560244939553399,-6.47730265618749 +"Q4QPU3",0.172297745835237,14.4112893400985,0.901443312109596,0.38640101855436,0.561425870164348,-6.47935158199843 +"A1ZB69",-0.0744171455812968,20.4786414679702,-0.899005343907348,0.387643076037339,0.562740340148199,-6.48155739582725 +"A1ZA23",0.0814532838192967,18.4805710753413,0.897660990239402,0.388329160530974,0.563246121535361,-6.48277152768731 +"Q24050",-0.0410899316797444,16.6606765577379,-0.894895955415329,0.389742929401585,0.564805565805251,-6.48526378980468 +"Q95SH0",-0.293274361130949,13.7630028904493,-0.892438421807012,0.391002461178951,0.565433181576616,-6.48747330510175 +"Q9VVW8",-0.0500943758837611,15.7841897007662,-0.892380697753418,0.391032079641678,0.565433181576616,-6.48752514036369 +"Q9VSC5",-0.0380299637601453,19.4526940489445,-0.891850774512275,0.391304058069806,0.565433181576616,-6.48800086723382 +"Q8T0N5",0.0615548155716752,18.6009268270367,0.890954419805389,0.391764401888768,0.565433181576616,-6.4888049930775 +"Q9VN95",0.0585443221552389,17.9351613542003,0.890747043759462,0.391870957975161,0.565433181576616,-6.48899093181751 +"Q9VSU7",-0.0541699755117353,14.7738190980807,-0.888427193392989,0.393064332212768,0.566664914547015,-6.49106841449102 +"Q9W0C3",0.157100891918247,18.5357911239313,0.884683801569778,0.394995286076009,0.568956940565442,-6.49441081087495 +"Q9VF28",0.0651428986605254,17.7543272874272,0.88315566557014,0.395785419299356,0.56960317462582,-6.49577173282426 +"Q9W0C1",-0.063621806831442,21.2609680411294,-0.881838890414799,0.39646713863177,0.5700924027912,-6.49694278374421 +"Q9V5C6",0.0540817522803252,20.6220851543436,0.879924605357785,0.397459639146468,0.570752388387795,-6.49864251305574 +"Q7JUS9",0.0957693392568224,20.2301541195203,0.87936588468058,0.39774964082244,0.570752388387795,-6.49913800655091 +"Q9W0Q2",-0.0498332750842874,15.5257964792929,-0.878974922523221,0.397952654493409,0.570752388387795,-6.49948456314324 +"Q9VD14",0.0566251322016953,17.6146186005908,0.878022963385437,0.39844727263032,0.570970833975408,-6.50032783838986 +"Q9XYW6",0.0434812715558319,16.6267459872354,0.877186920634148,0.398882010702298,0.571103170687925,-6.50106777603527 +"P04388",0.074377052690286,16.5781441814092,0.874791786201887,0.400129268424165,0.572397615550177,-6.50318418957769 +"P38979",0.0496889534068004,22.09343291739,0.872873354083691,0.401130209197102,0.573337779726449,-6.50487574189946 +"Q8IMX8",-0.0544366030249108,17.1687355390935,-0.871508489878378,0.401843367978574,0.573865357695429,-6.50607722412356 +"Q9VD58",-0.0350506393053927,22.723303572096,-0.870547872807726,0.402345821745205,0.574091386373826,-6.50692186776462 +"Q9VP57",-0.0643416360373621,19.4160523748787,-0.869442496627097,0.402924522941912,0.574425730142828,-6.50789278947815 +"Q7JVG2",0.0899369446950047,14.8419559299019,0.867367343806994,0.40401246805701,0.575145036781337,-6.50971262216107 +"Q9VUM1",-0.0650224257747851,16.5239657181576,-0.867164930388147,0.404118694908709,0.575145036781337,-6.50988992825794 +"A1Z9M5",0.11591661980226,15.0979767571556,0.860225677718454,0.407771933900197,0.579849604216136,-6.51594658140457 +"Q9VUW2",-0.198072271583872,14.3537806814533,-0.859125502975273,0.40835318526361,0.580181527274022,-6.51690291989635 +"Q961T9",0.109152871516731,17.9191353843788,0.855791485774163,0.410118064890767,0.581953335327054,-6.51979450994068 +"Q9VF82",0.0580149508435124,14.9158456946799,0.855452052432567,0.410298034978786,0.581953335327054,-6.52008834820043 +"Q23970",-0.0674593027792874,21.6084578156964,-0.854720234745344,0.410686231995851,0.582009035657672,-6.52072151570042 +"Q9W1C8",-0.0848490081086837,15.8992176970841,-0.849605927351464,0.413406078823226,0.585366162544263,-6.52513314954422 +"P54352",0.0740297348745216,16.0559424221683,0.847464089059365,0.414548734649446,0.586486250547308,-6.52697381351206 +"Q9VWD9",-0.0385137043536261,19.4565960399002,-0.842197556111081,0.417367429403086,0.589973620546058,-6.53148244035801 +"Q95WY3",0.0967870363084717,17.2365158158761,0.840885617681005,0.418071588174653,0.590468593628553,-6.53260173425997 +"A1ZBJ2",0.0728621690103175,19.2279150468928,0.839698732157505,0.418709313303298,0.590584344591726,-6.53361301560124 +"Q7KSM5",0.0456942199930452,18.9300736124172,0.839415341120764,0.418861678448448,0.590584344591726,-6.53385429201124 +"Q8IPW2",-0.0745423225435093,17.2360813797925,-0.836744795375935,0.420299321329344,0.591858348364933,-6.53612444807696 +"Q9VND8",-0.0819502742779719,18.2870736123248,-0.836419051347735,0.420474905762857,0.591858348364933,-6.53640091809654 +"Q59E04",0.0961725309069354,16.3796374421905,0.83499673522841,0.421242145554115,0.592438363224506,-6.53760697509707 +"A8JNP2",-0.061523873114961,21.1434185374744,-0.830701072873791,0.423565029522874,0.594785966747116,-6.54123850863934 +"P20007",0.337944540886761,15.1287700904774,0.830385251576444,0.423736146601814,0.594785966747116,-6.541504850576 +"O76752",-0.0810474152262941,17.8504952651647,-0.829625506736266,0.424147977288255,0.594785966747116,-6.54214520097086 +"Q7K5K3",0.0557585897180815,22.6649737845149,0.828525957319435,0.424744475894193,0.594785966747116,-6.54307103921475 +"Q9VIK0",0.122766758269435,12.7888837216763,0.827665328362763,0.425211751013016,0.594785966747116,-6.54379494626923 +"Q960X8",-0.0504183963853819,18.4435943822441,-0.827001402960299,0.425572460274379,0.594785966747116,-6.54435294466812 +"Q9VY24",0.101794254760343,17.7309556543533,0.826857192698911,0.425650836292226,0.594785966747116,-6.54447409439825 +"Q9VXK7",-0.0396597133462109,17.9834694318269,-0.826648903158552,0.425764055333367,0.594785966747116,-6.54464904360509 +"Q9VS44",-0.0474939943438599,15.1466974027958,-0.823117820311487,0.427686476102474,0.596549291312158,-6.54760898791278 +"Q9W4W8",0.0809528723204451,17.3248564189521,0.823016764823271,0.427741578183058,0.596549291312158,-6.54769353320398 +"O15971",-0.0692537856899982,17.1115322904785,-0.821612522993247,0.428507750137396,0.597118569113765,-6.54886740324863 +"Q9VJQ6",0.0865109712560006,14.3480426674184,0.818563815608975,0.430174291030462,0.598498296568044,-6.55140985061529 +"Q94533",-0.0972635230208585,15.3166843016096,-0.818488524637662,0.430215502149332,0.598498296568044,-6.5514725331002 +"Q7JR49",-0.0469442708427117,18.8931625536071,-0.814460967712445,0.432423821576132,0.601069111990823,-6.55481817557322 +"Q9VL69",0.0839236681045197,15.9766561463993,0.805644627139164,0.437283880255597,0.607318494809605,-6.56209068268349 +"Q9VUW4",0.0479989985656228,14.5474279594045,0.802643833678337,0.438946227458428,0.609120056073759,-6.56454996060204 +"A1Z729",0.0563775180729333,16.6895061132364,0.800813079229388,0.439962437598168,0.609391293940971,-6.56604633156797 +"Q9VMX3",-0.0963845505232932,12.4979514373125,-0.800663204973955,0.440045697431484,0.609391293940971,-6.56616869692733 +"Q9W3T9",-0.0651831943150398,18.6529669433313,-0.799798457381199,0.440526292812392,0.609391293940971,-6.56687432489396 +"Q9VH26",-0.130034598198851,18.3321621290813,-0.799660389166213,0.440603057849407,0.609391293940971,-6.56698692473589 +"Q9VRG6",-0.0562990559072265,16.354388743549,-0.798324125539156,0.441346463125904,0.609913753516163,-6.56807580354994 +"Q7K0W4",0.104022730794483,21.7429982743053,0.796673849789933,0.442265691897485,0.610236745446254,-6.5694183217885 +"Q9VU84",0.0502067206943728,18.3997061075836,0.796590977989025,0.442311885638202,0.610236745446254,-6.56948567366875 +"Q9VVM1",0.0682436678657208,15.5860647856542,0.793748246698588,0.44389836152375,0.611919394232739,-6.57179224646491 +"Q5U126",-0.092668431213216,21.6328681191897,-0.789736127789669,0.446143740305577,0.61368650892406,-6.57503513202496 +"Q9W0H6",-0.0527244277772958,18.1889632352742,-0.789019347589141,0.446545660227163,0.61368650892406,-6.57561294103615 +"Q7KUC2",-0.0529873728283334,19.3875470669741,-0.788942873620804,0.446588555304354,0.61368650892406,-6.57567456036971 +"Q8SX78",-0.0560933389707277,16.0028680247585,-0.788829894232374,0.446651931555042,0.61368650892406,-6.57576558438997 +"Q7JV09",0.049621991898583,15.2171652857816,0.785397333091146,0.448580218944551,0.61457769037635,-6.5785255396774 +"Q9VL89",0.0351700427203419,16.8720008939313,0.785291084458005,0.44863999133895,0.61457769037635,-6.57861079736368 +"Q9VW14",0.0544793072324943,13.8277892864,0.784657421844035,0.448996578453412,0.61457769037635,-6.57911905661805 +"Q9VP13",0.127884985474623,11.9373294670801,0.784212165248154,0.449247251574644,0.61457769037635,-6.57947597636157 +"Q9W074",-0.0819596311909034,13.5321075825185,-0.783686977012526,0.449543041279418,0.61457769037635,-6.57989673675222 +"Q9VB79",0.0496420031956148,17.6592194840505,0.783608103092981,0.449587474487358,0.61457769037635,-6.57995990569178 +"A1Z7K6",0.0540136688325585,15.607503756067,0.78268387782085,0.450108343260841,0.61457769037635,-6.58069968000924 +"Q9VE52",0.0386912810768347,16.0070744267995,0.782435898510438,0.450248164052698,0.61457769037635,-6.5808980362816 +"Q7K127",0.111248532430075,18.5910887054544,0.781579672704921,0.450731154316364,0.614733904660421,-6.58158249065532 +"Q8IQ70",0.0406139093229712,17.9074040029846,0.780110280225305,0.451560805523699,0.61536227419406,-6.58275553792174 +"Q8MLW4",-0.043612525379924,18.6739267008672,-0.77600625492214,0.453883234797894,0.618022233177867,-6.58602139341718 +"Q7KNM2",-0.0555585194278088,19.6423003879568,-0.773364405896995,0.455382285077666,0.619017914390636,-6.58811552363792 +"Q9VL18",0.0455312214428858,20.8684925025028,0.771965738300684,0.456177207485173,0.619017914390636,-6.5892216198397 +"Q9VYT3",-0.0730689323301483,14.3805604925854,-0.770886529905359,0.456791174774876,0.619017914390636,-6.59007385257503 +"Q9VZG0",0.0952727852030826,21.6491495802208,0.770756850683301,0.456864985543845,0.619017914390636,-6.59017618604403 +"Q9VVS6",-0.0507024076349154,16.5163462340747,-0.770515856698075,0.457002174678469,0.619017914390636,-6.59036632002373 +"Q9VIG0",-0.0458767831320657,17.3843707622021,-0.770502640827451,0.45700969875664,0.619017914390636,-6.5903767452381 +"Q7K3D4",0.0639879074450853,18.510885839959,0.770033389820981,0.457276904774781,0.619017914390636,-6.59074680538508 +"Q9VQD8",-0.0910147630473155,17.5001699137113,-0.769296217869946,0.457696875020682,0.619017914390636,-6.59132774415678 +"O76521",0.0635331781897097,16.0589973685743,0.768227111261966,0.458306387953306,0.619017914390636,-6.59216938065695 +"Q24372",-0.0584876017860072,16.8294565976518,-0.768193402774942,0.458325614072203,0.619017914390636,-6.59219590000616 +"Q8IPD8",-0.0994099283323564,18.3760191318462,-0.767522453875933,0.458708406580584,0.619033674900011,-6.59272353553807 +"Q95U34",0.0447581999788333,19.4607711105026,0.766024288804754,0.459563882356862,0.619133160923653,-6.5939001998451 +"Q9W1M9",0.0930471918805544,14.382704234588,0.765571309488402,0.459822740904098,0.619133160923653,-6.59425556452927 +"P23625",-0.0370104399022182,22.1917393710994,-0.765443710195907,0.459895675290412,0.619133160923653,-6.59435563273584 +"Q5U117",0.0974744495325233,14.4655727805127,0.763331896056799,0.461103836422131,0.620259031574286,-6.59600961871442 +"Q9VXI1",-0.143203902118479,19.5727714961941,-0.761437043874813,0.462189592549839,0.621218565973514,-6.59749017904254 +"Q9W436",0.0977564336014272,14.4374452279605,0.759063368408512,0.463552006950937,0.622548105953432,-6.59934019774045 +"P49028",0.0644449778338796,16.3454290801585,0.757921490235181,0.464208315856644,0.622927973329752,-6.60022831260765 +"Q9VJJ0",0.0536692538190238,19.7641092497838,0.756688670010634,0.464917555939701,0.623378202015612,-6.60118580661854 +"Q9VB10",0.0386323324246547,20.9726727528313,0.755195063717146,0.465777745028708,0.624029942737256,-6.6023439628739 +"Q7K0D8",0.0356607471915211,17.3215488435076,0.753267251289931,0.466889487299741,0.625017387492751,-6.60383575577621 +"Q8SXS0",0.083007028977427,14.5813319032839,0.750669724935076,0.468390093225036,0.626523396551211,-6.60584034984302 +"Q9V3Y4",-0.0843652565979873,14.0450196088911,-0.745860439038028,0.471176462537409,0.629745464352883,-6.6095353190227 +"Q24090",0.0838260941751923,15.8107082983283,0.744707982327398,0.471845709024518,0.630135022140029,-6.61041756211094 +"O97064",0.0490099131794501,16.4871097525208,0.742359813233931,0.473211166657416,0.631452980787656,-6.61221134335781 +"Q9VNI8",-0.0450473677711898,15.7564809377641,-0.740917218796683,0.474051260535641,0.632068347380854,-6.61331080836105 +"Q9VMQ9",0.0417724898212199,22.1014136692844,0.739309438314085,0.474988649790963,0.632812354513839,-6.61453388756007 +"Q9W2Y3",-0.0881022359276304,16.4635918396891,-0.738562457623378,0.475424558342828,0.632887600411682,-6.6151013159847 +"Q9VXE5",0.0510063307057376,14.6125619151115,0.736407250209258,0.47668365298087,0.634057681955415,-6.61673556189229 +"Q9VAV2",-0.0358106222751609,17.7770073601379,-0.735368189005814,0.477291425996654,0.634360237898342,-6.61752191247346 +"Q9VIE7",0.0461289945283099,15.0520558678408,0.732666128510757,0.478874188827637,0.635913051191783,-6.6195620897703 +"Q9VBU0",-0.0696699460464654,14.1174985127321,-0.732072679235503,0.479222245412513,0.635913051191783,-6.62000925822654 +"Q9VVU5",-0.0829586146300638,15.5565418550829,-0.730251329075132,0.480291444647079,0.636131749053435,-6.62137960576504 +"Q8IH23",0.0478701160620396,18.2371435558429,0.730114872137825,0.480371609472537,0.636131749053435,-6.62148214847388 +"Q7JV69",-0.0753447539136545,16.0864231608568,-0.729843297039969,0.480531177342523,0.636131749053435,-6.62168617607966 +"Q9VS84",0.0443042185036226,17.5330257169155,0.72875037268378,0.481173673359129,0.636477150803352,-6.62250656610669 +"Q9VAY6",-0.0349920436123465,15.2085288390863,-0.725505392076675,0.483084432291251,0.638444125342076,-6.62493578906119 +"Q9VQI6",0.0563247021961821,16.120637066652,0.724925787841207,0.483426217210457,0.638444125342076,-6.6253686491623 +"Q9GYU8",-0.17792355011448,12.3532384870612,-0.722731804563283,0.484721333418859,0.639648088720457,-6.62700431090447 +"Q7JXW8",0.0963801826750927,14.9004745945798,0.721131713977452,0.485667221864967,0.640389664878076,-6.62819436887226 +"Q8SY33",-0.0404366571214219,17.4047648862918,-0.717439359492632,0.487854282950867,0.642765358579815,-6.63093137239432 +"Q9VG97",0.0459333736988228,20.113722070407,0.712961788266634,0.49051455080649,0.645304346420166,-6.63423325226713 +"Q8IP97",-0.0427447262113354,19.9744979220433,-0.712893649636519,0.490555102674323,0.645304346420166,-6.63428335392323 +"Q9W125",-0.0388865807287502,21.3234296599641,-0.706975859693859,0.494084825907309,0.649435374005824,-6.63861797452021 +"Q9VES8",-0.0533724590282514,18.001847587605,-0.705555768659822,0.494934151246149,0.65003949943195,-6.63965324386529 +"Q9VA76",0.0612825836703337,15.2154680909054,0.701461986285952,0.49738752070683,0.652166375858618,-6.64262702870335 +"Q9VYU9",-0.0695426849493828,17.8581728881067,-0.70105298887771,0.497633034287615,0.652166375858618,-6.64292326110073 +"Q9VQ88",0.0710078387452437,16.4501168306925,0.700897323430386,0.497726496683466,0.652166375858618,-6.643035966378 +"P42207",0.0347049461630391,15.967188136115,0.698857206352365,0.498952377706439,0.653259470968869,-6.64451094011522 +"Q9VZW7",-0.097659398715404,13.9465557564765,-0.697930913354753,0.499509578536195,0.653476060390881,-6.64517933698408 +"Q9VMQ7",0.0462161314317164,15.9269545715369,0.696578797278421,0.500323603652375,0.654028033614547,-6.64615354326405 +"Q9VDC0",-0.0596823585225401,17.5856818272707,-0.692372229303494,0.502861236458393,0.656830495233045,-6.64917332755926 +"Q7JXF5",-0.0356359667108102,18.4948445421339,-0.690959780007119,0.503715038673463,0.657430895545646,-6.65018352755777 +"Q95RB1",-0.0429800026236151,15.945213301867,-0.6899567640194,0.504321874233481,0.657708276951873,-6.65089974736566 +"Q9VU95",0.216454859643964,16.5999431922349,0.683707199723438,0.508112807697624,0.662134502530966,-6.65534083537126 +"Q9VQ93",-0.0543630207929446,16.7503416124855,-0.682979076474269,0.508555586731931,0.662194159772725,-6.65585584297274 +"Q9VPX0",0.207669024734807,14.2989138093977,0.680812189171099,0.509874655034064,0.663393856939796,-6.65738551636024 +"Q9VLW8",-0.0776841266670818,14.2342187831339,-0.676800344696195,0.512322196033316,0.665938725159423,-6.6602058017681 +"Q9VEC2",-0.0435315202354758,16.7037995512201,-0.676298108547812,0.512629090590347,0.665938725159423,-6.66055778842665 +"Q9W258",0.0492969500859992,19.3224938902384,0.674656427905318,0.51363301105214,0.666723628354062,-6.66170666397842 +"P46415",0.0557941166056821,17.9289956606201,0.673013660100685,0.5146387622563,0.667268162661787,-6.66285372648925 +"Q9VH77",0.050329393092774,15.4408588109802,0.672664639487017,0.514852593132926,0.667268162661787,-6.66309709834484 +"Q9VSL6",0.0859093458985569,14.6424707566889,0.66982203532907,0.5165960990326,0.66886763078957,-6.66507491215944 +"O62602",0.0597713785110834,14.5005838998351,0.668819608721504,0.517211766042137,0.66886763078957,-6.66577053440027 +"Q9VJ60",-0.0468959087702672,16.5250844157754,-0.66832760703742,0.517514100265111,0.66886763078957,-6.66611160176496 +"Q9V4E7",-0.094549448980036,15.0162204104356,-0.668040273821,0.51769071423821,0.66886763078957,-6.66631068097799 +"Q9VK69",0.0323635455803206,20.2924868230168,0.666036270702419,0.518923494382147,0.669941477267354,-6.66769696115436 +"Q9VAI9",-0.080130679114184,22.0298537179247,-0.664793447292982,0.51968889519759,0.670022906884704,-6.66855476034432 +"Q9VA34",-0.054124112554911,14.5219493483432,-0.664073330327883,0.520132687333575,0.670022906884704,-6.66905110984673 +"P81900",-0.03821781596805,22.4006018444719,-0.662751188328351,0.520948073386938,0.670022906884704,-6.66996111947076 +"Q9VLM8",0.0932368450353067,16.8583076698672,0.66268425820425,0.520989370195516,0.670022906884704,-6.67000714189323 +"Q9VBI3",-0.0414631313823861,18.6532424770965,-0.662570664329409,0.521059463576354,0.670022906884704,-6.67008524137114 +"Q9VWA8",-0.0557577575849866,14.4609297902222,-0.662024225161845,0.521396722503805,0.670022906884704,-6.67046076323743 +"Q27377",-0.0591196342076081,20.1766953881159,-0.659298409242064,0.523080989422461,0.671566141215034,-6.67232971283327 +"Q08012",-0.0527305678229233,19.1498516834206,-0.65877806633766,0.523402867853444,0.671566141215034,-6.67268567478767 +"Q9VTM6",0.119488704532692,16.2429953700055,0.654890565842087,0.525811292849181,0.67385127903224,-6.67533685526521 +"O44226",-0.0315014347239213,20.1990338654296,-0.654599581792437,0.52599182571941,0.67385127903224,-6.6755347154153 +"Q868Z9",-0.075081782972461,20.4372709459379,-0.652543596260419,0.527268431975941,0.67496833809353,-6.67693040310008 +"Q9VB17",-0.0358103095298627,15.5568922822991,-0.651125773634929,0.528149837137829,0.675578165909431,-6.67789051159601 +"Q7JXF7",-0.0370520253366493,17.8804146234129,-0.648392441678235,0.529851454299523,0.677235422047206,-6.67973598596265 +"Q9VE56",-0.0404709800396645,17.4883025703053,-0.645182276419025,0.531853967621114,0.679274439503842,-6.68189421827528 +"Q9VRD4",-0.0542614419978698,20.2874656467988,-0.644494428187374,0.532283617722143,0.679303040826729,-6.68235537473007 +"Q9VK58",0.23848459453805,13.3847249652691,0.643228398319823,0.533074940078737,0.679792813494903,-6.68320297070648 +"A1ZB73",-0.122963573998252,13.8165044133177,-0.642143739514101,0.533753436604003,0.680138068949944,-6.68392791046455 +"A1Z7H8",-0.0682282863388899,14.7339169772704,-0.63859960200157,0.53597389459306,0.682446149756659,-6.68628874252625 +"Q9VNQ3",0.0553524512341799,15.1280996092294,0.636980654782398,0.53698995128305,0.683218336186215,-6.6873631231911 +"P02572",-0.0426048612708811,26.5894244936808,-0.634533696776696,0.538527761888319,0.684652672888503,-6.68898218606336 +"Q6AWN0",-0.0960145588434003,18.3952387547007,-0.633619845148845,0.539102724173963,0.684861648074769,-6.68958536268929 +"Q9V455",0.0571969558452636,19.3770583296521,0.631867187637551,0.540206412549508,0.685741473464672,-6.69073992090036 +"Q9VR89",-0.055165745814481,13.9544681654112,-0.630255156175352,0.54122268140947,0.68609111451292,-6.69179921555677 +"Q9W379",-0.0581792460920934,16.3210906124541,-0.630125447763303,0.541304500419066,0.68609111451292,-6.69188433982704 +"Q9VE12",-0.0405218421200004,15.69563569157,-0.626695157312838,0.543470851133687,0.688313879795741,-6.69412963125527 +"P17704",0.0462072091923247,20.31746461413,0.624161869346447,0.545073863962069,0.689087776309207,-6.69578046314627 +"Q7JYZ0",-0.0634227787601027,16.9073134594957,-0.624025028850645,0.545160529913962,0.689087776309207,-6.69586945870324 +"A1Z934",-0.0367805804118539,19.3086869595412,-0.622471418716328,0.5461450326924,0.689087776309207,-6.69687858890255 +"Q9U1K7",-0.110481939185391,17.4699439136558,-0.622087760343584,0.546388306569396,0.689087776309207,-6.69712742891878 +"Q9VPR1",-0.0767695092194991,13.6845185809437,-0.621375867193006,0.546839872782014,0.689087776309207,-6.69758878238523 +"A1Z8D3",0.108614039623562,16.6321093182225,0.620993366040189,0.547082586832037,0.689087776309207,-6.69783646480419 +"Q7K1Q7",-0.0490253446364779,16.5303281195213,-0.62020922974717,0.547580346135633,0.689087776309207,-6.69834377490269 +"Q5U1B0",-0.106635246182885,14.8120351528379,-0.62009210640916,0.547654716371871,0.689087776309207,-6.69841949849207 +"Q7K4Z4",0.0552985586752381,14.9562818899996,0.619863337783608,0.547799994835736,0.689087776309207,-6.69856736548313 +"Q0E980",0.0351622261054665,18.3793019838641,0.619030288816241,0.548329202121385,0.689233691890331,-6.6991053852778 +"Q9VJU8",-0.0368857276641652,15.604610519936,-0.617863756893023,0.549070742872944,0.689646083668728,-6.69985764859637 +"Q9VGZ3",0.09049768685502,16.9978445584458,0.616362261337942,0.550026042334111,0.689885445984427,-6.70082397129005 +"Q9VRL1",-0.0379517612350355,20.5050728447203,-0.615092285446333,0.550834769211371,0.689885445984427,-6.70163958079109 +"Q9VEW1",-0.110109254357321,14.6630521829412,-0.614950273693888,0.550925244410146,0.689885445984427,-6.7017306865654 +"Q0E9F9",0.0810001665710978,18.4680721023403,0.614166416097379,0.551424787199296,0.689885445984427,-6.70223320663793 +"P15425",0.0427633204900992,16.9948864953905,0.613697054840743,0.551724026717288,0.689885445984427,-6.70253382100429 +"Q9VJ19",0.0366956078264558,19.1127220888357,0.613667430533829,0.55174291663263,0.689885445984427,-6.70255278744421 +"P0DKM0",0.0475915066461141,16.9844487009516,0.609066937226021,0.554680804468479,0.693039387156122,-6.70548778881865 +"Q9Y105",-0.111140411485504,17.0281305942969,-0.606166500511366,0.556537502197059,0.694789578102898,-6.70732758204301 +"Q9VG51",0.104466965243784,19.2151689353544,0.605577969544778,0.556914667819889,0.694789578102898,-6.70769989396668 +"Q9VQL1",-0.0381236531256164,20.1164799644593,-0.604385957766302,0.557679014299471,0.694975157081601,-6.70845293837303 +"Q9VCW6",-0.0689476233036146,19.7846752667465,-0.604046601740598,0.557896723820302,0.694975157081601,-6.70866707002633 +"E2QCN9",-0.0380061678707335,17.426550276591,-0.60167407670966,0.559420101631603,0.69635278322501,-6.71016097400459 +"Q9VLU4",-0.0807632917371652,17.2123106766299,-0.600490718836655,0.560180784290181,0.696779677998525,-6.7109040390915 +"A1ZBM2",0.0495133263417884,18.584650146154,0.599289262553889,0.560953684836828,0.697221122435044,-6.71165706667837 +"Q0KI15",-0.0398575573351039,15.5952192172761,-0.598631167515997,0.561377288572768,0.697228084392686,-6.71206893687752 +"Q9VC05",-0.0625954012454635,14.9131932045361,-0.596253288408539,0.562909353752656,0.698610715818028,-6.71355360239622 +"Q9VDV3",-0.0301447231173579,17.5897987104993,-0.594772824007578,0.563864375344015,0.699099847543162,-6.71447515458896 +"Q9VJD1",-0.0363094606505108,18.5680685718679,-0.594343139818992,0.56414172349706,0.699099847543162,-6.71474221997986 +"Q9U6M0",-0.0371868067983669,16.2899473139055,-0.592868173786081,0.565094338514085,0.699760472636596,-6.71565759107025 +"Q9V3V9",0.0245976879598508,19.5229905122187,0.591878209095438,0.565734206533783,0.69982025213873,-6.71627077107207 +"Q9VMH2",-0.106422715451069,17.381563295025,-0.591495425392655,0.565981726699728,0.69982025213873,-6.71650760788635 +"Q9VHL2",-0.0242135553557574,20.676355922656,-0.590162209474985,0.566844288841629,0.700367610213212,-6.71733137549875 +"P08928",-0.0289046993870912,22.7432001495385,-0.586686664187133,0.569096262728719,0.702410888381866,-6.71947063884912 +"Q9W306",-0.0619056232372035,14.7281523650063,-0.586310575430564,0.569340240463,0.702410888381866,-6.71970141682993 +"Q9VTW6",0.117972447198717,16.3582160019602,0.585520393589772,0.569853035502636,0.702523919599702,-6.72018584024265 +"Q9XYZ9",0.035154640181986,21.9673136256804,0.582131800125995,0.572054933543143,0.704497660517715,-6.72225626397466 +"Q9VD30",-0.0519295957105541,21.4092989689148,-0.581474833051676,0.572482361442134,0.704497660517715,-6.72265636176254 +"Q7K2D2",0.036850447409833,20.3673150414135,0.581107971326473,0.572721119701451,0.704497660517715,-6.72287959835589 +"Q9V9U7",0.0374448078663043,17.7882386625905,0.578753461859323,0.574254745040783,0.70586360702139,-6.72430916993014 +"Q9VXA3",-0.0448143127826768,17.8243106692413,-0.577456237796842,0.575100646111415,0.706382826004301,-6.72509446292603 +"Q9VRZ7",-0.0518479580691995,17.2649161249609,-0.574803152578408,0.576832772215611,0.707989009606798,-6.726695379077 +"Q9V9S0",-0.048508676650453,17.1327227179487,-0.572294405492114,0.578473237635049,0.709480412040634,-6.7282028110051 +"Q9V3W9",-0.0292335131880961,18.5411635798691,-0.570101885230876,0.579908966269789,0.710718703701696,-6.72951514292672 +"Q7K568",0.0759544135980121,16.0522275696362,0.569214480678106,0.580490606399433,0.710909200788733,-6.73004494841595 +"Q9W078",-0.0357381644566779,19.4541925670275,-0.565948890316245,0.58263368114076,0.71301025689126,-6.73198789429536 +"Q0KIE7",0.0820966141970558,13.8452294168401,0.559927028555253,0.586596586301744,0.717258936437298,-6.73554308102882 +"Q95R34",0.0815673991873798,15.2485513117765,0.559367544978392,0.586965496544911,0.717258936437298,-6.73587156521232 +"Q9W1Y1",0.038669285920566,17.821017350858,0.557594545736987,0.5881353784485,0.718162380125987,-6.73691047913025 +"Q9W087",0.0549040554961167,16.7246504467441,0.556555448824627,0.588821578292618,0.71847431791667,-6.73751790366321 +"Q09101",0.0486954932140709,14.594746092953,0.553557143425486,0.59080395970069,0.720366231564876,-6.73926461582564 +"Q4V6M1",-0.0243279127882161,18.234967558562,-0.548931666927129,0.593869018839712,0.723411188625625,-6.74194175173867 +"Q9I7C6",0.130958957278404,15.4058096699453,0.547288054142299,0.594960147525942,0.723411188625625,-6.74288792133782 +"Q86BL4",-0.0334456008049386,14.9474631401491,-0.547233485105119,0.594996391606777,0.723411188625625,-6.74291928870845 +"Q9VGR1",-0.0416001666676724,14.2078313203524,-0.54717375995996,0.595036061627313,0.723411188625625,-6.7429536165171 +"Q9VB68",0.0309793333252681,15.4885177287763,0.546508797358666,0.595477829139309,0.723420989806531,-6.74333557274177 +"Q9VYT1",0.0595774320365194,14.2963884343657,0.544016985772268,0.597134777335863,0.724905974233056,-6.7447629612502 +"P29829",0.0358848088719057,21.3002217031645,0.542378697534107,0.59822546944308,0.725701878568041,-6.74569805583727 +"O61491",0.0271700431239594,20.8940385255895,0.54087192760312,0.59922951189613,0.726391588548507,-6.74655572236063 +"Q9VVJ7",-0.0247792088846346,18.2086405809315,-0.537966420551448,0.601168061383555,0.727894389567799,-6.74820317225408 +"Q8SXC2",0.0698259034170867,14.6626706607452,0.537705945050548,0.601342007688505,0.727894389567799,-6.74835045308946 +"P92181",-0.0333343395090289,16.5103540052504,-0.533720603266283,0.604006652801223,0.730589627898796,-6.75059544377881 +"Q9U1L2",-0.256160387041337,17.6145235069084,-0.531468953841106,0.605514798603566,0.731883104399093,-6.751856812593 +"Q9VMV5",-0.0325275670926395,17.6447550957462,-0.53040957248482,0.606225032237805,0.7322109730432,-6.75244852291609 +"Q9VVP9",0.0348324068191452,16.7611578186317,0.523147198015631,0.611105290053818,0.737071350550414,-6.75647464486118 +"Q9VR25",-0.0308750090126253,16.9117226124012,-0.523106194485778,0.61113290036644,0.737071350550414,-6.75649722653317 +"Q9VKJ4",0.0301439169176767,15.1079244434305,0.516515006073419,0.615579336876774,0.741412665716348,-6.760105248644 +"P40797",0.0406255592150799,19.1225212539575,0.516452726483537,0.615621428067831,0.741412665716348,-6.76013913271845 +"Q9VK11",-0.0342678940834382,18.69853309309,-0.513122672821081,0.617874114843656,0.743588761586737,-6.76194522360238 +"O97454",0.0520334737322692,14.1308126079679,0.512172640854094,0.618517537216549,0.743826425434177,-6.762458441704 +"Q9V9V4",-0.0402367402116575,18.6927859478668,-0.507515505562498,0.621676461941546,0.746789899672974,-6.76496115416963 +"Q9VUZ0",-0.0463289364246684,17.6640364748622,-0.507219957674433,0.621877200626955,0.746789899672974,-6.76511924345817 +"Q960W6",0.0625482269938988,14.0616741047332,0.50233001521884,0.62520313472555,0.750243761670659,-6.76772212243475 +"Q9W2J4",-0.059918735812369,15.2518508858656,-0.501478533630379,0.625783169534801,0.75039994736452,-6.76817289750994 +"Q9VFN9",-0.0422457944815235,16.0365904669516,-0.500112100352456,0.626714544402781,0.750687819487715,-6.76889476117283 +"Q9VKR0",0.205436632600362,13.302937032416,0.499805908716629,0.626923340855148,0.750687819487715,-6.76905625890047 +"Q9VXF9",-0.0224371835683819,17.5272621582586,-0.497736540984421,0.628335364466455,0.751838872259718,-6.77014524754725 +"Q9VAN1",-0.0525968537315471,14.8729687184041,-0.496379774565754,0.629261990017735,0.75240788483841,-6.77085689062619 +"Q9VJI7",0.0384803831942548,17.3566778049332,0.491431094292742,0.632647402499864,0.755348920301385,-6.77343679221928 +"Q9VWT3",-0.049290293509026,14.3268370420778,-0.49108971175272,0.632881268596601,0.755348920301385,-6.77361385346854 +"Q9W3C3",-0.0425901609095565,16.3935597205855,-0.490799357792128,0.633080210180657,0.755348920301385,-6.77376435557732 +"Q9W2K2",-0.0695026407889525,15.6633777905736,-0.489213256607903,0.63416749129421,0.756105343444419,-6.77458499120192 +"Q7K1U0",-0.0512388958064829,16.7295905687708,-0.487319353307352,0.635466951682707,0.757113482433396,-6.77556154884811 +"Q9VC31",-0.0434026586385983,17.6703172668165,-0.482779922346549,0.638586788083834,0.759582851819145,-6.7778874503983 +"Q9VEA5",-0.0263817713173591,15.6796529519836,-0.482389898987969,0.638855182833149,0.759582851819145,-6.7780863162135 +"Q9VND7",-0.0410892693399649,14.0091250813291,-0.482316468502558,0.638905720085288,0.759582851819145,-6.77812373984618 +"O61444",0.0525592925667517,16.508128941228,0.48155982136255,0.6394265805282,0.759660638405297,-6.77850904471905 +"Q9W197",0.0277357761145396,17.3522986114581,0.480652337269802,0.640051541273424,0.759861900956634,-6.77897039473278 +"Q95T12",-0.030008302265756,15.8989199770747,-0.478882588334665,0.641271158408992,0.760768344399857,-6.77986770504008 +"Q9VX02",0.0301754425412302,17.1891716443502,0.477571257869697,0.642175570147178,0.761299823031622,-6.78053053672092 +"P05389",0.0306092212016189,20.55224645321,0.47330379104603,0.645122981934156,0.764250805302679,-6.7826755157853 +"P04359",0.0370530574499881,18.8508277304986,0.470908256286882,0.646780298625622,0.765670360615711,-6.78387149400525 +"Q9VJG0",-0.15114684382786,13.2974179066091,-0.469011976732177,0.648093630317952,0.76668097543996,-6.78481408347562 +"Q9VAY2",-0.0194985870319613,21.1514561755768,-0.46775132544299,0.648967427695734,0.767170566546056,-6.78543869673585 +"Q8IPP8",-0.0491060319284813,19.0882506214116,-0.463911187377972,0.651632539044935,0.769775548956764,-6.7873314046186 +"Q7PLI0",0.0392398443534283,17.7699912144632,0.462832624781744,0.652381992244648,0.76983466037182,-6.78786030206053 +"Q9VCY3",0.0329653371834802,17.8691286842486,0.462510875593878,0.652605641346375,0.76983466037182,-6.78801784969262 +"Q8MRM0",-0.0271619226258188,18.6197688055569,-0.460584369650403,0.653945506861875,0.770477620758745,-6.78895897697349 +"Q7JVH6",0.0228412442355719,18.948579146766,0.460398956538782,0.65407452697505,0.770477620758745,-6.78904935467894 +"Q9VW90",0.100191031353868,14.995905288844,0.459573910596311,0.654648779728993,0.770609855037375,-6.78945109016303 +"Q9V6B9",-0.0513742270732163,15.835220055815,-0.458438168627788,0.655439665644505,0.770796506867724,-6.79000297679861 +"Q7JZW2",0.0269715876129624,20.5293995814445,0.458019156144377,0.655731560698622,0.770796506867724,-6.79020625394083 +"Q9VV60",-0.037369133719789,20.0697244804291,-0.449940460217134,0.661371057873488,0.776731767348389,-6.79409049469424 +"Q9VDI3",0.045928752503249,15.0207989485163,0.448852787697571,0.662132015125606,0.776731767348389,-6.79460835997296 +"C0HK94",0.0324780685472597,18.4970903712499,0.448392349570335,0.662454266627962,0.776731767348389,-6.79482722082562 +"Q7KS11",-0.0649353291403685,15.6904991012403,-0.447711115733487,0.66293117928318,0.776731767348389,-6.79515063558222 +"Q7KTH8",0.0231894157135919,17.6231166910845,0.447456976775297,0.663109134714692,0.776731767348389,-6.79527116622905 +"Q9VSK9",-0.0329487074571393,14.5702327747103,-0.444326477472053,0.66530297472801,0.778754639892154,-6.79675045510518 +"Q9VYS5",0.034737588339171,14.3139934136748,0.438945579103412,0.669081514901616,0.782628307753082,-6.79926972686144 +"Q9VW58",-0.0437988058166052,14.8488714303648,-0.434328426952948,0.672331375603989,0.785878580593871,-6.80140778860052 +"Q9W415",-0.0369796253582564,16.7128460611548,-0.431589759542955,0.674262339720603,0.787583741354318,-6.80266565778437 +"Q9W4W5",-0.0347199824490438,17.2326646535718,-0.430381573065671,0.675114979795644,0.787874930662552,-6.80321813212495 +"Q9VZS3",-0.0251315005600041,18.4145280439848,-0.429307415373349,0.675873432420329,0.787874930662552,-6.80370806065088 +"Q9VDC3",-0.0225925362900909,19.288996819041,-0.429229202386582,0.675928672528844,0.787874930662552,-6.8037436877263 +"Q7JYZ9",-0.041322878801207,18.1240655102936,-0.42752836786263,0.677130425640905,0.788724546067758,-6.80451688796161 +"Q9VLP1",0.0323057278423953,18.4621904375678,0.422860112364736,0.680433667421154,0.792019090899152,-6.80662381230915 +"Q9VGF3",0.0301998036530637,15.6960178483474,0.419943620212396,0.682500924166738,0.793871367859218,-6.80792874646087 +"Q9VE94",-0.044158086424245,14.6606160445414,-0.417201479107146,0.684447077203677,0.794852842157729,-6.80914769081212 +"Q9W4P5",-0.020470800824171,19.5290124332349,-0.415724417579321,0.685496368953514,0.794852842157729,-6.80980107188083 +"Q7JW03",-0.035661263740888,17.2129323501878,-0.415584012820862,0.685596147306105,0.794852842157729,-6.80986306331521 +"Q9VHF9",0.0523067173127281,16.994125903837,0.415460854139173,0.685683674913289,0.794852842157729,-6.80991742356181 +"Q9VUK8",0.0195567002026564,20.7392465972482,0.415283010329415,0.685810075158122,0.794852842157729,-6.80999589338122 +"Q9VL00",-0.0507726295085114,16.0278347843229,-0.414729003793965,0.68620389251027,0.794852842157729,-6.81024012831799 +"Q9VJ31",0.0268849539468174,17.1791415545383,0.411195728521015,0.688717813100093,0.797211181298372,-6.81179034312279 +"Q0E8X8",0.0831135760403541,19.7353570613096,0.40967677038546,0.689799757215068,0.7979098439908,-6.81245282821138 +"Q9VC58",0.0630353577798868,13.1881916888592,0.407600163683078,0.691280080261801,0.799068034564577,-6.81335467988627 +"Q24319",0.0291244843590022,16.2418447735978,0.40498258801524,0.693147953458216,0.799288674713471,-6.81448513299299 +"Q7K2W6",-0.0850653720104155,16.9060726625612,-0.404947098502826,0.693173293026699,0.799288674713471,-6.81450041128563 +"Q9VM69",-0.0450959581261987,16.9184127574515,-0.404754753368133,0.693310634562309,0.799288674713471,-6.81458319356616 +"Q9W1H6",-0.0194141664209866,17.1851750214809,-0.404646807108226,0.693387717212466,0.799288674713471,-6.81462963518995 +"P38040",-0.0364043070577651,19.0923082309245,-0.401210063159399,0.695843725562741,0.801565838562604,-6.81610193484614 +"O16158",-0.0254032779143998,21.2819987592901,-0.398764796813029,0.697593409874371,0.803026782381264,-6.81714205908602 +"Q9VRD9",0.10236158569281,16.1618781683788,0.397863862860282,0.698238526360185,0.803215077219854,-6.81752372503711 +"Q9Y112",-0.0167587234739273,22.2276088513127,-0.395939798660515,0.699617089808647,0.804246247967487,-6.81833601430774 +"Q9VG76",-0.0231888588256872,15.7933645858691,-0.391409018987992,0.70286777761783,0.807426620569242,-6.82023366803091 +"A8DZ14",0.0198817988506583,19.4869535697205,0.386706530078365,0.706248219793816,0.810656448684599,-6.82218077077811 +"Q9VG73",-0.0318863736057793,18.080802729478,-0.38614633570433,0.706651364740652,0.810656448684599,-6.82241119702099 +"O18332",0.0175127767686796,20.5568128213487,0.384071384615518,0.708145423373096,0.810913829340362,-6.82326185925466 +"P55830",0.0237913221584876,22.0510037167304,0.384004281835805,0.70819376182328,0.810913829340362,-6.8232892947186 +"Q9VA18",-0.0303758449402913,21.6013682300405,-0.383809334894763,0.708334202247546,0.810913829340362,-6.82336897372881 +"Q9VII5",0.0300590318961049,17.3360605858406,0.377022034684131,0.713230809120403,0.815959526483424,-6.8261185153167 +"Q9VER6",-0.0336422398910674,15.0511555403211,-0.375893038269308,0.714046623428682,0.816036523798153,-6.82657123576477 +"A0A6H2EG56",-0.0258496689728069,20.9355944385446,-0.375574905961938,0.714276573588312,0.816036523798153,-6.82669856582229 +"Q9VVK5",-0.0426065434813943,15.8746162179267,-0.372932384261417,0.716187763372844,0.817120190317339,-6.82775215267754 +"Q7KTJ7",-0.0201357288566548,22.075959604189,-0.372381910471841,0.716586146253869,0.817120190317339,-6.8279707164688 +"Q6NL44",0.0337109836215923,15.2072467662662,0.372231869851254,0.71669474726275,0.817120190317339,-6.82803023499617 +"Q9VTP4",0.0274094287410058,20.9552069546097,0.363475057825243,0.723044258109288,0.823796326862222,-6.83146336647313 +"Q9W1G7",-0.0284087197967686,18.8732685071219,-0.3613682497892,0.724575161784541,0.824977044270727,-6.83227743972495 +"Q9VH39",-0.0815981462986279,18.4531203381608,-0.36012951639742,0.72547586913189,0.825409147578247,-6.83275393024443 +"Q9U5L1",-0.0163235724226674,17.6899626943884,-0.359485418906179,0.725944376197415,0.825409147578247,-6.83300105689403 +"P45594",0.0265588304425286,23.0619737086395,0.355910742613996,0.728546662541423,0.827803701034805,-6.83436472864973 +"Q9VD00",-0.0186927349236008,17.9384969835199,-0.34899991758124,0.733587686752378,0.83296409904899,-6.83696330164678 +"O76454",-0.0338313016490801,18.0107488750705,-0.347436880464054,0.734729654165317,0.833131785298027,-6.83754411666981 +"Q9VH07",0.0222764293032576,18.2262097601556,0.347430487565385,0.734734326243044,0.833131785298027,-6.83754648699447 +"Q24298",-0.019656575858253,19.3917982974124,-0.346577374419265,0.73535790127791,0.833272404437197,-6.83786241689021 +"M9PGG8",0.0575697204170815,18.6083509826547,0.345424400181407,0.736200972762381,0.833661386671861,-6.83828818540886 +"P05812",-0.0364288049549799,15.7772960328485,-0.344406077894013,0.736945885933212,0.833938763729035,-6.83866307514194 +"Q9W1F7",0.0183857232082403,20.3034580215084,0.342699389914285,0.738194977056551,0.83478591303751,-6.83928895349631 +"Q9W0R0",-0.0206447173891711,16.8037676154505,-0.341655459242762,0.738959397864762,0.835084197587007,-6.83967028450099 +"O76902",-0.0234528708230961,17.1573340654868,-0.339065280214951,0.74085733117694,0.836662172243152,-6.84061151520005 +"Q0E8X7",0.0292093048457751,21.048314766439,0.337351248679831,0.742114263934304,0.837140015899422,-6.84123051029684 +"Q9VPQ2",0.021579048170377,16.450678314247,0.337119564459566,0.742284222730962,0.837140015899422,-6.84131394359461 +"Q9V393",0.0309155846496765,15.6909142393024,0.331655351036574,0.74629679064804,0.841096653243873,-6.84326541230775 +"Q9NCC3",0.0241153203348041,17.3364694238296,0.328334088443989,0.748739557684405,0.843279933975414,-6.84443628041009 +"A1ZAA9",-0.0237456584132367,16.5042701766614,-0.323862173070781,0.752033161722419,0.846417890521589,-6.84599453757062 +"Q9VHN4",-0.0284008055998672,14.6084352814224,-0.322239997852263,0.753229184647853,0.847192366819028,-6.84655460900949 +"Q9VL70",0.0333110751565329,23.5171025033037,0.315856053604273,0.757942568277617,0.851919274856513,-6.84873191456123 +"Q9VHJ7",-0.0420229348400447,14.7063854097834,-0.312589195297952,0.760358535899815,0.854059284768277,-6.84982955817309 +"Q9V434",0.035537656858267,15.0367476794549,0.311118747890209,0.761446860094593,0.85470616597428,-6.85031996020766 +"Q9VMC8",-0.0235068601204702,16.3714257367262,-0.30844432372009,0.763427662712905,0.855809203238381,-6.85120606988036 +"P55828",-0.0203910292693763,19.9615133989608,-0.30779316101176,0.76391021190425,0.855809203238381,-6.8514206796153 +"A1Z6X6",-0.0228046026681348,18.5979924374458,-0.307714154834892,0.763968767159442,0.855809203238381,-6.8514466880863 +"Q9VLM9",0.0253982112778619,18.4109476342477,0.306819639484069,0.764631842465451,0.855977122974747,-6.85174070058178 +"M9PF16",-0.0427070814974257,21.1139785368399,-0.299756626153811,0.769874292057189,0.861267819685708,-6.8540326335458 +"M9NFC0",0.0293113154960771,19.9614587488786,0.298111992966964,0.771096737516184,0.862057210574393,-6.85455877678991 +"O62621",-0.0329878915124056,13.1094316426763,-0.295481960070318,0.773052969905263,0.86366534079168,-6.8553942441109 +"P32234",-0.0217385765579365,16.7810155378058,-0.291424062198208,0.776074476955463,0.866460661018549,-6.85666899525602 +"Q0E8C8",-0.0187180417120363,17.5555792352133,-0.290638211681327,0.776660068922062,0.866534444790635,-6.85691385676145 +"Q9VDT5",0.0304685008275918,19.1426229559425,0.287784304649945,0.778787927897435,0.868327716399012,-6.85779762271902 +"Q9VF77",0.0226411051848139,15.7100788418394,0.28373445418907,0.781810718197773,0.870949499553181,-6.85903698740606 +"Q9VEP6",-0.0212112742799242,18.6817046023052,-0.283235142884056,0.782183663267785,0.870949499553181,-6.85918859170269 +"P20351",0.0422267413845496,13.9802282331593,0.28105337406716,0.783813935967909,0.872182551830869,-6.85984794751701 +"P36951",-0.0230761012720002,20.3451023317773,-0.279092971263458,0.785279721499628,0.873231050307586,-6.86043611659553 +"Q9V535",0.0242230955752305,18.5823222582011,0.275722617787787,0.787801747641298,0.875451908771276,-6.86143781601152 +"Q7KSE4",-0.0223218489167643,13.8904074996149,-0.274247787201004,0.788906159142396,0.876095521604206,-6.86187237338045 +"Q9W3N9",-0.0161028929967273,20.2228251740243,-0.269413125104437,0.792529923831118,0.879534206886431,-6.86328077679454 +"Q7KND8",-0.0140071991564898,15.4939763675453,-0.268023723596469,0.793572283144034,0.879579068372345,-6.86368095548532 +"O97111",0.0344293504898143,14.7625033571201,0.267953471817837,0.793624998741235,0.879579068372345,-6.86370113532494 +"B7Z0N0",0.0270169605448576,13.0781479286455,0.264732412238684,0.79604317034107,0.881673312170587,-6.86462077621739 +"P53501",-0.0332314917507119,24.6324574917877,-0.262107376104348,0.798015537741282,0.883087071524897,-6.86536212524026 +"Q9VLT7",0.0253044764686052,18.0628744472653,0.261357219721904,0.798579451719784,0.883087071524897,-6.86557264006387 +"Q9I7X6",-0.0288973633508167,14.7517624859443,-0.260920358155807,0.798907908232056,0.883087071524897,-6.86569496103229 +"Q9VFU7",-0.0226940899223109,14.8075584070783,-0.258384338298208,0.800815426200732,0.884088991233869,-6.86640105220845 +"Q9VTZ6",-0.0336039256288529,17.0836163108343,-0.258305988828725,0.800874379948667,0.884088991233869,-6.86642275815864 +"Q9VH37",-0.0259111631557296,16.6634989209646,-0.254401150115903,0.803814190196666,0.886747400296322,-6.86749631438258 +"Q9V4N3",-0.0231732308761288,19.6905778009504,-0.253160293112285,0.804749050964322,0.887104087450941,-6.86783407898065 +"Q8SXY6",0.016171557951413,19.0626310953736,0.252560309923423,0.805201192086766,0.887104087450941,-6.86799681052237 +"Q95RQ8",-0.0433778982715864,14.0436587414643,-0.251851018937632,0.805735802177556,0.887107140615289,-6.86818869692776 +"Q9VLG9",0.02759441117378,15.7693409399335,0.249390459487794,0.807591186906125,0.888340798417383,-6.86885022290583 +"Q9VW59",-0.0154587046170001,19.68972059136,-0.248952635720543,0.80792145755346,0.888340798417383,-6.86896725963985 +"Q9VBL3",-0.0435412418786587,14.5593125494054,-0.246251470312796,0.809959931490224,0.889995497843013,-6.86968482299167 +"Q7K0B6",-0.0151628781392503,20.2340549820899,-0.244141185468361,0.811553512367164,0.890326387052111,-6.87024003168747 +"Q7JZN0",0.0283131085799155,16.7984817244563,0.24398624057023,0.811670554117581,0.890326387052111,-6.87028061088246 +"O62619",0.0194037455618528,22.1165455102714,0.243732318962089,0.811862370927015,0.890326387052111,-6.87034705641398 +"Q95029",0.0126754140699248,21.8502948204478,0.23911743096617,0.815350767438702,0.893564441581967,-6.87154273929967 +"Q9V3Q4",-0.023642802784309,16.0042590098976,-0.235728071306686,0.817915450124553,0.895217147676056,-6.87240648894422 +"Q7JVM1",-0.0334540059777435,15.8536032148169,-0.235705926602847,0.817932214063735,0.895217147676056,-6.87241209219883 +"Q9VDK7",-0.011560161736675,17.868203658519,-0.233989411102445,0.819231935226542,0.896051716693687,-6.87284483468611 +"O97422",0.0206586688542298,15.3903907593606,0.232627325809251,0.820263689940652,0.896592290184146,-6.8731859949017 +"Q9VY92",-0.0224229280165886,21.3461480520954,-0.231398622159674,0.821194714737115,0.897022124545847,-6.8734920550384 +"Q9VQG4",0.0128549393545008,19.1410783423487,0.229219726455479,0.822846433016763,0.897560038280342,-6.87403085284802 +"Q9VZ66",0.012241805298272,17.0908612288253,0.228942977241321,0.82305628778786,0.897560038280342,-6.87409892608345 +"Q9V4C8",-0.0156481037502481,17.2340145273717,-0.22838375130614,0.823480384407738,0.897560038280342,-6.87423623275437 +"Q9VI53",-0.0166949794716338,16.3648143169684,-0.227619462033965,0.824060088595083,0.897560038280342,-6.87442335061325 +"Q7K1C3",-0.0267303220886763,17.1438550203407,-0.227200800066555,0.824377685039259,0.897560038280342,-6.87452558651515 +"Q9I7I3",0.0220450937776011,14.5419573289251,0.221721129307269,0.828537556598303,0.901500746514005,-6.87584650881536 +"Q0KI98",0.0135110380530357,16.5736958257179,0.217781880674745,0.831531419640176,0.903586592558537,-6.87677635104232 +"Q9V3Z4",0.0114756949016801,18.7245885246524,0.217425077092263,0.831802731865136,0.903586592558537,-6.87685975679074 +"Q7KUK9",0.0209135895076038,18.4059822837087,0.217060813902145,0.83207973991002,0.903586592558537,-6.87694476640598 +"Q9W0K9",-0.0229989161991941,14.1863185174898,-0.214101193294985,0.834331294436916,0.90405317266182,-6.87763022573798 +"Q9VKZ8",-0.0155639261457985,18.6705002164307,-0.21389653916707,0.834487044147656,0.90405317266182,-6.87767727944458 +"Q9VKK1",-0.0178623480159565,14.5076402574444,-0.213491427493877,0.834795371619916,0.90405317266182,-6.87777029038073 +"Q9VN44",-0.0209917068034073,19.550726434416,-0.212792159165809,0.835327647588247,0.90405317266182,-6.87793042626541 +"Q24400",-0.0296969732578098,21.4843106957728,-0.21173627537125,0.836131538446994,0.90405317266182,-6.87817124136563 +"Q9VTB0",0.0159607482197206,17.0719497556874,0.21158886016236,0.836243787680822,0.90405317266182,-6.87820476778351 +"A1ZA83",0.0134954443874076,17.0412049820456,0.211267656030169,0.836488381556165,0.90405317266182,-6.87827773853824 +"Q9VQV7",-0.0132477441788481,16.282765316873,-0.209925306549802,0.837510762508892,0.90405317266182,-6.8785815017126 +"Q9VZV2",0.0186108160129397,14.9861560780801,0.20941715498309,0.837897870461202,0.90405317266182,-6.87869599124193 +"Q9VDF4",-0.0102483433246086,18.6836790565405,-0.208772425268924,0.838389087475156,0.90405317266182,-6.87884085642086 +"Q9VIT0",-0.0140914098825853,16.4487148570414,-0.208664427248618,0.838471377762492,0.90405317266182,-6.87886507930532 +"E1JJH5",0.00897297677325781,21.2263789734344,0.207074754119796,0.839682879150809,0.904774575209011,-6.87922018847795 +"Q3YMU0",-0.00914652292466656,23.1756471033597,-0.204472245640194,0.841667202873908,0.906327239763511,-6.87979573258571 +"Q9VQ35",-0.043583072036995,12.1729358053235,-0.201475103778817,0.843953840806151,0.90804271165416,-6.88044959870581 +"Q7JVZ8",-0.0184968365452534,16.1115628249007,-0.200957271262561,0.844349068210792,0.90804271165416,-6.88056159972314 +"Q9VAY3",-0.0172591983259647,13.8129716146475,-0.199041389715422,0.845811721621075,0.909029608030898,-6.88097349425235 +"Q9W254",-0.0105846457421777,18.1696768350023,-0.197608121205688,0.846906327130425,0.909619931521925,-6.88127907040773 +"Q9W3G8",0.0316369862109944,15.7681908913236,0.193070282342001,0.850374142150919,0.912524901006006,-6.88223208450363 +"Q8SY96",-0.016287990210575,18.7296309039022,-0.191691458398895,0.851428496280074,0.912524901006006,-6.88251730233604 +"Q9VZS1",0.0182219252363147,15.44918855086,0.191578336081355,0.851515011710796,0.912524901006006,-6.88254061221992 +"Q9VTV9",-0.0151812695229978,17.2447995753615,-0.1910880656279,0.851889991832476,0.912524901006006,-6.88264147891737 +"Q9W3T7",-0.00944424756185924,17.4244787366653,-0.190491398336198,0.852346400340142,0.912524901006006,-6.88276388897716 +"Q9V9U4",-0.0126729728659427,15.9402067313149,-0.187828709536437,0.854383854386181,0.914119479869243,-6.88330552048799 +"Q9W2N0",0.00958567346415151,16.0128596507884,0.182514507052004,0.858453506327586,0.917884902919496,-6.88436385970532 +"Q7KQM6",0.0110081469668,15.1693562183869,0.181498804916907,0.859231829903949,0.91791518744448,-6.8845627034106 +"Q02748",0.0143441856336715,19.5173087709989,0.181041319757907,0.859582447714795,0.91791518744448,-6.88465190483785 +"Q9W0H3",-0.0226703664955341,16.6836540184876,-0.177924761380877,0.861971821777752,0.919877798288733,-6.88525362224298 +"Q86BI3",-0.0150976913017686,18.0558199144984,-0.176232413751155,0.863269900004659,0.919894625333655,-6.88557601345544 +"Q9VZZ6",-0.0114540866577215,18.3815062598743,-0.175888777234721,0.863533530393995,0.919894625333655,-6.88564110179083 +"Q6NP72",-0.0100188587109962,18.7140377572829,-0.175747296549862,0.86364207630246,0.919894625333655,-6.88566786299294 +"Q9VNX4",-0.0200479178262682,20.8624862759392,-0.174179609663458,0.864845022818207,0.920588065131314,-6.88596295906919 +"Q9NBD7",-0.0255593719459366,13.0922474664559,-0.171930532638014,0.866571448923574,0.921837485206966,-6.88638172509847 +"Q9VEB3",0.0363539738066301,12.4236151617691,0.170015347489905,0.86804214690536,0.922307721775694,-6.88673405461847 +"Q9VUQ7",-0.0149500369871181,16.5355925385857,-0.169914793200453,0.868119378409976,0.922307721775694,-6.88675244474332 +"Q95SH2",0.00907135668009573,18.743613331027,0.162948946773944,0.873472996480703,0.927404811031071,-6.88800006071156 +"Q966T5",0.0143066225780384,16.5305596843363,0.159322377540704,0.87626283868006,0.929775073103269,-6.88862902584215 +"Q86PD3",-0.00748465057896652,18.8776454887587,-0.15716544573279,0.877922954054933,0.93048930398078,-6.88899642543031 +"Q9VYT0",-0.0132196564084595,18.2173821959271,-0.153970223656017,0.880383327691267,0.93048930398078,-6.88953151808131 +"Q7K084",0.020438400027583,23.7579607001931,0.153830353400754,0.880491060360759,0.93048930398078,-6.88955469166916 +"Q9VDQ3",-0.0198625325280037,13.4949194693472,-0.153682931735619,0.880604612102648,0.93048930398078,-6.88957909366847 +"Q9VFR0",0.0315265851937099,15.4243010247806,0.153650695166375,0.880629442737607,0.93048930398078,-6.88958442652863 +"Q9VWU1",0.0144918902395812,14.9205996195723,0.153089504640812,0.881061728412384,0.93048930398078,-6.88967708516333 +"Q9V595",-0.0092416584114261,18.5426215206405,-0.152993408138829,0.881135755706573,0.93048930398078,-6.88969291788178 +"Q9VQ29",-0.0085806415291394,22.1334841923043,-0.152652033172789,0.881398741180834,0.93048930398078,-6.88974908227104 +"P91926",-0.0165399355122098,17.6558806581874,-0.150420117182463,0.883118510940368,0.93171516524259,-6.89011320738972 +"Q9VGE7",-0.011423272021533,13.9940519890456,-0.147119306035174,0.885663050451808,0.933809082271565,-6.89064192587942 +"Q9VP18",0.010230823787694,17.1579286425541,0.143619939491292,0.888362120209107,0.936063181622735,-6.89118968753844 +"Q9V431",-0.00635192559256481,18.5914723815647,-0.14208541134743,0.889546172957669,0.93671907606906,-6.89142574641383 +"P16378",0.00691542596875294,20.3758154643692,0.134908541553228,0.89508757632555,0.941959670227771,-6.89249623014667 +"Q9VZ20",0.00692572584910067,18.7079031391731,0.131904825991844,0.897408555605882,0.943806728089918,-6.8929278444703 +"Q8MRT7",0.00951723062047094,15.4279724275468,0.127133469820512,0.901097443916503,0.946665277434263,-6.89359353941884 +"P08120",0.0124207796672273,18.2136657200855,0.126921131160248,0.901261667005761,0.946665277434263,-6.89362259642781 +"A1Z7P1",0.0143175853314368,14.5626808437876,0.124368047121109,0.903236601421811,0.948142637615847,-6.89396817540901 +"Q9VTZ5",-0.00673215891297829,18.0265069793204,-0.118941550846355,0.907436509380995,0.951952262671383,-6.89467943099214 +"Q9VPX5",-0.00721754159174282,18.7850094486542,-0.116518342233631,0.909312944476383,0.95332117623294,-6.89498682245957 +"Q9VXG4",-0.00954626419870763,19.9886837410907,-0.114276818863585,0.911049203554452,0.9545415022166,-6.89526554711825 +"Q9VMG0",0.0282456321789955,14.7847545367734,0.112461788549224,0.912455461000085,0.955414757657339,-6.89548728148944 +"Q9VCU0",-0.0104702399817427,17.3198988389872,-0.110996709183334,0.913590809990388,0.956003432286052,-6.8956636805211 +"P56538",0.00830270229593211,17.0421064613243,0.107832057357898,0.916043908581664,0.957969429162517,-6.89603683490335 +"O77430",-0.00451915006363279,19.5373224650511,-0.105928296798068,0.917520060570749,0.958911943002512,-6.89625612512898 +"Q8SZ63",-0.0110112114616605,14.0690890005505,-0.10082380616439,0.921479601905901,0.961602139155573,-6.8968248613056 +"Q9V470",-0.00647771226299909,19.9184307174943,-0.100484607592781,0.921742797288689,0.961602139155573,-6.89686166119528 +"Q9VEK8",-0.00507531036222275,18.8914527004802,-0.0992916332081795,0.922668542903244,0.961602139155573,-6.89699010452416 +"P25455",0.00566454189542043,15.7575198147575,0.0991900891738657,0.92274734639393,0.961602139155573,-6.89700096669447 +"Q9VZG2",0.018259512209525,21.9298238335844,0.0984160564009126,0.923348064713083,0.961602139155573,-6.89708340040911 +"Q7JZF5",0.00586181374081107,16.9374722392407,0.0977581702310614,0.923858682115513,0.961602139155573,-6.89715295780576 +"O97479",0.0139318322703623,17.8277819582208,0.0974090913332441,0.924129633732843,0.961602139155573,-6.89718967631585 +"Q9U4G1",0.0062917051939344,19.2376226359685,0.0957780386559407,0.925395773179871,0.962017862203136,-6.89735950388434 +"Q02910",-0.0107147410030137,16.3663056775869,-0.0954085132985536,0.925682655177478,0.962017862203136,-6.89739758162545 +"Q9V4Q8",0.00519840932704163,16.9113294736479,0.0929336201743627,0.927604326856101,0.963414705601479,-6.89764881889724 +"Q9VZY0",0.0104392110752087,17.2247539041416,0.0912869722129704,0.92888316131115,0.964142571914747,-6.89781232508168 +"Q9VHK6",-0.0084979833195824,18.0698912231983,-0.0891253814634663,0.930562232394004,0.965284703751989,-6.89802253277841 +"Q9V3I2",-0.00623517862583078,17.3672788027116,-0.0872286931854655,0.932035824120322,0.966212401884834,-6.89820283644493 +"A1Z9J3",0.0105146814507933,17.7153965508791,0.0845208284635874,0.934140100864673,0.967684839820214,-6.89845354047049 +"Q9VGL0",-0.0107309537446181,12.9817895954054,-0.0839079088260237,0.934616472991826,0.967684839820214,-6.8985091910512 +"Q0E8E8",0.00484575466280646,21.4536430494742,0.0794404231355976,0.938089476634822,0.970678192944717,-6.89890259997867 +"O15943",0.00580114304581869,20.1570243085285,0.0738075260694614,0.942470370214512,0.97460668166014,-6.89936799755913 +"Q9VEJ3",0.0148053491916684,19.9898526559333,0.0724369616586938,0.943536610120902,0.975104749492976,-6.89947606565255 +"Q9VDU7",-0.00399454010227984,18.3638885594964,-0.0708944161361633,0.944736781700603,0.975740527477775,-6.89959527383913 +"Q9VN71",0.00507245446575766,18.6240608402028,0.0699184715720489,0.94549618562645,0.975807111901711,-6.89966937097399 +"Q9VK18",0.0062020736471986,14.6294647309995,0.0693079393260138,0.945971282940687,0.975807111901711,-6.89971520293776 +"Q9VFM0",0.00624396168275965,14.33603732904,0.0655882489737364,0.948866297012152,0.978188494076805,-6.89998575835135 +"Q9VS97",-0.00686807505341314,15.1478379820658,-0.0634837344104269,0.950504572439209,0.979272159869426,-6.90013222841781 +"Q9VZ49",-0.00366206529748325,18.8729330376129,-0.0613805052129552,0.952142085475655,0.979967031725493,-6.90027384044411 +"Q9VD26",0.00450691698662098,16.2283754929761,0.0603815673601663,0.95291991055619,0.979967031725493,-6.90033942982193 +"Q07093",0.00525214845497324,14.5640487446979,0.060353761959269,0.95294156202563,0.979967031725493,-6.90034124011546 +"Q9VL66",-0.00355459534328872,15.7189399012843,-0.0592023765666789,0.953838155678663,0.980284684948866,-6.90041547034979 +"Q9V438",-0.00296473934280428,19.0222288769153,-0.0553603938584711,0.95683041492883,0.982754391687986,-6.90065282541554 +"Q9VLV5",0.00284564134480547,17.5039710220412,0.0526349379204135,0.958953510565767,0.983785891357795,-6.90081155510793 +"Q9W3C4",0.00788558239061921,14.8131268864973,0.0525569024639187,0.959014304165333,0.983785891357795,-6.90081598194972 +"Q9VXP4",-0.00328259174884771,18.0205955043369,-0.0513039521093599,0.959990453294147,0.984181976702297,-6.90088616115505 +"Q9VWW2",0.00948694389416893,15.3004629785109,0.0487926264734753,0.961947182146957,0.985262664069907,-6.90102172767641 +"A0A6H2EGA2",-0.00331949021691713,15.8592852899924,-0.0482354609460693,0.962381340086438,0.985262664069907,-6.90105088300236 +"Q9VRL2",-0.0114286819247411,12.2818501016443,-0.0476768563395655,0.962816632154645,0.985262664069907,-6.9010797776368 +"Q7JUN9",0.00965799835391401,13.6088706833193,0.0459524593885412,0.964160445737923,0.985530618750453,-6.90116685226518 +"Q0E9B7",0.0080995257619314,12.8808469945841,0.0458244932765841,0.96426017374145,0.985530618750453,-6.90117318621394 +"P08736",-0.00270463755130734,24.3699934166779,-0.0450545076005081,0.964860261109872,0.985540058500469,-6.9012109255047 +"Q9VS02",0.00365502229117354,17.9616159832086,0.0435032892810243,0.966069269630876,0.985673371786764,-6.90128501409787 +"P02283",0.0028928471988543,21.6011912000646,0.0433706657829091,0.966172639611126,0.985673371786764,-6.901291228003 +"Q9VC67",0.00528792130944211,15.1965979412645,0.039090494310686,0.96950904609914,0.98813282029017,-6.90148158652233 +"Q95SN8",0.00252944908751473,17.6791519622537,0.0387580144052731,0.969768241495808,0.98813282029017,-6.90149554650424 +"Q9V4E0",-0.00722013399690979,18.3766346856715,-0.0362778338521145,0.971701858666894,0.988374277037887,-6.90159592147154 +"P40417",-0.00243913563164355,19.7961244445676,-0.03625577980741,0.971719053477935,0.988374277037887,-6.90159678426049 +"P02515",-0.009328248337372,18.0272522157987,-0.0361739388342726,0.971782862315429,0.988374277037887,-6.90159998142323 +"Q9VCU6",-0.00300710857846731,15.4516023804583,-0.0343370360532679,0.973215091024591,0.989227770767226,-6.90166984047928 +"P22769",0.00164596211016743,20.147907257704,0.0304514344646579,0.976245003164224,0.991703206624802,-6.9018056228265 +"Q9VXJ7",0.00295871425714012,15.0051528400174,0.0292074232363806,0.977215142451321,0.991762050756384,-6.90184565350556 +"Q9VA41",0.00395254592240946,17.4324026741286,0.028852297967435,0.977492093191544,0.991762050756384,-6.90185677471729 +"Q9W073",0.00192614953945203,14.5521392928729,0.0260855255186499,0.979649912696482,0.993145277560413,-6.90193876150536 +"Q8T9B6",-0.00228568391262485,19.5370696800698,-0.0254313996393088,0.980160094173145,0.993145277560413,-6.90195693815752 +"Q9VLS5",-0.00167155088650617,14.6780688885057,-0.0248139868784258,0.980641649965228,0.993145277560413,-6.90197367123015 +"Q9VGR2",-0.00172952158109396,15.6857557068526,-0.0236978501914666,0.981512209551958,0.993423765493123,-6.90200287713606 +"Q9VW40",-0.0014614152595982,14.6574098236884,-0.0193612769916217,0.984894858965961,0.9960649873319,-6.90210359864331 +"A0A0B4KH34",-0.0010675549263226,23.4059105493331,-0.0186584945944653,0.985443080021317,0.9960649873319,-6.90211801132804 +"Q9VQR9",0.00112544658415104,16.3278308197624,0.0180557817376969,0.985913245854296,0.9960649873319,-6.90212994738537 +"P25171",-0.00145069914557006,16.81352000244,-0.0156118166496397,0.987819795774167,0.996354456177478,-6.90217433120316 +"Q9VGS3",-0.00118769695006549,19.1969716511432,-0.014678254816235,0.988548093828933,0.996354456177478,-6.90218958447747 +"Q9VZ19",-0.00120376062119121,20.4015991480078,-0.0142050908146493,0.988917226677713,0.996354456177478,-6.90219695638216 +"A1Z8D0",0.00348197047848764,13.861301960269,0.0135477128037413,0.989430076199294,0.996354456177478,-6.90220679747166 +"Q9VQF7",-0.00141314544399407,18.6958601972766,-0.0125980105023666,0.990170989492157,0.996354456177478,-6.90222019146702 +"Q9VHA8",-0.000699213285756173,18.6068897557647,-0.0124080414075114,0.990319195672684,0.996354456177478,-6.90222275388903 +"Q9VH19",-0.00122036884473786,13.9753052030461,-0.0121310703635133,0.990535277924636,0.996354456177478,-6.9022264200878 +"A1Z6S7",0.00066124607110396,17.5729393272358,0.0114014860275803,0.991104475555368,0.996354456177478,-6.90223568130099 +"Q9W404",-0.000753426520880396,15.9772601883845,-0.0107973868414878,0.991575777730583,0.996354456177478,-6.90224291504354 +"Q9W1W4",-0.000683026173895485,17.296233356857,-0.00778176725486892,0.993928530580248,0.99759982459725,-6.90227313735874 +"P54397",-0.00110050331422862,14.8187407695473,-0.00767563371520417,0.994011336019562,0.99759982459725,-6.90227402230214 +"Q8SYD0",-0.00059044150026466,15.4602411489596,-0.00594119351376207,0.995364556788206,0.998357234349205,-6.90228676208797 +"Q9W257",0.00071644678218874,17.0489607928035,0.0043979702928867,0.99656860181957,0.998964199420098,-6.90229536888997 +"Q9VMB3",-0.000184662290507731,18.720425284667,-0.00177240888203187,0.998617121512543,0.999651408667975,-6.90230410790149 +"P05031",9.85850438599556e-05,13.2764304528713,0.000816401791430202,0.999363022272472,0.999651408667975,-6.90230544292849 +"Q9V8M5",0.000124550934526013,19.8509275908819,0.000784072703830589,0.999388246254432,0.999651408667975,-6.9023054708392 +"Q9VL68",-2.16626279936349e-05,20.8041513755318,-0.00044678259774609,0.999651408667975,0.999651408667975,-6.90230569478314 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_Earth_significant.csv new file mode 100644 index 0000000..42dc53f --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_Earth_significant.csv @@ -0,0 +1,42 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.677337048443508,18.1282760796353,12.5358146896418,6.41290643339207e-08,7.36022869640016e-05,8.79766996029268 +"Q9VFZ4",0.639562902078255,16.4804537361971,11.7295258897874,1.28270593296848e-07,7.36022869640016e-05,8.13997240662761 +"Q9VLC5",0.533100280623366,21.6850374737522,11.5423534758884,1.51556621712871e-07,7.36022869640016e-05,7.98031180668832 +"Q9W370",0.583547445019455,18.3204812365226,11.0503590812335,2.37638188041011e-07,7.36022869640016e-05,7.54730035785959 +"P21187",0.580871936934624,18.8453311878769,10.9596927200247,2.58653134710081e-07,7.36022869640016e-05,7.46532714450581 +"Q9VHR8",0.52279870593258,20.3322073283353,10.3504731129904,4.64353462302016e-07,0.000107534837527998,6.89605297738134 +"Q9VXQ0",0.647839252227998,14.9702186953671,10.2442098389243,5.15754616441238e-07,0.000107534837527998,6.79335041330216 +"Q9VQE0",0.57893034694257,17.2771467791299,9.86366019150861,7.56791136172248e-07,0.000121683930303126,6.41685761403111 +"Q9VIE8",0.540427659600912,24.8202962323816,9.8443821825572,7.7188179708175e-07,0.000121683930303126,6.39741550142497 +"Q9VA42",-0.52730769138142,20.44637604246,-9.66945700171383,9.24663491143739e-07,0.000121683930303126,6.2193320291937 +"Q9VZF6",0.627736242643975,15.0380570115786,9.65212435789203,9.41493759730285e-07,0.000121683930303126,6.20152122060554 +"Q9VNB9",0.73428633524464,18.8272865429815,9.64513290166304,9.48375955599906e-07,0.000121683930303126,6.19432838388546 +"A1Z803",0.502810500204976,18.7241072580702,9.3713560948397,1.26564090849273e-06,0.00013531868777229,5.90877301542234 +"P17336",0.564301229115877,20.6951623777099,9.06949525510898,1.75350486366235e-06,0.000152907192134089,5.5849047173021 +"Q9VNW6",0.682036784364254,21.4617941625739,9.06694604753996,1.75840295613806e-06,0.000152907192134089,5.58212837684654 +"O97125",0.537872792050312,18.4053353355981,9.02883369825891,1.83341956995311e-06,0.000152907192134089,5.54053660495726 +"P41093",0.623397237729094,18.8355796054782,8.41078581327548,3.68182532982811e-06,0.000262033738850516,4.84356328630111 +"Q9W253",0.502318549677815,15.1068541662566,8.20979292233125,4.65759978744158e-06,0.000307174212139967,4.60743906394774 +"Q9VNE9",0.66223218560279,18.7720088912541,8.15454294939241,4.97224444111458e-06,0.000307174212139967,4.54168872791254 +"Q9VC06",0.651655167867565,16.2787785075986,7.95875439278526,6.28507209612377e-06,0.000361500008839119,4.30570937748347 +"Q9VXP3",0.67286212914663,14.5222380106146,7.79047583955936,7.71317878915503e-06,0.000428852740677019,4.09911017736994 +"Q9I7Q5",-0.572597641264363,20.6732751306916,-7.56741068720755,1.01683025337711e-05,0.000530022769572818,3.81974420985569 +"P45437",0.521029435087762,15.9949204609525,7.39683448263058,1.26099019941861e-05,0.000590048467441377,3.60179250178903 +"Q9W3J5",0.557991313558908,16.0139677528003,6.31074640510996,5.39941744194715e-05,0.00163749605330324,2.12173280054298 +"Q9VR79",0.527422574355459,20.2302829306034,6.14930813905591,6.79086170045808e-05,0.00195295815799381,1.88756201888024 +"P50887",0.608644887749229,17.6568887674278,6.06790248813779,7.63345106495725e-05,0.00208731088136864,1.76805031033484 +"Q9VCX3",0.740206365909239,12.9401757315591,6.04554873512094,7.88384983153409e-05,0.00212100992241917,1.73506431888563 +"Q9VV36",-0.523209203391218,23.1979127313407,-5.73455269127842,0.000124414097716358,0.00261675408407217,1.26859224384829 +"Q7JXZ2",0.519931583660593,17.4579788873117,5.72869618070961,0.000125503793001063,0.00261675408407217,1.25967243095629 +"P10676",-0.655514005724665,19.9128512890527,-5.67880684571527,0.000135208430383291,0.00271720074553409,1.18348491387541 +"Q9W3E2",-0.634307082032201,17.7112104076546,-5.66294678460955,0.00013845824665798,0.00274938518363703,1.15918839623462 +"A1ZA22",0.590691853952409,13.4734284669821,5.54209452491998,0.000166120825646045,0.00314874474065458,0.972845948697322 +"Q9VAY9",0.539726643299582,14.5035220179372,5.4957162301816,0.000178245816355016,0.00327114194813987,0.900770242568008 +"P19334",-0.76460943930176,15.4010045728876,-5.29389441302987,0.000243052469565174,0.00389818768494913,0.583492113204746 +"Q8MSI2",-0.582327975782238,24.1442451584085,-5.18645047309419,0.000287358272081104,0.00431814052100254,0.412192121308197 +"O16797",0.700026653213751,16.6512775871783,4.85200260092471,0.000489029437040668,0.00652560880787068,-0.131431150790043 +"Q9VV31",-0.914129140048026,15.9080548630959,-4.55990758257485,0.000788040750712005,0.0087630131479175,-0.618586397278158 +"Q9VED8",0.562512169993475,16.2654653689014,4.48419676975233,0.000893473313167278,0.00967736030105858,-0.74663547791143 +"Q9VF23",0.718199960919366,15.353932661404,3.90999858463462,0.0023713799518089,0.0177284800201529,-1.73867289699003 +"Q9W1R0",0.50981938320759,13.9417218624182,3.77253738693149,0.00301275971248471,0.0205113600017326,-1.98074786027892 +"Q8MSS7",0.554892322146086,14.0723467041167,3.39734151229441,0.00584361283549628,0.0322753185748602,-2.64714311734915 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_SFug_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_SFug_results.csv new file mode 100644 index 0000000..a1e1256 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_SFug_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P06002",-1.09562743848828,17.0500392303794,-15.7099558545369,5.26665674082983e-09,8.78478344370416e-06,10.5077325867723 +"Q9V4E7",-1.39747885563374,15.6676851137624,-11.5151788847452,1.43208805226584e-07,0.000119436143558971,7.8088822522949 +"Q9W2N0",-0.532885038647706,16.2840950068443,-9.61909692880088,9.11450643574002e-07,0.000506766557827145,6.15057118923534 +"Q0E8E8",-0.567182386897635,21.7396571202544,-7.84890897576552,6.81691351902504e-06,0.00284265293743344,4.26102135029475 +"Q7JYH3",-0.427682607422867,19.2428728080408,-7.41841452807607,1.16910874645679e-05,0.00390014677817985,3.74252247482072 +"A0A0B7P9G0",-0.564586413906392,14.7571622353989,-7.22355674001133,1.5031584400568e-05,0.00417878046335789,3.49952160672344 +"Q9VU68",-0.591940801372402,19.3781374414581,-7.08389071841982,1.80497560996111e-05,0.00430099902487876,3.32207758166717 +"P54185",0.471733552013703,17.3904454196719,6.9766775608608,2.08057791459681e-05,0.00430437486413121,3.18398472587666 +"P10676",0.406714413769901,19.3817370793055,6.89441934860521,2.32250442309238e-05,0.00430437486413121,3.07691618594238 +"Q9VM10",-0.390897980526901,17.1738876695003,-6.24498609804359,5.70779122869984e-05,0.00952059576947133,2.19671928419315 +"Q9V3A8",-0.342503694816203,15.7274690398777,-6.12232300711579,6.8071432351676e-05,0.0101549098960601,2.02337952847713 +"Q7JUS9",-0.61523525275328,20.5856564155254,-6.07349909008635,7.30569057270512e-05,0.0101549098960601,1.95374841112839 +"Q7JYX5",-0.429588638333634,15.1085925690954,-5.98287358705713,8.33712137729642e-05,0.0106971680441003,1.82353777839121 +"Q9VLB7",-0.352529471628412,21.3102133303724,-5.86801379428449,9.87226802057703e-05,0.0111841498222254,1.65670377854108 +"O76902",-0.404527458849039,17.3478713594998,-5.85544363207177,0.000100576886890517,0.0111841498222254,1.63832300764992 +"Q9VZX9",-0.389388586252274,18.4390897210659,-5.57671119575803,0.000152813370759834,0.0159307939017127,1.22452491576542 +"Q9VM07",0.271952044830348,17.1203464918657,5.50793361125436,0.000169713955808359,0.0166519340169613,1.12059030444253 +"Q23970",0.394229104390508,21.3776136121115,5.39045218814465,0.000203332129807425,0.0188421106954881,0.941387417093662 +"Q9VAJ9",-0.504196945167958,17.8432400985038,-5.22962798874512,0.000261233518040513,0.0229335530574513,0.6926775636966 +"A1ZB70",0.304659313508715,15.9635727533973,5.16677875065224,0.000288395822470088,0.0240522115940053,0.594425770826134 +"Q9V3I2",-0.372013471393496,17.5501679490955,-5.09849730384013,0.000321319700575245,0.0255219647885481,0.487014362161495 +"P00408",-0.25951920101603,21.3679963070753,-4.87935581204181,0.000456604704069987,0.0320538769615787,0.137660865149414 +"Q7K148",-0.270125567296514,17.0263355031883,-4.87384007229339,0.000460700927739212,0.0320538769615787,0.128777955846957 +"Q9VGW7",-0.270487817541197,16.8078182026861,-4.87316239528985,0.000461206862756529,0.0320538769615787,0.127686280145007 +"Q9V3B6",0.594917757195388,13.0781141518043,4.79606299953825,0.000522767059207392,0.0340922458018409,0.0030596437794399 +"P46415",-0.335787446928975,18.1247864423875,-4.78600512853143,0.000531413903386009,0.0340922458018409,-0.0132602992336999 +"P05031",-0.600737922214011,13.5768487065002,-4.74509094279347,0.000568169461495648,0.0351002467323978,-0.0797939388933129 +"Q9W4P5",-0.261700728791919,19.6496273972188,-4.59379196305635,0.000729038824701874,0.0434298842715259,-0.327836922617609 +"Q9W2L6",-0.350052570769499,20.9919168128713,-4.50114307870269,0.000850581718856379,0.0446435393871285,-0.481244769074784 +"A0A0B4K7J2",-0.313676441819805,15.7492393366093,-4.47589451526257,0.000887261264099422,0.0446435393871285,-0.523245484533859 +"Q9W4W5",-0.276780853594396,17.3536950891445,-4.44878420894978,0.000928495273978579,0.0446435393871285,-0.568434194086656 +"Q9VPN5",0.218688205472269,21.1534553322814,4.43454806009418,0.000950946639055677,0.0446435393871285,-0.592201080885886 +"Q9VXZ8",-0.271820844321422,18.0661778961345,-4.4268121509365,0.000963384235812924,0.0446435393871285,-0.605126718634243 +"P54195",0.429188729034781,18.7595851188612,4.41092822064762,0.000989458516926319,0.0446435393871285,-0.631690150053863 +"Q9VA34",0.246386186258913,14.3716941989362,4.40670776912765,0.000996510004015292,0.0446435393871285,-0.638753517305899 +"A0A0B4K692",-0.279307085630606,16.0368687201411,-4.40286191000401,0.00100298140181483,0.0446435393871285,-0.645191900216996 +"Q9VKC8",-0.29945310024695,17.8701071716264,-4.39622464071679,0.00101425347602836,0.0446435393871285,-0.656307736281443 +"P19107",-0.236486110617047,24.0796371641824,-4.394584638893,0.0010170590507859,0.0446435393871285,-0.659055190070166 +"Q0KIE7",-0.54881745799122,14.1606864529342,-4.37885472704243,0.00104438425607733,0.0446675112599227,-0.685424036565176 +"Q9VGS3",-0.33788120191463,19.3653184036255,-4.30283555059019,0.00118768271707279,0.0495263693019355,-0.813284744294644 +"Q8T3L6",0.236569363846396,17.3162707226768,4.27962313225382,0.00123542073259196,0.0502605312673995,-0.852465069812929 +"O01666",-0.259321278331292,22.815771389114,-4.20226729563606,0.00140948572945938,0.0559767189699582,-0.983486783711042 +"Q9VK00",-0.469945429356713,17.9529919968021,-4.11156093762306,0.00164661674794831,0.0617973113448272,-1.1379755731017 +"Q9VVB4",0.236570057131026,15.9037364775404,4.10877668437073,0.00165452081352008,0.0617973113448272,-1.14273171681898 +"Q95RQ8",-0.789408978528503,14.4166742815928,-4.10434134998572,0.00166719365138922,0.0617973113448272,-1.15030997895425 +"Q8IQ70",-0.247091963681797,18.0512569394869,-4.07636836406749,0.00174948029189994,0.0619439607394608,-1.19815245679051 +"Q9VRL2",0.674815382454264,11.9387280694548,4.06686910724408,0.00177837491489383,0.0619439607394608,-1.2144175974845 +"Q9VXK7",-0.25214049175197,18.0897098210298,-4.062055896526,0.00179320452653938,0.0619439607394608,-1.22266257277148 +"P07486",-0.299764717430847,22.174921274752,-4.04955385297408,0.00183232704129394,0.0619439607394608,-1.24408946562783 +"Q9U4G1",-0.316481859564718,19.3990094183478,-4.04186305962104,0.00185683335549942,0.0619439607394608,-1.25727835916118 +"Q95R98",-0.305109482528687,16.4091510010573,-4.01334905398494,0.00195070280238017,0.06199533859656,-1.30622844290837 +"P54192",0.282031268010744,24.2453149747956,4.00903031885688,0.00196534426645038,0.06199533859656,-1.31364943657966 +"Q9W461",0.283955172854967,16.1263347650681,4.00443009120969,0.00198106557476053,0.06199533859656,-1.32155613229817 +"A1Z843",-0.234240165915686,17.6695745698284,-3.99691111440333,0.00200704333585986,0.06199533859656,-1.33448389723579 +"Q24253",-0.295294138616246,19.1089370559444,-3.97253193844162,0.00209373027307039,0.0632975564308772,-1.37643771216578 +"Q9V396",-0.227881925427813,20.9710426741107,-3.96396746954944,0.00212509781782321,0.0632975564308772,-1.39118961678792 +"Q9U9Q4",-0.222252610646084,18.0399057794836,-3.91871257750719,0.0022991260994355,0.0672796900676914,-1.46925211000611 +"Q9VZJ2",0.217075668900041,17.2457972540006,3.90655474227967,0.00234835078520007,0.0675353294778228,-1.4902554780244 +"Q27272",0.434741228952593,15.6523296838131,3.89355780477475,0.002402181393531,0.0679125180408424,-1.51272293171938 +"Q9W308",0.279638639874097,16.9891658246316,3.87098414711658,0.00249873354726428,0.0694647926139469,-1.55178037610011 +"Q9VPU6",0.257416981692449,15.3103604421898,3.83763399531488,0.00264878732906414,0.0716480436134766,-1.60956270304639 +"Q9W3L4",-0.326521356641496,17.6390387954845,-3.83453913953188,0.00266317668107647,0.0716480436134766,-1.6149295135486 +"Q9VV46",0.346684585623684,23.8009758845677,3.8242205135779,0.0027117391365679,0.071796521901512,-1.63282874342351 +"O62619",-0.304984832282472,22.2787397991936,-3.78087934833144,0.00292592422422007,0.0740689301049585,-1.70810293621435 +"Q7K486",0.209530556976723,17.6045736856005,3.78020980200057,0.00292936675350614,0.0740689301049585,-1.70926693474504 +"Q27377",0.363700724426185,19.965285208799,3.7764819092523,0.00294861063462239,0.0740689301049585,-1.71574845446059 +"Q8T4G5",-0.176422272503707,19.7195830072993,-3.76644823618911,0.00300105679007066,0.0740689301049585,-1.7331987494942 +"Q9VYT6",-0.318767599600452,16.4267362639587,-3.76294453922322,0.00301959667094555,0.0740689301049585,-1.73929405609378 +"Q9VA09",-0.218627887054994,16.6251054380596,-3.74314002850226,0.00312663779090279,0.0755830700757371,-1.77376449264388 +"Q9VR25",-0.213882787473892,17.0032265016318,-3.73240880156443,0.00318626638955628,0.0759241762539981,-1.79245439361841 +"Q8MLS1",0.262453311772965,18.3624020068503,3.69957585108676,0.00337609129747011,0.0793143701997204,-1.84968740452875 +"Q9V3N7",-0.212476379436414,20.7351321178021,-3.68366125228769,0.00347225804645637,0.0793762982045464,-1.87745525957855 +"Q24319",-0.331507209176548,16.4221606203655,-3.67879512996635,0.0035022222136218,0.0793762982045464,-1.88594899859864 +"Q95RQ1",0.563504088717631,12.1033161776103,3.67568860005355,0.00352149044792352,0.0793762982045464,-1.89137219600499 +"O15971",-0.233868706762818,17.1938397510149,-3.6303715602249,0.00381530872547655,0.0848524660545985,-1.97055245981375 +"Q9VVW3",-0.236494897169468,16.6795827100979,-3.60540489723492,0.00398784143689098,0.0875226252201863,-2.01422758963961 +"Q9VD09",0.345696499053769,14.4754753640894,3.5852578517044,0.00413290279112065,0.0895283357868734,-2.0494968414708 +"Q7K5K3",-0.263997872663111,22.8248520157055,-3.52473839653275,0.00460210032259542,0.0984141453601175,-2.15556618847676 +"Q9W299",-0.442524429707822,14.9253395211295,-3.50769055479155,0.0047438890421958,0.100162112941552,-2.18547589772238 +"Q9W309",0.321694252665264,18.2755142817924,3.47175180452679,0.00505764188907654,0.102392779800479,-2.24856830780047 +"A1ZAA9",-0.239548084067959,16.6121713894888,-3.46790878110581,0.00509242632195215,0.102392779800479,-2.25531790006818 +"Q9VH81",-0.277506326618006,14.6294925078464,-3.46218634389551,0.00514467617430546,0.102392779800479,-2.26536934996407 +"Q7K1Z5",0.281669963365722,15.86258343135,3.45825791069551,0.00518086274466365,0.102392779800479,-2.272270314803 +"Q9W3K6",-0.224913036111568,16.2710424271966,-3.45015465046645,0.00525633021743838,0.102392779800479,-2.28650678246128 +"Q9VFN7",0.245366652361341,18.4718219500585,3.44854785357789,0.00527142775345935,0.102392779800479,-2.28933000175303 +"Q9VBP9",-0.323506653862109,14.0630558967419,-3.44771783140138,0.00527924404247073,0.102392779800479,-2.29078842474376 +"Q9VVL5",-0.176661557082461,17.3439667699557,-3.41620301511136,0.00558495278179713,0.107077025747559,-2.3461791258325 +"Q24492",-0.253769627596697,15.1759078918011,-3.40224944182014,0.00572603001784192,0.107994669078557,-2.37071348307906 +"Q9V393",-0.341790095397204,15.8772670793258,-3.39871826217888,0.00576230548440741,0.107994669078557,-2.37692314469486 +"Q24372",-0.263730524140312,16.9320780588289,-3.38128740078199,0.00594483850182585,0.110177673567172,-2.40758037191533 +"O76742",-0.24309897861778,18.1001448748244,-3.355109549201,0.00623011889379963,0.113126353332684,-2.45363484112821 +"Q9W0R0",0.193027277117844,16.696931618197,3.34847380855676,0.00630462650527182,0.113126353332684,-2.46531125500675 +"Q7JWQ7",0.4455749833533,14.3068524119871,3.34822793694259,0.00630740459228995,0.113126353332684,-2.46574391248942 +"Q9V3L7",-0.22439590673326,17.7156943453058,-3.30525188038545,0.00681266411591125,0.118624317226834,-2.54138308589143 +"Q9Y0V3",0.265810070938496,15.0820187312873,3.3014148596931,0.0068597329959688,0.118624317226834,-2.54813754704372 +"A1Z7S3",-0.175772888321323,20.0425167116731,-3.30012026660167,0.00687568836637007,0.118624317226834,-2.55041650608357 +"P36241",0.239918980039938,19.7907064403389,3.2982814084171,0.00689841652937824,0.118624317226834,-2.55365360067894 +"Q7K8X7",-0.209825966484722,19.5467585758134,-3.27586392083391,0.00718171886440912,0.122235786386065,-2.59311932526462 +"O18332",-0.246691041303823,20.6889147303849,-3.25935946240418,0.0073978318091996,0.123120373284843,-2.62217726974851 +"Q9VJ68",0.237700133407483,17.7493763389874,3.25823336522143,0.00741281580918102,0.123120373284843,-2.62415992972572 +"Q9NHE5",-0.394919985818973,15.7155782002885,-3.25506571670956,0.00745513051664818,0.123120373284843,-2.62973706067564 +"Q7KSQ0",-0.175704697832654,20.9966027670454,-3.23288273031488,0.0077584155345746,0.125240629211045,-2.6687939607336 +"Q9VAY3",-0.335671567648731,13.9721777993089,-3.23206139872422,0.00776988218627753,0.125240629211045,-2.67024005104312 +"Q9XYZ5",-0.223440166720346,16.0864617238036,-3.2292852044436,0.00780876824817068,0.125240629211045,-2.67512799169658 +"A1Z968",0.207073014627429,17.1412642798173,3.20834351896968,0.00810853222443791,0.128809826193928,-2.71199840166226 +"Q9VW59",-0.171414795459402,19.7676986367812,-3.16960243630669,0.00869419127731128,0.135468709560069,-2.78019857111226 +"Q9W3J1",-0.196452675661636,15.6664277001235,-3.16494006915928,0.00876750372618442,0.135468709560069,-2.78840511887259 +"A8WH76",-0.216290018358688,19.0590616544844,-3.16469621766317,0.00877135529525629,0.135468709560069,-2.78883433007432 +"Q9GYU8",-0.725560628962533,12.6270570264852,-3.15928998788294,0.00885718649425329,0.135539330939582,-2.79834979436229 +"Q7K2Q8",0.198943260068326,16.0086265980747,3.15085930531256,0.00899273444932992,0.136120177624721,-2.81318767427534 +"Q9VQR9",0.249116148766518,16.2038354686712,3.14682384350677,0.00905835714409114,0.136120177624721,-2.82028961160277 +"A1Z8Y3",0.238586964235273,14.9650823459668,3.14055586326688,0.0091612457381819,0.136437124029352,-2.83131994361291 +"P15425",-0.180412541864278,17.1064744265677,-3.12722349860304,0.00938404325495735,0.13851844379884,-2.85477958630515 +"Q9I7Q5",-0.197846891356747,20.4858997557378,-3.11949724329098,0.00951565531993076,0.139229062049513,-2.86837299538018 +"Q95TK5",-0.320612543529137,17.1913629620016,-3.10761778822039,0.0097216623009809,0.140071887466663,-2.88927074424899 +"Q9VIE7",0.212740056557498,14.9687503368262,3.10650377708616,0.00974121039936024,0.140071887466663,-2.89123027899607 +"A1ZA23",0.273860138818961,18.3843676478415,3.09908711843796,0.00987236973011757,0.140744553075522,-2.90427528633545 +"Q9NBD7",-0.421640914681127,13.2902882378235,-3.0899505104641,0.0100363989178001,0.141035171110267,-2.92034341980876 +"Q9VZ66",0.160430265381629,17.0167669987836,3.08825213754921,0.0100671915476393,0.141035171110267,-2.92333000876569 +"Q9V597",0.3415222371383,20.1319843960737,3.08390651899419,0.010146415187789,0.141035171110267,-2.93097139258752 +"A1Z7K8",0.174811561749689,17.5606417792893,3.07010512788568,0.010402218696502,0.143395874262524,-2.95523605324999 +"Q9VKE2",0.277170029284946,24.0003695902906,3.05806230129955,0.0106307353703634,0.145344808178411,-2.97640380943459 +"Q9VCR4",0.256976192184837,14.9239698355593,3.05234050436179,0.0107410746418402,0.145659451240565,-2.98645926805473 +"Q9VGZ3",0.462751159582538,16.8117178220821,3.0289432342951,0.0112044013753646,0.150717270113776,-3.02756459667633 +"Q9VF86",-0.2629845635599,17.7364229493024,-3.02318680365249,0.0113214450139746,0.151073362266477,-3.03767435190436 +"O17444",-0.40319845236851,15.578379621077,-3.0183894613561,0.0114199271016094,0.15117808258321,-3.04609862065613 +"Q5U117",-0.365189334538186,14.6969046725481,-3.01310276111737,0.0115294533293177,0.151426205931511,-3.05538104458497 +"Q9VT23",-0.195678080343612,18.4214511184931,-2.99754430192022,0.0118579496628186,0.154523906543604,-3.08269126741437 +"Q9VR94",0.391084923336159,16.2593995376978,2.97370888725739,0.012379537721171,0.160070301697002,-3.12450725136215 +"Q9VB17",-0.1670605172742,15.6225173861712,-2.96316993059944,0.0126174465036595,0.161891544370031,-3.14298686488236 +"Q9VN13",-0.219851548301577,17.2633421348851,-2.95850161194643,0.0127242911747,0.1620161654916,-3.15117058936201 +"Q9VJQ3",-0.209820018670229,20.6476917494112,-2.95314316250286,0.0128480501853476,0.162352634160302,-3.160562601415 +"Q9VV47",-0.171917084635528,20.1413945521166,-2.93990292257781,0.013159047928795,0.165032270264888,-3.18376215197448 +"Q9VSL9",-0.341171573110763,14.7813625967647,-2.92645262206726,0.0134827059188681,0.167829503527403,-3.20731875658656 +"A1Z7B8",-0.250643114493272,17.0910247840694,-2.90500869380472,0.0140152834179297,0.173166612897087,-3.24485090892051 +"Q9VXF9",0.154338968910126,17.4388740820193,2.89279228972178,0.0143280472177607,0.174529928407408,-3.26621849179528 +"Q7K3V6",-0.246706521530324,16.380447126816,-2.89252792003249,0.0143348922013279,0.174529928407408,-3.26668078023307 +"Q9VJ31",-0.152817697204155,17.2689928801138,-2.87468734073001,0.0148044486028972,0.178445841311009,-3.29786568130416 +"Q9VAA9",0.15026361127082,17.0489444797478,2.87222370876066,0.0148704867759174,0.178445841311009,-3.30217016353565 +"Q9VVP9",0.275151355559675,16.6409983442614,2.86624066799621,0.0150320908522265,0.178830689139099,-3.31262183218229 +"P35381",-0.185856154963552,25.7848328518532,-2.86312341160163,0.0151169827149958,0.178830689139099,-3.31806619933026 +"Q7JV09",0.194884694352524,15.1445339345546,2.84360141208199,0.0156596119092831,0.180923484032382,-3.35214400861757 +"Q9W3W4",-0.193174968981031,16.0149393324306,-2.84335377777234,0.0156666184549851,0.180923484032382,-3.35257607932215 +"Q9VZI8",-0.215008364331835,15.8473408890738,-2.83836694932333,0.015808382641153,0.180923484032382,-3.36127595905183 +"Q9V431",0.182137321470137,18.4972277580334,2.83802982545415,0.0158180123339215,0.180923484032382,-3.3618640193818 +"Q9VH95",0.146436786955746,20.8370589413008,2.83496686468815,0.0159057719099363,0.180923484032382,-3.36720643255766 +"Q9W552",-0.20494831741085,16.297441197954,-2.83361375223951,0.0159446955352279,0.180923484032382,-3.3695662722777 +"Q9VMI3",-0.2112166036739,20.288322280775,-2.82972914903652,0.0160569683292132,0.180966372791403,-3.37634016915627 +"Q9VW14",0.24656603462955,13.7317459227015,2.81459003722676,0.0165020863196758,0.184375260960426,-3.40272669990092 +"Q9VP57",-0.276169011387598,19.5219660625538,-2.81196496475528,0.016580509079175,0.184375260960426,-3.40729992925313 +"P54622",-0.203796207634809,18.0439202943791,-2.80724659218953,0.0167224021363921,0.184721634195378,-3.41551836935248 +"Q9VBU0",-0.334315659395175,14.2498213694064,-2.79148241361492,0.0172052906413832,0.188805426248863,-3.44296112267112 +"A1ZBJ2",-0.440188581141566,19.4844404219688,-2.73438247205961,0.0190732753351843,0.207936099732597,-3.54215241210305 +"Q9VH77",-0.262515128093206,15.5972810715732,-2.72609697509085,0.0193605495508946,0.20969738084995,-3.55651632034106 +"Q9VDV3",0.144261265701408,17.50259571609,2.71183807070847,0.0198650038073016,0.213773073229543,-3.58121735208816 +"Q94523",-0.358106457042489,20.5095661180994,-2.66825667605465,0.0214888484893375,0.229765380001378,-3.65656179479301 +"Q9W3K9",-0.219130328831596,19.4238046391869,-2.66095786424607,0.0217733394959717,0.231324396683317,-3.66915653974629 +"Q9VDT1",-0.16383593700975,19.23813907505,-2.65683321324948,0.021935749609026,0.231574875619337,-3.67627087524113 +"Q9VLC5",-0.168407643756254,22.035791435942,-2.65251105709941,0.0221072191428513,0.231917242328779,-3.68372343404803 +"P16378",-0.209395875683093,20.4839711151951,-2.63203269969234,0.0229377766372678,0.238577501754413,-3.71899898562452 +"Q7K0P0",-0.234327333122838,15.2327356217101,-2.62984834226769,0.0230281641381658,0.238577501754413,-3.72275826993761 +"Q9VK58",0.863823384873125,13.0720555701016,2.62285205358575,0.0233200343639334,0.24010998345087,-3.73479434487963 +"Q9VGE7",0.298063089424527,13.8393088083226,2.61121071620641,0.0238137779427539,0.243689457720942,-3.75480593334371 +"Q7KV34",-0.243262394356634,21.0487768703981,-2.60749627748682,0.0239734722960735,0.243827754816162,-3.76118693144322 +"Q9W4X7",0.135347965056081,19.1436506462052,2.60149405731168,0.0242337538239209,0.244981220474546,-3.77149376940593 +"Q9VZ19",0.414403035698193,20.1937957498481,2.58953027612366,0.0247608683002436,0.24880197786028,-3.79202148640102 +"P17336",0.212348168183595,20.871138908176,2.57817884116414,0.0252714098215273,0.252411446600643,-3.81147827119292 +"Q9W403",-0.271398364326185,15.2547710901926,-2.5694255363768,0.025672142030334,0.254887695872602,-3.82646801590179 +"A8DRW0",-0.170947302661624,21.4896507534878,-2.56242939817643,0.0259969070866019,0.256584858109183,-3.83843991470398 +"Q9VE52",0.188310679173176,15.9322647277513,2.54861301140839,0.0266501492419755,0.258725548794197,-3.86205944942908 +"Q7K569",-0.209930062720829,20.7772144629358,-2.54682206854978,0.0267359944605146,0.258725548794197,-3.86511882630788 +"Q9W3N7",0.234203352592225,17.1333236870422,2.54314936109267,0.0269128864299072,0.258725548794197,-3.87139105939421 +"Q86BN8",-0.208816795067035,14.1230967669581,-2.53947154978866,0.0270911726702589,0.258725548794197,-3.87766975064507 +"O62602",-0.236950355270862,14.6489447667261,-2.53632457189645,0.0272446438273833,0.258725548794197,-3.88304040742701 +"Q9V4S8",0.201916468851307,17.0301371171612,2.5356762958838,0.0272763643759812,0.258725548794197,-3.88414655250807 +"A1Z877",-0.150121321622947,20.0178938048181,-2.53317336498069,0.0273991739117514,0.258725548794197,-3.88841660295216 +"O97102",-0.21792212090854,21.0603264633124,-2.53204552540485,0.0274546895303194,0.258725548794197,-3.89034037192774 +"O61444",0.173091155067336,16.4478630099777,2.52204181967945,0.0279519433619726,0.261931693976237,-3.90739426643325 +"P41375",0.216172411905905,16.6698991461418,2.51639922779229,0.0282362935510476,0.263118087391885,-3.91700587742963 +"Q9VDQ3",0.5202460302195,13.2248651879734,2.50585830478722,0.0287750818011978,0.266649091357766,-3.93494632785455 +"Q9VC18",-0.16356384533961,18.5487265265269,-2.48863311383763,0.0296772127600807,0.273489452396765,-3.96422040237583 +"Q9VEY0",0.252890640379587,18.1551269275838,2.48448745995953,0.0298984191832196,0.274014083503353,-3.97125781830253 +"M9NFC0",0.303870632047175,19.824179090603,2.48059850366002,0.0301073899060821,0.274421455537404,-3.97785658500386 +"A1Z803",-0.126818505353054,19.0389217608492,-2.47564647350948,0.0303755463022949,0.275106175293291,-3.98625508556186 +"Q7JVZ8",0.259931569807101,15.9723486217246,2.47313604977585,0.0305123755571097,0.275106175293291,-3.99051093227928 +"Q9VBC1",0.407123938885713,13.2543804818653,2.46108324638012,0.0311777136555283,0.277528653492693,-4.01092702211644 +"Q9VCR2",-0.204017696087405,15.5663464288161,-2.46030369539998,0.0312212294781554,0.277528653492693,-4.01224653537359 +"Q9VK11",-0.167298908830894,18.7650486004637,-2.45924883020481,0.0312802079476177,0.277528653492693,-4.01403187466717 +"Q9VXN3",0.18900022590301,16.9050531496589,2.44834324453332,0.031896339474103,0.280553777404508,-4.03247669089926 +"Q8SXS0",0.190983757021682,14.5273435392617,2.44619402359305,0.0320191488481121,0.280553777404508,-4.03610895859686 +"Q9W4C2",0.216908944209012,15.77688322216,2.44433472988351,0.032125762280732,0.280553777404508,-4.03925050169579 +"Q7KUA4",0.120277898908629,18.7217771475792,2.43389810472482,0.0327306428899588,0.283057519702615,-4.05687189845971 +"Q9VZZ6",-0.144151160698335,18.4478547968946,-2.43321447625871,0.03277064821013,0.283057519702615,-4.05802538753784 +"Q8SXY6",-0.185518146128395,19.1634759474135,-2.43064294005984,0.0329215580469469,0.283057519702615,-4.06236350541319 +"Q9VEP6",0.164429662664215,18.5888841338332,2.42063717351546,0.0335151915470788,0.285679559055174,-4.07923018240891 +"Q9VP13",0.459928662607407,11.7713076285137,2.41973773115261,0.0335690608961716,0.285679559055174,-4.0807453633199 +"Q9VLY7",-0.169331379560077,15.5630645368527,-2.41488726661756,0.0338610161476789,0.286416520701692,-4.08891346748472 +"Q9VIF2",-0.157292828885854,17.5821786941223,-2.41260757030125,0.0339990833926469,0.286416520701692,-4.09275075239056 +"Q0E8C8",-0.191317477192012,17.6418789529533,-2.40965003794607,0.0341790169816801,0.286485428771067,-4.0977273844994 +"P29829",-0.197907183261034,21.417117699231,-2.40483788906727,0.0344737591094447,0.28727965502135,-4.10582085309374 +"Q7K1S1",-0.198721242482112,16.7178984324883,-2.40249368386785,0.0346182318101268,0.28727965502135,-4.10976176145351 +"Q9V3Y7",0.1696794739692,19.393978596755,2.38189532791723,0.035913178660481,0.296550405968725,-4.14433966167017 +"Q9VE08",0.288002654889247,14.6089365558669,2.37124002021817,0.0366013159769116,0.299844521899503,-4.16219017696066 +"Q7KSE4",0.183898633303551,13.7872972585047,2.36790748431324,0.0368191418358374,0.299844521899503,-4.16776790738036 +"Q9VIB5",0.287700946633738,14.2548057298516,2.36741565983238,0.0368513950775768,0.299844521899503,-4.1685908736139 +"Q9VMY1",0.276203114824067,15.6076110818271,2.3613423500726,0.0372519323670051,0.301632151398857,-4.17874882339055 +"Q9VLS5",0.195965355521141,14.5792504353019,2.35731226291194,0.0375200361656822,0.301957513184232,-4.18548477572056 +"P32234",0.190539890517604,16.674876304268,2.35530634960168,0.0376541743059474,0.301957513184232,-4.18883611712733 +"Q9VCE1",0.184482485703731,13.5800451449543,2.34239233886043,0.0385289002599679,0.307493806859457,-4.21038987584183 +"Q7KND8",0.155491685551599,15.4092269251913,2.33967558788579,0.0387153983090372,0.307510877997495,-4.21491928207291 +"Q9VCH5",0.111807837809142,17.9724834360116,2.33551621362438,0.0390026163405414,0.308324000265512,-4.22185051177062 +"P55830",0.150906442582954,21.9874461565182,2.32347854093083,0.0398454745490886,0.311556445869795,-4.24188725524437 +"Q9VVZ4",0.251018160779616,15.7166772029234,2.32042259512937,0.0400622231839258,0.311556445869795,-4.24696839990148 +"Q9VVI2",0.56116828758695,13.7406453392017,2.32032340217183,0.0400692776154664,0.311556445869795,-4.24713329129314 +"Q8IRH5",0.155586247635787,14.3463211141873,2.31906811864113,0.0401586545935287,0.311556445869795,-4.24921978210643 +"A1Z8Z3",-0.192194475965984,19.904217354263,-2.31169990986907,0.0406871568035081,0.31419526642709,-4.26145931240826 +"Q9V438",0.152085419372334,18.9447037975577,2.30723025105668,0.04101100756306,0.315236684862599,-4.26887756156818 +"Q7KMQ0",0.144998851755052,20.7839250043677,2.29923259422632,0.0415966757992739,0.315560884526649,-4.28213897723779 +"Q9W265",0.150235763596061,17.0547235981163,2.29710821690728,0.0417535900187243,0.315560884526649,-4.28565888707444 +"O61491",-0.132765322654219,20.9740062084786,-2.29513127208956,0.0419001250878046,0.315560884526649,-4.28893350774347 +"Q8SZK9",0.209041199220664,22.1950382601486,2.29257948039629,0.0420899994121394,0.315560884526649,-4.29315886874211 +"Q8SXX1",-0.108033440024379,19.8830310225014,-2.29123922410662,0.0421900562372147,0.315560884526649,-4.29537746866496 +"Q9V4W1",0.332379199430729,13.5846621835561,2.29099354285598,0.0422084223249261,0.315560884526649,-4.29578410960744 +"Q9VKZ8",-0.201085906458257,18.7632612065869,-2.28873687275187,0.0423774808956651,0.315560884526649,-4.2995185443522 +"Q8IPX7",0.33154244914828,15.2383734108442,2.27735730418764,0.0432399311942115,0.317655263829926,-4.318330369821 +"Q9VFS8",0.206048202411502,17.2017644748634,2.27630520687992,0.0433205139243671,0.317655263829926,-4.32006795469029 +"Q9W1H8",-0.200541274526483,20.7503059077752,-2.2735535502017,0.0435319515315553,0.317655263829926,-4.32461109751484 +"Q9V3J4",-0.183029919296912,16.6312887465052,-2.27198182845357,0.0436531664221381,0.317655263829926,-4.32720522872809 +"Q9VNX4",-0.415941738401347,21.0604331862268,-2.27025924858472,0.0437863874611352,0.317655263829926,-4.33004762189483 +"Q8SX89",0.192713129695235,15.4010410866735,2.27006563764164,0.0438013853002896,0.317655263829926,-4.3303670474898 +"Q9VDK9",-0.171377525657988,15.6199296002043,-2.26726859728169,0.0440186047607563,0.317776689297704,-4.33498061522255 +"Q8MRM0",0.180214003278277,18.5160808426049,2.26495376703029,0.0441991558255799,0.317776689297704,-4.33879727189383 +"Q9VJZ5",0.129179854480785,16.8481014528117,2.25807094387905,0.0447401990474066,0.31920023007521,-4.35013732678289 +"P48611",0.190571052118184,20.2406448477989,2.25553257962418,0.0449413302222144,0.31920023007521,-4.35431637545253 +"P18053",0.134157601189017,21.0630340976751,2.25287540314955,0.0451528027327803,0.31920023007521,-4.35868921475586 +"Q9W4K0",-0.153235562007669,19.7720482292452,-2.25275230644191,0.0451626224806652,0.31920023007521,-4.35889174634511 +"Q9VIS4",0.184576389325084,14.127903728061,2.23758123295591,0.0463886253377579,0.326481970731562,-4.38382192799865 +"Q9VM33",-0.364200389008369,13.7871859000803,-2.22787929013614,0.0471892639138835,0.327234424131219,-4.39973238814284 +"Q7K511",-0.297276999766085,16.9650727115624,-2.2272399863585,0.0472424823579647,0.327234424131219,-4.40077989893225 +"Q0KI98",-0.149231622932142,16.6550671562105,-2.2263857841989,0.0473136793134726,0.327234424131219,-4.40217935013985 +"Q9VTB0",0.190282786800463,16.984788736397,2.22621205308297,0.0473281721695255,0.327234424131219,-4.40246395178883 +"Q9W074",-0.218889199719126,13.6005723667826,-2.22246005518183,0.0476422041606546,0.327234424131219,-4.40860835389051 +"O18333",-0.202849484662481,17.5427073394481,-2.22209765773452,0.0476726409255913,0.327234424131219,-4.40920162365107 +"Q9VDD1",0.265048133740086,14.2716186513149,2.2177312832193,0.0480408221373402,0.328410210348703,-4.416346833611 +"Q9VWS1",0.168181764706601,17.2064453355406,2.2141208854987,0.0483473048571948,0.32915634490531,-4.42225096298359 +"Q9VG81",-0.338742207265213,15.9019031230125,-2.21004752508607,0.0486953260351268,0.330178064335738,-4.4289078245858 +"Q8SXQ1",-0.185145902981297,18.763641968041,-2.18602024228199,0.0507972296499565,0.342118243866399,-4.4680789393657 +"Q9NK57",0.228501392258789,15.4236933700929,2.18524459037839,0.0508665014861313,0.342118243866399,-4.46934071612013 +"Q9VW73",-0.165737220376466,14.2893473972126,-2.17248655363461,0.0520188592990395,0.345753874973501,-4.49006951578866 +"Q9VSR8",0.190564540153966,15.4975609413312,2.17024735174215,0.0522236543502089,0.345753874973501,-4.49370277733206 +"Q9VG97",0.135465496384512,20.0689560090642,2.17019917559761,0.0522280688906311,0.345753874973501,-4.49378093026596 +"Q9W0Y1",0.152548619790736,17.676161982104,2.17011048383508,0.0522361969384427,0.345753874973501,-4.49392480718503 +"Q9VC06",-0.209656377490152,16.7094342802775,-2.16691602296738,0.0525297511835471,0.34632262835635,-4.49910535454674 +"Q9VJQ6",-0.294678987533667,14.5386376468132,-2.1639562135126,0.052803139041051,0.346754472127846,-4.50390266498733 +"Q9VW26",0.125079592423887,17.5670869957254,2.15726121793868,0.0534265219662096,0.347979539904271,-4.51474440982399 +"Q9VSK4",-0.150227404393906,19.7169325716405,-2.15628683022385,0.0535178286425759,0.347979539904271,-4.51632119700542 +"Q9VUY9",-0.235133387519731,19.8571199601684,-2.15327998203681,0.0538005240249454,0.347979539904271,-4.52118518270533 +"Q9VV31",0.391478504721954,15.2552510407109,2.15262801512648,0.0538620065532011,0.347979539904271,-4.52223946886253 +"O97454",0.26787364609169,14.0228925217882,2.15082065877925,0.0540327942657112,0.347979539904271,-4.52516144798584 +"Q9VL69",-0.152644235336769,16.0949400981199,-2.14623231831539,0.0544686811495075,0.34943753906684,-4.53257504505917 +"Q9VER6",0.230878116912651,14.9188953619193,2.1359129638275,0.0554612040120937,0.352882637669509,-4.54922507417713 +"Q9VGJ9",-0.170279320992769,17.9976866529157,-2.13396869767116,0.0556501108436179,0.352882637669509,-4.55235844240628 +"Q9VTZ4",-0.12967630342354,18.3242212626394,-2.13245553201771,0.0557975525158861,0.352882637669509,-4.55479624422444 +"Q9VH66",-0.188453469887442,16.820400106082,-2.12993542637686,0.056043929926235,0.352882637669509,-4.55885471517925 +"Q9V419",-0.232804785344046,16.584646965176,-2.12727265116523,0.0563053727899441,0.352882637669509,-4.56314080557201 +"Q7KTP7",0.108321414910598,17.8698408347801,2.12455901147389,0.0565729955441989,0.352882637669509,-4.56750649840408 +"Q9VAN1",0.261133160490624,14.716103711293,2.12305246605084,0.0567220915268509,0.352882637669509,-4.56992923038261 +"Q9VND8",-0.633577190924004,18.5628870706478,-2.12266436985827,0.0567605597463811,0.352882637669509,-4.57055322738192 +"Q9VGL0",0.278394110711202,12.8372270631775,2.12116177565873,0.05690972993591,0.352882637669509,-4.57296871516232 +"Q9XZ63",0.279297989100094,19.0069854472565,2.11182201919581,0.0578452701469631,0.356263368456313,-4.5879668620438 +"Q6NL44",-0.205784864451459,15.3269946903028,-2.10777215849275,0.0582554300289233,0.356263368456313,-4.59446170329027 +"Q7KM15",-0.180535803613694,17.0030570642996,-2.10453188946863,0.0585855704527007,0.356263368456313,-4.59965442161425 +"Q8SZN1",0.15113270697497,19.9337071635573,2.1033466295353,0.0587067728350459,0.356263368456313,-4.60155303023583 +"Q9W3B3",0.112750194383839,15.6064424409218,2.10315419155691,0.0587264734640684,0.356263368456313,-4.60186124453 +"Q9V3V0",0.283356624659209,14.3756420635418,2.10305660052309,0.058736466621994,0.356263368456313,-4.60201754464592 +"O02649",0.139150988113535,23.2629009574893,2.10029117779461,0.0590203085018732,0.356687951380886,-4.60644532699621 +"A1Z9E3",-0.111872098767559,21.7804210651904,-2.08879683329322,0.0602139918057435,0.362588225025199,-4.624822722268 +"P28668",0.169564586941664,15.629943031294,2.0860283331485,0.0605048774902053,0.363029264941232,-4.62924263746873 +"Q9VK18",0.155260919698733,14.5549353079738,2.08282352775848,0.0608432569939967,0.363751084824325,-4.63435598031625 +"Q9VSK9",0.165553808217611,14.4709815168729,2.07956516201472,0.0611891162635917,0.364512306884539,-4.63955131900655 +"Q9VXR9",-0.169707047462696,15.3305127736148,-2.0774601360928,0.0614135364251093,0.364547255363282,-4.6429058399334 +"Q9VBU9",-0.114944449562312,20.8898472515983,-2.07148409075729,0.0620548759036059,0.367047989387286,-4.65242112828938 +"Q9VMT5",-0.154418143241283,16.5674812298601,-2.06695987619443,0.0625445870128615,0.36863735384259,-4.65961684670015 +"Q9VEP8",0.150148321305641,17.2286047835101,2.05941919427978,0.0633688803458035,0.370979846789416,-4.67159497034663 +"Q9XY35",-0.14167488083752,19.2143082866006,-2.05754156453235,0.0635757089353942,0.370979846789416,-4.67457454116999 +"P45888",-0.098580237930749,17.2893846968025,-2.05449586635601,0.0639125522550469,0.370979846789416,-4.67940515410161 +"Q9V3Z4",-0.172756913985143,18.8167048290958,-2.05287921150867,0.064092027773103,0.370979846789416,-4.68196796016639 +"Q9W2V2",-0.232836300277334,14.2918285635836,-2.0503080571654,0.0643784422438518,0.370979846789416,-4.6860420544294 +"Q9VHG6",-0.202201268580463,15.6734152328281,-2.0486076148802,0.0645685221312167,0.370979846789416,-4.68873523113236 +"Q7K3J0",-0.12360947883494,20.4162417818993,-2.04750123673487,0.0646924782692402,0.370979846789416,-4.69048699197381 +"Q9VND7",0.145330362892009,13.9159152652131,2.04622564753457,0.0648356691678936,0.370979846789416,-4.69250614884206 +"Q9VN86",-0.230282873291335,15.4804850105866,-2.04336384604946,0.0651580009095785,0.370979846789416,-4.69703412077283 +"Q9VDU7",0.146097543989715,18.2888425174504,2.04316812136643,0.0651801006102279,0.370979846789416,-4.69734369543687 +"Q4V5I9",-0.198317839373686,16.0078217905005,-2.04132519326048,0.065388534146336,0.370979846789416,-4.70025797833099 +"B7Z0Q1",-0.145892154652678,17.7935583594685,-2.03344688727743,0.0662866187141416,0.373547074563725,-4.71270295058847 +"Q9VUX1",0.116848387372611,16.5054856755968,2.03342674716642,0.0662889292990784,0.373547074563725,-4.71273473730033 +"P09208",0.543049695390728,12.8471839064655,2.02999505416572,0.066683734043662,0.373586401300682,-4.7181488393326 +"Q7K519",-0.146652903384355,15.7234004680534,-2.02947415633912,0.0667438534697862,0.373586401300682,-4.71897028794648 +"P20348",0.134300400418937,17.3147562229782,2.02197764147944,0.0676146949194252,0.376753948398578,-4.73078163943302 +"Q9VJQ5",0.292210803082032,14.3131884211555,2.01664913899262,0.0682401290148529,0.376753948398578,-4.73916506105093 +"Q9VA42",0.228168249976104,20.0686380717812,2.01442724599709,0.0685025166897112,0.376753948398578,-4.74265782577223 +"O97479",-0.21858459124315,17.9440401699775,-2.014003617875,0.0685526505380655,0.376753948398578,-4.74332355999411 +"Q9VHT5",0.125953588223648,15.7153748860854,2.00791770811427,0.0692766711503528,0.376753948398578,-4.75288053101779 +"O77477",-0.1135101578747,16.9499927286381,-2.00699837769226,0.0693866590199761,0.376753948398578,-4.75432304269133 +"Q9I7X6",-0.235401327182807,14.8550144678603,-2.00683273745145,0.0694064933770999,0.376753948398578,-4.75458291477829 +"Q9VAQ4",-0.242025074805658,15.9128967648192,-2.00660392244681,0.0694339012044104,0.376753948398578,-4.75494188519973 +"Q9VF15",0.164739573891101,20.7893007745883,2.00409333977335,0.0697352864069049,0.376753948398578,-4.75887931014195 +"O97365",0.126606985051556,18.0109494203035,2.00402876167231,0.0697430548107707,0.376753948398578,-4.75898056004806 +"C0HK95",-0.187488476445541,19.8354633876715,-2.00360254585484,0.0697943465558516,0.376753948398578,-4.75964877227497 +"P32748",-0.151262176973084,17.3869066959542,-1.99487383080078,0.0708525428125392,0.379592124607675,-4.77331901534908 +"Q9VDT5",0.21204361395526,19.0518353993786,1.99472788377999,0.0708703625765406,0.379592124607675,-4.77354735126985 +"Q9VBC7",-0.21915956149498,16.3021228855977,-1.99364391213988,0.0710028434517953,0.379592124607675,-4.77524299542554 +"Q9V784",0.320197772406217,14.0730354345362,1.98881162578424,0.0715962456835658,0.381541654313699,-4.78279686392461 +"Q9W0C1",-0.164884373894463,21.3115993246609,-1.98676841191653,0.0718485369229336,0.381666750278514,-4.7859882591638 +"Q9VKD3",-0.112230522798356,18.8684989962583,-1.97965595659474,0.0727332301266645,0.385139770956433,-4.79708556007139 +"Q9VSL3",0.213363289510831,22.5382309995254,1.97429599239202,0.07340661679087,0.387475432934086,-4.80543613863324 +"Q9VY87",-0.23465943331983,17.7217989828195,-1.96813485864514,0.0741878088033816,0.388287446170991,-4.81502167118434 +"Q9Y143",0.0969277418404175,20.8585057448267,1.96759816303948,0.0742562225152532,0.388287446170991,-4.81585599268801 +"Q24297",-0.13220093974029,17.0637091426371,-1.96757787243856,0.0742588101490084,0.388287446170991,-4.81588753337137 +"Q7JV69",-0.225709020001105,16.1616052939006,-1.96132546431986,0.0750601690013884,0.389941440852221,-4.82559919630388 +"Q9VXG4",0.148025487503524,19.9098978652396,1.96091848644874,0.075112607621272,0.389941440852221,-4.82623083058792 +"Q70PY2",0.320895760895265,17.3339347133882,1.95964847813205,0.0752764652004888,0.389941440852221,-4.8282014950014 +"Q9VHG4",0.212455515507212,18.3948383989673,1.95346242442439,0.0760793438646277,0.392880326830337,-4.83779160663785 +"Q9VKU5",0.313837475202817,13.50344162012,1.94853786169082,0.0767241598302458,0.393947063237868,-4.84541562607497 +"Q9V564",0.133231553404267,14.0673218782435,1.9482784201541,0.0767582707148124,0.393947063237868,-4.84581702611135 +"Q9VEB3",0.304445469731144,12.2895694138068,1.94524065286807,0.0771587166199172,0.394578894332364,-4.85051504425578 +"Q7JUN9",0.422973059543233,13.4022131527247,1.94376078947306,0.0773544954716325,0.394578894332364,-4.85280242144892 +"Q9VKF0",-0.179508211195554,15.9083372393935,-1.93414972183067,0.0786372191803765,0.397041606076151,-4.86763733499227 +"Q9VVU5",-0.206356896650558,15.6182409960931,-1.93384589439571,0.0786780877911225,0.397041606076151,-4.86810571524198 +"Q9W125",-0.146951889502876,21.3774623143512,-1.93244084116285,0.0788673405189143,0.397041606076151,-4.87027127679423 +"Q9W227",0.100712673341491,21.9153365421577,1.93235281179005,0.0788792115694753,0.397041606076151,-4.87040692789051 +"A1Z9J3",0.21312785686672,17.6140899631711,1.93125446620311,0.0790274659576032,0.397041606076151,-4.87209919704953 +"Q9VNZ3",-0.536785104036658,15.5226752267684,-1.92885948806345,0.079351632508972,0.397170956857552,-4.87578760957873 +"Q9Y105",-0.35852684193479,17.1518238095215,-1.92532776701316,0.0798319013691231,0.397170956857552,-4.88122257421499 +"Q5U1B0",0.240816221942382,14.6383094187753,1.92451563068528,0.0799427203648635,0.397170956857552,-4.88247167768303 +"Q95RG8",0.305487030780744,13.3917088793579,1.92405483781036,0.0800056603741832,0.397170956857552,-4.88318028316058 +"Q9VVK7",0.134608569920271,18.1481672523874,1.91364656139262,0.0814395707160452,0.403089625977339,-4.89916373782435 +"Q9VJJ1",0.197033121269012,14.0639856554327,1.91038702277529,0.0818934742677951,0.404137026860007,-4.90416039668807 +"Q9VKA1",0.275732705661596,14.605187351043,1.90595897053132,0.082513832149841,0.405997262613377,-4.91094150675714 +"Q9VN01",-0.102739738064022,16.1454195783249,-1.90247982418588,0.0830042834101191,0.406438833844056,-4.91626394421054 +"Q9VGQ8",0.110766497970857,16.2585544813343,1.90186726361457,0.0830909126743544,0.406438833844056,-4.91720054186203 +"P09180",0.153362154746183,20.7684086185402,1.89814218654631,0.083619512583435,0.407828499968332,-4.92289287836204 +"Q9VS11",0.137956530020611,14.9226353312817,1.89295707949579,0.0843604451832097,0.410242631386571,-4.93080694948239 +"Q8SZM2",0.174302913469717,21.2518131169834,1.8867797738738,0.0852510342663586,0.412535613442798,-4.94022113289283 +"Q7JVH6",-0.0917336490784315,19.005866593423,-1.88465490050437,0.0855593704086988,0.412535613442798,-4.94345582125355 +"Q9Y125",0.138170969592963,22.571238966889,1.88455470929734,0.0855739342033621,0.412535613442798,-4.94360829629639 +"Q9Y119",0.350324851988905,17.5270443059725,1.88084090355592,0.0861153813128001,0.413741645504687,-4.94925720485766 +"P56538",-0.141794841947537,17.1171552334461,-1.87944163296793,0.0863201994218412,0.413741645504687,-4.9513841011813 +"Q9W1B9",-0.188228712319248,20.6981556996332,-1.87728621742638,0.0866365727797032,0.414068204574627,-4.95465875872507 +"Q9VN73",-0.103948533764893,18.4672392083489,-1.87430632876584,0.0870757145311307,0.414276440701425,-4.95918284681272 +"M9PF16",-0.249030319273775,21.2171401557281,-1.87362182333048,0.0871768769101919,0.414276440701425,-4.96022154773995 +"Q9VEB1",-0.0850479064377261,25.0700366079905,-1.86765393717796,0.0880634393243263,0.417300615889137,-4.96926924135115 +"Q27268",-0.211348383034338,19.0818292003155,-1.86583643327219,0.0883350758307863,0.417402001376067,-4.97202174013807 +"P23779",0.112881370469228,20.804998717406,1.85875028658035,0.0894014835321383,0.421247668168381,-4.98274004547475 +"Q9VVJ7",0.110050683473162,18.1412256347526,1.85701326816733,0.0896646822212171,0.421297718154902,-4.98536418458597 +"Q9VYT0",-0.169272895466257,18.295408815456,-1.84580298623481,0.0913804102755651,0.428153158257423,-5.00226896091334 +"Q9VG92",0.193561125099052,16.4514759592209,1.84029448708682,0.0922344239134937,0.430871901600406,-5.01055597490089 +"P04388",0.160228010390757,16.5352187025589,1.83776533985273,0.0926289662508996,0.430871901600406,-5.01435647296676 +"Q9VLS9",0.149388227547604,18.8922508703174,1.83553451344482,0.092978248153494,0.430871901600406,-5.01770640299504 +"Q8MLP9",0.230359026724432,14.8372950547955,1.8354344988344,0.0929939355972099,0.430871901600406,-5.01785654006383 +"Q9VY42",-0.16202425404521,15.308112496236,-1.83149568465702,0.0936136666639341,0.432142392038751,-5.02376585660762 +"Q9VF24",-0.141252747724899,16.2021647682123,-1.82876888769721,0.0940449017541728,0.432142392038751,-5.02785287130146 +"Q961B9",-0.192162098515919,15.0023867217077,-1.82876589088896,0.0940453766846922,0.432142392038751,-5.02785736124125 +"O97125",-0.124668994283926,18.7366062287652,-1.82518016790632,0.0946152052110534,0.433566379923179,-5.03322683607142 +"Q9VQI7",0.0872925885855622,19.0933525862996,1.81865868647774,0.0956596352940987,0.435575940086871,-5.04297809439741 +"A1Z6G9",0.181781121795531,14.2892726083222,1.8183642554406,0.0957070356249603,0.435575940086871,-5.04341790318206 +"Q7JZV0",-0.316998194932607,15.1624944931239,-1.81691022228504,0.0959414331985398,0.435575940086871,-5.04558931845038 +"Q7K4T8",-0.302195213884881,13.8670248601026,-1.81593900569676,0.0960982889400292,0.435575940086871,-5.04703918990245 +"A1ZB73",0.572481445732764,13.4687819034522,1.81304186544599,0.0965675758054794,0.436504296770803,-5.0513616885991 +"Q9VF89",-0.136526913061571,14.3206189711875,-1.81144891628292,0.0968264926889671,0.436504296770803,-5.05373677077942 +"Q9VSL5",-0.118252306343418,17.6522654405991,-1.80930631036808,0.0971757451533688,0.436897959341831,-5.05692961863909 +"Q9VWW2",0.360402513021644,15.1250051939472,1.80268149784613,0.0982628626518615,0.439437351046925,-5.06678882334975 +"A1ZBU5",0.128636156892593,16.557003785199,1.80265359201798,0.0982674651921481,0.439437351046925,-5.06683031213647 +"Q7K0B6",0.127462173505084,20.1627424562677,1.79613790526098,0.0993474739389959,0.44307910836964,-5.07650792764192 +"P13677",-0.191706584037952,16.908236599816,-1.78861695754519,0.10060747974508,0.446607361597884,-5.08765491970805 +"P36975",0.145845643543669,22.1594398282261,1.78822179155398,0.100674081511274,0.446607361597884,-5.0882398993921 +"Q9V3Z9",0.221963461993333,21.7039131658564,1.78546927145209,0.101139103070719,0.447163100844445,-5.09231260012884 +"Q95TN1",-0.138058220760325,14.1548976692733,-1.78431007807886,0.101335522853237,0.447163100844445,-5.09402674442035 +"P25455",-0.163425492031541,15.842064831721,-1.77719325471844,0.102549016061637,0.451323901822721,-5.10453725961429 +"Q7KUC2",0.12651993423589,19.297793413442,1.77043944387447,0.103712742818565,0.455244355319384,-5.11449022789036 +"Q9VB46",-0.180971255137395,15.3591399354941,-1.7686224185335,0.104027857720095,0.455429046396635,-5.11716436440787 +"O76752",-0.145389865358364,17.8826664902307,-1.76616641001246,0.104455160806969,0.456102639335142,-5.12077647806162 +"Q7KTW5",-0.103781955424122,21.5637666678625,-1.76376603181048,0.104874314843078,0.456737224956277,-5.1243040792082 +"Q9V3U6",0.154374906038967,21.1277270927857,1.76005481208095,0.105525354391669,0.458375758138811,-5.12975283666741 +"Q9VM69",0.204025058406076,16.7938522491854,1.75764519655808,0.105950008877053,0.45902497352448,-5.13328716896023 +"Q9VLT3",-0.0850942268492574,19.4665118811965,-1.75380208301179,0.106630480447365,0.460776273021255,-5.13891849647433 +"Q9VM18",0.110442358912785,22.8502204800418,1.75138958375315,0.107059652134032,0.461435399895518,-5.14245000999063 +"Q95T12",-0.13029421860189,15.9490629352428,-1.74760654764577,0.10773576688143,0.461940711933683,-5.14798227078044 +"Q9VLP0",0.110040909181413,15.9912338076614,1.74490903598321,0.108220217322605,0.461940711933683,-5.15192296168457 +"Q7K5J8",-0.115108630981172,18.1574607022944,-1.74255470125654,0.108644636100118,0.461940711933683,-5.15535951197802 +"Q9VAU6",-0.251599153541681,13.3691578356129,-1.74200950544403,0.10874313233594,0.461940711933683,-5.15615494391106 +"Q9VVE2",0.119235482854322,18.329252195616,1.74157643052229,0.108821429765431,0.461940711933683,-5.1567866930074 +"Q9VW68",-0.0914594357251559,23.0567533635382,-1.74148177856744,0.108838549034735,0.461940711933683,-5.15692475495244 +"Q9V4N3",-0.149324266844417,19.7536533189345,-1.73836466503887,0.109403681169632,0.463160761905955,-5.16146908979685 +"Q08012",-0.122083700631176,19.1845282498247,-1.73613852687314,0.109808891694338,0.463184290014171,-5.16471167776344 +"Q9W4W8",-0.221398392649046,17.4760320514368,-1.73231545551674,0.110507927742218,0.463184290014171,-5.17027484882966 +"P53034",0.135087190456542,15.67679957553,1.73087509553133,0.110772326926206,0.463184290014171,-5.17236899020245 +"Q9W3X7",-0.100787771363816,21.5569386327251,-1.7306960976439,0.110805224232033,0.463184290014171,-5.17262916618275 +"Q9W3Y3",0.106297519496515,17.9441762165466,1.7295479696058,0.111016442585556,0.463184290014171,-5.17429762206685 +"Q9VPE2",-0.0973714614608845,20.990198088334,-1.72801727605905,0.111298602288112,0.463184290014171,-5.17652103888332 +"Q9V3W9",0.094297105799388,18.4793982703753,1.72702621963675,0.111481631055533,0.463184290014171,-5.17796000379369 +"Q9VFT4",0.316230431495756,15.6857764032002,1.72621987540801,0.111630746154494,0.463184290014171,-5.17913042787796 +"Q9VRR3",0.159942149504179,19.6680858588852,1.71900470790562,0.112973004847786,0.466630467619652,-5.18958945126648 +"Q9V3W0",0.135124028516625,20.7576572235941,1.71874916228956,0.11302080870404,0.466630467619652,-5.18995942654214 +"Q8T0Q4",0.125253375649788,19.9450576952229,1.71074710670418,0.114526910075275,0.470657542192689,-5.20152866522992 +"Q9VZ58",0.0984913331984494,18.1679154023081,1.71056956358437,0.114560528855055,0.470657542192689,-5.20178500105403 +"P35220",0.108155298888217,19.2828068826825,1.70750254077165,0.115142681095687,0.47109606571,-5.20621072474672 +"Q9VMF0",-0.178897265742508,13.7991476337797,-1.70605761724397,0.115417857460612,0.47109606571,-5.20829416117873 +"Q9VU92",-0.146460621456541,17.7885707877963,-1.70455778486599,0.115704112231521,0.47109606571,-5.21045568964781 +"Q8IP62",0.222391915014327,15.8530221432174,1.70407183993544,0.115796994569005,0.47109606571,-5.21115578732444 +"X2JAU8",-0.0868343531769469,21.614891385668,-1.69857666072379,0.116851972898387,0.473772887121554,-5.21906458379252 +"E2QCN9",0.137793704090043,17.3386503406106,1.69768978456111,0.117023039265036,0.473772887121554,-5.22033960462164 +"Q9VXC9",-0.158611764869995,19.2097119977907,-1.69487241370038,0.117567955045708,0.474826510935206,-5.22438743253434 +"Q9VR30",-0.132788588325658,17.374064712593,-1.68574261041934,0.119349352838831,0.479203392079142,-5.23747755354412 +"Q9VRD4",-0.112553672387001,20.3166117619933,-1.68415048503485,0.119662456759636,0.479203392079142,-5.23975606215922 +"Q7K1M4",-0.12277602555902,17.2320223334224,-1.6838299904733,0.119725572863291,0.479203392079142,-5.24021457251026 +"P19334",0.255856103800024,14.8907718013367,1.68218578563451,0.120049837966607,0.479203392079142,-5.2425660201673 +"A1Z9M5",0.14368108712763,15.0840945234929,1.68199183292081,0.120088140221272,0.479203392079142,-5.24284331107693 +"Q9V9V4",0.168990631639371,18.5881722619413,1.6769878995666,0.121080094975002,0.482008588110508,-5.24999083149751 +"Q95SK3",0.103433912189118,17.1792206884065,1.67195796154793,0.122084539519631,0.484022928302789,-5.2571628089524 +"P14318",0.139627739585986,21.9786799317018,1.67154936074556,0.122166458522466,0.484022928302789,-5.25774485528206 +"Q8IQG9",0.101864744599474,20.3413123855555,1.66585362977319,0.123313469533668,0.485431379729613,-5.26584954960674 +"Q7K1H0",0.0863519055399333,16.2844123896824,1.66401220704188,0.123686335727779,0.485431379729613,-5.2684662669194 +"Q9VX98",-0.121871823664609,18.2294853563932,-1.6634728981342,0.123795728544117,0.485431379729613,-5.26923231471403 +"M9MSK4",-0.157452788236494,20.5290705533767,-1.66332018409833,0.123826720474185,0.485431379729613,-5.26944920664077 +"Q9W1E8",0.142577132976339,15.3648130066139,1.66257976698405,0.123977078995692,0.485431379729613,-5.27050061482521 +"Q09101",-0.170671712075485,14.7044296955978,-1.65713609924026,0.125087518152761,0.487934229930098,-5.27822215403907 +"Q9VSU7",0.103078397074921,14.6951949117874,1.65658049192369,0.125201349166716,0.487934229930098,-5.27900940021066 +"Q7JRN6",0.211756477891623,14.5755462157114,1.65390933762422,0.125749888390014,0.488929635977956,-5.28279197997256 +"Q9VGR2",0.085171754213885,15.6423050689551,1.64823623222579,0.126921960868213,0.492339141228325,-5.29081341453572 +"Q8SXF0",-0.12607428855268,16.5317425568007,-1.63200213020097,0.13032948289305,0.504384170453844,-5.3136754371324 +"Q9VIE8",0.0830342353367826,25.0489929445137,1.62356798790189,0.132131456896605,0.510174236350782,-5.32549867321085 +"Q9VNE9",0.152996067636227,19.0266269502374,1.61806298611175,0.133319413246705,0.513572243176683,-5.3331955369667 +"P25171",0.150218597879908,16.7376853539272,1.61477811718471,0.134032741074395,0.515130442654586,-5.33778065908999 +"Q9W1G7",-0.122097056471681,18.9201126754594,-1.61287860337501,0.134446760390058,0.515533784668084,-5.34042944408934 +"Q9V436",0.0788722130841393,19.1070354354058,1.60634472822726,0.135879479427526,0.517537802466579,-5.34952594958808 +"Q9VZJ8",-0.125797240797981,14.9902298971764,-1.60169496534015,0.136907203049783,0.517537802466579,-5.3559854710277 +"A1Z6V5",0.148517396396805,19.9831915032711,1.60025362916997,0.137227158386098,0.517537802466579,-5.35798544019808 +"Q9VR79",0.188266511364198,20.3998609620991,1.59837656096402,0.13764482226926,0.517537802466579,-5.36058834629565 +"Q9VHD3",-0.104131809353564,15.7514285197178,-1.59765510710195,0.137805648087748,0.517537802466579,-5.36158827194738 +"Q9U6P7",-0.155848174090856,17.022759657731,-1.59717286730571,0.137913240310608,0.517537802466579,-5.36225649350465 +"Q9VCX3",0.222136487581556,13.1992106707229,1.59623539480654,0.138122609813164,0.517537802466579,-5.36355515481284 +"Q9V3P3",0.0818264982502832,19.4199773370478,1.59500995398241,0.138396712205774,0.517537802466579,-5.36525201703711 +"Q9VVW7",0.119385853009305,16.5102271296941,1.59145541680397,0.139194474930258,0.517537802466579,-5.37016937306077 +"Q9VRG8",0.152354999430647,16.1885796387214,1.59138600351617,0.139210093686588,0.517537802466579,-5.37026533145823 +"Q8MZI3",-0.164367416498951,17.9603688617428,-1.59065064633067,0.13937565137393,0.517537802466579,-5.37128174431498 +"Q8MSI2",0.179418372446431,23.7633719842942,1.58874890899508,0.139804605901406,0.517537802466579,-5.37390897028181 +"Q7KMS3",0.1517291945593,15.454984500974,1.58861501744747,0.13983484984874,0.517537802466579,-5.37409386573158 +"Q9VD64",0.22144313053532,15.5601455673168,1.58850712649212,0.139859224843451,0.517537802466579,-5.37424284897895 +"A1Z992",0.213594730505944,14.0722006304182,1.58819737738754,0.139929224785203,0.517537802466579,-5.37467053667356 +"Q94915",0.246688085716013,16.8840368552945,1.58664865201656,0.140279679666152,0.517537802466579,-5.37680816458138 +"P41094",0.0904972146340164,21.2033251354374,1.58647568228751,0.140318867893979,0.517537802466579,-5.37704682498454 +"A1Z8H6",0.163384047928229,16.6107318501923,1.58472670379681,0.140715656442948,0.517537802466579,-5.37945911728288 +"Q9VJJ0",0.109348773425523,19.7362694899805,1.58407127253466,0.14086460570733,0.517537802466579,-5.38036269643363 +"Q6WV19",0.284827393721692,13.5433889470794,1.57538149688305,0.142852445257426,0.52121985761813,-5.39232023749698 +"A1Z7K6",0.109991416273211,15.5795148823467,1.57394938427286,0.143182388526949,0.52121985761813,-5.39428691623481 +"O16797",0.197413002397198,16.9025844125866,1.5734337971323,0.143301336826231,0.52121985761813,-5.39499468085624 +"O96299",-0.109157471795793,15.7717495595876,-1.57326056028234,0.143341322690337,0.52121985761813,-5.39523245633294 +"Q9VK99",0.198191203796746,20.0143812490657,1.57287996055119,0.143429205423694,0.52121985761813,-5.39575478878059 +"Q86BM0",0.1028521251318,17.4038718077917,1.57131084007631,0.143792020861683,0.52140237129845,-5.39790739602701 +"Q9VP18",0.108795774859303,17.1086461670182,1.56719455496309,0.1447476007749,0.522533533365391,-5.40354788751749 +"Q7K1C5",0.0894635490129456,17.4543673179102,1.56633560637309,0.144947698474254,0.522533533365391,-5.4047237119354 +"Q9VBV5",0.098079948377908,17.1078780572294,1.5643902856042,0.145401764255438,0.522533533365391,-5.40738517225139 +"Q9U9Q2",0.0867921641722109,15.5181123332777,1.56406968238879,0.145476716364405,0.522533533365391,-5.40782359912186 +"Q0KI81",-0.101636145702146,15.5755079521523,-1.56324222092167,0.145670319553301,0.522533533365391,-5.4089548941425 +"Q9V3Y0",0.139923854418322,16.2673096088083,1.55881113553716,0.146710890199929,0.525136834449532,-5.415006542543 +"Q9W1G0",0.115543505539602,21.6845142243703,1.54953110408996,0.148911111931125,0.529604648667595,-5.42764501307496 +"Q9VZD9",-0.155393979558268,14.6447080960799,-1.54866835005023,0.149117111896683,0.529604648667595,-5.42881754535871 +"Q9VLW8",0.201118474333473,14.0948174826336,1.54808539875583,0.149256443227355,0.529604648667595,-5.4296095727853 +"Q9W3M8",-0.101344048304199,18.6711990095897,-1.54739631917531,0.149421285936509,0.529604648667595,-5.43054554503525 +"Q9W1F2",-0.225596837440062,13.7401556755807,-1.54684996881636,0.149552096945113,0.529604648667595,-5.43128745921727 +"P91926",-0.104908252203188,17.7000648165329,-1.54554832750334,0.149864145186514,0.529604648667595,-5.433054340337 +"A0A126GUP6",0.176128556635904,16.9192015595692,1.54336132115082,0.150389716987466,0.530338367727471,-5.43602088799203 +"Q9VQ93",0.126570943102315,16.6598746305378,1.54182066669057,0.150760918645597,0.530525764347796,-5.43810907566014 +"Q9VLB1",-0.136869710802053,16.8586868403239,-1.5376325499881,0.151774007393832,0.531636458446585,-5.4437788202404 +"Q9W1I8",0.131262612915382,17.8617050436602,1.53527178611726,0.152347659861049,0.531636458446585,-5.44697036720546 +"Q7K084",0.15887848761172,23.688740656401,1.53491961446617,0.152433396211536,0.531636458446585,-5.44744620119644 +"Q9VQ35",-0.267199621362396,12.2847440799862,-1.53286654477875,0.15293404830982,0.531636458446585,-5.45021878586806 +"C0HK94",0.0860667974055822,18.4702960068208,1.53225717648384,0.153082919445344,0.531636458446585,-5.45104125041994 +"Q9W0M4",0.10810865508731,17.8564798481394,1.53184664931193,0.153183283515728,0.531636458446585,-5.45159521977137 +"P20240",0.116883388061996,17.3858291763181,1.53083754839653,0.153430226337634,0.531636458446585,-5.45295650199396 +"Q9VAF5",0.14354739559165,15.9981024266242,1.52678654656573,0.154425035890252,0.531636458446585,-5.45841547200965 +"Q9VJE3",0.17223244213983,15.2134507155153,1.52587365809069,0.154649982674674,0.531636458446585,-5.45964434869666 +"Q9VKI8",0.0741086383334704,22.3207915468324,1.52487537290233,0.154896296048726,0.531636458446585,-5.46098763496572 +"Q9VAY2",0.0706825506028039,21.1063656067594,1.5220892365885,0.155585529659965,0.531636458446585,-5.46473361869629 +"Q9VE24",0.216843089403477,15.9479942667611,1.52199907257884,0.155607878540504,0.531636458446585,-5.46485477051511 +"Q9VHM3",-0.169750132430377,14.7223632830764,-1.5205119048041,0.155976901360722,0.531636458446585,-5.46685237788459 +"Q9VNW6",-0.204731328166321,21.9051782188391,-1.51732692012009,0.156769756666135,0.531636458446585,-5.47112626012254 +"Q9W4Z2",0.208534336613232,13.8842305337452,1.51659260492289,0.156953045687159,0.531636458446585,-5.47211079696491 +"Q9VPL3",0.225097232791661,15.8952515058265,1.5165034999505,0.156975299326002,0.531636458446585,-5.47223024374091 +"Q9VBI3",0.109275869823076,18.5778729764938,1.51632054743323,0.157020999566003,0.531636458446585,-5.47247548042924 +"Q0E8V7",0.159223677285258,19.6220034713909,1.51584345800496,0.157140227048199,0.531636458446585,-5.47311489880146 +"A1Z7X8",-0.100038358575986,17.1261738988322,-1.51582237664805,0.157145497203507,0.531636458446585,-5.47314315002543 +"Q7K5M6",0.116145597905156,18.1008761577239,1.51460102148212,0.157451085415236,0.531636458446585,-5.47477945540987 +"Q9VEP9",0.0789695372110941,17.5119927912814,1.50681324929078,0.159411677491474,0.53651060547179,-5.48519277401423 +"Q7K485",-0.103743570529989,20.7001155413317,-1.50631460070477,0.159537925847726,0.53651060547179,-5.48585833595212 +"P48159",0.0866709109241448,19.9078436438646,1.5023452975083,0.160545946701939,0.538718572688127,-5.491151124145 +"Q9VVL8",0.110764776302553,15.7806333986493,1.50118971874326,0.160840437169477,0.538718572688127,-5.49269028005351 +"Q9VTY2",0.0781337509593492,20.6533525836877,1.49922549557842,0.161342068987951,0.5389260157806,-5.4953047068314 +"E1JGR3",0.15168393482837,12.1788803809115,1.49841844558299,0.161548565881475,0.5389260157806,-5.49637825482033 +"Q9VRP3",-0.133464988708834,18.0907815586622,-1.49704024856365,0.161901724492284,0.539026100704849,-5.49821066760282 +"Q8IMT6",-0.160947176472327,16.1715548930342,-1.4935903059824,0.162788666844976,0.540899395014781,-5.50279273013309 +"O77410",-0.218055340093853,14.4682873141122,-1.49083688098232,0.163499528470564,0.542181338944137,-5.50644468803133 +"Q8T3X9",-0.113028786576066,18.2268356777725,-1.48790447989375,0.164259520134449,0.543620792825914,-5.51032911507662 +"Q7JPS2",-0.224353800724234,20.5733062951783,-1.48232651961527,0.16571351335069,0.547346812413764,-5.5177039728563 +"Q9VGF7",-0.106583791672428,20.0308642033996,-1.47905445681708,0.166571546110437,0.549093555162467,-5.52202152106911 +"Q961Q8",-0.1623758084486,15.6157173428352,-1.47390105069473,0.167930620733698,0.549322491917577,-5.52880861723559 +"P54352",-0.124221443491303,16.1550680113512,-1.47251601506069,0.16829749736288,0.549322491917577,-5.53063002373766 +"Q9W1M9",0.313872786387895,14.2722914373343,1.47249260034444,0.168303705469518,0.549322491917577,-5.53066080566513 +"Q9VPB8",0.157832962001867,15.6305894692163,1.4680132894553,0.169494935476472,0.549322491917577,-5.53654345117225 +"Q95RI2",0.122481380764031,16.5978924931702,1.46731628816089,0.16968094113064,0.549322491917577,-5.53745773642994 +"Q0E9B7",0.264744500132377,12.7525245073989,1.46686884810342,0.169800439149456,0.549322491917577,-5.53804450825173 +"Q6IGM9",0.122462936373081,14.5459213511962,1.46606355411729,0.170015690077314,0.549322491917577,-5.53910026590396 +"Q6NMY2",-0.198927916571659,20.2107237892172,-1.46577736452412,0.170092243055748,0.549322491917577,-5.53947537274091 +"Q3YMU0",0.0716790296660328,23.1352343270644,1.46494467491876,0.170315146609597,0.549322491917577,-5.54056649354274 +"P11046",-0.104113654411755,21.0606647898758,-1.46363767565098,0.170665520395113,0.549322491917577,-5.54227828828929 +"Q01637",-0.0777034840466495,16.1310455210202,-1.46335945162728,0.170740184482704,0.549322491917577,-5.54264254934564 +"Q9NJH0",-0.0832238597389683,21.2740793306645,-1.46327218683744,0.170763608556294,0.549322491917577,-5.54275678999349 +"A8JNG6",0.304098349873604,15.4967880739237,1.46268131249626,0.17092228615421,0.549322491917577,-5.54353019856836 +"Q24583",0.0874521932582688,21.187945078414,1.45950413891075,0.171777660575925,0.551009880462776,-5.54768526265812 +"Q9W2Y3",0.0947756903053492,16.3721528765726,1.45631109393629,0.172640974461485,0.552716209984179,-5.55185493997983 +"Q24439",0.0905324399746128,24.2205606648298,1.45285964261047,0.173578300112912,0.55363005568609,-5.5563551165136 +"Q9VMR6",0.0915677325493185,18.6661357537493,1.45281578204905,0.173590239282869,0.55363005568609,-5.55641225762829 +"Q9VJC0",-0.0763636089846909,16.5523375714571,-1.44664831539342,0.175276026968068,0.557939719432706,-5.56443552489039 +"Q9VEC8",0.0962355975697609,16.448681063523,1.4419091923574,0.17658081453622,0.560651388595358,-5.57058489616299 +"A1Z8Z7",0.147975157776024,18.944762599642,1.44111550199321,0.176800138130191,0.560651388595358,-5.57161342643195 +"Q9VF82",0.101591593286656,14.8940573734584,1.43760160470424,0.177773921203125,0.562669640544237,-5.57616238768146 +"Q9V4E0",-0.231033527341083,18.4885413823436,-1.43502356036273,0.178491241340266,0.562802071222408,-5.57949500510031 +"Q9W0N6",0.237553753348424,14.5397726281946,1.43449346952286,0.178639037952296,0.562802071222408,-5.58017974245987 +"Q8MLW4",0.0943082789405771,18.604966298707,1.43381628718229,0.178827996251724,0.562802071222408,-5.58105423144222 +"Q7K9H6",0.263699528943135,11.9188124999811,1.43022749004054,0.179832223256124,0.564896701301724,-5.58568395521534 +"Q9VZ64",0.0732088947871183,19.3434763876649,1.42084542667729,0.182480063651878,0.568850284009197,-5.59774962580745 +"Q9W337",-0.103835517412426,17.6848115467521,-1.42075387731451,0.182506062170359,0.568850284009197,-5.59786709235675 +"Q7KN90",0.094761349132094,17.2207608599584,1.41943460705004,0.182881060097634,0.568850284009197,-5.59955926238434 +"Q8WTC1",-0.0739213232186433,15.1320751566517,-1.41911312693003,0.18297253801638,0.568850284009197,-5.59997144656279 +"Q9VCI0",0.295623802032448,14.8261763866143,1.41829568150426,0.183205317689142,0.568850284009197,-5.60101924016085 +"Q9VXQ0",0.11519796668933,15.2365393381364,1.41762749445337,0.183395779096175,0.568850284009197,-5.60187540637353 +"Q9W1F8",-0.0803443770588217,17.5508350277994,-1.41733891052173,0.183478089206803,0.568850284009197,-5.60224509069059 +"Q9VHJ7",-0.190762540046091,14.7807552123864,-1.41581888320753,0.183912146125462,0.569138144224991,-5.60419143148173 +"Q9VCJ8",0.0753196136844352,17.9403098743162,1.40889002978547,0.185901704191119,0.572478174188386,-5.61304527218973 +"M9PGG8",0.263096183148196,18.5055877512892,1.40857242229708,0.185993334408483,0.572478174188386,-5.61345039658868 +"Q9VIQ5",0.138569950231657,16.4203973331233,1.40847625818566,0.186021085377761,0.572478174188386,-5.61357304627653 +"A1ZB69",0.143935361307094,20.369465214526,1.40277426396599,0.187672791956779,0.576229029573191,-5.62083508916537 +"Q0E8U4",0.166124397457397,16.1587998144764,1.40188734415886,0.187930810604206,0.576229029573191,-5.62196282658703 +"A1Z8H1",-0.117857021668218,23.0908976105331,-1.39784301720875,0.189111142773427,0.578784194763442,-5.62709897481434 +"O96824",0.111783859968229,16.6513791209548,1.39655068298073,0.189489616667195,0.578880367400882,-5.62873801044059 +"Q9VHN4",0.108100621417343,14.5401845679138,1.39334134845264,0.19043225002765,0.580306633805732,-5.63280374993851 +"P48596",0.14735023367173,21.9951453467165,1.39259407357996,0.19065229935584,0.580306633805732,-5.63374949513209 +"Q7KLW9",-0.123938356555964,17.299049571388,-1.39016394858815,0.191369367782048,0.58142824309737,-5.63682258712093 +"Q7KY04",-0.158072211137547,14.1561438599219,-1.38687028878637,0.192344843034361,0.582306324098364,-5.64098168585586 +"Q9W5B4",0.14914589736896,18.5030443353191,1.38683072595705,0.192356585478536,0.582306324098364,-5.64103160212074 +"Q7JYW9",-0.218758601663886,17.4245766426789,-1.38309816153471,0.193467126424902,0.583674186496819,-5.64573646576582 +"Q9VN50",0.0883850871057668,17.9174075157007,1.38296015890426,0.193508288448886,0.583674186496819,-5.64591024602092 +"Q9VS84",0.0915069296780224,17.5094243613283,1.37966353953505,0.194493745946908,0.584753976534268,-5.65005789737641 +"A8JTM7",-0.126825143184366,17.7721622298232,-1.37848607736209,0.194846737695232,0.584753976534268,-5.65153763535673 +"Q9VV39",-0.0832991209266964,17.6207429348284,-1.37716196574063,0.195244331609362,0.584753976534268,-5.65320060652939 +"Q9W2M0",0.0802878167284788,17.7041336368835,1.37708133668532,0.195268564106467,0.584753976534268,-5.65330183334127 +"Q9XTL2",0.0908860477253413,16.8482075103012,1.37162029569245,0.196915685576356,0.588629683765881,-5.66014822728021 +"Q02748",-0.141169784562315,19.5950657560969,-1.36966806081952,0.197507305163093,0.589342012543899,-5.66259103631135 +"Q9W086",0.10135842579005,16.9594150939112,1.3679666789063,0.198024109852624,0.589720913979392,-5.66471794672849 +"Q9VB79",0.0819282485275359,17.6430763613846,1.36692399543027,0.198341386536235,0.589720913979392,-5.66602048739024 +"Q9I7J0",0.11226216412954,20.9084518293038,1.36466403066831,0.199030518931195,0.590075188513281,-5.66884126155788 +"P20432",0.0857361246911097,23.5205468634713,1.36421373856477,0.199168064228403,0.590075188513281,-5.66940289772554 +"Q7K2L7",0.227156666459546,18.1642622427798,1.36256728847252,0.199671657913346,0.590471236710683,-5.67145534610609 +"Q7JW03",0.112553823027007,17.1388248068039,1.36146389135299,0.20000974145176,0.590471236710683,-5.67282984430483 +"P40797",-0.0988304065822909,19.1922492368562,-1.35883887719958,0.200815962588553,0.590886867850314,-5.67609663216055 +"Q9VXP4",0.100600313728972,17.968654051598,1.35869891369832,0.200859025222499,0.590886867850314,-5.67627068847806 +"Q9VQM2",-0.0716742440865161,20.0807737249762,-1.35645759929156,0.201549655568694,0.591100732004496,-5.67905621045628 +"Q9VFP6",-0.0738672613378206,20.1841661370891,-1.35470466896256,0.202091168190041,0.591100732004496,-5.68123248033629 +"Q9VNE2",0.087305123955943,19.0418913534601,1.35438491979689,0.202190074548132,0.591100732004496,-5.68162923368895 +"Q9W330",-0.0820172788217874,20.6657049362558,-1.35174482277391,0.203008255810144,0.591100732004496,-5.68490258145804 +"Q95RN0",-0.0680619524891526,16.9109455743566,-1.35014547228952,0.203505235976995,0.591100732004496,-5.68688333054286 +"Q9VMW7",0.0868794718754984,19.321115867268,1.34946586031644,0.203716722436006,0.591100732004496,-5.687724502549 +"Q9VWP2",0.0785631991112581,19.5083899981033,1.34918025825049,0.203805652370019,0.591100732004496,-5.68807790864858 +"Q95RS6",-0.131648194377178,17.2307810230534,-1.34869193181589,0.203957780443623,0.591100732004496,-5.68868204337779 +"Q9VL01",0.106355691866973,20.3813067873409,1.34816796479644,0.204121116087883,0.591100732004496,-5.68933009690045 +"Q7JQW6",-0.0934423903782022,15.8479016450507,-1.34441116526914,0.205295390388894,0.592713794487244,-5.69397130212929 +"Q9VRJ6",0.108047238484986,15.6719671718822,1.34411298293351,0.205388832861887,0.592713794487244,-5.6943392832381 +"Q9VNX9",0.160825482470861,13.5977893537697,1.34037977715106,0.206561697820792,0.595068932582177,-5.69894140130877 +"A1ZBD8",0.215987151035428,14.2428820226478,1.33665564497884,0.20773721551761,0.596465161739109,-5.70352316470674 +"Q9VL93",0.104298207897333,15.3680848711975,1.33657874747246,0.207761546145337,0.596465161739109,-5.70361767428213 +"Q9VYS2",0.0993894955817165,14.9277135048621,1.32920857855716,0.210104417099064,0.602154927356081,-5.71265765348965 +"Q9V521",0.197395442170075,17.4635266091091,1.32360840637452,0.211899133942985,0.606256870354887,-5.71950245673043 +"Q9VE12",0.0909681901799324,15.6298906754201,1.32142637664431,0.212601822994182,0.606368052775668,-5.72216377069932 +"Q9VII1",0.167497290128097,19.2302366861764,1.32013029116648,0.213020112491854,0.606368052775668,-5.72374303400901 +"Q7K1U0",0.123350056106231,16.6422960928145,1.32010406196772,0.213028584488334,0.606368052775668,-5.72377498233357 +"Q9VN44",0.131065059415143,19.4746980513068,1.31442974263306,0.214867892678138,0.610356290052589,-5.73067570567066 +"P23625",-0.0753512606667428,22.2109097814817,-1.31352743024162,0.215161569874654,0.610356290052589,-5.73177104364063 +"Q9VPC1",0.098137650145917,16.0220412442041,1.30423281344816,0.218205878915933,0.617162029720359,-5.74302204066403 +"O77263",0.0846181507445216,15.4619017875801,1.3031147610704,0.218574441031111,0.617162029720359,-5.74437149118358 +"P40417",-0.09421534825238,19.842012550878,-1.30219089441543,0.218879374075547,0.617162029720359,-5.74548592687517 +"Q9VWP4",-0.10412000833248,15.2732558003591,-1.30170248286486,0.219040720380367,0.617162029720359,-5.74607485077164 +"Q9VTW6",0.328093891084356,16.2531552800174,1.29744264890694,0.220452072885104,0.618023989844728,-5.75120446604668 +"Q9VG51",0.227203189692894,19.1538008231299,1.29700687096928,0.220596870534425,0.618023989844728,-5.7517285262968 +"Q9NHA8",-0.154022144621029,16.3625345166131,-1.2963789187325,0.220805659078446,0.618023989844728,-5.75248346520366 +"Q8SZK5",0.363926465544854,15.128845270669,1.29630960305702,0.220828715795838,0.618023989844728,-5.75256678167801 +"Q8SYJ2",0.0774436301711816,22.469684117288,1.29476936295661,0.221341557837699,0.618421638983722,-5.75441728423449 +"Q9VGA0",0.0964828415525574,19.1730413091695,1.29339398981135,0.221800325283214,0.618667128047494,-5.75606834238574 +"Q86BS3",0.0767159640549266,18.8786694014408,1.29080162895794,0.222667134932703,0.618706551130981,-5.75917681500498 +"Q9VKG4",-0.0881054884964367,15.8117209264281,-1.28985978819927,0.222982741060824,0.618706551130981,-5.76030502889002 +"P02299",0.0796797081817857,22.044932221784,1.28885238501066,0.22332071963316,0.618706551130981,-5.76151110709527 +"Q9VW54",-0.0838080214531143,16.0502239982864,-1.28776152002751,0.223687169034829,0.618706551130981,-5.76281632348659 +"Q9VAG9",0.0865026599140357,17.3622430376586,1.28728538526503,0.223847268089932,0.618706551130981,-5.76338576162537 +"Q9VDE2",-0.0993927356567461,19.4931018413359,-1.28561702048104,0.224408986640882,0.618706551130981,-5.76537983284689 +"Q9VB64",-0.0621709166696931,18.7446400026558,-1.28561119712201,0.224410949301105,0.618706551130981,-5.7653867897275 +"A1ZAL1",-0.124320601290613,17.1608125549685,-1.28280420206786,0.225358622350035,0.619428575125869,-5.76873745821146 +"Q9VG42",-0.474817725839372,16.0257582189727,-1.2814781617149,0.225807437413512,0.619428575125869,-5.77031844978375 +"Q9W0M5",0.156661071971929,13.2905799257109,1.28144773367429,0.225817744676964,0.619428575125869,-5.77035471387731 +"Q9VWV6",0.0938322897302442,23.470450043578,1.28044308918733,0.226158274731208,0.619428575125869,-5.77155168983669 +"Q9VDH3",-0.079190862889952,20.6397956639293,-1.27906716565978,0.226625327963054,0.619690241053071,-5.7731898955725 +"Q9VMX3",-0.116866725604474,12.5081925248531,-1.27209462928849,0.229004172305212,0.624335170342105,-5.78147147039699 +"Q9VIH9",0.163483176250804,19.0375340436426,1.27189488523265,0.229072616456456,0.624335170342105,-5.78170821954004 +"P20007",0.465406321073589,15.0650392003839,1.26725390868137,0.230667555482136,0.627656578375535,-5.78720120763737 +"Q7KJ08",-0.108963545327951,14.6271991959506,-1.26591746929554,0.231128503360992,0.627851901990272,-5.78878022366568 +"Q9W5P1",-0.158395663633129,14.2826669905993,-1.26486463338387,0.231492158107924,0.627851901990272,-5.79002328487903 +"Q9W314",0.152654286367857,16.111044625552,1.26247418850132,0.232319545267136,0.629073054392179,-5.79284276811027 +"Q9W158",0.117103161214127,17.0153274069086,1.25747024070221,0.234059250667696,0.632756612826123,-5.79873192464511 +"Q8IN43",0.298365035735621,17.5656187465675,1.25584932632258,0.234625034608189,0.633259802146375,-5.80063583004419 +"Q9W087",0.0769442180647797,16.7136303654597,1.25290617449341,0.235655163788206,0.635012622291968,-5.80408811513014 +"Q9VK69",0.0790740993010282,20.2691315461565,1.25014171433825,0.236626060906613,0.636054706507691,-5.80732526282554 +"Q9VXJ7",0.119256046144857,14.9470041740735,1.24894509725065,0.237047317101098,0.636054706507691,-5.80872482123805 +"Q9VI09",0.0961423777252151,20.0513044721059,1.24852506869054,0.237195326479749,0.636054706507691,-5.80921584615243 +"Q9W3C3",-0.127596001756517,16.436062641009,-1.24747068820668,0.237567195536146,0.636054706507691,-5.81044789893883 +"Q9VSN3",0.116483277326726,20.8152739240628,1.24458395464534,0.238587712938854,0.636390486433162,-5.81381706574997 +"Q8MR62",0.0660816460293105,17.5724999768362,1.24399774667212,0.238795378261565,0.636390486433162,-5.8145005236021 +"Q9VQ88",0.119912348381213,16.4256645758746,1.24372942482215,0.238890480177444,0.636390486433162,-5.81481327822601 +"A1Z7H8",0.108426925884128,14.6455893711589,1.23960446783136,0.240356324992884,0.636390486433162,-5.81961490711011 +"Q9W1F7",-0.0683885514612896,20.3468451588432,-1.23956912805123,0.240368914413209,0.636390486433162,-5.81965599216842 +"Q9V420",0.0750782761464919,17.5684551196462,1.2394476957688,0.240412177397701,0.636390486433162,-5.81979715926994 +"Q9V9S8",0.0846816727892623,19.9637069821998,1.23927120068582,0.240475068868358,0.636390486433162,-5.82000231920814 +"Q6IGW6",0.11264669164291,15.7046825263955,1.23851454300981,0.240744842289763,0.636390486433162,-5.82088161695688 +"Q9VJZ6",0.130612650851813,19.6227786950523,1.23456846483207,0.242155679568817,0.638655113629502,-5.82546070465468 +"P81900",-0.0851000863589064,22.4240429796673,-1.23397810438716,0.242367318301843,0.638655113629502,-5.82614481754499 +"Q9VJI5",0.116134021257762,17.652938204105,1.23194763559456,0.243096352066481,0.638991504717329,-5.8284958451515 +"Q9VBL3",0.159058273362936,14.4580127917846,1.22874505124434,0.244249791739504,0.638991504717329,-5.83219807327949 +"M9PEG1",-0.106018307362348,20.1981406101712,-1.22722110428403,0.244800187551708,0.638991504717329,-5.83395720911921 +"P42325",-0.0797180957409331,20.0483515849267,-1.2270315403374,0.244868720527368,0.638991504717329,-5.83417591239257 +"Q9VUW2",-0.269930078483439,14.3897095849031,-1.22675638819792,0.244968223408072,0.638991504717329,-5.83449331465215 +"Q9W0H8",0.0761130017170117,19.3576437708151,1.22637433414261,0.245106438578235,0.638991504717329,-5.83493394420897 +"A0A0B4KH34",0.073882891987175,23.3684353258763,1.22446866664943,0.245796778648218,0.638991504717329,-5.83713022683597 +"Q9VIQ8",-0.0890912186655939,21.3070907888754,-1.22425434566958,0.245874514677157,0.638991504717329,-5.83737706953465 +"P82890",0.0905344298350386,19.4806974920861,1.22353625410652,0.246135115422917,0.638991504717329,-5.83820388714481 +"Q9V9U7",-0.105387377268215,17.8596547551577,-1.22260385033562,0.246473820150964,0.638991504717329,-5.83927691555108 +"Q7K0D8",0.0705908181265542,17.3040838080401,1.22137783073073,0.246919748845807,0.638991504717329,-5.84068689580045 +"Q9VHL2",0.054966802045687,20.6367657439553,1.22090461587187,0.247092038694651,0.638991504717329,-5.84123082724598 +"P38040",0.163781867170531,18.9922151438103,1.21761418842983,0.248292678436607,0.640625677092776,-5.84500853272853 +"A8DZ14",0.0757081493782188,19.4590403944567,1.21706890412548,0.248492094172078,0.640625677092776,-5.84563381755422 +"Q0E8X7",0.128083487855456,20.9988776749342,1.21215157079491,0.250296168793527,0.644280878931485,-5.85126293402506 +"A8E6W0",0.0825574835931917,16.3815397503082,1.2101815493745,0.251021844111149,0.645153214140827,-5.85351323064637 +"Q9VB68",0.115145963538524,15.4464344136697,1.20873468728789,0.251555871708893,0.645531067708359,-5.85516415485879 +"Q9VPZ5",0.094746446939368,18.300262136268,1.20722041203685,0.25211574585579,0.645973984773361,-5.85689038102553 +"Q9V3V6",0.0758795806078894,21.6030274820414,1.20362827025403,0.253447822420544,0.648391054904091,-5.86097867736204 +"P02283",0.0926613615259022,21.5563069429011,1.20166230487728,0.25417921948057,0.649266367677779,-5.86321222929658 +"Q9VF70",0.0796769507350064,15.8799457605413,1.20009496411209,0.254763512291132,0.64976382033885,-5.86499089157532 +"Q8MLS2",-0.0744452246575751,17.4735941218517,-1.19714415009003,0.255866435665461,0.651580480442732,-5.86833471617926 +"Q9VLV5",0.067446203458271,17.4716707409845,1.19545599094474,0.256499112322107,0.65172511829487,-5.87024486856046 +"Q02910",0.217440242276854,16.252228185947,1.19490819213916,0.256704677889526,0.65172511829487,-5.87086425709111 +"Q7K180",0.102221080696998,16.2573924012095,1.19218940032679,0.257726849972413,0.652416219571772,-5.87393512071324 +"Q9VK39",0.0825332502891456,18.0226356762533,1.19210358472857,0.25775916588597,0.652416219571772,-5.87403196128549 +"Q9VU45",0.136986390426562,17.8851088405112,1.19054966903811,0.25834488303604,0.652907977127447,-5.87578458282889 +"Q9VZU7",-0.0677051255833732,17.7520965147137,-1.18902413870819,0.258920921147899,0.65337382220075,-5.87750347323744 +"Q9VMH2",0.107171459397714,17.2747662076006,1.18728293539522,0.259579633376231,0.654046568688148,-5.87946329319443 +"Q9VSW4",0.206389070406427,15.940833917808,1.18432224155168,0.26070271821071,0.655885571607035,-5.88279061979315 +"Q9VC66",0.0739940135347652,17.68473607393,1.18230198988904,0.26147125538585,0.656167525547211,-5.88505735651128 +"Q9W2N5",0.144702093448622,13.0538368046845,1.18187217201546,0.261634994798664,0.656167525547211,-5.8855392286615 +"Q9VC67",0.164879903757221,15.1168019500406,1.18092803537442,0.261994947250865,0.656167525547211,-5.88659723106334 +"Q9VL16",0.0755518395871526,20.6991872305225,1.17910885288961,0.262689608343615,0.656920939605921,-5.88863396468984 +"Q9VL66",-0.0862226156404517,15.7602739114329,-1.17752147575812,0.263296934713858,0.657330733270281,-5.89040918248195 +"P04359",0.10602660084793,18.8163409587996,1.17587533987791,0.263927905422126,0.657330733270281,-5.89224815176408 +"Q6NP72",-0.0945827071445855,18.7563196814997,-1.17559435582373,0.264035726193698,0.657330733270281,-5.89256185157127 +"Q9VCU0",-0.149776267319004,17.3895518526558,-1.17420286694756,0.264570185291551,0.657679685642781,-5.89411449700253 +"Q9VIL2",0.0777503662896706,15.9411637485967,1.17232459494485,0.265292958214491,0.657880767121406,-5.89620803593285 +"Q9VYG8",0.351664810964106,15.2456825389018,1.17144846805498,0.265630626967673,0.657880767121406,-5.89718368337725 +"Q9VPL0",-0.121374074593707,15.26328103645,-1.17092039441899,0.265834314772079,0.657880767121406,-5.89777146755827 +"P49963",0.130030648423082,14.9375026266523,1.16914141966054,0.266521398377031,0.658440049799064,-5.89975007700648 +"P22812",0.238781655798444,11.6158676435857,1.16829238896766,0.266849804355016,0.658440049799064,-5.90069355910371 +"Q9VNQ3",0.115218338164221,15.0981666657644,1.16394009600811,0.268538247986689,0.661627470667352,-5.90552163610943 +"Q9W022",-0.0706214085324746,21.1500986105245,-1.16195630344181,0.269310611121229,0.662551768953112,-5.90771762647711 +"Q8T9B6",0.106219992206487,19.4828168420102,1.15961702807434,0.270223603270388,0.663818807444783,-5.91030336294194 +"Q9VMV5",0.075183649353999,17.5908994875229,1.15746252226896,0.271066615722201,0.664910463271516,-5.91268125720778 +"Q9VZV2",-0.10131311230046,15.0461180422368,-1.15480605958034,0.272108852808342,0.66648688176845,-5.91560838683693 +"Q9VHB8",-0.0908349785506211,15.697723793912,-1.1470764764842,0.275159222927025,0.672970064284864,-5.92409551813099 +"A8DYP0",0.202922918967822,15.0959855560668,1.14411258767417,0.276335898388166,0.67485838727886,-5.92733800305919 +"Q9W1R0",-0.263368152271003,14.3283156301575,-1.14248415293754,0.276984052384039,0.675452338269849,-5.92911669443254 +"P09040",-0.171039874066521,16.3873326873283,-1.14055692826361,0.277752653168384,0.676039766848901,-5.93121916601788 +"Q9W370",0.156755980657643,18.5338769687035,1.13984864585975,0.278035539603325,0.676039766848901,-5.93199115093369 +"Q9VAG3",-0.116215819372464,16.8888871835907,-1.13805030798152,0.278754793960656,0.676600191844211,-5.93394953060744 +"P32392",0.0646899163355634,17.800882984299,1.13671102685779,0.279291380959985,0.676600191844211,-5.93540641441296 +"P54385",-0.165568218155911,21.6755441300828,-1.13492876936092,0.280006686119862,0.676600191844211,-5.93734307104461 +"Q9VKV2",0.119817639498974,15.0144137760122,1.13425177406015,0.280278767489076,0.676600191844211,-5.93807808591178 +"Q9VVU1",-0.101989462375514,22.3379601509327,-1.13421337958489,0.28029420417527,0.676600191844211,-5.938119760466 +"Q9VSC5",0.0553078924361579,19.4060251208464,1.13270857932884,0.280899733960266,0.676887494413764,-5.93975223866934 +"Q9VC05",0.0935254095948661,14.835132799116,1.13162923232006,0.281334683663566,0.676887494413764,-5.94092210922772 +"Q9VW66",0.0686625363174542,21.2695441890286,1.13089551952255,0.281630648155367,0.676887494413764,-5.9417168537019 +"Q7JZW0",-0.0717341419612048,19.852561806456,-1.12701381131355,0.283200447288092,0.678377273571815,-5.94591465528628 +"Q7KN75",-0.114826921999065,19.44541509862,-1.12687125687789,0.283258225759806,0.678377273571815,-5.9460686003634 +"Q9VFR0",0.251752099325412,15.3141882677147,1.12634746878654,0.28347059932827,0.678377273571815,-5.94663410849645 +"Q9VZF6",0.0764197240909077,15.3137152708551,1.12509507507081,0.283978888409976,0.678439456199405,-5.94798541057406 +"Q9V6Y3",0.107982164319445,15.3477168229345,1.12428001688707,0.284310059882125,0.678439456199405,-5.94886419748193 +"Q9VEH2",-0.0810256614026716,15.8903757282929,-1.1211138674313,0.285599338672171,0.679734337492172,-5.95227310661969 +"Q9VZ49",-0.105467952987102,18.9238359814577,-1.12094622703101,0.285667728166674,0.679734337492172,-5.95245338764388 +"Q9VXY3",0.0709645792048477,18.1641761953229,1.1197003830325,0.286176369109946,0.679974620620213,-5.95379250067976 +"Q8SYQ4",0.129683696438303,20.8975423303251,1.11828501996211,0.28675506368551,0.680380435600897,-5.95531238639557 +"A1Z7P1",-0.155173208085815,14.6474262404962,-1.11608707462977,0.287655510738469,0.681138153912841,-5.95766961354163 +"P42207",-0.0924633721892238,16.0307722952912,-1.11460021624209,0.288265871308234,0.681138153912841,-5.95926212753776 +"Q24276",0.0948536926084493,18.4882611299607,1.11451840866592,0.28829948241155,0.681138153912841,-5.95934969922728 +"Q95029",0.0731132934697563,21.8200758807479,1.11349304457732,0.288721013944156,0.681169237989889,-5.96044687525299 +"Q9VFP1",-0.261890666292835,15.8515127329681,-1.11099178486704,0.289751274093619,0.682634357610391,-5.96311993270465 +"Q7KTJ7",-0.0654621110196558,22.0986227952706,-1.10902355325049,0.290563959433329,0.683583475789552,-5.9652199774787 +"Q9VZI3",-0.109156273414216,14.4563791023324,-1.10629962046357,0.291691550528554,0.684886822890647,-5.96812142420791 +"Q9W140",0.166493786915103,13.7138353560822,1.10538506944533,0.292070884560558,0.684886822890647,-5.96909429550043 +"Q9VB05",-0.0598609677808106,20.2274228205661,-1.10471327038344,0.292349770922147,0.684886822890647,-5.96980852461432 +"Q9V595",0.0725883028613588,18.5017065400041,1.10308146948594,0.293028033421489,0.685512987022503,-5.97154194072759 +"Q8IPG8",0.155241247568959,15.9694161807229,1.10116230520986,0.293827275846129,0.686420022564907,-5.9735779885538 +"Q9VZE4",-0.122197291606394,17.734836049102,-1.09793039763154,0.295176971203882,0.688608654500804,-5.97700030593515 +"Q9VY28",0.0750879147985213,15.3026918746893,1.09432991598982,0.296686145460073,0.690309736794476,-5.98080340302739 +"Q7JQR3",0.082249583652569,18.9968825494401,1.09416024827709,0.296757407811575,0.690309736794476,-5.98098237110859 +"Q9VWI0",0.0593376549191795,20.888105503622,1.09323151630282,0.29714771643791,0.690309736794476,-5.98196161647702 +"Q03427",0.0548666027263494,21.6940172981845,1.09138614085362,0.297924411640178,0.691151486252874,-5.98390537671198 +"Q9U915",0.0735434913254487,21.0788216242223,1.0899867983103,0.298514405012161,0.691558371611507,-5.98537756256984 +"Q9VH25",-0.0740380134249659,16.2493676452261,-1.08900325994922,0.298929617020726,0.691559779737268,-5.98641138938491 +"Q9VGQ1",-0.0787543556199886,22.4199680033146,-1.0855360250546,0.300396847078903,0.692575330904062,-5.9900499056732 +"Q9VJG0",0.48329679221732,12.9801960885865,1.08425756661401,0.300939228187427,0.692575330904062,-5.99138915885966 +"O61604",-0.0500088336048847,20.9618134422261,-1.08410298940235,0.301004857234603,0.692575330904062,-5.99155100042093 +"Q9VQV7",0.0640104422559524,16.2441362236556,1.08307675375499,0.301440842429657,0.692575330904062,-5.99262499171897 +"Q9V931",0.242440438093968,17.5012622896374,1.08306777653341,0.301444658415077,0.692575330904062,-5.99263438307102 +"Q8SXC2",-0.167918177559544,14.7815427012335,-1.08056125195238,0.302511548955913,0.694070513973125,-5.99525407732679 +"Q0KHZ6",0.0851679015030555,22.9972784062192,1.07550659925327,0.304671722824289,0.6979357405185,-6.00052201800834 +"Q7YTY6",-0.0806220846921999,18.4275473575314,-1.07466372624708,0.305033066449632,0.6979357405185,-6.00139851226169 +"Q9V3V9",0.0545234888344801,19.5080276117813,1.07206298549674,0.306150054826178,0.698790566398023,-6.00409948374563 +"Q9VJU8",-0.0971704078100988,15.634752860009,-1.07184330356951,0.306244546784745,0.698790566398023,-6.00432738906966 +"Q9Y136",-0.0881531909505018,15.3530738197308,-1.06993798295804,0.307065006199314,0.699705505929585,-6.00630244263928 +"Q6NLJ9",-0.145373623614553,15.0561653945419,-1.0673630197029,0.308176453112043,0.701280114312261,-6.00896711463677 +"Q9VE50",0.0865715849870003,14.475521288582,1.0615391791341,0.310701391981768,0.706010156076807,-6.01497459625679 +"Q9VGV9",0.0767075158298738,16.0126395571021,1.05914309163233,0.311744719121714,0.706010156076807,-6.01743846960975 +"Q494G8",-0.0626819239862293,15.0669469987897,-1.05784963446707,0.312309019374832,0.706010156076807,-6.01876663312549 +"A0A0B4KHJ9",0.104447151946523,24.5118156847406,1.05748614299999,0.312467738560773,0.706010156076807,-6.0191396396966 +"Q9VGR1",0.140749112376492,14.1166566808303,1.0574343664056,0.31249035181887,0.706010156076807,-6.0191927631394 +"Q7K0E6",-0.0911787207415671,16.8080827456928,-1.0567378610312,0.31279466747048,0.706010156076807,-6.01990718027031 +"Q9VI75",0.0971515138668835,17.2912939066167,1.05275795047467,0.314537820405849,0.708985249239131,-6.0239820698253 +"Q76NQ0",-0.0986325299380297,14.6124155645229,-1.05164057007739,0.315028523555056,0.709133032779802,-6.02512385797616 +"Q9W259",0.106617033664325,16.9206861529285,1.04893197686563,0.316220389894389,0.710148779635486,-6.02788750242132 +"Q9VZF9",0.0903702259514425,19.0323050545056,1.04787903488222,0.316684625318019,0.710148779635486,-6.02896027110454 +"Q9VTU2",-0.0581291400200286,20.7468262142075,-1.04771496238126,0.316757009621584,0.710148779635486,-6.02912735364876 +"Q9VF23",0.260212368004774,15.5829264578613,1.04609442680102,0.317472608862033,0.710178139565752,-6.03077646852027 +"Q8IPW2",0.0876817801281238,17.1549693284567,1.04575728052391,0.317621637959263,0.710178139565752,-6.03111929787925 +"Q9VSA9",0.108847533199722,22.2183110523498,1.04056101451555,0.319925147557424,0.713024771563201,-6.0363916936095 +"Q9W1H5",0.0740544214396497,17.2841147546441,1.03918875425091,0.320535541716977,0.713024771563201,-6.03778046124409 +"Q7K012",-0.112488981524312,15.6657219695047,-1.03892028603952,0.320655060088086,0.713024771563201,-6.03805198292655 +"Q9VG73",0.0899643844349178,18.0198773504576,1.03875337204109,0.320729384614094,0.713024771563201,-6.03822076630121 +"Q9VQT8",-0.185352731402915,17.9259406441039,-1.03807376548046,0.321032136357292,0.713024771563201,-6.03890775418887 +"Q9V3E7",0.065357368707609,18.6794329837305,1.03578093757307,0.322055114064844,0.71429665422206,-6.04122275840225 +"Q9VNF5",0.0741396483732117,15.9624342456496,1.03359361963504,0.323033270571974,0.71429665422206,-6.04342730805304 +"Q9VGA3",0.0775154284344275,19.5055893985931,1.03358486272537,0.32303719103764,0.71429665422206,-6.0434361262426 +"Q9V455",0.121475159201182,19.3449192279742,1.03235967925516,0.323586053163265,0.71429665422206,-6.04466927714526 +"Q9VPU4",0.203227599740162,12.8646994658362,1.03200300867602,0.32374596558266,0.71429665422206,-6.04502804084877 +"Q7JX94",0.196637568901421,12.4554350585169,1.02983946608582,0.324717240023485,0.715493205230082,-6.0472020914543 +"P05205",0.0996868477057937,18.0540826934439,1.02607380350202,0.326412892830378,0.718280613774498,-6.05097707042649 +"A0A6H2EGA2",0.092847750330094,15.8112016697189,1.02239607804294,0.328075257093711,0.720987521518194,-6.05465287404973 +"Q7K0W4",0.130907286882049,21.7295559962615,1.02078755516134,0.328804284505971,0.721638877047315,-6.05625712752072 +"Q9VIX1",0.161616887035416,17.0657705520004,1.01451640794441,0.33165794787959,0.72549779554409,-6.06249166123631 +"Q7JWU9",0.15660511052387,15.4201115848207,1.01402359101028,0.331882972239811,0.72549779554409,-6.0629802518398 +"Q7JVK6",-0.089493764703942,17.4664185938899,-1.0136648620096,0.332046841494377,0.72549779554409,-6.06333578064124 +"Q94524",-0.145428494603301,15.6472896199961,-1.01310578873801,0.332302347599331,0.72549779554409,-6.06388965846888 +"Q9VBT1",-0.0613309993661701,16.344982023068,-1.0099978241243,0.3337253748488,0.727652189866403,-6.06696411791378 +"Q9VT75",0.0649352978685602,15.6499745328062,1.00714890745366,0.335033716821233,0.729551226707333,-6.06977543015617 +"Q7JVG2",0.0901639330976067,14.8418424357006,1.00500572122453,0.336020432612312,0.730207664580296,-6.07188597601505 +"Q9VCW6",-0.100979543568918,19.8006912268791,-1.00459293257685,0.336210723259993,0.730207664580296,-6.07229204844602 +"Q9VGE4",0.0511820181539235,15.6351054434447,1.00171734833149,0.337538522007543,0.732138172572929,-6.0751169927159 +"Q9VS02",0.0726733384015326,17.9271068251534,1.00055232559767,0.338077560176434,0.732355026460119,-6.07625957928334 +"Q9W073",-0.0968953512205815,14.6015500432529,-0.997589391947354,0.339451296929417,0.734377124874536,-6.07916045822385 +"Q9W499",0.130171145373406,16.939224954988,0.996091464913277,0.340147345003912,0.734502023829272,-6.08062428200779 +"P29613",0.0485577767801821,23.7223571763347,0.995542000116752,0.340402927827299,0.734502023829272,-6.08116077694004 +"Q7K549",0.151953161340407,14.7498003124148,0.99433632433232,0.340964236794205,0.734502023829272,-6.08233712710343 +"Q9VXH7",-0.0753566069098959,18.1474502303308,-0.993332082427044,0.341432281568329,0.734502023829272,-6.08331603398967 +"P05812",-0.0876079349449927,15.8028855978435,-0.991983102570588,0.342061733586338,0.734502023829272,-6.08462968092197 +"Q9VFJ2",0.117180691438143,13.9744111740587,0.991791679309191,0.342151122611118,0.734502023829272,-6.08481596947385 +"Q24478",0.179613435028322,17.2804273430026,0.986044966919006,0.344842583682347,0.738799004357341,-6.09039452463874 +"Q8IPD8",0.125576617312486,18.2635258590238,0.985627663499101,0.345038623737631,0.738799004357341,-6.09079856004864 +"Q7KLE5",0.0556742784371629,21.3584388759151,0.983850952685059,0.345874188587417,0.739038886184092,-6.09251717677454 +"Q9VJH8",-0.115875702822963,14.4362121832611,-0.98350555991766,0.34603679263176,0.739038886184092,-6.09285097427248 +"P45594",0.0865030130244726,23.0320016173485,0.982291348794763,0.346608858743611,0.739314036297114,-6.09402364267938 +"Q24050",0.0620509096250448,16.6091061370855,0.979604486197616,0.347877187149743,0.741071709023973,-6.0966142564111 +"Q7K204",0.1660805143682,14.6875787448478,0.977189417748163,0.349020077666261,0.742558022381791,-6.09893772687263 +"Q9VYY3",-0.0508986202133315,17.5969178957534,-0.974175964271499,0.350449944815121,0.743241985113658,-6.10183012591091 +"Q00174",-0.0603657340511994,22.0791985117714,-0.972673515866119,0.35116442526321,0.743241985113658,-6.10326941134814 +"Q0E8P5",-0.0648933174806636,17.6916105113712,-0.971757696824829,0.35160045242203,0.743241985113658,-6.10414581202281 +"Q7K159",0.104597425108508,14.5592157679927,0.971037542414916,0.351943596336451,0.743241985113658,-6.10483448154713 +"Q0E9F9",0.0872083220998761,18.4649680245759,0.970475686817985,0.352211480465862,0.743241985113658,-6.10537147440332 +"P48375",-0.0860373724785113,21.8085269826473,-0.970438375621288,0.352229275070143,0.743241985113658,-6.10540712526746 +"Q9VMG0",0.153063195309983,14.7223457552079,0.969953301242164,0.352460677592868,0.743241985113658,-6.10587050894532 +"Q9VJI9",0.112360383959945,17.4846501973073,0.967583828098456,0.353592596870116,0.743933149164296,-6.10813122149841 +"Q7K0S6",0.142675531625819,17.3751128197337,0.967400155545393,0.353680448013961,0.743933149164296,-6.10830626865128 +"Q9W3N9",0.08030946896152,20.1746189930451,0.965271173201817,0.354699892049758,0.744911148238627,-6.11033322659609 +"Q9NHD5",-0.0936330576467448,16.6269288291043,-0.96456482413538,0.355038586840353,0.744911148238627,-6.1110048936468 +"Q960X8",0.0831460283468033,18.376812169878,0.956438286452244,0.358951970261301,0.748820688701354,-6.11870251788229 +"Q9XZ61",0.0535809532263443,18.5542758642914,0.956198262367132,0.359068022746169,0.748820688701354,-6.11892903592871 +"Q9VJ58",0.0629769780244018,17.2507657581955,0.956188432486209,0.35907277609979,0.748820688701354,-6.118938311661 +"Q9W402",-0.0504284570763645,21.1745173690248,-0.956053787751756,0.359137889661208,0.748820688701354,-6.11906535782086 +"O18373",0.059416749452474,19.606156880926,0.956035749976107,0.359146613286021,0.748820688701354,-6.11908237649755 +"Q7K4Z4",0.0959155231316888,14.9359734077714,0.952652274908776,0.360785645950333,0.749105136127348,-6.12226988062981 +"Q9VMB3",0.0695804016068422,18.6855427527183,0.952559191109264,0.360830813226233,0.749105136127348,-6.1223574376502 +"Q9VCD9",-0.146466773151964,18.490397149833,-0.952118359659113,0.361044773742985,0.749105136127348,-6.12277199655409 +"Q8SY96",-0.0762091384177985,18.7595914780058,-0.951185713121912,0.361497738349289,0.749105136127348,-6.12364852318189 +"O76521",-0.0507548208758379,16.1161413681071,-0.950757134065212,0.361706025041403,0.749105136127348,-6.12405106913092 +"O97064",-0.0651095584187971,16.54416948832,-0.950198467889061,0.361977661701824,0.749105136127348,-6.12457556927724 +"Q868Z9",0.128397846337105,20.3355311312832,0.946766933984826,0.363649343697012,0.751354220653675,-6.12779150220313 +"Q9W254",0.056144742550515,18.1363121408559,0.945820369369466,0.364111430851523,0.751354220653675,-6.12867685590258 +"Q26377",-0.11582630455262,16.7360509241872,-0.945197337219959,0.364415806060446,0.751354220653675,-6.12925918813345 +"A1Z6X6",0.0784613907889025,18.5473594407173,0.944095790446305,0.364954396693242,0.751535720597935,-6.13028797760484 +"Q9W1H6",0.0751436612009151,17.13789610767,0.941830665219421,0.366063684557792,0.751673450554026,-6.13240028487376 +"O97062",0.0634490132851546,18.4208828540843,0.939334829050795,0.367288726115507,0.751673450554026,-6.13472273735103 +"P54397",0.111875817120186,14.76225260933,0.937442933206432,0.368219267632586,0.751673450554026,-6.13647970737818 +"Q4QPU3",-0.114600878791746,14.554738652412,-0.936916181511194,0.368478650861967,0.751673450554026,-6.13696835510619 +"Q9V9A7",0.121498405937361,16.2420319184984,0.93612748482679,0.368867262920706,0.751673450554026,-6.13769956164375 +"Q9VYT3",-0.0813154172036068,14.3846837350221,-0.934889805393872,0.369477685383562,0.751673450554026,-6.13884596487357 +"Q9VEV3",0.0502917744738447,18.1640059411476,0.934436334822605,0.369701515431517,0.751673450554026,-6.13926566915348 +"Q9VEA5",0.115365995414717,15.6087790686176,0.934126690061751,0.369854409094263,0.751673450554026,-6.13955215736348 +"A1ZB68",0.0757935239973442,19.2641362846408,0.933934957271487,0.369949103628804,0.751673450554026,-6.13972951095098 +"Q9W385",0.108104874072092,16.7844830117989,0.933404611824639,0.370211124168147,0.751673450554026,-6.1402199207776 +"P14484",0.0940110374341252,19.3148141414888,0.933268607468361,0.370278339108498,0.751673450554026,-6.14034564555297 +"Q961T9",0.0742846140695477,17.9365695131024,0.932963814612186,0.370429002611157,0.751673450554026,-6.14062734454859 +"Q95SH2",0.0696193897078601,18.7133393145131,0.930912601612549,0.37144407321663,0.752817392618881,-6.14252109575256 +"Q8IRD0",-0.0783459062883161,17.6159850244542,-0.929835655212977,0.3719778000355,0.752984187450502,-6.14351394489032 +"Q9VJD1",0.0636840397711644,18.5180718216571,0.928605173426413,0.372588279715848,0.75330575826186,-6.14464713799326 +"P13060",-0.0846246928863685,20.2895421038433,-0.927189590922383,0.373291466686498,0.753695116817428,-6.14594920992109 +"Q9VEK8",0.0479366564140662,18.8649467170921,0.926399056237773,0.37368456930936,0.753695116817428,-6.14667561517347 +"Q9W3R8",0.106563126415836,17.2173338590721,0.923871273459998,0.374943494249819,0.754259933939651,-6.14899478196522 +"Q9VLP1",0.138527063646887,18.4090797696655,0.922722153834569,0.375516781309026,0.754259933939651,-6.15004727195262 +"A1Z9I0",0.063952739654404,19.348479623279,0.922589511412597,0.375582995240771,0.754259933939651,-6.15016868823378 +"Q9Y114",0.0482520942753339,18.5795106811864,0.921889502537534,0.375932569398953,0.754259933939651,-6.15080920445291 +"Q9VJ22",0.263212636795911,13.268703319463,0.921303115036696,0.376225578559826,0.754259933939651,-6.15134543519495 +"Q9VEN9",0.0820181000223563,14.9031431216791,0.91491237213507,0.379429332827827,0.758584648696318,-6.15717056956418 +"Q9VXM4",0.12991727294019,20.2379712594749,0.913267224554828,0.380257146397814,0.758584648696318,-6.15866448051705 +"P54353",0.0936173300478416,18.8304147218926,0.912832225347976,0.38047624239803,0.758584648696318,-6.15905910457149 +"Q9VM11",0.0845737190929583,17.8416410407996,0.912664215733985,0.380560887396782,0.758584648696318,-6.15921147685214 +"Q9VPX5",-0.0719346301584984,18.8173679929375,-0.912474100661553,0.380656685227109,0.758584648696318,-6.1593838680774 +"Q8MKK0",0.211862824431259,15.6720370767871,0.909283602699773,0.382266871901374,0.759949511078727,-6.16227231788533 +"P92177",0.079974280323988,24.0760684689955,0.909069507620783,0.38237509171939,0.759949511078727,-6.16246583275859 +"Q9VAI9",0.130977842581164,21.924299457077,0.906963079195685,0.383440978976441,0.759949511078727,-6.16436768635882 +"Q9VA18",0.0740394228707189,21.549160596135,0.906933288851528,0.383456068210539,0.759949511078727,-6.16439455624858 +"Q9W329",0.06040069291506,16.4222194422817,0.905101565809584,0.384384656740155,0.759949511078727,-6.16604524857798 +"Q9W436",0.0930238099272529,14.4398115397976,0.90500946128684,0.384431390249783,0.759949511078727,-6.1661281744225 +"Q9W3J5",-0.081146303547067,16.3335365613533,-0.904813550652149,0.384530807764056,0.759949511078727,-6.16630453739713 +"Q9VX69",0.0955832422023661,18.026916732431,0.903558820991177,0.385167961566753,0.760307881530584,-6.16743329183443 +"Q9VBC9",0.104731009862178,15.4567676281696,0.902442633967118,0.385735379899978,0.76052791214322,-6.16843627847349 +"Q9W260",-0.0973775608509655,17.4763900210789,-0.900314629837754,0.386818768402982,0.761763525024998,-6.17034550399702 +"Q9VNW0",0.115134101199061,14.4924044810533,0.894543592159535,0.389767483338143,0.765386392468715,-6.17550363376968 +"Q9VSR5",0.0738491630137652,20.3570599932398,0.894451005805183,0.389814916859258,0.765386392468715,-6.17558615345271 +"Q7JYZ0",0.156071698489558,16.7975662208708,0.893699129783256,0.390200263278786,0.765386392468715,-6.17625600645186 +"Q9VHI7",0.0868548781068466,15.5328542270178,0.893126545638653,0.390493896877024,0.765386392468715,-6.17676579996851 +"Q6IHY5",-0.0688697321561769,20.8055478376889,-0.890112204377146,0.39204223479178,0.766747036478055,-6.17944492106493 +"Q9VMX4",0.0767871261644082,17.2319397881249,0.889523276887437,0.392345235788009,0.766747036478055,-6.17996743926024 +"Q9I7I3",-0.139003264647275,14.6224815081375,-0.888842549927951,0.39269566852406,0.766747036478055,-6.18057103216973 +"Q7JZN0",-0.0536366347575434,16.839456596125,-0.887631338911918,0.393319723731344,0.766747036478055,-6.18164400952759 +"Q9VRJ5",0.0730094656707081,17.2098243086631,0.886827995345903,0.393734009199482,0.766747036478055,-6.18235496940302 +"Q9W1C8",-0.245278230404971,15.9794323082323,-0.885547047427235,0.394395217505434,0.766747036478055,-6.18348745533555 +"Q9VC58",0.129571945815654,13.1549233948413,0.885526461937364,0.394405849699143,0.766747036478055,-6.18350564337785 +"Q9W0J9",-0.0608072229095953,18.371571084034,-0.883339724383548,0.395536400700501,0.76694254136647,-6.18543561828774 +"P08928",0.0442192998339976,22.7066381499279,0.882829504690045,0.395800506355555,0.76694254136647,-6.18588533324218 +"Q7KK90",0.0539821115936086,21.057639963996,0.882664761951785,0.39588580822334,0.76694254136647,-6.18603049169547 +"Q9VMU2",0.0498718144713113,16.2650476200337,0.877990443481851,0.398311379278063,0.770746381248038,-6.19013933191946 +"Q9VQD8",-0.19156845178701,17.5504467580811,-0.876731522467485,0.398966389300604,0.771119278509163,-6.19124271341152 +"Q7K127",0.146079376867085,18.5736732832359,0.873186796572453,0.400814651967465,0.7731003094363,-6.19434208997427 +"Q9VPF6",0.0892020508451843,14.1197783312334,0.872988294850847,0.400918325936691,0.7731003094363,-6.19451532938053 +"Q9W0A8",0.104113750154912,18.9399094420895,0.869453738429422,0.402767430288922,0.775421386953434,-6.19759431616582 +"Q7K0X9",0.0669840270386786,16.6210460585213,0.8689112181619,0.403051764081911,0.775421386953434,-6.1980659472867 +"A1Z6P3",0.0593638299433685,17.166281251118,0.86492171405008,0.405146856573267,0.778266784165444,-6.20152627082218 +"Q9VP77",0.081278573268353,15.3158554571085,0.863329625926568,0.40598500778901,0.778266784165444,-6.20290329942904 +"Q8IR45",0.0748606756419967,14.76825378291,0.862933844893708,0.406193548548593,0.778266784165444,-6.20324527447449 +"Q7K1C3",0.0859609495695413,17.0875093845116,0.862547658895806,0.406397103721884,0.778266784165444,-6.20357882690047 +"Q95SN8",0.091731359208481,17.6345510071932,0.857970489889107,0.408814962830137,0.779144921790505,-6.20752223031909 +"Q86PD3",-0.0455314260720066,18.8966688765052,-0.857812132195446,0.408898788291825,0.779144921790505,-6.20765833306812 +"O62530",0.0724344270970541,15.6386721994464,0.857743813583531,0.408934955832191,0.779144921790505,-6.20771704367484 +"Q9VWT3",0.0604602502795597,14.2719617701835,0.857580273146853,0.409021542141876,0.779144921790505,-6.20785756794425 +"Q8SXD5",0.171340390428536,20.5955878358629,0.857259864917314,0.409191217918754,0.779144921790505,-6.20813281496889 +"Q9VBT2",-0.114818327202462,13.189899350694,-0.855544589290808,0.410100371561893,0.779384544226571,-6.20960479347133 +"Q9W0B3",0.055111734317034,19.1137005446103,0.855259564307484,0.410251576637248,0.779384544226571,-6.20984914006609 +"Q7K3D4",-0.0858323892077806,18.5857959882855,-0.852885739713828,0.411512348887832,0.78089032758237,-6.21188140564141 +"P22465",-0.0506949036081252,22.6448928578298,-0.851360245671774,0.41232394002691,0.781541286323734,-6.2131847909978 +"Q9V3T8",0.111645597710101,15.5183575717429,0.849468942245706,0.413331646634464,0.781702694192769,-6.2147978843719 +"Q9V7D2",0.0634411935668631,21.2933263040172,0.849441296917076,0.413346388655889,0.781702694192769,-6.21482143975366 +"A1Z8D0",0.172658739206765,13.7767135759048,0.847581094954656,0.414339165229891,0.782387850804685,-6.21640489170677 +"Q9VG26",-0.0609287753238483,19.6958901800088,-0.847005279918601,0.414646798627903,0.782387850804685,-6.21689442291023 +"Q8MSS7",0.103001401848262,14.2982921642656,0.844797447480187,0.415827772874764,0.783729632943623,-6.21876871239984 +"Q7JNE1",0.042817338750357,17.7550808791539,0.843296452098366,0.416631947671856,0.784359016610221,-6.22004049481635 +"P48609",0.0588605104046636,17.0255468667255,0.842383893520954,0.417121370890295,0.784395092046237,-6.22081272756062 +"Q9VVA7",-0.0608026802058852,17.5548351430977,-0.84045136564068,0.418159096410925,0.784728465780145,-6.22244566032538 +"Q9VFP0",0.0704583528804985,16.4498812886435,0.839720047321083,0.418552249274972,0.784728465780145,-6.22306274384881 +"Q9VH76",0.0584051246217356,19.2554924119031,0.837769213105825,0.419602217892091,0.784728465780145,-6.22470653784943 +"Q9VSN9",-0.0663925842630348,16.5886768191222,-0.837732375530753,0.419622061370461,0.784728465780145,-6.22473754521849 +"Q9VRZ7",0.0772827091837858,17.2003507913344,0.837004034028985,0.420014529563161,0.784728465780145,-6.22535036715332 +"Q94901",0.0921477559884458,19.0157861576264,0.834333948565106,0.421455408112119,0.784728465780145,-6.22759294496339 +"Q4QQ70",0.0623794543445833,16.0633288352795,0.833897644700032,0.421691167365266,0.784728465780145,-6.22795879210556 +"Q9VU95",0.147923101138229,16.6342090714877,0.833301629887408,0.422013369511414,0.784728465780145,-6.22845828664016 +"O16158",-0.0745588417948504,21.3065765412303,-0.833084305231423,0.422130894801281,0.784728465780145,-6.22864033882661 +"Q9VSL6",0.172303610903624,14.5992736241864,0.831783851404632,0.422834613001674,0.784728465780145,-6.2297288501278 +"Q9V470",-0.0570799470067413,19.9437318348662,-0.831660970497233,0.422901148292469,0.784728465780145,-6.22983162688178 +"Q9VBS7",0.0617435817168328,19.8588156854224,0.831581505779386,0.422944179098531,0.784728465780145,-6.22989808350064 +"Q7K568",-0.140200522694055,16.1603050377823,-0.8279032447137,0.424939179816761,0.787499250942438,-6.23296809354088 +"Q9VEJ0",-0.0406018200164375,22.1648801920338,-0.82708570715504,0.425383441071497,0.787499250942438,-6.23364880819932 +"Q9VE85",-0.0761814320233523,15.8814386667096,-0.82552962677686,0.426229888995372,0.787499250942438,-6.23494282200548 +"Q9VY78",0.0670127004773988,18.727987186982,0.825353008161798,0.426326033333946,0.787499250942438,-6.23508955943487 +"Q5LJT3",-0.0803719068957385,17.0592843814307,-0.818451770100338,0.430094061461736,0.793580635528955,-6.24080147120076 +"Q9VHC7",0.0612963704145422,19.9104484051464,0.816332320910701,0.431255670610258,0.793838936322958,-6.2425471432215 +"Q9VFF0",-0.0543407549161365,23.7210918395244,-0.814863285164313,0.432062020293557,0.793838936322958,-6.24375475277388 +"O97111",0.121241661347607,14.7190972016912,0.814545365177071,0.432236656427498,0.793838936322958,-6.24401584271313 +"Q709R6",0.0777491741759739,14.996330558216,0.814472679892913,0.432276589599993,0.793838936322958,-6.2440755223954 +"Q9VFS4",0.0735265478261287,15.1658399975213,0.813348927915383,0.432894286333487,0.793838936322958,-6.24499760024842 +"Q9VW58",-0.0845564151909564,14.869250235052,-0.812993843614777,0.433089587562285,0.793838936322958,-6.24528872464461 +"Q9VHA8",0.0581821982936574,18.577449049975,0.811696027899762,0.43380389727822,0.794218168744193,-6.24635181083918 +"Q9VDL1",0.058999545910277,14.7955255268393,0.810888433921947,0.434248782910494,0.794218168744193,-6.24701257871639 +"Q9W0C3",0.16857886531432,18.5300521372333,0.809724086157752,0.434890724027814,0.794415926056195,-6.24796421258685 +"Q9VIH3",0.0868556484327634,13.7255815807453,0.808965219286052,0.435309446292183,0.794415926056195,-6.24858378919251 +"Q7JXF7",0.0527943403793749,17.8354914405549,0.807397922251559,0.436175076007557,0.794673085647305,-6.2498617753013 +"Q9V3D9",-0.0393246001519181,17.5208655860174,-0.806985214330373,0.436403205307513,0.794673085647305,-6.25019793435651 +"A8JNT7",-0.062332044084366,16.9183019633104,-0.805513448927714,0.437217378216368,0.795238505083875,-6.25139547399463 +"P43332",0.0933317905210806,17.1979023157213,0.804701021412324,0.437667234812349,0.795238505083875,-6.25205569416632 +"Q9VGU6",0.0543536900711032,18.6156047721289,0.801432222514086,0.439480291583957,0.797663902461415,-6.25470609934956 +"Q9VRL1",0.0506209478565758,20.4607864901745,0.799824094197052,0.440374046803155,0.798417293551807,-6.2560064776632 +"Q95R34",-0.0972312321112216,15.3379506274258,-0.797206688973352,0.441831265553418,0.799066488490985,-6.2581180122827 +"Q9VD29",0.0548771981380973,20.6646703017005,0.796633916090697,0.442150570596951,0.799066488490985,-6.2585792620351 +"Q9VH64",0.117991365012873,17.3830942884285,0.795261135153522,0.442916469392467,0.799066488490985,-6.25968354964888 +"Q7K1W5",0.0665058713849085,19.7471592085193,0.795117224346691,0.442996809733964,0.799066488490985,-6.259799215557 +"Q9VGF3",0.0512221063692024,15.6855066969894,0.794883340293393,0.443127399193142,0.799066488490985,-6.25998715614871 +"P51140",-0.0860655734120215,13.6004682650369,-0.792267054476559,0.444589911498873,0.800493006564576,-6.26208614571299 +"Q8IH23",-0.084068162065412,18.3031126949066,-0.791751803220427,0.444878307605133,0.800493006564576,-6.26249879302232 +"Q9VSY4",-0.037553297268758,20.3955344228416,-0.788957361824258,0.446444524220474,0.801801901994966,-6.26473259233322 +"Q9VVL7",-0.0447982693193438,23.4449115102015,-0.787844982943549,0.447068978311507,0.801801901994966,-6.26561983461893 +"Q9V3W2",-0.052252878318388,21.5163689398709,-0.787099358152044,0.447487864631743,0.801801901994966,-6.26621392483709 +"Q9VFM9",-0.0710533690661723,17.1121108313652,-0.786636120555748,0.447748235801,0.801801901994966,-6.26658276472961 +"Q9VGK3",0.0490406462523083,17.0547593905829,0.785803647547963,0.44821638864353,0.801801901994966,-6.267245110164 +"Q9W0H3",-0.0699978161956736,16.7073177433376,-0.784428300033759,0.448990527307532,0.801801901994966,-6.26833801244407 +"Q9VZW7",0.153629697881486,13.820911208178,0.784404167847694,0.449004118238028,0.801801901994966,-6.26835717349423 +"Q9Y112",-0.0391986793278356,22.2388288292397,-0.782754185718426,0.449933996329897,0.801801901994966,-6.26966601528436 +"Q7KW39",0.0470119457715832,21.7197458144868,0.782214670045007,0.450238319682868,0.801801901994966,-6.27009344902888 +"Q8IN51",-0.0848709339673057,17.0293309834214,-0.781905629647638,0.450412699142256,0.801801901994966,-6.2703381688946 +"P21187",-0.0400335930246989,19.1557839528566,-0.77956548158233,0.451734565809556,0.803297714040873,-6.27218845267281 +"Q9VRQ9",-0.0455464953191669,14.7942430412683,-0.77807049293775,0.452580337370289,0.803944624849459,-6.27336789471726 +"Q9VCE0",0.0906353686202355,15.6928036725922,0.775644427171509,0.453955018862365,0.804329089154483,-6.27527757439449 +"Q9VU04",0.0628619444630623,16.4469590514162,0.774510673454075,0.454598355412007,0.804329089154483,-6.2761681765257 +"Q9VD00",0.0522353349339539,17.9030329485912,0.774373745833556,0.454676093088498,0.804329089154483,-6.27627565876809 +"Q9VD68",0.0780409996894669,14.8373354610315,0.774286519914361,0.454725618149087,0.804329089154483,-6.27634411844459 +"Q9V4Q8",0.048002104327221,16.8899276261478,0.771216955311905,0.456470654250391,0.806560435688192,-6.27874887471108 +"Q9VWL4",0.114165449646684,16.1037637192029,0.769489275942007,0.457454715228679,0.807443878308398,-6.28009860095661 +"Q9W445",0.0689803767640385,16.4111935822001,0.767773413315392,0.458433385932296,0.807554926812072,-6.28143640461279 +"Q9VYF0",0.0777021413867693,16.229081430833,0.765305572904871,0.459843300048308,0.807554926812072,-6.28335579558293 +"Q9VR31",0.0565290702053467,17.2539981917918,0.76498284328981,0.460027884333392,0.807554926812072,-6.28360639147567 +"Q7JWD6",0.0448731261257969,20.433973622594,0.76488632019466,0.460083099607613,0.807554926812072,-6.28368132210294 +"Q7JXB9",0.0682446300141759,16.2530825015997,0.764257664085791,0.460442820599323,0.807554926812072,-6.28416913817188 +"Q9VN93",0.0455780292116046,20.3086072160056,0.763007494354498,0.46115870733735,0.807554926812072,-6.28513815586543 +"P14199",-0.056475966034494,18.5062445155225,-0.761988470400894,0.461742755963557,0.807554926812072,-6.28592695453055 +"Q9W4I3",0.0833818679198917,16.6970133565521,0.761867261403637,0.46181225757669,0.807554926812072,-6.28602071598249 +"Q9VN25",0.100726007900304,14.9676348312909,0.761757954563991,0.461874940155106,0.807554926812072,-6.2861052589864 +"Q9VQG4",-0.0520081760534801,19.1735099000527,-0.760358666768945,0.462677846419592,0.808111673118198,-6.2871865687747 +"Q9VKW5",-0.0890687817655049,17.0728239898052,-0.75756989558646,0.46428067288284,0.810062931347884,-6.28933627182377 +"Q9VH98",0.0425364193869555,16.9446843814699,0.756681257963031,0.464792149120378,0.810107946429248,-6.29001977620732 +"Q9W369",-0.0578537923065348,22.1264330675567,-0.754370574674673,0.46612378540375,0.811580870619473,-6.29179367590551 +"Q8SXF2",0.0391742942592934,15.4799487548273,0.753338660368811,0.466719250875894,0.811770292451503,-6.29258429087522 +"P21914",-0.0381933217089774,22.8684818590248,-0.752201434309496,0.467376042439621,0.812065873738842,-6.29345446096305 +"Q9VSU6",-0.0580567630503026,21.5518762551509,-0.749447127827833,0.468969174077488,0.812938671107895,-6.29555705371915 +"Q9VXA3",0.0511150403288738,17.7763459926855,0.748895510901997,0.469288647966199,0.812938671107895,-6.29597731203004 +"Q9VL10",0.0755410448434048,16.8051222626133,0.748645072574147,0.469433736761226,0.812938671107895,-6.29616802029036 +"Q7JXF5",-0.0420805956481516,18.4980668566026,-0.746186977956756,0.470859305078086,0.812938671107895,-6.29803679528431 +"Q9VE75",-0.137327251462608,15.3712853573712,-0.745872580017293,0.471041835629489,0.812938671107895,-6.29827541677024 +"P52029",-0.14343101421743,18.3054273839494,-0.745766876699604,0.471103213963546,0.812938671107895,-6.298355622968 +"Q7KML2",0.228542074791969,13.4733513888034,0.744806371335361,0.471661176929561,0.812938671107895,-6.29908397001951 +"Q4V5H1",0.069699292135045,15.0468289226551,0.744102402294499,0.472070379654912,0.812938671107895,-6.2996172476915 +"Q9VRY5",0.0496349330777619,16.8120501385998,0.74350780770431,0.472416178607831,0.812938671107895,-6.30006731565446 +"Q7KQM6",0.0510462754449499,15.1493371541478,0.742930450093921,0.472752104900874,0.812938671107895,-6.30050402496437 +"Q9VWD9",0.0376517362031734,19.4185133196218,0.740183158243747,0.474352621556042,0.813230463005527,-6.30257785151432 +"P40304",-0.0568118610269401,18.8584061171042,-0.73991001798081,0.474511932505659,0.813230463005527,-6.30278365466385 +"P83967",0.159427360869579,17.3667822465648,0.739801801238091,0.47457505991795,0.813230463005527,-6.30286517377351 +"Q9W199",-0.0520674776493557,16.0163636898348,-0.739292915335579,0.474871984992436,0.813230463005527,-6.30324837012133 +"Q9VX02",-0.0556897026716143,17.2321042169567,-0.738310633771499,0.475445455374759,0.813377455964203,-6.30398736296918 +"P48604",0.0428505175004403,20.046166605432,0.73609953662028,0.476737907044944,0.813690661268691,-6.30564756479227 +"Q8IQW5",-0.0507207878168821,21.8915066377361,-0.735996479049532,0.476798200606694,0.813690661268691,-6.30572483548783 +"Q9V6U9",-0.0355220154320968,21.8539672104388,-0.735494403699468,0.477092006427326,0.813690661268691,-6.30610114220962 +"Q9V9Q4",0.0403123807936652,19.0396890741105,0.733553765070686,0.478228694438914,0.814796182149243,-6.307553466514 +"Q95RB2",-0.06965669487575,24.2492040050962,-0.731257169140883,0.479576050877576,0.815434056328939,-6.30926768339952 +"Q9VME3",0.0709172599236236,15.7954597046461,0.731249045669561,0.479580820898495,0.815434056328939,-6.30927373823547 +"Q9VEX6",0.0468052454759196,20.7234207725951,0.728544139680293,0.481170751576556,0.817195718939952,-6.31128644690956 +"Q9VPC2",-0.100287953856951,14.7019638223955,-0.72782032843587,0.481596757624684,0.817195718939952,-6.31182388296722 +"Q7JZK1",0.0453300120304974,21.4626792493718,0.726619440691877,0.482304066535332,0.817428897017712,-6.31271448192991 +"Q9VVG0",-0.0446292034361448,18.1425576342486,-0.72531759934379,0.483071561398634,0.817428897017712,-6.31367844018635 +"Q9W2M4",0.0424754298398966,22.6239306466197,0.723312353877275,0.48425522053073,0.817428897017712,-6.31516016488824 +"Q9VTF9",0.0673207677659349,17.4287630436271,0.722818807133898,0.484546826217409,0.817428897017712,-6.31552428655466 +"Q9VG69",-0.0397332123448031,19.8844355662625,-0.722178433858268,0.484925343823846,0.817428897017712,-6.31599639479738 +"O46067",0.0581682620635497,19.688319280283,0.721816594806372,0.485139303480637,0.817428897017712,-6.31626298840103 +"Q9VFU7",-0.0755307233041957,14.8339767237693,-0.721664423576508,0.485229301480394,0.817428897017712,-6.3163750678983 +"Q9VH72",-0.0758626869399137,18.4461129259226,-0.72094538533527,0.485654698408005,0.817428897017712,-6.31690437418636 +"Q9VAC1",0.0533814579224696,23.4732343682761,0.718656088831332,0.487010619146416,0.81814904322102,-6.31858639748675 +"Q9VLU4",0.0957418999763657,17.1240580807731,0.71856680298809,0.487063549111794,0.81814904322102,-6.31865190012848 +"Q9VVT6",0.0401228069926525,20.440194239183,0.717400099552615,0.487755513009205,0.818487118409812,-6.31950714587806 +"Q9VVU2",0.0728864270901965,20.1210139647749,0.715018155172856,0.489170100914001,0.819267909651547,-6.32124928648308 +"A1ZBA5",-0.0858423031684961,15.7412812765763,-0.714962572546447,0.489203140295528,0.819267909651547,-6.32128987626241 +"Q9VTZ5",-0.0459858562266398,18.0461338279773,-0.713251633817301,0.490220823915563,0.820148780633057,-6.32253789968534 +"Q9W266",-0.0391082732012151,18.32128115661,-0.71221264375574,0.490839457557183,0.820360937079539,-6.32329444777212 +"Q9VQF7",-0.0874776860521571,18.7388924675807,-0.709155610162488,0.492662437464701,0.822583529220342,-6.32551461315198 +"Q9U616",-0.0599030940914425,19.6651499850331,-0.707051886413717,0.493919332448907,0.823406688746653,-6.3270373751846 +"Q9I7K0",0.0669574684111094,16.0304968480356,0.706019837860739,0.494536655579408,0.823406688746653,-6.32778290388837 +"Q9VRD9",0.148979552670898,16.1385691848898,0.705853170570116,0.494636392160759,0.823406688746653,-6.32790320730251 +"Q9V9U4",0.0478114874319662,15.909964501166,0.702723082814505,0.496511761988051,0.824984403985941,-6.33015773892743 +"Q9VXZ0",0.0497502099092628,19.5950930859692,0.702620417337669,0.496573346284103,0.824984403985941,-6.33023153141968 +"Q9VTC3",-0.103673140408148,17.0848272436251,-0.700554709506246,0.49781345366435,0.82567337369367,-6.33171419763024 +"Q9V400",-0.107902122232327,14.2324650022531,-0.699792371123089,0.498271582125297,0.82567337369367,-6.33226035884913 +"P40301",-0.0476346291393561,17.9360264328529,-0.697788243296706,0.499477182455237,0.82567337369367,-6.33369357802062 +"Q9VS44",0.0539583143601696,15.0959712484437,0.697683146453208,0.499540452977303,0.82567337369367,-6.33376863248226 +"Q9VEN3",0.0407243893166189,17.4948309500258,0.696993838345898,0.499955551052169,0.82567337369367,-6.33426064235993 +"Q7K2D2",0.0498697920165618,20.3608053691101,0.695275205272119,0.500991410328509,0.82567337369367,-6.33548541759613 +"Q9VH39",0.122383839450176,18.3511293452864,0.695218796371189,0.501025431181467,0.82567337369367,-6.33552557017427 +"P36951",-0.0535558103781213,20.3603421863304,-0.69469050956185,0.50134411459879,0.82567337369367,-6.33590146663733 +"A1Z9A8",-0.0488803666851325,16.8681057578212,-0.694526424500495,0.501443122033386,0.82567337369367,-6.33601816621227 +"Q7K2W6",0.136014333954044,16.795532809579,0.690358836140528,0.503961753596269,0.828260488980934,-6.33897374117776 +"Q9VMB9",-0.0415443759684635,22.4720875263389,-0.690283367920954,0.504007431843914,0.828260488980934,-6.33902711146029 +"Q9W078",0.0461437123925101,19.4132516286029,0.687609477609269,0.505627446694301,0.830104902643793,-6.34091460208247 +"Q9NCC3",0.0633200400207805,17.3168670639866,0.686728721658906,0.50616174770794,0.830164990341046,-6.34153485295328 +"Q9VSL2",0.0491340677253085,20.4029066514727,0.68442440565164,0.507561233673167,0.831642571480199,-6.34315415810525 +"Q9W404",0.0744647612161664,15.939651094516,0.681876238806535,0.509111506703871,0.832817682350524,-6.34493900214395 +"Q0E980",0.0478445483668004,18.3729608227334,0.681604492858937,0.509276999998522,0.832817682350524,-6.34512898350322 +"Q9W415",-0.0907111042748738,16.7397118006132,-0.678553045082111,0.511137531589478,0.834186646276848,-6.3472575121187 +"Q9VN88",0.0576003401272231,16.9694863985267,0.677980907072615,0.511486825465954,0.834186646276848,-6.34765562745707 +"Q9V3Y4",-0.101128025834662,14.0534009935095,-0.677771882082287,0.511614471907203,0.834186646276848,-6.34780099792422 +"Q9VWX8",-0.0346261292563526,20.5116402592238,-0.674629108250789,0.513535966252039,0.836501945027736,-6.34998172734818 +"P29746",0.0672799083305442,21.2437329093553,0.673416837528238,0.514278290751675,0.836893842901263,-6.35082041209439 +"Q9VB10",-0.0396482024048233,21.011813020246,-0.672478190944343,0.514853499567991,0.83701329169533,-6.35146884123052 +"Q9V9S0",0.0668754077241438,17.0750306757614,0.671047810362331,0.515730777285642,0.837623112475609,-6.35245536408616 +"Q9VUH8",0.0637864258839791,15.4930412075164,0.668893018428006,0.517054014285038,0.838110964863436,-6.3539378528297 +"Q9V3E3",0.0761879422746379,15.1153796384448,0.668408979561714,0.517351532931801,0.838110964863436,-6.35427026509808 +"Q9VP55",0.0478127642731483,17.1800296300103,0.668104809196718,0.517538545449244,0.838110964863436,-6.3544790396684 +"O76454",0.0546162078638623,17.966525120314,0.663343947631804,0.520470839700318,0.840520112405993,-6.35773534359277 +"Q9VA32",0.058490587995049,17.2990166996957,0.662749719293151,0.520837517854038,0.840520112405993,-6.35814027120001 +"Q9VMQ5",0.0928557751700314,13.6536482014437,0.662628327748035,0.520912443080614,0.840520112405993,-6.35822295035034 +"Q8SZ63",0.111821964713831,14.0076724124627,0.662418700033312,0.521041844261269,0.840520112405993,-6.35836569376791 +"Q9W0S7",0.0544064400354465,18.0308088817972,0.660766194359837,0.522062579354779,0.841113127672725,-6.35948948659648 +"Q9VA76",0.0413518839603704,15.2254334407604,0.660041515001588,0.522510574846004,0.841113127672725,-6.35998148963275 +"Q9VAC4",-0.0313580491805858,19.4208061678473,-0.6593759074156,0.522922250237779,0.841113127672725,-6.36043294782212 +"Q7JR58",0.0530453751721289,22.7606185708049,0.655756929066797,0.525163885745464,0.842362424456293,-6.36288020416012 +"Q9VIW6",-0.0843675268513824,15.0687556918158,-0.655285138877078,0.525456529760117,0.842362424456293,-6.36319832438389 +"Q9VW34",0.0599188677600715,18.5666504117758,0.654901564028157,0.525694525139902,0.842362424456293,-6.36345680638081 +"Q9W3N6",-0.0382594575061841,16.1697452197591,-0.653954074082601,0.526282679761526,0.842362424456293,-6.36409469723241 +"Q9VCK6",-0.0999830197650962,16.6695411338012,-0.653369938887827,0.526645472402363,0.842362424456293,-6.36448753623835 +"P80455",-0.0597297091451203,20.5171656308944,-0.653235448166158,0.526729022007143,0.842362424456293,-6.36457793709876 +"Q9VXH4",0.0398631126853193,17.1751866391401,0.648537767686065,0.529652186599689,0.84514562220455,-6.3677247713321 +"Q7K2N0",0.0587234502196026,15.3862683639639,0.648115165457052,0.529915613313246,0.84514562220455,-6.36800682836015 +"Q23983",-0.0404881167996187,22.2701600137532,-0.647996813405292,0.529989400974796,0.84514562220455,-6.36808578942781 +"Q9W5W7",0.0449113066498548,15.0692077280457,0.646485052969679,0.530932444126364,0.845840799238562,-6.36909321661567 +"Q8I099",0.0342689460089218,16.9483475042062,0.643753680128091,0.532638741135575,0.846908121162731,-6.3709078535791 +"Q9VKV9",-0.0466677710620296,15.6536213625366,-0.643123615746609,0.533032792189499,0.846908121162731,-6.37132543676143 +"Q9VZG2",0.0907246032381579,21.8935912880701,0.642949872554214,0.533141483113672,0.846908121162731,-6.37144052054698 +"Q9VXB0",0.0652120681772637,20.2796196231322,0.642163867395743,0.533633354521601,0.846908121162731,-6.37196079311414 +"P61851",0.0622201808076746,23.492583664997,0.640414118775334,0.534729260006473,0.847618027592915,-6.37311686586246 +"P12370",-0.0454988172594462,20.8859332055472,-0.63982745031568,0.535096992239412,0.847618027592915,-6.37350382689714 +"E1JJH5",-0.0275791936591432,21.2446550586506,-0.637751781017071,0.536399215670646,0.848874660093584,-6.37487027509557 +"Q9VD26",0.0536016446056777,16.2038281291666,0.635629651471083,0.537732461229587,0.849692043842741,-6.3762630445219 +"Q961D9",-0.153117296806277,12.3686929291815,-0.63530827870779,0.537934531353678,0.849692043842741,-6.37647358775904 +"Q9VLM8",0.0944359206616667,16.857708132054,0.633321893232899,0.539184476603813,0.850860649929196,-6.37777274605851 +"Q9VLG9",0.0651628500405028,15.7505567205001,0.630496534981273,0.540965200035142,0.851280756891592,-6.37961410056421 +"Q9VSS2",0.0401039675712642,16.3594375821197,0.630214161389153,0.541143353803954,0.851280756891592,-6.37979770929102 +"A0A6H2EG56",0.0587343237640852,20.8933024421762,0.629952179255641,0.541308672115519,0.851280756891592,-6.3799679903687 +"Q9VPX0",-0.165622672861632,14.4855596581959,-0.629661494613455,0.541492136128285,0.851280756891592,-6.3801568501683 +"O62621",-0.0824348525500049,13.1341551231951,-0.625592517738689,0.544063952551394,0.854518524346258,-6.38279197346998 +"Q9VY41",-0.0803285562322102,16.5138348396994,-0.623812967255511,0.545190895511029,0.85500073085267,-6.38393943245997 +"Q9VZS3",0.0630803075109334,18.3704221399494,0.623489075243207,0.545396149656619,0.85500073085267,-6.38414795128859 +"Q9VZU4",0.040474917692805,21.3322122086459,0.620851993444355,0.547068921861012,0.856664118630236,-6.38584192445045 +"Q9VHE4",-0.0306418491268001,17.9048919670998,-0.620197734920276,0.547484382769683,0.856664118630236,-6.3862611617468 +"Q9VZ24",-0.0922775200742123,21.7967976361841,-0.617860047577904,0.54897028806664,0.857245663599868,-6.38775574178862 +"M9PFN0",-0.0434058667362009,16.6328478275379,-0.6178233235207,0.548993649054632,0.857245663599868,-6.3877791789828 +"P42281",0.0391384084295581,21.6749046324742,0.617188047837578,0.549397850352673,0.857245663599868,-6.38818440445773 +"Q9VKK1",-0.0744162695109516,14.5359172181919,-0.615087086062344,0.550735799472703,0.857779591113587,-6.38952178062736 +"Q94516",-0.0347076788378686,23.3227838557153,-0.615035693632779,0.550768550409264,0.857779591113587,-6.38955444135264 +"A1ZB71",-0.0473115806513782,19.1346946983751,-0.611454398511164,0.553053491271152,0.858371412163634,-6.39182413467412 +"Q9V434",0.0615686013357237,15.0237322072161,0.60924738006163,0.554464245195246,0.858371412163634,-6.39321669325532 +"Q9VNA3",0.0431678530088355,18.5934543400374,0.608529549849112,0.554923522725508,0.858371412163634,-6.39366860679546 +"P07668",-0.1093316790193,14.5890200073901,-0.608489851973084,0.554948928140502,0.858371412163634,-6.39369358425236 +"Q9VVM1",0.0716883976410863,15.5843424207665,0.608375326732383,0.555022224383942,0.858371412163634,-6.39376563370676 +"Q9VH37",0.0715938000967409,16.6147464393384,0.608238984096405,0.555109490797377,0.858371412163634,-6.39385139225874 +"Q7K5M0",0.0947828487273927,16.5627123375304,0.608079564249062,0.555211537508204,0.858371412163634,-6.39395164341795 +"Q9VSY0",-0.0648033147643332,22.4982764593045,-0.60799536322728,0.55526543988283,0.858371412163634,-6.39400458330663 +"Q9VCC0",0.0572612312829754,17.3923809452537,0.606794125360461,0.556034744561925,0.858764772156751,-6.39475909349813 +"Q9W4A0",-0.0301808355491655,17.0845714433184,-0.605813254467805,0.556663359062887,0.858940317221921,-6.39537415362719 +"Q9VCF8",-0.0333741858053003,16.930474305896,-0.602614139924483,0.558716324244113,0.861311302069483,-6.39737370323517 +"Q9W1X8",0.0357128497591006,16.1474260028393,0.601637808339858,0.559343697602826,0.861482260019864,-6.39798196790366 +"Q8SX78",0.0370608302732123,15.9562909401366,0.599433664958665,0.560761470480421,0.862704959440797,-6.39935177512443 +"A8JNP2",0.0451319666262577,21.0900906176038,0.598796022173305,0.561171991003157,0.862704959440797,-6.39974717206559 +"Q7K188",0.0569180465935801,21.9173575221991,0.596639115182185,0.562561854060023,0.864045278611527,-6.40108172847951 +"Q9V429",0.0313170022518676,22.3084886446758,0.595835095877306,0.563080429837661,0.864046142565978,-6.40157804920967 +"Q9VWD5",-0.0709985296917939,14.5196227166777,-0.594494230015226,0.563945843898077,0.86406992487442,-6.4024043689524 +"A8Y535",-0.0539823664592234,21.9712064615473,-0.594205974499976,0.564131983326285,0.86406992487442,-6.40258178079122 +"Q9VI64",-0.0458390232063017,20.8689443117872,-0.592862234019106,0.565000140495611,0.864605719584109,-6.40340774393309 +"Q7KVQ0",0.0554365018944765,15.8413710186382,0.591570661683807,0.565835281731807,0.864939848324238,-6.40419998690152 +"Q9VG33",0.0636389100204831,19.9059274132444,0.590921044828804,0.566255584154717,0.864939848324238,-6.40459784520209 +"Q9VA41",-0.0814466106087828,17.4751022523942,-0.589241534605283,0.567343017734326,0.865808008765651,-6.40562456042021 +"Q9W077",-0.0356702872126426,20.7828016258906,-0.587492272724207,0.568476822602371,0.866503173902969,-6.40669099856213 +"O61443",0.0526958118843979,16.6316753587641,0.585281457427575,0.569911550534379,0.866503173902969,-6.40803456165407 +"Q9VD30",-0.0501056648320066,21.4083870034755,-0.585015223634411,0.570084457803832,0.866503173902969,-6.40819603690378 +"Q9VUM1",-0.0438405110582192,16.5133747607993,-0.584005531486547,0.570740467521722,0.866503173902969,-6.40880780453293 +"Q9VF39",0.0693904434522921,15.8724826669888,0.581765673472448,0.572197190734742,0.866503173902969,-6.41016137694477 +"Q960W6",-0.12414778382043,14.1550221101404,-0.581623879190118,0.572289476271504,0.866503173902969,-6.41024690026769 +"O46098",0.0365954266311022,17.9529786159935,0.580285994939252,0.573160622179344,0.866503173902969,-6.41105288071895 +"Q7PLT4",0.0826911667345929,15.8514393477679,0.57898651578186,0.57400744593879,0.866503173902969,-6.41183405302681 +"Q0KI15",-0.0454007074298737,15.5979907923235,-0.578985946542522,0.574007817039306,0.866503173902969,-6.41183439485974 +"P22979",0.0569946433202233,19.6027700921493,0.578541066702746,0.574297884213772,0.866503173902969,-6.41210145217482 +"Q8T0N5",0.0546246244872073,18.6043919225789,0.578437203605378,0.574365615611435,0.866503173902969,-6.41216377242984 +"Q7JVI6",0.0429097571134562,17.5530655400203,0.578309951166458,0.574448605575969,0.866503173902969,-6.41224011247482 +"Q9V3W7",-0.0645233077024088,17.8949934089965,-0.578151632875073,0.574551864710242,0.866503173902969,-6.41233506717589 +"Q9V3G1",0.0552951160207016,21.163539481644,0.575214827390767,0.576469133090217,0.867157582024415,-6.41409203931759 +"Q9VDC6",-0.0442736973507252,17.0614399598261,-0.575108690406138,0.576538487978821,0.867157582024415,-6.41415537904153 +"Q9VXI6",-0.036243566043936,21.9778291703426,-0.575098084313111,0.576545418744051,0.867157582024415,-6.41416170787024 +"Q9W0D3",0.0786433932549446,12.8805767096222,0.572633170877651,0.578157377924571,0.867177651925283,-6.41562957979911 +"Q9VSD6",-0.101724793995066,16.4344497790965,-0.572364019461155,0.578333538668119,0.867177651925283,-6.41578950147446 +"Q9VEJ3",-0.0693657213127317,20.0319381911855,-0.571657602010608,0.578796028456823,0.867177651925283,-6.41620889645526 +"Q9VKM3",0.0496520053190181,21.7459298273914,0.571285374395262,0.57903980450102,0.867177651925283,-6.41642968895142 +"P55841",0.0369137328712199,20.6904475190117,0.57110459923796,0.57915821597408,0.867177651925283,-6.41653686959657 +"Q9VS97",0.0492331533620902,15.119787367858,0.569082636193741,0.580483524686923,0.867214209712828,-6.41773350168523 +"Q9VVW8",0.0561203085353821,15.7310823585567,0.569016604687942,0.580526832714577,0.867214209712828,-6.41777251277675 +"A1Z933",-0.0661023674185355,15.7360619456813,-0.568688016079614,0.580742369453974,0.867214209712828,-6.41796657784826 +"Q9VAD4",-0.0990405737591207,13.4195673481856,-0.567689175097198,0.581397818002227,0.86741642256504,-6.41855584612803 +"Q9VL00",0.0943922985678469,15.9552523202847,0.566372593574226,0.582262371958441,0.867929969997033,-6.41933107318759 +"P91927",0.0933534378263126,19.1369009920535,0.563410611440129,0.584209898607571,0.87005545614056,-6.42106893229472 +"Q9VY91",0.0933403193473232,16.825751517397,0.560690749408469,0.586001263628128,0.87166733727022,-6.42265715669587 +"Q9VK12",0.0470219015275148,22.2301964758484,0.560180905259534,0.586337381545076,0.87166733727022,-6.42295406495125 +"Q95SI7",0.0316953021488651,21.1520530834484,0.558931838782751,0.587161266065107,0.872114863576668,-6.42368038164454 +"Q9VFC2",-0.0346438379994254,19.9563556833067,-0.556889334134822,0.588509815672244,0.872351456005299,-6.4248647714309 +"A0AQH0",0.060536129244479,16.953696364868,0.556813168581629,0.588560134931967,0.872351456005299,-6.42490885837975 +"Q9VV76",0.0520334079963511,16.2930998708607,0.556314662409375,0.588889532051539,0.872351456005299,-6.42519726821995 +"Q9VHN6",-0.0447462537055507,15.1462831482813,-0.553771652498574,0.590571378205454,0.873876531589773,-6.42666472040817 +"P17210",0.0313971721455459,20.7789626067063,0.552551358029231,0.591379325205569,0.873876531589773,-6.42736663721899 +"Q7KLX3",0.0317510739590183,19.3145152010274,0.552383104421919,0.591490769883006,0.873876531589773,-6.42746330224453 +"Q9VXE8",-0.0509536883563264,16.1686287792403,-0.550209843679101,0.592931239890851,0.874836622998378,-6.42870937948276 +"A8DYK6",0.063706529782193,16.6311405210582,0.549184114402075,0.593611743843695,0.874836622998378,-6.42929588419651 +"Q9VMY9",0.0872287176656954,15.0465125895617,0.548730361300712,0.593912908958152,0.874836622998378,-6.42955500642515 +"P45437",-0.0374791752000636,16.2741747660964,-0.547272655266786,0.594880955908958,0.874836622998378,-6.430386077952 +"Q9VJ28",0.0302115826275156,19.0154155706828,0.547010045766964,0.595055439213831,0.874836622998378,-6.43053557505662 +"Q7K0S5",-0.035302674688829,18.2754597164465,-0.546660824710435,0.595287510253693,0.874836622998378,-6.4307342726951 +"Q9VXQ5",0.0293939832394905,20.3834643606198,0.545080062456426,0.596338576123423,0.875609810716434,-6.43163218134804 +"Q9V3F3",-0.0619782157604316,14.6457686399797,-0.544229956599103,0.596904218243137,0.87566951277885,-6.43211404186819 +"Q95SH0",-0.348654087253806,13.7906927535107,-0.542324522784466,0.598173061277079,0.876534386117794,-6.43319149810335 +"Q9VWA8",-0.0761036077855923,14.4711027153225,-0.5406266381092,0.599304868752438,0.876534386117794,-6.43414857371734 +"Q9VMM6",0.0713360957025806,18.3183079440774,0.54002862952421,0.599703763217832,0.876534386117794,-6.4344849856722 +"Q9I7T7",0.0643996423863911,14.5539785610335,0.539206850331025,0.600252144246723,0.876534386117794,-6.43494670449043 +"Q0E8X8",-0.158353406615699,19.8560905526376,-0.538962635169585,0.600415161071376,0.876534386117794,-6.43508378885743 +"Q9VJ19",-0.0323087175456465,19.1472242515217,-0.538615729089421,0.600646764587913,0.876534386117794,-6.43527841503935 +"Q86BL4",-0.0473079613056111,14.9543943203995,-0.537172076299337,0.601611077904525,0.876881402895634,-6.43608707661484 +"P40796",0.0992339667736175,18.2808686420818,0.536605787827918,0.601989557223703,0.876881402895634,-6.43640372045572 +"Q9VZY0",0.0834168772720627,17.1882650710432,0.535281411822357,0.602875181558218,0.876881402895634,-6.43714301610924 +"Q9VBI2",0.0261174049344284,22.0310321221807,0.535113682476269,0.602987391559528,0.876881402895634,-6.43723652256543 +"Q9W258",0.0398941952591194,19.3271952676518,0.532213600404022,0.604929219583674,0.878369754836765,-6.4388488719379 +"Q95RA9",0.0249855658592679,20.4499272444701,0.531387484547918,0.605482951232428,0.878369754836765,-6.43930664182335 +"Q9W5W8",0.0315057480167376,20.7540783932538,0.531226840416085,0.605590658310719,0.878369754836765,-6.43939557998634 +"P00334",-0.0367118046908992,25.154576789282,-0.530245187851565,0.606249039011683,0.878560727255854,-6.43993850175001 +"Q8SYQ8",0.0981780550098588,15.9160665952721,0.527269774790356,0.608246829967201,0.88060134806156,-6.44157827975272 +"D0UGE6",-0.064404819205242,15.1940970284651,-0.525924562522759,0.609151144985016,0.88060134806156,-6.44231675881549 +"A1ZBU8",0.0764094516694129,20.7168144287995,0.524501404131909,0.610108599484333,0.88060134806156,-6.4430960745277 +"A1Z6L9",-0.0639424410367369,15.3924977604202,-0.522440752416168,0.611496285117535,0.88060134806156,-6.44422091814683 +"Q9W0H6",0.0331968811138879,18.1460025808286,0.522298714191287,0.61159199519617,0.88060134806156,-6.44429829701558 +"Q9VLR5",0.0632961410325308,16.7286356519268,0.52139733452824,0.612199550682073,0.88060134806156,-6.44478887928579 +"O15943",-0.0435196669078159,20.1816847135053,-0.520919271103243,0.61252190225946,0.88060134806156,-6.44504874133837 +"Q9W2D6",0.0392242532402776,19.5720527581227,0.520683684250621,0.61268078662844,0.88060134806156,-6.44517671636389 +"A0A0B4KI23",-0.0407012814970926,20.4662016234098,-0.520439206621327,0.612845689022537,0.88060134806156,-6.44530946274584 +"Q9VYS5",0.0733018582156166,14.2947112787365,0.519796598319961,0.613279240568098,0.88060134806156,-6.44565810291916 +"Q8I937",0.0990639268070979,13.9565745248004,0.519522094531071,0.613464488277897,0.88060134806156,-6.44580690695118 +"Q9VAN7",-0.0332508472831101,23.616679939483,-0.518535122830184,0.614130773948296,0.880799768654994,-6.44634130980524 +"Q9V3F8",0.0398075435980765,18.5038624549574,0.517210225399605,0.615025757001895,0.881325569311994,-6.44705716316127 +"Q59E14",0.0529834722308298,14.6411950648286,0.515380106032467,0.616263096109829,0.88234063889373,-6.44804312238703 +"Q95WY3",0.048667337458431,17.2605756653011,0.512553948494857,0.618176293165797,0.88432080360253,-6.44955914345747 +"Q9VQ29",-0.0350952227628909,22.1467414829212,-0.50929938058882,0.620383162494883,0.884990732165957,-6.45129512566079 +"Q6IGN6",-0.070785838366314,16.7544504947131,-0.508633053687274,0.620835469012723,0.884990732165957,-6.45164924254401 +"Q9VFM0",-0.0424833332568948,14.3604009765098,-0.508049031547523,0.621232040796261,0.884990732165957,-6.45195925509077 +"Q9VNF3",-0.0248371334693758,19.1185376196897,-0.508045037526024,0.621234753310168,0.884990732165957,-6.45196137404023 +"Q9VBP6",-0.025858982314265,23.068866651639,-0.507360244596067,0.621699912597963,0.884990732165957,-6.45232444241064 +"Q9W3E2",-0.0901648689738401,17.4391393011254,-0.507171692728007,0.621828020442746,0.884990732165957,-6.45242432811579 +"O18404",0.0323966153527806,22.9737753458379,0.504575306429522,0.623593408726894,0.886325007394594,-6.4537961641399 +"A1Z7H7",0.0342570946469785,17.9034921351046,0.504230161386401,0.623828272590679,0.886325007394594,-6.45397801997896 +"Q9VJZ1",-0.0497964117700018,15.5246889940724,-0.503229139249247,0.624509692990747,0.886538015241332,-6.45450478322776 +"Q9VNI4",0.0428504134845795,16.4378683361288,0.50125551881855,0.625854255623715,0.887018208239075,-6.45554042306254 +"Q9V3G7",-0.0421742928915378,18.1703801513103,-0.500614172828611,0.626291488878414,0.887018208239075,-6.4558761266061 +"P22769",0.0394846167950433,20.1289879303616,0.500191534064362,0.626579701731586,0.887018208239075,-6.4560971264177 +"Q9VW40",-0.0404036240027263,14.67688092806,-0.499611871486054,0.62697510042798,0.887018208239075,-6.45639994461276 +"Q9VHF9",-0.0627998701982371,17.0516791975925,-0.49846685160685,0.627756498341648,0.887283518895387,-6.45699712158761 +"Q9VNC1",-0.0728095778534819,15.7040145032367,-0.497237707910118,0.628595833937287,0.887283518895387,-6.45763671491589 +"Q8IN49",-0.0336247467554678,17.0833028997499,-0.496999639831301,0.628758464828745,0.887283518895387,-6.45776042073161 +"Q9VW00",-0.0462531568672198,15.7203859472039,-0.494190872636723,0.630678757553595,0.889241054606422,-6.45921564488868 +"Q9VNA5",0.0358013796383823,17.3965250060971,0.493025251768454,0.631476502383529,0.889613856398418,-6.45981723723943 +"Q9VCW2",0.0316341851966584,15.4803121995799,0.492213967596291,0.632032029572604,0.889645084664222,-6.46023514937793 +"Q7K2E1",0.0433887082440769,17.5881638735955,0.487620373475693,0.635181947959785,0.893325033049681,-6.46258899308872 +"Q9VXK6",0.0627723804385667,17.6907313958114,0.484825768580942,0.637101952347324,0.8952704772665,-6.46401065831297 +"A0A0B4KGY6",0.04921045887383,21.8071065702349,0.481327468850128,0.639509335108755,0.897896945253707,-6.46577926744851 +"Q9VH19",-0.0404814657751587,13.9949357515113,-0.476235514200049,0.643021133923461,0.900902718199412,-6.46833161496624 +"Q9VIK6",0.0317500044181429,16.5070205496729,0.474224113576097,0.644410860198537,0.900902718199412,-6.46933265402185 +"R9PY51",0.0301848128873807,21.4184165736271,0.473881709493276,0.644647576765956,0.900902718199412,-6.46950265743197 +"Q7JR49",0.0402507413207829,18.8495650475253,0.472292012609436,0.645747129664074,0.900902718199412,-6.47029039644175 +"Q9VMQ7",0.0529892350714807,15.923568019717,0.472096708697935,0.645882277277157,0.900902718199412,-6.47038699962593 +"Q9V3H2",0.0504817773355519,18.4838241430999,0.471358391678748,0.646393302663331,0.900902718199412,-6.47075184665561 +"Q9VJD0",-0.0452272710642205,16.2045816271486,-0.470212368982129,0.647186897268495,0.900902718199412,-6.47131707915597 +"Q9VHX4",0.0303143868270155,22.7801182414754,0.468129186699224,0.648630622865034,0.900902718199412,-6.47234114453043 +"Q9VV60",0.0405872577784976,20.03074628468,0.467961205612979,0.648747105848585,0.900902718199412,-6.47242353147001 +"E1JIY8",0.0232563379763882,16.3378180434282,0.467681357955217,0.648941182092795,0.900902718199412,-6.47256072067153 +"P25007",0.027048206955758,23.809963320718,0.466522987119515,0.64974480857159,0.900902718199412,-6.47312774763034 +"Q9V3Z2",-0.0383024324063985,16.2358448370358,-0.4651075512088,0.650727405294798,0.900902718199412,-6.47381877373698 +"Q9VPX6",-0.0703536766207797,21.594390052758,-0.464751286159483,0.650974833734742,0.900902718199412,-6.47399238688257 +"Q9VAA6",-0.063399376727201,16.0793317822188,-0.46367364549732,0.651723528676472,0.900902718199412,-6.47451675807768 +"Q9VAP3",0.055504109721376,16.5099675027921,0.462498390369134,0.65254049740427,0.900902718199412,-6.47508729294895 +"Q9VDV2",-0.0670053766073817,14.5513657554932,-0.462149331924733,0.652783233911803,0.900902718199412,-6.47525647725059 +"Q9VFB2",0.0348075795137603,16.5180519307174,0.461060868485343,0.653540423928918,0.900902718199412,-6.47578325287903 +"Q9V9T9",-0.0470346831560953,13.5195727942761,-0.459934379321443,0.654324494287322,0.900902718199412,-6.4763271729214 +"Q9I7C6",-0.122250807180514,15.5324145521747,-0.459834545479832,0.654394002607171,0.900902718199412,-6.4763753154579 +"Q9VFV9",0.0317566478133351,21.3254608745638,0.459533829804337,0.65460339351345,0.900902718199412,-6.47652026778434 +"Q9V535",-0.0456106964776772,18.6172391542276,-0.459144241477459,0.654874713198671,0.900902718199412,-6.47670792319616 +"Q9VUW4",-0.0370605083008222,14.5899577128377,-0.458678012430434,0.655199475711848,0.900902718199412,-6.47693229324823 +"Q9VCB9",0.0346361305400134,16.9354910409389,0.458669234490121,0.655205590899316,0.900902718199412,-6.47693651547718 +"Q95RF6",-0.0533071199414969,17.3561286969442,-0.457611866108629,0.655942403247857,0.900902718199412,-6.47744454541067 +"Q8MT58",-0.0250869288288413,21.670010949519,-0.457339919238618,0.656131967272147,0.900902718199412,-6.47757502423522 +"Q960M4",-0.0298099849781295,23.1310416328802,-0.457044450766083,0.656337955897849,0.900902718199412,-6.47771670396604 +"Q8ING0",-0.0423884545882203,14.6279531894099,-0.456049059906252,0.657032120773828,0.900902718199412,-6.47819335380665 +"Q7JZF5",0.028114516528305,16.926345887847,0.455840859828272,0.657177357807698,0.900902718199412,-6.47829292531021 +"Q9W401",0.038218501734697,24.4066267096067,0.454981306563687,0.657777124338265,0.900902718199412,-6.47870354231567 +"Q8IP97",0.0339339830099092,19.9361585674327,0.454871984154549,0.657853423721153,0.900902718199412,-6.47875571319401 +"Q9VTP4",0.0392189403384116,20.949302198811,0.452456371157118,0.659540386272076,0.901563554911705,-6.47990541092516 +"Q9VIN9",0.028062874622174,16.5325928028348,0.45079080393791,0.660704698011349,0.901563554911705,-6.48069469255959 +"Q95083",-0.0256823499189665,19.9380337188648,-0.450218785235268,0.661104782563111,0.901563554911705,-6.48096511447064 +"Q9VAN0",-0.0228630897688191,20.5052386509913,-0.450043043789429,0.661227722776531,0.901563554911705,-6.48104812979705 +"Q24400",0.0595979586394968,21.4396632298241,0.449978771956979,0.661272686838779,0.901563554911705,-6.48107848220431 +"Q9VJD4",0.0309509253485878,20.7105362153608,0.449367534459551,0.661700373221077,0.901563554911705,-6.48136693058385 +"Q8MKN0",0.030841024677791,16.6762196725178,0.447218936953178,0.663204755710031,0.901563554911705,-6.48237787259948 +"Q6AWN0",-0.0610070802135674,18.3777350153857,-0.44706037390084,0.663315838104049,0.901563554911705,-6.48245229336589 +"Q7JXW8",0.0908720251044208,14.9032286733651,0.446179827294558,0.663932864085941,0.901563554911705,-6.48286511029975 +"Q9W3V3",0.122982107999933,13.2079596076327,0.444558305885983,0.665069792275876,0.901563554911705,-6.4836232561075 +"Q9VYT1",0.048189816852771,14.3020822419576,0.4434351772173,0.66585778731102,0.901563554911705,-6.48414681613858 +"O44226",0.0247194303112224,20.1709234329121,0.442733365543445,0.66635039668021,0.901563554911705,-6.48447332532644 +"Q9VUN9",0.0297174588422351,16.8396367895264,0.442457932034018,0.666543771282966,0.901563554911705,-6.48460133097493 +"Q9VV36",0.032989361187088,22.9198134490515,0.441665679457246,0.667100131501968,0.901563554911705,-6.48496909574545 +"Q24090",-0.0553487793002994,15.880295735066,-0.440897866095387,0.667639528121201,0.901563554911705,-6.48532490870694 +"A1Z6S7",0.0284367992299863,17.5590515506564,0.440853168355988,0.667670934757149,0.901563554911705,-6.48534560371083 +"P55828",-0.0265432568739357,19.964589512763,-0.438344646480295,0.669434595035588,0.901563554911705,-6.48650379919924 +"Q9V998",0.0644012016236584,15.8741355797117,0.438130873129008,0.669584988327685,0.901563554911705,-6.48660220416066 +"Q9VL18",0.0263018771545092,20.878107174647,0.437343317603806,0.670139177498501,0.901563554911705,-6.48696433467714 +"Q7KS11",0.0803675183564714,15.6178476774918,0.437297807349058,0.670171208525927,0.901563554911705,-6.48698524178 +"B7Z107",0.0840295461480984,15.8371310380973,0.434934606263121,0.671835413356524,0.901563554911705,-6.48806799186279 +"Q9W1V3",-0.0372184749828595,16.4365033847756,-0.434697804607895,0.672002274105495,0.901563554911705,-6.48817617501269 +"Q9VH26",0.0707965210887131,18.2317465694375,0.433887291940458,0.672573535778635,0.901563554911705,-6.48854602784614 +"Q9VQX3",0.0514704243627069,15.1613029291368,0.43342947276074,0.67289630883491,0.901563554911705,-6.48875464489162 +"P49028",-0.0386795167657183,16.3969913274583,-0.433402411364356,0.672915389889997,0.901563554911705,-6.48876696944756 +"Q7JVM1",-0.0671450999384078,15.8704487617972,-0.432908058394624,0.673264001517554,0.901563554911705,-6.48899198143126 +"Q94533",0.0473740739188049,15.2443655031398,0.432277955807954,0.673708457940215,0.901563554911705,-6.48927842199499 +"Q9I7K6",0.0313109967046934,16.1029995868677,0.432022936382282,0.673888378255032,0.901563554911705,-6.48939423752541 +"Q4V6M1",0.0281657113516545,18.2087207464921,0.431849654870772,0.674010643270322,0.901563554911705,-6.48947289457607 +"Q9VTB3",-0.0254300271135364,19.6615265647393,-0.430499998774167,0.674963276976889,0.90165473666398,-6.49008449483529 +"Q9U6R9",0.0254612000349965,20.5370590310835,0.42948226480272,0.675682020963063,0.90165473666398,-6.4905444593856 +"Q9W2X6",-0.0273067747007012,24.0587455298053,-0.42928547831889,0.675821034353294,0.90165473666398,-6.49063327550385 +"Q9VRJ4",-0.0199348023501251,20.6832409731443,-0.428266679735953,0.676540932454652,0.90165473666398,-6.49109246278471 +"Q9VG00",0.0463833266165405,15.2215285843071,0.424654897650987,0.679095778670428,0.90165473666398,-6.49271184040841 +"Q9VHD2",0.042808554222983,16.6274005406552,0.424624190248806,0.679117518052749,0.90165473666398,-6.49272555147129 +"Q9VZD8",0.0717299611677564,13.6295430519707,0.424311684808278,0.679338774336951,0.90165473666398,-6.49286503268699 +"Q9VF28",0.0422760429732385,17.7657607152709,0.424297381472953,0.679348901962385,0.90165473666398,-6.49287141434625 +"Q9VVS6",-0.0388488600550225,16.5104194602847,-0.423614451263573,0.679832534430696,0.90165473666398,-6.49317587213425 +"Q9VSJ8",0.0490643928467573,15.7067287814493,0.423432519376972,0.679961398916801,0.90165473666398,-6.49325689928649 +"Q9V9M7",0.0407963531713911,18.4925272384014,0.422816567030084,0.680397764152171,0.90165473666398,-6.49353097632865 +"Q9W1L1",0.0635102680342126,15.019427046615,0.422579794559526,0.680565535647452,0.90165473666398,-6.4936362289392 +"Q9VIU3",0.0904254630775618,12.5656175467603,0.419083685275359,0.683044888022971,0.904038011950137,-6.49518371099296 +"Q9VMU0",-0.0346051338817652,21.0714324369799,-0.418028377309833,0.683794052783642,0.904038011950137,-6.49564837499616 +"A1Z6R7",-0.0423127966946293,17.8634526535216,-0.417751889778718,0.683990390336375,0.904038011950137,-6.49576992793341 +"O18413",-0.0221115587317229,19.5114327498004,-0.411495137423883,0.688439872419956,0.907011913900427,-6.49849975821744 +"Q9VXN1",-0.0462803073568203,13.5748049341998,-0.411388911330728,0.688515521636451,0.907011913900427,-6.49854576001489 +"Q9VKU3",0.0358388518451029,15.6182743980102,0.410972481885702,0.688812117254397,0.907011913900427,-6.49872598600512 +"Q9V773",0.0390035816860106,15.5090020211246,0.410958866220694,0.688821815726955,0.907011913900427,-6.49873187572351 +"Q9VEY5",-0.0235488599083027,20.8134840304023,-0.41076587584959,0.688959289515492,0.907011913900427,-6.49881533707678 +"Q9VGG5",0.043003467884029,17.0766306551152,0.409757434422369,0.689677827667599,0.907241811158955,-6.49925083302939 +"P92204",0.0553015455254506,15.8227872069847,0.408676742249871,0.690448199831321,0.907539477792469,-6.4997163778007 +"Q9U1K7",-0.066426360884396,17.4479161245053,-0.407874231094512,0.691020506762121,0.907576539589936,-6.50006131489892 +"Q9W0Z5",0.0377336128929677,16.8066921978833,0.405057818901536,0.693030606218494,0.908500541224132,-6.50126666458005 +"Q9VDF4",0.0217092622567243,18.6677002537498,0.404791898948363,0.693220523195884,0.908500541224132,-6.50138005242537 +"Q8I0J3",0.0560435325118664,15.0509101079194,0.404336282362125,0.693545970327757,0.908500541224132,-6.50157415858379 +"Q9VVA6",0.0286760983154437,19.1613482255758,0.402718761498271,0.694701885603196,0.908500541224132,-6.50226155609922 +"Q9W483",-0.0469693529059647,15.6709905982202,-0.401748543693021,0.69539561225774,0.908500541224132,-6.50267258559179 +"A1ZA22",-0.0771648948217489,13.8073568413692,-0.399641091092437,0.696903485815448,0.908500541224132,-6.50356208314298 +"Q8SWZ6",-0.0353544748063772,13.9301761728174,-0.399610139300292,0.696925641872235,0.908500541224132,-6.50357511317725 +"Q9VKQ2",0.0390554548930879,15.9243312803963,0.399525639645987,0.696986130308469,0.908500541224132,-6.50361068071005 +"Q9VSY6",0.036006372212789,17.8221119518697,0.398721179188041,0.697562106966097,0.908500541224132,-6.50394892766227 +"Q9VDI5",-0.0374139713667443,16.7295901757316,-0.397338659696026,0.698552424941512,0.908500541224132,-6.50452868034096 +"Q7KMM4",-0.0878343690627368,14.4713693567432,-0.397252889806511,0.698613882375602,0.908500541224132,-6.50456458305189 +"O97418",-0.0239321826514605,20.9747162444288,-0.396386627579794,0.699234718650361,0.908500541224132,-6.50492677247675 +"P18432",0.0640704299833459,23.5291666167008,0.395655676244039,0.699758757908878,0.908500541224132,-6.50523178980109 +"Q9VU84",-0.0292045663952578,18.4394117511284,-0.395581206884174,0.699812156196845,0.908500541224132,-6.50526283426607 +"Q9U5L1",0.0192254295544885,17.6721881933998,0.395467069020515,0.69989400208214,0.908500541224132,-6.50531040454054 +"Q9VRP4",-0.0499252426529164,14.5092918594909,-0.392866543941826,0.701759857681219,0.909573544710651,-6.50639063280111 +"Q8SWS3",0.0349903194958507,16.3554737081065,0.39279496747943,0.701811242231779,0.909573544710651,-6.50642026685102 +"P16620",-0.0489265104136489,17.3794849910667,-0.389842324986936,0.703932286062711,0.910933743205794,-6.50763814159571 +"Q9VG76",0.0372747336987835,15.7631327896069,0.389020253391732,0.704523292633512,0.910933743205794,-6.50797563007801 +"Q9VMH9",-0.0225226629701538,20.0959659142772,-0.387700788507972,0.705472311391904,0.910933743205794,-6.50851586629051 +"Q9V3Y2",0.0254418439976547,17.8518525801676,0.386378561981264,0.706423839889977,0.910933743205794,-6.50905544136736 +"A1ZA83",-0.028646663865425,17.062276036172,-0.385911124468795,0.70676035220882,0.910933743205794,-6.50924576433388 +"B7YZT2",-0.0296378884347135,18.3569559778157,-0.384777984747469,0.707576379968411,0.910933743205794,-6.50970620538992 +"Q7JWF1",0.0222150206575655,20.7102911435609,0.38437417379189,0.707867275910931,0.910933743205794,-6.50986997174894 +"Q9VIG0",0.0346647576309156,17.3440999918206,0.384029331581418,0.708115730572158,0.910933743205794,-6.51000969068247 +"Q9VQE0",0.0298444722692217,17.5516897164665,0.383641271492174,0.708395365485928,0.910933743205794,-6.51016677409195 +"Q9W136",-0.037880274562113,18.1475102039402,-0.382144570580432,0.709474302389166,0.910933743205794,-6.51077117737648 +"Q6IDF5",0.0370389418712662,19.560033426497,0.380706350186034,0.710511707238058,0.910933743205794,-6.51134979695465 +"O77430",-0.0196341966374547,19.544879988338,-0.378730733887834,0.711937737340828,0.910933743205794,-6.51214115466054 +"Q9VKC7",0.0425349873747738,13.8749796153627,0.378288932170049,0.712256793783272,0.910933743205794,-6.51231757498679 +"Q9VAM6",0.0207345707175044,21.9887978165628,0.378124187899062,0.712375782018388,0.910933743205794,-6.5123833093328 +"Q9VJZ4",0.0290844122998344,21.2250336044934,0.378094987544391,0.712396873104887,0.910933743205794,-6.51239495760827 +"Q9V6B9",-0.0451218138001188,15.8320938491784,-0.37709552975093,0.713118921023696,0.910933743205794,-6.51279312151835 +"Q7K3W2",-0.0170814773266486,17.6533582755945,-0.376563730529164,0.71350323319557,0.910933743205794,-6.51300456099842 +"Q8SXG7",0.0383601566779781,14.0095970708759,0.376190895994419,0.713772716664938,0.910933743205794,-6.51315262386205 +"P08646",-0.0364700976454344,18.9623835166013,-0.375999191168667,0.713911296053687,0.910933743205794,-6.51322869947841 +"Q9VE56",0.0210310003487102,17.4575515801111,0.375222167316029,0.714473100226655,0.910933743205794,-6.51353666439369 +"Q9VFZ4",-0.0284620787267791,16.8144662265997,-0.374847851734969,0.714743800961125,0.910933743205794,-6.51368479863765 +"A1ZB79",0.0213820087291339,20.7261478380143,0.374231045822301,0.715189957026189,0.910933743205794,-6.51392858323928 +"Q9XYW6",0.0409042465626523,16.628034499732,0.373111951331307,0.715999717701174,0.910933743205794,-6.51436989156858 +"Q9W2D9",0.0409306495178576,17.717600670283,0.372907790866756,0.716147484535971,0.910933743205794,-6.51445026204923 +"Q9VJC7",0.038128180429144,18.5656080440269,0.372401703461944,0.716513831586332,0.910933743205794,-6.51464930512193 +"Q9VXI1",-0.0588536996461464,19.530596394958,-0.369681906281011,0.718483911122937,0.91274269897415,-6.51571447966244 +"Q9W3T9",0.0297303424597501,18.6055101749439,0.367825090482099,0.7198301173513,0.91315070087318,-6.51643730305751 +"Q9VIK0",0.0648056103800574,12.817864295621,0.367728762416848,0.719899983002537,0.91315070087318,-6.51647470485966 +"Q9VZG0",-0.0397633997485585,21.7166676726966,-0.363203725196128,0.723184931619983,0.916129564028185,-6.51822088999473 +"Q9VV75",-0.0211889688916607,23.9219490195168,-0.362980814995042,0.723346903971894,0.916129564028185,-6.51830636423123 +"Q8SY33",0.0256730305278907,17.3717100424671,0.360105342661247,0.725437559010146,0.916808180087842,-6.51940436106911 +"Q7JWD3",-0.026684778020245,17.008270095552,-0.360053039767202,0.725475608247934,0.916808180087842,-6.51942425390667 +"Q9TVP3",-0.0423789776423042,22.8714239650332,-0.359928729112387,0.725566044688095,0.916808180087842,-6.51947152278774 +"Q9W379",-0.0301277664228561,16.3070648726195,-0.359220594039467,0.726081298498824,0.916808180087842,-6.51974048563214 +"Q8MSV2",0.0553467428146881,18.2756556038498,0.355228195884907,0.72898888431397,0.919462718219845,-6.52124718781095 +"P05389",0.0206730811637392,20.557214523229,0.354091999946211,0.729817167782276,0.919462718219845,-6.52167297163117 +"Q9Y0Y2",0.0228358406248823,19.4533040478433,0.354064371237501,0.729837313503042,0.919462718219845,-6.5216833087475 +"Q9VC31",-0.0244067323727375,17.6608193036836,-0.346539073616331,0.735332305672025,0.925686253479953,-6.52446948461234 +"Q9VHT3",0.0210866473105007,15.5811301786703,0.343987039692409,0.737199332404624,0.92695354416254,-6.52540105563079 +"Q9Y128",0.0279977678114935,14.3293294638082,0.343643970159273,0.737450451501013,0.92695354416254,-6.5255257727019 +"P29327",0.0224796293708209,19.6335002418433,0.34239082794919,0.738367994004345,0.927407992469312,-6.52598029597104 +"Q9VQ62",0.0522984440904644,19.6136166464376,0.341063000814483,0.739340683335038,0.927930970506278,-6.52646013407065 +"Q9VNH5",0.0332408298250293,17.1927681452835,0.339332197363856,0.740609282464924,0.928824273046235,-6.52708285517092 +"M9NDE3",-0.0175251004721382,16.229831683125,-0.338384094110922,0.741304539211492,0.928997724571577,-6.5274226553305 +"Q9VGP7",-0.0491145065321348,16.0718588277049,-0.336473981696302,0.74270597976832,0.929388738802545,-6.52810441136704 +"Q7JWX3",-0.0338090517745009,18.010536446635,-0.336439989422706,0.742730928551434,0.929388738802545,-6.52811650962702 +"Q9VE94",-0.0416106801714058,14.6593423414149,-0.335043747694851,0.743755971979303,0.929422500104358,-6.5286124140286 +"A1Z9B5",0.0728827510103756,15.640698877793,0.334885304755497,0.743872324723812,0.929422500104358,-6.52866856068163 +"Q9VNI8",0.0210291800748852,15.723442663841,0.334112195869928,0.744440153501127,0.929435760508892,-6.5289421502071 +"P38979",0.0206815554255968,22.1079366163806,0.332154779384788,0.745878532483128,0.930535072686505,-6.52963207427822 +"A1Z934",0.0163057261055179,19.2821438062826,0.330766657763601,0.746899185080807,0.930648585667418,-6.53011893267327 +"Q7K1Q7",-0.0235380860014978,16.5175844902038,-0.329892873661774,0.747541916972327,0.930648585667418,-6.53042437138951 +"Q7KNM2",0.0283779080198165,19.6003321742329,0.329755004304239,0.747643348198046,0.930648585667418,-6.53047249244854 +"A1Z729",0.0233079060300625,16.7060409192578,0.32732048655204,0.74943525359564,0.931579648433385,-6.53131897185073 +"Q9VMR0",-0.0233473433369902,17.360017974523,-0.327221253097977,0.749508326257556,0.931579648433385,-6.53135334474133 +"Q9VY92",0.0281246795899079,21.3208742482921,0.323540095956337,0.752220827242628,0.934254906806183,-6.53262121448332 +"Q8IM93",-0.0221319414246821,18.9368108471897,-0.320164931176791,0.754710919992389,0.935937737873236,-6.53377132454974 +"Q9VFN9",-0.0448490124155807,16.0378920759186,-0.320140682332675,0.754728820586864,0.935937737873236,-6.53377954467636 +"Q9VLM9",0.0243423203188708,18.4114755797272,0.319422423895444,0.75525910981857,0.935937737873236,-6.53402275026428 +"Q8SYD0",0.0238048529393815,15.4480435017398,0.316606589191288,0.75733930073866,0.936709984670728,-6.53497103191166 +"P02572",0.0222882003928326,26.556977962849,0.316604274328527,0.757341011663714,0.936709984670728,-6.53497180809049 +"Q8IN44",-0.0257800494431812,19.7126525971093,-0.316298519881027,0.757567007986098,0.936709984670728,-6.53507427928234 +"Q9VGP6",0.0192777746120036,18.0186195385219,0.314676279901638,0.758766469782866,0.937498127109496,-6.53561633362407 +"Q94529",-0.0165717070365048,19.605580739711,-0.313245761757275,0.75982472371775,0.938110761777356,-6.53609205456591 +"Q9W236",0.0253474010732706,16.4756856740097,0.312461239359664,0.760405307120969,0.938133174761669,-6.53635204454544 +"Q7KSM5",0.0214614984254808,18.942189973201,0.311226773717239,0.76131918063449,0.938566439983984,-6.53675984830987 +"Q9VKY3",-0.0186185326518782,18.8054627127598,-0.310122105470107,0.762137286755411,0.938881088853786,-6.53712342882954 +"Q7KMP8",0.0191144223938231,19.2536490678098,0.308828860293732,0.763095435529088,0.939172052073568,-6.53754746149653 +"B7Z0N0",0.0393507634461479,13.0719810271949,0.307722707563852,0.763915297884737,0.939172052073568,-6.53790876785847 +"Q9Y162",0.0224026115113638,20.1403473434866,0.307474933003536,0.764098985697084,0.939172052073568,-6.53798952459342 +"Q9VKR0",0.1289637963998,13.3411734505163,0.306256663824966,0.765002369863084,0.939172052073568,-6.53838566274206 +"Q9Y171",0.0414163485874166,15.2187411066438,0.306005392985205,0.765188740268572,0.939172052073568,-6.53846717481626 +"O61722",0.0256664879385191,18.9064980962813,0.300762411271776,0.76908103213428,0.941363199205141,-6.54015298402162 +"Q9VL68",0.0153018626701567,20.7964896128827,0.300241379778398,0.769468200359864,0.941363199205141,-6.54031894916618 +"A1ZBM2",0.023593780590442,18.5976099190297,0.299759633769059,0.769826234536647,0.941363199205141,-6.54047214874046 +"Q9V3L6",-0.031276898055598,15.9384370151374,-0.299688637531633,0.769879003744648,0.941363199205141,-6.54049470572086 +"Q9VB22",0.0208177332235628,17.0819610732704,0.298983322883913,0.770403307156134,0.941363199205141,-6.540718513308 +"P50887",-0.0513956691804474,17.9869090458926,-0.298399483276151,0.770837401136567,0.941363199205141,-6.54090338239546 +"Q9VH07",0.0178168280760147,18.2284395607693,0.297636466210518,0.77140483954058,0.941363199205141,-6.54114445086273 +"Q9VDC3",0.0184466067997384,19.2684772474961,0.297458087776793,0.771537515609459,0.941363199205141,-6.54120072035098 +"Q9VV72",0.0277411033168811,19.4436645765116,0.296764768980719,0.772053271290548,0.941363199205141,-6.54141911252867 +"Q9U6M0",0.0201770641277648,16.2612653784424,0.293953465454428,0.774145755711871,0.943225069778963,-6.54229951915927 +"Q9VKR4",0.0348405127882998,19.2647036448184,0.292542081158795,0.775196970546842,0.943607799510909,-6.54273840719701 +"Q05856",0.0417658593571808,13.7215679193263,0.292012804446376,0.775591302835406,0.943607799510909,-6.54290245635845 +"Q9W3T2",0.0319721224381944,16.2126684178839,0.288123472608481,0.77849102391971,0.945827373838739,-6.5440989792955 +"Q9VZW1",0.0315346319301923,14.7732395984408,0.287291941769227,0.77911143555569,0.945827373838739,-6.5443527428408 +"P12080",-0.014941465729855,19.1597787385304,-0.28685560550311,0.779437053568155,0.945827373838739,-6.5444856132996 +"Q9W425",-0.0318612900473436,13.8604169784626,-0.286524949744405,0.779683836347881,0.945827373838739,-6.54458617005507 +"Q9V4C8",-0.022139716720428,17.2372603338568,-0.282927659759755,0.782370278084069,0.947746184811974,-6.54567276811619 +"Q9W1X4",-0.0327731120682326,15.2073833647095,-0.28214384609605,0.782956020605772,0.947746184811974,-6.54590773181203 +"Q9VIV6",-0.0534139505386584,15.0868467436289,-0.282124915061839,0.782970169466967,0.947746184811974,-6.54591339881879 +"Q95RB1",-0.0167675248110672,15.9321070629607,-0.279632353518415,0.784833796178002,0.94931310516672,-6.54665627343758 +"Q7K3Z3",0.0159187272914991,19.81421661926,0.27834025777096,0.785800417978044,0.949793548686506,-6.54703880733546 +"Q9VCK0",0.0169925984353796,18.353812554884,0.277225773947221,0.786634469714906,0.950113175586142,-6.54736735468625 +"Q9VTM6",0.0752170269900923,16.2651312087768,0.273068169160274,0.789748368203339,0.952515823369747,-6.54858153511061 +"Q9VTJ4",0.0260548173948632,15.5700687229629,0.272933803607167,0.789849067350004,0.952515823369747,-6.54862047310369 +"Q9VEA1",-0.0203150627792184,18.2648548764484,-0.272171113466277,0.79042073477571,0.952515823369747,-6.54884113593843 +"Q9VM12",-0.0200274667768099,19.0267102408236,-0.271521266579078,0.790907922881954,0.952515823369747,-6.5490286700488 +"Q9V3Q4",0.0320208759260794,15.9764271705424,0.270598887348485,0.791599587242153,0.952660975122591,-6.54929409253989 +"Q9W1R3",0.0182274651100585,16.8525855297555,0.269153357110573,0.792683922289732,0.953096003961976,-6.54970826317131 +"Q9VJ25",0.0260340767291876,15.7568464179738,0.268128126254261,0.793453255175328,0.953096003961976,-6.55000068326228 +"Q9VSC3",-0.0269144845037701,17.6735075592852,-0.267832321568896,0.793675269486321,0.953096003961976,-6.55008484899615 +"Q8SX68",0.0177751445857997,17.4906423067064,0.267009613578411,0.79429284771404,0.953151417256847,-6.5503184530557 +"Q9VM58",0.0206796182078168,16.5192553030198,0.26516706349527,0.79567651784337,0.953825687855579,-6.55083906258511 +"Q9VEW1",0.0527890362787851,14.5816030376232,0.264384005088962,0.796264780432327,0.953825687855579,-6.55105923669077 +"Q7KTA1",0.0440052468805909,17.0142131731696,0.263977447375713,0.796570253706728,0.953825687855579,-6.55117329577135 +"Q9VKJ4",-0.0206368830116332,15.1333148433952,-0.261232353274176,0.798633747648317,0.95512554536347,-6.55193889055535 +"Q8IQC6",0.0568643929291248,15.8518755269733,0.259778959238348,0.799726917171479,0.95512554536347,-6.55234103530984 +"Q9VK60",0.0145034532133188,21.2792638885535,0.259773502359326,0.79973102240345,0.95512554536347,-6.55234254101684 +"Q9V8Y2",0.025549093546104,19.9563796370134,0.259487389462089,0.799946275103578,0.95512554536347,-6.5524214438768 +"Q7K3W4",-0.0191052848580213,19.2958451876802,-0.257640127597993,0.801336450184425,0.956101000649228,-6.55292880522898 +"Q9VQL1",0.0164185565506152,20.0892088596211,0.256452256199476,0.802230773233991,0.956483866872263,-6.55325316909884 +"O02195",-0.0178328501085439,18.8092280800503,-0.255048303016404,0.803288159902681,0.956642481231624,-6.55363462697888 +"Q9VUZ0",0.0199488367837617,17.630897588258,0.254752679368959,0.803510861034476,0.956642481231624,-6.5537146849676 +"Q8IPP8",0.027979474841743,19.0497078680264,0.253674876077551,0.804322952472889,0.956926308648202,-6.55400578823533 +"M9PHA0",0.0206390479405663,17.3653166177832,0.251161795903475,0.806217412899727,0.958496539356197,-6.55467980585598 +"Q9W392",-0.0126745227899363,20.0699492926718,-0.249870867834098,0.807191070458966,0.958970587981165,-6.55502345838583 +"Q9VMS1",0.0162676493149334,22.350205002877,0.248266184137249,0.808401846169751,0.959430093309072,-6.55544819336098 +"P08736",0.0146949328587063,24.3612936314729,0.247833716067573,0.808728244120237,0.959430093309072,-6.55556219805973 +"Q7JZW2",0.0160882504589779,20.5348412500215,0.242649774702112,0.812643667720806,0.962508398729669,-6.55691345506597 +"Q9W147",-0.0198872597373345,13.7399278713848,-0.242013873695781,0.813124332583126,0.962508398729669,-6.55707726460883 +"Q94522",-0.0125577053199706,23.4148016262002,-0.240683038308633,0.814130543581957,0.962508398729669,-6.5574187142753 +"Q9V3I0",0.0621783769354014,16.4276325077449,0.240517852382652,0.814255460884181,0.962508398729669,-6.55746096570575 +"Q9VSL4",0.0148919745190454,20.8577609909934,0.240056578819873,0.81460431475721,0.962508398729669,-6.55757879874188 +"Q9W257",-0.0503275202833109,17.0744827763363,-0.239817309051622,0.814785287174036,0.962508398729669,-6.55763983239609 +"Q9VMC8",0.0226069256285761,16.3483688438516,0.237505998464655,0.816534031650016,0.963719401378637,-6.55822630698946 +"Q9W3X8",0.0384495407716763,13.9198286892003,0.236877725456686,0.817009565113942,0.963719401378637,-6.55838475392622 +"A1ZBK7",0.019784394806905,17.5313270461567,0.235775982217975,0.817843648421764,0.963719401378637,-6.558661604321 +"Q8IMX8",-0.0131687102659903,17.1481015927141,-0.23262718245565,0.8202287628081,0.963719401378637,-6.55944580207487 +"Q9VXE0",-0.0265599858523444,18.0819723242216,-0.231042030179754,0.821430182826794,0.963719401378637,-6.55983662786793 +"Q9W3H4",0.0226920281173442,19.4281365239318,0.230958957202039,0.821493158750919,0.963719401378637,-6.55985703687067 +"Q9VDC0",0.0193410278459361,17.5461701340865,0.23085600544087,0.821571206190871,0.963719401378637,-6.559882319519 +"Q7KUK9",-0.0183392717894471,18.4256087143572,-0.230468793950333,0.82186476812301,0.963719401378637,-6.55997731003521 +"Q8IMT3",-0.0285504414439703,14.7750188796009,-0.230465972283945,0.821866907455721,0.963719401378637,-6.55997800166527 +"Q9W1X5",0.014867792002363,19.4663533646035,0.22880861081628,0.823123746714486,0.963719401378637,-6.56038279495181 +"Q95U34",0.0132884603678747,19.4765059803081,0.227757675437596,0.823920978273874,0.963719401378637,-6.5606379756314 +"B7Z0C9",0.0210358020932393,15.8855518722182,0.227593606103378,0.824045458709546,0.963719401378637,-6.56067770876061 +"P0DKM0",-0.0153017547330876,17.0158953316412,-0.227360976885405,0.824221964595606,0.963719401378637,-6.56073399660654 +"Q9VCA5",0.0315818674072617,14.2960667722661,0.225780457911254,0.825421440383676,0.963719401378637,-6.56111491496309 +"Q9W3G8",0.0327389199836077,15.7676399244373,0.225328046644668,0.825764866563515,0.963719401378637,-6.56122346521882 +"Q9VMQ9",-0.0155970886099901,22.1300984585,-0.224279869649307,0.826560685249541,0.963719401378637,-6.56147413282649 +"Q9VUK8",-0.0115742914687189,20.7548120930839,-0.223426111918756,0.827209042837113,0.963719401378637,-6.56167744992105 +"Q9VRU1",0.0240734730524323,17.312260216198,0.222297544740481,0.828066300909783,0.963719401378637,-6.5619450318485 +"Q9VD58",-0.0103311562412891,22.7109438305639,-0.221811212772166,0.828435789963313,0.963719401378637,-6.56205992652517 +"Q9VEC2",0.0125360121690097,16.6757657850179,0.221667034453596,0.828545337257657,0.963719401378637,-6.56209394035309 +"Q8IH18",0.0185264453238787,15.6717515478553,0.221240823532252,0.82886919629941,0.963719401378637,-6.56219436172216 +"Q9VLP2",0.0268645530566864,19.2823088497608,0.219690197418964,0.830047728192296,0.963719401378637,-6.56255809497444 +"Q9VJ43",0.0180818881097053,20.3188453825099,0.219445877011347,0.830233460310383,0.963719401378637,-6.56261517440125 +"A1ZB23",-0.0319855326286103,15.7855523655506,-0.218772672002951,0.830745285882488,0.963719401378637,-6.56277212635076 +"Q500Y7",-0.0122421270721667,19.9775381708407,-0.216850318657951,0.832207265461083,0.963719401378637,-6.56321767466044 +"Q7K3N4",-0.0206513811690776,17.2176635144804,-0.21607699389707,0.832795577702411,0.963719401378637,-6.56339581022822 +"Q9W2K2",0.0293198313626455,15.6139665544978,0.215756701419744,0.833039273695729,0.963719401378637,-6.56346940488247 +"P17704",0.0172161265993296,20.3319601554265,0.215741602948745,0.833050761887243,0.963719401378637,-6.56347287143593 +"Q9VCY3",0.0220880850927507,17.874567310294,0.215419365093207,0.833295957325282,0.963719401378637,-6.56354679870865 +"Q9W229",0.0182676717903725,19.2113110961726,0.215223934090512,0.833444672591109,0.963719401378637,-6.56359158078337 +"Q9V3G3",-0.0359403269166165,14.8796867900004,-0.214860459144802,0.833721280689072,0.963719401378637,-6.56367476212646 +"Q9VI10",0.0192988407397578,17.2414335704277,0.212149218429898,0.835785298783673,0.965028076524267,-6.56429083103428 +"Q9VZG1",-0.0155497807609422,17.6612867866867,-0.211639975373405,0.836173120377915,0.965028076524267,-6.56440567954992 +"P23128",-0.0334400182587178,14.729296228243,-0.211093840418214,0.836589087922117,0.965028076524267,-6.56452854396101 +"O44386",0.0134189693980105,16.9158994579382,0.210158805088373,0.837301384874222,0.965182246005669,-6.56473816845929 +"O17452",0.0249763448329716,19.8849583404631,0.209373033026353,0.837900092574612,0.9652053552586,-6.56491361590598 +"Q9VHC3",0.015273164449173,17.3692189901421,0.208276705543717,0.838735601954604,0.96550102419619,-6.56515731475749 +"Q9VSX2",0.0204195772955096,17.8888311676922,0.207227412388162,0.839535460401326,0.96575527444787,-6.56538936960572 +"Q9W3C4",0.0407509055043906,14.7966942249405,0.206151399780787,0.840355882579323,0.966032813330331,-6.56562612577152 +"Q9V406",-0.0165656486746748,16.9432838697905,-0.204577703257242,0.841556126700843,0.966746294309232,-6.56597018527631 +"Q9VN91",-0.0252663171375112,19.677938238275,-0.200601802868961,0.844590370828723,0.969564169678121,-6.56682778430643 +"Q9VXP3",0.0201602207405305,14.8485889648177,0.198493701258971,0.846200256327603,0.970744173008557,-6.56727572212554 +"Q966T5",0.0189988587846415,16.528213566233,0.197066766940314,0.847290372920003,0.971326695553653,-6.56757625623021 +"A1Z847",-0.0164136275177498,19.9786608541206,-0.195399252194568,0.848564704030221,0.971860138993992,-6.56792473194893 +"Q24238",-0.015329442479814,16.4780977880236,-0.194535490988531,0.849224976224489,0.971860138993992,-6.56810408378583 +"Q9VYV3",0.0120475283466561,20.5445163171893,0.19417098451126,0.849503646674605,0.971860138993992,-6.56817953332707 +"Q9VC48",-0.0121239079432911,18.4905674628739,-0.19256432752075,0.850732213670889,0.972598582867062,-6.56851042171468 +"Q9VLR3",-0.0175554484889702,16.7214193241174,-0.189447224681542,0.853116951435074,0.973957007013144,-6.56914459459764 +"Q9VAV2",0.0107663715169082,17.7537188632418,0.188838406337247,0.853582906804093,0.973957007013144,-6.56926725812941 +"Q9VN14",-0.013344206602202,19.4166963570261,-0.18846288020651,0.853870342422175,0.973957007013144,-6.56934272279104 +"Q9W0X2",0.0182451844104268,15.9511940052377,0.18719377209175,0.854841907700145,0.973957007013144,-6.5695966545413 +"Q9VTT2",-0.0336343942323758,13.9681362145376,-0.186363805185024,0.855477424201899,0.973957007013144,-6.56976179787524 +"Q9VPR1",0.0244255702526193,13.6339210412077,0.186191102223488,0.855609678543803,0.973957007013144,-6.56979606992921 +"Q9VZ67",-0.0142656293818071,15.2050090621346,-0.185494926950495,0.85614284994586,0.973957007013144,-6.5699339022991 +"Q8MRT7",0.0158120660518772,15.4248250098311,0.184908948438031,0.856591684225589,0.973957007013144,-6.57004951962791 +"Q9VXC1",0.0127284044497991,18.2771677601751,0.182917188644121,0.85811768013563,0.973987573068583,-6.57043978847087 +"Q9W414",0.0087583057204732,19.6250973145801,0.182241686616153,0.858635356522178,0.973987573068583,-6.57057119351821 +"Q24298",-0.0134037240496561,19.3886718715081,-0.181330265718345,0.859333940839522,0.973987573068583,-6.57074772583245 +"Q9U9P7",-0.0190902659130057,16.5319952329337,-0.180552797132813,0.859929952721131,0.973987573068583,-6.57089761766824 +"Q9VTC1",-0.0099788567290986,15.7881340359034,-0.17927592955671,0.860909003678056,0.973987573068583,-6.5711424017007 +"O97422",-0.0275863409748993,15.4145132642752,-0.17848844297461,0.861512938311904,0.973987573068583,-6.57129250705255 +"Q9W253",-0.0123707014160903,15.3641987918036,-0.178458236306295,0.861536106072666,0.973987573068583,-6.57129825175887 +"P91941",-0.0161905395400872,23.055285000533,-0.178253377015567,0.861693231613481,0.973987573068583,-6.57133718640364 +"Q9VXN4",0.0111508405308829,15.0786181379561,0.177529849337458,0.862248221733796,0.973987573068583,-6.57147434101098 +"Q7JXC4",-0.00903670269649481,21.5529402881018,-0.177256625938339,0.862457820996581,0.973987573068583,-6.57152598998224 +"Q9W1N3",0.0122509400691015,20.4320726060021,0.173302749048334,0.865492204513357,0.974380297251513,-6.5722645580642 +"Q9VQB4",-0.0116030238956206,21.7481682491538,-0.17236003484885,0.866216021270934,0.974380297251513,-6.57243820696748 +"Q0E9B6",0.0113119947604794,19.2550303467842,0.172148359686216,0.866378563224379,0.974380297251513,-6.57247706822977 +"Q9VMD3",0.022902363369445,17.8670258976151,0.171641450595925,0.86676783669598,0.974380297251513,-6.57256993815999 +"P48148",0.0141966601919279,20.7365828351859,0.171416429608149,0.866940650089668,0.974380297251513,-6.57261107656002 +"P20351",0.0242061510576654,13.9892385283227,0.170472943915874,0.867665314383687,0.974380297251513,-6.57278298046039 +"Q7K3E2",0.0159902206991411,20.4202628986843,0.169885219605464,0.868116792602425,0.974380297251513,-6.57288958725474 +"Q9VN21",0.00830765687842927,22.0687965434936,0.169271580356602,0.868588230410916,0.974380297251513,-6.57300050389861 +"P08182",0.00909772949354704,19.6021753332152,0.169041600382922,0.868764929782049,0.974380297251513,-6.57304197042028 +"Q9VES8",0.0122535440221974,17.9690345860798,0.168198841180278,0.86941250646787,0.974380297251513,-6.57319344470868 +"Q9V428",0.0119209458128218,18.7164265012032,0.16770528592343,0.869791800956114,0.974380297251513,-6.57328180471023 +"Q9W197",0.0107409002242065,17.3607960494033,0.165591387935149,0.871416704494553,0.974380297251513,-6.57365732781848 +"Q9V8F5",-0.0174018499979365,15.8920122813895,-0.163668577903457,0.872895260114098,0.974380297251513,-6.57399478851979 +"Q9VZZ5",0.0108858870802457,18.4122626036663,0.16339179701775,0.873108134095589,0.974380297251513,-6.5740430417192 +"Q9VRG6",-0.0097300449630886,16.3311042380769,-0.162410169403435,0.873863194486206,0.974380297251513,-6.57421352060804 +"Q8I941",0.0129304749197345,18.9847311079186,0.162097600623058,0.874103647469501,0.974380297251513,-6.57426758970276 +"Q9VDI3",0.0151468275203719,15.0361899110077,0.161844112112897,0.87429866088927,0.974380297251513,-6.57431136278753 +"Q9VAY9",-0.0142747149138138,14.7805226970439,-0.160314969791264,0.875475242373691,0.974380297251513,-6.57457397296975 +"Q9VNR6",-0.019285943105924,14.6137445719229,-0.160208410514973,0.875557244932901,0.974380297251513,-6.57459218064854 +"Q7JXZ2",-0.0194135551872172,17.7276514567356,-0.159825624455779,0.875851830008776,0.974380297251513,-6.57465748753205 +"Q9W5R5",-0.00892441448534242,15.8319717558579,-0.159558755142638,0.876057219286311,0.974380297251513,-6.57470292593561 +"Q9VJ80",-0.0103246951221347,16.5464950419322,-0.159233908032389,0.876307242543119,0.974380297251513,-6.57475813390625 +"Q9VU75",-0.011125216239865,18.2777809781059,-0.157133976584508,0.877923822805891,0.974380297251513,-6.57511231634958 +"Q9VR89",0.0174797722684144,13.9181454063698,0.156606887020404,0.878329680967985,0.974380297251513,-6.57520048238319 +"Q9VLT8",-0.0202582975088319,13.9197468489709,-0.156501461172351,0.878410863082943,0.974380297251513,-6.57521808152294 +"Q9W380",-0.0162754803648291,18.4382518433882,-0.156354657926358,0.878523909871441,0.974380297251513,-6.57524256829567 +"Q9Y0Y5",0.0105038960288688,18.6644350567048,0.156284524058031,0.878577917905441,0.974380297251513,-6.57525425854486 +"Q9VVN2",-0.0188056420335307,15.0315609789699,-0.154792247419711,0.879727228348894,0.975006655738176,-6.57550176072542 +"Q9VMH8",0.0102001228313604,18.9810978015728,0.153400458587081,0.880799405916199,0.97508140924456,-6.57573046555313 +"Q7KTH8",0.00792828790854117,17.630747254987,0.153187037156487,0.880963839167597,0.97508140924456,-6.57576535401253 +"Q9VII5",-0.0200804581016385,17.3611303308395,-0.152226092670216,0.881704283300911,0.975253809380583,-6.57592184249254 +"Q9VQ91",-0.0142083210321875,14.8408652739704,-0.151429312226484,0.882318322112789,0.975286256649524,-6.5760508534375 +"P45889",0.0104387130855983,19.1982284135744,0.148217393440508,0.884794399412041,0.975865166796101,-6.5765640746144 +"Q8I725",0.0108201613097592,18.9706893698245,0.14788742082434,0.885048849276755,0.975865166796101,-6.57661617904751 +"Q9W2E8",0.0118485238048898,19.2862223783814,0.146901058937808,0.885809537126495,0.975865166796101,-6.57677124116825 +"O18335",-0.00908036516737099,21.6235143071135,-0.146664773658394,0.885991779482366,0.975865166796101,-6.57680823319868 +"Q9VWH4",0.00773387504235501,24.2940915450703,0.146410697587542,0.886187751196638,0.975865166796101,-6.57684794431127 +"Q9XYZ9",0.0111780867082025,21.9793019024173,0.144324399711679,0.887797234497542,0.975865166796101,-6.57717143066197 +"Q9VDK7",-0.00863750806759356,17.8667423316844,-0.144206261229114,0.887888388758313,0.975865166796101,-6.57718961000199 +"Q9VJN0",-0.0184234802832783,17.4621977585269,-0.144108248499328,0.887964015506542,0.975865166796101,-6.57720468110234 +"Q7KUT2",0.00886142650658783,18.3045346924369,0.141603930143047,0.88989674244397,0.975865166796101,-6.57758629911269 +"Q9VAY0",-0.0152498460240427,13.980473758271,-0.139881357073633,0.891226584755079,0.975865166796101,-6.57784492231446 +"Q9W3M7",0.0092003337171267,16.1543326998936,0.139591763876541,0.891450187695374,0.975865166796101,-6.5778880914782 +"Q9VQQ0",-0.0138617231677216,18.2072905395597,-0.139011543750167,0.891898221294233,0.975865166796101,-6.5779743156544 +"Q7KN94",0.00809583790077539,22.5787861230576,0.138583816602327,0.892228528231988,0.975865166796101,-6.57803764930448 +"Q86BI3",-0.00848788652903565,18.052515012112,-0.138494570873186,0.892297449815475,0.975865166796101,-6.57805083941421 +"Q9VLP3",-0.0147938792697033,17.4457090950326,-0.138457382537309,0.89232616943508,0.975865166796101,-6.5780563331805 +"P08120",-0.0132646855059697,18.2265084526721,-0.136240994563648,0.89403811910477,0.975865166796101,-6.57838110103245 +"Q9VAY6",0.0086453949615688,15.1867101197993,0.136163577774565,0.894097926448729,0.975865166796101,-6.57839235052845 +"Q9VZ20",-0.00745536611538,18.7150936851554,-0.136029917948744,0.894201185239684,0.975865166796101,-6.57841175774626 +"Q95SS8",0.0143081062166868,15.6713153471792,0.13544323032136,0.894654454409084,0.975865166796101,-6.57849671927048 +"Q9VKX2",-0.00770220016660161,23.0809133777286,-0.135184556560834,0.89485431569525,0.975865166796101,-6.57853406300519 +"Q9VSA3",-0.00719339036887945,21.7970402529199,-0.134275887476653,0.895556448471405,0.975865166796101,-6.57866468007588 +"Q9VUQ7",-0.0111315300945289,16.5336832851394,-0.133480991922104,0.89617074431707,0.975865166796101,-6.57877822268145 +"Q9VGT8",-0.013875375653539,15.367817816338,-0.13331604702609,0.896298222740783,0.975865166796101,-6.57880169916675 +"Q9VA97",0.00784426455827614,18.5066312923482,0.131880185163827,0.897408063541142,0.976028028867903,-6.57900484201621 +"Q9VX36",-0.00649602322100762,22.159496396198,-0.131444555785861,0.897744825944715,0.976028028867903,-6.5790660404182 +"Q8SY67",0.020108175008609,15.9721912267247,0.130851588228993,0.89820325198575,0.976028028867903,-6.57914901773742 +"Q9W1W4",0.0160538245488553,17.2878649314956,0.125067834672385,0.902676701445106,0.980031297376203,-6.57993875330744 +"Q9VA37",0.00733429692091647,21.6706975826309,0.124455468209255,0.903150545702672,0.980031297376203,-6.58002028439556 +"P08985",0.00760743578294409,20.6030895963145,0.123810109943298,0.90364996124976,0.980031297376203,-6.58010577615629 +"Q9VI04",-0.0192408526129366,16.4353418058012,-0.122868997115199,0.90437832650017,0.980183917220458,-6.5802296525746 +"Q9VRP2",-0.00581784527309992,20.4738119736112,-0.12170320414578,0.905280707718658,0.980231955873667,-6.58038179602431 +"Q9W2E7",-0.00796229177996821,18.6533388092769,-0.121293350214383,0.905597988010384,0.980231955873667,-6.5804349409139 +"Q9VXN2",0.0123974125696407,18.3156934476799,0.118357123285194,0.907871508047892,0.981905947794737,-6.58081044612557 +"Q9W127",0.0093080866926627,18.5509963277589,0.117108249479946,0.908838772558015,0.981905947794737,-6.58096737875688 +"Q07093",-0.0157148063234818,14.5745322220871,-0.116732880942421,0.909129529168074,0.981905947794737,-6.5810142227511 +"Q59E04",0.0133080230256493,16.4210696961311,0.115165068060324,0.910344090205775,0.981905947794737,-6.58120825554964 +"O77134",0.00766560413579143,21.6265995507676,0.114827294257978,0.910605789825701,0.981905947794737,-6.58124971581267 +"Q9VVH3",-0.0108063609812596,19.8476120633594,-0.114155256604111,0.911126502435337,0.981905947794737,-6.58133184418572 +"P13496",-0.0070457547220748,18.2456945227914,-0.112952151024607,0.912058808921418,0.981905947794737,-6.5814776720958 +"Q9VHI1",-0.00796470580798037,14.2795955783442,-0.112846925188508,0.912140356743157,0.981905947794737,-6.58149035316841 +"Q95NU8",-0.0145942543966946,17.2973408594938,-0.112019524209589,0.912781611816321,0.981905947794737,-6.58158965477073 +"O44434",0.0112159830111818,15.8255410402332,0.111697442692117,0.913031250017768,0.981905947794737,-6.58162811265237 +"Q9VXA9",-0.00642965638944304,14.314973675899,-0.109988221592447,0.914356191979494,0.982402748071029,-6.58183035185451 +"Q9VQJ8",0.0068400326350222,15.172800681794,0.109114627482523,0.915033483398641,0.982402748071029,-6.58193251597735 +"P92181",0.00859176545382923,16.489390952769,0.108742178029099,0.915322262247108,0.982402748071029,-6.58197582561134 +"Q24185",0.00629210180088435,18.6497903159718,0.108062756615227,0.915849084682524,0.982402748071029,-6.58205445029681 +"Q9VQI6",-0.0164563944739573,16.1570276149871,-0.105227269860459,0.918048168473323,0.984128756435413,-6.58237727255363 +"Q9W0Q2",0.0045756166849138,15.4985920334083,0.103640803044557,0.919278877803702,0.984815136914949,-6.58255415581473 +"Q9V405",0.00808412497762845,20.2399619753349,0.0983743885522785,0.923365884372522,0.985322182034089,-6.58312210588325 +"Q7JYZ9",-0.00826995710559686,18.1075390494458,-0.098261451603955,0.923453554883696,0.985322182034089,-6.58313396169103 +"Q9VYV4",-0.0066315728888835,15.481700195651,-0.0980852378395202,0.923590347932863,0.985322182034089,-6.58315243296928 +"Q9V5C6",0.00570329664384062,20.6462743821618,0.0978058624690344,0.923807229613973,0.985322182034089,-6.58318165013711 +"Q9VVK5",0.00726682595083972,15.8496795332106,0.0974150416079271,0.924110638273518,0.985322182034089,-6.58322238271755 +"Q9W1Y1",-0.00920656003944487,17.844955273838,-0.0973574208423177,0.924155372464877,0.985322182034089,-6.58322837436382 +"Q9VED8",-0.011149499611868,16.5522962037041,-0.0970913813731936,0.924361917175829,0.985322182034089,-6.58325599236014 +"Q9VLT7",0.00949488486716632,18.070779243066,0.0969419332398484,0.924477946572752,0.985322182034089,-6.58327147372357 +"Q8SZA8",-0.00614999852645326,17.9828920168121,-0.0949449568706171,0.926028544908666,0.986164693298594,-6.58347605634326 +"Q9VL70",-0.00694840764971616,23.5372322447068,-0.0944011088660882,0.926450883932192,0.986164693298594,-6.58353103496909 +"M9PDU4",-0.00709599673065142,22.4977903387755,-0.0898320209359025,0.930000044182417,0.989311271489969,-6.58398047925255 +"Q9VSY8",0.00744637917163615,17.9849461500567,0.0850560326929375,0.933711613216041,0.992626495120686,-6.58442647935125 +"Q9VJ86",-0.0130271393552857,16.6273467903558,-0.0838863402180948,0.934620871301139,0.992960263267707,-6.58453200113879 +"Q9VF51",0.00552864817946741,17.7170595199812,0.0821612365355093,0.935962053971924,0.993194457117016,-6.58468496509539 +"Q9VF77",0.00634582609074386,15.7182264813864,0.0820710359303232,0.936032186203806,0.993194457117016,-6.58469287580126 +"Q9W306",0.00982087032734391,14.6922891182241,0.0794399745944094,0.938078119236148,0.993651911351679,-6.58491980429524 +"Q9VNB9",-0.00912409519090573,19.1989917581993,-0.0788521344918715,0.93853529226049,0.993651911351679,-6.58496949607798 +"Q9VY24",0.00550424564220009,17.7791006589124,0.0783644632499836,0.938914579805802,0.993651911351679,-6.58501044052179 +"Q9VHK6",-0.0079302486761712,18.0696073558766,-0.0772335430839491,0.939794216377667,0.993651911351679,-6.58510441509824 +"Q9VCU6",-0.00568319361603464,15.4529404229771,-0.0764238707648587,0.940424035858824,0.993651911351679,-6.5851708571621 +"Q9VIT0",0.00435090155811224,16.4394937013211,0.0756733867185969,0.941007852469664,0.993651911351679,-6.58523181756632 +"Q9VTV9",-0.00660988469176971,17.2405138829459,-0.0751709695942438,0.94139871302739,0.993651911351679,-6.58527229213433 +"Q9VWF0",0.00665116160293167,16.4035686000281,0.0738379413712647,0.942435833591311,0.993651911351679,-6.5853783751116 +"Q9VU70",-0.0149503190809028,14.6287862601356,-0.0733573047568552,0.942809805106173,0.993651911351679,-6.5854161592953 +"Q7PL91",-0.00534370460764677,18.7613615831914,-0.0732714274121792,0.94287662566733,0.993651911351679,-6.58542288439509 +"P53501",0.00851842489300125,24.6115825334658,0.0730920846850455,0.943016172463854,0.993651911351679,-6.58543690343915 +"Q9VIM0",0.00346807849819797,18.1032697160817,0.0719823600981653,0.943879694616684,0.993933920846357,-6.58552288624512 +"Q9VC53",0.00500239177268469,17.8293733527692,0.0710470509336129,0.944607555338198,0.994072809024678,-6.58559433453212 +"P02515",-0.0210061186333519,18.0330911509467,-0.0697591204648152,0.945609913153955,0.994500211311978,-6.58569119165866 +"Q9VF27",0.00338927117921983,22.2033223148423,0.068606664856619,0.946506918085234,0.994816344906219,-6.5857763597841 +"O97477",-0.00338915788129412,21.0025223092311,-0.067299070049329,0.947524767830381,0.995259013061131,-6.58587127629536 +"Q9VUJ1",-0.00491435878505087,20.0852389065681,-0.0652511948857191,0.94911905716907,0.99539567195995,-6.58601626150543 +"Q9VFQ9",-0.00339949837709241,19.3116298425396,-0.0647036311695288,0.949545380067709,0.99539567195995,-6.58605426936654 +"Q9W289",-0.00553692321730281,17.4197714299845,-0.0631027646770446,0.95079187865643,0.99539567195995,-6.58616355409505 +"Q9VP78",0.00428277985801273,14.8805011437033,0.0623586534131178,0.951371320280204,0.99539567195995,-6.58621342022927 +"Q9V8M5",-0.00857977686540679,19.8552797547818,-0.0606806389706909,0.952678101931819,0.99539567195995,-6.58632370182521 +"Q9V3R3",-0.00362469985843106,13.5826292973286,-0.0605338493442969,0.952792423741836,0.99539567195995,-6.5863332060747 +"Q8SY69",0.00723139369059922,18.906636493129,0.0596455460846095,0.953484270217188,0.99539567195995,-6.5863902305961 +"Q9VQD7",-0.00359617778332222,20.9103850997388,-0.0591549783819997,0.953866361309026,0.99539567195995,-6.58642136144273 +"Q7K738",0.00315734753985808,19.7244318356318,0.0585855231830093,0.954309911058267,0.99539567195995,-6.58645717616014 +"Q2MGK7",0.00580187914142272,16.994237462901,0.0584241964691875,0.954435571680733,0.99539567195995,-6.58646725953702 +"M9PF61",0.00282017093552156,22.6394808053267,0.0582549035753647,0.954567438707335,0.99539567195995,-6.58647781094297 +"Q9VN95",0.00453352812769126,17.962166751214,0.0579358116465435,0.954815992287722,0.99539567195995,-6.5864976155803 +"Q9VL89",-0.00260389682561524,16.8908878637043,-0.0554519516179757,0.956750939989274,0.996789861275521,-6.58664806108675 +"Q9VN71",0.00499660504835475,18.6240987649115,0.0537034338794804,0.958113224685142,0.997067829929798,-6.58675001652845 +"Q9VW90",0.0271640014294352,15.0324188038062,0.0527475114164986,0.95885805098528,0.997067829929798,-6.58680437573901 +"Q7PLI0",0.00518411657935758,17.7870190783502,0.0526331630797078,0.95894715055453,0.997067829929798,-6.58681081289471 +"Q9VEV7",-0.0151300881284193,13.1889267144796,-0.0514968191173752,0.959832614784209,0.997067829929798,-6.58687402370446 +"Q9VAS1",-0.00636053469604292,13.0819646297165,-0.0510498426040909,0.960180924249541,0.997067829929798,-6.58689850955577 +"Q9VJ60",-0.00332665373790242,16.5032997882592,-0.0505065271042168,0.960604318163781,0.997067829929798,-6.58692798566965 +"Q9VHX2",0.00364316444083457,14.7550962650342,0.047905284237991,0.962631582842086,0.997278006444586,-6.58706474129715 +"B7YZN4",0.00905714129124569,15.3649181548769,0.0475823247340556,0.962883299096756,0.997278006444586,-6.58708121600814 +"M9NEW0",-0.00256653357297765,18.2718642087803,-0.0466128874821835,0.963638908523897,0.997278006444586,-6.5871299995862 +"O76877",0.00348043718429203,17.3183497772682,0.0465696258445532,0.963672628856682,0.997278006444586,-6.58713215318286 +"A0A0B4LFA6",0.00270905109606545,19.5719811254424,0.0464110253404487,0.963796250832537,0.997278006444586,-6.58714003133761 +"Q9VPQ2",-0.00394677581757819,16.463441226241,-0.045607035961982,0.964422939643729,0.997307788794631,-6.58717955457359 +"Q9VXE5",-0.00397440325525444,14.6400522820919,-0.0447225659439723,0.965112389902742,0.997392448275317,-6.5872222366306 +"Q9VIH1",0.00320639315766336,15.7866946057748,0.0427256700742617,0.966669091795849,0.997392448275317,-6.58731552845896 +"Q9W3T7",0.00214808987475479,17.418682567947,0.0421945474399277,0.967083158844914,0.997392448275317,-6.58733962459238 +"Q9VY05",-0.0049168998918887,18.4033828440513,-0.0407942060275545,0.968174923244362,0.997392448275317,-6.58740171118073 +"Q9VTB4",0.00307846507037368,20.5971791436348,0.0402068227163197,0.968632892049563,0.997392448275317,-6.58742713026961 +"Q9W2J4",0.00582084809982319,15.2189810939095,0.0397064715984159,0.969023013216809,0.997392448275317,-6.5874484923464 +"Q9VHR8",-0.0020630571827347,20.594638209893,-0.0390816327872348,0.969510208628247,0.997392448275317,-6.58747479381299 +"Q9W503",-0.00228132641488088,17.986152322616,-0.0383458669992909,0.970083911919323,0.997392448275317,-6.58750522985886 +"Q7K860",-0.00798772542779957,20.3979676877447,-0.0348213177405639,0.972832369399668,0.997392448275317,-6.58764300774679 +"Q9VD02",-0.00203243414023646,18.1446650613572,-0.0343687810178324,0.973185286716963,0.997392448275317,-6.58765973648003 +"Q9GU68",-0.00235493611404181,22.2581460546082,-0.0339893303648086,0.973481211413993,0.997392448275317,-6.58767359483762 +"Q9VUV6",0.00256935937432878,14.7962018027641,0.0336360327540843,0.973756743701173,0.997392448275317,-6.58768635974575 +"Q9XZ19",0.00321953224044691,16.0466275937522,0.0335952104195929,0.973788580748109,0.997392448275317,-6.58768782609319 +"Q7JVK8",-0.00208815065005297,19.1334669813305,-0.0329224102833601,0.974313299571544,0.997392448275317,-6.58771173675613 +"P53997",-0.00468701594796705,17.267659187173,-0.032794944257744,0.974412712137022,0.997392448275317,-6.5877162122854 +"Q9VK59",-0.00185240633736328,18.7831522048601,-0.0315324483937327,0.975397374762101,0.997392448275317,-6.58775960307553 +"Q9VWU1",0.00385658894919771,14.9259172702175,0.0312523378578909,0.975615848155175,0.997392448275317,-6.58776899938804 +"Q9W4Y1",0.00417358682830304,17.5029135405679,0.0305569827112264,0.976158202293779,0.997392448275317,-6.58779196274737 +"Q9VQR2",-0.00170396870454681,21.265093783237,-0.0301629112381732,0.976465570667208,0.997392448275317,-6.58780474719874 +"Q9W0K9",-0.00237782697302258,14.1760079728767,-0.0295625150737811,0.976933876068089,0.997392448275317,-6.58782390626929 +"Q9VU35",0.0016971559625425,22.6493945584786,0.0279917619295149,0.978159096425923,0.997392448275317,-6.58787220828909 +"Q9W141",-0.0020178216768052,21.8367570965712,-0.027699820405699,0.978386823492717,0.997392448275317,-6.58788089523817 +"Q9U1L2",-0.00964289772836935,17.4912647622519,-0.0276009985121519,0.978463909316543,0.997392448275317,-6.58788381513165 +"Q9VRL0",0.00246302400905307,22.7050911228593,0.0268875871306269,0.979020411204004,0.997392448275317,-6.58790458475952 +"Q7KTG2",-0.00162533063043924,18.1607224411744,-0.0248268176406627,0.980627994057026,0.997392448275317,-6.58796152600366 +"A1Z7G2",-0.00201548808082208,19.5779713674101,-0.0245803199229721,0.980820290267207,0.997392448275317,-6.58796803315543 +"Q9VYU9",-0.00249147452341347,17.8246472828938,-0.0237332239633386,0.981481130897541,0.997392448275317,-6.58798990024024 +"Q8IQB7",-0.00264756038838421,14.4966091229629,-0.0232401981531289,0.981865759289542,0.997392448275317,-6.58800227430829 +"Q9Y156",0.00356979749174968,16.2565457072292,0.0229716625184596,0.982075256288782,0.997392448275317,-6.58800890481507 +"Q9VVC8",0.00239640960544385,16.5945931575942,0.022499621378339,0.982443520693253,0.997392448275317,-6.58802037337997 +"Q9W4U2",0.00225859128462957,18.5290398359611,0.0206826652730114,0.983861063760514,0.997604300874622,-6.588062295578 +"Q9VZS1",-0.00249204998775809,15.4595455384721,-0.0202620325121913,0.984189239225839,0.997604300874622,-6.5880714978829 +"Q9W396",-0.00155154892783038,16.6154608346126,-0.0194040573991595,0.984858636265214,0.997604300874622,-6.58808968194663 +"Q9VVH5",-0.00138278536588388,22.4964242272748,-0.0191657919452296,0.985044534496704,0.997604300874622,-6.588094592232 +"Q9VCR9",-0.00110215860678053,19.2992502813786,-0.0170661997304558,0.986682706066661,0.997975039898948,-6.58813523904969 +"Q9VD14",-0.00126015537641067,17.6435612443799,-0.0170386466855544,0.986704204309364,0.997975039898948,-6.58813574114551 +"Q9VB81",-0.00167112518346713,21.017793274511,-0.0163137403070723,0.987269815863818,0.997975039898948,-6.58814865959044 +"P41093",0.00110050057034172,19.1467279740576,0.0156293369237868,0.98780383145873,0.997975039898948,-6.58816034089104 +"Q9VTZ6",-0.00144503239526017,17.0675368642175,-0.0147338781487122,0.988502535412659,0.998076409847648,-6.58817486858283 +"Q9VCT4",0.00389657872750071,13.5147154560514,0.0116755386457863,0.990888952766737,0.998200085322243,-6.58821802544816 +"Q9VME1",-0.00126630167430974,16.4235793264164,-0.0108972223029713,0.991496287522312,0.998200085322243,-6.58822741290931 +"P35992",-0.000911979269664798,15.9165487467213,-0.0102113000093088,0.992031530141288,0.998200085322243,-6.5882351493411 +"Q9V3N1",0.000593188889226326,18.3717707839947,0.00998469645796442,0.99220835556881,0.998200085322243,-6.58823759468713 +"Q8SX57",0.000533575941542352,17.9192122062186,0.00954309473831687,0.992552951644262,0.998200085322243,-6.58824220247486 +"O46106",-0.00057346569385075,16.9505281388616,-0.00908676500239743,0.992909042126603,0.998200085322243,-6.58824674499934 +"Q5U126",-0.000900523177545409,21.5869841651719,-0.00903629133645947,0.992948428641154,0.998200085322243,-6.5882472337703 +"Q9VJI7",-0.00100112279443465,17.3764185579276,-0.00844151713504292,0.993412554937004,0.998200085322243,-6.58825278831451 +"Q9VM50",0.000888386233874883,13.5571241896827,0.00704766655594741,0.994500242383306,0.998691393314482,-6.58826432430017 +"Q9VLS4",-0.000415617248926026,20.5308286231138,-0.0054194635733843,0.995770820649692,0.99877598708513,-6.58827517070525 +"Q9V9X4",0.000672462543764851,18.6610770939879,0.00540506814625188,0.995782054270127,0.99877598708513,-6.58827525396687 +"A1Z8D3",-0.000493499366754691,16.6866630877177,-0.00365307600855493,0.997149245798291,0.998825721058111,-6.58828373371356 +"Q9VI53",0.000270367980464314,16.3563316432423,0.00315965543752723,0.997534295347704,0.998825721058111,-6.5882855298958 +"Q9VN02",-0.000187926275881267,17.2026399805822,-0.00295538630712859,0.99769370060666,0.998825721058111,-6.58828619733873 +"Q9VWD0",0.000164782479640024,18.1298102585801,0.0018861014385826,0.998528138714087,0.998825721058111,-6.58828896354366 +"Q9VW57",-0.000123283038776734,16.6127472085243,-0.00150476726513196,0.998825721058111,0.998825721058111,-6.5882896544655 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_SFug_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_SFug_significant.csv new file mode 100644 index 0000000..abd5ac9 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SF1g_vs_SFug_significant.csv @@ -0,0 +1,12 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P06002",-1.09562743848828,17.0500392303794,-15.7099558545369,5.26665674082983e-09,8.78478344370416e-06,10.5077325867723 +"Q9V4E7",-1.39747885563374,15.6676851137624,-11.5151788847452,1.43208805226584e-07,0.000119436143558971,7.8088822522949 +"Q9W2N0",-0.532885038647706,16.2840950068443,-9.61909692880088,9.11450643574002e-07,0.000506766557827145,6.15057118923534 +"Q0E8E8",-0.567182386897635,21.7396571202544,-7.84890897576552,6.81691351902504e-06,0.00284265293743344,4.26102135029475 +"A0A0B7P9G0",-0.564586413906392,14.7571622353989,-7.22355674001133,1.5031584400568e-05,0.00417878046335789,3.49952160672344 +"Q9VU68",-0.591940801372402,19.3781374414581,-7.08389071841982,1.80497560996111e-05,0.00430099902487876,3.32207758166717 +"Q7JUS9",-0.61523525275328,20.5856564155254,-6.07349909008635,7.30569057270512e-05,0.0101549098960601,1.95374841112839 +"Q9VAJ9",-0.504196945167958,17.8432400985038,-5.22962798874512,0.000261233518040513,0.0229335530574513,0.6926775636966 +"Q9V3B6",0.594917757195388,13.0781141518043,4.79606299953825,0.000522767059207392,0.0340922458018409,0.0030596437794399 +"P05031",-0.600737922214011,13.5768487065002,-4.74509094279347,0.000568169461495648,0.0351002467323978,-0.0797939388933129 +"Q0KIE7",-0.54881745799122,14.1606864529342,-4.37885472704243,0.00104438425607733,0.0446675112599227,-0.685424036565176 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SFug_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SFug_vs_Earth_results.csv new file mode 100644 index 0000000..397ff5a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SFug_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.840900893783122,18.2100580023051,15.5572987936697,5.34590326098329e-09,8.91696663932012e-06,11.1194550730576 +"Q8MSI2",-0.761746348228662,24.0545359721853,-14.3899415265086,1.24378655630361e-08,1.03731798795721e-05,10.3503624939128 +"Q9VLB7",0.814590382361004,21.0791828750061,12.1414321974497,7.64819730152128e-08,4.25239769964583e-05,8.64141290504285 +"Q9V3N7",0.605663705165867,20.5385384549374,11.2022975384799,1.784468449805e-07,6.09982189762065e-05,7.82272010971313 +"Q9VA09",0.717891126775829,16.3754738181992,11.1453139276083,1.88222894273473e-07,6.09982189762065e-05,7.77078465737934 +"Q9VC06",0.861311545357717,16.3836066963437,10.9099830352644,2.35182916705713e-07,6.09982189762065e-05,7.55342125405357 +"Q9VLC5",0.701507924379619,21.7692412956303,10.6541292036049,3.01012062513573e-07,6.09982189762065e-05,7.3117179824941 +"Q9W2N0",0.542470712111857,16.2793021701122,10.4890259340873,3.53908587793702e-07,6.09982189762065e-05,7.15268587454308 +"O97125",0.662541786334245,18.4676698327401,10.3416708906836,4.09655644315795e-07,6.09982189762065e-05,7.00867318619383 +"Q9VZF6",0.551316518553072,14.9998471495332,10.2600792847688,4.44545737974668e-07,6.09982189762065e-05,6.92807586482191 +"Q7JYX5",0.793371589126803,14.9267010936988,10.2128811708348,4.66183215909502e-07,6.09982189762065e-05,6.88117097626951 +"Q9V4E7",1.30292940665369,15.7149598382524,10.1909192797227,4.76636672498647e-07,6.09982189762065e-05,6.85927462965581 +"A1Z803",0.62962900555803,18.7875165107467,10.0911823945785,5.27399072058792e-07,6.09982189762065e-05,6.75926479313235 +"Q7K569",0.647037923071398,20.5586605327605,10.0577394194349,5.45703050647733e-07,6.09982189762065e-05,6.72551953492041 +"Q7JUS9",0.711004592010102,20.537771745897,9.98968093149496,5.85105603981732e-07,6.09982189762065e-05,6.65651620760151 +"P21187",0.620905529959327,18.8653479843893,9.98966561390384,5.85114810323323e-07,6.09982189762065e-05,6.65650062738385 +"Q8IN49",0.504142342313791,16.8480441019707,9.66230769807349,8.22722873983444e-07,7.92143842715899e-05,6.31830687812878 +"Q24253",0.756144490100901,18.8785118802021,9.6260799877724,8.54831484945215e-07,7.92143842715899e-05,6.28022809199845 +"Q9VFN7",-0.588266316630882,18.6432717821932,-9.53587714913567,9.40801463027602e-07,8.0858089543163e-05,6.1848409666896 +"Q9VHR8",0.524861763115318,20.3332388569267,9.50771109938777,9.69521457352075e-07,8.0858089543163e-05,6.1548868204976 +"Q9VW54",0.560651678722614,15.8118021696516,9.42771948006087,1.05636655371627e-06,8.39056862666063e-05,6.06937400611311 +"Q9VN13",0.710376988671154,17.0180794147003,9.34409061189907,1.15620459491056e-06,8.76613301959462e-05,5.97926656727319 +"Q9V3A8",0.688036884714654,15.5547024449285,9.21866585968411,1.32549493117208e-06,9.61271976171751e-05,5.84275535503481 +"Q9VZU7",0.551207876873782,17.5103451390685,9.15115654723724,1.42751959917933e-06,9.92126121429638e-05,5.76859030070967 +"Q9VAJ9",0.869971970779755,17.6603525856979,9.04089400488119,1.61280444369697e-06,0.000107606312483462,5.6464075820812 +"O17444",0.784590846022143,15.3876834242501,8.88870822721115,1.91232812792458e-06,0.000122683204514546,5.4756014650371 +"A1ZB70",-0.57368743941745,16.0980868163516,-8.85368455015549,1.9894192478524e-06,0.00012290190020066,5.43593222374933 +"Q9W3Y3",-0.482577044523619,18.1323159790602,-8.79843975018207,2.11790353631196e-06,0.000124929731389636,5.37308290116242 +"Q9VFQ9",0.448707242009668,19.0889759707233,8.77623452565577,2.17203969442414e-06,0.000124929731389636,5.3477251885744 +"Q9VIE8",0.457393424264129,24.7787791147132,8.68795439690959,2.40246866190534e-06,0.000133577257601937,5.24636421625413 +"P10676",-1.06222841949458,19.7094940821678,-8.63038009465746,2.56684299179316e-06,0.000138112713235839,5.17978410098809 +"Q9W299",0.779784425939949,14.7567095230134,8.50399183435276,2.97170591564609e-06,0.000154900170853052,5.03229680713206 +"Q9U9Q4",0.48639871112902,17.9078327292421,8.40428487666002,3.33955117724287e-06,0.000168799132231549,4.91464114613219 +"Q7K148",0.66557861952921,16.828608977072,8.35876658906021,3.52350677061555e-06,0.000172859096864316,4.86054237432718 +"Q9VXP3",0.652701908406097,14.5121579002444,8.25107396945007,4.00357387932279e-06,0.000190798892306012,4.73157440091752 +"A1Z9A8",0.522674084939718,16.6312088986939,8.15514229783764,4.49070600444084e-06,0.000208069378205759,4.61552548350298 +"Q9VXZ8",0.600293034583544,17.9019418010034,8.03662180748131,5.18227510256964e-06,0.00023362256408341,4.47061512532797 +"P45437",0.55850861028784,16.0136600485525,8.00991301330141,5.35341333693406e-06,0.000234986669631737,4.43772275963107 +"P23779",-0.470902804573214,20.984009434458,-7.90981075565056,6.05089828451116e-06,0.000258792265091401,4.31366345311621 +"Q0E8E8",0.572028141560427,21.737234242923,7.88530172168819,6.23614936375005e-06,0.000258850606650961,4.28309964899301 +"Q8SZN1",-0.609020650279735,20.1626511352097,-7.86901249174439,6.36263481576103e-06,0.000258850606650961,4.26274491425611 +"Q9W2L6",0.43362513511978,20.9501305306961,7.79356194541695,6.9855238077599e-06,0.000277425088365322,4.16803041468422 +"Q9VHT3",-0.462898367023579,15.8020360385269,-7.68816190281244,7.96768297196448e-06,0.00030702896461918,4.03451900014408 +"Q7K2Q8",-0.398395918383681,16.1083529272324,-7.63161262734989,8.55487079920439e-06,0.00030702896461918,3.96230543232071 +"Q9W309",-0.560497296245718,18.3949158035826,-7.62883174579012,8.58491957031523e-06,0.00030702896461918,3.95874369185749 +"P19334",-1.02046554310178,15.2730765209876,-7.62520210473167,8.62431007415352e-06,0.00030702896461918,3.95409337320063 +"Q9VKD3",0.499923639365804,18.6746524379746,7.62272575785348,8.65129576564835e-06,0.00030702896461918,3.95091969305139 +"Q9W253",0.514689251093905,15.1130395169647,7.5705372773946,9.24160553104435e-06,0.000314917925486771,3.88385182387437 +"Q9VFZ4",0.668024980805045,16.4946847755605,7.56972004592981,9.25118606046271e-06,0.000314917925486771,3.88279880479551 +"Q7K485",0.475719983612443,20.5141273347905,7.50364976506161,1.00621286257171e-05,0.000335672610953923,3.79738030681233 +"A0A0B7P9G0",0.759275092592084,14.659817896056,7.47096919561871,1.04911412666095e-05,0.000343122032013818,3.75492015092853 +"Q01637",0.485075439620372,15.9273595432334,7.45485876988038,1.0709811381243e-05,0.000343537795844486,3.7339375303324 +"Q9VPN5",-0.431240780039978,21.2597316195653,-7.43716309722637,1.09556432590058e-05,0.000343640361555284,3.71085119895161 +"Q9VH81",0.57411686681893,14.481187237746,7.42521489677813,1.11250476762502e-05,0.000343640361555284,3.69524004623565 +"Q9W461",-0.458675375780478,16.2136948665308,-7.20929110974761,1.47236155551422e-05,0.000446527104472314,3.40987715428605 +"P29613",-0.388251559438565,23.8922040676639,-7.1628401401392,1.56501882708175e-05,0.000466152036352207,3.34767721887371 +"Q9VBP9",0.517979767166283,13.9658193400898,7.08776570655679,1.72822909855903e-05,0.000505734409894117,3.24653561926294 +"Q7K1Z5",-0.521209839576619,15.9823533694555,-7.04716403245263,1.82400978189872e-05,0.00052456005451846,3.19151887517008 +"Q9VM10",0.500079807440496,17.1192967560435,7.03324607598957,1.8581377395187e-05,0.000525317584663931,3.1726080458485 +"P41093",0.622296737158745,18.835029355193,7.01701959954066,1.89879143346433e-05,0.000527864018503082,3.15052728328346 +"Q9VXQ0",0.532641285538663,14.9126197120224,6.91282866565852,2.18360052541127e-05,0.000590147723066917,3.00788909684855 +"Q9W1H8",0.585664501461615,20.5577442943077,6.909441457055,2.19359465408566e-05,0.000590147723066917,3.00322701347888 +"Q9VPE2",0.449053627262675,20.8143570054331,6.89157113258004,2.24713829538911e-05,0.000594956615350641,2.97860454739511 +"P35381",0.381231344047116,25.6871452573115,6.8291075767353,2.44555260108266e-05,0.000637372146657167,2.89219381469047 +"Q9VQE0",0.549085874673349,17.2622245429953,6.76557768044717,2.66669822006875e-05,0.00066912692012222,2.80375402103535 +"Q9VF86",0.470456506848713,17.632686977658,6.76349320350675,2.67430709946676e-05,0.00066912692012222,2.80084272923557 +"Q9VHC3",0.441742671876355,17.1407110719793,6.7598286387645,2.68774002686983e-05,0.00066912692012222,2.79572313687441 +"Q9VMR6",-0.426275564100095,18.8334896695247,-6.73344332185233,2.78661393990928e-05,0.000683109510405203,2.75880624040721 +"Q9VIF2",0.418378605696796,17.4516358057169,6.72325866057796,2.82581272289922e-05,0.000683109510405203,2.74453046006375 +"P32392",0.3893464669619,17.5738647926503,6.7019516407846,2.9097382738344e-05,0.000693349062965112,2.71461770170418 +"Q8SXQ1",0.49644565554901,18.6079920917571,6.67001828839542,3.04054504214158e-05,0.000714313962012979,2.66966786636014 +"Q9VV31",-1.30560764476998,15.7123156107349,-6.58465587221183,3.42204185212756e-05,0.000792773029076218,2.54880821647292 +"Q0E9B6",0.415810007389194,19.0414693457093,6.56615176496106,3.51129802706529e-05,0.000802307549197932,2.52247409103952 +"Q9V3B6",-0.83242353189106,13.1968670391521,-6.50051019803059,3.84852351382218e-05,0.000867478002845324,2.42866611817175 +"Q9VJQ3",0.450210331341527,20.5274965930756,6.43933809785002,4.19403334039342e-05,0.000932753014903496,2.34069576853727 +"Q24276",-0.547336177520485,18.7145023724167,-6.41881637631032,4.31723999799635e-05,0.000947520567981304,2.31106475018615 +"Q9VZJ2",-0.389249993012832,17.331884416057,-6.40191371087091,4.42161907783873e-05,0.000957826054783765,2.28661419107698 +"Q9W3J5",0.639137617105982,16.0545409045738,6.35824504044614,4.70395021868547e-05,0.00100592166214966,2.22325661951075 +"Q9VNW6",0.886768112530575,21.564159826657,6.33388204383955,4.8697680434027e-05,0.00102819912612604,2.18779069022402 +"Q9VNB9",0.743410430435549,18.831848590577,6.26681719658558,5.35925012613961e-05,0.00111740365130011,2.08972345721832 +"Q9VKC8",0.447678020130937,17.7959947116844,6.15765944566883,6.27152305851212e-05,0.0012914691927899,1.92872340149797 +"Q9W199",0.547951574963284,15.7684216411779,6.13398771533647,6.49038885525695e-05,0.00132024007445959,1.89358281229857 +"O01666",0.371951042810082,22.7594565068746,6.12031534350075,6.62049596004225e-05,0.00132157295965688,1.87324939333373 +"Q9VA42",-0.755475941357517,20.3322919174719,-6.11669573525729,6.65540339395553e-05,0.00132157295965688,1.86786182914778 +"Q9VWP2",-0.4132668214692,19.6757418092823,-6.07328868073346,7.08963134788472e-05,0.00139123589273785,1.80310565945423 +"Q9V396",0.411437744347324,20.879264764651,5.9497875846532,8.49842150126339e-05,0.00164829849582643,1.6173711659644 +"Q9VLY7",0.423146754673505,15.436156849296,5.93348059727025,8.70562881515579e-05,0.00166907917973332,1.59268176892105 +"Q9VK39",-0.369278894071545,18.1660084981445,-5.89917370822103,9.15930139933931e-05,0.00173610394705659,1.54061392093431 +"P42281",-0.416957813328775,21.8638143349238,-5.86082887544215,9.69628614519468e-05,0.00181723654945896,1.48221556765722 +"Q9VTZ4",0.485339585691364,18.1463896215055,5.83379294598323,0.000100949599381116,0.00186455764346721,1.44091217148136 +"Q7KSQ0",0.309008841693934,20.9299506951147,5.80554990234114,0.000105300980663889,0.00186455764346721,1.39765134170524 +"Q9VLP0",-0.438582032892057,16.1555043695167,-5.80426273811205,0.000105503981985272,0.00186455764346721,1.39567699008346 +"Q9VHB8",0.515261203255758,15.4855106815594,5.80177493677514,0.000105897517616228,0.00186455764346721,1.3918603272692 +"A1ZBU5",-0.412583764370467,16.6989775889379,-5.79991029646444,0.000106193500207036,0.00186455764346721,1.38899909858416 +"A1Z843",0.361834528747448,17.6057773884125,5.79650307009117,0.000106736616950302,0.00186455764346721,1.38376951924495 +"Q9VJZ5",-0.344010016546148,16.9555165338443,-5.79290928766272,0.000107312670127609,0.00186455764346721,1.37825177861255 +"Q00174",0.282262623317507,21.9682500671383,5.7492463784572,0.000114581410973607,0.00196847906746987,1.31106387953147 +"Q9V3I2",0.365778292767651,17.5532855384084,5.74305314855913,0.000115654045930484,0.00196847906746987,1.30151141717273 +"Q9VZI8",0.42065940842998,15.7445153670247,5.72758707270755,0.000118379523518409,0.0019943324556092,1.27763217956652 +"Q9VGA0",-0.409564143867787,19.3295819603271,-5.72098145003274,0.000119564295899832,0.0019943324556092,1.26742268640607 +"Q7JWF1",0.439547781873934,20.4794097422952,5.68687700995652,0.000125884766000751,0.00207896821474508,1.21461099142865 +"P06002",0.703099419449481,17.2463032398988,5.64431571036556,0.000134274012184694,0.00219577502278499,1.14846708906311 +"Q9W308",-0.597762160571264,17.1482275849802,-5.63048809261204,0.000137125664962947,0.0022206369821184,1.12692130266486 +"Q8SXF0",0.521309132596532,16.3341251347788,5.60465183790913,0.000142627433575287,0.00228752460772672,1.08658982513068 +"Q8T3L6",-0.352859926715507,17.3744160041113,-5.59566362877255,0.000144595953348556,0.00229701000176563,1.07253620370098 +"Q7K5K3",0.3197564623812,22.7969727208464,5.58231449774309,0.000147572920283553,0.00232218519842421,1.05164244426893 +"Q7K3V6",0.482075888134471,16.2627624435139,5.57132820315482,0.000150071708395397,0.00233943560377124,1.03442761325864 +"Q9VNE9",0.509236117966559,18.695510857436,5.55594230733019,0.000153646848783995,0.00237299022010837,1.01028956119394 +"Q9Y143",-0.319097896471099,20.969590822142,-5.51688671644254,0.000163133673882035,0.00249639420215811,0.948863945780634 +"Q9VW68",0.351820816761389,22.9265726730201,5.50215405180509,0.000166871921301991,0.00253038513392473,0.92563562791768 +"Q8SZK5",-0.880361957186858,15.38706301649,-5.47734052268736,0.000173374754720216,0.00258715936466786,0.886442566525387 +"Q7K1S1",0.497128384407588,16.5686948615256,5.47605778939547,0.000173718134797842,0.00258715936466786,0.884414074118385 +"Q9VV36",-0.556198564578295,23.1814180507471,-5.40886575668889,0.000192751719904186,0.00284522007787773,0.777826995095412 +"Q9VPX6",0.334822989343323,21.4621553963967,5.38836978368122,0.000198987977761037,0.00289088463292006,0.745185148911726 +"Q9VMI3",0.378702982719837,20.204579091252,5.38732483534859,0.000199311590399165,0.00289088463292006,0.743519353958393 +"O76902",0.381074588025943,17.3595977949114,5.37281273704318,0.000203863927945661,0.00293142268804622,0.720368865389927 +"X2JAU8",-0.334014278128262,21.8253157013207,-5.36011947776399,0.00020793596053492,0.00296442036044655,0.700095189297329 +"Q9VWV6",-0.552855854456649,23.6999618259412,-5.32871976772409,0.000218383391347301,0.00307509927824455,0.649844685580611 +"P12080",0.300537725287668,19.0169806087515,5.32578870386423,0.000219386579203298,0.00307509927824455,0.645146781608215 +"Q9W1R3",-0.355342081737344,17.0211428380692,-5.31360942111983,0.000223607581076244,0.00310814537695979,0.62561273726249 +"P54192",-0.385938646144062,24.2972686638622,-5.30241643108237,0.000227562554717972,0.0031369780270213,0.607641958311412 +"Q9W3W4",0.322971903562864,15.9500408651397,5.28010958999072,0.000235666855263397,0.00321488578888962,0.571774329422801 +"A0A0B4K692",0.394748659568283,15.9791479331723,5.2763328866398,0.000237068916087184,0.00321488578888962,0.565694693971351 +"P82890",-0.454651506600708,19.6627560304689,-5.26988804101968,0.000239481902821522,0.00322141785408305,0.555315280791217 +"Q7K5M6",-0.354121950342268,18.2198643339424,-5.26445226458333,0.000241537276146541,0.00322307341289945,0.546556391946903 +"Q7K511",0.733084391750877,16.74716901557,5.25912862071949,0.00024356833518905,0.00322438081821695,0.537974126965024 +"Q9VXC9",0.610837544545554,18.983599107953,5.25175419520813,0.000246411680831728,0.00323633609155372,0.526079156284266 +"Q9VEV3",-0.288097810876742,18.2829089593491,-5.2185972970529,0.000259636379588165,0.00336895835684257,0.472501923118867 +"Q95R98",0.410132406723337,16.3566395389599,5.21637554962302,0.000260548937669479,0.00336895835684257,0.468906316705362 +"Q9VH95",-0.296644164227626,20.9121626299367,-5.19463262457506,0.000269660586232854,0.0034599527525877,0.433681519663698 +"Q9VV39",0.328210017096076,17.4982874867437,5.15690497950196,0.000286278857917743,0.00359417473759349,0.372402760037398 +"O77477",0.363674600670219,16.8249105072404,5.15671268989622,0.000286366276391569,0.00359417473759349,0.372089923899551 +"Q9VVW3",0.431454268865648,16.5821030242498,5.15469570854555,0.000287284934605525,0.00359417473759349,0.368808182903887 +"Q9VDK9",0.317025731833628,15.5471054971165,5.15151347149216,0.000288740656377415,0.00359417473759349,0.363629347173863 +"Q9V3D9",0.288460966492821,17.396297402847,5.13495177117507,0.000296443634925609,0.0036627258004142,0.336653625642145 +"O18413",0.281028275309094,19.3819743915117,5.11399209939944,0.000306504457252791,0.00375918701983571,0.302459544175387 +"Q9VDT1",0.379567315580644,19.1302733857646,5.09602320307836,0.000315416657418468,0.00384025536185404,0.273095934073904 +"Q9NJH0",0.300324812525865,21.165528854271,5.04496160837068,0.000342267050355657,0.00413696695647273,0.189409748126343 +"Q9XYZ5",0.336519547062682,16.0299220336324,5.03713813863217,0.000346589470569078,0.00415907364682894,0.176555804911695 +"Q7JYW9",0.651452471682957,17.2082297076694,5.00401478407111,0.000365537871514461,0.00433332124609922,0.122040867279999 +"Q9VTY2",-0.405069623508282,20.8168205199622,-5.00271059254746,0.000366305932673855,0.00433332124609922,0.119891325300713 +"Q9VVB4",-0.392710240963165,15.9818065694565,-4.95631428238049,0.000394766590332817,0.00461756832094841,0.0432705876955914 +"Q23970",-0.461688407169788,21.4113432635012,-4.95114172012395,0.000398080973265514,0.00461756832094841,0.034710232066308 +"Q8IQG9",-0.39354756282566,20.4871537946686,-4.95027531776471,0.000398638991736553,0.00461756832094841,0.0332760200644691 +"Q9I7K0",-0.483577179512279,16.2388067035861,-4.93866556871223,0.000406196433760919,0.00467265966560837,0.0140478204076819 +"Q7K2E1",0.414843527343514,17.3590477558017,4.93315752918589,0.000409834576276242,0.00468221967964912,0.00491895096846484 +"Q9VGW7",0.37420971159499,16.7559572556592,4.90574702976224,0.000428456983439239,0.00486167515902484,-0.0405714291588044 +"A1Z8Y3",-0.352786641689459,15.0221821846939,-4.87022828346382,0.000453923038666953,0.00506327702488385,-0.0996686368869826 +"Q9VAY9",0.5540013582134,14.5106593753941,4.86754756620025,0.000455908630951998,0.00506327702488385,-0.104135758673054 +"Q8T4G5",0.247521842944472,19.6840332220789,4.8640730888947,0.000458495768056947,0.00506327702488385,-0.109927023156977 +"Q9VSS2",0.367051995745269,16.1558596004614,4.85923728463289,0.000462122310398022,0.00506327702488385,-0.117990031859458 +"Q9VB22",-0.365847204306956,17.2544758088121,-4.85722675777723,0.000463638948785995,0.00506327702488385,-0.121343214501792 +"Q9VT23",0.462658046748054,18.2879611352909,4.856171229561,0.00046443728105949,0.00506327702488385,-0.123103853804299 +"Q9VKU5",-0.564251105500563,13.6286484352689,-4.83987192905234,0.000476950326700165,0.00514572513874906,-0.150310197004375 +"Q8IN44",-0.454274607506569,19.9526799255842,-4.8383074498102,0.000478169901982077,0.00514572513874906,-0.152923440267145 +"Q9VU68",0.470565659899201,19.4388250121947,4.81267575668434,0.000498624884576456,0.00533145068893287,-0.195783773149755 +"P29327",0.282235810967908,19.481142521674,4.79468369264894,0.00051353154637761,0.00541088060764,-0.225921229459494 +"Q9W3M7",0.266245824101228,16.0166096209844,4.79289039000289,0.000515042789950751,0.00541088060764,-0.228927420117314 +"Q9VBC7",0.541127349488585,16.1411389916009,4.78954881341045,0.000517871275354835,0.00541088060764,-0.234530175886071 +"A8JTM7",0.459425213061792,17.6058621948845,4.78818623648275,0.000519029314881535,0.00541088060764,-0.236815202474968 +"Q9VAM6",-0.300401865177903,22.128631463793,-4.78180495158823,0.000524489044637745,0.00543383681028421,-0.247519787372947 +"Q7JXZ2",0.539345138847821,17.4676856649053,4.75686558718935,0.000546412662402573,0.00562602667214501,-0.289406566460726 +"Q9VCX3",0.518069878327687,12.8291074877683,4.7352133465394,0.00056622775171368,0.00579428153287373,-0.325838140458568 +"O76742",0.380940291480133,18.0312242183932,4.73071110421412,0.00057044198813803,0.00580181241594046,-0.333421143017751 +"Q9VA37",-0.30916024370282,21.8216105560219,-4.72450445958247,0.000576305693433318,0.00582592664634408,-0.343879118032521 +"Q9VBI2",-0.246891534909135,22.141419187168,-4.66564958190963,0.000635159212079355,0.0063822022033034,-0.443293310140679 +"A1Z7B8",0.45333221792278,16.9896802323546,4.65960413764786,0.000641552123852933,0.00640783797956103,-0.453529933927306 +"Q9VUY9",0.482887429018469,19.7332429394191,4.64597708571048,0.000656211321008825,0.00651524097287333,-0.476621293012546 +"P54622",0.401401969386374,17.9451174135033,4.63325725852746,0.000670211890724116,0.00660860265770077,-0.498196466972224 +"Q9VFS8",-0.342733959702052,17.2701073535087,-4.62755650144836,0.000676588015095623,0.00660860265770077,-0.507872601050267 +"Q9VEV7",0.607278813553421,12.8928523517671,4.62674516290641,0.00067750063217436,0.00660860265770077,-0.50925005128019 +"P32748",0.372011696852017,17.2765319360148,4.57751878686499,0.000735360050380987,0.0070955510569068,-0.592977649096863 +"Q7JQR3",-0.294207812272674,19.1028616637502,-4.57705476994146,0.000735929456142012,0.0070955510569068,-0.59376830966123 +"Q9W552",0.299727535124125,16.2500515890974,4.55295384569788,0.000766148818986556,0.00734446109235388,-0.634871395093385 +"Q9VQ91",-0.389367524276556,15.0426531966247,-4.52166318806071,0.000807335353707939,0.00765596207447507,-0.688342018349251 +"O02195",0.333860268917107,18.6512143706461,4.52130255442975,0.000807823336395451,0.00765596207447507,-0.68895897397504 +"Q7JVK6",0.31929508615044,17.3515179331666,4.51597783455481,0.000815064411869012,0.00768094598303679,-0.698070088423248 +"Q9VNW0",-0.527409600156286,14.698542230532,-4.45394354775309,0.000904612679650978,0.00847499797128523,-0.804466530514349 +"Q7KUT2",0.27711679924121,18.161545579563,4.4507535272253,0.000909487192362144,0.00847499797128523,-0.809950123591562 +"A1Z7X8",0.337571128192497,17.007407514024,4.44239142462338,0.000922395764381453,0.00852726472944542,-0.824330098925799 +"Q9VCE1",-0.36688929379746,13.6712485490011,-4.44051368273875,0.000925320693063322,0.00852726472944542,-0.82756030091992 +"Q9VZD9",0.488771420903719,14.4780193754072,4.43678978566825,0.000931150079970772,0.00853383699665521,-0.833967584439389 +"Q7KV34",0.398409889692061,20.9712031227304,4.42772278586678,0.000945504730234387,0.00861804311492326,-0.849574883736746 +"Q9I7Q5",-0.374750749907619,20.77219857637,-4.42010583671628,0.000957742510115362,0.00868214405908926,-0.862693541307993 +"Q9VMW7",-0.289149967790106,19.4222511152253,-4.4150276661545,0.000965993279246392,0.0087096042690972,-0.87144339360624 +"Q9VJE3",-0.400696268742943,15.3276826288168,-4.38641904345694,0.00101388443361083,0.00909225395302611,-0.920792355704317 +"Q9V9Q4",-0.280718780028256,19.1598922737278,-4.37209245411816,0.00103879349668154,0.00926581578858183,-0.94554034194187 +"Q9VI09",-0.308569113344671,20.1575178399157,-4.34865991413603,0.00108092191743752,0.00959030722492437,-0.986068002944181 +"Q9VED8",0.573661669605334,16.2710401187074,4.33863934410344,0.00109947859831558,0.00970333493116607,-1.00341779645817 +"Q8MLS1",-0.339740585962389,18.4010456439451,-4.32423195776977,0.00112674395576277,0.00989162588532789,-1.02838252780446 +"P46415",0.391581563534654,18.0968893840846,4.31806704474092,0.00113862553940009,0.00994359895141022,-1.03907192113767 +"Q9VZG1",-0.276948482443618,17.8075359182889,-4.30301611124047,0.00116818566223635,0.0101152901110178,-1.06518636317661 +"Q8IQ70",0.287705873004779,18.0309499848255,4.30189754436124,0.00117041426344511,0.0101152901110178,-1.06712814380971 +"Q9VV46",-0.466017172177146,23.8606421778444,-4.28503368140439,0.00120455619758977,0.0103566996782461,-1.09641948635763 +"Q8SYJ2",-0.268878952512011,22.5654017784584,-4.27920699241863,0.00121659283112616,0.0104065479093253,-1.10654717497911 +"Q9W2E7",0.37425437252001,18.4701927689069,4.26286175414916,0.00125103259014256,0.0106465426548867,-1.13497715576304 +"Q95RI2",-0.43707851704489,16.7551910613106,-4.25502700433557,0.00126789951535693,0.0107353116325653,-1.1486145680166 +"Q9VFS4",-0.375025967631645,15.3165897074241,-4.22962885741575,0.00132422613557716,0.011150642312991,-1.19286789549132 +"A1Z8H6",-0.578247457091031,16.8181635547737,-4.22694776080082,0.00133032243422374,0.011150642312991,-1.19754333608034 +"Q9VH66",0.296141210341434,16.766556235855,4.22065887869796,0.00134473716303224,0.0111580518538039,-1.2085131582541 +"Q9VN01",0.29816099880558,16.0477089479542,4.22005047348628,0.00134614029334455,0.0111580518538039,-1.20957462915436 +"Q9V521",-0.722962615495021,17.7263101957716,-4.21782971303436,0.00135127486478921,0.0111580518538039,-1.21344946513576 +"Q8SWS3",-0.373762531835172,16.5248598142761,-4.21377310640489,0.00136070679732358,0.0111805859011612,-1.22052884522644 +"Q9VSA9",-0.394658566382258,22.3612165689411,-4.20092190218631,0.00139104221564369,0.0113738157632043,-1.24296728192842 +"Q8IRD0",0.297076474327575,17.5066197404346,4.19695110309462,0.00140055711729279,0.0113957525446067,-1.24990379028804 +"Q9VQI7",-0.234208508299027,19.1668105461563,-4.18488912594641,0.0014298780683842,0.011577847660509,-1.27098445241424 +"Q9VJ68",-0.351088140840915,17.8060703427041,-4.17450282028007,0.00145563767771486,0.0117294862146299,-1.28914834125121 +"Q9W5B4",-0.437095645941714,18.6470192096055,-4.16987636764174,0.00146726704756507,0.0117482208311398,-1.29724271301959 +"Q8SX89",-0.387290657472574,15.4983298505622,-4.16798495099612,0.00147204925282267,0.0117482208311398,-1.30055252402506 +"Q9VVW7",-0.277312845573894,16.5891906259764,-4.16087401617461,0.00149017396479007,0.0117976989844713,-1.31299922110048 +"Q9VB46",0.396343096592275,15.2514540147666,4.16000891293104,0.00149239477561357,0.0117976989844713,-1.31451380673111 +"P17336",0.351953060932285,20.5889882936181,4.15462614762545,0.00150629050091647,0.0118513799789089,-1.32393938935049 +"Q8MR62",-0.264923869115936,17.6719210883795,-4.15139401615068,0.00151469894358272,0.0118615860934083,-1.32960044598629 +"Q9VXN3",-0.264374686120686,16.9427403797677,-4.14510679366717,0.00153119544076367,0.0119347382952981,-1.34061542493004 +"Q9VZ64",-0.228970073097152,19.4213569768199,-4.14105503929699,0.0015419254283819,0.0119624726257722,-1.34771600565322 +"Q86BS3",-0.259060900171125,18.9698418694989,-4.13680905930268,0.0015532537324816,0.011994570489719,-1.35515868595057 +"Q27272",-0.33444238684115,15.6021802627574,-4.13262103990571,0.00156451222099874,0.0120258358738521,-1.36250149223764 +"Q9VWI0",-0.254338961190225,20.9856061567575,-4.12865566526705,0.0015752504180287,0.0120528334737242,-1.36945551086903 +"Q8MZI3",0.549297668779911,17.7679037356023,4.11564002260629,0.00161103849013961,0.0122703753495565,-1.39229154345824 +"Q8MLS2",0.215791353962722,17.4029210571991,4.10632801336741,0.00163716099653058,0.012407508840661,-1.40863951637345 +"Q9VGS3",0.336693504964558,19.3659122521005,4.10298272255622,0.0016466525414644,0.012407508840661,-1.4145144610979 +"P45888",0.31284645665132,17.1822515874422,4.10133132733939,0.0016513590903038,0.012407508840661,-1.4174150064775 +"Q24238",0.305426849564324,16.3330490844813,4.09848368414904,0.00165950786949024,0.012412821194214,-1.42241727474622 +"O18333",0.288581897579981,17.4998411329893,4.09266035835156,0.00167630220216809,0.0124521318763319,-1.43264911816713 +"Q9VL01",-0.313739684025208,20.48499878342,-4.09149161860767,0.00167969404806635,0.0124521318763319,-1.4347030315728 +"Q9VH98",-0.293625711540095,17.0702290275465,-4.08263526687334,0.00170562931742436,0.0125884500064771,-1.45027112802997 +"Q9W266",-0.25056550927961,18.4661180478504,-4.07832363698617,0.00171840590563058,0.0126268768748538,-1.45785296224081 +"P05031",0.600836507257874,13.5767994139783,4.07341461973933,0.00173307384893204,0.0126788034211344,-1.46648738549594 +"Q9VE50",-0.402572325007242,14.6335216585922,-4.06680726979741,0.00175302195549343,0.0127687363395766,-1.4781125149475 +"Q9VN14",0.282446570030022,19.2821451753122,4.05793763628025,0.00178017569585576,0.0129101437421191,-1.49372428220871 +"Q9VXN2",-0.375230240013313,18.4971098614017,-4.05218654397905,0.00179801535217006,0.0129830718935916,-1.50385083899806 +"Q9VG81",0.819544286126304,15.6615020835819,4.02902126332554,0.00187177389446168,0.0134574088619055,-1.54467071091584 +"Q9VAC1",0.285033994167399,23.3040266422312,4.02322054595814,0.0018907305288741,0.0135353584642146,-1.55489976017148 +"Q9W0Z5",-0.390466526975171,16.9830586549244,-4.01884356292908,0.00190516623396177,0.0135804157190096,-1.56262015412352 +"Q9VEN3",-0.232584309960099,17.5907609103476,-4.00532956520741,0.00195046257771073,0.0138441343813681,-1.58646761130557 +"Q9VVL5",0.235289580055934,17.314652758469,3.9998722656118,0.00196906974361016,0.0139169844590752,-1.59610234493708 +"Q9VWH4",-0.217193493714063,24.3988213544061,-3.99420914475246,0.00198857341763162,0.0139955293696605,-1.60610317674311 +"Q6IHY5",-0.218814214068853,20.9493898108014,-3.98423630555683,0.00202340818131213,0.01418086069928,-1.62372148980224 +"Q9V8F5",-0.339228126635172,16.0703272697061,-3.9785311935328,0.00204361984502419,0.0142625853619261,-1.63380412545234 +"Q9VGL0",-0.289125064455819,12.8425925400498,-3.97389808221623,0.0020601876523291,0.0142993248844058,-1.64199424496586 +"Q9VD02",-0.248834890006574,18.2700987234306,-3.97065010368694,0.00207188524963746,0.0142993248844058,-1.6477368940413 +"Q9VX69",-0.445344757763817,18.2017974902117,-3.96989840452186,0.00207460229138262,0.0142993248844058,-1.64906607615512 +"P50887",0.660040556929665,17.682586602018,3.96319379671126,0.00209900029189919,0.0144079526209376,-1.66092350355617 +"Q9VIQ5",-0.40409763903163,16.5531611775232,-3.9584925965278,0.00211628511113671,0.0144544854476813,-1.66924004185295 +"Q9U4G1",0.322773564758656,19.3958635657509,3.95664704519296,0.00212311087211146,0.0144544854476813,-1.67250536867593 +"Q9VSL5",0.286202272691128,17.5682904574253,3.95175380271349,0.00214131914059851,0.0145191883191801,-1.68116432603648 +"Q94523",0.588152281167012,20.3945432060371,3.94446903155049,0.00216872678546232,0.0146454910046605,-1.69405891816887 +"O62619",0.324388577844335,22.2690379264126,3.94053471150174,0.00218367983680212,0.0146870079346207,-1.70102476360031 +"Q9I7K6",-0.278780094355412,16.2267341356931,-3.92985850796503,0.00222479699642413,0.0149034593977328,-1.71993366017595 +"Q9VD09",-0.486013798365779,14.5456340137454,-3.9253320564663,0.00224247092190846,0.0149617659909733,-1.7279533419355 +"O16797",0.502613650816551,16.5525710859797,3.91248517283469,0.00229342881620828,0.0151686526905444,-1.75072352135521 +"Q9W5W7",0.331453081626757,14.8810255339074,3.91174137163872,0.00229641560787084,0.0151686526905444,-1.75204225490498 +"Q9VXN4",0.248329320423585,14.9488780574788,3.91066105654216,0.00230076086972886,0.0151686526905444,-1.75395769323358 +"Q9VMT5",0.33534705118895,16.4770167758862,3.9064306439003,0.00231785858460029,0.0152212130673752,-1.76145925022183 +"Q7KUA4",-0.214540315869375,18.7689083560596,-3.90219841889346,0.00233509524202235,0.0152348064384242,-1.76896541850176 +"Q9V3L6",0.290555000340756,15.8087979639948,3.90144057259942,0.00233819571237206,0.0152348064384242,-1.77030966271323 +"Q9VWW2",-0.350915569127466,15.1202617220001,-3.89664436228667,0.00235791682128857,0.0153035224043165,-1.7788180628718 +"Q9VPL0",0.423491635601778,15.1122222559459,3.87225981199684,0.00246087663190994,0.0159098535737433,-1.82210306726805 +"Q9VJD0",0.256501457569691,16.0989445338959,3.86097427866812,0.00251009127602814,0.0161653754765056,-1.84215113581193 +"Q9W414",0.199496933106925,19.5209696951664,3.83685304848855,0.00261872185326809,0.0168001078894276,-1.88503228035298 +"A1Z7K8",-0.240260258502808,17.5933661276658,-3.81724345836424,0.00271060883133804,0.0173229713818845,-1.919923488229 +"Q27377",-0.422820358633789,19.9948450259028,-3.80859918832005,0.00275216574335227,0.017521421602716,-1.93531266139368 +"Q9VRJ6",-0.256559338362411,15.7462232218209,-3.80635172636584,0.00276307768554881,0.017524006005686,-1.93931459769243 +"P54185",-0.373529236940509,17.3413432621353,-3.80309714555833,0.00277895865706204,0.0175579660605284,-1.94511046506798 +"Q9VM12",0.242195126366429,18.9156264110288,3.79578827332366,0.00281496719622514,0.017718359559636,-1.95812895516464 +"Q7KVQ0",0.376569264783447,15.6253681352992,3.78437916614193,0.00287214179876464,0.0180032737447667,-1.97845786071196 +"Q24439",-0.241374411423003,24.295981650554,-3.78247130935491,0.00288181899871266,0.0180032737447667,-1.98185814383362 +"Q9VAY3",0.318412369322763,13.9808073984718,3.77730531448642,0.00290819165666602,0.0181002376243243,-1.99106644497327 +"Q7K4T8",0.653598197948865,13.6913233680706,3.76269524112763,0.00298413295257222,0.0185038429921578,-2.01711797347816 +"A1ZAA9",0.215802425654719,16.6240442186954,3.75923318666753,0.0030024261767175,0.0185483217139437,-2.02329322532545 +"Q8I099",0.24988045328123,16.8062728045611,3.75549824202341,0.00302229105007221,0.018602145651367,-2.02995607430431 +"Q9VIK6",-0.274023036206049,16.6281570655669,-3.75305793148165,0.00303534336993772,0.0186038309067948,-2.03430986784911 +"Q9VCK0",0.312410536617218,18.1891109873577,3.75128331920233,0.0030448716052488,0.0186038309067948,-2.03747621186308 +"Q9VI75",-0.398074941871567,17.441755620619,-3.74683555143865,0.00306888826349578,0.0186821373120838,-2.0454129770788 +"Q9VZJ8",0.409086433357576,14.8485853008966,3.74453993519969,0.00308136024944028,0.0186898505311505,-2.04950983766485 +"Q94915",-0.41364643709883,16.9675160309859,-3.739594155416,0.00310840831628887,0.0187222366144445,-2.058337393474 +"Q9V393",0.372705680046881,15.861809287001,3.73913674588041,0.00311092218351366,0.0187222366144445,-2.05915388345221 +"Q7K8X7",0.278188220118942,19.5125774489963,3.73660423388987,0.00312487852845626,0.0187222366144445,-2.06367472358117 +"Q7JRN6",-0.545520032585875,14.7424279930585,-3.73538923277288,0.00313159713155276,0.0187222366144445,-2.06584378480028 +"Q9VW34",0.283491617316841,18.3949451692373,3.73319294494297,0.00314377976725843,0.0187279451849538,-2.06976489744698 +"Q9V3Y7",-0.479757063815324,19.5490173916781,-3.72741538030458,0.00317606123140702,0.0188529186262879,-2.08008117003414 +"P12370",0.305367028820125,20.7559990997669,3.72443145260642,0.00319286713588135,0.0188854694420216,-2.08540997090015 +"Q9W4K0",0.232914415851436,19.7322088023233,3.72056188932974,0.003214797605877,0.0189479943696214,-2.09232115042842 +"Q9VW66",-0.264075085057925,21.3672504633989,-3.71139651381054,0.00326736291894785,0.0191900047493134,-2.10869431911508 +"Q8IN43",-1.11392451857727,17.9733984879883,-3.69187788387229,0.00338227659977768,0.0196400343945485,-2.14357864406358 +"P40301",0.286972454766634,17.8163575200392,3.69171076012495,0.00338327828866905,0.0196400343945485,-2.1438774248349 +"Q9W3M8",0.257032818436077,18.5933546245238,3.69109998988529,0.00338694165766423,0.0196400343945485,-2.14496936174064 +"Q9VCR4",-0.388765555690751,14.9898645173122,-3.69041000315717,0.00339108507531773,0.0196400343945485,-2.14620294678979 +"Q7K3J0",0.222138372436913,20.3669773350983,3.68731368608718,0.00340974301084291,0.0196797624293632,-2.15173898373724 +"A1Z968",-0.25007248548242,17.1627640152448,-3.68457367187512,0.00342634203531987,0.0197073741893571,-2.15663840761505 +"Q9VSY6",0.28111586549047,17.663550833018,3.67719953919921,0.00347142890326388,0.0198980873218012,-2.1698261198525 +"O02649",-0.239086046145832,23.3128684865054,-3.65937931468156,0.0035829226977473,0.0204540912942912,-2.20170722707365 +"P20348",-0.359248641128257,17.4272303433328,-3.65611739189231,0.00360372674160367,0.0204540912942912,-2.2075447179851 +"Q9VH77",0.312844521185978,15.5721163750268,3.65588439112823,0.00360521753028874,0.0204540912942912,-2.20796171356105 +"Q9VRP3",0.297875493978168,18.0085763060275,3.65366965791188,0.00361941956972703,0.0204650570925582,-2.21192550278123 +"Q9W3R8",-0.380877088299028,17.3544908400137,-3.65016442691401,0.00364201464683426,0.0205232446990525,-2.21819944809947 +"Q7K204",-0.5540361919176,14.8815565836225,-3.64745539436675,0.00365957667425483,0.020548609032375,-2.2230487141953 +"O18332",0.264203818072506,20.6801583420006,3.64567677567484,0.00367115437149146,0.020548609032375,-2.22623270418681 +"Q9W1B9",0.41527051318862,20.5846347991985,3.64044437766253,0.00370543283376989,0.020671110256616,-2.23560037293714 +"Q9VCE0",-0.40866646471364,15.8518192206389,-3.63253279660771,0.00375788916517766,0.0208938637583878,-2.24976716784807 +"B7Z0C9",-0.21959498139398,15.9848314618686,-3.62376417436034,0.00381692042290059,0.021151572310293,-2.26547210670423 +"A1ZA22",0.667856748774154,13.512010914393,3.62181491778577,0.00383017196455869,0.0211547246254433,-2.26896379053664 +"Q9VXR9",0.392707188679459,15.2190127030065,3.61880051998568,0.00385075774076979,0.0211659382827012,-2.27436379815839 +"O77263",-0.221211210276827,15.5301983173462,-3.61652774941625,0.00386635396392227,0.0211659382827012,-2.27843552776077 +"Q9VFC2",0.277723538611006,19.8348158330009,3.61595849037935,0.00387027048934285,0.0211659382827012,-2.27945540769988 +"Q7JZW0",0.254524423465114,19.7611666657041,3.61090813208749,0.00390519611602796,0.0212242239590984,-2.28850423464392 +"Q9VM18",-0.295658462536238,22.9428285318536,-3.61073819121237,0.00390637695170456,0.0212242239590984,-2.28880874113888 +"Q9VHN6",0.288850848273002,15.0242308509976,3.60686862146182,0.00393336415962346,0.0213014656436751,-2.29574273322022 +"P36975",-0.301452210157365,22.2372431115329,-3.60398762357809,0.00395358114299257,0.021335166980649,-2.30090570843025 +"Q9VW73",0.284805380261448,14.2298133172702,3.60234313288065,0.00396516892326211,0.021335166980649,-2.30385292974437 +"Q95TN1",0.363894173276639,14.0419796930152,3.59712205292284,0.0040021905198503,0.0214530884964324,-2.31321082273501 +"Q9VXK7",0.212480778405748,18.1095396777029,3.59563384948452,0.00401280792019599,0.0214530884964324,-2.31587838957421 +"Q9VCR2",0.297372883788512,15.5196688349656,3.57724611950075,0.0041464038879461,0.0220964910066904,-2.3488456586617 +"Q7KTG2",0.229146351179288,18.0469619309,3.57402877240522,0.00417024463431573,0.0221201492494164,-2.35461545917619 +"Q9VH64",-0.494076220169706,17.5711367160069,-3.57307134979506,0.00417736631508763,0.0221201492494164,-2.35633252493629 +"Q7KLW9",0.260239891276559,17.2308988040277,3.56770465744734,0.00421751747871309,0.0222620859319412,-2.36595796233201 +"Q9V3W0",-0.300605552314014,20.8403979854928,-3.56530502738426,0.004235598294633,0.0222869967048828,-2.37026218951786 +"A1Z992",-0.509268039550674,14.2200372849405,-3.56266526316737,0.00425558034229638,0.0223217233048754,-2.3749974058911 +"Q9VLB1",0.336867296381619,16.7586880475341,3.56013144897464,0.00427485133108163,0.0223525141700444,-2.37954282228714 +"Q9U9Q2",-0.216782679439063,15.5831075909112,-3.55634171095542,0.00430384145608013,0.0224337735898177,-2.38634170250197 +"Q9W4P5",0.241229927967741,19.6598627976309,3.55238661807789,0.00433431152413414,0.0225222168917625,-2.39343781226611 +"Q7K3N4",0.323081197032103,17.0664486065489,3.5437793779064,0.00440138851647463,0.022799739271676,-2.40888266978303 +"Q9W1F8",-0.222850430221275,17.7024324314394,-3.53758439908965,0.00445032433608545,0.022981860658175,-2.4200006184067 +"A1Z6P3",-0.21471416772112,17.2439564200068,-3.53231240184308,0.00449240831291038,0.0231275835368349,-2.42946318542339 +"Q9VSY0",-0.302813581042592,22.682084907208,-3.5282906241591,0.00452478639526438,0.0232225960224646,-2.43668241287197 +"Q9I7J0",-0.276712706381293,20.9906771004296,-3.52613008602471,0.00454227883952559,0.0232408622832168,-2.44056087951148 +"P00408",0.178428662164006,21.4085415765013,3.52244287728784,0.00457229189443102,0.0233228834248041,-2.44718029442147 +"Q9VKE2",-0.368290856598719,24.0459300039475,-3.51659905710796,0.00462027601537226,0.0234957938830516,-2.45767225887716 +"P14318",-0.393555797243792,22.1056439605307,-3.51353240813072,0.00464566257579225,0.0235530856426185,-2.46317854789749 +"Q961Q8",0.432334315373398,15.4807380893728,3.50739332991201,0.00469691363191559,0.0237407634485915,-2.47420240157766 +"Q9VGP7",0.368835492726754,15.9119983346076,3.5038980179094,0.00472635193241732,0.0238173867772571,-2.48047940699079 +"Q9W1R0",0.77318753547859,14.0734059385537,3.49882340626676,0.00476942802211857,0.0239620660870295,-2.48959323679973 +"Q9W392",0.192435777834248,19.9800686651496,3.49398790815845,0.00481084831863167,0.0240975825690019,-2.49827834102286 +"P54385",0.548718986545094,21.4839687458882,3.48792959718896,0.00486326315493969,0.0242871944384413,-2.50916071453908 +"Q9VA34",-0.30051029881383,14.3987562552137,-3.48572322329207,0.00488249694644049,0.0243104624079485,-2.51312422095004 +"Q9VAA9",-0.234428042484733,17.0910266953547,-3.46651574800438,0.00505325866162698,0.0250858197845054,-2.54763389368484 +"Q9Y119",-0.735322922691765,17.7195433413239,-3.46440327001102,0.00507240853725807,0.0251061645108204,-2.55142992322024 +"Q7JXC4",-0.193414022939539,21.6541656509198,-3.45122819126451,0.00519352838907579,0.0256296016360308,-2.57510739861233 +"Q9W4C2",-0.375078485700675,15.8559679929059,-3.44187892829439,0.00528126687514347,0.0259857025007059,-2.59191176720688 +"Q9VDH3",0.238474959797692,20.5601536154755,3.4364563086337,0.00533284816517899,0.0260506190698209,-2.60165925179509 +"Q24583",-0.189308699849299,21.2388733317095,-3.43471846446225,0.00534948764077243,0.0260506190698209,-2.60478326046471 +"Q9VXF9",-0.176776152478507,17.4500926738035,-3.43436511280924,0.00535287738811475,0.0260506190698209,-2.60541846513543 +"Q9W3N7",-0.470851907746642,17.2516479646195,-3.43394276958623,0.00535693185908187,0.0260506190698209,-2.60617769622959 +"Q9VAG9",-0.258292776352654,17.4481380958779,-3.43023460968052,0.00539266494131799,0.0260761858922435,-2.61284387442486 +"Q9VLR5",-0.465003244316215,16.9294892035686,-3.42943722930028,0.00540038051929694,0.0260761858922435,-2.61427736483313 +"Q24319",0.360631693535554,16.407598378186,3.42853864040603,0.00540908892009368,0.0260761858922435,-2.61589281771147 +"Q9VTU2",-0.189140093158016,20.8704608307966,-3.42594101828422,0.00543434372615,0.0261224361245481,-2.62056282307275 +"Q9VME1",-0.371327970341568,16.6098764624243,-3.42204720653934,0.00547242618763209,0.0262299048303745,-2.62756335766006 +"Q9VF24",0.283622267893136,16.1309800081282,3.4158581903052,0.00553351798005931,0.0264467277671603,-2.63869092296416 +"Q9VLS9",-0.299242476853294,18.9671779949702,-3.40623252310876,0.00562991970778266,0.0268305887788042,-2.65599874306427 +"Q9VXZ0",-0.263776702464455,19.7021063322468,-3.40119165835746,0.00568108646731136,0.0269843063342161,-2.66506327260834 +"Q9W1N3",-0.248346735087061,20.5501205035111,-3.3972369521667,0.0057215602849018,0.0269843063342161,-2.6721749327424 +"R9PY51",-0.285280253876316,21.5459642941215,-3.3969583453895,0.00572442271140734,0.0269843063342161,-2.67267595380688 +"Q9VCH5",-0.191039325409925,18.012099179812,-3.39671878338589,0.00572688515726169,0.0269843063342161,-2.67310676120592 +"Q9VLT3",0.183032944732101,19.4175425222551,3.3896830995607,0.00579968854667149,0.0272503675939382,-2.68575948226631 +"P40304",0.258248933649543,18.7576875807929,3.3861120976158,0.00583700081854324,0.0273486442846352,-2.69218170045706 +"Q9VSA3",0.230194623245943,21.6855396364814,3.38287131503479,0.00587107462195178,0.0274237221684223,-2.69801018175291 +"Q9VIX1",-0.550796888876604,17.260360552921,-3.38146660409327,0.00588590679634004,0.0274237221684223,-2.700536566098 +"Q9VJZ4",-0.249606943623867,21.3352948701554,-3.3712453295544,0.00599498881856679,0.0278541541765164,-2.71892030237029 +"Q9VF15",-0.277340522695116,20.8456012489903,-3.36674660580455,0.00604365048805785,0.0280022472613347,-2.72701195302493 +"Q9Y125",-0.241259232615818,22.6227830984005,-3.35509554768058,0.006171557223284,0.0284994779745856,-2.74796905992967 +"Q7K0E6",0.254950455986386,16.7261968780704,3.35387290220445,0.00618513850527577,0.0284994779745856,-2.75016833485397 +"Q7K3Z3",-0.199778321377838,19.9061464163032,-3.35151427606979,0.00621142447279909,0.0285417521229446,-2.75441102531244 +"Q9VBV5",-0.230331870452702,17.1740040182668,-3.34846255420775,0.00624560367399873,0.0286199640885436,-2.75990051387066 +"Q9VVZ4",-0.407074232627442,15.7947052388473,-3.33927566408129,0.00634965741450126,0.0290170645681866,-2.77642640536531 +"Q9VU04",-0.375304071729019,16.6031801150492,-3.33471904154338,0.00640192043466803,0.0291535239443407,-2.78462328386786 +"P48596",0.310206162525489,21.7663671486179,3.33363014883936,0.0064144743930294,0.0291535239443407,-2.78658210012503 +"Q9W3B3",-0.242545046210154,15.671339866835,-3.32697707791641,0.00649172456631378,0.0293817788354411,-2.79855045540084 +"Q9VDQ3",-0.540108562747497,13.2347964542374,-3.32490069858738,0.00651602720223421,0.0293817788354411,-2.80228573074764 +"Q7KLE5",-0.186072757909564,21.4236381156513,-3.32477163412805,0.0065175408687729,0.0293817788354411,-2.80251790997983 +"Q9W1L1",0.375375484280918,14.7999841704574,3.32204284658117,0.00654962795641991,0.0294468448283245,-2.80742684568219 +"Q9VSL9",0.536703905156083,14.683596430742,3.31614623863634,0.00661951470053945,0.0296636779315001,-2.81803456754398 +"A1ZBJ2",0.513050750151876,19.4480093374636,3.31498018678588,0.00663342438156448,0.0296636779315001,-2.82013224691938 +"Q0KIE7",0.630914072188276,14.1196381458357,3.30181889085889,0.006792500915394,0.0302938276119711,-2.84380892215888 +"Q95SI7",-0.204224715156382,21.2383177899522,-3.29723567088199,0.00684880311539848,0.030454726250217,-2.85205393774561 +"Q9V3Y0",-0.257885616509757,16.326290489854,-3.29538747003122,0.00687164122949252,0.030454726250217,-2.85537876137838 +"Q9VR30",0.23600183033756,17.3224580915871,3.29444215101083,0.00688335239588238,0.030454726250217,-2.85707934159506 +"Q9VBT2",0.71450158439866,12.8900577220959,3.28946254264541,0.0069453784830168,0.0306478606075979,-2.86603736239408 +"P35220",-0.214892755967732,19.3361756112223,-3.28744794196535,0.00697063352217007,0.030678144366701,-2.86966148839415 +"A1Z847",-0.291619421326345,20.1326773785427,-3.27986985672401,0.00706647114516749,0.0310180891319457,-2.88329379373424 +"Q95RA9",-0.165615501534738,20.5202422123078,-3.27196245714154,0.00716790141881425,0.0313041577870638,-2.8975182067705 +"Q9VR25",0.183007778461267,17.0186640061381,3.2718636912902,0.00716917762269686,0.0313041577870638,-2.89769587176778 +"Q9W3K9",0.346815441679919,19.3599620827627,3.26933857798987,0.00720188439511727,0.0313648646763854,-2.90223815173611 +"Q9W3E2",-0.544142213058358,17.7562928421416,-3.26651296238391,0.00723866317085692,0.0314429431484097,-2.90732093696346 +"Q8SXD5",-0.567410558158702,20.7936229197279,-3.26077555515963,0.00731393034882182,0.0316873657709995,-2.91764134143037 +"Q9VYY3",0.182936300772734,17.5308990554737,3.25911594320337,0.00733585008366266,0.0316999946620449,-2.92062658975199 +"Q9VHD3",0.221657854056906,15.6926654973662,3.25486342657708,0.00739232113997524,0.0317946592548352,-2.92827574956732 +"Q9W369",-0.329244418922855,22.3199821731714,-3.25459653677882,0.00739587997054919,0.0317946592548352,-2.92875580871952 +"A1Z877",0.196585565031267,19.9946616831139,3.25163267613756,0.00743551853270132,0.0318225440559075,-2.93408690909358 +"A1Z6L9",0.423176895494658,15.2128805331913,3.25125963015988,0.00744052289076974,0.0318225440559075,-2.93475790138858 +"P32234",-0.212278467075542,16.685745592547,-3.24813684851057,0.00748254886422586,0.0319204386330658,-2.94037474760276 +"P17210",-0.177714422314082,20.8521212317906,-3.24555136440705,0.00751752620533673,0.0319878410982185,-2.94502509701511 +"Q9VR79",0.339156062991272,20.1361496749213,3.23716710099039,0.00763209695584285,0.0323927168507529,-2.96010483073297 +"Q9W1I8",-0.260170151938485,17.9261588131717,-3.2234570779106,0.00782327365335734,0.0331198488675128,-2.98476141187216 +"Q0KHZ6",-0.272997552757197,23.0911932318463,-3.22014159465296,0.00787023045418423,0.0332342896141248,-2.99072368791387 +"Q7K3W2",0.21996635721597,17.5519158356498,3.21339884266807,0.00796661057469024,0.0335563293903619,-3.00284873061958 +"Q9VY42",0.289187638795209,15.244530803861,3.21086823199528,0.00800309081574658,0.0336047320762101,-3.00739916553598 +"Q9VJQ6",0.381189958789674,14.4953821611852,3.20981004859865,0.00801839530355613,0.0336047320762101,-3.0093019126512 +"Q9VDC6",0.291215540944799,16.937969038029,3.20511778931149,0.00808661749384183,0.0338057092223764,-3.01773894765943 +"Q9NK57",-0.370410842630903,15.494648095279,-3.20144290707542,0.00814045816970466,0.0339457105676684,-3.02434638139668 +"Q9VNZ3",0.883797303968695,15.3491691268023,3.19919515015757,0.00817356888866109,0.0339987853024606,-3.02838771959751 +"Q9VWP4",0.306061439896787,15.1722850845769,3.19528104468741,0.00823155180022207,0.0341547970218169,-3.03542482146195 +"Q7JWU9",-0.347323765596142,15.5154709123568,-3.19161047378216,0.0082863055182838,0.03429666899379,-3.04202379629651 +"M9PGG8",-0.205526462731115,18.4768028910806,-3.18442713596758,0.00839452847359857,0.0346368312007967,-3.05493722341832 +"Q9VSK9",-0.198502515674752,14.4874558706014,-3.18340642896503,0.00841002196422222,0.0346368312007967,-3.05677204861489 +"Q9W0R0",-0.21367199450702,16.7072539768916,-3.16960428161556,0.00862239152299605,0.0354240124639345,-3.08158044542354 +"Q9VFP0",-0.214926307863429,16.5221152661349,-3.16571798252849,0.00868316222634898,0.0355688541735315,-3.0885649582838 +"Q9VIN9",0.226925931699601,16.4050983996739,3.16407218513653,0.00870902826178141,0.0355688541735315,-3.09152269245243 +"Q8MLP9",-0.397825370887976,14.9210282268772,-3.16327282031054,0.00872161951856977,0.0355688541735315,-3.09295924034945 +"Q9VVL8",-0.290317725181712,15.8704098730889,-3.1573468202303,0.00881553938238447,0.035862892534871,-3.10360839501005 +"Q9W4I3",0.298724800702258,16.505960022241,3.15584800937069,0.0088394553414629,0.035862892534871,-3.10630164083786 +"Q500Y7",-0.218702672354365,20.093010570554,-3.15467486941077,0.00885822045825351,0.035862892534871,-3.10840963819792 +"Q9VSL4",-0.174532399177711,20.9375812033228,-3.15128387156673,0.0089126884105895,0.0359960393919208,-3.11450265362203 +"Q8IM93",-0.261564432093742,19.0786590339489,-3.14659589292784,0.008988547230965,0.0362147265247575,-3.12292556860134 +"Q7KMS3",-0.329198573409311,15.543719190399,-3.14320609770518,0.00904380569973808,0.0363495612220798,-3.1290156284469 +"P18432",-0.396741265739323,23.6955020345788,-3.14029814563743,0.00909148297443766,0.0363817166578084,-3.13423973976399 +"Q9VU35",-0.190583426697678,22.7438376938461,-3.13822090197413,0.00912569583618372,0.0363817166578084,-3.13797133172971 +"Q9VRR3",-0.291311456069547,19.7337705121679,-3.13615052130652,0.00915992511699607,0.0363817166578084,-3.1416904613045 +"Q9V9M7",0.236384479821631,18.3539368219049,3.13565531606006,0.00916813147484543,0.0363817166578084,-3.14258000359094 +"Q95RQ8",0.746031080256918,14.4383632307286,3.13517286832792,0.00917613356341436,0.0363817166578084,-3.14344662196568 +"A8JNG6",-0.733428438401804,15.7114531181878,-3.13346749071677,0.00920447629984724,0.0363817166578084,-3.14650992366047 +"Q7JR58",-0.189924345697566,22.8290580560676,-3.13272436510009,0.00921685441968289,0.0363817166578084,-3.14784474142378 +"Q9VBU9",0.190502635987905,20.8520681583855,3.1321580546039,0.0092262986488327,0.0363817166578084,-3.14886194823789 +"Q960M4",-0.227767086373976,23.2598301685563,-3.13004087831286,0.00926169298085017,0.0364351506888162,-3.15266472784296 +"Q9VN02",-0.217477000419205,17.3114724439297,-3.1226164486969,0.00938689972417905,0.0368408205645427,-3.16599899237962 +"Q7JWD3",-0.260452218015795,17.15183859357,-3.11923006372711,0.00944457453866134,0.0369801650950402,-3.17208031354165 +"Q9VK00",0.679543789561956,17.8481928166995,3.11188769381661,0.00957085711078749,0.0373868610323034,-3.1852644678879 +"P22979",0.408657434018696,19.3699440534799,3.10871357484967,0.00962597565957289,0.037510923463223,-3.19096339813691 +"Q6NMY2",0.393661668385135,20.1133569133105,3.10675751967689,0.00966010196959774,0.037510923463223,-3.19447518655313 +"M9PEG1",-0.285429495187945,20.3938645114464,-3.10600195913897,0.00967331651908493,0.037510923463223,-3.19583163806709 +"Q9VZU4",-0.229608836648865,21.4267791681239,-3.10373897945693,0.00971300465639683,0.037510923463223,-3.19989421801661 +"Q5U117",0.462663784070722,14.6481674477818,3.10295674057128,0.00972676174140535,0.037510923463223,-3.20129847537959 +"Q7JYH3",0.230777043598405,19.3413255899531,3.10234421253482,0.00973754787744338,0.037510923463223,-3.20239805541454 +"Q8IRH5",-0.287572180355136,14.4123140805469,-3.09571554333896,0.00985504825469343,0.0378581644561266,-3.21429658616168 +"Q9VIB5",-0.475566728027069,14.3487386205483,-3.09470522372284,0.00987308245708336,0.0378581644561266,-3.21610996905027 +"Q7K3E2",-0.281989765448216,20.5532626710589,-3.08917275392233,0.00997242882949073,0.0381514020357581,-3.22603925483479 +"Q9W227",-0.179415151368122,21.954687781171,-3.08728516056673,0.0100065544257454,0.0381918820236298,-3.22942668890701 +"Q9VFF0",0.221759193158931,23.637382620403,3.08605798401086,0.0100288035529675,0.0381918820236298,-3.23162887439591 +"Q9W2M0",-0.212428086095155,17.7702037715669,-3.08378023150013,0.0100702322680006,0.0382387636403945,-3.23571616680904 +"Q7K012",0.332555045579964,15.5556889374769,3.08286299550158,0.0100869640298403,0.0382387636403945,-3.23736203116364 +"Q9VG69",-0.184294156507448,19.9964492506887,-3.07647723839912,0.0102042291103973,0.0385701475248407,-3.24881947323844 +"Q7PL91",-0.273557291902826,18.9008120814466,-3.07559019898065,0.0102206266222899,0.0385701475248407,-3.25041087625968 +"Q9VAN0",0.169774965661581,20.4317827130449,3.07261513915401,0.0102758167056527,0.0386908854741055,-3.2557480635448 +"Q8SX68",-0.200475297050369,17.5819923829387,-3.06696704322082,0.0103814216417985,0.0389922727488812,-3.26587952971862 +"O61491",0.159935365778175,20.9604211869166,3.06517710890561,0.0104151164691282,0.0389922727488812,-3.26908998452632 +"Q9VK12",-0.257352242494836,22.335361646332,-3.06460065681042,0.010425991394485,0.0389922727488812,-3.27012388696236 +"Q8SXY6",0.201689704079808,19.1553901684378,3.0528435895869,0.0106503040378162,0.0397420741276899,-3.29120751891866 +"Q9W0S7",0.323232073635735,17.8419896249616,3.04744065178776,0.0107550099768467,0.0400432067887951,-3.30089423394866 +"Q9VVN2",0.323209331024847,14.8793591344742,3.0458552571471,0.0107859302313276,0.0400688900353107,-3.30373635223275 +"Q9VN86",0.378387139993059,15.4064328772357,3.03823871026573,0.0109357291257796,0.0404712551529666,-3.31738867963733 +"Q9VH76",-0.20663083646664,19.3296052678256,-3.03763307347209,0.0109477299944844,0.0404712551529666,-3.31847412988755 +"Q9VAD4",0.298986027666,13.3195946212322,3.03666043841408,0.0109670307728663,0.0404712551529666,-3.32021729166401 +"P41375",-0.292185978305668,16.7079059293417,-3.03370265745774,0.0110259349855779,0.0405988069667636,-3.32551793987849 +"Q9VAN7",-0.216634703085944,23.7416227146676,-3.02800169167264,0.0111403690850971,0.0409298141716784,-3.33573335563166 +"Q961B9",0.294553723625651,14.9511909091529,3.02585736194361,0.0111837201718712,0.0409585863394541,-3.33957527527355 +"Q7K2L7",-0.443046268003535,18.2722070435518,-3.02518680385467,0.0111973113733759,0.0409585863394541,-3.34077663935363 +"Q9GYU8",0.547637078848053,12.7160188015424,3.01669161068686,0.0113709408783364,0.0415026901204926,-3.3559943889738 +"Q7KY04",0.317473047979185,14.0764434415011,3.01044344900284,0.0115003692838375,0.0418834409725783,-3.36718436639011 +"A8DYP0",-0.580146686000122,15.2845974395829,-3.00667479647468,0.0115791502666245,0.0420784807074721,-3.37393264976822 +"O77410",0.469099715524381,14.3427651263969,2.99749624184219,0.0117732971135137,0.042690999098567,-3.39036460191487 +"Q9VDD1",-0.396368651102014,14.3372789099959,-2.99602653920923,0.0118046868644745,0.0427119689586628,-3.39299527576247 +"Q9VPF6",0.299110153727517,13.9256222289471,2.99434965498464,0.0118406042386873,0.0427491945240917,-3.39599663109844 +"Q709R6",-0.346798708032592,15.1308553251443,-2.98769417529869,0.0119842439880983,0.0431466580488592,-3.4079071732537 +"Q9V419",0.40899628643591,16.4965512146301,2.98685735967672,0.0120024276586755,0.0431466580488592,-3.40940453048523 +"Q9VN73",0.216966172857155,18.4107303888028,2.98545930089797,0.0120328687241931,0.0431630645848475,-3.41190605081114 +"Q9VX36",-0.157098627555559,22.2412937215863,-2.98118855085932,0.0121263399646162,0.0434050108604718,-3.41954685730712 +"Q9U6R9",-0.157326348178952,20.6029916051555,-2.97625354061323,0.0122352572637839,0.0437010901841359,-3.42837463691643 +"Q7K188",-0.229332205438411,22.0035646016215,-2.97428039309155,0.0122790794639503,0.0437638986022844,-3.43190377397817 +"Q9VY87",0.376776984680909,17.650740207139,2.97266184462632,0.012315143799386,0.04379884830997,-3.43479849080045 +"Q9VPU6",-0.159761515581454,15.2615327091343,-2.96934442109666,0.0123893947025082,0.0439691709867737,-3.44073104466985 +"Q9VKG4",-0.218108254638535,15.9648277979956,-2.96562785047195,0.0124731127646289,0.0441722974339724,-3.44737652163836 +"A1ZB68",-0.227819846087588,19.340149445686,-2.95439596021921,0.0127295811545361,0.0449477280455766,-3.46745417514764 +"Q7K519",0.281769516796958,15.6558421613471,2.9536860173782,0.012745968444579,0.0449477280455766,-3.46872294530299 +"Q9VEC8",-0.203576703449613,16.5023516164629,-2.94970147723247,0.0128383348652812,0.0450765610182232,-3.47584323330293 +"Q03427",-0.14043184536402,21.7367999195033,-2.94869021663088,0.0128618836228924,0.0450765610182232,-3.47765015517516 +"Q9VQX3",-0.455639831117155,15.363387632514,-2.94795209234527,0.0128790993003776,0.0450765610182232,-3.47896899061048 +"Q9VMB9",-0.207890820096651,22.5968051243714,-2.94745957965874,0.0128905992839883,0.0450765610182232,-3.47984896054509 +"Q9W370",0.42679146436182,18.2421032461937,2.94620268114821,0.0129199940354608,0.0450848327429887,-3.48209457591171 +"Q9VDV3",-0.174405988818764,17.5176680776486,-2.944220347613,0.0129664908754476,0.0451526237583436,-3.48563604563059 +"O96299",0.291610682449335,15.6805229542608,2.94209864152116,0.013016442515984,0.0452321377430444,-3.48942619124292 +"Q9VVA6",-0.199694530731119,19.2468574417836,-2.93661445431265,0.0131464523163153,0.0455014399921148,-3.49922143598633 +"Q8MRM0",-0.207375925904088,18.5296618039178,-2.93652861098636,0.0131484976476015,0.0455014399921148,-3.49937474214695 +"Q9W3X7",-0.136711035978209,21.6756880363961,-2.93233769223074,0.0132487403094113,0.0457534137393333,-3.5068585661213 +"Q9VEP6",-0.185640936944132,18.5994897709731,-2.93090455345745,0.0132831948552105,0.0457564913686586,-3.50941745429581 +"Q9VQD7",-0.180026032819253,21.0021962050401,-2.92922719221248,0.0133236347781677,0.0457564913686586,-3.51241220791837 +"Q7K1C5",-0.179468614521939,17.4993698506647,-2.92786714094519,0.0133565150535899,0.0457564913686586,-3.51484028096744 +"A0A126GUP6",-0.33147292884728,16.9968737456749,-2.92774965018925,0.0133593592904897,0.0457564913686586,-3.51505002832084 +"Q9VSC3",0.329361310570061,17.5222841462521,2.92240350855478,0.0134894230028778,0.0460240834748169,-3.5245929710961 +"Q9VWF0",-0.190607801568802,16.495546920011,-2.92225864470895,0.0134929649045556,0.0460240834748169,-3.52485152457479 +"B7Z0Q1",0.258544938430077,17.7372319675798,2.92114337290443,0.0135202643301321,0.0460240834748169,-3.52684201091972 +"Q9VDV2",0.393639544939724,14.3880486713271,2.91810390353815,0.0135949447919381,0.0460631297110691,-3.53226622548229 +"A8JNT7",0.202110111436438,16.8484129296343,2.91800507229244,0.0135973800141185,0.0460631297110691,-3.53244258685745 +"Q9W483",0.319819423647045,15.5345655628496,2.91730744532057,0.0136145821028519,0.0460631297110691,-3.53368745931106 +"A1ZB79",-0.184167950715274,20.8075408090073,-2.91199768105787,0.0137462256943666,0.0464143814943389,-3.54316114686026 +"O77134",-0.176236956544784,21.7108852269721,-2.90979358940371,0.0138012443921,0.0465060114061066,-3.54709303000514 +"Q9VJI9",-0.413087210214385,17.6350136104346,-2.90441375794861,0.0139364626271913,0.0467926284547417,-3.55668847520761 +"Q8MT58",0.143667945754895,21.6107204410559,2.90417841785812,0.0139424078789008,0.0467926284547417,-3.55710817310361 +"O61443",0.25110137428217,16.4797767656809,2.90205321764516,0.0139962104647515,0.0468788736048302,-3.56089798087757 +"Q9W260",0.262923708272538,17.3936169473681,2.89799221887918,0.0140995985345973,0.0471305217549265,-3.56813880665888 +"Q9VIH9",-0.415498693828226,19.1635418024313,-2.89210118871956,0.0142509351698318,0.0475411197265588,-3.57864016356216 +"P08182",-0.182671426093894,19.6889621815154,-2.88937777861279,0.0143214453153762,0.0476809796128693,-3.58349392756614 +"Q9V431",-0.188489247062694,18.5004037208297,-2.8868758132354,0.0143865292965794,0.047802252722499,-3.5879524670239 +"Q9V784",-0.579713391385583,14.2027932440259,-2.88108718376454,0.0145382444418353,0.0482009472240424,-3.59826582339655 +"M9PF61",-0.156052870042679,22.7160971548803,-2.88009855007919,0.0145643149885596,0.0482009472240424,-3.60002693911487 +"Q9VJZ6",-0.296586678101654,19.7057657086772,-2.87743832652401,0.0146346978626485,0.0482821110653873,-3.60476533817301 +"Q7K5J8",-0.185588120002759,18.3078090777864,-2.87632828043058,0.0146641672343168,0.0482821110653873,-3.6067423717424 +"Q9VPZ5",-0.218914166449238,18.3623459960229,-2.87589531345505,0.0146756776439756,0.0482821110653873,-3.6075134725821 +"Q9VPU4",-0.37009399241755,12.9481326621749,-2.86799035628141,0.0148874232448494,0.0488823267173402,-3.62158901998481 +"Q9VMH8",0.179140629066406,18.8864274256239,2.86267064125755,0.0150316329980557,0.0492247130957378,-3.63105811700175 +"Q9VZ19",-0.415606796319366,20.1943976301587,-2.86197030489134,0.0150507216299918,0.0492247130957378,-3.63230452366627 +"Q7JWX3",0.213575720729946,17.9206531121572,2.8599068613659,0.0151071043270817,0.0493124266488696,-3.6359766248005 +"Q9VZF9",-0.243719069873578,19.1089794764666,-2.85168926649123,0.0153337443844018,0.049954464127309,-3.65059671899706 +"Q9VM58",0.231369917866671,16.3932305349826,2.84065800983443,0.0156433234212844,0.0508636714750533,-3.67021260487402 +"Q9W314",-0.355475007668066,16.2124549862021,-2.83088169152697,0.015922885742302,0.0516719327201553,-3.68758707327984 +"P20432",-0.16761157190647,23.5614845870789,-2.82903124113709,0.015976358419146,0.0517447880449234,-3.69087462829525 +"Q9VAG3",0.269627908560878,16.8121811389965,2.82623105680148,0.0160576159171818,0.0519071770346108,-3.69584885145232 +"Q9VVT6",-0.152090111382915,20.4961778913781,-2.82354675840598,0.0161358968582795,0.0520593345447005,-3.70061647399776 +"Q9VCK6",0.405782359578183,16.5166414638947,2.82014084202587,0.016235769099816,0.0522804302287512,-3.70666472009489 +"Q9VQR2",-0.154580192753652,21.3432358639661,-2.81855422011787,0.0162825037300423,0.0523298963809453,-3.70948184784218 +"Q8MSS7",0.451890920297831,14.0208460031926,2.80786449614646,0.016600882634475,0.0532505235275081,-3.72845520482153 +"Q9W4W5",0.242060871145359,17.371055080369,2.80617470348878,0.0166517746304265,0.0533112477611351,-3.73145334922192 +"Q9VVE2",-0.183294598335888,18.3612817533568,-2.80000674938853,0.0168388571641132,0.0537528738980826,-3.74239437578096 +"Q9U915",-0.144104908868457,21.1141023329938,-2.79846265542158,0.0168860178499201,0.0537528738980826,-3.74513272978849 +"P15425",0.223175862354378,17.0850927663226,2.79845034276733,0.0168863944380068,0.0537528738980826,-3.74515456447814 +"Q7KN94",-0.145848039819526,22.647662224017,-2.79546164955673,0.016978052402421,0.0538420649445231,-3.75045408956095 +"P07486",0.184540750154074,22.2325332583904,2.79543172870164,0.0169789725184767,0.0538420649445231,-3.75050714007042 +"Q9VK60",-0.168099646166024,21.3560619850298,-2.78706955197037,0.0172380755491445,0.0545599810549772,-3.76532967609603 +"Q9VHX4",-0.188859773327302,22.8593909347255,-2.78044613742095,0.0174460880449322,0.0551137781419448,-3.77706464600544 +"Q9VRL2",-0.686244064379006,11.9444424104172,-2.76706004047769,0.0178741271140575,0.0563592514673874,-3.80076618839409 +"Q9VBP6",-0.165775130019551,23.164683707806,-2.7619065620764,0.0180416818881801,0.056780236583933,-3.80988547660697 +"M9NDE3",0.174622930922341,16.1512827678999,2.75973016961565,0.0181129100418073,0.0568685400559732,-3.81373575712203 +"Q9VEX6",-0.151496031129494,20.7757661654219,-2.75896776549822,0.0181379276437517,0.0568685400559732,-3.81508440291143 +"Q9VCW2",0.250658209300115,15.3391660023315,2.75471963238234,0.0182779551966185,0.0572000549117441,-3.82259782765119 +"Q9V4S8",-0.301145399177074,17.0797515823241,-2.75196121951522,0.0183694519789664,0.0573515294620136,-3.82747532027516 +"Q7KJ08",0.234362019393306,14.5644999589179,2.75118969027277,0.0183951248574204,0.0573515294620136,-3.8288393938934 +"Q86BM0",-0.200776959948197,17.4528342251999,-2.74965146181518,0.0184464161201236,0.0573673594809613,-3.83155878797402 +"Q9VQR9",-0.247990702182364,16.2032727453791,-2.74888764198307,0.0184719378775521,0.0573673594809613,-3.8329090192354 +"Q9VSN9",0.238909878327229,16.5024181720901,2.74771319422498,0.0185112483943428,0.0573673594809613,-3.83498499444764 +"Q9XTL2",-0.23506841082574,16.9202986918514,-2.74593950282078,0.0185707737532589,0.0573673594809613,-3.83811988687024 +"Q7KUC2",-0.179507307064231,19.3242870998561,-2.74589806322949,0.0185721667384407,0.0573673594809613,-3.83819312427844 +"O97477",0.164796504065535,20.9218186361389,2.73013412167368,0.0191096514597527,0.0589184817650046,-3.86603788100142 +"O62602",0.296721733781945,14.6190590774705,2.72378202358161,0.0193305614228906,0.0594801193833425,-3.8772491796551 +"Q9VNI4",-0.203152216286266,16.5180192375297,-2.72285155512771,0.0193631323891816,0.0594801193833425,-3.87889100345096 +"Q9W5W8",0.155965114105488,20.6603429621927,2.72011601504119,0.0194592047138334,0.0596653556299156,-3.88371725832552 +"Q9W385",-0.239115006799329,16.8499880781625,-2.71804994953048,0.0195320776653448,0.0597789092583397,-3.88736173636463 +"Q9VTB0",-0.174322038580739,16.9768083622871,-2.71336071224504,0.0196984771048448,0.0601315986688219,-3.89563136316209 +"Q9VIV6",0.644546565279585,14.7912804362585,2.71277344371286,0.0197194151509866,0.0601315986688219,-3.89666682947625 +"Q9VKI8",-0.141399093697192,22.3544367745142,-2.71151593657179,0.0197643234818188,0.0601585612548792,-3.8988839027052 +"P48604",-0.173626433931691,20.1115545636477,-2.70147672509918,0.020126492106687,0.0611493421383496,-3.9165762706241 +"Q9VER6",-0.264520356803713,14.9357164818648,-2.69786750809257,0.0202582934253853,0.0614378789700777,-3.92293361297799 +"Q0E8V7",-0.321738492614646,19.7032608790556,-2.69175872117575,0.0204833207794422,0.0620075845011064,-3.9336897424269 +"Q6IGM9",-0.665461922380437,14.8174208441999,-2.68383294589929,0.0207789644987927,0.0627886101159171,-3.94763756945655 +"O97062",-0.177149269027161,18.4777329819553,-2.67987751073173,0.0209280810392187,0.0631248447982221,-3.95459512256427 +"Q9VEB1",-0.134201238114258,25.1796611802665,-2.67495054962634,0.0211153018171347,0.063574591030651,-3.96325851925762 +"Q9VVU1",0.257985751211706,22.2599620065146,2.67341266143229,0.0211740782861856,0.0636366893357795,-3.96596198906217 +"Q9Y136",0.303629519501307,15.2453356554554,2.67042058013771,0.0212888955941137,0.063866686782341,-3.97122084099925 +"Q95RS6",0.254481161012073,17.1693645397359,2.66361378406486,0.0215523913472682,0.0645410929393956,-3.98317964165364 +"Q9VZX9",0.170437508524653,18.5485652599297,2.66031929104021,0.0216810763213925,0.0647411951440578,-3.98896531453997 +"Q9VPC1",-0.268217151119568,16.107080994691,-2.65991706404775,0.0216968393798131,0.0647411951440578,-3.9896715837862 +"Q95SK3",-0.167526746622189,17.211267105623,-2.6560875365569,0.0218474836583135,0.0650742906108337,-3.99639466118776 +"Q95SS8",0.320790413506248,15.5037660873177,2.64095844742671,0.0224527740705542,0.066757980658974,-4.02293399461922 +"Q9V406",-0.205292008730666,17.0542126984931,-2.6358954631868,0.022659002545405,0.0671637957138161,-4.03180779398572 +"Q9VU70",-0.339304054185906,14.8059134467691,-2.63539925304346,0.0226793145652701,0.0671637957138161,-4.03267728325488 +"Q9VH72",-0.496605713557624,18.7323471261714,-2.63460557131139,0.0227118406599194,0.0671637957138161,-4.03406794221703 +"Q9VD29",-0.194318054351367,20.7343907298071,-2.63366790823417,0.022750326485795,0.0671637957138161,-4.03571075608038 +"Q9VZ67",0.167014832728595,15.1286344604612,2.63029435801188,0.0228893236715567,0.0674547559790752,-4.04162020522108 +"A1ZB71",-0.220511095175958,19.2686060362888,-2.62476850023954,0.023118808497021,0.0680108863721887,-4.05129606861418 +"Q9W425",-0.353361442707387,14.05302834484,-2.62007988723365,0.0233152975506401,0.0684681625254713,-4.05950218715278 +"Q9VKU3",0.218547919479485,15.4910810123479,2.61800011981812,0.0234029809976525,0.0684974860236471,-4.06314114336065 +"Q9W1E8",-0.212337812546664,15.3996933463991,-2.6165718373031,0.0234633854828971,0.0684974860236471,-4.06563980669879 +"Q7JVZ8",-0.278428406352356,15.9815970399972,-2.61655651391992,0.0234640343653983,0.0684974860236471,-4.06566661196106 +"Q9Y171",0.363028862968081,15.016518500866,2.61547188490512,0.0235100088253999,0.0684974860236471,-4.06756386420591 +"O46098",-0.178972705184329,18.0241672552701,-2.61395846315199,0.0235743067167742,0.0684974860236471,-4.07021085763143 +"Q24297",0.230136286961478,17.0147414690265,2.61289023498065,0.0236197945825212,0.0684974860236471,-4.07207898357774 +"Q9VUJ1",0.190776436051046,19.9923078679351,2.61221026450493,0.0236487943924189,0.0684974860236471,-4.07326802704925 +"A1Z6V5",-0.27593560985164,20.0469006099985,-2.61114974190487,0.0236940941243372,0.0684974860236471,-4.07512238361293 +"Q9VSN3",-0.238864952753183,20.8764647617761,-2.61113150707214,0.0236948737623767,0.0684974860236471,-4.07515426621671 +"Q9W1G0",-0.221344875373447,21.7374149092873,-2.60937476611131,0.0237701023480805,0.0685960739041494,-4.0782255827876 +"Q23983",-0.176161595930704,22.3784848701184,-2.60655147643147,0.0238914957134695,0.0687516284710141,-4.08316051677182 +"P91927",-0.431509120876768,19.3059788335788,-2.60620485089565,0.0239064415546692,0.0687516284710141,-4.08376630846364 +"Q9W086",0.201032115638522,16.8082198231969,2.58906303174333,0.0246571371342706,0.0707884763166322,-4.11370044831105 +"Q7KN90",-0.186041787233416,17.2664010790091,-2.58529048735389,0.0248254311888863,0.0711491739227876,-4.12028181959726 +"Q9VTJ4",-0.163968327704261,15.6390254781176,-2.58329749295298,0.0249147937443746,0.0712828061159807,-4.12375772915606 +"P09180",0.20811930083185,20.5876678907512,2.58054238195027,0.0250388483700108,0.0713970370855399,-4.12856172291475 +"Q9V3E7",-0.168876514986842,18.7311925568701,-2.58050960739342,0.0250403277548207,0.0713970370855399,-4.12861886312377 +"Q9VL16",-0.16300391734805,20.742913269403,-2.57676971763408,0.0252097041066695,0.0717573147609638,-4.13513791647794 +"Q9VVK7",-0.184393437254293,18.1730596860544,-2.57372640500556,0.0253483620325554,0.072029076440038,-4.14044100871179 +"Q9V7D2",-0.205800611109165,21.3645060127884,-2.57198084915568,0.0254282294597679,0.0721331407124027,-4.14348199723907 +"Q27268",0.30685237205563,19.0340772058048,2.56867953034404,0.0255799556392998,0.0724403497561155,-4.14923190545231 +"M9NEW0",-0.153308627720165,18.3498017894269,-2.56458780083158,0.0257692407235696,0.0728527008930747,-4.15635587192165 +"Q9VF27",-0.128046293408779,22.2656508259571,-2.56330961499223,0.0258286510579146,0.0728971065390888,-4.15858068336538 +"Q9VII1",-0.343409129473546,19.3181926058491,-2.55889349890291,0.0260349478713393,0.0733552247455979,-4.16626519410294 +"Q8WTC1",0.213137740904081,15.0624669478089,2.55785831618302,0.0260835390462224,0.073368200892241,-4.16806602967554 +"Q9W3H4",-0.255794964921673,19.5446879923339,-2.55316293025898,0.0263050567854188,0.073727310300265,-4.17623190600757 +"Q9VRP4",0.355282302539393,14.3566133295476,2.5526839686272,0.026327756417386,0.073727310300265,-4.17706466328256 +"P48148",0.233437083474673,20.6127659633526,2.55234545905904,0.0263438111144832,0.073727310300265,-4.17765319601478 +"Q7KN75",0.245845805028729,19.3799056571052,2.54460973708722,0.0267133216177625,0.0746362151732458,-4.19109697768436 +"Q9VKZ8",0.185521980312448,18.7710431696598,2.54221015764385,0.0268289693498028,0.0747972043753783,-4.19526499477028 +"Q9VZ66",-0.148188460083361,17.0106460961345,-2.54100568228391,0.026887203600365,0.0747972043753783,-4.19735675200086 +"Q9VN88",-0.199664548171928,17.040518502549,-2.53991357167874,0.0269401121250203,0.0747972043753783,-4.1992531444758 +"Q2MGK7",-0.261053092308668,17.1218630694846,-2.53970327966595,0.0269503116484427,0.0747972043753783,-4.19961828074935 +"Q9NBD7",0.396081542735192,13.3030679237965,2.53781067876567,0.0270422762214032,0.0749277686666121,-4.20290410013115 +"Q9VHT5",0.182591159931317,15.5611025120079,2.53448361989917,0.0272046882534335,0.0752527694970598,-4.20867876390418 +"Q9VJ31",0.179702651150977,17.2555504031404,2.53277403242723,0.0272885133193009,0.0753596692327713,-4.21164525323999 +"Q7K1H0",-0.147328924088248,16.3149008989566,-2.52954394392424,0.0274475821548571,0.0756736645195068,-4.21724866824958 +"P19107",0.143124115527698,24.1263181617271,2.5226108285527,0.0277920775027556,0.0764970054036243,-4.2292694428038 +"Q7KSE4",-0.206220482220317,13.7984581829631,-2.51966091201741,0.0279399324164985,0.0767772772170009,-4.23438136311215 +"Q9VD64",-0.379797429798758,15.6393227169485,-2.51612288886447,0.0281182781619236,0.077140276273172,-4.24051027029891 +"Q9NHA8",0.265622382218066,16.3067343978145,2.51413365801154,0.0282190398315703,0.0772895869278476,-4.24395517680585 +"Q9VXE0",0.178968162107751,18.0057682360939,2.51002586428514,0.0284282316031386,0.077734902154156,-4.25106660019691 +"Q9V3G1",0.201433014346492,21.0351754164604,2.50720037979016,0.0285729992434415,0.078002885005009,-4.25595622829153 +"Q9VUX1",0.195461024736559,16.3493309695423,2.50377581470519,0.0287494265876001,0.0782674787246728,-4.2618805505484 +"Q9V3Z4",0.18423260888682,18.810966981645,2.50316447428102,0.0287810333860573,0.0782674787246728,-4.2629379019324 +"A1ZBA5",0.33970567309126,15.6143495916149,2.50259143819682,0.0288106906096817,0.0782674787246728,-4.26392893842272 +"Q9Y0V3",-0.213734414883161,15.0559809032597,-2.50058667360548,0.0289146811603623,0.0784222571959096,-4.26739557892604 +"Q9V6Y3",0.223077103674843,15.1821871889373,2.49871592712057,0.029012050261024,0.0785586036288766,-4.27062977635871 +"Q9W4W8",0.302351264969495,17.4355556152766,2.49585146053177,0.0291617609797497,0.0788360086130023,-4.27558063189775 +"Q9W402",-0.14030741961772,21.2698853073718,-2.48880688951072,0.0295331563981765,0.0797108493076998,-4.28774945417823 +"B7Z107",-0.467949537070202,16.0290910335584,-2.48666268659467,0.0296471131890196,0.0798891515335778,-4.29145142865092 +"Q9VEJ0",-0.127734494151959,22.249048349118,-2.48409720416776,0.0297840227972754,0.0801286290739603,-4.29587955219358 +"Q9VXK6",-0.322064404052025,17.8203774076181,-2.47824364849733,0.0300987146036997,0.0807407591806297,-4.3059781316796 +"P16378",0.216311301651842,20.4805134022107,2.47806509289893,0.0301083646345034,0.0807407591806297,-4.30628606925233 +"Q7JVI6",0.190451040937372,17.4363851409949,2.47048817519247,0.0305206476759611,0.0817149924935845,-4.3193473490154 +"A0A0B4KHJ9",-0.221209878418964,24.5701970479768,-2.46785673331204,0.0306651144753803,0.0819702098476513,-4.32388078333883 +"Q8T0Q4",-0.182844701165365,19.9738533579807,-2.46686901045358,0.0307195123494632,0.0819842345582474,-4.32558206423896 +"Q9W0D3",0.204527425018895,12.7389913004853,2.46502511447164,0.0308213145752196,0.082124525098189,-4.32875750962833 +"A1Z9I0",-0.188450396109054,19.4107284515063,-2.45891755018816,0.0311608657850127,0.0828968486912299,-4.33927061762578 +"Q7K1M4",0.211362916268374,17.1877288880678,2.45339191123729,0.0314711982668924,0.0835891062248034,-4.34877542105959 +"Q9VG92",-0.288903689502067,16.4991472414224,-2.45132520330392,0.0315880398773759,0.0837660580532004,-4.35232879427815 +"Q9VIE7",-0.166611062029183,14.945685839562,-2.44677448869585,0.0318468037331741,0.0843182041697371,-4.36014987507929 +"P92177",-0.203840307343668,24.1380014825053,-2.44007304303786,0.0322316173073252,0.0851006794383029,-4.37165938055417 +"Q9VGV9",-0.203312627861104,16.0759421131177,-2.4388153506867,0.0323043388647401,0.0851006794383029,-4.37381836537654 +"Q9W127",-0.194989240626001,18.6438369047256,-2.43805653270688,0.0323482918566718,0.0851006794383029,-4.37512080787874 +"Q9VVG0",0.156087417207711,18.0868285273628,2.43767605727079,0.0323703519821902,0.0851006794383029,-4.37577381346331 +"P54352",0.198251178365821,16.1180531439139,2.43720919334932,0.0323974409132628,0.0851006794383029,-4.37657504447598 +"Q9V9V4",-0.209227371851025,18.6082906320472,-2.43595821870103,0.0324701350226425,0.0851575239273077,-4.37872173578938 +"Q95TK5",0.252758350776073,17.2252900583781,2.43506238368051,0.0325222892822836,0.085160405844347,-4.38025879685419 +"O96824",-0.243849395697323,16.7174118888194,-2.43204791671353,0.0326983853841889,0.0853050995769484,-4.38542971499748 +"Q9VXY3",0.164749469257565,18.0463191710917,2.43199685541647,0.0327013761904587,0.0853050995769484,-4.38551728709016 +"Q9VRY5",-0.151994912730194,16.863230128426,-2.43149179284766,0.0327309734587812,0.0853050995769484,-4.38638345868462 +"Q9VJ86",0.294434005500179,16.4866433572834,2.43030097911746,0.0328008595353428,0.0853538747347143,-4.38842546180015 +"Q9VJ43",0.177414972756814,20.2210969520767,2.4283706293232,0.032914455066584,0.0855160608271995,-4.39173496957813 +"Q9VJI5",0.2512832881153,17.4692295494184,2.42608936464433,0.033049193210186,0.0856034795992521,-4.39564506894494 +"Q9W337",-0.20606985886516,17.8397642348909,-2.42598668400066,0.0330552703996242,0.0856034795992521,-4.3958210375915 +"Q9VMQ5",0.288963214829124,13.4627387064441,2.42456351462575,0.0331396129215842,0.0856034795992521,-4.39825975428585 +"Q9VFB2",0.200898586833077,16.4001988475439,2.42433144614142,0.033153385983883,0.0856034795992521,-4.39865738083627 +"Q9VAN1",-0.313730014222166,14.7424021381588,-2.42256193065106,0.0332585879592025,0.0857423875053319,-4.40168888656475 +"Q9VY28",0.195872637183367,15.1672115986983,2.41435718497744,0.033750626168844,0.0868766118049874,-4.415736178993 +"Q94522",-0.159164876422278,23.5006629170713,-2.41259311263471,0.033857335717843,0.0869008180160841,-4.41875450192272 +"Q9VGE7",-0.30948636144606,13.8450204443334,-2.41247936390096,0.0338642276441575,0.0869008180160841,-4.41894910208363 +"Q9VM07",0.223645669565354,16.8725476346678,2.41069640021907,0.0339724335721498,0.087044576341545,-4.42199900348414 +"Q9VMX4",-0.234232563011265,17.3106625065484,-2.39909198520445,0.0346849219737466,0.088733818791732,-4.44183196022599 +"Q9VRQ9",0.191028546849024,14.7215020155033,2.39550168116038,0.0349082760593698,0.0890391446530291,-4.44796196934938 +"Q9VF70",-0.152991316216998,15.9166029432823,-2.39545752728004,0.0349110315366193,0.0890391446530291,-4.44803733857149 +"Q9VF23",0.457987592914588,15.2238264774016,2.3934373240145,0.0350373302463496,0.0892248348868872,-4.45148528538824 +"Q9VJ80",0.207476924841258,16.4479189270726,2.39180237941634,0.0351398670980629,0.089349540121294,-4.45427501859103 +"Q9VCB9",-0.138240769628121,16.987293360483,-2.38860906217011,0.0353409766639063,0.0897241234024287,-4.45972206846382 +"Q9VE85",0.236279020140376,15.8013898726511,2.38677012059732,0.0354572948377682,0.0898504968125806,-4.46285781111636 +"Q7K738",-0.138055807518313,19.791881065621,-2.3860032150149,0.0355059131066191,0.0898504968125806,-4.46416530036708 +"P48375",-0.209558940161571,21.9563251389674,-2.38527158994469,0.0355523548538988,0.0898504968125806,-4.46541251408208 +"P11046",0.171843116636911,21.0268000587632,2.38369213507278,0.0356528151607996,0.0899680721455577,-4.46810461701873 +"Q9VCC0",-0.234446789683783,17.4809737244541,-2.37874952299724,0.0359689639186224,0.0906287489671633,-4.47652532729316 +"Q9V3G7",0.216491990795799,18.0832213023582,2.3773022333582,0.036062050102356,0.0907262436964251,-4.47898999566672 +"Q9VTB3",-0.164519002854828,19.7565010797234,-2.37544531597958,0.0361818236541954,0.0908904847216835,-4.48215152620218 +"Q9VH25",0.13975185345827,16.2165107252094,2.37283366925811,0.0363509290349473,0.0911779693688603,-4.4865966714379 +"Q9W2X6",-0.132961347499865,24.1388795909056,-2.36822014518992,0.03665152478377,0.0917939089179105,-4.49444519183452 +"Q9VU92",0.24575010747845,17.7389260447854,2.36354579566567,0.036958531707842,0.0924240343158628,-4.50239206135317 +"Q9VC48",0.153663825990673,18.4197975038502,2.35143802872623,0.0377653461786595,0.0943002955479104,-4.52295225258373 +"Q8SYQ4",-0.269564595237568,20.9674827797247,-2.34688478401705,0.0380731316460032,0.0948272671697485,-4.53067497061739 +"Q9VGP6",0.142160158360618,17.9379005720356,2.34663495223628,0.0380900893307743,0.0948272671697485,-4.53109856228913 +"Q9VBU0",0.264645713348719,14.2846563424297,2.34328889615597,0.0383179106683306,0.0951273844056922,-4.53677035807696 +"Q9VNC1",0.377922033849462,15.5514582752387,2.34278159676375,0.0383525653911078,0.0951273844056922,-4.53763002663432 +"Q9VW59",0.155956090842398,19.7754279890897,2.34235497202306,0.0383817324370688,0.0951273844056922,-4.53835293529457 +"Q9VVP9",-0.240318948740526,16.6235821408519,-2.3389560971513,0.0386148680836124,0.095563204693569,-4.54411067783025 +"Q9W140",-0.484174257011981,13.8726755911306,-2.33408674575405,0.0389512456913414,0.0962528560194924,-4.55235446813489 +"Q9VG51",-0.12273622444911,19.101567340508,-2.32711463108599,0.0394378008746679,0.0973110234599794,-4.56414798243872 +"E2QCN9",-0.175799871960781,17.357653424546,-2.32575097180273,0.0395336467722562,0.0973395797063924,-4.56645322851657 +"Q9W0H8",-0.186404550552734,19.412789545233,-2.32529012879627,0.0395660881540372,0.0973395797063924,-4.56723217146954 +"Q9Y156",0.350645921850566,16.079437847558,2.32394446736692,0.0396609636813667,0.0974292892791158,-4.56950637942788 +"A0A0B4KI23",-0.157891210732956,20.5654978695248,-2.32114215071284,0.0398592434945114,0.0977723796306545,-4.5742409156288 +"Q9VSR5",0.220702585136262,20.2097841191648,2.31916140841592,0.0399999671981387,0.0979734879390533,-4.57758620002065 +"Q9VV75",-0.129894460898683,23.9974907344119,-2.30771744250571,0.040822416820663,0.0998413361537622,-4.59689443354979 +"Q9VZE4",0.248232609515142,17.6718183901476,2.30658588922156,0.0409046162299415,0.0998959002511601,-4.59880176654531 +"Q9VSL2",-0.16848065233237,20.4625799437762,-2.30060391750139,0.0413418137832411,0.100816002032816,-4.60887941577491 +"Q95083",0.134448551675028,19.8836506179867,2.29813062289298,0.0415238850804325,0.101112175641111,-4.6130433903527 +"Q9VBC9",-0.284699923363052,15.5467520849201,-2.2972486916075,0.0415889943859278,0.101123094221177,-4.61452780172297 +"Q9W2M4",-0.130549574097444,22.6679677187485,-2.29492983367582,0.041760653983416,0.101392679540521,-4.61842978903154 +"O46067",-0.159851136677155,19.7391607175898,-2.29284511659363,0.0419155611100289,0.101620866179547,-4.62193658186228 +"P29829",0.233791992132922,21.399175294795,2.28578930566963,0.0424439524827106,0.102752558405169,-4.63379698471078 +"Q9VC66",-0.133724481869756,17.7146013080975,-2.28027817357602,0.0428611050108064,0.103612062547862,-4.64305170436764 +"Q9VJH8",0.280370502292136,14.3539647835265,2.26414960620406,0.0441046174323499,0.106339604225256,-4.67008923928008 +"Q7JNE1",-0.144987648750835,17.8061660341541,-2.26399235199139,0.0441169101462093,0.106339604225256,-4.67035250960272 +"Q9VP55",0.131738841461857,17.0902538271428,2.26047825775138,0.0443924673116414,0.106817658198663,-4.67623393925417 +"Q9VQQ0",-0.232399038805877,18.3304209205465,-2.25983205450958,0.0444433182193479,0.106817658198663,-4.67731510147972 +"Q7JV09",-0.145262702453937,15.1197229386053,-2.25819534751526,0.0445723631558959,0.10697367157415,-4.68005296221249 +"Q9VQJ8",-0.170251675808455,15.2545065033807,-2.25602465559066,0.0447440628312381,0.10723146092314,-4.6836829292973 +"M9NFC0",-0.274559316551095,19.809523432855,-2.25476685927771,0.0448438426672696,0.107316398233867,-4.68578570094561 +"Q0E8C8",0.172599435479976,17.6512379738093,2.25381033792006,0.0449198650639211,0.107344319379112,-4.6873845116544 +"Q7K0B6",-0.142625051644334,20.1703238953373,-2.25100309919747,0.0451436910749192,0.107724859389078,-4.69207530608688 +"Q7JZK1",-0.166670062189926,21.5233492744515,-2.24811908961943,0.0453747484620644,0.108098497202369,-4.69689210431466 +"Q9V3W9",-0.123530618987495,18.4940150269694,-2.24743297417457,0.0454298840161036,0.108098497202369,-4.69803769575046 +"Q9W1X4",0.262777214724691,15.0923813133813,2.24560795430817,0.0455768526617107,0.108293718290219,-4.70108425094303 +"Q94901",0.247399056271121,18.8460127514966,2.24409766387007,0.0456988196704557,0.10842906288808,-4.70360471595862 +"Q9VJD4",-0.150907297084103,20.7705144012286,-2.24133454104907,0.0459227697328826,0.108805653287568,-4.70821433007497 +"Q7KMP8",0.130036484709962,19.1790736142579,2.23679662238257,0.0462928426652806,0.109526895837855,-4.71578011032026 +"Q9W1F2",0.373494497612858,13.6662068454943,2.22849590749405,0.0469771563092706,0.110501612911116,-4.72960427077598 +"A1ZBU8",-0.229751543277025,20.7934854746034,-2.22827998926375,0.0469950848637017,0.110501612911116,-4.72996360307394 +"Q9VB05",0.118015917930318,20.1983453454913,2.22825397310267,0.0469972455302769,0.110501612911116,-4.7300068984118 +"Q7K2N0",-0.170038476972378,15.4419258773403,-2.22802851223223,0.0470159742372725,0.110501612911116,-4.73038209572463 +"P53034",-0.24077883155698,15.7296453960802,-2.22778683100392,0.0470360582535324,0.110501612911116,-4.73078426976137 +"Q9V9T9",0.279943921441768,13.4031181751333,2.22351324199685,0.0473925537027307,0.111182531049444,-4.7378930488644 +"Q9W401",-0.182257811355015,24.4786463644169,-2.21987342063931,0.0476982119275294,0.111742440302134,-4.74394346468457 +"P28668",0.19859310589802,15.4458641848742,2.21879306529718,0.0477892971522597,0.111798804558161,-4.74573858588797 +"A1ZA23",-0.19240685499966,18.3436410059318,-2.21719643571812,0.0479242133256219,0.11195740592036,-4.74839093121762 +"Q9VND7",-0.186419632231974,13.9364598998831,-2.21616372563781,0.0480116712207534,0.112004849784918,-4.75010609137165 +"Q9VZZ6",0.13269707404061,18.4535818402234,2.21450523522842,0.0481524434043497,0.112176362567675,-4.75285992081109 +"Q9VMS1",-0.127106318068517,22.4056243372538,-2.21202182884456,0.0483639697992808,0.112511996687867,-4.75698197977407 +"Q9V3E3",0.225435257844959,14.964568038385,2.20983219079926,0.0485512082736925,0.112781079467716,-4.76061493715017 +"Q9VZZ5",-0.161935425429661,18.487787372841,-2.20908958733548,0.0486148657897408,0.112781079467716,-4.76184671583213 +"Q9VVJ7",-0.1348298923578,18.1536152391949,-2.20768424489317,0.0487355522856511,0.112904029461758,-4.76417735731912 +"Q8MLW4",-0.137920804320498,18.6267725613969,-2.20484196663932,0.048980510942233,0.113314136271352,-4.76888926267801 +"Q9W0B3",-0.150252370139473,19.1612708625215,-2.20160523767282,0.0492608922441251,0.113804942192799,-4.77425218717118 +"Q9Y114",-0.116880509190299,18.6138248886439,-2.19990593112392,0.0494087053280444,0.113988548391671,-4.77706652257256 +"M9PHA0",-0.188936909703891,17.4494655486649,-2.19835217411213,0.0495442271584201,0.114093493126279,-4.77963905470008 +"Q9VYV4",-0.159682994925548,15.5648574795582,-2.19781689985341,0.0495909967125615,0.114093493126279,-4.78052513429191 +"Q9VPC2",-0.293981631873624,14.8990986152607,-2.19061180241575,0.0502246428400965,0.115392154624354,-4.79244396284408 +"Q9VYS2",-0.211887686932444,14.9839626005374,-2.18886619131907,0.050379313531443,0.115588301197314,-4.79532925346061 +"Q9VY91",-0.410897397633029,16.9845300565398,-2.18769760094865,0.0504831099141672,0.1156673452429,-4.7972602848623 +"Q9VGZ3",-0.372253472727522,16.7664689786546,-2.18328966269599,0.0508764631984847,0.116408697688714,-4.80454045697112 +"Q7KND8",-0.169498884708091,15.4162305247695,-2.18239129798507,0.0509569874126607,0.116433226033312,-4.80602348026116 +"Q9VR31",-0.129206609002935,17.2903369611906,-2.1794287327725,0.0512233933295962,0.116881833206247,-4.81091235817454 +"Q24185",-0.145640685474259,18.7194646078084,-2.17047520111157,0.052036591999278,0.118575185047535,-4.82567137503261 +"A1ZB73",-0.695445019731014,13.5302636904513,-2.16677131474578,0.0523765644545948,0.119187052537877,-4.8317696762372 +"Q9VL69",0.236567903441289,16.0529782640677,2.16439453944877,0.0525958325151324,0.119522954543925,-4.83568071132306 +"Q9VK58",-0.625338790335073,12.9528132728325,-2.16255604412226,0.0527660386018678,0.11974660188832,-4.83870479505714 +"Q9W1V3",0.180774159950767,16.3647255422917,2.15751263380158,0.0532356373286269,0.12064815633716,-4.84699514878793 +"Q9VF39",-0.311707659402549,15.9936412749639,-2.15426847639334,0.053539795262374,0.121172833782415,-4.85232369566844 +"Q9VBT1",0.134911515381717,16.3081917650603,2.15138343722904,0.0538116660261268,0.121623115083441,-4.85705961625874 +"Q24478",-0.386624343347052,17.383932797162,-2.14636079969992,0.0542880941734955,0.122477788791577,-4.86529824436444 +"A1ZB69",-0.218352506888397,20.4066737873166,-2.14585105777555,0.0543366688883496,0.122477788791577,-4.86613392792224 +"Q9W236",-0.157016497755368,16.5415202223507,-2.14300599613511,0.0546085389716204,0.122924484486725,-4.87079667899664 +"Q9VRJ5",-0.169604577648478,17.258121864652,-2.14213229588121,0.0546922865231393,0.122947080755521,-4.87222806394996 +"Q9VGA3",0.157062366906498,19.3883005009227,2.13872878091414,0.0550196865358849,0.123516604497787,-4.8778017305349 +"A1Z9B5",-0.467683337404853,15.8380991709903,-2.13617633055247,0.0552664340005143,0.123903779452766,-4.88197924761707 +"Q24372",0.2052429223543,16.961321859722,2.13316761969989,0.0555586320016461,0.124391675407712,-4.88690082975137 +"Q9VZI3",0.264052063178648,14.3789312074502,2.12734411826036,0.056128347720758,0.125498772115582,-4.89641849985598 +"Q9VNA3",-0.104366486252701,18.6240536566594,-2.12420356499612,0.0564378756239083,0.125805855314651,-4.90154672379087 +"P13060",0.24994804024459,20.2068804301642,2.12369240691482,0.0564884068267641,0.125805855314651,-4.90238109297485 +"Q9V9A7",0.432372063353744,15.9650966838529,2.1236565024791,0.0564919578121546,0.125805855314651,-4.90243969700074 +"Q7K5M0",-0.357040319576853,16.6938410729552,-2.12265545364281,0.0565910474649766,0.125858489562108,-4.90407346241084 +"Q9VE52",-0.149619398096348,15.9129190872129,-2.11984347297685,0.0568702722955296,0.126311070824159,-4.90866101772791 +"Q9V3Z2",0.173149865681911,16.168421120398,2.11623397080118,0.05723059570939,0.126942331972423,-4.91454588533142 +"Q8IR45",-0.178762668703515,14.8202047794408,-2.11461934027552,0.0573924747250274,0.127132334450658,-4.91717696638305 +"Q9VMH9",0.13251917966889,20.0409676559278,2.11383987731227,0.0574707763290597,0.127136942860572,-4.91844681406186 +"Q0E8U4",-0.252444054782636,16.201959643139,-2.1125828802367,0.0575972613315235,0.127247989272823,-4.9204942061204 +"P25455",0.169090033926963,15.8392325607733,2.11128923772118,0.0577277078781937,0.127367482461411,-4.92260074211318 +"Q4QQ70",-0.188510155468617,16.1263941858416,-2.10727191066758,0.0581345796138579,0.128095744776638,-4.92913893288201 +"Q8SXF2",-0.180335213566938,15.5505292144811,-2.10491425120153,0.0583746186713047,0.128454965624982,-4.93297352637933 +"Q9VNH5",0.221424926245174,17.0654352672484,2.10254527677219,0.0586167502412648,0.128817838474874,-4.93682466008713 +"A8E6W0",-0.15633392795484,16.4184279724891,-2.09792231827598,0.0590919874613122,0.129525266722949,-4.94433459546782 +"Q9VAC4",0.11393029640254,19.3795200442363,2.09790318744752,0.0590939616164052,0.129525266722949,-4.94436565837752 +"Q9VN50",0.137732080987796,17.8043489316539,2.09416273032802,0.0594811434187731,0.130062758982633,-4.95043671210797 +"Q5U1B0",-0.347451468125268,14.6916270418667,-2.09402799147921,0.0594951349542861,0.130062758982633,-4.95065531592397 +"Q9V931",-0.508960961009228,17.634522551095,-2.08708771458394,0.0602200292622596,0.131475142420745,-4.96190710566921 +"Q9VBC1",-0.213430396857815,13.1575337108514,-2.07773126931863,0.0612104402047227,0.133462763740494,-4.97705013449768 +"Q9VC53",-0.125507851593042,17.8896260826794,-2.07424138513529,0.0615837601474948,0.13410145160055,-4.98269068946201 +"A8WH76",0.158127249787004,19.0881430387702,2.07303849335772,0.0617129307524451,0.134191161824932,-4.98463390106354 +"Q9VAA6",-0.286714178144813,16.2543885596548,-2.07225466159149,0.0617972381375161,0.134191161824932,-4.98589987330646 +"A1ZBK7",-0.163858997537162,17.6033643475218,-2.07106977280935,0.0619248877475056,0.134191161824932,-4.98781319238282 +"Q76NQ0",0.339845915235495,14.4918088718742,2.07031505724023,0.0620063232545835,0.134191161824932,-4.98903162875077 +"Q9I7C6",0.253209764458918,15.4669350735355,2.07012163903999,0.0620272096924597,0.134191161824932,-4.98934385737311 +"Q9VNA5",0.180747831279195,17.2882504006384,2.06613662192582,0.06245900780083,0.13479576882739,-4.99577385021791 +"Q4V5H1",0.18143366699725,14.9212624430889,2.06605112271331,0.0624683029397916,0.13479576882739,-4.99591174631709 +"Q7K0X9",-0.178191847570332,16.6766499687872,-2.06370681809454,0.0627236727987998,0.135171946031522,-4.9996917299225 +"Q6IDF5",-0.184003266637923,19.6335155888803,-2.06125379123324,0.0629919342969624,0.135574898590108,-5.00364496467103 +"Q9VY78",-0.175972641657111,18.7824671575719,-2.05826644609027,0.0633200815943794,0.136105536210599,-5.00845644806038 +"Q9V438",-0.155050158715149,18.9461861672291,-2.05685173406022,0.063476040357663,0.136265167717609,-5.01073392120725 +"Q9VSU7",-0.157248372586652,14.7222798995432,-2.05182966221778,0.0640325891710849,0.137283237451632,-5.018813006299 +"Q9XZ63",-0.164017095206354,18.9493450003096,-2.04805130018778,0.0644543194916045,0.138010019142486,-5.02488543673863 +"Q9NHD5",0.186454220950301,16.5805182474526,2.04681431882711,0.064592952191112,0.138129543916378,-5.02687236197573 +"Q7JVH6",0.114574893314003,18.9944459713052,2.04580475286957,0.0647063045405156,0.13819477077283,-5.02849359335921 +"Q7KK90",-0.123780871857932,21.0925393441282,-2.04490383466482,0.0648076153242997,0.138234146241601,-5.02994004406074 +"Q9VYT6",0.182643074994115,16.4947985262619,2.04261035962053,0.0650661935581231,0.138608442982055,-5.03362097887699 +"Q9VLS5",-0.19763690640764,14.5800862107451,-2.0413703234053,0.0652064035063795,0.138729950317144,-5.03561040399192 +"Q9VEY0",0.23517547768267,17.9110938685526,2.03793549494676,0.0655962543866149,0.139381595308119,-5.04111811959771 +"Q9VM69",-0.249121016532273,16.8164002282485,-2.03279476437158,0.0661837989244023,0.140451115274686,-5.04935330655003 +"Q9VF89",0.376108585186353,14.2008281351251,2.02657556335631,0.0669011793770364,0.141793096824519,-5.0593033738522 +"Q9VNX4",0.395893820575075,21.0704571451399,2.02392454123964,0.0672091757082052,0.142265107971175,-5.06354045634534 +"Q7JWD6",-0.115475315767799,20.469274717415,-2.01588287533095,0.068151576335653,0.144077096740012,-5.07637758400782 +"Q7K1W5",-0.160061182153282,19.7939368639035,-2.01351508479002,0.0684313981027714,0.144383598349888,-5.08015282193091 +"A8Y535",-0.168530972921673,22.0824631312377,-2.01319185402122,0.0684696800328304,0.144383598349888,-5.08066802503626 +"P54353",-0.210405265483864,18.8888086896107,-2.01243812083151,0.0685590262469431,0.144389464368562,-5.08186926341772 +"P08985",-0.13990070568973,20.6692362312678,-2.00371311574371,0.0696012152979478,0.146399529781812,-5.09575912945631 +"P25007",-0.104742672632948,23.8488105535566,-2.0004836808036,0.0699906957172133,0.147033350700645,-5.10089307162854 +"P21914",-0.106605827868442,22.9408814338135,-1.99505809657784,0.0706496110588959,0.14823088207074,-5.10950950342641 +"Q9W329",-0.12886011331851,16.4564491524834,-1.99104836224128,0.0711402821058696,0.149072852453003,-5.115870282578 +"Q9VFP1",0.455747061508763,15.7545845353601,1.98492248633922,0.0718960288909553,0.150467473262376,-5.12557620963583 +"Q8IMT6",0.259207558456605,16.1224247020421,1.98285396454177,0.0721529025758407,0.150815841474314,-5.12885038102872 +"Q8IPW2",-0.162224102671622,17.1922404897284,-1.98180854868432,0.0722830488618966,0.150898780352495,-5.13050450203179 +"Q8SYQ8",-0.310434574745575,16.02219485514,-1.97817850804618,0.0727366565702664,0.151655928949005,-5.1362449271549 +"P55841",0.116969449174835,20.6135059279887,1.97566736347622,0.0730519931886727,0.151995821890628,-5.14021300892681 +"Q9VVH5",-0.132277858995074,22.5632545494553,-1.97491814629152,0.0731463215941628,0.151995821890628,-5.14139644353195 +"Q95RF6",0.173348906109016,17.2961078038605,1.97470602662102,0.0731730485480662,0.151995821890628,-5.14173146032689 +"Q9VMU0",-0.171871146861623,21.1746705773516,-1.97260300635278,0.0734385187671693,0.152118482286451,-5.14505198229601 +"Q0KI98",0.162742660985186,16.648311637184,1.97238254354383,0.0734664001197497,0.152118482286451,-5.14539997882394 +"Q9VRP2",0.111918089239055,20.4207618516282,1.97207197576036,0.0735056934789446,0.152118482286451,-5.14589017256235 +"Q9VP57",0.211827375350236,19.5541368805725,1.96750837821082,0.0740853377219115,0.153128058637111,-5.15308895646692 +"Q9VKY3",0.130873879865028,18.7493350391532,1.95805348817642,0.0752997607024533,0.155267282871723,-5.1679776662525 +"Q9VXG4",-0.157571751702228,19.914670997339,-1.95760571772237,0.0753577290703345,0.155267282871723,-5.16868190809703 +"Q9VW57",0.141640134423557,16.541988782832,1.95682435041877,0.0754589839083952,0.155267282871723,-5.16991063402988 +"P56538",0.150097544243465,17.1130038822981,1.95656464859987,0.0754926657128104,0.155267282871723,-5.170318970652 +"Q9VND8",0.551626916646033,18.6038622077868,1.95416133863393,0.0758050222360414,0.155717705775514,-5.17409650587043 +"Q9VDT5",-0.181575113127668,19.0366011489648,-1.9488619665853,0.0764980106980222,0.156947948147972,-5.18241804048199 +"Q9VE12",-0.131490032299935,15.6501515964801,-1.94383247499833,0.0771611248706913,0.15811395120923,-5.19030549916987 +"Q9VW14",-0.192086727397056,13.7045062690852,-1.94006731886485,0.0776610173662899,0.158943039223278,-5.19620358500202 +"Q9VAY2",-0.0901811376347723,21.1161149002754,-1.93636110850165,0.0781560056587219,0.159760070390623,-5.20200379840623 +"Q6NL44",0.239495848073053,15.310139198492,1.93466129780303,0.0783839999252908,0.160030002295453,-5.20466215696774 +"Q9VXE8",-0.171277381433798,16.2797443141354,-1.93190546107566,0.0787549437710463,0.160505695268668,-5.20896958083948 +"Q9VSY8",-0.148020104792099,18.0552330128669,-1.93150152265758,0.0788094510941483,0.160505695268668,-5.20960068698531 +"Q9VDL1",-0.170287223451099,14.8511693656097,-1.92093616850566,0.080247561037436,0.163235282695663,-5.22608435130683 +"Q9VWL4",-0.270616541976862,16.181989265368,-1.91654433257126,0.0808524484024848,0.164265388471796,-5.23292296105698 +"Q9VGK3",-0.148719504189241,17.1045988195514,-1.90930854453944,0.0818582022394821,0.166106424982307,-5.244172690864 +"Q9VDU7",-0.150092084091991,18.2908397875015,-1.90512080266595,0.0824455358960174,0.167094962180507,-5.25067365561051 +"A1Z7S3",0.0976206303080325,20.0815928406797,1.90408399997139,0.0825915458113304,0.167187740792839,-5.2522820453832 +"Q9Y162",-0.151274701802585,20.2047833886323,-1.89956132613862,0.083231246649449,0.16827844777125,-5.25929283632126 +"Q8MKK0",-0.515338439880717,15.8237748845118,-1.88703087421285,0.0850274531358116,0.171677444104488,-5.2786721638573 +"Q7JX94",0.329786065968548,12.1922232410819,1.88640392235289,0.0851182531621171,0.171677444104488,-5.27964005951013 +"Q9VIH3",-0.202015749936512,13.7831616314972,-1.88553076540318,0.0852448587862211,0.171685785302926,-5.28098777273181 +"O61604",0.106043219861732,20.9337962490977,1.88495631427621,0.0853282470120656,0.171685785302926,-5.28187425924475 +"A1ZAL1",-0.197783320794771,17.3218645160112,-1.87927458457489,0.0861570553832307,0.173144540215938,-5.29063470695475 +"O97479",0.232516423513513,17.9370742538424,1.87491788719521,0.0867975706618936,0.174221838584884,-5.29734283430034 +"P09040",-0.28191950218412,16.6138123754536,-1.87305962207281,0.0870720952306225,0.1745628063037,-5.30020159012683 +"Q9VHI1",0.163023676384535,14.2020660930559,1.8719376779238,0.087238226738364,0.174685909003111,-5.30192687366384 +"Q9VIL2",-0.210574913009749,16.0075760219568,-1.86981529053102,0.0875532928111067,0.175106585622213,-5.30518912459694 +"Q09101",0.219367205289551,14.6800819489907,1.86787095181261,0.0878428418419264,0.175475281667465,-5.30817600425389 +"Q9W3N6",0.118209500677574,16.1297701981734,1.86477503525658,0.0883056921108831,0.176188868948508,-5.31292856968414 +"Q9W0J9",-0.12994187356496,18.4669456322713,-1.86280136496478,0.0886019263282759,0.176568713399718,-5.31595620658523 +"Q9VXI6",-0.121866146619084,22.0568840266741,-1.85938467185355,0.0891168978708112,0.177383037766722,-5.32119347358488 +"Q9W1X5",0.11915980773048,19.3993395647371,1.85668896463291,0.0895251305784457,0.177983215500414,-5.32532200358309 +"Q9VB17",0.131250207744333,15.6404225409362,1.84835812422812,0.090797560944961,0.179982593402734,-5.33806082119269 +"P61851",-0.182335878149402,23.5526415136679,-1.84835780488823,0.090797610035022,0.179982593402734,-5.33806130891796 +"Q9VMU2",-0.109439074172416,16.2948312498843,-1.84745355789827,0.0909367112952559,0.179982593402734,-5.33944217861165 +"Q9VXP4",-0.103882905477816,17.9702953474724,-1.84728653546923,0.090962425802461,0.179982593402734,-5.3396971981805 +"Q9VLS4",-0.163735083812931,20.6129039736447,-1.84245277402722,0.0917095049640403,0.181245798909975,-5.3470723474663 +"Q9VDI5",0.196958475016011,16.649817923907,1.83450783175614,0.0929495965041911,0.183479203513599,-5.35917196935025 +"Q9VKC7",0.27284100363058,13.71729161986,1.83281499685871,0.093215790562473,0.183787161534521,-5.36174642242073 +"Q9VJZ1",0.213725422909798,15.4427244885025,1.83157864867431,0.0934106417723377,0.183953896666186,-5.36362584629017 +"Q9VEA1",0.123192262654232,18.2134162765109,1.82833175468995,0.093924126704074,0.18474698507358,-5.36855833359011 +"Q9W2E8",-0.15913868007264,19.3598674565153,-1.82698540310195,0.0941378000991773,0.184949176166582,-5.37060224705869 +"Q9VGE4",-0.121830212969471,15.6704295408524,-1.82595158051603,0.0943021735815086,0.185054147687007,-5.37217115480575 +"Q9VEP9",-0.135933951743642,17.5404749985477,-1.82475127231738,0.0944933451768615,0.185211398066986,-5.37399211598034 +"Q9VXC1",-0.129635444704086,18.3356212803023,-1.82307213045437,0.0947613716207849,0.18551874162379,-5.37653841894984 +"Q9VE08",-0.157521945343095,14.5436962010939,-1.81855436271754,0.0954859386316139,0.186718107429698,-5.38338299779932 +"Q9V6U9",-0.0978790243605339,21.9206677303352,-1.81765103415653,0.0956314187280816,0.186783614096534,-5.38475046735908 +"Q9V3F8",-0.127814080787697,18.5478657235522,-1.81517137295231,0.0960318014234558,0.18734625119804,-5.38850230977405 +"Q9VA32",0.16917374166092,17.1851845348677,1.81382911928509,0.0962491654129418,0.187550943818676,-5.39053203916453 +"O15971",0.164614921072824,17.22846664386,1.81297205942674,0.0963881909921705,0.187602686785228,-5.39182764024277 +"Q9V429",-0.0900379403624498,22.3378491137311,-1.8105836906787,0.0967765762808139,0.187793592724427,-5.3954363298099 +"P53997",-0.311948699674922,17.4259770449845,-1.81051928147164,0.0967870698506807,0.187793592724427,-5.395533612514 +"Q9VBI3",-0.150739001205451,18.598604542185,-1.80978634888961,0.0969065522498512,0.187793592724427,-5.39664048981291 +"Q7JUN9",-0.413315061189314,13.3973841535477,-1.80922456376606,0.0969982248799411,0.187793592724427,-5.39748873387268 +"Q9VWD5",0.20337251332306,14.453435724862,1.80891234662645,0.0970492067916405,0.187793592724427,-5.3979600909249 +"Q9VFV9",-0.129737186558554,21.3744511439364,-1.80626852197646,0.0974818925048418,0.188412278908547,-5.40194971302093 +"Q7K1U0",-0.174588951912714,16.6679155407177,-1.80529131887418,0.0976422631086043,0.188503813501333,-5.40342353727225 +"Q7K568",0.216154936292064,16.1223278309833,1.80260201570456,0.0980848458974228,0.189139332898152,-5.40747730404453 +"Q8IQB7",0.196055698715885,14.3999050537992,1.80110326427242,0.0983322863829518,0.189397521578249,-5.40973503252611 +"M9PFN0",-0.123875187721278,16.7164883547666,-1.79963868816449,0.0985746311422568,0.189645311124895,-5.41194028167352 +"Q9W2D6",-0.129361796456131,19.6171215297306,-1.79723140834659,0.0989741422671915,0.190186294486164,-5.41556283782061 +"Q94516",-0.114679721348661,23.3974775558086,-1.79657179704477,0.0990838668516048,0.190186294486164,-5.41655497684856 +"Q9VN91",0.195020029936984,19.5930613818753,1.79213254121733,0.099825195852432,0.191388996186042,-5.42322694949693 +"Q9NHE5",0.264848816750959,15.7806137848226,1.78995115701795,0.100191310833273,0.191823795954174,-5.42650211218321 +"P35992",0.13867401665685,15.8476677280277,1.78935193458641,0.100292094526372,0.191823795954174,-5.42740140681864 +"Q9U9P7",-0.189252337480044,16.6361665346302,-1.78872886287432,0.100396986731411,0.191823795954174,-5.42833631671821 +"P55830",-0.127115120424456,21.9755504954389,-1.78539017116256,0.100960737913695,0.192680218352452,-5.43334289564094 +"Q9V3T8",-0.241710984561003,15.5833902651684,-1.78323147630903,0.101326764409642,0.193157763468896,-5.43657722730404 +"B7YZT2",-0.181884185227958,18.4627170146471,-1.78172724659882,0.101582529175056,0.193224616732781,-5.43882969843441 +"Q8T3X9",-0.133598102822894,18.350149122472,-1.78166269174505,0.101593518509981,0.193224616732781,-5.43892634078674 +"A0A0B4LFA6",0.123695192022161,19.5087790038833,1.77933710116145,0.10199012690675,0.193758008747676,-5.44240658220414 +"Q9VIM0",0.104414116111993,18.0493286187766,1.77718341824211,0.102358665111577,0.194105502634089,-5.44562730076942 +"Q9W503",0.087104705633184,17.9437406330069,1.77670486673181,0.102440718006441,0.194105502634089,-5.44634265316119 +"Q0E9B7",-0.256644974370444,12.7484747445179,-1.77623027295166,0.102522150971602,0.194105502634089,-5.44705198302214 +"Q9VLW8",-0.278802601000555,14.1336595459671,-1.77518328334487,0.102702004995523,0.194225560467724,-5.44861644313359 +"Q9VMD3",0.248619105836427,17.7312651630121,1.77347115763708,0.102996731394206,0.194562341976824,-5.45117366725479 +"Q9VUN9",0.138202734480288,16.7556766928651,1.76963325206232,0.103660166382156,0.19559406959891,-5.45690091872523 +"Q9W077",-0.108484196217027,20.8548788676054,-1.76470790866102,0.104517227540004,0.196988401736414,-5.4642407141418 +"Q9VHL2",-0.0791803574014445,20.6488725216332,-1.75877921428741,0.105557351182198,0.198724223218856,-5.4730604000231 +"Q9VMV5",-0.107711216446639,17.6071632710692,-1.75444333847785,0.106323924913007,0.199941721256928,-5.47949992490398 +"Q9VVA7",0.152182335916162,17.5091453152426,1.74124034759333,0.10868912780523,0.204159307634148,-5.49905287732985 +"O44386",0.100053988947849,16.8591629787653,1.73810543738766,0.109257619262711,0.204996298009226,-5.50368310414051 +"Q9VMR0",0.134158953933891,17.3046121692246,1.72783689278343,0.111138471052849,0.208290977209159,-5.51881599374967 +"Q7K486",-0.10898589824124,17.5543013562327,-1.72467405995704,0.111723614136601,0.20907853092387,-5.52346666812548 +"Q7K180",-0.165581530986403,16.2890726263542,-1.72421171114021,0.111809382244659,0.20907853092387,-5.5241460989782 +"Q9VY05",0.237385835122069,18.2871483764362,1.72076133512076,0.112451308958817,0.209841179750823,-5.52921315853562 +"Q9VJN0",-0.203854054638974,17.573336525988,-1.72066738631861,0.11246883375134,0.209841179750823,-5.52935104490655 +"Q9VZW1",-0.175622500597409,14.8452835327744,-1.71985408689887,0.112620645219704,0.209889649415046,-5.53054452181899 +"Q3YMU0",-0.0808255525906922,23.1398075885267,-1.71599470520096,0.113343544608431,0.211001152239802,-5.53620349917591 +"Q8SY67",-0.192095343881514,16.0581848111611,-1.71449381335199,0.113625795143452,0.211290776253376,-5.53840224329452 +"O46106",-0.133048069234949,17.017338906326,-1.71375479678257,0.113765001839233,0.211314056868419,-5.53948445948103 +"M9PDU4",-0.133501906236074,22.5680892902589,-1.71239113900168,0.114022270927767,0.21155633805063,-5.54148068549964 +"Q9VW00",-0.132744055290669,15.8098845532829,-1.71070124194569,0.114341810085463,0.211899157173923,-5.54395319711229 +"Q9VQ93",-0.180933963895257,16.6870561409343,-1.70980308439054,0.11451196631445,0.211899157173923,-5.54526672276203 +"Q9VVI2",-0.3388082320318,13.6294653114241,-1.70940132301318,0.114588153339855,0.211899157173923,-5.5458541547992 +"Q9VSC5",-0.0933378561962996,19.4250401027264,-1.69597957384449,0.11715950584371,0.216414236707982,-5.56543202964593 +"Q8T9B6",-0.108505676119115,19.4839596839665,-1.69370919960938,0.11759951875515,0.216986722658838,-5.56873475565701 +"Q7K159",-0.204754779535394,14.6092944452061,-1.68961219089233,0.118397271907731,0.218217292311707,-5.57468807078015 +"Q8I941",-0.14573879175461,19.0511352663361,-1.68775591296535,0.118760302539018,0.218523167229067,-5.57738259252991 +"Q9VK11",0.133031014747452,18.7821825475055,1.68742436429802,0.118825247408132,0.218523167229067,-5.57786367437195 +"P40797",0.139455965797367,19.1719364572486,1.68567460288614,0.119168520423345,0.218913096989141,-5.58040167300901 +"Q9W2Y3",-0.182877926232983,16.4162039945364,-1.68073127359163,0.120143088112599,0.22046058412741,-5.58756341877752 +"Q9VVL7",-0.116918082638655,23.5257696861805,-1.67783537653532,0.120717294222227,0.221064136893868,-5.59175308015676 +"P22465",-0.124418372020983,22.7324494956443,-1.6774827291609,0.120787384380666,0.221064136893868,-5.59226298072432 +"Q8I725",0.140927970388901,18.8948153039751,1.67706930597445,0.120869600028302,0.221064136893868,-5.59286067679864 +"Q8SX57",-0.109162978760853,17.9735269076282,-1.67553689113012,0.121174778442429,0.221237476021552,-5.59507535813154 +"Q9VLP3",-0.170378521165446,17.5382952952502,-1.67526173357084,0.121229648131714,0.221237476021552,-5.59547289392044 +"O97418",-0.0857647537526312,21.0295647126309,-1.66748721205655,0.122789124782456,0.223838535669001,-5.60668900198493 +"Q24492",0.145836872143592,15.2298742695276,1.66261109110726,0.12377627304977,0.225391728653948,-5.61370764537136 +"Q9VL10",0.170201084012451,16.6822511981854,1.6592650998788,0.124457716174386,0.226385464099101,-5.61851665842076 +"P42207",0.127168318352263,16.0134198222097,1.65185847532583,0.125977973483368,0.228694278737078,-5.62914093345328 +"Q9GU68",0.120627031452564,22.199010006939,1.65174581366016,0.126001224316172,0.228694278737078,-5.62930231591173 +"A1Z6R7",-0.156268359327393,17.9627432315327,-1.64821228576925,0.12673239351153,0.22977133954047,-5.63436052851539 +"Q9VYT0",0.156053239057808,18.3020186436602,1.64736496007455,0.126908281460795,0.229840405512059,-5.63557248732034 +"Q9V9U7",0.142832185134523,17.8409323512246,1.64335510886693,0.127743575626704,0.231102260461325,-5.64130275903041 +"Q9W4U2",-0.145913073478642,18.6008670770581,-1.64210046001108,0.128005927614567,0.23132598836522,-5.64309396172271 +"Q9XZ19",-0.15524801924461,16.1226418372543,-1.63556396312421,0.129380442109094,0.233556901989145,-5.65241225933132 +"Q9VJG0",-0.634443636045182,13.0557695105005,-1.63374203778825,0.129765874716179,0.233999436785499,-5.65500549645533 +"P38040",-0.200186174228296,19.0104172973392,-1.63240575903053,0.130049210733144,0.234257109614347,-5.65690635956341 +"P05205",-0.172171350652796,18.0903249449174,-1.62857775387255,0.13086389638144,0.235470311935537,-5.66234641638113 +"Q9VRL0",-0.146590836953028,22.7771550293313,-1.61942967184388,0.132829039103332,0.238748747009007,-5.67531499242924 +"Q494G8",-0.110351353359389,15.1534636374625,-1.61178096099289,0.134491962276753,0.241303553809475,-5.6861232341975 +"P08646",0.162872159682795,18.8991824855826,1.61156238337059,0.134539751224707,0.241303553809475,-5.68643163407571 +"Q9VWD0",-0.150419973662796,18.2049378541717,-1.61008427823794,0.134863309681605,0.241624060739976,-5.6885164674306 +"Q9VHC7",-0.118314037396839,19.9389572386376,-1.60620256013296,0.135716274265985,0.242865598362995,-5.69398585761496 +"O62530",-0.161434143385819,15.6831720575908,-1.60560734388715,0.135847483976423,0.242865598362995,-5.69482379563727 +"P00334",-0.101764414498028,25.2238148988764,-1.60248619194399,0.136537334192699,0.243715178823849,-5.69921453340506 +"Q7JPS2",-0.25042431696772,20.8106953540243,-1.60213601333924,0.136614923381474,0.243715178823849,-5.69970681983102 +"Q9W1F7",0.0867742746695299,20.3376522972391,1.59976601232706,0.137141061507708,0.244392404481685,-5.70303683047059 +"P14484",0.117046062956337,19.2092855912936,1.59844986463774,0.137434010936742,0.244653073898063,-5.70488477066427 +"Q9VJ58",0.118047766828331,17.1602533857691,1.59239471907386,0.138788840052153,0.246801476766515,-5.71337418940714 +"Q9VP77",-0.156119258545059,15.3532757997469,-1.59109739900002,0.139080628461205,0.247056963017349,-5.71519041486794 +"P83967",-0.549410222678649,17.5617736774693,-1.58708903173395,0.139985566700104,0.248399920484865,-5.72079615490876 +"Q9VSL3",0.11813993978328,22.3724793848783,1.58262364051709,0.140999737269912,0.249933646935402,-5.72703051401799 +"Q9VGT8",0.153536227036909,15.2979873906463,1.58099203921129,0.141371900155443,0.250327313651039,-5.72930569833756 +"O97102",0.140961938362071,21.0988065545856,1.58004472698656,0.141588372060433,0.250392024155639,-5.73062599332028 +"O97064",0.114119471598245,16.5196645317302,1.57951880778367,0.141708675541321,0.250392024155639,-5.73135876441387 +"Q9VIH1",0.100972562548595,15.7346051279217,1.57858660395584,0.141922135337568,0.250503832532343,-5.73265723718706 +"Q24050",-0.103140841304784,16.6296511029254,-1.57737534051489,0.1421999142442,0.25072881285341,-5.73434368608075 +"Q9VGU6",0.0928640659202102,18.5419958941332,1.57636492994229,0.142431994166246,0.250872826049946,-5.73574985655766 +"Q8SXC2",0.237744080976636,14.7466297495249,1.57300895083599,0.143205195993185,0.251968635988009,-5.74041619540745 +"Q960X8",-0.133564424732189,18.4020213680707,-1.5704832698626,0.143789510432984,0.252161522781624,-5.74392385947404 +"Q9VKM3",-0.141129995744169,21.791668822604,-1.57033446430801,0.143824001167439,0.252161522781624,-5.74413040829631 +"Q8IPD8",-0.224986545644839,18.3132308231899,-1.56992728527494,0.143918415548286,0.252161522781624,-5.74469552726496 +"A1Z8Z3",-0.121278446603622,20.0609538155478,-1.56992249680846,0.14391952619191,0.252161522781624,-5.74470217256414 +"Q9W0C1",0.101262567063021,21.3434102280767,1.56752988115782,0.144475407024197,0.252869862451585,-5.74802095681637 +"Q9VQM2",-0.0843292102296971,20.1587754521343,-1.5657013157277,0.14490149989108,0.253326018396275,-5.75055516692378 +"A1Z7H8",-0.176655212223015,14.6797035143283,-1.56509264022422,0.145043575973266,0.253326018396275,-5.7513983105898 +"Q9W289",-0.139397739191153,17.4922387611887,-1.56445881674691,0.145191650831438,0.253326018396275,-5.75227606626903 +"Q94529",-0.0953596309385176,19.6615464086985,-1.55620015223677,0.147133099734859,0.25644515188897,-5.76369227545329 +"Q9V3W2",-0.0833337261163116,21.5841622420883,-1.5537751476378,0.147707435914184,0.257149648291978,-5.76703704943348 +"Q9I7X6",0.206503963831992,14.8694631495357,1.55319287138388,0.147845631122306,0.257149648291978,-5.76783967400273 +"Q7KTA1",-0.274749415804621,17.1295852576316,-1.55205868822481,0.148115135927326,0.25735004867373,-5.76940250396558 +"Q9VMM6",-0.206171508198789,18.3857256503255,-1.54594142595089,0.14957607965189,0.259496007737095,-5.77781896476491 +"Q9W022",-0.0890530889346941,21.229935859258,-1.54558591499202,0.149661366572593,0.259496007737095,-5.77830743451589 +"D0UGE6",-0.19593784283733,15.3242683594864,-1.54246316246545,0.150412325429286,0.260527267721753,-5.78259494581831 +"Q8SZA8",-0.120109367924421,18.0460217000376,-1.54071285460702,0.15083466431744,0.260915211054262,-5.78499564119295 +"Q7K3D4",0.149820296652869,18.5538020345629,1.54023912884705,0.150949147882112,0.260915211054262,-5.78564509165546 +"A1ZB23",-0.229339880140511,15.9162150719352,-1.53785685172132,0.15152600457662,0.26164117560435,-5.78890908611218 +"Q9Y0Y5",0.105578248469712,18.6063939844555,1.53548167661133,0.152103038926614,0.262365945118503,-5.79216007539879 +"Q9VKV9",0.137968110456312,15.6079711928394,1.53064318013111,0.153284400895326,0.263767468802988,-5.79877256221332 +"Q9VS44",-0.101452308704021,15.1197182456157,-1.53027519799174,0.153374570476146,0.263767468802988,-5.79927490385543 +"Q9VIW6",0.193445771609824,15.0142165694366,1.53021243288745,0.153389954879436,0.263767468802988,-5.79936057819051 +"Q9V4W1",-0.220756453207246,13.5288508104444,-1.52876339238832,0.153745501015746,0.263940555300441,-5.80133787873974 +"Q9VA18",-0.104415267811003,21.5643485186051,-1.52780035998545,0.153982190382111,0.263940555300441,-5.80265131479752 +"Q9W445",-0.158141569067412,16.4557741783517,-1.52733150043366,0.154097538173675,0.263940555300441,-5.80329057489289 +"Q9VCR9",-0.0912250764099234,19.345413898887,-1.52722576340147,0.154123561668243,0.263940555300441,-5.80343472283813 +"Q9VI10",0.122728554463691,17.1704198728259,1.52618143356676,0.154380790936817,0.264109906956524,-5.80485807348215 +"Q9VCJ8",0.0794867507106432,17.8629066921186,1.52202997183515,0.155407005001757,0.265441324064137,-5.81050991898133 +"Q9VRZ7",-0.129130667252985,17.226274770369,-1.52174637541356,0.15547732230855,0.265441324064137,-5.81089564149442 +"Q9VRU1",0.156588850521324,17.2219290544111,1.51188687566146,0.157939072867356,0.269368480105061,-5.82427622004305 +"Q9VM50",0.155408317678759,13.4789758377264,1.50989671966574,0.158440029450757,0.269946853037653,-5.82697014872356 +"Q7JWQ7",-0.255194504553589,14.2116621725872,-1.50156588923922,0.160551895553238,0.273265879370204,-5.83822146317123 +"Q9V3L7",0.130004225516565,17.7628901859142,1.49870605639587,0.16128241404114,0.273974090578677,-5.84207431633066 +"Q9VZ58",0.0954365424396393,18.0709514644891,1.49865103383086,0.161296496971379,0.273974090578677,-5.8421483964802 +"Q868Z9",-0.203479629309562,20.3730720227694,-1.4929525711585,0.162760729615415,0.276179956254845,-5.84981075917097 +"P25171",-0.151669297025471,16.7384107035,-1.49142150495817,0.163156076217802,0.276569446271639,-5.85186616676863 +"Q95NU8",-0.176076920569908,17.3926764469771,-1.48876117789974,0.163844972494806,0.277455242762778,-5.85543421761852 +"Q9VTB4",-0.0831990591524665,20.6372394406759,-1.48524515986474,0.164759269412669,0.278720549067274,-5.86014338354919 +"Q8MKN0",0.152707650547534,16.5844453349051,1.4832434901141,0.165281725388508,0.279321092145928,-5.86282097728095 +"A1Z9J3",-0.202613175415919,17.6088326224457,-1.48094387418572,0.165883695705386,0.280054660360915,-5.86589413455997 +"Q9W0X2",-0.194332709101682,16.0392377675833,-1.47926601646526,0.166324089477689,0.280392556838723,-5.86813436497053 +"Q9VG73",-0.12185075804069,18.0358205372605,-1.47890094736952,0.166420042728019,0.280392556838723,-5.86862156910386 +"Q9W229",0.152562335217013,19.1258960926689,1.4735557221979,0.167830380219263,0.282237294618555,-5.87574577798966 +"Q9VDE2",-0.104448476131239,19.5950224472299,-1.47283226746639,0.168022044919746,0.282237294618555,-5.8767086741751 +"Q02910",-0.228154983279868,16.2575855564485,-1.47283031633791,0.168022562084068,0.282237294618555,-5.87671127063596 +"O76521",0.114287999065546,16.0843747790122,1.47005065237178,0.168760716910844,0.283192027975138,-5.88040794358088 +"Q9VK18",-0.149058846051535,14.5518342711502,-1.46550617677067,0.169973478926972,0.28494046517607,-5.8864414593423 +"Q9VAI9",-0.211108521695348,21.9643647966341,-1.46054017343631,0.171307207906095,0.286887974686111,-5.89302013162774 +"Q9V4N3",0.126151035968288,19.7652399343726,1.4590523966819,0.171708511645637,0.287239275023467,-5.89498809784343 +"Q9W2V2",0.105850692980141,14.3553213672322,1.45848640385534,0.171861388773034,0.287239275023467,-5.89573641023141 +"Q9VGR1",-0.182349279044159,14.1374567641641,-1.45653194522856,0.172390186294524,0.287758796775557,-5.89831892609814 +"A0A0B4K7J2",0.188912156677539,15.8116214791804,1.45606301883371,0.172517264253931,0.287758796775557,-5.89893818921727 +"Q7JW03",-0.148215086767895,17.1566554386743,-1.4540846023234,0.173054286897737,0.288366184361064,-5.90154938498732 +"Q9VPX0",0.373291697596439,14.3817251458285,1.45162346462972,0.173724320166453,0.289193778480681,-5.90479431477321 +"Q9VG97",-0.0895321226856893,20.0459893222148,-1.4499038242836,0.174193789677538,0.289656819071205,-5.90705937613766 +"Q9VKQ2",-0.151759155419253,15.9806831306593,-1.44933328154986,0.174349787978112,0.289656819071205,-5.90781047332336 +"Q9V9S0",-0.11538408437459,17.0992850140867,-1.44678577692624,0.175047775226094,0.290260133218356,-5.91116169552385 +"Q9VP18",-0.0985649510716087,17.1035307551244,-1.44673771042399,0.175060967636491,0.290260133218356,-5.91122488783386 +"Q6NLJ9",-0.18707079888345,15.2223876057909,-1.44378939732131,0.175871778946301,0.291314922822671,-5.91509824003941 +"Q9VL66",0.0826680202971666,15.7620512091045,1.4426634953657,0.176182249875753,0.291382128423204,-5.91657596612783 +"Q9VN21",0.0722008398649621,22.0285422951219,1.4423755319683,0.176261731162478,0.291382128423204,-5.91695378586569 +"P40796",-0.238550210793292,18.3505267640917,-1.43817493205047,0.177424601440142,0.293014094259562,-5.92245925265474 +"Q86BN8",-0.136596560844225,14.2958034449137,-1.4343871671135,0.1784787427793,0.294463445060211,-5.92741416722044 +"O61722",-0.113250926893066,18.9502903157586,-1.43129157509269,0.179344177389547,0.29559890107289,-5.9314569340755 +"Q9VF51",0.10641345258172,17.6610884696007,1.42491680288606,0.181137537349454,0.298260031884393,-5.9397632095908 +"Q9V595",-0.0818299612727884,18.5063273692098,-1.42418994552854,0.181342975221628,0.298303829062797,-5.94070866836204 +"Q9W3K6",0.115227992315942,16.3258849490945,1.4159769666345,0.183677953849384,0.30184712021751,-5.95136841153095 +"Q9V773",-0.14108653474316,15.5600434976532,-1.41396402390732,0.184254085707065,0.302495880865536,-5.95397449490505 +"O18404",-0.0963080867311916,23.0057310815271,-1.41189942076095,0.184846581358263,0.302993674019046,-5.95664477670293 +"Q9VSX2",-0.17755289880386,17.9673978284464,-1.41164188869188,0.184920599611145,0.302993674019046,-5.9569776683151 +"Q0KI81",-0.0984668958351556,15.6755594729209,-1.41060398163762,0.185219160881786,0.303185044505219,-5.95831886023254 +"Q59E14",0.164667270827273,14.5323696932996,1.40192654267773,0.187731163800356,0.306995667861758,-5.96950491802792 +"Q8IN51",-0.18650800750523,17.1650204541577,-1.39936438795665,0.188478314559651,0.307846795285125,-5.9727985327409 +"Q95R34",0.178798631298603,15.2971669278321,1.3982783805875,0.188795756556667,0.307846795285125,-5.97419330380548 +"P40417",0.0917762126207222,19.8432321186938,1.39765438212472,0.188978354982853,0.307846795285125,-5.97499436766317 +"Q95T12",0.100285916336134,15.9640670863757,1.39761501732761,0.188989879119885,0.307846795285125,-5.97504489416356 +"Q9V3H2",0.140488104666133,18.388339202099,1.39354216727021,0.19018539950408,0.309491947680785,-5.98026717138987 +"P13677",-0.235542973497996,17.121861378584,-1.38901326485889,0.19152220942223,0.311363591926198,-5.98606159592154 +"A0A6H2EGA2",-0.0961672405470129,15.8128614148274,-1.38597128757466,0.192424520630812,0.312336506710269,-5.98994612394175 +"Q9VB10",0.0782805348294815,20.9924968540337,1.38573363897629,0.192495161209926,0.312336506710269,-5.99024934169681 +"Q7KS11",-0.145302847496843,15.650315342062,-1.38409919712633,0.192981582559731,0.312821457443762,-5.99233374282052 +"Q9VFP6",-0.0754029400839755,20.2588012378,-1.38232449112714,0.193510908728114,0.313101336355013,-5.99459505074758 +"Q9VFJ2",0.126363829829039,13.8526389134251,1.38226168700294,0.19352966293886,0.313101336355013,-5.99467503732513 +"P48609",0.0846412382193691,16.9537959924135,1.37418950155856,0.195952780081336,0.316714377108206,-6.00493420496234 +"Q9V9X4",-0.15168017812168,18.7365809517768,-1.37301767699831,0.19630663081273,0.316759870139444,-6.00641996008262 +"Q9VWD9",-0.076165440556796,19.4377701717986,-1.37283865914516,0.196360734846634,0.316759870139444,-6.00664685720604 +"Q9W1X8",0.0777752937224712,16.0906819310985,1.36721778696525,0.198065834146997,0.319135681594518,-6.01376033644783 +"Q9VLP2",-0.170192200740409,19.3539726736026,-1.36672414641579,0.198216166745756,0.319135681594518,-6.01438406740579 +"Q9W3T2",-0.171919305153658,16.2826420092416,-1.36282721598632,0.199406262918976,0.320742185678739,-6.01930231563289 +"Q9VQB4",-0.0883962833604848,21.7981679027819,-1.35984573221106,0.200320787150946,0.321902767791693,-6.0230584097509 +"Q9V420",0.098437509429818,17.4816972268581,1.35745318893431,0.201057176115609,0.322734243637502,-6.02606828937782 +"Q9VXJ7",-0.11629733188772,14.9455248169449,-1.35690833304352,0.201225187879498,0.322734243637502,-6.02675320039448 +"P36241",-0.11822274566217,19.7298583231501,-1.35373952917999,0.20220462724792,0.323993581411653,-6.03073263190576 +"Q9VVH3",-0.120414534592566,19.9132225111463,-1.35149931141524,0.202899430759961,0.324794866130149,-6.03354189624461 +"Q9VC05",-0.15612081084033,14.8664304997387,-1.3502871864861,0.20327619419781,0.325085994172528,-6.03506052225379 +"Q9VN44",-0.15205676621855,19.4851939047085,-1.34834867158761,0.203879943236382,0.325739219653529,-6.03748717567578 +"Q9VP13",-0.332043677132782,11.7073651357764,-1.34694362126218,0.204318471193038,0.326127473636352,-6.03924446212778 +"A1Z7H7",0.0881550483304032,17.8422860636159,1.34608656317654,0.204586348755094,0.326242858244261,-6.04031572986434 +"Q4QPU3",0.286898624626978,14.4685897794944,1.34222176556991,0.205797915870722,0.327861436172268,-6.04514036446893 +"O97454",-0.215840172359426,13.996875784922,-1.3368129262465,0.207503457898759,0.330134791141998,-6.05187566177284 +"P45889",0.0908818141539633,19.1475681499546,1.33644233147836,0.207620740952012,0.330134791141998,-6.05233641979117 +"Q9VSJ8",-0.157992524542701,15.7611928472973,-1.33462293109713,0.208197323715992,0.330706179352572,-6.05459712453382 +"Q9W3T9",-0.0949135367747829,18.6381017721014,-1.33405802417102,0.208376615407406,0.330706179352572,-6.05529859785569 +"Q9VYV3",0.0878318039003858,20.4945766510658,1.33272047155413,0.208801638426918,0.331065715680703,-6.05695864474126 +"Q9VT75",0.0901106660955389,15.5724515508241,1.33089332537136,0.209383388519528,0.33167283195686,-6.05922437536513 +"Q9VXA9",0.13407564814092,14.2511506800232,1.32968378245608,0.209769231346934,0.331784651306238,-6.06072301164532 +"P42325",-0.0806805956846723,20.1285509306395,-1.32942517450396,0.209851802834581,0.331784651306238,-6.06104330102351 +"M9PF16",0.206323237776349,21.2384936964768,1.32721576197898,0.210558341077611,0.332586470565772,-6.06377783964741 +"Q9VJ28",0.101937732408395,18.9493409131649,1.3235873629415,0.211722891603228,0.334109539445776,-6.06826143587025 +"Q9VKR4",0.163262179047411,19.1656522989005,1.32229242330121,0.212139786693221,0.33445100586417,-6.06985941954088 +"Q9VJD1",-0.0999935004216717,18.5362265519824,-1.32125761738867,0.212473418030177,0.334660681090024,-6.07113557183258 +"Q9VWX8",-0.0739057366155258,20.5659061921597,-1.31954578244476,0.21302627510967,0.335214931021632,-6.07324505363154 +"Q9W1G7",0.0936883366749228,18.9343170353578,1.31536244671895,0.214382297270201,0.337030793446461,-6.07839173142156 +"Q9VHN4",-0.13650142701721,14.5543849707137,-1.31311029388787,0.215115252748509,0.33786463426037,-6.08115755621508 +"Q9VTC1",-0.107706942571372,15.8469769355536,-1.30179067092034,0.218830297530597,0.343376233566356,-6.09500622185315 +"Q9VA97",-0.115655962887409,18.5605371415127,-1.30087947315614,0.219131612487869,0.343400978880158,-6.09611716172621 +"Q9VLU4",-0.176505191713531,17.1644397266417,-1.30049811868225,0.219257819249022,0.343400978880158,-6.0965819419956 +"Q9V3Y2",-0.0894333337121225,17.8838483250248,-1.29666003553006,0.220531310978233,0.345071507234234,-6.1012540506173 +"A1Z6X6",-0.101265993457037,18.5587617420513,-1.29217646401088,0.22202660341445,0.346827809013836,-6.10669898538074 +"Q9VJ22",0.310944858606529,12.9816245717618,1.29204789161171,0.2220696043326,0.346827809013836,-6.10685492028457 +"Q9VTW6",-0.210121443885646,16.194169056418,-1.28997894957155,0.222762492274268,0.347584506186604,-6.10936258937992 +"P16620",0.157768736263234,17.3250638781419,1.28172580562191,0.225543973835477,0.351349722737545,-6.11933615472158 +"Q8IH23",0.131938278127455,18.2791776368756,1.28149031694385,0.225623750151905,0.351349722737545,-6.11962003423506 +"Q9VXA3",-0.095929353111547,17.7987531490768,-1.28069328014067,0.225893931527751,0.351349722737545,-6.12058056695136 +"Q9VXM4",0.085447362429214,20.1302889417902,1.28032713259312,0.22601813698884,0.351349722737545,-6.12102167309746 +"A0A0B4KH34",-0.0749504469134834,23.3689691033395,-1.27906199736535,0.226447725493501,0.351689763615604,-6.12254508676274 +"Q02748",0.15551397019599,19.58789366328,1.27813485100116,0.226762966751178,0.351851747479967,-6.12366079832275 +"Q9Y105",0.247386430449282,17.2073940152642,1.27579495671802,0.227560141080303,0.352760516098462,-6.1264739032456 +"Q9VV76",-0.134700682726063,16.3344335082256,-1.27134516722753,0.229082391335083,0.354790555939571,-6.13181297987667 +"Q9VZV2",0.119923928313401,15.0368126342303,1.26719929469325,0.230508073241353,0.35666740831779,-6.13677484498268 +"Q8IQC6",-0.215632206386099,15.9312594337017,-1.26294097146793,0.23197987586562,0.357863727394138,-6.14185864724277 +"Q9V3F3",0.146133410835443,14.6036910424422,1.26287740866109,0.232001902349458,0.357863727394138,-6.14193443449126 +"Q8SWZ6",-0.072171039063111,13.9839389297522,-1.2624923662314,0.23213536755304,0.357863727394138,-6.14239346732465 +"O61444",-0.120531862500592,16.4215833636943,-1.26248067702642,0.232139420288044,0.357863727394138,-6.14240740110335 +"Q9Y0Y2",-0.126876261498666,19.5053242582802,-1.26099318558288,0.232655610494873,0.35815787674453,-6.14417973155112 +"E1JIY8",-0.198608582931394,16.4254941659057,-1.26058045626787,0.232798999949407,0.35815787674453,-6.14467121599922 +"Q9VJC7",-0.126827322634316,18.6099576151295,-1.25959845207017,0.233140451898561,0.35815787674453,-6.14584011563048 +"Q9VG33",-0.134141643047279,19.9411787797578,-1.25945857522647,0.233189121189784,0.35815787674453,-6.14600655817251 +"P23128",0.212480522467803,14.6397759761384,1.25881519111383,0.233413088178491,0.358172061712716,-6.14677195612109 +"Q9W125",0.10806530877413,21.3969056047156,1.25702232436193,0.234038113225203,0.358801077995991,-6.14890327665636 +"Q9VXH4",0.103448713356093,17.1035307261194,1.25593146941497,0.234419063453437,0.359055094435568,-6.15019894214404 +"Q94533",-0.144637596939658,15.2929972646502,-1.25266253447615,0.235563635382765,0.360003368279248,-6.15407655128299 +"Q9W2N5",0.265837348609141,12.8485670836556,1.25247651065895,0.235628903934208,0.360003368279248,-6.15429698351961 +"Q9VKX2",-0.0775679030453134,23.1235484293345,-1.25231478684347,0.235685658369868,0.360003368279248,-6.15448860097061 +"P08928",-0.0731239992210817,22.7210904996215,-1.25079399285175,0.236219894849478,0.360489281435434,-6.15628959090064 +"Q9VI04",0.184986815290383,16.3524688244624,1.24218067565456,0.239264028227891,0.364801096054957,-6.16645862688706 +"Q9W0Y1",-0.0956860510840229,17.6477306977507,-1.24076907160561,0.239765906164449,0.365232448842285,-6.16812011670966 +"Q9VQ62",-0.183041811910758,19.6789883303478,-1.24000467027218,0.240038031130456,0.365313353946716,-6.16901923640583 +"Q9W5R5",-0.0821758321689288,15.8775218791851,-1.2384348310709,0.240597665449534,0.365831272534023,-6.17086442631877 +"Q9VSU6",-0.0933044146895092,21.6275568440208,-1.23592134973596,0.241495874176552,0.366862584814653,-6.17381507751717 +"Q9VEB3",-0.268091495924514,12.2713924269035,-1.23448345639041,0.242010919385412,0.367310476373855,-6.17550101506646 +"Q9W073",0.098821500760037,14.6005869684832,1.23370534561343,0.242290000192156,0.367399745745924,-6.17641273170914 +"Q9VSY4",-0.0645596833759505,20.446590913164,-1.23170966205407,0.24300695706657,0.368152229234368,-6.17874908522538 +"P02572",-0.064893061663696,26.5782803934844,-1.2293538134619,0.243855484160892,0.369102493267122,-6.18150337761258 +"Q9VJ19",0.0690043253720987,19.1288764476085,1.22669827005089,0.244814788115386,0.37021855537304,-6.18460323193203 +"Q9VL00",-0.145164928076358,15.980638635039,-1.22539667650669,0.24528608111858,0.370595274733507,-6.18612073287901 +"Q9VXN1",-0.15228697420662,13.6740885749815,-1.22351585506609,0.245968383419528,0.371289831261333,-6.18831137002295 +"Q9VKW5",0.18614222795941,17.0242872667082,1.22121249264708,0.246806028600963,0.371863525349059,-6.19099064667682 +"Q7K860",-0.38125084337851,20.5925869721479,-1.22085367786674,0.246936720058367,0.371863525349059,-6.19140767325896 +"Q9VWT3",-0.109750543788588,14.2966069169381,-1.21967434671458,0.247366657019964,0.371863525349059,-6.19277767082967 +"Q9VZD8",-0.199941024847236,13.6936485838105,-1.21958128529834,0.24740060882612,0.371863525349059,-6.1928857346549 +"Q8SX78",-0.0931541692439417,15.9843376096219,-1.2194099220272,0.247463137372575,0.371863525349059,-6.19308470684425 +"Q8IP97",-0.0766787092212482,19.9575309305384,-1.21707022997981,0.248318122931188,0.372812447389038,-6.19579921223501 +"Q7JXF7",-0.0898463657160313,17.8540174532232,-1.21612395974983,0.248664581410707,0.37299687211606,-6.19689593811056 +"P02283",-0.0897685143270586,21.5548605193017,-1.21545365580944,0.248910232527907,0.373029890257457,-6.19767242368184 +"Q9VJJ1",-0.117820816226866,14.0243795029116,-1.21190092867714,0.250215445947823,0.374649339175017,-6.20178244625732 +"Q9W2D9",0.13021066304114,17.6320300140035,1.21107175009927,0.250520852969978,0.374770208747913,-6.20274036332561 +"Q9VGJ9",0.0771464390784544,18.0442530938729,1.20882661788314,0.25134927519685,0.375672572606045,-6.20533154550058 +"A8JNP2",-0.106655839741201,21.1208525541613,-1.20749415502932,0.251841961241618,0.376071970770832,-6.20686763656618 +"Q7K084",-0.13844008758414,23.6785214563872,-1.20566316878061,0.252520227088124,0.376710478822821,-6.20897630841845 +"Q9VYF0",0.112108224251211,16.1341762480141,1.2051212845075,0.25272123849085,0.376710478822821,-6.20959990170203 +"A0AQH0",0.14028091211744,16.853287844187,1.20319611156658,0.253436403987694,0.377439215938816,-6.21181361799183 +"C0HK95",-0.122982744857541,19.990698998323,-1.20219692189183,0.253808214878291,0.377655755947359,-6.21296148960092 +"Q9VGR2",-0.0869012757949825,15.6431698297456,-1.20101872751333,0.254247189798029,0.377971758095465,-6.21431405694795 +"Q9W3L4",0.111117894745327,17.7467405264326,1.19749819741402,0.255562455417042,0.379588758357636,-6.21834952328584 +"Q9W0H6",-0.0859213088911837,18.1723647947172,-1.19663549700035,0.255885577616628,0.37973055468375,-6.21933701132991 +"Q7JYZ0",-0.219494477249663,16.8292776102509,-1.19003956581786,0.258366733905652,0.383071744137446,-6.22686881606579 +"Q9VH39",-0.203981985748804,18.3919284184357,-1.18877147249041,0.258845911295776,0.383441367709907,-6.22831313623352 +"Q9VTT2",-0.207413104172973,14.0886599637403,-1.18025573329054,0.262081914739983,0.387890535746488,-6.23798130218326 +"Q9VXQ5",0.0696756260340727,20.333929555983,1.17963429763222,0.262319300385959,0.387897688868598,-6.23868471855001 +"Q9VRL1",-0.0885727090916149,20.479762370792,-1.17799688969706,0.262945591010792,0.388479402839682,-6.24053675334488 +"Q9U616",-0.112532577935109,19.7513678210464,-1.17017740941727,0.265952639264974,0.392263756335844,-6.24935349325516 +"O76877",-0.103470806979923,17.368344962166,-1.1701133018996,0.265977403127002,0.392263756335844,-6.24942558708599 +"Q9VH26",-0.200831119287567,18.296763868537,-1.16614053440247,0.267515550556093,0.394183691102087,-6.25388723659512 +"Q9VG00",-0.141920938424827,15.2692973902112,-1.16492691156231,0.267986815452185,0.394225616543054,-6.25524783552106 +"O18335",-0.0658888929497579,21.6609989361721,-1.16485001765764,0.268016696138983,0.394225616543054,-6.25533400427206 +"Q9VZW7",-0.251289096596899,13.8697409075358,-1.16131725465617,0.269392321337817,0.395707332200428,-6.25928807278241 +"Q7JV69",0.150364266087458,16.1992776708574,1.16104511298617,0.269498518812761,0.395707332200428,-6.25959227812002 +"Q8SZM2",-0.0942904387055492,21.2118068796013,-1.15831545366308,0.270565516279768,0.3969246096347,-6.26264044680982 +"Q9VJQ5",-0.184810626434549,14.2594883328318,-1.14792965595974,0.274655310214814,0.402570349242803,-6.27418646016373 +"Q9W380",0.116794848561113,18.3879921592901,1.14342728656768,0.276443129083743,0.404555342721514,-6.27916629093682 +"Q9VCA5",0.186004390740329,14.1872736431923,1.14329785156825,0.27649465869456,0.404555342721514,-6.27930922328298 +"Q8I937",-0.222970964311232,14.0185280435525,-1.14023813382851,0.277714936460792,0.405984674861175,-6.28268427536613 +"Q9VQV7",-0.0772581864348041,16.250760095745,-1.13955552239346,0.277987743626827,0.406027632547764,-6.28343625950075 +"Q9W4A0",-0.0701465543760165,17.134735138281,-1.13866377450932,0.278344444899238,0.406192943212537,-6.2844180967423 +"Q7KTP7",-0.0543502323610028,17.8428552435053,-1.13425218141252,0.280114300701979,0.408418403471067,-6.28926640498711 +"Q8IQW5",-0.0800258299897116,21.9568799466394,-1.13357294839994,0.280387567748552,0.408459793017105,-6.2900115499532 +"Q9VEP8",-0.0682649122586287,17.1876630789866,-1.13176431755239,0.281116214235365,0.409163913913254,-6.29199395887944 +"Q24090",0.139174873475488,15.8383826879784,1.12974933395716,0.281929713548372,0.409990202440004,-6.29419958387088 +"Q9VZG0",0.135036184951623,21.6690312800951,1.12715039999195,0.282981646147926,0.411129361352367,-6.29703978950172 +"Q9W1H6",-0.0945578276219017,17.1476031908805,-1.12615988065408,0.28338335880636,0.411129361352367,-6.29812089269847 +"Q9VLV5",-0.0646005621134549,17.4702479203121,-1.12598951199684,0.283452497335265,0.411129361352367,-6.29830676540439 +"Q9VIS4",-0.0838357425922389,14.0775334046946,-1.12483482157398,0.283921432767966,0.411451737495193,-6.29956594541203 +"Q9W3N9",-0.0964123619582473,20.1826704395435,-1.12248287894203,0.284878434094595,0.412480232699465,-6.30212753265241 +"Q9W074",0.136929568528227,13.6415521823781,1.11978066780231,0.285981017668708,0.413442044818196,-6.30506532783197 +"Q9V3J4",0.0751268237393514,16.685240294284,1.11964015392863,0.286038441079256,0.413442044818196,-6.30521793732691 +"Q9W1M9",-0.22082559450735,14.2257678413941,-1.11681517415736,0.287194796397426,0.414475190214583,-6.30828284801982 +"Q9VFR0",-0.220225514131693,15.2984249751179,-1.11668006226639,0.287250191779411,0.414475190214583,-6.30842928010994 +"Q9VVU5",0.123398282020499,15.6597203034082,1.11482223353973,0.288012725949334,0.415216272155133,-6.31044132762776 +"Q9V3R3",-0.0969273812388796,13.6329053378773,-1.11300640282485,0.288759520510298,0.415886242312944,-6.3124052993857 +"Q9VYG8",0.116749287651263,15.0114754895941,1.11248043364898,0.288976112014809,0.415886242312944,-6.31297369984836 +"Q9W254",-0.0667293882926927,18.141604463727,-1.11012197929625,0.289948841399399,0.416592962651775,-6.31551976943636 +"Q9VU75",0.0841490007188348,18.2412690858665,1.11007877412169,0.289966684435678,0.416592962651775,-6.31556637118269 +"Q9VEA5",-0.141747766732076,15.6219699542762,-1.10523973888561,0.291970446042513,0.419110760756379,-6.32077661477769 +"P92204",-0.154125665309916,15.8721992668769,-1.10198900434674,0.293322445464078,0.420066823514445,-6.32426644699519 +"Q9VAQ4",-0.109751793869233,16.0887851991566,-1.10186117268742,0.293375708812155,0.420066823514445,-6.32440351198059 +"Q9W141",-0.0775864508045352,21.8765592328119,-1.10182208698933,0.293391996039765,0.420066823514445,-6.32444541829891 +"P07668",-0.209150444046751,14.7482610689231,-1.09666541344918,0.295546860133074,0.422789161837022,-6.32996372557644 +"P18053",-0.05465640716357,21.0232835006624,-1.09568522524974,0.295957819076669,0.423014260685419,-6.3310102940149 +"Q9VEK8",-0.0530119667762925,18.8674843722732,-1.09483366713413,0.296315200613552,0.423162461150175,-6.33191890858836 +"Q9W4Y1",-0.152199485979498,17.5769264901435,-1.09076454220897,0.298027460010325,0.425169592316196,-6.33625280091514 +"Q7KML2",-0.337584622417065,13.5278726626159,-1.09028327574453,0.298230469430425,0.425169592316196,-6.33676452007269 +"Q9VX02",0.0858651452128427,17.217016495686,1.08393976677387,0.300916123620478,0.428632018957266,-6.34349234443976 +"Q9VC67",-0.159591982447781,15.1141579893859,-1.08132203277293,0.302029718004226,0.42981115423017,-6.34625940140394 +"Q9VMH2",-0.213594174848785,17.3279775653262,-1.08063203354513,0.302323764847211,0.42981115423017,-6.34698785658828 +"Q8IPX7",-0.156482309802254,15.1508433411712,-1.08009118991125,0.302554399517593,0.42981115423017,-6.34755857950725 +"Q95RB2",-0.0734235441330533,24.3207441246006,-1.07957500228678,0.302774644017056,0.42981115423017,-6.348103068042 +"Q9W396",-0.0878873757346579,16.6601802969438,-1.07752459989689,0.303650696538437,0.430688232845334,-6.35026380060231 +"Q9VQ35",0.223616549325399,12.3065356160047,1.07597852780609,0.304312534254244,0.431019917430589,-6.35189085870562 +"Q0E8P5",-0.0746325491981601,17.7613734447106,-1.07577122954327,0.304401356554697,0.431019917430589,-6.35210887127565 +"Q9W078",-0.0818818768491845,19.4311207108313,-1.07509106803152,0.304692926725818,0.431066837810572,-6.35282394742781 +"Q9VUW4",0.085059506866445,14.5659582135549,1.06738177124116,0.308012464893879,0.435393891053381,-6.36090324622437 +"Q7K1C3",-0.112691271658223,17.1008745455559,-1.06451240029693,0.309254906748209,0.436696779769165,-6.36389822558318 +"Q9VAY0",-0.128957421096905,14.0525773918315,-1.06404467234763,0.309457789980307,0.436696779769165,-6.36438580486591 +"Q9VCU0",0.139306027337257,17.3947869726467,1.06213139548487,0.31028873985414,0.43749925450271,-6.36637846290962 +"Q9VU84",0.0794112870896235,18.4143083907812,1.05722676227057,0.312426500388603,0.440141387371782,-6.37147319378039 +"Q9VNI8",-0.0660765478460661,15.7459663477266,-1.05591205186421,0.313001407637785,0.440579196573692,-6.37283558076409 +"Q9VV60",-0.0779563914982795,20.0494308515399,-1.05437309479264,0.313675380538365,0.441155594214159,-6.37442858226413 +"Q9VKV2",0.0887734545903331,14.9101182289676,1.04933231075851,0.315890545383917,0.443896739427441,-6.37963304318364 +"Q9VLR3",-0.101915347059283,16.7811547218915,-1.03532476944681,0.322107362783146,0.452251751786437,-6.39398766882869 +"Q9VCT4",0.318592346750187,13.3534709933126,1.03404989323586,0.322677655532637,0.452671429292211,-6.39528623752037 +"Q0E8X8",0.241466982656053,19.8145337646174,1.02867171286619,0.32509172425731,0.455674786606044,-6.40074980960788 +"Q9VPL3",0.140736765528091,15.7123345066666,1.02724566191682,0.325734061567558,0.456191783958596,-6.40219454923774 +"Q9VHX2",-0.147365282261616,14.8269573239446,-1.02461872161061,0.326919770672464,0.457380957432322,-6.40485157088729 +"Q9VHJ7",0.148739605206041,14.8017666798064,1.02415018963129,0.327131584062806,0.457380957432322,-6.40532487568476 +"Q7K2W6",-0.221079705964456,16.8380654955842,-1.02128471487944,0.328429208325679,0.458810652836879,-6.40821563401908 +"Q9VAS1",0.11428910507572,13.0280003445266,1.01986194708335,0.329074913617599,0.459327996580883,-6.40964845883881 +"Q9I7I3",0.16104835842488,14.6114589612487,1.01602220918684,0.330822195721365,0.46138078801274,-6.41350705722789 +"A1ZBD8",0.168649373347391,14.0505637604564,1.01522817438623,0.331184373026116,0.461395868448433,-6.41430348273698 +"Q8IPG8",0.139442216115709,15.8220744488806,1.01478587700737,0.331386241247735,0.461395868448433,-6.41474688725337 +"Q9VJJ0",-0.0556795196065103,19.709434863071,-1.01406317275132,0.331716284067416,0.461470193348165,-6.41547105469124 +"Q9VDC0",-0.079023386368485,17.5760113133478,-1.0126731882628,0.332351737487641,0.461766410706027,-6.41686264648845 +"Q9VM11",0.0928915973725992,17.7529083825668,1.01238655120509,0.332482889243368,0.461766410706027,-6.41714941741238 +"Q9VEW1",-0.162898290636107,14.6366576648018,-1.00682715746295,0.335034124421696,0.464922562009474,-6.42269802820894 +"Q7JR49",-0.0871950121634981,18.8730371829467,-1.0054177882976,0.335683163623041,0.465436007417483,-6.42410061539626 +"Q9V8Y2",0.114015134291559,19.8865975230946,1.00237315775423,0.337088408505245,0.466689491461819,-6.4271249954637 +"Q9V3I0",0.246702165515172,16.2731922365196,1.00224687921892,0.337146784898976,0.466689491461819,-6.42725026862083 +"Q9VJ25",0.137302846522367,15.675177956348,0.998658744385093,0.33880860507218,0.468600956268985,-6.43080432193034 +"Q0E8X7",-0.0988741830096664,20.9842730225113,-0.995265140041911,0.340385820063274,0.470392334602769,-6.4341558774357 +"Q9V597",-0.145487786866195,20.0339671709376,-0.989585404503733,0.343037489209131,0.473664347682807,-6.43974384219377 +"Q8SY69",-0.115697961350911,18.9608697769592,-0.988911338855784,0.343353180371828,0.473708109892647,-6.4404052354453 +"Q9V4E0",0.223813393344169,18.492151449342,0.98798207614529,0.343788736006667,0.473917034429026,-6.44131640767531 +"A1Z8Z7",0.0900727391310667,18.8257386511884,0.985047704491959,0.345166739799847,0.475313976797358,-6.44418892974336 +"Q7K0S5",-0.0631416858443927,18.3246818967131,-0.984611287159094,0.345372026305994,0.475313976797358,-6.44461553495302 +"Q9VBL3",-0.202599515241598,14.4797834127239,-0.982205263238204,0.346505384916167,0.476241705795582,-6.44696460849271 +"Q9VI64",-0.0778326415927317,20.9307801441868,-0.981968272948808,0.346617164769686,0.476241705795582,-6.44719572762861 +"Q9VD00",-0.0709280698575547,17.912379316053,-0.981147936876506,0.347004289466074,0.476381197390461,-6.44799537836276 +"O44226",-0.0562208650351472,20.186674150274,-0.977474361102042,0.348741721650586,0.477802621700253,-6.4515694175494 +"Q9VVW8",-0.106214684419148,15.7561295464985,-0.97722459568789,0.348860076898626,0.477802621700253,-6.45181200531135 +"Q8MSV2",0.137745061840771,18.1791097015221,0.977142392073858,0.348899036709177,0.477802621700253,-6.45189183516204 +"Q9VEY5",-0.050833633818133,20.8506752772655,-0.971846433516633,0.351415639207135,0.4808542134516,-6.45702292203398 +"P54397",-0.112976320434417,14.7628028609872,-0.963680263451778,0.355321713958642,0.48580050728116,-6.46488866632565 +"Q9TVP3",-0.121651409539222,22.953439158624,-0.960244678450573,0.356974311812717,0.487419676643887,-6.46818106071113 +"Q9VQL1",-0.0545422096762351,20.1082706861839,-0.960003699657763,0.357090434567644,0.487419676643887,-6.46841162168534 +"Q9VNR6",-0.12542850615003,14.6861017965509,-0.947573916229485,0.36311677065617,0.495240207239977,-6.48023736071395 +"Q9V9S8",0.0560561656921941,19.8933380629591,0.944431066095185,0.364651921504633,0.49692761852102,-6.48320670048392 +"A1Z7P1",0.169490793417252,14.6402674478305,0.941577341363674,0.366049834666837,0.498425407530028,-6.48589558942438 +"Q9VZ49",0.101805887689615,18.9256670141064,0.938352968529515,0.367633879737475,0.500173989724395,-6.48892535862238 +"Q9VHA8",-0.0588814115794207,18.5777986566179,-0.936081216089554,0.368752839264411,0.501287478315434,-6.49105466927906 +"P04388",-0.0858509577004707,16.4980301762138,-0.935180544125482,0.369197134451571,0.501482752658975,-6.49189764635346 +"P29746",0.0969983888930344,21.1615937607435,0.931851987341838,0.370842370133075,0.503307626836427,-6.49500695882402 +"Q9VHF9",0.115106587510962,17.0255258389361,0.929681936238214,0.371917762754986,0.504356770955542,-6.4970289614502 +"Q9VP78",-0.0594086212481315,14.9080640643984,-0.928431237501241,0.372538557749442,0.504788232596319,-6.4981924981248 +"A0A6H2EG56",-0.0845839927369099,20.9062272766626,-0.924265223021694,0.374611656224216,0.507185261836033,-6.50205848938706 +"P91941",-0.0775226921671752,23.1021416163866,-0.922169401282069,0.375657642288078,0.508188927280223,-6.50399773395845 +"Q9VS02",-0.069018316110359,17.9252793140078,-0.921290899351949,0.376096695704403,0.508370574096389,-6.50480947894221 +"Q7PLT4",0.113488385449372,15.753349571676,0.91942352466466,0.377031158743426,0.509116514900095,-6.50653274376912 +"Q9VVC8",-0.103806966541237,16.6452984360621,-0.918968712038311,0.377259000249711,0.509116514900095,-6.50695200217137 +"A8DYK6",0.0589293001111066,16.5698226061116,0.916194205294407,0.378650997586165,0.510431897658693,-6.50950575145417 +"Q9W3V3",0.172246465448476,13.0603453209085,0.915806623414009,0.378845736991284,0.510431897658693,-6.50986196586436 +"Q9W147",-0.0666032662427618,13.7831731343749,-0.909657018441547,0.38194496151259,0.514186856465602,-6.51549649826529 +"Q9VME3",0.0792326681931694,15.7203847405877,0.909055172728987,0.382249221832941,0.514186856465602,-6.51604617672816 +"Q9V3N1",-0.0679199361234346,18.4054341576118,-0.90261185919723,0.385517191331127,0.518164927590911,-6.52191130563517 +"P13496",-0.0524888308770066,18.2754618155909,-0.89980566711988,0.386946507488413,0.519667290250139,-6.52445441284343 +"O44434",-0.0965298919168802,15.8681979946861,-0.898675309889738,0.387523284799779,0.520023201163339,-6.52547686143281 +"Q9VQT8",-0.159797006790527,18.0985155132006,-0.89609798341868,0.388840621001141,0.520858112447284,-6.52780398384186 +"Q9VHE4",-0.0456302281908805,17.9430280057586,-0.895998768766681,0.38889139397485,0.520858112447284,-6.52789345112377 +"Q7JZV0",0.147220012569438,15.2473835843055,0.895625882524818,0.389082259058343,0.520858112447284,-6.52822962630749 +"P49028",0.103124494599598,16.3647688385414,0.893128644662403,0.390362161982058,0.52215243479236,-6.53047788210432 +"Q9VEC2",-0.0560675324044908,16.6975315451356,-0.889517971604235,0.392217868449049,0.524089787364943,-6.53371893115566 +"A0A0B4KGY6",0.0864109955289791,21.7392958430335,0.889088624554921,0.392438935502886,0.524089787364943,-6.53410356789168 +"B7YZN4",-0.166223083568715,15.4435011260156,-0.885372987352699,0.394355671270846,0.52590231967618,-6.53742553543354 +"Q9VBS7",0.0696118782318003,19.7931379554481,0.884829324054428,0.394636662724956,0.52590231967618,-6.53791058386331 +"Q6NP72",0.0845638484335822,18.7613291108552,0.884625529774571,0.394742028917612,0.52590231967618,-6.5380923393812 +"Q9VV72",0.0876162005792942,19.3859859245635,0.882936959972433,0.395615801097423,0.526645775124104,-6.53959690271818 +"Q9V9U4",-0.0604844602979089,15.9163009875989,-0.879531598206966,0.397381987092594,0.528438321590459,-6.54262356537562 +"Q9VK59",0.0595183935430903,18.7543192112573,0.879119707802875,0.397595979374116,0.528438321590459,-6.54298896037932 +"Q9VWS1",-0.0678518189211292,17.1562803626478,-0.87712603323369,0.398632882898315,0.529394624740756,-6.54475547524143 +"Q7KNM2",-0.0839364274476289,19.6281114339468,-0.873208220415792,0.40067591217609,0.531181301146172,-6.54821670260643 +"Q9VB68",-0.084166630213252,15.430944747007,-0.872900017440212,0.400836934299827,0.531181301146172,-6.54848841377405 +"Q95029",-0.060437879399835,21.8137381737129,-0.872715020609736,0.400933607999419,0.531181301146172,-6.54865146642862 +"Q9VH37",-0.0975049632524758,16.6277020209163,-0.871675606678752,0.401477069946909,0.53147916878686,-6.54956702497022 +"Q9VB81",0.110662509671744,20.9632975822669,0.868749419926372,0.403009736915516,0.533085044548042,-6.55213941276066 +"Q9W0Q2",-0.0544088917691994,15.5235086709504,-0.864322675404316,0.405335925459506,0.535737181986099,-6.55601655510912 +"Q8SZ63",-0.122833176175485,14.0131780181936,-0.862001247515171,0.406559440818879,0.536928857708543,-6.55804283820597 +"Q9VIG0",-0.0805415407629848,17.3670383833867,-0.860933574322278,0.407123001464657,0.537247758261905,-6.55897316597569 +"Q95SH2",-0.0605480330277572,18.708803636173,-0.859557980930977,0.40784987510612,0.537711479967452,-6.56017031388806 +"Q08012",0.0693531328082564,19.2108935337362,0.859048815090636,0.408119144867383,0.537711479967452,-6.56061300403041 +"Q9VTC3",-0.120561227772832,17.1969444277156,-0.856881408006303,0.409266713624773,0.538797851875392,-6.56249486546729 +"Q9VQG4",0.0648631154079773,19.1670824303754,0.855397736677103,0.410053524540488,0.539407948685753,-6.5637806658189 +"Q9VE56",-0.0615019803883747,17.4777870701309,-0.853788931997943,0.410907849642933,0.540105826008205,-6.56517270107658 +"P09208",-0.220493564368349,12.6859058409543,-0.850338149289022,0.412744371491291,0.541819185067627,-6.56815076431529 +"Q9VCF8",-0.0534496591285176,16.9738862283629,-0.850119316031316,0.4128610217152,0.541819185067627,-6.56833926247882 +"Q9VMQ9",0.0573695784312171,22.1092122135894,0.847794896219351,0.414101436205899,0.543019807854906,-6.57033883379121 +"O76752",0.0643424501320631,17.9231901978439,0.845237804478714,0.415468907302008,0.544177373233428,-6.57253299643202 +"Q9VPX5",0.0647170885667521,18.8209767637334,0.844924478636807,0.415636674759824,0.544177373233428,-6.57280145063221 +"A8DZ14",-0.0558263505275498,19.4490994950313,-0.835844399621082,0.420518263943656,0.549816291594999,-6.58054305143965 +"Q8SY33",-0.0661096876493055,17.3919283710278,-0.835687648780063,0.420602870548692,0.549816291594999,-6.580676048026 +"Q8SXS0",-0.107976728044264,14.485840024773,-0.834324731700679,0.421338986809648,0.549939650295216,-6.58183149838154 +"A1Z933",-0.104113042291258,15.8211696505362,-0.834292069091638,0.421356638535543,0.549939650295216,-6.58185916857078 +"Q5U126",-0.0917679080356635,21.6333183807785,-0.829803804396254,0.423786902433652,0.552679087771175,-6.58565230639252 +"P14199",-0.0530628662697481,18.5610139316746,-0.823679640502757,0.427117963939506,0.556588096758669,-6.59079877616932 +"Q9VZ24",-0.125894560612679,21.9058836765275,-0.818860526899511,0.429751343605183,0.559417923509063,-6.59482478993006 +"Q9W4Z2",0.106566519550817,13.7266801056632,0.818478973852132,0.429960298524352,0.559417923509063,-6.5951426542055 +"P45594",-0.0599441825819511,23.0187222021273,-0.81150209380517,0.433792957036552,0.563964654978151,-6.60093175492968 +"A1Z934",-0.0530863065173719,19.3005340964885,-0.806554653734705,0.436524334939861,0.567073668753651,-6.60501021156315 +"Q9VG42",-0.367986668596121,16.4471604161904,-0.802540776614687,0.438748571839246,0.569519546947753,-6.60830275915606 +"Q9U6M0",-0.0573638709261282,16.2798587818416,-0.79839481401868,0.441053760965034,0.571202688594796,-6.61168827750711 +"Q9VRD4",0.0582922303891316,20.3437424829923,0.798000344021059,0.441273499943688,0.571202688594796,-6.61200957948125 +"Q9VUV6",-0.0737293347973278,14.8317817904756,-0.797869696621098,0.4413462926152,0.571202688594796,-6.61211596258617 +"Q9VY24",0.0962900091181389,17.7282035315322,0.797746345258515,0.441415027337345,0.571202688594796,-6.61221639042994 +"Q9VC58",-0.0665365880357704,13.1234057159513,-0.79479103082569,0.443063891827407,0.572687896964414,-6.6146183459157 +"Q960W6",0.186696010814332,14.1237479966434,0.794458904868077,0.44324944543229,0.572687896964414,-6.61488778621607 +"Q9VZS3",-0.0882118080709482,18.3829878902294,-0.791138509842285,0.445107272453776,0.574267542799883,-6.61757595410696 +"Q8IPP8",-0.0770855067702279,19.0742608839907,-0.79104327752648,0.44516063119919,0.574267542799883,-6.61765290500675 +"Q95SN8",-0.0892019101209591,17.6332862826494,-0.788790436731279,0.446424108511179,0.57545240571611,-6.61947085896481 +"A1Z8D0",-0.169176768728281,13.7749725906656,-0.787093322280704,0.447377444842104,0.575609956514684,-6.62083729916405 +"P91926",0.0883683166909748,17.708334784289,0.786905348553425,0.447483118020389,0.575609956514684,-6.62098848507313 +"Q9I7T7",0.118481569858647,14.4625379549109,0.786707309974133,0.447594466804693,0.575609956514684,-6.62114773109362 +"Q9VES8",-0.0656260030504487,17.9957208155939,-0.786116620968579,0.447926692779412,0.575609956514684,-6.62162250047412 +"Q9VL89",0.0377739395459571,16.8733028423441,0.783129210825267,0.449609364495343,0.577327498058685,-6.62401875311943 +"Q9V428",-0.0597153247401394,18.7403236906668,-0.780938467232403,0.450845896599743,0.578469965791055,-6.62577078813629 +"Q9V5C6",0.0483784556364988,20.6192335060217,0.775315524071828,0.454029686321626,0.582107238112584,-6.63024754448534 +"Q9VE75",-0.157897705040007,15.5188978356225,-0.77345935997734,0.455083830151232,0.583010621115403,-6.63171896731222 +"Q9VLP1",-0.106221335804488,18.3929269057443,-0.772102473567422,0.455855417158445,0.583550910069292,-6.63279259589397 +"A1Z7G2",0.0618745294602441,19.5480418467204,0.771400446991237,0.456254949487446,0.583614459927193,-6.6333474050938 +"Q9VUZ0",-0.0662777732084407,17.6540620564704,-0.769867570103707,0.457128107049775,0.584283281654425,-6.63455725483053 +"Q9VW26",0.0478656122234362,17.4806143934017,0.764134724022124,0.460403097581024,0.588018657553713,-6.63906280097532 +"Q9VK69",-0.0467105537207004,20.2529497733663,-0.761359986980392,0.461993562038547,0.589284671562919,-6.6412326190577 +"Q9V535",0.0698337920529077,18.60512760644,0.761172891558348,0.46210092949898,0.589284671562919,-6.64137866979775 +"Q9VS84",-0.0472027111743998,17.4872722520765,-0.759608195408785,0.462999473129762,0.589979466142432,-6.64259883793509 +"Q9VB64",-0.0549456519557978,18.8031982869686,-0.755331297297806,0.46546117208932,0.592663538202279,-6.64592244946236 +"Q9V470",0.0506022347437387,19.9469706909977,0.751677748477175,0.467570620477538,0.594895343216272,-6.64874822448291 +"Q9VLT8",-0.0831970611407353,13.9714745282957,-0.749803975028595,0.468654814009536,0.595456098205183,-6.65019265689548 +"Q9VPR1",-0.10119507947212,13.6723057958174,-0.749682192546883,0.468725333898924,0.595456098205183,-6.65028642229195 +"O76454",-0.0884475095129424,17.9834407711386,-0.747713394130517,0.469866320894921,0.596451311455654,-6.65180036980802 +"P22812",0.153659636268625,11.4196469975521,0.746554415651573,0.470538804389132,0.596723547233757,-6.6526899049451 +"Q7KTJ7",0.0453263821630188,22.1086906596989,0.746110956757721,0.470796275875074,0.596723547233757,-6.65302993652941 +"E1JJH5",0.036552170432401,21.240168570264,0.743073452072616,0.472562221031767,0.5984100536913,-6.65535408837349 +"Q9W136",-0.0738233335471605,18.2033620079948,-0.742588759526873,0.472844394943126,0.5984100536913,-6.65572415693479 +"Q9VNF3",-0.0484600982122778,19.1551862355305,-0.7413896798436,0.473542917206084,0.598839716375851,-6.65663872813619 +"Q8SY96",0.0599211482072306,18.7677354731111,0.737140238439527,0.476023612973372,0.601520747302715,-6.65986910080216 +"Q24400",-0.0892949318972995,21.4545117164531,-0.730475812084924,0.479930375765587,0.605998385145344,-6.66490135381321 +"Q9V3Z9",-0.0819308523648985,21.6338968610421,-0.729057681134132,0.480764259531169,0.60659212170801,-6.66596681229144 +"Q4V6M1",-0.0524936241398635,18.2208847028862,-0.723305093726643,0.484156062742908,0.6100359736299,-6.67026947337709 +"Q9W3C3",0.0850058408469714,16.4573577214638,0.723188098857333,0.484225197293758,0.6100359736299,-6.67035665793941 +"Q9VCI0",-0.107252246933211,14.7319906090647,-0.719293969133052,0.486529784274369,0.612476739750677,-6.67325122916578 +"Q9VR94",-0.102462224301492,16.1150881881805,-0.715956633168234,0.488510209091782,0.614506054875635,-6.67572058456472 +"Q8IMT3",0.0933511307653418,14.7426185349403,0.714012510886002,0.489666154511706,0.615165390433439,-6.67715424490352 +"Q9W403",0.062335027040616,15.3593027588354,0.713834693474193,0.489771965524944,0.615165390433439,-6.67728519571877 +"Q9W5P1",0.0847792303788069,14.3194752072265,0.712228904677809,0.490728130398286,0.615902574495366,-6.67846640431937 +"Q7KLX3",0.0571865916542187,19.2700463682208,0.709913672706127,0.492108738338783,0.617170959059467,-6.68016519669554 +"Q9XY35",0.0585805919616149,19.2558554310386,0.707618445826045,0.493479752680453,0.61805373373466,-6.68184431936444 +"Q9VPB8",-0.0465050589292293,15.57492551768,-0.70749475870281,0.493553701039908,0.61805373373466,-6.68193466414752 +"P0DKM0",0.0628932613792017,16.9920995783182,0.706437880083061,0.494185848109524,0.618381091257829,-6.68270605088694 +"Q8SXG7",0.0837073902504333,13.9485632974117,0.699881594265119,0.498118320905529,0.622834602151741,-6.68746771533895 +"Q9VN95",0.0540107940275476,17.9328945901364,0.697080734575522,0.499804038178114,0.624184056808149,-6.68948950721627 +"P23625",0.0383408207645282,22.2294150014328,0.696845150164723,0.499945983150891,0.624184056808149,-6.68965922419416 +"Q9VAV2",-0.0465769937920726,17.7716241743794,-0.69263690180309,0.502485642557309,0.626526813252214,-6.69268201395009 +"Q9VDC3",-0.0410391430898258,19.2797735156411,-0.692491274378414,0.502573666745481,0.626526813252214,-6.69278631748101 +"Q9VGG5",0.0573587034024801,17.0264495694719,0.688557290041691,0.504955059629214,0.62902542155454,-6.69559635455424 +"A1Z8D3",0.109107538990321,16.6323560679059,0.687110465653902,0.505832576384817,0.629648311499907,-6.69662611846785 +"Q9VAY6",-0.0436374385739082,15.2042061416055,-0.6857874339557,0.506635809534465,0.630177874946672,-6.69756603107181 +"Q9V3P3",0.0398583760855935,19.3591348998798,0.683748188306145,0.507875359237848,0.630849569100246,-6.69901149571453 +"C0HK94",-0.0535887288583332,18.4540569725471,-0.683654687181456,0.507932236991385,0.630849569100246,-6.69907767653913 +"Q9VX98",0.055253059340739,18.2627947385551,0.682457273743143,0.508660972503829,0.631284599803859,-6.69992447885886 +"Q9V3V6",0.0394745369783642,21.5453504232483,0.681076972125368,0.509501784840372,0.631437224385649,-6.70089892318133 +"Q9W2K2",-0.0988224721515891,15.6487178748922,-0.681012514387244,0.509541069558204,0.631437224385649,-6.70094438368994 +"Q86PD3",0.0380467754930471,18.9004112017947,0.677333958528796,0.511786004665991,0.633081002210801,-6.70353221527065 +"Q9VG76",-0.0604635925244636,15.7747272190197,-0.677158663845603,0.511893129175942,0.633081002210801,-6.70365521121091 +"Q9VD14",0.0578852875781095,17.615248678279,0.676973730718542,0.512006158262812,0.633081002210801,-6.70378493818865 +"Q9VMB3",-0.0697650638973357,18.6856350838636,-0.672829975560225,0.514542653887748,0.635746034581306,-6.70668313470295 +"Q8IMX8",-0.0412678927589205,17.1753198942265,-0.671860999696115,0.515136858006537,0.636009088937753,-6.7073584814842 +"Q9VR89",-0.0726455180828953,13.945728279277,-0.667638628562704,0.517730862437797,0.638229226054542,-6.71029085886827 +"Q9U5L1",-0.0355490019771487,17.6803499796112,-0.666905055448843,0.518182313915189,0.638229226054542,-6.71079857449078 +"A8DRW0",-0.0612696158507156,21.6057592127439,-0.666602599056089,0.518368517302338,0.638229226054542,-6.71100775843011 +"Q9VIU3",0.173765318175732,12.4335221561337,0.665891469813959,0.518806469753104,0.638229226054542,-6.71149924202309 +"Q70PY2",0.117742402018088,17.1146156319315,0.665823696306576,0.518848219742182,0.638229226054542,-6.71154605710946 +"A1Z7K6",-0.055977747440652,15.5525080479304,-0.66484069522458,0.519453992092764,0.63829180360495,-6.71222457778264 +"Q9V400",-0.123631784221596,14.3482319554801,-0.664499370076123,0.519664430033287,0.63829180360495,-6.71245996221395 +"Q7JVK8",-0.0444606946403923,19.1567414039757,-0.662235876859993,0.521061211080843,0.639536497485538,-6.71401808322031 +"Q9VVU2",0.0561378174942107,20.0565018424827,0.65900296384907,0.523060018386392,0.641517728432722,-6.71623499570998 +"Q9VKF0",0.0590117051363581,15.9685854924231,0.655259939863779,0.525379791750902,0.643889414137034,-6.71878916268518 +"Q9V405",0.0523539205345855,20.2097429525788,0.652777293341325,0.526921730559005,0.645305026851997,-6.72047583850924 +"Q9U1L2",-0.246517489312968,17.6193449557726,-0.651284771613144,0.527849978797408,0.645737136541938,-6.72148698101844 +"Q9VXI1",-0.0843502024723435,19.6021983460172,-0.650965232964571,0.528048833479138,0.645737136541938,-6.72170318080167 +"Q9VTZ5",0.039253697313665,18.0494999074338,0.649441138588158,0.528997901918297,0.645959165786189,-6.72273302887178 +"Q7JZN0",0.0819497433374625,16.825300041835,0.64942986087738,0.529004928335692,0.645959165786189,-6.72274064100562 +"Q7JXB9",0.0746014642770838,16.1816594544541,0.64847326253495,0.529601119816969,0.646214094992468,-6.72338587133508 +"P52029",-0.135080613701021,18.4446831979087,-0.646466483122485,0.53085308844799,0.646670015196205,-6.72473658626158 +"Q9VUW2",0.0718578068995637,14.488745720695,0.646432118749094,0.530874542198112,0.646670015196205,-6.72475968225782 +"Q9VXE5",0.0549807339609885,14.6145491167391,0.64591785652536,0.531195656924261,0.646670015196205,-6.72510517728064 +"E1JGR3",-0.0638680152453528,12.13497242112,-0.645389747998599,0.53152553407314,0.646670015196205,-6.72545970895649 +"Q9VJU8",0.0602846801459354,15.653195723841,0.636210422590616,0.53727811300088,0.653192341461711,-6.7315789531782 +"Q9VE24",0.0824869960468213,15.7983292240359,0.635375005975941,0.537803420833766,0.653354774909485,-6.73213182260728 +"Q9Y128",0.0778182313843629,14.2764214642103,0.634182377929895,0.538553850109061,0.653790263451175,-6.73291991911354 +"P04359",-0.068973543397945,18.7978144300746,-0.631409811174245,0.540300718711288,0.655433890043947,-6.73474672198135 +"Q9VDF4",-0.0319576055813364,18.6728244254121,-0.630728082400813,0.540730738260685,0.655478830972981,-6.73519476112216 +"Q9VD26",-0.049094727619055,16.2015746706733,-0.627706613122196,0.542638953872101,0.657314288350519,-6.73717507273761 +"A1ZA83",0.0421421082528362,17.0555283139783,0.627053137435148,0.543052159325657,0.657337446847021,-6.73760220372344 +"O97111",-0.0868123108577841,14.7018825264463,-0.624366368869723,0.544752926229657,0.658917970232827,-6.73935399530697 +"Q9VYU9",-0.0670512104259728,17.8594186253684,-0.622898001306056,0.54568369610107,0.659565510939554,-6.74030841561567 +"Q9VKJ4",0.0507807999293082,15.1182428849363,0.621242254343124,0.546734317158249,0.660356872570571,-6.74138211440587 +"Q7KQM6",-0.0400381284781446,15.1438330806644,-0.61950930402621,0.547835144795549,0.661207685614309,-6.74250301951994 +"Q9VUK8",0.0311309916713753,20.7450337429826,0.613962525819976,0.551367001385238,0.664989268481978,-6.74607111286626 +"Q9VMY9",0.105393572284406,14.9502014445866,0.609762812487029,0.554049572794805,0.667741826171774,-6.74875271317351 +"Q94524",-0.0890245845773592,15.7645161595864,-0.606178730674685,0.556344642201507,0.670023727936544,-6.75102759542853 +"Q9V455",-0.0642782033559186,19.3163207500515,-0.60418966504998,0.557620613332525,0.671075889638277,-6.7522846720355 +"Q9VD68",0.0595855241789991,14.7685221990973,0.602864187207035,0.558471796092549,0.67161568556768,-6.7531202159295 +"P92181",-0.0419261049628616,16.5060581225235,-0.601919552456681,0.559078850583923,0.671679097907554,-6.7537146373899 +"Q9VNQ3",-0.0598658869300497,15.0704904401473,-0.601430867347538,0.559393039214286,0.671679097907554,-6.75402180473054 +"Q9W1C8",0.160429222296283,16.0218568122866,0.600902917575395,0.559732581589629,0.671679097907554,-6.75435338936478 +"Q9W404",-0.075218187737045,15.9400278077765,-0.597496278890582,0.561926235832064,0.673241740141745,-6.75648639872252 +"Q9VM33",0.116619332070965,13.910976428549,0.596609848817056,0.562497813070587,0.673241740141745,-6.75703955644494 +"Q9VU45",-0.0705986016158349,17.8519149461058,-0.596597974685969,0.562505471771758,0.673241740141745,-6.7570469610111 +"Q26377",-0.0740147111862957,16.8309714320567,-0.596375041712195,0.562649272036926,0.673241740141745,-6.75718595367215 +"Q9VHM3",0.0744182303618341,14.7700292341107,0.595452905614152,0.563244299228366,0.673470602948326,-6.75776036252916 +"Q9VRG6",-0.0465690109441503,16.3592537660305,-0.593344021269345,0.564606395735834,0.67432434252596,-6.75907087335828 +"Q9VMG0",-0.124817563130989,14.7082229391184,-0.593095778577838,0.56476685042492,0.67432434252596,-6.75922485002299 +"Q9VKR0",0.0764728362005602,13.2384551342161,0.591318820766565,0.565916136524219,0.675213244436622,-6.7603252703669 +"P81900",0.0468822703908423,22.4431518876514,0.589922592190695,0.566820072704323,0.675808349728957,-6.76118773911024 +"Q9VMC8",-0.046113785749057,16.3601222739119,-0.5885108515179,0.567734851211528,0.676150467357925,-6.76205784144801 +"Q9VQ88",-0.0489045096359533,16.3901606565019,-0.588228741880218,0.567917748662142,0.676150467357925,-6.76223147997471 +"Q9VFT4",-0.102127964097082,15.5787251695009,-0.586226446967696,0.569216798015761,0.677213708338294,-6.76346164300276 +"Q9VKK1",0.0565539214949986,14.5448483921998,0.585371161391227,0.569772181781311,0.677294240865215,-6.76398590787069 +"Q59E04",0.0828645078812844,16.3729834306777,0.584871783232153,0.570096591231872,0.677294240865215,-6.76429167900983 +"Q9VRJ4",-0.0301521404839811,20.7082844445614,-0.584175770440969,0.570548906798377,0.677349164796934,-6.76471744068313 +"P54195",-0.0756238888767022,18.5828026987821,-0.58302061266713,0.571300034259686,0.677758504370666,-6.76542301538304 +"Q9W415",0.053731478916621,16.7582016132923,0.582312113771418,0.571760991724324,0.677823265242482,-6.76585511880537 +"Q9VGQ8",-0.042547239866682,16.2244448522822,-0.579759448723847,0.573423450300326,0.679311303338739,-6.76740785083506 +"Q9V564",-0.0490790123416254,14.0252456077122,-0.57883907936641,0.574023492274489,0.679539521017635,-6.76796611619356 +"Q7KM15",-0.0419358771949661,17.1142929047039,-0.57342708257469,0.577558712319823,0.683239668191109,-6.77123194270021 +"Q9VZY0",-0.0729776661968593,17.1830454655056,-0.572250186184476,0.5783290242796,0.683643655521215,-6.77193830227396 +"Q9VQF7",0.0860645406081595,18.7395990403027,0.571653275543481,0.578719929014362,0.683643655521215,-6.77229603789501 +"Q9V3Q4",-0.055663678710399,15.9882485719345,-0.570465566424472,0.579498155404493,0.683678001632948,-6.77300679828769 +"Q05856",0.0801180638944299,13.6606259577005,0.570357851234371,0.579568761576132,0.683678001632948,-6.77307118926631 +"Q9V4Q8",-0.0428036950001793,16.8873284214843,-0.569044667769944,0.580429908334515,0.684138871316988,-6.77385527341073 +"Q9VF82",-0.0435766424431492,14.8650498980366,-0.568511465163026,0.580779761261904,0.684138871316988,-6.77417315452938 +"Q9VY92",-0.0505476076065037,21.3320857123004,-0.56537407547258,0.58284058351404,0.686081928935369,-6.7760378831214 +"Q9W0A8",0.0559336333016915,18.8598857503612,0.563054734078133,0.584366553816201,0.687393097154741,-6.77741013218356 +"Q7K3W4",-0.0440496572023719,19.3274226587104,-0.558903491456816,0.587103058851193,0.690125371503728,-6.77985292025415 +"Q9V436",-0.0283673391413259,19.0817829984344,-0.554507536436506,0.590008217262785,0.693051905911496,-6.78242106528399 +"Q8IP62",0.0662987834815834,15.7086767939694,0.553183509999212,0.590884701525444,0.693284486812074,-6.78319080848363 +"Q9V3V9",-0.029925800874615,19.4957287678014,-0.552952805042746,0.591037494152739,0.693284486812074,-6.78332475411699 +"P48611",0.0522076854297495,20.1192554790249,0.552016544599599,0.591657778144608,0.693524366792133,-6.7838677970695 +"O16158",0.0491555638804542,21.3192781801875,0.543773607162622,0.597133450803635,0.699451261194146,-6.78861115986849 +"Q7K0D8",-0.034930070935026,17.2862534344444,-0.538816401847637,0.600439035912562,0.702829692562915,-6.7914311608199 +"Q9VQD8",0.100553688739694,17.5959541396048,0.535510165265682,0.602648933557173,0.704921753978516,-6.79329834326841 +"Q6WV19",-0.0936104173742667,13.4477804589056,-0.533646336617503,0.603896554973254,0.705140932431155,-6.7943461190811 +"O15943",0.0493208099536417,20.1787841419824,0.533453333645399,0.604025823883187,0.705140932431155,-6.79445441985696 +"Q9VHI7",0.0428762797774276,15.4679886480757,0.533335800429531,0.604104551825012,0.705140932431155,-6.79452035364681 +"Q7K4Z4",-0.0406169644564454,14.9083241284338,-0.527854445467089,0.607781966010418,0.708937286227536,-6.7975799360346 +"Q9V998",0.0714605826852246,15.8062046875572,0.525493094854637,0.609369677350687,0.709823061575413,-6.79888872576078 +"Q9VAP3",0.0604995922817295,16.4519656517905,0.524901343479639,0.609767884167663,0.709823061575413,-6.79921583145282 +"Q8SXX1",0.029022327434852,19.9225365787962,0.524403459941906,0.610103026384595,0.709823061575413,-6.79949077747525 +"Q95RQ1",0.0729018078998092,11.7851132293016,0.52419471499087,0.610243567325625,0.709823061575413,-6.79960597869814 +"Q9VQI6",0.0727810966701412,16.128865263889,0.520870232162056,0.612484029079602,0.711932655404025,-6.80143479100551 +"Q9VCD9",-0.0818835183422344,18.6045722955801,-0.519211447724619,0.613603474665444,0.712737183664318,-6.80234314968147 +"Q9VD58",-0.0247194830641142,22.7284691502166,-0.517359638887218,0.614854395614389,0.713690054937681,-6.80335394697539 +"Q9VFU7",0.052836633381883,14.8453237687304,0.516730679896338,0.615279555755627,0.713690054937681,-6.80369647663744 +"Q95RG8",0.11229218925584,13.1828192693397,0.515337334419467,0.616221944686765,0.714286451520169,-6.80445387433244 +"Q95WY3",0.0481196988500407,17.2121821471469,0.511974846201766,0.618499124885868,0.716428152992798,-6.80627362765591 +"P22769",-0.0378386546848688,20.1281649493065,-0.506165077014917,0.622443503450109,0.720496713223305,-6.80939102954775 +"Q9VJ60",-0.043569255032363,16.5267477426444,-0.505199486036284,0.62310026489351,0.72075675578528,-6.809905852267 +"Q8IH18",0.0456246879293527,15.6396759812287,0.50271802437846,0.624789632328948,0.72221005317026,-6.81122457992737 +"Q9VMY1",0.0505932760615995,15.4442128863843,0.501633542603442,0.625528647802253,0.722563562696786,-6.81179895885434 +"Q9VSD6",-0.0839072478283178,16.5272658000082,-0.500024214176228,0.626626106664416,0.723330343194634,-6.81264912856835 +"P36951",0.0304797091061246,20.3718802369664,0.493829479387759,0.630859280026047,0.727713194386892,-6.81589726151597 +"Q9VLG9",-0.0375684388667263,15.7367595149132,-0.490116873930333,0.633402919899926,0.730106528302986,-6.81782533932701 +"Q9VB79",-0.0322862453319193,17.6182553597868,-0.489524106214444,0.633809504186285,0.730106528302986,-6.8181318926295 +"P38979",0.0290073979811964,22.0830921396772,0.488742665298155,0.63434569312769,0.730219886913034,-6.81853547616433 +"Q9V3G3",-0.0868079635657644,14.9410609352416,-0.486253604774606,0.636055026237782,0.731352983598516,-6.81981685885545 +"Q9W306",-0.0717264935645474,14.7232419298427,-0.486032546882452,0.636206941967294,0.731352983598516,-6.81993035748359 +"Q9VEJ3",0.084171070504393,20.0245355165897,0.484674645508318,0.637140502471375,0.731921734243976,-6.82062646449659 +"Q9VA41",0.0853991565311887,17.473125979433,0.482409833292826,0.638699023652999,0.733207137958157,-6.82178332934424 +"Q9W3X8",0.0662870850094848,13.8674603763097,0.481078478888252,0.639616037998492,0.73337901446971,-6.82246095830684 +"Q9W1Y1",0.0478758459600073,17.8256206308778,0.480915849760458,0.639728097154334,0.73337901446971,-6.82254360965677 +"Q95U34",0.0314697396109622,19.4541268803187,0.479926612310257,0.640409929787407,0.733656430553156,-6.82304578203988 +"Q7JYZ9",-0.0330529216956101,18.1282004888464,-0.475383876421145,0.64354544020696,0.736742480621283,-6.82533909018354 +"O97365",-0.0321017739072786,17.9636968147313,-0.467828595509918,0.648776278917486,0.742221421971445,-6.82910680458721 +"Q9VQ29",0.0265145812337551,22.1510318036857,0.465231802769872,0.650578726249964,0.743773348447525,-6.83038838548862 +"Q9VS97",-0.0561012284154998,15.1232214053848,-0.459718978601562,0.654412907453326,0.747335129559243,-6.83308633931961 +"Q9VHD2",0.04547254442903,16.5832599913292,0.459464280701752,0.654590302329768,0.747335129559243,-6.833210239078 +"Q9VH19",0.0392610969304208,13.9955459359337,0.457808967200429,0.655743753906339,0.74800133708067,-6.83401386742953 +"P41094",0.0265754529572177,21.1447888016418,0.457339987593939,0.656070717115719,0.74800133708067,-6.83424104162162 +"Q9VVK5",-0.0498733694322429,15.8709828049513,-0.453673560351287,0.658629455609065,0.75005367994367,-6.8360093285649 +"Q961D9",-0.127206116145825,12.5088546356576,-0.453472121630868,0.658770168535657,0.75005367994367,-6.83610608319041 +"Q9NCC3",-0.0392047196859764,17.3048094038192,-0.445341926922161,0.664460849511109,0.755032081520629,-6.83997656349734 +"M9MSK4",-0.0408087719222436,20.6282013334561,-0.445329192528415,0.664469780271592,0.755032081520629,-6.83998257286514 +"Q9VL70",0.0402594828062419,23.5205767071286,0.445285166093291,0.664500656877868,0.755032081520629,-6.84000334768738 +"Q9Y112",0.0224399558539226,22.2472081909766,0.444388068987178,0.665129949680405,0.755232645382516,-6.84042623046628 +"P05812",0.0511791299900128,15.821100000321,0.443672179528903,0.66563232209121,0.755288920576965,-6.84076310305408 +"A1Z6S7",-0.0277755531588788,17.5587209276209,-0.441379225109263,0.667242541190175,0.756601331546712,-6.84183855710332 +"Q9VHG4",-0.0306195417607285,18.303920412094,-0.439973158415866,0.668230809799637,0.757207194800132,-6.8424953759284 +"Q9W0N6",-0.0510693799204116,14.4465304414806,-0.437579576089426,0.669914668320114,0.758599909543755,-6.84360883738695 +"Q7KUK9",0.0392528612970438,18.4151519196034,0.429728862546599,0.675450770465833,0.76434998991656,-6.84721965685258 +"Q7KW39",0.0336856497929325,21.6793970167045,0.425558850463556,0.678399510885922,0.767166362140826,-6.84911186993807 +"Q9VZG2",-0.0724650910286364,21.8844615319653,-0.423920629357125,0.679559483418501,0.767914764188773,-6.84985035256055 +"Q9VFM0",0.0487272949396544,14.3572789956684,0.423324104471637,0.679982078361401,0.767914764188773,-6.85011857087546 +"O62621",0.0494469610375905,13.1506490689513,0.41889042712638,0.683126594310677,0.770943950818816,-6.85210063876483 +"Q9V3U6",0.0367035927182258,21.0321878434071,0.413686208809708,0.686825593018382,0.774594380767181,-6.85440136569848 +"Q7KMQ0",-0.0263222149476938,20.724586685964,-0.410738068752282,0.688924838397268,0.776436912463948,-6.85569232658211 +"Q9VNE2",-0.0295362258883678,19.0130069044264,-0.410066740284592,0.689403244716612,0.776451459950917,-6.85598504224937 +"Q7K0P0",-0.0241647671190872,15.3619816718311,-0.408911696270781,0.69022668992584,0.776854331171593,-6.85648758214041 +"Q9W330",0.0263493042090559,20.6935389235621,0.406123125498776,0.692216414262056,0.778568428178765,-6.85769516995807 +"Q7JZF5",-0.0222527027875081,16.9234149809766,-0.404117948834285,0.693648660247488,0.779401446749245,-6.85855855014506 +"Q9W2J4",-0.0657395839121904,15.2489404618157,-0.403778034650231,0.693891575792943,0.779401446749245,-6.85870449746535 +"Q95RB1",-0.0262124778125497,15.9535970642725,-0.400997512547812,0.695879983067213,0.781108890818379,-6.85989387687116 +"P20007",-0.127461780186822,14.8960669299406,-0.393306506396162,0.701392333668839,0.786766921694434,-6.8631421190064 +"O17452",0.043543027698103,19.8506986541975,0.39167852309678,0.702561461956458,0.787548735580223,-6.86382184003927 +"Q9VSL6",-0.0863942650050653,14.5563189512371,-0.386353930284085,0.706390870307513,0.79107343344084,-6.86602581647438 +"Q7KSM5",0.0242327215675715,18.9193428632045,0.385988042814651,0.706654326035283,0.79107343344084,-6.86617618760489 +"A1Z729",0.0330696120428744,16.6778521602213,0.383000648594194,0.708806879265936,0.792950955476581,-6.86739874436142 +"Q9VTF9",0.031031934056962,17.3795866927156,0.38203944198264,0.709500036090331,0.792960729335181,-6.86779013945833 +"Q9U6P7",0.0376584139522702,17.0818545378003,0.381670162337585,0.709766408211886,0.792960729335181,-6.86794025217491 +"Q9VXH7",-0.0367630474922507,18.2035100575318,-0.379893643733129,0.71104842590543,0.793861294785982,-6.86866043230864 +"Q9VN25",0.0557908141239505,14.8893764202788,0.379175695429514,0.711566794574366,0.793908637692336,-6.86895055115806 +"Q8I0J3",0.0488004616268167,14.9984881108501,0.373798755328801,0.715453825340921,0.797463378277532,-6.87110633145933 +"Q8SZK9",0.0294191182673202,22.0758081014046,0.373446125272811,0.71570903913757,0.797463378277532,-6.87124666248616 +"Q9VS11",-0.0346884981399356,14.8710013153414,-0.369977610928199,0.718221275866685,0.799656942721569,-6.87262008969548 +"Q9XYZ9",0.0239765534737764,21.9617245823263,0.368974283819245,0.718948631359109,0.799656942721569,-6.87301504493387 +"P53501",-0.0417499166437167,24.6281982793412,-0.368743530204582,0.719115955684864,0.799656942721569,-6.87310573200356 +"Q9VW40",0.0389422087431281,14.6776116356898,0.367425472797204,0.720072000243014,0.799855869054498,-6.87362267211883 +"P17704",0.0289910825929951,20.3088565508304,0.367174764869489,0.72025390606706,0.799855869054498,-6.8737207948385 +"Q9W265",0.0267491829697963,16.9662311248334,0.365294648920245,0.721618632578066,0.800838242940927,-6.87445455548212 +"Q9W0H3",0.0473274497001537,16.7186529265854,0.362481160892412,0.723662751671639,0.802572785763493,-6.87554571547933 +"Q9VL93",-0.026547151959587,15.3292093432287,-0.350800147167192,0.732173339437778,0.811129678878441,-6.87998778755205 +"Q7PLI0",0.0340557277740636,17.7673991561735,0.349909152619474,0.732824060760248,0.811129678878441,-6.88032077544801 +"Q8ING0",-0.0382209516409286,14.6682578925245,-0.349891184223715,0.732837185893172,0.811129678878441,-6.88032748218316 +"Q9VJI7",0.0394815059886824,17.3571783663304,0.341833248852089,0.738732052712857,0.817112111356131,-6.88330114350585 +"Q7K9H6",-0.0643586433378633,11.8191420571785,-0.339135219176433,0.740709756210483,0.818730189357697,-6.88428164932462 +"Q9VII5",0.0501394899977434,17.3461008148914,0.33849871446446,0.741176610269858,0.818730189357697,-6.88451185532994 +"Q9VPQ2",0.0255258239879534,16.4526517021558,0.331604995812498,0.746239819789993,0.823777643553744,-6.88697796378443 +"Q9VIK0",0.0579611478893796,12.7564809164862,0.330730125547599,0.74688328100689,0.823942667142522,-6.88728737610067 +"Q9W379",-0.0280514796692319,16.3361544956655,-0.329665559392558,0.747666532939221,0.824261584231739,-6.88766279627142 +"Q9VUH8",0.0294080798389125,15.4464439546549,0.323283873094879,0.752368027168421,0.828337368239221,-6.88988840603786 +"Q7K1Q7",-0.0254872586349695,16.5420971625221,-0.323235815801324,0.75240347172163,0.828337368239221,-6.88990500402839 +"Q7K549",-0.0571731201097307,14.7024102917994,-0.322625870071804,0.752853387440443,0.828337368239221,-6.89011545615039 +"Q9VGF3",-0.0210223027161334,15.6704067951628,-0.316021826947213,0.757730824095648,0.83315426143147,-6.89236908413404 +"O97422",0.0482450098291238,15.4041839298481,0.313138814990553,0.759863540495049,0.834948870583493,-6.89333855459174 +"Q9VCW6",0.0320319202653145,19.8351650385309,0.31190708844683,0.760775348378739,0.83540044838429,-6.89375008538661 +"Q9VYS5",-0.0385642698764439,14.2773424845669,-0.30907535798333,0.76287301962227,0.837152761006544,-6.89469014596894 +"Q9VEH2",-0.0255305661679888,15.9436538420782,-0.30702309811828,0.7643945193594,0.837548799126427,-6.89536617453304 +"P80455",-0.0269671368509528,20.5605140538924,-0.305581562483937,0.765463860966351,0.837548799126427,-6.89583837829144 +"Q9U1K7",-0.0440555783009948,17.503157094098,-0.30554388450541,0.765491817593631,0.837548799126427,-6.89585069115599 +"Q9VDI3",0.0307819249828807,15.0132255347561,0.305306862873431,0.765667692886759,0.837548799126427,-6.89592811370259 +"Q9VJC0",0.0171007992565908,16.5819689763211,0.305203283271628,0.765744555556236,0.837548799126427,-6.89596192917598 +"P08736",-0.0173995704100172,24.3626459502486,-0.30120703540983,0.768712021391502,0.840243546317841,-6.89725795915553 +"Q9W158",0.0276857427231114,16.94293295494,0.288654047919388,0.778058292193474,0.849616846625664,-6.90121965810821 +"Q9W0M5",-0.031960914194082,13.2282298468219,-0.288321920646673,0.778306080122311,0.849616846625664,-6.90132222157272 +"Q9VL18",0.0192293442883766,20.8553415639256,0.285663829628561,0.780290105306891,0.851225569425699,-6.90213886852867 +"Q6AWN0",-0.0350074786298293,18.4257422948074,-0.280377486070128,0.784240710219863,0.854976146827929,-6.90374083586326 +"O77430",0.0151150465738183,19.5471395633698,0.278635984322351,0.785543566284274,0.855552079656179,-6.9042621175723 +"Q9VL68",-0.0153235252981645,20.7965004441967,-0.278300222643181,0.785794835751359,0.855552079656179,-6.90436225240323 +"A1ZBM2",0.0259195457513464,18.5728532558588,0.272788958577564,0.789922833428541,0.85948550956217,-6.90598886311338 +"A1Z9E3",0.0137661226813712,21.8294740532335,0.269399153043616,0.792465178404807,0.861689646401054,-6.90697339311465 +"Q9W257",0.0510439670654961,17.0741245529452,0.266021232758038,0.79500110805934,0.863551808691982,-6.90794238144727 +"Q9VF77",0.0162952790940647,15.706905928794,0.265738901865006,0.795213176349451,0.863551808691982,-6.90802282404144 +"Q9VFM9",-0.0222828553621834,17.1587789435794,-0.261004218569738,0.798772108219892,0.86685222934989,-6.90935927342925 +"Q9VTZ6",-0.0321588932335963,17.0843388270319,-0.257406835511779,0.801479349588242,0.86922467822704,-6.91035883013301 +"Q7KTH8",0.0152611278050436,17.6191525471302,0.255241171211254,0.803110449534,0.870427699689872,-6.91095396323455 +"Q961T9",0.0348682574471866,17.881993077344,0.254185595137111,0.803905825433972,0.870723971963549,-6.91124223803464 +"Q9W197",0.0169948758903367,17.346928161346,0.251702496052815,0.805777748116157,0.872165822713559,-6.91191570823349 +"Q9W0M4",0.0213979583852755,17.7917265414031,0.251032844084358,0.806282792940233,0.872165822713559,-6.91209621316532 +"Q9VW58",0.0407576093743476,14.8911496379603,0.249271092159976,0.807611926930589,0.873037390875063,-6.91256882283929 +"Q7JQW6",-0.0149660235126046,15.9021058519961,-0.247971652682545,0.808592679628675,0.873531469961548,-6.91291530256205 +"Q9VF28",0.0228668556872798,17.7331892659406,0.245770816710365,0.810254541384105,0.874756965791489,-6.91349804252319 +"P08120",0.025685465173197,18.2202980628385,0.244299090552027,0.811366392395924,0.874756965791489,-6.91388486033166 +"Q7K0W4",-0.0268845560875732,21.6775446308642,-0.244076817574211,0.81153435155777,0.874756965791489,-6.91394308114626 +"Q9VC31",-0.0189959262658714,17.6825206330029,-0.243034302759601,0.812322252746633,0.874756965791489,-6.91421545129927 +"Q8SYD0",-0.0243952944396462,15.4483387224899,-0.242998593431777,0.812349244610922,0.874756965791489,-6.91422476037746 +"Q7JVM1",0.0336910939606625,15.8871757647861,0.240213374181926,0.814455306597206,0.876459000905896,-6.91494666967453 +"Q9VIT0",-0.018442311440694,16.4465394062624,-0.2395041479257,0.814991837173753,0.876470911931541,-6.91512918039991 +"Q9VEN9",0.0239582866982424,14.8501549283188,0.238471165902281,0.815773465878816,0.87674622492646,-6.91539405010086 +"Q9VA76",0.0199306997099669,15.1947921489252,0.237141799765579,0.816779666905143,0.877262385317307,-6.91573324867165 +"Q9W0K9",-0.0206210892261751,14.1875074309763,-0.236209101177507,0.817485834314249,0.877455837603712,-6.91597011367884 +"Q9VUM1",-0.0211819147165766,16.5458859736867,-0.227426152019177,0.824143784519316,0.884033332847729,-6.9181552576977 +"Q9VU95",0.0685317585057348,16.5259816416658,0.223031661311083,0.827480491950035,0.886181818000918,-6.91921779064812 +"A1Z8H1",-0.0169049818653875,23.1582786122999,-0.22289032773554,0.827587864784373,0.886181818000918,-6.91925162230678 +"Q7K0S6",-0.0188084423843069,17.313179275113,-0.222689330667537,0.82774057101045,0.886181818000918,-6.91929969927491 +"Q9VZ20",0.0143810919644913,18.7116308222308,0.220202068413249,0.829630863373996,0.88719937089405,-6.91989107535472 +"Q9VMF0",0.0249799679688323,13.8761062826665,0.220039033697556,0.829754807310982,0.88719937089405,-6.91992960883175 +"Q9W3T7",-0.0115923374365998,17.4234046917279,-0.213938406178859,0.834396123543458,0.891214275719339,-6.92135115690628 +"Q7K2D2",-0.013019344606743,20.3423801454052,-0.213392473379108,0.83481178843551,0.891214275719339,-6.92147643606639 +"Q9VGF7",-0.0140724564946275,20.0911923274831,-0.212324348271285,0.835625194268204,0.891214275719339,-6.9217206281359 +"Q9VY41",-0.0378159030287684,16.5729070693299,-0.211678342895949,0.83611724174658,0.891214275719339,-6.92186772634982 +"Q9VRG8",-0.0220054418685187,16.1234048599403,-0.211322321302042,0.836388446418773,0.891214275719339,-6.92194860394341 +"Q9VRD9",-0.0466179669780882,16.0873883920434,-0.210323160676451,0.837149689713272,0.891214275719339,-6.92217486229024 +"Q9VK99",-0.025534921117,19.9280531077258,-0.210191697542173,0.837249862141609,0.891214275719339,-6.92220455271119 +"Q7K127",-0.0348308444370069,18.5180490170209,-0.204410975397142,0.841657605150499,0.895334748336117,-6.9234918903175 +"Q9VMX3",0.0204821750811739,12.5563848001148,0.202099284882349,0.843421836298305,0.896104159692753,-6.92399671867824 +"Q9W087",-0.0220401625686613,16.6861783377117,-0.202055377470451,0.843455354147256,0.896104159692753,-6.92400625204766 +"A1Z9M5",-0.0277644673253654,15.0261362135918,-0.201018156387357,0.844247237093485,0.89637453308207,-6.92423085993733 +"Q9VAU6",0.0288471224195863,13.4805338511739,0.196854736998452,0.84742765893876,0.898571836554765,-6.92512088836538 +"P20240",0.0222835984627636,17.3162456830558,0.19672915549293,0.847523634448538,0.898571836554765,-6.92514744696932 +"Q9VI53",-0.0169653474521034,16.3646791329782,-0.195543100091246,0.84843020243778,0.898571836554765,-6.92539744968621 +"Q9V434",-0.026030944477462,15.005963378787,-0.195488848637958,0.848471675300072,0.898571836554765,-6.92540884916918 +"Q0E980",-0.0126823222613339,18.3553797096807,-0.194356601185198,0.849337337619761,0.898571836554765,-6.92564604348288 +"Q9W499",0.0255703880038496,16.8613541882994,0.194079754936648,0.849549032522101,0.898571836554765,-6.92570383173324 +"Q9W4X7",-0.0107922932479525,19.0813728103012,-0.190427515779084,0.852342924075997,0.900955638376909,-6.92645853101485 +"Q9W3J1",-0.0403940692155533,15.7848510725621,-0.187045965224245,0.854931624998462,0.903119664659553,-6.92714459429735 +"Q9VTM6",0.0442716775426,16.2053868565104,0.182731429614723,0.858237136121871,0.906037685475495,-6.92800220783434 +"A1Z6G9",0.0188126372489652,14.1889757287999,0.180433279580454,0.859998985105059,0.907323407435318,-6.92845089751394 +"Q9W259",-0.0167718422245748,16.8757635572087,-0.17921594340479,0.860932563062429,0.907661569233516,-6.92868628222607 +"Q9V3W7",-0.0191102514127479,17.9368101885541,-0.178596328459613,0.861407832192239,0.907661569233516,-6.92880548282336 +"Q9VSW4",0.0282053889498073,15.8235366881298,0.17441564634133,0.86461606273357,0.910288242744318,-6.92959902613594 +"Q7KTW5",0.00917615798670468,21.6110695665812,0.173925813173531,0.864992125149727,0.910288242744318,-6.92969077890071 +"Q7JZW2",0.010883337153988,20.521355456215,0.163429404936519,0.873058794734116,0.918198026239915,-6.93159521121314 +"Q9VYT1",0.011387615183736,14.2722935259393,0.16249402219694,0.873778395879245,0.918375780924122,-6.93175920089103 +"Q9VZS1",0.0207139752240728,15.4504345758539,0.161296429953424,0.874699891209972,0.918765376913245,-6.93196779304 +"Q9W1W4",-0.0167368507227543,17.2882064445825,-0.157003532794932,0.878004667946626,0.92129438922485,-6.9327028920934 +"Q9VWA8",0.0203458502005986,14.498981594115,0.156733954230271,0.878212277498508,0.92129438922485,-6.93274839493914 +"P48159",0.0114299672592324,19.858793204773,0.15576140300273,0.878961343868047,0.921500642094219,-6.93291190720623 +"Q9VG26",-0.0121904568055768,19.7324497960736,-0.151029750049308,0.882607443574779,0.924266571327431,-6.93369296626997 +"Q07093",0.0209669547784621,14.5719061478596,0.150899537609152,0.882707822616665,0.924266571327431,-6.93371412134905 +"Q9VTP4",-0.0118095115974199,20.9355974844405,-0.148609766242658,0.884473325387472,0.925534194947493,-6.93408316128439 +"Q9XZ61",-0.00858495628574829,18.5317778658211,-0.146215530942587,0.886320071731401,0.926885191001866,-6.93446302635561 +"Q9VAF5",-0.0122233616260399,15.9324404096414,-0.143637558399433,0.88830932514528,0.928383430039052,-6.93486517078318 +"Q9W1H5",0.0108629037516152,17.2416560920484,0.140827603758887,0.890478495131714,0.929105101121726,-6.93529538433124 +"P05389",0.00993614003788679,20.5419099126282,0.140623304141481,0.890636242665734,0.929105101121726,-6.93532633303283 +"Q9VKA1",0.0404630409903994,14.447089477717,0.140578423608642,0.890670897298345,0.929105101121726,-6.93533312584442 +"Q9VLT7",0.0158095916014425,18.0581270048317,0.138879014581578,0.89198327497734,0.929892564163877,-6.93558874687749 +"Q9VW90",0.0730270299244449,14.9823232881292,0.135607539181875,0.894510633326654,0.931944869699474,-6.93607211079572 +"Q9W258",0.00940275482687625,19.3025467926088,0.132051525358315,0.89725919122358,0.933886243513973,-6.93658448894831 +"Q9VNF5",-0.00960206997267399,15.9301654564493,-0.131748087037832,0.897493793976557,0.933886243513973,-6.93662758224389 +"Q86BL4",0.013862360500676,14.971117120802,0.128679855925899,0.899866559542472,0.934987671301879,-6.93705776971054 +"Q9VTV9",-0.00857138483123521,17.2481045177074,-0.128522572580576,0.89998821964331,0.934987671301879,-6.9370795496223 +"Q9VCY3",0.010877252090733,17.8580846417023,0.128204922630039,0.900233932920154,0.934987671301879,-6.93712345541722 +"Q9W3C4",-0.0328653231137608,14.7927514337452,-0.126718197484645,0.901384110612678,0.935599686684472,-6.93732751146656 +"Q9VYT3",0.00824648487345847,14.4212182011872,0.124798462996019,0.902869626041984,0.936558791192804,-6.9375874879887 +"Q9VSR8",-0.0121732024107146,15.4083652724595,-0.121467569856961,0.905448028790801,0.938308825263817,-6.93802917698888 +"Q9VVS6",-0.0118535475799018,16.5357706641022,-0.121165673130567,0.905681779781022,0.938308825263817,-6.93806862066026 +"B7Z0N0",-0.0123338029012956,13.0584725469224,-0.115235917845039,0.910274894399059,0.942482013567741,-6.9388235117155 +"P20351",0.0180205903268806,13.9681251576305,0.111645827905395,0.91305740301514,0.944203557896563,-6.93926218865471 +"Q6IGW6",-0.00958927461023684,15.6531538178792,-0.111338293228415,0.913295815503923,0.944203557896563,-6.93929912254111 +"Q95RN0",0.0061819943856225,16.9418855534084,0.110899736194739,0.913635816813581,0.944203557896563,-6.93935161593396 +"P51140",-0.0109168173805063,13.6489594604332,-0.106297408040256,0.917204947168897,0.947305171441313,-6.93989002587519 +"Q9VWU1",0.0106353012903799,14.9186713250977,0.101062111590454,0.921267251781909,0.950082583014648,-6.94047479834321 +"Q9VIQ8",0.00788694965753933,21.3476929233794,0.100661572699935,0.921578145900235,0.950082583014648,-6.94051832404439 +"Q7JXF5",0.00644462893733788,18.515884839958,0.100187645602333,0.921946020780692,0.950082583014648,-6.94056960183221 +"Q95SH0",0.055379726122851,13.9373299340762,0.0991910034323212,0.922719702931183,0.950082583014648,-6.94067664801384 +"P55828",0.00615222760455225,19.9747850273977,0.0991621831578165,0.922742077028614,0.950082583014648,-6.9406797276153 +"Q9V3Y4",0.0167627692366743,14.0955836218084,0.0963333591125964,0.92493851844936,0.951756600107052,-6.94097765526549 +"Q24298",-0.0062528518085827,19.3985001594372,-0.0923038686122833,0.928068337139666,0.954388400954971,-6.94138717131868 +"Q8T0N5",0.0069301910844608,18.5736145147931,0.081040471824079,0.936823476677221,0.962798249598031,-6.94243919340289 +"Q9V3V0",-0.00890432972923882,14.2384159160768,-0.0791238950542565,0.938314147784142,0.963707858775906,-6.94260461095528 +"Q0KI15",0.0055431500947698,15.6179195709911,0.0784169312103557,0.938864071049668,0.963707858775906,-6.94266462983386 +"Q9V4C8",0.00649161297017997,17.2450843857319,0.0772679701506319,0.939757879608323,0.964032068380494,-6.94276102493644 +"Q9VH07",0.00445960122723932,18.2173013461176,0.0742580353604364,0.942099797023992,0.96522322897096,-6.94300681238285 +"Q86BI3",-0.00660980477274009,18.0600638577629,-0.0741701103605659,0.942168216841476,0.96522322897096,-6.94301384558567 +"Q9VXB0",0.00635230969973222,20.2438374341937,0.073544495552032,0.942655059948258,0.96522322897096,-6.94306364875742 +"Q9W0C3",-0.0114779733960688,18.4515016912742,-0.0708189424996436,0.944776321916073,0.966801782181601,-6.94327570340208 +"Q9VSK4",0.00497355468899485,19.7895594964929,0.0694296286855404,0.945857778986681,0.967315006345667,-6.94338071713678 +"Q8MRT7",-0.00629483543140452,15.4200663945209,-0.0661407346824175,0.948418338248281,0.969339331003757,-6.94362102851063 +"Q9V8M5",0.00870432779992569,19.8552174793146,0.0651317865819813,0.949203974834596,0.969548211894737,-6.94369241458853 +"Q7YTY6",-0.00556057321249526,18.4706386864837,-0.0643418871232357,0.949819084280621,0.969582761676912,-6.94374753706139 +"P02299",0.00349790018093188,22.0033434176027,0.0617505105662559,0.951837274138391,0.971048668662285,-6.9439236548108 +"Q9VMQ7",-0.00677310363976069,15.9004599540012,-0.0573992686556329,0.955226847490162,0.973910991206351,-6.94420310635115 +"Q6IGN6",0.00764689238471483,16.7860199677039,0.0543600975129652,0.957594881534037,0.975257744261205,-6.94438619259395 +"Q0E9F9",-0.00620815552877119,18.4244679412904,-0.0536875993205756,0.958118930977506,0.975257744261205,-6.94442536057911 +"Q9V6B9",-0.00625241327308856,15.857780962715,-0.0534529036689315,0.958301824247071,0.975257744261205,-6.94443891513246 +"Q966T5",-0.00469223620660841,16.521060254944,-0.0458171080740197,0.964253534544412,0.980158547273925,-6.94484752984077 +"Q9VDK7",-0.0029226536690885,17.8725224125528,-0.0457669071329525,0.964292671508699,0.980158547273925,-6.94485000833498 +"Q9W436",0.00473262367418137,14.3909333229969,0.0441159337475055,0.965579834459197,0.980848852106376,-6.94493000579391 +"Q4V5I9",0.00484380295579534,16.1045588087095,0.0433873746263754,0.966147880102384,0.980848852106376,-6.9449643736708 +"Q5LJT3",-0.00413398688194633,17.1015373283195,-0.039180996840245,0.969427895988456,0.983580128046682,-6.94515161140316 +"Q9VUQ7",-0.00381850689258734,16.541158303633,-0.036645218417647,0.971405513397993,0.984987474983497,-6.94525527171066 +"P02515",0.0116778702959763,18.0377552751154,0.0316689732809575,0.975286984358947,0.988322411853416,-6.94543854737493 +"Q7JXW8",0.00550815757067724,14.8550385820276,0.0301127999016938,0.976500941063814,0.988685378543203,-6.94549038187145 +"Q9VVM1",-0.00344472977536014,15.5502205868336,-0.0291783329176418,0.977229940213858,0.988685378543203,-6.94552025338128 +"Q9VCU6",0.00267608503757089,15.4544439772664,0.0289303835977833,0.977423374830781,0.988685378543203,-6.94552802137773 +"Q9XYW6",0.00257702499317958,16.6062938639541,0.0227105804604578,0.982276137901876,0.992328882299994,-6.94570119521639 +"O18373",-0.00146969546918996,19.5771833539344,-0.0215344445019245,0.983193862990859,0.992328882299994,-6.94572925216863 +"Q9VE94",-0.002547406252841,14.6814213846271,-0.0210866067054042,0.983543312293266,0.992328882299994,-6.94573954333969 +"Q9VD30",-0.00182393087853683,21.4343518013308,-0.02086880157181,0.983713267656518,0.992328882299994,-6.94574447027097 +"Q9VFN9",0.00260321793406071,16.0590149731594,0.0198482614388509,0.984509615629392,0.992328882299994,-6.94576687439426 +"Q9VV47",0.00121366100414022,20.2267462639323,0.0197389633249508,0.984594904200534,0.992328882299994,-6.94576920726155 +"Q9VHG6",0.00139154076619619,15.7738200967352,0.0182525678225531,0.985754802264129,0.992849487005478,-6.94579965427254 +"Q9VN93",-0.00102053719776762,20.2863284699987,-0.0175514604260046,0.986301918446089,0.992849487005478,-6.94581318875027 +"Q9VGQ1",-0.00110516200663824,22.459897762128,-0.0162436561014751,0.987322496008861,0.992975632797014,-6.94583701869962 +"Q9VLM9",0.00105589095899461,18.3987764740882,0.0158651839829002,0.987617850605664,0.992975632797014,-6.94584357088234 +"P49963",-0.00148211894319061,14.8732283619124,-0.0133190478558967,0.989604869182835,0.994374049275282,-6.94588363531979 +"Q9VNX9",0.00141671340531957,13.5166682558316,0.0101310266391664,0.992092920129908,0.996273925813778,-6.94592394389762 +"Q9VLM8",-0.00119907562635291,16.8110897095364,-0.0080063373809063,0.993751157323907,0.996997058265395,-6.94594472190175 +"Q7KMM4",0.0016072742500306,14.5144829041496,0.00686125761813952,0.99464486071902,0.996997058265395,-6.94595390124844 +"Q9VHK6",-0.0005677346434112,18.0738563475364,-0.0068402476140708,0.99466125852709,0.996997058265395,-6.94595405646214 +"Q9W3G8",-0.00110193377260615,15.7518214313318,-0.0061449821278307,0.995203898088659,0.996997058265395,-6.94595892430035 +"Q7JVG2",-0.000226988402607375,14.7968739633531,-0.00180207070644067,0.99859349161916,0.999498225786056,-6.94597753333051 +"Q9VN71",7.5849417399354e-05,18.6215625376787,0.000835571129449867,0.999347840051137,0.999498225786056,-6.94597890786257 +"P43332",7.67781345984986e-05,17.1511980313934,0.000642891403775441,0.999498225786056,0.999498225786056,-6.94597906145994 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SFug_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SFug_vs_Earth_significant.csv new file mode 100644 index 0000000..2d35626 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/Limma_SFug_vs_Earth_significant.csv @@ -0,0 +1,109 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.840900893783122,18.2100580023051,15.5572987936697,5.34590326098329e-09,8.91696663932012e-06,11.1194550730576 +"Q8MSI2",-0.761746348228662,24.0545359721853,-14.3899415265086,1.24378655630361e-08,1.03731798795721e-05,10.3503624939128 +"Q9VLB7",0.814590382361004,21.0791828750061,12.1414321974497,7.64819730152128e-08,4.25239769964583e-05,8.64141290504285 +"Q9V3N7",0.605663705165867,20.5385384549374,11.2022975384799,1.784468449805e-07,6.09982189762065e-05,7.82272010971313 +"Q9VA09",0.717891126775829,16.3754738181992,11.1453139276083,1.88222894273473e-07,6.09982189762065e-05,7.77078465737934 +"Q9VC06",0.861311545357717,16.3836066963437,10.9099830352644,2.35182916705713e-07,6.09982189762065e-05,7.55342125405357 +"Q9VLC5",0.701507924379619,21.7692412956303,10.6541292036049,3.01012062513573e-07,6.09982189762065e-05,7.3117179824941 +"Q9W2N0",0.542470712111857,16.2793021701122,10.4890259340873,3.53908587793702e-07,6.09982189762065e-05,7.15268587454308 +"O97125",0.662541786334245,18.4676698327401,10.3416708906836,4.09655644315795e-07,6.09982189762065e-05,7.00867318619383 +"Q9VZF6",0.551316518553072,14.9998471495332,10.2600792847688,4.44545737974668e-07,6.09982189762065e-05,6.92807586482191 +"Q7JYX5",0.793371589126803,14.9267010936988,10.2128811708348,4.66183215909502e-07,6.09982189762065e-05,6.88117097626951 +"Q9V4E7",1.30292940665369,15.7149598382524,10.1909192797227,4.76636672498647e-07,6.09982189762065e-05,6.85927462965581 +"A1Z803",0.62962900555803,18.7875165107467,10.0911823945785,5.27399072058792e-07,6.09982189762065e-05,6.75926479313235 +"Q7K569",0.647037923071398,20.5586605327605,10.0577394194349,5.45703050647733e-07,6.09982189762065e-05,6.72551953492041 +"Q7JUS9",0.711004592010102,20.537771745897,9.98968093149496,5.85105603981732e-07,6.09982189762065e-05,6.65651620760151 +"P21187",0.620905529959327,18.8653479843893,9.98966561390384,5.85114810323323e-07,6.09982189762065e-05,6.65650062738385 +"Q8IN49",0.504142342313791,16.8480441019707,9.66230769807349,8.22722873983444e-07,7.92143842715899e-05,6.31830687812878 +"Q24253",0.756144490100901,18.8785118802021,9.6260799877724,8.54831484945215e-07,7.92143842715899e-05,6.28022809199845 +"Q9VFN7",-0.588266316630882,18.6432717821932,-9.53587714913567,9.40801463027602e-07,8.0858089543163e-05,6.1848409666896 +"Q9VHR8",0.524861763115318,20.3332388569267,9.50771109938777,9.69521457352075e-07,8.0858089543163e-05,6.1548868204976 +"Q9VW54",0.560651678722614,15.8118021696516,9.42771948006087,1.05636655371627e-06,8.39056862666063e-05,6.06937400611311 +"Q9VN13",0.710376988671154,17.0180794147003,9.34409061189907,1.15620459491056e-06,8.76613301959462e-05,5.97926656727319 +"Q9V3A8",0.688036884714654,15.5547024449285,9.21866585968411,1.32549493117208e-06,9.61271976171751e-05,5.84275535503481 +"Q9VZU7",0.551207876873782,17.5103451390685,9.15115654723724,1.42751959917933e-06,9.92126121429638e-05,5.76859030070967 +"Q9VAJ9",0.869971970779755,17.6603525856979,9.04089400488119,1.61280444369697e-06,0.000107606312483462,5.6464075820812 +"O17444",0.784590846022143,15.3876834242501,8.88870822721115,1.91232812792458e-06,0.000122683204514546,5.4756014650371 +"A1ZB70",-0.57368743941745,16.0980868163516,-8.85368455015549,1.9894192478524e-06,0.00012290190020066,5.43593222374933 +"P10676",-1.06222841949458,19.7094940821678,-8.63038009465746,2.56684299179316e-06,0.000138112713235839,5.17978410098809 +"Q9W299",0.779784425939949,14.7567095230134,8.50399183435276,2.97170591564609e-06,0.000154900170853052,5.03229680713206 +"Q7K148",0.66557861952921,16.828608977072,8.35876658906021,3.52350677061555e-06,0.000172859096864316,4.86054237432718 +"Q9VXP3",0.652701908406097,14.5121579002444,8.25107396945007,4.00357387932279e-06,0.000190798892306012,4.73157440091752 +"A1Z9A8",0.522674084939718,16.6312088986939,8.15514229783764,4.49070600444084e-06,0.000208069378205759,4.61552548350298 +"Q9VXZ8",0.600293034583544,17.9019418010034,8.03662180748131,5.18227510256964e-06,0.00023362256408341,4.47061512532797 +"P45437",0.55850861028784,16.0136600485525,8.00991301330141,5.35341333693406e-06,0.000234986669631737,4.43772275963107 +"Q0E8E8",0.572028141560427,21.737234242923,7.88530172168819,6.23614936375005e-06,0.000258850606650961,4.28309964899301 +"Q8SZN1",-0.609020650279735,20.1626511352097,-7.86901249174439,6.36263481576103e-06,0.000258850606650961,4.26274491425611 +"Q9W309",-0.560497296245718,18.3949158035826,-7.62883174579012,8.58491957031523e-06,0.00030702896461918,3.95874369185749 +"P19334",-1.02046554310178,15.2730765209876,-7.62520210473167,8.62431007415352e-06,0.00030702896461918,3.95409337320063 +"Q9W253",0.514689251093905,15.1130395169647,7.5705372773946,9.24160553104435e-06,0.000314917925486771,3.88385182387437 +"Q9VFZ4",0.668024980805045,16.4946847755605,7.56972004592981,9.25118606046271e-06,0.000314917925486771,3.88279880479551 +"A0A0B7P9G0",0.759275092592084,14.659817896056,7.47096919561871,1.04911412666095e-05,0.000343122032013818,3.75492015092853 +"Q9VH81",0.57411686681893,14.481187237746,7.42521489677813,1.11250476762502e-05,0.000343640361555284,3.69524004623565 +"Q9VBP9",0.517979767166283,13.9658193400898,7.08776570655679,1.72822909855903e-05,0.000505734409894117,3.24653561926294 +"Q7K1Z5",-0.521209839576619,15.9823533694555,-7.04716403245263,1.82400978189872e-05,0.00052456005451846,3.19151887517008 +"Q9VM10",0.500079807440496,17.1192967560435,7.03324607598957,1.8581377395187e-05,0.000525317584663931,3.1726080458485 +"P41093",0.622296737158745,18.835029355193,7.01701959954066,1.89879143346433e-05,0.000527864018503082,3.15052728328346 +"Q9VXQ0",0.532641285538663,14.9126197120224,6.91282866565852,2.18360052541127e-05,0.000590147723066917,3.00788909684855 +"Q9W1H8",0.585664501461615,20.5577442943077,6.909441457055,2.19359465408566e-05,0.000590147723066917,3.00322701347888 +"Q9VQE0",0.549085874673349,17.2622245429953,6.76557768044717,2.66669822006875e-05,0.00066912692012222,2.80375402103535 +"Q9VV31",-1.30560764476998,15.7123156107349,-6.58465587221183,3.42204185212756e-05,0.000792773029076218,2.54880821647292 +"Q9V3B6",-0.83242353189106,13.1968670391521,-6.50051019803059,3.84852351382218e-05,0.000867478002845324,2.42866611817175 +"Q24276",-0.547336177520485,18.7145023724167,-6.41881637631032,4.31723999799635e-05,0.000947520567981304,2.31106475018615 +"Q9W3J5",0.639137617105982,16.0545409045738,6.35824504044614,4.70395021868547e-05,0.00100592166214966,2.22325661951075 +"Q9VNW6",0.886768112530575,21.564159826657,6.33388204383955,4.8697680434027e-05,0.00102819912612604,2.18779069022402 +"Q9VNB9",0.743410430435549,18.831848590577,6.26681719658558,5.35925012613961e-05,0.00111740365130011,2.08972345721832 +"Q9W199",0.547951574963284,15.7684216411779,6.13398771533647,6.49038885525695e-05,0.00132024007445959,1.89358281229857 +"Q9VA42",-0.755475941357517,20.3322919174719,-6.11669573525729,6.65540339395553e-05,0.00132157295965688,1.86786182914778 +"Q9VHB8",0.515261203255758,15.4855106815594,5.80177493677514,0.000105897517616228,0.00186455764346721,1.3918603272692 +"P06002",0.703099419449481,17.2463032398988,5.64431571036556,0.000134274012184694,0.00219577502278499,1.14846708906311 +"Q9W308",-0.597762160571264,17.1482275849802,-5.63048809261204,0.000137125664962947,0.0022206369821184,1.12692130266486 +"Q8SXF0",0.521309132596532,16.3341251347788,5.60465183790913,0.000142627433575287,0.00228752460772672,1.08658982513068 +"Q9VNE9",0.509236117966559,18.695510857436,5.55594230733019,0.000153646848783995,0.00237299022010837,1.01028956119394 +"Q8SZK5",-0.880361957186858,15.38706301649,-5.47734052268736,0.000173374754720216,0.00258715936466786,0.886442566525387 +"Q9VV36",-0.556198564578295,23.1814180507471,-5.40886575668889,0.000192751719904186,0.00284522007787773,0.777826995095412 +"Q9VWV6",-0.552855854456649,23.6999618259412,-5.32871976772409,0.000218383391347301,0.00307509927824455,0.649844685580611 +"Q7K511",0.733084391750877,16.74716901557,5.25912862071949,0.00024356833518905,0.00322438081821695,0.537974126965024 +"Q9VXC9",0.610837544545554,18.983599107953,5.25175419520813,0.000246411680831728,0.00323633609155372,0.526079156284266 +"Q7JYW9",0.651452471682957,17.2082297076694,5.00401478407111,0.000365537871514461,0.00433332124609922,0.122040867279999 +"Q9VAY9",0.5540013582134,14.5106593753941,4.86754756620025,0.000455908630951998,0.00506327702488385,-0.104135758673054 +"Q9VKU5",-0.564251105500563,13.6286484352689,-4.83987192905234,0.000476950326700165,0.00514572513874906,-0.150310197004375 +"Q9VBC7",0.541127349488585,16.1411389916009,4.78954881341045,0.000517871275354835,0.00541088060764,-0.234530175886071 +"Q7JXZ2",0.539345138847821,17.4676856649053,4.75686558718935,0.000546412662402573,0.00562602667214501,-0.289406566460726 +"Q9VCX3",0.518069878327687,12.8291074877683,4.7352133465394,0.00056622775171368,0.00579428153287373,-0.325838140458568 +"Q9VEV7",0.607278813553421,12.8928523517671,4.62674516290641,0.00067750063217436,0.00660860265770077,-0.50925005128019 +"Q9VNW0",-0.527409600156286,14.698542230532,-4.45394354775309,0.000904612679650978,0.00847499797128523,-0.804466530514349 +"Q9VED8",0.573661669605334,16.2710401187074,4.33863934410344,0.00109947859831558,0.00970333493116607,-1.00341779645817 +"A1Z8H6",-0.578247457091031,16.8181635547737,-4.22694776080082,0.00133032243422374,0.011150642312991,-1.19754333608034 +"Q9V521",-0.722962615495021,17.7263101957716,-4.21782971303436,0.00135127486478921,0.0111580518538039,-1.21344946513576 +"Q8MZI3",0.549297668779911,17.7679037356023,4.11564002260629,0.00161103849013961,0.0122703753495565,-1.39229154345824 +"P05031",0.600836507257874,13.5767994139783,4.07341461973933,0.00173307384893204,0.0126788034211344,-1.46648738549594 +"Q9VG81",0.819544286126304,15.6615020835819,4.02902126332554,0.00187177389446168,0.0134574088619055,-1.54467071091584 +"P50887",0.660040556929665,17.682586602018,3.96319379671126,0.00209900029189919,0.0144079526209376,-1.66092350355617 +"Q94523",0.588152281167012,20.3945432060371,3.94446903155049,0.00216872678546232,0.0146454910046605,-1.69405891816887 +"O16797",0.502613650816551,16.5525710859797,3.91248517283469,0.00229342881620828,0.0151686526905444,-1.75072352135521 +"Q7K4T8",0.653598197948865,13.6913233680706,3.76269524112763,0.00298413295257222,0.0185038429921578,-2.01711797347816 +"Q7JRN6",-0.545520032585875,14.7424279930585,-3.73538923277288,0.00313159713155276,0.0187222366144445,-2.06584378480028 +"Q8IN43",-1.11392451857727,17.9733984879883,-3.69187788387229,0.00338227659977768,0.0196400343945485,-2.14357864406358 +"Q7K204",-0.5540361919176,14.8815565836225,-3.64745539436675,0.00365957667425483,0.020548609032375,-2.2230487141953 +"A1ZA22",0.667856748774154,13.512010914393,3.62181491778577,0.00383017196455869,0.0211547246254433,-2.26896379053664 +"A1Z992",-0.509268039550674,14.2200372849405,-3.56266526316737,0.00425558034229638,0.0223217233048754,-2.3749974058911 +"Q9W1R0",0.77318753547859,14.0734059385537,3.49882340626676,0.00476942802211857,0.0239620660870295,-2.48959323679973 +"P54385",0.548718986545094,21.4839687458882,3.48792959718896,0.00486326315493969,0.0242871944384413,-2.50916071453908 +"Q9Y119",-0.735322922691765,17.7195433413239,-3.46440327001102,0.00507240853725807,0.0251061645108204,-2.55142992322024 +"Q9VIX1",-0.550796888876604,17.260360552921,-3.38146660409327,0.00588590679634004,0.0274237221684223,-2.700536566098 +"Q9VDQ3",-0.540108562747497,13.2347964542374,-3.32490069858738,0.00651602720223421,0.0293817788354411,-2.80228573074764 +"Q9VSL9",0.536703905156083,14.683596430742,3.31614623863634,0.00661951470053945,0.0296636779315001,-2.81803456754398 +"A1ZBJ2",0.513050750151876,19.4480093374636,3.31498018678588,0.00663342438156448,0.0296636779315001,-2.82013224691938 +"Q0KIE7",0.630914072188276,14.1196381458357,3.30181889085889,0.006792500915394,0.0302938276119711,-2.84380892215888 +"Q9VBT2",0.71450158439866,12.8900577220959,3.28946254264541,0.0069453784830168,0.0306478606075979,-2.86603736239408 +"Q9W3E2",-0.544142213058358,17.7562928421416,-3.26651296238391,0.00723866317085692,0.0314429431484097,-2.90732093696346 +"Q8SXD5",-0.567410558158702,20.7936229197279,-3.26077555515963,0.00731393034882182,0.0316873657709995,-2.91764134143037 +"Q9VNZ3",0.883797303968695,15.3491691268023,3.19919515015757,0.00817356888866109,0.0339987853024606,-3.02838771959751 +"Q95RQ8",0.746031080256918,14.4383632307286,3.13517286832792,0.00917613356341436,0.0363817166578084,-3.14344662196568 +"A8JNG6",-0.733428438401804,15.7114531181878,-3.13346749071677,0.00920447629984724,0.0363817166578084,-3.14650992366047 +"Q9VK00",0.679543789561956,17.8481928166995,3.11188769381661,0.00957085711078749,0.0373868610323034,-3.1852644678879 +"Q9GYU8",0.547637078848053,12.7160188015424,3.01669161068686,0.0113709408783364,0.0415026901204926,-3.3559943889738 +"A8DYP0",-0.580146686000122,15.2845974395829,-3.00667479647468,0.0115791502666245,0.0420784807074721,-3.37393264976822 +"Q9V784",-0.579713391385583,14.2027932440259,-2.88108718376454,0.0145382444418353,0.0482009472240424,-3.59826582339655 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SF1g_vs_Earth.csv new file mode 100644 index 0000000..a6391e7 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SF1g_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","SF1g","Earth","tmt_runTMTb","tmt_runTMTc" +"Earth_F1",0,1,0,0 +"Earth_F2",0,1,1,0 +"Earth_F3",0,1,0,1 +"Earth_M1",0,1,0,0 +"Earth_M2",0,1,1,0 +"Earth_M3",0,1,0,1 +"SF1g_F1",1,0,0,0 +"SF1g_F2",1,0,1,0 +"SF1g_F3",1,0,0,1 +"SF1g_M1",1,0,0,0 +"SF1g_M2",1,0,1,0 +"SF1g_M3",1,0,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SF1g_vs_SFug.csv new file mode 100644 index 0000000..1ceba56 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SF1g_vs_SFug.csv @@ -0,0 +1,13 @@ +"sample","SF1g","SFug","tmt_runTMTb","tmt_runTMTc" +"SF1g_F1",1,0,0,0 +"SF1g_F2",1,0,1,0 +"SF1g_F3",1,0,0,1 +"SF1g_M1",1,0,0,0 +"SF1g_M2",1,0,1,0 +"SF1g_M3",1,0,0,1 +"SFug_F1",0,1,0,0 +"SFug_F2",0,1,1,0 +"SFug_F3",0,1,0,1 +"SFug_M1",0,1,0,0 +"SFug_M2",0,1,1,0 +"SFug_M3",0,1,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SFug_vs_Earth.csv new file mode 100644 index 0000000..3f86e18 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/design_matrix_SFug_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","SFug","Earth","tmt_runTMTb","tmt_runTMTc" +"Earth_F1",0,1,0,0 +"Earth_F2",0,1,1,0 +"Earth_F3",0,1,0,1 +"Earth_M1",0,1,0,0 +"Earth_M2",0,1,1,0 +"Earth_M3",0,1,0,1 +"SFug_F1",1,0,0,0 +"SFug_F2",1,0,1,0 +"SFug_F3",1,0,0,1 +"SFug_M1",1,0,0,0 +"SFug_M2",1,0,1,0 +"SFug_M3",1,0,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SF1g_vs_Earth.csv new file mode 100644 index 0000000..6ef3a3e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SF1g_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"Earth_F1","Earth","Female","TMTa" +"Earth_F2","Earth","Female","TMTb" +"Earth_F3","Earth","Female","TMTc" +"Earth_M1","Earth","Male","TMTa" +"Earth_M2","Earth","Male","TMTb" +"Earth_M3","Earth","Male","TMTc" +"SF1g_F1","SF1g","Female","TMTa" +"SF1g_F2","SF1g","Female","TMTb" +"SF1g_F3","SF1g","Female","TMTc" +"SF1g_M1","SF1g","Male","TMTa" +"SF1g_M2","SF1g","Male","TMTb" +"SF1g_M3","SF1g","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SF1g_vs_SFug.csv new file mode 100644 index 0000000..ce40c16 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SF1g_vs_SFug.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"SF1g_F1","SF1g","Female","TMTa" +"SF1g_F2","SF1g","Female","TMTb" +"SF1g_F3","SF1g","Female","TMTc" +"SF1g_M1","SF1g","Male","TMTa" +"SF1g_M2","SF1g","Male","TMTb" +"SF1g_M3","SF1g","Male","TMTc" +"SFug_F1","SFug","Female","TMTa" +"SFug_F2","SFug","Female","TMTb" +"SFug_F3","SFug","Female","TMTc" +"SFug_M1","SFug","Male","TMTa" +"SFug_M2","SFug","Male","TMTb" +"SFug_M3","SFug","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SFug_vs_Earth.csv new file mode 100644 index 0000000..6f0455c --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/model_metadata_SFug_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"Earth_F1","Earth","Female","TMTa" +"Earth_F2","Earth","Female","TMTb" +"Earth_F3","Earth","Female","TMTc" +"Earth_M1","Earth","Male","TMTa" +"Earth_M2","Earth","Male","TMTb" +"Earth_M3","Earth","Male","TMTc" +"SFug_F1","SFug","Female","TMTa" +"SFug_F2","SFug","Female","TMTb" +"SFug_F3","SFug","Female","TMTc" +"SFug_M1","SFug","Male","TMTa" +"SFug_M2","SFug","Male","TMTb" +"SFug_M3","SFug","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/significant_counts_summary.csv new file mode 100644 index 0000000..2c33b69 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch/significant_counts_summary.csv @@ -0,0 +1,4 @@ +"model","contrast","n_significant" +"condition_batch","SF1g_vs_Earth",41 +"condition_batch","SFug_vs_Earth",108 +"condition_batch","SF1g_vs_SFug",11 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_Earth_results.csv new file mode 100644 index 0000000..03f8c24 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"O16797",0.700026653213753,16.6512775871783,18.4387682295802,3.48372322398207e-09,5.8108503376021e-06,11.6105244174439 +"Q9VC18",0.677337048443512,18.1282760796353,16.0579539618705,1.37235462888217e-08,1.14454376048773e-05,10.3639303359565 +"Q9VN13",0.490525440369574,16.9081536405495,14.0384330823103,5.13829690467843e-08,2.85689307900121e-05,9.11584932903829 +"Q9VNE9",0.66223218560279,18.7720088912541,13.1324308314396,9.83864788089298e-08,3.64920689718032e-05,8.48725078738745 +"Q9VQE0",0.57893034694257,17.2771467791299,12.6418691283756,1.42258503835077e-07,3.64920689718032e-05,8.12669575952132 +"Q9VXP3",0.672862129146633,14.5222380106146,12.5275795513419,1.55304047543036e-07,3.64920689718032e-05,8.04053181017381 +"Q9VLC5",0.533100280623366,21.6850374737522,12.5073264120281,1.57749298834437e-07,3.64920689718032e-05,8.0251753546716 +"Q9VC06",0.651655167867563,16.2787785075986,12.3716580673597,1.75254161715294e-07,3.64920689718032e-05,7.92162185943102 +"Q9VFZ4",0.639562902078254,16.4804537361971,12.2230357572498,1.96899652725557e-07,3.64920689718032e-05,7.80679291335136 +"Q9W370",0.583547445019452,18.3204812365226,11.7639847975504,2.84417612500198e-07,4.4049965444085e-05,7.44267042015027 +"P48596",0.457556396197216,21.8400422654538,11.6710791928301,3.06861922111973e-07,4.4049965444085e-05,7.36718860570205 +"P41093",0.623397237729097,18.8355796054782,11.5761592577522,3.31804367560369e-07,4.4049965444085e-05,7.28943142043022 +"P21187",0.580871936934628,18.8453311878769,11.4889776968987,3.56671469071939e-07,4.4049965444085e-05,7.21743791133399 +"Q9VA42",-0.52730769138142,20.44637604246,-11.4458328838351,3.69723930585845e-07,4.4049965444085e-05,7.18160364776904 +"Q0E9B6",0.42712200214967,19.0471253430896,11.3564583917212,3.98451083096741e-07,4.41501699226886e-05,7.1069354411699 +"Q9VZU7",0.483502751290402,17.4764925762768,11.2806876799292,4.24717230824306e-07,4.41501699226886e-05,7.04316618875509 +"Q8IN44",-0.480054656949751,19.9397899008626,-11.2125073794937,4.49971755806778e-07,4.41501699226886e-05,6.98541563245442 +"P17336",0.564301229115877,20.6951623777099,11.1061214413097,4.92710095650285e-07,4.56578021969264e-05,6.89459723474048 +"Q9VHR8",0.52279870593258,20.3322073283353,10.9698968494169,5.54021663781673e-07,4.86372702730437e-05,6.77703204541076 +"O97125",0.537872792050312,18.4053353355981,10.7175086368186,6.90787051960269e-07,5.76116401334864e-05,6.5553506846339 +"X2JAU8",-0.420848631305201,21.7818985247322,-10.5634979551303,7.92065749441175e-07,6.29126509556134e-05,6.41755307440762 +"Q9VXQ0",0.647839252227998,14.9702186953671,10.4559368940628,8.72358028747211e-07,6.61405996341067e-05,6.32015464371672 +"Q9VZF6",0.627736242643975,15.0380570115786,10.3235128129352,9.83612343541076e-07,6.70466592503295e-05,6.19890853590202 +"Q9VEY0",0.48806611806226,18.0375391887424,10.31114825052,9.9476382625711e-07,6.70466592503295e-05,6.18751169848498 +"Q9VIE8",0.540427659600912,24.8202962323816,10.2525116031065,1.04955627788386e-06,6.70466592503295e-05,6.13328604077682 +"P09180",0.361481455578033,20.6643489681242,10.2231691039426,1.07820202356837e-06,6.70466592503295e-05,6.10603982620273 +"Q24276",-0.452482484912029,18.7619292187209,-10.1673655432627,1.13505864773117e-06,6.70466592503295e-05,6.05401732228099 +"Q9VLB7",0.462060910732596,20.9029181391919,10.1496976557687,1.15373419408193e-06,6.70466592503295e-05,6.03749010900245 +"Q9VNB9",0.734286335244636,18.8272865429815,10.138559576662,1.16567932749374e-06,6.70466592503295e-05,6.02705712402085 +"Q9VFQ9",0.445307743632576,19.0872762215348,10.083092522217,1.22720547582498e-06,6.82326244558691e-05,5.97493956422808 +"Q9VHC3",0.457015836325521,17.1483476542039,9.9858289868395,1.34380525828523e-06,7.17094469759409e-05,5.88289399810968 +"A1Z803",0.502810500204976,18.7241072580702,9.93403932370247,1.41076919601434e-06,7.17094469759409e-05,5.83353900434879 +"Q9VG42",-0.84280439443549,16.2097515532707,-9.92807448090432,1.41871208045926e-06,7.17094469759409e-05,5.82783912757083 +"Q9V3N7",0.393187325729443,20.4323002652192,9.79657768046727,1.60678409900347e-06,7.8826937562876e-05,5.7013663031442 +"Q7JPS2",-0.474778117691947,20.6985184536622,-9.73426152154745,1.7052472088873e-06,8.12672098406862e-05,5.64088003783348 +"Q8IN49",0.470517595558322,16.831231728593,9.61555154854014,1.91148276900889e-06,8.85653682974118e-05,5.52466188628277 +"Q9W3J5",0.55799131355891,16.0139677528003,9.50400771293255,2.13019228402958e-06,9.60313710746309e-05,5.41425578389648 +"Q9VNW6",0.682036784364254,21.4617941625739,9.38243430765254,2.40000683947473e-06,0.000105347668637996,5.2925731789841 +"Q9VW54",0.476843657269496,15.7698981589251,9.3339963271944,2.51767755540016e-06,0.000107679132369422,5.24369468593266 +"Q9VWV6",-0.459023564726404,23.7468779708063,-9.25605562344727,2.720400213018e-06,0.000112499717613233,5.16456500990159 +"P50887",0.608644887749232,17.6568887674278,9.23965443125954,2.76528082862265e-06,0.000112499717613233,5.1478377120321 +"P23779",-0.358021434103978,21.0404501196927,-9.17261964896277,2.95726678317941e-06,0.000114226754987432,5.0791937027926 +"Q9VA09",0.499263239720838,16.2661598746717,9.1572423201777,3.00332075927681e-06,0.000114226754987432,5.06338433148197 +"Q9VAC1",0.33841545208988,23.3307173711924,9.15398504226641,3.01317579103537e-06,0.000114226754987432,5.0600325127943 +"Q8SZN1",-0.457887943304772,20.2382174886971,-9.11825185791815,3.12362660514725e-06,0.000115782426164125,5.02319260902219 +"Q9W3E2",-0.634307082032201,17.7112104076546,-8.99038162088305,3.55640627865031e-06,0.000128958384191059,4.89030938872977 +"P22979",0.465652077338909,19.39844137514,8.95830387275817,3.6749215286646e-06,0.000130420619357714,4.85671365048411 +"P32392",0.45403638329746,17.6062097508181,8.87708338034731,3.99463306109605e-06,0.000132695548038832,4.7711775037182 +"Q9VKD3",0.387693116567444,18.6185371765754,8.85710735839774,4.07781455342106e-06,0.000132695548038832,4.75003572356307 +"Q9VV31",-0.914129140048026,15.9080548630959,-8.79403432185544,4.35304654779278e-06,0.000132695548038832,4.68300955120553 +"P45437",0.521029435087762,15.9949204609525,8.76977080690761,4.46424505477715e-06,0.000132695548038832,4.65711461128289 +"Q9V521",-0.525567173324955,17.8250079168567,-8.76819228099049,4.47158549707025e-06,0.000132695548038832,4.65542780946172 +"Q94901",0.33954681225957,18.8920866294908,8.76728598803407,4.47580585275065e-06,0.000132695548038832,4.65445923286589 +"Q9W3Y3",-0.376279525027101,18.1854647388084,-8.75809157348765,4.51886712341703e-06,0.000132695548038832,4.64462806700989 +"Q7JYW9",0.432693870019069,17.0988504068374,8.75217560207572,4.54681185756704e-06,0.000132695548038832,4.63829769060303 +"A1Z6L9",0.35923445445793,15.1809093126729,8.75134315639617,4.55075904488134e-06,0.000132695548038832,4.63740663780575 +"Q9VFN7",-0.342899664269552,18.7659551083739,-8.74785463888936,4.56734098658412e-06,0.000132695548038832,4.63367172297491 +"Q9W253",0.502318549677815,15.1068541662566,8.73808819135427,4.61411378072677e-06,0.000132695548038832,4.62320864423425 +"Q7JWF1",0.461762802531489,20.4905172526239,8.66764789758001,4.96727102582766e-06,0.000140430645272551,4.54744526040823 +"Q9VXC9",0.452225779675558,18.904293225518,8.48512757229921,6.02650649454914e-06,0.000167536880548466,4.34866290076059 +"Q95SS8",0.335098519722939,15.5109201404261,8.39010201738541,6.67307986902734e-06,0.000179807422020154,4.24373855707069 +"P91927",-0.338155683050452,19.3526555524919,-8.37927420346427,6.75140454586051e-06,0.000179807422020154,4.2317197761063 +"Q9VAY9",0.539726643299582,14.5035220179372,8.37381292423195,6.79128752234395e-06,0.000179807422020154,4.2256528863646 +"P54385",0.383150768389179,21.4011846368102,8.33836380177657,7.0564649816988e-06,0.000183099541699548,4.18619242004433 +"Q9VED8",0.562512169993475,16.2654653689014,8.32811955388967,7.13517398709269e-06,0.000183099541699548,4.17476296951128 +"Q9W0Z5",-0.35273291408221,17.0019254613709,-8.30685711250414,7.301595517241e-06,0.000184531232163,4.15100328273898 +"Q01637",0.407371955573721,15.8885078012101,8.28373289682415,7.48738255492452e-06,0.000185105468464244,4.12510587480403 +"Q9I7Q5",-0.572597641264366,20.6732751306916,-8.2765335700199,7.54626610046078e-06,0.000185105468464244,4.11703095103606 +"Q9W369",-0.387098211229397,22.2910552770182,-8.23639935676254,7.88386716645948e-06,0.000190583919328325,4.07190894549353 +"A1Z847",-0.308033048844084,20.1244705647838,-8.17156831643507,8.46432008704821e-06,0.00020169265578852,3.99863717218827 +"Q9VN14",0.269102363427834,19.2754730720111,8.13798004801283,8.78313694627487e-06,0.000204245305455789,3.9604883491412 +"Q9VQ91",-0.403575845308751,15.0355490361087,-8.13455782641497,8.81634412039377e-06,0.000204245305455789,3.95659424878276 +"Q7K485",0.371976413082471,20.4622555495255,8.06246541584995,9.54849040832397e-06,0.000216920072604911,3.8742496506135 +"Q9VR79",0.527422574355462,20.2302829306034,8.05541522192785,9.62355238175265e-06,0.000216920072604911,3.86616480539903 +"Q9W1H8",0.385123226935129,20.4574736570444,7.99544837612109,1.02884866533906e-05,0.000228815943171406,3.79716530138205 +"Q8SXF0",0.395234844043854,16.2710879905024,7.90844166784659,1.13433755461225e-05,0.000248957242249109,3.69630919226831 +"Q9W1R3",-0.337114616627289,17.0302565706242,-7.85437456716895,1.20575699981823e-05,0.000259526952763845,3.63318844562281 +"Q9VV36",-0.523209203391218,23.1979127313407,-7.84863848078724,1.2136152467374e-05,0.000259526952763845,3.62647159149848 +"Q9VAA6",-0.350113554872008,16.2226888712912,-7.82190018297047,1.25098513377925e-05,0.000264132051030859,3.59511008466349 +"Q8SXD5",-0.396070167730162,20.8792931149422,-7.70488187897326,1.42984353663468e-05,0.00029812237738833,3.45685580069058 +"Q7K511",0.435807391984797,16.598530515687,7.62444549261452,1.56876410987047e-05,0.000323049201884438,3.36086649820109 +"Q9VA37",-0.301825946781918,21.8252777044823,-7.53239967243085,1.74590211501154e-05,0.000355142039980395,3.25005628880737 +"O02195",0.31602741880857,18.6422979455918,7.36978540192638,2.11403986247565e-05,0.000424845601278238,3.05173564551363 +"Q9W5W7",0.376364388276611,14.9034811872323,7.31209352619583,2.26416148379813e-05,0.000445063237213502,2.98058168583012 +"P29613",-0.339693782658394,23.9164829560539,-7.31067012143822,2.26800810330621e-05,0.000445063237213502,2.97882083310236 +"Q7K4T8",0.351402984063997,13.5402257611282,7.27941657213636,2.35427373582981e-05,0.000456619603646991,2.94009337051472 +"M9PEG1",-0.391447802550285,20.3408553577652,-7.24449609925813,2.45487682587875e-05,0.000466416515957836,2.89667552422206 +"Q9VAJ9",0.365775025611793,17.4082541131139,7.24251879630251,2.46071063574878e-05,0.000466416515957836,2.89421243493903 +"Q7K3N4",0.302429815863025,17.0561229159643,7.22549170533121,2.51157175475456e-05,0.000470560420194689,2.87298148742133 +"A1Z8Z3",-0.313472922569598,19.9648565775649,-7.21646499519678,2.53899507299293e-05,0.000470560420194689,2.86171115109048 +"Q9VTU2",-0.247269233178034,20.8413962607865,-7.15871275051679,2.72229029864145e-05,0.000498986837157576,2.78935756012345 +"Q24253",0.460850351484655,18.730864810894,7.1381580282475,2.79093662687547e-05,0.000506008944959597,2.76350270622139 +"Q9VSY0",-0.367616895806922,22.6496832498258,-7.0187288788771,3.22866483233539e-05,0.000579076660251121,2.61219696433945 +"Q9VH64",-0.376084855156831,17.6301323985133,-7.00523772593709,3.28259354652863e-05,0.000579900043147311,2.59498828588479 +"Q9V8F5",-0.356629976633103,16.0616263447071,-7.00024723298074,3.30278801552725e-05,0.000579900043147311,2.58861661982319 +"P10676",-0.655514005724665,19.9128512890527,-6.93672034886772,3.57191653699028e-05,0.000618492667616421,2.50722264220662 +"Q9VMR6",-0.334707831550769,18.8792735357994,-6.93112076689067,3.5967499255871e-05,0.000618492667616421,2.50002272247486 +"A8JTM7",0.332600069877426,17.5424496232923,6.89342904153378,3.76883477460645e-05,0.000641471061637098,2.45145120481744 +"Q9V3D9",0.249136366340906,17.376635102771,6.83236873364643,4.06675595658377e-05,0.000685186761169872,2.37236646830242 +"Q9W1L1",0.438885752315135,14.8317393044745,6.81339346713626,4.16443989993853e-05,0.000690440161337916,2.34768891963635 +"Q9W0S7",0.377638513671187,17.8691928449794,6.81027722301088,4.18072279946819e-05,0.000690440161337916,2.3436316194182 +"A1Z9A8",0.473793718254587,16.6067687153514,6.80037381492627,4.23292738206162e-05,0.000692208124831252,2.33072893468395 +"Q9VEV3",-0.237806036402908,18.308054846586,-6.77261299532258,4.3830498335557e-05,0.000707041385129936,2.29449079247991 +"Q9VFS4",-0.301499419805511,15.3533529813371,-6.76802448624463,4.4084115139996e-05,0.000707041385129936,2.28849115651434 +"Q9Y119",-0.38499807070286,17.8947057673184,-6.73572718711092,4.59146643681547e-05,0.000729387239676972,2.24618141349199 +"O18413",0.258916716577371,19.3709186121459,6.71377897035364,4.7205342178906e-05,0.00074239242608692,2.21734905747521 +"Q7K148",0.395453052232693,16.6935461934237,6.70680672682107,4.76234949588132e-05,0.00074239242608692,2.20817636801536 +"Q7K2E1",0.458232235587595,17.3807421099237,6.67112451474725,4.98269479228089e-05,0.000769549529030049,2.16113013419542 +"Q9W266",-0.289673782480826,18.4465639112498,-6.64889434535318,5.12551051065852e-05,0.000779549893775153,2.13173309445255 +"Q7KVQ0",0.432005766677923,15.6530863862465,6.64653628376865,5.14091656566348e-05,0.000779549893775153,2.12861088096515 +"Q9VM07",0.495597714395707,17.008523657083,6.62326472341968,5.29566320174328e-05,0.000794136040350765,2.0977574937547 +"Q9I7K0",-0.416619711101173,16.2722854377917,-6.61583297666031,5.34613319574232e-05,0.000794136040350765,2.08788900446701 +"Q9VSL3",0.331503229294103,22.4791610296337,6.61013084872236,5.38520853275327e-05,0.000794136040350765,2.0803121551876 +"Q9VLR5",-0.40170710328368,16.9611372740849,-6.60366536907687,5.42988764848532e-05,0.000794136040350765,2.07171563139063 +"Q9VHT3",-0.441811719713076,15.8125793621821,-6.5971724660107,5.47515855157901e-05,0.000794136040350765,2.06307691881774 +"Q8IN43",-0.81555948284166,18.1225810058562,-6.58628127615029,5.55201183162404e-05,0.000798341011650767,2.04857345437125 +"A1Z9B5",-0.39480058639448,15.8745405464955,-6.51629937955113,6.07442667165322e-05,0.000856634610281753,1.95499420731308 +"Q9W4I3",0.38210666862215,16.5476509562009,6.5143831041315,6.08945659666412e-05,0.000856634610281753,1.95242234689299 +"Q9VEB1",-0.219249144551981,25.1371372270476,-6.51158411604316,6.11148193186622e-05,0.000856634610281753,1.94866487980134 +"P12080",0.285596259557806,19.0095098758866,6.48142756177687,6.35430351485159e-05,0.000883248188564371,1.90811333239916 +"Q9VAM6",-0.279667294460396,22.1389987491518,-6.41516965571014,6.92509060119075e-05,0.000954632324197204,1.81857630379645 +"A8JNG6",-0.429330088528202,15.8635022931246,-6.35103522253335,7.53045830462098e-05,0.00102169993325712,1.73133031189144 +"Q8SZK9",0.238460317487991,22.1803287010149,6.35066456771825,7.53411821286724e-05,0.00102169993325712,1.73082442770568 +"P48375",-0.295596312640079,21.9133064527281,-6.33413366097538,7.69930949815959e-05,0.0010307189569467,1.70824296281813 +"P82890",-0.364117076765673,19.7080232453864,-6.33167469440555,7.72421280685475e-05,0.0010307189569467,1.70488072776089 +"Q9W2E7",0.366292080740038,18.4662116230169,6.31172325144529,7.92950568327059e-05,0.00104971551426154,1.67756923772676 +"Q9VBI2",-0.220774129974707,22.1544778896352,-6.28558841569367,8.20735010753215e-05,0.00107151441761618,1.64170929541174 +"Q9VSR5",0.294551748150035,20.2467087006717,6.28112765930322,8.25581079432875e-05,0.00107151441761618,1.6355791022581 +"Q9VSS2",0.407155963316539,16.1759115842471,6.27828145887895,8.28689207868628e-05,0.00107151441761618,1.63166625841954 +"Q9VWH4",-0.209459618671705,24.4026882919273,-6.23610632975502,8.7625087017943e-05,0.0011242972703533,1.57355267151489 +"Q9VWP2",-0.334703622357946,19.7150234088379,-6.2253058191008,8.88897388715072e-05,0.00113138552349183,1.55863042952243 +"Q9VNH5",0.254665756070187,17.082055682161,6.21986609032246,8.95341061756121e-05,0.00113138552349183,1.55110857166401 +"Q7JXZ2",0.519931583660597,17.4579788873117,6.20798169258511,9.0959421361338e-05,0.00114075424684746,1.53466080402129 +"A1ZB70",-0.269028125908736,16.250416473106,-6.19124928160189,9.3007670612692e-05,0.00115773727299978,1.51146983386889 +"P14318",-0.253928057657802,22.1754578303237,-6.15674379489143,9.7389816692957e-05,0.0012033052906952,1.46352112038555 +"Q7K3E2",-0.265999544749079,20.5612577814084,-6.12402932505434,0.000101749969274952,0.00124793344669573,1.41790615598037 +"Q9W1N3",-0.236095795017963,20.5562459735456,-6.11356668976381,0.000103188328507983,0.00125633672957165,1.40328582406004 +"Q9I7K6",-0.247469097650724,16.2423896340454,-6.10160866934885,0.000104859070052828,0.00126742702063853,1.38655690768964 +"Q9VBC7",0.321967787993604,16.0315592108535,6.09453632068305,0.000105860858827196,0.00127033030592636,1.37665338009597 +"Q9VLY7",0.253815375113424,15.3514911595159,6.0732724545991,0.000108935287912618,0.00128948327985545,1.34683457460594 +"Q7JRN6",-0.333763554694253,14.8483062320043,-6.07281085271201,0.000109003083009364,0.00128948327985545,1.34618654930397 +"Q7K569",0.437107860350576,20.4536955014001,6.06352452048122,0.000110376630513927,0.0012965367584312,1.33314340478157 +"Q23983",-0.216649712730323,22.3582408117186,-6.03408025069581,0.000114856080468187,0.00133622270462481,1.2917064763353 +"Q9W414",0.208255238827402,19.5253488480266,6.03086223866771,0.000115357355794947,0.00133622270462481,1.28717030539968 +"P42281",-0.37781940489921,21.8833835391386,-6.01704309012574,0.000117536850900728,0.00135207908484424,1.26767384236948 +"Q9VXK6",-0.259292023613444,17.8517635978374,-5.99312785856906,0.000121413822563434,0.00138711134271101,1.23386936062279 +"Q9VZG1",-0.292498263204557,17.7997610279085,-5.98223465469423,0.00012322506530293,0.00139148510673645,1.21844469541334 +"Q8MSI2",-0.582327975782238,24.1442451584085,-5.98080391344471,0.000123465105393882,0.00139148510673645,1.21641752485905 +"Q9VB22",-0.345029471083382,17.2648846754239,-5.96981916598256,0.000125324858744707,0.00139831411045569,1.20084387951895 +"Q9VV39",0.24491089616938,17.4566379262803,5.96734620653672,0.000125747671803569,0.00139831411045569,1.19733546546614 +"Q9VXY3",0.235714048462405,18.0818014606941,5.9519263944858,0.000128418847524033,0.00141774983388377,1.1754395442755 +"Q9VT23",0.266979966404442,18.1901220951191,5.94750797884732,0.000129195428507394,0.00141774983388377,1.16915920387032 +"Q9VXZ8",0.328472190262122,17.7660313788427,5.94056860766319,0.000130425284586767,0.00142189133784789,1.15928995166297 +"Q8SXQ1",0.31129975256772,18.5154191402664,5.93300840669907,0.000131779484655902,0.00142732584679249,1.1485299252587 +"Q9VIF2",0.261085776810939,17.3729893912739,5.92271922089163,0.000133646801039662,0.00143057193446208,1.13387277018515 +"Q9VHT5",0.308544748154965,15.6240793061197,5.91864571706683,0.000134393902428925,0.00143057193446208,1.12806580256143 +"Q9VPE2",0.351682165801797,20.7656712747026,5.91724326926423,0.000134652154502725,0.00143057193446208,1.12606599993028 +"Q9Y156",0.354215719342315,16.0812227463039,5.91176153418639,0.000135666701900957,0.00143222822006833,1.11824669328035 +"Q9VCX3",0.740206365909239,12.9401757315591,5.89137003131339,0.000139513321907955,0.0014630258297675,1.08912195037615 +"Q9VD02",-0.25086732414681,18.2690825063605,-5.88707574295191,0.000140338209090408,0.0014630258297675,1.08298093107002 +"Q9VJQ3",0.240390312671295,20.4225865837405,5.84378262065898,0.000148952803784701,0.00154318805411727,1.02092242964935 +"Q9VJZ4",-0.220522531324036,21.3498370763053,-5.82845365809553,0.0001521375417385,0.00156249676735184,0.998884768991742 +"Q9W3H4",-0.233102936804322,19.5560340063926,-5.82582943202063,0.000152690031821553,0.00156249676735184,0.995108676886957 +"A1ZAL1",-0.322103922085383,17.2597042153659,-5.79317913850861,0.000159746862697745,0.00162474248158438,0.948044399476791 +"Q9VCK0",0.329403135052601,18.1976072865754,5.76905630450513,0.000165184924501456,0.00166986941859654,0.913173864585348 +"Q9VKG4",-0.306213743134979,15.9207750537474,-5.74534391538061,0.000170724263268439,0.00170942630565214,0.878815163486992 +"Q9VF23",0.718199960919366,15.353932661404,5.74356576435709,0.000171147597748146,0.00170942630565214,0.876235406435342 +"Q9Y143",-0.222170154630675,21.0180546930622,-5.73097953415747,0.000174176422317015,0.0017293230501475,0.857962195798156 +"Q9VQQ0",-0.246260761973605,18.3234900589626,-5.7061493456539,0.00018032143281966,0.00177974053220824,0.821845884163618 +"Q9VTZ4",0.355663282267834,18.0815514697937,5.68938060883821,0.000184602529324528,0.00180666426092738,0.79740502668703 +"Q9VCK6",0.305799339813079,16.4666499540122,5.68027321263627,0.000186973178541913,0.00180666426092738,0.784113804973032 +"Q9VMD3",0.271521469205872,17.7427163446969,5.67761710101417,0.000187670688414841,0.00180666426092738,0.780235259150238 +"Q9W5B4",-0.287949748572732,18.72159215829,-5.67559210600811,0.00018820433559579,0.00180666426092738,0.777277609133943 +"Q9V3A8",0.345533189898447,15.3834505975204,5.67460530218243,0.000188464976859331,0.00180666426092738,0.775836097600591 +"Q24238",0.290097407084515,16.3253843632414,5.66003880983255,0.000192357676936703,0.00183344345788812,0.754541222146767 +"Q9VPC2",-0.394269585730578,14.8489546383323,-5.64605840424046,0.000196174817623091,0.00185036464329537,0.734074410104484 +"Q9VAN7",-0.249885550369051,23.724997291026,-5.64517301642763,0.000196419275086787,0.00185036464329537,0.732777286087523 +"Q94523",0.230045824124527,20.2154899775159,5.64141331705035,0.000197460975123847,0.00185036464329537,0.727267937379364 +"Q9VUX1",0.312309412109173,16.4077551632286,5.59447897396791,0.000210974754521449,0.00196595469576411,0.658320352291843 +"Q9VMY1",0.32679639088567,15.5823144437963,5.58531035701603,0.000213728437627436,0.0019805501886809,0.644814381162226 +"Q9VFC2",0.243079700611592,19.8174939140012,5.56618224334721,0.000219597940686896,0.00202369814953449,0.616598405329976 +"Q9VSC3",0.302446826066287,17.5088269040002,5.5172380820745,0.000235416158308244,0.0021575502860338,0.544160437811724 +"Q9U9Q4",0.26414610048294,17.7967064239191,5.50236665842245,0.000240460564049297,0.00219173891166244,0.522082126006523 +"Q9VE24",0.299330085450306,15.9067507687377,5.47506800540037,0.000250023618722176,0.00226651845667712,0.481471197542828 +"A1ZA22",0.590691853952409,13.4734284669821,5.44046443414138,0.000262733989708608,0.00235781119757601,0.429838694653657 +"Q9VI09",-0.212426735619474,20.2055890287783,-5.43996771785386,0.000262921392535454,0.00235781119757601,0.429096280525014 +"Q9VLP0",-0.328541123710643,16.2105248241074,-5.38172830116117,0.000285916294114754,0.00255031218493802,0.341802682158261 +"Q9W1F8",-0.303194807280089,17.66226024291,-5.37756219934791,0.00028764159577792,0.00255205415828495,0.335539497673149 +"Q9VSA3",0.223001232877056,21.6819429412969,5.34606002152315,0.000301053073685669,0.00265691284078146,0.288099284339134 +"Q7JXC4",-0.202450725636044,21.6496472995715,-5.32300469263185,0.000311290982342729,0.00271813969267431,0.253289018436871 +"Q9VK39",-0.2867456437824,18.2072751232891,-5.32284443747898,0.000311363432380749,0.00271813969267431,0.253046788565602 +"Q9W3R8",-0.274313961883191,17.4077724032216,-5.31950033248003,0.000312879389084813,0.00271813969267431,0.247991244031047 +"P18432",-0.33267083575598,23.7275372495705,-5.31084381280629,0.000316840295803069,0.00273828815232911,0.234897044422019 +"P29327",0.304715440338725,19.4923823363594,5.26888828556794,0.000336810686722473,0.00289587745078909,0.171280974648309 +"Q9VBP6",-0.191634112333826,23.1517542166488,-5.2170278000454,0.000363369970808492,0.00310382101291524,0.0922974612615848 +"A1Z7X8",0.2375327696165,16.957388334736,5.21449031199553,0.000364725539876343,0.00310382101291524,0.0884229857724304 +"Q8SYJ2",-0.191435322340823,22.604123593544,-5.2110382011712,0.000366578381021764,0.00310382101291524,0.0831504994466989 +"Q9W402",-0.190735876694081,21.2446710788336,-5.19531277100657,0.000375146550400287,0.00314444012624515,0.0591111379709632 +"Q6IHY5",-0.28768394622503,20.9149549447233,-5.19314787536637,0.000376342738067747,0.00314444012624515,0.0557989085787707 +"Q9VH98",-0.251089292153146,17.0914972372399,-5.19190521802903,0.00037703119019726,0.00314444012624515,0.0538973753497354 +"Q9W337",-0.309905376277589,17.7878464761847,-5.1744367404093,0.000386852405383908,0.00320529547665765,0.0271435052690636 +"Q9VUY9",0.247754041498744,19.6156762456592,5.17212700045764,0.000388171274751106,0.00320529547665765,0.0236027594157378 +"Q9VTY2",-0.32693587254894,20.8558873954418,-5.15984641505813,0.000395264476743581,0.00324778890250391,0.00476429630969566 +"P19334",-0.764609439301756,15.4010045728876,-5.14247267573854,0.000405536367177981,0.00331585617869055,-0.021923806555499 +"Q9VW68",0.26036138103624,22.8808429551575,5.13762833261441,0.000408450937613501,0.00332339592165521,-0.0293729521397736 +"Q8SWS3",-0.338772212339322,16.5423549740241,-5.13364401365422,0.000410864806532338,0.00332680823930068,-0.0355021425873066 +"Q7K5M6",-0.237976352437119,18.277937132895,-5.12498259786596,0.000416164849343498,0.00335344429326065,-0.0488340364790991 +"Q8IQG9",-0.291682818226196,20.5380861669683,-5.11676628135586,0.000421259888089791,0.00337818025641237,-0.0614906829314572 +"Q9V9Q4",-0.240406399234583,19.1800484641246,-5.11271510534052,0.000423796493668062,0.00338226101166664,-0.0677347615957897 +"Q9VPN5",-0.212552574567731,21.3690757223014,-5.09826568332134,0.000432977189041721,0.00343907595867424,-0.0900246480013491 +"Q9VDE2",-0.203841211787978,19.5453260794016,-5.0946239133683,0.000435324317587112,0.00344133157220522,-0.0956471719448277 +"Q9VSY6",0.317122237703266,17.6815540191244,5.07734918307983,0.000446643978077641,0.0035141611105354,-0.122343232882648 +"Q9V3G1",0.2567281303672,21.0628229744707,5.06668304582492,0.000453789389812302,0.00355361832022028,-0.138847610547506 +"P52029",-0.278511627918448,18.3729676908,-5.06033822385354,0.000458097535670614,0.00355405179963696,-0.148672989314128 +"Q8IM93",-0.283696373518424,19.0675930632366,-5.06032553167191,0.000458106197195411,0.00355405179963696,-0.148692649711167 +"Q95SI7",-0.172529413007513,21.2541654410266,-5.05534279765534,0.000461520070741163,0.00356396054627898,-0.156412746950517 +"P28668",0.368157692839691,15.530646478345,5.02952578857975,0.00047964733215313,0.00367742676135464,-0.19646903446552 +"Q9VJZ5",-0.214830162065365,17.0201064610847,-5.02808475092842,0.000480681226514642,0.00367742676135464,-0.198707644485425 +"Q9VK12",-0.210330340967325,22.3588725970958,-5.0251036274655,0.00048282761435052,0.00367742676135464,-0.203339662821252 +"Q9VME1",-0.372594272015878,16.6092433115872,-5.01157833867779,0.000492694627782325,0.00373552108700417,-0.224370761888768 +"Q9NJH0",0.21710095278689,21.1239169244015,5.00698946082923,0.000496090883577774,0.00374425155569107,-0.231512076648491 +"Q9VSA9",-0.285811033182544,22.4156403355409,-4.97135837774819,0.00052332451449671,0.00393200581162393,-0.287062737972419 +"Q9VW66",-0.195412548740467,21.4015817315576,-4.96423854652315,0.000528954548761775,0.00395648514499839,-0.298184282299433 +"Q9VAQ4",-0.351776868674886,15.9677726617538,-4.95832654992237,0.000533678428126752,0.00397399829515814,-0.307424525359182 +"Q95RI2",-0.314597136280856,16.8164317516926,-4.9530259079497,0.000537951962817954,0.0039833256365241,-0.315713404552509 +"Q9VKU3",0.254386771324583,15.5090004382705,4.9508617840662,0.00053970719056022,0.0039833256365241,-0.319098684073095 +"Q9VMW7",-0.202270495914618,19.4656908511631,-4.93838523734432,0.000549945837268108,0.0040410117029216,-0.338628178155035 +"Q7K5J8",-0.300696750983935,18.2502547622958,-4.93092851268661,0.000556163477934622,0.00406877491752171,-0.350310548714218 +"Q9VW34",0.34341048507692,18.4249046031174,4.92363054940902,0.000562321135101457,0.0040891757147618,-0.361751705417173 +"Q9W086",0.302390541428574,16.858899036092,4.91909330629981,0.000566185931698587,0.0040891757147618,-0.368868573470082 +"Q9VGA3",0.234577795340918,19.4270582151399,4.91895204587282,0.000566306708699026,0.0040891757147618,-0.369090192816199 +"Q9VQD7",-0.183622210602582,21.0003981161485,-4.91382495354663,0.00057070893322285,0.00409163276639846,-0.377135819957513 +"Q9VMQ5",0.381818989999163,13.5091665940291,4.91284668477526,0.000571553018327843,0.00409163276639846,-0.378671372375893 +"O17444",0.381392393653631,15.1860841980659,4.90809672014586,0.000575670358456263,0.00410349640130362,-0.38612911128 +"Q9VI75",-0.300923428004683,17.4903313775524,-4.9021209309756,0.000580895081775665,0.00412311913362472,-0.3955159314309 +"Q9VM12",0.222167659589619,18.9056126776404,4.86905409386711,0.000610731335688006,0.00431652486409998,-0.44754727589237 +"Q9VIN9",0.254988806321776,16.419129836985,4.85013352613618,0.000628531934401862,0.00442359184211944,-0.477387322164814 +"Q94524",-0.234453079180657,15.6918019122848,-4.84426029913959,0.000634168928349314,0.0044445116491036,-0.486660179608907 +"M9MSK4",-0.198261560158727,20.5494749393378,-4.83653298524685,0.000641667337789366,0.00447824736164294,-0.498867584430188 +"Q9W392",0.179761255044308,19.9737314037546,4.83089072380713,0.00064720189097892,0.0044980531423035,-0.507786277562312 +"C0HK95",-0.310471221303086,19.8969547601003,-4.82431994842383,0.00065371117443536,0.00452444082555262,-0.5181781927455 +"Q7K3Z3",-0.18385959408635,19.914105779949,-4.82092293942904,0.000657103611781646,0.00452912737376771,-0.523553012751934 +"Q9W199",0.495884097313935,15.7423879023532,4.80947083191548,0.000668678673705675,0.00458994250099204,-0.541684466654063 +"Q9VPL0",0.302117561008075,15.0515352186491,4.78351282001271,0.000695724062414275,0.00475601531191398,-0.58284885804738 +"Q9W308",-0.318123520697164,17.2880469049173,-4.77725976183837,0.000702410992278282,0.00478212871477622,-0.592778777985528 +"Q9VJI5",0.367417309373057,17.5272965600473,4.76908390592136,0.000711257161773611,0.00481254168224472,-0.605770171655151 +"Q9VIX1",-0.38918000184119,17.3411689964387,-4.76780776482827,0.000712648558461897,0.00481254168224472,-0.607798775892261 +"Q9VN02",-0.217664926695086,17.3113784807918,-4.76045415679441,0.000720722767571247,0.004847441839955,-0.619492684438703 +"Q9W3X7",-0.237498807342018,21.6252941507142,-4.71535309932043,0.000772413719961807,0.00517424130480439,-0.691374265513185 +"Q960M4",-0.257577071352102,23.2449251760672,-4.71243517607136,0.000775890644620212,0.00517674238090606,-0.696034302484652 +"Q9VQT8",-0.345149738193445,18.0058391474991,-4.70919920644672,0.000779765953597407,0.00518187095856763,-0.701203615185186 +"Q9VEN3",-0.191859920643477,17.6111231050059,-4.70316463177202,0.000787047699329393,0.00520950620032313,-0.710847341500549 +"Q9W3M7",0.275446157818351,16.021209787843,4.69965865488034,0.00079131132676517,0.0052170248736929,-0.716452421746371 +"Q9VX69",-0.349761515561458,18.2495891113129,-4.67829968102571,0.000817820414448508,0.00537056870590595,-0.750635163024849 +"A0A126GUP6",-0.155344372211363,17.0849380239928,-4.67518890740003,0.000821759088335031,0.00537527121310915,-0.75561872785939 +"Q7KUT2",0.285978225747797,18.1659762928163,4.66452539074821,0.000835413801577148,0.00544324305090111,-0.772711872089154 +"Q9VZ24",-0.21817208068688,21.8597449164904,-4.65179980216686,0.000852024224182542,0.00549784571260259,-0.793130306153322 +"Q0KHZ6",-0.187829651254145,23.1337771825978,-4.65054867394258,0.000853676074888078,0.00549784571260259,-0.795138929636106 +"Q9VX36",-0.163594650776574,22.2380457099757,-4.65054398054038,0.00085368227791611,0.00549784571260259,-0.795146465050035 +"Q9VHX4",-0.158545386500283,22.874548128139,-4.63772837018115,0.000870799329794533,0.00558651262345108,-0.815733287552596 +"B7Z107",-0.383919990922106,16.0711058066324,-4.63118573563797,0.000879677713416441,0.00562184837539703,-0.826251702084534 +"Q8I099",0.284149399290143,16.8234072775656,4.62627665738112,0.000886402262124759,0.00564320218787824,-0.834147621312337 +"Q9VPL3",0.365833998319752,15.8248831230624,4.58782220506138,0.000940998280244342,0.00596800430208199,-0.896109166058221 +"Q9VVN2",0.304403688991311,14.8699563134575,4.55912740810746,0.0009840509610911,0.00621741289053013,-0.94247157415198 +"Q7JQR3",-0.211958228620105,19.1439864555764,-4.54884483447618,0.000999981487206044,0.00626016966247988,-0.959111365856733 +"Q9VXI6",-0.158109712663027,22.0387622436521,-4.54432980498666,0.00100706245724237,0.00626016966247988,-0.966422163764125 +"Q8T3X9",-0.246626889398964,18.293634729184,-4.54321246114705,0.00100882297033381,0.00626016966247988,-0.968231790898742 +"P32748",0.220749519878931,17.2009008475282,4.54318550624099,0.00100886548129011,0.00626016966247988,-0.968275448512633 +"Q9VZX9",-0.218951077727628,18.3538709668035,-4.53918709066854,0.00101519246446621,0.00626016966247988,-0.974752541178766 +"Q7KM15",-0.222471680808676,17.0240250028971,-4.53870825938091,0.0010159529619423,0.00626016966247988,-0.975528346084864 +"Q9VFP1",0.193856395215924,15.6236392022137,4.53799310689698,0.00101708991518708,0.00626016966247988,-0.976687095142985 +"Q9V6Y3",0.331059267994302,15.236178271097,4.53256831891722,0.00102575819604596,0.00629031129045833,-0.985478941542808 +"Q9V396",0.183555818919505,20.7653238019371,4.52563863680369,0.00103694490385285,0.00633561941255149,-0.996715278577 +"Q9VMH8",0.18934075189776,18.8915274870396,4.52125131276845,0.00104409404926775,0.0063443606488225,-1.00383244144645 +"Q9VGA0",-0.313081302315233,19.3778233811034,-4.52009756445337,0.00104598272087901,0.0063443606488225,-1.00570447648615 +"Q9VG69",-0.224027368852255,19.9765826445163,-4.50917599302513,0.00106404110180337,0.00643050926742034,-1.02343396413878 +"Q2MGK7",-0.255251213167238,17.1247640090554,-4.50473939030187,0.00107147068619759,0.0064520328685111,-1.03064048743215 +"Q6NLJ9",-0.332444422497998,15.1497007939836,-4.47558923029839,0.00112166939381325,0.00673001636287953,-1.07805277922766 +"Q9VHB8",0.42442622470513,15.4400931922841,4.46989971987785,0.00113175368134079,0.00674350675371353,-1.08731932762077 +"Q9VJ43",0.19549686086652,20.2301378961315,4.46975943590151,0.00113200353179843,0.00674350675371353,-1.08754786118138 +"Q9VXN4",0.259480160954469,14.9544534777443,4.46650196133355,0.00113782161350136,0.00675404431074826,-1.092855244833 +"Q9VZU4",-0.189133918956056,21.4470166269703,-4.45401114334856,0.00116042545713792,0.00686379312945406,-1.11321893307885 +"Q9VPF6",0.38831220457269,13.9702232543697,4.44948761169337,0.00116872793395371,0.00686856795827202,-1.12059848361204 +"Q9VY28",0.270960551981885,15.2047555560976,4.44908582129035,0.00116946840536526,0.00686856795827202,-1.12125407712679 +"Q500Y7",-0.230944799426521,20.0868895070179,-4.44267374417083,0.00118135267006153,0.00691402194267589,-1.13171929390537 +"Q9VFB2",0.235706166346841,16.4176026373008,4.43422820539601,0.00119720067190627,0.00698227524734146,-1.14551124773651 +"Q9VIK6",-0.242273031787896,16.6440320677759,-4.42281504862354,0.0012189747950422,0.00708449462763199,-1.16416369359874 +"Q9W309",-0.238803043580447,18.5557629299153,-4.41243830951804,0.00123913448145321,0.00717665387174982,-1.18113648292178 +"Q9V3V0",0.274452294929976,14.3800942284064,4.40789512945503,0.00124807131371903,0.00720340121551328,-1.18857179933904 +"Q9VNZ3",0.34701219993204,15.080776574784,4.40255309467636,0.00125866662378224,0.00723950320161647,-1.19731780057762 +"Q7JYX5",0.36378295079318,14.711906774532,4.39396818292657,0.00127589304615069,0.00731336632638951,-1.21138048272627 +"Q9VW26",0.172945204647331,17.5431541896136,4.39118953259983,0.00128152179594764,0.0073204738206872,-1.21593406335983 +"P48148",0.247633743666608,20.6198642934485,4.38575661909702,0.00129260312478022,0.00735857342025051,-1.22484014355628 +"P22465",-0.175113275629112,22.7071020438403,-4.37019248870084,0.00132491175384576,0.00749889772755727,-1.25037432155711 +"Q9VVW7",-0.157926992564589,16.6488835524811,-4.36955936687504,0.00132624390265551,0.00749889772755727,-1.25141363893569 +"Q9VUJ1",0.185862077265991,19.9898506885425,4.36697765261756,0.00133169071379534,0.00750425713044131,-1.25565222800984 +"P40304",0.20143707262261,18.7292816502794,4.35480655507405,0.00135768839363984,0.00762499744306821,-1.27564541676434 +"Q7KTG2",0.227521020548849,18.0461492655848,4.3456214370566,0.0013776619261223,0.00771120836500668,-1.29074559392616 +"Q9VK60",-0.153596192952701,21.3633137116365,-4.34023051677963,0.00138952878155556,0.00775161875463104,-1.29961296160431 +"Q9U9P7",-0.208342603393042,16.6266214016737,-4.3325920375611,0.00140652788431278,0.00779647205235166,-1.31218331909281 +"Q94522",-0.171722581742248,23.4943840644114,-4.32962750210027,0.00141318423022764,0.00779647205235166,-1.31706384885534 +"Q9W0J9",-0.190749096474551,18.4365420208165,-4.32872014059584,0.00141522817929968,0.00779647205235166,-1.31855785534885 +"Q9VXN2",-0.362832827443675,18.5033085676865,-4.32770619337661,0.00141751591194029,0.00779647205235166,-1.32022747726366 +"P09040",-0.452959376250632,16.5282924384203,-4.32619192844888,0.0014209397505485,0.00779647205235166,-1.32272118162975 +"Q9VEJ0",-0.168336314168393,22.2287474391098,-4.31129786599221,0.0014550840616331,0.00795764004853773,-1.34726359236602 +"Q9VWI0",-0.195001306271052,21.0152749842171,-4.30902356178828,0.00146037344425878,0.00796046700988122,-1.35101353642572 +"Q7K2Q8",-0.199452658315355,16.2078245572666,-4.30556906539921,0.00146844639148323,0.00797839928662551,-1.3567106058417 +"Q9VF86",0.207471943288812,17.501194695878,4.28508889936221,0.00151728251969429,0.00819628376243865,-1.39051529291768 +"Q9VY05",0.232468935230187,18.2846899264902,4.28407866938121,0.0015197352960733,0.00819628376243865,-1.3921840781996 +"Q9VH81",0.296610540200923,14.342434074437,4.28261756791948,0.00152329014769543,0.00819628376243865,-1.39459786644198 +"Q9VU35",-0.188886270735125,22.7446862718274,-4.23869186378791,0.00163435230058254,0.0087638794039177,-1.46728219572902 +"Q9VJ58",0.181024744852733,17.1917418747813,4.23681376969585,0.00163928679497741,0.0087638794039177,-1.47039493698068 +"Q7JWX3",0.179766668955441,17.90374858627,4.20250711607127,0.0017322350045858,0.00923120762827195,-1.52732639110553 +"Q9W401",-0.144039309620325,24.4977556152842,-4.18517432741851,0.00178128677342505,0.00946237687284389,-1.5561412750886 +"Q7JVI6",0.233360798050835,17.4578400195516,4.17959057402534,0.00179739792752618,0.00951764997813864,-1.56543125341574 +"Q9VL01",-0.207383992158228,20.5381766293535,-4.17250788806474,0.00181805461754161,0.00958153291641924,-1.57722015473087 +"Q9VG81",0.480802078861089,15.4921309799493,4.17077575653007,0.00182314424561289,0.00958153291641924,-1.58010409256227 +"P42325",-0.160398691425602,20.088691882769,-4.16957030668655,0.00182669512435331,0.00958153291641924,-1.58211132331952 +"P40301",0.239337825627278,17.7925402054695,4.15050833667233,0.00188382181413458,0.00985020309083535,-1.61387364651192 +"Q9VXR9",0.223000141216762,15.1341591792751,4.14380339579675,0.00190435926029729,0.00992647264429964,-1.62505550670748 +"Q8MR62",-0.198842223086626,17.7049619113941,-4.13885810376441,0.00191965741087032,0.00997504224713925,-1.63330598994722 +"Q9V931",-0.266520522915261,17.755742770142,-4.13128187573127,0.00194334503232719,0.0100667686767756,-1.64595104418197 +"Q9VZJ2",-0.172174324112802,17.4404222505071,-4.12845263195361,0.00195226937848095,0.0100816883074496,-1.65067479852084 +"Q9V406",-0.221857657405341,17.0459298741558,-4.12604933586554,0.00195988393827,0.01008977286739,-1.65468807499977 +"A1Z7B8",0.202689103429508,16.864358675108,4.12291276729917,0.00196986870480307,0.010109972306497,-1.65992680130578 +"Q7K1S1",0.298407141925473,16.4693342402845,4.11746980767376,0.00198732241085334,0.0101492074294549,-1.66902024307836 +"A8Y535",-0.222513339380889,22.0554719480081,-4.11673758568963,0.00198968275145788,0.0101492074294549,-1.67024379881182 +"Q9W314",-0.202820721300206,16.288782129386,-4.10744876569496,0.00201988223487059,0.0102199122714239,-1.68577065687092 +"Q24439",-0.150841971448386,24.3412478705413,-4.1069220312706,0.00202160908068766,0.0102199122714239,-1.68665140867027 +"Q9VVU1",0.15599628883621,22.2089672753269,4.10682569113031,0.00202192508967019,0.0102199122714239,-1.68681250212806 +"Q9VNC1",0.30511245599598,15.515053486312,4.09650327277006,0.00205608613203838,0.0103474920145233,-1.70407878148397 +"P13677",-0.427249557535948,17.026008086565,-4.09545985707682,0.00205957275109216,0.0103474920145233,-1.70582474137096 +"P08182",-0.173573696600336,19.6935110462622,-4.08844086717978,0.00208318877551004,0.0104347113439962,-1.71757275035924 +"Q7KV34",0.155147495335431,20.849571925552,4.07975961925694,0.00211279108311902,0.0105013436355724,-1.73211027816627 +"Q9VL10",0.245742128855859,16.7200217206071,4.07961209872587,0.00211329791042782,0.0105013436355724,-1.73235738424508 +"Q7KTA1",-0.230744168924026,17.1515878810719,-4.07900687543835,0.00211537857407214,0.0105013436355724,-1.73337119529433 +"Q9VU04",-0.312442127265959,16.6346110872807,-4.07685653674687,0.00212278849540934,0.0105068581909281,-1.7369735494528 +"Q9VMB9",-0.249435196065122,22.5760329363872,-4.07171369370171,0.0021406209811932,0.0105637745462434,-1.7455910951293 +"Q9V9M7",0.277180832993022,18.3743349984906,4.06617386258256,0.00216000582266679,0.0106261060694288,-1.75487699588303 +"Q9VM18",-0.185216103623461,22.9980497113099,-4.06447341177402,0.00216599284388836,0.0106261060694288,-1.75772795543351 +"O77410",0.251044375430528,14.23373745635,4.05633964756642,0.0021948721136946,0.0107180360738648,-1.7713691747499 +"A1ZB71",-0.267822675827347,19.2449502459631,-4.05479156726725,0.00220041420451459,0.0107180360738648,-1.77396626641265 +"Q9VV47",-0.170703423631384,20.1407877216145,-4.05378971787475,0.00220400861710768,0.0107180360738648,-1.7756471241573 +"Q9VH95",-0.150207377271887,20.9853810234146,-4.01945401714265,0.0023309913130753,0.0113025974134,-1.83331733181036 +"Q9VDT1",0.215731378570883,19.0483554172597,4.00907492164907,0.00237086678347035,0.0114626254922566,-1.85077402076555 +"Q9VJE3",-0.228463826603111,15.4137988498868,-4.00594844898038,0.00238301787699436,0.0114880746208861,-1.85603461870915 +"Q9VE75",-0.295224956502617,15.4502342098912,-4.00183576534202,0.00239910127678424,0.0115322793362424,-1.86295612821719 +"Q00174",0.221896889266301,21.9380672001126,3.99945683054374,0.00240845637698887,0.0115439805655673,-1.86696058001559 +"Q94516",-0.14938740018653,23.3801237163897,-3.98692657817253,0.00245836547998879,0.011741048467555,-1.88806214408937 +"M9PF61",-0.15323269910715,22.717507240348,-3.98487821960824,0.00246662666825771,0.011741048467555,-1.89151318361945 +"Q9VZI8",0.205651044098145,15.6370111848588,3.98387378128671,0.00247068825666176,0.011741048467555,-1.89320559784342 +"P55841",0.153883182046055,20.6319627944243,3.97768716112568,0.00249585952340074,0.0118269706961149,-1.90363188123043 +"A0A0B4KI23",-0.198592492230052,20.5451472287763,-3.96449860624355,0.00255041915834086,0.0120512723969194,-1.92587120733009 +"Q9VV75",-0.15108342979034,23.9868962499661,-3.94866634123798,0.00261756755881577,0.0123312023207344,-1.95259116990601 +"Q70PY2",0.43863816291335,17.2750635123791,3.94597035473451,0.0026291848685262,0.0123312023207344,-1.95714360335604 +"O77477",0.250164442795523,16.768155428303,3.94449694780435,0.00263555671618349,0.0123312023207344,-1.95963189201246 +"Q7KMS3",-0.177469378850006,15.6195837876786,-3.94364874406032,0.00263923215138021,0.0123312023207344,-1.96106443359958 +"A1ZB79",-0.16278594198614,20.8182318133719,-3.93869906331542,0.00266078724892447,0.0123971875173353,-1.96942540079576 +"Q9VNW0",-0.41227549895723,14.7561092811315,-3.93356779260967,0.00268332753007778,0.0124673825074366,-1.97809560910898 +"A1ZB23",-0.261325412769125,15.9002223056209,-3.91974619347712,0.00274504047928418,0.0127186875540167,-2.00146227719367 +"Q8MZI3",0.384930252280974,17.6857200273528,3.89733323622373,0.00284828552147343,0.0131604993069742,-2.0393919704722 +"A1Z992",-0.295673309044739,14.3268346501935,-3.89479646675877,0.00286022404147546,0.0131791538706659,-2.04368794472566 +"Q9VTB3",-0.189949029968346,19.7437860661667,-3.89250790902494,0.00287103927230626,0.0131806344367405,-2.04756409113909 +"P54195",0.353564840158082,18.7973970632995,3.89138753514594,0.002876349481399,0.0131806344367405,-2.04946185387158 +"Q9VM58",0.252049536074484,16.4035703440865,3.85979683374738,0.00303037848523731,0.013848414557194,-2.10301979535442 +"Q7JZW0",0.182790281503902,19.7252995947235,3.85455748939289,0.00305674537504531,0.0139307412174196,-2.11191119890811 +"Q9VGP7",0.319720986194623,15.8874410813416,3.8492196893643,0.00308385400623506,0.0139809214422322,-2.12097221926402 +"Q7K5M0",-0.262257470849462,16.7412324973188,-3.84908920099468,0.00308451983857401,0.0139809214422322,-2.12119375773714 +"Q7PL91",-0.278900996510476,18.8981402291428,-3.84661316706785,0.00309718255723604,0.0140002723725467,-2.12539776713253 +"Q7JWD3",-0.287136996036043,17.1384962045599,-3.8423695743935,0.00311901104108886,0.0140608389636114,-2.13260414863953 +"Q9VAU6",-0.222752031122095,13.3547342744031,-3.83122126448982,0.00317712439967128,0.0142842142820801,-2.15154356871911 +"Q9VJI9",-0.300726826254436,17.6911938024145,-3.81524383004218,0.00326238670593359,0.0146140742992195,-2.17870596607555 +"P35381",0.195375189083567,25.5942171798297,3.81420442201461,0.00326801541583265,0.0146140742992195,-2.18047377581681 +"Q9VKR4",0.198102691835718,19.1830725552947,3.81039815491029,0.00328871406344111,0.0146673129888229,-2.186948212131 +"A1Z6R7",-0.198581156022026,17.9415868331853,-3.80241224877006,0.00333258708135413,0.0148233473378632,-2.20053622234939 +"Q24478",-0.207010908318722,17.4737395146761,-3.79053723841625,0.00339895708950015,0.0150783521949103,-2.22075155728239 +"R9PY51",-0.255095440988942,21.5610567005652,-3.78723374378886,0.00341766425210885,0.0151211245955373,-2.22637734862912 +"A8DRW0",-0.232216918512332,21.5202855614131,-3.78291095540052,0.0034423056420111,0.0151898566425252,-2.23374035732294 +"Q9VIQ5",-0.265527688799963,16.6224461526391,-3.77488783010919,0.00348853190585187,0.0153532222136172,-2.24741027048222 +"P20007",0.337944540886763,15.1287700904774,3.76893276229663,0.00352326047934243,0.0154521969241154,-2.25756003488186 +"Q4V5H1",0.251132959132303,14.9561120891565,3.76786105067809,0.00352954857799039,0.0154521969241154,-2.25938695969399 +"Q9VSD6",-0.185632041823384,16.4764034030107,-3.76397643649418,0.00355243904271655,0.0154713971363743,-2.26600976872694 +"Q9VAG9",-0.171790116438617,17.4913894258349,-3.76396865108149,0.00355248507387972,0.0154713971363743,-2.26602304317353 +"Q7K3W2",0.202884879889318,17.5433750969865,3.75971240599727,0.00357774327041348,0.0155408223308586,-2.27328085282944 +"Q9VCE0",-0.318031096093399,15.897136904949,-3.7537134744729,0.00361366107950333,0.0156560693002897,-2.28351280755466 +"M9NDE3",0.157097830450205,16.1425202176639,3.74829523399276,0.00364642465858168,0.0157570889391561,-2.29275680799865 +"A1Z8H6",-0.414863409162805,16.8998555787378,-3.73362461286372,0.0037366972692993,0.016105454897135,-2.31779792842291 +"Q9W3M8",0.155688770131889,18.5426826003717,3.72861556833658,0.00376804924122945,0.01619872715044,-2.32635169547419 +"Q9VXZ0",-0.214026492555185,19.7269814372015,-3.72461472417436,0.0037932873031357,0.0162653039116461,-2.33318520099355 +"P29746",0.164278297223586,21.1952337149088,3.7201967955308,0.00382136076645575,0.0163309932221195,-2.3407325361812 +"Q7K204",-0.3879556775494,14.9645968408066,-3.71912742198722,0.00382818845914192,0.0163309932221195,-2.34255961912091 +"Q9VRP3",0.164410505269323,17.9418438116731,3.71370828288185,0.00386298389899842,0.0164373906722688,-2.35181986531367 +"Q8MLS2",0.141346129305148,17.3656984448703,3.71100206010206,0.00388048308121173,0.0164497325029235,-2.35644511143726 +"Q7JVK6",0.2298013214465,17.3067710508147,3.71016658724595,0.0038859021120231,0.0164497325029235,-2.35787314353924 +"Q9W1R0",0.509819383207589,13.9417218624182,3.7086943871468,0.00389547022701125,0.0164497325029235,-2.36038963106172 +"Q9VQR2",-0.156284161458206,21.3423838796138,-3.69860430277376,0.00396171024620775,0.0166872037643296,-2.37764141036599 +"O97477",0.161407346184252,20.9201240571983,3.69503788590601,0.0039854023925798,0.0167447133270103,-2.38374101318153 +"Q9VCC0",-0.177185558400815,17.5096043400956,-3.69032516454647,0.00401693561761318,0.0168347955029618,-2.39180258182629 +"Q9VH76",-0.148225711844901,19.3588078301365,-3.66974722654523,0.00415769144522088,0.0173810258912993,-2.42702228189191 +"Q7KMQ0",0.118676636807358,20.7970861118416,3.66723733048048,0.00417520664162215,0.0174106116955643,-2.43132013942409 +"Q9VCJ8",0.154806364395085,17.9005664989609,3.66378161039872,0.00419944768989751,0.0174392956938192,-2.43723833084693 +"Q7K0P0",-0.258492100241924,15.2448180052697,-3.662113664827,0.00421120017314327,0.0174392956938192,-2.44009512318204 +"Q7K3V6",0.235369366604147,16.1394091827487,3.66179478140007,0.00421345093801508,0.0174392956938192,-2.44064131685784 +"Q9VUN9",0.167920193322523,16.7705354222863,3.65039294629161,0.00429475429705855,0.0176967813842843,-2.4601754645535 +"Q9VIH9",-0.252015517577416,19.2452833905567,-3.65009780371624,0.00429688037208342,0.0176967813842843,-2.46068123760513 +"A1Z8H1",-0.134762003533584,23.0993501014658,-3.64203394969003,0.00435539338051585,0.0178772886085443,-2.47450225801047 +"Q7JX94",0.526423634869975,12.2905420255327,3.64111084567379,0.00436214416287621,0.0178772886085443,-2.47608469654744 +"Q86BS3",-0.182344936116198,19.0081998515264,-3.63559203804472,0.00440273106557716,0.0179994005328007,-2.48554657749992 +"Q26377",-0.18984101573891,16.7730582797804,-3.63397545712664,0.00441469391356404,0.0180041795790338,-2.48831856609299 +"Q9VFT4",0.21410246739868,15.7368403852488,3.62458398781254,0.00448486181788761,0.0182457305176501,-2.50442583677551 +"A1ZBA5",0.253863369922769,15.5714284400307,3.62203404457646,0.00450411257486371,0.0182701229447251,-2.50880025770296 +"Q9V3B6",-0.237505774695666,13.4943259177498,-3.62089173739074,0.00451276418059157,0.0182701229447251,-2.51076002344681 +"M9PDU4",-0.140597902966707,22.5645412918935,-3.61701303182877,0.00454226954732572,0.0183197037464203,-2.51741505784588 +"P48611",0.242778737547926,20.214541005084,3.61526011339799,0.00455566958665007,0.0183197037464203,-2.52042302014076 +"Q9VFP6",-0.149270201421814,20.2218676071311,-3.61396303745881,0.00456561135864408,0.0183197037464203,-2.52264889906779 +"A1ZBD8",0.384636524382813,14.1585573359741,3.61352903525114,0.00456894290078588,0.0183197037464203,-2.52339370390892 +"P17210",-0.146317250168533,20.8678198178634,-3.60925738143033,0.00460186831191526,0.0183555502905014,-2.53072508265396 +"Q8IRD0",0.218730568039259,17.4674467872905,3.60914854501027,0.00460271041688185,0.0183555502905014,-2.53091189264768 +"A0AQH0",0.200817041361933,16.8835559088093,3.60627680670879,0.00462498786307636,0.0183555502905014,-2.53584130647624 +"Q9VGP6",0.161437932972621,17.9475394593416,3.60539408716497,0.00463185797716998,0.0183555502905014,-2.53735662533013 +"Q9VQI7",-0.146915919713457,19.2104568404491,-3.60525959052547,0.00463290567883758,0.0183555502905014,-2.53758751317038 +"Q9VE50",-0.316000740020236,14.6768074510857,-3.59901353022877,0.00468183282419964,0.0185054434852251,-2.54831129345637 +"A1Z6P3",-0.155350337777755,17.2736383349785,-3.59630808632679,0.00470319125895939,0.018512685143978,-2.55295701277124 +"P13060",0.165323347358221,20.164568083721,3.59597063126486,0.00470586241069945,0.018512685143978,-2.55353651479086 +"Q9VGU6",0.147217755991321,18.5691727391688,3.58981090638007,0.00475489741899466,0.0186615738703132,-2.56411570668001 +"Q9VVL7",-0.161716351957999,23.5033705515209,-3.58151572702288,0.0048217698059749,0.0188796057191693,-2.57836626780422 +"Q9VJ86",0.281406866144897,16.4801297876057,3.57577883779734,0.00486858759894616,0.0190182766160239,-2.58822435985339 +"Q9VDV2",0.326634168332337,14.3545459830234,3.56490079544753,0.00495865867659064,0.0192336328944155,-2.60692237784192 +"Q9VLS9",-0.149854249305694,19.041872108744,-3.56454320183411,0.00496164870834259,0.0192336328944155,-2.60753715886652 +"Q7K0E6",0.163771735244815,16.6806075176996,3.56371760256723,0.0049685591184646,0.0192336328944155,-2.60895657249202 +"Q9W299",0.337259996232127,14.5354473081595,3.56356451377537,0.00496984159322127,0.0192336328944155,-2.60921977527702 +"Q8IP62",0.288690698495909,15.8198727514766,3.55793548381944,0.00501723658113888,0.0193721079105085,-2.6188986361696 +"Q9W403",-0.209063337285578,15.2236035766723,-3.54809940434409,0.00510118013546946,0.0196500215475985,-2.63581582122297 +"Q9VLP3",-0.185172400435157,17.5308983556154,-3.54675391410982,0.00511277539068211,0.0196500215475985,-2.63813038457238 +"Q9VR94",0.288622699034677,16.3106306498486,3.53685946693888,0.00519888651825717,0.0199350407182827,-2.65515438853698 +"Q8IN51",-0.271378941472536,17.1225849871741,-3.52933393322053,0.00526538479183771,0.0201437197999663,-2.66810625398889 +"A1ZBU5",-0.283947607477881,16.7632956673842,-3.52367745522815,0.0053159461785252,0.0202623766355345,-2.67784345175216 +"Q7K738",-0.134898459978459,19.7934597393909,-3.52314893523348,0.00532069602300007,0.0202623766355345,-2.67875334917995 +"Q9W1X5",0.134027599732832,19.4067734607383,3.51613748730536,0.00538412529162899,0.0204572232037293,-2.69082567021815 +"Q9W3T2",-0.139947182715458,16.2986280704607,-3.51157995041064,0.00542577398444148,0.0205686159228372,-2.69867427332174 +"Q95RA9",-0.140629935675463,20.5327349952375,-3.50463800263061,0.005489853488537,0.0207570389103951,-2.71063123988083 +"A1Z8Z7",0.238047896907084,18.8997262300764,3.50350710276711,0.00550036642589606,0.0207570389103951,-2.71257936873544 +"Q95NU8",-0.190671174966603,17.3853793197788,-3.50181580503707,0.0055161277089608,0.0207695282585702,-2.71549298445872 +"Q9GU68",0.118272095338522,22.197832538882,3.49871624539641,0.00554513391236217,0.0208317192923876,-2.72083301521611 +"Q9VVW3",0.194959371696166,16.4638555756651,3.49248633075483,0.00560391223571989,0.0210052260880467,-2.73156763702018 +"P14484",0.211057100390462,19.2562911100107,3.48644849319993,0.00566149271946918,0.0211734750136202,-2.74197318884005 +"Q709R6",-0.269049533856613,15.1697299122323,-3.48452209567431,0.00567999234399811,0.0211844533180509,-2.74529351156316 +"Q9W483",0.272850070741077,15.5110808863967,3.48296557925648,0.0056949855186739,0.0211844533180509,-2.74797644611937 +"Q8SX89",-0.19457752777735,15.5946864154098,-3.48218397992233,0.00570252970012283,0.0211844533180509,-2.74932371804351 +"Q9VMU0",-0.206476280743388,21.1573680104107,-3.45728340894501,0.00594835651141034,0.0220485748022943,-2.79226134556149 +"Q9VF27",-0.124657022229567,22.2673454615467,-3.43609904631125,0.00616609824117308,0.0228049930516113,-2.82881366380366 +"Q9VDH3",0.159284096907744,20.5205581840305,3.43307021951893,0.00619789497427031,0.0228718779139002,-2.83404134973406 +"Q9W127",-0.185681153933341,18.6484909480719,-3.42565070975671,0.00627650162559725,0.0231108271776958,-2.84684892291166 +"P36975",-0.155606566613695,22.3101659333048,-3.41902525633827,0.00634756420197017,0.0233210068037142,-2.85828776102572 +"Q9W1B9",0.227041800869383,20.4905204430389,3.40630696410664,0.00648630979583294,0.0237783840427458,-2.88025092655014 +"O77134",-0.168571352408982,21.71471802904,-3.39964410281228,0.00656023943827098,0.0239966653136754,-2.89175956535495 +"Q9Y136",0.21547632855081,15.2012590599801,3.38132862180433,0.00676796886042167,0.0246951034813047,-2.92340426714128 +"Q9V9X4",-0.151007715577911,18.7369171830487,-3.38021723616543,0.00678078980481868,0.0246951034813047,-2.92532486902229 +"Q7JYH3",-0.196905563824462,19.1274842862416,-3.37770046962444,0.00680991571755366,0.0247471446990839,-2.92967429364683 +"P45888",0.214266218720573,17.1329614684768,3.36538950337568,0.00695425403424597,0.025216729845918,-2.9509530494212 +"Q9VK99",0.172656282679746,20.0271487096242,3.35494940998839,0.00707912279300524,0.025613832578596,-2.96900212698868 +"P21914",-0.144799149577413,22.921784772959,-3.3530425306085,0.0071021779644061,0.0256323141759432,-2.97229916812944 +"Q9W5W8",0.187470862122218,20.676095836201,3.35198767303061,0.00711496490615211,0.0256323141759432,-2.97412309256921 +"Q9W136",-0.11170360810927,18.1844218707138,-3.34790168155392,0.00716471901457907,0.0257559295610299,-2.98118839657257 +"Q9V3G7",0.174317697904257,18.0621341559124,3.34252769893703,0.00723070188390297,0.0259372274029036,-2.99048162341859 +"Q9VQX3",-0.404169406754457,15.3891228446954,-3.3377912387479,0.00728937500794432,0.0260738941551149,-2.99867310943145 +"P48604",-0.13077591643124,20.1329798223979,-3.33693249063079,0.00730006509019105,0.0260738941551149,-3.00015834565632 +"P12370",0.259868211560676,20.7332496911371,3.33292327718061,0.0073501872173688,0.026196821108058,-3.00709271278974 +"Q9W2X6",-0.160268122200581,24.1252262035553,-3.33145409953476,0.00736864292211048,0.0262066021195742,-3.00963393070748 +"Q7K012",0.220066064055651,15.4994444467147,3.32966430533551,0.00739119055174769,0.0262308634900322,-3.01272979851268 +"A1Z7H7",0.122412142977392,17.8594146109394,3.32158251253041,0.00749389031665727,0.0265388727137671,-3.02671026931422 +"Q6NMY2",0.19473375181348,20.0138929550246,3.3188408617475,0.00752906206349956,0.0265976716790442,-3.03145338235937 +"Q7KN94",-0.137752201918751,22.6517101429674,-3.31780574365198,0.00754238531426134,0.0265976716790442,-3.03324421068114 +"Q86BN8",-0.345413355911253,14.1913950473802,-3.31643017497279,0.00756012806928721,0.026603994977998,-3.03562408688875 +"O61443",0.303797186166575,16.5061246716231,3.31425230943433,0.00758830695528697,0.0266469389503551,-3.03939212156676 +"Q9VSK4",-0.145253849704904,19.714445794296,-3.31181242018357,0.00762000425685741,0.0267020317236096,-3.04361364320327 +"Q9U6R9",-0.131865148143959,20.615722205173,-3.30213359629828,0.00774709007334941,0.0270904533382533,-3.06036152719321 +"Q8MSS7",0.554892322146088,14.0723467041167,3.28598539539527,0.00796398499364349,0.0277587159566379,-3.08830875246233 +"Q0E8P5",-0.13952586667882,17.7289267859703,-3.28543563993668,0.00797147778371077,0.0277587159566379,-3.089260301393 +"Q9V3W0",-0.165481523797396,20.9079599997511,-3.27743625896077,0.00808132576808213,0.0280826070440854,-3.10310682143169 +"Q9VI64",-0.123671664799037,20.9078606325836,-3.26553908329232,0.00824757783055422,0.0286007480693647,-3.12370259993486 +"M9PFN0",-0.167281054457483,16.6947854213985,-3.26140321258298,0.00830619085961621,0.0287442455473856,-3.13086302935265 +"Q9V3E3",0.301623200119597,15.0026620095224,3.25622761834064,0.00838014069090896,0.0289401131934496,-3.13982395643508 +"P61851",-0.120115697341721,23.5837516040717,-3.24784298391274,0.00850137691327155,0.0292981336597871,-3.15434190445748 +"Q9VDI5",0.159544503649261,16.6311109382236,3.2431882464257,0.00856945560943414,0.0294718597041982,-3.16240203304837 +"Q9VWD0",-0.150255191183156,18.2050202454115,-3.23444117273809,0.00869890222175306,0.0298554915758932,-3.17754928831232 +"Q9VMI3",0.167486379045926,20.0989707894151,3.23160606000882,0.00874128697636183,0.0299393566254036,-3.18245905962313 +"Q9VVL8",-0.179552948879159,15.9257922612402,-3.22805698186934,0.00879464367148599,0.030060380418112,-3.1886054016263 +"Q9VSL5",0.167949966347702,17.5091643042536,3.2245063799941,0.00884835697805971,0.0301821256429521,-3.19475453656074 +"Q9VVA6",-0.171018432415664,19.2611954909413,-3.21483223599678,0.00899641726933047,0.030595274490481,-3.21150949343946 +"P00334",-0.138476219188934,25.205458996531,-3.2142011885951,0.00900616293454806,0.030595274490481,-3.21260245864244 +"Q7K1Z5",-0.2395398762109,16.1231883511383,-3.20324664780712,0.00917707281790155,0.0311125151631296,-3.23157616008726 +"M9PHA0",-0.168297861763325,17.4597850726352,-3.19958543726615,0.00923493087047479,0.0312451616469614,-3.2379177488989 +"Q9W1X4",0.230004102656466,15.0759947573471,3.19511289477463,0.00930611691138335,0.031422273295926,-3.24566478110705 +"Q9V420",0.173515785576305,17.5192363649313,3.18980540413057,0.00939132063330154,0.0316459046794888,-3.25485822460713 +"Q9VXC1",-0.116907040254294,18.3419854825272,-3.18771839346081,0.00942504250877696,0.031695505856129,-3.25847331471094 +"Q9TVP3",-0.164030387181526,22.9322496698029,-3.18087245822774,0.0095365304132321,0.031965925488167,-3.27033190176046 +"P48609",0.14350174862404,16.9832262476158,3.17896180898385,0.0095678857749335,0.031965925488167,-3.27364158192524 +"Q9W1I8",-0.128907539023114,17.9917901196294,-3.17711565740259,0.00959828275201801,0.031965925488167,-3.27683955077628 +"Q9W3L4",-0.215403461896168,17.5834798481119,-3.17668156037661,0.00960544449888746,0.031965925488167,-3.27759151073154 +"Q9VXE8",-0.222231069790125,16.2542674699572,-3.17590160369739,0.00961832597085247,0.031965925488167,-3.27894258401371 +"Q9VBS7",0.13135545994864,19.8240097463065,3.17577367940676,0.00962044040471213,0.031965925488167,-3.27916417996565 +"Q9VYY3",0.132037680559403,17.505449745367,3.17328613397618,0.00966165106182252,0.0320390337398011,-3.28347322327065 +"Q9VSU6",-0.151361177739819,21.5985284624957,-3.17001199034368,0.0097161681933975,0.0321125880090555,-3.28914487546323 +"Q9W265",0.176984946565856,17.0413490066314,3.16964273389987,0.00972233629770566,0.0321125880090555,-3.28978452348697 +"Q9VMT5",0.180928907947663,16.3998077042656,3.15792776049854,0.00992011489419845,0.0326837024018238,-3.31007800784475 +"Q9U9Q2",-0.129990515266849,15.6265036729973,-3.15708883814077,0.00993443472285652,0.0326837024018238,-3.31153125107006 +"Q9VCW2",0.282292394496775,15.3549830949299,3.14881787215797,0.0100767490933653,0.0330866485979003,-3.32585881152493 +"Q9VII1",-0.175911839345446,19.4019412509131,-3.13986421942666,0.0102331572025684,0.0335341968838588,-3.34136885233809 +"Q7KLE5",-0.130398479472401,21.4514752548699,-3.13387136426019,0.0103392259761063,0.0338153508395006,-3.35174989511096 +"Q9VD64",-0.158354299263443,15.7500442822161,-3.12263916603272,0.0105410574679293,0.0344079918914012,-3.37120628227019 +"Q9V3V6",0.11535411758625,21.5832902135523,3.11950247999417,0.0105981350034851,0.0345267366910414,-3.37663951256825 +"Q9W0A8",0.160047383456604,18.9119426254386,3.11035810184377,0.010766337679759,0.0349287647574129,-3.39247859969226 +"Q9V3H2",0.190969882001681,18.4135800907668,3.11016296747158,0.0107699565008095,0.0349287647574129,-3.39281658701278 +"Q9VJD4",-0.119956371735519,20.7859898639028,-3.10938691817527,0.0107843608213835,0.0349287647574129,-3.39416075916854 +"Q9VLP2",-0.143327647683719,19.367404950131,-3.10347611600595,0.0108947178556148,0.0352178088821038,-3.4043985072803 +"Q9VHG6",-0.200809727814267,15.672719462445,-3.10192713503458,0.0109238277449257,0.0352436067283096,-3.40708134976119 +"Q9W425",-0.385222732754725,14.0370976998163,-3.10055063568255,0.0109497626839379,0.0352590813837999,-3.40946543292629 +"Q9VWL4",-0.15645109233018,16.2390719901914,-3.09644978506276,0.0110274001116016,0.0354406616303495,-3.41656794704937 +"Q9VSX2",-0.157133321508354,17.9776076170942,-3.09326348796778,0.0110881100453664,0.0355672452993675,-3.4220863613645 +"Q9VM11",0.177465316465552,17.7951952421133,3.08917103183308,0.0111665850330333,0.0356821697053258,-3.42917399575609 +"Q9V3Y7",-0.31007758984612,19.6338571286627,-3.08916390561959,0.0111667221739689,0.0356821697053258,-3.42918633730886 +"Q8SZK5",-0.516435491642008,15.5690262492624,-3.0824217526183,0.0112972433156469,0.0360302138632868,-3.44086245947319 +"Q9V3L6",0.259278102285151,15.793159514967,3.0795013818329,0.0113542596697489,0.036142948719735,-3.44591979306987 +"Q9W022",-0.159674497467154,21.1946251549918,-3.07581944971512,0.0114265620719257,0.0363038200685181,-3.45229578062664 +"Q9VZ58",0.193927875638099,18.1201971310883,3.07009023867668,0.0115399999089453,0.0364973866373055,-3.46221662361994 +"P20348",-0.224948240709328,17.4943805435423,-3.07000081588005,0.0115417795237324,0.0364973866373055,-3.46237146622738 +"Q9VN50",0.226117168093566,17.8485414752068,3.06943082333723,0.011553129583032,0.0364973866373055,-3.46335845011134 +"Q9VN01",0.195421260741554,15.9963390789222,3.06143589196726,0.0117135315237329,0.036916673983857,-3.47720168591114 +"P06002",-0.392528019038796,16.6984895206547,-3.06061551917001,0.0117301182322807,0.036916673983857,-3.47862209982865 +"P41094",0.117072667591227,21.1900374089588,3.05679613133944,0.0118076555190536,0.0370907145118295,-3.48523492195117 +"Q9V3Z2",0.134847433275512,16.1492699041948,3.05520086850772,0.0118401949970391,0.0371230173967315,-3.4879968521378 +"Q9V3Z9",0.140032609628442,21.7448785920388,3.05008718403369,0.0119451174751081,0.0373817184774489,-3.49685000880679 +"Q24185",-0.139348583673371,18.7226106587089,-3.04572009516491,0.0120354692311562,0.0375939375984429,-3.50441019439839 +"Q9VHD3",0.117526044703343,15.6405995926894,3.04449239649122,0.0120609942337732,0.0376000713637718,-3.50653548185233 +"A1ZB68",-0.15202632209024,19.3780462076846,-3.04345924985567,0.0120825169370394,0.0376000713637718,-3.50832395267797 +"Q9VNA5",0.216549210917567,17.3061510904575,3.04150616303683,0.0121233106846321,0.0376567639142762,-3.51170486118012 +"Q0KI81",-0.200103041537298,15.6247414000698,-3.03805678498997,0.012195699303625,0.0378112015584508,-3.51767573447955 +"Q95RG8",0.417779220036577,13.33556278473,3.03606495871563,0.0122376995818965,0.0378710257933271,-3.521123464649 +"Q8IPG8",0.294683463684663,15.8996950726651,3.03401275579993,0.0122811266652174,0.0379350356992271,-3.52467560835606 +"Q9VA32",0.227664329655973,17.2144298288652,3.03088080429056,0.0123477044475104,0.0379622132086895,-3.53009649211715 +"Q9VPZ5",-0.124167719509874,18.4097192194926,-3.03073345078065,0.0123508458431586,0.0379622132086895,-3.53035153065715 +"Q9VIV6",0.591132614740927,14.7645734609891,3.03038852074092,0.0123582025013899,0.0379622132086895,-3.53094853139836 +"Q7K2L7",-0.215889601543985,18.3857853767815,-3.02812571936331,0.012406573937,0.0380407450862428,-3.53486488957655 +"Q8I941",-0.132808316834872,19.0576005037959,-3.01759381972742,0.0126342542033178,0.0386068994394849,-3.55309136083432 +"Q9VSL4",-0.159640424658672,20.9450271905823,-3.01744460473277,0.0126375102481767,0.0386068994394849,-3.55334957122792 +"Q9VF24",0.142369520168234,16.0603536342658,3.01036668071687,0.0127929410331089,0.0390102845397177,-3.56559693531614 +"P35220",-0.106737457079511,19.3902532606664,-3.00777419709539,0.0128503559586346,0.0391138571879607,-3.57008252078933 +"Q9VHN6",0.244104594567458,15.0018577241448,3.00142285312568,0.0129921243691813,0.0394733396134689,-3.58107097070652 +"Q494G8",-0.173033277345622,15.1221226754694,-2.99939307490312,0.0130377647481683,0.0395399847271723,-3.58458243548267 +"Q9VAN0",0.146911875892748,20.4203511681605,2.99282124691882,0.0131866533258608,0.0399189432804643,-3.59595066721948 +"Q9VZD9",0.333377441345453,14.400322385628,2.98654345317035,0.0133304901112439,0.0402812635970196,-3.6068089919319 +"Q9VZF9",-0.153348843922142,19.1541645894424,-2.98229978477847,0.0134286208307911,0.0405044114751528,-3.61414828009323 +"Q9VZ64",-0.155761178310044,19.4579614242135,-2.98013015967984,0.0134790737779406,0.0405832040823192,-3.61790034292672 +"Q8SYQ4",-0.139880898799262,21.0323246279439,-2.9779589865753,0.0135297549946102,0.0406623987946124,-3.62165492145712 +"Q9VQM2",-0.156003454316224,20.1229383300911,-2.9700776682788,0.0137153546067653,0.0411460638202958,-3.63528258193627 +"Q8SX68",-0.182700152464569,17.5908799552316,-2.96704032410542,0.0137875684759893,0.0412884456336627,-3.64053388471076 +"Q9V3P3",0.121684874335873,19.400048149005,2.95375810085473,0.0141079077557963,0.0421720253345307,-3.66349360053428 +"Q9VRP4",0.305357059886484,14.3316507082212,2.95105313048186,0.0141740636808683,0.0422797596976634,-3.66816858075414 +"Q9VU68",-0.121375141473209,19.1428546115085,-2.95021426964886,0.01419464354358,0.0422797596976634,-3.66961831785505 +"Q9VBV5",-0.132251922074794,17.2230439924558,-2.94144074729027,0.0144117052187589,0.0428497759445452,-3.68477917037076 +"Q7K188",-0.172414158844823,22.0320236249183,-2.9376777541075,0.0145058295652475,0.0430528891723003,-3.69128071765728 +"Q9VJ80",0.197152229719123,16.4427565795115,2.92806786988249,0.0147490334786619,0.0436969588675099,-3.70788147811441 +"Q9VN91",0.169753712799469,19.5804282233065,2.92150850936118,0.014917398421149,0.0441174123519087,-3.71921016411655 +"A8DYP0",-0.377223767032293,15.3860588990668,-2.91861114825354,0.0149923846482289,0.0442244572651647,-3.7242135651751 +"P07668",-0.318482123066055,14.6935952294134,-2.91806275321739,0.0150066203909372,0.0442244572651647,-3.72516053407941 +"P54622",0.197605761751564,17.8432193096859,2.91216923907793,0.0151604742129988,0.0445533870165718,-3.73533654755453 +"Q9VRR3",-0.131369306565379,19.81374158692,-2.91174323081812,0.0151716569696719,0.0445533870165718,-3.73607204782394 +"M9NEW0",-0.155875161293139,18.3485185226404,-2.90890035120744,0.0152464963987418,0.0446944745045717,-3.740980031129 +"Q9VJZ6",-0.165974027249835,19.7710720341031,-2.89288345180378,0.0156751642152031,0.0458704805455418,-3.76862416878856 +"Q8SX57",-0.108629402819311,17.973793695599,-2.885876880625,0.0158664887505024,0.0462860321642684,-3.78071282401184 +"Q9V3I0",0.308880542450574,16.3042814249873,2.88520076132476,0.0158850753302392,0.0462860321642684,-3.78187921265885 +"Q9VLS4",-0.164150701061864,20.6126961650203,-2.88464326306455,0.0159004175240562,0.0462860321642684,-3.78284094659128 +"Q9W229",0.170830007007396,19.1350299285641,2.88182551017391,0.0159781902228146,0.0464313959784927,-3.78770155757379 +"Q9VSL2",-0.119346584607062,20.4871469776389,-2.87846638284207,0.0160714067677771,0.0466210547628734,-3.7934954588082 +"Q95RQ1",0.636405896617436,12.0668652736604,2.86563368518452,0.0164325928262055,0.0475128896827266,-3.81562365467422 +"Q9VKC8",0.148224919883983,17.646268161561,2.86552053091758,0.0164358137571542,0.0475128896827266,-3.8158187306194 +"Q8IQW5",-0.13074661780659,21.9315195527309,-2.8588031426496,0.0166281679156769,0.0479857856113305,-3.8273980135805 +"Q7JR58",-0.136878970525434,22.8555807436537,-2.85751881548528,0.0166652023757763,0.0480095985540499,-3.82961159669861 +"Q9VAF5",0.131324033965607,16.0042141074372,2.85526654651436,0.0167303487914085,0.0480146251805654,-3.83349321727055 +"Q8MT58",0.118581016926051,21.5981769766415,2.85289652434346,0.016799178129298,0.0480146251805654,-3.83757743828544 +"Q9VVG0",0.111458213771567,18.0645139256447,2.8524812869802,0.0168112666252157,0.0480146251805654,-3.83829297417223 +"Q9VPC1",-0.170079500973657,16.1561498197639,-2.85183816811295,0.0168300065549462,0.0480146251805654,-3.83940117358276 +"Q9VRQ9",0.145482051529862,14.6987287678438,2.85091545942765,0.0168569302323805,0.0480146251805654,-3.84099110692063 +"O46106",-0.133621534928796,17.0170521734791,-2.85077660562785,0.0168609855935497,0.0480146251805654,-3.84123036338506 +"Q9W2M0",-0.132140269366676,17.8103476799311,-2.85052120255082,0.0168684474555224,0.0480146251805654,-3.84167044063084 +"A1Z9I0",-0.12449765645465,19.4427048213335,-2.84740661774218,0.0169597111422551,0.0481921604519277,-3.84703675532566 +"Q9VB46",0.215371841454878,15.1609683871979,2.8413344777283,0.0171390687212896,0.0486189908624338,-3.85749704712782 +"Q9W140",-0.317680470096871,13.9559224845882,-2.83693910400185,0.0172700881352907,0.0489074821895837,-3.86506733070879 +"D0UGE6",-0.260342662042577,15.2920659498837,-2.82952828725065,0.0174932790027963,0.0494555752146852,-3.87782829996641 +"Q9VJD0",0.211274186505474,16.0763308983638,2.82523689628662,0.0176238463548819,0.0497403988493114,-3.88521611287819 +"Q9VSY4",-0.102112980644709,20.4278142645296,-2.8224343773009,0.0177096426052338,0.0498981146377195,-3.89004008558349 +"Q9V419",0.176191501091864,16.3801488219581,2.81550061666407,0.0179237213389128,0.0504161335468912,-3.90197280120745 +"Q9VP55",0.179551605735007,17.1141602092794,2.79325789548018,0.018628167341427,0.0523093992011787,-3.94022809997264 +"Q9VVH3",-0.131220895573829,19.9078193306557,-2.77699855880732,0.0191606382828485,0.053714192698809,-3.9681687374745 +"Q9VCT4",0.322488925477685,13.3554192826763,2.77524572733382,0.0192189451153583,0.0537872490812376,-3.97117961338834 +"P92177",-0.123866027019691,24.1779886226673,-2.77361595159892,0.0192733181779532,0.0538490698841306,-3.97397889047146 +"Q8I725",0.151748131698657,18.90022538463,2.76614849057388,0.0195244285861602,0.0544594429460122,-3.98680210060014 +"A0A0B4KGY6",0.135621454402813,21.7639010724704,2.76253537634741,0.0196471023010394,0.0546753549188331,-3.99300492065033 +"Q9VVT6",-0.111967304390269,20.5162392948745,-2.76193990793964,0.0196673938556953,0.0546753549188331,-3.99402708684678 +"Q9VFJ2",0.243544521267179,13.9112292591442,2.75133689951145,0.0200322441881551,0.0555969772143807,-4.01222288754602 +"Q9VBT2",0.599683257196203,12.8326485584947,2.74729421964356,0.0201731312488289,0.0558949882442635,-4.01915796157962 +"Q9VH72",-0.572468400497534,18.6944157827014,-2.74462358755444,0.0202667462425714,0.0560612483127847,-4.02373854783053 +"Q9VYF0",0.189810365637978,16.1730273187074,2.74077141760056,0.0204025447597394,0.0562532279954716,-4.03034455533875 +"Q9W4Y1",-0.148025899151191,17.5790132835577,-2.74074161596125,0.0204035988832496,0.0562532279954716,-4.03039565638917 +"Q9VVH5",-0.133660644360951,22.5625631567724,-2.70113354637849,0.0218538452216124,0.0601138400127497,-4.0982387417851 +"Q9VC48",0.141539918047386,18.4137355498786,2.70055011855178,0.0218759597648316,0.0601138400127497,-4.09923693933153 +"Q9W4Z2",0.315100856164051,13.8309472739698,2.68982182918998,0.0222866156145995,0.0610780921604468,-4.11758603729653 +"Q9VYV4",-0.16631456781443,15.5615416931137,-2.68947304159605,0.0223000947995876,0.0610780921604468,-4.11818238790486 +"Q9VVU2",0.129024244584397,20.0929450560278,2.68437386150267,0.0224980880013036,0.0614364410821206,-4.12689943419252 +"Q9VV72",0.115357303896172,19.3998564762219,2.68420702291671,0.022504595624206,0.0614364410821206,-4.12718459899043 +"Q4V5I9",-0.193474036417891,16.0053998890226,-2.68134059710363,0.0226166956724774,0.0616415823230267,-4.13208351226764 +"A1Z843",0.127594362831765,17.4886573054546,2.67524760895271,0.0228568331457837,0.0621662071646629,-4.14249395490244 +"Q9V3U6",0.1910784987572,21.1093752964266,2.67456929353577,0.0228837237404694,0.0621662071646629,-4.14365267610629 +"Q9W158",0.144788903937238,17.0014845355471,2.67192499716381,0.0229888535394391,0.062251260482702,-4.14816928085778 +"Q9V3W2",-0.135586604434703,21.5580358029291,-2.67190440442531,0.0229896741350986,0.062251260482702,-4.14820445144487 +"Q9W236",-0.131669096682096,16.5541939228873,-2.66889601051307,0.0231098691731802,0.0624753027242537,-4.1533420313601 +"Q9W1G0",-0.105801369833852,21.7951866620571,-2.66542831154552,0.0232491920258748,0.0627502464387688,-4.15926276862061 +"Q9VW00",-0.178997212157885,15.7867579748493,-2.65938487829863,0.0234940038156973,0.0633085595550616,-4.16957815025496 +"Q9W4X7",0.124555671808121,19.1490467928292,2.65746966582081,0.0235721211118052,0.0633264812307858,-4.1728463328023 +"Q9V6U9",-0.133401039792627,21.9029067226191,-2.65696389144846,0.0235927936708938,0.0633264812307858,-4.1737093347631 +"Q9VMF0",-0.153917297773697,13.7866576497953,-2.65643204976083,0.0236145511544058,0.0633264812307858,-4.17461678447416 +"Q961Q8",0.269958506924787,15.3995501851485,2.65423908982883,0.0237044757132335,0.0633929301013089,-4.17835816595374 +"Q9VDC6",0.246941843594069,16.9158321893537,2.65397468868777,0.0237153407573242,0.0633929301013089,-4.1788092209051 +"Q9VGF7",-0.120656248167062,20.0379004316469,-2.64783663744363,0.0239689699876867,0.0639683871031382,-4.18927820078295 +"Q9VRL0",-0.144127812943989,22.7783865413358,-2.64630747716608,0.0240325750663369,0.0640356792502396,-4.19188564860985 +"Q7K1W5",-0.0935553107683766,19.8271897995959,-2.64264597822731,0.0241855576646856,0.064203973216875,-4.19812796135941 +"Q94529",-0.111931337975026,19.6532605551803,-2.64250813736346,0.024191335736565,0.064203973216875,-4.19836292935787 +"Q9VJ22",0.574157495402437,13.1132308901598,2.64203425723099,0.0242112105236297,0.064203973216875,-4.19917070397865 +"Q9VRP2",0.106100243965951,20.4178529289917,2.63775067719224,0.0243916047981771,0.0645796774656499,-4.20647129625496 +"O46098",-0.14237727855323,18.0424649685857,-2.63660554936704,0.0244400555820501,0.0646054084165762,-4.20842259760576 +"Q9W0X2",-0.176087524691248,16.0483603597885,-2.62839280752902,0.0247903554193656,0.0654277101890853,-4.2224125963572 +"Q7JWQ7",0.190380478799714,14.4344496642639,2.62149916648296,0.0250882409216963,0.0661092983529059,-4.23414934377508 +"P35992",0.137762037387189,15.8472117383929,2.61552275333066,0.0253493679090011,0.0666920278741544,-4.24431979173402 +"Q9Y162",-0.128872090291232,20.2159846943879,-2.60858884556655,0.0256557148830094,0.0673917046060782,-4.25611414502507 +"Q9VXQ5",0.0990696092735774,20.3486265476028,2.60189770764736,0.0259548198088414,0.0680701878005464,-4.26748984379433 +"P36241",0.121696234377762,19.84981781317,2.58899606373974,0.0265413453775867,0.0694991586967263,-4.28940796018532 +"Q9W1V3",0.143555684967909,16.3461163048003,2.58746734074356,0.0266117083523609,0.069574184219025,-4.29200361828552 +"Q9VLB1",0.199997585579565,16.6902531921331,2.5813892093869,0.0268933020812414,0.0702003566064328,-4.30232078769534 +"Q9VKY3",0.112255347213154,18.7400257728273,2.57575640197725,0.027156899721008,0.0707776698978772,-4.31187766525234 +"O01666",0.112629764478783,22.6297958677089,2.56974015124737,0.0274412682983091,0.0714072317029323,-4.32208038827378 +"Q9VQB4",-0.0999993072561018,21.792366390834,-2.56874055279242,0.0274888009015242,0.0714195014076983,-4.3237750911816 +"Q95RS6",0.122832966634888,17.1035404425473,2.56405538438461,0.0277126772767367,0.0718891845996841,-4.33171642330565 +"Q9VMH9",0.109996516698725,20.0297063244427,2.55898822229335,0.0279568385951764,0.0724099484111091,-4.34030181870288 +"Q9XZ19",-0.152028487004163,16.1242516033745,-2.55670530838746,0.0280675352540434,0.0725577657359359,-4.34416863698806 +"Q9V9A7",0.553870469291105,16.0258458868216,2.55601877845435,0.0281009092718313,0.0725577657359359,-4.34533134418781 +"B7Z0C9",-0.198559179300739,15.9953493629152,-2.54406042058869,0.0286885725009674,0.0739606474986301,-4.36557331586868 +"Q9VVC8",-0.101410556935798,16.6464966408648,-2.53539587375111,0.0291219441102575,0.0749620413208479,-4.38022699919844 +"Q7KSQ0",0.133304143861277,20.8420983461984,2.52979639677044,0.0294054451132533,0.0755751655607189,-4.38969112272693 +"Q9VN73",0.113017639092259,18.3587561219203,2.5285964492342,0.0294665520631685,0.0756157059097924,-4.39171864686397 +"Q9VU70",-0.354254373266816,14.7984382872286,-2.52642688091259,0.0295773551105201,0.0757119252561929,-4.39538397360791 +"Q9VJN0",-0.222277534922263,17.5641247858464,-2.52608546203079,0.0295948292967852,0.0757119252561929,-4.39596071188451 +"Q9W289",-0.144934662408449,17.4894702995801,-2.52390979562788,0.0297064218966351,0.0758810286731811,-4.39963552405287 +"Q7KMP8",0.149150907103788,19.1886308254548,2.52125588727232,0.0298431065708502,0.0761136112540951,-4.40411714952821 +"Q9VKC7",0.315375991005357,13.7385591135474,2.5191079423181,0.0299541868458823,0.0762802803953155,-4.40774358259167 +"Q6IGM9",-0.542998986007357,14.8786523123864,-2.51786779821632,0.0300185061748237,0.0763275431396433,-4.40983703305857 +"Q9VY42",0.127163384749997,15.1635186768384,2.51667705566046,0.0300803915523295,0.0763684826625351,-4.41184687045198 +"Q9VVB4",-0.156140183832145,16.100091598022,-2.51551491023187,0.0301409120464821,0.0764058378321158,-4.41380823103796 +"A1Z6V5",-0.127418213454835,20.1211593081969,-2.51447180842749,0.0301953354501246,0.0764276472394656,-4.41556850542838 +"O97418",-0.109696936404085,21.0175986213052,-2.51250534272847,0.0302981987382727,0.0765234453466046,-4.41888653916684 +"Q8MKN0",0.183548675225321,16.599865847244,2.5119952302662,0.0303249384736844,0.0765234453466046,-4.41974715925319 +"Q9V8Y2",0.139564227837667,19.8993720698676,2.50922737287596,0.0304704338674343,0.0767744466629612,-4.42441616412915 +"Q7KN75",0.131018883029672,19.3224921961056,2.50133116312927,0.0308892998094734,0.0777124465794895,-4.43772948638074 +"O46067",-0.101682874613601,19.7682448486216,-2.49926435553327,0.0309998705708111,0.0778731688435435,-4.44121259648431 +"P08985",-0.132293269906789,20.6730399491593,-2.49238455118233,0.0313707456082035,0.0786558108853768,-4.45280199857294 +"Q9VZD8",-0.12821106367948,13.7295135643944,-2.49173958733821,0.0314057374398447,0.0786558108853768,-4.45388808915114 +"Q9V7D2",-0.142359417542309,21.3962266095718,-2.4805789334122,0.032017368961046,0.0800674234288226,-4.472671534384 +"Q9VNI4",-0.160301802801698,16.539444444272,-2.47567885705366,0.0322895947507793,0.0805411363669977,-4.48091199075253 +"Q9VZJ8",0.283289192559598,14.7856866804976,2.47543199354074,0.0323033694421592,0.0805411363669977,-4.48132703660947 +"Q9VWF0",-0.183956639965867,16.4988725008125,-2.46897400950067,0.032665777625909,0.0813231598209198,-4.4921811100475 +"Q8SYQ8",-0.212256519735714,16.0712838826449,-2.46718232384281,0.0327670296766781,0.081405636386211,-4.49519120481353 +"Q7KN90",-0.0912804381013252,17.3137817535752,-2.46666158868076,0.0327965153786174,0.081405636386211,-4.49606595739362 +"Q0E8V7",-0.162514815329395,19.7828727176982,-2.45848094001279,0.033263167533855,0.0824412532637,-4.50980215563611 +"Q9VGT8",0.13966085138337,15.2910497028195,2.45606732268208,0.0334020906465919,0.082662740650616,-4.51385271280003 +"O76742",0.137841312862349,17.9096747290843,2.45307626070922,0.0335750413047429,0.0829676576241647,-4.51887096085046 +"Q9VD29",-0.139440856213255,20.7618293288761,-2.45052345117178,0.0337233464927891,0.08321086087274,-4.52315271544052 +"Q9VFF0",0.167418438242777,23.610212242945,2.44308329436733,0.0341592599411723,0.0841619580234495,-4.53562543707389 +"Q9VZG0",0.0952727852030826,21.6491495802208,2.43585846971978,0.034587847101124,0.0850922256116149,-4.54772789891572 +"Q9VCD9",-0.228350291494195,18.5313389090041,-2.42087297805085,0.0354936881780264,0.0871921529910869,-4.57280075871938 +"Q7KY04",0.159400836841641,13.9974073359323,2.41913489016516,0.03560024475289,0.0872629591526883,-4.57570619896806 +"Q9I7T7",0.182881212245034,14.4947377761041,2.41869694099833,0.0356271433950724,0.0872629591526883,-4.57643820098744 +"Q9VW57",0.141516851384775,16.5419271413126,2.40888827426945,0.036234828878921,0.0886212530352495,-4.59282346984422 +"Q7KLW9",0.136301534720594,17.1689296257497,2.40601722607634,0.0364146132659705,0.0889305635836586,-4.5976161492838 +"Q9NK57",-0.141909450372111,15.6088987914084,-2.39626330024215,0.0370319448762291,0.0903059708385237,-4.61388694311177 +"Q8MKK0",-0.303475615449456,15.9297062967274,-2.38902707203485,0.0374965306426641,0.0913054206014069,-4.62594621467936 +"Q9VFV9",-0.0979805387452259,21.3903294678431,-2.38400848038459,0.0378220781212108,0.0918612474548209,-4.63430384729424 +"Q9W3K9",0.127685112848322,19.2503969183469,2.38381109809674,0.037834938250277,0.0918612474548209,-4.63463245500863 +"Q7KUA4",-0.0942624169607456,18.8290473055139,-2.382731714972,0.0379053393193425,0.0918984098614292,-4.63642930907186 +"Q9V400",-0.231533906453922,14.2942808943639,-2.37721142047595,0.038267396939688,0.0926415356972417,-4.64561541173285 +"Q9Y171",0.404445211555512,15.0372266751598,2.36910770364412,0.0388050155192795,0.0938069070813886,-4.65908961525569 +"Q9W227",-0.078702478026635,22.0050441178417,-2.36714003533081,0.038936662977123,0.0939889346538946,-4.66235932639094 +"A0A0B4LFA6",0.12640424311823,19.5101335294313,2.3552427452181,0.0397419831681362,0.0957942600064324,-4.68211268888018 +"Q9VYV3",0.0998793322470384,20.5006004152391,2.35409218597262,0.039820719388717,0.0958455410395094,-4.68402146843671 +"Q9W260",0.16554614742158,17.3449281669426,2.34920297598066,0.0401570013089357,0.096515674615713,-4.69212965130386 +"Q8T3L6",-0.116290562869104,17.4927006860345,-2.34106747108205,0.0407227047558769,0.0977344914141044,-4.70561049825173 +"Q9V9S8",0.140737838481446,19.9356788993537,2.33669289795991,0.0410300909675954,0.0982188451509491,-4.71285363314274 +"Q7JZV0",-0.169778182363173,15.0888844868392,-2.33651998540818,0.041042287212357,0.0982188451509491,-4.71313984804826 +"Q9VZZ5",-0.151049538349419,18.4932303163811,-2.33479115171586,0.0411644231867844,0.0983699969563844,-4.71600116792349 +"Q9VEC8",-0.107341105879863,16.5504694152478,-2.32996207130925,0.0415074567931808,0.0990478368111954,-4.72399022942244 +"Q9VWP4",0.201941431564302,15.1202250804107,2.32826072428379,0.0416289729685665,0.0991692255662092,-4.72680369912464 +"O77263",-0.136593059532304,15.5725073927185,-2.32758635466455,0.0416772344855592,0.0991692255662092,-4.72791871448347 +"Q9U616",-0.172435672026545,19.7214162740006,-2.32429704263,0.0419134161794378,0.0994944174054668,-4.7333559311899 +"Q9VF39",-0.242317215950257,16.02833649669,-2.32402234898518,0.0419331987026638,0.0994944174054668,-4.73380989357073 +"Q9VD68",0.137626523868464,14.807542698942,2.32243055990286,0.0420480128559176,0.0995373998818658,-4.73644018629889 +"Q59E14",0.217650743058103,14.558861429415,2.32211702757015,0.0420706636191339,0.0995373998818658,-4.73695820691 +"Q9W461",-0.17472020292551,16.3556724529583,-2.32113441795013,0.0421417279029243,0.0995643089831129,-4.73858154515385 +"Q9W1X8",0.113488143481565,16.108538355978,2.31486273777362,0.0425980640097075,0.100500100096453,-4.74893786918168 +"Q9VSN9",0.172517294064189,16.4692218799586,2.31059568076018,0.0429112808451173,0.101096068431717,-4.75597909821635 +"P19107",-0.0933619950893494,24.0080751064186,-2.30878322850271,0.0430449967448895,0.101268060042984,-4.75896868604167 +"Q9VZE4",0.126035317908752,17.6107197443444,2.30789967549754,0.043110328528026,0.101278912654574,-4.76042581942432 +"Q9Y0Y5",0.116082144498588,18.6116459324699,2.30535446194123,0.0432990654316514,0.101473472543754,-4.76462235954144 +"Q7K3J0",0.0985288936019657,20.3051725956809,2.30514254964365,0.0433148156181972,0.101473472543754,-4.76497169534009 +"Q9VT75",0.155045963964103,15.6049191997584,2.30355941973953,0.0434326563321234,0.101606831363228,-4.76758115826373 +"Q9VFP0",-0.144467954982929,16.5573444425752,-2.30155888241171,0.0435820118578966,0.101813439466347,-4.77087783594187 +"Q9W552",0.0947792177132669,16.147577430392,2.29261801234786,0.0442556272921038,0.103193331275971,-4.78560053812756 +"Q9VBC9",-0.179968913500874,15.5991175898512,-2.29208084499325,0.0442964179817717,0.103193331275971,-4.78648450598348 +"Q9VMX4",-0.157445436846857,17.3490560696306,-2.28554838829635,0.0447953961225799,0.104167430076767,-4.79722914967324 +"Q24583",-0.101856506591034,21.2825994283386,-2.28421398368699,0.0448979916665689,0.104167430076767,-4.79942279616388 +"Q9VLT3",0.0979387178828404,19.3749954088305,2.28416310709355,0.04490190780887,0.104167430076767,-4.79950642486003 +"A1Z9E3",-0.0981059760861882,21.7735380038497,-2.2795448581447,0.0452587713297335,0.104849486913883,-4.80709522757345 +"O02649",-0.0999350580322904,23.3824439805622,-2.27596187824235,0.0455375273838441,0.105348953781209,-4.81297947321936 +"Q6IDF5",-0.146964324766667,19.6520350598159,-2.26998165180808,0.046006494871861,0.106286472917263,-4.82279403258057 +"Q9VEX6",-0.104690785653592,20.7991687881599,-2.26763366225135,0.0461918981083513,0.106567200615118,-4.82664519858903 +"B7Z0Q1",0.112652783777403,17.6642858902534,2.26559082175938,0.0463537937374761,0.106714304664036,-4.8299948083043 +"A8JNT7",0.139778067352072,16.8172469075921,2.26521527413067,0.0463836156363466,0.106714304664036,-4.83061048042214 +"P45889",0.101320527239547,19.1527875064974,2.25696733931023,0.0470432735497093,0.107935524226603,-4.84412372555977 +"Q94915",-0.166958351382808,17.0908600738439,-2.25696029754571,0.0470438405951681,0.107935524226603,-4.84413525574156 +"Q9W2E8",-0.147290156267761,19.3657917184177,-2.24334986264007,0.0481522629791782,0.110041505054117,-4.86639873495684 +"Q6WV19",0.191216976347427,13.5901941557665,2.24307220586296,0.0481751354895769,0.110041505054117,-4.86685245036287 +"Q9VN88",-0.142064208044712,17.0693186726126,-2.24253643546298,0.0482193002452738,0.110041505054117,-4.86772789291365 +"Q9VE85",0.160097588117029,15.7632991566394,2.24245976427974,0.0482256236178416,0.110041505054117,-4.86785316701044 +"Q9VAC4",0.0825722472219468,19.363841019646,2.24007933090202,0.0484223458406798,0.110246516038209,-4.87174187647669 +"Q9VCA5",0.217586258147604,14.203064576896,2.23977369979612,0.0484476596259037,0.110246516038209,-4.87224105950599 +"A1ZBU8",-0.15334209160762,20.8316902004381,-2.23595896566638,0.0487646896320568,0.110816760635246,-4.87846968607889 +"A0A0B7P9G0",0.19468867868569,14.3775246891028,2.23398288745908,0.0489297007560988,0.111040463756698,-4.88169478354446 +"Q9VBP9",0.194473113304175,13.8040660131588,2.22137651583706,0.0499951270770389,0.113304173864811,-4.90224646644609 +"Q9W3W4",0.129796934581835,15.8534533806491,2.21677670219715,0.0503894171762403,0.114042805766579,-4.90973545894326 +"Q7JZK1",-0.121340050159425,21.5460142804668,-2.21495378728296,0.0505465019908692,0.114243313442778,-4.9127018817393 +"Q9VEA1",0.10287719987501,18.2032587451212,2.21234583768078,0.050772054843184,0.114597817968107,-4.91694432226962 +"Q9VZ67",0.152749203346774,15.1215016457703,2.20943530202661,0.0510249209589686,0.11492293413215,-4.92167694438704 +"Q4QQ70",-0.12613070112403,16.1575839130139,-2.20910271041613,0.0510538934004335,0.11492293413215,-4.92221761100684 +"Q9VSN3",-0.122381675426457,20.9347064004394,-2.20726320036226,0.0512144212877954,0.115128914700866,-4.92520743852501 +"O44386",0.113472958345863,16.8658724634643,2.20419984219087,0.0514828282591421,0.115500239730506,-4.93018450646207 +"Q9VQ62",-0.130743367820301,19.705137552393,-2.20379850905987,0.0515180925416644,0.115500239730506,-4.93083637739271 +"Q9VWX8",-0.108531865871882,20.5485931275316,-2.19524249191199,0.0522754391503044,0.117040848996923,-4.94472368845848 +"P07486",-0.115223967276783,22.082650899675,-2.19273940432587,0.0524990182485144,0.117383863858609,-4.94878285904827 +"Q9VMY9",0.192622289950094,14.9938158034195,2.19022488007448,0.0527245434992263,0.117730305966144,-4.95285892346556 +"Q9VMM6",-0.134835412496205,18.4213936981768,-2.1890549877402,0.0528297868532908,0.117807599560547,-4.95475476226861 +"Q9VI04",0.165745962677446,16.342848398156,2.18808656384252,0.0529170586994729,0.117844664767318,-4.95632384395544 +"Q9W0B3",-0.0951406358224389,19.1888267296801,-2.1836613546261,0.0533176111896662,0.118578367285818,-4.96349060427438 +"Q9U6P7",-0.118189760138582,17.0039304507548,-2.18159541694145,0.053505606534963,0.118838018242767,-4.96683467549353 +"Q95083",0.108766201756058,19.8708094430273,2.17738198204263,0.0538909919559227,0.119534806625637,-4.97365131135988 +"Q8T4G5",0.0710995704407651,19.595822085827,2.17418912806175,0.0541848006764523,0.120026889147839,-4.97881365306036 +"Q9VXH4",0.143311826041403,17.123462282462,2.17253111804423,0.0543379771727121,0.120206559581013,-4.98149331315872 +"Q9VQJ8",-0.163411643173438,15.2579265196982,-2.16852256224711,0.054710027290741,0.120869305325769,-4.98796883794357 +"Q8MSV2",0.193091804655459,18.2067830729294,2.16640265537429,0.0549077699357119,0.120877855181135,-4.9913916308469 +"Q9VCR4",-0.131789363505911,15.1183526134046,-2.16583012358117,0.0549612924143544,0.120877855181135,-4.9923158288946 +"Q9W2M4",-0.0880741442575506,22.6892054336685,-2.16557459979864,0.0549851958896278,0.120877855181135,-4.99272827428738 +"Q9W077",-0.14415448342967,20.8370437239991,-2.16476800700593,0.0550607155496909,0.120877855181135,-4.99403009313978 +"P40796",-0.139316244019671,18.4001437474785,-2.16454217286287,0.0550818777426018,0.120877855181135,-4.99439455154757 +"Q9VRJ6",-0.14851209987742,15.8002468410634,-2.16378828516214,0.0551525785652553,0.120877855181135,-4.99561109907642 +"Q8IPD8",-0.0994099283323528,18.3760191318462,-2.16305768417556,0.055221178446058,0.120877855181135,-4.99678992087458 +"Q27268",0.0955039890212994,18.9284030142877,2.16196054849852,0.055324347664761,0.12094496973109,-4.99855987098947 +"Q7JNE1",-0.102170310000478,17.8275747035293,-2.16035105545121,0.0554760304898416,0.121005836427475,-5.00115578366003 +"Q9VIM0",0.107882194610188,18.0510626580257,2.16012590373814,0.0554972810953347,0.121005836427475,-5.00151886884901 +"P08646",0.126402062037361,18.8809474367599,2.15609330883557,0.0558792137437286,0.121612429695977,-5.00801957150101 +"A0A0B4KHJ9",-0.116762726472423,24.6224206239501,-2.15560375364398,0.055925751075499,0.121612429695977,-5.00880844901181 +"Q9VRD9",0.10236158569281,16.1618781683788,2.15481800917409,0.0560005218361689,0.121612429695977,-5.0100744726113 +"Q9V3J4",-0.107903095557552,16.5937253346355,-2.15411897870255,0.056067121364632,0.121612429695977,-5.01120063567366 +"Q9XTL2",-0.144182363100391,16.9657417157141,-2.15323288778824,0.056151651839322,0.121637604244142,-5.01262796552141 +"Q9VJ28",0.132149315035921,18.9644467044786,2.14435675338246,0.0570051628766893,0.123326344589258,-5.02691374609655 +"P14199",-0.109538832304231,18.5327759486574,-2.14125051146206,0.0573067719367713,0.123818258536962,-5.03190791360006 +"Q9VHI1",0.155058970576555,14.1980837401519,2.13764171633261,0.0576590927046653,0.124418326819381,-5.03770666608518 +"Q9VTC3",-0.224234368180966,17.1451078575115,-2.13425524610264,0.0579915893276074,0.124864199137211,-5.0431448271858 +"O97062",-0.113700255742003,18.5094574885979,-2.13321863811624,0.0580937329568465,0.124864199137211,-5.04480881250297 +"Q9VRY5",-0.102359979652435,16.8880475949649,-2.13309739930699,0.0581056906081024,0.124864199137211,-5.04500340766186 +"O96824",-0.132065535729097,16.7733038188035,-2.13249481704101,0.0581651575117586,0.124864199137211,-5.04597052424134 +"Q7KW39",0.0806975955645157,21.7029029895903,2.13172316265089,0.0582413944470244,0.124867154161487,-5.04720884264269 +"Q03427",-0.0855652426376778,21.7642332208665,-2.12870577182178,0.0585404195281704,0.12534713706417,-5.05204939186106 +"Q6AWN0",-0.0960145588434003,18.3952387547007,-2.10531688792559,0.06090844183649,0.130250360234956,-5.08948096916285 +"Q24492",-0.10793275545311,15.1029894557293,-2.09979364479182,0.061480817355051,0.131038761570453,-5.09829695660449 +"Q9W141",-0.0796042724813439,21.8755503219735,-2.09955095077585,0.0615060848435987,0.131038761570453,-5.09868412758317 +"Q95TN1",0.225835952516322,13.972950582635,2.09948573017992,0.0615128768091091,0.131038761570453,-5.09878817133594 +"Q9VCE1",-0.182406808093727,13.763489791853,-2.09873257989121,0.0615913603544574,0.131038761570453,-5.09998954940559 +"Q9VPX0",0.207669024734809,14.2989138093977,2.09778633844634,0.0616901003845297,0.131081640052733,-5.10149869461921 +"P48159",0.0981008781833701,19.902128660235,2.09427378309126,0.0620579529661893,0.131695503241226,-5.10709847201864 +"Q9VSR8",0.178391337743259,15.5036475425365,2.09338182212135,0.0621516951889752,0.13172684571183,-5.10851986337505 +"A1Z933",-0.170215409709789,15.788118466827,-2.09157555481813,0.0623419405806897,0.131962381838313,-5.11139752267733 +"Q9VC53",-0.120505459820365,17.8921272785657,-2.08707854014312,0.0628179967893677,0.132801544543302,-5.11855768184829 +"Q9VBC1",0.193693542027894,13.3610956802942,2.07959453104402,0.0636179227488811,0.134322398917891,-5.13046014925204 +"Q9VGK3",-0.0996788579369188,17.1291191426775,-2.0772564976875,0.0638697990631582,0.134683722929643,-5.1341750230534 +"Q9VXI1",-0.143203902118483,19.5727714961941,-2.07631016466603,0.0639720163579096,0.134728943541658,-5.13567816415988 +"Q9VXE0",0.152408176255406,17.9924882431678,2.07502593443962,0.0641109796212508,0.134851341750626,-5.13771757620515 +"Q9VF15",-0.112600948804019,20.9279710359359,-2.07359614781054,0.0642660301225632,0.134983248573582,-5.139987541148 +"Q9Y125",-0.103088263022837,22.6918685831969,-2.07240243154828,0.064395752855446,0.134983248573582,-5.14188223238822 +"Q9VH26",-0.130034598198847,18.3321621290813,-2.07221203602088,0.0644164663456664,0.134983248573582,-5.14218439147238 +"Q9VTJ4",-0.137913510309394,15.6520528868151,-2.06324434201137,0.0653992673716414,0.136870737736384,-5.15640346159242 +"A1ZA23",0.0814532838192967,18.4805710753413,2.05498856297701,0.0663165950905573,0.138616642369736,-5.1694715291864 +"Q9VKX2",-0.0852701032119292,23.1196973292512,-2.05277580245648,0.066564525189466,0.138960735939962,-5.17297045988819 +"A1Z6G9",0.200593759044489,14.2798662896977,2.04704705325957,0.0672104882162152,0.140133867930809,-5.18202184106842 +"Q9V9T9",0.232909238285668,13.3796008335553,2.03046070474448,0.0691143217108301,0.143923456446523,-5.20816886343389 +"Q7K0X9",-0.111207820531646,16.7101419823065,-2.02832441803675,0.0693632022444328,0.144099791237288,-5.21153007177848 +"Q9VB64",-0.117116568625484,18.7721128286337,-2.0282509021457,0.0693717819925313,0.144099791237288,-5.21164571431603 +"Q9I7J0",-0.164450542251746,21.0468081824944,-2.02739752184326,0.069471449951194,0.14412733646591,-5.21298797603133 +"Q9VFM9",-0.0933362244283558,17.1232522590463,-2.02417453135319,0.0698490895984818,0.14473078441027,-5.21805519207382 +"Q9VMS1",-0.11083866875358,22.4137581619113,-2.02138133844378,0.0701779353338345,0.145231756993593,-5.22244391900867 +"Q7K0W4",0.104022730794483,21.7429982743053,2.01773272842304,0.070609689912428,0.145895584065431,-5.22817282426655 +"P09208",0.322556131022376,12.9574306886497,2.0171940955117,0.0706736402427268,0.145895584065431,-5.22901819202777 +"Q95RB2",-0.143080239008786,24.2859157771627,-2.01103288993855,0.0714090362868909,0.147231486435765,-5.23868116470514 +"Q9VG26",-0.0731192321294216,19.7019854084116,-2.00787045783107,0.0717892953109831,0.147832771084839,-5.24363607596964 +"Q9W0D3",0.283170818273843,12.7783129971127,2.00487373414417,0.072151387907662,0.148175205018289,-5.24832826367403 +"Q8IR45",-0.10390199306152,14.8576351172618,-2.00369288123435,0.0722945414062367,0.148175205018289,-5.2501763821291 +"Q9VF51",0.11194210076119,17.6638527936904,2.00342421522397,0.0723271487993719,0.148175205018289,-5.25059679793341 +"Q9VLR3",-0.119470795548249,16.772376997647,-2.00215735187294,0.0724810917646458,0.148175205018289,-5.25257889208253 +"Q7JQW6",-0.108408413890807,15.855384656807,-2.00211395393004,0.0724863707260372,0.148175205018289,-5.25264678153946 +"Q95R98",0.105022924194644,16.2040847976956,2.00209571440057,0.0724885895053502,0.148175205018289,-5.25267531430941 +"Q9VHD2",0.0882810986520113,16.6046642684407,1.98951615737057,0.0740341599696652,0.15114930089278,-5.2723271115171 +"Q9VK00",0.209598360205241,17.6132201020212,1.98742362661081,0.0742942414674892,0.151494859129306,-5.27559082856688 +"Q9VHE4",-0.0762720773176788,17.9277070811952,-1.97946122993151,0.0752917561177715,0.153279733519061,-5.28799598450605 +"Q9W445",-0.0891611923033739,16.4902643667338,-1.97897285502648,0.0753533462144065,0.153279733519061,-5.28875614327412 +"Q7KJ08",0.12539847406536,14.510018186254,1.97813755204824,0.0754587978098496,0.153307277401741,-5.2900561060135 +"P00408",-0.0810905388520418,21.2787819759933,-1.97611339053651,0.0757149096577868,0.153640473612151,-5.29320525608338 +"Q9W2D9",0.171141312558998,17.6524953387624,1.97256179242409,0.0761662554681999,0.154368546927044,-5.29872731157005 +"Q9VME3",0.150149928116793,15.7558433705495,1.9701383339523,0.0764756812350102,0.154807568325239,-5.30249279496176 +"Q9V3F8",-0.0880065371896173,18.5677694953513,-1.96647272322016,0.0769459438897485,0.155332329290172,-5.30818437409177 +"P23128",0.179040504209093,14.6230559670091,1.96615816850453,0.0769864242223437,0.155332329290172,-5.30867256171161 +"Q9VFS8",-0.13668575729055,17.3731314547144,-1.96594172313047,0.0770142903614943,0.155332329290172,-5.30900846378724 +"B7YZT2",-0.211522073662664,18.4478980704297,-1.96490713295695,0.0771476186749684,0.155413318780009,-5.31061381846467 +"Q9W2D6",-0.0901375432158495,19.6367336563508,-1.95960784557467,0.0778339374492194,0.156606764373098,-5.31883069251507 +"O96299",0.182453210653541,15.6259442183629,1.95885775713892,0.0779315431074519,0.156614233618349,-5.3199929468081 +"Q9VZI3",0.154895789764433,14.3243530707431,1.95044456240077,0.0790341898645351,0.158639023699211,-5.33301535994551 +"Q9VAI9",-0.0801306791141876,22.0298537179247,-1.94954372612659,0.0791531158508065,0.158686775527819,-5.33440822272447 +"Q8SY69",-0.108466567660315,18.9644854738045,-1.94447252908839,0.0798257290771751,0.159607469824165,-5.34224379748186 +"Q9XYZ5",0.113079380342342,15.9182019502723,1.94426716170417,0.0798530799845763,0.159607469824165,-5.34256091782603 +"Q8SWZ6",-0.10752551386949,13.966261692349,-1.94391934106956,0.0798994228436317,0.159607469824165,-5.34309797414935 +"P22812",0.392441292067071,11.5390378254514,1.94155609801347,0.0802149620827733,0.160046120519218,-5.34674580575123 +"Q7K1C5",-0.0900050655089935,17.5441016251712,-1.9385156850366,0.0806226287150046,0.160667317439221,-5.35143591494501 +"Q8SXF2",-0.141160919307655,15.5701163616107,-1.93460592924666,0.0811497022368732,0.161524705645709,-5.35746211353121 +"Q9VSY8",-0.14057372562046,18.0589562024527,-1.92777546025523,0.08207823873925,0.163178190961941,-5.36797664095265 +"Q9VCH5",-0.0792314876007758,18.0680030987166,-1.9216829725065,0.0829148026610542,0.164556201505309,-5.37734063813573 +"Q9V597",0.196034450272109,20.2047282895068,1.92129253178491,0.0829686843321132,0.164556201505309,-5.37794026646532 +"Q9V784",-0.259515618979366,14.362892130229,-1.91962981497385,0.0831985082812196,0.164816047283936,-5.38049318751819 +"Q9VN21",0.0805084967433807,22.0326961235611,1.91717601494651,0.0835387605980655,0.165293775418236,-5.38425884998967 +"Q76NQ0",0.241213385297465,14.4424926069052,1.9118753324186,0.0842781977277051,0.16655928176518,-5.39238572716476 +"Q9VJZ1",0.163929011139798,15.4178262826175,1.90596746938205,0.0851095087831467,0.168003148698567,-5.40143107784463 +"Q9VVI2",0.222360055555137,13.9100494552176,1.89982512537328,0.0859818925124769,0.169298241477519,-5.41082143643771 +"P02299",0.083177608362714,22.0431832716936,1.89930292727542,0.0860564410662739,0.169298241477519,-5.41161910666145 +"Q9VMR0",0.110811610596905,17.2929384975561,1.89920737031726,0.0860700891924078,0.169298241477519,-5.41176506097871 +"Q9VPX6",0.264469312722532,21.4269785580863,1.89437076572785,0.0867635190151547,0.170461189301859,-5.41914796755953 +"O44434",-0.0853139089056967,15.8738059861917,-1.88902435034336,0.0875360732153388,0.171776670733159,-5.42729864689969 +"Q9VKF0",-0.120496506059199,15.8788313868253,-1.88788951115454,0.0877008757826909,0.171897838784405,-5.42902730801353 +"Q868Z9",-0.075081782972461,20.4372709459379,-1.88165850320784,0.0886108872734257,0.173477652549383,-5.43850990812438 +"Q7K1M4",0.0885868907093563,17.1263408752882,1.88079895719289,0.0887371048653368,0.173521091342769,-5.43981681748068 +"Q9U1K7",-0.110481939185387,17.4699439136558,-1.87961235063263,0.088911622445818,0.173658766088553,-5.4416205382666 +"Q9VTF9",0.0983527018229005,17.4132470765986,1.87730092173804,0.089252484010708,0.174120635473522,-5.44513248738877 +"Q9VKI8",-0.0672904553637217,22.391491093681,-1.87393402881613,0.0897511581935393,0.174888939096757,-5.45024435525794 +"Q9W1E8",-0.0697606795703258,15.4709819128872,-1.86660971258994,0.0908448894727916,0.176813623851361,-5.46134929773097 +"P54353",-0.116787935436022,18.9356173546346,-1.86572254448069,0.0909782030208879,0.176866716362286,-5.46269296242499 +"Q9W385",-0.131010132727242,16.9040405151986,-1.8588368645972,0.0920190697419398,0.17868196545932,-5.47311108417033 +"Q9VAG3",0.15341208918842,16.7540732293102,1.85274165050161,0.0929496135361329,0.180279017881709,-5.48231744390292 +"Q9VIH1",0.104178955706256,15.7362083245005,1.85155687676878,0.0931314957643642,0.180358926667392,-5.484105226056 +"A0A0B4K692",0.115441573937673,15.8394943903569,1.85071880434401,0.0932603519051821,0.180358926667392,-5.48536950720771 +"P25007",-0.0776944656771938,23.8623346570345,-1.84995404523089,0.0933780794225841,0.180358926667392,-5.48652294424977 +"Q9VI10",0.142027395203449,17.1800692931958,1.84966034067147,0.0934233289212389,0.180358926667392,-5.48696585735831 +"Q8WTC1",0.139216417685439,15.0255062861996,1.8485911405515,0.0935882257960497,0.180468393789377,-5.48857794156982 +"Q9VTC1",-0.117685799300469,15.8419875071891,-1.83944077751136,0.0950104514361069,0.182999345260307,-5.50235546062694 +"Q9W4K0",0.0796788538437561,19.6555910213194,1.83756169550711,0.0953049676471922,0.183259160714278,-5.5051805447069 +"A1ZBK7",-0.14407460273026,17.6132565449253,-1.83697019275078,0.0953978501383266,0.183259160714278,-5.50606953440495 +"Q9Y114",-0.0686284149149614,18.6379509357816,-1.83647962368933,0.0954749464392733,0.183259160714278,-5.50680671894222 +"Q9VU92",0.0992894860219096,17.6656957340571,1.83402848618856,0.0958610196281137,0.183788713493901,-5.51048860008262 +"Q9VL16",-0.08745207776089,20.7806891891966,-1.83096166316529,0.0963460916314608,0.184420678546273,-5.51509183956387 +"Q9VJ68",-0.113388007433439,17.9249204094078,-1.83054751284895,0.09641176959973,0.184420678546273,-5.51571317460056 +"Q7K0S5",-0.0984443605332146,18.3070305593687,-1.82767898495165,0.0968678064003897,0.185080757246105,-5.5200147859254 +"Q9W3N6",0.0799500431713884,16.1106404694203,1.82276546495445,0.0976535658720721,0.186368590245556,-5.52737514512501 +"Q9VIQ8",-0.0812042690080652,21.3031473140466,-1.82196699606854,0.0977818072280338,0.18640006223584,-5.52857029121387 +"P20240",0.139166986524756,17.3746873770868,1.81646922186246,0.0986690080657452,0.187876604399159,-5.5367921430579 +"Q9W0H8",-0.110291548835722,19.4508460460915,-1.81252383347859,0.0993102418808591,0.188881965173629,-5.54268464139936 +"Q9VIS4",0.100740646732852,14.1698215993571,1.80911461578336,0.0998674104629233,0.189725331038902,-5.54777110038617 +"O76752",-0.0810474152262941,17.8504952651647,-1.80515544909231,0.10051805405267,0.190697523368676,-5.55367192312551 +"Q7KTW5",-0.0946057974374206,21.5591785888691,-1.80461115279564,0.100607806093786,0.190697523368676,-5.55448263562583 +"Q9V3L7",-0.0943916812166918,17.6506922325475,-1.80200776692411,0.101038109385923,0.191295762151781,-5.55835856293495 +"P49963",0.128548529479888,14.9382436861239,1.79956151006159,0.101443977256241,0.191633855570533,-5.56199793494724 +"Q9VCW6",-0.0689476233036146,19.7846752667465,-1.799546576537,0.101446459513657,0.191633855570533,-5.56202014420045 +"Q8SZA8",-0.126259366450874,18.0429467007743,-1.79826127063523,0.10166031218101,0.191820589047427,-5.56393130533085 +"Q8SXX1",-0.0790111125895301,19.868519858784,-1.78982742524697,0.103073826039249,0.194267956873974,-5.57645434207038 +"P53997",-0.316635715622894,17.4236335370105,-1.78710074396142,0.103534649347271,0.194916247303892,-5.58049653923482 +"Q8MLP9",-0.167466344163543,15.0362077402394,-1.7854717023775,0.103810863730689,0.195097218890309,-5.58290999970822 +"Q9VGJ9",-0.0931328819143147,17.9591134333765,-1.78515461317836,0.103864706459589,0.195097218890309,-5.58337964102566 +"A1Z8Y3",-0.114199677454184,15.1414756668116,-1.78372868729626,0.104107148614493,0.195134893274584,-5.58549104494583 +"P16620",0.108842225849594,17.300600622935,1.78366060011278,0.104118738018213,0.195134893274584,-5.58559184133243 +"Q9V3Y0",-0.11796176209144,16.3962524170632,-1.7822739263429,0.104355026121144,0.195194827681516,-5.58764423891293 +"Q7K519",0.13511661341261,15.5825157096549,1.78103589516547,0.104566399380409,0.195194827681516,-5.58947592841479 +"P43332",0.0934085686556756,17.197863926654,1.78040473345823,0.104674310165585,0.195194827681516,-5.59040948762897 +"Q9VRU1",0.180662323573753,17.2339657909374,1.78004470749635,0.104735909949111,0.195194827681516,-5.5909419290777 +"Q9VY78",-0.10895994117972,18.8159735078106,-1.7794717793395,0.104834005157136,0.195194827681516,-5.59178911491025 +"P91941",-0.0937132317072695,23.0940463466166,-1.77901592655544,0.104912114949587,0.195194827681516,-5.59246308008433 +"Q7K860",-0.389238568806324,20.588593109434,-1.77867900392598,0.104969880353909,0.195194827681516,-5.59296115238105 +"Q7JWD6",-0.0706021896420026,20.4917112804779,-1.77684489150573,0.105284848547974,0.195562502648129,-5.59567165182444 +"P83967",-0.389982861809067,17.6414873579041,-1.7741602926251,0.105747424193517,0.196203229760608,-5.59963637779537 +"Q9VCR9",-0.0923272350167004,19.3448628195836,-1.77210653900147,0.106102551544935,0.196643395529947,-5.60266731912655 +"Q9VKV2",0.2085910940893,14.9700270487171,1.76987379770767,0.10648986238109,0.197142164763216,-5.60596031508203 +"Q7KK90",-0.0697987602643337,21.119530399925,-1.76807442835806,0.106802934154489,0.19742792238089,-5.60861255254879 +"Q9VGV9",-0.12660511203123,16.1142958710326,-1.76762681999547,0.106880943591093,0.19742792238089,-5.60927209795637 +"Q8SZM2",0.0800124747641782,21.2989583363362,1.76678919100401,0.107027065555885,0.197479143083204,-5.61050609701745 +"Q9VRG8",0.130349557562127,16.1995823596556,1.76275688927665,0.107733039157959,0.198562109740858,-5.61644217342068 +"Q9VDL1",-0.111287677540819,14.8806691385649,-1.75705626615425,0.108738337262469,0.200193759993155,-5.6248219585097 +"Q9VDK9",0.145648206175643,15.4614167342875,1.75492196962719,0.109116908800162,0.200669243526649,-5.62795560944735 +"Q9W3K6",-0.109685043795629,16.2134284310387,-1.75142869643878,0.109739116354474,0.201591240175399,-5.63308017317197 +"Q7K486",0.10054465873548,17.6590666347211,1.74993089977835,0.110006884319327,0.201860817430844,-5.63527573987046 +"Q9W0N6",0.18648437342801,14.5653073181548,1.74454709277247,0.110974281286438,0.203347477076646,-5.6431593553038 +"Q9VN86",0.148104266701717,15.29129144059,1.74367048593687,0.111132524991603,0.203347477076646,-5.64444175311229 +"Q9VCR2",0.0933551877011016,15.4176599869219,1.74285530915652,0.111279863231664,0.203347477076646,-5.64563397311557 +"Q9W2N5",0.410539442057763,12.9209181303799,1.742717968426,0.111304704179243,0.203347477076646,-5.64583480844217 +"Q24297",0.0979353472212061,16.9486409991564,1.74172382089376,0.111484666712721,0.203453418027155,-5.64728831060772 +"Q9VXN1",-0.19856728156345,13.6509484213031,-1.74071938993261,0.111666758917884,0.203563009699487,-5.64875639399491 +"Q9VEH2",-0.106556227570662,15.9031410113769,-1.73947241290585,0.111893197518373,0.20375311513171,-5.65057834912943 +"Q9VJC7",-0.0886991422051686,18.6290217053441,-1.73804949826484,0.112152093457734,0.20380671021399,-5.65265650553252 +"O18335",-0.0749692581171288,21.6564587535884,-1.73761459032101,0.112231332272005,0.20380671021399,-5.65329150213583 +"Q9W4C2",-0.15816954149166,15.9644224650104,-1.73693188347964,0.112355821656228,0.20380671021399,-5.65428812958661 +"Q9W5R5",-0.0911002466542712,15.8730596719424,-1.73662744747067,0.112411374938172,0.20380671021399,-5.6547324823709 +"Q05856",0.121883923251611,13.681508887379,1.73263014010797,0.113143114757954,0.204910657346654,-5.66056301370416 +"Q9VIB5",-0.187865781393324,14.4925890938651,-1.73105035358379,0.113433495855676,0.205213743044759,-5.66286530509555 +"Q9VM10",0.109181826913595,16.9238477657801,1.72702100364778,0.114177191444047,0.206335379554356,-5.66873228242838 +"Q9NHA8",0.111600237597033,16.229723325504,1.72439157977653,0.114664880789638,0.206992447139737,-5.67255686715648 +"Q9VEV7",0.592148725425002,12.8852873077029,1.72123234413199,0.115253329080473,0.207829786925652,-5.67714787263369 +"Q9VSL9",0.195532332045323,14.5130106441866,1.72044505075453,0.115400397180304,0.207831261692227,-5.67829125187586 +"Q9VIW6",0.109078244758448,14.9720328060109,1.71989448392148,0.115503345077155,0.207831261692227,-5.67909066511409 +"P18053",0.079501194025454,21.0903623012569,1.71483839123139,0.116452649827046,0.209313599042579,-5.68642546011129 +"A1Z7S3",-0.0781522580132865,19.9937063965191,-1.71195732995181,0.116996730345184,0.210065173536885,-5.69059966272139 +"Q9W396",-0.0894389246624918,16.6594045224799,-1.71035693701757,0.11729995105883,0.210383138028095,-5.69291670906111 +"Q9Y0Y2",-0.10404042087378,19.5167421785927,-1.70916389303617,0.11752645426337,0.210562970688831,-5.69464321867191 +"Q9VY91",-0.317557078285709,17.0312002162135,-1.70555001452989,0.118214971695108,0.211349358041635,-5.69986896913657 +"P80455",-0.086696845996066,20.5306491993199,-1.70492400391746,0.118334608606716,0.211349358041635,-5.70077357299087 +"Q9W503",0.0848233792183031,17.9425999697994,1.70486702200582,0.118345503843458,0.211349358041635,-5.70085590440966 +"Q9VKQ2",-0.112703700526165,16.0002108581059,-1.70384026960201,0.118541979330267,0.211473819810573,-5.70233916634223 +"A1ZBJ2",0.0728621690103175,19.2279150468928,1.70221227554238,0.118854109227887,0.211804117726618,-5.70468997568815 +"Q9VY87",0.142117551361075,17.5334104904791,1.69534039709603,0.120179811255123,0.213938020462695,-5.71459914344881 +"Q9VYT6",-0.136124524606334,16.3354147264617,-1.69439966350004,0.120362327603145,0.214034501537362,-5.7159539327241 +"O97365",0.0945052111442699,18.0270003072571,1.69268626651582,0.12069539354153,0.21421974291988,-5.71842038795983 +"Q9W3B3",-0.129794851826311,15.7277149640269,-1.69254261084861,0.120723356321755,0.21421974291988,-5.71862711866751 +"Q9VD09",-0.140317299312006,14.7184822632723,-1.69064199422269,0.121093863372771,0.214321150839387,-5.7213613175471 +"Q9VVA7",0.0913796557102842,17.4787439751396,1.69032384589891,0.121155983236733,0.214321150839387,-5.72181883310584 +"P05205",-0.0724845029470025,18.1401683687703,-1.69014666264014,0.121190591480013,0.214321150839387,-5.72207361191484 +"Q9W4W8",0.0809528723204451,17.3248564189521,1.68961514008995,0.121294464264018,0.214321150839387,-5.7228378194934 +"Q9VYG8",0.468414098615369,15.1873078950761,1.6876221618269,0.121684655579986,0.214507062778293,-5.72570206623106 +"Q9VKE2",-0.0911208273137731,24.18451501859,-1.6871734614464,0.121772659055017,0.214507062778293,-5.72634666317352 +"Q9VHG4",0.181835973746473,18.4101481698476,1.6871080921958,0.12178548468288,0.214507062778293,-5.72644056373774 +"Q9VPU6",0.0976554661109859,15.3902411999805,1.68216625307384,0.122758610998961,0.215992999099438,-5.73353341808462 +"Q9W4A0",-0.100327389925182,17.1196447205064,-1.67433333892324,0.124315353273196,0.218501590368484,-5.74475169873746 +"Q9VP77",-0.0748406852767118,15.3939150863811,-1.67330445844684,0.124521148041549,0.218515188549615,-5.7462230588156 +"Q9VBU9",0.0755581864255888,20.7945959336043,1.67298504582625,0.124585098507604,0.218515188549615,-5.74667973357158 +"Q9VKM3",-0.0914779904251404,21.8164948252635,-1.66837212881467,0.125511953506584,0.219909599211115,-5.7532694559305 +"P54192",-0.103907378133311,24.4382842978676,-1.66700554369912,0.125787720465049,0.22016150864187,-5.75521968769081 +"Q9VWD5",0.132373983631265,14.4179364600161,1.66632158776822,0.125925941594796,0.220172401027379,-5.75619540873813 +"Q9VEP8",0.0818834090470055,17.2627372396394,1.65902680069061,0.12740863626009,0.22253152385532,-5.76658782387879 +"Q9VCB9",-0.103604639088109,17.004611425753,-1.65767903202893,0.127684279716059,0.222779684692873,-5.76850504972393 +"Q9VN25",0.156516822024253,14.9397394242289,1.65460793190918,0.128314369925901,0.223415038054321,-5.77287040911112 +"Q9VU75",0.0730237844789698,18.2357064777465,1.65459722239241,0.128316572028435,0.223415038054321,-5.77288562383076 +"Q9VKU5",-0.250413630297743,13.7855671728703,-1.65394739889355,0.128450252694301,0.223415038054321,-5.77380870459488 +"Q9W1H5",0.0849173251912685,17.2786833027683,1.65239038126115,0.128771066631397,0.223739728272052,-5.77601961584475 +"Q9W3N7",-0.236648555154426,17.3687496409156,-1.65007110416432,0.129250267418933,0.22423488668967,-5.77931068769583 +"B7YZN4",-0.157165942277469,15.4480296966613,-1.64971050226376,0.129324916663946,0.22423488668967,-5.77982214541899 +"Q86BM0",-0.0979248348163964,17.5042602877658,-1.64394433756366,0.13052382936741,0.226078657720499,-5.78799178816636 +"Q9VX98",-0.0666187643238665,18.2018588267228,-1.63377339437345,0.13266278639009,0.229545153214388,-5.80236180051913 +"Q9VM50",0.156296703912641,13.4794200308433,1.63273916694907,0.13288202538034,0.229686236615967,-5.80382010226166 +"Q9VH66",0.107687740453985,16.6723295009113,1.6311403865677,0.13322157519627,0.230034769593559,-5.80607338618985 +"Q9VAY0",-0.144207267120956,14.0449524688195,-1.6301908785918,0.133423597650838,0.230063209669395,-5.80741099076221 +"Q9VWS1",0.100329945785459,17.2403712450011,1.62927297856892,0.133619154235684,0.230063209669395,-5.80870363557871 +"Q9VXA9",0.127645991751486,14.2479358518285,1.62807890710926,0.133873930310901,0.230063209669395,-5.81038456547054 +"Q9W0M4",0.129506613472586,17.8457808689467,1.62788262817303,0.133915851208637,0.230063209669395,-5.81066080418278 +"Q8IRH5",-0.131985932719353,14.4901072043648,-1.62782723635079,0.133927683806345,0.230063209669395,-5.81073875790502 +"Q7JUS9",0.0957693392568189,20.2301541195203,1.62684447806439,0.13413777174721,0.230187040405706,-5.8121215499144 +"Q961T9",0.109152871516727,17.9191353843788,1.62197547705835,0.135182966352607,0.231742228033041,-5.81896526581485 +"Q9VEY5",-0.0743824937264428,20.8389008473113,-1.61973785726733,0.135665724110078,0.232331034718286,-5.82210635355674 +"Q9VXM4",0.215364635369401,20.1952475782603,1.61516244470424,0.13665762174922,0.233789654438665,-5.82852119779022 +"O97102",-0.0769601825464754,20.9898454941314,-1.61311902905279,0.137102687216135,0.234047505120114,-5.83138265917091 +"Q9V773",-0.102082953057149,15.5795452884962,-1.61301196493634,0.13712604170505,0.234047505120114,-5.83153252552547 +"Q9VB81",0.108991384488274,20.9624620196752,1.61253882521184,0.137229292570426,0.234047505120114,-5.83219474727755 +"Q7JXB9",0.142846094291263,16.2157817694612,1.61074001884159,0.13762246678502,0.234478319302772,-5.83471136613546 +"O18404",-0.0639114713784004,23.0219293892035,-1.60830569558771,0.13815613999662,0.23514738930037,-5.8381144553723 +"Q9VB05",0.058154950149504,20.1684148616009,1.60559833131692,0.138751825807488,0.235920535623742,-5.84189565899598 +"Q9U1L2",-0.256160387041337,17.6145235069084,-1.60125427684079,0.1397123790392,0.237311861748866,-5.84795480876332 +"Q9VJH8",0.164494799469161,14.296026932115,1.59925264382699,0.140156956473136,0.237824825429492,-5.85074342402746 +"Q9VHC7",-0.0570176669823113,19.9696054238449,-1.59673122474317,0.140718763832077,0.238535465520229,-5.85425322640144 +"Q8MLS1",-0.0772872741894304,18.5322722998316,-1.59499902484036,0.14110587566002,0.238948833097374,-5.85666252152759 +"Q9V3E7",-0.103519146279236,18.7638712412239,-1.5923067284434,0.141709419065312,0.239727495944159,-5.86040409497987 +"Q9VHI7",0.129731157884269,15.5114160871291,1.59023300369106,0.14217584908437,0.240272863498206,-5.86328343517754 +"Q7K159",-0.100157354426882,14.6615931577604,-1.58132969908797,0.144193856498257,0.243436591739973,-5.87561990210385 +"Q9VE08",0.130480709546152,14.6876975285385,1.5766680230782,0.145260508569386,0.244989411823798,-5.88206246463114 +"O76877",-0.0999903697956341,17.3700851807581,-1.57148837043763,0.146453828804808,0.246703528550703,-5.88920736098602 +"Q9VCF8",-0.0868238449338108,16.9571991354603,-1.57097461580663,0.14657265994829,0.246703528550703,-5.88991526392856 +"Q9VGQ1",-0.0798595176266161,22.420520584318,-1.56942394563435,0.146931843788661,0.247058785725288,-5.89205107980291 +"Q9W380",0.100519368196288,18.3798544191077,1.56866340599484,0.147108291525285,0.247106374888394,-5.89309813997364 +"Q9VCI0",0.188371555099245,14.8798025100809,1.56658587659747,0.147591235637681,0.247496080702311,-5.8959567675208 +"Q9VLM8",0.0932368450353067,16.8583076698672,1.56638910063238,0.147637050538849,0.247496080702311,-5.89622740649585 +"Q9VNF3",-0.07329723168165,19.1427676687958,-1.56394615068442,0.14820687912038,0.248201881900396,-5.89958562892594 +"Q9VRJ5",-0.0965951119777806,17.2946265974873,-1.55226948954195,0.150957279425784,0.252337956730834,-5.91559268506827 +"Q9W4U2",-0.143654482194016,18.6019963727004,-1.55217724197758,0.15097918514231,0.252337956730834,-5.91571885006126 +"Q9VXB0",0.0715643778769923,20.2764434682824,1.54938801040493,0.151642851827464,0.253193470318529,-5.91953143993687 +"Q9VA97",-0.107811698329133,18.5644592737919,-1.54763046061606,0.152062353058966,0.253311448126274,-5.92193165575939 +"Q9V429",-0.0587209381105822,22.353507614857,-1.54744118949835,0.152107589864938,0.253311448126274,-5.92219003549151 +"Q9VG92",-0.0953425644030119,16.5959278039719,-1.54718387909749,0.152169107327654,0.253311448126274,-5.92254126640833 +"Q9VHM3",-0.0953319020685441,14.6851541678955,-1.54601506460077,0.152448820483091,0.253524060384641,-5.92413625401993 +"Q8SY67",-0.171987168872899,16.0682388986654,-1.53722604678394,0.154566606000804,0.256789939053128,-5.93610599951151 +"Q9VGG5",0.100362171286502,17.0479513034139,1.53417081924256,0.155308789644516,0.257766229977167,-5.94025697747271 +"Q9V405",0.060438045512214,20.2137850150676,1.52220501274194,0.158245592278724,0.262379371690767,-5.95646462090494 +"Q9W0C3",0.157100891918247,18.5357911239313,1.520387467884,0.158695886832651,0.262864686431839,-5.95891952133219 +"Q5U126",-0.0926684312132124,21.6328681191897,-1.51581329375012,0.159834073979296,0.264487336703835,-5.96508954983385 +"Q0E8U4",-0.0863196573252445,16.2850218418677,-1.5120986581219,0.160763603055639,0.265761833396239,-5.97009153776295 +"P53034",-0.105691641100451,15.7971889913085,-1.51102994078877,0.161031901967041,0.265941794535668,-5.97152919650156 +"Q9VF70",-0.0733143654819894,15.9564414186498,-1.50877970739749,0.16159809031962,0.266360606668187,-5.9745541512803 +"Q9VF89",0.239581672124773,14.1325646785943,1.50865556762937,0.161629375802506,0.266360606668187,-5.97472094746711 +"Q9VGW7",0.103721894053788,16.6207133468886,1.50809672367091,0.161770279830934,0.266360606668187,-5.9754717115799 +"Q8IPX7",0.175060139346025,15.3166145657454,1.5074865263013,0.16192425369397,0.266360606668187,-5.97629126388243 +"Q95WY3",0.0967870363084717,17.2365158158761,1.50043177213014,0.163713672090895,0.269038822707007,-5.98575117297944 +"Q9VVZ4",-0.156056071847836,15.9202143192371,-1.49941098891746,0.163974006353238,0.269061949301999,-5.98711763219038 +"O17452",0.068519372531064,19.863186826614,1.4991118644892,0.164050361175139,0.269061949301999,-5.987517939348 +"Q9VSW4",0.234594459356236,15.9267312233331,1.49127969655766,0.166060603524397,0.272091440745279,-5.99798129816763 +"Q9U915",-0.0705614175430149,21.1508740786565,-1.48851050165689,0.166776443766551,0.272996180768015,-6.00167240577077 +"P54185",0.0982043150731968,17.5772100381422,1.48771857343558,0.166981648371542,0.273064107336993,-6.0027271720108 +"Q9VUH8",0.0931945057228827,15.4783371675969,1.48621937759994,0.167370718269047,0.273432280188806,-6.00472295915089 +"Q9VJC0",-0.0592628097280947,16.5437871718288,-1.47554496407851,0.170163642798814,0.277723049108044,-6.01889570070253 +"Q59E04",0.0961725309069354,16.3796374421905,1.47425977422497,0.170502605592326,0.278004248414467,-6.0205976396211 +"Q9V3Y2",-0.0639914897144678,17.8965692470237,-1.47264978518183,0.170928053916738,0.278425775325311,-6.02272834684397 +"P20432",-0.08187544721536,23.6043526494245,-1.46951656026366,0.171758648764979,0.279505781599985,-6.02687062625217 +"Q9VLU4",-0.080763291737167,17.2123106766299,-1.46512471826288,0.172928742979226,0.28109877247513,-6.03266722108665 +"Q6IGN6",-0.0631389459816045,16.7506270485208,-1.4645790366567,0.173074603916042,0.28109877247513,-6.03338665408998 +"Q9VP78",-0.0551258413901312,14.9102054543274,-1.45791555507153,0.174864307120361,0.283729245405411,-6.04215777722551 +"Q95TK5",-0.0678541927530674,17.0649837866135,-1.45512368850289,0.175618870341141,0.284590955292769,-6.04582493984176 +"Q9VNR6",-0.144714449255959,14.6764588249979,-1.45427459517388,0.175848910068197,0.284590955292769,-6.0469393260039 +"Q7KLX3",0.0889376656132441,19.2859219052003,1.45339604719286,0.176087201928544,0.284590955292769,-6.04809192143824 +"Q9VRJ4",-0.0500869428341062,20.6983170433863,-1.45338077189824,0.176091347553389,0.284590955292769,-6.04811195755567 +"Q9VS11",0.103268031880681,14.9399795803517,1.45280203398364,0.17624847531021,0.284590955292769,-6.04887096802378 +"Q8IQB7",0.193408138327497,14.398581273605,1.44780203413583,0.177610993285722,0.286326575996092,-6.05542017230473 +"Q9V998",0.135861784308885,15.8384052883691,1.44759841745523,0.177666670357287,0.286326575996092,-6.05568656356104 +"Q9VY24",0.101794254760339,17.7309556543533,1.44587017794905,0.17813984364516,0.286812026254948,-6.05794662353118 +"O18373",0.0579470539832911,19.6068917286606,1.43850835733457,0.180167537023765,0.289796964084514,-6.06755391745385 +"Q9VDC0",-0.0596823585225419,17.5856818272707,-1.4372061759278,0.180528248777754,0.290058768004444,-6.06924991459424 +"Q9VXN3",-0.0753744602176845,17.0372404927192,-1.43666588528912,0.180678093499171,0.290058768004444,-6.06995330593998 +"Q7JWU9",-0.190718655072281,15.5937734676188,-1.43553777533486,0.180991307287092,0.290282212071991,-6.07142140089172 +"Q9VMU2",-0.0595672597011099,16.31976715712,-1.43422238834773,0.181357103276848,0.290589479602096,-6.07313224939027 +"Q9VW73",0.119068159884982,14.1469447070819,1.42874854753224,0.182886111229744,0.292758189569302,-6.08024058721242 +"Q9VTB4",-0.0801205940820964,20.6387786732111,-1.42667476180998,0.183468247633754,0.293408472725889,-6.08292889101379 +"Q9W3T9",-0.0651831943150363,18.6529669433313,-1.41804846280955,0.185906729384148,0.2967945290779,-6.09408344990458 +"Q9VLT8",-0.103455358649574,13.9613453795412,-1.41792645096274,0.185941416598565,0.2967945290779,-6.09424089779745 +"Q9VV46",-0.119332586553448,24.0339844706563,-1.4128861878679,0.187379150559616,0.298803463798699,-6.10073708052505 +"A1Z7K8",-0.0654486967531227,17.6807719085407,-1.40706635199786,0.189050997041958,0.301181531104094,-6.10821870119662 +"Q9VXH7",-0.112119654402147,18.1658317540769,-1.40552776764155,0.189495091470182,0.301600966194909,-6.11019313749454 +"Q9VIH3",-0.11516010150374,13.8265894557136,-1.40459740068767,0.189764060101292,0.301741136557631,-6.11138635375068 +"Q9VV76",-0.082667274729717,16.3604502122237,-1.40126419024207,0.190730348320801,0.302988781903902,-6.11565689459776 +"Q8IPW2",-0.0745423225435093,17.2360813797925,-1.40007641392327,0.191075687392442,0.303248569524826,-6.117177029132 +"Q95SK3",-0.0640928344330689,17.2629840617176,-1.39921542694148,0.191326345331271,0.303327939497618,-6.11827838892439 +"Q95RF6",0.120041786167523,17.2694542438897,1.398655859555,0.191489400654072,0.303327939497618,-6.11899393231088 +"Q94533",-0.0972635230208567,15.3166843016096,-1.39672022416267,0.192054343429342,0.303934198140553,-6.12146762050712 +"Q9W1F2",0.1478976601728,13.5534084267743,1.39421762211926,0.192786853652539,0.304804238760602,-6.12466243646476 +"Q23970",-0.0674593027792909,21.6084578156964,-1.39319791957188,0.193085996893325,0.304988108729229,-6.12596307239934 +"Q9VDD1",-0.131320517361928,14.4698029768659,-1.38987616872472,0.194063199171839,0.306241642590943,-6.13019550202342 +"Q7K3D4",0.0639879074450853,18.510885839959,1.38004253375933,0.196980601835259,0.310551648262015,-6.14268474067074 +"Q0E9F9",0.0810001665710978,18.4680721023403,1.37151894420656,0.199539166091952,0.314288318263811,-6.15346106723862 +"Q9V3T8",-0.130065386850898,15.6392130640234,-1.36997218861357,0.200006446621529,0.314727125438406,-6.15541170953572 +"Q9VKV9",0.0913003393942837,15.5846373073084,1.36922580375359,0.200232261014923,0.31478549611017,-6.15635244809089 +"Q9V428",-0.0477943789273212,18.7462841635732,-1.36670711528217,0.200995857271719,0.31568840859626,-6.15952438231392 +"Q9VJ25",0.163336923251562,15.6881949947126,1.35923615776187,0.203275237495166,0.318968105495708,-6.16890930381055 +"Q7KNM2",-0.0555585194278088,19.6423003879568,-1.35393279058882,0.204906404908275,0.321225454311093,-6.17554972640375 +"Q9W0M5",0.124700157777839,13.3065603828079,1.34863116412676,0.206547971671419,0.323494851406504,-6.18216995912345 +"Q9W330",-0.0556679746127493,20.6525302841512,-1.34644341885208,0.207228569959933,0.324256336485148,-6.18489656844835 +"P13496",-0.0595345855990885,18.2719389382299,-1.34220631655964,0.208552041150844,0.32587469811026,-6.1901685364527 +"Q961D9",-0.280323412952109,12.4322959872544,-1.34188215519853,0.208653583682109,0.32587469811026,-6.19057139317576 +"Q9VR30",0.103213242011899,17.2560637974242,1.33843410041758,0.209736230244891,0.327259150653394,-6.19485230940532 +"Q7K3W4",-0.0631549420603896,19.3178700162814,-1.33666449922031,0.210293678732531,0.327822295444731,-6.1970463573001 +"Q9VGE4",-0.0706481948155435,15.6960205499294,-1.33132132710172,0.211984343015513,0.330127840611914,-6.20365876341652 +"Q9XY35",-0.0830942888758983,19.1850179906198,-1.33074148583248,0.212168492287753,0.330127840611914,-6.20437522381189 +"A0A0B4K7J2",-0.124764285142264,15.6547832582705,-1.32861112524386,0.212846206791663,0.330707924651693,-6.20700564494424 +"Q9W1M9",0.0930471918805544,14.382704234588,1.32785588902165,0.213086895633415,0.330707924651693,-6.20793744647197 +"Q7YTY6",-0.086182657904688,18.4303276441376,-1.32770157437718,0.213136102518327,0.330707924651693,-6.2081277921882 +"Q7K1H0",-0.0609770185483214,16.3580768517266,-1.32443916456243,0.214178610651935,0.332016656661179,-6.21214829849538 +"Q9W2L6",0.083572564350284,20.7751042453114,1.32269614226107,0.214737329099188,0.332573690749718,-6.21429349441561 +"Q9VPB8",0.111327903072642,15.653841998681,1.32073145661127,0.215368550086254,0.333241875272608,-6.21670910836827 +"Q9W0C1",-0.063621806831442,21.2609680411294,-1.31878663445792,0.215994903985336,0.333820717007753,-6.21909780114048 +"Q9W3V3",0.295228573448398,13.1218363749085,1.31832775943952,0.21614291029279,0.333820717007753,-6.21966104323451 +"Q9VSJ8",-0.10892813169594,15.7857250437206,-1.31684232231538,0.21662260212629,0.334205790066558,-6.22148337880697 +"Q9NHD5",0.0928211633035545,16.5337017186292,1.31598787278108,0.216898928628278,0.334205790066558,-6.22253095936956 +"Q95RN0",-0.0618799581035354,16.9078545771638,-1.31569618099159,0.216993327723071,0.334205790066558,-6.22288847193673 +"P11046",0.067729462225163,20.9747432315574,1.31020543823472,0.218776630881969,0.336641531652329,-6.22960772292567 +"Q8SXG7",0.122067546928424,13.9677433757507,1.30914613078838,0.219122067585041,0.336695018962831,-6.23090174572397 +"O61722",-0.087584438954547,18.9631235597279,-1.30886106893815,0.219215102274361,0.336695018962831,-6.23124984293999 +"Q9VTT2",-0.241047498405347,14.0718427666241,-1.30406874162848,0.220784050881214,0.33879282140742,-6.23709381371546 +"Q9V3Y4",-0.0843652565979873,14.0450196088911,-1.3010718157372,0.221769909777378,0.339992839621937,-6.24074062922319 +"Q7K0S6",0.123867089241513,17.3845170409259,1.29927922053847,0.222361329289425,0.340586498856529,-6.24291908955714 +"P92204",-0.0988241197844832,15.8998500396396,-1.29459973019518,0.22391133091098,0.342428129912781,-6.24859574106092 +"A1ZB69",-0.0744171455812968,20.4786414679702,-1.29441026657484,0.223974274421369,0.342428129912781,-6.24882526899007 +"Q9W499",0.15574153337726,16.9264397609861,1.2934613615391,0.224289738328969,0.342596413491503,-6.24997446898026 +"Q9VBT1",0.0735805160155465,16.2775262653772,1.29229716047296,0.224677276840113,0.34287438039278,-6.25138358442942 +"Q24090",0.0838260941751905,15.8107082983283,1.28595628952338,0.226797699404769,0.345793932913304,-6.2590423941119 +"Q7KML2",-0.109042547625094,13.6421437000119,-1.2851762987158,0.227059664215821,0.345877187134238,-6.25998263362383 +"Q9W147",-0.0864905259800981,13.7732295045062,-1.28446175129952,0.227299867389088,0.345927170442517,-6.26084362399695 +"E1JGR3",0.0878159195830168,12.2108143885341,1.28093012832272,0.228490125920522,0.347421631755178,-6.26509396804014 +"Q9VR31",-0.0726775387975884,17.3186014962933,-1.27775956695826,0.229563044549602,0.348735116856772,-6.26890257670248 +"Q9VG33",-0.0705027330267995,19.972998234768,-1.27522486280852,0.23042375398159,0.349724132521649,-6.2719424605976 +"A8DYK6",0.1226358298933,16.6016758710027,1.27376869502525,0.230919418193979,0.350157808679598,-6.27368687483565 +"Q9NHE5",-0.130071169068019,15.5831537919131,-1.26990790651953,0.232237812364512,0.351734668158343,-6.27830491017543 +"A1Z877",0.0464642434083125,19.9196010223024,1.26944234927521,0.232397207112536,0.351734668158343,-6.27886109389771 +"Q9VGZ3",0.09049768685502,16.9978445584458,1.26865896379598,0.232665619731208,0.351734668158343,-6.27979664095351 +"Q7PLT4",0.19617955218396,15.7946951550433,1.26825887062433,0.232802801946529,0.351734668158343,-6.28027428482514 +"Q9VC66",-0.0597304683349975,17.7515983148648,-1.2653868710325,0.233789480466418,0.352905749699534,-6.28369975524704 +"Q9VJQ5",0.107400176647486,14.4055937343728,1.26312098551179,0.234570333627669,0.353764300624731,-6.2863983194253 +"Q7K2W6",-0.0850653720104155,16.9060726625612,-1.2568397805709,0.236746037718278,0.356723027022663,-6.29386050851154 +"A8WH76",-0.0581627685716803,18.9799980295909,-1.25454428432473,0.237545246337608,0.357494948243465,-6.296580823296 +"Q9VQ88",0.0710078387452455,16.4501168306925,1.25375554973588,0.237820361127685,0.357494948243465,-6.2975146865619 +"Q8I0J3",0.104843994138689,15.026509877106,1.25352360348988,0.237901314478565,0.357494948243465,-6.29778922961097 +"Q9V436",0.0505048739428169,19.1212191049764,1.25285582624539,0.238134505667993,0.357523272236014,-6.29857943623154 +"Q9VKW5",0.0970734461939067,16.9797528758255,1.2501969633898,0.239064836972622,0.35843218408474,-6.30172271320402 +"Q9W329",-0.0684594204034443,16.4866494989409,-1.24989786112828,0.239169676790357,0.35843218408474,-6.30207600227983 +"Q9V3G3",-0.122748290482388,14.9230907717833,-1.24863458017994,0.239612887558301,0.358774054261441,-6.30356746161618 +"Q9VRD4",-0.0542614419978733,20.2874656467988,-1.24671927489911,0.240286126577293,0.359459425229529,-6.30582660563382 +"Q9V3N1",-0.0673267472341976,18.4057307520564,-1.24436232800485,0.241116709919428,0.360378738481726,-6.30860317984782 +"Q9VAA9",-0.0841644312139138,17.1661585009902,-1.2408541997499,0.242357275500867,0.361908626262709,-6.31272873392949 +"Q9V3R3",-0.100552081097311,13.6310929879481,-1.23704318568277,0.243710801070098,0.363604307857713,-6.31720075763034 +"Q9W259",0.0898451914397462,16.9290720740408,1.23527719449403,0.244340083051238,0.364217389213106,-6.31926961421436 +"Q9W2J4",-0.059918735812369,15.2518508858656,-1.22841757060398,0.246796862306801,0.367551041364057,-6.3272849235081 +"Q9Y0V3",0.0520756560553366,15.1888859387289,1.22472045003007,0.248129230389642,0.369205670196185,-6.33159120659309 +"Q9VEN9",0.105976386720601,14.89116397833,1.20982569413263,0.253555758562729,0.376943854975608,-6.34884222538311 +"Q9VG97",0.0459333736988228,20.113722070407,1.20213846092364,0.256393419241714,0.380822994920017,-6.35768378715356 +"A1Z7G2",0.0598590413794291,19.54703410268,1.19678022992386,0.258386331888176,0.383441638424803,-6.36382159454928 +"O61604",0.0560343862568473,20.9087918322953,1.19417079127894,0.259361340427969,0.384546414074535,-6.36680321368238 +"P38979",0.0496889534068004,22.09343291739,1.19265601660568,0.259928675801926,0.385045320814931,-6.36853178893946 +"Q5LJT3",-0.0845058937776884,17.0613513748717,-1.19073878878686,0.260648161423143,0.385768529950136,-6.37071724835482 +"Q7K9H6",0.199340885605272,11.95099182165,1.18931712098046,0.261182699849406,0.386216971053909,-6.37233610242857 +"Q9VK59",0.0576659872057377,18.7533930080886,1.18753555827837,0.261853788192645,0.386866358463536,-6.37436270658538 +"P51140",-0.096982390792526,13.6059266737272,-1.18655087530166,0.262225292003112,0.387072377930258,-6.37548184042501 +"Q7K2N0",-0.111315026752779,15.4712876024501,-1.17659987362815,0.26600318503368,0.392301779519168,-6.3867520939465 +"Q9VG00",-0.0955376118082842,15.2924890535195,-1.1645163402153,0.270648538483986,0.398800143278523,-6.40034049583704 +"Q9VVL5",0.058628022973469,17.2263219799278,1.157862324618,0.273233798848465,0.402254171649814,-6.40777742921663 +"Q7K127",0.111248532430075,18.5910887054544,1.15511083747247,0.274308491500187,0.403480215010858,-6.41084311401811 +"Q8I937",-0.12390703750412,14.068060006956,-1.15092760442082,0.275948770386958,0.405535285467353,-6.41549330668948 +"Q961B9",0.102391625109734,14.8551098598949,1.14909057924516,0.276671512744795,0.406239509910491,-6.41753129324372 +"Q7KTP7",0.0539711825495957,17.8970159509606,1.14593323973867,0.27791717731497,0.407699317486376,-6.42102817311449 +"Q9V3W7",-0.0836335591151531,17.9045485347029,-1.14465877225998,0.278421236730672,0.407699317486376,-6.42243759613043 +"Q9VNF5",0.0645375784005413,15.9672352806359,1.14444663457013,0.278505207945638,0.407699317486376,-6.4226720800292 +"Q9V3F3",0.0841551950750166,14.5727019345619,1.14409758054037,0.27864341842594,0.407699317486376,-6.4230578298332 +"Q9VD14",0.0566251322016988,17.6146186005908,1.14212429011372,0.279425767764435,0.408485697310322,-6.42523686291673 +"Q9VRG6",-0.0562990559072283,16.354388743549,-1.13819618533675,0.280988258229887,0.410410170514406,-6.42956587585846 +"Q8IQC6",-0.158767813456974,15.9596916301663,-1.13152620009374,0.283657024081957,0.413945683437187,-6.43689015727738 +"Q9XZ63",0.115280893893733,19.0889939948596,1.13048630564475,0.284074878041452,0.41419309141009,-6.43802905297535 +"E1JIY8",-0.175352244955015,16.4371223348939,-1.12794708482397,0.285097212365357,0.415320655218703,-6.44080659856238 +"P17704",0.0462072091923282,20.31746461413,1.12548870169284,0.286089727521693,0.416173779838101,-6.44349109369795 +"Q9VPU4",-0.166866392677388,13.049746462045,-1.12526085872076,0.286181849804738,0.416173779838101,-6.44373966204684 +"Q9VAD4",0.199945453906876,13.2700743343526,1.11392352315606,0.290794985590275,0.42251396861026,-6.45605871018005 +"Q9VU84",0.0502067206943764,18.3997061075836,1.11250851793919,0.291374771159134,0.422987918445114,-6.4575894012936 +"Q9VNE2",0.057768898067561,19.0566594664043,1.10715824615971,0.293575085692492,0.425811515595719,-6.46336331687367 +"Q8T0N5",0.0615548155716752,18.6009268270367,1.10580990919907,0.29413161366786,0.426248072630747,-6.46481497407739 +"Q8IMT6",0.0982603819842964,16.0419511138059,1.10176488712541,0.295806089304353,0.428302566805261,-6.46916162132174 +"P41375",-0.0760135663997659,16.8159921352946,-1.09940534882967,0.296786231233187,0.429085721918475,-6.47169131929443 +"Q9XYW6",0.0434812715558337,16.6267459872354,1.09880990479886,0.297033970956426,0.429085721918475,-6.47232902971348 +"Q9VIL2",-0.13282454672008,16.0464512051016,-1.09860632096122,0.297118710321246,0.429085721918475,-6.47254700214203 +"O18333",0.0857324129175048,17.3984163906581,1.09674716783974,0.297893422049648,0.429832377144302,-6.47453608187543 +"Q9W3J1",-0.236846744877191,15.6866247347313,-1.09479169231518,0.298709947452198,0.430408946206658,-6.47662535022946 +"A1Z9M5",0.115916619802261,15.0979767571556,1.09455454179002,0.298809088553543,0.430408946206658,-6.47687852659317 +"Q7K8X7",0.0683622536342199,19.4076644657539,1.09194533559261,0.299901541170303,0.431514981677288,-6.4796611961821 +"Q8T0Q4",-0.0575913255155669,20.0364800458056,-1.09124037113454,0.30019722954818,0.431514981677288,-6.48041212780883 +"Q9XZ61",0.0449959969406066,18.5585683424342,1.09086907774563,0.300353053793364,0.431514981677288,-6.48080747734787 +"Q9VB10",0.0386323324246582,20.9726727528313,1.08942366618978,0.300960254753486,0.432015236599669,-6.48234552472638 +"Q9VND8",-0.0819502742779719,18.2870736123248,-1.0870884003279,0.301943262363241,0.43305362134298,-6.48482704924917 +"Q8IMT3",0.064800689321368,14.7283433142183,1.08476984805359,0.302921667041326,0.434083625966436,-6.48728664358737 +"Q9Y128",0.105815999195855,14.290420348116,1.0797084915125,0.305065936074555,0.43654630235533,-6.49264142830055 +"Q9V4W1",0.111622746223485,13.6950404101597,1.07947846660992,0.30516366219803,0.43654630235533,-6.49288431664942 +"Q9VUM1",-0.0650224257747851,16.5239657181576,-1.07448151805662,0.307292522937809,0.439215019931676,-6.49815055263563 +"Q7JVK8",-0.0465488452904488,19.1556973286507,-1.06277806116718,0.312322848214943,0.445739212319557,-6.51040847925276 +"Q9VN93",0.0445574920138334,20.3091174846045,1.06261916890908,0.312391570264725,0.445739212319557,-6.51057416156969 +"Q27272",0.100298842111441,15.8195508772337,1.06195887533099,0.312677274908723,0.445765550895513,-6.51126245970535 +"Q9VXA3",-0.0448143127826732,17.8243106692413,-1.06002072849644,0.313517042757186,0.44656730085242,-6.51328083047357 +"Q9VH25",0.0657138400333057,16.1794917184969,1.0594259208312,0.313775105874722,0.44656730085242,-6.5138996665516 +"Q6IGW6",0.103057417032678,15.7094771637006,1.05728613136192,0.314704805351958,0.447508623467234,-6.51612359588894 +"Q95SH0",-0.293274361130951,13.7630028904493,-1.05640889925164,0.31508654887751,0.447669815611318,-6.51703428058405 +"Q8IPP8",-0.0491060319284813,19.0882506214116,-1.05373080397309,0.31625413838381,0.448413866765151,-6.51981075157309 +"Q5U1B0",-0.106635246182885,14.8120351528379,-1.05331820335079,0.316434313420615,0.448413866765151,-6.52023800560715 +"Q9VUV6",-0.0711599754229919,14.8330664701628,-1.05304945832464,0.316551711101078,0.448413866765151,-6.52051622279698 +"Q9W3X8",0.104736625781156,13.8866851466956,1.05274311651684,0.316685572571552,0.448413866765151,-6.52083329237266 +"Q9W2V2",-0.1269856072972,14.2389032170935,-1.05122813533489,0.317348199154771,0.448970989134994,-6.52240023716453 +"Q9VVK7",-0.0497848673340187,18.2403639710146,-1.04802996551313,0.318750459778721,0.450572683822802,-6.52570214622236 +"Q8SX78",-0.0560933389707277,16.0028680247585,-1.04691744108328,0.319239348046277,0.450881653294826,-6.52684886002332 +"Q9V5C6",0.0540817522803252,20.6220851543436,1.04466140266061,0.320232477136121,0.451901668242851,-6.52917121843086 +"Q7JV69",-0.0753447539136545,16.0864231608568,-1.04301560249735,0.320958439956571,0.45254326107148,-6.53086285266811 +"O62530",-0.0889997162887646,15.7193892711393,-1.04004122704617,0.322273577326267,0.454013789679234,-6.53391460391049 +"Q4QPU3",0.172297745835239,14.4112893400985,1.0394262970957,0.322545976676945,0.454014083626282,-6.53454465319233 +"Q9VJJ0",0.0536692538190238,19.7641092497838,1.03598304257789,0.324074452441697,0.455345465188405,-6.53806700386906 +"Q8IH18",0.0641511332532367,15.6489392038906,1.03543645988956,0.324317581850936,0.455345465188405,-6.53862527323018 +"Q7K549",0.0947800412306794,14.7783868724696,1.03490220140223,0.324555361412066,0.455345465188405,-6.53917072455521 +"Q9VSU7",-0.0541699755117353,14.7738190980807,-1.03483835071922,0.32458378783514,0.455345465188405,-6.53923589768844 +"Q9VHX2",-0.143722117820779,14.828778906165,-1.03311820694341,0.325350301094402,0.456037228760893,-6.54099044353671 +"Q9VAS1",0.107928570379681,13.0248200771786,1.03220686671055,0.325756952592173,0.456223842925058,-6.54191905241333 +"Q9VL18",0.0455312214428858,20.8684925025028,1.02794485014287,0.327663770076205,0.458257066318618,-6.54625301080692 +"Q9VU45",0.0663877888107276,17.9204081413191,1.02773426460954,0.327758201509659,0.458257066318618,-6.5464667739129 +"A1Z968",-0.0429994708549906,17.2663005225585,-1.02062674607197,0.330957310853237,0.462342373955778,-6.55366066884056 +"Q9VNA3",-0.0611986332438619,18.6456375831638,-1.01914455016022,0.331627373317897,0.462702030550643,-6.55515576014081 +"Q9VZW1",-0.144087868667217,14.8610508487395,-1.0188303130563,0.331769561473962,0.462702030550643,-6.5554725038675 +"Q24050",-0.0410899316797444,16.6606765577379,-1.01554515073764,0.333258771639163,0.464331760912485,-6.55877910546963 +"Q08012",-0.0527305678229197,19.1498516834206,-1.01502531790431,0.333494873844818,0.464331760912485,-6.55930153291095 +"Q9VN95",0.0585443221552389,17.9351613542003,1.01395414031345,0.333981782520141,0.464412628865234,-6.56037736888231 +"Q9VVE2",-0.064059115481566,18.4208994947839,-1.01367268926127,0.334109804939017,0.464412628865234,-6.56065989015104 +"Q9VSC5",-0.0380299637601453,19.4526940489445,-1.01002159409581,0.33577386603488,0.466337059572172,-6.56431906350212 +"Q7K5K3",0.0557585897180815,22.6649737845149,1.00845092838858,0.336491616564708,0.466945105182973,-6.56588988482313 +"Q5U117",0.0974744495325233,14.4655727805127,1.00558367820632,0.337804800230447,0.468377728000321,-6.56875226079452 +"Q7JR49",-0.0469442708427117,18.8931625536071,-1.00336521040487,0.338823444525535,0.469399921485541,-6.57096237769882 +"Q9VD58",-0.0350506393053891,22.723303572096,-1.00044570201238,0.340167439939097,0.470870779932293,-6.57386479817593 +"M9PF16",-0.0427070814974293,21.1139785368399,-0.996813011804167,0.341845237427451,0.472800875645927,-6.57746653351795 +"Q8MLW4",-0.043612525379924,18.6739267008672,-0.995039279657474,0.34266666739398,0.473544325777265,-6.57922124003057 +"Q8ING0",-0.0806094062291578,14.6470636652304,-0.993412690269048,0.343421230933078,0.474194216222164,-6.58082812312439 +"Q9W379",-0.058179246092088,16.3210906124541,-0.991235579205983,0.344433089611142,0.474893438385428,-6.58297547246254 +"Q9VXK7",-0.0396597133462144,17.9834694318269,-0.991085071117306,0.344503122348232,0.474893438385428,-6.58312377972043 +"Q7K1Q7",-0.0490253446364761,16.5303281195213,-0.990486498668216,0.344781746933305,0.474893438385428,-6.58371341587378 +"Q9VJQ6",0.0865109712560006,14.3480426674184,0.988938736219825,0.345502969567399,0.475494185840281,-6.58523671061474 +"Q9VKA1",0.316195746651999,14.5849558305478,0.980104691354482,0.349640633957102,0.48079190225923,-6.59389346063804 +"Q9VL93",0.0777510559377443,15.3813584471773,0.970923703307077,0.353979061650626,0.486356733800037,-6.60282205455789 +"Q9VIU3",0.264190781253294,12.4787348876725,0.970205793478929,0.354319951576437,0.48642442734938,-6.60351729041732 +"Q9VJJ1",0.0792123050421463,14.1228960635461,0.968741866642666,0.355015817626466,0.486978934046829,-6.60493365831481 +"Q9W0Y1",0.056862568706709,17.7240050076461,0.967408855892635,0.35565031751207,0.487228373577583,-6.60622181757147 +"Q9VWD9",-0.0385137043536261,19.4565960399002,-0.967132695854515,0.355781869914566,0.487228373577583,-6.60648850138356 +"Q9VY41",-0.118144459260979,16.5327427912138,-0.964371059659999,0.357099355125814,0.488631439171336,-6.60915189131926 +"Q960X8",-0.0504183963853784,18.4435943822441,-0.96182131736997,0.358318891761327,0.489898288080241,-6.61160529754729 +"Q9VTM6",0.119488704532692,16.2429953700055,0.959373935664855,0.359492305004023,0.491100053027608,-6.61395512086734 +"Q9V4S8",-0.0992289303257632,17.1807098167497,-0.958642431782478,0.3598435685818,0.491168270449022,-6.61465649649626 +"Q9W0Q2",-0.0498332750842874,15.5257964792929,-0.957588476349944,0.360350107804245,0.491168270449022,-6.61566625834638 +"Q9VM33",-0.247581056937401,13.7288762340449,-0.955062737850061,0.361566094660916,0.491168270449022,-6.61808231692847 +"Q7KSM5",0.0456942199930452,18.9300736124172,0.954683492093337,0.361748933609182,0.491168270449022,-6.61844463392906 +"Q8IMX8",-0.0544366030249108,17.1687355390935,-0.954213484489953,0.361975622543063,0.491168270449022,-6.61889349456922 +"A8E6W0",-0.0737764443616467,16.4597067142857,-0.954176662267816,0.361993386564992,0.491168270449022,-6.61892865225681 +"P53501",-0.0332314917507119,24.6324574917877,-0.953709490078465,0.362218817516489,0.491168270449022,-6.61937460768966 +"Q9VIG0",-0.0458767831320657,17.3843707622021,-0.953481182889948,0.362329022530912,0.491168270449022,-6.61959247986523 +"Q9VEC2",-0.0435315202354758,16.7037995512201,-0.953425832345504,0.362355744156726,0.491168270449022,-6.61964529399218 +"Q9VNX9",0.162242195876182,13.597080997067,0.953154212193992,0.362486895037617,0.491168270449022,-6.61990443011844 +"Q7K2D2",0.036850447409833,20.3673150414135,0.950242393497138,0.363895007962939,0.492676033508265,-6.62267853942999 +"Q9W306",-0.0619056232372053,14.7281523650063,-0.93845988869109,0.369633046015696,0.500038865169652,-6.63383117410822 +"Q9VUW4",0.0479989985656228,14.5474279594045,0.936625921614265,0.370531980491628,0.500544311824092,-6.63555659244533 +"Q09101",0.0486954932140709,14.594746092953,0.935768932040503,0.370952576849955,0.500544311824092,-6.63636188559425 +"Q9VVW8",-0.0500943758837629,15.7841897007662,-0.93568993814212,0.370991362928302,0.500544311824092,-6.636436083111 +"Q7KMM4",-0.0862270948127097,14.4705657196182,-0.935250821183652,0.371207022617747,0.500544311824092,-6.63684844153755 +"Q9VYS2",-0.112498191350724,15.0336573483283,-0.933687717179769,0.371975423317919,0.501175287636743,-6.63831497252598 +"Q9VGQ8",0.0682192581041843,16.2798281012676,0.931833370483246,0.372888467193534,0.501999970362239,-6.6400520738367 +"Q9VEP9",-0.0569644145325512,17.5799597671533,-0.92965512515217,0.373963033205779,0.503040596280032,-6.64208887800493 +"Q7K180",-0.0633604502893999,16.3401831667027,-0.928983142769788,0.374294978726043,0.503081405733312,-6.64271641514088 +"Q9W5P1",-0.0736164332543172,14.2402773754099,-0.92576701137465,0.375886587309294,0.504813870879148,-6.64571452900299 +"Q9V564",0.0841525410626485,14.0918613844143,0.924597888556855,0.376466357605851,0.505185747776798,-6.64680222306845 +"Q7JVG2",0.0899369446950047,14.8419559299019,0.922041709008452,0.377736184951263,0.506482280143654,-6.64917632065097 +"Q7JXW8",0.0963801826750927,14.9004745945798,0.921024568556846,0.378242312083919,0.506753555466648,-6.65011946269199 +"Q9VF28",0.0651428986605254,17.7543272874272,0.919632878852441,0.378935593283837,0.507274935471461,-6.65140847834739 +"Q9VAN1",-0.0525968537315418,14.8729687184041,-0.917703143398479,0.379898395793482,0.508155993731778,-6.65319311483306 +"Q9VES8",-0.0533724590282514,18.001847587605,-0.902396780592541,0.387596509577796,0.518037642608786,-6.66723584379333 +"Q8SY33",-0.0404366571214183,17.4047648862918,-0.899208245013103,0.389213841684275,0.519782776564748,-6.67013585706564 +"Q9VZW7",-0.097659398715404,13.9465557564765,-0.897559672538647,0.390051905736437,0.520485263014702,-6.671631822772 +"O44226",-0.0315014347239249,20.1990338654296,-0.891298273286311,0.393246440664815,0.524328587553086,-6.67729225526105 +"Q9VAP3",0.116003702003095,16.4797177066512,0.888113905990726,0.394878075774847,0.525659033229253,-6.68015799404828 +"Q9VQL1",-0.0381236531256164,20.1164799644593,-0.888077445320176,0.39489678509802,0.525659033229253,-6.68019075564142 +"Q95U34",0.0447581999788333,19.4607711105026,0.887506761051579,0.39518970483782,0.525659033229253,-6.68070339173641 +"Q9VP57",-0.0643416360373621,19.4160523748787,-0.882498450182555,0.397766849009346,0.528665421631546,-6.68519016330741 +"Q9VS44",-0.0474939943438599,15.1466974027958,-0.879607944595939,0.399259527028113,0.530226824110583,-6.68776975705863 +"Q7K568",0.0759544135980121,16.0522275696362,0.878245757022061,0.399964315093145,0.530568222464066,-6.6889829051488 +"Q9VL89",0.0351700427203383,16.8720008939313,0.877881796281005,0.400152772098199,0.530568222464066,-6.68930677093851 +"P54352",0.0740297348745198,16.0559424221683,0.875894275593157,0.401182984610452,0.53151169049264,-6.69107330609519 +"Q95R34",0.0815673991873798,15.2485513117765,0.874828767962115,0.401736035169785,0.53182198941524,-6.69201892664952 +"Q9VAY6",-0.0349920436123465,15.2085288390863,-0.873748381051059,0.402297346658726,0.532142723415349,-6.69297674174828 +"Q9VF82",0.0580149508435124,14.9158456946799,0.871518727598889,0.403457467769988,0.533254402726102,-6.69495021768479 +"P46415",0.0557941166056821,17.9289956606201,0.866132336831114,0.40626959833421,0.536141918757843,-6.69969981440645 +"P04388",0.0743770526902843,16.5781441814092,0.866102900978592,0.406285003183402,0.536141918757843,-6.69972570053817 +"Q9VU95",0.216454859643964,16.5999431922349,0.860679790505969,0.40912996617437,0.539469394133477,-6.70448187085761 +"Q9W1C8",-0.0848490081086837,15.8992176970841,-0.856838221660837,0.411153497547729,0.541319875863809,-6.70783537876819 +"Q9W074",-0.0819596311909034,13.5321075825185,-0.856276826035443,0.411449782875399,0.541319875863809,-6.70832436397055 +"P40797",0.0406255592150764,19.1225212539575,0.856168527350775,0.411506955992392,0.541319875863809,-6.70841866207191 +"Q9VW90",0.100191031353869,14.995905288844,0.853861124380168,0.412726372071971,0.542244858411448,-6.71042531633359 +"Q9VQD8",-0.091014763047319,17.5001699137113,-0.853607998786482,0.412860293874424,0.542244858411448,-6.71064516393379 +"A1Z729",0.0563775180729333,16.6895061132364,0.851995848816762,0.413713934043038,0.542938506674892,-6.71204404218789 +"A8JNP2",-0.061523873114961,21.1434185374744,-0.847296231932951,0.416209263036466,0.545783844925177,-6.71610886043758 +"Q9VFN9",-0.0422457944815235,16.0365904669516,-0.842382761609753,0.418829061266586,0.548787803764859,-6.72033777140405 +"Q9VL69",0.0839236681045197,15.9766561463993,0.838827771096558,0.420731491378803,0.550847823877427,-6.72338413652644 +"P23625",-0.0370104399022182,22.1917393710994,-0.837418555333532,0.421487239429779,0.551404482642252,-6.72458862735594 +"Q9VB79",0.0496420031956131,17.6592194840505,0.836576924032302,0.421939035004591,0.551562939175281,-6.72530714884893 +"Q9VE52",0.0386912810768347,16.0070744267995,0.833586103112398,0.423547180723237,0.552806236015266,-6.72785539293624 +"Q9VUW2",-0.198072271583875,14.3537806814533,-0.833575332647954,0.423552979392992,0.552806236015266,-6.72786455522898 +"Q9VXE5",0.0510063307057358,14.6125619151115,0.830954242748631,0.424965729014133,0.554216447220933,-6.73009121167046 +"A1Z7H8",-0.0682282863388917,14.7339169772704,-0.829457366616306,0.425773956258081,0.554633975836666,-6.73136008576207 +"Q7K0D8",0.0356607471915211,17.3215488435076,0.828719230924906,0.426172887432243,0.554633975836666,-6.7319850543422 +"O15971",-0.0692537856899964,17.1115322904785,-0.828514782706195,0.426283427471586,0.554633975836666,-6.73215807169775 +"Q9W258",0.0492969500860028,19.3224938902384,0.827310831957602,0.426934764237516,0.554685209762098,-6.73317617663274 +"Q8IQ70",0.0406139093229712,17.9074040029846,0.827212677338117,0.426987895284493,0.554685209762098,-6.73325912275803 +"Q9VIK0",0.122766758269435,12.7888837216763,0.825858957749647,0.427721115764939,0.55520530824585,-6.73440221400187 +"P02572",-0.0426048612708811,26.5894244936808,-0.824654708419476,0.428374087526171,0.555620511659139,-6.73541771586678 +"Q9VVM1",0.0682436678657208,15.5860647856542,0.823473406193339,0.429015265687145,0.55601978489989,-6.73641260809903 +"Q9U6M0",-0.0371868067983634,16.2899473139055,-0.817971750583906,0.432009872854699,0.559466201802514,-6.74102965149132 +"Q9W0H6",-0.0527244277772922,18.1889632352742,-0.816768571083777,0.432666630991785,0.559882032966872,-6.74203575802171 +"Q9VYT3",-0.0730689323301483,14.3805604925854,-0.816153639547427,0.433002549682117,0.559882366565715,-6.74254946640075 +"A1Z7K6",0.0540136688325603,15.607503756067,0.814919560106053,0.433677214698833,0.560320367248376,-6.74357938169427 +"Q9VL70",0.0333110751565293,23.5171025033037,0.812908978801536,0.43477788804293,0.561219349775099,-6.74525440687627 +"P15425",0.0427633204900992,16.9948864953905,0.812419855255853,0.435045934807676,0.561219349775099,-6.74566134888243 +"Q9VV60",-0.0373691337197855,20.0697244804291,-0.806772103889027,0.438148938695358,0.564603466994726,-6.75034458738612 +"Q9VMQ9",0.0417724898212199,22.1014136692844,0.806009615627721,0.43856898831997,0.564603466994726,-6.75097465847877 +"P81900",-0.0382178159680535,22.4006018444719,-0.805556088649243,0.438818959688812,0.564603466994726,-6.75134917531832 +"Q9VYU9",-0.0695426849493792,17.8581728881067,-0.804980735847447,0.439136213721147,0.564603466994726,-6.75182402747563 +"Q9VA76",0.0612825836703337,15.2154680909054,0.80457199148342,0.439361690742899,0.564603466994726,-6.75216119237935 +"O76521",0.0635331781897079,16.0589973685743,0.803180419869698,0.440129902075331,0.565155255320748,-6.7533079412297 +"Q7JV09",0.049621991898583,15.2171652857816,0.802296038322708,0.440618582316618,0.565347534849322,-6.75403582281223 +"O97064",0.0490099131794501,16.4871097525208,0.800946633402402,0.441364909489192,0.565869845524959,-6.75514507611808 +"Q24372",-0.0584876017860072,16.8294565976518,-0.800278754841332,0.441734607369967,0.565908851838022,-6.7556934846114 +"Q7KUC2",-0.052987372828337,19.3875470669741,-0.799519731472211,0.442155005488518,0.566012700809554,-6.75631624441102 +"Q9VMX3",-0.096384550523295,12.4979514373125,-0.795170841646305,0.44456879429589,0.568648967466987,-6.75987435106483 +"Q9VW14",0.0544793072324961,13.8277892864,0.794582112539624,0.444896224547013,0.568648967466987,-6.76035471201412 +"Q9VLW8",-0.07768412666708,14.2342187831339,-0.790721317504092,0.447047386127823,0.570960980138751,-6.76349705644098 +"Q9VVS6",-0.0507024076349154,16.5163462340747,-0.789796166431815,0.447563873644872,0.571183275623295,-6.76424803808363 +"Q9VAV2",-0.0358106222751609,17.7770073601379,-0.785232214500163,0.450117522443575,0.574003079079421,-6.76794139368786 +"Q0E8X8",0.0831135760403541,19.7353570613096,0.77951752243225,0.453328423002501,0.577656080647954,-6.77253924169459 +"Q9W436",0.0977564336014254,14.4374452279605,0.778234550577072,0.454051326318508,0.577750953026199,-6.77356738355413 +"Q9VS84",0.0443042185036226,17.5330257169155,0.777201354236085,0.454634035195646,0.577750953026199,-6.77439426893618 +"Q9VQI6",0.0563247021961821,16.120637066652,0.776961962572504,0.454769118125686,0.577750953026199,-6.77458571919378 +"Q9V6B9",-0.0513742270732163,15.835220055815,-0.776927848313486,0.454788370097961,0.577750953026199,-6.77461299735043 +"Q9VJI7",0.0384803831942584,17.3566778049332,0.771295461772845,0.457974187979138,0.58135536190959,-6.77910212596403 +"Q9V9V4",-0.0402367402116575,18.6927859478668,-0.769828229961073,0.458806454505763,0.581630529047372,-6.78026677211461 +"Q7JZW2",0.0269715876129624,20.5293995814445,0.769152761493734,0.459189932576505,0.581630529047372,-6.78080227619593 +"A1Z8D3",0.108614039623562,16.6321093182225,0.769069784968564,0.459237054409705,0.581630529047372,-6.78086803023712 +"Q9VP13",0.127884985474623,11.9373294670801,0.768447194153744,0.459590719261291,0.581636813147067,-6.78136119562058 +"Q9VNI8",-0.0450473677711916,15.7564809377641,-0.766169599979169,0.460886010781749,0.582833863520817,-6.78316228900258 +"P49028",0.064444977833876,16.3454290801585,0.7635679893094,0.462368447435424,0.583992463977424,-6.78521378319569 +"Q9W2Y3",-0.0881022359276304,16.4635918396891,-0.763333129093921,0.4625024250085,0.583992463977424,-6.78539867562802 +"Q8IP97",-0.0427447262113354,19.9744979220433,-0.761045498506812,0.463808723754045,0.585159527592643,-6.78719694727096 +"P08928",-0.0289046993870876,22.7432001495385,-0.760486423505662,0.464128330338769,0.585159527592643,-6.78763569555867 +"P05389",0.0306092212016154,20.55224645321,0.757916597374724,0.465599239617772,0.586470258615064,-6.78964873022859 +"Q8IH23",0.0478701160620396,18.2371435558429,0.757442097204922,0.465871158672038,0.586470258615064,-6.79001975745694 +"Q9VMQ7",0.0462161314317147,15.9269545715369,0.754649042659222,0.467473816832584,0.58804398678488,-6.7921995310903 +"Q9VIE7",0.0461289945283099,15.0520558678408,0.753128237163518,0.468347935813764,0.588699590759124,-6.79338338143932 +"Q9VWT3",-0.0492902935090278,14.3268370420778,-0.750516238106565,0.469851675303185,0.590145025907916,-6.79541167167914 +"Q9VRL1",-0.0379517612350355,20.5050728447203,-0.748759443219898,0.470864797093231,0.59070480677489,-6.79677232472445 +"Q7JYZ9",-0.041322878801207,18.1240655102936,-0.748515421305986,0.471005631301321,0.59070480677489,-6.796961096029 +"Q9GYU8",-0.177923550114482,12.3532384870612,-0.747560457640742,0.471557034076917,0.590952015657624,-6.79769931030573 +"Q9VER6",-0.0336422398910674,15.0511555403211,-0.743734742291236,0.47377013772701,0.593114640148499,-6.80064822937193 +"P42207",0.0347049461630391,15.967188136115,0.742411950100974,0.474536876436157,0.593114640148499,-6.80166470135411 +"Q9VSL6",0.0859093458985551,14.6424707566889,0.742399930632688,0.47454384695761,0.593114640148499,-6.80167393002227 +"Q7PLI0",0.0392398443534283,17.7699912144632,0.742121972893778,0.474705062708781,0.593114640148499,-6.80188731136874 +"Q9VVU5",-0.0829586146300638,15.5565418550829,-0.739867706827501,0.476013818628975,0.594304677749349,-6.80361520721529 +"Q9VBU0",-0.0696699460464636,14.1174985127321,-0.738305611765178,0.476922057275508,0.594611309347253,-6.80480978558978 +"O61491",0.0271700431239559,20.8940385255895,0.738219113634741,0.476972381238983,0.594611309347253,-6.80487586691124 +"Q9W125",-0.0388865807287466,21.3234296599641,-0.736662569797646,0.477878539054213,0.595296044169101,-6.80606381919231 +"Q9W1Y1",0.0386692859205695,17.821017350858,0.733726037011388,0.479591021869389,0.596886451912396,-6.80829884060572 +"Q8SXS0",0.083007028977427,14.5813319032839,0.733246661973659,0.47987094245475,0.596886451912396,-6.80866293508432 +"Q9VTP4",0.0274094287410058,20.9552069546097,0.729356761547557,0.482146158305653,0.59902280904528,-6.81160946974323 +"Q7JXF5",-0.0356359667108102,18.4948445421339,-0.729082662805009,0.482306734141373,0.59902280904528,-6.81181656283538 +"Q9VJD1",-0.0363094606505072,18.5680685718679,-0.727258870618782,0.483376022653055,0.599720877839699,-6.81319272893057 +"A1Z934",-0.0367805804118539,19.3086869595412,-0.726897826903692,0.483587878114145,0.599720877839699,-6.81346479094484 +"Q95RB1",-0.0429800026236151,15.945213301867,-0.724320627615845,0.485101828392466,0.601151448557677,-6.81540328468033 +"P0DKM0",0.0475915066461106,16.9844487009516,0.721653227030952,0.486671877264658,0.602649362492538,-6.81740308552094 +"Q0KIE7",0.0820966141970558,13.8452294168401,0.720331722659484,0.487450893994228,0.603166239749534,-6.81839137594736 +"Q9VK69",0.0323635455803206,20.2924868230168,0.719465327340338,0.487962048128864,0.603351146240879,-6.81903842435128 +"Q9VWA8",-0.0557577575849866,14.4609297902222,-0.718177592887242,0.488722398364513,0.603843674423709,-6.81999884122547 +"Q9VE94",-0.0441580864242432,14.6606160445414,-0.716644963674289,0.489628306336862,0.604515185025822,-6.82113987933058 +"Q9W4W5",-0.0347199824490438,17.2326646535718,-0.706638262855159,0.495568617443552,0.61139678542592,-6.82853562332202 +"O62602",0.0597713785110834,14.5005838998351,0.704206071754257,0.497019122416543,0.612733108788466,-6.83031897270275 +"Q9VBI3",-0.0414631313823861,18.6532424770965,-0.702344476410429,0.498131095817809,0.613650419367876,-6.83168017788486 +"Q9VA34",-0.0541241125549128,14.5219493483432,-0.700749124095248,0.499085248580072,0.614372099359085,-6.83284410355504 +"Q9VQ93",-0.0543630207929446,16.7503416124855,-0.699203170454023,0.500010923437299,0.615057684582165,-6.83396969682768 +"P29829",0.0358848088719057,21.3002217031645,0.698343338583077,0.500526221278438,0.615114697259977,-6.83459475473121 +"Q27377",-0.0591196342076081,20.1766953881159,-0.697638157098136,0.500949079097855,0.615114697259977,-6.83510686749724 +"Q0E980",0.0351622261054665,18.3793019838641,0.697280560157597,0.501163593271168,0.615114697259977,-6.8353663798273 +"A1ZBM2",0.0495133263417884,18.584650146154,0.692033122971487,0.504317850990301,0.618274844438367,-6.83916059389851 +"Q9VB17",-0.0358103095298681,15.5568922822991,-0.691764485588709,0.504479654244975,0.618274844438367,-6.83935413343162 +"Q7K1U0",-0.0512388958064829,16.7295905687708,-0.690538400456605,0.505218539172684,0.618725788061701,-6.84023659683475 +"O16158",-0.0254032779143998,21.2819987592901,-0.688071973510632,0.506706888587566,0.619759193752098,-6.84200746697767 +"Q9XYZ9",0.035154640181986,21.9673136256804,0.687908747676933,0.506805479782891,0.619759193752098,-6.84212445790932 +"Q9VM69",-0.0450959581261969,16.9184127574515,-0.685732894174451,0.50812084152539,0.620912500853004,-6.84368156938622 +"Q7JXF7",-0.0370520253366529,17.8804146234129,-0.682679295717744,0.509970299405678,0.622716295321135,-6.84585923870325 +"A1ZB73",-0.12296357399825,13.8165044133177,-0.681259001429154,0.510831903230093,0.623312080898168,-6.84686909863395 +"Q9VH77",0.050329393092774,15.4408588109802,0.678123728611176,0.512736977143915,0.625065872852049,-6.84909154822091 +"Q9V455",0.0571969558452601,19.3770583296521,0.677660689582491,0.513018693006268,0.625065872852049,-6.84941898168981 +"Q9V3V9",0.0245976879598508,19.5229905122187,0.676106935644742,0.513964685301855,0.625761383272623,-6.85051621015921 +"Q24400",-0.0296969732578063,21.4843106957728,-0.673424212400508,0.51560050151091,0.627295139693798,-6.85240527382612 +"Q9VJ60",-0.0468959087702672,16.5250844157754,-0.672647479292504,0.516074702667511,0.627414434438344,-6.8529509353104 +"Q9VR89",-0.0551657458144827,13.9544681654112,-0.671365319713064,0.516858040227975,0.627909112236171,-6.85385040275533 +"Q9VR25",-0.0308750090126253,16.9117226124012,-0.670598165100279,0.517327073828336,0.628021513206452,-6.85438783028799 +"Q9VHF9",0.0523067173127281,16.994125903837,0.66626830287157,0.519979079739091,0.63036160798879,-6.85741055104327 +"Q9VG51",0.104466965243784,19.2151689353544,0.666217025397022,0.520010535127443,0.63036160798879,-6.85744624090995 +"Q9VHL2",-0.0242135553557574,20.676355922656,-0.665465103457794,0.520471920047664,0.630462717966233,-6.85796930041885 +"Q9VPR1",-0.0767695092194991,13.6845185809437,-0.658596416025536,0.52469782992002,0.634698628535526,-6.86272228689634 +"Q9VE56",-0.0404709800396681,17.4883025703053,-0.658544478072028,0.524729861361205,0.634698628535526,-6.86275805447425 +"Q9VJU8",-0.036885727664167,15.604610519936,-0.656811721436736,0.525799157004563,0.635469250955738,-6.86394984944678 +"Q4V6M1",-0.0243279127882161,18.234967558562,-0.656277773838277,0.526128918207358,0.635469250955738,-6.864316518859 +"Q9VB68",0.0309793333252681,15.4885177287763,0.650832709000877,0.529498684070454,0.639076559355656,-6.86804007116451 +"Q9V4E7",-0.094549448980036,15.0162204104356,-0.649930967248815,0.530057959991576,0.63928899296164,-6.86865396430841 +"Q86BL4",-0.0334456008049386,14.9474631401491,-0.647270930591275,0.531709773850285,0.640534109950765,-6.87046031598606 +"Q9VNQ3",0.0553524512341799,15.1280996092294,0.647031890439793,0.53185835868214,0.640534109950765,-6.87062230704763 +"Q9VMV5",-0.0325275670926359,17.6447550957462,-0.646359404158406,0.532276499041219,0.640575180664324,-6.87107773729675 +"Q9Y105",-0.111140411485508,17.0281305942969,-0.642349811818047,0.534773570614657,0.643116305540914,-6.87378411025935 +"E2QCN9",-0.0380061678707371,17.426550276591,-0.640152098895581,0.5361451344715,0.643666482880185,-6.87526092329104 +"Q9VE12",-0.0405218421200004,15.69563569157,-0.639984840507213,0.536249601744563,0.643666482880185,-6.87537312595884 +"P55830",0.0237913221584911,22.0510037167304,0.639761121900381,0.536389351740682,0.643666482880185,-6.87552316179505 +"Q9VRZ7",-0.0518479580691995,17.2649161249609,-0.639144529561803,0.536774626910274,0.643666482880185,-6.87593642605529 +"Q9W197",0.0277357761145396,17.3522986114581,0.636277642284424,0.53856809381826,0.645353146902915,-6.87785309523828 +"Q9W3C3",-0.0425901609095547,16.3935597205855,-0.635499479995554,0.539055493461304,0.6454734839149,-6.87837196609267 +"Q9VC05",-0.0625954012454635,14.9131932045361,-0.632633296500247,0.540852913747627,0.64716116221739,-6.88027804947248 +"Q9VDV3",-0.0301447231173579,17.5897987104993,-0.631027771945574,0.541861265148631,0.647603162518075,-6.88134228367083 +"Q9VJ19",0.0366956078264558,19.1127220888357,0.630808902722724,0.541998809877238,0.647603162518075,-6.88148716916563 +"Q9VK58",0.238484594538049,13.3847249652691,0.628190694613852,0.543645734117155,0.649020130280436,-6.88321674784384 +"Q0KI15",-0.0398575573351039,15.5952192172761,-0.627686977233477,0.543962914947272,0.649020130280436,-6.8835487383656 +"Q9VC31",-0.0434026586385983,17.6703172668165,-0.622957876860263,0.54694589980264,0.652112766884063,-6.88665357463676 +"Q7K4Z4",0.0552985586752381,14.9562818899996,0.621763896871323,0.547700502387765,0.652546027130566,-6.88743402962894 +"Q9V3W9",-0.0292335131880961,18.5411635798691,-0.620936470619919,0.548223788571084,0.652703268619963,-6.88797406975539 +"Q9I7C6",0.130958957278404,15.4058096699453,0.618868620687041,0.549532794878412,0.653795079784016,-6.88932078794123 +"Q7JYZ0",-0.0634227787601009,16.9073134594957,-0.616364222023069,0.551120523296453,0.655216701966132,-6.89094623612447 +"Q9W1G7",-0.0284087197967686,18.8732685071219,-0.61394203920306,0.552658598651042,0.656577309508503,-6.89251250436956 +"M9NFC0",0.0293113154960736,19.9614587488786,0.610590055651225,0.554791089766094,0.658456802825603,-6.89467056716247 +"P05812",-0.0364288049549799,15.7772960328485,-0.610214762906872,0.555030134755874,0.658456802825603,-6.8949115036087 +"Q9VEW1",-0.110109254357322,14.6630521829412,-0.607435821032034,0.556802001886339,0.660089366841801,-6.89669128833545 +"C0HK94",0.0324780685472597,18.4970903712499,0.603923890225718,0.559045762515027,0.662278644797631,-6.89892971033547 +"Q9W2K2",-0.0695026407889525,15.6633777905736,-0.601553216209418,0.560563233997127,0.6628619248967,-6.90043389255247 +"Q9W078",-0.0357381644566814,19.4541925670275,-0.601327836284369,0.560707619577905,0.6628619248967,-6.90057660837849 +"Q9VLP1",0.0323057278423988,18.4621904375678,0.601292402686366,0.560730321360458,0.6628619248967,-6.90059904122884 +"P04359",0.0370530574499881,18.8508277304986,0.598117202674976,0.562766705100344,0.66479806239899,-6.90260424637402 +"Q9VVJ7",-0.0247792088846346,18.2086405809315,-0.597331031732117,0.563271542864927,0.664923519815073,-6.90309920169691 +"Q9VVK5",-0.0426065434813943,15.8746162179267,-0.595866904181947,0.564212399117353,0.665121403032494,-6.90401936546736 +"Q9V9S0",-0.0485086766504566,17.1327227179487,-0.595829134222903,0.564236681829124,0.665121403032494,-6.90404307498637 +"Q960W6",0.0625482269938988,14.0616741047332,0.593663946390512,0.565629672911924,0.66629258080303,-6.90539989537948 +"Q9V9U7",0.0374448078663079,17.7882386625905,0.58925474936982,0.568472239743302,0.669168451582094,-6.90814867704292 +"Q9VTW6",0.117972447198715,16.3582160019602,0.58411279965033,0.57179712051822,0.672607614262617,-6.91133009161445 +"Q9VKJ4",0.0301439169176767,15.1079244434305,0.577538540820201,0.576063629041653,0.677148790163127,-6.91535970800366 +"Q9VD30",-0.0519295957105506,21.4092989689148,-0.574480796152698,0.578053905462022,0.67855977531832,-6.91721936572816 +"Q9VMH2",-0.106422715451071,17.381563295025,-0.574444424072413,0.578077602354516,0.67855977531832,-6.91724143081898 +"Q9VGR1",-0.0416001666676724,14.2078313203524,-0.569235120287101,0.581476961221675,0.682070022023737,-6.92038812177774 +"Q9VVP9",0.0348324068191435,16.7611578186317,0.5684358913355,0.58199945429655,0.682203155141704,-6.92086851865434 +"Q9VAY2",-0.0194985870319648,21.1514561755768,-0.558699735219093,0.588384653993386,0.688826000753666,-6.92666977770073 +"O61444",0.0525592925667517,16.508128941228,0.558561697170653,0.588475450284157,0.688826000753666,-6.92675135002712 +"Q9VH39",-0.0815981462986279,18.4531203381608,-0.557349556057258,0.589273071747132,0.689275935255411,-6.92746683961932 +"Q9VK11",-0.0342678940834382,18.69853309309,-0.555661137016454,0.590385053857324,0.689707153149827,-6.92846102435978 +"Q9VXF9",-0.0224371835683819,17.5272621582586,-0.555534177092288,0.590468713847693,0.689707153149827,-6.92853566691158 +"P92181",-0.0333343395090289,16.5103540052504,-0.551830184273422,0.592912216612495,0.692020368702449,-6.93070625857106 +"Q9VYS5",0.0347375883391745,14.3139934136748,0.551275113649046,0.59327885326409,0.692020368702449,-6.93103035965315 +"Q9W087",0.0549040554961167,16.7246504467441,0.549804832887781,0.594250584704501,0.692669444645078,-6.93188735941744 +"O97454",0.0520334737322674,14.1308126079679,0.547467345941827,0.595797190627327,0.693782279601366,-6.93324539760847 +"Q7JVM1",-0.0334540059777435,15.8536032148169,-0.547104929004033,0.596037174261845,0.693782279601366,-6.93345546702764 +"Q9VEA5",-0.0263817713173591,15.6796529519836,-0.544565173077516,0.597720361485346,0.695256320054084,-6.9349239168573 +"Q9VII5",0.0300590318961049,17.3360605858406,0.541315385097068,0.599877736068347,0.696487202365669,-6.93679349523075 +"Q9VCY3",0.0329653371834837,17.8691286842486,0.541184194389155,0.59996491236658,0.696487202365669,-6.93686874646995 +"Q8SXC2",0.0698259034170885,14.6626706607452,0.541084383944466,0.60003124088697,0.696487202365669,-6.93692598639799 +"Q9VX02",0.0301754425412302,17.1891716443502,0.539098281266393,0.601351889580918,0.697534737010411,-6.93806291648345 +"Q9VYT1",0.0595774320365194,14.2963884343657,0.534565834637177,0.604371366569217,0.700549992659802,-6.94064269079959 +"Q7K1C3",-0.0267303220886763,17.1438550203407,-0.530748342475857,0.60692061791388,0.70295077467417,-6.94279955175793 +"Q9VND7",-0.0410892693399649,14.0091250813291,-0.530202742339242,0.607285411454124,0.70295077467417,-6.94310661846111 +"Q7K084",0.020438400027583,23.7579607001931,0.525805579784788,0.610229506931732,0.705868805521587,-6.94557045216053 +"Q7KTH8",0.0231894157135919,17.6231166910845,0.524144507578916,0.611343566310493,0.706528797177458,-6.94649613367185 +"Q9VKR0",0.205436632600362,13.302937032416,0.523692007472435,0.611647232088878,0.706528797177458,-6.94674782183995 +"Q95T12",-0.030008302265756,15.8989199770747,-0.521039058908421,0.613429131050721,0.708096740894535,-6.94821929207704 +"Q9VG76",-0.0231888588256872,15.7933645858691,-0.520271334244953,0.613945278804385,0.70820243779095,-6.94864379254601 +"Q7JVH6",0.0228412442355719,18.948579146766,0.514242728346799,0.618006009172652,0.712393934554239,-6.95195657021311 +"Q9VL00",-0.0507726295085114,16.0278347843229,-0.508243987928709,0.622060016374012,0.716571897314815,-6.95521654643825 +"Q9VJ31",0.0268849539468174,17.1791415545383,0.500585801634932,0.627254741983569,0.722057218515247,-6.95932548278618 +"Q9VUZ0",-0.046328936424672,17.6640364748622,-0.499933440126635,0.627698245381719,0.722069429859798,-6.95967275823401 +"A8DZ14",0.0198817988506583,19.4869535697205,0.490677553793968,0.634007432006495,0.728824532451298,-6.96455350656281 +"Q9W4P5",-0.0204708008241745,19.5290124332349,-0.487953454269947,0.635870174074632,0.730462431374991,-6.96597339502372 +"P38040",-0.0364043070577651,19.0923082309245,-0.48260217160234,0.639537116498101,0.73415973864162,-6.96874068560003 +"P45594",0.0265588304425286,23.0619737086395,0.481972916884804,0.639968980806304,0.73415973864162,-6.9690641750633 +"P36951",-0.0230761012719967,20.3451023317773,-0.474842381302309,0.644872537415738,0.739276558357011,-6.97270167638477 +"Q8MRM0",-0.0271619226258153,18.6197688055569,-0.473893802353233,0.645526210711803,0.739517664469291,-6.97318166758479 +"Q7KS11",-0.0649353291403685,15.6904991012403,-0.472814067361994,0.646270648859882,0.739862348866357,-6.9737269075541 +"Q24319",0.0291244843590022,16.2418447735978,0.471637918370135,0.647082025653715,0.740283140459805,-6.97431947986302 +"O62619",0.0194037455618528,22.1165455102714,0.466829257047183,0.650404345460453,0.743573987819079,-6.97672749957224 +"Q9Y112",-0.0167587234739273,22.2276088513127,-0.465817019325436,0.651104728366971,0.743864854052128,-6.97723138337545 +"P20351",0.0422267413845496,13.9802282331593,0.465166398838858,0.65155509022393,0.743869877134507,-6.97755470371771 +"Q9VJG0",-0.15114684382786,13.2974179066091,-0.456930157278689,0.657268866028383,0.749879937438675,-6.98161016705282 +"Q9VUK8",0.0195567002026564,20.7392465972482,0.454983983632506,0.658622393525141,0.750194562876711,-6.98255829447556 +"Q9W415",-0.0369796253582564,16.7128460611548,-0.454570702285537,0.658909989215464,0.750194562876711,-6.98275913476279 +"Q9VY92",-0.0224229280165886,21.3461480520954,-0.454556675254857,0.658919751415743,0.750194562876711,-6.98276594833461 +"Q9W1H6",-0.0194141664209866,17.1851750214809,-0.453398069839476,0.65972632123796,0.750194562876711,-6.98332803905292 +"Q9VDC3",-0.0225925362900945,19.288996819041,-0.453301715371679,0.659793419508475,0.750194562876711,-6.98337472281994 +"Q9VSK9",-0.0329487074571411,14.5702327747103,-0.450318193846747,0.661872609889223,0.751789927906232,-6.98481552315995 +"Q9VD00",-0.0186927349236043,17.9384969835199,-0.449368801734224,0.662534864864929,0.751789927906232,-6.98527208570602 +"O18332",0.0175127767686796,20.5568128213487,0.449349004972527,0.66254867747132,0.751789927906232,-6.9852815961106 +"Q9VZS3",-0.0251315005600041,18.4145280439848,-0.448086347204107,0.663429932748065,0.752278129044033,-6.9858873475278 +"Q9VNX4",-0.0200479178262647,20.8624862759392,-0.44355129297287,0.66659953345835,0.75535871046775,-6.98804949342337 +"Q9VDI3",0.045928752503249,15.0207989485163,0.44104233020767,0.668356032862311,0.756834937416385,-6.98923658285372 +"Q9VG73",-0.0318863736057793,18.080802729478,-0.43917858008062,0.669662182124361,0.757799538523361,-6.99011420126807 +"Q9VN44",-0.0209917068034038,19.550726434416,-0.436850417021627,0.671295418705179,0.759132717559483,-6.99120547932011 +"Q9V535",0.0242230955752305,18.5823222582011,0.434817767093795,0.672722813705061,0.759796285550762,-6.99215367348954 +"Q24298",-0.019656575858253,19.3917982974124,-0.434717537294553,0.672793233668151,0.759796285550762,-6.99220031864852 +"Q9VA18",-0.0303758449402949,21.6013682300405,-0.431332772538732,0.675173256845065,0.761968195140439,-6.99376944331397 +"Q9VTZ6",-0.0336039256288529,17.0836163108343,-0.430519891820852,0.675745399291839,0.762098259647591,-6.9941445215857 +"Q9VLG9",0.02759441117378,15.7693409399335,0.42970503828979,0.67631914700783,0.76222995757369,-6.99451982546089 +"Q9VW58",-0.0437988058166052,14.8488714303648,-0.428506507321761,0.67716344002162,0.762666183630021,-6.99507059687157 +"Q9VGF3",0.0301998036530637,15.6960178483474,0.42669663289952,0.678439273862869,0.763587522809221,-6.99589949200684 +"Q7JW03",-0.035661263740888,17.2129323501878,-0.425849886326777,0.679036535734523,0.763744397575984,-6.99628612690002 +"Q9W3G8",0.0316369862109944,15.7681908913236,0.422720354257351,0.681245998577787,0.765713157431097,-6.99770867722151 +"O76902",-0.0234528708230926,17.1573340654868,-0.418470539216748,0.684251434968236,0.768573328974423,-6.99962423777424 +"Q9VC58",0.0630353577798868,13.1881916888592,0.416855766123286,0.685394906293988,0.769339639097155,-7.00034717800051 +"O76454",-0.0338313016490801,18.0107488750705,-0.413276175426476,0.687932686085543,0.771668944445653,-7.00194014217742 +"A1ZAA9",-0.0237456584132332,16.5042701766614,-0.409106370776688,0.690894016196079,0.774469905252056,-7.0037790062981 +"A0A6H2EG56",-0.025849668972814,20.9355944385446,-0.407206797806046,0.692244876500052,0.775224185602283,-7.00461072701746 +"Q9V434",0.035537656858267,15.0367476794549,0.40685324731635,0.69249642478861,0.775224185602283,-7.0047651142123 +"Q9U5L1",-0.0163235724226709,17.6899626943884,-0.403764667995717,0.694695583190318,0.777164475359793,-7.00610830299417 +"Q7KTJ7",-0.0201357288566513,22.075959604189,-0.398367365321849,0.698545727658834,0.78094790464808,-7.00843172695998 +"Q9VLM9",0.0253982112778619,18.4109476342477,0.394414109726844,0.701371456474421,0.783581774547444,-7.01011428966165 +"B7Z0N0",0.0270169605448576,13.0781479286455,0.380353197115884,0.711460363085915,0.794321208585881,-7.01596681125131 +"Q9W3N9",-0.0161028929967237,20.2228251740243,-0.373986813344224,0.716047704644674,0.798908074479811,-7.01854876723991 +"M9PGG8",0.057569720417078,18.6083509826547,0.371745136364403,0.717665788152404,0.800178164865114,-7.01944781159122 +"Q9VH07",0.022276429303254,18.2262097601556,0.367717844195105,0.720576427016205,0.80209654450203,-7.02104977630817 +"Q9VMC8",-0.0235068601204738,16.3714257367262,-0.36742517989182,0.720788126521794,0.80209654450203,-7.02116552932046 +"Q6NL44",0.0337109836215905,15.2072467662662,0.367368721139158,0.720828968949966,0.80209654450203,-7.02118784925628 +"Q9I7X6",-0.0288973633508149,14.7517624859443,-0.362170824637503,0.724593059371987,0.80574748202165,-7.02322842841876 +"A1Z6X6",-0.0228046026681348,18.5979924374458,-0.359845754749927,0.726279267835688,0.806944729605051,-7.02413202707129 +"Q9W1F7",0.0183857232082403,20.3034580215084,0.359352371939229,0.726637280495675,0.806944729605051,-7.02432304224312 +"Q9W0R0",-0.0206447173891728,16.8037676154505,-0.352655109481187,0.731503779741658,0.811808585900922,-7.0268906300683 +"Q9VEP6",-0.0212112742799242,18.6817046023052,-0.34649026067833,0.735994443195939,0.816249156416773,-7.02921243113767 +"Q9VPQ2",0.0215790481703788,16.450678314247,0.343587301043843,0.738112665409496,0.818054435815973,-7.0302918930467 +"Q9NCC3",0.0241153203348041,17.3364694238296,0.34264395133563,0.738801500437405,0.818274171799197,-7.03064076625592 +"Q9V4C8",-0.0156481037502481,17.2340145273717,-0.338569162013174,0.741779685685017,0.821027548588327,-7.03213694985277 +"P55828",-0.0203910292693728,19.9615133989608,-0.337235219320037,0.742755610807131,0.821392080939657,-7.03262294575234 +"Q0E8X7",0.0292093048457751,21.048314766439,0.336772960643246,0.743093914950805,0.821392080939657,-7.03279092293906 +"Q9VHN4",-0.0284008055998672,14.6084352814224,-0.334758425469022,0.744568919849752,0.821959635721625,-7.03352034082878 +"Q9V393",0.0309155846496765,15.6909142393024,0.334725643148439,0.744592931400105,0.821959635721625,-7.03353217517407 +"Q7JZN0",0.0283131085799155,16.7984817244563,0.33391270198178,0.745188465075681,0.822072989250156,-7.03382528248084 +"Q8SXY6",0.016171557951413,19.0626310953736,0.32826030963807,0.749334053985168,0.82609993525926,-7.03584397717327 +"Q0E8C8",-0.0187180417120363,17.5555792352133,-0.326441278858437,0.750669956128891,0.827026081124828,-7.03648644979108 +"Q9VDT5",0.0304685008275918,19.1426229559425,0.324142245351099,0.752359606669618,0.827865213510112,-7.0372934550381 +"Q9VH37",-0.0259111631557296,16.6634989209646,-0.324054313075958,0.752424258801756,0.827865213510112,-7.03732421004767 +"Q9VHJ7",-0.0420229348400465,14.7063854097834,-0.320409828411773,0.755105618370773,0.830267746501285,-7.03859170607902 +"Q9V3Q4",-0.023642802784309,16.0042590098976,-0.317500235177698,0.757248741732144,0.83207569249619,-7.03959353233069 +"Q95RQ8",-0.0433778982715864,14.0436587414643,-0.316338117385623,0.758105327249216,0.832468522614676,-7.0399911669574 +"Q9VIT0",-0.0140914098825853,16.4487148570414,-0.313462870092223,0.760226112782824,0.834248129027467,-7.04096882725807 +"Q9VI53",-0.016694979471632,16.3648143169684,-0.309599383414926,0.763079095871386,0.836828357602546,-7.04226872615305 +"Q9VYT0",-0.0132196564084595,18.2173821959271,-0.307717440683014,0.764470159869466,0.837802820030787,-7.04289619010324 +"Q966T5",0.0143066225780384,16.5305596843363,0.306746444234152,0.765188228394119,0.837802820030787,-7.0432184642697 +"Q9VEB3",0.0363539738066301,12.4236151617691,0.30612849662699,0.765645332444678,0.837802820030787,-7.04342304073016 +"Q9VZS1",0.0182219252363165,15.44918855086,0.305680474914925,0.765976798889059,0.837802820030787,-7.04357110861286 +"P32234",-0.0217385765579365,16.7810155378058,-0.300288156285512,0.769970132418308,0.841618729275057,-7.04533652297158 +"Q7K0B6",-0.0151628781392468,20.2340549820899,-0.298440888257139,0.771339769695619,0.842563677702876,-7.0459342100045 +"Q8SY96",-0.016287990210575,18.7296309039022,-0.296595579002582,0.77270877532851,0.843000719613347,-7.04652764482358 +"Q9VF77",0.0226411051848121,15.7100788418394,0.296539139679076,0.772750659645568,0.843000719613347,-7.04654573819081 +"O97111",0.0344293504898125,14.7625033571201,0.294250652121367,0.774449615679771,0.84364512450872,-7.04727653247891 +"Q9V9U4",-0.0126729728659445,15.9402067313149,-0.29395495850302,0.774669227474323,0.84364512450872,-7.04737055178705 +"O62621",-0.0329878915124056,13.1094316426763,-0.29369985256176,0.774858711479232,0.84364512450872,-7.04745159108454 +"Q7KND8",-0.0140071991564916,15.4939763675453,-0.285982819317118,0.780597910804581,0.849339409799113,-7.04987034379181 +"Q9VFU7",-0.0226940899223109,14.8075584070783,-0.282450931492785,0.783229221671462,0.851646898140808,-7.05095620647622 +"Q7KSE4",-0.0223218489167643,13.8904074996149,-0.273095395337277,0.790212980034425,0.858186898280687,-7.05376830087491 +"Q02748",0.0143441856336679,19.5173087709989,0.27301533699925,0.790272827193726,0.858186898280687,-7.05379196221681 +"O97422",0.0206586688542298,15.3903907593606,0.267435179661958,0.794447733554843,0.862159284039999,-7.05542433512737 +"Q9W254",-0.0105846457421777,18.1696768350023,-0.262889187515616,0.79785393884472,0.864636707086337,-7.05672961128997 +"Q86BI3",-0.0150976913017686,18.0558199144984,-0.262867988065321,0.797869833554334,0.864636707086337,-7.05673564651338 +"O97479",0.0139318322703623,17.8277819582208,0.262005902656731,0.798516280981401,0.864636707086337,-7.05698066488378 +"Q9VLT7",0.0253044764686052,18.0628744472653,0.261328683596135,0.799024215358832,0.864636707086337,-7.05717258439086 +"Q9VDK7",-0.011560161736675,17.868203658519,-0.260931149420157,0.799322423457513,0.864636707086337,-7.05728501473365 +"Q95029",0.0126754140699248,21.8502948204478,0.255642868996597,0.803292589066121,0.867972629426189,-7.05876457231703 +"Q9VW59",-0.0154587046170036,19.68972059136,-0.255437236583716,0.803447086231436,0.867972629426189,-7.05882150027544 +"Q9VZG2",0.0182595122095215,21.9298238335844,0.253935919616269,0.804575333894826,0.86806879561937,-7.05923575929898 +"A1ZA83",0.0134954443874093,17.0412049820456,0.253933765245207,0.804576953253924,0.86806879561937,-7.05923635202309 +"Q9V3Z4",0.0114756949016801,18.7245885246524,0.251891771025376,0.806112276430048,0.868765882862309,-7.05979592535115 +"Q9VZ66",0.0122418052982702,17.0908612288253,0.251689055449011,0.806264740210344,0.868765882862309,-7.05985123261254 +"Q9V4N3",-0.0231732308761288,19.6905778009504,-0.249506527270286,0.807906770951706,0.869973204614232,-7.06044390997555 +"Q9VBL3",-0.0435412418786605,14.5593125494054,-0.248494792990442,0.808668283397076,0.870231417229886,-7.0607169222269 +"Q9VEJ3",0.0148053491916649,19.9898526559333,0.246627535980115,0.810074278993264,0.870935179238961,-7.06121791576668 +"Q9VQG4",0.0128549393545008,19.1410783423487,0.246239504122498,0.810366545670784,0.870935179238961,-7.06132155790696 +"Q3YMU0",-0.00914652292467011,23.1756471033597,-0.245474031693179,0.810943190957551,0.870993717010428,-7.06152554044349 +"Q9VKZ8",-0.015563926145802,18.6705002164307,-0.24355833369899,0.812386841133504,0.871982787008163,-7.06203328329181 +"E1JJH5",0.00897297677325781,21.2263789734344,0.242404952273654,0.813256372416045,0.871989624511202,-7.06233708302607 +"Q9W0H3",-0.0226703664955323,16.6836540184876,-0.242163067490114,0.813438762433711,0.871989624511202,-7.06240061446203 +"Q7KUK9",0.0209135895076002,18.4059822837087,0.239086545552566,0.81575958677945,0.873418566592922,-7.06320319704599 +"Q0KI98",0.0135110380530357,16.5736958257179,0.239007791383225,0.815819020834397,0.873418566592922,-7.0632236087252 +"Q9VQ35",-0.0435830720369967,12.1729358053235,-0.22760358339391,0.824438231620721,0.881533857046583,-7.06610914092618 +"Q9VKK1",-0.0178623480159548,14.5076402574444,-0.227109128577816,0.82481249840325,0.881533857046583,-7.06623109240331 +"Q9W2N0",0.00958567346415151,16.0128596507884,0.226881750342288,0.824984622811581,0.881533857046583,-7.06628708445124 +"Q9I7I3",0.0220450937775993,14.5419573289251,0.225932039209887,0.825703655065431,0.881737321798424,-7.06652035120357 +"Q9VTB0",0.0159607482197206,17.0719497556874,0.222821114002518,0.828060132784147,0.883183014910212,-7.06727766798248 +"Q9VDF4",-0.0102483433246121,18.6836790565405,-0.22274679786466,0.828116448033316,0.883183014910212,-7.06729563218415 +"Q86PD3",-0.00748465057896297,18.8776454887587,-0.219148032299187,0.830844731680728,0.885526525522974,-7.06815844757235 +"Q9NBD7",-0.0255593719459384,13.0922474664559,-0.215713252372836,0.833450889268192,0.887736962515545,-7.0689689618169 +"Q9VQV7",-0.0132477441788481,16.282765316873,-0.214449773121335,0.83441009363941,0.888191471723379,-7.0692639166472 +"Q7JVZ8",-0.0184968365452534,16.1115628249007,-0.210785345517475,0.837193643752526,0.890256573520691,-7.07010965163809 +"Q9W0K9",-0.0229989161991941,14.1863185174898,-0.210490646026973,0.837417604228996,0.890256573520691,-7.0701770393815 +"Q9VZV2",0.0186108160129397,14.9861560780801,0.207950815235306,0.839348406927972,0.891740855258508,-7.07075393808861 +"Q9VTV9",-0.0151812695229978,17.2447995753615,-0.205418444572086,0.841274648523693,0.893218404670605,-7.07132222860392 +"Q9W3T7",-0.00944424756185924,17.4244787366653,-0.20382123435017,0.842490126910233,0.893939905652843,-7.07167710813985 +"Q9VZZ6",-0.011454086657718,18.3815062598743,-0.198580537839058,0.846481323425215,0.897603844547526,-7.07282222240898 +"Q9VAY3",-0.0172591983259647,13.8129716146475,-0.197445720248758,0.847346177475808,0.897950078799014,-7.07306628680056 +"Q9VFR0",0.0315265851937099,15.4243010247806,0.194114693443319,0.849886000863215,0.90006974567609,-7.07377467059422 +"Q9VZ20",0.00692572584910423,18.7079031391731,0.19191930025435,0.85156091661297,0.901271325450782,-7.07423500706143 +"A1Z9J3",0.0105146814507897,17.7153965508791,0.190708047246654,0.852485340312279,0.901677582524339,-7.07448676101746 +"Q6NP72",-0.0100188587109962,18.7140377572829,-0.188968511073892,0.853813356015358,0.902411862382448,-7.07484554794087 +"Q9VZY0",0.0104392110752105,17.2247539041416,0.188066914417668,0.854501850975593,0.902411862382448,-7.07503022166549 +"Q7KQM6",0.0110081469668017,15.1693562183869,0.187673126105816,0.854802603455796,0.902411862382448,-7.07511060598632 +"Q9VUQ7",-0.0149500369871163,16.5355925385857,-0.182870893214286,0.858472209813602,0.905712616046229,-7.07607742485383 +"Q9V595",-0.0092416584114261,18.5426215206405,-0.178912521848574,0.861499639132418,0.908332110033422,-7.07685563282777 +"Q95SH2",0.00907135668009573,18.743613331027,0.172497736999916,0.866410737010926,0.912933107602163,-7.07808082873649 +"P16378",0.00691542596874939,20.3758154643692,0.165962491657387,0.871420177318594,0.917631853388519,-7.07928329720496 +"Q9VPX5",-0.00721754159174282,18.7850094486542,-0.162065354449743,0.874410284523907,0.920012030884634,-7.07997837743922 +"Q9VP18",0.010230823787694,17.1579286425541,0.1603436111319,0.875731966404358,0.920012030884634,-7.08028022878765 +"P91926",-0.0165399355122098,17.6558806581874,-0.160194267590472,0.875846627619987,0.920012030884634,-7.08030626011174 +"Q9V431",-0.00635192559256126,18.5914723815647,-0.160142005336608,0.87588675362398,0.920012030884634,-7.08031536398253 +"Q9VQ29",-0.0085806415291394,22.1334841923043,-0.159196753542912,0.876612564046379,0.920194938218603,-7.08047951280273 +"O15943",0.00580114304581869,20.1570243085285,0.158146140064536,0.877419416628551,0.920462633293348,-7.08066082370029 +"Q9VWU1",0.0144918902395812,14.9205996195723,0.157219267481542,0.878131360317148,0.920630489634823,-7.08081978799542 +"Q9VXG4",-0.00954626419871119,19.9886837410907,-0.15536960316862,0.879552452102461,0.921541137001824,-7.08113423718708 +"P08120",0.0124207796672273,18.2136657200855,0.153766758698619,0.880784274867381,0.92225246106641,-7.08140373076194 +"Q9VDQ3",-0.0198625325280037,13.4949194693472,-0.150919700863823,0.882973121971082,0.923964345952173,-7.08187556064108 +"Q9VGE7",-0.0114232720215313,13.9940519890456,-0.14670231747989,0.886217377375001,0.926777796527587,-7.08255835415935 +"Q9U4G1",0.0062917051939344,19.2376226359685,0.143241850493093,0.88888101442361,0.928980909811142,-7.08310421066771 +"Q9VTZ5",-0.00673215891297829,18.0265069793204,-0.14098180029695,0.890621433738733,0.930217001550537,-7.08345370713928 +"Q9V3I2",-0.00623517862583078,17.3672788027116,-0.137980717213355,0.892933445206926,0.932048176849282,-7.08390924022058 +"P56538",0.00830270229592855,17.0421064613243,0.134235597938226,0.895820125569839,0.934476528737018,-7.08446401339222 +"Q9V470",-0.00647771226299909,19.9184307174943,-0.132246430670974,0.89735399468084,0.935491539454775,-7.08475248822213 +"Q8MRT7",0.00951723062047094,15.4279724275468,0.127190089872335,0.901254971375597,0.938971450502496,-7.08546645077485 +"A1Z7P1",0.014317585331435,14.5626808437876,0.122803345511359,0.904641585287148,0.941911463332686,-7.08606339024326 +"O77430",-0.00451915006362924,19.5373224650511,-0.118433279548125,0.908017312329177,0.944836479703722,-7.08663729059223 +"Q9VCU0",-0.0104702399817445,17.3198988389872,-0.115174779344525,0.910535643365338,0.94686624260186,-7.08705171904223 +"Q9VEK8",-0.00507531036222275,18.8914527004802,-0.109564604067665,0.914873877801101,0.949971267529168,-7.08773822253649 +"P25455",0.00566454189542043,15.7575198147575,0.109299810152256,0.915078710988391,0.949971267529168,-7.08776977973457 +"Q9VMG0",0.0282456321789955,14.7847545367734,0.108331721982523,0.915827637577896,0.949971267529168,-7.08788450464998 +"Q9V4Q8",0.00519840932704163,16.9113294736479,0.108021093110521,0.916067962718671,0.949971267529168,-7.0879211004558 +"Q9VK18",0.0062020736471986,14.6294647309995,0.107631792750776,0.916369166339587,0.949971267529168,-7.08796681666903 +"Q8SZ63",-0.0110112114616605,14.0690890005505,-0.104501981496899,0.918791215505791,0.951890526374944,-7.08832837144215 +"Q7JZF5",0.00586181374081107,16.9374722392407,0.10117165431346,0.921369390300955,0.953969052155179,-7.0887013985995 +"Q02910",-0.0107147410030102,16.3663056775869,-0.0947620937232003,0.926334010142735,0.95820312490509,-7.08938539505995 +"Q9VHK6",-0.0084979833195824,18.0698912231983,-0.0944088762966135,0.926607698124646,0.95820312490509,-7.08942179001591 +"Q9VDU7",-0.00399454010227984,18.3638885594964,-0.0912338604785404,0.929068281256823,0.960152350146456,-7.08974284724297 +"Q9VGL0",-0.0107309537446181,12.9817895954054,-0.0815810946869782,0.936553699799447,0.966323405140065,-7.09065158774692 +"P02515",-0.00932824833737556,18.0272522157987,-0.0814645423453533,0.936644123557096,0.966323405140065,-7.09066194090872 +"Q0E8E8",0.0048457546628029,21.4536430494742,0.0812925692375157,0.936777545630387,0.966323405140065,-7.09067719001296 +"Q9VS97",-0.00686807505341314,15.1478379820658,-0.0758812300610918,0.940976853416211,0.970055248144771,-7.09114058089688 +"Q9VN71",0.00507245446576121,18.6240608402028,0.073129578730782,0.94311292420208,0.971656798992631,-7.0913639899 +"Q9VZ49",-0.0036620652974797,18.8729330376129,-0.0710738272603421,0.944709085848351,0.972700466169784,-7.09152551897683 +"Q9VC67",0.00528792130944034,15.1965979412645,0.0692163002668748,0.946151558945658,0.973416562969768,-7.09166751583093 +"Q9VFM0",0.00624396168276142,14.33603732904,0.0681224081414451,0.947001122623,0.973416562969768,-7.09174937978316 +"Q9VXP4",-0.00328259174884771,18.0205955043369,-0.0679238682026927,0.947155324760152,0.973416562969768,-7.09176409828414 +"Q07093",0.00525214845497324,14.5640487446979,0.0646507367465848,0.949697826716495,0.974980119712638,-7.09200056099941 +"Q9VL66",-0.00355459534328872,15.7189399012843,-0.0644603417615944,0.94984574012772,0.974980119712638,-7.09201395676962 +"Q9W3C4",0.00788558239061921,14.8131268864973,0.0622356128056859,0.951574226104319,0.976153634158675,-7.09216755813485 +"Q9VD26",0.00450691698662276,16.2283754929761,0.0609362488403971,0.952583878989354,0.976197718014507,-7.09225477630738 +"Q9V438",-0.00296473934280428,19.0222288769153,-0.0606739559187448,0.952787700795934,0.976197718014507,-7.09227215933215 +"Q9VLV5",0.00284564134480902,17.5039710220412,0.0576780841174213,0.955115972715699,0.977982469300053,-7.09246538996948 +"A0A6H2EGA2",-0.00331949021691713,15.8592852899924,-0.0554446769869498,0.956851976079222,0.979063842329993,-7.09260308170621 +"Q9VWW2",0.00948694389416893,15.3004629785109,0.0541289714609746,0.957874770883719,0.979063842329993,-7.09268165288698 +"Q9V4E0",-0.00722013399690979,18.3766346856715,-0.0538367709425537,0.958101930783103,0.979063842329993,-7.09269884658003 +"P08736",-0.00270463755130379,24.3699934166779,-0.0532990942868757,0.958519936765515,0.979063842329993,-7.0927302415577 +"P40417",-0.00243913563164355,19.7961244445676,-0.0505325669703912,0.960670923156844,0.98028661379744,-7.09288679991212 +"Q9VA41",0.00395254592240946,17.4324026741286,0.05024766563158,0.960892454171951,0.98028661379744,-7.09290244896573 +"Q9VRL2",-0.0114286819247411,12.2818501016443,-0.0490331585940826,0.961836858410063,0.980650293293389,-7.09296816734288 +"Q0E9B7",0.00809952576193318,12.8808469945841,0.0477954538605282,0.962799364738987,0.981031973356525,-7.09303348751447 +"P02283",0.00289284719885075,21.6011912000646,0.0455793839165672,0.964522855967664,0.981633902388016,-7.0931462713502 +"Q7JUN9",0.00965799835391223,13.6088706833193,0.0450588750083227,0.964927696395451,0.981633902388016,-7.09317198588585 +"Q95SN8",0.00252944908751473,17.6791519622537,0.0447658165459629,0.965155635441454,0.981633902388016,-7.09318633385837 +"Q9VS02",0.00365502229117354,17.9616159832086,0.0439168132439418,0.965816003369813,0.981706943096191,-7.09322737227993 +"Q9VCU6",-0.00300710857846731,15.4516023804583,-0.041764172382585,0.967490480728134,0.982810062030772,-7.0933279042719 +"P22769",0.00164596211017098,20.147907257704,0.0383602701745525,0.970138612123722,0.984900307378191,-7.09347656632164 +"Q8T9B6",-0.0022856839126284,19.5370696800698,-0.0320076208137942,0.975081767442282,0.989316537769907,-7.09372023674456 +"Q9W073",0.00192614953945203,14.5521392928729,0.0288730827266506,0.977521250038081,0.990720844295843,-7.09382426234668 +"Q9VXJ7",0.00295871425714189,15.0051528400174,0.0287027980553698,0.977653782800335,0.990720844295843,-7.0938296068513 +"Q9VLS5",-0.00167155088650439,14.6780688885057,-0.0264136259300927,0.979435515519831,0.991923764351596,-7.09389838550924 +"Q9VGR2",-0.00172952158109396,15.6857557068526,-0.0240825627666166,0.981249974776286,0.993158348256581,-7.09396255255844 +"Q9VW40",-0.0014614152595982,14.6574098236884,-0.0208776264944279,0.983744822086621,0.994720261488851,-7.09404110370871 +"A1Z8D0",0.00348197047848764,13.861301960269,0.0198579303038,0.984538633111627,0.994720261488851,-7.09406374772403 +"A0A0B4KH34",-0.00106755492631905,23.4059105493331,-0.0198019343461399,0.984582225250656,0.994720261488851,-7.09406495837185 +"Q9VQR9",0.00112544658415104,16.3278308197624,0.018747059514227,0.985403441604462,0.994749840004634,-7.0940871262852 +"Q9VGS3",-0.00118769695006904,19.1969716511432,-0.0182322212542779,0.985804247918261,0.994749840004634,-7.09409750494764 +"Q9VZ19",-0.00120376062119121,20.4015991480078,-0.016836995158967,0.986890464674774,0.994802280824956,-7.09412417870631 +"P25171",-0.00145069914557006,16.81352000244,-0.0164411169817312,0.987198670469749,0.994802280824956,-7.09413136053654 +"Q9VHA8",-0.000699213285759726,18.6068897557647,-0.0145002283860138,0.988709754853304,0.994802280824956,-7.09416409884665 +"P54397",-0.00110050331422862,14.8187407695473,-0.0143555475685063,0.988822398465631,0.994802280824956,-7.09416637479048 +"Q9VQF7",-0.00141314544399407,18.6958601972766,-0.0143352026252697,0.988838238373967,0.994802280824956,-7.09416669300231 +"Q9W404",-0.000753426520876843,15.9772601883845,-0.0130706068286756,0.989822821025328,0.994820878302678,-7.09418558652986 +"A1Z6S7",0.000661246071100408,17.5729393272358,0.0124593644524503,0.990298725559214,0.994820878302678,-7.09419409366906 +"Q9VH19",-0.00122036884473786,13.9753052030461,-0.0120133731017286,0.990645970540017,0.994820878302678,-7.09420004383823 +"Q9W1W4",-0.000683026173895485,17.296233356857,-0.0101651754579607,0.992084982047527,0.995666516278746,-7.09422239000143 +"Q9W257",0.000716446782192293,17.0489607928035,0.0085777621925199,0.993320970051736,0.996307503335115,-7.09423860999247 +"Q8SYD0",-0.000590441500261107,15.4602411489596,-0.00731955272524886,0.994300647457334,0.996690793244491,-7.09424951436635 +"Q9VMB3",-0.000184662290507731,18.720425284667,-0.00307309271745091,0.99760712425104,0.999064589166471,-7.09427357341926 +"Q9V8M5",0.00012455093452246,19.8509275908819,0.00273976556522149,0.997866669994808,0.999064589166471,-7.09427462971807 +"P05031",9.85850438599556e-05,13.2764304528713,0.000794916187416247,0.999381034381695,0.999542335653731,-7.094278377401 +"Q9VL68",-2.16626279900822e-05,20.8041513755318,-0.000587762498317944,0.999542335653731,0.999542335653731,-7.09427853355052 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_Earth_significant.csv new file mode 100644 index 0000000..82d2a04 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_Earth_significant.csv @@ -0,0 +1,49 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"O16797",0.700026653213753,16.6512775871783,18.4387682295802,3.48372322398207e-09,5.8108503376021e-06,11.6105244174439 +"Q9VC18",0.677337048443512,18.1282760796353,16.0579539618705,1.37235462888217e-08,1.14454376048773e-05,10.3639303359565 +"Q9VNE9",0.66223218560279,18.7720088912541,13.1324308314396,9.83864788089298e-08,3.64920689718032e-05,8.48725078738745 +"Q9VQE0",0.57893034694257,17.2771467791299,12.6418691283756,1.42258503835077e-07,3.64920689718032e-05,8.12669575952132 +"Q9VXP3",0.672862129146633,14.5222380106146,12.5275795513419,1.55304047543036e-07,3.64920689718032e-05,8.04053181017381 +"Q9VLC5",0.533100280623366,21.6850374737522,12.5073264120281,1.57749298834437e-07,3.64920689718032e-05,8.0251753546716 +"Q9VC06",0.651655167867563,16.2787785075986,12.3716580673597,1.75254161715294e-07,3.64920689718032e-05,7.92162185943102 +"Q9VFZ4",0.639562902078254,16.4804537361971,12.2230357572498,1.96899652725557e-07,3.64920689718032e-05,7.80679291335136 +"Q9W370",0.583547445019452,18.3204812365226,11.7639847975504,2.84417612500198e-07,4.4049965444085e-05,7.44267042015027 +"P41093",0.623397237729097,18.8355796054782,11.5761592577522,3.31804367560369e-07,4.4049965444085e-05,7.28943142043022 +"P21187",0.580871936934628,18.8453311878769,11.4889776968987,3.56671469071939e-07,4.4049965444085e-05,7.21743791133399 +"Q9VA42",-0.52730769138142,20.44637604246,-11.4458328838351,3.69723930585845e-07,4.4049965444085e-05,7.18160364776904 +"P17336",0.564301229115877,20.6951623777099,11.1061214413097,4.92710095650285e-07,4.56578021969264e-05,6.89459723474048 +"Q9VHR8",0.52279870593258,20.3322073283353,10.9698968494169,5.54021663781673e-07,4.86372702730437e-05,6.77703204541076 +"O97125",0.537872792050312,18.4053353355981,10.7175086368186,6.90787051960269e-07,5.76116401334864e-05,6.5553506846339 +"Q9VXQ0",0.647839252227998,14.9702186953671,10.4559368940628,8.72358028747211e-07,6.61405996341067e-05,6.32015464371672 +"Q9VZF6",0.627736242643975,15.0380570115786,10.3235128129352,9.83612343541076e-07,6.70466592503295e-05,6.19890853590202 +"Q9VIE8",0.540427659600912,24.8202962323816,10.2525116031065,1.04955627788386e-06,6.70466592503295e-05,6.13328604077682 +"Q9VNB9",0.734286335244636,18.8272865429815,10.138559576662,1.16567932749374e-06,6.70466592503295e-05,6.02705712402085 +"A1Z803",0.502810500204976,18.7241072580702,9.93403932370247,1.41076919601434e-06,7.17094469759409e-05,5.83353900434879 +"Q9VG42",-0.84280439443549,16.2097515532707,-9.92807448090432,1.41871208045926e-06,7.17094469759409e-05,5.82783912757083 +"Q9W3J5",0.55799131355891,16.0139677528003,9.50400771293255,2.13019228402958e-06,9.60313710746309e-05,5.41425578389648 +"Q9VNW6",0.682036784364254,21.4617941625739,9.38243430765254,2.40000683947473e-06,0.000105347668637996,5.2925731789841 +"P50887",0.608644887749232,17.6568887674278,9.23965443125954,2.76528082862265e-06,0.000112499717613233,5.1478377120321 +"Q9W3E2",-0.634307082032201,17.7112104076546,-8.99038162088305,3.55640627865031e-06,0.000128958384191059,4.89030938872977 +"Q9VV31",-0.914129140048026,15.9080548630959,-8.79403432185544,4.35304654779278e-06,0.000132695548038832,4.68300955120553 +"P45437",0.521029435087762,15.9949204609525,8.76977080690761,4.46424505477715e-06,0.000132695548038832,4.65711461128289 +"Q9V521",-0.525567173324955,17.8250079168567,-8.76819228099049,4.47158549707025e-06,0.000132695548038832,4.65542780946172 +"Q9W253",0.502318549677815,15.1068541662566,8.73808819135427,4.61411378072677e-06,0.000132695548038832,4.62320864423425 +"Q9VAY9",0.539726643299582,14.5035220179372,8.37381292423195,6.79128752234395e-06,0.000179807422020154,4.2256528863646 +"Q9VED8",0.562512169993475,16.2654653689014,8.32811955388967,7.13517398709269e-06,0.000183099541699548,4.17476296951128 +"Q9I7Q5",-0.572597641264366,20.6732751306916,-8.2765335700199,7.54626610046078e-06,0.000185105468464244,4.11703095103606 +"Q9VR79",0.527422574355462,20.2302829306034,8.05541522192785,9.62355238175265e-06,0.000216920072604911,3.86616480539903 +"Q9VV36",-0.523209203391218,23.1979127313407,-7.84863848078724,1.2136152467374e-05,0.000259526952763845,3.62647159149848 +"P10676",-0.655514005724665,19.9128512890527,-6.93672034886772,3.57191653699028e-05,0.000618492667616421,2.50722264220662 +"Q8IN43",-0.81555948284166,18.1225810058562,-6.58628127615029,5.55201183162404e-05,0.000798341011650767,2.04857345437125 +"Q7JXZ2",0.519931583660597,17.4579788873117,6.20798169258511,9.0959421361338e-05,0.00114075424684746,1.53466080402129 +"Q8MSI2",-0.582327975782238,24.1442451584085,-5.98080391344471,0.000123465105393882,0.00139148510673645,1.21641752485905 +"Q9VCX3",0.740206365909239,12.9401757315591,5.89137003131339,0.000139513321907955,0.0014630258297675,1.08912195037615 +"Q9VF23",0.718199960919366,15.353932661404,5.74356576435709,0.000171147597748146,0.00170942630565214,0.876235406435342 +"A1ZA22",0.590691853952409,13.4734284669821,5.44046443414138,0.000262733989708608,0.00235781119757601,0.429838694653657 +"P19334",-0.764609439301756,15.4010045728876,-5.14247267573854,0.000405536367177981,0.00331585617869055,-0.021923806555499 +"Q9W1R0",0.509819383207589,13.9417218624182,3.7086943871468,0.00389547022701125,0.0164497325029235,-2.36038963106172 +"Q7JX94",0.526423634869975,12.2905420255327,3.64111084567379,0.00436214416287621,0.0178772886085443,-2.47608469654744 +"Q8MSS7",0.554892322146088,14.0723467041167,3.28598539539527,0.00796398499364349,0.0277587159566379,-3.08830875246233 +"Q8SZK5",-0.516435491642008,15.5690262492624,-3.0824217526183,0.0112972433156469,0.0360302138632868,-3.44086245947319 +"Q9VIV6",0.591132614740927,14.7645734609891,3.03038852074092,0.0123582025013899,0.0379622132086895,-3.53094853139836 +"Q95RQ1",0.636405896617436,12.0668652736604,2.86563368518452,0.0164325928262055,0.0475128896827266,-3.81562365467422 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_SFug_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_SFug_results.csv new file mode 100644 index 0000000..0ce737a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_SFug_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P06002",-1.09562743848828,17.0500392303794,-19.1029918221836,2.35608277208355e-09,3.92994606383536e-06,11.4154360429226 +"Q9VU68",-0.591940801372402,19.3781374414581,-13.1656116270466,9.32929525496567e-08,7.47141687033121e-05,8.3783028460908 +"Q9V4E7",-1.39747885563374,15.6676851137624,-12.6802042091633,1.3437800126495e-07,7.47141687033121e-05,8.0508611436812 +"Q9V3B6",0.59491775719539,13.0781141518043,10.8767074978829,5.86527534680223e-07,0.000244581981961653,6.69087466859314 +"Q9W2N0",-0.532885038647706,16.2840950068443,-10.2339790503294,1.04381863128525e-06,0.000348217895396758,6.14433505930629 +"Q9VZX9",-0.389388586252274,18.4390897210659,-8.85592117467118,4.00537346216744e-06,0.00111349382248255,4.84310928710813 +"Q9VM10",-0.390897980526901,17.1738876695003,-8.48174398652482,5.93928342249376e-06,0.00141524639267423,4.45592905457491 +"Q7JUS9",-0.61523525275328,20.5856564155254,-8.22742664944555,7.82321568476586e-06,0.00163114047027368,4.18376483442709 +"Q0E8E8",-0.567182386897631,21.7396571202544,-7.99142911432531,1.01615587995436e-05,0.00182760348327754,3.92443576470728 +"Q7JYH3",-0.42768260742287,19.2428728080408,-7.87924731941789,1.15300859146863e-05,0.00182760348327754,3.79881864086799 +"P10676",0.406714413769901,19.3817370793055,7.84017895356762,1.20525409568663e-05,0.00182760348327754,3.75471077529567 +"A0A0B7P9G0",-0.564586413906392,14.7571622353989,-7.43510315960306,1.92705086575501e-05,0.00267860070339946,3.28615185752977 +"P54185",0.471733552013703,17.3904454196719,7.13384561458754,2.76501543531287e-05,0.00354772749700143,2.92399479553542 +"P46415",-0.335787446928972,18.1247864423875,-6.73987245767572,4.50649964548903e-05,0.00521059123815471,2.43201262391024 +"Q9VAJ9",-0.504196945167962,17.8432400985038,-6.7090563857458,4.6857834875492e-05,0.00521059123815471,2.39262991104534 +"Q7JYX5",-0.429588638333634,15.1085925690954,-6.65672459389761,5.00810156634675e-05,0.00522094588291649,2.3254461949097 +"Q9V3A8",-0.342503694816202,15.7274690398777,-6.47883713965066,6.29517403188924e-05,0.0061766766383478,2.09418877247711 +"Q9U4G1",-0.316481859564718,19.3990094183478,-6.37286767346242,7.22806886292873e-05,0.006338094249305,1.95428623670624 +"O62619",-0.304984832282475,22.2787397991936,-6.34650609647187,7.4825639984746e-05,0.006338094249305,1.91923294804545 +"P07486",-0.299764717430843,22.174921274752,-6.33470175211386,7.59963339245204e-05,0.006338094249305,1.90350412576383 +"Q9V3I2",-0.372013471393497,17.5501679490955,-6.25776617275327,8.41260024868084e-05,0.00668200819752364,1.80049730964338 +"Q9Y119",0.350324851988901,17.5270443059725,6.20492792338406,9.02485171928284e-05,0.00684247848534717,1.72925665447379 +"Q9VLB7",-0.352529471628412,21.3102133303724,-6.13684305813144,9.88533772014069e-05,0.00701090248102981,1.6368597806006 +"Q9VV46",0.346684585623681,23.8009758845677,6.11632596399408,0.000101616204602713,0.00701090248102981,1.60888357355619 +"M9PF16",-0.249030319273778,21.2171401557281,-6.04428965055956,0.000111992756566049,0.00701090248102981,1.51016939064033 +"O76902",-0.404527458849042,17.3478713594998,-6.04277469043969,0.000112222839522022,0.00701090248102981,1.50808519995666 +"Q9VM07",0.27195204483035,17.1203464918657,6.02325911936149,0.000115232556803645,0.00701090248102981,1.48120666745311 +"Q23970",0.394229104390508,21.3776136121115,6.00773232343517,0.000117689010472922,0.00701090248102981,1.45978177471358 +"Q9VGZ3",0.462751159582542,16.8117178220821,5.90518263442855,0.000135393376273385,0.00764485535729414,1.31738365466575 +"P00408",-0.25951920101603,21.3679963070753,-5.89396211798761,0.000137497398512484,0.00764485535729414,1.30170873149721 +"Q9VUY9",-0.235133387519731,19.8571199601684,-5.71645900741567,0.000175890046647482,0.00946401928412903,1.05125265887173 +"Q9VG81",-0.338742207265211,15.9019031230125,-5.67255965322293,0.000187061170163892,0.00954792148649639,0.988587633453732 +"A1ZA23",0.273860138818961,18.3843676478415,5.65899521454622,0.000190664738275779,0.00954792148649639,0.96916668004832 +"Q9VGS3",-0.33788120191463,19.3653184036255,-5.64441241473587,0.000194621900803883,0.00954792148649639,0.94825706314804 +"O01666",-0.259321278331292,22.815771389114,-5.60159023310028,0.000206758707041846,0.00965582849497156,0.886672829892063 +"Q7K5K3",-0.263997872663111,22.8248520157055,-5.59022823564187,0.000210113194251767,0.00965582849497156,0.870286746437935 +"A1ZB70",0.304659313508715,15.9635727533973,5.57404819163926,0.000214991027507117,0.00965582849497156,0.846918883093053 +"A1ZBJ2",-0.440188581141566,19.4844404219688,-5.55791063889565,0.000219976908158825,0.00965582849497156,0.823573442773735 +"Q9W3L4",-0.326521356641496,17.6390387954845,-5.46764066336266,0.000250245948616282,0.010465334193326,0.692266737954687 +"Q9VGW7",-0.270487817541198,16.8078182026861,-5.46563451643453,0.00025096724684235,0.010465334193326,0.689334771827992 +"Q9VZ19",0.414403035698193,20.1937957498481,5.44080862921984,0.000260079458928991,0.0105807935974038,0.653002219976232 +"Q9W2L6",-0.350052570769499,20.9919168128713,-5.35805659063174,0.000293095854220223,0.0115144515153849,0.531230703230873 +"Q95TK5",-0.320612543529137,17.1913629620016,-5.34590825247896,0.000298308009096042,0.0115144515153849,0.513268171068191 +"Q7K148",-0.270125567296514,17.0263355031883,-5.32949433033594,0.000305507999236954,0.0115144515153849,0.488963615452924 +"Q9V3V0",0.283356624659209,14.3756420635418,5.3180411970179,0.000310641677573333,0.0115144515153849,0.471980867608512 +"Q94523",-0.358106457042489,20.5095661180994,-5.27413041681949,0.000331193506188134,0.0120093645287349,0.406688874175404 +"Q9W4P5",-0.261700728791922,19.6496273972188,-5.25671694643852,0.00033974115152015,0.012057196611396,0.380716962212024 +"Q8T3L6",0.236569363846396,17.3162707226768,5.16701425619889,0.00038766155294736,0.0134712389649208,0.246213922354398 +"Q9VFN7",0.245366652361341,18.4718219500585,5.12629112307428,0.000411749211585324,0.0140162792841698,0.184759318251023 +"M9NFC0",0.303870632047175,19.824179090603,5.06819634410181,0.000448909904356248,0.0149756344093244,0.0966663001250891 +"Q9VV31",0.391478504721954,15.2552510407109,5.03907521666796,0.000468866307667533,0.0150626673991179,0.0523213654337811 +"Q9VA34",0.246386186258913,14.3716941989362,5.03805896663569,0.000469579559205116,0.0150626673991179,0.0507716000813634 +"Q9VXZ8",-0.271820844321422,18.0661778961345,-5.01706172093704,0.000484577689022931,0.0152504827413255,0.0187173016556903 +"Q9W1H8",-0.200541274526483,20.7503059077752,-4.97901206546425,0.000513069842924718,0.0158481573703413,-0.0395332453864468 +"A0A0B4K7J2",-0.313676441819807,15.7492393366093,-4.95899770788237,0.000528767146843141,0.0160360654715338,-0.0702580676207711 +"Q9VXK7",-0.252140491751973,18.0897098210298,-4.90751576206122,0.000571537117434695,0.0170236412835906,-0.149557134967021 +"Q9W4W5",-0.276780853594396,17.3536950891445,-4.85712177714566,0.000616978481873846,0.0177882622934561,-0.227551178745306 +"Q9VPN5",0.218688205472265,21.1534553322814,4.85546433770935,0.000618536698453511,0.0177882622934561,-0.230122577476269 +"Q9V396",-0.227881925427813,20.9710426741107,-4.82606414279199,0.000646882358177041,0.0182881317532086,-0.275800292125857 +"P17336",0.212348168183595,20.871138908176,4.79981109440886,0.00067336003337314,0.0187194089277733,-0.316692813862993 +"Q9VZJ2",0.217075668900042,17.2457972540006,4.73890448396101,0.000739316426100475,0.020216062274354,-0.411939733879466 +"Q9VIB5",0.287700946633738,14.2548057298516,4.72033377858525,0.000760763875913254,0.0203837728984039,-0.441085160800959 +"P19107",-0.236486110617047,24.0796371641824,-4.71111467102815,0.000771655118783341,0.0203837728984039,-0.455571901083163 +"A0A0B4K692",-0.279307085630606,16.0368687201411,-4.70239273794416,0.000782111190346434,0.0203837728984039,-0.469288356024132 +"Q7KV34",-0.243262394356634,21.0487768703981,-4.63644427128229,0.000866198057508956,0.0216842462241199,-0.573344729848218 +"Q9VKC8",-0.299453100246946,17.8701071716264,-4.63424338483936,0.000869164240586642,0.0216842462241199,-0.576827784590811 +"P05031",-0.600737922214011,13.5768487065002,-4.63287793479278,0.000871009890297382,0.0216842462241199,-0.578989039567696 +"Q0KIE7",-0.54881745799122,14.1606864529342,-4.59591966800843,0.000922574149545328,0.0226302011976707,-0.637584582805661 +"P20007",0.465406321073587,15.0650392003839,4.58492737826301,0.000938526439291739,0.0226878565324438,-0.655048452427607 +"Q5U117",-0.365189334538186,14.6969046725481,-4.55241669256437,0.000987437367115669,0.0235078874590482,-0.706795744100297 +"Q7JWQ7",0.445574983353302,14.3068524119871,4.54393536231757,0.00100063549735757,0.0235078874590482,-0.720319064720148 +"Q9VNX4",-0.415941738401344,21.0604331862268,-4.52979896065231,0.00102304979656168,0.0237006536203456,-0.742880873344521 +"Q8IQ70",-0.2470919636818,18.0512569394869,-4.48655954156247,0.00109496329757242,0.0248415066593791,-0.812057831741159 +"Q9VR94",0.391084923336159,16.2593995376978,4.4824438996815,0.00110208123069188,0.0248415066593791,-0.818655284343782 +"A1Z843",-0.234240165915686,17.6695745698284,-4.43744610588779,0.00118316987614879,0.0262903349877417,-0.890933807214247 +"Q95R98",-0.305109482528687,16.4091510010573,-4.42684592146105,0.00120317358013449,0.0262903349877417,-0.907999301169843 +"Q8MLS1",0.262453311772969,18.3624020068503,4.41678173634179,0.00122249621484301,0.0262903349877417,-0.924215460391062 +"Q9W299",-0.442524429707822,14.9253395211295,-4.41322440475305,0.00122940415410303,0.0262903349877417,-0.92995045284271 +"Q95RQ8",-0.789408978528503,14.4166742815928,-4.36069014044902,0.00133635483753766,0.027984948304026,-1.01483473939203 +"Q9VH81",-0.277506326618008,14.6294925078464,-4.35794626147857,0.00134220375558878,0.027984948304026,-1.01927801300784 +"P54195",0.429188729034781,18.7595851188612,4.34649533997916,0.00136690558204976,0.0279983680638016,-1.03783131171335 +"A1Z9J3",0.213127856866716,17.6140899631711,4.34214348730552,0.00137641857387993,0.0279983680638016,-1.04488675317578 +"Q9VVB4",0.236570057131026,15.9037364775404,4.3206595753237,0.00142441444552761,0.0283396249371049,-1.07975268605433 +"Q9VC06",-0.20965637749015,16.7094342802775,-4.31944702263179,0.00142717535654485,0.0283396249371049,-1.08172225680983 +"Q9U9Q4",-0.222252610646084,18.0399057794836,-4.28551686127564,0.00150676214011884,0.0295679911731556,-1.13691030329007 +"Q8T4G5",-0.176422272503707,19.7195830072993,-4.24695226892499,0.00160292349747059,0.0310892603928018,-1.19980972738542 +"Q9W309",0.321694252665264,18.2755142817924,4.21280192277526,0.00169347016153068,0.03246791068314,-1.25566116108966 +"Q9VF86",-0.2629845635599,17.7364229493024,-4.19957626667504,0.00172996734029767,0.0327907445865512,-1.2773289510803 +"Q9VJQ3",-0.209820018670229,20.6476917494112,-4.18742276164845,0.00176423493901257,0.0330645379581233,-1.29725865343203 +"Q9W461",0.283955172854968,16.1263347650681,4.17363971975116,0.00180396176426034,0.0331045070669713,-1.31988175231241 +"P35381",-0.185856154963552,25.7848328518532,-4.16450362611444,0.00183081167360341,0.0331045070669713,-1.33488984457345 +"Q9V3N7",-0.212476379436417,20.7351321178021,-4.16370079211885,0.00183319108452708,0.0331045070669713,-1.33620914959947 +"P54192",0.282031268010748,24.2453149747956,4.15285399634747,0.00186565865553117,0.0331045070669713,-1.35404120191719 +"Q9W3K6",-0.224913036111568,16.2710424271966,-4.14938294924919,0.0018761755619305,0.0331045070669713,-1.35975048295364 +"Q7JYW9",-0.218758601663888,17.4245766426789,-4.14633935558456,0.00188544854398218,0.0331045070669713,-1.36475783153865 +"Q9V419",-0.232804785344046,16.584646965176,-4.13366014050184,0.00192459934240903,0.0334399135743569,-1.38562937382886 +"Q9W0R0",0.193027277117844,16.696931618197,4.11566786404167,0.00198162625288834,0.0336836917030961,-1.41527873025285 +"Q9NHE5",-0.394919985818973,15.7155782002885,-4.11198458568009,0.00199351755215063,0.0336836917030961,-1.4213529621597 +"Q7K486",0.209530556976727,17.6045736856005,4.1102289336585,0.00199921191762981,0.0336836917030961,-1.42424881905631 +"Q24319",-0.331507209176548,16.4221606203655,-4.09177631847648,0.0020601044727042,0.0341313121511036,-1.45470666061017 +"Q24253",-0.295294138616246,19.1089370559444,-4.08981082442612,0.00206670415303445,0.0341313121511036,-1.45795317341952 +"Q9VVL5",-0.176661557082461,17.3439667699557,-4.07619327788517,0.00211304193211693,0.0345544504193239,-1.48045795236708 +"Q9VK00",-0.469945429356713,17.9529919968021,-4.05732919201985,0.00217903950556481,0.0348898549619599,-1.51166757056503 +"Q9W308",0.279638639874097,16.9891658246316,4.05508919132921,0.00218701861029147,0.0348898549619599,-1.51537615528961 +"Q9VW59",-0.171414795459405,19.7676986367812,-4.04442037684161,0.00222544430092931,0.0348898549619599,-1.53304722717651 +"P36241",0.239918980039938,19.7907064403389,4.04379024190319,0.00222773585477207,0.0348898549619599,-1.53409132973792 +"Q9VRL2",0.674815382454266,11.9387280694548,4.04093830660072,0.00223813817801541,0.0348898549619599,-1.53881739051137 +"Q9VA09",-0.218627887054994,16.6251054380596,-4.03087430879182,0.00227525461469639,0.0351400434936442,-1.55550196616997 +"Q9V9V4",0.168990631639371,18.5881722619413,4.01861248561968,0.00232134969418545,0.035523039356893,-1.57584508581696 +"Q8SXD5",0.17134039042854,20.5955878358629,3.99631120042454,0.00240770911964503,0.0362799209415946,-1.61288579166479 +"O76742",-0.24309897861778,18.1001448748244,-3.99464085432871,0.00241431128568166,0.0362799209415946,-1.6156622454002 +"Q9VG92",0.193561125099052,16.4514759592209,3.98004761124383,0.00247280421758288,0.0368271199547164,-1.63993173594809 +"Q9VYT6",-0.318767599600449,16.4267362639587,-3.96936969024458,0.00251654177386303,0.0371468290159604,-1.65770399037727 +"Q9VR25",-0.213882787473892,17.0032265016318,-3.96305903720336,0.00254277038816554,0.0372047456794747,-1.66821299217945 +"O16797",0.197413002397198,16.9025844125866,3.95355620076022,0.00258280711986663,0.0374619328342395,-1.68404566595507 +"Q9VPU6",0.257416981692449,15.3103604421898,3.94751847081304,0.00260858683770881,0.0375096797008474,-1.69410996682806 +"Q7K8X7",-0.209825966484718,19.5467585758134,-3.89003461702175,0.00286792781834297,0.040886355564069,-1.79011475117837 +"Q9VVW3",-0.23649489716947,16.6795827100979,-3.87520441105913,0.00293911057557867,0.0415460715259764,-1.81493609885086 +"Q70PY2",0.320895760895262,17.3339347133882,3.86417691344738,0.0029932347690418,0.0419555932332918,-1.83340665202263 +"Q27272",0.434741228952591,15.6523296838131,3.85693813772256,0.00302932803478382,0.042107659683495,-1.84553760984025 +"O18332",-0.246691041303819,20.6889147303849,-3.85063241599029,0.00306113898969927,0.0421981804530445,-1.85610899290906 +"Q9V4E0",-0.231033527341079,18.4885413823436,-3.84394311580331,0.00309526612239163,0.0423188843618791,-1.86732754757668 +"Q27377",0.363700724426185,19.965285208799,3.83739146521939,0.00312907575926889,0.0424333200525245,-1.87831933041304 +"Q9VFS8",0.206048202411502,17.2017644748634,3.81246024028378,0.00326129378680775,0.0438696615838333,-1.92018320792704 +"Q9V3Z9",0.22196346199333,21.7039131658564,3.79735061625475,0.00334424651784107,0.044401724311264,-1.94558258514386 +"Q9VBU0",-0.334315659395175,14.2498213694064,-3.79509344989428,0.00335682594234773,0.044401724311264,-1.94937866494544 +"O17444",-0.403198452368509,15.578379621077,-3.79083256273892,0.00338070682705667,0.044401724311264,-1.95654582591223 +"A1ZAA9",-0.239548084067959,16.6121713894888,-3.77736966729702,0.00345733145517791,0.0450533505252871,-1.97920212818049 +"O15971",-0.233868706762818,17.1938397510149,-3.76925877307695,0.0035043657994375,0.0453122647555174,-1.99285941815169 +"Q9VEY0",0.252890640379583,18.1551269275838,3.75526078218339,0.00358711191163316,0.0457128234642966,-2.01644298312984 +"P48611",0.190571052118184,20.2406448477989,3.75277858587127,0.00360199585277831,0.0457128234642966,-2.02062670625374 +"Q9VJ68",0.237700133407483,17.7493763389874,3.75019408038705,0.003617561569117,0.0457128234642966,-2.02498343107713 +"Q9V393",-0.341790095397201,15.8772670793258,-3.74040706722292,0.00367714299392603,0.0461163497283355,-2.04148664177897 +"Q8SZK9",0.209041199220664,22.1950382601486,3.7170904593456,0.00382323857706396,0.0475907607950947,-2.08083632692151 +"Q7K2Q8",0.198943260068326,16.0086265980747,3.70326669896937,0.00391269194394847,0.0479261571284789,-2.10418678931674 +"P55830",0.150906442582954,21.9874461565182,3.69842827956524,0.00394451284476161,0.0479261571284789,-2.11236327962064 +"Q9VBC1",0.407123938885713,13.2543804818653,3.6977122759461,0.003949244586563,0.0479261571284789,-2.11357342046545 +"Q9W552",-0.20494831741085,16.297441197954,-3.69531746138068,0.00396511371926265,0.0479261571284789,-2.11762127189861 +"Q9VVP9",0.275151355559677,16.6409983442614,3.65421341420321,0.00424805758555845,0.0509766910267014,-2.1871677985677 +"Q9VD09",0.345696499053767,14.4754753640894,3.64691954910498,0.00430041629702513,0.051236388453128,-2.19952227752017 +"Q24492",-0.253769627596695,15.1759078918011,-3.62996225333771,0.00442474754601087,0.0523438220336605,-2.22826012344717 +"A1Z968",0.207073014627433,17.1412642798173,3.62132091221352,0.00448953433832282,0.052736220255792,-2.24291284856661 +"Q9VKZ8",-0.20108590645826,18.7632612065869,-3.60802031469067,0.00459118131163851,0.0535530799147765,-2.26547651292081 +"Q9V431",0.182137321470137,18.4972277580334,3.60108636333756,0.00464511560235336,0.0538059223939264,-2.27724449322855 +"P15425",-0.180412541864278,17.1064744265677,-3.59108333069518,0.00472408143136969,0.053897665733572,-2.29422705359785 +"Q9VE24",0.216843089403477,15.9479942667611,3.58871472231899,0.00474298250040985,0.053897665733572,-2.29824934331875 +"Q9VYT0",-0.169272895466261,18.295408815456,-3.58268698693959,0.00479143689147909,0.053897665733572,-2.30848715638862 +"A1Z7S3",-0.175772888321323,20.0425167116731,-3.5813825517223,0.00480199000081544,0.053897665733572,-2.31070299871804 +"Q9V3L7",-0.22439590673326,17.7156943453058,-3.57650136282676,0.00484169370963471,0.053897665733572,-2.3189956802863 +"Q95RQ1",0.563504088717631,12.1033161776103,3.57586286071226,0.00484691238611259,0.053897665733572,-2.32008055314958 +"P16378",-0.209395875683093,20.4839711151951,-3.5616024817958,0.00496499698597142,0.0548451322688764,-2.3443172415994 +"Q9VMI3",-0.2112166036739,20.288322280775,-3.54741579644356,0.00508542834113831,0.0558058846909126,-2.36844177199851 +"Q7K1Z5",0.281669963365722,15.86258343135,3.53666035289721,0.00517874349263124,0.0564584584686857,-2.38673994836196 +"Q9V3U6",0.154374906038971,21.1277270927857,3.50012861298092,0.0055091326836791,0.0596703462102385,-2.44894368924768 +"Q24372",-0.263730524140314,16.9320780588289,-3.49473803574046,0.00555969790164414,0.059829523225435,-2.45812901333991 +"Q9XYZ5",-0.223440166720348,16.0864617238036,-3.48550639536045,0.00564740980122813,0.0603838432592853,-2.47386315990693 +"Q7KSQ0",-0.175704697832657,20.9966027670454,-3.4433111702148,0.00606687928596328,0.064455762095457,-2.54583803481078 +"Q9Y0V3",0.265810070938496,15.0820187312873,3.43818000064284,0.00612003709248215,0.0646089991788622,-2.55459681912652 +"Q9VBP9",-0.323506653862108,14.0630558967419,-3.4331561723695,0.00617254824635485,0.0647535249994962,-2.56317362694646 +"A8WH76",-0.216290018358688,19.0590616544844,-3.40853483653777,0.00643669767402532,0.0665741948331395,-2.60522514024026 +"Q9W3J1",-0.196452675661636,15.6664277001235,-3.40532195076292,0.00647201613329366,0.0665741948331395,-2.61071458042326 +"Q9VLC5",-0.168407643756254,22.035791435942,-3.40296964269677,0.00649800099893437,0.0665741948331395,-2.61473395526337 +"Q9VV47",-0.171917084635528,20.1413945521166,-3.40226988185387,0.00650575165335836,0.0665741948331395,-2.61592967977217 +"Q9W403",-0.271398364326185,15.2547710901926,-3.3926709725604,0.00661303677142432,0.067259422772779,-2.63233408834699 +"Q7K3V6",-0.246706521530324,16.380447126816,-3.37514087657408,0.00681369249717819,0.068512235198856,-2.66230286842311 +"Q7K4T8",-0.302195213884882,13.8670248601026,-3.37473911691622,0.00681836393465833,0.068512235198856,-2.66298984927465 +"Q9V438",0.152085419372334,18.9447037975577,3.36743134533279,0.00690391210821937,0.0689564395000593,-2.67548674909849 +"Q9VZ66",0.160430265381629,17.0167669987836,3.32708451520672,0.00739650871086471,0.0734367650578711,-2.7445192509868 +"Q9I7Q5",-0.19784689135675,20.4858997557378,-3.30332536216204,0.00770334135306066,0.0757649828252805,-2.78519646622687 +"O61444",0.173091155067338,16.4478630099777,3.30086117464905,0.00773590375116031,0.0757649828252805,-2.78941630302468 +"Q9VBC7",-0.219159561494978,16.3021228855977,-3.29849729464851,0.00776727341913847,0.0757649828252805,-2.7934645326349 +"Q9VAN1",0.261133160490626,14.716103711293,3.27960605332894,0.00802270461484545,0.0778015773114082,-2.82582205509374 +"Q7K084",0.158878487611723,23.688740656401,3.27546618039111,0.00807982208608603,0.0779025620785636,-2.83291422600315 +"A1Z8Y3",0.238586964235274,14.9650823459668,3.26169970885186,0.00827277306140134,0.0788969637587891,-2.85650111005417 +"Q9VJ31",-0.152817697204155,17.2689928801138,-3.26136243335176,0.00827755914735497,0.0788969637587891,-2.85707903958493 +"A1Z7B8",-0.250643114493272,17.0910247840694,-3.25082626378504,0.0084285094931925,0.0798792831513925,-2.8751342899375 +"Q9VN13",-0.219851548301577,17.2633421348851,-3.24381960678831,0.00853045158708257,0.0799784271516122,-2.88714251842651 +"Q7KM15",-0.180535803613695,17.0030570642996,-3.24351799178482,0.00853486812529195,0.0799784271516122,-2.88765945806898 +"A1Z7K8",0.174811561749689,17.5606417792893,3.23596348198537,0.00864625570305641,0.0805695782832296,-2.90060775335659 +"Q9VSL3",0.213363289510831,22.5382309995254,3.22462701650088,0.00881620598667737,0.0810282738039895,-2.92004022794975 +"Q9VQR9",0.24911614876652,16.2038354686712,3.22374458730874,0.00882957749466405,0.0810282738039895,-2.921552943079 +"O97102",-0.217922120908536,21.0603264633124,-3.22297773400771,0.00884121452777343,0.0810282738039895,-2.92286754132112 +"Q9VH66",-0.18845346988744,16.820400106082,-3.21678963518087,0.00893569537496871,0.0814466660406984,-2.93347599908862 +"Q8IRH5",0.155586247635787,14.3463211141873,3.21088185710633,0.00902686015865299,0.0818304496990934,-2.94360444626129 +"Q9VAY3",-0.335671567648733,13.9721777993089,-3.19085607969959,0.00934302299273275,0.0837709031903007,-2.97794069764437 +"Q9V521",0.197395442170071,17.4635266091091,3.18757316246583,0.00939592300080095,0.0837709031903007,-2.98357005434387 +"Q9XY35",-0.14167488083752,19.2143082866006,-3.18163319117588,0.00949241728067208,0.0837709031903007,-2.99375585556243 +"P48596",0.14735023367173,21.9951453467165,3.18019541070807,0.00951592571761764,0.0837709031903007,-2.99622139789994 +"Q9VIE7",0.212740056557498,14.9687503368262,3.1788612635197,0.0095377929005136,0.0837709031903007,-2.99850924421152 +"Q9VB17",-0.1670605172742,15.6225173861712,-3.17651053820304,0.00957644717694204,0.0837709031903007,-3.00254039573523 +"Q7JZV0",-0.316998194932607,15.1624944931239,-3.17425233083601,0.00961373083257432,0.0837709031903007,-3.00641293677979 +"P09180",0.153362154746183,20.7684086185402,3.17250425257465,0.00964269389240871,0.0837709031903007,-3.009410699223 +"Q9VXF9",0.154338968910128,17.4388740820193,3.16088985548143,0.00983740349433218,0.0850196322722594,-3.02932867702165 +"Q9V3J4",-0.183029919296914,16.6312887465052,-3.14963463889082,0.010029921767868,0.0862366469525969,-3.04863142542683 +"Q9VM69",0.204025058406076,16.7938522491854,3.1396999401987,0.0102030459157419,0.0868205480351349,-3.06566988157063 +"Q9VT23",-0.195678080343612,18.4214511184931,-3.13866977020859,0.0102211714402665,0.0868205480351349,-3.06743668358323 +"Q9VKE2",0.277170029284946,24.0003695902906,3.13680949859523,0.0102539855892815,0.0868205480351349,-3.07062716321324 +"Q8SZM2",0.174302913469717,21.2518131169834,3.12920957518758,0.0103891638543056,0.0875208348938474,-3.08366153545358 +"Q9VAA9",0.15026361127082,17.0489444797478,3.10244101722489,0.0108799277098708,0.0911945699500726,-3.12957086073135 +"Q7JV09",0.194884694352524,15.1445339345546,3.0865371127117,0.0111826221605207,0.0930241038594081,-3.15684535480696 +"Q9VCR4",0.256976192184839,14.9239698355593,3.08291339247339,0.0112527822776121,0.0930241038594081,-3.1630596218017 +"Q9VH95",0.146436786955743,20.8370589413008,3.08225853144945,0.0112655089805758,0.0930241038594081,-3.16418262196593 +"P54622",-0.203796207634813,18.0439202943791,-3.0739684921067,0.0114278912219385,0.0937730990852163,-3.1783986020383 +"Q9VP13",0.459928662607407,11.7713076285137,3.07190634059927,0.0114686524061056,0.0937730990852163,-3.18193472820815 +"Q7K569",-0.209930062720829,20.7772144629358,-3.06010149361676,0.0117048534807927,0.0952375395412791,-3.20217645622699 +"P56538",-0.141794841947537,17.1171552334461,-3.04648653739781,0.0119834220240359,0.0970308152237471,-3.22551969686279 +"O97365",0.126606985051556,18.0109494203035,3.03740850121691,0.0121728972986075,0.0973217596230531,-3.24108266894091 +"Q9NBD7",-0.421640914681127,13.2902882378235,-3.03693329867196,0.0121828990495137,0.0973217596230531,-3.24189729613292 +"Q9W4W8",-0.221398392649046,17.4760320514368,-3.03477481207257,0.0122284346056093,0.0973217596230531,-3.24559748247137 +"Q9GYU8",-0.725560628962533,12.6270570264852,-3.03362604346088,0.012252739520888,0.0973217596230531,-3.24756672532081 +"Q9W4X7",0.135347965056081,19.1436506462052,3.02553152337706,0.0124253943625391,0.0981326996908219,-3.26144181850615 +"Q9VH77",-0.262515128093208,15.5972810715732,-3.02334283988632,0.0124725013995529,0.0981326996908219,-3.26519329639537 +"Q9V597",0.3415222371383,20.1319843960737,3.01688959064409,0.0126124524288867,0.0987679373304367,-3.2762538104872 +"B7Z0Q1",-0.145892154652678,17.7935583594685,-3.00975079437724,0.0127691280833358,0.0993616169060137,-3.28848826338418 +"Q9W0C1",-0.164884373894463,21.3115993246609,-3.00802034925621,0.0128074026587488,0.0993616169060137,-3.29145372210832 +"Q9VP57",-0.276169011387598,19.5219660625538,-2.9891142609211,0.0132332302617256,0.102189944798881,-3.32384823203182 +"Q9VZI8",-0.215008364331835,15.8473408890738,-2.97299016933966,0.013607720282325,0.104597591847549,-3.3514682871249 +"Q9VDV3",0.144261265701406,17.50259571609,2.92695794381873,0.0147369473000961,0.112757927048441,-3.43027308254951 +"A1Z803",-0.126818505353054,19.0389217608492,-2.92295084760579,0.014839621476493,0.112905331434125,-3.43712926120755 +"A1ZBD8",0.215987151035428,14.2428820226478,2.91662943919283,0.0150030666715718,0.112905331434125,-3.44794389053213 +"Q9VXR9",-0.169707047462696,15.3305127736148,-2.91409716895551,0.015069049516365,0.112905331434125,-3.45227560673923 +"Q9VJQ6",-0.294678987533665,14.5386376468132,-2.91364458658483,0.0150808731905184,0.112905331434125,-3.4530497675593 +"Q9W3W4",-0.193174968981031,16.0149393324306,-2.91311740322888,0.0150946576197901,0.112905331434125,-3.45395152520461 +"Q9VY87",-0.234659433319834,17.7217989828195,-2.90918259874479,0.0151979447953259,0.113170410350909,-3.46068170156091 +"Q9W3K9",-0.219130328831593,19.4238046391869,-2.90432572538439,0.0153264203409402,0.11361986279417,-3.46898805328817 +"O77410",-0.218055340093853,14.4682873141122,-2.89882286375979,0.0154733088215211,0.114201235019014,-3.47839789031276 +"Q9VND8",-0.633577190924008,18.5628870706478,-2.89282546102101,0.0156350163252834,0.114886375465078,-3.48865177179162 +"Q7K0P0",-0.234327333122836,15.2327356217101,-2.8760632875053,0.0160960699828814,0.117755459348448,-3.51730105824328 +"Q9VSL9",-0.341171573110762,14.7813625967647,-2.85588889577711,0.0166691880182078,0.120919520272024,-3.55176291804203 +"Q9VEP6",0.164429662664215,18.5888841338332,2.85573787149497,0.0166735549535764,0.120919520272024,-3.55202081290942 +"Q9VAF5",0.14354739559165,15.9981024266242,2.84639759101494,0.0169458834405461,0.122362483025242,-3.56796809144524 +"O02649",0.139150988113535,23.2629009574893,2.83374852173413,0.0173218332306985,0.124538007882781,-3.58955646381532 +"Q9VAQ4",-0.242025074805651,15.9128967648192,-2.81824507341801,0.0177940792913289,0.12738422428299,-3.61600290861823 +"M9MSK4",-0.15745278823649,20.5290705533767,-2.81255429110724,0.0179706526184174,0.128098498151796,-3.62570658388594 +"Q9VEP8",0.150148321305641,17.2286047835101,2.80496389493677,0.0182089094033049,0.128763464015802,-3.63864601876835 +"Q9VE52",0.188310679173174,15.9322647277513,2.80466576835714,0.0182183318391662,0.128763464015802,-3.63915415841894 +"Q9VW14",0.24656603462955,13.7317459227015,2.79918268856803,0.0183925027850347,0.129445968968092,-3.6484986561777 +"Q9VSA9",0.108847533199722,22.2183110523498,2.79011052794183,0.0186843594564953,0.130947527619471,-3.66395516802578 +"Q9VCH5",0.111807837809142,17.9724834360116,2.7795037647119,0.019031482203574,0.132294238064319,-3.68201866334596 +"Q7JV69",-0.225709020001112,16.1616052939006,-2.77939296661345,0.0190351421675279,0.132294238064319,-3.68220731035983 +"Q7KMQ0",0.144998851755052,20.7839250043677,2.77210580419709,0.0192774128749914,0.133422094089152,-3.69461253820532 +"Q9W3N7",0.234203352592225,17.1333236870422,2.76428619410377,0.0195408239590527,0.134686340345867,-3.70791963338398 +"P29829",-0.197907183261034,21.417117699231,-2.7600160503449,0.0196861870108847,0.135129876272245,-3.71518436519392 +"Q9VDT1",-0.16383593700975,19.23813907505,-2.75422585479338,0.0198850266911686,0.135935346397005,-3.72503280924802 +"Q9VJI5",0.116134021257762,17.652938204105,2.75019701064809,0.0200245654248406,0.136330510729119,-3.73188379577063 +"O61491",-0.132765322654219,20.9740062084786,-2.74081495410005,0.020353322719966,0.138005456491477,-3.74783262878969 +"Q9VE08",0.288002654889247,14.6089365558669,2.72999610719599,0.0207391358848632,0.140052140307497,-3.76621463338354 +"A1ZB69",0.143935361307097,20.369465214526,2.69663263825309,0.0219755499342172,0.147803295525299,-3.82283566239361 +"Q7JVZ8",0.259931569807101,15.9723486217246,2.68561365588433,0.0223998562701859,0.150052049231607,-3.84151289369104 +"Q9VMY1",0.276203114824069,15.6076110818271,2.68325131285835,0.0224918810118158,0.150065830110835,-3.84551552244561 +"Q7KUA4",0.120277898908629,18.7217771475792,2.66499229054488,0.0232159882994417,0.153682951085023,-3.8764335918737 +"Q9VEB3",0.304445469731146,12.2895694138068,2.66493522071759,0.0232182875739963,0.153682951085023,-3.87653017456644 +"Q7JPS2",-0.224353800724231,20.5733062951783,-2.65151437669513,0.0237653420503167,0.156682176047147,-3.89923349537663 +"A1Z877",-0.15012132162294,20.0178938048181,-2.64598133133224,0.0239945950519445,0.157570805301746,-3.90858780673679 +"O62602",-0.236950355270862,14.6489447667261,-2.63691607833635,0.0243749635800308,0.159440938241142,-3.92390646884464 +"P32234",0.190539890517604,16.674876304268,2.63437944120247,0.0244824677270736,0.159518578784214,-3.92819128874349 +"A8DRW0",-0.170947302661624,21.4896507534878,-2.63060953430338,0.0246431099090767,0.159940495441012,-3.93455796942595 +"Q9VVU5",-0.206356896650558,15.6182409960931,-2.62171614990416,0.0250262343914438,0.161566743861371,-3.94957080937934 +"Q86BN8",-0.208816795067033,14.1230967669581,-2.62030881096974,0.0250874020743976,0.161566743861371,-3.95194568499364 +"Q24297",-0.13220093974029,17.0637091426371,-2.61427120231467,0.025351506066231,0.161805858730157,-3.96213147207812 +"Q9VRG8",0.152354999430646,16.1885796387214,2.61343284431832,0.0253883961001799,0.161805858730157,-3.96354548865516 +"Q9VC18",-0.163563845339613,18.5487265265269,-2.61281655357062,0.0254155485535379,0.161805858730157,-3.96458490218223 +"Q9VLS5",0.195965355521141,14.5792504353019,2.60379143516208,0.0258164934531044,0.16373350220448,-3.97980112096622 +"Q9VK11",-0.167298908830894,18.7650486004637,-2.59719944281565,0.0261133056456721,0.16498861294311,-3.99090887301553 +"Q9W0Y1",0.152548619790736,17.676161982104,2.59018026738392,0.0264330730578377,0.166378739096126,-4.00273054020459 +"Q9W227",0.100712673341491,21.9153365421577,2.5799012831805,0.026908360949962,0.167005972626499,-4.02003117307841 +"Q9VNE9",0.152996067636231,19.0266269502374,2.5784965988202,0.0269739660700586,0.167005972626499,-4.02239435982221 +"Q9VDU7",0.146097543989715,18.2888425174504,2.57806835049931,0.0269939987020307,0.167005972626499,-4.02311477769884 +"Q9VGE7",0.298063089424527,13.8393088083226,2.57660005223702,0.0270627948054175,0.167005972626499,-4.02558463280471 +"Q9VJQ5",0.292210803082032,14.3131884211555,2.57610649204729,0.0270859592016684,0.167005972626499,-4.02641479804107 +"Q9V3Y7",0.1696794739692,19.393978596755,2.57509561299833,0.0271334643775667,0.167005972626499,-4.02811499184336 +"Q9VNW6",-0.204731328166321,21.9051782188391,-2.57059161053666,0.0273461298059236,0.167696119545149,-4.0356886394609 +"Q9W4C2",0.21690894420901,15.77688322216,2.56505250178498,0.0276099334827272,0.168062710360656,-4.04499920378078 +"Q9VSK4",-0.15022740439391,19.7169325716405,-2.56453951079671,0.0276344920737211,0.168062710360656,-4.04586127342188 +"Q9VW26",0.125079592423891,17.5670869957254,2.56113224025927,0.0277981589594181,0.168062710360656,-4.05158622360618 +"Q8SXX1",-0.108033440024379,19.8830310225014,-2.56090854238476,0.0278089376855761,0.168062710360656,-4.05196203004258 +"O76752",-0.145389865358364,17.8826664902307,-2.55646435960616,0.0280239365812376,0.168133471246535,-4.05942674320809 +"Q9VLY7",-0.169331379560077,15.5630645368527,-2.55378659636413,0.0281542732190329,0.168133471246535,-4.06392318412872 +"Q9W4K0",-0.153235562007673,19.7720482292452,-2.55291669102587,0.0281967435925968,0.168133471246535,-4.06538370014176 +"Q9V4S8",0.201916468851307,17.0301371171612,2.55236227810729,0.0282238440941426,0.168133471246535,-4.06631447049906 +"Q9VDD1",0.265048133740088,14.2716186513149,2.54392599009535,0.02863941317099,0.168753108432741,-4.08047243575247 +"Q9VSR8",0.190564540153968,15.4975609413312,2.54262144653571,0.0287042122320861,0.168753108432741,-4.08266087045993 +"Q9VZZ6",-0.144151160698332,18.4478547968946,-2.54250763493368,0.0287098723283385,0.168753108432741,-4.08285178366166 +"Q9VR79",0.188266511364194,20.3998609620991,2.53975990248989,0.0288468581767157,0.168753108432741,-4.08746041631064 +"Q9VKF0",-0.179508211195555,15.9083372393935,-2.53904865552443,0.0288824218667192,0.168753108432741,-4.08865318251797 +"Q9VG97",0.135465496384516,20.0689560090642,2.53800100040753,0.0289348854986594,0.168753108432741,-4.09040997807414 +"Q9VN01",-0.102739738064022,16.1454195783249,-2.53494319195655,0.0290885508887326,0.169058198196536,-4.09553668125262 +"Q7K1S1",-0.198721242482112,16.7178984324883,-2.532640961907,0.0292047774428773,0.169144336023331,-4.099395712087 +"Q9VK58",0.863823384873125,13.0720555701016,2.51142711069313,0.0302975454971893,0.173354347466394,-4.13491866917147 +"Q7KND8",0.155491685551601,15.4092269251913,2.51112971950216,0.0303131478870845,0.173354347466394,-4.13541618646758 +"P41375",0.216172411905905,16.6698991461418,2.50994900310871,0.0303751714220569,0.173354347466394,-4.13739132282697 +"Q9VWS1",0.168181764706601,17.2064453355406,2.50956063451572,0.0303955999215651,0.173354347466394,-4.13804095152045 +"Q9VCR2",-0.204017696087403,15.5663464288161,-2.50760697293853,0.0304985696971298,0.173354347466394,-4.14130852193125 +"P28668",0.169564586941664,15.629943031294,2.50653410161038,0.0305552626829255,0.173354347466394,-4.14310269504947 +"Q9VIF2",-0.157292828885854,17.5821786941223,-2.49838138189384,0.0309894775726842,0.174662378749819,-4.15673088642387 +"Q8SXY6",-0.185518146128395,19.1634759474135,-2.49827390394009,0.0309952422721501,0.174662378749819,-4.15691048048045 +"Q9VRR3",0.159942149504179,19.6680858588852,2.49142193726177,0.0313649433048711,0.176150590681902,-4.16835635330252 +"Q9VK18",0.155260919698733,14.5549353079738,2.48078661941106,0.0319473919243262,0.176951516829462,-4.18610768033278 +"Q9W265",0.150235763596061,17.0547235981163,2.48070335728179,0.0319519935474035,0.176951516829462,-4.18624658237481 +"Q9VMT5",-0.154418143241287,16.5674812298601,-2.48038291494093,0.0319697094225782,0.176951516829462,-4.18678115004983 +"Q8SXS0",0.190983757021687,14.5273435392617,2.48007488005822,0.0319867484519739,0.176951516829462,-4.18729500404832 +"Q9VJZ5",0.129179854480785,16.8481014528117,2.47914959703468,0.032037984461929,0.176951516829462,-4.18883844130457 +"Q9VA42",0.228168249976104,20.0686380717812,2.47222475284859,0.032424007325612,0.178492555178617,-4.20038523660805 +"Q9VXN3",0.18900022590301,16.9050531496589,2.46163880718633,0.0330229709907716,0.181191827673049,-4.21802176465319 +"Q9VCE1",0.184482485703732,13.5800451449543,2.453287659863,0.0335031459414705,0.183223762066796,-4.23192207622694 +"Q9VN73",-0.103948533764893,18.4672392083489,-2.44567990866384,0.0339465399638236,0.184300574715847,-4.24457489338216 +"Q9W1G7",-0.122097056471681,18.9201126754594,-2.44461020385313,0.0340093443835199,0.184300574715847,-4.24635318833149 +"Q9W0N6",0.237553753348422,14.5397726281946,2.44423294782097,0.034031520990696,0.184300574715847,-4.24698029870627 +"Q9VGJ9",-0.170279320992769,17.9976866529157,-2.43974705632623,0.0342963092473856,0.185133475160645,-4.25443531180714 +"Q9VN44",0.131065059415143,19.4746980513068,2.43257605958502,0.0347237932320545,0.1868364100357,-4.26634547963245 +"Q0E8C8",-0.191317477192012,17.6418789529533,-2.42647699356658,0.0350914833884124,0.187917006758654,-4.27646828188274 +"A1Z8Z7",0.14797515777602,18.944762599642,2.42542295089132,0.0351554132304544,0.187917006758654,-4.27821704856554 +"Q9VDQ3",0.5202460302195,13.2248651879734,2.42365985441442,0.0352626037862462,0.187917006758654,-4.28114177260994 +"Q8SXQ1",-0.185145902981297,18.763641968041,-2.40911682724904,0.0361590667451214,0.19160089404158,-4.30524549001246 +"Q9VN86",-0.230282873291335,15.4804850105866,-2.40580383256513,0.0363663853855304,0.19160089404158,-4.31073115021453 +"Q9VM18",0.110442358912785,22.8502204800418,2.40462961280807,0.036440143775514,0.19160089404158,-4.31267494519039 +"Q8SX89",0.192713129695234,15.4010410866735,2.40351061451935,0.0365105695981307,0.19160089404158,-4.31452709269171 +"Q7KLW9",-0.123938356555961,17.299049571388,-2.40323037060182,0.0365282280007329,0.19160089404158,-4.31499091194802 +"Q9V784",0.320197772406217,14.0730354345362,2.39775551004523,0.0368748836657701,0.192355213497909,-4.32404921782833 +"Q7KSE4",0.183898633303551,13.7872972585047,2.39469042263607,0.0370703602415174,0.192355213497909,-4.32911807275284 +"Q7KTP7",0.108321414910598,17.8698408347801,2.39357625012677,0.0371416675287915,0.192355213497909,-4.33096019121573 +"Q5U1B0",0.24081622194238,14.6383094187753,2.3933357852688,0.0371570749119138,0.192355213497909,-4.3313577337655 +"Q0E8X8",-0.158353406615696,19.8560905526376,-2.39190870248068,0.0372486414627245,0.192355213497909,-4.3337168010954 +"P18053",0.13415760118902,21.0630340976751,2.38936408653654,0.0374124601919875,0.192372835955112,-4.33792228424522 +"P14318",0.139627739585986,21.9786799317018,2.38779421408073,0.0375138771984076,0.192372835955112,-4.34051620466847 +"Q8MZI3",-0.164367416498951,17.9603688617428,-2.38649444306866,0.0375980482742005,0.192372835955112,-4.34266348221703 +"Q9W074",-0.218889199719127,13.6005723667826,-2.37891753350661,0.0380924005433914,0.194091577399858,-4.35517449794567 +"Q9VNZ3",-0.536785104036657,15.5226752267684,-2.37778722249282,0.0381666890810272,0.194091577399858,-4.35703993411371 +"Q9V3Z4",-0.172756913985143,18.8167048290958,-2.37356136478312,0.038445683880062,0.194916111586454,-4.36401201014803 +"Q9VXG4",0.148025487503524,19.9098978652396,2.36937156021259,0.0387242625901183,0.195733545455507,-4.37092120336817 +"O18333",-0.202849484662481,17.5427073394481,-2.35324302455674,0.0398151328449525,0.20025338271618,-4.39748589869382 +"Q9W0M5",0.156661071971929,13.2905799257109,2.35055002426445,0.0400001707514996,0.20025338271618,-4.40191641376528 +"Q9VTZ4",-0.12967630342354,18.3242212626394,-2.34999864413508,0.0400381596264762,0.20025338271618,-4.40282336328004 +"Q9VIS4",0.184576389325084,14.127903728061,2.34912101329656,0.0400986989371727,0.20025338271618,-4.40426682737436 +"Q4V5I9",-0.198317839373686,16.0078217905005,-2.34279875225409,0.0405374522067221,0.20184020979347,-4.41466063645712 +"Q9VDK9",-0.171377525657988,15.6199296002043,-2.33977956677956,0.0407486232838901,0.202287808445026,-4.4196213219986 +"Q9VTB0",0.190282786800463,16.984788736397,2.33429348827192,0.0411350790754779,0.203600332041238,-4.42863047381489 +"Q8SXF0",-0.12607428855268,16.5317425568007,-2.3178657092,0.0423137345720553,0.208814524456178,-4.45557057709332 +"Q9VK99",0.198191203796743,20.0143812490657,2.30893266594369,0.0429683634115938,0.211419558025187,-4.47019607837017 +"A1Z8Z3",-0.19219447596598,19.904217354263,-2.30600726032825,0.0431848710755216,0.211594190605578,-4.47498194184786 +"Q9W3M8",-0.101344048304199,18.6711990095897,-2.30472712084737,0.0432799460995687,0.211594190605578,-4.47707562538003 +"Q9U6P7",-0.155848174090856,17.022759657731,-2.30332356720982,0.0433844203759639,0.211594190605578,-4.47937074662598 +"Q09101",-0.170671712075487,14.7044296955978,-2.30150094528662,0.0435204533769069,0.211638822835804,-4.48235049951293 +"Q9W1G0",0.115543505539602,21.6845142243703,2.29439888613941,0.0440544786818716,0.213612995469075,-4.4939545404068 +"Q0KI98",-0.14923162293214,16.6550671562105,-2.28995344904316,0.044391970999496,0.214625529354085,-4.50121229168233 +"Q9VVZ4",0.251018160779616,15.7166772029234,2.28168305801926,0.0450265260168525,0.217064293052341,-4.51470309842243 +"Q9VZ58",0.0984913331984494,18.1679154023081,2.27575526828262,0.0454867364500763,0.218146705257268,-4.52436317533583 +"Q8MRM0",0.180214003278277,18.5160808426049,2.26925920611022,0.0459962922414841,0.218146705257268,-4.53494017465575 +"P45888",-0.098580237930749,17.2893846968025,-2.26697495338964,0.0461767792922488,0.218146705257268,-4.53865714279469 +"Q9VJE3",0.17223244213983,15.2134507155153,2.26684709054226,0.0461869024112156,0.218146705257268,-4.53886516762155 +"Q8IPX7",0.331542449148278,15.2383734108442,2.26592986231919,0.0462595838603408,0.218146705257268,-4.54035733016402 +"Q9I7X6",-0.235401327182808,14.8550144678603,-2.26558938446629,0.0462865915635975,0.218146705257268,-4.54091117608613 +"Q961B9",-0.192162098515919,15.0023867217077,-2.2655727008405,0.0462879153495123,0.218146705257268,-4.54093831419354 +"Q9NK57",0.228501392258789,15.4236933700929,2.26545415818071,0.0462973223387727,0.218146705257268,-4.54113113754499 +"P32748",-0.151262176973086,17.3869066959542,-2.261209790334,0.0466353557652455,0.219120488496984,-4.54803295571944 +"Q7JUN9",0.422973059543231,13.4022131527247,2.25789727922077,0.0469008294827175,0.219152031047792,-4.55341656977113 +"Q9W3B3",0.112750194383837,15.6064424409218,2.25784736142916,0.046904841177495,0.219152031047792,-4.55349767846412 +"Q9W0C3",0.16857886531432,18.5300521372333,2.25005962002507,0.0475347871681618,0.221474930157804,-4.5661444127621 +"Q9VDT5",0.212043613955256,19.0518353993786,2.24371349438242,0.0480541543469668,0.222865748987607,-4.57643949542488 +"Q9VBU9",-0.114944449562312,20.8898472515983,-2.24315016013874,0.0481005213642318,0.222865748987607,-4.5773529093544 +"P09208",0.543049695390728,12.8471839064655,2.23905823313399,0.0484386181901453,0.223441947387356,-4.5839854579995 +"Q9VM33",-0.364200389008369,13.7871859000803,-2.23840508185661,0.0484927967351457,0.223441947387356,-4.58504377092173 +"A1Z9E3",-0.111872098767563,21.7804210651904,-2.23235880515127,0.048997113985686,0.225143763438359,-4.59483578691735 +"Q9VVI2",0.56116828758695,13.7406453392017,2.2268117062976,0.0494642386711689,0.226665796987664,-4.60381158865289 +"Q6NL44",-0.205784864451459,15.3269946903028,-2.22520654985862,0.0496002084042,0.226666157858098,-4.60640750428214 +"Q9V4W1",0.332379199430731,13.5846621835561,2.21976865942188,0.0500635222452083,0.227689770489176,-4.61519715295671 +"Q8SZN1",0.15113270697497,19.9337071635573,2.21937516350225,0.0500972096939613,0.227689770489176,-4.61583290575507 +"Q9VUX1",0.11684838737261,16.5054856755968,2.21337866101077,0.0506132818511719,0.229410201434116,-4.6255164248165 +"Q7K0S6",0.142675531625819,17.3751128197337,2.2103540843377,0.0508755205521193,0.229717768991779,-4.63039730008777 +"Q8MSI2",0.179418372446428,23.7633719842942,2.20942221080762,0.0509565794526128,0.229717768991779,-4.63190063893473 +"Q9VLU4",0.0957418999763657,17.1240580807731,2.20683940056279,0.0511818945920349,0.230111590780362,-4.63606620142822 +"Q9Y143",0.0969277418404175,20.8585057448267,2.20374445138607,0.0514531487152048,0.230299634714298,-4.64105553048248 +"Q9VL69",-0.152644235336769,16.0949400981199,-2.2017288735471,0.0516305447468261,0.230299634714298,-4.64430351669191 +"O97479",-0.21858459124315,17.9440401699775,-2.20145596245577,0.051654609469761,0.230299634714298,-4.64474321787251 +"Q7K3J0",-0.12360947883494,20.4162417818993,-2.19898082010053,0.0518733550197812,0.230299634714298,-4.64873018393048 +"A1Z6V5",0.148517396396802,19.9831915032711,2.19630289668247,0.0521110240693079,0.230299634714298,-4.65304203301867 +"P49963",0.130030648423084,14.9375026266523,2.19541021637936,0.0521904827683312,0.230299634714298,-4.6544789720168 +"Q8T0Q4",0.125253375649788,19.9450576952229,2.19474350864524,0.0522499032370601,0.230299634714298,-4.65555203206098 +"P40797",-0.0988304065822909,19.1922492368562,-2.19386528456317,0.0523282743145797,0.230299634714298,-4.6569653518942 +"Q9VVW7",0.1193858530093,16.5102271296941,2.19083650458974,0.0525994238475409,0.230883786783416,-4.66183802653407 +"Q9VW73",-0.165737220376466,14.2893473972126,-2.18557517543728,0.0530736504705802,0.232353934343643,-4.67029678041803 +"Q9V3W9",0.094297105799388,18.4793982703753,2.18237548795185,0.0533640557255539,0.233013730236188,-4.67543747627967 +"Q7K5M6",0.116145597905156,18.1008761577239,2.17919805167157,0.0536539495075916,0.233667853207997,-4.6805397796687 +"Q7K2W6",0.136014333954044,16.795532809579,2.17352775698004,0.0541750354176436,0.23532281009539,-4.68963851420856 +"Q9VU95",0.147923101138229,16.6342090714877,2.16974452758037,0.0545253988229779,0.235672245744667,-4.69570448314269 +"Q7K511",-0.297276999766085,16.9650727115624,-2.16719049627064,0.054763153045918,0.235672245744667,-4.69979742698566 +"Q9XZ63",0.279297989100094,19.0069854472565,2.16616095178928,0.0548592736722625,0.235672245744667,-4.70144682430708 +"A1ZBU5",0.12863615689259,16.557003785199,2.16526748658191,0.054942820562255,0.235672245744667,-4.7028779843862 +"Q9VC67",0.164879903757221,15.1168019500406,2.16506328182406,0.0549619326107166,0.235672245744667,-4.70320505132833 +"O77477",-0.113510157874698,16.9499927286381,-2.15237680670998,0.0561618520834455,0.239233450772046,-4.72350249431789 +"Q9VKD3",-0.112230522798352,18.8684989962583,-2.15094799135043,0.0562985528255633,0.239233450772046,-4.72578576425076 +"P54385",-0.165568218155915,21.6755441300828,-2.15035981595973,0.0563549184264396,0.239233450772046,-4.7267255162099 +"Q9VEB1",-0.0850479064377261,25.0700366079905,-2.15024263191317,0.0563661547682338,0.239233450772046,-4.72691273468709 +"Q9VZE4",-0.122197291606394,17.734836049102,-2.14675220466054,0.0567018226076042,0.239664353991971,-4.73248747522475 +"Q9W1I8",0.131262612915382,17.8617050436602,2.14595677796665,0.0567785842051376,0.239664353991971,-4.73375742479933 +"Q7K519",-0.146652903384355,15.7234004680534,-2.14446581156048,0.0569227355784148,0.239664353991971,-4.73613737952389 +"Q9VRD4",-0.112553672387001,20.3166117619933,-2.14323069690479,0.0570424151887364,0.239664353991971,-4.73810846748753 +"O97454",0.26787364609169,14.0228925217882,2.12451020293156,0.0588860711467206,0.246153461038143,-4.76793208694028 +"Q94901",0.0921477559884458,19.0157861576264,2.12385036593561,0.0589520803414815,0.246153461038143,-4.76898147833688 +"Q7K5J8",-0.115108630981172,18.1574607022944,-2.12307629820167,0.0590296069635835,0.246153461038143,-4.77021238274286 +"Q9VER6",0.230878116912649,14.9188953619193,2.12142171728862,0.0591956473306365,0.246230273684543,-4.77284288852682 +"Q24439",0.0905324399746092,24.2205606648298,2.11681988007823,0.0596597948123945,0.247543626236502,-4.78015493915176 +"Q27268",-0.211348383034334,19.0818292003155,-2.115301937192,0.0598136557759174,0.247566198099827,-4.78256553492712 +"Q9VND7",0.145330362892008,13.9159152652131,2.11002435470953,0.0603515464885036,0.249174206789168,-4.79094154298822 +"Q9VGQ8",0.110766497970857,16.2585544813343,2.10519209641876,0.0608480865355237,0.250217598271235,-4.79860372936121 +"A1Z8H1",-0.117857021668215,23.0908976105331,-2.10419232721707,0.0609513024368344,0.250217598271235,-4.80018815019999 +"Q9VHT5",0.125953588223641,15.7153748860854,2.10319633495034,0.0610542940625854,0.250217598271235,-4.80176629616046 +"Q9VU92",-0.146460621456541,17.7885707877963,-2.10140370347129,0.0612400803516416,0.250363857908182,-4.80460598527237 +"Q9VAI9",0.130977842581164,21.924299457077,2.09752154611742,0.061644267811872,0.25083512528597,-4.81075245003546 +"Q9VQ35",-0.267199621362394,12.2847440799862,-2.09576422347908,0.0618280628803441,0.25083512528597,-4.81353329508129 +"A1Z6G9",0.181781121795531,14.2892726083222,2.09484189238489,0.0619247361252021,0.25083512528597,-4.81499245847782 +"P13677",-0.191706584037954,16.908236599816,-2.09211298423508,0.0622116061973793,0.25083512528597,-4.81930822706865 +"Q9VLS9",0.149388227547604,18.8922508703174,2.09075960657904,0.0623543449446239,0.25083512528597,-4.82144777738676 +"A1Z992",0.213594730505946,14.0722006304182,2.09049550154931,0.0623822359805127,0.25083512528597,-4.82186523690202 +"Q9VSK9",0.165553808217613,14.4709815168729,2.09025145008806,0.0624080197803822,0.25083512528597,-4.82225098021854 +"Q7JVH6",-0.0917336490784315,19.005866593423,-2.08710573908162,0.0627412687483774,0.251568356423783,-4.8272214509638 +"Q9VMR6",0.0915677325493185,18.6661357537493,2.08375206019979,0.0630984105932368,0.252393642372947,-4.83251728160982 +"P53034",0.13508719045654,15.67679957553,2.08208154021919,0.0632770279965821,0.252502590187318,-4.83515396348193 +"P20348",0.134300400418937,17.3147562229782,2.07769186081378,0.0637486772240816,0.253651847406666,-4.84207846544674 +"P23779",0.112881370469228,20.804998717406,2.07465477870039,0.0640769469945152,0.253651847406666,-4.84686591347802 +"P48159",0.0866709109241413,19.9078436438646,2.07453865975656,0.0640895297416967,0.253651847406666,-4.84704890006593 +"Q9VKU5",0.313837475202817,13.50344162012,2.07376605892187,0.0641733091160749,0.253651847406666,-4.84826630276788 +"Q7KN90",0.094761349132094,17.2207608599584,2.06786212303588,0.0648169585590636,0.255590276303825,-4.8575632660672 +"Q9V564",0.133231553404269,14.0673218782435,2.0657678792351,0.0650467407127052,0.255891423369793,-4.8608585302508 +"Q9VS11",0.137956530020611,14.9226353312817,2.06432709096611,0.0652052731891349,0.255911519245828,-4.86312481117976 +"Q9VGL0",0.278394110711202,12.8372270631775,2.06117082093679,0.0655538434092805,0.256209629271148,-4.86808722269934 +"Q9W1M9",0.313872786387897,14.2722914373343,2.06085845354046,0.0655884362702518,0.256209629271148,-4.86857817222882 +"Q8IMT6",-0.16094717647233,16.1715548930342,-2.05373319253854,0.0663822271938192,0.258704567661893,-4.87976879026661 +"Q9W3Y3",0.106297519496515,17.9441762165466,2.04827050307797,0.0669969473058968,0.260491627287263,-4.88833755637518 +"Q8IP62",0.222391915014327,15.8530221432174,2.04336749660899,0.0675532670900752,0.261755270562835,-4.8960204429514 +"Q9XTL2",0.0908860477253448,16.8482075103012,2.04264332617987,0.0676358043240899,0.261755270562835,-4.89715455818487 +"Q95RG8",0.305487030780744,13.3917088793579,2.03204106526672,0.0688551578724093,0.265351233332283,-4.91373960639484 +"Q9W2V2",-0.232836300277336,14.2918285635836,-2.03160477801818,0.0689057767800129,0.265351233332283,-4.91442132050119 +"Q8IQG9",0.101864744599474,20.3413123855555,2.02959041974649,0.0691399424159201,0.265351233332283,-4.91756803504899 +"Q9W3R8",0.106563126415836,17.2173338590721,2.02906357618587,0.0692013108510451,0.265351233332283,-4.91839082499031 +"Q9V3Y0",0.139923854418324,16.2673096088083,2.0238301725301,0.0698137118869673,0.26708548492537,-4.92655916243884 +"Q9VHG6",-0.202201268580463,15.6734152328281,-2.02036612366761,0.0702218746096701,0.267135684462422,-4.93196100948061 +"Q9VF15",0.164739573891101,20.7893007745883,2.0183693707513,0.0704581695465124,0.267135684462422,-4.93507298167791 +"A8JTM7",-0.126825143184366,17.7721622298232,-2.01640636413563,0.0706912013383915,0.267135684462422,-4.93813109423756 +"P41094",0.0904972146340164,21.2033251354374,2.01639205128631,0.0706929031047161,0.267135684462422,-4.938153387206 +"Q9VZJ8",-0.125797240797979,14.9902298971764,-2.01615162754669,0.0707214947299678,0.267135684462422,-4.93852784903663 +"Q9VQI7",0.0872925885855622,19.0933525862996,2.0155948184579,0.0707877533167808,0.267135684462422,-4.93939501100826 +"Q9Y105",-0.35852684193479,17.1518238095215,-2.00562882337789,0.0719836106266416,0.270823318359392,-4.95489862660705 +"P38040",0.163781867170531,18.9922151438103,2.00469482783114,0.0720966537094473,0.270823318359392,-4.95634992031304 +"Q9V3W0",0.135124028516625,20.7576572235941,2.00341335525007,0.0722520243824517,0.270823318359392,-4.95834067265939 +"Q8IN43",0.298365035735621,17.5656187465675,1.99822970556423,0.0728837298078702,0.272578612824053,-4.96638784174941 +"Q7K0W4",0.130907286882049,21.7295559962615,1.99001990535541,0.0738948517744014,0.274770330907358,-4.97911446526467 +"O97125",-0.124668994283926,18.7366062287652,-1.9893083374018,0.0739831066410171,0.274770330907358,-4.98021645227393 +"Q9VVJ7",0.110050683473162,18.1412256347526,1.98837730439817,0.0740987309973962,0.274770330907358,-4.98165806094228 +"Q9VHG4",0.212455515507212,18.3948383989673,1.98684865574804,0.0742889409702522,0.274770330907358,-4.98402438015137 +"C0HK95",-0.187488476445541,19.8354633876715,-1.98681272932325,0.074293416810083,0.274770330907358,-4.98407998406449 +"Q9VLT3",-0.0850942268492609,19.4665118811965,-1.97900924490732,0.0752716238471173,0.277772275612813,-4.99614717052393 +"Q7K1H0",0.0863519055399333,16.2844123896824,1.97573296653837,0.0756859133013287,0.278684554937343,-5.00120736062491 +"E2QCN9",0.137793704090043,17.3386503406106,1.97360989860736,0.075955518607174,0.279061244574375,-5.00448445780348 +"Q7JRN6",0.211756477891623,14.5755462157114,1.96322233105878,0.0772876446430317,0.283331409372696,-5.02049591782553 +"Q9VWW2",0.360402513021644,15.1250051939472,1.96058463275225,0.0776293758073751,0.283960085190135,-5.02455571176003 +"Q95TN1",-0.138058220760325,14.1548976692733,-1.95792447326619,0.0779754488986424,0.284601857249312,-5.02864761203186 +"Q7K1U0",0.123350056106233,16.6422960928145,1.95659905710741,0.0781484170498506,0.28461039222522,-5.03068546227885 +"Q9W125",-0.14695188950288,21.3774623143512,-1.95151452654643,0.0788152880482245,0.286413726502044,-5.03849728006788 +"Q9VVK7",0.134608569920271,18.1481672523874,1.94869536874895,0.0791873289937511,0.287140140786037,-5.04282466768673 +"A1ZB73",0.572481445732764,13.4687819034522,1.9452629927706,0.0796425111264803,0.287506826551807,-5.04808953332348 +"Q9W1B9",-0.188228712319248,20.6981556996332,-1.94519621761578,0.0796513906592295,0.287506826551807,-5.04819191707949 +"Q9VP18",0.108795774859306,17.1086461670182,1.94403801293546,0.0798055519745125,0.287506826551807,-5.04996749454537 +"Q02748",-0.141169784562319,19.5950657560969,-1.93551115271797,0.0809491135353275,0.290998106415789,-5.06302476103413 +"Q9VS84",0.0915069296780224,17.5094243613283,1.92485935553195,0.0823991338944364,0.295573667389075,-5.07929911650032 +"P13060",-0.084624692886365,20.2895421038433,-1.92192936911935,0.082802214909651,0.296321444413372,-5.08376845731289 +"Q9V436",0.0788722130841357,19.1070354354058,1.92076506667825,0.0829628984059022,0.296321444413372,-5.08554358779751 +"Q9V3P3",0.0818264982502832,19.4199773370478,1.91699749901922,0.0834848463287772,0.296481905920001,-5.09128432350715 +"Q9W086",0.10135842579005,16.9594150939112,1.91670839841736,0.083525023504596,0.296481905920001,-5.09172461747866 +"Q9VIE8",0.083034235336779,25.0489929445137,1.91659300845094,0.0835410646177461,0.296481905920001,-5.09190034530481 +"Q9Y125",0.138170969592963,22.571238966889,1.91355572012399,0.0839643302093343,0.297351385964267,-5.09652407669892 +"Q8IPD8",0.125576617312483,18.2635258590238,1.90991506540817,0.0844743074702638,0.298319576453719,-5.10206182851135 +"A1Z7X8",-0.10003835857599,17.1261738988322,-1.90905346821442,0.0845954194619958,0.298319576453719,-5.10337167289363 +"P05812",-0.0876079349449945,15.8028855978435,-1.90665603254233,0.0849332695041259,0.298503833368171,-5.10701492437175 +"Q9VJJ1",0.197033121269012,14.0639856554327,1.90614400118446,0.0850055880394973,0.298503833368171,-5.10779275278393 +"Q9VPE2",-0.0973714614608845,20.990198088334,-1.90475612710947,0.0852018971668665,0.2985646312486,-5.10990058447384 +"Q95SK3",0.10343391218912,17.1792206884065,1.90287006481934,0.085469348259205,0.298873947371811,-5.11276388472004 +"Q9VKA1",0.275732705661596,14.605187351043,1.8897571724308,0.0873504692877801,0.304348931807797,-5.13263405443155 +"Q7KUC2",0.12651993423589,19.297793413442,1.88719828220472,0.0877220070592132,0.304348931807797,-5.13650398672153 +"Q7KTW5",-0.103781955424122,21.5637666678625,-1.88608684645614,0.0878838377721867,0.304348931807797,-5.13818408679787 +"Q9VF24",-0.141252747724893,16.2021647682123,-1.88552552979856,0.0879656734710659,0.304348931807797,-5.13903242098979 +"X2JAU8",-0.0868343531769469,21.614891385668,-1.8850330611981,0.0880375298067303,0.304348931807797,-5.13977660396304 +"Q9VHM3",-0.169750132430378,14.7223632830764,-1.88440111838078,0.0881298165846318,0.304348931807797,-5.14073141445553 +"Q9VW68",-0.0914594357251559,23.0567533635382,-1.88028323684625,0.0887333764850989,0.305177542139269,-5.14694942766205 +"Q7K127",0.146079376867085,18.5736732832359,1.88026759621596,0.0887356762215501,0.305177542139269,-5.1469730326528 +"Q9VGF7",-0.106583791672428,20.0308642033996,-1.87588782861626,0.0893818360318471,0.306201701167826,-5.15357931398171 +"Q9VJJ0",0.109348773425523,19.7362694899805,1.87515326473951,0.0894906339605967,0.306201701167826,-5.15468657857113 +"Q9VY42",-0.16202425404521,15.308112496236,-1.87452226414018,0.08958419074934,0.306201701167826,-5.15563756768853 +"Q9VXP4",0.100600313728972,17.968654051598,1.86842461401276,0.0904929472664332,0.308675329325993,-5.16481946013538 +"Q9VSL5",-0.118252306343415,17.6522654405991,-1.86174116150113,0.0914987949066109,0.311206030577834,-5.17486681333602 +"Q6NMY2",-0.198927916571659,20.2107237892172,-1.85926984969427,0.091873331667726,0.311206030577834,-5.17857754639824 +"Q9VPL3",0.225097232791663,15.8952515058265,1.85686878192702,0.0922385782195888,0.311206030577834,-5.18218050360263 +"Q08012",-0.122083700631176,19.1845282498247,-1.85621866370665,0.0923377035285269,0.311206030577834,-5.18315565670545 +"Q9W3X7",-0.100787771363816,21.5569386327251,-1.85520261760113,0.0924928198116305,0.311206030577834,-5.18467935357507 +"O96824",0.111783859968227,16.6513791209548,1.85510116778726,0.0925083210064299,0.311206030577834,-5.18483146871326 +"P25455",-0.163425492031543,15.842064831721,-1.85431922202089,0.0926278802086397,0.311206030577834,-5.1860037914723 +"Q8MLP9",0.230359026724432,14.8372950547955,1.85366868081991,0.0927274563532274,0.311206030577834,-5.1869789230724 +"Q9VBI3",0.109275869823076,18.5778729764938,1.84447252621343,0.0941456851337721,0.315183290365064,-5.20074554536751 +"P45594",0.0865030130244726,23.0320016173485,1.84354106377157,0.0942904447794766,0.315183290365064,-5.20213806036359 +"Q9VF89",-0.136526913061571,14.3206189711875,-1.8382413542593,0.0951179884964547,0.317313609624173,-5.21005437803057 +"Q24583",0.0874521932582688,21.187945078414,1.82913150351029,0.0965561222573326,0.32146828727591,-5.22363551474957 +"Q9VWL4",0.114165449646682,16.1037637192029,1.82607298834589,0.0970434237235101,0.321954385169231,-5.22818764755124 +"P04388",0.160228010390757,16.5352187025589,1.82579289381191,0.0970881629137429,0.321954385169231,-5.22860433469455 +"Q94915",0.246688085716013,16.8840368552945,1.82358179789866,0.097442004800797,0.322316638599164,-5.23189258094804 +"Q7K0B6",0.127462173505084,20.1627424562677,1.82269735103755,0.0975838743960298,0.322316638599164,-5.23320733163044 +"P20240",0.116883388061996,17.3858291763181,1.82144345363922,0.0977853308720717,0.322343738922165,-5.23507072932238 +"Q95T12",-0.13029421860189,15.9490629352428,-1.81712026786797,0.0984828443941103,0.324002730669381,-5.2414903942267 +"Q9W1E8",0.142577132976339,15.3648130066139,1.81308804331188,0.0991375268673422,0.325514556721903,-5.24747105128852 +"Q9VFP1",-0.261890666292835,15.8515127329681,-1.80739482607841,0.100068691377958,0.327510027618184,-5.25590384039575 +"Q9W260",-0.0973775608509655,17.4763900210789,-1.80697326696815,0.100137958084696,0.327510027618184,-5.25652771711581 +"Q9VVE2",0.119235482854325,18.329252195616,1.80555679190886,0.100371022210693,0.327629872891264,-5.25862345367466 +"Q9VLP0",0.110040909181418,15.9912338076614,1.80194493953505,0.100967560747722,0.328933381498438,-5.263963550181 +"Q9U9Q2",0.0867921641722109,15.5181123332777,1.8003523015231,0.101231633236101,0.329150807481123,-5.26631651665709 +"Q9VLB1",-0.136869710802053,16.8586868403239,-1.79733535102361,0.101733602645425,0.330139395355194,-5.27077084251618 +"Q9VHD3",-0.104131809353566,15.7514285197178,-1.79097488034258,0.10279934783842,0.332227866605775,-5.28014906824889 +"Q9VDH3",-0.0791908628899556,20.6397956639293,-1.79075824313711,0.102835826205901,0.332227866605775,-5.28046818832937 +"P36975",0.145845643543669,22.1594398282261,1.78993411736288,0.102974704457545,0.332227866605775,-5.28168199479044 +"E1JGR3",0.15168393482837,12.1788803809115,1.78762960254756,0.103363962214094,0.332839940102527,-5.28507464700954 +"Q9VGR2",0.085171754213885,15.6423050689551,1.78545142767729,0.103733115428109,0.333385041491493,-5.28827922546456 +"Q9VAY2",0.0706825506028075,21.1063656067594,1.78317105771395,0.104120878636925,0.333987741473828,-5.29163198544275 +"Q9V4N3",-0.149324266844413,19.7536533189345,-1.77588378205505,0.105368925040289,0.337342355023421,-5.30233130543483 +"P25171",0.150218597879908,16.7376853539272,1.77398290527212,0.10569671329872,0.33754870678696,-5.3051184509272 +"Q9W0A8",0.104113750154909,18.9399094420895,1.77316456957059,0.105838113698789,0.33754870678696,-5.30631784855777 +"P35220",0.108155298888217,19.2828068826825,1.76320013564778,0.107573755823201,0.342029786989783,-5.32089895931385 +"Q9VD64",0.221443130535318,15.5601455673168,1.76274721159832,0.107653260293547,0.342029786989783,-5.32156070244511 +"Q9W3C3",-0.127596001756519,16.436062641009,-1.75526859578121,0.108973780880931,0.345567046595804,-5.3324743077037 +"Q9VKI8",0.0741086383334704,22.3207915468324,1.75222381405421,0.109515613498667,0.34662626815138,-5.33691053293058 +"Q9VB46",-0.180971255137397,15.3591399354941,-1.74834982617016,0.110208546028,0.347783483384755,-5.34254897878688 +"Q9NJH0",-0.0832238597389683,21.2740793306645,-1.74784999661123,0.110298239035093,0.347783483384755,-5.34327597753465 +"Q9VMW7",0.0868794718754948,19.321115867268,1.74393720061399,0.111002672926012,0.349344261208658,-5.3489632743986 +"Q9VPL0",-0.121374074593705,15.26328103645,-1.74009406255298,0.111698538527392,0.350872245317684,-5.35454267654231 +"P40417",-0.09421534825238,19.842012550878,-1.73317292724376,0.112961713533034,0.3541731920547,-5.36457396667533 +"Q9VX98",-0.121871823664609,18.2294853563932,-1.73151050223226,0.113267044174283,0.354464220793065,-5.36698022510262 +"Q9VMF0",-0.178897265742508,13.7991476337797,-1.72587609918576,0.114307458830956,0.357050264662987,-5.375126380262 +"Q9VGA3",0.0775154284344275,19.5055893985931,1.72376865637315,0.114698823813676,0.357338671688955,-5.37816959499958 +"Q9VSU7",0.103078397074922,14.6951949117874,1.72307312411529,0.114828254211799,0.357338671688955,-5.37917352218091 +"Q9VR30",-0.132788588325658,17.374064712593,-1.72026402807435,0.115352339243206,0.358301120777778,-5.38322591047909 +"Q7K1M4",-0.12277602555902,17.2320223334224,-1.71438419197787,0.1164563293779,0.361057913387243,-5.39169644868217 +"Q8MLW4",0.0943082789405807,18.604966298707,1.70897140873948,0.117481053377097,0.363559178168826,-5.39948009987683 +"P81900",-0.0851000863589029,22.4240429796673,-1.70560501870334,0.118122460585703,0.364670074338455,-5.40431418602323 +"Q9VCW6",-0.100979543568918,19.8006912268791,-1.70409171670463,0.118411821757039,0.364670074338455,-5.40648555385966 +"Q9VAU6",-0.251599153541679,13.3691578356129,-1.70313965403749,0.118594194744749,0.364670074338455,-5.40785108000427 +"Q9VJZ6",0.130612650851813,19.6227786950523,1.70251213184217,0.118714538588598,0.364670074338455,-5.40875089324852 +"A1Z7K6",0.109991416273211,15.5795148823467,1.69664413138453,0.119845219187855,0.367070939770723,-5.41715622256514 +"Q9VPX0",-0.165622672861632,14.4855596581959,-1.6950735277889,0.120149493271613,0.367070939770723,-5.41940322668029 +"Q9VTY2",0.0781337509593492,20.6533525836877,1.69503835736042,0.120156314817035,0.367070939770723,-5.41945353047399 +"Q9VCJ8",0.0753196136844387,17.9403098743162,1.69126011368169,0.120891164557185,0.368640699234708,-5.42485412073553 +"Q9VL16",0.0755518395871526,20.6991872305225,1.68958653510174,0.12121795771192,0.368962688801976,-5.42724417502384 +"Q9VXC9",-0.158611764869992,19.2097119977907,-1.68638545891703,0.121845233324572,0.370196446603617,-5.43181198472968 +"Q7KN75",-0.114826921999061,19.44541509862,-1.68363049086131,0.122387425332295,0.370989079032532,-5.43573933699178 +"P82890",0.0905344298350386,19.4806974920861,1.68091024684446,0.122924909492326,0.370989079032532,-5.43961365751447 +"Q9VFT4",0.316230431495757,15.6857764032002,1.6807833514597,0.122950034017302,0.370989079032532,-5.43979430306453 +"Q7K1C5",0.0894635490129456,17.4543673179102,1.68055236494743,0.122995779799155,0.370989079032532,-5.44012311085935 +"Q9VAG9",0.0865026599140375,17.3622430376586,1.67779272791507,0.12354349603302,0.371968504301582,-5.44404947204369 +"Q95RI2",0.122481380764031,16.5978924931702,1.67521558877357,0.124056967065458,0.372473970467079,-5.44771289929833 +"A1Z9M5",0.143681087127629,15.0840945234929,1.67470967545878,0.124157990155693,0.372473970467079,-5.44843168717035 +"Q86BM0",0.1028521251318,17.4038718077917,1.66880496505632,0.125342537603918,0.375352518354283,-5.45681186957151 +"Q8IPW2",0.0876817801281238,17.1549693284567,1.66672237356658,0.125762737810083,0.375935925926916,-5.45976356339993 +"Q9VPB8",0.157832962001867,15.6305894692163,1.66529756376575,0.126050945368472,0.376123393335618,-5.46178176715723 +"Q9VBV5",0.098079948377908,17.1078780572294,1.66138007063841,0.126846418935108,0.376337945626736,-5.46732573177367 +"Q9W4I3",0.0833818679198917,16.6970133565521,1.6601771038715,0.127091589690366,0.376337945626736,-5.46902665696624 +"Q0E8V7",0.159223677285258,19.6220034713909,1.65978822920719,0.127170934974216,0.376337945626736,-5.46957635302661 +"Q9VFR0",0.251752099325412,15.3141882677147,1.65944257911022,0.12724149799939,0.376337945626736,-5.47006488712646 +"A8DZ14",0.0757081493782152,19.4590403944567,1.65939624277092,0.127250960032062,0.376337945626736,-5.47013037346045 +"Q9VCX3",0.222136487581558,13.1992106707229,1.65732346146373,0.127674873197779,0.37692334246707,-5.47305873164966 +"P19334",0.255856103800022,14.8907718013367,1.65161181678493,0.128849527001581,0.379634540005863,-5.48111712782405 +"Q9VK69",0.0790740993010246,20.2691315461565,1.65046230288513,0.12908709954902,0.379634540005863,-5.48273701739751 +"Q9VVL8",0.110764776302551,15.7806333986493,1.64954949392427,0.129276030409671,0.379634540005863,-5.48402288244553 +"C0HK94",0.0860667974055787,18.4702960068208,1.64584865709735,0.130044552644582,0.381190759708216,-5.48923202560556 +"Q9VW66",0.0686625363174578,21.2695441890286,1.64480014121708,0.130263029396693,0.381190759708216,-5.49070664861031 +"P91926",-0.104908252203185,17.7000648165329,-1.64226321389724,0.130792998309405,0.382071315551817,-5.49427231844964 +"Q9VIQ5",0.138569950231657,16.4203973331233,1.64031694169661,0.13120088103974,0.382444506281934,-5.4970056644568 +"Q3YMU0",0.0716790296660292,23.1352343270644,1.63885337629848,0.131508349000818,0.382444506281934,-5.49905986250944 +"Q9V3V6",0.0758795806078894,21.6030274820414,1.63589629297901,0.132131537767787,0.382444506281934,-5.50320705921873 +"Q7K485",-0.103743570529986,20.7001155413317,-1.63545771733532,0.132224188853268,0.382444506281934,-5.50382177521771 +"O96299",-0.10915747179579,15.7717495595876,-1.63493678978499,0.132334312342366,0.382444506281934,-5.50455179300719 +"Q8WTC1",-0.0739213232186451,15.1320751566517,-1.6342776988625,0.13247376047581,0.382444506281934,-5.50547523689425 +"Q01637",-0.0777034840466495,16.1310455210202,-1.63403220714065,0.132525734191222,0.382444506281934,-5.50581913697474 +"Q9W158",0.117103161214127,17.0153274069086,1.63278793888996,0.132789440949724,0.382543674445836,-5.50756172394241 +"Q9VLW8",0.201118474333473,14.0948174826336,1.63083228606571,0.133204860870411,0.382792101634895,-5.51029903938881 +"Q9W087",0.0769442180647797,16.7136303654597,1.62991403241128,0.133400315169814,0.382792101634895,-5.51158365497837 +"Q9VEP9",0.0789695372110941,17.5119927912814,1.62820595514169,0.133764565870965,0.382792101634895,-5.51397209448027 +"Q9W1F2",-0.225596837440062,13.7401556755807,-1.62806978603429,0.133793642238096,0.382792101634895,-5.51416243972621 +"Q24478",0.179613435028322,17.2804273430026,1.62663569585115,0.134100206959218,0.382915105697577,-5.51616653212455 +"Q0KI81",-0.101636145702145,15.5755079521523,-1.62494737157715,0.134461919708371,0.382915105697577,-5.51852458676498 +"Q9VAG3",-0.116215819372464,16.8888871835907,-1.62419683725051,0.134622995264919,0.382915105697577,-5.51957238632118 +"Q9VH64",0.117991365012871,17.3830942884285,1.62358283633905,0.134754896309639,0.382915105697577,-5.52042936501745 +"Q9VX69",0.0955832422023661,18.026916732431,1.6194628609704,0.135642933350929,0.384783015015901,-5.52617482513174 +"Q9VHJ7",-0.190762540046091,14.7807552123864,-1.61821701140378,0.135912490816382,0.384893097931621,-5.52791052371106 +"Q9VBS7",0.0617435817168328,19.8588156854224,1.60735460409739,0.138282945428494,0.390942293177504,-5.54301053412887 +"Q9VPX5",-0.071934630158502,18.8173679929375,-1.60065377313949,0.13976344619781,0.39445926947199,-5.55229546839256 +"Q9W2Y3",0.0947756903053492,16.3721528765726,1.59833209088459,0.140279668555461,0.395247444510994,-5.55550710912989 +"Q9W2M0",0.0802878167284788,17.7041336368835,1.5967337803824,0.140636029953654,0.395583301792066,-5.55771647925565 +"Q8SZK5",0.363926465544854,15.128845270669,1.59205273732521,0.141684330768045,0.397424136350118,-5.56417957445115 +"Q9W445",0.0689803767640349,16.4111935822001,1.59168487898461,0.141767003074532,0.397424136350118,-5.56468699453396 +"Q8T9B6",0.106219992206487,19.4828168420102,1.58761526558627,0.142684453141557,0.399324946040466,-5.57029589502793 +"Q24276",0.0948536926084493,18.4882611299607,1.5855200392088,0.143158840082362,0.399981482843183,-5.57318026156175 +"Q960X8",0.0831460283468033,18.376812169878,1.58101545226022,0.144183452593599,0.402011047852329,-5.57937369251148 +"Q7KMS3",0.1517291945593,15.454984500974,1.58021027921252,0.144367276776706,0.402011047852329,-5.58047962103871 +"Q961Q8",-0.1623758084486,15.6157173428352,-1.5787500739437,0.144701174483892,0.402269265065219,-5.58248438910315 +"Q9VJC0",-0.0763636089846909,16.5523375714571,-1.57244292975607,0.146151225601221,0.405624366560462,-5.5911308306425 +"A1Z8H6",0.163384047928229,16.6107318501923,1.56863056244274,0.147033901130185,0.407396257616527,-5.59634702620948 +"Q9VWP4",-0.10412000833248,15.2732558003591,-1.5625322330935,0.148455592469397,0.410653280661617,-5.60467493947512 +"A0A126GUP6",0.176128556635904,16.9192015595692,1.56093268762733,0.14883048488112,0.41100869003594,-5.60685601585178 +"Q9VZD9",-0.155393979558268,14.6447080960799,-1.55688940179596,0.149781835671198,0.411899201601446,-5.61236319447924 +"Q9W0M4",0.10810865508731,17.8564798481394,1.55650008729445,0.14987371910577,0.411899201601446,-5.61289300127453 +"A8JNG6",0.304098349873597,15.4967880739237,1.55641514072657,0.149893774203883,0.411899201601446,-5.61300859181257 +"Q6IGM9",0.122462936373081,14.5459213511962,1.5551768512932,0.150186390271905,0.412024504890687,-5.61469314819951 +"Q8SYJ2",0.0774436301711816,22.469684117288,1.55281104070576,0.150746840286749,0.412541608877753,-5.61790928795633 +"Q7K9H6",0.263699528943135,11.9188124999811,1.55179739919428,0.150987528004035,0.412541608877753,-5.61928633731362 +"Q9VQ93",0.126570943102315,16.6598746305378,1.55125330891158,0.151116860326323,0.412541608877753,-5.62002526556843 +"Q868Z9",0.128397846337105,20.3355311312832,1.54896963748369,0.151660757079898,0.413349906551095,-5.62312497951967 +"Q9W5P1",-0.158395663633129,14.2826669905993,-1.54514249037995,0.152576104903878,0.414907916394784,-5.62831340816126 +"Q6WV19",0.284827393721692,13.5433889470794,1.54450146462784,0.15272989248585,0.414907916394784,-5.62918166740414 +"Q9VZ64",0.0732088947871148,19.3434763876649,1.54176402207375,0.153388155876944,0.415754399920682,-5.63288698685272 +"Q9W1F8",-0.0803443770588217,17.5508350277994,-1.54113404871498,0.153539994215312,0.415754399920682,-5.63373912486459 +"Q95RN0",-0.0680619524891526,16.9109455743566,-1.53655910235454,0.154646611402516,0.418072200679736,-5.63992099081225 +"P23625",-0.0753512606667428,22.2109097814817,-1.53276745889119,0.1555690330565,0.41988535135638,-5.64503578349217 +"Q9VV39",-0.0832991209266964,17.6207429348284,-1.5296242801086,0.156337335584938,0.421277343708687,-5.64926986289382 +"A1ZAL1",-0.124320601290613,17.1608125549685,-1.52633336938823,0.15714529423321,0.422771533517734,-5.65369714274965 +"P05205",0.0996868477057937,18.0540826934439,1.52401333088742,0.157717077621149,0.423626546653907,-5.65681472501589 +"A8DYP0",0.20292291896782,15.0959855560668,1.52265579513528,0.15805248819715,0.423844936194286,-5.65863755650046 +"P54352",-0.124221443491304,16.1550680113512,-1.51717053507418,0.159414082848402,0.426288383738303,-5.6659925247955 +"Q9VB79",0.0819282485275359,17.6430763613846,1.51692691971415,0.15947479103879,0.426288383738303,-5.66631879274837 +"Q9VEH2",-0.0810256614026699,15.8903757282929,-1.51358372613881,0.160309938494067,0.427385829081296,-5.67079292064627 +"Q9VLM8",0.0944359206616667,16.857708132054,1.51323289062808,0.160397799163604,0.427385829081296,-5.67126207661654 +"Q9VQD8",-0.19156845178701,17.5504467580811,-1.51120395332462,0.160906732812971,0.428058102602929,-5.67397393619003 +"Q9VRD9",0.148979552670898,16.1385691848898,1.50869409036442,0.161538241784808,0.428624803143818,-5.67732542199141 +"Q95RS6",-0.131648194377174,17.2307810230534,-1.50831546879259,0.161633693751476,0.428624803143818,-5.6778307000772 +"Q8T3X9",-0.113028786576066,18.2268356777725,-1.50642076172527,0.162112092916445,0.42921106505497,-5.6803580208756 +"Q94524",-0.145428494603301,15.6472896199961,-1.49935255834727,0.163907619588407,0.432589366122983,-5.68976843525136 +"Q9VHN4",0.108100621417343,14.5401845679138,1.49846706243727,0.164133771875561,0.432589366122983,-5.69094538104959 +"Q86BS3",0.0767159640549266,18.8786694014408,1.49834053580243,0.164166108366815,0.432589366122983,-5.69111351626842 +"Q9W337",-0.103835517412428,17.6848115467521,-1.49385127636742,0.165317008744344,0.434913956481956,-5.69707323238786 +"Q9VSN3",0.116483277326726,20.8152739240628,1.49286900158694,0.165569761610337,0.434913956481956,-5.69837573222515 +"Q9VZI3",-0.109156273414216,14.4563791023324,-1.48891667126632,0.166590133479138,0.435907872167049,-5.70361100900364 +"Q9VRP3",-0.133464988708834,18.0907815586622,-1.4888531307404,0.166606582041612,0.435907872167049,-5.70369510268605 +"P11046",-0.104113654411755,21.0606647898758,-1.48767200981382,0.166912591361169,0.435907872167049,-5.70525785741258 +"Q9VRJ6",0.108047238484987,15.6719671718822,1.48645507401008,0.167228387842724,0.435907872167049,-5.70686716913855 +"Q9VN50",0.0883850871057668,17.9174075157007,1.48635331025581,0.167254819056901,0.435907872167049,-5.70700170632418 +"M9PGG8",0.263096183148196,18.5055877512892,1.48421925348244,0.167809932268547,0.436672335450759,-5.70982168526433 +"P09040",-0.171039874066519,16.3873326873283,-1.48309652716322,0.16810261551328,0.436709253541728,-5.71130423208164 +"Q9VF82",0.101591593286656,14.8940573734584,1.48215748821818,0.168347751814947,0.436709253541728,-5.71254366904642 +"Q9VCI0",0.295623802032447,14.8261763866143,1.48055675115384,0.168766336074603,0.437090577335751,-5.71465531884355 +"Q9VEC8",0.0962355975697609,16.448681063523,1.47959279608462,0.169018838358249,0.437090577335751,-5.71592623534487 +"Q95R34",-0.0972312321112216,15.3379506274258,-1.47332281431459,0.170669190332402,0.440160025110922,-5.72417981604228 +"Q9W4Z2",0.208534336613232,13.8842305337452,1.47168638931984,0.171102200446769,0.440160025110922,-5.72633022662133 +"Q9VTW6",0.328093891084356,16.2531552800174,1.47149022954439,0.171154169237978,0.440160025110922,-5.72658789469835 +"Q8IPG8",0.155241247568959,15.9694161807229,1.47108600109316,0.171261304734406,0.440160025110922,-5.72711880392963 +"Q8MLS2",-0.0744452246575751,17.4735941218517,-1.46747890473032,0.172219878282952,0.441942703039944,-5.7318521462366 +"Q9VVU2",0.0728864270901965,20.1210139647749,1.46414088192445,0.173111056346664,0.442081229785812,-5.73622569281562 +"Q9I7J0",0.11226216412954,20.9084518293038,1.46295732297052,0.173427991345801,0.442081229785812,-5.73777486392733 +"Q9VB05",-0.0598609677808142,20.2274228205661,-1.46282931157268,0.173462300286061,0.442081229785812,-5.7379423704477 +"P02299",0.0796797081817822,22.044932221784,1.46214920770334,0.173644675999773,0.442081229785812,-5.73883214579597 +"Q9VFP6",-0.0738672613378242,20.1841661370891,-1.4619995924344,0.173684818733064,0.442081229785812,-5.73902785036595 +"Q9VQM2",-0.0716742440865161,20.0807737249762,-1.46133183051735,0.173864080779072,0.442081229785812,-5.73990115902458 +"Q9VNE2",0.087305123955943,19.0418913534601,1.45981467927484,0.174271954167644,0.442443865375388,-5.74188434662102 +"Q9VQ88",0.119912348381213,16.4256645758746,1.45731349233367,0.174946171822235,0.443085168623969,-5.74515091585225 +"Q9VXB0",0.0652120681772637,20.2796196231322,1.45686562698994,0.175067134123444,0.443085168623969,-5.74573544604776 +"O46067",0.0581682620635497,19.688319280283,1.4559248105984,0.175321469599412,0.443085168623969,-5.7469629683061 +"Q9VWP2",0.0785631991112545,19.5083899981033,1.45342481011481,0.175998848274573,0.4441241738608,-5.75022230754563 +"Q9VMH2",0.107171459397714,17.2747662076006,1.44891898809187,0.177225376579129,0.446543698087595,-5.75608745621112 +"Q7JQW6",-0.0934423903782022,15.8479016450507,-1.44192023475986,0.179145024453942,0.450699699531185,-5.76517391926803 +"Q9VC66",0.0739940135347652,17.68473607393,1.44073203038014,0.179472690802352,0.450844048581812,-5.76671368955974 +"Q9V3T8",0.111645597710101,15.5183575717429,1.43946971428427,0.179821356002776,0.451040634304706,-5.7683485839551 +"Q9U915",0.0735434913254522,21.0788216242223,1.43678359762857,0.180565217666723,0.452034453845011,-5.77182437566152 +"Q9VB64",-0.0621709166696931,18.7446400026558,-1.43527971766922,0.180982831520727,0.452034453845011,-5.77376850110127 +"Q7K180",0.102221080696998,16.2573924012095,1.43510794161643,0.181030584633374,0.452034453845011,-5.7739904772663 +"Q9VXQ0",0.11519796668933,15.2365393381364,1.43245964332908,0.181768164598333,0.453197755680149,-5.77741049560143 +"P20432",0.0857361246911097,23.5205468634713,1.43038010146747,0.182349136165933,0.453664646948456,-5.78009309025199 +"Q9VZU7",-0.0677051255833732,17.7520965147137,-1.42984320932658,0.182499387351567,0.453664646948456,-5.78078525811126 +"Q9VXY3",0.0709645792048477,18.1641761953229,1.42716439353948,0.183250642223135,0.454854272660996,-5.78423624488397 +"Q9W370",0.156755980657643,18.5338769687035,1.4254600633059,0.183729980471392,0.45536643005391,-5.78642961368165 +"Q9VL01",0.106355691866977,20.3813067873409,1.42138688936767,0.184879878442591,0.457536553771873,-5.79166447888326 +"Q7K1W5",0.0665058713849085,19.7471592085193,1.4175804807334,0.185959997800936,0.45952781678809,-5.79654747321877 +"Q9V420",0.0750782761464919,17.5684551196462,1.41549485931101,0.18655409353496,0.460133975328536,-5.79921927457962 +"Q0E9B7",0.264744500132377,12.7525245073989,1.41405349595057,0.186965612483165,0.460133975328536,-5.80106420761074 +"Q9VW54",-0.0838080214531125,16.0502239982864,-1.4138181628698,0.187032874863757,0.460133975328536,-5.80136531259425 +"Q8SYQ4",0.129683696438303,20.8975423303251,1.41184674682236,0.187597148512697,0.460530649297937,-5.80388639086085 +"Q7KTJ7",-0.0654621110196523,22.0986227952706,-1.41125692967324,0.187766251194048,0.460530649297937,-5.80464020054437 +"Q9W330",-0.082017278821791,20.6657049362558,-1.41036434207239,0.188022405378834,0.460530649297937,-5.80578056141976 +"A8E6W0",0.0825574835931917,16.3815397503082,1.4054928472871,0.189425656027123,0.463287381602994,-5.81199579986741 +"A1Z9I0",0.063952739654404,19.348479623279,1.40381862501074,0.189909967678096,0.463791839073301,-5.81412849897025 +"Q0KHZ6",0.0851679015030555,22.9972784062192,1.39843656470285,0.191473980293443,0.466927776505063,-5.82097280473993 +"Q9VPC1",0.098137650145917,16.0220412442041,1.39605604100366,0.192169224508764,0.467939075154187,-5.82399442979018 +"Q9VHL2",0.0549668020456906,20.6367657439553,1.39327421328984,0.192984376126936,0.469238978687652,-5.82752102308911 +"Q9I7I3",-0.139003264647275,14.6224815081375,-1.38997454583262,0.193955056578728,0.470912713789401,-5.83169791662606 +"Q9VE12",0.0909681901799324,15.6298906754201,1.38751061775645,0.194682569723992,0.471992044040143,-5.8348125046961 +"Q9VZF6",0.0764197240909059,15.3137152708551,1.38560282790356,0.195247455389893,0.472674536415589,-5.8372215136666 +"Q8MR62",0.0660816460293105,17.5724999768362,1.38389750133617,0.195753562685532,0.473212960231112,-5.8393729592638 +"Q9VN25",0.100726007900304,14.9676348312909,1.37903737539438,0.19720202400061,0.475772778548949,-5.84549460432944 +"Q9W5B4",0.149145897368957,18.5030443353191,1.37843241196317,0.19738295129249,0.475772778548949,-5.84625556682334 +"Q9VKG4",-0.0881054884964367,15.8117209264281,-1.37676003726784,0.197883838234409,0.476291835750351,-5.84835800202888 +"Q7KY04",-0.158072211137547,14.1561438599219,-1.37218812452052,0.199258617638631,0.478909761125701,-5.85409669502142 +"Q9VSD6",-0.101724793995068,16.4344497790965,-1.37083785905302,0.199666177002076,0.479153142898626,-5.85578905500729 +"Q9W3J5",-0.0811463035470688,16.3335365613533,-1.36890279092794,0.20025147234359,0.479153142898626,-5.85821238656149 +"Q9W2N5",0.144702093448622,13.0538368046845,1.36832532360869,0.200426416462708,0.479153142898626,-5.85893510723835 +"Q0E8U4",0.166124397457397,16.1587998144764,1.36805310724481,0.200508929102663,0.479153142898626,-5.85927572296455 +"P54397",0.111875817120186,14.76225260933,1.36166698060131,0.202452851628788,0.482802780561815,-5.86725310265989 +"Q7JW03",0.112553823027007,17.1388248068039,1.36113637429589,0.202615075775342,0.482802780561815,-5.86791476503416 +"Q9VG42",-0.474817725839371,16.0257582189727,-1.35948976807447,0.20311919238993,0.48331357047989,-5.86996693888223 +"Q7K0D8",0.0705908181265542,17.3040838080401,1.3579087908808,0.203604204891845,0.48377751247806,-5.8719357051599 +"Q9VYS2",0.0993894955817183,14.9277135048621,1.35679404948187,0.203946768272395,0.483902147195384,-5.87332292381823 +"Q9W0H8",0.0761130017170117,19.3576437708151,1.35512261430257,0.204461309464095,0.484433897991634,-5.87540143327485 +"Q9VGA0",0.0964828415525574,19.1730413091695,1.34928228560292,0.206267755178411,0.487381877573745,-5.88265022310416 +"Q9VZF9",0.0903702259514425,19.0323050545056,1.34778197542413,0.206733956962588,0.487381877573745,-5.88450884286531 +"O77263",0.0846181507445234,15.4619017875801,1.34698872723148,0.206980803967027,0.487381877573745,-5.88549095690059 +"Q9VIQ8",-0.0890912186655903,21.3070907888754,-1.34693888315976,0.206996322914443,0.487381877573745,-5.8855526550153 +"Q9VG51",0.227203189692894,19.1538008231299,1.34639245336568,0.207166517505866,0.487381877573745,-5.88622893404407 +"Q9VL93",0.104298207897331,15.3680848711975,1.34271447750446,0.208315125753898,0.489265061630797,-5.89077594620749 +"Q95029",0.0731132934697527,21.8200758807479,1.34195287409182,0.208553632385789,0.489265061630797,-5.89171641946185 +"Q7JQR3",0.082249583652569,18.9968825494401,1.34040157972719,0.209040145988146,0.489717645376725,-5.89363089945999 +"Q9V470",-0.0570799470067449,19.9437318348662,-1.33857280036694,0.209614898497881,0.489772006007745,-5.89588584410733 +"Q9VBL3",0.159058273362936,14.4580127917846,1.33845931935936,0.209650606888207,0.489772006007745,-5.89602569906801 +"M9PEG1",-0.106018307362348,20.1981406101712,-1.33667995588716,0.210211171543812,0.490374350036437,-5.89821751844517 +"Q9VPZ5",0.0947464469393644,18.300262136268,1.33577601554131,0.210496423636744,0.490374350036437,-5.89933021114964 +"Q9W1F7",-0.0683885514612896,20.3468451588432,-1.3326724726003,0.211478247023215,0.491906213145186,-5.90314646451465 +"A0A0B4KH34",0.073882891987175,23.3684353258763,1.33039269450995,0.212201892232086,0.491906213145186,-5.90594581757595 +"Q9VDE2",-0.0993927356567461,19.4931018413359,-1.33017804935362,0.212270130627302,0.491906213145186,-5.90620920851183 +"Q9W314",0.152654286367859,16.111044625552,1.32997840269083,0.212333617184972,0.491906213145186,-5.90645416804228 +"Q9V9A7",0.121498405937361,16.2420319184984,1.32811267249526,0.212927672456999,0.49215809704891,-5.90874210667554 +"Q9VNX9",0.160825482470861,13.5977893537697,1.32778401324549,0.21303246167225,0.49215809704891,-5.90914490675855 +"P42325",-0.0797180957409367,20.0483515849267,-1.32425818495991,0.214159328135317,0.493703647497549,-5.91346170234475 +"Q7K012",-0.112488981524313,15.6657219695047,-1.32383962343162,0.214293429729152,0.493703647497549,-5.91397362572051 +"Q9VXJ7",0.119256046144857,14.9470041740735,1.32251785234955,0.214717365237449,0.493998020987676,-5.91558947506738 +"Q9VZG2",0.0907246032381579,21.8935912880701,1.31822992035892,0.216097436817809,0.495871365356868,-5.92082358545588 +"Q9VTU2",-0.058129140020025,20.7468262142075,-1.31805872236955,0.216152689160701,0.495871365356868,-5.92103231109593 +"Q8SYQ8",0.0981780550098588,15.9160665952721,1.31691044235578,0.216523586963907,0.495871365356868,-5.92243180617635 +"Q7K2L7",0.227156666459546,18.1642622427798,1.31630067242534,0.216720758600214,0.495871365356868,-5.92317462820374 +"O16158",-0.0745588417948504,21.3065765412303,-1.31411134404368,0.21742991241489,0.496237395800368,-5.92583966416337 +"Q9VI09",0.0961423777252115,20.0513044721059,1.31287903929108,0.217829916937255,0.496237395800368,-5.92733834896969 +"Q9VMB3",0.0695804016068422,18.6855427527183,1.31187985699375,0.218154696934416,0.496237395800368,-5.92855278756772 +"Q9VII1",0.167497290128097,19.2302366861764,1.31163627094275,0.218233934240138,0.496237395800368,-5.9288487506446 +"P40796",0.0992339667736175,18.2808686420818,1.31122351953179,0.218368254506877,0.496237395800368,-5.92935016490276 +"Q9VMV5",0.075183649353999,17.5908994875229,1.31013020255333,0.2187243792275,0.496370427961183,-5.9306777958663 +"Q9VWI0",0.0593376549191795,20.888105503622,1.30877544804791,0.219166327470199,0.496697600842789,-5.93232180446823 +"P92177",0.0799742803239916,24.0760684689955,1.30562518660294,0.220196859066812,0.497921978933125,-5.93614000921536 +"Q9W1R0",-0.263368152271005,14.3283156301575,-1.30529955478813,0.22030360938408,0.497921978933125,-5.9365343111468 +"Q9W0H3",-0.0699978161956736,16.7073177433376,-1.303057594168,0.22103974049061,0.498891135676976,-5.93924716318043 +"Q03427",0.0548666027263458,21.6940172981845,1.30217345076601,0.221330599760769,0.498891135676976,-5.94031609538995 +"Q9VMX3",-0.116866725604474,12.5081925248531,-1.29952148881881,0.222204917023933,0.499699597800218,-5.94351922461499 +"Q9VWV6",0.0938322897302406,23.470450043578,1.29926862854077,0.2222884301965,0.499699597800218,-5.94382439465756 +"Q7K1C3",0.0859609495695413,17.0875093845116,1.29360782141067,0.22416482567963,0.502767726812783,-5.9506451601671 +"Q7JVK6",-0.0894937647039384,17.4664185938899,-1.29184323365737,0.22475239353762,0.502767726812783,-5.95276697529438 +"Q9V455",0.121475159201182,19.3449192279742,1.29175160932202,0.224782936923883,0.502767726812783,-5.95287709164485 +"Q9NCC3",0.0633200400207805,17.3168670639866,1.29152363691949,0.224858947363511,0.502767726812783,-5.95315105013754 +"Q9VAC1",0.0533814579224732,23.4732343682761,1.28490842246926,0.227073803924529,0.507040301132683,-5.96108556242802 +"Q9V9S8",0.0846816727892623,19.9637069821998,1.28213562819565,0.228007480291784,0.507328297908427,-5.96440263711749 +"P32392",0.0646899163355634,17.800882984299,1.28148191872632,0.228228060244818,0.507328297908427,-5.96518391401119 +"P52029",-0.143431014217427,18.3054273839494,-1.28123814713333,0.228310360396341,0.507328297908427,-5.96547518270455 +"Q9VRJ5",0.0730094656707081,17.2098243086631,1.2809061694038,0.2284224790921,0.507328297908427,-5.96587177966887 +"Q9VCD9",-0.146466773151964,18.490397149833,-1.27966936296869,0.228840582442163,0.507328297908427,-5.96734867779496 +"Q9VJU8",-0.0971704078100988,15.634752860009,-1.27911643507315,0.229027702832761,0.507328297908427,-5.96800860869549 +"Q9I7K0",0.0669574684111094,16.0304968480356,1.27673619856496,0.229834647473877,0.508440572926297,-5.97084712121269 +"Q6IGW6",0.11264669164291,15.7046825263955,1.27254042494641,0.231262758328519,0.510922226346981,-5.97584142320791 +"Q8IRD0",-0.0783459062883161,17.6159850244542,-1.26946491719834,0.232314166606419,0.512566177115749,-5.97949469782465 +"Q7KJ08",-0.108963545327949,14.6271991959506,-1.26637651382361,0.233373908738805,0.513605940477933,-5.98315684255699 +"Q9VFU7",-0.0755307233041957,14.8339767237693,-1.26603810696599,0.233490267730457,0.513605940477933,-5.98355772278088 +"Q9VLV5",0.067446203458271,17.4716707409845,1.26526585526857,0.233755978694724,0.513605940477933,-5.98447224875322 +"Q9NHA8",-0.154022144621029,16.3625345166131,-1.26415361488361,0.234139103948662,0.513605940477933,-5.98578868835199 +"Q9VVU1",-0.101989462375517,22.3379601509327,-1.26264570237266,0.234659340921019,0.513605940477933,-5.98757209896765 +"Q9VF70",0.0796769507350046,15.8799457605413,1.26240837210111,0.234741306739669,0.513605940477933,-5.98785264891466 +"Q7K0E6",-0.0911787207415671,16.8080827456928,-1.26183089011106,0.234940846873299,0.513605940477933,-5.98853513461431 +"Q9VKV2",0.119817639498972,15.0144137760122,1.25731874375206,0.236504712359565,0.515754383069145,-5.99385989589228 +"P04359",0.10602660084793,18.8163409587996,1.25721137516963,0.236542028206173,0.515754383069145,-5.99398643169717 +"Q9VMG0",0.153063195309983,14.7223457552079,1.2545030587385,0.237484886215851,0.517134190872114,-5.99717562339855 +"A0A0B4KHJ9",0.104447151946527,24.5118156847406,1.25210581010742,0.238321997870435,0.518280433439225,-5.99999432466878 +"Q9V6Y3",0.107982164319447,15.3477168229345,1.24804503140389,0.239745476512777,0.520697206801188,-6.0047600161829 +"Q9VSC5",0.0553078924361579,19.4060251208464,1.24262327204567,0.241656782137599,0.524165816132009,-6.01110524753345 +"Q9VYT3",-0.081315417203605,14.3846837350221,-1.24050573827027,0.242406609784058,0.525109383272479,-6.01357794463941 +"Q02910",0.217440242276854,16.252228185947,1.23945014216642,0.24278110362919,0.52523849656743,-6.01480943218738 +"Q9V3E7",0.065357368707609,18.6794329837305,1.23731808945148,0.243538919487081,0.525373471716992,-6.01729439033859 +"Q9VIH9",0.163483176250804,19.0375340436426,1.23695981429981,0.243666452178411,0.525373471716992,-6.01771165933024 +"Q9VJ22",0.263212636795911,13.268703319463,1.23605042612384,0.24399040316737,0.525373471716992,-6.01877038815453 +"A1Z7H8",0.108426925884128,14.6455893711589,1.23540766614308,0.244219583210426,0.525373471716992,-6.01951835663159 +"Q9V9U7",-0.105387377268215,17.8596547551577,-1.23485058746164,0.244418353748433,0.525373471716992,-6.0201663872275 +"P22812",0.238781655798444,11.6158676435857,1.22939045520185,0.246373501063633,0.528894465603784,-6.02650654766729 +"Q9VK39",0.0825332502891456,18.0226356762533,1.22787196156046,0.24691947522715,0.529385198816048,-6.02826609052619 +"Q9VHB8",-0.0908349785506211,15.697723793912,-1.22694986395122,0.247251490993476,0.529416542974478,-6.02933377860957 +"O61604",-0.0500088336048847,20.9618134422261,-1.22367074040628,0.248435106291609,0.530986231791359,-6.03312583000665 +"Q9VJD1",0.0636840397711644,18.5180718216571,1.22315618430917,0.248621251216458,0.530986231791359,-6.03372019113482 +"Q9W1H5",0.0740544214396497,17.2841147546441,1.21908137314709,0.250099314525034,0.532221943804762,-6.03842042955802 +"Q9VI75",0.097151513866887,17.2912939066167,1.21874179927451,0.250222806993678,0.532221943804762,-6.0388115972723 +"Q9VPC2",-0.100287953856951,14.7019638223955,-1.2175723660774,0.250648468561636,0.532221943804762,-6.04015809055286 +"Q9Y114",0.0482520942753304,18.5795106811864,1.21702320388194,0.250848558567722,0.532221943804762,-6.04079006780569 +"Q9VBC9",0.104731009862178,15.4567676281696,1.21592201460463,0.251250168999015,0.532221943804762,-6.04205667988041 +"Q9VZW7",0.153629697881486,13.820911208178,1.21410286679453,0.251914754068672,0.532221943804762,-6.04414723312927 +"Q9W369",-0.0578537923065348,22.1264330675567,-1.21406349980803,0.251929151500691,0.532221943804762,-6.04419244764488 +"Q9VL10",0.0755410448434048,16.8051222626133,1.2137876446545,0.252030056738603,0.532221943804762,-6.04450924736831 +"P14484",0.0940110374341252,19.3148141414888,1.21193716366228,0.252707784036235,0.532221943804762,-6.04663300341331 +"Q9VYG8",0.351664810964108,15.2456825389018,1.21140338132551,0.252903549924564,0.532221943804762,-6.04724516443698 +"Q9VIL2",0.0777503662896724,15.9411637485967,1.21083738857051,0.253111261862842,0.532221943804762,-6.0478940457157 +"Q9VU45",0.136986390426564,17.8851088405112,1.20929017645452,0.253679766386304,0.532221943804762,-6.04966668861984 +"Q9VP77",0.081278573268353,15.3158554571085,1.20900831331518,0.253783443709221,0.532221943804762,-6.04998943729714 +"Q9VUW2",-0.269930078483439,14.3897095849031,-1.20888564624126,0.253828574767432,0.532221943804762,-6.05012988023832 +"Q9W022",-0.0706214085324746,21.1500986105245,-1.20812417596343,0.254108874966995,0.532221943804762,-6.05100145808889 +"P02283",0.0926613615259058,21.5563069429011,1.20759153516431,0.254305089455873,0.532221943804762,-6.05161087405477 +"Q9VB68",0.115145963538524,15.4464344136697,1.20526635945427,0.255163059969498,0.533348350913687,-6.05426884807599 +"Q0E8X7",0.128083487855456,20.9988776749342,1.20110717756401,0.256703538542432,0.535510885422473,-6.05901375692353 +"Q9VSR5",0.0738491630137688,20.3570599932398,1.20074036871274,0.256839753200227,0.535510885422473,-6.05943163252208 +"Q9VZ49",-0.105467952987102,18.9238359814577,-1.19659691441123,0.258382439784512,0.537126817821106,-6.06414527934379 +"Q9VL66",-0.0862226156404517,15.7602739114329,-1.19634691005109,0.258475757186842,0.537126817821106,-6.06442929594495 +"Q9VZV2",-0.10131311230046,15.0461180422368,-1.1960654817386,0.258580836157283,0.537126817821106,-6.0647489582448 +"Q8SY96",-0.0762091384177985,18.7595914780058,-1.19161557578145,0.26024686249287,0.539915132634461,-6.06979589235232 +"Q9V400",-0.107902122232327,14.2324650022531,-1.18505186194473,0.262719880965299,0.54399491024756,-6.07721434045557 +"Q6NP72",-0.0945827071445855,18.7563196814997,-1.18285967196587,0.263549984155866,0.54399491024756,-6.07968510308082 +"Q9VH25",-0.0740380134249659,16.2493676452261,-1.18269706674666,0.263611639773137,0.54399491024756,-6.07986823350427 +"Q4QPU3",-0.114600878791746,14.554738652412,-1.18209135013332,0.263841412360747,0.54399491024756,-6.08055024036696 +"Q9VH26",0.0707965210887167,18.2317465694375,1.18208438829022,0.263844054190813,0.54399491024756,-6.08055807751994 +"Q00174",-0.0603657340511994,22.0791985117714,-1.17567516072848,0.266285100013892,0.548350057806386,-6.08775829238438 +"Q7JZW0",-0.0717341419612048,19.852561806456,-1.1744635174386,0.266748576704695,0.548627158993133,-6.08911613067534 +"Q7YTY6",-0.0806220846921999,18.4275473575314,-1.17255795550373,0.267478782362723,0.549451488892885,-6.09124946245092 +"Q9W385",0.108104874072092,16.7844830117989,1.16850082207399,0.269038731059191,0.549975566350053,-6.09578276104654 +"P42207",-0.0924633721892238,16.0307722952912,-1.16828139851132,0.269123302902885,0.549975566350053,-6.09602759619855 +"O97062",0.0634490132851546,18.4208828540843,1.16816117813138,0.269169648031617,0.549975566350053,-6.09616172452633 +"Q9VG73",0.0899643844349143,18.0198773504576,1.16665938996827,0.269749120949839,0.549975566350053,-6.09783636366783 +"Q9VE75",-0.137327251462603,15.3712853573712,-1.16605707094131,0.269981805523695,0.549975566350053,-6.0985075461941 +"Q9VNF5",0.0741396483732117,15.9624342456496,1.16590794287555,0.270039440323107,0.549975566350053,-6.098673683336 +"Q9V3V9",0.0545234888344801,19.5080276117813,1.1659014245527,0.270041959736627,0.549975566350053,-6.09868094474848 +"Q8SXC2",-0.167918177559546,14.7815427012335,-1.1638494514332,0.270835995681919,0.550452022613013,-6.10096530317528 +"Q9V3W2",-0.052252878318388,21.5163689398709,-1.16359156635215,0.270935917605086,0.550452022613013,-6.10125217638684 +"Q9W073",-0.0968953512205832,14.6015500432529,-1.1589139458305,0.272753390447461,0.552282321762723,-6.10644716096631 +"P48375",-0.0860373724785113,21.8085269826473,-1.15889708062117,0.272759960696279,0.552282321762723,-6.1064658625811 +"Q9VQT8",-0.185352731402919,17.9259406441039,-1.15871701905707,0.272830115786861,0.552282321762723,-6.10666551756252 +"Q9Y136",-0.0881531909505018,15.3530738197308,-1.15596454117708,0.273904297728924,0.553784689226479,-6.10971454935395 +"Q9VFM9",-0.0710533690661723,17.1121108313652,-1.15362263917759,0.274820865273129,0.554965137137506,-6.11230439338236 +"P91927",0.0933534378263126,19.1369009920535,1.15218588397033,0.275384370828059,0.555430629433135,-6.11389126657313 +"Q9VCU0",-0.149776267319002,17.3895518526558,-1.15068151976287,0.27597536535367,0.55595037368348,-6.11555118562401 +"Q7K204",0.1660805143682,14.6875787448478,1.1493067436261,0.276516321102206,0.556368182869095,-6.11706665979571 +"Q9VNQ3",0.115218338164219,15.0981666657644,1.14569146898253,0.277942853194304,0.558195715365185,-6.12104528004092 +"Q9VGQ1",-0.0787543556199921,22.4199680033146,-1.14530950018198,0.278093908554238,0.558195715365185,-6.12146507427561 +"Q9W254",0.056144742550515,18.1363121408559,1.14291884985921,0.279040788904583,0.558809928116596,-6.12409001489601 +"Q9V595",0.0725883028613588,18.5017065400041,1.14284533563382,0.279069946115782,0.558809928116596,-6.12417066671903 +"Q9VSW4",0.206389070406427,15.940833917808,1.14185727550331,0.279462061981898,0.558924123963797,-6.12525427074252 +"Q9VHA8",0.0581821982936539,18.577449049975,1.13984702623247,0.280261168650607,0.559851053064925,-6.1274566756073 +"Q9VE85",-0.0761814320233523,15.8814386667096,-1.13843824134884,0.28082224755899,0.560300848000472,-6.12899833760017 +"Q9VC05",0.0935254095948661,14.835132799116,1.13607288393887,0.281766275861373,0.561494021560148,-6.13158348250246 +"Q9VQV7",0.0640104422559524,16.2441362236556,1.13525438754621,0.282093519225063,0.561494021560148,-6.13247706470723 +"O18373",0.059416749452474,19.606156880926,1.13373872455232,0.282700280274155,0.562031069722634,-6.13413045302326 +"Q9VFF0",-0.0543407549161365,23.7210918395244,-1.12996637152894,0.284214875738607,0.563591199263899,-6.13823816225545 +"Q9VPU4",0.20322759974016,12.8646994658362,1.12949016592137,0.28440652040671,0.563591199263899,-6.13875594726227 +"Q9VY28",0.0750879147985213,15.3026918746893,1.12921334182676,0.284517972032058,0.563591199263899,-6.13905686414744 +"Q9VJH8",-0.115875702822963,14.4362121832611,-1.12842249856877,0.284836559340208,0.563591199263899,-6.13991622143875 +"Q9VW34",0.0599188677600715,18.5666504117758,1.12348554992937,0.286831665979686,0.566608775868913,-6.14527030472414 +"Q9VEV3",0.0502917744738447,18.1640059411476,1.1229690554408,0.287041016552297,0.566608775868913,-6.14582938442405 +"Q9VUH8",0.0637864258839791,15.4930412075164,1.1154509557203,0.290101778043305,0.571973718411623,-6.15394467381483 +"Q494G8",-0.0626819239862293,15.0669469987897,-1.11293100246135,0.29113334008989,0.57332988343558,-6.15665527625428 +"P29746",0.0672799083305442,21.2437329093553,1.10952278925657,0.29253303174245,0.575406953946233,-6.16031371482501 +"Q7KLE5",0.0556742784371629,21.3584388759151,1.10618555174364,0.293908609842317,0.577431756439322,-6.16388745336638 +"Q9VSL6",0.172303610903624,14.5992736241864,1.10495754669283,0.294416037177818,0.577748176485412,-6.16520036003568 +"Q7K549",0.151953161340407,14.7498003124148,1.10003968984982,0.296454933075523,0.580915344851599,-6.17044675365161 +"Q9VYF0",0.0777021413867693,16.229081430833,1.09839976325165,0.297137243643451,0.580915344851599,-6.17219214621637 +"A1Z7P1",-0.155173208085815,14.6474262404962,-1.09751441613071,0.297506104696901,0.580915344851599,-6.17313357980019 +"Q86PD3",-0.0455314260720101,18.8966688765052,-1.09622990560748,0.298041894887542,0.580915344851599,-6.17449840134451 +"Q9W499",0.130171145373406,16.939224954988,1.09615110940489,0.298074786203685,0.580915344851599,-6.17458208313267 +"Q9W0S7",0.0544064400354465,18.0308088817972,1.09604370095141,0.298119625415449,0.580915344851599,-6.17469614358274 +"Q6NLJ9",-0.145373623614553,15.0561653945419,-1.09499704798722,0.298556837362726,0.581044650059937,-6.17580715676235 +"A1ZBU8",0.0764094516694094,20.7168144287995,1.09310694814092,0.299347625476221,0.581044650059937,-6.17781136239383 +"Q9W259",0.106617033664328,16.9206861529285,1.09263717338678,0.299544421264852,0.581044650059937,-6.17830907400566 +"P29613",0.0485577767801821,23.7223571763347,1.09255375726704,0.299579375930183,0.581044650059937,-6.17839743312778 +"Q9VD00",0.0522353349339539,17.9030329485912,1.09032173868902,0.300515843688211,0.581672042383244,-6.1807597380733 +"Q0E9F9",0.0872083220998761,18.4649680245759,1.09012070410521,0.300600300080549,0.581672042383244,-6.18097232017277 +"Q9W402",-0.0504284570763609,21.1745173690248,-1.08663221442175,0.302068745344861,0.583257560707416,-6.18465625858233 +"Q9VYY3",-0.0508986202133279,17.5969178957534,-1.08554224228691,0.302528683425092,0.583257560707416,-6.18580538424009 +"Q26377",-0.115826304552622,16.7360509241872,-1.08359185698695,0.303353029921339,0.583257560707416,-6.18785934074108 +"Q9VGE4",0.0511820181539253,15.6351054434447,1.08356583520693,0.303364039849417,0.583257560707416,-6.18788672458859 +"Q7K3D4",-0.0858323892077806,18.5857959882855,-1.08349484776408,0.303394076499201,0.583257560707416,-6.18796142510521 +"Q9VZY0",0.0834168772720609,17.1882650710432,1.08320268203656,0.303517723437672,0.583257560707416,-6.18826883207424 +"Q9VE50",0.0865715849870003,14.475521288582,1.07824643332995,0.305621124512656,0.586623746475385,-6.19347361711206 +"Q7K568",-0.140200522694055,16.1603050377823,-1.07728406790186,0.30603083390112,0.586734978100078,-6.19448204591081 +"A1Z6P3",0.0593638299433685,17.166281251118,1.07546727349511,0.306805442989287,0.587544751901414,-6.19638385137903 +"Q9VVA7",-0.0608026802058852,17.5548351430977,-1.07306165781813,0.307833401315959,0.588837286003463,-6.19889810438252 +"Q9VGV9",0.0767075158298756,16.0126395571021,1.07199502801067,0.308290028210732,0.588971477560633,-6.20001147010384 +"Q9VXZ0",0.0497502099092664,19.5950930859692,1.07096940518205,0.308729586142732,0.588971477560633,-6.20108120103343 +"Q9W1H6",0.0751436612009115,17.13789610767,1.0704255681043,0.308962855434984,0.588971477560633,-6.20164809572692 +"Q9W140",0.166493786915103,13.7138353560822,1.06945270952738,0.309380480426601,0.589094339442431,-6.20266162953662 +"Q9VHI7",0.0868548781068466,15.5328542270178,1.06498231189088,0.311305035595952,0.592083009548515,-6.20730948907457 +"Q9VHC7",0.0612963704145386,19.9104484051464,1.06337867841429,0.311997628592779,0.592724424251429,-6.20897299571835 +"P18432",0.0640704299833459,23.5291666167008,1.06239032910727,0.312425068578135,0.592861222284789,-6.20999724867947 +"P51140",-0.0860655734120215,13.6004682650369,-1.06039250312444,0.313290441578162,0.592997336549464,-6.21206532477086 +"Q9V7D2",0.0634411935668631,21.2933263040172,1.06024499380271,0.313354408269444,0.592997336549464,-6.21221789761195 +"Q9VJ58",0.0629769780244018,17.2507657581955,1.05914415712698,0.313832093197648,0.592997336549464,-6.21335598627106 +"Q9VLP1",0.138527063646887,18.4090797696655,1.05894435135221,0.313918853820849,0.592997336549464,-6.21356245198593 +"Q9VH76",0.0584051246217356,19.2554924119031,1.05680156797911,0.314850445605625,0.59313779291104,-6.21577469824974 +"Q9VBT1",-0.0613309993661701,16.344982023068,-1.05611476663753,0.315149480136932,0.59313779291104,-6.21648300423668 +"Q9VPF6",0.0892020508451825,14.1197783312334,1.05556123606287,0.315390644643517,0.59313779291104,-6.217053598075 +"Q9VEA5",0.115365995414715,15.6087790686176,1.05491495086254,0.315672397439197,0.59313779291104,-6.2177195024459 +"A0A6H2EGA2",0.092847750330094,15.8112016697189,1.0534838868761,0.316296957422021,0.59313779291104,-6.21919284531849 +"Q9VJI9",0.112360383959945,17.4846501973073,1.05341953310072,0.316325065296063,0.59313779291104,-6.21925906265375 +"Q5LJT3",-0.080371906895742,17.0592843814307,-1.04907419706657,0.318227350317094,0.59313779291104,-6.22372271832673 +"Q9VGR1",0.140749112376492,14.1166566808303,1.04881823242291,0.318339674129271,0.59313779291104,-6.22398519044507 +"Q7JYZ0",0.156071698489558,16.7975662208708,1.04721617453869,0.319043377120403,0.59313779291104,-6.22562680832262 +"Q9V931",0.242440438093968,17.5012622896374,1.04672613011023,0.319258862809768,0.59313779291104,-6.22612855048705 +"Q9W329",0.06040069291506,16.4222194422817,1.04498114404568,0.320027070344819,0.59313779291104,-6.22791365626619 +"Q9VJG0",0.483296792217317,12.9801960885865,1.04485392226037,0.320083132474435,0.59313779291104,-6.22804370930585 +"Q7K0X9",0.0669840270386786,16.6210460585213,1.04472123319335,0.320141611717114,0.59313779291104,-6.22817933771817 +"Q6IHY5",-0.0688697321561804,20.8055478376889,-1.0445053977644,0.32023675272804,0.59313779291104,-6.22839992473652 +"Q9V3Y4",-0.10112802583466,14.0534009935095,-1.04421027201509,0.320366879630202,0.59313779291104,-6.2287014882463 +"Q9VEX6",0.0468052454759196,20.7234207725951,1.04389035672715,0.320507981682519,0.59313779291104,-6.22902830453239 +"Q7JVG2",0.0901639330976067,14.8418424357006,1.04382239168125,0.320537964413183,0.59313779291104,-6.22909772528814 +"Q9VVL7",-0.0447982693193438,23.4449115102015,-1.04266475033384,0.321048981185889,0.59313779291104,-6.23027960240804 +"Q24050",0.0620509096250448,16.6091061370855,1.04259539766532,0.321079614926098,0.59313779291104,-6.23035037346146 +"Q76NQ0",-0.0986325299380297,14.6124155645229,-1.04207465379496,0.321309702718118,0.59313779291104,-6.23088164628421 +"P43332",0.0933317905210806,17.1979023157213,1.04168789691091,0.321480669314075,0.59313779291104,-6.23127608458951 +"Q0E8P5",-0.0648933174806601,17.6916105113712,-1.04032713741077,0.322082739113691,0.59313779291104,-6.23266293190692 +"Q7JZK1",0.0453300120304938,21.4626792493718,1.04012563371453,0.322171966653119,0.59313779291104,-6.23286817445904 +"Q9VEK8",0.0479366564140697,18.8649467170921,1.03865109646403,0.322825469350323,0.593197854238055,-6.2343690951895 +"Q9VMX4",0.0767871261644082,17.2319397881249,1.03767951887327,0.323256608078762,0.593197854238055,-6.23535711766198 +"Q7JZN0",-0.0536366347575434,16.839456596125,-1.03722509437452,0.323458407751028,0.593197854238055,-6.23581897747315 +"Q9VT75",0.0649352978685602,15.6499745328062,1.03684532622111,0.323627126712608,0.593197854238055,-6.23620483408391 +"Q9VU04",0.0628619444630623,16.4469590514162,1.02806262257252,0.327547431297694,0.599724605273934,-6.24509644684543 +"Q9VBT2",-0.11481832720246,13.189899350694,-1.02662815611731,0.328191088092462,0.60024422690595,-6.24654287985172 +"Q9VKW5",-0.0890687817655049,17.0728239898052,-1.02568988259299,0.328612609757062,0.600356881790559,-6.24748809436459 +"Q9VXM4",0.129917272940194,20.2379712594749,1.02108409296472,0.330687632446363,0.603486839081547,-6.25211777684709 +"Q9XZ61",0.0535809532263478,18.5542758642914,1.01877445588426,0.331731849245541,0.604648795073302,-6.25443301840433 +"Q9VS02",0.0726733384015326,17.9271068251534,1.01783134520156,0.332158946664722,0.604648795073302,-6.25537719091073 +"O76521",-0.0507548208758362,16.1161413681071,-1.01727334005816,0.332411837579268,0.604648795073302,-6.25593548909967 +"P22979",0.0569946433202233,19.6027700921493,1.01609784263824,0.332945047729434,0.604958975612959,-6.25711078797577 +"Q9VH39",0.122383839450176,18.3511293452864,1.01409965068242,0.333852893485408,0.605948450852733,-6.25910610147145 +"Q9VF23",0.260212368004774,15.5829264578613,1.01185453978591,0.334875114203045,0.606501155342852,-6.26134415700687 +"Q9VCK6",-0.0999830197650962,16.6695411338012,-1.01162639735048,0.334979119494432,0.606501155342852,-6.26157135597057 +"Q7JWU9",0.15660511052387,15.4201115848207,1.0110363064106,0.335248240543231,0.606501155342852,-6.26215881266581 +"Q9VXH7",-0.0753566069098994,18.1474502303308,-1.00839205940781,0.336456163267295,0.607780363517051,-6.26478781758958 +"Q9VRZ7",0.077282709183784,17.2003507913344,1.00789390534105,0.336684086264841,0.607780363517051,-6.26528247047219 +"Q9VVG0",-0.0446292034361448,18.1425576342486,-1.00702867822345,0.337080229771685,0.607837646766671,-6.26614114160478 +"Q7JXF7",0.0527943403793749,17.8354914405549,1.00195316917151,0.339410994589848,0.611379631723398,-6.27116603870257 +"P08928",0.0442192998339976,22.7066381499279,1.00052607450624,0.340068481174727,0.611818323307544,-6.27257515675609 +"Q7JX94",0.196637568901421,12.4554350585169,0.999748765863531,0.340426995535266,0.611818323307544,-6.2733419812619 +"Q9V9U4",0.0478114874319662,15.909964501166,0.999038288424479,0.340754929468051,0.611818323307544,-6.27404244843602 +"Q9W3E2",-0.0901648689738401,17.4391393011254,-0.997782335954317,0.341335207183598,0.611835042054931,-6.27527970573346 +"Q95SH2",0.0696193897078601,18.7133393145131,0.997430580987026,0.341497856206919,0.611835042054931,-6.27562599578448 +"Q9VEN9",0.0820181000223545,14.9031431216791,0.994238124250707,0.342976637030304,0.613825140092862,-6.27876426895881 +"Q9VSN9",-0.0663925842630348,16.5886768191222,-0.993106698454809,0.343501855149684,0.614106210492683,-6.27987450753403 +"Q9VRQ9",-0.0455464953191687,14.7942430412683,-0.989149680408397,0.345343389045283,0.615521434545738,-6.28374924623015 +"P36951",-0.0535558103781213,20.3603421863304,-0.988520041799325,0.345637080116562,0.615521434545738,-6.28436461809976 +"P22465",-0.0506949036081252,22.6448928578298,-0.988311657116948,0.345734320228612,0.615521434545738,-6.2845682099877 +"Q7K159",0.10459742510851,14.5592157679927,0.987649336462594,0.346043517169196,0.615521434545738,-6.28521506262118 +"Q9VIX1",0.161616887035416,17.0657705520004,0.98730125476072,0.346206096475519,0.615521434545738,-6.28555487188647 +"Q7KW39",0.0470119457715832,21.7197458144868,0.986091791454714,0.346771438649197,0.615521434545738,-6.28673482379402 +"Q9VA41",-0.0814466106087828,17.4751022523942,-0.985867000304129,0.346876587813545,0.615521434545738,-6.28695399853969 +"A1Z6X6",0.0784613907889025,18.5473594407173,0.984329983692543,0.347596174609879,0.616142847236215,-6.28845150846344 +"Q9VG26",-0.0609287753238519,19.6958901800088,-0.982123723944477,0.348630991432239,0.617321118587021,-6.29059768907092 +"Q9VA18",0.0740394228707189,21.549160596135,0.97668000891965,0.351193927588855,0.621199863433944,-6.29587613923936 +"O15943",-0.0435196669078195,20.1816847135053,-0.973183049971546,0.352847554931752,0.622661945764701,-6.29925412507269 +"O97064",-0.0651095584187971,16.54416948832,-0.972586126923067,0.353130391259901,0.622661945764701,-6.29982973666062 +"Q9VFJ2",0.117180691438142,13.9744111740587,0.972564992895416,0.353140408089573,0.622661945764701,-6.29985011079178 +"Q9W3N9",0.0803094689615236,20.1746189930451,0.96957718611992,0.354558611959044,0.624502391497029,-6.30272679246686 +"Q7K4Z4",0.0959155231316888,14.9359734077714,0.965159005207819,0.356663343927328,0.627454859539214,-6.30696718007463 +"Q9V3D9",-0.0393246001519181,17.5208655860174,-0.96448084389852,0.356987207255824,0.627454859539214,-6.30761662653589 +"Q9VQG4",-0.0520081760534801,19.1735099000527,-0.962172601412467,0.35809113167339,0.628732639611804,-6.30982428728395 +"Q9V9S0",0.0668754077241438,17.0750306757614,0.96107313199439,0.358617825164676,0.628995302181577,-6.31087429943789 +"Q9VWT3",0.0604602502795597,14.2719617701835,0.959292359465536,0.359472081782715,0.629831336568875,-6.31257284675209 +"A8JNT7",-0.062332044084366,16.9183019633104,-0.954817549464438,0.361625191410188,0.63239055978309,-6.31682944584183 +"Q95WY3",0.0486673374584328,17.2605756653011,0.954079945665773,0.361980990484158,0.63239055978309,-6.31752948679596 +"Q9NHD5",-0.0936330576467448,16.6269288291043,-0.952701426154893,0.36264662595552,0.63239055978309,-6.31883659350983 +"Q9VG33",0.0636389100204831,19.9059274132444,0.952516983678098,0.362735753221092,0.63239055978309,-6.3190113614077 +"P14199",-0.0564759660344905,18.5062445155225,-0.952325299254672,0.362828396710082,0.63239055978309,-6.319192961437 +"Q9VMU2",0.0498718144713113,16.2650476200337,0.950802045692075,0.363565210553211,0.633013331109349,-6.32063499196633 +"Q24400",0.0595979586394968,21.4396632298241,0.947132247738569,0.365344754126481,0.635448435748666,-6.32410118071883 +"Q4QQ70",0.0623794543445833,16.0633288352795,0.945893166147676,0.365947016623445,0.635832941383236,-6.32526898174768 +"A1ZB68",0.0757935239973442,19.2641362846408,0.943250010729314,0.367234119621463,0.637405318968366,-6.32775580480138 +"Q7JNE1",0.042817338750357,17.7550808791539,0.941083633082461,0.36829147193976,0.637923591144106,-6.32978969921845 +"Q7K188",0.0569180465935801,21.9173575221991,0.941071064139734,0.368297612872766,0.637923591144106,-6.32980148807158 +"Q8IN51",-0.0848709339673057,17.0293309834214,-0.938289574179289,0.369658398105643,0.638384363119473,-6.3324070945244 +"Q9VM11",0.0845737190929547,17.8416410407996,0.938186047499991,0.369709115723758,0.638384363119473,-6.33250394984657 +"A1Z8D0",0.172658739206765,13.7767135759048,0.93785967477103,0.369869037994179,0.638384363119473,-6.3328092320548 +"Q961T9",0.0742846140695477,17.9365695131024,0.937399653659732,0.370094531856433,0.638384363119473,-6.3332393746483 +"Q9VNW0",0.115134101199061,14.4924044810533,0.934820071660623,0.371360816869591,0.639906862126527,-6.33564812607606 +"Q9VEJ0",-0.0406018200164375,22.1648801920338,-0.927085735151358,0.375176041691866,0.645813867432438,-6.3428367677074 +"Q9VTF9",0.0673207677659384,17.4287630436271,0.925339978807746,0.376041041269175,0.646091378162107,-6.34445238819694 +"P83967",0.159427360869579,17.3667822465648,0.92519700163254,0.376111947359356,0.646091378162107,-6.34458459343231 +"Q7KK90",0.0539821115936086,21.057639963996,0.921645131878062,0.377876461741106,0.64845466891375,-6.34786332689049 +"P48604",0.0428505175004439,20.046166605432,0.919076625937423,0.379156109708955,0.649981902358209,-6.35022767601029 +"Q9VTZ5",-0.0459858562266398,18.0461338279773,-0.918183540719325,0.379601769667708,0.650077773927861,-6.35104846711204 +"Q9VI64",-0.0458390232063017,20.8689443117872,-0.91655766941015,0.380414050353781,0.650449402587193,-6.35254099244624 +"Q9W1C8",-0.245278230404971,15.9794323082323,-0.916188432670844,0.380598691202099,0.650449402587193,-6.35287963418804 +"Q8T0N5",0.0546246244872073,18.6043919225789,0.913603579006564,0.38189305020477,0.651993457258503,-6.35524706978199 +"Q9VSY0",-0.0648033147643332,22.4982764593045,-0.909332272328237,0.384038702949734,0.654986254110589,-6.35914667735594 +"Q9VFS4",0.0735265478261287,15.1658399975213,0.907020417946382,0.3852035796662,0.656301911014527,-6.36125087864242 +"Q7JWD6",0.0448731261257933,20.433973622594,0.902912313521936,0.387279664534316,0.658912795624665,-6.36497875564356 +"Q59E14",0.0529834722308298,14.6411950648286,0.901039244162655,0.388228848475637,0.658912795624665,-6.36667368356376 +"P54353",0.0936173300478451,18.8304147218926,0.90094928724993,0.388274475467768,0.658912795624665,-6.36675500956851 +"Q9W0J9",-0.0608072229095988,18.371571084034,-0.900703027611549,0.388399399912554,0.658912795624665,-6.36697760647994 +"Q9VTC3",-0.103673140408148,17.0848272436251,-0.89967076688763,0.388923359592852,0.658912795624665,-6.36791011489285 +"Q7K2D2",0.0498697920165618,20.3608053691101,0.899310824480098,0.389106177272359,0.658912795624665,-6.36823506016607 +"O62530",0.0724344270970541,15.6386721994464,0.897894475428083,0.389826137083052,0.659462471252059,-6.36951262208252 +"Q9W436",0.0930238099272529,14.4398115397976,0.893622021635269,0.392003561823515,0.662474104479861,-6.37335601703225 +"Q9VSY4",-0.037553297268758,20.3955344228416,-0.889860039363797,0.393927850303431,0.665052281686359,-6.37672724502359 +"P48609",0.0588605104046636,17.0255468667255,0.884406131823057,0.396729248084374,0.668723859380528,-6.38159305864386 +"Q9VD29",0.0548771981380973,20.6646703017005,0.884065932832041,0.396904448912903,0.668723859380528,-6.38189572552777 +"A0A0B4KGY6",0.04921045887383,21.8071065702349,0.881890049032052,0.398026289587382,0.669937286611254,-6.38382919727608 +"Q9W0B3",0.055111734317034,19.1137005446103,0.880031083458764,0.398986475048481,0.670309076199736,-6.3854778225958 +"Q9VV60",0.0405872577784976,20.03074628468,0.879906451424063,0.399050906874303,0.670309076199736,-6.38558824590915 +"Q9V9Q4",0.0403123807936652,19.0396890741105,0.87850552192013,0.399775650478398,0.670850890340008,-6.38682853879635 +"Q9VGU6",0.0543536900711032,18.6156047721289,0.877689669415795,0.400198135637111,0.670884914816785,-6.38755006064326 +"Q8MKK0",0.211862824431257,15.6720370767871,0.876615001679106,0.400755118464607,0.671144114055185,-6.38849959454391 +"P21187",-0.0400335930246953,19.1557839528566,-0.873278339779812,0.40248787143857,0.673369879197126,-6.39144136756394 +"Q7K5M0",0.094782848727391,16.5627123375304,0.871618191187707,0.403351923232044,0.674139286524098,-6.39290144667121 +"Q9V3F8",0.0398075435980765,18.5038624549574,0.869496395853179,0.404458107894969,0.674848717548471,-6.39476405784261 +"Q7KML2",0.228542074791969,13.4733513888034,0.869252180412765,0.404585562079419,0.674848717548471,-6.3949781908064 +"Q9VME3",0.0709172599236219,15.7954597046461,0.867663881712799,0.405415158004241,0.67555692662445,-6.39636957872439 +"O61443",0.0526958118843979,16.6316753587641,0.86539540722592,0.406602049899873,0.676858502228531,-6.39835301481551 +"P21914",-0.0381933217089774,22.8684818590248,-0.863636721968736,0.407523855893002,0.677220208212202,-6.39988763684669 +"Q9VC58",0.129571945815654,13.1549233948413,0.862733412718194,0.407997878138936,0.677220208212202,-6.40067481418084 +"Q9W199",-0.0520674776493557,16.0163636898348,-0.862216834065254,0.408269128878883,0.677220208212202,-6.40112466056604 +"Q9Y112",-0.0391986793278356,22.2388288292397,-0.861885141171103,0.408443362986496,0.677220208212202,-6.40141338236679 +"Q9VK12",0.0470219015275113,22.2301964758484,0.858615598176316,0.410163540538434,0.679029846446428,-6.40425421946528 +"Q8IR45",0.0748606756419967,14.76825378291,0.85826370955504,0.410348971953237,0.679029846446428,-6.40455941207978 +"Q9VFP0",0.0704583528804985,16.4498812886435,0.854277406687019,0.412453600511824,0.681280758941716,-6.40800917340766 +"Q7JXW8",0.0908720251044208,14.9032286733651,0.853528397750498,0.41284987211859,0.681280758941716,-6.40865581776529 +"Q9VDL1",0.058999545910277,14.7955255268393,0.853368388030968,0.412934560725465,0.681280758941716,-6.40879389583711 +"Q8MSS7",0.103001401848262,14.2982921642656,0.851089925647758,0.414141771956582,0.682436704080331,-6.41075762948493 +"P61851",0.0622201808076746,23.492583664997,0.850502376983729,0.414453465967251,0.682436704080331,-6.41126328121609 +"Q9VXA3",0.0511150403288774,17.7763459926855,0.84929394798845,0.415095038464046,0.682754600948972,-6.41230231901439 +"Q9VVM1",0.0716883976410863,15.5843424207665,0.848597349171683,0.415465179834057,0.682754600948972,-6.41290069036489 +"Q9VMY9",0.0872287176656954,15.0465125895617,0.845853110523778,0.416925528709919,0.684480100283608,-6.41525381985165 +"Q6AWN0",-0.0610070802135674,18.3777350153857,-0.844769216500004,0.417503283092941,0.684754647196683,-6.41618141493248 +"Q9VY78",0.0670127004773988,18.727987186982,0.843049150573771,0.418421254613662,0.685135730378866,-6.41765132502563 +"Q9VGF3",0.0512221063692024,15.6855066969894,0.84279475063819,0.418557139841765,0.685135730378866,-6.41786850568498 +"Q9VRL1",0.0506209478565758,20.4607864901745,0.842001090540529,0.41898125777767,0.68515758624819,-6.41854568555684 +"Q95SN8",0.091731359208481,17.6345510071932,0.840966853670417,0.419534372430201,0.685390140267949,-6.41942730226144 +"Q709R6",0.0777491741759739,14.996330558216,0.838248636197217,0.420990443474389,0.686593009915268,-6.42173990528169 +"Q9VXK6",0.0627723804385631,17.6907313958114,0.837881894942132,0.421187157474692,0.686593009915268,-6.42205142245501 +"Q9VCC0",0.0572612312829754,17.3923809452537,0.837288566077713,0.421505540859253,0.686593009915268,-6.42255515633393 +"Q9V4Q8",0.0480021043272227,16.8899276261478,0.831939374186696,0.424383280804474,0.689747889941049,-6.42708256551069 +"Q8SZ63",0.111821964713831,14.0076724124627,0.831501865571069,0.424619234193529,0.689747889941049,-6.42745174191652 +"Q9VN93",0.0455780292115975,20.3086072160056,0.831383837017078,0.424682903458907,0.689747889941049,-6.42755130719513 +"Q94516",-0.0347076788378722,23.3227838557153,-0.828293471263726,0.42635225458054,0.690146647838844,-6.43015385656661 +"Q9VN88",0.0576003401272196,16.9694863985267,0.8276070744651,0.426723629275693,0.690146647838844,-6.43073075699236 +"Q9VSU6",-0.0580567630503026,21.5518762551509,-0.827114280759183,0.426990388987103,0.690146647838844,-6.43114468100868 +"Q9VGK3",0.0490406462523119,17.0547593905829,0.8269703274109,0.427068335112753,0.690146647838844,-6.43126555455734 +"Q960W6",-0.124147783820431,14.1550221101404,-0.826779099466555,0.427171893683205,0.690146647838844,-6.43142609482751 +"Q9VWD9",0.0376517362031734,19.4185133196218,0.826337759432049,0.427410963559668,0.690146647838844,-6.4317964861748 +"Q8IQW5",-0.0507207878168821,21.8915066377361,-0.825102345963626,0.428080652900992,0.69048527808693,-6.43283237895235 +"Q8SXF2",0.0391742942592916,15.4799487548273,0.82442412688126,0.428448598812933,0.69048527808693,-6.43340048899323 +"Q9V6U9",-0.0355220154320968,21.8539672104388,-0.821559495621111,0.430005048608063,0.69232473077051,-6.43579553992838 +"Q8IH23",-0.0840681620654138,18.3031126949066,-0.819464324709086,0.431145816192968,0.69349201678869,-6.43754264450345 +"Q7JXB9",0.0682446300141777,16.2530825015997,0.817493551401673,0.43222069541206,0.694367755962846,-6.43918245199167 +"Q9W2M4",0.0424754298398966,22.6239306466197,0.816940161668903,0.432522840794603,0.694367755962846,-6.43964228511408 +"Q9VW58",-0.0845564151909564,14.869250235052,-0.815141953048246,0.433505617034299,0.695276316551164,-6.44113460260941 +"Q9V535",-0.0456106964776772,18.6172391542276,-0.813252240915568,0.434540004001276,0.696265827736914,-6.44269975066871 +"Q9VJZ1",-0.0497964117700018,15.5246889940724,-0.811794123834365,0.435339266441392,0.696375517845743,-6.44390525314524 +"Q9VJD0",-0.0452272710642205,16.2045816271486,-0.811604200304629,0.435443444312416,0.696375517845743,-6.44406213321442 +"Q9VXN1",-0.0462803073568221,13.5748049341998,-0.810228099714335,0.436198765047345,0.696844262659068,-6.44519785307409 +"O97111",0.121241661347607,14.7190972016912,0.809548522996614,0.436572095011227,0.696844262659068,-6.44575809534561 +"Q9VH98",0.0425364193869591,16.9446843814699,0.808459055022152,0.437171043657863,0.697133174781372,-6.4466553898236 +"Q9V3G1",0.0552951160207016,21.163539481644,0.806585924458256,0.438202093480956,0.697693198869685,-6.44819563257948 +"Q7K0S5",-0.0353026746888254,18.2754597164465,-0.806301494497471,0.438358796412128,0.697693198869685,-6.44842923973696 +"Q7JXF5",-0.0420805956481516,18.4980668566026,-0.802466761392293,0.440475112231569,0.700393219449244,-6.45157169473524 +"Q9VIH3",0.0868556484327616,13.7255815807453,0.799321669940168,0.442215855974312,0.702491474062049,-6.45413916239055 +"Q9VG69",-0.0397332123448031,19.8844355662625,-0.797582818222149,0.443180218386549,0.703353572092068,-6.45555484459701 +"Q9VA32",0.0584905879950455,17.2990166996957,0.790320857502574,0.447222623864657,0.709094426431794,-6.4614377427268 +"Q9U616",-0.0599030940914425,19.6651499850331,-0.789496881099141,0.447682815903458,0.709149987584965,-6.46210224171748 +"Q9VW00",-0.0462531568672198,15.7203859472039,-0.786519074241879,0.449348508031198,0.711113198667967,-6.46449859530827 +"Q9W401",0.0382185017347005,24.4066267096067,0.785696125033477,0.449809553305645,0.711168089965702,-6.46515944067218 +"Q9VVT6",0.0401228069926525,20.440194239183,0.783368531727518,0.451115224475852,0.712383340917691,-6.46702523088553 +"Q9W266",-0.0391082732012151,18.32128115661,-0.782602636242913,0.451545395750432,0.712383340917691,-6.46763809796189 +"Q9VTP4",0.0392189403384116,20.949302198811,0.781679194689132,0.452064409203079,0.712383340917691,-6.46837632667677 +"Q9VQF7",-0.0874776860521571,18.7388924675807,-0.781284175086964,0.452286545582634,0.712383340917691,-6.46869188213256 +"Q7JR58",0.0530453751721289,22.7606185708049,0.777671819269272,0.454321220776043,0.713768353215872,-6.47157099782802 +"Q9VEJ3",-0.0693657213127317,20.0319381911855,-0.77745659950967,0.454442631569134,0.713768353215872,-6.47174215847653 +"A1ZBA5",-0.0858423031684961,15.7412812765763,-0.777444186032398,0.454449634961185,0.713768353215872,-6.47175202942371 +"Q9VR31",0.0565290702053485,17.2539981917918,0.774522149742233,0.456100127450827,0.715076587671195,-6.47407168139266 +"M9PFN0",-0.0434058667362045,16.6328478275379,-0.773774413307808,0.456523104566029,0.715076587671195,-6.47466402393658 +"Q7JVM1",-0.0671450999384078,15.8704487617972,-0.773251128891803,0.456819265381845,0.715076587671195,-6.47507825758608 +"Q9VYS5",0.0733018582156184,14.2947112787365,0.772268175615746,0.457375918838076,0.715076587671195,-6.47585569347052 +"Q23983",-0.0404881167996116,22.2701600137532,-0.772179619103463,0.457426090554655,0.715076587671195,-6.47592569129877 +"Q9VD68",0.0780409996894669,14.8373354610315,0.770213460385716,0.458540934699103,0.716081421330498,-6.47747796644133 +"Q7KQM6",0.0510462754449499,15.1493371541478,0.769532460315699,0.458927481656057,0.716081421330498,-6.47801479300763 +"A1Z933",-0.0661023674185355,15.7360619456813,-0.767945075411369,0.459829323807693,0.716654951886286,-6.47926447508667 +"Q9VVW8",0.0561203085353803,15.7310823585567,0.767373472479628,0.460154348603245,0.716654951886286,-6.47971391199894 +"O62621",-0.0824348525500032,13.1341551231951,-0.762464965125745,0.462951512696962,0.719587678613661,-6.48356107795577 +"A1Z6R7",-0.0423127966946275,17.8634526535216,-0.761458431940428,0.463526442783346,0.719587678613661,-6.48434725544261 +"Q9VRY5",0.0496349330777619,16.8120501385998,0.761246344907776,0.463647644958968,0.719587678613661,-6.48451279312725 +"P55841",0.0369137328712235,20.6904475190117,0.760889431119222,0.463851657717236,0.719587678613661,-6.48479127783423 +"Q9V3H2",0.0504817773355519,18.4838241430999,0.760289954047936,0.464194449753177,0.719587678613661,-6.48525876228985 +"Q9VZ24",-0.0922775200742123,21.7967976361841,-0.758760376236136,0.465069826068298,0.72027527379937,-6.48645006898268 +"Q9VCE0",0.0906353686202355,15.6928036725922,0.757676326451015,0.465690866678273,0.720523233828961,-6.4872930812687 +"Q9W078",0.0461437123925101,19.4132516286029,0.756973369935744,0.466093866487679,0.720523233828961,-6.48783916099173 +"P40304",-0.0568118610269366,18.8584061171042,-0.751159203201866,0.469435628092027,0.724107475502855,-6.49233843184223 +"O76454",0.0546162078638623,17.966525120314,0.751145345005436,0.469443611447915,0.724107475502855,-6.49234911890607 +"Q9VAC4",-0.0313580491805858,19.4208061678473,-0.750674679483053,0.469714801255449,0.724107475502855,-6.49271197863778 +"Q9VX02",-0.0556897026716143,17.2321042169567,-0.744444982052881,0.473313636794733,0.728981667750337,-6.4974955818595 +"Q9VZG0",-0.0397633997485585,21.7166676726966,-0.741548069931226,0.474993091376772,0.730641546635591,-6.49970786816693 +"A1Z9A8",-0.0488803666851361,16.8681057578212,-0.740491848489058,0.475606360917572,0.730641546635591,-6.50051254882065 +"Q9VAN7",-0.0332508472831101,23.616679939483,-0.740321240198093,0.47570546741382,0.730641546635591,-6.50064242994999 +"Q4V5H1",0.069699292135045,15.0468289226551,0.739329983145803,0.476281547437572,0.730853377300708,-6.50139652540608 +"P17210",0.0313971721455424,20.7789626067063,0.73813826504908,0.476974710163838,0.731244316685001,-6.5023019203544 +"E1JJH5",-0.0275791936591432,21.2446550586506,-0.737265438756144,0.47748279283093,0.731351054584014,-6.50296420872876 +"Q9VUN9",0.0297174588422351,16.8396367895264,0.735981991768038,0.47823052185262,0.731824321513918,-6.50393679199726 +"Q9V3W7",-0.0645233077024088,17.8949934089965,-0.734460180840685,0.479118074884045,0.732510493956542,-6.50508803206648 +"P40301",-0.0476346291393561,17.9360264328529,-0.731853583038681,0.480640703139401,0.734122888170473,-6.50705492912061 +"Q9VB10",-0.0396482024048233,21.011813020246,-0.730823866037086,0.481243041904698,0.734122888170473,-6.50783020399027 +"Q9VEN3",0.0407243893166189,17.4948309500258,0.730396673656215,0.481493069339627,0.734122888170473,-6.50815154928043 +"Q9VWD5",-0.0709985296917957,14.5196227166777,-0.729204139837439,0.482191467035399,0.734145003511013,-6.50904770952315 +"Q9VWX8",-0.0346261292563526,20.5116402592238,-0.728869015432989,0.482387844033615,0.734145003511013,-6.50929931012816 +"Q9VSS2",0.0401039675712642,16.3594375821197,0.726912161946269,0.483535524979077,0.73459815069458,-6.51076637311775 +"Q9VNA3",0.0431678530088391,18.5934543400374,0.726430703988636,0.483818158157314,0.73459815069458,-6.51112678006338 +"Q95RB2",-0.06965669487575,24.2492040050962,-0.72610942976738,0.484006815115914,0.73459815069458,-6.51136715794548 +"Q8I099",0.0342689460089254,16.9483475042062,0.723320070744893,0.485646698173099,0.736390505346577,-6.51345013253891 +"Q9VZD8",0.0717299611677547,13.6295430519707,0.722498603905302,0.48613030355978,0.736390505346577,-6.51406219116253 +"Q9VLR5",0.0632961410325308,16.7286356519268,0.721465238033903,0.486739081752832,0.736390505346577,-6.51483124060661 +"Q9W3N6",-0.0382594575061841,16.1697452197591,-0.721101172704114,0.486953673499565,0.736390505346577,-6.51510194800862 +"Q9VMB9",-0.0415443759684635,22.4720875263389,-0.71901588650829,0.488183941493259,0.737582259430033,-6.5166501244709 +"Q9VH72",-0.0758626869399137,18.4461129259226,-0.716096917026064,0.489909301445369,0.739044998292414,-6.51881045100906 +"A1Z6L9",-0.0639424410367315,15.3924977604202,-0.715879050965559,0.49003823028262,0.739044998292414,-6.51897137508076 +"Q9W5W7",0.0449113066498565,15.0692077280457,0.712107770113445,0.492273329030982,0.741745178702509,-6.52174996938238 +"Q9W1X8",0.0357128497590971,16.1474260028393,0.708968871435991,0.494138432128779,0.743883488078342,-6.52405251377108 +"Q9V3E3",0.0761879422746361,15.1153796384448,0.706199226364502,0.4957877389357,0.745140357395142,-6.52607654232752 +"Q9VS44",0.0539583143601696,15.0959712484437,0.706066629130968,0.495866784597487,0.745140357395142,-6.52617326301285 +"Q95SI7",0.0316953021488651,21.1520530834484,0.704066542334167,0.497060042750294,0.746261162292971,-6.52763019378456 +"A8DYK6",0.063706529782193,16.6311405210582,0.70211185875901,0.498227914140689,0.746455757554211,-6.52905043046797 +"Q9VP55",0.0478127642731483,17.1800296300103,0.701885854972514,0.498363053744788,0.746455757554211,-6.52921440963225 +"A1ZB71",-0.0473115806513782,19.1346946983751,-0.70160302795535,0.498532202587165,0.746455757554211,-6.52941954995508 +"Q9VSL2",0.0491340677253085,20.4029066514727,0.69593907865857,0.501927004057664,0.750864791720344,-6.53351192597523 +"Q0E980",0.047844548366804,18.3729608227334,0.694120023077161,0.503020275023446,0.751826002454398,-6.53481985533017 +"Q9W4A0",-0.0301808355491673,17.0845714433184,-0.693165329535923,0.50359463506448,0.752010609926188,-6.53550504962017 +"O46098",0.0365954266311057,17.9529786159935,0.690838877922833,0.504995937100527,0.752134005382817,-6.53717117798698 +"Q7JR49",0.0402507413207829,18.8495650475253,0.690772881749508,0.505035723366248,0.752134005382817,-6.5372183679483 +"Q9VXH4",0.0398631126853175,17.1751866391401,0.689712035322328,0.505675523213165,0.752134005382817,-6.53797635345494 +"Q9VXQ5",0.0293939832394905,20.3834643606198,0.689203907242996,0.505982150867109,0.752134005382817,-6.53833904051917 +"A8Y535",-0.0539823664592234,21.9712064615473,-0.688936217530164,0.50614373235559,0.752134005382817,-6.53853001179685 +"Q9V6B9",-0.0451218138001188,15.8320938491784,-0.688540274777175,0.506382786597664,0.752134005382817,-6.5388123556417 +"Q9VHF9",-0.0627998701982406,17.0516791975925,-0.68634279731059,0.507710777070944,0.753058298771831,-6.540376673566 +"Q9VY41",-0.0803285562322102,16.5138348396994,-0.686016699752297,0.507908025250785,0.753058298771831,-6.54060842442982 +"Q9VZU4",0.040474917692805,21.3322122086459,0.68517983542224,0.508414435245164,0.753139678498165,-6.54120270753506 +"Q9VHE4",-0.0306418491268019,17.9048919670998,-0.682713789825507,0.509908480362968,0.75426382327984,-6.54295007697583 +"Q9VA76",0.0413518839603721,15.2254334407604,0.682434764423254,0.510077693441043,0.75426382327984,-6.54314742461907 +"Q9W404",0.0744647612161664,15.939651094516,0.680549026836164,0.511222172906196,0.75489445770149,-6.54447922999635 +"Q9VXE8",-0.0509536883563264,16.1686287792403,-0.680240918257917,0.511409314869714,0.75489445770149,-6.5446965126292 +"Q9VJZ4",0.0290844122998308,21.2250336044934,0.677865652834972,0.512853408766675,0.754898672599983,-6.54636856899658 +"Q9VLG9",0.0651628500405028,15.7505567205001,0.677376554739285,0.51315107013067,0.754898672599983,-6.5467122041579 +"Q9V434",0.0615686013357237,15.0237322072161,0.677324507505548,0.513182751779659,0.754898672599983,-6.54674875866033 +"Q9VKV9",-0.0466677710620278,15.6536213625366,-0.677259245813173,0.513222478853945,0.754898672599983,-6.54679459049141 +"Q9VL00",0.0943922985678469,15.9552523202847,0.675383622978542,0.514365024083369,0.755912652133092,-6.54811007444793 +"Q9VKM3",0.0496520053190146,21.7459298273914,0.67390518316304,0.515266695876535,0.756571169649701,-6.5491446411226 +"Q7K2N0",0.0587234502196008,15.3862683639639,0.67298570459529,0.515827944523009,0.756729121780457,-6.54978701862127 +"Q9VKK1",-0.0744162695109534,14.5359172181919,-0.67218768213792,0.516315352496947,0.75677856587426,-6.55034389287937 +"Q9V3G7",-0.0421742928915378,18.1703801513103,-0.669382193617346,0.518031041122971,0.758626669528635,-6.55229681487366 +"Q9VNH5",0.0332408298250293,17.1927681452835,0.66815783214108,0.518780859306481,0.759058309932641,-6.55314675921986 +"Q9VIW6",-0.0843675268513824,15.0687556918158,-0.661920505262522,0.522610703599868,0.763991808592972,-6.55745454311025 +"Q95SH0",-0.348654087253809,13.7906927535107,-0.66104678393038,0.523148519530026,0.764108345513207,-6.5580550175299 +"Q9W415",-0.0907111042748756,16.7397118006132,-0.659139865422354,0.524323451806945,0.765072989464795,-6.55936304081117 +"P80455",-0.0597297091451168,20.5171656308944,-0.658042855652302,0.525000070567342,0.765072989464795,-6.56011394757658 +"P22769",0.0394846167950433,20.1289879303616,0.657743179400983,0.525184995765701,0.765072989464795,-6.56031887728834 +"Q9VMQ5",0.0928557751700296,13.6536482014437,0.654868196134259,0.526961049382225,0.766518671157154,-6.56228054103015 +"P42281",0.0391384084295545,21.6749046324742,0.653955731137041,0.527525472490819,0.766518671157154,-6.56290148546641 +"P12370",-0.0454988172594462,20.8859332055472,-0.653906370050726,0.527556015880343,0.766518671157154,-6.56293505365219 +"Q9VD26",0.0536016446056777,16.2038281291666,0.652201471504259,0.528611601144605,0.76738394317598,-6.56409304667779 +"Q9VCF8",-0.033374185805302,16.930474305896,-0.648472558921343,0.530924662982862,0.770071598135143,-6.56661609011078 +"Q9VFN9",-0.0448490124155825,16.0378920759186,-0.646108444165187,0.532394193613881,0.771532158946962,-6.568208792888 +"Q9W077",-0.0356702872126426,20.7828016258906,-0.64271540122621,0.53450744361968,0.773430835527285,-6.57048532095163 +"Q9VMM6",0.0713360957025806,18.3183079440774,0.642516063068304,0.53463174662048,0.773430835527285,-6.57061872139205 +"Q9V429",0.0313170022518712,22.3084886446758,0.641587212583724,0.535211179317742,0.773598134403807,-6.5712398207793 +"Q24090",-0.0553487793002976,15.880295735066,-0.638687651747638,0.537022318053247,0.775069957859031,-6.57317335509378 +"Q9VZS3",0.063080307510937,18.3704221399494,0.638469386188553,0.537158795734436,0.775069957859031,-6.57331857569394 +"A0A0B4KI23",-0.0407012814970926,20.4662016234098,-0.637703829520917,0.537637643765062,0.775090397407194,-6.57382756841868 +"Q9VXI6",-0.036243566043936,21.9778291703426,-0.63677995601195,0.538215846069401,0.775253912991157,-6.57444107024562 +"Q961D9",-0.153117296806277,12.3686929291815,-0.636027168020763,0.53868724084795,0.775263432040018,-6.57494035505435 +"A8JNP2",0.0451319666262577,21.0900906176038,0.629926564994875,0.542516210651413,0.780100896005652,-6.57896643841623 +"Q9W5W8",0.031505748016734,20.7540783932538,0.628864858578855,0.543184171552057,0.780294911225717,-6.57966344569616 +"A0A6H2EG56",0.0587343237640852,20.8933024421762,0.628225343893162,0.5435867427124,0.780294911225717,-6.58008276054376 +"Q9VXI1",-0.0588536996461428,19.530596394958,-0.626407501969658,0.544731998096474,0.780602928035752,-6.58127252153488 +"Q9VF39",0.0693904434522938,15.8724826669888,0.626124048220714,0.544910700651807,0.780602928035752,-6.58145775193064 +"Q9VS97",0.0492331533620884,15.119787367858,0.625656905576645,0.545205282471014,0.780602928035752,-6.58176284942026 +"Q9V9T9",-0.0470346831560935,13.5195727942761,-0.622995244563606,0.546885471329008,0.781520272872276,-6.58349719526415 +"Q9W3T2",0.0319721224381944,16.2126684178839,0.622299052995335,0.547325433049498,0.781520272872276,-6.58394970590687 +"Q8SX78",0.0370608302732123,15.9562909401366,0.621803155850618,0.547638940678444,0.781520272872276,-6.58427174334384 +"P45437",-0.0374791752000654,16.2741747660964,-0.621674738336362,0.547720143277992,0.781520272872276,-6.58435509938195 +"Q94533",0.0473740739188049,15.2443655031398,0.619436116028129,0.549136798404148,0.782871948494119,-6.58580562979957 +"Q9VBP6",-0.025858982314265,23.068866651639,-0.617543735832612,0.550335965284666,0.783911520149294,-6.58702802670436 +"Q7KVQ0",0.0554365018944765,15.8413710186382,0.612457591967339,0.553566308488036,0.787840104571709,-6.59029626077174 +"Q9VFV9",0.0317566478133351,21.3254608745638,0.609092591753337,0.555709376886403,0.789662660487073,-6.59244473282354 +"Q7JWX3",-0.0338090517745009,18.010536446635,-0.607641408440641,0.556635030478296,0.789662660487073,-6.59336788389445 +"Q9VHX4",0.0303143868270155,22.7801182414754,0.607076305767225,0.556995721658689,0.789662660487073,-6.59372681270692 +"Q9VW40",-0.0404036240027263,14.67688092806,-0.606404318671877,0.557424805197728,0.789662660487073,-6.59415322572381 +"Q7KLX3",0.0317510739590183,19.3145152010274,0.605856103015376,0.557774994277637,0.789662660487073,-6.59450077361973 +"P16620",-0.0489265104136489,17.3794849910667,-0.605300322187873,0.558130141659637,0.789662660487073,-6.59485281911118 +"B7Z107",0.0840295461480984,15.8371310380973,0.605252294867594,0.558160837358669,0.789662660487073,-6.59488322671161 +"Q95RF6",-0.0533071199414987,17.3561286969442,-0.604485417083118,0.558651099977517,0.789686470137711,-6.59536845700366 +"Q9VJ19",-0.0323087175456465,19.1472242515217,-0.603507381359752,0.559276704729788,0.789901391608202,-6.59598646379966 +"Q9VGG5",0.0430034678840272,17.0766306551152,0.601934863245754,0.56028339328956,0.790653722510141,-6.59697816297683 +"Q7K2E1",0.0433887082440769,17.5881638735955,0.599307598215658,0.56196755961284,0.790847099760059,-6.59862965715778 +"Q9VFM0",-0.0424833332568948,14.3604009765098,-0.599180864871319,0.562048871203967,0.790847099760059,-6.59870915141262 +"Q9VBI2",0.0261174049344319,22.0310321221807,0.598228676151575,0.56266000090586,0.790847099760059,-6.59930591662312 +"Q9VV76",0.0520334079963511,16.2930998708607,0.598223882582632,0.562663078428307,0.790847099760059,-6.59930891865947 +"O44226",0.0247194303112259,20.1709234329121,0.598024532508258,0.562791071591841,0.790847099760059,-6.59943374444889 +"Q95RA9",0.0249855658592679,20.4499272444701,0.597077576325134,0.563399287905949,0.791035363827544,-6.60002616460182 +"P07668",-0.1093316790193,14.5890200073901,-0.594578922516531,0.565005887819648,0.792340771261799,-6.60158513272803 +"Q9VH37",0.0715938000967409,16.6147464393384,0.593429383577913,0.565745876996566,0.792340771261799,-6.60230030920297 +"Q9VNC1",-0.0728095778534801,15.7040145032367,-0.593416595790548,0.565754111854198,0.792340771261799,-6.60230825776269 +"Q9VDC6",-0.0442736973507252,17.0614399598261,-0.591795783265035,0.566798391128102,0.792498067627625,-6.6033144194251 +"Q9VUM1",-0.0438405110582192,16.5133747607993,-0.591767437679659,0.566816663477072,0.792498067627625,-6.60333199284174 +"Q7JVI6",0.0429097571134562,17.5530655400203,0.58857912262509,0.568874013478854,0.794708420839807,-6.6053036381873 +"Q9VD30",-0.0501056648320066,21.4083870034755,-0.586095071421573,0.570479761525946,0.795345318456832,-6.60683287427378 +"Q7PLT4",0.0826911667345946,15.8514393477679,0.585424565965526,0.570913617797425,0.795345318456832,-6.60724461636294 +"Q9VNA5",0.0358013796383823,17.3965250060971,0.585109376381822,0.571117626416228,0.795345318456832,-6.60743801490214 +"Q9VV36",0.0329893611870844,22.9198134490515,0.584924627263682,0.57123722512667,0.795345318456832,-6.6075513306621 +"Q9VIG0",0.0346647576309138,17.3440999918206,0.583867143085304,0.57192205942569,0.795388211894814,-6.60819929425698 +"Q9VHN6",-0.0447462537055507,15.1462831482813,-0.582381530662294,0.572884911454953,0.795388211894814,-6.60910773762074 +"Q0KI15",-0.0454007074298737,15.5979907923235,-0.582353708087322,0.572902952214505,0.795388211894814,-6.60912473031835 +"Q9W258",0.039894195259123,19.3271952676518,0.581933536877858,0.573175438068085,0.795388211894814,-6.60938125847851 +"Q9VFC2",-0.0346438379994254,19.9563556833067,-0.580169866411694,0.574319970497866,0.795477669925181,-6.610456147225 +"Q9VJ28",0.0302115826275156,19.0154155706828,0.579996465554887,0.574432566096626,0.795477669925181,-6.61056166351385 +"Q9W3T9",0.0297303424597501,18.6055101749439,0.579629917602823,0.574670618860817,0.795477669925181,-6.61078461475461 +"Q86BL4",-0.0473079613056111,14.9543943203995,-0.574323120188112,0.578123104945977,0.799176269854357,-6.61399766569164 +"Q9VRP4",-0.0499252426529146,14.5092918594909,-0.572960023142775,0.579011717374588,0.799176269854357,-6.6148184971334 +"Q9W2D6",0.0392242532402776,19.5720527581227,0.572760881152138,0.579141601259226,0.799176269854357,-6.61493826367131 +"Q9VWA8",-0.0761036077855923,14.4711027153225,-0.572580812252717,0.579259058905226,0.799176269854357,-6.61504652581397 +"A1Z9B5",0.0728827510103756,15.640698877793,0.567564603418455,0.582536264097364,0.803033461582151,-6.61804957053622 +"Q9VNF3",-0.0248371334693758,19.1185376196897,-0.56316857768668,0.58541646612551,0.805631767590628,-6.62066094088695 +"Q9VAA6",-0.063399376727201,16.0793317822188,-0.56260671814411,0.58578513560302,0.805631767590628,-6.62099332791597 +"Q9V9M7",0.0407963531713911,18.4925272384014,0.562477250885365,0.585870104368964,0.805631767590628,-6.62106987447319 +"A1Z6S7",0.0284367992299863,17.5590515506564,0.560784836811958,0.586981433521431,0.805869265216418,-6.6220689793155 +"Q9VJD4",0.0309509253485878,20.7105362153608,0.560742745763727,0.58700908707311,0.805869265216418,-6.62209379141712 +"Q9U1K7",-0.0664263608843925,17.4479161245053,-0.557872282927242,0.588896601137663,0.807795666692123,-6.62378175937967 +"Q9W0D3",0.0786433932549446,12.8805767096222,0.555390006322784,0.590531456219446,0.809372612139717,-6.62523488641135 +"Q9W2X6",-0.0273067747007012,24.0587455298053,-0.551412866453155,0.59315585181673,0.81165981261351,-6.62755039378198 +"P50887",-0.0513956691804438,17.9869090458926,-0.550305081564688,0.593887940695511,0.81165981261351,-6.62819256068445 +"Q9W0H6",0.0331968811138879,18.1460025808286,0.550146495527481,0.593992782555142,0.81165981261351,-6.62828439119184 +"Q9VY91",0.0933403193473232,16.825751517397,0.549913761817594,0.594146661391544,0.81165981261351,-6.62841911235729 +"P00334",-0.0367118046908992,25.154576789282,-0.54878479871225,0.594893406887567,0.812014895817072,-6.62907186633495 +"Q9VAD4",-0.0990405737591207,13.4195673481856,-0.547324187798381,0.595860250780782,0.81218914279965,-6.62991449973638 +"A0AQH0",0.060536129244479,16.953696364868,0.546718007712074,0.596261750764169,0.81218914279965,-6.63026358641938 +"E1JIY8",0.0232563379763899,16.3378180434282,0.546385818711654,0.596481834490151,0.81218914279965,-6.63045473258123 +"Q9VV75",-0.0211889688916607,23.9219490195168,-0.544720421944381,0.597585844404386,0.813028701848708,-6.6314113738031 +"Q9VQ29",-0.0350952227628945,22.1467414829212,-0.542463211278187,0.599083879848226,0.814402535930596,-6.63270356956572 +"Q8MSV2",0.0553467428146917,18.2756556038498,0.541319727159905,0.599843519724025,0.814771165227747,-6.63335625318529 +"O18404",0.0323966153527806,22.9737753458379,0.538237872229742,0.601893356147104,0.816890250653677,-6.63510885575591 +"Q9VSY6",0.036006372212789,17.8221119518697,0.536845354273375,0.60282075485199,0.81748375536026,-6.63589765934803 +"Q9V3F3",-0.0619782157604316,14.6457686399797,-0.535051447475259,0.604016564333856,0.817909624054603,-6.63691098758245 +"Q9VKQ2",0.0390554548930879,15.9243312803963,0.534903107883103,0.604115501699803,0.817909624054603,-6.63699463703621 +"Q9VCW2",0.0316341851966584,15.4803121995799,0.531960108808022,0.606080110934835,0.818810935622365,-6.63864967650493 +"A1Z7H7",0.0342570946469785,17.9034921351046,0.531802056292047,0.606185712565859,0.818810935622365,-6.6387383154202 +"Q9VVA6",0.0286760983154437,19.1613482255758,0.531700008367418,0.606253900176031,0.818810935622365,-6.63879553264171 +"Q9VPX6",-0.0703536766207762,21.594390052758,-0.529149529815651,0.607959391918498,0.820450053171566,-6.64022218588048 +"Q9I7T7",0.0643996423863893,14.5539785610335,0.526491573836997,0.609739371579343,0.822186961838597,-6.64170205065513 +"Q4V6M1",0.0281657113516545,18.2087207464921,0.524426933202454,0.611123858534421,0.823026268848466,-6.64284670749507 +"Q8SWZ6",-0.035354474806379,13.9301761728174,-0.52409193552238,0.611348649342476,0.823026268848466,-6.6430320318377 +"Q8IN49",-0.0336247467554678,17.0833028997499,-0.523220591745899,0.611933537703507,0.823149307168911,-6.6435135433042 +"O18413",-0.0221115587317229,19.5114327498004,-0.517674948881727,0.615662711704141,0.827311535096705,-6.64656031166778 +"D0UGE6",-0.064404819205242,15.1940970284651,-0.517144907776339,0.616019740161935,0.827311535096705,-6.64684990376298 +"P25007",0.0270482069557616,23.809963320718,0.51592513769432,0.6168417582031,0.827749036752028,-6.64751526565935 +"Q8I937",0.0990639268070979,13.9565745248004,0.514709372088373,0.617661628410624,0.828182955135788,-6.64817695969089 +"Q9VKU3",0.0358388518451029,15.6182743980102,0.513163477532246,0.61870491897623,0.828915505905504,-6.64901619032616 +"Q8IP97",0.0339339830099092,19.9361585674327,0.512320309761868,0.619274328043202,0.829012503351574,-6.64947291674751 +"Q6IGN6",-0.070785838366314,16.7544504947131,-0.508711923210195,0.621714118559209,0.831611186653377,-6.6514194459675 +"Q8ING0",-0.0423884545882203,14.6279531894099,-0.506327816318325,0.62332875338575,0.833102853082877,-6.65269837015048 +"Q9VTJ4",0.0260548173948632,15.5700687229629,0.504570466487241,0.624520254727634,0.834027049548193,-6.6536374217662 +"Q9I7C6",-0.122250807180514,15.5324145521747,-0.501426998126821,0.626654380301572,0.835240341937041,-6.65530940939786 +"Q9VNI4",0.0428504134845795,16.4378683361288,0.500109293516463,0.627550054041261,0.835240341937041,-6.65600732932541 +"Q960M4",-0.0298099849781295,23.1310416328802,-0.499888995662081,0.627699857244202,0.835240341937041,-6.65612383916061 +"R9PY51",0.0301848128873807,21.4184165736271,0.497244670136821,0.629499384458486,0.835240341937041,-6.65751854027013 +"Q9W3V3",0.122982107999933,13.2079596076327,0.496974605242622,0.629683313089162,0.835240341937041,-6.65766058461918 +"Q8I0J3",0.0560435325118664,15.0509101079194,0.496200488042628,0.630210674861533,0.835240341937041,-6.65806733493304 +"Q9TVP3",-0.0423789776423042,22.8714239650332,-0.496149559782924,0.630245376987409,0.835240341937041,-6.65809407338381 +"Q95083",-0.0256823499189665,19.9380337188648,-0.495687970403807,0.630559943304083,0.835240341937041,-6.65833629867989 +"Q9VIK6",0.0317500044181429,16.5070205496729,0.495630732110981,0.630598955729474,0.835240341937041,-6.65836632028396 +"Q9W136",-0.037880274562113,18.1475102039402,-0.494692077611928,0.631238892202941,0.835240341937041,-6.6588581753125 +"Q9VJC7",0.038128180429144,18.5656080440269,0.494025616979988,0.631693451399238,0.835240341937041,-6.65920686140719 +"Q9W1L1",0.0635102680342143,15.019427046615,0.493805709602487,0.631843474350248,0.835240341937041,-6.65932181664333 +"Q9VRJ4",-0.0199348023501251,20.6832409731443,-0.49366652543829,0.631938436165794,0.835240341937041,-6.65939454910863 +"Q9VL18",0.0263018771545056,20.878107174647,0.491920910991188,0.633130018064999,0.83583325083975,-6.66030508270548 +"Q9VAN0",-0.0228630897688156,20.5052386509913,-0.491023807251537,0.633742821315578,0.83583325083975,-6.66077182669834 +"Q8MT58",-0.0250869288288449,21.670010949519,-0.490807934637282,0.633890325127269,0.83583325083975,-6.66088401937255 +"Q9Y0Y2",0.0228358406248823,19.4533040478433,0.489059637838974,0.635085537598472,0.83674776991647,-6.66179090547012 +"Q7KNM2",0.0283779080198165,19.6003321742329,0.488270137410777,0.635625634307132,0.836798388338039,-6.66219942774034 +"Q9V773",0.0390035816860088,15.5090020211246,0.479971684281434,0.641316063768158,0.843593882168716,-6.66645529170563 +"Q9VHD2",0.042808554222983,16.6274005406552,0.477784891933339,0.642819665728379,0.843593882168716,-6.66756518627818 +"Q9XYW6",0.0409042465626523,16.628034499732,0.476220964898748,0.64389603119468,0.843593882168716,-6.6683559773548 +"Q9VMQ7",0.0529892350714807,15.923568019717,0.476026101443182,0.644030205428114,0.843593882168716,-6.66845433530075 +"P05389",0.0206730811637392,20.557214523229,0.474893675780838,0.644810207320618,0.843593882168716,-6.66902516881523 +"P55828",-0.0265432568739357,19.964589512763,-0.474532382539176,0.645059156835476,0.843593882168716,-6.66920701602527 +"Q9VH19",-0.0404814657751587,13.9949357515113,-0.474325138034793,0.645201979584764,0.843593882168716,-6.66931126721082 +"Q9VQX3",0.0514704243627069,15.1613029291368,0.474278891162636,0.64523385271909,0.843593882168716,-6.66933452504928 +"Q9VAP3",0.055504109721376,16.5099675027921,0.473638235681297,0.645675466785324,0.843593882168716,-6.66965649148004 +"Q7KSM5",0.0214614984254844,18.942189973201,0.473392410036252,0.645844956552429,0.843593882168716,-6.66977992255667 +"Q7JZF5",0.0281145165283032,16.926345887847,0.472540946966179,0.646432179758829,0.843700215835466,-6.67020697521616 +"Q9VFB2",0.0348075795137603,16.5180519307174,0.470418529253255,0.647897038520307,0.844376713247615,-6.67126827443206 +"Q9VIN9",0.028062874622174,16.5325928028348,0.469705581361167,0.648389456737112,0.844376713247615,-6.67162375263907 +"Q9V3Z2",-0.0383024324063985,16.2358448370358,-0.469162346803895,0.648764776452701,0.844376713247615,-6.67189426471551 +"Q9VAM6",0.0207345707175044,21.9887978165628,0.468857575295765,0.648975387520049,0.844376713247615,-6.67204589916934 +"P38979",0.0206815554256004,22.1079366163806,0.467398032578298,0.649984446361492,0.844595378087606,-6.67277076458773 +"Q9W0Z5",0.037733612892966,16.8066921978833,0.466756396352891,0.650428277573921,0.844595378087606,-6.67308874103008 +"Q9VTB3",-0.0254300271135328,19.6615265647393,-0.466417860413618,0.650662506500344,0.844595378087606,-6.67325634107581 +"Q9VXE0",-0.0265599858523444,18.0819723242216,-0.464582751471874,0.651932887416896,0.845460049291096,-6.67416282667751 +"Q9VCB9",0.0346361305400116,16.9354910409389,0.463991589408191,0.652342376161655,0.845460049291096,-6.67445411274432 +"Q9VU84",-0.0292045663952614,18.4394117511284,-0.46269781250192,0.653238976415542,0.84596476138286,-6.67509036122686 +"A1ZBM2",0.0235937805904456,18.5976099190297,0.461572953320537,0.65401898411893,0.846317816532487,-6.67564215594736 +"Q9VUW4",-0.0370605083008222,14.5899577128377,-0.459574959163365,0.655405520525141,0.846856034390166,-6.6766190877043 +"O97418",-0.0239321826514605,20.9747162444288,-0.458797592290781,0.655945355680053,0.846856034390166,-6.67699808770017 +"Q9V4C8",-0.022139716720428,17.2372603338568,-0.458779342689245,0.65595803143411,0.846856034390166,-6.67700697777672 +"Q8MKN0",0.0308410246777946,16.6762196725178,0.456498604347472,0.657543077238349,0.847041057156686,-6.67811534145218 +"Q9VTM6",0.075217026990094,16.2651312087768,0.455465070531012,0.658261937892853,0.847041057156686,-6.6786158594503 +"Q9VQE0",0.0298444722692217,17.5516897164665,0.454678353090082,0.658809372806954,0.847041057156686,-6.67899611969557 +"Q9VDV2",-0.0670053766073817,14.5513657554932,-0.454582378793928,0.658876170651371,0.847041057156686,-6.67904246572764 +"Q9VSJ8",0.0490643928467591,15.7067287814493,0.454275394048938,0.659089852234349,0.847041057156686,-6.67919064573154 +"Q6IDF5",0.0370389418712662,19.560033426497,0.453624758381864,0.659542843437963,0.847041057156686,-6.67950438661161 +"Q9VYT1",0.0481898168527728,14.3020822419576,0.453462154945371,0.659656075087851,0.847041057156686,-6.67958272764315 +"Q9U6R9",0.0254612000349965,20.5370590310835,0.451647450237065,0.660920384384696,0.847660802573033,-6.68045520751538 +"Q9VDF4",0.0217092622567243,18.6677002537498,0.449789955323866,0.662215661020678,0.847660802573033,-6.68134477968837 +"Q9VKR4",0.0348405127882998,19.2647036448184,0.449174477243917,0.662645106127532,0.847660802573033,-6.68163876111953 +"Q9W483",-0.0469693529059647,15.6709905982202,-0.448182815396895,0.6633372993563,0.847660802573033,-6.68211161192781 +"Q9U5L1",0.0192254295544849,17.6721881933998,0.447906458910298,0.663530258917044,0.847660802573033,-6.68224320710924 +"Q9VSX2",0.0204195772955096,17.8888311676922,0.447728923726923,0.66365423234079,0.847660802573033,-6.68232770449427 +"Q9VE56",0.0210310003487066,17.4575515801111,0.447654931311533,0.663705904628771,0.847660802573033,-6.68236291147581 +"P92204",0.0553015455254524,15.8227872069847,0.446896079803765,0.664235951646494,0.847660802573033,-6.68272366443676 +"Q9I7K6",0.0313109967046934,16.1029995868677,0.446214160221865,0.664712427916983,0.847660802573033,-6.68304734252272 +"Q9W1V3",-0.0372184749828595,16.4365033847756,-0.44470093742686,0.665770316290638,0.84836125864995,-6.68376390722241 +"P49028",-0.0386795167657148,16.3969913274583,-0.443720010793925,0.666456488168255,0.848587345240191,-6.68422716018305 +"Q9VVS6",-0.0388488600550225,16.5104194602847,-0.439942652390905,0.66910180273437,0.851305726133432,-6.68600186493552 +"Q9VEY5",-0.0235488599083062,20.8134840304023,-0.438187790692975,0.670332360759581,0.852221324502272,-6.68682137815557 +"Q9VGP7",-0.0491145065321366,16.0718588277049,-0.435230865393408,0.672408144678828,0.854209280521162,-6.68819511520216 +"Q8SWS3",0.0349903194958507,16.3554737081065,0.433667821838835,0.673506577835163,0.854948073263597,-6.6889176586003 +"Q9VIU3",0.0904254630775601,12.5656175467603,0.431662554662721,0.67491696006179,0.854948073263597,-6.68984095898112 +"Q7K1Q7",-0.0235380860014978,16.5175844902038,-0.429915282910887,0.676146957608569,0.854948073263597,-6.69064210560788 +"O61722",0.0256664879385191,18.9064980962813,0.429026032506939,0.676773331091746,0.854948073263597,-6.69104863539209 +"A1ZA22",-0.0771648948217489,13.8073568413692,-0.428905953151913,0.676857932788273,0.854948073263597,-6.69110346867668 +"A1ZA83",-0.028646663865425,17.062276036172,-0.427530429193404,0.677827390631533,0.854948073263597,-6.6917305347379 +"B7YZT2",-0.029637888434717,18.3569559778157,-0.42645253537893,0.678587511041345,0.854948073263597,-6.69222056105392 +"Q9V998",0.0644012016236584,15.8741355797117,0.426123208499416,0.678819824404293,0.854948073263597,-6.69237003987529 +"P02572",0.0222882003928362,26.556977962849,0.424964716289141,0.67963732580064,0.854948073263597,-6.69289498479522 +"Q7K3W2",-0.0170814773266486,17.6533582755945,-0.424301991534881,0.680105179313103,0.854948073263597,-6.69319466365104 +"Q9W257",-0.0503275202833109,17.0744827763363,-0.423044333960716,0.680993418365741,0.854948073263597,-6.6937621252417 +"Q9W3H4",0.0226920281173442,19.4281365239318,0.422763736664319,0.681191663923932,0.854948073263597,-6.69388851033778 +"Q9VG76",0.0372747336987835,15.7631327896069,0.422304156365925,0.681516418046076,0.854948073263597,-6.69409533710357 +"Q7KS11",0.0803675183564714,15.6178476774918,0.422064360477869,0.681685892481178,0.854948073263597,-6.69420316718828 +"Q9VMU0",-0.0346051338817652,21.0714324369799,-0.421051085204495,0.682402223446745,0.854948073263597,-6.69465815832432 +"Q9VGP6",0.0192777746120036,18.0186195385219,0.420850714236438,0.682543913987605,0.854948073263597,-6.69474800587273 +"Q9VMH9",-0.0225226629701538,20.0959659142772,-0.420373281743059,0.682881578054719,0.854948073263597,-6.69496192303975 +"Q9VB22",0.0208177332235699,17.0819610732704,0.420009727861172,0.683138750533322,0.854948073263597,-6.69512465878657 +"Q9VG00",0.0463833266165423,15.2215285843071,0.419080416035746,0.683796324082135,0.854948073263597,-6.69554002375151 +"Q9VLM9",0.0243423203188691,18.4114755797272,0.418674180073853,0.684083860214714,0.854948073263597,-6.69572131572038 +"P29327",0.0224796293708209,19.6335002418433,0.418506297156783,0.684202704115366,0.854948073263597,-6.69579618766474 +"Q9VF28",0.0422760429732385,17.7657607152709,0.418169287504549,0.684441299607769,0.854948073263597,-6.69594639870415 +"O77430",-0.0196341966374582,19.544879988338,-0.417082183666477,0.685211192639158,0.854948073263597,-6.69643014290354 +"Q9VDI5",-0.0374139713667443,16.7295901757316,-0.416954372832594,0.68530173375773,0.854948073263597,-6.69648693679516 +"Q9Y162",0.0224026115113674,20.1403473434866,0.416245955893183,0.685803670279792,0.854948073263597,-6.69680142323892 +"P08646",-0.036470097645438,18.9623835166013,-0.41423480339901,0.687229507338737,0.856085749246462,-6.69769141457657 +"P17704",0.0172161265993296,20.3319601554265,0.410105721244968,0.690160897723239,0.859095804031614,-6.69950558607161 +"Q9VMD3",0.022902363369445,17.8670258976151,0.407462209181219,0.692040445574424,0.860793037448277,-6.70065781996517 +"Q7JWF1",0.022215020657562,20.7102911435609,0.404570707575112,0.694098819806708,0.861822447080161,-6.70190988727018 +"Q9VM12",-0.0200274667768099,19.0267102408236,-0.403745713899274,0.694686586223848,0.861822447080161,-6.70226554005823 +"Q9W379",-0.0301277664228561,16.3070648726195,-0.403484591095082,0.694872667151823,0.861822447080161,-6.7023779630063 +"Q9V3I0",0.0621783769354014,16.4276325077449,0.402984137788138,0.695229358600802,0.861822447080161,-6.70259322966401 +"Q8SY33",0.0256730305278907,17.3717100424671,0.402672593232669,0.695451447104255,0.861822447080161,-6.70272710780969 +"Q05856",0.0417658593571808,13.7215679193263,0.401224957160444,0.696483807536675,0.862461017795972,-6.70334787596996 +"Q8IPP8",0.027979474841743,19.0497078680264,0.397837787959396,0.69890184660476,0.863080779571947,-6.70479188123203 +"Q9W2D9",0.0409306495178559,17.717600670283,0.397716786358061,0.698988292808201,0.863080779571947,-6.70484324669955 +"Q9V3Y2",0.0254418439976547,17.8518525801676,0.39752391910134,0.699126090710216,0.863080779571947,-6.70492508800051 +"A1ZB79",0.0213820087291303,20.7261478380143,0.397095661318592,0.699432108944716,0.863080779571947,-6.70510667734691 +"Q8SYD0",0.0238048529393815,15.4480435017398,0.396900656625807,0.699571471211794,0.863080779571947,-6.70518930013398 +"Q9V3L6",-0.031276898055598,15.9384370151374,-0.3925205996927,0.70270479083894,0.865883763858455,-6.70703474519882 +"Q7JZW2",0.0160882504589814,20.5348412500215,0.391900548415423,0.703148823296843,0.865883763858455,-6.70729438586565 +"Q9VMR0",-0.0233473433369937,17.360017974523,-0.391548786904389,0.703400779393409,0.865883763858455,-6.70744150567013 +"Q9W3G8",0.0327389199836077,15.7676399244373,0.386072166667849,0.707328339584949,0.870076453117768,-6.70971549407328 +"Q7KMM4",-0.0878343690627368,14.4713693567432,-0.384424217756937,0.708511931708899,0.870890126816835,-6.71039366439968 +"Q8IM93",-0.0221319414246821,18.9368108471897,-0.383362706473123,0.709274761684673,0.871185789757021,-6.71082900964332 +"Q94529",-0.0165717070365083,19.605580739711,-0.379722173645426,0.711893491621069,0.873758899208199,-6.71231317468565 +"Q9VFZ4",-0.0284620787267826,16.8144662265997,-0.37897032428197,0.712434805912215,0.873780335486452,-6.71261797245456 +"M9NDE3",-0.0175251004721382,16.229831683125,-0.377441973749728,0.713535697590149,0.874487541205267,-6.71323575153994 +"Q9VQL1",0.0164185565506187,20.0892088596211,0.376234519354211,0.714405929751759,0.874911226744445,-6.71372210389779 +"Q9VKC7",0.0425349873747738,13.8749796153627,0.374304296015282,0.715797961974574,0.875574494184007,-6.71449643356968 +"A1Z934",0.0163057261055179,19.2821438062826,0.373533165403011,0.716354388233554,0.875574494184007,-6.7148046978195 +"Q8SXG7",0.0383601566779799,14.0095970708759,0.373300519769848,0.71652229290238,0.875574494184007,-6.71489757791864 +"Q7JWD3",-0.026684778020245,17.008270095552,-0.372453369681158,0.717133830204342,0.875680255330046,-6.71523531347619 +"Q9VC31",-0.0244067323727375,17.6608193036836,-0.370617051131086,0.718460141371241,0.876049607008954,-6.71596484003318 +"Q7KMP8",0.0191144223938231,19.2536490678098,0.370580254912355,0.718486728050509,0.876049607008954,-6.71597942245196 +"Q9W1R3",0.0182274651100585,16.8525855297555,0.36565019925008,0.722052419742469,0.87975415349192,-6.71792046694007 +"Q9W1X5",0.014867792002363,19.4663533646035,0.364200116778837,0.723102530498333,0.88011562669502,-6.71848657006973 +"Q9VXP3",0.0201602207405305,14.8485889648177,0.363783435682297,0.723404391006518,0.88011562669502,-6.71864883446163 +"Q9V3Q4",0.0320208759260829,15.9764271705424,0.362616699097747,0.72424988544175,0.88050204731548,-6.71910222342368 +"Q9VHT3",0.0210866473105007,15.5811301786703,0.359008902435543,0.726866781695982,0.883039906678003,-6.72049521734618 +"Q9Y128",0.0279977678114935,14.3293294638082,0.357449300065687,0.727999170944274,0.883771919312263,-6.72109318642656 +"Q9VIK0",0.0648056103800574,12.817864295621,0.354974759626903,0.729797278031078,0.885310443458791,-6.72203674330406 +"Q9VH07",0.0178168280760183,18.2284395607693,0.354208260880524,0.730354596843929,0.885342636290461,-6.72232771688341 +"Q9VNI8",0.0210291800748834,15.723442663841,0.352292421000684,0.731748314885624,0.885941053277598,-6.7230523125617 +"A1Z729",0.0233079060300607,16.7060409192578,0.352069521157201,0.73191053442238,0.885941053277598,-6.72313636717872 +"Q9VY92",0.0281246795899079,21.3208742482921,0.349856310672154,0.733521987666242,0.887247770433134,-6.72396814262022 +"Q9VE94",-0.041610680171404,14.6593423414149,-0.347295618631184,0.73538813337211,0.888860439467159,-6.72492412005424 +"Q9VQ62",0.0522984440904644,19.6136166464376,0.346353225107876,0.736075371860333,0.889046864781344,-6.72527421550803 +"Q9VIV6",-0.0534139505386584,15.0868467436289,-0.344701207669234,0.737280689021268,0.889858313522052,-6.72588569152303 +"Q7K3N4",-0.0206513811690776,17.2176635144804,-0.340117151146526,0.740629122881881,0.893253345601575,-6.7275674692544 +"Q8IN44",-0.0257800494431812,19.7126525971093,-0.337158525006482,0.742793272633284,0.895216169618726,-6.72864123066032 +"Q8IMT3",-0.0285504414439703,14.7750188796009,-0.329598023056076,0.748334170940914,0.901242886014039,-6.73134344301638 +"Q9VKY3",-0.0186185326518782,18.8054627127598,-0.326679321241694,0.750477246043954,0.9031717506503,-6.73237057485897 +"Q9VL68",0.0153018626701567,20.7964896128827,0.325003567781214,0.751708683098165,0.904001502096423,-6.7329562533591 +"Q9W1X4",-0.0327731120682326,15.2073833647095,-0.323892331232796,0.752525683717713,0.904191703375364,-6.73334300560448 +"Q9VCK0",0.0169925984353796,18.353812554884,0.323314006361219,0.752951004789197,0.904191703375364,-6.73354377114141 +"P0DKM0",-0.0153017547330876,17.0158953316412,-0.318020695569205,0.756847895216608,0.908195802941365,-6.7353650088455 +"Q9VSC3",-0.0269144845037701,17.6735075592852,-0.316917252084674,0.757661143150214,0.908195802941365,-6.7357409525139 +"Q8IQC6",0.0568643929291266,15.8518755269733,0.316567742288381,0.757918799576966,0.908195802941365,-6.73585976351308 +"Q9VEA1",-0.0203150627792219,18.2648548764484,-0.313923874482338,0.759868843930065,0.909295655432318,-6.73675434538617 +"Q7KTA1",0.0440052468805945,17.0142131731696,0.313512027445268,0.760172769779511,0.909295655432318,-6.73689303604681 +"Q9W236",0.0253474010732688,16.4756856740097,0.313106483460647,0.760472085928107,0.909295655432318,-6.7370294296394 +"Q95RB1",-0.0167675248110655,15.9321070629607,-0.309341201154322,0.763253060026495,0.9117966661904,-6.73828750985245 +"P12080",-0.014941465729855,19.1597787385304,-0.308757739435402,0.763684311342312,0.9117966661904,-6.73848112338621 +"Q9VDC3",0.0184466067997384,19.2684772474961,0.308055210075563,0.764203680655983,0.9117966661904,-6.73871377183687 +"Q9VV72",0.0277411033168811,19.4436645765116,0.307027987580694,0.764963310658424,0.911834613721157,-6.73905300882966 +"O02195",-0.0178328501085367,18.8092280800503,-0.306533857161751,0.765328812475791,0.911834613721157,-6.73921579766223 +"Q9VN14",-0.013344206602202,19.4166963570261,-0.304268431386076,0.767005287848352,0.912872200047016,-6.7399588356033 +"Q9VKR0",0.128963796399802,13.3411734505163,0.303878115404065,0.767294259272133,0.912872200047016,-6.74008630898397 +"Q7K3Z3",0.0159187272914956,19.81421661926,0.301379380387192,0.769145085561173,0.914259478437991,-6.7408985641227 +"Q9VM58",0.0206796182078186,16.5192553030198,0.300089677271171,0.770100969704891,0.914259478437991,-6.74131522596349 +"Q9U6M0",0.0201770641277612,16.2612653784424,0.299746907167931,0.770355087039085,0.914259478437991,-6.74142566876644 +"B7Z0N0",0.0393507634461479,13.0719810271949,0.299345416502692,0.770652773791256,0.914259478437991,-6.74155487403389 +"Q9Y171",0.0414163485874148,15.2187411066438,0.298202428354047,0.771500459618061,0.91461461737237,-6.74192177177965 +"Q9W1W4",0.0160538245488553,17.2878649314956,0.296407548610926,0.772832248522017,0.915542748959321,-6.74249514230634 +"Q9W425",-0.0318612900473436,13.8604169784626,-0.294937018438242,0.773923947132601,0.916185339827664,-6.74296236456055 +"Q9VCA5",0.0315818674072634,14.2960667722661,0.293727596392221,0.774822189495882,0.916475347469988,-6.74334491471996 +"Q8SX68",0.0177751445857979,17.4906423067064,0.293127765772761,0.775267814916159,0.916475347469988,-6.74353407279839 +"Q500Y7",-0.0122421270721667,19.9775381708407,-0.290369187818525,0.77731830981895,0.918248541627485,-6.74439910192065 +"Q9VKJ4",-0.020636883011635,15.1333148433952,-0.289418055487477,0.778025717056031,0.918433755165931,-6.74469549114201 +"Q9VZG1",-0.0155497807609386,17.6612867866867,-0.284919404903422,0.781374462908067,0.920513390096417,-6.74608438436206 +"Q9VN91",-0.0252663171375076,19.677938238275,-0.284285087907142,0.781847019220558,0.920513390096417,-6.74627849830161 +"Q966T5",0.0189988587846432,16.528213566233,0.283766133216576,0.782233701432446,0.920513390096417,-6.74643699234316 +"Q9W0X2",0.0182451844104285,15.9511940052377,0.283759043034313,0.782238984880831,0.920513390096417,-6.74643915578331 +"Q9W2K2",0.0293198313626455,15.6139665544978,0.283346054442464,0.782546754890119,0.920513390096417,-6.74656507993259 +"Q9VZW1",0.0315346319301923,14.7732395984408,0.281935551658101,0.783598194241544,0.920789228893635,-6.74699379441547 +"O44386",0.013418969398014,16.9158994579382,0.280113489463387,0.784957098617212,0.920789228893635,-6.74754448226417 +"Q9V8Y2",0.025549093546104,19.9563796370134,0.279856514218286,0.785148813119941,0.920789228893635,-6.74762186587235 +"Q9VYV3",0.0120475283466526,20.5445163171893,0.279293841022614,0.785568643765917,0.920789228893635,-6.74779106086532 +"Q9VJ25",0.0260340767291876,15.7568464179738,0.278943506462976,0.785830077253688,0.920789228893635,-6.7478962365614 +"Q9VEW1",0.0527890362787868,14.5816030376232,0.278590621062791,0.786093442412791,0.920789228893635,-6.74800204663485 +"Q9VK60",0.0145034532133224,21.2792638885535,0.276929154962614,0.787333804965426,0.921493291533842,-6.74849845225815 +"Q9W229",0.018267671790376,19.2113110961726,0.275857184447114,0.788134411592045,0.921493291533842,-6.74881717867605 +"Q9VJ43",0.0180818881097053,20.3188453825099,0.27556607235652,0.788351874711507,0.921493291533842,-6.74890352408695 +"Q9VMC8",0.0226069256285761,16.3483688438516,0.274581813789768,0.789087264585977,0.921706972919755,-6.74919479527273 +"Q9W392",-0.0126745227899363,20.0699492926718,-0.273393771278268,0.789975200249947,0.922098414287552,-6.74954500437531 +"Q9VLP2",0.0268645530566864,19.2823088497608,0.270535947678576,0.792112404928392,0.92233732755351,-6.75038129911959 +"Q9VCY3",0.0220880850927543,17.874567310294,0.270495381524787,0.792142755068044,0.92233732755351,-6.75039310778854 +"Q94522",-0.0125577053199706,23.4148016262002,-0.270482038114394,0.792152738207897,0.92233732755351,-6.75039699162829 +"M9PHA0",0.0206390479405663,17.3653166177832,0.270162630868298,0.792391720853824,0.92233732755351,-6.75048990449037 +"Q9VMS1",0.016267649314937,22.350205002877,0.26751040340849,0.794377001052256,0.924003373608901,-6.75125723451303 +"Q7K3W4",-0.0191052848580249,19.2958451876802,-0.262674665824282,0.798000653852919,0.926787133733104,-6.75263707313492 +"Q8IH18",0.0185264453238769,15.6717515478553,0.261210821872223,0.799098577066961,0.926787133733104,-6.7530498735458 +"P08736",0.0146949328587027,24.3612936314729,0.260797305534394,0.799408808716134,0.926787133733104,-6.75316607186002 +"Q9VQB4",-0.0116030238956206,21.7481682491538,-0.260258381811796,0.799813179272684,0.926787133733104,-6.75331723708829 +"Q9VD58",-0.0103311562412891,22.7109438305639,-0.260145064942965,0.799898212174498,0.926787133733104,-6.75334898260687 +"Q9VUZ0",0.0199488367837652,17.630897588258,0.2595355484284,0.800355639814186,0.926787133733104,-6.75351950353489 +"Q24298",-0.0134037240496525,19.3886718715081,-0.259130546024818,0.800659628123144,0.926787133733104,-6.7536325904532 +"A1Z847",-0.0164136275177498,19.9786608541206,-0.257496220818981,0.801886679325807,0.927047697121111,-6.75408716460867 +"Q9VMQ9",-0.0155970886099901,22.1300984585,-0.256844112880721,0.802376439278275,0.927047697121111,-6.75426775080276 +"Q9VSL4",0.0148919745190454,20.8577609909934,0.256198003130226,0.802861782572666,0.927047697121111,-6.75444623015801 +"B7Z0C9",0.0210358020932393,15.8855518722182,0.255227278124484,0.803591134280057,0.927047697121111,-6.75471354601037 +"Q9VEC2",0.0125360121690115,16.6757657850179,0.255130776772495,0.803663651101395,0.927047697121111,-6.75474006556923 +"Q9V3G3",-0.0359403269166183,14.8796867900004,-0.252385693421378,0.80572728190558,0.928785837054946,-6.75549029537972 +"Q8IMX8",-0.0131687102659903,17.1481015927141,-0.247719303091209,0.809238836797697,0.931682461933582,-6.7567472230001 +"Q9VRU1",0.0240734730524323,17.312260216198,0.247562055301007,0.80935724660777,0.931682461933582,-6.75678917531316 +"Q9VUK8",-0.0115742914687154,20.7548120930839,-0.242075034583324,0.813492179275679,0.935516397098744,-6.75823657735366 +"Q9W147",-0.0198872597373363,13.7399278713848,-0.241654246615299,0.813809527692013,0.935516397098744,-6.75834625182201 +"Q7KUK9",-0.0183392717894471,18.4256087143572,-0.239515700540593,0.815422912084691,0.936397508266373,-6.75890072841454 +"Q95U34",0.0132884603678747,19.4765059803081,0.23915014520121,0.815698788675684,0.936397508266373,-6.75899502095536 +"O17452",0.0249763448329716,19.8849583404631,0.237349575310767,0.817058022682535,0.936929542776576,-6.75945738751102 +"A1ZBK7",0.019784394806905,17.5313270461567,0.237048104593252,0.8172856623141,0.936929542776576,-6.75953446415596 +"Q9VNR6",-0.0192859431059222,14.6137445719229,-0.2344146720494,0.819274912029728,0.938564940429661,-6.76020363071332 +"Q9VDC0",0.0193410278459361,17.5461701340865,0.233041991420699,0.820312343945263,0.938902642808919,-6.76054950288388 +"Q95SS8",0.0143081062166921,15.6713153471792,0.232535171214995,0.820695475548803,0.938902642808919,-6.76067669759599 +"Q9W3X8",0.0384495407716763,13.9198286892003,0.22924255417879,0.82318573104441,0.941106099645014,-6.76149636017815 +"P91941",-0.0161905395400836,23.055285000533,-0.227942759534888,0.824169351937657,0.941585259610967,-6.76181674579073 +"Q9VI10",0.0192988407397578,17.2414335704277,0.221954168937185,0.828705308740179,0.946119407925132,-6.76326957232053 +"Q9Y0Y5",0.0105038960288724,18.6644350567048,0.220588156164476,0.829740901076928,0.946445512351445,-6.7635956011665 +"Q9VHC3",0.015273164449173,17.3692189901421,0.220080603901387,0.830125770125998,0.946445512351445,-6.76371623167207 +"A1ZB23",-0.0319855326286103,15.7855523655506,-0.218308646948603,0.83146978525099,0.947330329097439,-6.76413521671342 +"Q9VII5",-0.0200804581016385,17.3611303308395,-0.217254921854569,0.83226929690118,0.947593984458135,-6.76438278253241 +"Q8MRT7",0.0158120660518772,15.4248250098311,0.213997022609056,0.834742481864284,0.947707252899788,-6.76514069715672 +"Q9VLT8",-0.0202582975088301,13.9197468489709,-0.213914624021849,0.834805058055538,0.947707252899788,-6.76515971915628 +"Q9VRG6",-0.00973004496308683,16.3311042380769,-0.213711577378656,0.834959263482752,0.947707252899788,-6.76520656219074 +"Q9VU75",-0.011125216239865,18.2777809781059,-0.213460460023349,0.835149986715784,0.947707252899788,-6.76526443420321 +"P48148",0.0141966601919243,20.7365828351859,0.213381934059426,0.835209629354129,0.947707252899788,-6.76528251730249 +"P23128",-0.0334400182587178,14.729296228243,-0.21109616658714,0.83694620981859,0.948590293769395,-6.76580599814911 +"Q9W414",0.0087583057204732,19.6250973145801,0.207546347298383,0.839644948512453,0.948590293769395,-6.76660788933946 +"Q9V406",-0.0165656486746748,16.9432838697905,-0.206485998434585,0.840451498566631,0.948590293769395,-6.76684480293951 +"Q7JXC4",-0.00903670269649481,21.5529402881018,-0.20603622067653,0.840793678548577,0.948590293769395,-6.7669449332572 +"Q9VMH8",0.0102001228313604,18.9810978015728,0.205457686548865,0.841233864197494,0.948590293769395,-6.76707340916808 +"P20351",0.0242061510576654,13.9892385283227,0.20445822711433,0.841994451311992,0.948590293769395,-6.76729451647117 +"Q9V8F5",-0.0174018499979365,15.8920122813895,-0.202372047752111,0.843582577156412,0.948590293769395,-6.76775258969079 +"Q95NU8",-0.014594254396691,17.2973408594938,-0.202200516640948,0.84371318972074,0.948590293769395,-6.76779004633946 +"Q9W3C4",0.0407509055043906,14.7966942249405,0.200741695913278,0.844824210207393,0.948590293769395,-6.76810733043864 +"Q9VC48",-0.0121239079432911,18.4905674628739,-0.200370689709225,0.845106820948046,0.948590293769395,-6.76818765836997 +"Q9VAV2",0.0107663715169082,17.7537188632418,0.200280928547305,0.845175199182527,0.948590293769395,-6.76820707074395 +"Q9VAY9",-0.0142747149138138,14.7805226970439,-0.199164332384501,0.846025911667881,0.948590293769395,-6.76844783220735 +"Q9VES8",0.0122535440221956,17.9690345860798,0.198827880943608,0.846282287956906,0.948590293769395,-6.76852011633046 +"Q24238",-0.015329442479814,16.4780977880236,-0.198358717567116,0.846639822152444,0.948590293769395,-6.76862071019082 +"Q9VVH3",-0.0108063609812596,19.8476120633594,-0.198329147535067,0.846662357734518,0.948590293769395,-6.76862704243602 +"Q9VWH4",0.00773387504235856,24.2940915450703,0.197648947098182,0.847180784331342,0.948590293769395,-6.76877244467075 +"Q9VKX2",-0.00770220016660161,23.0809133777286,-0.196505315770342,0.848052594491173,0.948590293769395,-6.76901579428214 +"Q9VQ91",-0.0142083210321875,14.8408652739704,-0.196020550240019,0.848422204453182,0.948590293769395,-6.76911852305071 +"Q9U9P7",-0.0190902659130057,16.5319952329337,-0.193246515227788,0.850538006138373,0.948590293769395,-6.76970153678475 +"Q9VTT2",-0.033634394232374,13.9681362145376,-0.192914692421403,0.850791176205903,0.948590293769395,-6.76977072304435 +"Q9VN21",0.00830765687842927,22.0687965434936,0.192667118824594,0.850980078397385,0.948590293769395,-6.76982226615387 +"Q9VVN2",-0.0188056420335307,15.0315609789699,-0.192277485343499,0.851277394261896,0.948590293769395,-6.76990325206929 +"Q0E9B6",0.0113119947604794,19.2550303467842,0.19217866377864,0.851352805462336,0.948590293769395,-6.76992376640897 +"Q9VTC1",-0.0099788567290986,15.7881340359034,-0.191927870404687,0.85154419409328,0.948590293769395,-6.76997578153145 +"Q9VZ67",-0.0142656293818071,15.2050090621346,-0.191666334312038,0.851743791575109,0.948590293769395,-6.7700299528915 +"Q9W1N3",0.012250940069098,20.4320726060021,0.191541696818358,0.851838915489669,0.948590293769395,-6.77005574296278 +"O18335",-0.00908036516737099,21.6235143071135,-0.190861102229854,0.852358392208716,0.948590293769395,-6.77019627824298 +"Q9W253",-0.0123707014160903,15.3641987918036,-0.190761253235091,0.852434610060152,0.948590293769395,-6.770216854183 +"Q9VXC1",0.0127284044497991,18.2771677601751,0.190313233086347,0.852776617343259,0.948590293769395,-6.77030904635745 +"Q9VLR3",-0.0175554484889702,16.7214193241174,-0.189956677955478,0.85304882533219,0.948590293769395,-6.77038226334121 +"P53501",0.00851842489300481,24.6115825334658,0.188969885187136,0.853802286141351,0.948795611781328,-6.77058418600595 +"P08182",0.00909772949354704,19.6021753332152,0.187979806737914,0.854558410159598,0.949003613945546,-6.77078573146339 +"Q9VZZ5",0.0108858870802493,18.4122626036663,0.186938278639353,0.855353992451695,0.94925512934759,-6.77099661549899 +"Q9VXN4",0.0111508405308811,15.0786181379561,0.184529557893672,0.857194566898717,0.950665251055226,-6.77147986502808 +"Q7KUT2",0.00886142650658783,18.3045346924369,0.183540617816046,0.857950504952618,0.950787713213057,-6.77167646853436 +"Q9VPR1",0.0244255702526193,13.6339210412077,0.181385271772919,0.859598553619348,0.950787713213057,-6.77210131979228 +"Q9VJ86",-0.0130271393552857,16.6273467903558,-0.18069029261254,0.860130108300672,0.950787713213057,-6.77223724762718 +"P08120",-0.0132646855059662,18.2265084526721,-0.180686892165248,0.860132709311904,0.950787713213057,-6.77223791143075 +"Q7KTH8",0.00792828790853761,17.630747254987,0.180657656940178,0.860155071485913,0.950787713213057,-6.77224361794628 +"Q9VJ80",-0.010324695122133,16.5464950419322,-0.177856502099832,0.862298285572834,0.951891118758753,-6.77278612846091 +"Q7K3E2",0.0159902206991411,20.4202628986843,0.177583898331613,0.862506922309822,0.951891118758753,-6.77283847487035 +"Q86BI3",-0.0084878865290321,18.052515012112,-0.177115637359713,0.862865330673402,0.951891118758753,-6.77292820585918 +"Q9V428",0.0119209458128218,18.7164265012032,0.176248980194563,0.863528758429368,0.951993370165358,-6.77309365874835 +"O97422",-0.0275863409748993,15.4145132642752,-0.173644013343194,0.865523531107548,0.953306415380641,-6.77358611473796 +"Q8I941",0.0129304749197381,18.9847311079186,0.173201038123061,0.865862841307956,0.953306415380641,-6.77366913185884 +"Q9W197",0.0107409002242065,17.3607960494033,0.172410419928477,0.866468509858379,0.953343980503811,-6.77381677619443 +"Q9W5R5",-0.00892441448534242,15.8319717558579,-0.171450251917819,0.867204186819813,0.953524445362853,-6.7739951801526 +"Q9VDI3",0.0151468275203719,15.0361899110077,0.170357123838204,0.868041898570269,0.953785225887306,-6.77419708291636 +"Q9VJN0",-0.0184234802832819,17.4621977585269,-0.169099582693521,0.869005818353374,0.953785225887306,-6.77442776479804 +"Q9VLP3",-0.0147938792697069,17.4457090950326,-0.168902636073424,0.869156800568768,0.953785225887306,-6.77446373853178 +"Q7JXZ2",-0.0194135551872208,17.7276514567356,-0.167450750525678,0.870270006895633,0.953920839087683,-6.77472764952286 +"Q9W380",-0.0162754803648291,18.4382518433882,-0.167249714538272,0.870424170918138,0.953920839087683,-6.77476401349255 +"Q9VZ20",-0.00745536611538,18.7150936851554,-0.165259085583037,0.871950985691258,0.954966673757727,-6.7751217392464 +"Q9VDK7",-0.00863750806759356,17.8667423316844,-0.163426835621907,0.873356809721019,0.955878713001745,-6.77544723819187 +"Q9W3M7",0.0092003337171267,16.1543326998936,0.161769890158389,0.874628525449784,0.956164776941626,-6.77573848590796 +"Q9W2E8",0.0118485238048862,19.2862223783814,0.16159254900182,0.87476465804132,0.956164776941626,-6.77576948293202 +"Q9XYZ9",0.0111780867082025,21.9793019024173,0.157465871717928,0.877933620371975,0.959000182567422,-6.77648122228454 +"Q9VAY6",0.0086453949615688,15.1867101197993,0.156106002379125,0.878978389501018,0.959513058696138,-6.77671174928666 +"Q9VR89",0.0174797722684126,13.9181454063698,0.154663365173703,0.880087013489135,0.959544488346864,-6.77695413194871 +"P45889",0.0104387130855947,19.1982284135744,0.154390533662233,0.880296706961438,0.959544488346864,-6.7769997195101 +"Q9W2E7",-0.00796229177996821,18.6533388092769,-0.153519682602084,0.880966092299598,0.959544488346864,-6.77714469451231 +"Q8I725",0.0108201613097592,18.9706893698245,0.153074598340928,0.881308247090765,0.959544488346864,-6.77721847475458 +"Q9VI04",-0.0192408526129366,16.4353418058012,-0.150215994558984,0.883506380107566,0.960024089867179,-6.77768725375389 +"Q9VSA3",-0.00719339036887945,21.7970402529199,-0.149853286013508,0.883785360376185,0.960024089867179,-6.77774610496865 +"Q9V405",0.00808412497762845,20.2399619753349,0.148899485591512,0.884519062982488,0.960024089867179,-6.77790018770402 +"Q9VQQ0",-0.0138617231677181,18.2072905395597,-0.148529375296833,0.884803797851337,0.960024089867179,-6.77795971377883 +"Q9VGT8",-0.0138753756535408,15.367817816338,-0.147852229407823,0.885324787026233,0.960024089867179,-6.77806823960708 +"Q9VED8",-0.011149499611868,16.5522962037041,-0.146198096525118,0.886597699779457,0.960024089867179,-6.77833127026403 +"Q7KN94",0.00809583790077539,22.5787861230576,0.145246580325305,0.887330077571835,0.960024089867179,-6.77848123976765 +"Q59E04",0.0133080230256493,16.4210696961311,0.144954429703758,0.887554966885538,0.960024089867179,-6.77852709027198 +"Q9VUQ7",-0.0111315300945289,16.5336832851394,-0.144759307896562,0.887705171963842,0.960024089867179,-6.77855766174067 +"P08985",0.00760743578294409,20.6030895963145,0.14389800649013,0.888368258603489,0.960024089867179,-6.77869211943295 +"Q9VX36",-0.00649602322101117,22.159496396198,-0.143656419766976,0.88855426418769,0.960024089867179,-6.77872969000886 +"O44434",0.0112159830111835,15.8255410402332,0.14352507666701,0.888655392538924,0.960024089867179,-6.77875008956608 +"P02515",-0.0210061186333519,18.0330911509467,-0.142483731659558,0.889457255677881,0.96010401786544,-6.77891116831501 +"Q9W1Y1",-0.00920656003944487,17.844955273838,-0.141555883031832,0.890171833430406,0.96010401786544,-6.77905370683664 +"P13496",-0.0070457547220748,18.2456945227914,-0.141151848777064,0.890483030461894,0.96010401786544,-6.77911548573469 +"Q7JYZ9",-0.00826995710559686,18.1075390494458,-0.139522246443907,0.891738386673528,0.96010401786544,-6.77936287478775 +"Q9VAY0",-0.0152498460240444,13.980473758271,-0.138959913702598,0.892171649706799,0.96010401786544,-6.77944757809936 +"Q9VA97",0.00784426455827614,18.5066312923482,0.138306857358415,0.892674859497475,0.96010401786544,-6.77954551928111 +"Q9VLT7",0.00949488486716632,18.070779243066,0.138198196948978,0.892758592151857,0.96010401786544,-6.77956177086855 +"Q9VRP2",-0.00581784527309992,20.4738119736112,-0.134436710720955,0.895657998665789,0.962004002457348,-6.78011650500533 +"Q9W127",0.00930808669265915,18.5509963277589,0.134409749688794,0.895678786460588,0.962004002457348,-6.78012042609597 +"Q9VL70",-0.00694840764971616,23.5372322447068,-0.132521727106231,0.897134714945143,0.96280626835257,-6.78039306256808 +"Q9VHI1",-0.00796470580797859,14.2795955783442,-0.131944154065044,0.897580184225567,0.96280626835257,-6.78047569824571 +"Q9VA37",0.00733429692091647,21.6706975826309,0.130408869606522,0.898764495503145,0.963457055590775,-6.78069360858586 +"Q8SY67",0.020108175008609,15.9721912267247,0.126509900028597,0.901773303350681,0.966061573531751,-6.78123558281626 +"Q07093",-0.0157148063234818,14.5745322220871,-0.123559206300225,0.904051417275558,0.967880464708363,-6.78163484148081 +"P92181",0.00859176545382923,16.489390952769,0.120355678119006,0.906525764686644,0.969906975944402,-6.78205767512087 +"Q9W0Q2",0.0045756166849138,15.4985920334083,0.118931542278403,0.907626078936013,0.970124369619815,-6.78224209070227 +"Q9V8M5",-0.00857977686539968,19.8552797547818,-0.117655077498323,0.908612473399403,0.970124369619815,-6.78240552359235 +"O77134",0.00766560413579143,21.6265995507676,0.117566524964056,0.9086809088504,0.970124369619815,-6.78241679623012 +"Q9VXA9",-0.00642965638944482,14.314973675899,-0.116811654749976,0.90926432168987,0.970124369619815,-6.7825125467302 +"Q9VXN2",0.0123974125696371,18.3156934476799,0.116226830505943,0.90971635071686,0.970124369619815,-6.78258630509906 +"Q9VQI6",-0.0164563944739538,16.1570276149871,-0.114853919741177,0.910777648602217,0.970124369619815,-6.78275800659215 +"Q24185",0.00629210180088791,18.6497903159718,0.114474693486351,0.91107083338088,0.970124369619815,-6.78280507540932 +"Q9VQJ8",0.0068400326350222,15.172800681794,0.114072451904894,0.911381826855066,0.970124369619815,-6.78285483115463 +"Q9V5C6",0.00570329664384062,20.6462743821618,0.108955703491786,0.915339192384583,0.973715416388702,-6.78347250699881 +"Q9VVK5",0.00726682595083794,15.8496795332106,0.108014197371548,0.916067633363392,0.973869223996264,-6.78358308234172 +"Q9VNB9",-0.00912409519090573,19.1989917581993,-0.103927762059405,0.919230230546274,0.976608932835149,-6.78405191746538 +"Q9W306",0.00982087032734391,14.6922891182241,0.101434571664722,0.921160501659016,0.977862281502253,-6.78432909900341 +"Q9VYV4",-0.0066315728888835,15.481700195651,-0.100889679963028,0.921582437962555,0.977862281502253,-6.78438878322314 +"Q9VUJ1",-0.00491435878505087,20.0852389065681,-0.0993347761991924,0.922786615392628,0.9784325841918,-6.7845573341115 +"Q8SZA8",-0.00614999852645326,17.9828920168121,-0.0986808553262214,0.92329309803231,0.9784325841918,-6.78462743838937 +"Q9VSY8",0.00744637917163615,17.9849461500567,0.0975654453830831,0.92415710129108,0.978726377748268,-6.78474595065294 +"Q9VU70",-0.0149503190809028,14.6287862601356,-0.0962833882508027,0.925150317751028,0.979156554574057,-6.78488050814385 +"Q9VTV9",-0.00660988469176971,17.2405138829459,-0.0941232374055449,0.926824101247703,0.980306024655148,-6.7851032067869 +"M9PDU4",-0.00709599673064787,22.4977903387755,-0.090579309023229,0.929570903222023,0.982588255116815,-6.78545763809218 +"Q9VF51",0.00552864817946741,17.7170595199812,0.0888917450242853,0.930879230122845,0.982938792493197,-6.78562164019575 +"Q7PLI0",0.00518411657935758,17.7870190783502,0.0879139135188445,0.931637417613861,0.982938792493197,-6.78571525943886 +"Q9VW90",0.0271640014294352,15.0324188038062,0.0871385022903534,0.932238704049864,0.982938792493197,-6.78578876356887 +"Q9VF77",0.00634582609074386,15.7182264813864,0.0857617425080401,0.933306410949601,0.982938792493197,-6.7859176696275 +"Q9VC53",0.00500239177268114,17.8293733527692,0.0855932664725758,0.933437077287379,0.982938792493197,-6.78593330327099 +"Q9VP78",0.00428277985801273,14.8805011437033,0.0855917186384793,0.933438277763324,0.982938792493197,-6.78593344675912 +"Q9VIM0",0.00346807849819797,18.1032697160817,0.0832244237434511,0.935274516965882,0.983224822393286,-6.78614986845009 +"Q2MGK7",0.00580187914142627,16.994237462901,0.0831386894955269,0.935341025947473,0.983224822393286,-6.78615759267119 +"Q9VHK6",-0.0079302486761712,18.0696073558766,-0.0827523771479809,0.935640717071063,0.983224822393286,-6.78619229883258 +"Q9VF27",0.00338927117921628,22.2033223148423,0.08189422010865,0.936306490623338,0.983224822393286,-6.78626881776805 +"Q9VIT0",0.00435090155811224,16.4394937013211,0.0801691801304332,0.937644962154954,0.983224822393286,-6.78642022356852 +"Q9VY24",0.00550424564220009,17.7791006589124,0.0798009943439829,0.937930666723044,0.983224822393286,-6.7864521221733 +"Q9VCU6",-0.00568319361603464,15.4529404229771,-0.0792073030420596,0.93839137828952,0.983224822393286,-6.78650324906694 +"O97477",-0.00338915788129412,21.0025223092311,-0.0791631920969658,0.938425609862177,0.983224822393286,-6.78650703254955 +"Q9W2J4",0.00582084809982319,15.2189810939095,0.0760631661827292,0.940831658112156,0.984516984129335,-6.78676765531688 +"Q9VWF0",0.00665116160292989,16.4035686000281,0.07605322852195,0.940839372123597,0.984516984129335,-6.78676847406834 +"Q7PL91",-0.00534370460765032,18.7613615831914,-0.0745883428230694,0.941976544745016,0.985088950868142,-6.78688799534701 +"Q9VFQ9",-0.00339949837709241,19.3116298425396,-0.0707170399452344,0.944982438251061,0.986542901122409,-6.78719268119348 +"Q9VN95",0.00453352812769126,17.962166751214,0.0705553665296544,0.945107990406135,0.986542901122409,-6.78720505268096 +"Q9VQD7",-0.00359617778331867,20.9103850997388,-0.0705125763474556,0.94514122061967,0.986542901122409,-6.78720832231429 +"Q7K738",0.00315734753985808,19.7244318356318,0.0687841042297262,0.946483617356882,0.9873262500008,-6.78733873955683 +"Q9V3R3",-0.00362469985843106,13.5826292973286,-0.0673355415534361,0.947608760881806,0.987476407910254,-6.78744554646636 +"Q8SY69",0.00723139369059922,18.906636493129,0.0670744287532972,0.947811588168055,0.987476407910254,-6.7874645575061 +"Q9VL89",-0.00260389682561524,16.8908878637043,-0.0648942082770127,0.949505291209873,0.98758021979416,-6.78762041377741 +"Q9W289",-0.00553692321730281,17.4197714299845,-0.0642372006997256,0.950015739124658,0.98758021979416,-6.78766637201693 +"M9PF61",0.00282017093552511,22.6394808053267,0.0640523598039635,0.950159351555714,0.98758021979416,-6.78767921757045 +"Q9VJ60",-0.00332665373790242,16.5032997882592,-0.0638976847266869,0.950279528039345,0.98758021979416,-6.78768993832014 +"Q9VY05",-0.0049168998918887,18.4033828440513,-0.0629922496455078,0.950983041710566,0.987695961129031,-6.78775217576404 +"M9NEW0",-0.00256653357297765,18.2718642087803,-0.0610890407488131,0.952461958051752,0.98850339285987,-6.78788010433167 +"Q9VN71",0.00499660504835475,18.6240987649115,0.0604665473901462,0.952945716857717,0.98850339285987,-6.78792109557648 +"A0A0B4LFA6",0.0027090510960619,19.5719811254424,0.0554017026533548,0.95688248846242,0.991389428267138,-6.78823902171229 +"Q9VXE5",-0.00397440325525622,14.6400522820919,-0.0528598696298946,0.958858652639578,0.991389428267138,-6.78838810723084 +"Q9VHX2",0.00364316444083634,14.7550962650342,0.0520247058440553,0.959508020283029,0.991389428267138,-6.7884355647643 +"Q9VPQ2",-0.00394677581757819,16.463441226241,-0.0518679655048207,0.959629894579255,0.991389428267138,-6.78844438722646 +"Q9VAS1",-0.0063605346960447,13.0819646297165,-0.0515140494467751,0.959905087912764,0.991389428267138,-6.78846421027763 +"Q9W3T7",0.00214808987475479,17.418682567947,0.0509164743731266,0.9603697548523,0.991389428267138,-6.78849737292584 +"Q9U1L2",-0.00964289772836935,17.4912647622519,-0.0506470977892486,0.960579223814473,0.991389428267138,-6.78851219561639 +"Q9VEV7",-0.0151300881284211,13.1889267144796,-0.0495978806704586,0.961395131525027,0.991389428267138,-6.78856918055277 +"Q9VVC8",0.00239640960544563,16.5945931575942,0.0487624929133875,0.962044791450484,0.991389428267138,-6.78861369944633 +"B7YZN4",0.00905714129124569,15.3649181548769,0.0485720270884105,0.96219291598709,0.991389428267138,-6.78862374380465 +"Q9VIH1",0.00320639315766336,15.7866946057748,0.0484782097572085,0.962265877916365,0.991389428267138,-6.78862867688865 +"O76877",0.00348043718429203,17.3183497772682,0.0470345258188216,0.96338867933677,0.991428446012038,-6.78870338631361 +"Q9VYU9",-0.00249147452341703,17.8246472828938,-0.0457717633485251,0.964370840739671,0.991428446012038,-6.78876688233643 +"Q9XZ19",0.00321953224044691,16.0466275937522,0.0432845138796291,0.966305573903921,0.991428446012038,-6.78888689818187 +"Q9VRL0",0.00246302400904952,22.7050911228593,0.0428538101333323,0.966640624927215,0.991428446012038,-6.78890699999875 +"Q9W4Y1",0.00417358682830304,17.5029135405679,0.0420667598696122,0.967252900830762,0.991428446012038,-6.78894321411085 +"Q9VHR8",-0.0020630571827347,20.594638209893,-0.0420419869049231,0.967272173011902,0.991428446012038,-6.78894434308265 +"Q9VWU1",0.00385658894919771,14.9259172702175,0.0419603381151822,0.96733569201927,0.991428446012038,-6.78894805933502 +"Q9VTB4",0.00307846507037013,20.5971791436348,0.0411970063969555,0.967929540516751,0.991428446012038,-6.78898245308804 +"Q9W503",-0.00228132641488088,17.986152322616,-0.0404186671049684,0.968535085540633,0.991428446012038,-6.78901687309008 +"Q9W141",-0.0020178216768052,21.8367570965712,-0.0399183722052846,0.968924324141198,0.991428446012038,-6.78903865081401 +"Q9GU68",-0.00235493611404181,22.2581460546082,-0.0382219820301263,0.970244209650521,0.991428446012038,-6.78911047577771 +"Q7K860",-0.00798772542779957,20.3979676877447,-0.0374981543673376,0.970807416487049,0.991428446012038,-6.78914017361814 +"Q9VD02",-0.00203243414023646,18.1446650613572,-0.0372437757088355,0.971005351302558,0.991428446012038,-6.78915047569695 +"P53997",-0.00468701594796705,17.267659187173,-0.0368621263232189,0.971302320717589,0.991428446012038,-6.7891658006187 +"Q8IQB7",-0.00264756038838421,14.4966091229629,-0.0364280386593274,0.971640099030017,0.991428446012038,-6.78918303935121 +"Q9VUV6",0.00256935937433056,14.7962018027641,0.0354845226976784,0.9723743008745,0.991428446012038,-6.78921980466965 +"Q7JVK8",-0.00208815065005297,19.1334669813305,-0.0352885515536725,0.972526800244611,0.991428446012038,-6.78922731996862 +"Q9VK59",-0.00185240633736328,18.7831522048601,-0.0333813280151063,0.974011008761497,0.991428446012038,-6.78929828706894 +"Q9VQR2",-0.00170396870454681,21.265093783237,-0.0328345973230824,0.974436496021169,0.991428446012038,-6.78931790389158 +"Q9Y156",0.00356979749174968,16.2565457072292,0.0327366687304162,0.974512708780525,0.991428446012038,-6.78932138339088 +"Q9VU35",0.0016971559625425,22.6493945584786,0.0323858150309532,0.974785762266033,0.991428446012038,-6.7893337642652 +"Q9W0K9",-0.00237782697302258,14.1760079728767,-0.0303264608788059,0.976388531425644,0.991972578784588,-6.78940374542842 +"A1Z7G2",-0.00201548808082208,19.5779713674101,-0.030170168369507,0.976510176477394,0.991972578784588,-6.78940886896529 +"Q9VTZ6",-0.00144503239525662,17.0675368642175,-0.0273171732796003,0.978730817191487,0.993623252023981,-6.78949774353106 +"Q7KTG2",-0.00162533063043924,18.1607224411744,-0.0255097823137405,0.980137707068735,0.993807394129961,-6.78954948246682 +"Q9VZS1",-0.00249204998775809,15.4595455384721,-0.0254663337379298,0.980171528739172,0.993807394129961,-6.78955068266837 +"Q9W396",-0.00155154892783038,16.6154608346126,-0.024787931322617,0.980699622744554,0.993807394129961,-6.78956915718071 +"Q9W4U2",0.00225859128463313,18.5290398359611,0.0238571754094247,0.981424174026368,0.993835177560441,-6.78959369236573 +"Q9VB81",-0.00167112518346713,21.017793274511,-0.0232219368552074,0.981918688620867,0.993835177560441,-6.78960989856211 +"Q9VVH5",-0.00138278536588743,22.4964242272748,-0.0219498629532591,0.982908984713677,0.994234194361681,-6.7896410370553 +"Q9VCT4",0.00389657872750249,13.5147154560514,0.0202632044388447,0.984222077043931,0.994959045157138,-6.78967961993922 +"Q9VD14",-0.00126015537641067,17.6435612443799,-0.0194179439743454,0.984880145468491,0.995021249328554,-6.78969779591123 +"Q9VCR9",-0.00110215860678053,19.2992502813786,-0.0182676806730753,0.985775689505589,0.995323153810728,-6.78972128669385 +"P41093",0.00110050057034528,19.1467279740576,0.0174581072179771,0.986405999983998,0.995357052615431,-6.7897369601267 +"Q9VME1",-0.00126630167430974,16.4235793264164,-0.0158906632252027,0.987626393931565,0.995409524436688,-6.78976528706589 +"P35992",-0.000911979269664798,15.9165487467213,-0.0145644668500939,0.988658981430862,0.995409524436688,-6.78978717466233 +"Q9VJI7",-0.0010011227944311,17.3764185579276,-0.0144972673992989,0.988711304080151,0.995409524436688,-6.78978823298461 +"Q5U126",-0.000900523177548962,21.5869841651719,-0.0134828746993167,0.989501134347767,0.995409524436688,-6.78980361408354 +"Q8SX57",0.000533575941542352,17.9192122062186,0.0130322836243985,0.989851979124542,0.995409524436688,-6.78981008862489 +"Q9V3N1",0.000593188889229879,18.3717707839947,0.0127925945189401,0.99003860973649,0.995409524436688,-6.78981344305821 +"Q9V9X4",0.000672462543764851,18.6610770939879,0.0106798249201933,0.991683714448177,0.995861286239521,-6.78984031776775 +"O46106",-0.00057346569385075,16.9505281388616,-0.0100596574111151,0.992166614994063,0.995861286239521,-6.78984728791643 +"Q9VM50",0.000888386233876659,13.5571241896827,0.0099152610016127,0.992279051396933,0.995861286239521,-6.78984885098081 +"Q9VLS4",-0.000415617248922473,20.5308286231138,-0.00586080023584959,0.99543617996529,0.998216627396355,-6.7898835141747 +"Q9VI53",0.000270367980466091,16.3563316432423,0.00511624561957854,0.9960159605809,0.998216627396355,-6.78988794332558 +"A1Z8D3",-0.000493499366754691,16.6866630877177,-0.00410534739347826,0.996803145323858,0.998216627396355,-6.78989299519594 +"Q9VN02",-0.000187926275881267,17.2026399805822,-0.00351015760202438,0.997266620343683,0.998216627396355,-6.78989545156314 +"Q9VWD0",0.000164782479640024,18.1298102585801,0.00305869418136152,0.99761817618089,0.998216627396355,-6.78989705869422 +"Q9VW57",-0.000123283038776734,16.6127472085243,-0.00220227053492304,0.998285077085818,0.998285077085818,-6.78989950040077 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_SFug_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_SFug_significant.csv new file mode 100644 index 0000000..3fa3f66 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SF1g_vs_SFug_significant.csv @@ -0,0 +1,14 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P06002",-1.09562743848828,17.0500392303794,-19.1029918221836,2.35608277208355e-09,3.92994606383536e-06,11.4154360429226 +"Q9VU68",-0.591940801372402,19.3781374414581,-13.1656116270466,9.32929525496567e-08,7.47141687033121e-05,8.3783028460908 +"Q9V4E7",-1.39747885563374,15.6676851137624,-12.6802042091633,1.3437800126495e-07,7.47141687033121e-05,8.0508611436812 +"Q9V3B6",0.59491775719539,13.0781141518043,10.8767074978829,5.86527534680223e-07,0.000244581981961653,6.69087466859314 +"Q9W2N0",-0.532885038647706,16.2840950068443,-10.2339790503294,1.04381863128525e-06,0.000348217895396758,6.14433505930629 +"Q7JUS9",-0.61523525275328,20.5856564155254,-8.22742664944555,7.82321568476586e-06,0.00163114047027368,4.18376483442709 +"Q0E8E8",-0.567182386897631,21.7396571202544,-7.99142911432531,1.01615587995436e-05,0.00182760348327754,3.92443576470728 +"A0A0B7P9G0",-0.564586413906392,14.7571622353989,-7.43510315960306,1.92705086575501e-05,0.00267860070339946,3.28615185752977 +"Q9VAJ9",-0.504196945167962,17.8432400985038,-6.7090563857458,4.6857834875492e-05,0.00521059123815471,2.39262991104534 +"P05031",-0.600737922214011,13.5768487065002,-4.63287793479278,0.000871009890297382,0.0216842462241199,-0.578989039567696 +"Q0KIE7",-0.54881745799122,14.1606864529342,-4.59591966800843,0.000922574149545328,0.0226302011976707,-0.637584582805661 +"Q95RQ8",-0.789408978528503,14.4166742815928,-4.36069014044902,0.00133635483753766,0.027984948304026,-1.01483473939203 +"Q9VRL2",0.674815382454266,11.9387280694548,4.04093830660072,0.00223813817801541,0.0348898549619599,-1.53881739051137 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SFug_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SFug_vs_Earth_results.csv new file mode 100644 index 0000000..6045506 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SFug_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.840900893783122,18.2100580023051,16.6428464139454,8.08835706183817e-09,8.23034465067389e-06,10.9051764882554 +"Q9VC06",0.861311545357717,16.3836066963437,16.1279208945203,1.1081951571981e-08,8.23034465067389e-06,10.6069195850731 +"Q8MSI2",-0.761746348228659,24.0545359721853,-15.5135982250325,1.63373398157613e-08,8.23034465067389e-06,10.2361431026761 +"P10676",-1.06222841949458,19.7094940821678,-15.2222953299637,1.97370375315921e-08,8.23034465067389e-06,10.0543532220728 +"Q9W3J5",0.639137617105982,16.0545409045738,14.4748461650063,3.25645909721152e-08,1.08635475482976e-05,9.56924794521206 +"Q7JUS9",0.711004592010102,20.537771745897,13.9568042923957,4.67275586374568e-08,1.13107117237373e-05,9.21635189240244 +"Q7JYW9",0.651452471682957,17.2082297076694,13.9346672633165,4.74670156271947e-08,1.13107117237373e-05,9.20095275581483 +"Q9VLB7",0.814590382361004,21.0791828750061,13.2624395275421,7.73158519509241e-08,1.61203551317677e-05,8.72028315875468 +"Q9VXP3",0.652701908406097,14.5121579002444,13.074400957357,8.897452689607e-08,1.6489945651405e-05,8.58114790043441 +"Q9VFN7",-0.588266316630886,18.6432717821932,-12.8523114644121,1.05275679013624e-07,1.75599832594724e-05,8.41406800384503 +"Q9VZU7",0.551207876873782,17.5103451390685,12.6972636876086,1.18578465514871e-07,1.7980807316255e-05,8.29561896662086 +"Q9V3N7",0.605663705165867,20.5385384549374,12.2323686635011,1.70759607554139e-07,2.37355854500253e-05,7.9312559775038 +"Q9VAJ9",0.869971970779755,17.6603525856979,11.9121380845183,2.21104881606807e-07,2.65667384605688e-05,7.6719288726211 +"Q9V4E7",1.30292940665369,15.7149598382524,11.9017847987221,2.22982217294942e-07,2.65667384605688e-05,7.66342726320171 +"Q9VHR8",0.524861763115318,20.3332388569267,11.725209570376,2.5782688587212e-07,2.86703497089798e-05,7.51727628131211 +"Q9VA09",0.717891126775829,16.3754738181992,11.42084694789,3.3265068330136e-07,3.37554932242762e-05,7.26012169508041 +"Q9W2N0",0.542470712111857,16.2793021701122,11.2257792280125,3.92881524274596e-07,3.37554932242762e-05,7.0917252259422 +"Q9VLC5",0.701507924379619,21.7692412956303,11.2220140471308,3.94155178766879e-07,3.37554932242762e-05,7.08844671102711 +"Q9Y119",-0.735322922691761,17.7195433413239,-11.2196527847401,3.94956221403794e-07,3.37554932242762e-05,7.08639010359949 +"P19334",-1.02046554310178,15.2730765209876,-11.1912206229168,4.04742124991322e-07,3.37554932242762e-05,7.06159307574016 +"Q9VZF6",0.551316518553071,14.9998471495332,11.1181731017177,4.31116122953762e-07,3.42429377660417e-05,6.99760217886482 +"O17444",0.784590846022143,15.3876834242501,10.9421882539596,5.02671064415099e-07,3.70790823304472e-05,6.84174487283463 +"P21187",0.620905529959327,18.8653479843893,10.9228688607702,5.11282310311921e-07,3.70790823304472e-05,6.82448773252691 +"Q7JYX5",0.793371589126801,14.9267010936988,10.7959012639389,5.7203235454505e-07,3.9756248640881e-05,6.71033794036221 +"O97125",0.662541786334245,18.4676698327401,10.6521336651366,6.50465714147654e-07,4.19334167823813e-05,6.57952356197389 +"Q8IN49",0.504142342313791,16.8480441019707,10.6057745883844,6.7819558213449e-07,4.19334167823813e-05,6.53698305836305 +"Q9VW54",0.560651678722614,15.8118021696516,10.576649883606,6.96273123284113e-07,4.19334167823813e-05,6.51016711383456 +"Q9V3A8",0.688036884714656,15.5547024449285,10.5645795186677,7.03918267330142e-07,4.19334167823813e-05,6.49903309988078 +"Q9VV31",-1.30560764476999,15.7123156107349,-10.4948109548456,7.49937676275957e-07,4.31343463458033e-05,6.43444040998491 +"Q7K569",0.647037923071398,20.5586605327605,10.4334886306053,7.93096618596596e-07,4.36047798008895e-05,6.37733247317661 +"A1Z803",0.62962900555803,18.7875165107467,10.4099153436893,8.10400583829481e-07,4.36047798008895e-05,6.35529532614478 +"Q9VTZ4",0.485339585691364,18.1463896215055,10.1627399549062,1.01876222601169e-06,5.05488954842298e-05,6.1213787360048 +"Q9VN13",0.710376988671154,17.0180794147003,10.1466191743346,1.03424593713986e-06,5.05488954842298e-05,6.10593974861004 +"Q9VIE8",0.457393424264129,24.7787791147132,10.138258102602,1.04237724024962e-06,5.05488954842298e-05,6.09792336142795 +"Q9W299",0.779784425939949,14.7567095230134,10.1196966180527,1.06067826255878e-06,5.05488954842298e-05,6.08010523346378 +"Q9W3Y3",-0.482577044523619,18.1323159790602,-10.0325047028396,1.1514513350763e-06,5.33505785252017e-05,5.99600019427103 +"Q24253",0.756144490100898,18.8785118802021,9.75172085157313,1.50611087647466e-06,6.69545224212191e-05,5.72054012748415 +"O16797",0.502613650816549,16.5525710859797,9.73861408598584,1.52534283693425e-06,6.69545224212191e-05,5.70750681758337 +"Q94523",0.588152281167012,20.3945432060371,9.67810792695838,1.61765285442395e-06,6.9039770444901e-05,5.64713413955695 +"Q0E8E8",0.572028141560423,21.737234242923,9.65429668155406,1.65562998668827e-06,6.9039770444901e-05,5.62328233551901 +"Q7K148",0.66557861952921,16.828608977072,9.61813013183072,1.71517900839512e-06,6.91669208203156e-05,5.58695306609553 +"Q9VFQ9",0.448707242009668,19.0889759707233,9.60251060154758,1.74161311418061e-06,6.91669208203156e-05,5.57122542844108 +"Q9VXQ0",0.532641285538663,14.9126197120224,9.54706082420704,1.83909062267654e-06,7.13396083401041e-05,5.51520666834977 +"Q9V3B6",-0.832423531891061,13.1968670391521,-9.496502481538,1.93315099074615e-06,7.3283996649195e-05,5.46387629049129 +"Q9W1H8",0.585664501461611,20.5577442943077,9.46270132820552,1.99894467410799e-06,7.40942159202694e-05,5.42942341323075 +"Q9VQE0",0.549085874673347,17.2622245429953,9.44004514332221,2.04440457047918e-06,7.41318874686799e-05,5.40626928530711 +"Q9VU68",0.470565659899201,19.4388250121947,9.38620019820314,2.15701577199343e-06,7.65511129294689e-05,5.35104316818362 +"Q9VED8",0.573661669605334,16.2710401187074,9.27861384426788,2.40273705704752e-06,8.34951127324013e-05,5.23985645931036 +"Q9VJQ3",0.450210331341523,20.5274965930756,9.17660420134489,2.66400825861254e-06,9.06850158237903e-05,5.13338595343063 +"A1ZB70",-0.57368743941745,16.0980868163516,-9.07900140397558,2.9430858142725e-06,9.81813427641305e-05,5.03054769433862 +"Q9VA42",-0.755475941357517,20.3322919174719,-9.0593615232661,3.00299117363708e-06,9.82106808334962e-05,5.00973887657329 +"P23779",-0.470902804573218,20.984009434458,-9.04051468341029,3.06172386291475e-06,9.82106808334962e-05,4.98973371364871 +"Q8SXD5",-0.567410558158702,20.7936229197279,-9.01362441544985,3.14769160853446e-06,9.90632000572732e-05,4.96112855958623 +"Q9VUY9",0.482887429018465,19.7332429394191,8.98898637984964,3.22876234140143e-06,9.97328812121774e-05,4.934854847046 +"P45437",0.55850861028784,16.0136600485525,8.93288496235604,3.42194512007174e-06,0.000103545735616877,4.87479799713128 +"A1Z9A8",0.522674084939718,16.6312088986939,8.91770281090968,3.47635563222127e-06,0.000103545735616877,4.8584900109721 +"P54385",0.54871898654509,21.4839687458882,8.85542950733143,3.70956108622775e-06,0.000108553471786454,4.79135036896676 +"Q9V521",-0.722962615495023,17.7263101957716,-8.83023996302008,3.80866792615686e-06,0.000109532036221201,4.76407839044531 +"Q9U9Q4",0.486398711129024,17.9078327292421,8.7770806105817,4.02737956253978e-06,0.000113858798479938,4.70630746348067 +"Q9VKD3",0.499923639365804,18.6746524379746,8.75798453585332,4.10924125807847e-06,0.000114236906974581,4.68548265129149 +"Q8SXF0",0.521309132596533,16.3341251347788,8.71573530111579,4.29684386274075e-06,0.000117494025623796,4.63927244202218 +"P29613",-0.388251559438565,23.8922040676639,-8.67708467844145,4.47662282924495e-06,0.000120435594825493,4.59683315881054 +"Q9W2L6",0.43362513511978,20.9501305306961,8.45423643990591,5.68595669649002e-06,0.00015054247253564,4.3490228236515 +"Q9VF86",0.470456506848713,17.632686977658,8.39784144497411,6.04532197033922e-06,0.000157556203851966,4.28545644027289 +"Q9VV36",-0.556198564578295,23.1814180507471,-8.31511618821141,6.61775613226683e-06,0.000169821803517247,4.19157723890933 +"Q9W2E7",0.37425437252001,18.4701927689069,8.22718138929018,7.29129052553736e-06,0.000184270796918126,4.09095078740226 +"P41093",0.622296737158742,18.835029355193,8.16237160787834,7.8351473261423e-06,0.000194374860135585,4.01623035787755 +"Q7K2Q8",-0.398395918383683,16.1083529272324,-8.15223020337847,7.92415496955623e-06,0.000194374860135585,4.00449509894669 +"Q9VXZ8",0.600293034583544,17.9019418010034,8.08143091252982,8.57689250055602e-06,0.000207337053491702,3.92224225274995 +"Q9W309",-0.560497296245718,18.3949158035826,-8.03960552277454,8.98969370277816e-06,0.000214211558517628,3.87338074741525 +"A8DYP0",-0.580146686000123,15.2845974395829,-7.96934692115766,9.73234401025069e-06,0.00022564948806518,3.79084825007991 +"Q9VHT3",-0.462898367023577,15.8020360385269,-7.96676241332366,9.76089991801155e-06,0.00022564948806518,3.78780131876288 +"Q8SZN1",-0.609020650279739,20.1626511352097,-7.95646780106253,9.87554713954325e-06,0.00022564948806518,3.77565706346413 +"Q24276",-0.547336177520485,18.7145023724167,-7.92171791670986,1.02734345238753e-05,0.000231568767376,3.73457233629156 +"Q01637",0.485075439620372,15.9273595432334,7.87854495069924,1.0792104645529e-05,0.000240016407316564,3.68333206845834 +"Q7K485",0.475719983612446,20.5141273347905,7.83085084599457,1.13982358701987e-05,0.000250161281993307,3.62647079305393 +"Q9VPN5",-0.431240780039978,21.2597316195653,-7.79926469902748,1.1819874400866e-05,0.000256046110397979,3.58866542302012 +"Q9VNE9",0.509236117966555,18.695510857436,7.7202634259563,1.29501600822541e-05,0.000276934192528203,3.49358884487651 +"Q9W253",0.514689251093907,15.1130395169647,7.69666457234635,1.33100714598464e-05,0.000281027837911694,3.46504309859731 +"P46415",0.391581563534654,18.0968893840846,7.61413507319109,1.46563293312424e-05,0.000305584466556404,3.36468504454833 +"Q9W461",-0.458675375780478,16.2136948665308,-7.58140399402594,1.52304193968102e-05,0.000313633821652832,3.32465431952582 +"O01666",0.371951042810082,22.7594565068746,7.56089700178587,1.56024594018868e-05,0.000317376857101796,3.29950728751733 +"Q9VMR6",-0.426275564100095,18.8334896695247,-7.53949484785625,1.60012401875957e-05,0.000318976646285979,3.27320767291039 +"Q9VFZ4",0.668024980805045,16.4946847755605,7.52446155091937,1.62879325705105e-05,0.000318976646285979,3.25470071470864 +"Q9VNW6",0.886768112530575,21.564159826657,7.52090131781711,1.63566379021179e-05,0.000318976646285979,3.25031377241352 +"P35381",0.381231344047119,25.6871452573115,7.50986376233796,1.65716387043621e-05,0.000318976646285979,3.2367033174737 +"Q9VH81",0.57411686681893,14.481187237746,7.50652518172778,1.66372711192327e-05,0.000318976646285979,3.23258354664151 +"Q8SXQ1",0.49644565554901,18.6079920917571,7.49060209749176,1.69541879529809e-05,0.000321358926199683,3.21291574470417 +"A0A0B7P9G0",0.759275092592084,14.659817896056,7.39066685167734,1.90983285197912e-05,0.000357932718775413,3.0887615074745 +"Q9VBC7",0.541127349488585,16.1411389916009,7.36677740359695,1.96531508207734e-05,0.000363074684626165,3.05889842078705 +"Q9V784",-0.579713391385583,14.2027932440259,-7.3602384999515,1.98080313555042e-05,0.000363074684626165,3.05071199559592 +"Q9VIF2",0.418378605696796,17.4516358057169,7.2888001212034,2.15887036267708e-05,0.000391412583146235,2.96092439857486 +"Q0E9B6",0.41581000738919,19.0414693457093,7.23425486455076,2.30645581669729e-05,0.000410917213303416,2.89193525052418 +"O77410",0.469099715524383,14.3427651263969,7.2175883225043,2.35369644413805e-05,0.000410917213303416,2.87077999697737 +"P32392",0.3893464669619,17.5738647926503,7.21054422136844,2.37397574857286e-05,0.000410917213303416,2.86182811522284 +"Q9VBP9",0.517979767166283,13.9658193400898,7.20738523785382,2.38313134948713e-05,0.000410917213303416,2.85781151876891 +"Q9VPE2",0.449053627262671,20.8143570054331,7.20502335758496,2.39000162580517e-05,0.000410917213303416,2.85480759506038 +"Q9VHC3",0.441742671876355,17.1407110719793,7.19674137886125,2.41426180478026e-05,0.000410917213303416,2.8442686569481 +"Q9VM10",0.500079807440496,17.1192967560435,7.18419456805647,2.45152261785349e-05,0.000413044416826224,2.82828597779177 +"Q7K1Z5",-0.521209839576619,15.9823533694555,-7.15552261516876,2.53902147023058e-05,0.000423508781234462,2.79168681270464 +"Q8IQG9",-0.39354756282566,20.4871537946686,-7.12002516471962,2.65204740899464e-05,0.000435724900940786,2.74622897047997 +"Q9V3I2",0.365778292767651,17.5532855384084,7.11621295748381,2.66450478992567e-05,0.000435724900940786,2.74133744502517 +"P06002",0.703099419449481,17.2463032398988,6.99457607276485,3.09707987623575e-05,0.000501546527530217,2.58427585786757 +"Q9V396",0.411437744347321,20.879264764651,6.94817233809327,3.28157565758721e-05,0.000526314249697642,2.52385051339261 +"P48596",0.310206162525489,21.7663671486179,6.87287775018848,3.60662949426174e-05,0.000572938856802722,2.42520327556105 +"Q9W1R3",-0.355342081737344,17.0211428380692,-6.85667391706495,3.68102416062558e-05,0.000579240405653157,2.40387607915775 +"Q9VAY9",0.554001358213398,14.5106593753941,6.83088366266501,3.80286402540152e-05,0.000592820298539227,2.36985972813442 +"Q9VWP2",-0.4132668214692,19.6757418092823,-6.80915468102427,3.90889230786263e-05,0.000603706700881007,2.34113155865373 +"Q9VNB9",0.743410430435549,18.831848590577,6.76647398926142,4.12654484800697e-05,0.000631474936373911,2.28451999693443 +"P18432",-0.396741265739326,23.6955020345788,-6.7097358261325,4.43632607642881e-05,0.000672708354134841,2.20888594640265 +"Q7KV34",0.398409889692058,20.9712031227304,6.70177145479151,4.48177789470388e-05,0.000673477975528475,2.19823461707067 +"Q9VM18",-0.295658462536238,22.9428285318536,-6.67502808226275,4.63810550906779e-05,0.000690746427600453,2.16240639639104 +"Q9VZJ2",-0.389249993012832,17.331884416057,-6.62251242163241,4.96243566452465e-05,0.000732508202515674,2.09177045539166 +"Q7K5M6",-0.354121950342268,18.2198643339424,-6.58983677876802,5.17649942542828e-05,0.000757403600141611,2.04763202899745 +"Q9VQ91",-0.389367524276555,15.0426531966247,-6.53376378776292,5.56735405495863e-05,0.000807508396840956,1.97155047243004 +"A1Z843",0.361834528747451,17.6057773884125,6.49928063247142,5.82340193082336e-05,0.000832858901700405,1.92454989880673 +"Q00174",0.282262623317507,21.9682500671383,6.4968403175885,5.84199589322226e-05,0.000832858901700405,1.92121759158912 +"Q7K4T8",0.653598197948867,13.6913233680706,6.46139103978388,6.1194254985713e-05,0.000860058266668856,1.87271882587796 +"Q9VV39",0.32821001709608,17.4982874867437,6.45933971584664,6.13590729817709e-05,0.000860058266668856,1.86990710267476 +"O02195",0.33386026891711,18.6512143706461,6.45111667035881,6.20245795184086e-05,0.00086214165530588,1.85863008348618 +"Q9I7Q5",-0.374750749907623,20.77219857637,-6.39731640644746,6.65748959882062e-05,0.000917743194283702,1.78461947782613 +"Q9VLY7",0.423146754673503,15.436156849296,6.37520781032239,6.85477226863175e-05,0.000937193454432603,1.75409007035369 +"Q9W369",-0.329244418922855,22.3199821731714,-6.35108266291765,7.07724246770913e-05,0.000959743124889336,1.72069900730107 +"A1Z8H6",-0.578247457091029,16.8181635547737,-6.33261984385721,7.25273667685719e-05,0.000968899007918103,1.69509065108415 +"Q9W3R8",-0.380877088299027,17.3544908400137,-6.33176923773843,7.2609338123359e-05,0.000968899007918103,1.69390970312169 +"Q9V3D9",0.288460966492821,17.396297402847,6.31680190575683,7.40681196311962e-05,0.000980520821784407,1.6731132413644 +"O18413",0.281028275309094,19.3819743915117,6.25433558102352,8.05052682044067e-05,0.00105734478240118,1.58598310798131 +"Q23970",-0.461688407169792,21.4113432635012,-6.22882788064235,8.33044186596768e-05,0.00108556070565891,1.55024791296216 +"Q9VKC8",0.44767802013094,17.7959947116844,6.21392219857589,8.49883747971452e-05,0.001094723689767,1.52932366365658 +"P83967",-0.549410222678652,17.5617736774693,-6.21102251143016,8.53201916485075e-05,0.001094723689767,1.52524954480389 +"Q7JWF1",0.43954778187393,20.4794097422952,6.18240087222097,8.86710702758563e-05,0.0011290331696193,1.4849724972723 +"Q7KSQ0",0.309008841693934,20.9299506951147,6.15779843031364,9.16644131857394e-05,0.0011554118248213,1.45025971338321 +"Q9VG81",0.819544286126304,15.6615020835819,6.14984837854398,9.26547305030536e-05,0.0011554118248213,1.43902446235405 +"Q9VJZ5",-0.344010016546148,16.9555165338443,-6.14852371202122,9.28208540324062e-05,0.0011554118248213,1.43715154242648 +"Q9W0S7",0.323232073635737,17.8419896249616,6.14166400805492,9.36862441141562e-05,0.00115604508609646,1.42744880365844 +"P54622",0.401401969386374,17.9451174135033,6.13717006394364,9.42578727272893e-05,0.00115604508609646,1.42108874433949 +"Q9I7K0",-0.483577179512279,16.2388067035861,-6.12783293894583,9.54575569122063e-05,0.00116221317466832,1.40786530274075 +"Q8SZK5",-0.880361957186853,15.38706301649,-6.12159389689127,9.62683098128824e-05,0.00116359087512962,1.39902260994968 +"P82890",-0.454651506600705,19.6627560304689,-6.09023624526382,0.0001004566312296,0.00120394806270304,1.35449605055023 +"Q9VK39",-0.369278894071549,18.1660084981445,-6.07871839787617,0.000102043768927357,0.00120394806270304,1.3381064443614 +"Q9W199",0.547951574963282,15.7684216411779,6.0764218881905,0.000102363428721562,0.00120394806270304,1.33483633522182 +"P42281",-0.416957813328775,21.8638143349238,-6.07548332867716,0.000102494379438748,0.00120394806270304,1.33349966193426 +"Q9VAC1",0.285033994167399,23.3040266422312,6.06769939038081,0.000103587369927717,0.0012082778534226,1.32240918628464 +"P12080",0.300537725287668,19.0169806087515,6.06120463575121,0.000104508908219873,0.00121056152021353,1.31314899169866 +"Q9VN14",0.282446570030025,19.2821451753122,6.05106251488068,0.000105965604339746,0.00121896984854274,1.29867650236408 +"Q7K5K3",0.3197564623812,22.7969727208464,6.03185606085533,0.000108784214270979,0.00123888812751926,1.27122973118114 +"Q9VPX6",0.334822989343323,21.4621553963967,6.02918460300845,0.000109182586777777,0.00123888812751926,1.2674079887945 +"P32748",0.372011696852015,17.2765319360148,6.02154067554455,0.000110331130800801,0.00123927565589896,1.25646714760649 +"A1ZBU5",-0.412583764370467,16.6989775889379,-6.01908614265636,0.000110702681492173,0.00123927565589896,1.25295219580387 +"Q9VTY2",-0.405069623508286,20.8168205199622,-6.00567496153986,0.000112756612826667,0.00125385353463254,1.23373201858529 +"P50887",0.660040556929665,17.682586602018,5.9362773978612,0.000124058215649786,0.00137039141525724,1.13386860112972 +"X2JAU8",-0.334014278128258,21.8253157013207,-5.93125886152475,0.000124921308233278,0.00137084698771782,1.12662044555756 +"Q9VZI8",0.42065940842998,15.7445153670247,5.894312211567,0.000131476983767963,0.00143335692107819,1.07314923657217 +"Q9W308",-0.597762160571264,17.1482275849802,-5.87269703280562,0.000135482453524752,0.00146496131289574,1.04177667320763 +"Q7K860",-0.38125084337851,20.5925869721479,-5.86500333666418,0.000136939540354862,0.00146496131289574,1.03059391090781 +"Q9VW68",0.351820816761389,22.9265726730201,5.86462948032554,0.000137010770270824,0.00146496131289574,1.03005029748366 +"Q9VHB8",0.515261203255758,15.4855106815594,5.85954961712528,0.000137982567332332,0.00146595491917408,1.02266184878924 +"Q9VLP0",-0.438582032892059,16.1555043695167,-5.84619169513773,0.000140573395389702,0.00148402799689888,1.00321579124838 +"Q9VEV3",-0.288097810876742,18.2829089593491,-5.83370037969447,0.00014304332515532,0.00150060544879921,0.985008338417016 +"Q9V419",0.408996286435908,16.4965512146301,5.82596331608594,0.000144596467849588,0.00150618136124444,0.97371958531323 +"Q9VH64",-0.494076220169703,17.5711367160069,-5.8188440472911,0.000146041554958576,0.00150618136124444,0.963324694433144 +"P54192",-0.385938646144066,24.2972686638622,-5.817376670886,0.000146341324601221,0.00150618136124444,0.961181271300802 +"Q9NJH0",0.300324812525865,21.165528854271,5.80907323078581,0.000148050090825522,0.00150618136124444,0.949046508374321 +"A8JTM7",0.459425213061795,17.6058621948845,5.80888161819112,0.000148089774127151,0.00150618136124444,0.948766367115105 +"Q9VGA0",-0.409564143867787,19.3295819603271,-5.799999760889,0.000149941779760511,0.00151577508266989,0.9357751813431 +"Q7K3V6",0.482075888134471,16.2627624435139,5.79440810792043,0.000151120435734895,0.00151848726991449,0.92759069721976 +"Q7K3N4",0.323081197032103,17.0664486065489,5.76852698677809,0.000156706566231275,0.00156518893696867,0.889650524759295 +"A1Z6V5",-0.27593560985164,20.0469006099985,-5.75992794153898,0.000158611161118076,0.00157478224252947,0.877023698530111 +"Q9Y143",-0.319097896471099,20.969590822142,-5.75169617930162,0.000160457633795575,0.00157990082634961,0.864926307777374 +"Q8T3L6",-0.352859926715503,17.3744160041113,-5.74920451075949,0.000161021067433713,0.00157990082634961,0.861262647684036 +"O62619",0.324388577844335,22.2690379264126,5.69056087381705,0.000174912245844577,0.00170616155595763,0.774779256396079 +"Q94901",0.247399056271121,18.8460127514966,5.66148494588019,0.000182270163102915,0.00176759669799804,0.731718041625199 +"Q9VMW7",-0.289149967790106,19.4222511152253,-5.64059495326925,0.000187760599012728,0.00180664805396757,0.700705551366067 +"Q8IN43",-1.11392451857727,17.9733984879883,-5.63796861679948,0.000188463286205251,0.00180664805396757,0.696802178099929 +"Q9VJZ4",-0.249606943623867,21.3352948701554,-5.60464926865617,0.000197626290257839,0.001883660869429,0.647195935396822 +"Q5U117",0.46266378407072,14.6481674477818,5.58084693736534,0.000204463140012824,0.00192813276711018,0.611661547976703 +"Q9VIB5",-0.475566728027069,14.3487386205483,-5.58036546647501,0.000204604016653778,0.00192813276711018,0.610941926512187 +"Q9VMI3",0.378702982719833,20.204579091252,5.57382197278179,0.000206528938808905,0.00193533859513064,0.601158529708584 +"Q9VSA9",-0.394658566382255,22.3612165689411,-5.54686558248195,0.000214665288448488,0.00199208264079894,0.560790567980084 +"Q9VWV6",-0.552855854456649,23.6999618259412,-5.54414201628139,0.000215506202369709,0.00199208264079894,0.556706171204852 +"A1Z7B8",0.45333221792278,16.9896802323546,5.53777619411077,0.000217485437288793,0.00199208264079894,0.547155527978079 +"A1Z7X8",0.337571128192497,17.007407514024,5.53454891772243,0.000218496258884286,0.00199208264079894,0.542311431944284 +"Q7K1S1",0.497128384407587,16.5686948615256,5.53435922367766,0.000218555829296286,0.00199208264079894,0.542026657542118 +"Q9XYZ5",0.336519547062682,16.0299220336324,5.5151661541057,0.000224673729586824,0.00203671620081968,0.513186852646507 +"Q9U4G1",0.322773564758656,19.3958635657509,5.50764795471704,0.000227119836386199,0.00204776155184962,0.501875535404499 +"Q95R98",0.410132406723337,16.3566395389599,5.50234309712555,0.000228862922494874,0.00205238362753468,0.493889384038074 +"Q9VVW7",-0.277312845573894,16.5891906259764,-5.49378975597975,0.000231703563911703,0.00206674622783273,0.481004360588052 +"Q9VAM6",-0.3004018651779,22.128631463793,-5.4726368163975,0.000238891600159623,0.00211952760141623,0.449094003230734 +"Q9VDK9",0.317025731833629,15.5471054971165,5.45269349997667,0.000245886960846812,0.00214878546357232,0.418949877040466 +"O76902",0.381074588025943,17.3595977949114,5.45233779558653,0.000246013696048787,0.00214878546357232,0.41841171765093 +"Q9W3W4",0.322971903562866,15.9500408651397,5.4522247980322,0.000246053970948629,0.00214878546357232,0.418240755352116 +"Q9VH95",-0.296644164227626,20.9121626299367,-5.44188694654643,0.000249768561471048,0.00216986437777973,0.402592145465746 +"Q7JXZ2",0.539345138847818,17.4676856649053,5.43301221536975,0.00025300518463167,0.0021748805154561,0.38914611524772 +"Q9VXR9",0.392707188679459,15.2190127030065,5.43024850681915,0.00025402223013193,0.0021748805154561,0.384956547464395 +"P17336",0.351953060932285,20.5889882936181,5.4296105595325,0.00025425761421699,0.0021748805154561,0.383989313952367 +"Q8MLS1",-0.339740585962396,18.4010456439451,-5.39558280543638,0.000267156494927663,0.00227355629356807,0.332313434188529 +"Q9VNX4",0.395893820575075,21.0704571451399,5.39131027780711,0.000268824774773721,0.00227614073260186,0.325813332165047 +"A0A0B4K692",0.394748659568281,15.9791479331723,5.36714941913928,0.000278470315023122,0.00234590144170994,0.289006706893848 +"Q9VPL0",0.423491635601776,15.1122222559459,5.35523038919712,0.000283364030092933,0.00237513166932167,0.270818620383171 +"P22979",0.408657434018696,19.3699440534799,5.3321239985018,0.000293114239657273,0.00244457275874166,0.235501309660777 +"A1ZBJ2",0.51305075015188,19.4480093374636,5.320557819361,0.000298128620241203,0.00247402257991208,0.217794261862735 +"A1Z8Y3",-0.352786641689461,15.0221821846939,-5.31675416914632,0.000299797568791731,0.00247555616210202,0.211966967917687 +"Q9VJE3",-0.400696268742944,15.3276826288168,-5.29821848542354,0.000308074331395447,0.00253136938309165,0.183540356853136 +"Q9VT23",0.46265804674805,18.2879611352909,5.29327620895118,0.000310322107688667,0.00253733958639557,0.175952556557052 +"Q24439",-0.241374411423006,24.295981650554,-5.28568423937598,0.000313809096703023,0.00255079180253021,0.164289961996314 +"O77477",0.363674600670217,16.8249105072404,5.28305623972074,0.000315025846115841,0.00255079180253021,0.160250986420269 +"Q9VAG9",-0.258292776352654,17.4481380958779,-5.27275432880337,0.000319844280394408,0.00257729594056943,0.144408508661517 +"Q7KLW9",0.260239891276559,17.2308988040277,5.25478966000239,0.000328435640073089,0.00263003529318593,0.116746050342859 +"Q8T4G5",0.247521842944472,19.6840332220789,5.25251107481719,0.00032954279153229,0.00263003529318593,0.113234154069671 +"Q9VDT1",0.379567315580644,19.1302733857646,5.24030825694648,0.000335540129415445,0.00265598281473114,0.094413887868515 +"Q9VSY0",-0.302813581042596,22.682084907208,-5.23942514731315,0.000335978641431817,0.00265598281473114,0.0930510588657558 +"P45888",0.31284645665132,17.1822515874422,5.2265472280525,0.000342443060660453,0.00269431615651715,0.0731650914501456 +"Q8IN44",-0.454274607506569,19.9526799255842,-5.2005518146126,0.000355899265709352,0.00278704213710422,0.0329516698158363 +"Q9VVW3",0.431454268865645,16.5821030242498,5.15761698690565,0.00037937187453339,0.00295697330243783,-0.0336752079533218 +"Q7JQR3",-0.294207812272678,19.1028616637502,-5.13651045411461,0.00039151010161972,0.0030362790381653,-0.0665239536022115 +"Q9VXC9",0.610837544545554,18.983599107953,5.13364907372021,0.000393187213575362,0.0030362790381653,-0.070982036538739 +"Q8IRD0",0.297076474327575,17.5066197404346,5.1275263512025,0.000396801596818013,0.0030466526945824,-0.080525220023139 +"Q9W552",0.299727535124125,16.2500515890974,5.12520087880783,0.000398183625550937,0.0030466526945824,-0.084151200088864 +"Q7K2E1",0.414843527343514,17.3590477558017,5.11411616986203,0.000404842020508908,0.00308345429319113,-0.101445420852886 +"Q7K511",0.733084391750879,16.74716901557,5.10510540159824,0.000410341906752622,0.00311113772937897,-0.115516626777239 +"P29327",0.282235810967908,19.481142521674,5.09226937364439,0.000418314277550263,0.00315723174187258,-0.13558103605242 +"Q9W3M7",0.266245824101228,16.0166096209844,5.08860952872768,0.000420617446562195,0.0031603148687646,-0.141306091833076 +"Q9VN86",0.378387139993059,15.4064328772357,5.07379391265541,0.000430079749449319,0.00321691938153123,-0.164501179201057 +"Q9VW66",-0.264075085057932,21.3672504633989,-5.06741982559701,0.000434220102381294,0.00323338897666071,-0.174489802769731 +"Q7JWX3",0.213575720729949,17.9206531121572,5.06309917718848,0.000437050711007011,0.00324000260426531,-0.181263782430568 +"Q9VSS2",0.367051995745269,16.1558596004614,5.03715842580794,0.000454463141554172,0.00335417929253256,-0.221988948920334 +"Q9VGS3",0.336693504964554,19.3659122521005,5.02959486662941,0.000459677840600451,0.00337772087278217,-0.233880893605799 +"Q9VVB4",-0.392710240963167,15.9818065694565,-5.02442432350681,0.000463279247637886,0.00338925344324559,-0.242014963919129 +"Q9VB22",-0.365847204306956,17.2544758088121,-5.0064255378876,0.000476051523422268,0.00346748445881373,-0.270358892946347 +"Q9VKU5",-0.564251105500565,13.6286484352689,-4.99427610391633,0.000484884166745043,0.00351646430491622,-0.289516913147321 +"Q9VBI2",-0.246891534909135,22.141419187168,-4.98895199453914,0.000488809513100106,0.00352958557511245,-0.297918776345695 +"Q9VGW7",0.37420971159499,16.7559572556592,4.97112216203274,0.000502202742888832,0.00361066454801109,-0.326084282350939 +"P14318",-0.393555797243792,22.1056439605307,-4.94876395957959,0.000519550719195424,0.00371935879664364,-0.361465380818464 +"Q7JRN6",-0.545520032585875,14.7424279930585,-4.94204301864649,0.000524889117552109,0.00374151729947401,-0.372114544917021 +"Q9VZG1",-0.276948482443618,17.8075359182889,-4.93784551634455,0.000528252685679803,0.00374947012644218,-0.378768545031543 +"Q95SS8",0.320790413506248,15.5037660873177,4.93456811576944,0.000530894859291157,0.00375225688685445,-0.38396566284121 +"Q8SYJ2",-0.268878952512011,22.5654017784584,-4.91763674967664,0.000544769847955336,0.00383407639826793,-0.410838039157288 +"P91927",-0.431509120876768,19.3059788335788,-4.91369947728978,0.000548051220249255,0.0038381482054517,-0.417092678018852 +"Q9VWL4",-0.270616541976862,16.181989265368,-4.91143198306844,0.000549950492267959,0.0038381482054517,-0.420695721784943 +"Q9VFS8",-0.342733959702052,17.2701073535087,-4.90288124005482,0.000557175743928289,0.00387237142030161,-0.434289188730324 +"Q9VGZ3",-0.372253472727518,16.7664689786546,-4.89578274773263,0.000563250388460431,0.00389834708693776,-0.445581576547219 +"Q9W0Z5",-0.390466526975171,16.9830586549244,-4.8921904153703,0.000566351328421531,0.00390361163556658,-0.451298945817862 +"Q9VH66",0.296141210341435,16.766556235855,4.87670415565645,0.000579928079720575,0.00398074089289679,-0.475966303117679 +"Q9VA37",-0.309160243702816,21.8216105560219,-4.86176133899587,0.000593356082761458,0.00405622109035292,-0.49979911931759 +"Q9V9Q4",-0.280718780028256,19.1598922737278,-4.85410338732579,0.00060036517401425,0.00408738412349294,-0.512024861297352 +"M9PF16",0.206323237776346,21.2384936964768,4.84579626395715,0.00060806783040971,0.004108734530706,-0.525296025746083 +"O76742",0.380940291480137,18.0312242183932,4.84541087016024,0.000608427715278407,0.004108734530706,-0.525911945175666 +"Q9W3E2",-0.544142213058361,17.7562928421416,-4.82554154866471,0.000627291341277064,0.00421904015020219,-0.557693573049971 +"Q9VWH4",-0.217193493714063,24.3988213544061,-4.81395820533934,0.000638573653781542,0.0042776741144884,-0.576246226378458 +"Q7K204",-0.554036191917598,14.8815565836225,-4.80598456698764,0.000646464942509613,0.00431321409642414,-0.589027892715245 +"A1Z992",-0.509268039550674,14.2200372849405,-4.77081123954504,0.000682528963467042,0.00453569048232281,-0.645512815970689 +"Q9VCE1",-0.366889293797458,13.6712485490011,-4.74893436659026,0.000706030188142716,0.00467324743580179,-0.680728830971673 +"Q9VDH3",0.238474959797692,20.5601536154755,4.74127522765725,0.000714459312966196,0.00471034835584037,-0.693073177050612 +"Q7K3J0",0.222138372436913,20.3669773350983,4.72994801911577,0.000727121158137734,0.00476080144928002,-0.71134376515431 +"Q9VXN3",-0.264374686120691,16.9427403797677,-4.72932861046506,0.000727820365447486,0.00476080144928002,-0.712343353893231 +"Q9W1I8",-0.260170151938485,17.9261588131717,-4.71458732414075,0.000744672578611234,0.00482713392423924,-0.736147607447192 +"Q8MLS2",0.215791353962722,17.4029210571991,4.71446581171655,0.000744813195763242,0.00482713392423924,-0.736343946009555 +"Q8MZI3",0.549297668779911,17.7679037356023,4.71288680663763,0.000746643017058588,0.00482713392423924,-0.738895465015955 +"Q7JVK6",0.31929508615044,17.3515179331666,4.69834356883982,0.000763721830505617,0.00491848653777362,-0.762411483224414 +"Q7KUT2",0.277116799241213,18.161545579563,4.69554879239752,0.000767050972528054,0.00492092700837228,-0.766933771149318 +"Q9VFS4",-0.375025967631645,15.3165897074241,-4.67782249365633,0.00078852737851123,0.0050393243960028,-0.795641120073308 +"Q9VU04",-0.375304071729021,16.6031801150492,-4.67247007418213,0.000795136497026277,0.00506216670625889,-0.804317394401113 +"Q7K012",0.332555045579966,15.5556889374769,4.65982726393791,0.000810981523547837,0.005143411335657,-0.824826365027183 +"Q9VCX3",0.518069878327685,12.8291074877683,4.63427501470087,0.000844034233525054,0.00533276174818103,-0.866340831080639 +"Q9VCK6",0.405782359578184,16.5166414638947,4.61696465350395,0.000867233112739593,0.00544592785813704,-0.894513236379287 +"Q9VAN1",-0.313730014222168,14.7424021381588,-4.61437477566449,0.000870761561664305,0.00544592785813704,-0.898731584439838 +"A1Z7K8",-0.240260258502811,17.5933661276658,-4.61365838392593,0.000871740250673016,0.00544592785813704,-0.899898584694895 +"Q9W4I3",0.298724800702258,16.505960022241,4.60712931221114,0.000880713627087984,0.00545019813099186,-0.910537495124884 +"Q9VQI7",-0.234208508299027,19.1668105461563,-4.60654285668783,0.000881524400241169,0.00545019813099186,-0.911493375978234 +"Q9VSY6",0.28111586549047,17.663550833018,4.60603560096132,0.000882226316167747,0.00545019813099186,-0.912320202742518 +"P13060",0.24994804024459,20.2068804301642,4.59535939928251,0.000897137396119316,0.00551095407833947,-0.929730140178327 +"Q9W1F8",-0.222850430221275,17.7024324314394,-4.59427358272465,0.000898668770568547,0.00551095407833947,-0.931501633210011 +"Q24238",0.305426849564324,16.3330490844813,4.56997518623506,0.000933670287700842,0.00570462285672163,-0.971183860902861 +"O02649",-0.239086046145832,23.3128684865054,-4.54493487459697,0.000971251184396058,0.0059125802028198,-1.01215702307564 +"Q9VL01",-0.313739684025208,20.48499878342,-4.54061490143744,0.000977894637674467,0.00593137547505822,-1.01923384442395 +"Q9VZ64",-0.228970073097155,19.4213569768199,-4.53537625847035,0.000986015294139443,0.00595546728828773,-1.02781878475243 +"O18333",0.288581897579981,17.4998411329893,4.5334574867957,0.000989007457347543,0.00595546728828773,-1.03096408699697 +"Q9W260",0.262923708272538,17.3936169473681,4.52727341816897,0.000998716402062627,0.00599229841237576,-1.04110436140914 +"Q9VEV7",0.607278813553421,12.8928523517671,4.52057853756359,0.00100934084049749,0.00603433878835057,-1.05208770370246 +"Q9VI09",-0.308569113344667,20.1575178399157,-4.47750939931119,0.00108060495751943,0.00643731810408005,-1.12288030937658 +"Q9W1G0",-0.22134487537345,21.7374149092873,-4.46899540706913,0.00109531059318564,0.00650170131471048,-1.13690226375465 +"Q9VN01",0.29816099880558,16.0477089479542,4.44174165782928,0.00114382007835502,0.00676557408048288,-1.18184789630409 +"Q9VSN3",-0.238864952753183,20.8764647617761,-4.43801285026791,0.00115063119313366,0.00678181212066056,-1.1880044250797 +"Q9VWI0",-0.254338961190225,20.9856061567575,-4.42873039887314,0.00116777306313043,0.00685861080739984,-1.20333785952334 +"Q9VIQ5",-0.40409763903163,16.5531611775232,-4.42402536604106,0.00117656443216271,0.0068758904152926,-1.21111402456352 +"Q9VAD4",0.298986027666,13.3195946212322,4.42274990813821,0.00117895962756216,0.0068758904152926,-1.21322248465136 +"Q8IQ70",0.287705873004779,18.0309499848255,4.41382902835372,0.00119585656380052,0.0069501350119138,-1.22797516851638 +"Q9VIK6",-0.274023036206048,16.6281570655669,-4.39510940701582,0.00123214817168109,0.00713619149431965,-1.25896387117317 +"Q9VCH5",-0.191039325409928,18.012099179812,-4.37008800205424,0.00128247848476162,0.00739101410649862,-1.30045102460468 +"A1Z847",-0.291619421326342,20.1326773785427,-4.36885767902471,0.00128500844777254,0.00739101410649862,-1.30249293039028 +"Q9VW34",0.283491617316841,18.3949451692373,4.35438077892161,0.00131517572244403,0.00750533510151227,-1.32653316530102 +"Q9VEN3",-0.232584309960096,17.5907609103476,-4.35375519449568,0.00131649601713791,0.00750533510151227,-1.32757257199318 +"Q9VNW0",-0.527409600156286,14.698542230532,-4.35002411366023,0.00132439948601356,0.00750533510151227,-1.33377272282602 +"Q9W3M8",0.257032818436077,18.5933546245238,4.34876443509901,0.00132707910078252,0.00750533510151227,-1.33586637811582 +"Q9V8F5",-0.339228126635172,16.0703272697061,-4.34862202046907,0.00132738240704204,0.00750533510151227,-1.33610309100066 +"Q9VZD9",0.488771420903721,14.4780193754072,4.3455735086151,0.00133389247521644,0.00751666435358451,-1.34117072076091 +"Q9VXK7",0.212480778405748,18.1095396777029,4.32001853642574,0.00138980441664327,0.00780536621872383,-1.38369489602707 +"Q8SWS3",-0.373762531835172,16.5248598142761,-4.30132337942291,0.001432266427472,0.00801684698329963,-1.4148529500596 +"Q86BS3",-0.259060900171125,18.9698418694989,-4.28758496692296,0.00146433881269831,0.00814056663073957,-1.43777597449684 +"Q9VCR4",-0.388765555690753,14.9898645173122,-4.2857612969654,0.00146865261787339,0.00814056663073957,-1.44082048393446 +"Q9W5W7",0.331453081626757,14.8810255339074,4.28196555234658,0.0014776741752113,0.00814056663073957,-1.44715849371585 +"Q8I099",0.249880453281232,16.8062728045611,4.28182103621658,0.0014780188039639,0.00814056663073957,-1.44739983502813 +"Q9VSN9",0.238909878327231,16.5024181720901,4.2761866079308,0.00149152135485326,0.00814056663073957,-1.45681119140793 +"A1ZAA9",0.215802425654715,16.6240442186954,4.27325970150332,0.00149858661945896,0.00814056663073957,-1.46170154106552 +"Q9W4P5",0.241229927967741,19.6598627976309,4.27210632620427,0.00150138040941381,0.00814056663073957,-1.46362890158284 +"Q9W3H4",-0.255794964921673,19.5446879923339,-4.26956427976181,0.00150755728831479,0.00814056663073957,-1.46787735822839 +"Q9VZI3",0.264052063178648,14.3789312074502,4.26936482388144,0.00150804307185228,0.00814056663073957,-1.4682107352202 +"Q9VX69",-0.445344757763817,18.2017974902117,-4.2669843643878,0.0015138535015238,0.00814056663073957,-1.4721898657752 +"Q9VF15",-0.277340522695116,20.8456012489903,-4.26660371618058,0.00151478480030542,0.00814056663073957,-1.47282621055323 +"Q9VLS9",-0.299242476853294,18.9671779949702,-4.26549982519433,0.00151748900098008,0.00814056663073957,-1.4746717234105 +"Q9VMD3",0.248619105836427,17.7312651630121,4.26536669160173,0.00151781548091127,0.00814056663073957,-1.47489430899082 +"P09180",0.208119300831846,20.5876678907512,4.26162628544068,0.00152701821579064,0.00814496808157317,-1.48114871364074 +"Q8MR62",-0.264923869115936,17.6719210883795,-4.26106578793567,0.00152840228389233,0.00814496808157317,-1.4820860707151 +"Q9W266",-0.250565509279614,18.4661180478504,-4.25844139166161,0.00153490041425706,0.00815354742350566,-1.48647550193389 +"Q9VVL5",0.235289580055934,17.314652758469,4.25399635571384,0.00154597285214007,0.00818629434085597,-1.49391184315479 +"Q9V3L6",0.290555000340756,15.8087979639948,4.24779130010023,0.00156156999812441,0.00824271758503646,-1.50429639615448 +"B7Z0Q1",0.258544938430077,17.7372319675798,4.23544477592529,0.00159309826408975,0.00837908253976504,-1.52497213710379 +"Q9VE50",-0.402572325007242,14.6335216585922,-4.23376043262506,0.00159745098779693,0.00837908253976504,-1.52779411497854 +"Q961B9",0.294553723625649,14.9511909091529,4.22950416810124,0.00160850589699881,0.00841062017615677,-1.53492656591355 +"A1Z6L9",0.42317689549466,15.2128805331913,4.22086679258685,0.00163118769508139,0.00849131146692445,-1.54940697082943 +"Q9VH98",-0.293625711540098,17.0702290275465,-4.2194380861524,0.00163497174558544,0.00849131146692445,-1.55180298197141 +"A1Z6P3",-0.21471416772112,17.2439564200068,-4.21718676141233,0.00164095328970346,0.00849131146692445,-1.55557903050526 +"Q8SX89",-0.387290657472576,15.4983298505622,-4.21593061752997,0.00164430072171259,0.00849131146692445,-1.55768615327787 +"A1ZA23",-0.192406854999668,18.3436410059318,-4.21175119765843,0.00165548994968457,0.00852270751874648,-1.56469821002413 +"Q24319",0.360631693535554,16.407598378186,4.20421599135527,0.00167586582946366,0.00860105908783198,-1.57734540823318 +"Q6IHY5",-0.21881421406885,20.9493898108014,-4.19729409792055,0.0016948153238576,0.00867163177973765,-1.5889687985775 +"Q9VV46",-0.466017172177143,23.8606421778444,-4.1947641155657,0.00170179745974796,0.00868072832678774,-1.59321852934701 +"B7Z0C9",-0.21959498139398,15.9848314618686,-4.19151252135461,0.00171081543399347,0.00870012238994242,-1.59868142941382 +"Q9VJ68",-0.351088140840915,17.8060703427041,-4.18823886330275,0.00171994528136222,0.00871996574259023,-1.6041825823958 +"Q95RI2",-0.43707851704489,16.7551910613106,-4.1848391528752,0.00172948081714327,0.00874173940301506,-1.60989681300623 +"A1Z968",-0.25007248548242,17.1627640152448,-4.17724663602391,0.00175097722540199,0.00882365562528857,-1.62266291581708 +"Q9VM12",0.242195126366429,18.9156264110288,4.17392965852959,0.00176045628481462,0.00882624616926151,-1.62824209355209 +"Q9W5B4",-0.437095645941714,18.6470192096055,-4.17336533554627,0.00176207432515832,0.00882624616926151,-1.62919140881068 +"Q9W414",0.199496933106921,19.5209696951664,4.16666781482393,0.00178139720217765,0.00889631896177343,-1.64046077704592 +"Q9VJZ6",-0.296586678101651,19.7057657086772,-4.16268589676766,0.00179299060491687,0.00891725808029667,-1.64716315039186 +"Q9VMT5",0.335347051188954,16.4770167758862,4.16156027240208,0.00179628220322523,0.00891725808029667,-1.64905811771039 +"Q9VK12",-0.257352242494832,22.335361646332,-4.13730927306041,0.00186875872942387,0.00922711456787894,-1.68991762848963 +"Q9V393",0.372705680046884,15.861809287001,4.13698020002558,0.00186976302394669,0.00922711456787894,-1.69047250709717 +"Q9W227",-0.179415151368122,21.954687781171,-4.13392975474781,0.0018790996249518,0.00924583532277168,-1.69561668162171 +"Q27272",-0.33444238684115,15.6021802627574,-4.12991966822792,0.00189144785391188,0.00927922064801473,-1.70238068403323 +"Q7KUA4",-0.214540315869375,18.7689083560596,-4.12455360125463,0.00190810476523836,0.00931148634559632,-1.71143457576252 +"Q9VPF6",0.299110153727517,13.9256222289471,4.12420580888924,0.00190918964639924,0.00931148634559632,-1.71202149428258 +"Q9VNZ3",0.883797303968695,15.3491691268023,4.11533469773615,0.00193708129943816,0.00940712997548245,-1.72699633260508 +"Q9VD02",-0.248834890006574,18.2700987234306,-4.1143890602963,0.00194007956328895,0.00940712997548245,-1.72859310497121 +"Q9VR79",0.339156062991272,20.1361496749213,4.10869556497923,0.00195823460244592,0.0094634517358957,-1.73820895731641 +"Q9VB46",0.396343096592275,15.2514540147666,4.10719716027442,0.00196304214665462,0.0094634517358957,-1.74074021152022 +"Q9VRJ6",-0.256559338362409,15.7462232218209,-4.1040492409722,0.0019731823888413,0.00948492283742734,-1.74605876182435 +"Q9I7K6",-0.278780094355412,16.2267341356931,-4.08580201114167,0.00203305240951788,0.00974463051458572,-1.77690878043592 +"Q9VHD3",0.221657854056906,15.6926654973662,4.08028914947255,0.00205151231840815,0.00980493566505671,-1.78623604426925 +"Q9VJD0",0.256501457569691,16.0989445338959,4.06458946326459,0.00210505097583283,0.0100320715076833,-1.81281574135997 +"Q9VXN4",0.248329320423585,14.9488780574788,4.05845171219521,0.00212637771285718,0.0101048376781931,-1.82321390325914 +"P54185",-0.373529236940509,17.3413432621353,-4.05453434615039,0.00214010745917257,0.0101411910281245,-1.82985245513326 +"Q9VGP7",0.368835492726754,15.9119983346076,4.04971704230501,0.00215711866500197,0.0101928440034654,-1.83801822979823 +"Q9VLR5",-0.465003244316215,16.9294892035686,-4.0458746401809,0.00217078866324975,0.0102284618370073,-1.84453314821765 +"Q9U9Q2",-0.216782679439065,15.5831075909112,-4.04104115458857,0.00218811347108019,0.0102810514641176,-1.85273060698516 +"Q500Y7",-0.218702672354365,20.093010570554,-4.0359783587515,0.00220641542183933,0.0103379239427753,-1.8613195014807 +"Q9VDD1",-0.396368651102014,14.3372789099959,-4.029208264327,0.00223113988154546,0.0104244854969687,-1.87280881354257 +"P05031",0.600836507257874,13.5767994139783,4.02335599039344,0.00225274600395639,0.0104960344541879,-1.88274422409727 +"Q9VXN2",-0.375230240013316,18.4971098614017,-4.0158649705757,0.00228072205930808,0.0105967810443618,-1.89546672055056 +"Q9VLT3",0.183032944732101,19.4175425222551,4.01398194689614,0.00228781141223143,0.0106001928766723,-1.89866566187676 +"Q9VGL0",-0.289125064455819,12.8425925400498,-4.01036112568977,0.0023015081970015,0.0106341154365609,-1.90481781678646 +"Q94915",-0.41364643709883,16.9675160309859,-4.00824750526392,0.00230954317915417,0.0106376534427851,-1.90840967875667 +"Q6NMY2",0.393661668385135,20.1133569133105,4.006121288849,0.00231765564538877,0.0106376534427851,-1.91202339102007 +"Q9VSL5",0.286202272691128,17.5682904574253,4.0047389571304,0.00232294583695795,0.0106376534427851,-1.91437303763112 +"O18332",0.264203818072509,20.6801583420006,4.00097085608246,0.002337430594778,0.0106376534427851,-1.92077889896396 +"Q9VJQ6",0.381189958789674,14.4953821611852,4.00081893907425,0.00233801654749858,0.0106376534427851,-1.92103719073828 +"Q9VAN7",-0.216634703085941,23.7416227146676,-4.00016544675062,0.00234053885701566,0.0106376534427851,-1.92214829486356 +"P00408",0.178428662164002,21.4085415765013,3.99617334453558,0.00235600922598924,0.0106788679047556,-1.92893679861839 +"Q7KVQ0",0.376569264783445,15.6253681352992,3.99275907760126,0.00236932514586251,0.0106860857011438,-1.93474393956478 +"Q9I7J0",-0.276712706381289,20.9906771004296,-3.99248060044677,0.0023704146938988,0.0106860857011438,-1.93521763639788 +"Q95SI7",-0.204224715156379,21.2383177899522,-3.96917346108456,0.00246348630015717,0.0110757281635099,-1.97489032177743 +"Q9VAY3",0.318412369322765,13.9808073984718,3.96584711185246,0.00247707746907281,0.0111068957484232,-1.98055659237294 +"Q9VN73",0.216966172857155,18.4107303888028,3.95661031823371,0.00251523051524114,0.0112477332424188,-1.99629654098604 +"Q9W4K0",0.232914415851432,19.7322088023233,3.94642288311207,0.00255802291769667,0.0113836609473901,-2.01366579993277 +"Q9V3Y7",-0.47975706381532,19.5490173916781,-3.94612718577569,0.00255927629212907,0.0113836609473901,-2.01417010064803 +"Q9VG92",-0.288903689502067,16.4991472414224,-3.9374048923967,0.00259653744366927,0.0115186820639371,-2.02904932906767 +"Q86BM0",-0.200776959948197,17.4528342251999,-3.92614023747304,0.00264549929857919,0.0117047555173212,-2.04827601796579 +"A1ZBU8",-0.229751543277022,20.7934854746034,-3.92054189315058,0.0026701900705766,0.0117827434860364,-2.05783572294881 +"Q9W392",0.192435777834248,19.9800686651496,3.91737893863081,0.00268424608141247,0.0118135157356095,-2.06323804168209 +"Q9VRP3",0.297875493978168,18.0085763060275,3.90338692181945,0.00274735840321691,0.0120594574120153,-2.08714732665849 +"Q7KTG2",0.229146351179292,18.0469619309,3.90143062784674,0.00275630504389927,0.0120669732630551,-2.09049161909691 +"Q9VTU2",-0.189140093158016,20.8704608307966,-3.88804729847283,0.00281833132003423,0.0123062215754374,-2.11337970455668 +"Q27377",-0.422820358633789,19.9948450259028,-3.88301790842758,0.00284201526539004,0.0123772361949624,-2.12198507245129 +"Q9VWW2",-0.350915569127467,15.1202617220001,-3.87675065036809,0.00287181921919124,0.0124744647333619,-2.132711590376 +"Q9VA34",-0.300510298813832,14.3987562552137,-3.8700598903185,0.00290399701523591,0.0125814727828922,-2.14416675916433 +"P16378",0.216311301651842,20.4805134022107,3.85942813474401,0.00295590346209407,0.0127731786911215,-2.16237731013475 +"Q7K0E6",0.254950455986386,16.7261968780704,3.85349932554571,0.0029852682077259,0.0128667373914388,-2.1725367014196 +"Q9VCK0",0.312410536617222,18.1891109873577,3.85127015601684,0.00299638753027247,0.0128813773208621,-2.17635730890342 +"Q7K3W2",0.21996635721597,17.5519158356498,3.84850052748123,0.00301026286056396,0.0129077595152203,-2.18110481179446 +"Q9VW73",0.284805380261448,14.2298133172702,3.83126873361102,0.00309810820155219,0.0132503704620232,-2.21065702948288 +"Q9VD09",-0.486013798365779,14.5456340137454,-3.82235434980585,0.00314459635134868,0.013414799780178,-2.22595486775991 +"Q9W2M0",-0.212428086095155,17.7702037715669,-3.80575038221007,0.00323313179678984,0.0137573057067486,-2.25446627677881 +"Q9V9M7",0.236384479821631,18.3539368219049,3.8001921791867,0.00326334559813263,0.0138505355157385,-2.26401556922998 +"P40301",0.28697245476663,17.8163575200392,3.79493025235865,0.00329221967430563,0.0139376203470604,-2.27305815551053 +"M9NFC0",-0.274559316551095,19.809523432855,-3.79201089445084,0.00330835376915523,0.0139704660429137,-2.27807601751475 +"Q9VHX4",-0.188859773327302,22.8593909347255,-3.78603909738557,0.00334161421336037,0.0140752841108209,-2.28834261776904 +"Q7K8X7",0.278188220118945,19.5125774489963,3.76659038556733,0.00345236713344795,0.0145051596438065,-2.32179811156483 +"Q9V3Y0",-0.257885616509757,16.326290489854,-3.7648683769237,0.0034623555321155,0.0145105754461524,-2.32476172695366 +"Q7K188",-0.229332205438414,22.0035646016215,-3.76246581194623,0.00347634168343074,0.0145118268595384,-2.32889698048807 +"Q8IM93",-0.261564432093742,19.0786590339489,-3.76180855283641,0.00348017803619736,0.0145118268595384,-2.33002832164117 +"O77263",-0.221211210276827,15.5301983173462,-3.76034191267537,0.00348875453877392,0.0145118268595384,-2.33255297238375 +"Q7JXC4",-0.193414022939539,21.6541656509198,-3.75384761724047,0.00352699624219561,0.0146344023183639,-2.34373414382358 +"Q7KLE5",-0.186072757909564,21.4236381156513,-3.74892136681252,0.0035562949585199,0.0146879782378997,-2.35221778592589 +"Q9W1N3",-0.248346735087061,20.5501205035111,-3.74871632478349,0.00355751990893974,0.0146879782378997,-2.35257093508246 +"Q9VME1",-0.371327970341568,16.6098764624243,-3.74475042615616,0.00358129921327319,0.0147496471302214,-2.35940213360603 +"Q9VSR5",0.220702585136266,20.2097841191648,3.74101146324968,0.00360386910812858,0.0147839346405461,-2.36584353120715 +"Q9VNH5",0.221424926245174,17.0654352672484,3.74043682174608,0.00360735095845459,0.0147839346405461,-2.36683360375606 +"P20348",-0.359248641128257,17.4272303433328,-3.73165344785132,0.00366100808090236,0.0149670624483949,-2.38196991275125 +"P12370",0.305367028820129,20.7559990997669,3.72848347006358,0.00368057633633194,0.0150102721980481,-2.38743412201972 +"Q9VI75",-0.398074941871567,17.441755620619,-3.71773547782108,0.00374773612677104,0.0152468874620832,-2.40596636727558 +"Q9VUJ1",0.190776436051046,19.9923078679351,3.71333526836873,0.00377559723478966,0.0153228617703872,-2.41355587923841 +"Q24583",-0.189308699849299,21.2388733317095,-3.7099878548627,0.00379693626451805,0.0153720623524663,-2.41933046359808 +"Q9VP57",0.211827375350236,19.5541368805725,3.70656147328041,0.00381890841249024,0.0154195387738117,-2.42524211357958 +"Q9VSK9",-0.198502515674752,14.4874558706014,-3.70528127316132,0.0038271517100468,0.0154195387738117,-2.4274511022688 +"Q9VXF9",-0.176776152478508,17.4500926738035,-3.70280572516049,0.0038431443712108,0.0154466621956135,-2.43172300040046 +"Q9V3W0",-0.300605552314014,20.8403979854928,-3.70024911936307,0.00385973351565098,0.0154760468848698,-2.43613523496669 +"Q9VZE4",0.248232609515142,17.6718183901476,3.6982830758615,0.00387254120209946,0.0154901648083979,-2.43952858378061 +"Q9VE85",0.236279020140376,15.8013898726511,3.69290817356721,0.0039077813413524,0.0155937303286502,-2.44880694889943 +"Q9W3K9",0.346815441679922,19.3599620827627,3.67916711518024,0.0039993945745811,0.0159212175427238,-2.47253651533914 +"Q9VXZ0",-0.263776702464455,19.7021063322468,-3.67757172300837,0.00401017467783803,0.0159261222919853,-2.47529246309242 +"Q9VZJ8",0.409086433357576,14.8485853008966,3.67577203271764,0.00402237141465756,0.0159366164362204,-2.47840153432713 +"Q9VEP6",-0.185640936944132,18.5994897709731,-3.67076741459616,0.00405649105307467,0.0160337134514895,-2.48704847446565 +"Q0KIE7",0.630914072188274,14.1196381458357,3.66459084232512,0.00409901489245658,0.0161634913489777,-2.49772265808296 +"Q7JZW0",0.25452442346511,19.7611666657041,3.65719050953455,0.00415057333071677,0.0163281988576311,-2.51051509655093 +"Q9VMH8",0.179140629066403,18.8864274256239,3.65320211172798,0.00417863905671807,0.0163627529699553,-2.51741107717275 +"Q9VZ19",-0.41560679631937,20.1943976301587,-3.65315433018346,0.00417897647793821,0.0163627529699553,-2.51749369834775 +"Q9VH77",0.312844521185978,15.5721163750268,3.64806988753337,0.00421504342568079,0.0164635426804571,-2.5262862932459 +"Q9VF24",0.283622267893136,16.1309800081282,3.64400803360304,0.00424408830697348,0.0164635426804571,-2.53331173120006 +"Q961Q8",0.432334315373398,15.4807380893728,3.64287151138625,0.0042522522578937,0.0164635426804571,-2.53527766832667 +"Q9VWP4",0.306061439896787,15.1722850845769,3.64208719898715,0.00425789567864061,0.0164635426804571,-2.53663440779555 +"Q9VN02",-0.217477000419205,17.3114724439297,-3.64139970859039,0.00426284881240526,0.0164635426804571,-2.53782369299358 +"Q9VFC2",0.277723538611006,19.8348158330009,3.64050620502536,0.00426929512519674,0.0164635426804571,-2.53936940485145 +"Q95TN1",0.363894173276639,14.0419796930152,3.63988133539841,0.00427380934091004,0.0164635426804571,-2.5404504255508 +"Q9VYT0",0.156053239057805,18.3020186436602,3.63754264378221,0.00429074858365411,0.0164907111463941,-2.54449657196905 +"P36975",-0.301452210157365,22.2372431115329,-3.62291573696155,0.0043982819055276,0.0168584487149916,-2.56981037099082 +"Q9VCE0",-0.40866646471364,15.8518192206389,-3.6217937561721,0.00440664486794745,0.0168584487149916,-2.57175266645386 +"Q9VHN6",0.288850848273009,15.0242308509976,3.61165109168856,0.00448299720995151,0.0171068836510713,-2.58931450411577 +"Q9VYY3",0.182936300772734,17.5308990554737,3.61045443686716,0.00449209534722376,0.0171068836510713,-2.59138690946489 +"Q9VH76",-0.20663083646664,19.3296052678256,-3.59775095834536,0.00458986651300028,0.0174394016940421,-2.61339257920692 +"Q7K3Z3",-0.199778321377838,19.9061464163032,-3.59262163241503,0.00462996575261725,0.0175517792621945,-2.62228063324915 +"P32234",-0.212278467075542,16.685745592547,-3.59044832500841,0.00464706508093185,0.017576654319715,-2.62604699372734 +"Q9VLB1",0.336867296381619,16.7586880475341,3.58743730202215,0.00467086351127625,0.01762669759459,-2.63126558279316 +"Q95TK5",0.25275835077607,17.2252900583781,3.58515541686689,0.00468898297989982,0.0176551323035506,-2.63522081258842 +"Q9VCR2",0.297372883788514,15.5196688349656,3.58357616093558,0.00470156574242228,0.017662638870181,-2.63795834143463 +"Q9VZF9",-0.243719069873578,19.1089794764666,-3.57101311778995,0.00480291469424187,0.0180028353033605,-2.65974062153574 +"Q9W4W8",0.302351264969495,17.4355556152766,3.5663404286353,0.00484118453518158,0.0181055959746253,-2.66784460225453 +"Q9V431",-0.188489247062694,18.5004037208297,-3.56156655279042,0.0048806088542609,0.0181667604247072,-2.67612533926474 +"A1Z9I0",-0.188450396109054,19.4107284515063,-3.56066112545966,0.00488812355962433,0.0181667604247072,-2.67769603139346 +"Q9W1B9",0.41527051318862,20.5846347991985,3.56040961932512,0.00489021308794577,0.0181667604247072,-2.67813234030237 +"Q9W401",-0.182257811355015,24.4786463644169,-3.55448602764294,0.00493969456708891,0.0183098011953429,-2.68840950347095 +"Q95RA9",-0.165615501534738,20.5202422123078,-3.5529241989387,0.00495282699958318,0.0183177725838243,-2.69111952613461 +"Q9W4C2",-0.375078485700673,15.8559679929059,-3.54544247519693,0.00501623841600195,0.0185073902518629,-2.70410334866635 +"Q9W1R0",0.773187535478591,14.0734059385537,3.54426577602477,0.00502628764034405,0.0185073902518629,-2.70614567272549 +"Q9VRR3",-0.291311456069543,19.7337705121679,-3.54212434214978,0.00504462928945087,0.0185340124555155,-2.70986261683023 +"Q0KHZ6",-0.272997552757197,23.0911932318463,-3.5394468472332,0.00506765970965777,0.0185515563647716,-2.71451035915917 +"Q9VSL4",-0.174532399177711,20.9375812033228,-3.53898439154923,0.00507164850259943,0.0185515563647716,-2.71531315347699 +"P08182",-0.18267142609389,19.6889621815154,-3.53510869087262,0.00510520514125335,0.0186334402092136,-2.72204157122099 +"Q8IPW2",-0.162224102671622,17.1922404897284,-3.5319039827813,0.0051331254006246,0.0186944392319691,-2.72760570433326 +"Q9VAA9",-0.234428042484733,17.0910266953547,-3.52773196322351,0.00516970964755894,0.0187803653512476,-2.73485011706198 +"Q9W1L1",0.375375484280918,14.7999841704574,3.52662270465539,0.00517948193416287,0.0187803653512476,-2.73677641578052 +"P20432",-0.167611571906473,23.5614845870789,-3.52537500450525,0.00519049665882802,0.0187803653512476,-2.73894320247777 +"A1ZA22",0.667856748774152,13.512010914393,3.52158507084575,0.00522410286181622,0.0188378546642548,-2.74552538055763 +"Q9VEY0",0.235175477682667,17.9110938685526,3.52052157980409,0.00523357339411618,0.0188378546642548,-2.74737253245655 +"O61491",0.159935365778175,20.9604211869166,3.51977117417876,0.0052402665253083,0.0188378546642548,-2.74867592819193 +"Q9Y125",-0.241259232615818,22.6227830984005,-3.51131308191346,0.00531632134035177,0.0190701591305522,-2.76336891886166 +"Q9VDQ3",-0.540108562747498,13.2347964542374,-3.50724401784407,0.0053533153031103,0.0191257150502178,-2.77043876125758 +"Q8IRH5",-0.287572180355138,14.4123140805469,-3.50610954759967,0.00536367665546993,0.0191257150502178,-2.77241000391495 +"P17210",-0.177714422314079,20.8521212317906,-3.504843130112,0.00537526756427668,0.0191257150502178,-2.77461059046846 +"Q7PL91",-0.273557291902826,18.9008120814466,-3.50412741945851,0.00538182955005377,0.0191257150502178,-2.77585427730728 +"Q9VXK6",-0.322064404052028,17.8203774076181,-3.5033310981655,0.0053891403318959,0.0191257150502178,-2.77723806994912 +"A8JNG6",-0.7334284384018,15.7114531181878,-3.50041214411936,0.0054160261156987,0.019172642425466,-2.78231068954056 +"Q9VVP9",-0.240318948740526,16.6235821408519,-3.49940313137259,0.00542535205324936,0.019172642425466,-2.7840642680568 +"Q9VSA3",0.230194623245943,21.6855396364814,3.48565145565713,0.00555411848691386,0.0195509210441372,-2.80796830055135 +"Q9VDC6",0.291215540944801,16.937969038029,3.48473318200962,0.00556282842904694,0.0195509210441372,-2.80956481498945 +"P15425",0.223175862354378,17.0850927663226,3.48423512545499,0.00556755845081843,0.0195509210441372,-2.81043075437863 +"Q9VU35",-0.190583426697678,22.7438376938461,-3.48108646403653,0.00559755732240932,0.0196149697768461,-2.81590539450021 +"Q9W370",0.42679146436182,18.2421032461937,3.47462653058097,0.00565962734233386,0.0197908981279096,-2.82713881112457 +"Q9W3B3",-0.242545046210155,15.671339866835,-3.46615095671286,0.00574214270800548,0.0200374352237514,-2.84188010793356 +"Q9VQD7",-0.180026032819253,21.0021962050401,-3.46289680802763,0.00577415264337667,0.0201070701652449,-2.84754077699897 +"P07486",0.184540750154071,22.2325332583904,3.45662628259754,0.00583635335971361,0.0202574091226944,-2.85844978210464 +"R9PY51",-0.285280253876316,21.5459642941215,-3.4560990156944,0.00584161498082493,0.0202574091226944,-2.8593671586215 +"Q7JWD3",-0.260452218015798,17.15183859357,-3.45197072097261,0.00588298077207102,0.0203493035825724,-2.86655026167916 +"A1Z877",0.196585565031267,19.9946616831139,3.45102353224482,0.00589251416689597,0.0203493035825724,-2.86819844019514 +"Q9VKE2",-0.368290856598719,24.0459300039475,-3.44879267771569,0.00591503052615678,0.0203746622129134,-2.8720804384014 +"Q9VPX0",0.373291697596439,14.3817251458285,3.44787808327055,0.00592428727413848,0.0203746622129134,-2.87367201940878 +"Q9VQX3",-0.455639831117155,15.363387632514,-3.44017156570848,0.00600288126078621,0.0206024813641798,-2.8870842799019 +"Q7JR58",-0.189924345697566,22.8290580560676,-3.43867375605961,0.00601828073436692,0.0206129204618563,-2.88969131251653 +"Q9VR25",0.18300777846127,17.0186640061381,3.43348293501268,0.00607196485092128,0.0207541749412637,-2.89872694991221 +"Q9V9V4",-0.209227371851021,18.6082906320472,-3.43025753308603,0.00610557055264568,0.0208263633574908,-2.90434192053778 +"Q8SX68",-0.200475297050367,17.5819923829387,-3.42750192659131,0.00613443311223918,0.0208407401901301,-2.90913936032232 +"P40304",0.258248933649543,18.7576875807929,3.42746943778809,0.00613477424061984,0.0208407401901301,-2.90919592421903 +"Q7KN90",-0.186041787233416,17.2664010790091,-3.42616995125866,0.00614843471359417,0.0208446932973071,-2.91145839874795 +"Q9VZX9",0.170437508524653,18.5485652599297,3.40100528321072,0.00641923526929241,0.0216960612878726,-2.95528364617608 +"Q9VBV5",-0.230331870452702,17.1740040182668,-3.40042958281523,0.00642557210803901,0.0216960612878726,-2.95628651357866 +"M9PGG8",-0.205526462731115,18.4768028910806,-3.39247669079278,0.00651377241208003,0.0219494391582818,-2.97014156286883 +"Q9VR30",0.23600183033756,17.3224580915871,3.37589713744011,0.00670167105095824,0.0225370711955612,-2.99903210316455 +"Q9W3T2",-0.171919305153658,16.2826420092416,-3.37101663404065,0.00675803740030805,0.0226808981563658,-3.00753821265337 +"P35220",-0.214892755967732,19.3361756112223,-3.36502073223009,0.00682795336879654,0.0228695305605474,-3.01798929720092 +"Q9VK00",0.679543789561958,17.8481928166995,3.36138537708437,0.00687070538913116,0.0229666063909234,-3.02432636999293 +"A1Z9J3",-0.202613175415919,17.6088326224457,-3.35786519283355,0.00691236509528326,0.023059649957865,-3.03046303858342 +"Q9W3N7",-0.470851907746644,17.2516479646195,-3.34669471206057,0.00704628864264508,0.0234594999120399,-3.04993858540394 +"Q9VBT2",0.71450158439866,12.8900577220959,3.34401262911682,0.00707883915996321,0.0235209237426666,-3.05461524901496 +"Q9W0R0",-0.213671994507022,16.7072539768916,-3.34164288497133,0.00710772750431146,0.0235366663035531,-3.05874745247455 +"Q9VMB9",-0.207890820096654,22.5968051243714,-3.34130973563495,0.0071117984514333,0.0235366663035531,-3.05932838785239 +"Q9VVZ4",-0.407074232627444,15.7947052388473,-3.33838118667988,0.00714768727596275,0.0236085987649621,-3.06443522095078 +"Q8IPD8",-0.224986545644839,18.3132308231899,-3.33668207993233,0.00716859468736093,0.0236308615385732,-3.06739823911747 +"O46067",-0.159851136677155,19.7391607175898,-3.33253828234788,0.00721984751479398,0.0237491789890987,-3.07462477447729 +"Q7KN75",0.245845805028733,19.3799056571052,3.3314827139536,0.00723296338516916,0.0237491789890987,-3.07646568941552 +"Q9VIV6",0.644546565279585,14.7912804362585,3.32402468778677,0.00732633184140069,0.0240084901993249,-3.08947326447092 +"Q9VAN0",0.169774965661581,20.4317827130449,3.31667508668315,0.00741955302756886,0.0242663028431076,-3.1022929788027 +"Q8MRM0",-0.207375925904088,18.5296618039178,-3.31405972312845,0.007453018680715,0.0243280531495746,-3.10685517427859 +"Q9VPU6",-0.159761515581454,15.2615327091343,-3.31001831449466,0.00750503646261793,0.0244500016008725,-3.11390522405339 +"Q9VIN9",0.226925931699602,16.4050983996739,3.2957145986481,0.00769215204376023,0.025010739978542,-3.1388600350091 +"Q9W4W5",0.242060871145359,17.371055080369,3.28592881131648,0.0078229149289581,0.0253864243219885,-3.15593489442467 +"Q03427",-0.14043184536402,21.7367999195033,-3.28188074946361,0.00787767126635887,0.0255047080886458,-3.16299868908733 +"Q9W086",0.201032115638524,16.8082198231969,3.28039809012428,0.0078978246520469,0.0255047080886458,-3.16558596985633 +"Q9VF70",-0.152991316216998,15.9166029432823,-3.27985380197534,0.00790523626008985,0.0255047080886458,-3.16653577628429 +"Q9VIX1",-0.550796888876606,17.260360552921,-3.27019150065085,0.00803800082868936,0.0258771412208651,-3.18339767064674 +"A0A0B4KHJ9",-0.221209878418961,24.5701970479768,-3.2692037934608,0.00805170041584472,0.0258771412208651,-3.18512141800082 +"Q7K1W5",-0.160061182153282,19.7939368639035,-3.2523590936533,0.00828905363538547,0.0265628966938213,-3.21452079966197 +"Q9VBP6",-0.165775130019554,23.164683707806,-3.25180903603737,0.00829692396731468,0.0265628966938213,-3.21548088475447 +"Q9VY42",0.289187638795211,15.244530803861,3.24903705982841,0.00833670247165645,0.0265943804870957,-3.22031921679637 +"Q9VBU9",0.190502635987905,20.8520681583855,3.24890199373075,0.00833864568030638,0.0265943804870957,-3.22055496940295 +"Q9VFP0",-0.214926307863429,16.5221152661349,-3.24647506502419,0.00837364122112155,0.0266550258718144,-3.22479111211801 +"Q7K5J8",-0.185588120002755,18.3078090777864,-3.24405049881547,0.00840875275676526,0.0267158087586371,-3.22902319251804 +"Q8MT58",0.143667945754895,21.6107204410559,3.24243161063725,0.00843228063324132,0.026739627559404,-3.23184899486397 +"Q9VXE0",0.178968162107751,18.0057682360939,3.23631729324493,0.00852175132661327,0.0269720706125065,-3.24252188546992 +"Q9VSL9",0.536703905156083,14.683596430742,3.23128833446243,0.00859606738789917,0.0271557583390451,-3.25130046709729 +"Q9W0D3",0.204527425018894,12.7389913004853,3.22875193688627,0.00863380040565649,0.0271733191710486,-3.25572809549925 +"Q9VDV3",-0.174405988818764,17.5176680776486,-3.22872459177476,0.00863420812988953,0.0271733191710486,-3.25577583039293 +"Q9W3X7",-0.136711035978209,21.6756880363961,-3.22494329220931,0.00869077849896234,0.0272998465843111,-3.26237669431836 +"Q9VJI5",0.251283288115301,17.4692295494184,3.22159363552147,0.00874120771034332,0.0273126507907538,-3.26822413822741 +"Q9VM58",0.231369917866671,16.3932305349826,3.22123213664397,0.00874666794271246,0.0273126507907538,-3.26885520553799 +"Q7JWU9",-0.347323765596142,15.5154709123568,-3.22101891991291,0.00874989009307883,0.0273126507907538,-3.26922741761032 +"Q9VX36",-0.157098627555559,22.2412937215863,-3.22032714449711,0.00876035262173459,0.0273126507907538,-3.27043505065471 +"Q9VPZ5",-0.218914166449242,18.3623459960229,-3.20446405550157,0.00900380883561811,0.0279670276714284,-3.29812794036844 +"Q9VY05",0.237385835122073,18.2871483764362,3.20413008178824,0.00900900809375644,0.0279670276714284,-3.29871098429643 +"Q9VVN2",0.323209331024849,14.8793591344742,3.20339002684447,0.00902054010025688,0.0279670276714284,-3.30000295714794 +"O62602",0.296721733781947,14.6190590774705,3.2006080578007,0.00906402555281953,0.0280004909970004,-3.30485967681665 +"Q9W385",-0.239115006799327,16.8499880781625,-3.19815611258097,0.00910252984082649,0.0280004909970004,-3.30914026298099 +"Q9U6R9",-0.157326348178952,20.6029916051555,-3.19811289434072,0.00910321001750845,0.0280004909970004,-3.3092157131632 +"Q9W314",-0.355475007668066,16.2124549862021,-3.19797355475372,0.00910540332324133,0.0280004909970004,-3.30945897152781 +"P41375",-0.292185978305668,16.7079059293417,-3.19734729607617,0.00911526775262063,0.0280004909970004,-3.31055229136081 +"Q9VG69",-0.184294156507448,19.9964492506887,-3.19463660506142,0.00915809084498678,0.028080322664408,-3.31528461349894 +"Q9VXY3",0.164749469257561,18.0463191710917,3.19145500160248,0.0092086154984258,0.0281603150224947,-3.3208390690339 +"Q9VVE2",-0.183294598335888,18.3612817533568,-3.19086947021088,0.00921794484549288,0.0281603150224947,-3.32186129331611 +"Q24297",0.230136286961478,17.0147414690265,3.18885706038255,0.0092500824686559,0.0282068328294663,-3.3253745729673 +"Q9VTJ4",-0.163968327704261,15.6390254781176,-3.18110564338226,0.00937494294551879,0.0285354102794258,-3.33890706290626 +"A1ZB68",-0.227819846087588,19.340149445686,-3.17384311063578,0.00949348917145018,0.028803548766117,-3.35158601446978 +"Q7JYH3",0.230777043598405,19.3413255899531,3.17359457142609,0.0094975730343911,0.028803548766117,-3.35201991344564 +"Q7K1U0",-0.174588951912714,16.6679155407177,-3.16894952443399,0.00957422858978902,0.028983327201031,-3.36012919521637 +"Q7KSE4",-0.206220482220317,13.7984581829631,-3.16621351675432,0.00961967501148897,0.0290681484042819,-3.36490566476724 +"A0A0B4KI23",-0.157891210732956,20.5654978695248,-3.16344357567977,0.00966590924748517,0.0291550391045303,-3.36974134856689 +"Q9Y156",0.350645921850566,16.079437847558,3.16237143181459,0.00968386562541697,0.0291564762873565,-3.37161305878511 +"Q960M4",-0.227767086373976,23.2598301685563,-3.16040517626515,0.00971688513070525,0.029203179095525,-3.37504566463666 +"Q7K3E2",-0.281989765448216,20.5532626710589,-3.15268136040701,0.00984770697908997,0.029494868485935,-3.38852939642774 +"Q9VJ86",0.294434005500179,16.4866433572834,3.15258762477847,0.00984930560351665,0.029494868485935,-3.38869303197445 +"M9PF61",-0.156052870042679,22.7160971548803,-3.1505172110466,0.00988468323110412,0.0295477627768489,-3.39230736765208 +"Q9U915",-0.144104908868457,21.1141023329938,-3.14774561859321,0.00993224491011589,0.0295860891122656,-3.39714571375942 +"Q7JNE1",-0.144987648750835,17.8061660341541,-3.14770291414337,0.00993297955807477,0.0295860891122656,-3.39722026217037 +"Q7K2L7",-0.443046268003535,18.2722070435518,-3.14641416141433,0.00995517614515034,0.0295993472550994,-3.39947000940514 +"Q7K519",0.281769516796958,15.6558421613471,3.14201488235012,0.0100313278072079,0.0297726953423894,-3.40714964414177 +"Q9VZU4",-0.229608836648865,21.4267791681239,-3.1373405328422,0.0101128915422081,0.0299614619758493,-3.41530929214422 +"Q9NK57",-0.370410842630903,15.494648095279,-3.13057600334818,0.0102321252858492,0.0302609662709158,-3.42711726514702 +"Q9VVL8",-0.290317725181714,15.8704098730889,-3.12695017947799,0.0102966236515227,0.0303978199128139,-3.43344621891958 +"M9NDE3",0.174622930922339,16.1512827678999,3.1197003326262,0.0104268326796979,0.0306764398316356,-3.44610055766475 +"Q9VKG4",-0.218108254638537,15.9648277979956,-3.11920731613794,0.0104357480227191,0.0306764398316356,-3.44696107772021 +"Q9V3G1",0.201433014346495,21.0351754164604,3.11843327090334,0.0104497609393119,0.0306764398316356,-3.44831210462803 +"Q9VFF0",0.221759193158931,23.637382620403,3.11666672086873,0.010481813436788,0.0306764398316356,-3.45139543272476 +"Q8SXY6",0.201689704079808,19.1553901684378,3.11660384770597,0.0104829560575733,0.0306764398316356,-3.45150517053483 +"Q7KY04",0.317473047979185,14.0764434415011,3.110681569387,0.010591154527094,0.030938784152702,-3.46184159227009 +"Q9VFP1",0.455747061508761,15.7545845353601,3.10932879898268,0.0106160283338202,0.0309510908229651,-3.46420257846073 +"Q7KMS3",-0.329198573409311,15.543719190399,-3.10752111433615,0.0106493596089707,0.0309510908229651,-3.46735748546676 +"Q9W483",0.319819423647045,15.5345655628496,3.10670893231324,0.0106643698043193,0.0309510908229651,-3.46877495149006 +"P29829",0.233791992132918,21.399175294795,3.10628297959506,0.0106722505761183,0.0309510908229651,-3.46951834449798 +"Q9VAI9",-0.211108521695348,21.9643647966341,-3.1054247854246,0.0106881464712398,0.0309510908229651,-3.47101609794484 +"Q9VJ43",0.177414972756818,20.2210969520767,3.10361516751087,0.0107217441022834,0.0309945739386632,-3.47417427729693 +"Q95RS6",0.25448116101207,17.1693645397359,3.09960001292225,0.0107966742387057,0.0311280481218513,-3.48118142459522 +"O61443",0.25110137428217,16.4797767656809,3.0984804143558,0.010817662819412,0.0311280481218513,-3.48313527539285 +"P48375",-0.209558940161571,21.9563251389674,-3.09731504511298,0.0108395535236122,0.0311280481218513,-3.48516898101641 +"Q9VCC0",-0.23444678968378,17.4809737244541,-3.09715499252176,0.0108425635244578,0.0311280481218513,-3.48544828980237 +"M9PEG1",-0.285429495187945,20.3938645114464,-3.09604017607311,0.0108635527190277,0.0311347181019556,-3.487393751485 +"Q95SK3",-0.167526746622189,17.211267105623,-3.08036992972425,0.0111629943787252,0.0319089409725147,-3.51473755920079 +"A1Z9B5",-0.467683337404853,15.8380991709903,-3.07990759891217,0.0111719553524872,0.0319089409725147,-3.51554423503184 +"Q8MLP9",-0.397825370887976,14.9210282268772,-3.07885875427906,0.0111923113507886,0.0319124364668639,-3.51737424602021 +"Q9VVA6",-0.199694530731119,19.2468574417836,-3.07197380173414,0.0113268737040797,0.0322409988709983,-3.52938647727594 +"Q709R6",-0.346798708032594,15.1308553251443,-3.06625138659789,0.0114399651213118,0.032507430702467,-3.53936966490411 +"Q9VXG4",-0.157571751702228,19.914670997339,-3.06000933069921,0.011564634588364,0.0328058001588284,-3.550258577491 +"Q95RQ8",0.74603108025692,14.4383632307286,3.056356273748,0.0116382343619591,0.0329585312661252,-3.55663070907859 +"Q9VVT6",-0.152090111382915,20.4961778913781,-3.04748865133746,0.0118188788845478,0.0334133728464843,-3.57209740023869 +"O97062",-0.177149269027161,18.4777329819553,-3.04509891441686,0.0118680458515728,0.033495601489718,-3.57626517941586 +"Q9VWF0",-0.190607801568801,16.495546920011,-3.03849387869519,0.0120050216552223,0.0338249596637007,-3.58778378721809 +"Q9VJD4",-0.150907297084103,20.7705144012286,-3.03450438760022,0.0120885319309687,0.0340028183151026,-3.59474053231237 +"O96824",-0.243849395697325,16.7174118888194,-3.02690833341784,0.012249169425414,0.0343966575784354,-3.60798502300808 +"Q7K1C5",-0.179468614521941,17.4993698506647,-3.02233463383132,0.012346934024992,0.0346129175692213,-3.61595890348419 +"Q7JVZ8",-0.278428406352356,15.9815970399972,-3.01592601035624,0.0124852531129347,0.0348841324859809,-3.62713073552481 +"Q9VKU3",0.218547919479485,15.4910810123479,3.01524695611702,0.0125000010516317,0.0348841324859809,-3.62831442016377 +"O77134",-0.176236956544784,21.7108852269721,-3.01462394074955,0.0125135474475497,0.0348841324859809,-3.62940040824635 +"Q9XTL2",-0.23506841082574,16.9202986918514,-3.01292384206727,0.012550588902962,0.0348841324859809,-3.6323638132542 +"Q9VAG3",0.269627908560876,16.8121811389965,3.0128291760051,0.0125526547334486,0.0348841324859809,-3.63252882082729 +"Q9VEX6",-0.151496031129494,20.7757661654219,-3.01124651322666,0.0125872431416678,0.0348841324859809,-3.63528743566904 +"Q9VEC8",-0.203576703449615,16.5023516164629,-3.01111705827078,0.0125900765926622,0.0348841324859809,-3.63551307474202 +"Q9W445",-0.158141569067412,16.4557741783517,-3.00979960685778,0.0126189491488938,0.0349061478944525,-3.63780935152301 +"A0A126GUP6",-0.33147292884728,16.9968737456749,-3.00553942083275,0.0127127731004239,0.0351074594892501,-3.64523432304508 +"Q9VQR9",-0.247990702182364,16.2032727453791,-3.00263296403793,0.0127771885071535,0.0352162058604772,-3.65029955705145 +"A1ZB79",-0.18416795071527,20.8075408090073,-3.0018599208849,0.0127943769493101,0.0352162058604772,-3.65164673022199 +"Q7KN94",-0.145848039819526,22.647662224017,-3.00082502827333,0.0128174242234326,0.0352215215892678,-3.65345019248973 +"Q23983",-0.176161595930704,22.3784848701184,-2.99155827044402,0.0130256797556676,0.0356744288425925,-3.66959725442247 +"Q2MGK7",-0.261053092308668,17.1218630694846,-2.99007736038359,0.0130592769179093,0.0356744288425925,-3.67217740592918 +"Q9VY87",0.376776984680909,17.650740207139,2.98921950340284,0.0130787790895235,0.0356744288425925,-3.67367199044387 +"Q9VVU1",0.257985751211709,22.2599620065146,2.98905988284511,0.0130824110900573,0.0356744288425925,-3.6739500831719 +"Q9GYU8",0.547637078848053,12.7160188015424,2.9887625669354,0.0130891789278577,0.0356744288425925,-3.67446806772167 +"Q24478",-0.386624343347052,17.383932797162,-2.98536384697691,0.0131667966594521,0.0358274336508419,-3.680389087442 +"Q9VPC1",-0.268217151119568,16.107080994691,-2.97822708666423,0.0133313007161046,0.0361853783547092,-3.69282080872523 +"Q9VU92",0.245750107478447,17.7389260447854,2.97696482715077,0.0133606118093758,0.0361853783547092,-3.69501936354164 +"Q9VQR2",-0.154580192753652,21.3432358639661,-2.97684382236034,0.0133634250998207,0.0361853783547092,-3.69523012163917 +"A8JNT7",0.202110111436436,16.8484129296343,2.96620420701607,0.0136131471640999,0.0368018305830122,-3.71375914383919 +"E2QCN9",-0.175799871960781,17.357653424546,-2.96444176197174,0.0136549667618047,0.0368551530075893,-3.71682800495806 +"Q9VL16",-0.16300391734805,20.742913269403,-2.95872238270186,0.0137915739411738,0.0371637242873634,-3.72678596025989 +"Q9W127",-0.194989240625997,18.6438369047256,-2.95690027177775,0.0138353845248774,0.0372075176860997,-3.72995811789303 +"Q09101",0.219367205289551,14.6800819489907,2.9561925356642,0.0138524391385299,0.0372075176860997,-3.73119019320275 +"Q9VSX2",-0.177552898803857,17.9673978284464,-2.94793864528943,0.0140529122809969,0.0376853017438953,-3.74555745317308 +"Q9VBU0",0.26464571334872,14.2846563424297,2.93830515616459,0.0142906039188691,0.0382611995773253,-3.76232211373464 +"A1ZB69",-0.218352506888397,20.4066737873166,-2.93347244446395,0.0144113688503122,0.0385074524109491,-3.77073054260534 +"Q9VVK7",-0.184393437254293,18.1730596860544,-2.93278019617352,0.0144287516527837,0.0385074524109491,-3.77193489004404 +"Q9V7D2",-0.205800611109165,21.3645060127884,-2.92984923203405,0.0145025848967636,0.0386217115705323,-3.77703380519346 +"Q9VRP4",0.355282302539392,14.3566133295476,2.92924419806501,0.0145178735939591,0.0386217115705323,-3.77808631178313 +"Q9VEB1",-0.134201238114258,25.1796611802665,-2.91802610014139,0.0148043107004804,0.0393210035802569,-3.79759771039901 +"Q9VH26",-0.200831119287564,18.296763868537,-2.9170453025096,0.0148296233468509,0.0393256148530163,-3.79930327756473 +"Q9VSC3",0.329361310570061,17.5222841462521,2.91338567062926,0.0149244579221423,0.0395142790700529,-3.80566677386804 +"Q9VCW2",0.250658209300116,15.3391660023315,2.9077196242977,0.015072494172426,0.0397213288999326,-3.81551765926728 +"Q8T0Q4",-0.182844701165362,19.9738533579807,-2.90764342044066,0.0150744952017918,0.0397213288999326,-3.81565013387618 +"Q7KUC2",-0.179507307064231,19.3242870998561,-2.9068015880483,0.0150966186252884,0.0397213288999326,-3.81711357400899 +"Q9VKI8",-0.141399093697192,22.3544367745142,-2.906752290563,0.0150979151813892,0.0397213288999326,-3.81719927146077 +"A1Z6R7",-0.156268359327393,17.9627432315327,-2.90380287384605,0.0151756914061669,0.0398630760086399,-3.82232621287982 +"Q9VJI9",-0.413087210214389,17.6350136104346,-2.90147429164663,0.0152373814356153,0.0399621890481232,-3.82637361817948 +"O96299",0.291610682449335,15.6805229542608,2.89534887536631,0.0154008689002113,0.0403275499616209,-3.83701897938646 +"Q9VK60",-0.168099646166027,21.3560619850298,-2.89229957570799,0.0154829126253295,0.0404418417321106,-3.84231754628097 +"Q02748",0.15551397019599,19.58789366328,2.89192549929824,0.0154930077139201,0.0404418417321106,-3.84296751659498 +"P48148",0.233437083474676,20.6127659633526,2.87757905447837,0.0158852153782331,0.0414008425795201,-3.86788860412016 +"Q5U1B0",-0.347451468125268,14.6916270418667,-2.87361099313664,0.0159954500484488,0.0416231055862911,-3.87477925564145 +"Q9VKZ8",0.185521980312448,18.7710431696598,2.87131254567284,0.0160596538892481,0.0417250820673923,-3.87877012093992 +"Q9V4S8",-0.301145399177074,17.0797515823241,-2.86725473023865,0.016173636967383,0.0419018496855507,-3.88581500758857 +"Q9VM07",0.223645669565354,16.8725476346678,2.867102376369,0.0161779323725987,0.0419018496855507,-3.88607949275173 +"Q9VF27",-0.128046293408776,22.2656508259571,-2.86538168165803,0.0162265247274309,0.0419625476672165,-3.88906650126892 +"Q9VNI4",-0.203152216286265,16.5180192375297,-2.86224061195841,0.0163156074427392,0.0421276055951842,-3.89451868583993 +"P92177",-0.203840307343672,24.1380014825053,-2.8576779109062,0.0164458856355789,0.0423983574036254,-3.90243734102402 +"Q6IGM9",-0.665461922380437,14.8174208441999,-2.85521419136728,0.0165166663773343,0.0425151227120272,-3.90671259589541 +"Q9VVG0",0.156087417207711,18.0868285273628,2.85389450405642,0.0165547058785781,0.0425383294204113,-3.90900246089111 +"O62530",-0.16143414338582,15.6831720575908,-2.85313330797494,0.016576687124261,0.0425383294204113,-3.91032320213386 +"O97477",0.164796504065535,20.9218186361389,2.85161247992063,0.0166206923782678,0.042585737153534,-3.91296185271215 +"P48604",-0.173626433931688,20.1115545636477,-2.84809648585473,0.016722878054375,0.0427818414029102,-3.91906152819125 +"Q9W5W8",0.155965114105488,20.6603429621927,2.84487635011903,0.0168170191593478,0.0429567962600186,-3.92464718804386 +"Q8MSS7",0.451890920297831,14.0208460031926,2.84218634075996,0.0168960701729751,0.0430624071199238,-3.92931273322629 +"Q9W1E8",-0.212337812546664,15.3996933463991,-2.84171370468145,0.0169099979997303,0.0430624071199238,-3.93013241940505 +"Q9V3Z4",0.184232608886816,18.810966981645,2.83946132187041,0.0169765307699563,0.0431659349455595,-3.93403847830894 +"Q9VDV2",0.393639544939722,14.3880486713271,2.83487407582386,0.0171128471246035,0.0434463150743357,-3.94199251301294 +"Q7JPS2",-0.25042431696772,20.8106953540243,-2.8299828105425,0.0172594093628419,0.0437518158316417,-3.95047202422113 +"Q9V6Y3",0.223077103674843,15.1821871889373,2.82364933066828,0.0174510607828125,0.0441705150011097,-3.96144914747347 +"Q9NBD7",0.396081542735192,13.3030679237965,2.81707054637134,0.0176523978028094,0.0445458598912024,-3.97284824442434 +"Q9VRL2",-0.686244064379004,11.9444424104172,-2.81705859031378,0.0176527658201947,0.0445458598912024,-3.97286895775742 +"Q9VM69",-0.249121016532273,16.8164002282485,-2.81104046444199,0.0178389894690419,0.0449477861546253,-3.98329369257348 +"Q9VLU4",-0.176505191713531,17.1644397266417,-2.80832634553982,0.0179236182960609,0.0450929039484608,-3.9879942297173 +"Q9W425",-0.353361442707387,14.05302834484,-2.80456286281659,0.0180416341027924,0.0452565933434432,-3.99451118231496 +"Q9VIH9",-0.415498693828226,19.1635418024313,-2.8045211534866,0.0180429463869243,0.0452565933434432,-3.99458340107123 +"Q9VD64",-0.379797429798758,15.6393227169485,-2.79475737454457,0.0183527889863588,0.0459646426865562,-4.01148531297631 +"Q9VJ31",0.179702651150977,17.2555504031404,2.78919280977338,0.0185317546356679,0.0462931373132628,-4.02111455345839 +"Q9VPU4",-0.37009399241755,12.9481326621749,-2.78895450430813,0.0185394578688606,0.0462931373132628,-4.02152687348299 +"Q7KJ08",0.234362019393306,14.5644999589179,2.7867976124944,0.0186093255849929,0.0463436999208302,-4.02525854711314 +"Q9VVA7",0.152182335916159,17.5091453152426,2.78600511025378,0.0186350631576538,0.0463436999208302,-4.02662957011905 +"Q27268",0.30685237205563,19.0340772058048,2.7855759729721,0.0186490148478144,0.0463436999208302,-4.02737195238001 +"P55830",-0.12711512042446,21.9755504954389,-2.78447816719775,0.0186847532781414,0.0463436999208302,-4.02927102112108 +"Q7K2W6",-0.221079705964456,16.8380654955842,-2.78336819397927,0.0187209575709585,0.0463436999208302,-4.03119103443227 +"A1ZB71",-0.220511095175961,19.2686060362888,-2.7832011821642,0.0187264111190885,0.0463436999208302,-4.03147991966911 +"Q9VTB0",-0.174322038580739,16.9768083622871,-2.78055256261101,0.0188131113032426,0.0464892883760127,-4.03606099737535 +"A1ZB73",-0.695445019731014,13.5302636904513,-2.77878586326047,0.0188711660417825,0.0465637647303153,-4.03911636414199 +"Q0E8V7",-0.321738492614649,19.7032608790556,-2.77358160336953,0.0190432257058522,0.046918907647506,-4.04811515519144 +"Q7K738",-0.138055807518317,19.791881065621,-2.77243333937612,0.0190813998472647,0.0469436208631823,-4.05010032460812 +"Q9VAA6",-0.286714178144807,16.2543885596548,-2.77099066771884,0.0191294702114084,0.0469925718889973,-4.05259431527462 +"Q9VUN9",0.138202734480288,16.7556766928651,2.75469054475744,0.019681090334836,0.0482765568801565,-4.08075994179572 +"Q9V406",-0.205292008730664,17.0542126984931,-2.75380461733281,0.019711523302668,0.0482802068558741,-4.0822900799795 +"Q9VB05",0.118015917930318,20.1983453454913,2.75020653992965,0.019835607249031,0.0485128928026153,-4.08850378821228 +"Q9VV75",-0.129894460898683,23.9974907344119,-2.74252577668628,0.0201031066109806,0.0490951417673728,-4.10176404874199 +"Q9VH72",-0.496605713557624,18.7323471261714,-2.74136139404143,0.0201439723493522,0.0491230202905254,-4.103773780726 +"Q9VU70",-0.339304054185906,14.8059134467691,-2.73722358531967,0.0202898677499581,0.0494065684772704,-4.11091461544381 +"P19107",0.143124115527698,24.1263181617271,2.7259933449721,0.0206911783331391,0.0503103286584198,-4.13028685147338 +"Q9VER6",-0.264520356803715,14.9357164818648,-2.72453500305711,0.0207438701453847,0.0503650296979647,-4.13280158842417 +"Q7K1H0",-0.147328924088246,16.3149008989566,-2.7167339147744,0.0210280169687769,0.0509807155580231,-4.14625001131439 +"Q9VRQ9",0.191028546849024,14.7215020155033,2.71477805988861,0.0210998640236322,0.0510806577524215,-4.14962077440184 +"Q9Y136",0.303629519501307,15.2453356554554,2.71239276001716,0.021187818075887,0.0512192471747528,-4.15373112219533 +"Q7K5M0",-0.357040319576853,16.6938410729552,-2.70843039693151,0.0213347329982042,0.0514563129461478,-4.16055776777341 +"Q9W402",-0.140307419617717,21.2698853073718,-2.70808512006986,0.0213475830687855,0.0514563129461478,-4.16115255858278 +"Q9VZ67",0.167014832728594,15.1286344604612,2.69990793331333,0.0216541774515068,0.0520592357233227,-4.1752353282025 +"Q9V3F8",-0.127814080787701,18.5478657235522,-2.69975011531262,0.0216601376450755,0.0520592357233227,-4.17550705328141 +"P40797",0.139455965797364,19.1719364572486,2.6981409259201,0.0217210041254227,0.0521304099010144,-4.17827754350475 +"Q9VN88",-0.199664548171928,17.040518502549,-2.69219066801133,0.0219475529903408,0.0525984459596099,-4.18851950370384 +"B7Z107",-0.467949537070202,16.0290910335584,-2.68631983592694,0.0221733853708935,0.0530634243883075,-4.19862099185473 +"M9NEW0",-0.153308627720165,18.3498017894269,-2.67664419123934,0.0225506387328865,0.0538889189204221,-4.21526083512493 +"Q9VEJ0",-0.127734494151959,22.249048349118,-2.67311103652545,0.022689983626463,0.0541443386107872,-4.2213344211852 +"O46098",-0.178972705184332,18.0241672552701,-2.65916546059306,0.0232484024110131,0.0553976217450998,-4.24529328845256 +"P13677",-0.235542973497996,17.121861378584,-2.65781124722908,0.0233033516848865,0.0554062522597233,-4.24761865964622 +"Q7JZK1",-0.166670062189922,21.5233492744515,-2.657439494888,0.0233184586848476,0.0554062522597233,-4.24825697199311 +"Q9VD29",-0.194318054351363,20.7343907298071,-2.65238320431909,0.0235249020815884,0.0558081160198094,-4.25693718578168 +"Q9VZ66",-0.148188460083359,17.0106460961345,-2.65166178672669,0.023554504603085,0.0558081160198094,-4.2581754072717 +"Q94522",-0.159164876422281,23.5006629170713,-2.64567011192358,0.0238018010060113,0.0563140483376268,-4.26845694472276 +"Q9V3E7",-0.168876514986842,18.7311925568701,-2.64368349600422,0.0238843634953337,0.0564223004657666,-4.27186496316275 +"Q9VUX1",0.195461024736559,16.3493309695423,2.64294307417431,0.023915207691425,0.0564223004657666,-4.27313502632796 +"Q9VW57",0.141640134423557,16.541988782832,2.63846940717202,0.0241024135634717,0.0567836522936028,-4.28080738966046 +"Q9VRL0",-0.146590836953028,22.7771550293313,-2.62763978230613,0.0245616393752239,0.05776494955547,-4.29937001460311 +"Q9VIE7",-0.166611062029185,14.945685839562,-2.62701963259911,0.0245881979522684,0.05776494955547,-4.30043254427857 +"Q9Y162",-0.151274701802581,20.2047833886323,-2.62359983865265,0.0247351670601134,0.058028493187439,-4.30629095359671 +"Q9VC67",-0.159591982447781,15.1141579893859,-2.61688668098492,0.0250262114712336,0.0586288212556429,-4.31778685073483 +"Q9VPC2",-0.293981631873622,14.8990986152607,-2.61228220446477,0.0252277968632583,0.05901818396622,-4.32566839512147 +"Q9VGP6",0.142160158360614,17.9379005720356,2.60882311212425,0.0253802953920174,0.0592173991256762,-4.33158755355216 +"Q8WTC1",0.213137740904081,15.0624669478089,2.6087403088522,0.0253839570592677,0.0592173991256762,-4.33172922633225 +"Q9VC66",-0.133724481869759,17.7146013080975,-2.59483748780119,0.0260062403481617,0.0605843699730918,-4.35550344700016 +"Q7K568",0.216154936292064,16.1223278309833,2.5918519558396,0.0261418297576634,0.0607446726411469,-4.36060540624396 +"Q7JV09",-0.145262702453937,15.1197229386053,-2.59093965484449,0.0261834018356054,0.0607446726411469,-4.36216419062272 +"Q9VHT5",0.182591159931317,15.5611025120079,2.59091986539218,0.0261843043339236,0.0607446726411469,-4.36219800220667 +"Q9VF39",-0.311707659402551,15.9936412749639,-2.58820904651796,0.0263082228168917,0.0609473828591324,-4.36682910894477 +"Q6IDF5",-0.184003266637919,19.6335155888803,-2.5840666751168,0.0264987035535168,0.0613035194552927,-4.37390390024541 +"Q9VJH8",0.280370502292136,14.3539647835265,2.58114190402216,0.0266340163109192,0.0615312177376914,-4.37889771202961 +"Q9Y171",0.363028862968081,15.016518500866,2.57699987366324,0.0268268153835479,0.0618909101794714,-4.38596785589544 +"A1ZBA5",0.339705673091258,15.6143495916149,2.57282071088178,0.0270227421171466,0.0622568147118791,-4.39309893905838 +"Q9V3G7",0.216491990795795,18.0832213023582,2.56408391195851,0.0274369220583442,0.0631238427494043,-4.40799888942396 +"Q9VBC1",-0.213430396857818,13.1575337108514,-2.55747079653514,0.0277545926557991,0.0637667500686955,-4.41926974561733 +"Q9W2M4",-0.130549574097444,22.6679677187485,-2.55641223933595,0.0278057783192075,0.0637964762536976,-4.42107327289759 +"Q9VBC9",-0.284699923363053,15.5467520849201,-2.54530214527922,0.0283486544470418,0.0649526862880023,-4.43999223242182 +"Q9W2X6",-0.132961347499869,24.1388795909056,-2.54392931597166,0.0284164577646297,0.0649892499350124,-4.44232869597283 +"Q9VNA5",0.180747831279199,17.2882504006384,2.54340213564156,0.0284425374415822,0.0649892499350124,-4.4432258463862 +"Q8SYQ8",-0.310434574745573,16.02219485514,-2.5357794411483,0.028822283772791,0.0657668527127433,-4.45619338064801 +"Q9VQJ8",-0.170251675808455,15.2545065033807,-2.53443824630965,0.0288896148377106,0.0658304338105208,-4.45847407318295 +"Q9V9X4",-0.15168017812168,18.7365809517768,-2.52733822071317,0.0292486452635322,0.0664953049248626,-4.47054301265726 +"Q9VC48",0.153663825990677,18.4197975038502,2.52709300703821,0.0292611233901973,0.0664953049248626,-4.47095969859951 +"Q9VK58",-0.625338790335073,12.9528132728325,-2.52583750594613,0.0293250940357929,0.0665500093220442,-4.47309299624561 +"Q9Y0V3",-0.213734414883161,15.0559809032597,-2.52389862170125,0.0294241555750513,0.06668409171085,-4.47638698910741 +"Q9VY91",-0.410897397633029,16.9845300565398,-2.51912263899477,0.0296695793391408,0.0670831286699171,-4.48449845097969 +"Q7KMP8",0.130036484709965,19.1790736142579,2.51890783352615,0.0296806648431648,0.0670831286699171,-4.48486318927447 +"P25455",0.169090033926961,15.8392325607733,2.51626079762895,0.0298176063687236,0.0673014444154681,-4.48935724052413 +"Q9VGA3",0.157062366906498,19.3883005009227,2.51471166983905,0.0298980373641407,0.0673917923289009,-4.491986784106 +"P11046",0.171843116636914,21.0268000587632,2.50849991013641,0.0302227050820999,0.0679857580131315,-4.50252699641097 +"Q9VRY5",-0.151994912730196,16.863230128426,-2.50811256303519,0.0302430650154338,0.0679857580131315,-4.50318404815714 +"P53034",-0.240778831556979,15.7296453960802,-2.50673742912848,0.0303154546299921,0.068052446142065,-4.50551647423467 +"Q9VZG0",0.135036184951627,21.6690312800951,2.50600030364316,0.0303543284950218,0.068052446142065,-4.5067666200415 +"Q9VCB9",-0.138240769628121,16.987293360483,-2.50358408233635,0.0304820973968132,0.0681835694527085,-4.51086385230124 +"Q8SYQ4",-0.269564595237568,20.9674827797247,-2.50334874829474,0.0304945700310075,0.0681835694527085,-4.51126286207681 +"Q9V3W9",-0.123530618987495,18.4940150269694,-2.49929185744439,0.0307103753830692,0.0685741715380984,-4.51813991764806 +"Q9VG51",-0.12273622444911,19.101567340508,-2.49672763372201,0.0308475530792246,0.0687883937649019,-4.52248528321894 +"Q9VH25",0.13975185345827,16.2165107252094,2.49592671378058,0.0308905231396592,0.0687922464578792,-4.52384231062838 +"Q9VII1",-0.343409129473546,19.3181926058491,-2.49153319546851,0.0311272887594322,0.0692270902009773,-4.53128452146438 +"Q9W1X4",0.262777214724693,15.0923813133813,2.48984692663991,0.0312186345727012,0.0693215568659859,-4.53414005340168 +"Q868Z9",-0.203479629309559,20.3730720227694,-2.48921592039419,0.0312528841506124,0.0693215568659859,-4.53520847919213 +"Q9VYS2",-0.211887686932444,14.9839626005374,-2.4884504241452,0.0312944831402176,0.0693216439281314,-4.53650453552331 +"Q9VE52",-0.149619398096348,15.9129190872129,-2.48517291012657,0.0314732078649109,0.0696090328261217,-4.54205256245648 +"Q7JVI6",0.190451040937372,17.4363851409949,2.48454274939611,0.0315076857216558,0.0696090328261217,-4.54311906323582 +"Q9NHA8",0.265622382218067,16.3067343978145,2.48068419886158,0.0317196088449401,0.0699046820001679,-4.54964791598972 +"Q9V9T9",0.279943921441768,13.4031181751333,2.48058045065019,0.0317253263034335,0.0699046820001679,-4.54982342817509 +"P40796",-0.238550210793289,18.3505267640917,-2.47603967798705,0.0319765581640112,0.0703653021339983,-4.55750331867307 +"Q9W1X5",0.11915980773048,19.3993395647371,2.47390841840126,0.0320951494648444,0.0705332138436897,-4.5611067423304 +"Q9Y114",-0.116880509190299,18.6138248886439,-2.47036203779869,0.0322934415588794,0.0707964502575931,-4.56710104975137 +"Q9W2E8",-0.159138680072644,19.3598674565153,-2.46956523266968,0.0323381593165432,0.0707964502575931,-4.56844755959628 +"Q9V438",-0.155050158715149,18.9461861672291,-2.46947689894421,0.0323431204643458,0.0707964502575931,-4.56859682676207 +"Q7K2N0",-0.170038476972378,15.4419258773403,-2.46873696642887,0.0323847071621964,0.0707964502575931,-4.56984711868122 +"P05205",-0.1721713506528,18.0903249449174,-2.45594477997499,0.0331120241562041,0.0721413470161334,-4.59144745062563 +"Q9VJ80",0.207476924841252,16.4479189270726,2.4555050552457,0.0331373081565582,0.0721413470161334,-4.59218943864384 +"Q7K1M4",0.211362916268376,17.1877288880678,2.45508549862049,0.0331614501526982,0.0721413470161334,-4.59289736317212 +"Q9VY28",0.195872637183367,15.1672115986983,2.4548864536468,0.0331729095691692,0.0721413470161334,-4.59323320397076 +"Q9VN44",-0.152056766218546,19.4851939047085,-2.44071644470995,0.0339987600946942,0.0737366333146736,-4.61712346694562 +"P54352",0.198251178365821,16.1180531439139,2.44008219275634,0.0340361926943491,0.0737366333146736,-4.61819195048917 +"Q9VZW7",-0.251289096596897,13.8697409075358,-2.44002174777469,0.0340397621732797,0.0737366333146736,-4.61829377444059 +"Q9VZZ5",-0.161935425429661,18.487787372841,-2.43871147171559,0.0341172285732253,0.0737366333146736,-4.62050086547057 +"Q9VGV9",-0.203312627861104,16.0759421131177,-2.43853784788168,0.0341275065461199,0.0737366333146736,-4.62079330213913 +"Q9VTB3",-0.164519002854828,19.7565010797234,-2.43290647886551,0.0344625148602636,0.0743641329714356,-4.6302752843284 +"Q9VVH5",-0.132277858995074,22.5632545494553,-2.42931695292781,0.0346777328994309,0.0747318584964481,-4.63631620040253 +"Q9W337",-0.206069858865161,17.8397642348909,-2.42047170122759,0.035213700329638,0.0757889705159176,-4.6511918752251 +"A8Y535",-0.168530972921673,22.0824631312377,-2.41840247093593,0.0353402479066608,0.0759633163766885,-4.65466972073724 +"P55841",0.116969449174835,20.6135059279887,2.41683299992573,0.0354365283293874,0.0760722384213876,-4.65730705836935 +"Q9VFB2",0.200898586833079,16.4001988475439,2.4146056784253,0.035573605585088,0.0762683471927079,-4.66104904401662 +"Q9W0H8",-0.186404550552734,19.412789545233,-2.41344218763516,0.0356454169593335,0.0763242047344908,-4.66300337738586 +"Q8SXF2",-0.180335213566938,15.5505292144811,-2.4112398869985,0.0357817325658509,0.0765178588715888,-4.66670190722434 +"Q9VSL2",-0.16848065233237,20.4625799437762,-2.40842444226412,0.0359567422464963,0.076793656936179,-4.67142879252705 +"Q9VF23",0.45798759291459,15.2238264774016,2.4043831243435,0.0362094159777424,0.0772344064589186,-4.67821114033495 +"Q9VW59",0.155956090842398,19.7754279890897,2.3937166022375,0.0368846744418822,0.0785238387971173,-4.69609697290045 +"Q9VMQ5",0.288963214829126,13.4627387064441,2.3928849639102,0.0369378361298127,0.0785238387971173,-4.69749054113479 +"Q9VY78",-0.175972641657111,18.7824671575719,-2.39261414761132,0.0369551639422884,0.0785238387971173,-4.69794431584901 +"Q95083",0.134448551675028,19.8836506179867,2.39122464725023,0.0370441940986737,0.0786128699193229,-4.70027230821517 +"Q9W0B3",-0.150252370139476,19.1612708625215,-2.37998890341209,0.037771837372547,0.0800551775570627,-4.71908271837421 +"Q9VRJ5",-0.169604577648478,17.258121864652,-2.37841532347057,0.0378748512484967,0.0801716394447874,-4.72171511403102 +"Q4QQ70",-0.188510155468617,16.1263941858416,-2.37422348084663,0.038150607340544,0.080652994986093,-4.72872507266363 +"Q9VNC1",0.377922033849462,15.5514582752387,2.37059236811833,0.0383910573886601,0.0810585869927659,-4.73479443407755 +"Q9VMX4",-0.234232563011265,17.3106625065484,-2.363600353894,0.0388582303188058,0.0819412492689861,-4.74647386631309 +"Q9VP55",0.131738841461857,17.0902538271428,2.3621286005992,0.0389572689005462,0.0820463693511503,-4.74893098805009 +"Q9VMS1",-0.127106318068517,22.4056243372538,-2.35978484316774,0.0391154947652127,0.0821886705348032,-4.75284300741857 +"Q9VVJ7",-0.1348298923578,18.1536152391949,-2.35966822472237,0.0391233839356317,0.0821886705348032,-4.75303762801564 +"Q9VGE7",-0.30948636144606,13.8450204443334,-2.35701360507654,0.039303386936857,0.0824629552335566,-4.75746706388039 +"Q9VC53",-0.125507851593042,17.8896260826794,-2.35574513951717,0.0393896827311949,0.0825401894417502,-4.75958307401322 +"Q8MLW4",-0.137920804320498,18.6267725613969,-2.35331622776195,0.0395554404787627,0.0827835316418773,-4.76363395550599 +"Q9VMH9",0.132519179668886,20.0409676559278,2.35149310789394,0.0396803025139909,0.0829407826984171,-4.76667369382335 +"P09040",-0.281919502184119,16.6138123754536,-2.34970497131487,0.0398031410616754,0.0829973957409634,-4.76965442007868 +"Q0E8C8",0.172599435479974,17.6512379738093,2.34965027346396,0.0398069044321168,0.0829973957409634,-4.76974558772651 +"Q9VAC4",0.113930296402536,19.3795200442363,2.34766850898264,0.0399434892440222,0.0831439007611187,-4.77304826498681 +"Q9VND8",0.551626916646033,18.6038622077868,2.34718526959953,0.039976863555406,0.0831439007611187,-4.77385347294341 +"Q9VR31",-0.129206609002935,17.2903369611906,-2.3462775446636,0.040039627750671,0.0831707336091149,-4.77536585443557 +"P08985",-0.139900705689733,20.6692362312678,-2.34324086203844,0.0402502949349303,0.0835043432232137,-4.78042406166448 +"Q7K084",-0.13844008758414,23.6785214563872,-2.33557666379112,0.040786794812539,0.084512265524615,-4.7931815116189 +"Q9VSL3",0.11813993978328,22.3724793848783,2.33034577984967,0.041156943523493,0.0851734265473775,-4.80188127189479 +"Q95NU8",-0.176076920569908,17.3926764469771,-2.32753700744748,0.0413570425047346,0.0854814707532804,-4.8065502213703 +"Q9VNA3",-0.104366486252697,18.6240536566594,-2.32458215046675,0.0415685681372947,0.0858123411547123,-4.811460130784 +"Q76NQ0",0.339845915235495,14.4918088718742,2.31984272928783,0.0419100378616289,0.0864103129211336,-4.81933131210129 +"Q7JWQ7",-0.255194504553589,14.2116621725872,-2.31575339124529,0.0422068559495123,0.086914858918255,-4.82611882575373 +"Q9W1F2",0.373494497612858,13.6662068454943,2.31168680865479,0.0425040439322007,0.0873715414917139,-4.83286485532329 +"Q7K0B6",-0.142625051644337,20.1703238953373,-2.31128677067523,0.0425333883041197,0.0873715414917139,-4.83352827494076 +"Q9VMU0",-0.171871146861623,21.1746705773516,-2.30914691450876,0.042690689089839,0.0875868012322896,-4.83707638092508 +"Q9VL69",0.236567903441289,16.0529782640677,2.30129283819807,0.0432728893158059,0.0884906144882418,-4.85009035596617 +"Q9VZZ6",0.13269707404061,18.4535818402234,2.30108579158554,0.0432883406957931,0.0884906144882418,-4.85043323576144 +"Q7K3D4",0.149820296652866,18.5538020345629,2.30105857024038,0.0432903725553989,0.0884906144882418,-4.8504783149728 +"Q9VQQ0",-0.23239903880588,18.3304209205465,-2.29476634001195,0.0437625249308481,0.0893462565295649,-4.8608938316338 +"Q94516",-0.114679721348661,23.3974775558086,-2.28078476886589,0.0448295771717438,0.0912985549248886,-4.88400458304782 +"Q9VDU7",-0.150092084091991,18.2908397875015,-2.28056310903675,0.0448466949352604,0.0912985549248886,-4.88437060489006 +"M9PHA0",-0.188936909703891,17.4494655486649,-2.28009348596214,0.0448829826369357,0.0912985549248886,-4.88514604443525 +"Q9VBT1",0.134911515381713,16.3081917650603,2.26017245565784,0.0464486820840959,0.0943683333937539,-4.91799104950226 +"O61604",0.106043219861732,20.9337962490977,2.25064904621354,0.047215682556892,0.0958099251884378,-4.93365887897888 +"Q9W140",-0.484174257011981,13.8726755911306,-2.24970494439801,0.047292381234312,0.0958107598046703,-4.93521089103855 +"Q7KK90",-0.123780871857932,21.0925393441282,-2.24923044467062,0.047330974867535,0.0958107598046703,-4.93599083942406 +"Q7JV69",0.150364266087463,16.1992776708574,2.24727221683484,0.0474905696593797,0.0960172972022368,-4.93920904265803 +"Q9VJZ1",0.213725422909798,15.4427244885025,2.24523011069306,0.0476575530762692,0.0962382548804079,-4.94256407929785 +"Q8IMT6",0.259207558456605,16.1224247020421,2.23971844490603,0.0481110727228753,0.0970366013322322,-4.95161416424568 +"P21914",-0.106605827868439,22.9408814338135,-2.23459209916289,0.048536616881393,0.0977766629929512,-4.96002471329731 +"P28668",0.19859310589802,15.4458641848742,2.23268100250987,0.0486961850102362,0.0979797787660724,-4.96315845925211 +"Q24185",-0.145640685474259,18.7194646078084,-2.22685639946692,0.0491856348143083,0.0988453480364653,-4.97270370342233 +"Q9VYV4",-0.159682994925546,15.5648574795582,-2.22450691842985,0.0493844021435584,0.0991253703675757,-4.97655153419298 +"Q9VXP4",-0.103882905477816,17.9702953474724,-2.22053058709572,0.0497225636730576,0.0996841781330048,-4.98306048646199 +"Q9W236",-0.15701649775537,16.5415202223507,-2.2186534950772,0.049882971062768,0.0998853067419846,-4.9861317267841 +"Q95R34",0.178798631298603,15.2971669278321,2.21795657209602,0.0499426533709923,0.0998853067419846,-4.98727177874363 +"Q7K180",-0.165581530986403,16.2890726263542,-2.21707016419509,0.0500186617722352,0.0999175183665729,-4.98872161520121 +"Q9VBI3",-0.150739001205451,18.598604542185,-2.21232057116609,0.050427831543528,0.10053594269957,-4.99648671952751 +"P61851",-0.182335878149399,23.5526415136679,-2.21207827017899,0.0504487913906115,0.10053594269957,-4.99688269952903 +"Q7KND8",-0.169498884708091,15.4162305247695,-2.20928638628272,0.050690903390602,0.100700648932821,-5.00144422341921 +"Q9W229",0.152562335217013,19.1258960926689,2.20913556421366,0.0507040144026244,0.100700648932821,-5.00169058615954 +"Q7K0X9",-0.17819184757033,16.6766499687872,-2.20903731470934,0.0507125570165284,0.100700648932821,-5.00185107018643 +"Q9VND7",-0.186419632231972,13.9364598998831,-2.20657637651356,0.0509269826329177,0.101006191476465,-5.00587002177368 +"P56538",0.150097544243465,17.1130038822981,2.20323251703976,0.051219734420564,0.10146617222506,-5.01132831326165 +"Q7JWD6",-0.115475315767799,20.469274717415,-2.19491655895004,0.0519548100910068,0.102800264806405,-5.0248898687497 +"A8WH76",0.158127249787007,19.0881430387702,2.18865312811069,0.0525151270877796,0.10378581988438,-5.03509198058865 +"Q9VKM3",-0.141129995744166,21.791668822604,-2.18765161178108,0.0526052568469101,0.103840909373546,-5.03672230819218 +"Q7JVH6",0.114574893314003,18.9944459713052,2.18229940216258,0.0530894388485642,0.104672794325538,-5.0454303453716 +"Q8SX57",-0.10916297876085,17.9735269076282,-2.18021484842647,0.0532791688885252,0.10491539259176,-5.04881980300874 +"Q9V773",-0.14108653474316,15.5600434976532,-2.17926082284154,0.0533662180429475,0.10491539259176,-5.05037064061242 +"O15971",0.164614921072824,17.22846664386,2.17887807215625,0.0534011800422088,0.10491539259176,-5.05099275957819 +"P16620",0.157768736263234,17.3250638781419,2.17321159358659,0.0539213523912076,0.10575400420824,-5.0601982924691 +"Q9V3E3",0.225435257844959,14.964568038385,2.1722600001432,0.0540091813135583,0.10575400420824,-5.06174334616151 +"Q9VYT6",0.182643074994118,16.4947985262619,2.1721620195962,0.0540182323653598,0.10575400420824,-5.06190241797724 +"Q24372",0.205242922354298,16.961321859722,2.17027641281655,0.054192700266149,0.105858499542612,-5.06496319121899 +"Q9V3T8",-0.241710984561003,15.5833902651684,-2.17021343845501,0.0541985363365651,0.105858499542612,-5.06506539610524 +"Q9VAY2",-0.0901811376347759,21.1161149002754,-2.16632881066267,0.0545597044354477,0.106439283038979,-5.07136786523216 +"Q9XZ19",-0.15524801924461,16.1226418372543,-2.16442761404199,0.0547373037634502,0.106661007800742,-5.07445086050867 +"Q9W0X2",-0.194332709101683,16.0392377675833,-2.16308667107221,0.0548628996724128,0.106780999595781,-5.07662473738493 +"Q9V3Z2",0.173149865681911,16.168421120398,2.16071259161092,0.0550859377726327,0.107090144760783,-5.08047225504967 +"Q9VE75",-0.157897705040007,15.5188978356225,-2.15196989958637,0.0559147855682025,0.108574927040468,-5.09462729791354 +"Q0E8U4",-0.252444054782636,16.201959643139,-2.14938549902906,0.0561620717228451,0.108928297248495,-5.09880748252444 +"Q9W1V3",0.180774159950767,16.3647255422917,2.1478158522112,0.0563127714862121,0.109093731520327,-5.10134540715036 +"Q9VKC7",0.27284100363058,13.71729161986,2.14364800507505,0.0567147970166282,0.109745106060018,-5.10808088209473 +"Q9W2D6",-0.129361796456134,19.6171215297306,-2.14080978554372,0.0569901346494682,0.110150109612182,-5.11266475100609 +"Q9VN50",0.137732080987796,17.8043489316539,2.13955608234544,0.0571121629855656,0.110258203541578,-5.11468880662701 +"P25007",-0.104742672632952,23.8488105535566,-2.13446860517002,0.0576099118077275,0.11109055826045,-5.12289767781534 +"Q9VRP2",0.111918089239058,20.4207618516282,2.1335147621132,0.0577036933222566,0.111141652239809,-5.12443591009174 +"Q9VKW5",0.186142227959406,17.0242872667082,2.1328445869034,0.0577696717577425,0.111141652239809,-5.12551652190646 +"Q9VMU2",-0.109439074172416,16.2948312498843,-2.13117649047822,0.0579342075074232,0.111329790463574,-5.12820564522074 +"A1ZAL1",-0.19778332079477,17.3218645160112,-2.12955861591394,0.0580942161920448,0.111508806223626,-5.13081303024666 +"Q9NHD5",0.186454220950303,16.5805182474526,2.12173703177765,0.0588737322430363,0.112875155610787,-5.14340755297046 +"A1ZBK7",-0.163858997537158,17.6033643475218,-2.11902323767649,0.059146515180378,0.113267953296063,-5.14777315953499 +"Q9VMV5",-0.107711216446642,17.6071632710692,-2.11558796872737,0.0594935445539363,0.113801871921979,-5.15329624829478 +"Q9VWD0",-0.150419973662792,18.2049378541717,-2.11396943670155,0.0596577187290954,0.113985194547687,-5.15589724169902 +"Q9VN91",0.195020029936984,19.5930613818753,2.11137146982409,0.0599221424878416,0.11415732983049,-5.16007055781543 +"Q9VVH3",-0.12041453459257,19.9132225111463,-2.11062896362708,0.059997920162485,0.11415732983049,-5.16126293185503 +"A8E6W0",-0.156333927954842,16.4184279724891,-2.11060119186708,0.0600007562221726,0.11415732983049,-5.16130752669351 +"O97479",0.232516423513513,17.9370742538424,2.11039741667368,0.060021569701043,0.11415732983049,-5.16163473408922 +"Q8IR45",-0.178762668703515,14.8202047794408,-2.10912235569221,0.0601519596783679,0.11427502134797,-5.16368185129512 +"Q9XZ63",-0.164017095206354,18.9493450003096,-2.10314175439027,0.0607671491716602,0.115312405936666,-5.1732772035784 +"Q9VXI6",-0.121866146619084,22.0568840266741,-2.09588889154129,0.0615212326794466,0.116580856344102,-5.18489924231786 +"Q9VE08",-0.157521945343095,14.5436962010939,-2.09537134760598,0.061575380359205,0.116580856344102,-5.18572794527287 +"Q9VSY8",-0.148020104792099,18.0552330128669,-2.08826261914407,0.062323720308469,0.117863906433703,-5.19710228234479 +"Q9VSU7",-0.157248372586652,14.7222798995432,-2.08305869588059,0.0628770030993501,0.118775584563665,-5.20541894577032 +"Q9VL10",0.170201084012451,16.6822511981854,2.07806508714454,0.063412302278161,0.119651267194539,-5.21339157940844 +"Q9W3N6",0.118209500677576,16.1297701981734,2.07129517089915,0.0641449163031605,0.120896859201889,-5.22418773964312 +"Q9VLP3",-0.170378521165446,17.5382952952502,-2.06632650814973,0.0646876991116709,0.121782259727164,-5.23210219782902 +"Q9VLW8",-0.278802601000555,14.1336595459671,-2.06482346940234,0.0648527476527416,0.121955336059496,-5.23449480814354 +"Q9I7C6",0.253209764458919,15.4669350735355,2.05834254640556,0.0655689915866702,0.123163376088475,-5.24480320761569 +"Q9VXE8",-0.171277381433798,16.2797443141354,-2.05497800307108,0.0659437705748185,0.123728019481212,-5.25014946242053 +"Q4V5H1",0.18143366699725,14.9212624430889,2.05127801328942,0.066358252969665,0.124365804442024,-5.25602453009107 +"Q0KI98",0.162742660985186,16.648311637184,2.04818779994819,0.0667063121987596,0.12480474523632,-5.26092796295874 +"Q9V9A7",0.432372063353744,15.9650966838529,2.04776656686266,0.0667538902020316,0.12480474523632,-5.26159611954989 +"Q9W329",-0.12886011331851,16.4564491524834,-2.0470782951468,0.0668316990307996,0.12480474523632,-5.26268772656775 +"Q9VDI5",0.196958475016013,16.649817923907,2.04654760384601,0.0668917519432073,0.12480474523632,-5.26352930396683 +"Q9VLS5",-0.19763690640764,14.5800862107451,-2.04466091205598,0.067105662502848,0.125063960955029,-5.26652050228893 +"A1Z7S3",0.0976206303080325,20.0815928406797,2.04241122525813,0.0673615732659823,0.125400785946047,-5.27008568139609 +"Q9VFV9",-0.12973718655855,21.3744511439364,-2.03788196005409,0.0678795921174753,0.126224258251894,-5.27725838135758 +"Q9VF89",0.376108585186353,14.2008281351251,2.03686549642805,0.067996361961301,0.126300592150835,-5.27886716182505 +"Q9V6U9",-0.0978790243605339,21.9206677303352,-2.03589636236079,0.0681078711184395,0.12636699557904,-5.2804007156619 +"Q9VGE4",-0.121830212969471,15.6704295408524,-2.03345285257039,0.0683897890986426,0.126749075796151,-5.28426593929684 +"Q95RF6",0.173348906109016,17.2961078038605,2.03279545205212,0.0684658238284111,0.126749161094106,-5.28530549987555 +"Q9V931",-0.508960961009228,17.634522551095,-2.03037653257899,0.0687462820813993,0.127020431917807,-5.28912935246179 +"P25171",-0.151669297025471,16.7384107035,-2.03021836493275,0.0687646582864385,0.127020431917807,-5.289379317855 +"Q9VVL7",-0.116918082638655,23.5257696861805,-2.02036053658706,0.0699191377022383,0.129010090362095,-5.30494199075372 +"Q9VZD8",-0.199941024847236,13.6936485838105,-2.0178064898038,0.0702212137608489,0.129424292323863,-5.30896878100302 +"M9PFN0",-0.123875187721278,16.7164883547666,-2.01659916328745,0.0703644357683421,0.129545120156285,-5.31087152431676 +"Q9VEA1",0.123192262654232,18.2134162765109,2.01320264095025,0.0707688324691926,0.130053599774882,-5.31622179060448 +"Q9VZW1",-0.175622500597409,14.8452835327744,-2.01275171564475,0.0708226846802131,0.130053599774882,-5.31693180276501 +"O44386",0.100053988947849,16.8591629787653,2.01231786861485,0.0708745336902684,0.130053599774882,-5.31761485889087 +"Q9W503",0.0871047056331804,17.9437406330069,2.01000649195083,0.0711513684619445,0.130400326512058,-5.32125285129748 +"Q9VKQ2",-0.151759155419253,15.9806831306593,-2.00943608577091,0.0712198425974132,0.130400326512058,-5.32215036267658 +"Q9W2Y3",-0.182877926232978,16.4162039945364,-2.00659598411888,0.0715617046177155,0.130882591340295,-5.32661749739021 +"Q9VKY3",0.130873879865032,18.7493350391532,2.00477615728947,0.0717815668731248,0.131140912973025,-5.32947841443701 +"Q9VXC1",-0.129635444704086,18.3356212803023,-2.00364180484576,0.0719189346521316,0.131248121443934,-5.33126113544477 +"Q9VA32",0.16917374166092,17.1851845348677,1.99852441320596,0.072541716857028,0.131988793641381,-5.3392980064634 +"A0A0B4LFA6",0.123695192022165,19.5087790038833,1.99848904911248,0.0725460382099739,0.131988793641381,-5.3393535144259 +"Q8T9B6",-0.108505676119115,19.4839596839665,-1.99835693221188,0.0725621845138767,0.131988793641381,-5.3395608830908 +"P14484",0.117046062956337,19.2092855912936,1.99148399780657,0.073406810269408,0.133379694476441,-5.35034019895472 +"Q9VQB4",-0.0883962833604848,21.7981679027819,-1.98989243455629,0.0736037115293607,0.133591937792137,-5.35283402092811 +"Q9VHL2",-0.0791803574014445,20.6488725216332,-1.98548318730665,0.074151795287508,0.134440428847351,-5.35973825355121 +"Q9VJN0",-0.203854054638974,17.573336525988,-1.98434893967586,0.0742934036421786,0.134550919951307,-5.36151321722572 +"P54353",-0.21040526548386,18.8888086896107,-1.98358779028613,0.0743885736198992,0.134577159216911,-5.36270407287109 +"Q9VE12",-0.131490032299933,15.6501515964801,-1.98203435075338,0.074583162021201,0.134783005689451,-5.36513387319956 +"Q9VHC7",-0.118314037396839,19.9389572386376,-1.98110788929404,0.0746994403348158,0.134847041643369,-5.3665825861748 +"Q9W1G7",0.0936883366749228,18.9343170353578,1.98027885297719,0.0748036350399813,0.13488914945588,-5.36787869834834 +"P08646",0.162872159682795,18.8991824855826,1.9785673440928,0.075019171379959,0.135131725552669,-5.37055369715226 +"Q9VW00",-0.132744055290669,15.8098845532829,-1.97489099783303,0.0754841153364411,0.135822550573014,-5.37629612872801 +"P22465",-0.124418372020983,22.7324494956443,-1.97105312665426,0.0759723654138399,0.136553777489531,-5.38228573931273 +"Q960X8",-0.133564424732189,18.4020213680707,-1.96835969691152,0.0763167845725174,0.137025184786823,-5.38648612934793 +"Q9VKR4",0.163262179047411,19.1656522989005,1.96255036679047,0.077064625656524,0.138094526411914,-5.39553689901534 +"O61722",-0.113250926893066,18.9502903157586,-1.96244741690207,0.0770779401016141,0.138094526411914,-5.39569718255127 +"Q9V429",-0.0900379403624498,22.3378491137311,-1.95847802105153,0.0775929427403553,0.138868056320722,-5.40187425027737 +"Q9V400",-0.123631784221594,14.3482319554801,-1.95334239032558,0.0782640292164038,0.13991897184669,-5.40985771128205 +"Q9VW14",-0.192086727397056,13.7045062690852,-1.94613409333555,0.0792151042001746,0.141467659321083,-5.42104696112052 +"Q9VEP9",-0.135933951743642,17.5404749985477,-1.94310006838629,0.0796186352238273,0.142036239094486,-5.42575089942734 +"Q9VYF0",0.112108224251211,16.1341762480141,1.94233706246691,0.0797204177882282,0.142065872725176,-5.42693332672633 +"P35992",0.13867401665685,15.8476677280277,1.93897150824523,0.0801708218425897,0.142680111756391,-5.4321463469093 +"Q24492",0.145836872143592,15.2298742695276,1.93848461320917,0.0802361779541334,0.142680111756391,-5.43290016799133 +"Q9VGK3",-0.148719504189238,17.1045988195514,-1.93496851956087,0.0807096209426738,0.14322401933629,-5.43834124641557 +"Q94533",-0.144637596939656,15.2929972646502,-1.93493774744875,0.0807137758849597,0.14322401933629,-5.4383888453085 +"Q9U9P7",-0.189252337480044,16.6361665346302,-1.93118657794455,0.0812217654788244,0.143972268670222,-5.44418858266216 +"Q9W0C1",0.101262567063017,21.3434102280767,1.93011379544767,0.0813675901593623,0.144010769042161,-5.44584626106463 +"Q9VIH3",-0.202015749936512,13.7831616314972,-1.92975687970753,0.081416160195898,0.144010769042161,-5.446397676768 +"Q6NL44",0.239495848073053,15.310139198492,1.92780834459961,0.081681798345176,0.14427144144257,-5.44940721776173 +"Q9VDT5",-0.181575113127668,19.0366011489648,-1.92740769193951,0.0817365180834701,0.14427144144257,-5.45002585519033 +"Q9VWD5",0.20337251332306,14.453435724862,1.92091094508758,0.0826285966773523,0.145691859680575,-5.4600488842375 +"Q9W077",-0.108484196217027,20.8548788676054,-1.91504371533499,0.0834420095453149,0.146970720086151,-5.46908699552055 +"Q9VHI1",0.163023676384535,14.2020660930559,1.90798271931115,0.0844307880936563,0.148555437278712,-5.47994664688904 +"Q9W396",-0.0878873757346579,16.6601802969438,-1.90549188627872,0.0847821776730134,0.149016514603358,-5.483772934113 +"Q9VDL1",-0.170287223451099,14.8511693656097,-1.90302153489064,0.0851320182440317,0.149473901506363,-5.48756540025679 +"Q8IN51",-0.186508007505223,17.1650204541577,-1.90177087351156,0.085309641880672,0.149628267778087,-5.48948450929178 +"Q9Y0Y5",0.105578248469708,18.6063939844555,1.89327514559714,0.0865253653166347,0.151509445705493,-5.50250495099443 +"Q8MKK0",-0.515338439880715,15.8237748845118,-1.89300801789867,0.0865638499744213,0.151509445705493,-5.50291389218224 +"Q9W0J9",-0.12994187356496,18.4669456322713,-1.89108571637011,0.0868412609755086,0.151835663843971,-5.50585588867152 +"A0A0B4KGY6",0.0864109955289827,21.7392958430335,1.89044760110886,0.086933530548468,0.151837831366329,-5.50683217617975 +"Q9VB17",0.131250207744333,15.6404225409362,1.88857029181336,0.0872055107614374,0.152153548064935,-5.5097034500185 +"Q3YMU0",-0.0808255525906958,23.1398075885267,-1.88075152088085,0.0883467718991888,0.153983715285107,-5.52164706591525 +"Q8I941",-0.145738791754606,19.0511352663361,-1.8702439816739,0.0899022633773177,0.156531289471154,-5.53765979795689 +"Q9VIL2",-0.210574913009749,16.0075760219568,-1.86653689031227,0.0904570576734167,0.1573330262766,-5.54329861873292 +"Q9VIM0",0.104414116111993,18.0493286187766,1.86355557218696,0.0909055261853778,0.157948351747094,-5.54782946716384 +"Q9VLS4",-0.163735083812931,20.6129039736447,-1.86177967592219,0.0911736420153772,0.15824935991847,-5.55052667728286 +"Q9VSC5",-0.0933378561962996,19.4250401027264,-1.86085072989417,0.0913141800834775,0.158328536776757,-5.55193704208943 +"O97418",-0.0857647537526276,21.0295647126309,-1.85715724508492,0.0918749379314734,0.159135406510589,-5.55754119008082 +"Q9VP77",-0.156119258545059,15.3532757997469,-1.85502262887456,0.0922004691698471,0.159533591883096,-5.56077753266419 +"Q9W2V2",0.105850692980141,14.3553213672322,1.85150407096374,0.0927393744964772,0.160299768559714,-5.56610805278072 +"Q9W3T9",-0.0949135367747864,18.6381017721014,-1.84943336182145,0.0930578812339738,0.160683794925744,-5.56924275830991 +"P42207",0.127168318352263,16.0134198222097,1.8441850787323,0.0938696655007251,0.161917892507973,-5.5771799037618 +"Q9VVC8",-0.103806966541237,16.6452984360621,-1.83852166737235,0.0947529682835224,0.163272676753012,-5.58573213563579 +"Q7JX94",0.32978606596855,12.1922232410819,1.83318002747449,0.0955930843951295,0.164550324841152,-5.5937862894101 +"Q9VCA5",0.186004390740328,14.1872736431923,1.82562345690711,0.0967932515155187,0.16628575819993,-5.60515980537898 +"Q9VK11",0.133031014747456,18.7821825475055,1.82557719025565,0.0968006422135086,0.16628575819993,-5.60522936837746 +"Q8SXC2",0.237744080976634,14.7466297495249,1.82024233802507,0.0976563199403194,0.167583067551906,-5.61324440303407 +"Q9Y0Y2",-0.126876261498666,19.5053242582802,-1.81689662098834,0.0981964869726003,0.168336834810172,-5.61826484799362 +"Q94529",-0.0953596309385176,19.6615464086985,-1.81353634253141,0.0987417608477673,0.169097799891248,-5.62330236619974 +"Q9VIH1",0.100972562548597,15.7346051279217,1.79608296199315,0.101618796303785,0.173846309984322,-5.6493897082343 +"Q8T3X9",-0.133598102822894,18.350149122472,-1.79519394374401,0.101767374968202,0.17392211213828,-5.65071499920947 +"Q9VJ58",0.11804776682833,17.1602533857691,1.7890714944222,0.102796001489174,0.175272342497585,-5.65983262370752 +"Q8I725",0.140927970388901,18.8948153039751,1.7888158666241,0.102839155026542,0.175272342497585,-5.6602129525118 +"Q24090",0.139174873475488,15.8383826879784,1.78861736756773,0.102872675842408,0.175272342497585,-5.66050826420427 +"P38040",-0.200186174228293,19.0104172973392,-1.78190269909978,0.104012482253318,0.177033490202586,-5.67048767358137 +"Q0E8X8",0.241466982656053,19.8145337646174,1.77723822150681,0.104811038463008,0.178210817692454,-5.67740840420663 +"Q9VMR0",0.134158953933891,17.3046121692246,1.77638005391144,0.104958563516127,0.178279922550814,-5.67868062989899 +"Q9VGT8",0.153536227036911,15.2979873906463,1.77446179010524,0.105289010940628,0.178659277974534,-5.68152326028152 +"Q9VCJ8",0.0794867507106467,17.8629066921186,1.77322440052243,0.10550267093349,0.178839893411647,-5.68335605392427 +"Q7K486",-0.108985898241237,17.5543013562327,-1.7721102758139,0.105695384544009,0.178984671491784,-5.68500568911267 +"Q9VFR0",-0.220225514131693,15.2984249751179,-1.7697684429476,0.106101503981883,0.179490171036289,-5.68847133887126 +"M9PDU4",-0.13350190623607,22.5680892902589,-1.76707314239188,0.106570679445056,0.180101209031766,-5.69245705757489 +"Q8IQB7",0.196055698715885,14.3999050537992,1.76396693789561,0.107113722410481,0.180835717591784,-5.69704638257746 +"Q7JUN9",-0.413315061189312,13.3973841535477,-1.75891903913948,0.108001592047329,0.182042027367661,-5.70449527686622 +"Q9VVI2",-0.3388082320318,13.6294653114241,-1.75866456956251,0.108046527034763,0.182042027367661,-5.70487047969159 +"Q9W4U2",-0.145913073478642,18.6008670770581,-1.75629955820357,0.108464960986413,0.18208153942132,-5.70835617588879 +"Q9VQ93",-0.180933963895257,16.6870561409343,-1.75560304382556,0.108588473365002,0.18208153942132,-5.70938225958807 +"Q9GU68",0.120627031452557,22.199010006939,1.75558023716394,0.108592519812476,0.18208153942132,-5.70941585395959 +"P40417",0.0917762126207258,19.8432321186938,1.7555414613258,0.108599399888323,0.18208153942132,-5.70947297049992 +"B7YZT2",-0.181884185227958,18.4627170146471,-1.75544911654141,0.108615786405404,0.18208153942132,-5.70960899099035 +"P53997",-0.311948699674922,17.4259770449845,-1.75059139110599,0.109480958341417,0.183347629029602,-5.7167588006995 +"Q9NHE5",0.264848816750959,15.7806137848226,1.74864536659858,0.109829300994979,0.183746513600426,-5.71962003986647 +"Q9VG73",-0.12185075804069,18.0358205372605,-1.74441417785551,0.110590165060824,0.184834063448351,-5.72583520384313 +"Q9VH39",-0.203981985748804,18.3919284184357,-1.74199954415075,0.111026510008329,0.185377596290183,-5.72937837810069 +"Q9VCT4",0.318592346750187,13.3534709933126,1.74098229915405,0.111210801561532,0.185499617004636,-5.73087025917563 +"Q7KTA1",-0.274749415804624,17.1295852576316,-1.73785336182228,0.111779401440751,0.18626177982335,-5.73545614981982 +"Q9W3K6",0.115227992315942,16.3258849490945,1.73504558062996,0.112291879885321,0.186928997653409,-5.73956750799822 +"Q9VP18",-0.0985649510716087,17.1035307551244,-1.73201096981909,0.11284815023929,0.187667711464742,-5.74400691682332 +"Q9VRZ7",-0.129130667252983,17.226274770369,-1.72726492368808,0.11372314142718,0.188934462052327,-5.75094147899301 +"Q0E9B7",-0.256644974370444,12.7484747445179,-1.7242734030439,0.114277811670046,0.189667054592673,-5.75530708399071 +"O46106",-0.133048069234952,17.017338906326,-1.71884639364294,0.115290299117598,0.191157275276495,-5.76321620086878 +"Q9VJQ5",-0.184810626434549,14.2594883328318,-1.71635268064224,0.115758247865824,0.191742559523529,-5.76684581744974 +"Q9V4E0",0.223813393344169,18.492151449342,1.71167780462711,0.116640115551561,0.19301161978175,-5.77364225083236 +"Q7K159",-0.204754779535394,14.6092944452061,-1.7052014731274,0.117871818584561,0.194697191298329,-5.7830406179013 +"Q8SY67",-0.192095343881512,16.0581848111611,-1.70509490363216,0.117892184179444,0.194697191298329,-5.78319510381251 +"Q9VK18",-0.149058846051533,14.5518342711502,-1.70261184840307,0.118367597915444,0.195288974602335,-5.78679307606588 +"O97102",0.140961938362075,21.0988065545856,1.6992074864937,0.119022213544416,0.196028338066908,-5.79172125527557 +"Q9VYV3",0.0878318039003858,20.4945766510658,1.69822990953571,0.119210790365363,0.196028338066908,-5.79313537983328 +"O76521",0.114287999065546,16.0843747790122,1.69801877567276,0.119251553850809,0.196028338066908,-5.79344073778754 +"Q6NLJ9",-0.18707079888345,15.2223876057909,-1.69784129715968,0.119285829219372,0.196028338066908,-5.79369740429552 +"Q9VG97",-0.0895321226856858,20.0459893222148,-1.693158835895,0.120193331932395,0.197144984536692,-5.80046364867163 +"Q494G8",-0.110351353359389,15.1534636374625,-1.69254257644609,0.120313229606409,0.197144984536692,-5.80135337111382 +"Q9W1F7",0.0867742746695299,20.3376522972391,1.6925083043877,0.120319900634504,0.197144984536692,-5.80140284591691 +"A1Z7H8",-0.176655212223015,14.6797035143283,-1.69153761368383,0.120508982893487,0.197261024010144,-5.80280389062522 +"A1Z8Z7",0.0900727391310667,18.8257386511884,1.68916991733229,0.120971310386571,0.197823672279217,-5.8062193967544 +"Q9V3W2",-0.0833337261163116,21.5841622420883,-1.68149872401841,0.122480184893794,0.200094954361261,-5.81726681180078 +"P36241",-0.11822274566217,19.7298583231501,-1.67944287603983,0.122887416131026,0.200563806366488,-5.82022261951653 +"Q9VM50",0.155408317678759,13.4789758377264,1.67195102359497,0.124381726866034,0.202666843084135,-5.83097661705205 +"Q24050",-0.103140841304782,16.6296511029254,-1.67175837197179,0.124420366575414,0.202666843084135,-5.83125279168658 +"Q9VEB3",-0.268091495924514,12.2713924269035,-1.67115985743843,0.124540477896801,0.202666843084135,-5.83211067253696 +"A1Z6X6",-0.101265993457034,18.5587617420513,-1.67055494321409,0.124661979019378,0.202666843084135,-5.83297754760092 +"P54397",-0.112976320434417,14.7628028609872,-1.66613036939298,0.125553916220983,0.203918142411489,-5.83931272802331 +"Q9I7X6",0.206503963831992,14.8694631495357,1.66438931103548,0.12590645392607,0.204291794891716,-5.84180295830298 +"Q9VN21",0.0722008398649621,22.0285422951219,1.66027040955101,0.126743995434587,0.2054509080514,-5.8476882392593 +"P00334",-0.101764414498032,25.2238148988764,-1.65710470885039,0.127391092952328,0.20629936217911,-5.85220582077306 +"Q9VQM2",-0.0843292102296971,20.1587754521343,-1.65627656285232,0.127560859713385,0.2063739224073,-5.85338679556653 +"Q9V3H2",0.140488104666133,18.388339202099,1.64752827027215,0.12936660133486,0.209092530064483,-5.8658413463624 +"Q9VSJ8",-0.157992524542701,15.7611928472973,-1.64454940484422,0.129986654751839,0.209695773499611,-5.87007346430472 +"Q9VGU6",0.0928640659202102,18.5419958941332,1.6445273043709,0.129991264867265,0.209695773499611,-5.87010484608173 +"Q8SZM2",-0.0942904387055492,21.2118068796013,-1.63994471129318,0.130950337678,0.211038805069472,-5.87660661964289 +"Q9TVP3",-0.121651409539222,22.953439158624,-1.63852107591699,0.13124956505887,0.211316867295555,-5.8786243095018 +"Q9VF51",0.10641345258172,17.6610884696007,1.63749210111663,0.131466219382239,0.211329260917762,-5.88008201561355 +"Q9V9U7",0.142832185134523,17.8409323512246,1.63728124498441,0.131510655175442,0.211329260917762,-5.88038066051675 +"O97064",0.114119471598245,16.5196645317302,1.62320376455931,0.134507729185676,0.215937336171037,-5.90026798557497 +"Q9VMM6",-0.206171508198793,18.3857256503255,-1.62033336493782,0.135126226868168,0.216721679246253,-5.90431055524759 +"Q9VS44",-0.101452308704021,15.1197182456157,-1.61857105900479,0.135507207790607,0.217123941013192,-5.90679042191719 +"Q9W022",-0.0890530889346905,21.229935859258,-1.61329346276927,0.136653839419826,0.218751059647092,-5.91420730567167 +"Q59E14",0.164667270827273,14.5323696932996,1.61225635482255,0.136880173906528,0.218903288663557,-5.91566311179644 +"Q5U126",-0.0917679080356635,21.6333183807785,-1.60321305829624,0.138867858324697,0.221869336863596,-5.92833361840997 +"Q9VJD1",-0.0999935004216681,18.5362265519824,-1.60069272165262,0.139426350020937,0.222352240487116,-5.93185723272041 +"Q9VKV9",0.137968110456312,15.6079711928394,1.60064602354152,0.139436716756309,0.222352240487116,-5.93192248865515 +"A1Z8Z3",-0.121278446603625,20.0609538155478,-1.59937787289354,0.139718500132506,0.222547706938259,-5.93369416455292 +"Q9VJG0",-0.634443636045182,13.0557695105005,-1.59889405466255,0.139826137213007,0.222547706938259,-5.9343698625074 +"Q9VG33",-0.134141643047283,19.9411787797578,-1.59683787805695,0.14028440128316,0.222893393846162,-5.93724013457702 +"Q9VZ58",0.0954365424396393,18.0709514644891,1.5967205532759,0.140310589651361,0.222893393846162,-5.93740384428333 +"Q9VXQ5",0.0696756260340727,20.333929555983,1.59422523791247,0.140868598856416,0.223548358885775,-5.94088397682055 +"Q9VCR9",-0.0912250764099234,19.345413898887,-1.593679355809,0.140990931383594,0.223548358885775,-5.94164486236858 +"Q9VA18",-0.104415267811007,21.5643485186051,-1.58902013861726,0.142038886052791,0.224996070214677,-5.94813276686252 +"Q9VTB4",-0.0831990591524665,20.6372394406759,-1.5841959330555,0.14313118307842,0.226511208135488,-5.95483828328155 +"Q9VJ28",0.101937732408398,18.9493409131649,1.57828297638746,0.144480085147009,0.228429177275082,-5.96304021959337 +"Q9VFP6",-0.0754029400839755,20.2588012378,-1.57471298382863,0.145299901293975,0.229372937918029,-5.96798314247429 +"Q8IH23",0.131938278127455,18.2791776368756,1.57448655816147,0.145352035599135,0.229372937918029,-5.96829641513797 +"Q9VB81",0.110662509671744,20.9632975822669,1.57369834304869,0.14553364974506,0.229442464815464,-5.96938674022619 +"Q9W1X8",0.0777752937224712,16.0906819310985,1.57276578080665,0.145748780851179,0.229564651992225,-5.97067630685412 +"Q9VBS7",0.0696118782318003,19.7931379554481,1.56913701699225,0.146588556258762,0.230669539471334,-5.97568977988119 +"Q4QPU3",0.28689862462698,14.4685897794944,1.56551862692111,0.14743016047464,0.231775219294722,-5.98068184109567 +"Q9VR94",-0.102462224301492,16.1150881881805,-1.56401920645829,0.147780153169863,0.232106681249842,-5.98274841842777 +"Q9VRU1",0.156588850521324,17.2219290544111,1.55983807911517,0.148759960059656,0.233425788691916,-5.9885046134594 +"Q9VA41",0.0853991565311887,17.473125979433,1.55585972599564,0.149697532675477,0.234496026760771,-5.99397281116738 +"A1Z7H7",0.0881550483304068,17.8422860636159,1.55575119439696,0.149723182554089,0.234496026760771,-5.99412186548626 +"Q9W289",-0.139397739191153,17.4922387611887,-1.55438137395012,0.150047250990377,0.234587511625719,-5.99600258580247 +"P29746",0.0969983888930344,21.1615937607435,1.55431539908535,0.150062874643071,0.234587511625719,-5.99609314131098 +"Q9VGR1",-0.182349279044159,14.1374567641641,-1.54916182123446,0.151287714807801,0.23628081301443,-6.00315944823139 +"Q8SZA8",-0.120109367924421,18.0460217000376,-1.54752432695373,0.151678721908874,0.236669886009356,-6.00540163886171 +"Q9V9S0",-0.11538408437459,17.0992850140867,-1.5451964627884,0.152236099412676,0.237317583009667,-6.00858659925601 +"Q0KI81",-0.0984668958351573,15.6755594729209,-1.54037359668048,0.153396573201005,0.238903346497924,-6.01517567855401 +"Q9V4N3",0.126151035968288,19.7652399343726,1.53843494589004,0.153865222449308,0.239279259296685,-6.01782066801146 +"Q9VU75",0.0841490007188348,18.2412690858665,1.53818866709535,0.1539248472574,0.239279259296685,-6.01815652816642 +"Q9VI10",0.122728554463688,17.1704198728259,1.53563646357918,0.154543931491438,0.24001794946715,-6.02163508608182 +"A0A0B4K7J2",0.188912156677535,15.8116214791804,1.53434469032822,0.154858102307252,0.240282153161391,-6.0233943442749 +"Q8SWZ6",-0.0721710390631127,13.9839389297522,-1.5301100657124,0.155891909955542,0.241258665308459,-6.02915493281372 +"P52029",-0.135080613701017,18.4446831979087,-1.53003162681563,0.155911116017287,0.241258665308459,-6.02926154305425 +"Q7KML2",-0.337584622417063,13.5278726626159,-1.52998976197112,0.155921367627409,0.241258665308459,-6.02931844225763 +"Q7KS11",-0.145302847496842,15.650315342062,-1.52603127314651,0.156893355412649,0.242537643029007,-6.03469405929951 +"A1ZB23",-0.229339880140511,15.9162150719352,-1.52116037498966,0.158096617267688,0.24417144222454,-6.04129666154302 +"Q9V4W1",-0.220756453207246,13.5288508104444,-1.51950086976976,0.158508395701731,0.24440616712534,-6.04354310560249 +"Q9V3L7",0.130004225516565,17.7628901859142,1.51936701401183,0.158541650377468,0.24440616712534,-6.04372423619762 +"Q8MKN0",0.152707650547537,16.5844453349051,1.51745885252085,0.159016367577905,0.244760242866606,-6.04630521768592 +"Q9VDE2",-0.104448476131239,19.5950224472299,-1.51726441263819,0.15906481011235,0.244760242866606,-6.04656810184988 +"Q9VIW6",0.193445771609824,15.0142165694366,1.51576448020817,0.159438932835987,0.24489614117007,-6.04859530318937 +"D0UGE6",-0.195937842837331,15.3242683594864,-1.51573309949598,0.15944676817188,0.24489614117007,-6.04863770152348 +"P02283",-0.0897685143270586,21.5548605193017,-1.51303832497248,0.160120865501251,0.245705247153714,-6.05227651854577 +"Q9VL66",0.0826680202971666,15.7620512091045,1.51017719789259,0.160839282950926,0.246580812465207,-6.05613545673785 +"Q9V3Z9",-0.0819308523648949,21.6338968610421,-1.50920306819616,0.161084520513969,0.246730009382277,-6.05744825016881 +"Q9VV60",-0.0779563914982795,20.0494308515399,-1.50386439040566,0.162434302383097,0.248569189334868,-6.06463335871244 +"P20007",-0.12746178018682,14.8960669299406,-1.50174365861565,0.1629732028564,0.249165263395487,-6.06748304714216 +"O18335",-0.0658888929497543,21.6609989361721,-1.50077503795777,0.163219854427248,0.249313843575687,-6.0687837539657 +"A0A0B4KH34",-0.0749504469134834,23.3689691033395,-1.49440856903803,0.164849082057951,0.251572066672153,-6.07731952609713 +"Q9V595",-0.0818299612727849,18.5063273692098,-1.49242279953816,0.165360125180084,0.252121287751718,-6.07997715080946 +"Q9VLP2",-0.170192200740413,19.3539726736026,-1.49089247391697,0.165754892395415,0.252434073002011,-6.08202368605901 +"P42325",-0.0806805956846723,20.1285509306395,-1.48998120122161,0.16599035358032,0.252434073002011,-6.08324170639676 +"Q9VTC1",-0.107706942571371,15.8469769355536,-1.48986928421038,0.16601929141679,0.252434073002011,-6.08339126318563 +"Q9W1M9",-0.220825594507351,14.2257678413941,-1.48608145231238,0.167001265386407,0.253695911352028,-6.08844873594628 +"Q9VC05",-0.15612081084033,14.8664304997387,-1.48208753986777,0.168042090562998,0.255044774394068,-6.09377234501084 +"O18404",-0.0963080867311916,23.0057310815271,-1.48084896007403,0.16836600258768,0.255304083923864,-6.09542140049092 +"Q9VB10",0.0782805348294815,20.9924968540337,1.47958850370474,0.168696188251894,0.255572426888428,-6.09709866442506 +"Q7K1C3",-0.112691271658223,17.1008745455559,-1.47827028680531,0.16904210162141,0.255864088479593,-6.0988517971935 +"P91941",-0.0775226921671752,23.1021416163866,-1.47208040692924,0.170674570759598,0.258075102238944,-6.1070702929367 +"Q9VKX2",-0.0775679030453134,23.1235484293345,-1.47156051739705,0.170812297884769,0.258075102238944,-6.10775954367869 +"Q9VT75",0.0901106660955371,15.5724515508241,1.46601776246898,0.172286615272702,0.259817315870474,-6.11509804181675 +"P08928",-0.0731239992210817,22.7210904996215,-1.46581918577498,0.172339637004935,0.259817315870474,-6.11536061745032 +"Q9VQ35",0.223616549325399,12.3065356160047,1.46547071740183,0.172432715029145,0.259817315870474,-6.11582133681937 +"Q9VWD9",-0.076165440556796,19.4377701717986,-1.46360255053373,0.172932450473791,0.260335133023722,-6.11829006700079 +"Q9VI04",0.184986815290383,16.3524688244624,1.46033975606347,0.173808232504466,0.261417612098692,-6.12259680557556 +"Q9VXJ7",-0.11629733188772,14.9455248169449,-1.4583694019174,0.174338945694282,0.261979604881138,-6.12519452582257 +"Q9W4Y1",-0.152199485979498,17.5769264901435,-1.4568407283134,0.17475164959002,0.262363412705809,-6.12720834469626 +"Q86BN8",-0.136596560844222,14.2958034449137,-1.44353890707166,0.178378277942009,0.267567416913013,-6.14467281940794 +"Q9VXM4",0.085447362429214,20.1302889417902,1.44067383968234,0.179167784358702,0.268304885986411,-6.14842058955498 +"Q95T12",0.100285916336135,15.9640670863757,1.4405874643324,0.179191632487328,0.268304885986411,-6.14853349963717 +"Q02910",-0.228154983279868,16.2575855564485,-1.43914757346577,0.179589584077578,0.268659575104395,-6.15041506609333 +"Q9VTT2",-0.207413104172973,14.0886599637403,-1.43591871364812,0.180484708062077,0.269756714200309,-6.15462980295427 +"Q24400",-0.0892949318973031,21.4545117164531,-1.43398303942307,0.1810231503875,0.270319261276947,-6.15715347858869 +"Q9VGJ9",0.0771464390784544,18.0442530938729,1.43212892240253,0.181540190069381,0.270608997071787,-6.15956869302052 +"Q7JZV0",0.147220012569438,15.2473835843055,1.4321237030455,0.181541647316145,0.270608997071787,-6.15957548892832 +"Q7JW03",-0.148215086767895,17.1566554386743,-1.43043818666045,0.182012766023335,0.271069012256181,-6.1617692644559 +"Q9VWT3",-0.109750543788588,14.2966069169381,-1.41885661747544,0.185278169472837,0.275454859755023,-6.17679637651796 +"P92204",-0.154125665309918,15.8721992668769,-1.41882208020293,0.18528798120212,0.275454859755023,-6.17684106601512 +"P48609",0.0846412382193691,16.9537959924135,1.41711079100686,0.185774696252588,0.275932496303934,-6.1790544713908 +"Q9VXA3",-0.095929353111547,17.7987531490768,-1.41582288070672,0.18614171206496,0.276231651000314,-6.18071908608521 +"Q9W141",-0.0775864508045352,21.8765592328119,-1.41481899495283,0.186428216187855,0.27641090186786,-6.18201589365945 +"A0A6H2EGA2",-0.0961672405470111,15.8128614148274,-1.41288448016651,0.186981373016784,0.276984840312607,-6.18451312674121 +"Q9VWX8",-0.0739057366155258,20.5659061921597,-1.40957382925776,0.187931253903212,0.278144925918862,-6.18878143648055 +"Q9VFJ2",0.126363829829039,13.8526389134251,1.4065785493963,0.188794171343074,0.279174359751992,-6.19263731188515 +"O61444",-0.120531862500588,16.4215833636943,-1.40331783283057,0.189737372463568,0.280320582169382,-6.19682856832762 +"Q9VXA9",0.13407564814092,14.2511506800232,1.3908422162541,0.193382978686894,0.28545381278738,-6.21280333426429 +"Q9VAQ4",-0.109751793869233,16.0887851991566,-1.38630764412806,0.194722635403624,0.28717714929553,-6.21858561249543 +"Q9W074",0.136929568528227,13.6415521823781,1.38428978169543,0.195321286321358,0.287580217053,-6.22115453821474 +"Q9VL00",-0.145164928076358,15.980638635039,-1.38422423319789,0.195340758945473,0.287580217053,-6.22123794448149 +"Q9VJC7",-0.126827322634316,18.6099576151295,-1.38319526110666,0.195646652120478,0.287776557087265,-6.22254689035781 +"Q9W254",-0.0667293882926963,18.141604463727,-1.38149599432444,0.196152693781756,0.288266690068696,-6.22470704855108 +"Q9V420",0.098437509429818,17.4816972268581,1.37218762911605,0.198944302963642,0.29211188146422,-6.23650767336783 +"Q9VQF7",0.0860645406081595,18.7395990403027,1.37122550070026,0.199234742364922,0.292281046846693,-6.2377242672633 +"Q9VD00",-0.0709280698575547,17.912379316053,-1.36772717445044,0.200293789618835,0.29357648601425,-6.24214286309486 +"Q7KNM2",-0.0839364274476324,19.6281114339468,-1.36535440763227,0.201014780750984,0.294374586736297,-6.24513536130234 +"P02572",-0.064893061663696,26.5782803934844,-1.36408563309545,0.201401203606612,0.294681761066517,-6.24673404272446 +"P45889",0.0908818141539633,19.1475681499546,1.36295366998723,0.201746483842799,0.294928251577378,-6.24815946851451 +"Q9VJ22",0.310944858606529,12.9816245717618,1.3602496730879,0.20257328528343,0.295877618084729,-6.25156115272695 +"Q9VSY4",-0.0645596833759505,20.446590913164,-1.35886251020391,0.202998537870703,0.296239336105278,-6.25330440973428 +"Q8IQC6",-0.215632206386099,15.9312594337017,-1.33977561542517,0.208926029514079,0.30462291715864,-6.27716478162322 +"Q9V3Y2",-0.0894333337121225,17.8838483250248,-1.33064944868938,0.211810732417244,0.308559215434029,-6.28848951076435 +"P23128",0.212480522467805,14.6397759761384,1.32566230422378,0.213401054255831,0.31055600779337,-6.29465499001456 +"Q9VE24",0.0824869960468213,15.7983292240359,1.3251849233213,0.213553801522179,0.31055600779337,-6.29524430431053 +"Q9W1H6",-0.0945578276219017,17.1476031908805,-1.32218621088526,0.214515371687496,0.311682613218418,-6.29894269496769 +"Q8IP97",-0.0766787092212482,19.9575309305384,-1.32137356734008,0.214776571678796,0.311790532254336,-6.29994392578583 +"Q9W073",0.098821500760037,14.6005869684832,1.31577668484943,0.216582683045533,0.313959183012131,-6.30682777128791 +"Q9VJ19",0.0690043253721022,19.1288764476085,1.31557841520431,0.21664689427276,0.313959183012131,-6.30707125030576 +"Q9V535",0.0698337920529077,18.60512760644,1.31461971242156,0.216957600012138,0.314136525017574,-6.30824818743142 +"Q9W125",0.108065308774133,21.3969056047156,1.30829146515491,0.219017769314795,0.316844439910736,-6.31600160784369 +"Q9W0Y1",-0.0956860510840229,17.6477306977507,-1.30713930384257,0.219394588995854,0.317114535914285,-6.31741036896948 +"Q9VP13",-0.332043677132782,11.7073651357764,-1.30555034524292,0.219915142363833,0.317591738063094,-6.3193517503889 +"Q9VA97",-0.115655962887409,18.5605371415127,-1.30217519419561,0.221024242941744,0.318917333241201,-6.32346987986884 +"Q9W5R5",-0.0821758321689305,15.8775218791851,-1.30008342113538,0.221713925412531,0.319175119061259,-6.32601828143474 +"Q9VV76",-0.134700682726065,16.3344335082256,-1.30001016237303,0.221738111773894,0.319175119061259,-6.32610747909316 +"Q9VEP8",-0.0682649122586305,17.1876630789866,-1.29989251905107,0.221776956230216,0.319175119061259,-6.32625071050107 +"Q7JR49",-0.0871950121634981,18.8730371829467,-1.29658641651429,0.222870884911949,0.320472962097527,-6.33027209994376 +"O97454",-0.215840172359426,13.996875784922,-1.29306327639161,0.224041506987323,0.321743244028474,-6.33454937345757 +"Q9VHN4",-0.136501427017208,14.5543849707137,-1.29276730605399,0.224140077674513,0.321743244028474,-6.33490831500132 +"E1JIY8",-0.198608582931396,16.4254941659057,-1.29105445463692,0.224711229694837,0.322285753337049,-6.33698443247107 +"Q9VES8",-0.0656260030504487,17.9957208155939,-1.28947961258519,0.225237416190555,0.322762895365846,-6.33889151895613 +"Q9VTW6",-0.210121443885646,16.194169056418,-1.28258297151933,0.227553641269242,0.325802123293645,-6.34722332287188 +"Q9VI64",-0.0778326415927353,20.9307801441868,-1.28008741060284,0.228396563865563,0.326728532185042,-6.35023022661145 +"Q9V3J4",0.0751268237393514,16.685240294284,1.27948462986267,0.228600547101959,0.326740113595602,-6.35095588085062 +"A8JNP2",-0.106655839741197,21.1208525541613,-1.27219205373306,0.231080206968176,0.330001528444278,-6.35971532493049 +"Q9VU84",0.0794112870896235,18.4143083907812,1.269854127479,0.231879795081767,0.330860135326251,-6.36251579823704 +"Q9W0H6",-0.0859213088911837,18.1723647947172,-1.26504502627161,0.233531639220118,0.332932285657399,-6.36826453637901 +"Q9VSU6",-0.0933044146895092,21.6275568440208,-1.2639957721727,0.233893311289943,0.333163145372865,-6.36951668331065 +"Q7KTP7",-0.0543502323610028,17.8428552435053,-1.26199114558981,0.23458556305756,0.33386409486349,-6.37190682843556 +"Q9VXH4",0.103448713356091,17.1035307261194,1.25633740799298,0.236546936546909,0.336368533810949,-6.37863288283905 +"Q9VIG0",-0.0805415407629884,17.3670383833867,-1.25546975476082,0.236849115787266,0.336511350198603,-6.3796631382574 +"Q9VZV2",0.119923928313401,15.0368126342303,1.24998609848186,0.238766176855219,0.338946368505962,-6.38616234962423 +"Q8IPX7",-0.156482309802254,15.1508433411712,-1.24706755985262,0.239791604122438,0.340112581357335,-6.38961284878723 +"Q9VPL3",0.140736765528091,15.7123345066666,1.24515274896135,0.240466308260395,0.34077978095016,-6.39187343909838 +"O76877",-0.103470806979923,17.368344962166,-1.24331497010654,0.241115314005236,0.341196160270744,-6.39404067453242 +"Q8SX78",-0.0931541692439399,15.9843376096219,-1.2431624817909,0.24116922839281,0.341196160270744,-6.39422039300423 +"Q9VHX2",-0.147365282261617,14.8269573239446,-1.24099994499655,0.241934874073444,0.341989296571614,-6.39676734403103 +"Q9VGR2",-0.0869012757949825,15.6431698297456,-1.23894102385884,0.24266565984768,0.342611574880619,-6.39918921148305 +"Q7JXF7",-0.0898463657160313,17.8540174532232,-1.23860273807218,0.242785900185187,0.342611574880619,-6.39958684544769 +"Q9Y105",0.247386430449282,17.2073940152642,1.23676483058816,0.243440007568134,0.342996090245933,-6.40174578571485 +"Q9VXN1",-0.152286974206621,13.6740885749815,-1.23668164494537,0.243469646793276,0.342996090245933,-6.40184344543465 +"Q9VQ62",-0.183041811910762,19.6789883303478,-1.23552108347299,0.243883461315628,0.343276627372327,-6.40320543341246 +"Q9VRL1",-0.0885727090916149,20.479762370792,-1.23454331033096,0.244232540542363,0.343276627372327,-6.40435217211333 +"Q9V3F3",0.146133410835441,14.6036910424422,1.23439315165969,0.244286185066518,0.343276627372327,-6.40452821950362 +"Q9W4A0",-0.0701465543760165,17.134735138281,-1.23149332292634,0.245324020888427,0.344444837409004,-6.40792488583766 +"C0HK95",-0.122982744857538,19.990698998323,-1.23002576034074,0.245850608059573,0.344893872366162,-6.40964162812843 +"Q8IQW5",-0.0800258299897116,21.9568799466394,-1.22481290786545,0.247728435709741,0.34708472945254,-6.41572725689877 +"Q9W2N5",0.265837348609141,12.8485670836556,1.22453606464072,0.247828484878882,0.34708472945254,-6.41604991274782 +"O44226",-0.0562208650351472,20.186674150274,-1.2157418952748,0.251023573255099,0.351264530360323,-6.42627099527005 +"Q7JYZ0",-0.219494477249665,16.8292776102509,-1.20938370468103,0.253354139216387,0.354228586934563,-6.43362646595625 +"A0AQH0",0.14028091211744,16.853287844187,1.20233225821249,0.255959031267164,0.357570908001364,-6.4417500148225 +"O76454",-0.0884475095129424,17.9834407711386,-1.20167539146278,0.256202771278808,0.357611901667826,-6.44250492974484 +"Q9VP78",-0.0594086212481333,14.9080640643984,-1.2000913419876,0.256791318086275,0.358133711177179,-6.44432414470744 +"Q9W2D9",0.130210663041138,17.6320300140035,1.19713786443746,0.257891549819274,0.359367673432371,-6.44771125284291 +"Q9W3L4",0.111117894745327,17.7467405264326,1.19638600652372,0.258172231707044,0.359458499572078,-6.44857249186113 +"Q9W3C3",0.0850058408469714,16.4573577214638,1.19458040650602,0.258847288354021,0.360097812322358,-6.45063910140365 +"Q9VJJ1",-0.117820816226866,14.0243795029116,-1.19348576068576,0.259257225668171,0.360367543678757,-6.45189083450408 +"Q9VLV5",-0.0646005621134549,17.4702479203121,-1.19173909289336,0.259912410689631,0.360977436328313,-6.45388635869123 +"Q9VEK8",-0.0530119667762925,18.8674843722732,-1.19000562560625,0.260563945779325,0.361581249217899,-6.45586461209403 +"O44434",-0.096529891916882,15.8681979946861,-1.18703448241484,0.261683688811863,0.362795023652663,-6.45925023525623 +"P18053",-0.05465640716357,21.0232835006624,-1.18653150210591,0.261873626185735,0.362795023652663,-6.45982274636712 +"Q9VEA5",-0.141747766732074,15.6219699542762,-1.18295879814934,0.263225916274101,0.364190442988031,-6.46388402523812 +"Q9VHF9",0.115106587510965,17.0255258389361,1.18271723094465,0.263317550505735,0.364190442988031,-6.46415829112269 +"A8DYK6",0.0589293001111066,16.5698226061116,1.18146149061585,0.263794300924645,0.364547550904978,-6.46558332246905 +"Q9VPX5",0.0647170885667521,18.8209767637334,1.17649811751694,0.265685378457288,0.36685696296917,-6.47120453586642 +"Q9U1L2",-0.246517489312968,17.6193449557726,-1.1754492657367,0.266086367976067,0.367026231350419,-6.47239009111578 +"Q9W078",-0.0818818768491845,19.4311207108313,-1.17502672614141,0.266248045523985,0.367026231350419,-6.47286747486077 +"Q9VG00",-0.141920938424827,15.2692973902112,-1.16809662872975,0.268910826746683,0.370243090509968,-6.48067834503649 +"Q9VQL1",-0.0545422096762351,20.1082706861839,-1.16779925927604,0.269025554974869,0.370243090509968,-6.48101271698266 +"Q9VJJ0",-0.0556795196065103,19.709434863071,-1.1660913105768,0.269685247290712,0.370821972093722,-6.48293192684158 +"Q9VVU5",0.123398282020499,15.6597203034082,1.16555977563409,0.269890811823608,0.370821972093722,-6.48352876949325 +"Q960W6",0.186696010814332,14.1237479966434,1.1599491409734,0.272068192968696,0.373084359550807,-6.48981601903034 +"Q9VQV7",-0.0772581864348059,16.250760095745,-1.15963714756504,0.272189676295124,0.373084359550807,-6.4901649530667 +"Q9VYG8",0.116749287651263,15.0114754895941,1.15958898740153,0.272208432597921,0.373084359550807,-6.49021880905628 +"Q9U616",-0.112532577935109,19.7513678210464,-1.1530532535339,0.274763258917597,0.376023641169906,-6.49751153475002 +"Q9V597",-0.145487786866195,20.0339671709376,-1.15294980457595,0.274803848073211,0.376023641169906,-6.49762671011549 +"Q9V3I0",0.246702165515172,16.2731922365196,1.15094446838166,0.275591590183968,0.376792436415457,-6.4998577846355 +"A1ZBD8",0.168649373347385,14.0505637604564,1.1440968614337,0.278294835673224,0.380176728831235,-6.50745358771389 +"O76752",0.0643424501320666,17.9231901978439,1.14294442706558,0.278751817865615,0.380489388052247,-6.50872849226723 +"Q9VAS1",0.114289105075722,13.0280003445266,1.14065717637392,0.279660533531064,0.381417636900911,-6.51125586106808 +"Q8SY69",-0.115697961350911,18.9608697769592,-1.13984030206461,0.27998563480191,0.381549051347701,-6.51215754009054 +"Q8MSV2",0.137745061840771,18.1791097015221,1.1369003064404,0.281158143012097,0.382834108199329,-6.51539860389194 +"Q9I7I3",0.16104835842488,14.6114589612487,1.13436809473151,0.282171089186344,0.383899981046348,-6.51818491057488 +"Q0E8P5",-0.0746325491981601,17.7613734447106,-1.13316849650574,0.282651949531644,0.384240792028347,-6.5195031955624 +"Q9VIS4",-0.0838357425922389,14.0775334046946,-1.13168043256327,0.283249328516713,0.384739315933125,-6.52113697785854 +"Q9VNI8",-0.0660765478460661,15.7459663477266,-1.13094398348459,0.283545337311553,0.384828008653922,-6.5219449250522 +"Q9W0A8",0.0559336333016915,18.8598857503612,1.12902228146007,0.284318881266275,0.385564141424509,-6.52405126512783 +"Q9W380",0.116794848561117,18.3879921592901,1.12297640695187,0.286763236280768,0.388563020403185,-6.5306597934374 +"Q9VVU2",0.0561378174942107,20.0565018424827,1.11837656698498,0.288633858585549,0.390780256591473,-6.53566912494081 +"Q9W3N9",-0.0964123619582473,20.1826704395435,-1.11593877131126,0.289629065628585,0.391809636227478,-6.53831740987485 +"Q9V3R3",-0.0969273812388778,13.6329053378773,-1.11510047120683,0.289971906784121,0.391955543367839,-6.5392270450904 +"Q8SY33",-0.0661096876493055,17.3919283710278,-1.10731329815675,0.293171656534268,0.395775945707725,-6.54765119703559 +"Q9VKV2",0.0887734545903331,14.9101182289676,1.10706816338372,0.293272823078386,0.395775945707725,-6.54791562954315 +"Q95RB2",-0.0734235441330569,24.3207441246006,-1.10349472337848,0.294750631601119,0.397448709386149,-6.55176514382839 +"Q8IPP8",-0.0770855067702243,19.0742608839907,-1.10056841667419,0.295965082286479,0.398763939623463,-6.55491021825935 +"Q8I937",-0.222970964311232,14.0185280435525,-1.09873868793064,0.29672639456244,0.399165043282209,-6.55687338497639 +"Q9VS02",-0.069018316110359,17.9252793140078,-1.09870266254052,0.296741399082697,0.399165043282209,-6.55691201171067 +"Q9V9U4",-0.0604844602979089,15.9163009875989,-1.09426154490759,0.29859558831511,0.40133556914553,-6.56166614276756 +"Q9VUV6",-0.0737293347973278,14.8317817904756,-1.09254111917773,0.29931625990871,0.401980291085127,-6.56350372915323 +"Q9VX02",0.0858651452128427,17.217016495686,1.08380149815078,0.302997816414674,0.40659723071575,-6.57280308184342 +"P07668",-0.209150444046751,14.7482610689231,-1.08173792777458,0.303872125065294,0.407442688592372,-6.57499015064968 +"Q9VAY0",-0.128957421096905,14.0525773918315,-1.07405783216415,0.307143009028306,0.411204541720719,-6.58310068492026 +"Q9VUW4",0.085059506866445,14.5659582135549,1.07399289567069,0.307170778767395,0.411204541720719,-6.58316906425812 +"Q9VM11",0.0928915973725992,17.7529083825668,1.0720574343874,0.307999345759092,0.411983086388264,-6.58520562471393 +"Q0E8X7",-0.09887418300967,20.9842730225113,-1.06314259114187,0.311837718969915,0.416783105161714,-6.59454816859524 +"Q9VHA8",-0.0588814115794172,18.5777986566179,-1.0599203625309,0.313233967182753,0.418314057054309,-6.59790959308467 +"Q9VXI1",-0.0843502024723435,19.6021983460172,-1.05567045755276,0.315082752670508,0.420446425163526,-6.602330546565 +"Q9VZ49",0.101805887689615,18.9256670141064,1.05174708551819,0.316796796170536,0.422395728227381,-6.60639913157417 +"Q9VMH2",-0.213594174848785,17.3279775653262,-1.04930706426472,0.317866334055867,0.423483262943439,-6.60892330440039 +"Q9VLR3",-0.101915347059284,16.7811547218915,-1.04652048908687,0.319091101609783,0.42477570429778,-6.61180019519603 +"P45594",-0.0599441825819511,23.0187222021273,-1.04218013031052,0.321005861202705,0.426983872795943,-6.61626891275564 +"P91926",0.0883683166909783,17.708334784289,1.03915395793922,0.322345961253038,0.428424751689297,-6.619375685259 +"Q9W147",-0.0666032662427618,13.7831731343749,-1.03619008944276,0.323662533612499,0.42958434146819,-6.62241139696941 +"Q9VEY5",-0.0508336338181365,20.8506752772655,-1.0356878065897,0.323886050001872,0.42958434146819,-6.6229251581016 +"Q9VHJ7",0.148739605206041,14.8017666798064,1.03545190107207,0.323991068085721,0.42958434146819,-6.62316638482665 +"Q9VME3",0.0792326681931677,15.7203847405877,1.03272920409266,0.325204976847034,0.430627256002998,-6.62594726737223 +"Q9VCU0",0.139306027337257,17.3947869726467,1.03252989832257,0.325293970361977,0.430627256002998,-6.6261505988301 +"Q9VEC2",-0.0560675324044908,16.6975315451356,-1.03060609038474,0.326153920618102,0.431423266923865,-6.62811162507283 +"Q7K0S5",-0.0631416858443892,18.3246818967131,-1.02701495019772,0.327763717614149,0.433209097448812,-6.63176427987986 +"A8DZ14",-0.0558263505275534,19.4490994950313,-1.02283475518225,0.329645025691766,0.435350675260384,-6.63600299813219 +"Q9VVW8",-0.106214684419148,15.7561295464985,-1.01791377569101,0.331870014878711,0.437575204261124,-6.64097479229207 +"Q9VNR6",-0.125428506150032,14.6861017965509,-1.01759512581315,0.332014474197208,0.437575204261124,-6.6412960573663 +"Q9VDC0",-0.0790233863684833,17.5760113133478,-1.01737028818865,0.332116432011141,0.437575204261124,-6.6415226907882 +"O15943",0.0493208099536417,20.1787841419824,1.01655638351287,0.332485710337674,0.437715994351412,-6.64234275382751 +"Q7JZN0",0.0819497433374625,16.825300041835,1.01445899769359,0.333438724195612,0.438624441607477,-6.64445353521366 +"P13496",-0.0524888308770066,18.2754618155909,-1.01205934179274,0.334531567542128,0.439602916084418,-6.64686414010036 +"Q9VK59",0.0595183935430939,18.7543192112573,1.01166885112123,0.33470965433286,0.439602916084418,-6.64725597013406 +"Q9VRD4",0.0582922303891316,20.3437424829923,1.01072309963398,0.335141263827121,0.439823468185396,-6.64820445205325 +"Q9XY35",0.0585805919616149,19.2558554310386,1.005830963612,0.337380450941183,0.442413987554948,-6.6530990946312 +"Q9V9S8",0.0560561656921941,19.8933380629591,0.997907638453294,0.341030459816384,0.446849023545741,-6.66098506668826 +"Q8IPG8",0.139442216115709,15.8220744488806,0.993956896985599,0.342861260128537,0.448895276212245,-6.66489798956391 +"Q9W136",-0.073823333547157,18.2033620079948,-0.990047559044676,0.344679971874071,0.450922504381138,-6.66875729558636 +"Q9W3V3",0.172246465448477,13.0603453209085,0.988017262553487,0.345627298527773,0.451591181376851,-6.6707566502898 +"Q9VZ24",-0.125894560612679,21.9058836765275,-0.987791882955575,0.345732577109256,0.451591181376851,-6.67097838583953 +"Q9V8Y2",0.114015134291556,19.8865975230946,0.985597885802963,0.346758657385486,0.452257456908031,-6.67313472267648 +"Q95SH2",-0.0605480330277572,18.708803636173,-0.985541740395019,0.346784944475643,0.452257456908031,-6.67318985227111 +"Q9VW26",0.0478656122234362,17.4806143934017,0.984200043594594,0.347413556214007,0.452723290441377,-6.67450650087415 +"Q9V3N1",-0.0679199361234346,18.4054341576118,-0.981243732796941,0.348801586649835,0.45417724163304,-6.67740237558216 +"Q9VEW1",-0.162898290636107,14.6366576648018,-0.975198727204933,0.351652399112466,0.457532138626827,-6.68330129997137 +"Q9VJ25",0.137302846522367,15.675177956348,0.972290245506575,0.353030064316423,0.458966599594539,-6.68612870324009 +"Q9VMY9",0.105393572284406,14.9502014445866,0.971190077955002,0.353552204276976,0.459287442939249,-6.687196370627 +"Q9V470",0.0506022347437387,19.9469706909977,0.967093203164344,0.355501517481209,0.461460335532028,-6.69116336481632 +"Q95029",-0.0604378793998386,21.8137381737129,-0.963491218611752,0.357221788882872,0.463332771272652,-6.69463960691485 +"Q9VSD6",-0.0839072478283178,16.5272658000082,-0.962334876345233,0.357775322347201,0.463690161363738,-6.69575328656508 +"Q9VHE4",-0.0456302281908787,17.9430280057586,-0.96070090613027,0.358558550805784,0.464344458652211,-6.69732506791872 +"Q9VQT8",-0.15979700679053,18.0985155132006,-0.958658837322107,0.359539139159357,0.465253129649191,-6.69928627730351 +"Q9VZG2",-0.0724650910286364,21.8844615319653,-0.950381519754005,0.363533678586011,0.469898330938178,-6.70720005138662 +"Q9VWS1",-0.0678518189211221,17.1562803626478,-0.950054199890508,0.363692293310065,0.469898330938178,-6.70751181288623 +"Q9VGG5",0.0573587034024801,17.0264495694719,0.949435018223742,0.363992476360435,0.469922175363163,-6.70810131680686 +"Q9VBL3",-0.202599515241598,14.4797834127239,-0.946965551028535,0.365191460470692,0.471105457126925,-6.7104492117643 +"A1Z7G2",0.0618745294602441,19.5480418467204,0.939120505168326,0.369019210478219,0.475675458328956,-6.71787393152827 +"Q59E04",0.0828645078812826,16.3729834306777,0.935450437312685,0.370819727444695,0.477627262839963,-6.72132950132334 +"Q9VMB3",-0.0697650638973357,18.6856350838636,-0.934696324210446,0.37119046694855,0.477691943603452,-6.72203812694177 +"Q9W2J4",-0.0657395839121921,15.2489404618157,-0.9341835363837,0.371442716339135,0.477691943603452,-6.72251970841692 +"Q9W0Q2",-0.0544088917691994,15.5235086709504,-0.931110185438264,0.372957113738857,0.4789052219281,-6.72540135071006 +"P04388",-0.0858509577004707,16.4980301762138,-0.93110360355596,0.372960361681416,0.4789052219281,-6.72540751342347 +"Q9W403",0.062335027040616,15.3593027588354,0.929756839957468,0.373625368932519,0.479390088753416,-6.72666773365347 +"P53501",-0.0417499166437167,24.6281982793412,-0.928976112605875,0.374011263948661,0.479516363002587,-6.72739758530406 +"Q9VTC3",-0.120561227772832,17.1969444277156,-0.927283448089003,0.374848881152043,0.480221147282341,-6.72897816757226 +"Q7KLX3",0.0571865916542222,19.2700463682208,0.924965522520079,0.375998070794758,0.481323700756451,-6.73113865115979 +"Q9VV72",0.0876162005792942,19.3859859245635,0.919444949421244,0.378745141626847,0.484468478706734,-6.73626579568809 +"Q9VMQ9",0.0573695784312171,22.1092122135894,0.916171699017581,0.380380623614818,0.485939980467606,-6.73929347775106 +"P14199",-0.0530628662697445,18.5610139316746,-0.915976752194703,0.3804781861455,0.485939980467606,-6.73947350981894 +"Q9VCF8",-0.0534496591285158,16.9738862283629,-0.914613321105495,0.381161019012313,0.486089877426112,-6.74073171925457 +"A0A6H2EG56",-0.0845839927369134,20.9062272766626,-0.914578652312922,0.381178393089541,0.486089877426112,-6.74076369174882 +"A1Z7P1",0.169490793417252,14.6402674478305,0.911169554820017,0.382889573538742,0.487899013493217,-6.74390261995238 +"Q8SXS0",-0.107976728044264,14.485840024773,-0.907578565146281,0.384697898558579,0.489650002446375,-6.74719823527631 +"Q9V405",0.0523539205345855,20.2097429525788,0.907275454535482,0.384850811275298,0.489650002446375,-6.74747590643049 +"Q7PLT4",0.113488385449374,15.753349571676,0.902336690575694,0.387348329155766,0.492451991640105,-6.75198902632929 +"Q8SZ63",-0.122833176175485,14.0131780181936,-0.897308249716323,0.389902847567398,0.495322124708621,-6.75656248231127 +"Q9W5P1",0.0847792303788086,14.3194752072265,0.89190469334922,0.392661031738702,0.498218961633941,-6.7614527411352 +"Q08012",0.0693531328082564,19.2108935337362,0.891671171374044,0.392780536300139,0.498218961633941,-6.76166351009564 +"B7YZN4",-0.166223083568715,15.4435011260156,-0.890397608831618,0.393432726231712,0.49866701166755,-6.76281215183784 +"E1JGR3",-0.0638680152453528,12.13497242112,-0.886157270567494,0.395609630850515,0.501045455017964,-6.76662641635476 +"Q9VG42",-0.367986668596121,16.4471604161904,-0.883184525949645,0.397140759339949,0.502603024718539,-6.76929113553447 +"P0DKM0",0.0628932613791982,16.9920995783182,0.877932332140685,0.399855962666118,0.50565560707133,-6.77398029780011 +"Q9VH37",-0.0975049632524758,16.6277020209163,-0.873507269363522,0.402153508910325,0.508175797623047,-6.77791230380424 +"Q6NP72",0.0845638484335893,18.7613291108552,0.872381809737991,0.402739310938978,0.508217595985734,-6.77890962872991 +"P49028",0.103124494599598,16.3647688385414,0.87227303308412,0.40279596036759,0.508217595985734,-6.77900596228604 +"P81900",0.0468822703908423,22.4431518876514,0.870095713248219,0.403931034290456,0.509264523958035,-6.78093203573695 +"Q9VS84",-0.0472027111743998,17.4872722520765,-0.869243925391915,0.404375684362249,0.50944006156815,-6.78168440303205 +"Q9VQG4",0.0648631154079773,19.1670824303754,0.867289932259663,0.405396978958694,0.510341253511775,-6.78340792194203 +"Q9VE56",-0.0615019803883783,17.4777870701309,-0.865075149996012,0.406556721459902,0.511156670373317,-6.7853574172214 +"Q8IMT3",0.0933511307653401,14.7426185349403,0.864882677115513,0.406657614859348,0.511156670373317,-6.78552663215331 +"Q9V3V6",0.0394745369783642,21.5453504232483,0.864072336478626,0.407082580089888,0.511305529811697,-6.78623869609685 +"Q9VB68",-0.084166630213252,15.430944747007,-0.860099345388719,0.409170532346045,0.513471524477528,-6.78972149107592 +"A1Z933",-0.104113042291258,15.8211696505362,-0.859620383779588,0.409422738342393,0.513471524477528,-6.79014041870035 +"Q9VY24",0.0962900091181389,17.7282035315322,0.857400293731196,0.410593155577924,0.514552504510877,-6.79207959759642 +"A1Z8D0",-0.169176768728281,13.7749725906656,-0.853895584130106,0.412445462935804,0.516485759892584,-6.79513200027349 +"Q9VL89",0.0377739395459571,16.8733028423441,0.852246493403805,0.413319007328703,0.517110414020104,-6.79656451063736 +"Q8SY96",0.0599211482072306,18.7677354731111,0.851783807869603,0.413564323922553,0.517110414020104,-6.79696599824888 +"Q9V5C6",0.0483784556364952,20.6192335060217,0.84688006115714,0.416170387196554,0.519979180407379,-6.80120949535917 +"A1Z934",-0.0530863065173719,19.3005340964885,-0.84192086276725,0.418817231481244,0.522530040329104,-6.80547929411163 +"P23625",0.0383408207645317,22.2294150014328,0.841881048114664,0.418838527529983,0.522530040329104,-6.80551348557988 +"P04359",-0.068973543397945,18.7978144300746,-0.835031267455626,0.422513236520589,0.52672053700773,-6.81137484939309 +"Q9VZY0",-0.0729776661968593,17.1830454655056,-0.833748263481775,0.423203939957338,0.527187581664555,-6.81246806904562 +"Q9V428",-0.0597153247401394,18.7403236906668,-0.832207786777009,0.42403425703711,0.527827716968582,-6.81377873508432 +"Q9W4Z2",0.106566519550819,13.7266801056632,0.829849840187819,0.425307310652816,0.529017594458536,-6.81578081515805 +"E1JJH5",0.036552170432401,21.240168570264,0.824965921656877,0.427952287628833,0.531910891031963,-6.81991182745139 +"P09208",-0.220493564368349,12.6859058409543,-0.821258746190959,0.429967313479332,0.533877290584797,-6.8230332385532 +"Q94524",-0.0890245845773592,15.7645161595864,-0.820878216440843,0.430174507521563,0.533877290584797,-6.82335294376256 +"Q9VD14",0.0578852875781131,17.615248678279,0.815509500101699,0.433104811412837,0.537114368354358,-6.82784965003593 +"Q9VNF3",-0.0484600982122778,19.1551862355305,-0.812596766946547,0.434700157804889,0.538692320370397,-6.83027843440076 +"Q9VZS3",-0.0882118080709482,18.3829878902294,-0.811971332742973,0.435043225552413,0.538717223623924,-6.83079895634801 +"Q9U6M0",-0.0573638709261282,16.2798587818416,-0.806355774551537,0.43813155706937,0.542139048361801,-6.83545673504646 +"Q8IMX8",-0.0412678927589205,17.1753198942265,-0.805199333163415,0.438769349851681,0.542525778763976,-6.836412399319 +"Q86PD3",0.0380467754930471,18.9004112017947,0.803426361176046,0.439748357963279,0.543243375843275,-6.83787520589169 +"Q9VC58",-0.0665365880357722,13.1234057159513,-0.802969108519157,0.440001079594883,0.543243375843275,-6.83825200496982 +"Q9VLT8",-0.0831970611407353,13.9714745282957,-0.80148527610711,0.440821847355866,0.543854172625432,-6.83947345334675 +"Q9VK69",-0.0467105537206969,20.2529497733663,-0.800741092793996,0.441233864989936,0.543960152847903,-6.84008529288993 +"Q9VLP1",-0.106221335804491,18.3929269057443,-0.799671239996023,0.441826634105641,0.544098137181808,-6.84096400631126 +"P05812",0.0511791299900111,15.821100000321,0.799361791020954,0.441998186979226,0.544098137181808,-6.84121797583321 +"C0HK94",-0.0535887288583332,18.4540569725471,-0.797519548422283,0.443020399799519,0.544954297098524,-6.84272813512699 +"Q95WY3",0.0481196988500407,17.2121821471469,0.796214159985471,0.443745666066642,0.545444193809255,-6.84379634959982 +"Q4V6M1",-0.0524936241398635,18.2208847028862,-0.793085289960418,0.445487220126313,0.54718165181936,-6.8463504394903 +"Q9V3P3",0.0398583760855935,19.3591348998798,0.778672174997776,0.453567369572118,0.556696374132665,-6.85800068733335 +"Q9VPR1",-0.10119507947212,13.6723057958174,-0.775859419512495,0.455155263615519,0.558218844179352,-6.86025212860013 +"Q9VAV2",-0.046576993792069,17.7716241743794,-0.774353872158105,0.456006672507986,0.558218844179352,-6.86145425027756 +"Q7KTJ7",0.0453263821630188,22.1086906596989,0.774314004522613,0.45602923222803,0.558218844179352,-6.86148605480937 +"Q95SN8",-0.0892019101209591,17.6332862826494,-0.77410687092185,0.456146453606989,0.558218844179352,-6.86165127283357 +"Q9VUZ0",-0.0662777732084407,17.6540620564704,-0.770256844869178,0.458328811722521,0.560478341607892,-6.86471504090812 +"Q9VB64",-0.0549456519557943,18.8031982869686,-0.767138250424224,0.460101491613925,0.562233910631522,-6.86718677039079 +"Q9I7T7",0.118481569858645,14.4625379549109,0.763713800616838,0.462053101344922,0.564120971288477,-6.86989060781764 +"Q9VDC3",-0.0410391430898258,19.2797735156411,-0.763242412945828,0.462322162920473,0.564120971288477,-6.87026195505226 +"Q9VKF0",0.0590117051363581,15.9685854924231,0.757954283461287,0.465347438345486,0.566838202242717,-6.87441376654832 +"Q9VCI0",-0.107252246933211,14.7319906090647,-0.757706702505192,0.465489385978356,0.566838202242717,-6.87460751463308 +"O16158",0.0491555638804542,21.3192781801875,0.757568652388853,0.465568547405589,0.566838202242717,-6.87471552317623 +"Q7JVK8",-0.0444606946403958,19.1567414039757,-0.755533178876452,0.466736737531389,0.567846008900334,-6.87630600612593 +"Q9VPB8",-0.0465050589292275,15.57492551768,-0.741189738227999,0.475021547370922,0.57750433018564,-6.88740491900645 +"Q9VYU9",-0.0670512104259728,17.8594186253684,-0.738149492841044,0.476789465955047,0.57923148522434,-6.88973290854614 +"Q9VTZ5",0.0392536973136615,18.0494999074338,0.737095673728685,0.477403233241063,0.579555016772994,-6.89053783453287 +"Q9U6P7",0.0376584139522702,17.0818545378003,0.733386077910373,0.479567734539036,0.581759259062627,-6.89336305394968 +"Q9W2K2",-0.0988224721515891,15.6487178748922,-0.729964279653382,0.481569759860572,0.583763342621682,-6.89595769988876 +"Q9VN95",0.0540107940275476,17.9328945901364,0.728080035903021,0.482674422839419,0.584677514376289,-6.8973817933281 +"P22812",0.153659636268625,11.4196469975521,0.724086054878283,0.485021175908713,0.587093847181229,-6.90038942196562 +"Q8SXG7",0.0837073902504333,13.9485632974117,0.717633841009663,0.488827299068149,0.591271888938124,-6.90521661102121 +"Q9VAY6",-0.0436374385739082,15.2042061416055,-0.715393445803514,0.490153214320497,0.592446059048253,-6.90688360760819 +"Q9VHI7",0.0428762797774258,15.4679886480757,0.714135945849349,0.490898404395977,0.592917116967769,-6.90781719971843 +"Q8IH18",0.0456246879293527,15.6396759812287,0.709189115522292,0.4938366642029,0.595893326091365,-6.9114753760764 +"Q7KM15",-0.0419358771949661,17.1142929047039,-0.708785257214502,0.494077020374315,0.595893326091365,-6.91177301093447 +"Q9U5L1",-0.0355490019771487,17.6803499796112,-0.707139955710342,0.495056964736471,0.596643798540776,-6.91298397286955 +"Q9VG76",-0.0604635925244636,15.7747272190197,-0.705776119351864,0.495870172553674,0.597192381097132,-6.91398583697462 +"Q9VII5",0.050139489997747,17.3461008148914,0.704263404761338,0.496773109561946,0.597848157827797,-6.91509501189108 +"Q7K0D8",-0.0349300709350224,17.2862534344444,-0.703114166675423,0.497459761245695,0.598242885189487,-6.91593622834164 +"Q9VX98",0.055253059340739,18.2627947385551,0.701113822743211,0.498656320585164,0.599249814651336,-6.91739745768729 +"Q9VDF4",-0.03195760558134,18.6728244254121,-0.698807442654587,0.500038125479959,0.600477748956495,-6.91907754540842 +"Q9VIU3",0.173765318175734,12.4335221561337,0.694928556045218,0.502367316679702,0.602840780015643,-6.9218917698147 +"A8DRW0",-0.061269615850712,21.6057592127439,-0.690929574619211,0.504775517969514,0.605132242202163,-6.92477819001286 +"Q95RQ1",0.0729018078998074,11.7851132293016,0.689988251624062,0.505343402284494,0.605132242202163,-6.92545541909493 +"Q7JXB9",0.0746014642770838,16.1816594544541,0.689952073190945,0.505365235843893,0.605132242202163,-6.92548143065069 +"Q9VUK8",0.0311309916713753,20.7450337429826,0.687498158253233,0.506847497986688,0.606471755123239,-6.92724284184569 +"A1Z8D3",0.109107538990321,16.6323560679059,0.684022159358876,0.508951630483154,0.608552917308889,-6.92972809877135 +"Q9VQ88",-0.0489045096359533,16.3901606565019,-0.683004492022293,0.50956865180202,0.608854234388087,-6.93045353008066 +"Q9VRG6",-0.0465690109441486,16.3592537660305,-0.680736371257646,0.510945454053383,0.610062288733745,-6.93206678080929 +"Q9VHM3",0.0744182303618341,14.7700292341107,0.6786453283737,0.512216744121986,0.611142724746404,-6.93354973533545 +"A1Z7K6",-0.055977747440652,15.5525080479304,-0.675507128338277,0.51412822952296,0.61298490839478,-6.9357674958616 +"Q7KQM6",-0.0400381284781446,15.1438330806644,-0.674733349750169,0.514600195031672,0.613109375223449,-6.9363128781901 +"Q9VM33",0.116619332070965,13.910976428549,0.672529379027295,0.515945923226725,0.614273947139313,-6.93786316595455 +"M9MSK4",-0.0408087719222436,20.6282013334561,-0.665571505453318,0.520208096268613,0.618787597302073,-6.94272687298568 +"A1ZA83",0.0421421082528344,17.0555283139783,0.665130383114256,0.520479016195928,0.618787597302073,-6.94303366329141 +"Q70PY2",0.117742402018088,17.1146156319315,0.663577400115586,0.521433462109012,0.619100443992234,-6.94411224118482 +"Q9VEJ3",0.084171070504393,20.0245355165897,0.66332476729949,0.521588825313627,0.619100443992234,-6.94428748086283 +"Q9V3Q4",-0.055663678710399,15.9882485719345,-0.662890993146628,0.521855650031823,0.619100443992234,-6.94458822697779 +"Q9VJU8",0.0602846801459354,15.653195723841,0.658876098447409,0.524329134183907,0.621592747561305,-6.94736327243917 +"Q9V436",-0.0283673391413224,19.0817829984344,-0.657642298795639,0.525090635702381,0.62205339513606,-6.94821294704397 +"Q9VR89",-0.0726455180828953,13.945728279277,-0.65462328317612,0.526956715625294,0.623761582266787,-6.95028586006702 +"Q9VNQ3",-0.0598658869300497,15.0704904401473,-0.654100133782116,0.527280474218327,0.623761582266787,-6.95064417220481 +"Q9VRJ4",-0.0301521404839846,20.7082844445614,-0.649138559117075,0.530356811139057,0.626593859752737,-6.95402930762424 +"Q9VCD9",-0.0818835183422344,18.6045722955801,-0.649027200517058,0.530425977200758,0.626593859752737,-6.95410501186109 +"Q9VKJ4",0.0507807999293082,15.1182428849363,0.64625608835631,0.532148840950918,0.628045276108159,-6.95598502420591 +"Q9W1C8",0.160429222296283,16.0218568122866,0.645840205167653,0.532407686101281,0.628045276108159,-6.95626653276027 +"Q9VMC8",-0.0461137857490534,16.3601222739119,-0.644445938345523,0.533276010536278,0.628253393161814,-6.95720908313497 +"Q9VXE5",0.0549807339609885,14.6145491167391,0.644347394701839,0.533337412899957,0.628253393161814,-6.9572756293762 +"Q9VD26",-0.0490947276190568,16.2015746706733,-0.643731249795437,0.533721424842468,0.628262058318446,-6.95769149738607 +"P48611",0.0522076854297531,20.1192554790249,0.641156162685229,0.535328083810682,0.629488933420723,-6.95942558220592 +"Q9V455",-0.0642782033559222,19.3163207500515,-0.640851327730093,0.535518463143889,0.629488933420723,-6.95963043579674 +"P38979",0.0290073979811964,22.0830921396772,0.636567734231387,0.538197850845424,0.632192968457865,-6.96249955543938 +"Q9VUW2",0.0718578068995637,14.488745720695,0.632624133582268,0.540671399147745,0.634344361261736,-6.96512522170724 +"Q9Y128",0.0778182313843629,14.2764214642103,0.632435344864593,0.540789977046876,0.634344361261736,-6.96525053945688 +"P36951",0.0304797091061211,20.3718802369664,0.631314085483872,0.541494546253246,0.634724457589891,-6.9659941169549 +"Q26377",-0.0740147111862957,16.8309714320567,-0.628944563954279,0.542985222102326,0.636024824765927,-6.96756147712653 +"Q05856",0.0801180638944299,13.6606259577005,0.627296762118378,0.544023245570976,0.636793525342027,-6.96864822566301 +"Q9VU45",-0.0705986016158349,17.8519149461058,-0.621781935746408,0.547505519286201,0.640420200679792,-6.97226610777399 +"Q9VY92",-0.0505476076065072,21.3320857123004,-0.620614139310425,0.548244535123841,0.640835237972366,-6.97302841356726 +"Q9VL70",0.0402594828062455,23.5205767071286,0.618266584876545,0.549731849669889,0.642123757177434,-6.97455680879295 +"P92181",-0.0419261049628616,16.5060581225235,-0.61689338766081,0.550602910559484,0.642691151023946,-6.97544834733862 +"O97111",-0.0868123108577858,14.7018825264463,-0.611821700631921,0.553826795931534,0.645875589269411,-6.97872513784599 +"Q8IP62",0.0662987834815834,15.7086767939694,0.611384042895326,0.554105496549477,0.645875589269411,-6.97900672746876 +"Q8SXX1",0.0290223274348484,19.9225365787962,0.604842562120376,0.558280503552558,0.649887037420037,-6.98319317550835 +"Q9W306",-0.0717264935645492,14.7232419298427,-0.604607082828783,0.558431122369191,0.649887037420037,-6.98334309675787 +"Q9VD68",0.0595855241789991,14.7685221990973,0.604162057644607,0.558715834328737,0.649887037420037,-6.9836262798807 +"Q9VKR0",0.0764728362005602,13.2384551342161,0.599926023142133,0.561429959681957,0.652588970557145,-6.9863120686964 +"Q6WV19",-0.0936104173742631,13.4477804589056,-0.597255052406344,0.563145076406088,0.654126732204287,-6.98799649467565 +"Q9V3V9",-0.029925800874615,19.4957287678014,-0.59641334279414,0.563686167180241,0.654299601152848,-6.98852585875679 +"Q9V564",-0.0490790123416236,14.0252456077122,-0.594957386787085,0.564622804463591,0.654526812233887,-6.98943988661026 +"P41094",0.0265754529572177,21.1447888016418,0.594702660719883,0.564786761865783,0.654526812233887,-6.98959958553875 +"Q9W1Y1",0.0478758459600037,17.8256206308778,0.594279614821155,0.565059118475298,0.654526812233887,-6.98986467045455 +"Q9V3G3",-0.0868079635657644,14.9410609352416,-0.591866408723861,0.566614126218743,0.655872562479433,-6.99137344117442 +"Q9VQD8",0.100553688739694,17.5959541396048,0.59100360641571,0.567170666129752,0.656039689979256,-6.99191148552425 +"Q9VFU7",0.052836633381883,14.8453237687304,0.590423342551694,0.567545127482054,0.656039689979256,-6.99227292609844 +"Q8SZK9",0.0294191182673202,22.0758081014046,0.589445916832592,0.568176196762104,0.656314332547916,-6.99288100454415 +"Q9VGQ8",-0.0425472398666802,16.2244448522822,-0.584304474449693,0.571502083531942,0.659699290886698,-6.99606409621388 +"Q9W415",0.053731478916621,16.7582016132923,0.583319064172202,0.572140738623359,0.659979773183792,-6.99667118859997 +"Q9W404",-0.0752181877370468,15.9400278077765,-0.582490775905355,0.572677862797404,0.660142830094036,-6.99718073908952 +"P54195",-0.0756238888767022,18.5828026987821,-0.579136208269616,0.574856027697825,0.662196031906058,-6.99923748377814 +"Q9W0H3",0.0473274497001537,16.7186529265854,0.577964799830493,0.575617699174723,0.662229045168152,-6.99995307312597 +"Q9VKK1",0.0565539214949968,14.5448483921998,0.577599105403433,0.575855592729381,0.662229045168152,-7.00017619020838 +"Q7JYZ9",-0.0330529216956101,18.1282004888464,-0.577260754565132,0.576075746126491,0.662229045168152,-7.00038250655848 +"Q9VMG0",-0.124817563130987,14.7082229391184,-0.574818249716148,0.577666355271297,0.662868090356192,-7.00186851124112 +"Q9V4Q8",-0.0428036950001811,16.8873284214843,-0.574183722834648,0.578079960984596,0.662868090356192,-7.00225358645752 +"Q9VD58",-0.0247194830641142,22.7284691502166,-0.574137627553214,0.578110013662491,0.662868090356192,-7.00228154474947 +"Q9VF82",-0.0435766424431492,14.8650498980366,-0.573966998408159,0.578221265868261,0.662868090356192,-7.00238501856993 +"P17704",0.0289910825929915,20.3088565508304,0.573218063396937,0.578709717207275,0.66297239581163,-7.00283885039726 +"P22769",-0.0378386546848688,20.1281649493065,-0.57254493449063,0.5791489184207,0.663020175652524,-7.0032462716124 +"Q9VAP3",0.0604995922817313,16.4519656517905,0.566543540314649,0.583072629761355,0.666931161314041,-7.00685883530549 +"Q9VFT4",-0.102127964097082,15.5787251695009,-0.566097458372318,0.583364846736922,0.666931161314041,-7.00712592843292 +"Q7KW39",0.0336856497929325,21.6793970167045,0.560524792134394,0.587021962191182,0.670469889090407,-7.01044591037337 +"Q7K3W4",-0.0440496572023719,19.3274226587104,-0.56015649039968,0.587264093501849,0.670469889090407,-7.01066424214944 +"Q7K4Z4",-0.0406169644564454,14.9083241284338,-0.549386937580753,0.594367700630275,0.678115817134951,-7.01698873611137 +"Q7PLI0",0.0340557277740636,17.7673991561735,0.547642100762288,0.595522839367341,0.678969306947864,-7.01800250804061 +"Q9VNE2",-0.0295362258883678,19.0130069044264,-0.537974411721183,0.601944422980366,0.685821924543204,-7.02356437307602 +"Q6AWN0",-0.0350074786298293,18.4257422948074,-0.528642496840119,0.608176862365931,0.692449833738139,-7.02884419648738 +"Q9VHD2",0.04547254442903,16.5832599913292,0.525488043607613,0.610291066259618,0.694383013997983,-7.03060914001865 +"Q9V998",0.0714605826852246,15.8062046875572,0.522681382791411,0.612175319579778,0.69576475560095,-7.03217107253351 +"Q9VVK5",-0.0498733694322429,15.8709828049513,-0.522436704094936,0.612339724953354,0.69576475560095,-7.03230686258533 +"Q9VMY1",0.0505932760615995,15.4442128863843,0.521057614701486,0.61326678727836,0.696343772076449,-7.0330710919264 +"Q95RG8",0.11229218925584,13.1828192693397,0.518536184660457,0.614963602937823,0.697791982963816,-7.03446339926198 +"Q95U34",0.0314697396109587,19.4541268803187,0.517919597900311,0.615378901043029,0.697791982963816,-7.03480289660794 +"Q9VW40",0.0389422087431281,14.6776116356898,0.516006100902392,0.616668626959612,0.698144467889157,-7.03585404068038 +"Q9VQ29",0.0265145812337551,22.1510318036857,0.515049233689982,0.617314080967607,0.698144467889157,-7.03637829212533 +"Q9VQI6",0.0727810966701377,16.128865263889,0.514624914159732,0.61760041425625,0.698144467889157,-7.03661047385442 +"Q9VLG9",-0.0375684388667263,15.7367595149132,-0.514487690503909,0.617693027885719,0.698144467889157,-7.03668552182657 +"Q9VN25",0.0557908141239523,14.8893764202788,0.514355109546907,0.617782514750837,0.698144467889157,-7.03675801263627 +"Q7KMQ0",-0.0263222149476938,20.724586685964,-0.512517584285939,0.619023442475946,0.699073190284278,-7.03776088171967 +"O62621",0.0494469610375905,13.1506490689513,0.510149959066869,0.620624203176027,0.6999085692314,-7.03904803483877 +"Q9W0N6",-0.0510693799204116,14.4465304414806,-0.509655515520932,0.620958759806735,0.6999085692314,-7.03931612255491 +"Q9VJ60",-0.043569255032363,16.5267477426444,-0.509562079375532,0.621021991883976,0.6999085692314,-7.03936675594453 +"O97365",-0.0321017739072786,17.9636968147313,-0.506178440297807,0.623314006114441,0.702017395137669,-7.04119441230461 +"Q9VB79",-0.0322862453319193,17.6182553597868,-0.499676310008984,0.627730213437815,0.706155147200532,-7.04467396713079 +"Q9W3X8",0.0662870850094865,13.8674603763097,0.499522918552091,0.627834582313183,0.706155147200532,-7.04475553583817 +"Q9VJI7",0.0394815059886824,17.3571783663304,0.494620321912413,0.631174851810399,0.709433728315193,-7.04735000680752 +"Q9VSL6",-0.0863942650050706,14.5563189512371,-0.493742237049012,0.631774033421738,0.709629015318154,-7.04781211593058 +"Q9VCW6",0.0320319202653145,19.8351650385309,0.483044261691413,0.639096295065652,0.717370538472078,-7.05337917581964 +"Q9VEH2",-0.0255305661679888,15.9436538420782,-0.48210451868204,0.639741458190536,0.717611803807542,-7.0538626371764 +"Q9Y112",0.0224399558539226,22.2472081909766,0.480245414133124,0.64101871514611,0.71856130165572,-7.05481642275041 +"Q7K0W4",-0.0268845560875768,21.6775446308642,-0.476383396849399,0.643675936804319,0.721055381188451,-7.05678650577715 +"O17452",0.043543027698103,19.8506986541975,0.465863615670723,0.65094050509454,0.728703867448116,-7.06207556868932 +"Q9VH19",0.0392610969304208,13.9955459359337,0.46449497388424,0.651888469544611,0.729275631925158,-7.06275536375587 +"Q9VTF9",0.031031934056962,17.3795866927156,0.462612303536533,0.653193524036536,0.730245843225832,-7.06368733899424 +"A1Z6S7",-0.0277755531588788,17.5587209276209,-0.461306845767599,0.654099176048643,0.73076853693847,-7.06433144563729 +"Q9NCC3",-0.0392047196859764,17.3048094038192,-0.459340196716797,0.655464631032534,0.731803885249174,-7.06529848298506 +"Q7K0P0",-0.0241647671190872,15.3619816718311,-0.454944193463879,0.658521588395642,0.734090519989263,-7.06744573404155 +"Q9VS97",-0.0561012284154998,15.1232214053848,-0.454718651487454,0.658678606920768,0.734090519989263,-7.06755536634392 +"Q7KSM5",0.0242327215675679,18.9193428632045,0.45449684948367,0.658833038623457,0.734090519989263,-7.0676631297701 +"Q9VHG4",-0.0306195417607285,18.303920412094,-0.447355713579698,0.663814030775559,0.739146731197352,-7.07110567036414 +"Q9W0M5",-0.031960914194082,13.2282298468219,-0.439216598166391,0.669512015874901,0.74499402433578,-7.07496533583003 +"Q961D9",-0.127206116145825,12.5088546356576,-0.435989681149466,0.671777195689057,0.747016241606231,-7.07647668214415 +"Q9V3U6",0.0367035927182258,21.0321878434071,0.433497097447616,0.673529251494555,0.748465550628193,-7.0776367454567 +"Q7K1Q7",-0.0254872586349695,16.5420971625221,-0.432448647315088,0.674266824955569,0.748786327580485,-7.07812278432958 +"Q9VS11",-0.0346884981399356,14.8710013153414,-0.426196571303376,0.6786725497981,0.752283902055102,-7.08099753617813 +"Q7JZF5",-0.0222527027875081,16.9234149809766,-0.426168081997969,0.678692654798413,0.752283902055102,-7.0810105432997 +"Q7KUK9",0.0392528612970438,18.4151519196034,0.426059409060612,0.678769348077296,0.752283902055102,-7.08106015147702 +"Q8I0J3",0.0488004616268167,14.9984881108501,0.42021460892911,0.682899791033916,0.756359131105293,-7.08371024544983 +"Q9W330",0.0263493042090559,20.6935389235621,0.418775719641302,0.683918319417358,0.756984576501761,-7.08435722759446 +"Q9VRD9",-0.0466179669780882,16.0873883920434,-0.417899196625284,0.684539097230783,0.757169240173041,-7.0847502960646 +"Q9VFM0",0.0487272949396544,14.3572789956684,0.413524754606379,0.687640855804505,0.760096055322673,-7.0867000680437 +"Q7K9H6",-0.0643586433378633,11.8191420571785,-0.41075185241855,0.689610160670632,0.761768045032195,-7.08792572465145 +"Q95RB1",-0.0262124778125497,15.9535970642725,-0.409848190277033,0.69025246192232,0.761972936126029,-7.08832343016742 +"A1Z729",0.0330696120428726,16.6778521602213,0.3967805571215,0.699569092594793,0.77149398685174,-7.09397967817923 +"Q9U1K7",-0.0440555783009948,17.503157094098,-0.396454264938483,0.699802399344534,0.77149398685174,-7.09411863827944 +"Q9XYZ9",0.0239765534737799,21.9617245823263,0.378540325722601,0.712660722699907,0.785014251184996,-7.10157736816521 +"Q9VTZ6",-0.0321588932335928,17.0843388270319,-0.377854455083264,0.713154933505833,0.785014251184996,-7.10185627859154 +"Q9VFM9",-0.0222828553621834,17.1587789435794,-0.377405953928778,0.713478180333605,0.785014251184996,-7.10203839627024 +"Q9W379",-0.0280514796692319,16.3361544956655,-0.3757946223888,0.714639998098503,0.785722345241905,-7.10269095501262 +"Q9VXH7",-0.0367630474922507,18.2035100575318,-0.375006878029077,0.715208262316992,0.785722345241905,-7.10300898786496 +"Q9VYS5",-0.0385642698764439,14.2773424845669,-0.374554173048185,0.715534917519457,0.785722345241905,-7.1031914627786 +"Q7JVM1",0.0336910939606625,15.8871757647861,0.370184687607665,0.718690848463765,0.788396754150875,-7.10494167149904 +"Q7K549",-0.0571731201097325,14.7024102917994,-0.369831559231078,0.718946143279444,0.788396754150875,-7.10508224466842 +"Q8SYD0",-0.0243952944396462,15.4483387224899,-0.369219932701404,0.719388405166445,0.788396754150875,-7.10532541153525 +"Q9W265",0.0267491829697981,16.9662311248334,0.368109526770629,0.720191606310319,0.78875876515142,-7.1057658783058 +"Q9W257",0.0510439670654996,17.0741245529452,0.367318344416294,0.720764117114951,0.788867813220301,-7.10607892965028 +"Q9VL18",0.0192293442883766,20.8553415639256,0.358745048717475,0.726979357798408,0.794652875879622,-7.10942906785641 +"Q9W158",0.0276857427231114,16.94293295494,0.358081703623974,0.727461121726056,0.794652875879622,-7.10968506398547 +"Q9VL93",-0.026547151959587,15.3292093432287,-0.358057115352952,0.727478981695553,0.794652875879622,-7.10969454413381 +"Q9VUH8",0.0294080798389125,15.4464439546549,0.354555892746073,0.730023868277477,0.796910871915465,-7.11103797601519 +"Q8ING0",-0.0382209516409286,14.6682578925245,-0.342557440624629,0.738770823004422,0.805931806913914,-7.11554403337424 +"Q9VGF3",-0.0210223027161334,15.6704067951628,-0.339593731520103,0.740937448466638,0.807767100681276,-7.11663371706252 +"Q9VPQ2",0.0255258239879534,16.4526517021558,0.33759914570679,0.742396927368619,0.808829572077633,-7.11736186490267 +"P08736",-0.0173995704100172,24.3626459502486,-0.333303316857624,0.745543886381809,0.811727938958784,-7.11891585754757 +"Q9VJC0",0.0171007992565908,16.5819689763211,0.330255704632218,0.747779419202158,0.813630835765949,-7.12000650405989 +"A1ZBM2",0.0259195457513499,18.5728532558588,0.322204270121166,0.753697134438605,0.819535084904559,-7.1228406582651 +"Q9VIK0",0.0579611478893778,12.7564809164862,0.31955896413899,0.755645064894503,0.821117894621519,-7.12375686175274 +"O97422",0.0482450098291238,15.4041839298481,0.309103365708991,0.763361660793052,0.828963053517455,-7.12730564907145 +"Q9VDI3",0.0307819249828807,15.0132255347561,0.308215342043751,0.764018314978327,0.829136336619291,-7.1276017202459 +"P80455",-0.0269671368509528,20.5605140538924,-0.302834799835714,0.768001146270548,0.832916717801869,-7.12937772886425 +"Q9W499",0.0255703880038496,16.8613541882994,0.301446848681942,0.769029697211474,0.833490276120038,-7.12983087873808 +"O77430",0.0151150465738219,19.5471395633698,0.295715592768121,0.773281817944348,0.837554592422839,-7.13168040071534 +"Q9VL68",-0.0153235252981609,20.7965004441967,-0.293186403325627,0.775160770631854,0.839044883461345,-7.13248549014999 +"Q9VRG8",-0.0220054418685187,16.1234048599403,-0.290581356733891,0.777097662524192,0.840595915103989,-7.13330761578421 +"A1Z9E3",0.0137661226813748,21.8294740532335,0.288564337549511,0.778598443440151,0.841673495565893,-7.13393920774867 +"A1Z8H1",-0.0169049818653875,23.1582786122999,-0.28653173428985,0.780111781239963,0.842763245536437,-7.13457130013768 +"Q9VF77",0.0162952790940647,15.706905928794,0.285728699338465,0.780709930946639,0.842863537099672,-7.13481981348627 +"Q9VZ20",0.0143810919644913,18.7116308222308,0.283125583603239,0.782649915874544,0.844304679278603,-7.13562067346752 +"Q9VU95",0.0685317585057348,16.5259816416658,0.28203250863388,0.7834650000963,0.844304679278603,-7.13595481142976 +"Q9VGF7",-0.0140724564946275,20.0911923274831,-0.281570425101832,0.783809648864275,0.844304679278603,-7.13609568126358 +"Q9W0M4",0.0213979583852755,17.7917265414031,0.281222058347579,0.784069513310885,0.844304679278603,-7.13620173324655 +"Q9VK99",-0.0255349211169964,19.9280531077258,-0.280407333963236,0.784677365688869,0.84441409417357,-7.13644925193854 +"Q9W197",0.0169948758903367,17.346928161346,0.275141915187551,0.788609434582537,0.847715796173647,-7.1380318609123 +"Q9VI53",-0.0169653474521034,16.3646791329782,-0.274937864133636,0.788761939845024,0.847715796173647,-7.13809259690522 +"Q7KTH8",0.0152611278050472,17.6191525471302,0.274202549107009,0.789311582506838,0.847760283078819,-7.13831109580011 +"Q9VW90",0.0730270299244449,14.9823232881292,0.272397425747016,0.790661410167727,0.84866359855841,-7.13884504255618 +"Q7K0S6",-0.0188084423843069,17.313179275113,-0.271095856829346,0.791635140657702,0.84916232451257,-7.13922788335757 +"Q7K127",-0.0348308444370069,18.5180490170209,-0.269255428130375,0.793012641371882,0.85009324280739,-7.13976613780548 +"Q961T9",0.0348682574471866,17.881993077344,0.265598853027747,0.795751669591653,0.852297162905283,-7.14082481630426 +"Q9V434",-0.026030944477462,15.005963378787,-0.265146766935071,0.796090515471481,0.852297162905283,-7.14095471583757 +"Q9VC31",-0.0189959262658643,17.6825206330029,-0.263600021629529,0.797250160392037,0.852991191490647,-7.14139749654731 +"Q9VIT0",-0.018442311440694,16.4465394062624,-0.261479524485164,0.79884080211658,0.854145165340036,-7.14200036883527 +"Q7JQW6",-0.0149660235126046,15.9021058519961,-0.257070028875221,0.802151551437843,0.857135674438387,-7.14323863160409 +"P08120",0.025685465173197,18.2202980628385,0.256107499171819,0.802874786781372,0.857359247344,-7.14350616226638 +"P20240",0.0222835984627601,17.3162456830558,0.252749851803753,0.805399206444671,0.859504719353622,-7.14443164645953 +"Q9VF28",0.0228668556872798,17.7331892659406,0.249016832070129,0.808208587289539,0.861951357799841,-7.14544643350442 +"Q9W0K9",-0.0206210892261733,14.1875074309763,-0.245671481241882,0.810728638471467,0.864042483762307,-7.14634315989817 +"Q9VA76",0.0199306997099686,15.1947921489252,0.244633927738137,0.811510687242968,0.864042483762307,-7.14661884233544 +"Q7JZW2",0.010883337153988,20.521355456215,0.244351815904898,0.811723364541688,0.864042483762307,-7.14669360124349 +"Q7K2D2",-0.0130193446067395,20.3423801454052,-0.24276354624662,0.812921020476574,0.864499046633576,-7.14711289712379 +"Q9VW58",0.0407576093743476,14.8911496379603,0.242139514744286,0.81339171771582,0.864499046633576,-7.14727689887967 +"Q9VAF5",-0.0122233616260381,15.9324404096414,-0.241721403088786,0.813707136219853,0.864499046633576,-7.14738654933668 +"Q9VEN9",0.0239582866982424,14.8501549283188,0.239617125523392,0.815295104922958,0.865634777219283,-7.14793555486304 +"Q9VUM1",-0.0211819147165766,16.5458859736867,-0.237348011528747,0.817008443884978,0.866902089313069,-7.14852224647363 +"Q9W3T7",-0.0115923374365998,17.4234046917279,-0.22703950802921,0.824804621212098,0.874617996301195,-7.15111801521156 +"P48159",0.0114299672592324,19.858793204773,0.225752967806273,0.825779029927749,0.875094931333854,-7.15143396994385 +"Q9VMF0",0.0249799679688305,13.8761062826665,0.216822619918984,0.832551180156274,0.881711345079787,-7.15357810993011 +"Q9VTP4",-0.0118095115974199,20.9355974844405,-0.212366733478978,0.83593560468236,0.884599543067217,-7.15461588503871 +"Q9VTM6",0.0442716775425964,16.2053868565104,0.211835915921168,0.836339016437051,0.884599543067217,-7.15473808854078 +"Q07093",0.0209669547784621,14.5719061478596,0.2106410757353,0.837247254413694,0.88499489920305,-7.15501205233918 +"A1Z9M5",-0.0277644673253654,15.0261362135918,-0.209948329542145,0.837773948346293,0.88499489920305,-7.15517018787002 +"Q9VY41",-0.0378159030287684,16.5729070693299,-0.20458101465255,0.841857524644483,0.888745791839872,-7.1563778962741 +"Q9W4X7",-0.0107922932479525,19.0813728103012,-0.201891691208997,0.843905473659055,0.890344294790199,-7.15697135937833 +"Q0E980",-0.0126823222613339,18.3553797096807,-0.200035301792272,0.845319843929944,0.890645983144224,-7.15737647045819 +"Q9VMX3",0.0204821750811739,12.5563848001148,0.199048977528573,0.84607155129534,0.890645983144224,-7.15759020076112 +"Q9V3W7",-0.0191102514127479,17.9368101885541,-0.198661011876307,0.846367275797372,0.890645983144224,-7.15767398320639 +"Q9W087",-0.0220401625686613,16.6861783377117,-0.197786736737677,0.847033777995588,0.890645983144224,-7.15786219110393 +"Q9W1W4",-0.0167368507227508,17.2882064445825,-0.197501591572704,0.847251185190633,0.890645983144224,-7.15792339701885 +"Q9VAU6",0.0288471224195863,13.4805338511739,0.19731272988439,0.847395188998731,0.890645983144224,-7.15796388760693 +"Q9VZS1",0.020713975224071,15.4504345758539,0.194221318894443,0.849753166375414,0.892561890122286,-7.15862119807713 +"Q9W3J1",-0.0403940692155516,15.7848510725621,-0.191477035756605,0.851847668599651,0.89419881134312,-7.15919606663983 +"Q7KTW5",0.00917615798670468,21.6110695665812,0.188245468528976,0.854315618482884,0.896225441276384,-7.15986259607185 +"Q9VSW4",0.0282053889498091,15.8235366881298,0.186797302812773,0.855422117596176,0.896822182369844,-7.16015763274169 +"Q9W1H5",0.0108629037516152,17.2416560920484,0.183199962171975,0.858172145889942,0.899140162904788,-7.16088072936769 +"P05389",0.00993614003788679,20.5419099126282,0.181824541783422,0.859224127403664,0.899677240746586,-7.16115350916109 +"A1Z6G9",0.0188126372489652,14.1889757287999,0.180682945492829,0.860097488528769,0.900026732036378,-7.16137836463667 +"Q9VG26",-0.0121904568055804,19.7324497960736,-0.178366726078176,0.86187008126815,0.901316172761927,-7.16183025627517 +"Q9W259",-0.0167718422245784,16.8757635572087,-0.177042679536131,0.862883728674737,0.90181081417886,-7.1620859732575 +"P20351",0.0180205903268806,13.9681251576305,0.165554454325677,0.871689448269107,0.910211001297389,-7.16422519872329 +"Q9VYT1",0.0113876151837378,14.2722935259393,0.165133196829583,0.872012697885628,0.910211001297389,-7.16430092926413 +"Q9VWA8",0.0203458502006004,14.498981594115,0.162670409722295,0.873902994147139,0.911613629917091,-7.16473982959978 +"Q9W258",0.00940275482687625,19.3025467926088,0.158245208979341,0.877301601594222,0.914586919661976,-7.16551196935874 +"Q9VCY3",0.010877252090733,17.8580846417023,0.156296857753957,0.87879878862212,0.915575502449529,-7.16584521214749 +"P02515",0.0116778702959728,18.0377552751154,0.155133214189717,0.879693214791977,0.91593525734895,-7.16604227999543 +"Q9XZ61",-0.00858495628574829,18.5317778658211,-0.152529709787097,0.881695017307841,0.917411983238565,-7.16647788530978 +"Q9VKA1",0.0404630409903994,14.447089477717,0.151858136496188,0.882211523450035,0.917411983238565,-7.16658905887416 +"Q9V3Y4",0.0167627692366743,14.0955836218084,0.143494830301725,0.888648479582482,0.923530008687589,-7.16793261657536 +"Q86BL4",0.0138623605006742,14.971117120802,0.140702621620283,0.890799455997202,0.925188974223744,-7.16836430817901 +"Q9V3V0",-0.00890432972923882,14.2384159160768,-0.139489560074733,0.891734226546773,0.925583503347863,-7.16854922150527 +"Q9VNF5",-0.00960206997267221,15.9301654564493,-0.137736697153778,0.893085266917682,0.926409344041476,-7.16881360176815 +"Q9VLT7",0.0158095916014389,18.0581270048317,0.135676247577702,0.894673839597206,0.927480400527122,-7.16912011542198 +"Q9VTV9",-0.00857138483123521,17.2481045177074,-0.131155968450711,0.898160593304303,0.930516689212159,-7.16977642608825 +"Q9VIQ8",0.00788694965753933,21.3476929233794,0.130350198595542,0.898782370258336,0.930582863805652,-7.16989109050662 +"Q9VYT3",0.00824648487345669,14.4212182011872,0.127570228246868,0.900928096480956,0.932093274252522,-7.17028128498686 +"P51140",-0.0109168173805063,13.6489594604332,-0.127012367075588,0.901358783794555,0.932093274252522,-7.17035857584286 +"Q9W3C4",-0.032865323113759,14.7927514337452,-0.125956284082911,0.902174206234047,0.932358473357119,-7.17050396989051 +"Q6IGW6",-0.00958927461023507,15.6531538178792,-0.122712620941136,0.904679440581526,0.93436861107739,-7.17094296700963 +"Q9VSR8",-0.0121732024107164,15.4083652724595,-0.11940374457936,0.907236167086861,0.93594727209752,-7.17137902366822 +"Q9VVS6",-0.0118535475799,16.5357706641022,-0.119282103001843,0.907330179245617,0.93594727209752,-7.17139482757286 +"Q95RN0",0.00618199438562428,16.9418855534084,0.116462759778098,0.909509557993974,0.937615539390574,-7.17175662082091 +"B7Z0N0",-0.0123338029012956,13.0584725469224,-0.115415785333455,0.910319079601411,0.937870429138452,-7.17188877654989 +"Q95SH0",0.055379726122851,13.9373299340762,0.114010558440453,0.911405770532434,0.938105365038405,-7.17206428214455 +"Q9VXB0",0.00635230969972866,20.2438374341937,0.113666405198899,0.911671940483966,0.938105365038405,-7.17210693819185 +"Q24298",-0.00625285180857915,19.3985001594372,-0.112663672560848,0.91244752413476,0.938324580922799,-7.17223048840425 +"Q9V8M5",0.00870432779992569,19.8552174793146,0.110895421691664,0.913815446474968,0.939152288798674,-7.17244569985604 +"Q8T0N5",0.00693019108446435,18.5736145147931,0.107268078591748,0.91662248059899,0.94007918241275,-7.17287654860405 +"Q9VWU1",0.0106353012903799,14.9186713250977,0.1069328459161,0.916881962763952,0.94007918241275,-7.17291564528946 +"Q7JXF5",0.00644462893734143,18.515884839958,0.106448656743995,0.917256760596818,0.94007918241275,-7.17297189856038 +"Q9W0C3",-0.0114779733960653,18.4515016912742,-0.106415453213728,0.91728246333401,0.94007918241275,-7.17297574682531 +"Q86BI3",-0.00660980477274009,18.0600638577629,-0.105765837701369,0.917785348411579,0.94007918241275,-7.17305079580292 +"Q9V4C8",0.00649161297017997,17.2450843857319,0.105360805873077,0.918098913759214,0.94007918241275,-7.17309735636326 +"P55828",0.0061522276045487,19.9747850273977,0.102451309434065,0.920351799355915,0.941807853574028,-7.1734265786355 +"Q0KI15",0.0055431500947698,15.6179195709911,0.0918843965087706,0.92854002248817,0.949604388418312,-7.17454487560514 +"Q9VSK4",0.00497355468899485,19.7895594964929,0.0792418772931644,0.938347981842047,0.95904683438268,-7.17572328292363 +"Q9VH07",0.00445960122723577,18.2173013461176,0.0783029779097669,0.939076822719093,0.959204005079882,-7.17580386102242 +"Q9V6B9",-0.00625241327308856,15.857780962715,-0.0698082797438504,0.945673598776401,0.965342069425021,-7.17648928507603 +"Q7YTY6",-0.00556057321249348,18.4706386864837,-0.0690745870936042,0.946243575245749,0.965342069425021,-7.17654480064249 +"P02299",0.00349790018093188,22.0033434176027,0.0665053928892947,0.94823972676486,0.966787203082999,-7.17673458215633 +"Q8MRT7",-0.00629483543140452,15.4200663945209,-0.0652180337376772,0.949240090000562,0.967215925547304,-7.17682697430121 +"Q966T5",-0.00469223620661019,16.521060254944,-0.0630516578799007,0.950923714236963,0.968339899479398,-7.17697837907826 +"Q0E9F9",-0.00620815552877119,18.4244679412904,-0.0612804822375694,0.95230039169361,0.969150124066468,-7.17709836691994 +"Q9VMQ7",-0.00677310363976069,15.9004599540012,-0.057941206889473,0.954896343936799,0.971199452247915,-7.17731529347256 +"Q4V5I9",0.00484380295579534,16.1045588087095,0.055610397713271,0.956708642851087,0.972449735695072,-7.17745951136833 +"Q6IGN6",0.00764689238471483,16.7860199677039,0.0548015470486532,0.957337617862724,0.972496435197944,-7.17750817572819 +"Q9VDK7",-0.0029226536690885,17.8725224125528,-0.0483523355893589,0.962353682073911,0.97699692130206,-7.17787069799307 +"Q5LJT3",-0.00413398688194277,17.1015373283195,-0.0454277183867912,0.964628968114773,0.978711142831777,-7.17802016377198 +"Q9W436",0.00473262367418137,14.3909333229969,0.0441771974255894,0.965601947521812,0.979102765025156,-7.17808122889041 +"Q9VUQ7",-0.00381850689258911,16.541158303633,-0.0363965851048648,0.97165698369511,0.984643893562238,-7.17842288836858 +"Q7JXW8",0.00550815757067724,14.8550385820276,0.0348802799737289,0.972837235674683,0.985213117946739,-7.17848179125932 +"Q9VCU6",0.00267608503757089,15.4544439772664,0.034157296793914,0.973400011016922,0.985213117946739,-7.17850899436397 +"Q9VVM1",-0.00344472977536014,15.5502205868336,-0.0313491023782619,0.975586071467868,0.986826905523592,-7.17860925271575 +"Q9VFN9",0.00260321793406071,16.0590149731594,0.0301385198366351,0.976528524905882,0.987181563359401,-7.17864982198694 +"Q9XYW6",0.00257702499317958,16.6062938639541,0.0280570944587126,0.978149027511921,0.988220822465102,-7.17871584119634 +"Q9VD30",-0.00182393087853328,21.4343518013308,-0.0268351608859177,0.979100417933916,0.98858323069841,-7.17875239914769 +"O18373",-0.00146969546918641,19.5771833539344,-0.0253807237971861,0.980232878704902,0.989127913901861,-7.17879379184905 +"Q9VV47",0.00121366100414377,20.2267462639323,0.0235425162907058,0.981664217873669,0.989973346682756,-7.17884280802513 +"Q9VE94",-0.002547406252841,14.6814213846271,-0.0207815893868141,0.983814167920438,0.991208585973257,-7.17890950851748 +"Q9VGQ1",-0.00110516200663824,22.459897762128,-0.0203331932727429,0.984163349855673,0.991208585973257,-7.17891955691834 +"Q9VHG6",0.00139154076619796,15.7738200967352,0.0196802338526561,0.984671838703649,0.991208585973257,-7.17893379757426 +"Q9VN93",-0.00102053719776762,20.2863284699987,-0.0184442585290869,0.985634367660366,0.991579086403795,-7.17895948103029 +"Q9VLM9",0.00105589095899461,18.3987764740882,0.01698411611603,0.9867714999992,0.992074529723063,-7.17898767707033 +"Q9VLM8",-0.00119907562635291,16.8110897095364,-0.016176690057114,0.987400322165423,0.992074529723063,-7.17900227096368 +"P49963",-0.00148211894319061,14.8732283619124,-0.0155207840434167,0.987911147404081,0.992074529723063,-7.17901360306884 +"Q9VNX9",0.00141671340531957,13.5166682558316,0.0112315074275949,0.991251802471255,0.994830328833967,-7.17907614801501 +"Q9W3G8",-0.00110193377260615,15.7518214313318,-0.00826119854318728,0.993565301740492,0.996481241311977,-7.17910770711149 +"Q9VHK6",-0.0005677346434112,18.0738563475364,-0.00734561470520278,0.994278440673059,0.996481241311977,-7.17911549580628 +"Q7KMM4",0.00160727425002882,14.5144829041496,0.0068184980942172,0.994689008863575,0.996481241311977,-7.17911956537955 +"Q7JVG2",-0.000226988402609152,14.7968739633531,-0.00175579525775836,0.998632384010304,0.999357923918479,-7.17914322646358 +"Q9VN71",7.5849417399354e-05,18.6215625376787,0.000896500368218475,0.999301701753926,0.999357923918479,-7.17914446874212 +"P43332",7.67781345984986e-05,17.1511980313934,0.000824320315393977,0.999357923918479,0.999357923918479,-7.17914453644508 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SFug_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SFug_vs_Earth_significant.csv new file mode 100644 index 0000000..b0cfe36 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/Limma_SFug_vs_Earth_significant.csv @@ -0,0 +1,114 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VC18",0.840900893783122,18.2100580023051,16.6428464139454,8.08835706183817e-09,8.23034465067389e-06,10.9051764882554 +"Q9VC06",0.861311545357717,16.3836066963437,16.1279208945203,1.1081951571981e-08,8.23034465067389e-06,10.6069195850731 +"Q8MSI2",-0.761746348228659,24.0545359721853,-15.5135982250325,1.63373398157613e-08,8.23034465067389e-06,10.2361431026761 +"P10676",-1.06222841949458,19.7094940821678,-15.2222953299637,1.97370375315921e-08,8.23034465067389e-06,10.0543532220728 +"Q9W3J5",0.639137617105982,16.0545409045738,14.4748461650063,3.25645909721152e-08,1.08635475482976e-05,9.56924794521206 +"Q7JUS9",0.711004592010102,20.537771745897,13.9568042923957,4.67275586374568e-08,1.13107117237373e-05,9.21635189240244 +"Q7JYW9",0.651452471682957,17.2082297076694,13.9346672633165,4.74670156271947e-08,1.13107117237373e-05,9.20095275581483 +"Q9VLB7",0.814590382361004,21.0791828750061,13.2624395275421,7.73158519509241e-08,1.61203551317677e-05,8.72028315875468 +"Q9VXP3",0.652701908406097,14.5121579002444,13.074400957357,8.897452689607e-08,1.6489945651405e-05,8.58114790043441 +"Q9VFN7",-0.588266316630886,18.6432717821932,-12.8523114644121,1.05275679013624e-07,1.75599832594724e-05,8.41406800384503 +"Q9VZU7",0.551207876873782,17.5103451390685,12.6972636876086,1.18578465514871e-07,1.7980807316255e-05,8.29561896662086 +"Q9V3N7",0.605663705165867,20.5385384549374,12.2323686635011,1.70759607554139e-07,2.37355854500253e-05,7.9312559775038 +"Q9VAJ9",0.869971970779755,17.6603525856979,11.9121380845183,2.21104881606807e-07,2.65667384605688e-05,7.6719288726211 +"Q9V4E7",1.30292940665369,15.7149598382524,11.9017847987221,2.22982217294942e-07,2.65667384605688e-05,7.66342726320171 +"Q9VHR8",0.524861763115318,20.3332388569267,11.725209570376,2.5782688587212e-07,2.86703497089798e-05,7.51727628131211 +"Q9VA09",0.717891126775829,16.3754738181992,11.42084694789,3.3265068330136e-07,3.37554932242762e-05,7.26012169508041 +"Q9W2N0",0.542470712111857,16.2793021701122,11.2257792280125,3.92881524274596e-07,3.37554932242762e-05,7.0917252259422 +"Q9VLC5",0.701507924379619,21.7692412956303,11.2220140471308,3.94155178766879e-07,3.37554932242762e-05,7.08844671102711 +"Q9Y119",-0.735322922691761,17.7195433413239,-11.2196527847401,3.94956221403794e-07,3.37554932242762e-05,7.08639010359949 +"P19334",-1.02046554310178,15.2730765209876,-11.1912206229168,4.04742124991322e-07,3.37554932242762e-05,7.06159307574016 +"Q9VZF6",0.551316518553071,14.9998471495332,11.1181731017177,4.31116122953762e-07,3.42429377660417e-05,6.99760217886482 +"O17444",0.784590846022143,15.3876834242501,10.9421882539596,5.02671064415099e-07,3.70790823304472e-05,6.84174487283463 +"P21187",0.620905529959327,18.8653479843893,10.9228688607702,5.11282310311921e-07,3.70790823304472e-05,6.82448773252691 +"Q7JYX5",0.793371589126801,14.9267010936988,10.7959012639389,5.7203235454505e-07,3.9756248640881e-05,6.71033794036221 +"O97125",0.662541786334245,18.4676698327401,10.6521336651366,6.50465714147654e-07,4.19334167823813e-05,6.57952356197389 +"Q8IN49",0.504142342313791,16.8480441019707,10.6057745883844,6.7819558213449e-07,4.19334167823813e-05,6.53698305836305 +"Q9VW54",0.560651678722614,15.8118021696516,10.576649883606,6.96273123284113e-07,4.19334167823813e-05,6.51016711383456 +"Q9V3A8",0.688036884714656,15.5547024449285,10.5645795186677,7.03918267330142e-07,4.19334167823813e-05,6.49903309988078 +"Q9VV31",-1.30560764476999,15.7123156107349,-10.4948109548456,7.49937676275957e-07,4.31343463458033e-05,6.43444040998491 +"Q7K569",0.647037923071398,20.5586605327605,10.4334886306053,7.93096618596596e-07,4.36047798008895e-05,6.37733247317661 +"A1Z803",0.62962900555803,18.7875165107467,10.4099153436893,8.10400583829481e-07,4.36047798008895e-05,6.35529532614478 +"Q9VN13",0.710376988671154,17.0180794147003,10.1466191743346,1.03424593713986e-06,5.05488954842298e-05,6.10593974861004 +"Q9W299",0.779784425939949,14.7567095230134,10.1196966180527,1.06067826255878e-06,5.05488954842298e-05,6.08010523346378 +"Q24253",0.756144490100898,18.8785118802021,9.75172085157313,1.50611087647466e-06,6.69545224212191e-05,5.72054012748415 +"O16797",0.502613650816549,16.5525710859797,9.73861408598584,1.52534283693425e-06,6.69545224212191e-05,5.70750681758337 +"Q94523",0.588152281167012,20.3945432060371,9.67810792695838,1.61765285442395e-06,6.9039770444901e-05,5.64713413955695 +"Q0E8E8",0.572028141560423,21.737234242923,9.65429668155406,1.65562998668827e-06,6.9039770444901e-05,5.62328233551901 +"Q7K148",0.66557861952921,16.828608977072,9.61813013183072,1.71517900839512e-06,6.91669208203156e-05,5.58695306609553 +"Q9VXQ0",0.532641285538663,14.9126197120224,9.54706082420704,1.83909062267654e-06,7.13396083401041e-05,5.51520666834977 +"Q9V3B6",-0.832423531891061,13.1968670391521,-9.496502481538,1.93315099074615e-06,7.3283996649195e-05,5.46387629049129 +"Q9W1H8",0.585664501461611,20.5577442943077,9.46270132820552,1.99894467410799e-06,7.40942159202694e-05,5.42942341323075 +"Q9VQE0",0.549085874673347,17.2622245429953,9.44004514332221,2.04440457047918e-06,7.41318874686799e-05,5.40626928530711 +"Q9VED8",0.573661669605334,16.2710401187074,9.27861384426788,2.40273705704752e-06,8.34951127324013e-05,5.23985645931036 +"A1ZB70",-0.57368743941745,16.0980868163516,-9.07900140397558,2.9430858142725e-06,9.81813427641305e-05,5.03054769433862 +"Q9VA42",-0.755475941357517,20.3322919174719,-9.0593615232661,3.00299117363708e-06,9.82106808334962e-05,5.00973887657329 +"Q8SXD5",-0.567410558158702,20.7936229197279,-9.01362441544985,3.14769160853446e-06,9.90632000572732e-05,4.96112855958623 +"P45437",0.55850861028784,16.0136600485525,8.93288496235604,3.42194512007174e-06,0.000103545735616877,4.87479799713128 +"A1Z9A8",0.522674084939718,16.6312088986939,8.91770281090968,3.47635563222127e-06,0.000103545735616877,4.8584900109721 +"P54385",0.54871898654509,21.4839687458882,8.85542950733143,3.70956108622775e-06,0.000108553471786454,4.79135036896676 +"Q9V521",-0.722962615495023,17.7263101957716,-8.83023996302008,3.80866792615686e-06,0.000109532036221201,4.76407839044531 +"Q8SXF0",0.521309132596533,16.3341251347788,8.71573530111579,4.29684386274075e-06,0.000117494025623796,4.63927244202218 +"Q9VV36",-0.556198564578295,23.1814180507471,-8.31511618821141,6.61775613226683e-06,0.000169821803517247,4.19157723890933 +"P41093",0.622296737158742,18.835029355193,8.16237160787834,7.8351473261423e-06,0.000194374860135585,4.01623035787755 +"Q9VXZ8",0.600293034583544,17.9019418010034,8.08143091252982,8.57689250055602e-06,0.000207337053491702,3.92224225274995 +"Q9W309",-0.560497296245718,18.3949158035826,-8.03960552277454,8.98969370277816e-06,0.000214211558517628,3.87338074741525 +"A8DYP0",-0.580146686000123,15.2845974395829,-7.96934692115766,9.73234401025069e-06,0.00022564948806518,3.79084825007991 +"Q8SZN1",-0.609020650279739,20.1626511352097,-7.95646780106253,9.87554713954325e-06,0.00022564948806518,3.77565706346413 +"Q24276",-0.547336177520485,18.7145023724167,-7.92171791670986,1.02734345238753e-05,0.000231568767376,3.73457233629156 +"Q9VNE9",0.509236117966555,18.695510857436,7.7202634259563,1.29501600822541e-05,0.000276934192528203,3.49358884487651 +"Q9W253",0.514689251093907,15.1130395169647,7.69666457234635,1.33100714598464e-05,0.000281027837911694,3.46504309859731 +"Q9VFZ4",0.668024980805045,16.4946847755605,7.52446155091937,1.62879325705105e-05,0.000318976646285979,3.25470071470864 +"Q9VNW6",0.886768112530575,21.564159826657,7.52090131781711,1.63566379021179e-05,0.000318976646285979,3.25031377241352 +"Q9VH81",0.57411686681893,14.481187237746,7.50652518172778,1.66372711192327e-05,0.000318976646285979,3.23258354664151 +"A0A0B7P9G0",0.759275092592084,14.659817896056,7.39066685167734,1.90983285197912e-05,0.000357932718775413,3.0887615074745 +"Q9VBC7",0.541127349488585,16.1411389916009,7.36677740359695,1.96531508207734e-05,0.000363074684626165,3.05889842078705 +"Q9V784",-0.579713391385583,14.2027932440259,-7.3602384999515,1.98080313555042e-05,0.000363074684626165,3.05071199559592 +"Q9VBP9",0.517979767166283,13.9658193400898,7.20738523785382,2.38313134948713e-05,0.000410917213303416,2.85781151876891 +"Q9VM10",0.500079807440496,17.1192967560435,7.18419456805647,2.45152261785349e-05,0.000413044416826224,2.82828597779177 +"Q7K1Z5",-0.521209839576619,15.9823533694555,-7.15552261516876,2.53902147023058e-05,0.000423508781234462,2.79168681270464 +"P06002",0.703099419449481,17.2463032398988,6.99457607276485,3.09707987623575e-05,0.000501546527530217,2.58427585786757 +"Q9VAY9",0.554001358213398,14.5106593753941,6.83088366266501,3.80286402540152e-05,0.000592820298539227,2.36985972813442 +"Q9VNB9",0.743410430435549,18.831848590577,6.76647398926142,4.12654484800697e-05,0.000631474936373911,2.28451999693443 +"Q7K4T8",0.653598197948867,13.6913233680706,6.46139103978388,6.1194254985713e-05,0.000860058266668856,1.87271882587796 +"A1Z8H6",-0.578247457091029,16.8181635547737,-6.33261984385721,7.25273667685719e-05,0.000968899007918103,1.69509065108415 +"P83967",-0.549410222678652,17.5617736774693,-6.21102251143016,8.53201916485075e-05,0.001094723689767,1.52524954480389 +"Q9VG81",0.819544286126304,15.6615020835819,6.14984837854398,9.26547305030536e-05,0.0011554118248213,1.43902446235405 +"Q8SZK5",-0.880361957186853,15.38706301649,-6.12159389689127,9.62683098128824e-05,0.00116359087512962,1.39902260994968 +"Q9W199",0.547951574963282,15.7684216411779,6.0764218881905,0.000102363428721562,0.00120394806270304,1.33483633522182 +"P50887",0.660040556929665,17.682586602018,5.9362773978612,0.000124058215649786,0.00137039141525724,1.13386860112972 +"Q9W308",-0.597762160571264,17.1482275849802,-5.87269703280562,0.000135482453524752,0.00146496131289574,1.04177667320763 +"Q9VHB8",0.515261203255758,15.4855106815594,5.85954961712528,0.000137982567332332,0.00146595491917408,1.02266184878924 +"Q8IN43",-1.11392451857727,17.9733984879883,-5.63796861679948,0.000188463286205251,0.00180664805396757,0.696802178099929 +"Q9VWV6",-0.552855854456649,23.6999618259412,-5.54414201628139,0.000215506202369709,0.00199208264079894,0.556706171204852 +"Q7JXZ2",0.539345138847818,17.4676856649053,5.43301221536975,0.00025300518463167,0.0021748805154561,0.38914611524772 +"A1ZBJ2",0.51305075015188,19.4480093374636,5.320557819361,0.000298128620241203,0.00247402257991208,0.217794261862735 +"Q9VXC9",0.610837544545554,18.983599107953,5.13364907372021,0.000393187213575362,0.0030362790381653,-0.070982036538739 +"Q7K511",0.733084391750879,16.74716901557,5.10510540159824,0.000410341906752622,0.00311113772937897,-0.115516626777239 +"Q9VKU5",-0.564251105500565,13.6286484352689,-4.99427610391633,0.000484884166745043,0.00351646430491622,-0.289516913147321 +"Q7JRN6",-0.545520032585875,14.7424279930585,-4.94204301864649,0.000524889117552109,0.00374151729947401,-0.372114544917021 +"Q9W3E2",-0.544142213058361,17.7562928421416,-4.82554154866471,0.000627291341277064,0.00421904015020219,-0.557693573049971 +"Q7K204",-0.554036191917598,14.8815565836225,-4.80598456698764,0.000646464942509613,0.00431321409642414,-0.589027892715245 +"A1Z992",-0.509268039550674,14.2200372849405,-4.77081123954504,0.000682528963467042,0.00453569048232281,-0.645512815970689 +"Q8MZI3",0.549297668779911,17.7679037356023,4.71288680663763,0.000746643017058588,0.00482713392423924,-0.738895465015955 +"Q9VCX3",0.518069878327685,12.8291074877683,4.63427501470087,0.000844034233525054,0.00533276174818103,-0.866340831080639 +"Q9VEV7",0.607278813553421,12.8928523517671,4.52057853756359,0.00100934084049749,0.00603433878835057,-1.05208770370246 +"Q9VNW0",-0.527409600156286,14.698542230532,-4.35002411366023,0.00132439948601356,0.00750533510151227,-1.33377272282602 +"Q9VNZ3",0.883797303968695,15.3491691268023,4.11533469773615,0.00193708129943816,0.00940712997548245,-1.72699633260508 +"P05031",0.600836507257874,13.5767994139783,4.02335599039344,0.00225274600395639,0.0104960344541879,-1.88274422409727 +"Q0KIE7",0.630914072188274,14.1196381458357,3.66459084232512,0.00409901489245658,0.0161634913489777,-2.49772265808296 +"Q9W1R0",0.773187535478591,14.0734059385537,3.54426577602477,0.00502628764034405,0.0185073902518629,-2.70614567272549 +"A1ZA22",0.667856748774152,13.512010914393,3.52158507084575,0.00522410286181622,0.0188378546642548,-2.74552538055763 +"Q9VDQ3",-0.540108562747498,13.2347964542374,-3.50724401784407,0.0053533153031103,0.0191257150502178,-2.77043876125758 +"A8JNG6",-0.7334284384018,15.7114531181878,-3.50041214411936,0.0054160261156987,0.019172642425466,-2.78231068954056 +"Q9VK00",0.679543789561958,17.8481928166995,3.36138537708437,0.00687070538913116,0.0229666063909234,-3.02432636999293 +"Q9VBT2",0.71450158439866,12.8900577220959,3.34401262911682,0.00707883915996321,0.0235209237426666,-3.05461524901496 +"Q9VIV6",0.644546565279585,14.7912804362585,3.32402468778677,0.00732633184140069,0.0240084901993249,-3.08947326447092 +"Q9VIX1",-0.550796888876606,17.260360552921,-3.27019150065085,0.00803800082868936,0.0258771412208651,-3.18339767064674 +"Q9VSL9",0.536703905156083,14.683596430742,3.23128833446243,0.00859606738789917,0.0271557583390451,-3.25130046709729 +"Q95RQ8",0.74603108025692,14.4383632307286,3.056356273748,0.0116382343619591,0.0329585312661252,-3.55663070907859 +"Q9GYU8",0.547637078848053,12.7160188015424,2.9887625669354,0.0130891789278577,0.0356744288425925,-3.67446806772167 +"Q6IGM9",-0.665461922380437,14.8174208441999,-2.85521419136728,0.0165166663773343,0.0425151227120272,-3.90671259589541 +"Q9VRL2",-0.686244064379004,11.9444424104172,-2.81705859031378,0.0176527658201947,0.0445458598912024,-3.97286895775742 +"A1ZB73",-0.695445019731014,13.5302636904513,-2.77878586326047,0.0188711660417825,0.0465637647303153,-4.03911636414199 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SF1g_vs_Earth.csv new file mode 100644 index 0000000..da86e1e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SF1g_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","SF1g","Earth","tmt_runTMTb","tmt_runTMTc","sexMale" +"Earth_F1",0,1,0,0,0 +"Earth_F2",0,1,1,0,0 +"Earth_F3",0,1,0,1,0 +"Earth_M1",0,1,0,0,1 +"Earth_M2",0,1,1,0,1 +"Earth_M3",0,1,0,1,1 +"SF1g_F1",1,0,0,0,0 +"SF1g_F2",1,0,1,0,0 +"SF1g_F3",1,0,0,1,0 +"SF1g_M1",1,0,0,0,1 +"SF1g_M2",1,0,1,0,1 +"SF1g_M3",1,0,0,1,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SF1g_vs_SFug.csv new file mode 100644 index 0000000..6fbeef1 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SF1g_vs_SFug.csv @@ -0,0 +1,13 @@ +"sample","SF1g","SFug","tmt_runTMTb","tmt_runTMTc","sexMale" +"SF1g_F1",1,0,0,0,0 +"SF1g_F2",1,0,1,0,0 +"SF1g_F3",1,0,0,1,0 +"SF1g_M1",1,0,0,0,1 +"SF1g_M2",1,0,1,0,1 +"SF1g_M3",1,0,0,1,1 +"SFug_F1",0,1,0,0,0 +"SFug_F2",0,1,1,0,0 +"SFug_F3",0,1,0,1,0 +"SFug_M1",0,1,0,0,1 +"SFug_M2",0,1,1,0,1 +"SFug_M3",0,1,0,1,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SFug_vs_Earth.csv new file mode 100644 index 0000000..c766604 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/design_matrix_SFug_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","SFug","Earth","tmt_runTMTb","tmt_runTMTc","sexMale" +"Earth_F1",0,1,0,0,0 +"Earth_F2",0,1,1,0,0 +"Earth_F3",0,1,0,1,0 +"Earth_M1",0,1,0,0,1 +"Earth_M2",0,1,1,0,1 +"Earth_M3",0,1,0,1,1 +"SFug_F1",1,0,0,0,0 +"SFug_F2",1,0,1,0,0 +"SFug_F3",1,0,0,1,0 +"SFug_M1",1,0,0,0,1 +"SFug_M2",1,0,1,0,1 +"SFug_M3",1,0,0,1,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SF1g_vs_Earth.csv new file mode 100644 index 0000000..6ef3a3e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SF1g_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"Earth_F1","Earth","Female","TMTa" +"Earth_F2","Earth","Female","TMTb" +"Earth_F3","Earth","Female","TMTc" +"Earth_M1","Earth","Male","TMTa" +"Earth_M2","Earth","Male","TMTb" +"Earth_M3","Earth","Male","TMTc" +"SF1g_F1","SF1g","Female","TMTa" +"SF1g_F2","SF1g","Female","TMTb" +"SF1g_F3","SF1g","Female","TMTc" +"SF1g_M1","SF1g","Male","TMTa" +"SF1g_M2","SF1g","Male","TMTb" +"SF1g_M3","SF1g","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SF1g_vs_SFug.csv new file mode 100644 index 0000000..ce40c16 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SF1g_vs_SFug.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"SF1g_F1","SF1g","Female","TMTa" +"SF1g_F2","SF1g","Female","TMTb" +"SF1g_F3","SF1g","Female","TMTc" +"SF1g_M1","SF1g","Male","TMTa" +"SF1g_M2","SF1g","Male","TMTb" +"SF1g_M3","SF1g","Male","TMTc" +"SFug_F1","SFug","Female","TMTa" +"SFug_F2","SFug","Female","TMTb" +"SFug_F3","SFug","Female","TMTc" +"SFug_M1","SFug","Male","TMTa" +"SFug_M2","SFug","Male","TMTb" +"SFug_M3","SFug","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SFug_vs_Earth.csv new file mode 100644 index 0000000..6f0455c --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/model_metadata_SFug_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"Earth_F1","Earth","Female","TMTa" +"Earth_F2","Earth","Female","TMTb" +"Earth_F3","Earth","Female","TMTc" +"Earth_M1","Earth","Male","TMTa" +"Earth_M2","Earth","Male","TMTb" +"Earth_M3","Earth","Male","TMTc" +"SFug_F1","SFug","Female","TMTa" +"SFug_F2","SFug","Female","TMTb" +"SFug_F3","SFug","Female","TMTc" +"SFug_M1","SFug","Male","TMTa" +"SFug_M2","SFug","Male","TMTb" +"SFug_M3","SFug","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/significant_counts_summary.csv new file mode 100644 index 0000000..b91078e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_batch_sex/significant_counts_summary.csv @@ -0,0 +1,4 @@ +"model","contrast","n_significant" +"condition_batch_sex","SF1g_vs_Earth",48 +"condition_batch_sex","SFug_vs_Earth",113 +"condition_batch_sex","SF1g_vs_SFug",13 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_Earth_results.csv new file mode 100644 index 0000000..08b773f --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P19334",-0.764609439301758,15.4010045728876,-2.52944761147053,0.0243958109445238,0.999952130816504,-4.52112870757905 +"Q9W370",0.583547445019452,18.3204812365226,2.24793496964811,0.0416350319673017,0.999952130816504,-4.53570766498683 +"Q9VFZ4",0.639562902078257,16.4804537361971,2.15651876360879,0.0493648418703852,0.999952130816504,-4.54048233034458 +"Q9VXQ0",0.647839252227998,14.9702186953671,2.1389543144565,0.0509957419067448,0.999952130816504,-4.54140010624941 +"Q9VXP3",0.672862129146633,14.5222380106146,1.81304320851123,0.0918315539084393,0.999952130816504,-4.55830689423044 +"P45437",0.521029435087764,15.9949204609525,1.56519779403666,0.140381210591043,0.999952130816504,-4.57072132488022 +"Q6IGM9",-0.542998986007357,14.8786523123864,-1.55425218082478,0.142960499878109,0.999952130816504,-4.57125453562266 +"P22979",0.465652077338909,19.39844137514,1.55059581055679,0.143831073838136,0.999952130816504,-4.57143231342163 +"Q9VHB8",0.42442622470513,15.4400931922841,1.53667733947486,0.147186485634875,0.999952130816504,-4.57210745871328 +"Q9VW54",0.476843657269498,15.7698981589251,1.49755697403276,0.156975447775691,0.999952130816504,-4.57399109186652 +"P41093",0.623397237729097,18.8355796054782,1.49700497893844,0.157117412949154,0.999952130816504,-4.57401751768606 +"Q9VC06",0.651655167867569,16.2787785075986,1.4903916840135,0.158826686129113,0.999952130816504,-4.57433377836388 +"O16797",0.700026653213751,16.6512775871783,1.49005777102574,0.15891340289899,0.999952130816504,-4.57434973004114 +"Q7K148",0.395453052232693,16.6935461934237,1.44585217038464,0.170749883069924,0.999952130816504,-4.57644691642021 +"Q9VH72",-0.572468400497534,18.6944157827014,-1.44372275174804,0.171338154740632,0.999952130816504,-4.57654718794211 +"Q9VR79",0.527422574355459,20.2302829306034,1.42736800209255,0.175912745635903,0.999952130816504,-4.57731492662381 +"Q9W1R0",0.50981938320759,13.9417218624182,1.42077432014065,0.177785511198325,0.999952130816504,-4.57762324260629 +"Q9I7Q5",-0.572597641264366,20.6732751306916,-1.41697054670653,0.178873364021474,0.999952130816504,-4.57780078345357 +"Q9VG42",-0.842804394435491,16.2097515532707,-1.40648644910918,0.181900266672632,0.999952130816504,-4.5782888986427 +"A1Z803",0.502810500204976,18.7241072580702,1.40236735001435,0.183101016872855,0.999952130816504,-4.57848017582353 +"A1ZA22",0.590691853952412,13.4734284669821,1.36635393915458,0.193879418627936,0.999952130816504,-4.58014021926872 +"Q9VPE2",0.351682165801794,20.7656712747026,1.35219348864727,0.198257118401509,0.999952130816504,-4.58078673139362 +"A1Z9B5",-0.39480058639448,15.8745405464955,-1.33283450824561,0.204371651920041,0.999952130816504,-4.58166471181647 +"Q9VED8",0.562512169993475,16.2654653689014,1.32806178139198,0.205902347721537,0.999952130816504,-4.5818801048308 +"Q9W5W7",0.376364388276613,14.9034811872323,1.31832027699701,0.209055356340752,0.999952130816504,-4.58231841280558 +"Q9VAY9",0.539726643299582,14.5035220179372,1.31081439191714,0.211511212516307,0.999952130816504,-4.58265490500917 +"Q9VNB9",0.73428633524464,18.8272865429815,1.3098277069815,0.211835765363836,0.999952130816504,-4.58269905846177 +"Q9VG81",0.480802078861087,15.4921309799493,1.29448188998482,0.216935178953338,0.999952130816504,-4.58338335111653 +"Q9VNW6",0.682036784364254,21.4617941625739,1.281861890402,0.221202019068759,0.999952130816504,-4.58394263970483 +"Q9VC18",0.677337048443512,18.1282760796353,1.27908403820903,0.222150145555023,0.999952130816504,-4.58406532285121 +"Q8SXF0",0.395234844043852,16.2710879905024,1.26827243425312,0.225871164644489,0.999952130816504,-4.5845413385588 +"Q9W3E2",-0.634307082032201,17.7112104076546,-1.26658300023677,0.226457062464223,0.999952130816504,-4.58461550771252 +"Q9VN13",0.490525440369577,16.9081536405495,1.26357451937166,0.227503392547448,0.999952130816504,-4.58474744142421 +"P22812",0.392441292067071,11.5390378254514,1.25326589577406,0.231117745466929,0.999952130816504,-4.58519810774597 +"P50887",0.608644887749229,17.6568887674278,1.24545637397333,0.233885972623771,0.999952130816504,-4.58553805588253 +"Q8IN43",-0.815559482841657,18.1225810058562,-1.23866145881089,0.236315761143222,0.999952130816504,-4.58583280044018 +"Q9VAQ4",-0.351776868674889,15.9677726617538,-1.23338888353979,0.238214824878173,0.999952130816504,-4.58606083904799 +"Q9W2E7",0.366292080740042,18.4662116230169,1.20568319735935,0.248391179688738,0.999952130816504,-4.58724930891827 +"Q9V3A8",0.345533189898447,15.3834505975204,1.18886843114932,0.254730393304513,0.999952130816504,-4.5879624029918 +"P10676",-0.655514005724665,19.9128512890527,-1.18823306212249,0.254972363162107,0.999952130816504,-4.58798922459299 +"Q8IN49",0.47051759555832,16.831231728593,1.16469162386622,0.264063483450349,0.999952130816504,-4.58897655635732 +"P17336",0.56430122911588,20.6951623777099,1.16234800672031,0.264981987325646,0.999952130816504,-4.58907415319347 +"Q9VME1",-0.372594272015874,16.6092433115872,-1.15095513490141,0.26948195380213,0.999952130816504,-4.58954677561885 +"Q7JPS2",-0.474778117691947,20.6985184536622,-1.1505469314257,0.269644262899593,0.999952130816504,-4.58956365326505 +"Q7K5J8",-0.300696750983935,18.2502547622958,-1.13898726505831,0.274271611124186,0.999952130816504,-4.59003997016773 +"Q9VZU7",0.483502751290398,17.4764925762768,1.13442962986786,0.27611254238544,0.999952130816504,-4.59022689646816 +"A8DYP0",-0.377223767032291,15.3860588990668,-1.13114504260225,0.277445063083675,0.999952130816504,-4.59036130233696 +"Q9W1L1",0.438885752315135,14.8317393044745,1.10813563294089,0.28691652719558,0.999952130816504,-4.5912955384815 +"Q9VYG8",0.468414098615369,15.1873078950761,1.10025950220781,0.290213840821174,0.999952130816504,-4.59161235055979 +"A1Z9A8",0.473793718254587,16.6067687153514,1.09089468548922,0.294171209429949,0.999952130816504,-4.59198703893865 +"P82890",-0.364117076765673,19.7080232453864,-1.08997750296486,0.294560945739381,0.999952130816504,-4.59202361773844 +"Q7K2E1",0.458232235587595,17.3807421099237,1.0889011995397,0.295018787777026,0.999952130816504,-4.59206651562366 +"Q9VLB7",0.462060910732596,20.9029181391919,1.06624216888823,0.304780906098205,0.999952130816504,-4.59296282109553 +"Q7JX94",0.526423634869975,12.2905420255327,1.0410692041216,0.315903443252695,0.999952130816504,-4.59394306516568 +"Q9VQE0",0.578930346942574,17.2771467791299,1.03742238427688,0.317539082966695,0.999952130816504,-4.59408369650616 +"Q9VFQ9",0.445307743632576,19.0872762215348,1.03622891419606,0.318075707008004,0.999952130816504,-4.59412964352065 +"Q70PY2",0.43863816291335,17.2750635123791,1.025518360163,0.322921120915995,0.999952130816504,-4.59454028952424 +"Q9VNE9",0.66223218560279,18.7720088912541,1.0215325001302,0.324737918049012,0.999952130816504,-4.59469232530841 +"Q9VLC5",0.533100280623366,21.6850374737522,1.01445796027383,0.327980771324895,0.999952130816504,-4.59496112120128 +"Q8SZN1",-0.457887943304772,20.2382174886971,-1.00720070018087,0.331331602213499,0.999952130816504,-4.59523545040362 +"Q9VIE8",0.540427659600912,24.8202962323816,0.989757011030745,0.339486227538176,0.999952130816504,-4.59588893621112 +"Q8MSI2",-0.582327975782238,24.1442451584085,-0.988952860548432,0.339865580854577,0.999952130816504,-4.59591885931272 +"Q9VXC9",0.452225779675555,18.904293225518,0.988391404149637,0.340130623837541,0.999952130816504,-4.5959397409264 +"Q9VNW0",-0.41227549895723,14.7561092811315,-0.973045503251065,0.347431945773143,0.999952130816504,-4.59650707806958 +"Q9VFN7",-0.342899664269549,18.7659551083739,-0.971687914394337,0.348083169514567,0.999952130816504,-4.59655695000787 +"Q7K4T8",0.351402984063997,13.5402257611282,0.966414369403152,0.350621031060334,0.999952130816504,-4.59675018344519 +"Q9VXZ8",0.328472190262122,17.7660313788427,0.949810310142864,0.358696724332254,0.999952130816504,-4.59735342449533 +"Q9VI75",-0.300923428004683,17.4903313775524,-0.941610832723127,0.362732355890302,0.999952130816504,-4.59764840099958 +"Q9VY91",-0.317557078285709,17.0312002162135,-0.933656387532269,0.366677510955391,0.999952130816504,-4.59793270074833 +"Q9VHC3",0.457015836325521,17.1483476542039,0.930672754153872,0.368164950787049,0.999952130816504,-4.59803886326893 +"Q9VSS2",0.407155963316539,16.1759115842471,0.927680242059711,0.369661009772001,0.999952130816504,-4.59814508008907 +"Q9V3N7",0.393187325729446,20.4323002652192,0.920105338346395,0.373466728718208,0.999952130816504,-4.59841276963476 +"Q9VKC7",0.315375991005357,13.7385591135474,0.917830712028834,0.37461477901308,0.999952130816504,-4.59849282241466 +"Q9VWV6",-0.459023564726404,23.7468779708063,-0.917687512132236,0.374687136075534,0.999952130816504,-4.59849785704723 +"Q7JWF1",0.461762802531492,20.4905172526239,0.907475180241977,0.379872079510598,0.999952130816504,-4.59885533402052 +"P29327",0.304715440338725,19.4923823363594,0.90701660983986,0.380106048680007,0.999952130816504,-4.59887131320206 +"Q9V3V0",0.274452294929976,14.3800942284064,0.905880770549765,0.380685994359099,0.999952130816504,-4.59891086521545 +"M9PEG1",-0.391447802550285,20.3408553577652,-0.905623028873127,0.38081767825396,0.999952130816504,-4.59891983488906 +"Q9W3J5",0.55799131355891,16.0139677528003,0.899436449423879,0.383987827632792,0.999952130816504,-4.59913453733416 +"O97125",0.537872792050312,18.4053353355981,0.899241430544414,0.384088051355733,0.999952130816504,-4.59914128671076 +"Q9VB22",-0.345029471083382,17.2648846754239,-0.897120033609784,0.385179426066593,0.999952130816504,-4.59921463191599 +"Q9VA42",-0.527307691381424,20.44637604246,-0.895679235483447,0.385921861177397,0.999952130816504,-4.59926436885054 +"Q9VLR5",-0.40170710328368,16.9611372740849,-0.89491808542795,0.386314469808652,0.999952130816504,-4.59929061880567 +"A1ZBU5",-0.283947607477881,16.7632956673842,-0.893732179591086,0.386926712063054,0.999952130816504,-4.59933148258684 +"Q7JXZ2",0.519931583660597,17.4579788873117,0.889229619616879,0.389257222042204,0.999952130816504,-4.59948624422148 +"P40301",0.239337825627278,17.7925402054695,0.888756990927456,0.389502403223512,0.999952130816504,-4.5995024537914 +"Q9W483",0.272850070741077,15.5110808863967,0.882563091390856,0.392725212039852,0.999952130816504,-4.59971425683566 +"A1Z7X8",0.237532769616497,16.957388334736,0.878471218244532,0.394864134444408,0.999952130816504,-4.59985353940562 +"P23779",-0.358021434103978,21.0404501196927,-0.876499925970666,0.395897370183724,0.999952130816504,-4.5999204573089 +"Q7KTA1",-0.23074416892403,17.1515878810719,-0.875381846757303,0.396484208609799,0.999952130816504,-4.5999583589951 +"A8JTM7",0.332600069877426,17.5424496232923,0.870284997533836,0.39916675338274,0.999952130816504,-4.60013065083263 +"O17444",0.381392393653631,15.1860841980659,0.863857754782887,0.402566789515806,0.999952130816504,-4.60034677477617 +"Q9VSY6",0.317122237703263,17.6815540191244,0.860634072453735,0.404279385387733,0.999952130816504,-4.60045469433901 +"A1Z8Z7",0.238047896907084,18.8997262300764,0.858710679824793,0.405303503774591,0.999952130816504,-4.60051893052522 +"Q9Y143",-0.222170154630678,21.0180546930622,-0.858117529337628,0.405619676997211,0.999952130816504,-4.60053871700002 +"Q9VD02",-0.250867324146814,18.2690825063605,-0.855991518165257,0.406754273581309,0.999952130816504,-4.60060954721283 +"P32392",0.454036383297463,17.6062097508181,0.854314818404948,0.407650569190737,0.999952130816504,-4.6006653089549 +"Q7K485",0.371976413082471,20.4622555495255,0.851564480156597,0.409123622616945,0.999952130816504,-4.60075658675065 +"Q9VAU6",-0.222752031122095,13.3547342744031,-0.843837175443241,0.413281121357557,0.999952130816504,-4.60101177341588 +"Q7K204",-0.387955677549398,14.9645968408066,-0.839550988236328,0.415599171294689,0.999952130816504,-4.60115251235478 +"P28668",0.36815769283969,15.530646478345,0.836287072528376,0.417370078001868,0.999952130816504,-4.60125929622972 +"Q9Y119",-0.38499807070286,17.8947057673184,-0.815138699366016,0.42896415278508,0.999952130816504,-4.60194300196741 +"P09040",-0.452959376250632,16.5282924384203,-0.814065583590478,0.429557973387434,0.999952130816504,-4.60197731378201 +"Q8IN44",-0.480054656949747,19.9397899008626,-0.810909183479551,0.431307681081649,0.999952130816504,-4.60207802193188 +"Q8IPG8",0.294683463684665,15.8996950726651,0.809587531604657,0.432041684944393,0.999952130816504,-4.6021200952999 +"Q9VHR8",0.522798705932583,20.3322073283353,0.809581821922824,0.43204485766796,0.999952130816504,-4.60212027693935 +"P42281",-0.37781940489921,21.8833835391386,-0.807976020869704,0.432937756052807,0.999952130816504,-4.6021713198053 +"Q9V3B6",-0.237505774695665,13.4943259177498,-0.805312801194918,0.434421244578047,0.999952130816504,-4.60225579080052 +"Q9VA09",0.49926323972084,16.2661598746717,0.803090848863863,0.435661431934668,0.999952130816504,-4.60232609032177 +"Q7K1S1",0.298407141925473,16.4693342402845,0.801313196393965,0.43665526697192,0.999952130816504,-4.60238221764848 +"Q7JYX5",0.363782950793182,14.711906774532,0.795388089829917,0.439978307591087,0.999952130816504,-4.60256855505839 +"Q9VJ22",0.57415749540244,13.1132308901598,0.793527213613049,0.441025286723445,0.999952130816504,-4.60262684157508 +"Q9W425",-0.385222732754725,14.0370976998163,-0.790974334622471,0.442464187460248,0.999952130816504,-4.60270661923625 +"Q9VQQ0",-0.246260761973605,18.3234900589626,-0.786726608356631,0.444864982704067,0.999952130816504,-4.60283888875801 +"Q9VAC1",0.33841545208988,23.3307173711924,0.782335310767452,0.447355597708098,0.999952130816504,-4.60297500709011 +"Q01637",0.407371955573721,15.8885078012101,0.775474229816795,0.451264620418818,0.999952130816504,-4.60318641186429 +"Q9VV31",-0.914129140048024,15.9080548630959,-0.774366488443657,0.451897754919396,0.999952130816504,-4.6032203981248 +"Q9W1R3",-0.337114616627289,17.0302565706242,-0.768587554957033,0.455209782618742,0.999952130816504,-4.60339704096588 +"Q9VCX3",0.740206365909241,12.9401757315591,0.765796852978427,0.456814625287933,0.999952130816504,-4.60348194670771 +"Q9VPL3",0.365833998319752,15.8248831230624,0.765242801346506,0.457133662984146,0.999952130816504,-4.60349877264736 +"Q7K5M0",-0.262257470849462,16.7412324973188,-0.764929234109514,0.457314285054547,0.999952130816504,-4.60350829081307 +"Q24276",-0.452482484912032,18.7619292187209,-0.761105259638091,0.45952056970384,0.999952130816504,-4.60362410195652 +"Q7K511",0.435807391984795,16.598530515687,0.751394287567373,0.465153153447733,0.999952130816504,-4.60391600760799 +"A1Z6L9",0.35923445445793,15.1809093126729,0.751343976237887,0.465182446024193,0.999952130816504,-4.60391751170246 +"Q8MZI3",0.384930252280974,17.6857200273528,0.751334882951333,0.465187740496049,0.999952130816504,-4.60391778354392 +"A1Z992",-0.295673309044737,14.3268346501935,-0.748507656802271,0.466835670475229,0.999952130816504,-4.60400216793956 +"Q9V6Y3",0.3310592679943,15.236178271097,0.748221333245576,0.467002763162753,0.999952130816504,-4.60401069885968 +"Q9VPC2",-0.394269585730578,14.8489546383323,-0.746597203335006,0.467951271121762,0.999952130816504,-4.60405903704538 +"Q9VU04",-0.31244212726596,16.6346110872807,-0.744463162773946,0.469199375778724,0.999952130816504,-4.60412241626802 +"Q7K3N4",0.302429815863029,17.0561229159643,0.743261116617327,0.469903299924644,0.999952130816504,-4.60415804836605 +"Q9VEY0",0.48806611806226,18.0375391887424,0.742144620544786,0.470557706883992,0.999952130816504,-4.60419110078838 +"P21187",0.580871936934628,18.8453311878769,0.740065812259206,0.471777640421815,0.999952130816504,-4.60425252890965 +"Q9VSY0",-0.367616895806925,22.6496832498258,-0.738531815975307,0.472679097825807,0.999952130816504,-4.60429776420726 +"Q9I7K0",-0.41661971110117,16.2722854377917,-0.736206817171885,0.474047400296719,0.999952130816504,-4.60436617294676 +"Q9VTC3",-0.224234368180966,17.1451078575115,-0.734666089570226,0.47495547865418,0.999952130816504,-4.60441140490962 +"X2JAU8",-0.420848631305201,21.7818985247322,-0.732987551936428,0.475945988330544,0.999952130816504,-4.60446059083174 +"Q9VKD3",0.387693116567444,18.6185371765754,0.732940789449601,0.475973601035706,0.999952130816504,-4.60446195973382 +"Q9VY28",0.270960551981885,15.2047555560976,0.732509179137096,0.476228508043094,0.999952130816504,-4.60447459097024 +"Q9VF23",0.718199960919367,15.353932661404,0.72863306553384,0.478521450364431,0.999952130816504,-4.60458774259526 +"Q961Q8",0.269958506924787,15.3995501851485,0.728487436378224,0.478607728983618,0.999952130816504,-4.60459198382456 +"Q9W3M7",0.275446157818351,16.021209787843,0.726835760198661,0.479586933276399,0.999952130816504,-4.60464003574559 +"Q9VXN2",-0.362832827443675,18.5033085676865,-0.724920658219818,0.480723832311565,0.999952130816504,-4.60469563481583 +"Q8SXD5",-0.396070167730162,20.8792931149422,-0.721623820197525,0.48268482073578,0.999952130816504,-4.60479105444764 +"Q9W4I3",0.38210666862215,16.5476509562009,0.721136977044225,0.482974808740382,0.999952130816504,-4.60480511349477 +"Q9V521",-0.525567173324951,17.8250079168567,-0.720026165497953,0.483636857437247,0.999952130816504,-4.60483716106708 +"Q95RQ1",0.636405896617436,12.0668652736604,0.717359052207941,0.485228704693782,0.999952130816504,-4.60491393598291 +"Q24253",0.460850351484655,18.730864810894,0.713458179702491,0.487562588974548,0.999952130816504,-4.60502578528445 +"Q9VH98",-0.25108929215315,17.0914972372399,-0.710520419192915,0.489324688770787,0.999952130816504,-4.60510967339907 +"Q7K569",0.437107860350576,20.4536955014001,0.708750366557946,0.490388225143005,0.999952130816504,-4.60516007370142 +"Q9V9A7",0.553870469291104,16.0258458868216,0.699481219309494,0.495980127690147,0.999952130816504,-4.60542223186036 +"Q9VAJ9",0.365775025611793,17.4082541131139,0.699350061685104,0.496059523544956,0.999952130816504,-4.60542591999069 +"A1Z8H6",-0.414863409162802,16.8998555787378,-0.698924958620159,0.496316910205844,0.999952130816504,-4.60543786970739 +"P54385",0.383150768389179,21.4011846368102,0.694342632445432,0.499096392856979,0.999952130816504,-4.60556628041086 +"Q9VGP7",0.319720986194623,15.8874410813416,0.691187482815771,0.501015538316781,0.999952130816504,-4.60565427180642 +"Q8SZK5",-0.516435491642008,15.5690262492624,-0.687490758259657,0.503269627778251,0.999952130816504,-4.60575692423899 +"P48596",0.457556396197216,21.8400422654538,0.68516282238036,0.504692148179972,0.999952130816504,-4.60582132200735 +"Q6NLJ9",-0.332444422497998,15.1497007939836,-0.684780990522732,0.504925697312753,0.999952130816504,-4.60583186650118 +"Q9VMQ5",0.381818989999164,13.5091665940291,0.683258887292853,0.50585732806917,0.999952130816504,-4.60587384937356 +"Q9VZF6",0.627736242643977,15.0380570115786,0.676530783881021,0.509987422306555,0.999952130816504,-4.60605844951272 +"Q9VE75",-0.295224956502619,15.4502342098912,-0.673951019073086,0.511576223834625,0.999952130816504,-4.6061288081017 +"Q8SWS3",-0.338772212339318,16.5423549740241,-0.67294115609048,0.512198951212995,0.999952130816504,-4.60615628638308 +"P13677",-0.427249557535944,17.026008086565,-0.670075064721768,0.513968707308384,0.999952130816504,-4.60623407617977 +"Q9VNZ3",0.347012199932038,15.080776574784,0.665567452040011,0.516759220004824,0.999952130816504,-4.60635583090508 +"Q9W369",-0.387098211229393,22.2910552770182,-0.665314085496648,0.516916329765551,0.999952130816504,-4.60636265318334 +"Q95RG8",0.417779220036579,13.33556278473,0.660471191373835,0.519924640967429,0.999952130816504,-4.60649261711703 +"Q9VZG1",-0.292498263204557,17.7997610279085,-0.66035469303282,0.519997131063626,0.999952130816504,-4.60649573319549 +"Q8MSS7",0.554892322146086,14.0723467041167,0.659082041080225,0.520789405497341,0.999952130816504,-4.60652974241157 +"Q6WV19",0.191216976347427,13.5901941557665,0.656535009542977,0.522377106050794,0.999952130816504,-4.60659763370248 +"Q500Y7",-0.230944799426521,20.0868895070179,-0.653135729964124,0.524500364083886,0.999952130816504,-4.60668788113662 +"Q9VTZ4",0.355663282267834,18.0815514697937,0.652448842545714,0.524930004610067,0.999952130816504,-4.60670606716858 +"Q9VLP3",-0.185172400435157,17.5308983556154,-0.650396514852369,0.526214906725395,0.999952130816504,-4.60676030406252 +"P09180",0.361481455578033,20.6643489681242,0.648172863165911,0.527609086175482,0.999952130816504,-4.60681889833487 +"A1Z847",-0.308033048844084,20.1244705647838,-0.644955757030771,0.529629843943295,0.999952130816504,-4.60690335682716 +"Q9VW68",0.26036138103624,22.8808429551575,0.641543256656589,0.531778111953299,0.999952130816504,-4.60699253874578 +"Q9W253",0.502318549677815,15.1068541662566,0.639960901902087,0.532775915596895,0.999952130816504,-4.60703374968841 +"Q9VU70",-0.354254373266816,14.7984382872286,-0.637106689520228,0.534578391803111,0.999952130816504,-4.60710785688566 +"Q9VVN2",0.304403688991311,14.8699563134575,0.636656310311211,0.534863125297879,0.999952130816504,-4.60711952376665 +"P54195",0.353564840158082,18.7973970632995,0.636241592786643,0.535125388442521,0.999952130816504,-4.60713026037429 +"Q9VIN9",0.254988806321773,16.419129836985,0.635280244011176,0.535733613011696,0.999952130816504,-4.60715512482495 +"A8Y535",-0.222513339380889,22.0554719480081,-0.634979818854823,0.535923764954295,0.999952130816504,-4.60716288821718 +"Q9VZJ8",0.2832891925596,14.7856866804976,0.634832449067315,0.536017055427072,0.999952130816504,-4.60716669526008 +"Q9VHT5",0.308544748154965,15.6240793061197,0.624637665634034,0.542492750803202,0.999952130816504,-4.60742815205926 +"Q9Y136",0.21547632855081,15.2012590599801,0.619778808476763,0.545594295369726,0.999952130816504,-4.60755143576662 +"Q9VM07",0.495597714395707,17.008523657083,0.61630597774139,0.54781708662497,0.999952130816504,-4.60763902502624 +"A1Z6G9",0.200593759044489,14.2798662896977,0.614950306599509,0.548686136657704,0.999952130816504,-4.60767309740264 +"Q9VSW4",0.234594459356236,15.9267312233331,0.6147189213337,0.548834541321684,0.999952130816504,-4.60767890615447 +"Q9W3Y3",-0.376279525027101,18.1854647388084,-0.614255770609054,0.54913166071652,0.999952130816504,-4.60769052732776 +"Q9V3G1",0.256728130367197,21.0628229744707,0.614204963592073,0.549164259692397,0.999952130816504,-4.60769180167801 +"Q94901",0.33954681225957,18.8920866294908,0.610336120587675,0.551649717259326,0.999952130816504,-4.6077885634456 +"Q9VJZ4",-0.220522531324036,21.3498370763053,-0.609063392751311,0.552468697675029,0.999952130816504,-4.60782027529294 +"Q8I099",0.284149399290147,16.8234072775656,0.608781952323529,0.55264988979684,0.999952130816504,-4.60782727977537 +"Q9VMT5",0.180928907947663,16.3998077042656,0.608477065392098,0.552846213447165,0.999952130816504,-4.60783486451859 +"Q9VZU4",-0.189133918956056,21.4470166269703,-0.606800010216587,0.553926787670407,0.999952130816504,-4.60787652408873 +"Q9VE50",-0.316000740020236,14.6768074510857,-0.606017902271737,0.554431115232246,0.999952130816504,-4.60789591708868 +"A0AQH0",0.20081704136193,16.8835559088093,0.605796423867345,0.554573976811598,0.999952130816504,-4.6079014047471 +"Q9VXM4",0.215364635369401,20.1952475782603,0.602909289530287,0.556438114061653,0.999952130816504,-4.60797277564471 +"Q2MGK7",-0.255251213167238,17.1247640090554,-0.600946576911601,0.557707318645343,0.999952130816504,-4.60802111961713 +"Q95SH0",-0.293274361130951,13.7630028904493,-0.600566732931266,0.557953128907695,0.999952130816504,-4.60803045926475 +"Q9VMH8",0.18934075189776,18.8915274870396,0.599223555947032,0.55882281561983,0.999952130816504,-4.6080634428596 +"Q9V400",-0.231533906453922,14.2942808943639,-0.598715287397724,0.559152102815965,0.999952130816504,-4.60807590677992 +"Q9VZI8",0.205651044098145,15.6370111848588,0.597599977864723,0.559875035215601,0.999952130816504,-4.60810322339022 +"Q9W0J9",-0.190749096474548,18.4365420208165,-0.597460709888715,0.559965342728317,0.999952130816504,-4.60810663117779 +"Q9W402",-0.190735876694077,21.2446710788336,-0.597226562534162,0.560117191938129,0.999952130816504,-4.60811235898412 +"Q9VXY3",0.235714048462402,18.0818014606941,0.596851659449603,0.560360370281911,0.999952130816504,-4.60812152580405 +"Q9VNA5",0.216549210917567,17.3061510904575,0.596163882601475,0.560806640044833,0.999952130816504,-4.60813832927714 +"Q9VSC3",0.302446826066287,17.5088269040002,0.592519666001021,0.563174411764266,0.999952130816504,-4.60822707189639 +"Q7KY04",0.159400836841641,13.9974073359323,0.590761328057417,0.564318780371658,0.999952130816504,-4.6082697147957 +"Q7KUT2",0.285978225747794,18.1659762928163,0.589962259384332,0.564839244920909,0.999952130816504,-4.60828905587294 +"Q9VF86",0.207471943288812,17.501194695878,0.588365430265757,0.565880091154722,0.999952130816504,-4.60832763555444 +"P07668",-0.318482123066055,14.6935952294134,-0.587839908374724,0.566222861224968,0.999952130816504,-4.60834031160575 +"P83967",-0.389982861809067,17.6414873579041,-0.585029772511391,0.568057643643507,0.999952130816504,-4.60840792083783 +"O02195",0.316027418808567,18.6422979455918,0.584569408642125,0.568358524087171,0.999952130816504,-4.60841896883852 +"Q9VSA9",-0.28581103318254,22.4156403355409,-0.583630426081665,0.568972478584611,0.999952130816504,-4.60844147854122 +"B7YZT2",-0.211522073662664,18.4478980704297,-0.582247541849203,0.569877320105621,0.999952130816504,-4.60847457003187 +"Q9V8F5",-0.356629976633103,16.0616263447071,-0.582075116353127,0.569990194185518,0.999952130816504,-4.60847869107666 +"Q9VNH5",0.254665756070185,17.082055682161,0.580721939389376,0.570876429693517,0.999952130816504,-4.60851099423152 +"Q9VMY9",0.192622289950094,14.9938158034195,0.580206793172354,0.571214005965831,0.999952130816504,-4.60852327395221 +"Q9VAM6",-0.279667294460399,22.1389987491518,-0.579833575441919,0.571458642265558,0.999952130816504,-4.60853216430752 +"Q9W299",0.337259996232127,14.5354473081595,0.578595452530719,0.572270602567806,0.999952130816504,-4.60856162030228 +"Q9VI09",-0.212426735619474,20.2055890287783,-0.578438173844666,0.572373789488498,0.999952130816504,-4.60856535801124 +"Q9VV36",-0.523209203391218,23.1979127313407,-0.577793840892933,0.572796624136555,0.999952130816504,-4.60858066089006 +"Q9VPF6",0.388312204572692,13.9702232543697,0.577406469325561,0.573050910800336,0.999952130816504,-4.60858985350554 +"Q95NU8",-0.190671174966603,17.3853793197788,-0.574909009362912,0.574691775983076,0.999952130816504,-4.60864898584824 +"Q9VX69",-0.349761515561458,18.2495891113129,-0.574681013148645,0.574841695757398,0.999952130816504,-4.60865437252903 +"P29613",-0.339693782658394,23.9164829560539,-0.573290319211969,0.575756597341725,0.999952130816504,-4.60868718732728 +"Q9VAN7",-0.249885550369051,23.724997291026,-0.571719248985918,0.576791083694291,0.999952130816504,-4.60872417143128 +"Q9W266",-0.289673782480826,18.4465639112498,-0.571643416489412,0.576841040995931,0.999952130816504,-4.60872595424962 +"Q9W414",0.208255238827402,19.5253488480266,0.571400323159413,0.577001202504389,0.999952130816504,-4.60873166791381 +"Q95RI2",-0.314597136280856,16.8164317516926,-0.571159930133817,0.577159607855136,0.999952130816504,-4.60873731593868 +"Q94524",-0.234453079180659,15.6918019122848,-0.568461484982857,0.578939292846831,0.999952130816504,-4.60880056756805 +"A1Z8Z3",-0.313472922569591,19.9648565775649,-0.567942018179993,0.579282221862097,0.999952130816504,-4.60881271262021 +"Q9VIX1",-0.389180001841186,17.3411689964387,-0.567198478015588,0.579773258786413,0.999952130816504,-4.60883007889665 +"Q0E9B6",0.42712200214967,19.0471253430896,0.561398126821711,0.583611275550112,0.999952130816504,-4.6089648418684 +"Q7K3Z3",-0.18385959408635,19.914105779949,-0.560535889865928,0.584182929701583,0.999952130816504,-4.60898476695228 +"Q9VHT3",-0.441811719713076,15.8125793621821,-0.55626748024266,0.587017105443354,0.999952130816504,-4.60908299230475 +"Q9VQ91",-0.403575845308751,15.0355490361087,-0.55586124521231,0.587287209932765,0.999952130816504,-4.60909230492964 +"Q6IHY5",-0.287683946225027,20.9149549447233,-0.552023035966715,0.589842379648114,0.999952130816504,-4.60917998603079 +"Q9VLP0",-0.328541123710647,16.2105248241074,-0.551324871050982,0.590307773774729,0.999952130816504,-4.60919587539127 +"Q9W1H8",0.385123226935129,20.4574736570444,0.550549321695446,0.59082497259841,0.999952130816504,-4.60921350435857 +"Q9VJE3",-0.228463826603111,15.4137988498868,-0.550434640456844,0.590901470977926,0.999952130816504,-4.60921610924424 +"Q9VW26",0.172945204647327,17.5431541896136,0.547529925196269,0.59284075651677,0.999952130816504,-4.60928192171672 +"Q9NJH0",0.21710095278689,21.1239169244015,0.546374398229682,0.593613127028254,0.999952130816504,-4.60930801396061 +"Q9VGA0",-0.313081302315233,19.3778233811034,-0.543802807830047,0.595333851929074,0.999952130816504,-4.60936590013644 +"Q9W0D3",0.283170818273842,12.7783129971127,0.542702084275609,0.596071151157517,0.999952130816504,-4.60939060075384 +"Q9VMR6",-0.334707831550769,18.8792735357994,-0.542541878748247,0.596178500452349,0.999952130816504,-4.60939419199435 +"C0HK95",-0.310471221303086,19.8969547601003,-0.542299935545075,0.596340638483609,0.999952130816504,-4.60939961366034 +"Q9W1N3",-0.236095795017963,20.5562459735456,-0.540852342363338,0.597311208510854,0.999952130816504,-4.60943200618247 +"Q7JYW9",0.432693870019072,17.0988504068374,0.540730340434422,0.597393043845439,0.999952130816504,-4.60943473256608 +"Q9VWF0",-0.183956639965867,16.4988725008125,-0.540040018189588,0.597856198696396,0.999952130816504,-4.60945014859809 +"Q9VI10",0.142027395203449,17.1800692931958,0.539416235876048,0.59827486627557,0.999952130816504,-4.60946406313285 +"Q9V784",-0.259515618979364,14.362892130229,-0.538333005378695,0.599002256064811,0.999952130816504,-4.60948819135475 +"Q9VPL0",0.302117561008075,15.0515352186491,0.536015008276013,0.600560289406059,0.999952130816504,-4.60953967343995 +"Q9VBT2",0.599683257196203,12.8326485584947,0.535562855042997,0.600864440047157,0.999952130816504,-4.60954969183954 +"Q9VSN9",0.172517294064189,16.4692218799586,0.534704954142166,0.601441738404137,0.999952130816504,-4.60956867905789 +"Q9VAA6",-0.350113554872006,16.2226888712912,-0.533610390503427,0.602178695968555,0.999952130816504,-4.60959286349108 +"Q9VSR5",0.294551748150038,20.2467087006717,0.53319776840209,0.602456627365343,0.999952130816504,-4.60960196856216 +"Q9W0Z5",-0.35273291408221,17.0019254613709,-0.531714426286503,0.603456298358404,0.999952130816504,-4.60963464699864 +"Q9VXN4",0.259480160954469,14.9544534777443,0.530649680145024,0.604174375718629,0.999952130816504,-4.60965805198025 +"Q9VB46",0.215371841454878,15.1609683871979,0.530597338993077,0.604209686218055,0.999952130816504,-4.60965920141628 +"Q7KVQ0",0.432005766677923,15.6530863862465,0.529840811842848,0.604720171303735,0.999952130816504,-4.60967580344192 +"Q9V3G7",0.174317697904254,18.0621341559124,0.528567062077873,0.605580151038427,0.999952130816504,-4.60970370664189 +"P18432",-0.33267083575598,23.7275372495705,-0.526336880298942,0.607087337830443,0.999952130816504,-4.60975241269575 +"Q9W3H4",-0.233102936804322,19.5560340063926,-0.525729731940241,0.607497979526808,0.999952130816504,-4.60976563962778 +"Q9VDC6",0.246941843594069,16.9158321893537,0.525405391762668,0.607717401867594,0.999952130816504,-4.60977269971812 +"Q9VW34",0.343410485076916,18.4249046031174,0.52359909304999,0.608940116625787,0.999952130816504,-4.60981194487959 +"Q9VHN6",0.244104594567458,15.0018577241448,0.52331755774667,0.609130802444342,0.999952130816504,-4.60981805051696 +"Q7KM15",-0.222471680808674,17.0240250028971,-0.522200472432853,0.609887703319589,0.999952130816504,-4.60984224679463 +"Q7K860",-0.389238568806324,20.588593109434,-0.521697789607549,0.610228456589326,0.999952130816504,-4.60985311942411 +"Q9VIK6",-0.242273031787896,16.6440320677759,-0.521656183816008,0.610256664093977,0.999952130816504,-4.60985401889099 +"Q9VJI9",-0.30072682625444,17.6911938024145,-0.520778393424314,0.610851930305849,0.999952130816504,-4.60987298021268 +"Q9VKG4",-0.306213743134977,15.9207750537474,-0.520566148187652,0.610995905648526,0.999952130816504,-4.60987756053519 +"Q9VUX1",0.312309412109173,16.4077551632286,0.520306496972892,0.61117206133113,0.999952130816504,-4.60988316154864 +"Q9VN14",0.269102363427834,19.2754730720111,0.520079775213391,0.611325897101033,0.999952130816504,-4.6098880501197 +"Q9VWP2",-0.334703622357946,19.7150234088379,-0.519851087957918,0.611481085842273,0.999952130816504,-4.60989297907648 +"A1ZAL1",-0.322103922085383,17.2597042153659,-0.519552048102204,0.611684045634696,0.999952130816504,-4.60989942133917 +"Q9VKR4",0.198102691835714,19.1830725552947,0.517510513644732,0.613070530911623,0.999952130816504,-4.60994331089128 +"P12080",0.285596259557806,19.0095098758866,0.517368183291697,0.613167250548959,0.999952130816504,-4.60994636479685 +"Q9VE24",0.299330085450308,15.9067507687377,0.515209615971756,0.614635008661678,0.999952130816504,-4.60999258475909 +"R9PY51",-0.255095440988946,21.5610567005652,-0.514082791511381,0.615401897322622,0.999952130816504,-4.61001664166363 +"Q9VCK0",0.329403135052601,18.1976072865754,0.512666390183023,0.616366528329141,0.999952130816504,-4.61004681165991 +"P09208",0.322556131022374,12.9574306886497,0.509325165806156,0.618644968165934,0.999952130816504,-4.61011767575989 +"Q9VSL3",0.331503229294103,22.4791610296337,0.50900564777083,0.618863067555302,0.999952130816504,-4.610124429928 +"M9PFN0",-0.167281054457483,16.6947854213985,-0.508176208357513,0.619429407831086,0.999952130816504,-4.61014194478528 +"Q8MR62",-0.198842223086626,17.7049619113941,-0.507284517891923,0.620038533544465,0.999952130816504,-4.61016074462036 +"Q8T3X9",-0.246626889398968,18.293634729184,-0.506299068667607,0.620712044789671,0.999952130816504,-4.61018148557811 +"A8JNG6",-0.429330088528202,15.8635022931246,-0.504390100805988,0.622017747300892,0.999952130816504,-4.61022155755027 +"Q9VD29",-0.139440856213259,20.7618293288761,-0.503342369223135,0.622734941894327,0.999952130816504,-4.61024349120624 +"P20007",0.337944540886763,15.1287700904774,0.503077345148337,0.622916419710766,0.999952130816504,-4.61024903262069 +"Q7JRN6",-0.333763554694251,14.8483062320043,-0.502460693848784,0.623338776354196,0.999952130816504,-4.6102619157521 +"D0UGE6",-0.260342662042575,15.2920659498837,-0.502367778601084,0.623402427799372,0.999952130816504,-4.61026385567296 +"Q9U9Q4",0.26414610048294,17.7967064239191,0.502030050264615,0.623633814435999,0.999952130816504,-4.61027090408987 +"O18413",0.258916716577374,19.3709186121459,0.501411330128401,0.624057823237657,0.999952130816504,-4.61028380540335 +"Q9VKC8",0.148224919883983,17.646268161561,0.500155044035408,0.624919182282135,0.999952130816504,-4.61030995550697 +"Q9VAD4",0.199945453906876,13.2700743343526,0.49983591769374,0.625138078741652,0.999952130816504,-4.61031658853887 +"Q9VPX6",0.264469312722532,21.4269785580863,0.496503482461366,0.627426071969883,0.999952130816504,-4.61038561787207 +"Q9VMI3",0.167486379045929,20.0989707894151,0.49556848496063,0.628068743654321,0.999952130816504,-4.61040490858135 +"Q9VQT8",-0.345149738193445,18.0058391474991,-0.494709173644672,0.628659669261151,0.999952130816504,-4.61042260789728 +"A1ZBA5",0.253863369922769,15.5714284400307,0.494055503618461,0.629109358218602,0.999952130816504,-4.61043605244772 +"O77477",0.250164442795523,16.768155428303,0.491637603938103,0.630774069730292,0.999952130816504,-4.61048563940419 +"Q9VK39",-0.2867456437824,18.2072751232891,-0.491025123974737,0.631196090780841,0.999952130816504,-4.61049816432976 +"Q9VH64",-0.376084855156829,17.6301323985133,-0.490621115065708,0.631474540945814,0.999952130816504,-4.61050641815527 +"Q9V3D9",0.24913636634091,17.376635102771,0.490338008931299,0.631669697445991,0.999952130816504,-4.61051219818614 +"Q9VTU2",-0.247269233178031,20.8413962607865,-0.489978010534838,0.631917900155049,0.999952130816504,-4.61051954359423 +"Q9V9Q4",-0.240406399234587,19.1800484641246,-0.487594010200359,0.633562725469958,0.999952130816504,-4.61056805975837 +"Q9W4C2",-0.158169541491658,15.9644224650104,-0.487446879998481,0.6336643031691,0.999952130816504,-4.6105710467345 +"Q9VV47",-0.17070342363138,20.1407877216145,-0.486690093432508,0.634186904893047,0.999952130816504,-4.61058639740983 +"Q9W5B4",-0.287949748572736,18.72159215829,-0.48664212209658,0.634220038521053,0.999952130816504,-4.61058736971131 +"P08182",-0.173573696600336,19.6935110462622,-0.48578397258249,0.634812897081964,0.999952130816504,-4.61060474790259 +"Q7K0P0",-0.258492100241924,15.2448180052697,-0.485442546797969,0.63504884599634,0.999952130816504,-4.61061165407709 +"A0A0B4KI23",-0.198592492230055,20.5451472287763,-0.484183944711665,0.635918983616132,0.999952130816504,-4.61063707323302 +"Q9VCK6",0.305799339813081,16.4666499540122,0.482494471765828,0.637087884462492,0.999952130816504,-4.61067109750355 +"Q9VEB1",-0.219249144551984,25.1371372270476,-0.482112388246167,0.637352377315329,0.999952130816504,-4.61067877687177 +"Q8SYQ8",-0.212256519735714,16.0712838826449,-0.477338900026921,0.640661093004168,0.999952130816504,-4.61077423812947 +"A1ZB23",-0.261325412769125,15.9002223056209,-0.476471525394207,0.641263165804783,0.999952130816504,-4.61079148867082 +"Q9W0N6",0.186484373428012,14.5653073181548,0.474899234431483,0.642355213348017,0.999952130816504,-4.61082268387402 +"Q9VZD9",0.333377441345451,14.400322385628,0.473627317361088,0.64323926396366,0.999952130816504,-4.61084784882929 +"Q9VCT4",0.322488925477687,13.3554192826763,0.472797706150555,0.643816191424198,0.999952130816504,-4.61086422867136 +"Q9VFS4",-0.301499419805511,15.3533529813371,-0.471911475831761,0.644432756893828,0.999952130816504,-4.61088169667712 +"P91927",-0.338155683050452,19.3526555524919,-0.470023909064869,0.645746876417872,0.999952130816504,-4.61091879908929 +"Q9V8Y2",0.139564227837663,19.8993720698676,0.46985624939885,0.6458636603021,0.999952130816504,-4.61092208790162 +"P48375",-0.295596312640075,21.9133064527281,-0.469319406088402,0.646237665602661,0.999952130816504,-4.61093261121892 +"Q9VJ86",0.281406866144899,16.4801297876057,0.468862662875268,0.646555945537664,0.999952130816504,-4.61094155551369 +"Q4V5H1",0.251132959132303,14.9561120891565,0.46738526556255,0.647585957581587,0.999952130816504,-4.61097043108372 +"Q9Y156",0.354215719342314,16.0812227463039,0.46726357161271,0.64767083371008,0.999952130816504,-4.61097280576716 +"Q9VA37",-0.301825946781918,21.8252777044823,-0.466251257817009,0.648377075148755,0.999952130816504,-4.61099253713036 +"Q9V396",0.183555818919505,20.7653238019371,0.465678538003671,0.648776789568708,0.999952130816504,-4.61100368242207 +"Q9NHE5",-0.130071169068021,15.5831537919131,-0.465249564395091,0.649076253964817,0.999952130816504,-4.61101202194771 +"Q9VJ43",0.19549686086652,20.2301378961315,0.463572310031878,0.65024774281634,0.999952130816504,-4.6110445595833 +"Q9VJD0",0.211274186505474,16.0763308983638,0.463268523024727,0.650460027815748,0.999952130816504,-4.61105044104622 +"Q7JVI6",0.233360798050832,17.4578400195516,0.463103268989219,0.65057551985312,0.999952130816504,-4.61105363892303 +"Q9VTY2",-0.32693587254894,20.8558873954418,-0.461270947845112,0.651856709946689,0.999952130816504,-4.61108902483296 +"Q8SX89",-0.19457752777735,15.5946864154098,-0.46030396209753,0.652533304514283,0.999952130816504,-4.61110764617228 +"Q960M4",-0.257577071352102,23.2449251760672,-0.460007846968634,0.65274055831676,0.999952130816504,-4.61111334114263 +"Q9VM12",0.222167659589623,18.9056126776404,0.459963728669351,0.652771439689309,0.999952130816504,-4.61111418934338 +"Q9V419",0.176191501091864,16.3801488219581,0.459904375499224,0.652812986020021,0.999952130816504,-4.61111533032296 +"Q24238",0.290097407084513,16.3253843632414,0.458070599636018,0.654097191648078,0.999952130816504,-4.61115051380191 +"Q9VLB1",0.199997585579567,16.6902531921331,0.457833454804242,0.654263349140357,0.999952130816504,-4.61115505409209 +"Q9W0S7",0.37763851367119,17.8691928449794,0.457107244608249,0.654772292908515,0.999952130816504,-4.61116894409348 +"Q9W229",0.170830007007392,19.1350299285641,0.45695767749257,0.654877134956483,0.999952130816504,-4.61117180224159 +"Q9VJI5",0.367417309373057,17.5272965600473,0.45694553476322,0.654885646976856,0.999952130816504,-4.61117203424407 +"Q9VMF0",-0.153917297773697,13.7866576497953,-0.45600859542366,0.655542589375361,0.999952130816504,-4.61118991818007 +"Q4QQ70",-0.126130701124033,16.1575839130139,-0.455871980264866,0.655638402971217,0.999952130816504,-4.61119252295129 +"Q9VCA5",0.217586258147604,14.203064576896,0.455189076891963,0.656117444571796,0.999952130816504,-4.61120553250422 +"Q9VWH4",-0.209459618671705,24.4026882919273,-0.455143817009709,0.656149198942412,0.999952130816504,-4.61120639407236 +"Q9VK99",0.172656282679746,20.0271487096242,0.454686267558833,0.656470254835805,0.999952130816504,-4.61121509946453 +"Q9V3L6",0.259278102285153,15.793159514967,0.454448810454683,0.65663690292118,0.999952130816504,-4.61121961410303 +"Q9VHG6",-0.200809727814267,15.672719462445,-0.453242756694253,0.657483608308821,0.999952130816504,-4.61124250983682 +"P48611",0.242778737547926,20.214541005084,0.452900081049479,0.657724271760953,0.999952130816504,-4.61124900473883 +"Q8SZK9",0.238460317487991,22.1803287010149,0.452737534554258,0.657838443088813,0.999952130816504,-4.61125208394527 +"Q9VJQ3",0.240390312671298,20.4225865837405,0.452296738546719,0.658148099300192,0.999952130816504,-4.61126042894208 +"Q4V5I9",-0.193474036417891,16.0053998890226,-0.451728402028305,0.65854744819793,0.999952130816504,-4.61127117718731 +"Q9VVA6",-0.171018432415664,19.2611954909413,-0.451387683661391,0.658786910290234,0.999952130816504,-4.61127761466624 +"Q9VEV3",-0.237806036402905,18.308054846586,-0.45129279168911,0.658853608757777,0.999952130816504,-4.61127940672517 +"Q9VZX9",-0.218951077727628,18.3538709668035,-0.449602278858016,0.660042356374019,0.999952130816504,-4.6113112729635 +"Q9W3V3",0.295228573448398,13.1218363749085,0.448797117487441,0.660608872056512,0.999952130816504,-4.61132641064694 +"Q9W3X7",-0.237498807342018,21.6252941507142,-0.444696827774686,0.663497209905761,0.999952130816504,-4.61140310224972 +"Q59E14",0.217650743058103,14.558861429415,0.444425207104996,0.663688743090814,0.999952130816504,-4.61140815916506 +"P48148",0.247633743666608,20.6198642934485,0.443446737250025,0.664378913323362,0.999952130816504,-4.61142635170571 +"P12370",0.259868211560676,20.7332496911371,0.443380415744992,0.664425705112114,0.999952130816504,-4.61142758344103 +"Q9VZ24",-0.218172080686884,21.8597449164904,-0.441797730549143,0.665542767939123,0.999952130816504,-4.61145692573553 +"P06002",-0.392528019038796,16.6984895206547,-0.441546988785109,0.665719817969904,0.999952130816504,-4.61146156528217 +"Q9VH81",0.296610540200922,14.342434074437,0.44106208162441,0.666062272207157,0.999952130816504,-4.61147053059754 +"Q9VCW2",0.282292394496773,15.3549830949299,0.440648636237703,0.666354319469352,0.999952130816504,-4.61147816732316 +"Q9VXK6",-0.259292023613444,17.8517635978374,-0.439495584031323,0.66716910344698,0.999952130816504,-4.61149942951713 +"Q9VM33",-0.247581056937401,13.7288762340449,-0.43833792493083,0.667987582471219,0.999952130816504,-4.61152072367478 +"P14484",0.211057100390462,19.2562911100107,0.438033095189041,0.668203173957443,0.999952130816504,-4.61152632192582 +"Q95TN1",0.225835952516322,13.972950582635,0.437917919577126,0.668284640086458,0.999952130816504,-4.61152843618717 +"Q9W308",-0.318123520697164,17.2880469049173,-0.437680299421629,0.668452727552077,0.999952130816504,-4.61153279648299 +"Q24478",-0.207010908318722,17.4737395146761,-0.437614912637068,0.668498984025104,0.999952130816504,-4.6115339959284 +"Q9W1F8",-0.303194807280089,17.66226024291,-0.437588225856233,0.668517863416205,0.999952130816504,-4.61153448541802 +"Q9VQX3",-0.404169406754457,15.3891228446954,-0.434419208018624,0.6707614205648,0.999952130816504,-4.61159241079589 +"M9NDE3",0.157097830450205,16.1425202176639,0.434185626743795,0.670926917877563,0.999952130816504,-4.61159666457917 +"Q9VKV2",0.208591094089302,14.9700270487171,0.434037745669419,0.671031703957123,0.999952130816504,-4.61159935654373 +"Q7KTG2",0.227521020548853,18.0461492655848,0.432007527399963,0.672471002026382,0.999952130816504,-4.61163622598365 +"Q9VK60",-0.153596192952698,21.3633137116365,-0.430629311126467,0.673448833585202,0.999952130816504,-4.61166116154266 +"Q9VEV7",0.592148725425004,12.8852873077029,0.43051041203485,0.67353322020094,0.999952130816504,-4.6116633092028 +"Q9W403",-0.209063337285574,15.2236035766723,-0.430411075890031,0.67360372585341,0.999952130816504,-4.61166510306889 +"Q9VHI1",0.155058970576555,14.1980837401519,0.430212351640227,0.67374478361703,0.999952130816504,-4.61166869056205 +"Q94522",-0.171722581742248,23.4943840644114,-0.429550339294926,0.674214783041445,0.999952130816504,-4.61168063029116 +"Q23983",-0.216649712730323,22.3582408117186,-0.429440992525624,0.674292428025898,0.999952130816504,-4.61168260073879 +"Q9VV39",0.24491089616938,17.4566379262803,0.4292781223014,0.674408086117829,0.999952130816504,-4.61168553480674 +"P40304",0.201437072622614,18.7292816502794,0.428499659150619,0.674961009888406,0.999952130816504,-4.61169954406059 +"Q9U616",-0.172435672026545,19.7214162740006,-0.428268973406623,0.675124897991396,0.999952130816504,-4.61170369086024 +"Q9V597",0.196034450272109,20.2047282895068,0.427282150213415,0.675826168947413,0.999952130816504,-4.61172140606041 +"Q9VQ62",-0.130743367820298,19.705137552393,-0.425699669282443,0.676951388664675,0.999952130816504,-4.61174973344137 +"Q9V3Y7",-0.310077589846117,19.6338571286627,-0.425348147500691,0.677201446577777,0.999952130816504,-4.61175601236257 +"Q9W3R8",-0.274313961883188,17.4077724032216,-0.425110374379356,0.677370610899773,0.999952130816504,-4.61176025670223 +"Q8IQG9",-0.291682818226196,20.5380861669683,-0.424992191502265,0.677454699161926,0.999952130816504,-4.61176236547324 +"Q9VFJ2",0.243544521267181,13.9112292591442,0.424824068710359,0.67757432786537,0.999952130816504,-4.6117653643778 +"Q7PL91",-0.278900996510473,18.8981402291428,-0.424432457501677,0.677853016075873,0.999952130816504,-4.61177234540984 +"Q9W4Z2",0.315100856164051,13.8309472739698,0.424327418506715,0.677927774912343,0.999952130816504,-4.61177421684154 +"Q00174",0.221896889266301,21.9380672001126,0.422278981414703,0.679386402687554,0.999952130816504,-4.6118106250071 +"Q9W1F2",0.1478976601728,13.5534084267743,0.422253540614814,0.679404526700224,0.999952130816504,-4.61181107613087 +"A1Z8Y3",-0.114199677454184,15.1414756668116,-0.422232665426076,0.679419398327924,0.999952130816504,-4.6118114462766 +"Q9VT23",0.266979966404445,18.1901220951191,0.421077665055504,0.680242444749143,0.999952130816504,-4.61183189893659 +"Q8SXQ1",0.311299752567717,18.5154191402664,0.420930900824721,0.680347058463358,0.999952130816504,-4.61183449401642 +"Q9VGU6",0.147217755991321,18.5691727391688,0.419559230404424,0.681325117514421,0.999952130816504,-4.61185870629238 +"Q94523",0.230045824124527,20.2154899775159,0.419370126163295,0.681460003664778,0.999952130816504,-4.61186203840903 +"Q9V3Z9",0.140032609628442,21.7448785920388,0.416641984662221,0.683407218745971,0.999952130816504,-4.61190995081578 +"Q9VJ80",0.197152229719123,16.4427565795115,0.416206355757404,0.6837183671343,0.999952130816504,-4.61191757392964 +"Q9W3K9",0.127685112848322,19.2503969183469,0.416205608390896,0.683718900992977,0.999952130816504,-4.61191758700136 +"Q9VCJ8",0.154806364395085,17.9005664989609,0.416104121312697,0.68379139685445,0.999952130816504,-4.61191936184176 +"Q9V9S8",0.140737838481446,19.9356788993537,0.415663667176984,0.684106066634498,0.999952130816504,-4.611927059883 +"Q9VW66",-0.195412548740467,21.4015817315576,-0.415548971617603,0.684188017597784,0.999952130816504,-4.61192906320325 +"Q9V3U6",0.1910784987572,21.1093752964266,0.415162414988452,0.68446424611245,0.999952130816504,-4.61193581108917 +"Q8IRH5",-0.131985932719353,14.4901072043648,-0.414271736385914,0.685100892653015,0.999952130816504,-4.61195133638782 +"Q9VXH7",-0.112119654402147,18.1658317540769,-0.412720416773874,0.686210351899564,0.999952130816504,-4.61197830147735 +"Q9VUY9",0.247754041498744,19.6156762456592,0.412173870777561,0.686601405438164,0.999952130816504,-4.61198777862226 +"Q7K1Z5",-0.239539876210898,16.1231883511383,-0.410699881698434,0.687656509566982,0.999952130816504,-4.61201327809194 +"Q9VYT6",-0.136124524606338,16.3354147264617,-0.409157164846421,0.688761535476506,0.999952130816504,-4.61203987335136 +"Q8SYJ2",-0.191435322340819,22.604123593544,-0.409075205078432,0.688820262793378,0.999952130816504,-4.61204128360819 +"Q9VN02",-0.217664926695086,17.3113784807918,-0.40874560855733,0.689056452413995,0.999952130816504,-4.61204695215802 +"Q9VDH3",0.159284096907744,20.5205581840305,0.408457239731289,0.689263125845881,0.999952130816504,-4.61205190808512 +"Q7K3W2",0.202884879889321,17.5433750969865,0.406511370800956,0.690658400667284,0.999952130816504,-4.61208526279925 +"Q9VSL5",0.167949966347702,17.5091643042536,0.406315242408964,0.690799098495999,0.999952130816504,-4.61208861627233 +"Q7K0E6",0.163771735244818,16.6806075176996,0.403943899324541,0.692501182993621,0.999952130816504,-4.61212904022604 +"Q9VGA3",0.234577795340915,19.4270582151399,0.403563148687464,0.692774636663734,0.999952130816504,-4.61213550980454 +"Q9VBP9",0.194473113304173,13.8040660131588,0.402668458015405,0.693417375457624,0.999952130816504,-4.61215068916272 +"Q95SS8",0.335098519722939,15.5109201404261,0.401883180664592,0.693981714995952,0.999952130816504,-4.61216398572306 +"E1JIY8",-0.175352244955015,16.4371223348939,-0.401662181404485,0.694140570184893,0.999952130816504,-4.61216772328533 +"Q9VN50",0.226117168093566,17.8485414752068,0.401640967706441,0.694155819466288,0.999952130816504,-4.61216808195038 +"Q9W309",-0.238803043580447,18.5557629299153,-0.400539988348457,0.69494743788645,0.999952130816504,-4.61218667165253 +"Q9W3J1",-0.236846744877189,15.6866247347313,-0.398846881240035,0.696165526258612,0.999952130816504,-4.61221516419332 +"Q9VSL9",0.195532332045325,14.5130106441866,0.397027735708784,0.697475264358333,0.999952130816504,-4.61224564932274 +"P53997",-0.316635715622891,17.4236335370105,-0.397005133803347,0.697491543472277,0.999952130816504,-4.61224602724684 +"Q9W1X8",0.113488143481565,16.108538355978,0.396476954699976,0.697872010721563,0.999952130816504,-4.61225485302184 +"Q8MKN0",0.183548675225321,16.599865847244,0.395270378802509,0.698741469662962,0.999952130816504,-4.6122749725628 +"P35381",0.195375189083563,25.5942171798297,0.394857185323938,0.699039318215445,0.999952130816504,-4.61228184905474 +"Q9VU95",0.216454859643964,16.5999431922349,0.394258322123529,0.699471097419541,0.999952130816504,-4.61229180331677 +"Q9XTL2",-0.144182363100391,16.9657417157141,-0.393105993741458,0.700302228194333,0.999952130816504,-4.61231091660146 +"Q9W199",0.495884097313937,15.7423879023532,0.392840861015244,0.700493514961838,0.999952130816504,-4.61231530669936 +"Q7K3V6",0.235369366604147,16.1394091827487,0.392461707387861,0.700767101751042,0.999952130816504,-4.6123215798469 +"Q9VVL7",-0.161716351957995,23.5033705515209,-0.392279316542976,0.70089872534179,0.999952130816504,-4.61232459546425 +"Q9I7J0",-0.164450542251746,21.0468081824944,-0.391931630360459,0.701149663115668,0.999952130816504,-4.6123303403312 +"P14318",-0.253928057657806,22.1754578303237,-0.391679101207376,0.701331945350787,0.999952130816504,-4.61233450985087 +"Q9W392",0.179761255044308,19.9737314037546,0.389541162519934,0.70287593188385,0.999952130816504,-4.61236970642493 +"Q95RA9",-0.140629935675463,20.5327349952375,-0.389409492512715,0.702971066640195,0.999952130816504,-4.61237186806327 +"Q9VMY1",0.326796390885672,15.5823144437963,0.389200814395893,0.703121852217643,0.999952130816504,-4.61237529251815 +"Q9VBI2",-0.220774129974707,22.1544778896352,-0.388708529305891,0.703477616578579,0.999952130816504,-4.61238336406656 +"Q7K012",0.220066064055652,15.4994444467147,0.387498640752223,0.704352285178769,0.999952130816504,-4.61240315995123 +"Q9VFP0",-0.144467954982929,16.5573444425752,-0.386658994117765,0.704959549595219,0.999952130816504,-4.61241686330237 +"Q9VHG4",0.181835973746473,18.4101481698476,0.386553361285615,0.705035962112543,0.999952130816504,-4.61241858525451 +"Q9VG69",-0.224027368852258,19.9765826445163,-0.386033118990367,0.705412342504254,0.999952130816504,-4.6124270593045 +"Q9VSD6",-0.185632041823386,16.4764034030107,-0.385988208655732,0.705444837608503,0.999952130816504,-4.61242779032119 +"Q9VMB9",-0.249435196065118,22.5760329363872,-0.385358405089481,0.705900598194145,0.999952130816504,-4.6124380332093 +"Q7JQR3",-0.211958228620105,19.1439864555764,-0.384804435329862,0.706301578343945,0.999952130816504,-4.6124470295202 +"Q8IM93",-0.283696373518424,19.0675930632366,-0.383193918119437,0.707467834723504,0.999952130816504,-4.61247311343263 +"Q9W499",0.155741533377256,16.9264397609861,0.382558597787325,0.707928112479,0.999952130816504,-4.61248337423548 +"Q95SI7",-0.172529413007517,21.2541654410266,-0.382119356697602,0.708246403939973,0.999952130816504,-4.61249045869981 +"B7Z107",-0.383919990922106,16.0711058066324,-0.381011213697073,0.70904966014847,0.999952130816504,-4.61250829712632 +"Q9VIS4",0.100740646732852,14.1698215993571,0.380996316911482,0.709060460791252,0.999952130816504,-4.61250853659026 +"Q9VZ58",0.193927875638099,18.1201971310883,0.379844692217818,0.709895622141746,0.999952130816504,-4.61252702163512 +"Q9W086",0.302390541428576,16.858899036092,0.379647950760262,0.710038338416504,0.999952130816504,-4.61253017421921 +"Q9U1L2",-0.256160387041337,17.6145235069084,-0.379181548369956,0.710376711981337,0.999952130816504,-4.61253764158978 +"Q9VTT2",-0.241047498405345,14.0718427666241,-0.378819554498815,0.710639381282611,0.999952130816504,-4.61254343125088 +"Q9VIH9",-0.252015517577416,19.2452833905567,-0.378684510612611,0.710737381368751,0.999952130816504,-4.61254558975851 +"A8DRW0",-0.232216918512332,21.5202855614131,-0.378519897585653,0.71085684670204,0.999952130816504,-4.61254821989339 +"Q9VTM6",0.119488704532692,16.2429953700055,0.378193434613743,0.711093795488578,0.999952130816504,-4.61255343277009 +"Q9VPC1",-0.170079500973657,16.1561498197639,-0.378076018553162,0.711179024369329,0.999952130816504,-4.61255530658439 +"Q9VTB3",-0.189949029968346,19.7437860661667,-0.377860980139425,0.711335124875897,0.999952130816504,-4.61255873688262 +"Q9VBC7",0.321967787993605,16.0315592108535,0.377516135148546,0.711585482586241,0.999952130816504,-4.61256423394934 +"Q7JZW0",0.182790281503902,19.7252995947235,0.376766244307029,0.712130023329072,0.999952130816504,-4.6125761711015 +"Q0E8V7",-0.162514815329402,19.7828727176982,-0.375954639002119,0.712719562799151,0.999952130816504,-4.61258906498708 +"Q9NK57",-0.141909450372111,15.6088987914084,-0.375891623739507,0.712765344260119,0.999952130816504,-4.6125900649872 +"Q9VQM2",-0.156003454316217,20.1229383300911,-0.375692702586072,0.712909870789142,0.999952130816504,-4.61259322064574 +"Q9VMX4",-0.157445436846857,17.3490560696306,-0.375666165717008,0.712929152067519,0.999952130816504,-4.61259364150186 +"Q9VSA3",0.223001232877056,21.6819429412969,0.374831115455058,0.713535990898726,0.999952130816504,-4.61260687023357 +"Q9VR94",0.288622699034676,16.3106306498486,0.374601758513165,0.713702702072527,0.999952130816504,-4.6126104987217 +"M9MSK4",-0.198261560158727,20.5494749393378,-0.373805463767164,0.71428161767019,0.999952130816504,-4.61262307976219 +"Q9W380",0.100519368196291,18.3798544191077,0.373126097695962,0.714775669494865,0.999952130816504,-4.61263379306569 +"Q9VIF2",0.261085776810937,17.3729893912739,0.373103237097556,0.714792296603124,0.999952130816504,-4.61263415324173 +"Q9VVH3",-0.131220895573829,19.9078193306557,-0.372812785089291,0.715003563023432,0.999952130816504,-4.61263872756055 +"Q9VV75",-0.15108342979034,23.9868962499661,-0.372491073598114,0.715237595058777,0.999952130816504,-4.61264379018976 +"P54622",0.197605761751564,17.8432193096859,0.372238398497567,0.715421426817714,0.999952130816504,-4.61264776348059 +"Q7JVK6",0.229801321446498,17.3067710508147,0.371004404236095,0.716319473252738,0.999952130816504,-4.61266713070063 +"Q7K3E2",-0.265999544749079,20.5612577814084,-0.370335424176107,0.716806510062299,0.999952130816504,-4.61267760433707 +"Q9VZF9",-0.153348843922142,19.1541645894424,-0.369513814637568,0.71740484095623,0.999952130816504,-4.61269044270197 +"Q9VDD1",-0.131320517361926,14.4698029768659,-0.369319149273549,0.717546632826526,0.999952130816504,-4.61269348050164 +"Q9VE85",0.160097588117031,15.7632991566394,0.368888676867408,0.717860222116112,0.999952130816504,-4.61270019266278 +"Q9V9M7",0.277180832993022,18.3743349984906,0.368633698303879,0.718045993118394,0.999952130816504,-4.61270416487894 +"Q9V3P3",0.121684874335877,19.400048149005,0.36850920023488,0.718136706039114,0.999952130816504,-4.61270610342859 +"Q9VXE8",-0.222231069790123,16.2542674699572,-0.36832593144966,0.718270249062334,0.999952130816504,-4.61270895594694 +"Q9VPN5",-0.212552574567727,21.3690757223014,-0.367781284781071,0.71866717492626,0.999952130816504,-4.61271742514071 +"Q9VSU6",-0.151361177739819,21.5985284624957,-0.367223271915854,0.719073929396281,0.999952130816504,-4.61272608967827 +"Q9V3E7",-0.10351914627924,18.7638712412239,-0.365991104875867,0.719972411266618,0.999952130816504,-4.61274517731677 +"Q9VPX0",0.207669024734809,14.2989138093977,0.364609079821359,0.720980680258554,0.999952130816504,-4.61276651298842 +"Q9W3N7",-0.236648555154428,17.3687496409156,-0.363506936421309,0.721785146239488,0.999952130816504,-4.61278347218161 +"Q9VMW7",-0.202270495914618,19.4656908511631,-0.361716341965569,0.723092849966176,0.999952130816504,-4.61281091952124 +"Q9W260",0.16554614742158,17.3449281669426,0.361269625333514,0.72341923577206,0.999952130816504,-4.61281774673149 +"Q9W314",-0.202820721300206,16.288782129386,-0.359994716229626,0.724351033885184,0.999952130816504,-4.61283718659845 +"Q9VN86",0.14810426670172,15.29129144059,0.359332380448892,0.724835297563013,0.999952130816504,-4.61284725979466 +"Q9Y0Y2",-0.10404042087378,19.5167421785927,-0.359007860602343,0.725072613457386,0.999952130816504,-4.61285218876264 +"Q9VQD7",-0.183622210602582,21.0003981161485,-0.357733251231658,0.726004998060763,0.999952130816504,-4.61287150663658 +"Q9VFP1",0.193856395215922,15.6236392022137,0.357110592977057,0.72646064086951,0.999952130816504,-4.61288091952133 +"Q95RB2",-0.143080239008789,24.2859157771627,-0.356898370824545,0.726615963359774,0.999952130816504,-4.61288412412696 +"Q9W2N5",0.410539442057763,12.9209181303799,0.356693022070069,0.726766267211774,0.999952130816504,-4.6128872231948 +"Q9VHX4",-0.158545386500283,22.874548128139,-0.356687856581124,0.726770048212963,0.999952130816504,-4.61288730112879 +"Q9VF24",0.142369520168238,16.0603536342658,0.355974686803693,0.727292140680468,0.999952130816504,-4.61289805058994 +"Q9VAF5",0.131324033965608,16.0042141074372,0.355890898823164,0.727353488871221,0.999952130816504,-4.61289931214749 +"Q9VL01",-0.207383992158228,20.5381766293535,-0.355866792646377,0.727371139380453,0.999952130816504,-4.61289967505022 +"Q86BN8",-0.345413355911251,14.1913950473802,-0.355004683861688,0.7280024800053,0.999952130816504,-4.61291263795436 +"Q9VCE0",-0.318031096093398,15.897136904949,-0.354796457308973,0.728154999571689,0.999952130816504,-4.61291576436065 +"Q9VJZ5",-0.214830162065368,17.0201064610847,-0.352496514130664,0.729840433199384,0.999952130816504,-4.61295017904629 +"P42325",-0.160398691425602,20.088691882769,-0.352135933789087,0.730104804034635,0.999952130816504,-4.61295555493247 +"Q7KLE5",-0.130398479472401,21.4514752548699,-0.351980059716377,0.730219099075238,0.999952130816504,-4.61295787721309 +"Q9VUN9",0.167920193322527,16.7705354222863,0.351319121567094,0.730703807633473,0.999952130816504,-4.61296771313938 +"Q9VFS8",-0.13668575729055,17.3731314547144,-0.351147085110464,0.730829992702649,0.999952130816504,-4.61297027041966 +"Q9W337",-0.309905376277591,17.7878464761847,-0.349321227681733,0.732169719128944,0.999952130816504,-4.61299733684803 +"P21914",-0.144799149577409,22.921784772959,-0.349163384169796,0.732285579866042,0.999952130816504,-4.61299967031703 +"A1ZBD8",0.384636524382813,14.1585573359741,0.347943157379597,0.733181483166805,0.999952130816504,-4.61301767509718 +"Q9VII1",-0.175911839345446,19.4019412509131,-0.347526177899431,0.73348772671065,0.999952130816504,-4.61302381379104 +"Q9V3I0",0.308880542450577,16.3042814249873,0.347047922903514,0.733839031147026,0.999952130816504,-4.61303084581929 +"Q9VHM3",-0.0953319020685459,14.6851541678955,-0.345134316817656,0.735245299350247,0.999952130816504,-4.61305888895865 +"Q9VRU1",0.180662323573753,17.2339657909374,0.345051873785626,0.735305907215198,0.999952130816504,-4.6130600937629 +"Q7K5M6",-0.237976352437119,18.277937132895,-0.34487993161859,0.735432316129656,0.999952130816504,-4.61306260559293 +"Q9VQI7",-0.146915919713454,19.2104568404491,-0.344738732699479,0.735536129102501,0.999952130816504,-4.61306466740336 +"Q9VDV2",0.326634168332339,14.3545459830234,0.344410150574411,0.735777731699149,0.999952130816504,-4.6130694622568 +"Q9VNC1",0.305112455995982,15.515053486312,0.343689769428073,0.736307521306489,0.999952130816504,-4.61307995899778 +"Q9VD68",0.137626523868466,14.807542698942,0.343063217636542,0.73676841952931,0.999952130816504,-4.61308907127132 +"M9PHA0",-0.168297861763325,17.4597850726352,-0.342076446060772,0.737494512981209,0.999952130816504,-4.61310338982347 +"P13060",0.165323347358221,20.164568083721,0.34146452495326,0.737944912298418,0.999952130816504,-4.61311224907697 +"Q9VA32",0.227664329655973,17.2144298288652,0.341387230895254,0.738001811058595,0.999952130816504,-4.61311336703171 +"Q8IRD0",0.218730568039259,17.4674467872905,0.340530878814123,0.738632307508259,0.999952130816504,-4.61312573663928 +"Q9VGP6",0.161437932972621,17.9475394593416,0.340057443310285,0.738980962417481,0.999952130816504,-4.61313256229893 +"O61443",0.303797186166573,16.5061246716231,0.340042685613635,0.738991831475782,0.999952130816504,-4.61313277491741 +"Q9VK12",-0.210330340967325,22.3588725970958,-0.338579373746097,0.740069849982917,0.999952130816504,-4.61315381296356 +"Q9VFF0",0.16741843824278,23.610212242945,0.337877493026434,0.740587125789453,0.999952130816504,-4.61316387276186 +"P36241",0.121696234377765,19.84981781317,0.335228306410405,0.742540712037053,0.999952130816504,-4.61320166054817 +"Q9VN25",0.156516822024253,14.9397394242289,0.335128358529111,0.742614452719117,0.999952130816504,-4.61320308056083 +"P55841",0.153883182046059,20.6319627944243,0.333995025918177,0.743450799477098,0.999952130816504,-4.61321915373942 +"O44386",0.113472958345863,16.8658724634643,0.333981240609971,0.743460974470242,0.999952130816504,-4.61321934892125 +"Q9VX36",-0.16359465077657,22.2380457099757,-0.333555607523245,0.743775160546321,0.999952130816504,-4.61322537148715 +"Q9VIB5",-0.187865781393324,14.4925890938651,-0.333428811686388,0.743868765569021,0.999952130816504,-4.6132271641681 +"Q9Y171",0.404445211555512,15.0372266751598,0.33338671637092,0.743899842701911,0.999952130816504,-4.61322775917948 +"Q7JXC4",-0.202450725636044,21.6496472995715,-0.332641578238842,0.744450022437809,0.999952130816504,-4.61323827956029 +"Q76NQ0",0.241213385297465,14.4424926069052,0.332292871103377,0.744707543512946,0.999952130816504,-4.61324319502006 +"Q9XYZ5",0.113079380342342,15.9182019502723,0.331698679251256,0.745146428823422,0.999952130816504,-4.61325155938682 +"Q9VEN3",-0.191859920643477,17.6111231050059,-0.331384884610917,0.745378242746198,0.999952130816504,-4.61325597078457 +"Q9VJN0",-0.222277534922263,17.5641247858464,-0.331382476113696,0.745380022108458,0.999952130816504,-4.61325600462814 +"Q9VQJ8",-0.163411643173436,15.2579265196982,-0.330777437463001,0.745827063618744,0.999952130816504,-4.61326449892305 +"Q9VDE2",-0.203841211787982,19.5453260794016,-0.330477257627852,0.746048891171948,0.999952130816504,-4.61326870764385 +"Q9W3W4",0.129796934581833,15.8534533806491,0.32997158961994,0.746422623793425,0.999952130816504,-4.61327578907347 +"Q9W259",0.0898451914397462,16.9290720740408,0.329196669777581,0.746995485741485,0.999952130816504,-4.61328662074392 +"Q9VY05",0.232468935230187,18.2846899264902,0.328815048112885,0.747277657972942,0.999952130816504,-4.61329194590257 +"Q6IGW6",0.10305741703268,15.7094771637006,0.328651222958641,0.747398802364034,0.999952130816504,-4.61329423008638 +"A1ZBK7",-0.144074602730264,17.6132565449253,-0.328584521832185,0.747448128081666,0.999952130816504,-4.61329515977178 +"Q9VZI3",0.154895789764433,14.3243530707431,0.328557531354245,0.747468087962176,0.999952130816504,-4.61329553591514 +"Q7JWU9",-0.190718655072281,15.5937734676188,-0.328077303050318,0.747823255797621,0.999952130816504,-4.61330222344181 +"Q9VSY8",-0.140573725620456,18.0589562024527,-0.327537796341338,0.748222335897289,0.999952130816504,-4.61330972515262 +"P54185",0.0982043150731933,17.5772100381422,0.327431372905673,0.7483010675622,0.999952130816504,-4.61331120353144 +"M9PF61",-0.153232699107154,22.717507240348,-0.32685704336105,0.748726004841215,0.999952130816504,-4.61331917377787 +"Q9VXE0",0.152408176255406,17.9924882431678,0.326437112352361,0.749036758874611,0.999952130816504,-4.61332499277523 +"Q9V3W2",-0.135586604434703,21.5580358029291,-0.326187626896359,0.749221402619098,0.999952130816504,-4.61332844646809 +"Q0KHZ6",-0.187829651254145,23.1337771825978,-0.325126382528494,0.750007006366873,0.999952130816504,-4.61334310893841 +"A1ZB71",-0.267822675827347,19.2449502459631,-0.324990326899726,0.750107744699835,0.999952130816504,-4.61334498537224 +"Q9VLY7",0.253815375113426,15.3514911595159,0.324776267038826,0.750266248542233,0.999952130816504,-4.61334793607227 +"Q9W2X6",-0.160268122200581,24.1252262035553,-0.324388802493989,0.750553182330838,0.999952130816504,-4.6133532722664 +"Q9W0C3",0.157100891918247,18.5357911239313,0.323882275165995,0.750928345037372,0.999952130816504,-4.61336023888366 +"P61851",-0.120115697341721,23.5837516040717,-0.323662389354191,0.751091225280762,0.999952130816504,-4.61336325983621 +"Q9V3T8",-0.130065386850902,15.6392130640234,-0.323524731580247,0.751193201453558,0.999952130816504,-4.61336515006654 +"Q9W265",0.17698494656586,17.0413490066314,0.323402861325509,0.751283486349732,0.999952130816504,-4.61336682286146 +"Q9VBP6",-0.191634112333823,23.1517542166488,-0.323301600372572,0.751358506180908,0.999952130816504,-4.61336821230734 +"Q9VFC2",0.243079700611592,19.8174939140012,0.323080017713284,0.751522676248806,0.999952130816504,-4.61337125126732 +"Q9VDT1",0.215731378570883,19.0483554172597,0.322996469203167,0.751584580392265,0.999952130816504,-4.61337239659288 +"Q9VFP6",-0.14927020142181,20.2218676071311,-0.321692966665412,0.752550623207096,0.999952130816504,-4.61339022844168 +"Q7JWX3",0.179766668955441,17.90374858627,0.321594864243314,0.752623345678371,0.999952130816504,-4.61339156764624 +"P51140",-0.096982390792526,13.6059266737272,-0.321014314866599,0.753053751874422,0.999952130816504,-4.61339948466031 +"Q9VXZ0",-0.214026492555188,19.7269814372015,-0.320174224834969,0.753676726894538,0.999952130816504,-4.61341091647252 +"Q9V3E3",0.301623200119598,15.0026620095224,0.32006357393876,0.753758794203934,0.999952130816504,-4.61341242002496 +"Q9VSL4",-0.159640424658672,20.9450271905823,-0.31952141459211,0.754160946465183,0.999952130816504,-4.61341977973064 +"Q7K2N0",-0.111315026752779,15.4712876024501,-0.319177045545667,0.75441642428802,0.999952130816504,-4.61342444818077 +"Q9VN91",0.169753712799469,19.5804282233065,0.318741863338357,0.754739316653163,0.999952130816504,-4.61343034075047 +"Q9W289",-0.144934662408446,17.4894702995801,-0.31822335665642,0.755124095608273,0.999952130816504,-4.61343735137944 +"B7Z0C9",-0.198559179300741,15.9953493629152,-0.316985035277145,0.756043315791036,0.999952130816504,-4.61345404963172 +"P52029",-0.278511627918448,18.3729676908,-0.316262615495504,0.756579753947854,0.999952130816504,-4.61346376195395 +"Q86BS3",-0.182344936116198,19.0081998515264,-0.316101347266078,0.756699522704217,0.999952130816504,-4.61346592712935 +"Q9VH76",-0.148225711844905,19.3588078301365,-0.315317884582274,0.757281467889535,0.999952130816504,-4.61347643057318 +"P35992",0.137762037387189,15.8472117383929,0.31518229531717,0.757382197268697,0.999952130816504,-4.61347824577137 +"Q26377",-0.189841015738914,16.7730582797804,-0.314895185166247,0.75759550677719,0.999952130816504,-4.61348208694788 +"Q8IQC6",-0.158767813456976,15.9596916301663,-0.314779873878013,0.757681183493598,0.999952130816504,-4.61348362871192 +"Q9VFT4",0.214102467398678,15.7368403852488,0.314128223607366,0.758165424310148,0.999952130816504,-4.61349233125681 +"Q8IN51",-0.271378941472534,17.1225849871741,-0.314051101206831,0.758222740900606,0.999952130816504,-4.6134933600376 +"Q8T3L6",-0.116290562869104,17.4927006860345,-0.313799030576877,0.75841008756719,0.999952130816504,-4.61349672084245 +"Q9VSX2",-0.157133321508351,17.9776076170942,-0.313704032935205,0.758480696841683,0.999952130816504,-4.61349798674556 +"Q9VVB4",-0.156140183832147,16.100091598022,-0.313572916930187,0.758578155638181,0.999952130816504,-4.61349973333654 +"O97477",0.161407346184252,20.9201240571983,0.31253782020541,0.759347694932627,0.999952130816504,-4.61351349689834 +"E1JGR3",0.0878159195830168,12.2108143885341,0.311630127297191,0.76002273463653,0.999952130816504,-4.61352552997547 +"Q9W140",-0.317680470096871,13.9559224845882,-0.31148036780571,0.760134128442006,0.999952130816504,-4.61352751203236 +"Q9VU35",-0.188886270735129,22.7446862718274,-0.309642356319449,0.761501724752043,0.999952130816504,-4.61355176252174 +"P36975",-0.155606566613692,22.3101659333048,-0.309362948749161,0.761709694340484,0.999952130816504,-4.61355543676617 +"Q9VK00",0.209598360205241,17.6132201020212,0.309089319309024,0.761913381699569,0.999952130816504,-4.61355903190025 +"Q9VJZ6",-0.165974027249831,19.7710720341031,-0.309015442278936,0.761968378262026,0.999952130816504,-4.61356000201754 +"Q5U1B0",-0.106635246182883,14.8120351528379,-0.3088500025701,0.762091542035361,0.999952130816504,-4.61356217367319 +"P20240",0.139166986524756,17.3746873770868,0.308018691552203,0.762710523944592,0.999952130816504,-4.61357306880728 +"P22465",-0.175113275629109,22.7071020438403,-0.307903778370567,0.76279609990239,0.999952130816504,-4.61357457260787 +"A1Z7H7",0.122412142977392,17.8594146109394,0.307803321154525,0.762870913132239,0.999952130816504,-4.61357588678454 +"Q9W1B9",0.227041800869383,20.4905204430389,0.307063566481575,0.763421904499858,0.999952130816504,-4.61358555137048 +"Q9VAG3",0.153412089188418,16.7540732293102,0.306976743529879,0.763486581579859,0.999952130816504,-4.61358668419221 +"Q9VUJ1",0.185862077265991,19.9898506885425,0.306864818116913,0.763569960964041,0.999952130816504,-4.61358814407809 +"Q7JWD3",-0.287136996036043,17.1384962045599,-0.306817695852163,0.76360506583888,0.999952130816504,-4.61358875855679 +"P29746",0.164278297223586,21.1952337149088,0.306630266683142,0.763744701101585,0.999952130816504,-4.61359120174142 +"Q9VNR6",-0.144714449255957,14.6764588249979,-0.306453543188245,0.763876368441318,0.999952130816504,-4.61359350404413 +"Q9VM18",-0.185216103623464,22.9980497113099,-0.30636755868287,0.763940433702519,0.999952130816504,-4.6135946237583 +"O46106",-0.1336215349288,17.0170521734791,-0.306356918326269,0.763948361735329,0.999952130816504,-4.61359476229872 +"Q9V3Z2",0.134847433275514,16.1492699041948,0.30600453545132,0.764210934562597,0.999952130816504,-4.61359934777665 +"A1ZB68",-0.15202632209024,19.3780462076846,-0.305554873479288,0.764546037275804,0.999952130816504,-4.61360519166561 +"Q9U9P7",-0.208342603393042,16.6266214016737,-0.305529058607985,0.764565276847001,0.999952130816504,-4.61360552690648 +"Q9VN01",0.195421260741556,15.9963390789222,0.305435125659028,0.764635285520425,0.999952130816504,-4.61360674651965 +"Q7K2L7",-0.215889601543985,18.3857853767815,-0.305049381722322,0.764922804752105,0.999952130816504,-4.61361175114079 +"Q9VXN1",-0.19856728156345,13.6509484213031,-0.304197660848001,0.765557773587427,0.999952130816504,-4.61362277951509 +"Q7KV34",0.155147495335431,20.849571925552,0.302565919997557,0.766774746811622,0.999952130816504,-4.61364382399172 +"A1ZBU8",-0.153342091607616,20.8316902004381,-0.302550920619065,0.766785936516505,0.999952130816504,-4.61364401692664 +"Q9VIU3",0.264190781253294,12.4787348876725,0.301768498005775,0.767369707579586,0.999952130816504,-4.6136540682022 +"P20348",-0.224948240709328,17.4943805435423,-0.301556697338263,0.767527758849101,0.999952130816504,-4.61365678470775 +"Q9VXR9",0.223000141216762,15.1341591792751,0.301540495608463,0.76753984945231,0.999952130816504,-4.61365699243083 +"Q9VCC0",-0.177185558400815,17.5096043400956,-0.300730590534789,0.76814432441856,0.999952130816504,-4.61366736240285 +"Q7JYH3",-0.196905563824462,19.1274842862416,-0.300537759591804,0.768288267494864,0.999952130816504,-4.61366982739301 +"Q9I7T7",0.182881212245032,14.4947377761041,0.300366706033311,0.768415961787318,0.999952130816504,-4.61367201270994 +"Q8SYQ4",-0.139880898799255,21.0323246279439,-0.300178794634227,0.768556248797326,0.999952130816504,-4.61367441199913 +"A1Z7B8",0.202689103429513,16.864358675108,0.300109044992363,0.768608323191093,0.999952130816504,-4.6136753022038 +"Q9VJ58",0.181024744852731,17.1917418747813,0.29987481329343,0.768783206767053,0.999952130816504,-4.61367829019432 +"Q8IQW5",-0.13074661780659,21.9315195527309,-0.299597814013678,0.768990038650119,0.999952130816504,-4.61368182081825 +"Q94529",-0.111931337975026,19.6532605551803,-0.299314777592713,0.769201397293944,0.999952130816504,-4.61368542510726 +"Q9VJH8",0.164494799469162,14.296026932115,0.298965251495723,0.769462433727662,0.999952130816504,-4.61368987151888 +"Q9VMD3",0.271521469205872,17.7427163446969,0.298850976613532,0.769547783901983,0.999952130816504,-4.61369132414087 +"A0A126GUP6",-0.155344372211363,17.0849380239928,-0.298716182949135,0.76964846323796,0.999952130816504,-4.61369303689466 +"Q9W0M5",0.124700157777841,13.3065603828079,0.29858602810247,0.76974568187563,0.999952130816504,-4.61369468999074 +"Q9W461",-0.17472020292551,16.3556724529583,-0.298390136443023,0.769892009953855,0.999952130816504,-4.61369717668613 +"Q9V931",-0.266520522915261,17.755742770142,-0.297857200592283,0.770290151035355,0.999952130816504,-4.61370393385054 +"Q9VKF0",-0.120496506059201,15.8788313868253,-0.297833006376054,0.77030822744002,0.999952130816504,-4.61370424033284 +"Q7KN94",-0.137752201918751,22.6517101429674,-0.297464401044543,0.770583643452293,0.999952130816504,-4.61370890667099 +"Q9VIQ5",-0.265527688799963,16.6224461526391,-0.297256381031067,0.770739086897687,0.999952130816504,-4.61371153760196 +"Q9VIH3",-0.11516010150374,13.8265894557136,-0.296238260155669,0.771500027837892,0.999952130816504,-4.61372438839348 +"Q9VRP4",0.305357059886482,14.3316507082212,0.296195675814738,0.771531860603491,0.999952130816504,-4.61372492495937 +"Q9VF89",0.239581672124775,14.1325646785943,0.294507610620499,0.772794072114061,0.999952130816504,-4.61374613411758 +"Q9VGZ3",0.0904976868550236,16.9978445584458,0.294445613011795,0.772840442148581,0.999952130816504,-4.61374691081623 +"Q9VY24",0.101794254760343,17.7309556543533,0.292989330190724,0.773929902849054,0.999952130816504,-4.61376510907767 +"Q9VZW7",-0.097659398715404,13.9465557564765,-0.292198015272884,0.77452210203241,0.999952130816504,-4.61377496073883 +"Q9VIL2",-0.132824546720078,16.0464512051016,-0.290909331624642,0.775486831271682,0.999952130816504,-4.61379094886591 +"Q9VCD9",-0.228350291494198,18.5313389090041,-0.290827561357655,0.775548058837604,0.999952130816504,-4.61379196102668 +"Q9VVZ4",-0.156056071847837,15.9202143192371,-0.290327012457312,0.775922891384746,0.999952130816504,-4.61379815081965 +"Q9VA97",-0.107811698329133,18.5644592737919,-0.289689793335356,0.776400152524929,0.999952130816504,-4.61380601562112 +"Q9TVP3",-0.164030387181526,22.9322496698029,-0.289381505943278,0.77663108579209,0.999952130816504,-4.61380981456738 +"Q9VM58",0.252049536074484,16.4035703440865,0.289367549008146,0.776641541234183,0.999952130816504,-4.61380998646168 +"Q9U6R9",-0.131865148143959,20.615722205173,-0.288688383502587,0.777150373192606,0.999952130816504,-4.61381834131827 +"A8JNT7",0.139778067352072,16.8172469075921,0.288385832640136,0.777377079094159,0.999952130816504,-4.61382205702245 +"Q9VQR2",-0.156284161458206,21.3423838796138,-0.288155724334016,0.777549516828621,0.999952130816504,-4.61382488049445 +"Q9VGK3",-0.0996788579369223,17.1291191426775,-0.288010265472695,0.777658526558963,0.999952130816504,-4.61382666416678 +"Q9VG92",-0.0953425644030119,16.5959278039719,-0.287703588552826,0.777888372231357,0.999952130816504,-4.6138304218754 +"Q9VM50",0.156296703912643,13.4794200308433,0.287534312964141,0.778015248761669,0.999952130816504,-4.61383249433289 +"A1ZB79",-0.16278594198614,20.8182318133719,-0.287441756517109,0.778084625052293,0.999952130816504,-4.61383362700682 +"Q9VVL8",-0.179552948879159,15.9257922612402,-0.287160795961221,0.778295232932777,0.999952130816504,-4.61383706312436 +"Q9W1X4",0.230004102656467,15.0759947573471,0.286767341571262,0.778590196592322,0.999952130816504,-4.61384186951429 +"Q9VIV6",0.591132614740928,14.7645734609891,0.286164133232954,0.779042476861673,0.999952130816504,-4.61384922573564 +"P40796",-0.139316244019675,18.4001437474785,-0.286067966636774,0.779114589425545,0.999952130816504,-4.61385039710438 +"Q7KLW9",0.136301534720594,17.1689296257497,0.285974196999221,0.779184906616931,0.999952130816504,-4.6138515389064 +"Q9V406",-0.221857657405337,17.0459298741558,-0.285877108252004,0.779257714904864,0.999952130816504,-4.61385272073888 +"Q9VD64",-0.158354299263443,15.7500442822161,-0.285622956192663,0.779448317500419,0.999952130816504,-4.61385581260043 +"A0A0B4K7J2",-0.124764285142264,15.6547832582705,-0.285355975208772,0.779648557108304,0.999952130816504,-4.61385905763813 +"Q9VXI6",-0.158109712663023,22.0387622436521,-0.285050773152714,0.779877483009805,0.999952130816504,-4.61386276360513 +"O96824",-0.132065535729097,16.7733038188035,-0.284262568438363,0.780468797698598,0.999952130816504,-4.61387231659027 +"Q9VCR2",0.0933551877011034,15.4176599869219,0.283925095396207,0.780722014717794,0.999952130816504,-4.6138763988386 +"Q9VPU4",-0.166866392677386,13.049746462045,-0.283397976796487,0.781117580760638,0.999952130816504,-4.61388276565768 +"Q9VUH8",0.0931945057228827,15.4783371675969,0.283178097036426,0.781282603950279,0.999952130816504,-4.61388541806561 +"Q9W3M8",0.155688770131892,18.5426826003717,0.282573484727966,0.781736431413071,0.999952130816504,-4.61389270112809 +"Q9W127",-0.185681153933341,18.6484909480719,-0.282553861419745,0.781751162232553,0.999952130816504,-4.61389293725242 +"Q9VI64",-0.123671664799037,20.9078606325836,-0.282173771188633,0.782036505444029,0.999952130816504,-4.61389750766006 +"Q9VWD0",-0.15025519118316,18.2050202454115,-0.281493200670933,0.782547508249506,0.999952130816504,-4.61390567618099 +"Q24185",-0.139348583673367,18.7226106587089,-0.280004144943036,0.783665921934301,0.999952130816504,-4.61392348126869 +"Q9VJ68",-0.113388007433439,17.9249204094078,-0.277423918799308,0.785605078894837,0.999952130816504,-4.61395411518054 +"Q9VGT8",0.139660851383372,15.2910497028195,0.277155031146631,0.78580724563226,0.999952130816504,-4.61395729161015 +"Q9W2M0",-0.13214026936668,17.8103476799311,-0.276932569440118,0.785974518562688,0.999952130816504,-4.61395991732235 +"Q9VHX2",-0.143722117820779,14.828778906165,-0.276718599796394,0.786135416535376,0.999952130816504,-4.61396244085713 +"Q9VZ64",-0.155761178310044,19.4579614242135,-0.276613099381723,0.786214753040172,0.999952130816504,-4.61396368441529 +"Q9W5W8",0.187470862122218,20.676095836201,0.276591303318294,0.786231144027725,0.999952130816504,-4.61396394127279 +"Q9W552",0.0947792177132669,16.147577430392,0.27642850560165,0.786353573843601,0.999952130816504,-4.61396585914966 +"Q9VIW6",0.109078244758445,14.9720328060109,0.276109832041796,0.786593244991156,0.999952130816504,-4.61396961016129 +"Q709R6",-0.269049533856613,15.1697299122323,-0.275576383651263,0.786994496466127,0.999952130816504,-4.6139758797502 +"A1Z6V5",-0.127418213454835,20.1211593081969,-0.27497826224213,0.787444468828624,0.999952130816504,-4.61398289533064 +"O77134",-0.168571352408978,21.71471802904,-0.274848958010525,0.78754175600777,0.999952130816504,-4.61398441002566 +"Q8MSV2",0.193091804655459,18.2067830729294,0.274778811687823,0.787594534926325,0.999952130816504,-4.61398523144173 +"Q7KMQ0",0.118676636807358,20.7970861118416,0.274756232832552,0.78761152375369,0.999952130816504,-4.61398549579733 +"Q94516",-0.14938740018653,23.3801237163897,-0.274477817969457,0.787821018463029,0.999952130816504,-4.61398875376061 +"Q9VY41",-0.118144459260979,16.5327427912138,-0.274299301896025,0.787955352800651,0.999952130816504,-4.61399084102471 +"Q9VYS2",-0.112498191350722,15.0336573483283,-0.273729500456832,0.788384178498392,0.999952130816504,-4.61399749442585 +"Q9VL10",0.245742128855859,16.7200217206071,0.273233453000114,0.788757555970439,0.999952130816504,-4.61400327559917 +"Q6IDF5",-0.146964324766667,19.6520350598159,-0.27245605534792,0.78934281580903,0.999952130816504,-4.61401231511592 +"P23128",0.179040504209093,14.6230559670091,0.272430668960417,0.789361930053766,0.999952130816504,-4.6140126098817 +"Q9VYF0",0.189810365637978,16.1730273187074,0.271849120380777,0.789799835689301,0.999952130816504,-4.61401935498156 +"Q9VEJ0",-0.168336314168393,22.2287474391098,-0.271253926549322,0.790248092709404,0.999952130816504,-4.61402624373507 +"Q9VBS7",0.13135545994864,19.8240097463065,0.271021497836834,0.79042316221739,0.999952130816504,-4.61402892984385 +"Q9VEN9",0.105976386720602,14.89116397833,0.2709988223924,0.790440242402449,0.999952130816504,-4.61402919177645 +"Q95RS6",0.122832966634888,17.1035404425473,0.270956787795231,0.790471905085845,0.999952130816504,-4.61402967727716 +"Q7K9H6",0.199340885605272,11.95099182165,0.270487011745319,0.7908257914489,0.999952130816504,-4.61403509818599 +"Q7PLT4",0.19617955218396,15.7946951550433,0.270206500490487,0.791037125898532,0.999952130816504,-4.61403833071081 +"Q9VW73",0.119068159884984,14.1469447070819,0.269678821707964,0.791434720282538,0.999952130816504,-4.6140444026175 +"Q9V9T9",0.232909238285668,13.3796008335553,0.268966273580908,0.791971705490212,0.999952130816504,-4.614052583338 +"Q9VWP4",0.201941431564302,15.1202250804107,0.26866506514751,0.792198732998611,0.999952130816504,-4.61405603511909 +"A1Z6P3",-0.155350337777755,17.2736383349785,-0.268389735194816,0.792406272477754,0.999952130816504,-4.61405918702467 +"O62530",-0.0889997162887646,15.7193892711393,-0.267693698112164,0.792931007490377,0.999952130816504,-4.61406714095959 +"A1Z843",0.127594362831761,17.4886573054546,0.267324494472913,0.793209388604229,0.999952130816504,-4.61407135180662 +"O61722",-0.087584438954547,18.9631235597279,-0.267245708389062,0.793268797445358,0.999952130816504,-4.61407224964181 +"Q9VTF9",0.0983527018229005,17.4132470765986,0.266972227952391,0.793475026404649,0.999952130816504,-4.61407536417469 +"Q9W3T2",-0.13994718271546,16.2986280704607,-0.266915133726304,0.793518082638626,0.999952130816504,-4.61407601399831 +"Q8SX57",-0.108629402819311,17.973793695599,-0.266853050827761,0.793564901754625,0.999952130816504,-4.61407672044647 +"Q9VQD8",-0.0910147630473155,17.5001699137113,-0.266313940583351,0.793971500447853,0.999952130816504,-4.61408284827206 +"Q9VFB2",0.235706166346841,16.4176026373008,0.265780489534764,0.794373892307181,0.999952130816504,-4.61408889982079 +"O77410",0.251044375430528,14.23373745635,0.265621442210214,0.794493876399234,0.999952130816504,-4.61409070177668 +"O77263",-0.136593059532306,15.5725073927185,-0.265410735446162,0.794652840313048,0.999952130816504,-4.61409308739002 +"M9NEW0",-0.155875161293139,18.3485185226404,-0.265281114947672,0.79475063487364,0.999952130816504,-4.61409455402636 +"Q9VWI0",-0.195001306271049,21.0152749842171,-0.265073747312089,0.794907094652319,0.999952130816504,-4.61409689889977 +"Q9VNI4",-0.160301802801698,16.539444444272,-0.264828428926449,0.795092200292494,0.999952130816504,-4.61409967059264 +"Q9VRL0",-0.144127812943989,22.7783865413358,-0.264217124874713,0.795553517229048,0.999952130816504,-4.61410656637728 +"P41094",0.117072667591231,21.1900374089588,0.264083213636939,0.795654583170557,0.999952130816504,-4.61410807487086 +"Q9VKU3",0.254386771324583,15.5090004382705,0.263387345461887,0.796179832548064,0.999952130816504,-4.61411590167223 +"Q9VZ67",0.152749203346776,15.1215016457703,0.263138690444386,0.796367545184575,0.999952130816504,-4.61411869351923 +"Q9VLS9",-0.149854249305694,19.041872108744,-0.263002007195175,0.796470734585106,0.999952130816504,-4.61412022706947 +"Q9V7D2",-0.142359417542309,21.3962266095718,-0.261593188601651,0.797534556579375,0.999952130816504,-4.6141359881258 +"Q0KI81",-0.200103041537298,15.6247414000698,-0.261399378510477,0.797680938563733,0.999952130816504,-4.61413814986785 +"Q9VBV5",-0.132251922074794,17.2230439924558,-0.261206363624973,0.797826727810997,0.999952130816504,-4.61414030117893 +"P45889",0.101320527239547,19.1527875064974,0.260285851199119,0.798522123072459,0.999952130816504,-4.61415053961707 +"Q494G8",-0.173033277345622,15.1221226754694,-0.260153567005688,0.798622070962269,0.999952130816504,-4.6141520080407 +"Q9VVI2",0.222360055555137,13.9100494552176,0.260087035770307,0.798672340310898,0.999952130816504,-4.61415274629548 +"A0A0B7P9G0",0.19468867868569,14.3775246891028,0.258829155375616,0.799622938044279,0.999952130816504,-4.61416666934266 +"Q27272",0.100298842111442,15.8195508772337,0.258740183752496,0.799690187673923,0.999952130816504,-4.61416765163198 +"Q9VJ28",0.132149315035921,18.9644467044786,0.258598018573051,0.799797647340396,0.999952130816504,-4.61416922051608 +"Q9VRP3",0.164410505269323,17.9418438116731,0.258377757473419,0.799964146400222,0.999952130816504,-4.61417164956845 +"Q9VLM8",0.0932368450353067,16.8583076698672,0.258337241068321,0.799994774532614,0.999952130816504,-4.61417209616466 +"Q6AWN0",-0.0960145588434038,18.3952387547007,-0.25825362814967,0.800057982297065,0.999952130816504,-4.6141730175794 +"Q7K2W6",-0.0850653720104155,16.9060726625612,-0.257837258806901,0.80037276127615,0.999952130816504,-4.61417760161492 +"Q9VN88",-0.142064208044712,17.0693186726126,-0.257560843583154,0.800581753615287,0.999952130816504,-4.61418064081214 +"Q9VZZ5",-0.151049538349419,18.4932303163811,-0.257143612504652,0.800897244257844,0.999952130816504,-4.61418522222841 +"Q9VF15",-0.112600948804022,20.9279710359359,-0.256833074468078,0.801132082077874,0.999952130816504,-4.61418862736859 +"Q9VF51",0.111942100761187,17.6638527936904,0.25678860646766,0.801165711700241,0.999952130816504,-4.61418911464275 +"Q9VLS4",-0.164150701061864,20.6126961650203,-0.25641535701848,0.801448003609193,0.999952130816504,-4.61419320139437 +"P17210",-0.146317250168533,20.8678198178634,-0.256280308636475,0.801550149023931,0.999952130816504,-4.61419467861777 +"Q9VBC9",-0.179968913500872,15.5991175898512,-0.256262439557007,0.801563664792946,0.999952130816504,-4.61419487402105 +"Q9VAY0",-0.144207267120954,14.0449524688195,-0.255833003991455,0.801888500049756,0.999952130816504,-4.61419956599501 +"Q86BM0",-0.0979248348163964,17.5042602877658,-0.255648652790277,0.802027959372347,0.999952130816504,-4.61420157783038 +"Q24492",-0.10793275545311,15.1029894557293,-0.255127490545068,0.802422249894894,0.999952130816504,-4.6142072576053 +"Q9VZD8",-0.12821106367948,13.7295135643944,-0.254960954463091,0.802548256248642,0.999952130816504,-4.61420907016485 +"Q9W3K6",-0.109685043795629,16.2134284310387,-0.254575214343217,0.802840141103298,0.999952130816504,-4.61421326405454 +"Q9V3L7",-0.0943916812166954,17.6506922325475,-0.254171416548336,0.803145722779494,0.999952130816504,-4.614217647596 +"Q7JZK1",-0.121340050159425,21.5460142804668,-0.254082438388759,0.803213063203351,0.999952130816504,-4.61421861260529 +"A0A0B4LFA6",0.12640424311823,19.5101335294313,0.253477430695735,0.80367098803448,0.999952130816504,-4.61422516539882 +"Q7KSQ0",0.133304143861277,20.8420983461984,0.253458162398289,0.803685573267379,0.999952130816504,-4.61422537384035 +"Q9VDI5",0.159544503649258,16.6311109382236,0.253323942026423,0.803787174151233,0.999952130816504,-4.61422682538449 +"Q9VX98",-0.0666187643238665,18.2018588267228,-0.25325201442614,0.803841622753163,0.999952130816504,-4.6142276029445 +"Q9W401",-0.144039309620325,24.4977556152842,-0.253065106117129,0.803983115758686,0.999952130816504,-4.61422962246868 +"Q9VWL4",-0.15645109233018,16.2390719901914,-0.252326031565334,0.804542678675868,0.999952130816504,-4.61423759375138 +"Q9VHD3",0.117526044703345,15.6405995926894,0.252310374877798,0.804554533763658,0.999952130816504,-4.61423776236887 +"Q9VWD5",0.132373983631265,14.4179364600161,0.252094308198276,0.804718142407793,0.999952130816504,-4.61424008828842 +"Q9VVU5",-0.0829586146300638,15.5565418550829,-0.251934463304068,0.804839185273948,0.999952130816504,-4.61424180773129 +"Q9V3H2",0.190969882001681,18.4135800907668,0.250997148552496,0.805549073433553,0.999952130816504,-4.61425186882383 +"Q9VSK4",-0.145253849704904,19.714445794296,-0.24994176145104,0.806348598828691,0.999952130816504,-4.61426315321923 +"Q9V420",0.173515785576306,17.5192363649313,0.249870481105491,0.806402606528786,0.999952130816504,-4.61426391367843 +"Q9VH26",-0.130034598198847,18.3321621290813,-0.249254235260417,0.806869566564547,0.999952130816504,-4.61427047925618 +"P92177",-0.123866027019691,24.1779886226673,-0.248501437815329,0.807440102483052,0.999952130816504,-4.61427847806592 +"Q9VMM6",-0.134835412496205,18.4213936981768,-0.248084955999571,0.807755797941734,0.999952130816504,-4.61428289315929 +"Q9VXH4",0.143311826041405,17.123462282462,0.247872000623084,0.807917232732279,0.999952130816504,-4.6142851478725 +"Q8SXF2",-0.141160919307652,15.5701163616107,-0.247496512544546,0.808201900639425,0.999952130816504,-4.61428911880316 +"P32748",0.220749519878929,17.2009008475282,0.247441084897113,0.808243924268395,0.999952130816504,-4.61428970447084 +"Q9VAN0",0.146911875892748,20.4203511681605,0.247206882639964,0.808421496399106,0.999952130816504,-4.61429217770999 +"O76742",0.137841312862349,17.9096747290843,0.247028642112359,0.808556645712593,0.999952130816504,-4.61429405843606 +"Q9VBC1",0.193693542027896,13.3610956802942,0.246669125149917,0.808829265629892,0.999952130816504,-4.61429784786621 +"Q9V9X4",-0.151007715577911,18.7369171830487,-0.246457475678465,0.808989770448971,0.999952130816504,-4.614300076187 +"Q9VYY3",0.132037680559403,17.505449745367,0.246283209379974,0.809121932375789,0.999952130816504,-4.61430190951351 +"Q9VL69",0.0839236681045215,15.9766561463993,0.246186623239144,0.809195185009927,0.999952130816504,-4.61430292507581 +"Q9VKA1",0.316195746651996,14.5849558305478,0.245950766534555,0.809374070717404,0.999952130816504,-4.61430540336386 +"Q9VKU5",-0.250413630297743,13.7855671728703,-0.24513924858697,0.809989651799683,0.999952130816504,-4.6143139126353 +"O96299",0.182453210653541,15.6259442183629,0.244961827401252,0.810124252991663,0.999952130816504,-4.61431576932498 +"Q9VM11",0.177465316465554,17.7951952421133,0.244001439835939,0.81085296270032,0.999952130816504,-4.61432579672183 +"A1Z9E3",-0.0981059760861882,21.7735380038497,-0.243893126965383,0.810935158318137,0.999952130816504,-4.61432692518575 +"Q9VB64",-0.117116568625484,18.7721128286337,-0.243246125790204,0.811426197761554,0.999952130816504,-4.61433365574628 +"Q7K127",0.111248532430075,18.5910887054544,0.242584323280682,0.811928556065301,0.999952130816504,-4.6143405220959 +"Q961D9",-0.280323412952109,12.4322959872544,-0.242175722248326,0.812238758288089,0.999952130816504,-4.61434475223995 +"Q9VMU0",-0.206476280743388,21.1573680104107,-0.241967673387996,0.812396717678019,0.999952130816504,-4.61434690342362 +"Q9VH95",-0.150207377271887,20.9853810234146,-0.241333016465897,0.812878628206365,0.999952130816504,-4.61435345441769 +"A1Z6R7",-0.198581156022023,17.9415868331853,-0.241213119144927,0.812969678039902,0.999952130816504,-4.61435469011013 +"Q9VF39",-0.242317215950257,16.02833649669,-0.241134284438606,0.813029546523075,0.999952130816504,-4.61435550227172 +"Q0E8P5",-0.139525866678824,17.7289267859703,-0.24044684958303,0.813551648322256,0.999952130816504,-4.61436257321734 +"P54192",-0.103907378133311,24.4382842978676,-0.239043946426793,0.814617429021774,0.999952130816504,-4.61437694185407 +"Q8ING0",-0.0806094062291578,14.6470636652304,-0.238741948621152,0.814846905757199,0.999952130816504,-4.61438002411949 +"Q8WTC1",0.139216417685445,15.0255062861996,0.238387865056472,0.815115983013455,0.999952130816504,-4.61438363310349 +"P00334",-0.138476219188934,25.205458996531,-0.23717173442063,0.816040336779515,0.999952130816504,-4.61439598833765 +"Q9VZJ2",-0.172174324112802,17.4404222505071,-0.237012965424294,0.816161034612188,0.999952130816504,-4.61439759675703 +"Q27268",0.095503989021303,18.9284030142877,0.236570449806634,0.816497465170156,0.999952130816504,-4.61440207409606 +"Q9VEA1",0.10287719987501,18.2032587451212,0.236263712532887,0.816730689863283,0.999952130816504,-4.61440517280858 +"Q9XZ63",0.115280893893733,19.0889939948596,0.236122293087452,0.816838222844446,0.999952130816504,-4.61440660011956 +"Q24297",0.0979353472212061,16.9486409991564,0.235849054289401,0.81704599992584,0.999952130816504,-4.61440935546797 +"Q9V3F8",-0.0880065371896137,18.5677694953513,-0.234955963167949,0.817725226758027,0.999952130816504,-4.61441833952317 +"Q9VAS1",0.107928570379681,13.0248200771786,0.234824110261038,0.817825518395381,0.999952130816504,-4.61441966305629 +"O01666",0.112629764478783,22.6297958677089,0.234815536098234,0.817832040299247,0.999952130816504,-4.614419749098 +"Q9W3X8",0.104736625781156,13.8866851466956,0.234725050372325,0.817900868773149,0.999952130816504,-4.61442065693362 +"P00408",-0.0810905388520418,21.2787819759933,-0.234695401626797,0.817923421597285,0.999952130816504,-4.61442095432205 +"Q9W136",-0.11170360810927,18.1844218707138,-0.23461900200718,0.817981537044377,0.999952130816504,-4.61442172046952 +"Q9VLT8",-0.103455358649573,13.9613453795412,-0.234383040430188,0.818161034659388,0.999952130816504,-4.61442408517937 +"P35220",-0.106737457079515,19.3902532606664,-0.234365596747758,0.81817430461143,0.999952130816504,-4.61442425989981 +"Q8SZA8",-0.126259366450874,18.0429467007743,-0.234108840537156,0.818369633756613,0.999952130816504,-4.61442683015567 +"P80455",-0.086696845996066,20.5306491993199,-0.233956353962269,0.81848564496262,0.999952130816504,-4.61442835530864 +"Q7K188",-0.172414158844823,22.0320236249183,-0.232898176374863,0.819290824164775,0.999952130816504,-4.61443891212851 +"Q9VC53",-0.120505459820365,17.8921272785657,-0.232277435345823,0.81976325175776,0.999952130816504,-4.61444508297347 +"Q9VL93",0.0777510559377443,15.3813584471773,0.231782790536061,0.820139763397075,0.999952130816504,-4.61444998867498 +"Q9VM10",0.109181826913598,16.9238477657801,0.230829064802978,0.820865846489292,0.999952130816504,-4.61445941829892 +"Q7K3J0",0.0985288936019657,20.3051725956809,0.230783344820956,0.820900657969808,0.999952130816504,-4.61445986937726 +"A1Z7H8",-0.0682282863388917,14.7339169772704,-0.230405874383522,0.821188081320138,0.999952130816504,-4.61446359017954 +"Q7JR58",-0.136878970525437,22.8555807436537,-0.230316598344175,0.8212560641113,0.999952130816504,-4.61446446931437 +"Q9W0A8",0.160047383456604,18.9119426254386,0.230296970767877,0.821271010510365,0.999952130816504,-4.61446466254952 +"Q9VNX9",0.162242195876182,13.597080997067,0.230283768253361,0.821281064265605,0.999952130816504,-4.61446479252027 +"Q8MT58",0.118581016926051,21.5981769766415,0.230172180942251,0.821366039649803,0.999952130816504,-4.61446589073657 +"O97365",0.0945052111442699,18.0270003072571,0.229999436463342,0.82149759172109,0.999952130816504,-4.6144675898135 +"Q9VY87",0.142117551361075,17.5334104904791,0.229963205040872,0.821525184158058,0.999952130816504,-4.61446794601847 +"P54353",-0.116787935436022,18.9356173546346,-0.229765563241845,0.821675704762668,0.999952130816504,-4.61446988813746 +"Q8I0J3",0.104843994138689,15.026509877106,0.229574241068358,0.821821419409395,0.999952130816504,-4.61447176659025 +"Q9VD09",-0.140317299312006,14.7184822632723,-0.22788382665196,0.823109168220801,0.999952130816504,-4.6144882965609 +"A0A0B4KGY6",0.135621454402816,21.7639010724704,0.227643682971455,0.82329215152936,0.999952130816504,-4.61449063507907 +"Q9V3F3",0.0841551950750166,14.5727019345619,0.227585615025984,0.823336399416483,0.999952130816504,-4.61449120017978 +"Q8IP62",0.288690698495909,15.8198727514766,0.226445574812392,0.824205238703763,0.999952130816504,-4.61450226595689 +"Q9V3V6",0.11535411758625,21.5832902135523,0.226321704349615,0.82429965643979,0.999952130816504,-4.6145034650051 +"Q9VVH5",-0.133660644360951,22.5625631567724,-0.225627579745867,0.824828791094008,0.999952130816504,-4.61451017206926 +"Q9Y125",-0.103088263022837,22.6918685831969,-0.225465623201152,0.824952264135993,0.999952130816504,-4.61451173407311 +"Q9VRP2",0.106100243965951,20.4178529289917,0.225200288079324,0.825154561744659,0.999952130816504,-4.61451429073171 +"O97418",-0.109696936404085,21.0175986213052,-0.224883722934127,0.825395935210614,0.999952130816504,-4.61451733713992 +"Q7KMS3",-0.177469378850006,15.6195837876786,-0.224561601751448,0.825641563883633,0.999952130816504,-4.61452043268032 +"Q9W2E8",-0.147290156267761,19.3657917184177,-0.224348782197234,0.825803856664127,0.999952130816504,-4.61452247544791 +"Q9Y0Y5",0.116082144498588,18.6116459324699,0.22385786827111,0.826178251340941,0.999952130816504,-4.61452718024842 +"Q9VSJ8",-0.10892813169594,15.7857250437206,-0.223846671205156,0.826186791277901,0.999952130816504,-4.6145272874399 +"Q9W158",0.14478890393724,17.0014845355471,0.223463514647534,0.826479036335792,0.999952130816504,-4.6145309522803 +"Q8I941",-0.132808316834872,19.0576005037959,-0.223443019150101,0.826494669623851,0.999952130816504,-4.61453114814257 +"P08985",-0.132293269906786,20.6730399491593,-0.223334116751359,0.826577738058198,0.999952130816504,-4.61453218855563 +"Q9VW57",0.141516851384775,16.5419271413126,0.223080730460766,0.826771024092316,0.999952130816504,-4.61453460737908 +"Q8SX68",-0.182700152464569,17.5908799552316,-0.222756505888897,0.827018363434601,0.999952130816504,-4.61453769847642 +"Q95R98",0.105022924194643,16.2040847976956,0.222752852244079,0.827021150778587,0.999952130816504,-4.61453773328435 +"Q9V6U9",-0.133401039792627,21.9029067226191,-0.222431148386852,0.827266586250611,0.999952130816504,-4.61454079591948 +"A1Z8H1",-0.134762003533588,23.0993501014658,-0.222060207000685,0.827549609506254,0.999952130816504,-4.61454432188134 +"Q7K0S5",-0.0984443605332146,18.3070305593687,-0.221523549817372,0.827959115783733,0.999952130816504,-4.61454941277564 +"Q8MLP9",-0.167466344163541,15.0362077402394,-0.221273265372393,0.828150117808406,0.999952130816504,-4.61455178289745 +"Q9VV46",-0.119332586553444,24.0339844706563,-0.221022965493461,0.82834114292381,0.999952130816504,-4.61455415052328 +"Q9W0X2",-0.176087524691246,16.0483603597885,-0.220643283701575,0.828630931944395,0.999952130816504,-4.61455773694874 +"Q9W0M4",0.129506613472582,17.8457808689467,0.219911493632338,0.829189537928114,0.999952130816504,-4.61456463218981 +"A8DYK6",0.122635829893301,16.6016758710027,0.219889238252128,0.829206527899056,0.999952130816504,-4.61456484153563 +"Q9VJD4",-0.119956371735515,20.7859898639028,-0.219862471343487,0.829226962131894,0.999952130816504,-4.61456509329159 +"Q9VHI7",0.129731157884272,15.5114160871291,0.219532543871837,0.829478843940088,0.999952130816504,-4.61456819393959 +"Q9VVM1",0.0682436678657208,15.5860647856542,0.219338800731146,0.829626765459809,0.999952130816504,-4.61457001259139 +"A1Z9M5",0.11591661980226,15.0979767571556,0.218787194612457,0.830047949631755,0.999952130816504,-4.61457518180201 +"Q24439",-0.150841971448386,24.3412478705413,-0.21817836027591,0.830512894069816,0.999952130816504,-4.61458087240412 +"Q9GU68",0.118272095338522,22.197832538882,0.218173209940872,0.830516827473651,0.999952130816504,-4.61458092047612 +"P91941",-0.0937132317072695,23.0940463466166,-0.217986927458857,0.830659097944009,0.999952130816504,-4.61458265844014 +"Q94533",-0.0972635230208567,15.3166843016096,-0.217768040936438,0.830826277159202,0.999952130816504,-4.61458469871952 +"P14199",-0.109538832304231,18.5327759486574,-0.216931338435619,0.831465404888563,0.999952130816504,-4.61459247913161 +"O97102",-0.0769601825464754,20.9898454941314,-0.216876559668897,0.831507252801899,0.999952130816504,-4.61459298748326 +"Q9VWX8",-0.108531865871882,20.5485931275316,-0.216655948227325,0.831675792983043,0.999952130816504,-4.61459503349413 +"Q9VRJ6",-0.148512099877419,15.8002468410634,-0.216054630297165,0.832135224631639,0.999952130816504,-4.61460059984967 +"Q9VVW3",0.194959371696168,16.4638555756651,0.215481127055967,0.832573464194467,0.999952130816504,-4.61460589450496 +"Q9VD14",0.0566251322016953,17.6146186005908,0.215434845292423,0.832608832694762,0.999952130816504,-4.6146063211786 +"Q6NMY2",0.194733751813477,20.0138929550246,0.215125223752061,0.832845455017181,0.999952130816504,-4.61460917326707 +"O02649",-0.0999350580322904,23.3824439805622,-0.214429000053362,0.833377592157775,0.999952130816504,-4.61461557176873 +"Q9W022",-0.159674497467158,21.1946251549918,-0.213915927063529,0.833769798093877,0.999952130816504,-4.61462027396082 +"Q7JWQ7",0.190380478799716,14.4344496642639,0.213867764753569,0.833806616944069,0.999952130816504,-4.61462071478619 +"Q9VDK9",0.145648206175643,15.4614167342875,0.213810037198894,0.833850748712879,0.999952130816504,-4.61462124303231 +"O76521",0.0635331781897079,16.0589973685743,0.213564262661046,0.834038645834923,0.999952130816504,-4.6146234904602 +"Q9VJZ1",0.1639290111398,15.4178262826175,0.213170857702384,0.834339429859954,0.999952130816504,-4.61462708254977 +"Q9VVU1",0.155996288836207,22.2089672753269,0.212998144612773,0.834471488928118,0.999952130816504,-4.61462865748807 +"Q9VSN3",-0.12238167542646,20.9347064004394,-0.212653871621988,0.834734740817316,0.999952130816504,-4.61463179308992 +"Q9W385",-0.131010132727237,16.9040405151986,-0.212532039032017,0.834827906302557,0.999952130816504,-4.61463290152882 +"Q9VLP2",-0.143327647683719,19.367404950131,-0.212318761185376,0.834991006264814,0.999952130816504,-4.61463484043156 +"Q7KML2",-0.109042547625094,13.6421437000119,-0.212112761421571,0.835148547959232,0.999952130816504,-4.61463671134508 +"Q9VRR3",-0.131369306565379,19.81374158692,-0.211878484777953,0.835327723809078,0.999952130816504,-4.61463883689367 +"Q9VGV9",-0.126605112031228,16.1142958710326,-0.211290561830101,0.835777411843509,0.999952130816504,-4.61464416079823 +"Q9VSR8",0.178391337743259,15.5036475425365,0.21114092853864,0.835891872272769,0.999952130816504,-4.61464551346291 +"Q9U9Q2",-0.129990515266851,15.6265036729973,-0.210651009386864,0.836266657881925,0.999952130816504,-4.6146499356458 +"Q9W2V2",-0.1269856072972,14.2389032170935,-0.209903949238473,0.836838234638092,0.999952130816504,-4.61465665934842 +"Q7K2Q8",-0.199452658315355,16.2078245572666,-0.209819892433813,0.836902552623178,0.999952130816504,-4.61465741440158 +"Q9Y114",-0.0686284149149614,18.6379509357816,-0.209697053645077,0.836996547711924,0.999952130816504,-4.61465851728279 +"Q8SY69",-0.108466567660319,18.9644854738045,-0.209296434079787,0.837303116034967,0.999952130816504,-4.61466210972625 +"Q9VSY4",-0.102112980644705,20.4278142645296,-0.209239868152799,0.837346404508349,0.999952130816504,-4.61466261641878 +"Q9VAI9",-0.080130679114184,22.0298537179247,-0.20806002902127,0.838249430281505,0.999952130816504,-4.61467315406325 +"A1ZB70",-0.269028125908736,16.250416473106,-0.207707809618079,0.838519058143897,0.999952130816504,-4.61467628847797 +"Q9VC48",0.141539918047389,18.4137355498786,0.207480457385029,0.838693110010683,0.999952130816504,-4.61467830890913 +"Q9VHC7",-0.0570176669823113,19.9696054238449,-0.207061524972432,0.839013851073525,0.999952130816504,-4.61468202614881 +"Q9VXI1",-0.143203902118479,19.5727714961941,-0.205759894457798,0.840010588961673,0.999952130816504,-4.61469352832691 +"Q9VJ25",0.163336923251563,15.6881949947126,0.205145275598852,0.840481339499221,0.999952130816504,-4.61469893465184 +"B7YZN4",-0.157165942277469,15.4480296966613,-0.204771668774941,0.840767524493067,0.999952130816504,-4.61470221317244 +"Q9VVU2",0.129024244584397,20.0929450560278,0.204655421497974,0.84085657536151,0.999952130816504,-4.61470323207543 +"Q9VF27",-0.124657022229567,22.2673454615467,-0.204248413489367,0.841168380445457,0.999952130816504,-4.61470679498054 +"Q9VEY5",-0.0743824937264428,20.8389008473113,-0.203672181992871,0.841609873497386,0.999952130816504,-4.61471182726523 +"A1Z9I0",-0.12449765645465,19.4427048213335,-0.203563793867227,0.841692923759144,0.999952130816504,-4.61471277225931 +"Q9V3W0",-0.165481523797396,20.9079599997511,-0.203446174196478,0.841783049728176,0.999952130816504,-4.61471379717726 +"Q9VVG0",0.11145821377157,18.0645139256447,0.2024682660797,0.842532460183874,0.999952130816504,-4.61472229583724 +"Q9VKX2",-0.0852701032119292,23.1196973292512,-0.202223746915188,0.842719869929666,0.999952130816504,-4.61472441454388 +"Q7KJ08",0.12539847406536,14.510018186254,0.201970668385364,0.84291385037402,0.999952130816504,-4.61472660475082 +"Q9VRJ5",-0.0965951119777806,17.2946265974873,-0.200781541448615,0.843825438032398,0.999952130816504,-4.6147368594689 +"Q7K519",0.13511661341261,15.5825157096549,0.200494738861046,0.844045336518325,0.999952130816504,-4.61473932381991 +"Q94915",-0.16695835138281,17.0908600738439,-0.199922967543161,0.844483767783683,0.999952130816504,-4.61474422637327 +"Q9W3N6",0.0799500431713867,16.1106404694203,0.199684982464699,0.844666269315689,0.999952130816504,-4.61474626285536 +"Q9VMR0",0.110811610596908,17.2929384975561,0.199556224720276,0.84476501250845,0.999952130816504,-4.6147473636594 +"Q9W0H8",-0.110291548835725,19.4508460460915,-0.199333225343029,0.844936035210303,0.999952130816504,-4.61474926851409 +"Q7JZV0",-0.169778182363171,15.0888844868392,-0.198777886931145,0.845361970728329,0.999952130816504,-4.61475400304862 +"Q9VND8",-0.0819502742779719,18.2870736123248,-0.198683086984428,0.845434685774971,0.999952130816504,-4.61475480996009 +"Q9W4W8",0.0809528723204451,17.3248564189521,0.198538779913425,0.845545377420417,0.999952130816504,-4.61475603753221 +"P07486",-0.115223967276776,22.082650899675,-0.198465676814587,0.845601452906813,0.999952130816504,-4.61475665905936 +"Q9VIM0",0.107882194610191,18.0510626580257,0.198421468114926,0.845635364673317,0.999952130816504,-4.61475703481469 +"Q9VEX6",-0.104690785653592,20.7991687881599,-0.198287682567435,0.845737991305652,0.999952130816504,-4.61475817143128 +"Q9VRQ9",0.145482051529862,14.6987287678438,0.198216136716885,0.845792875183634,0.999952130816504,-4.61475877896016 +"Q9VVC8",-0.1014105569358,16.6464966408648,-0.197891693869017,0.846041770528905,0.999952130816504,-4.61476153123374 +"Q95083",0.108766201756055,19.8708094430273,0.197667719820467,0.846213601518863,0.999952130816504,-4.61476342862167 +"Q7KTW5",-0.0946057974374206,21.5591785888691,-0.197345141981014,0.846461094803906,0.999952130816504,-4.61476615759429 +"Q9W0B3",-0.0951406358224354,19.1888267296801,-0.197187705634602,0.846581891738042,0.999952130816504,-4.61476748788778 +"Q9I7K6",-0.247469097650722,16.2423896340454,-0.196986314662479,0.846736419796443,0.999952130816504,-4.61476918805518 +"Q9VYV4",-0.16631456781443,15.5615416931137,-0.196937071856147,0.846774204987296,0.999952130816504,-4.61476960350762 +"Q9VKE2",-0.0911208273137731,24.18451501859,-0.196615137246396,0.847021242821609,0.999952130816504,-4.61477231707939 +"Q9W3L4",-0.215403461896166,17.5834798481119,-0.196594094566017,0.847037390591037,0.999952130816504,-4.61477249429429 +"P43332",0.0934085686556756,17.197863926654,0.196233494678166,0.847314119475842,0.999952130816504,-4.61477552823928 +"Q9VTC1",-0.117685799300469,15.8419875071891,-0.196108609761209,0.84740996261763,0.999952130816504,-4.61477657768736 +"Q9VH66",0.107687740453983,16.6723295009113,0.195978813408755,0.847509577710984,0.999952130816504,-4.61477766770757 +"Q9V3G3",-0.122748290482386,14.9230907717833,-0.195958924162138,0.847524842394664,0.999952130816504,-4.61477783467294 +"Q9V3R3",-0.100552081097311,13.6310929879481,-0.195927211525162,0.847549181476004,0.999952130816504,-4.61477810085811 +"P45888",0.214266218720571,17.1329614684768,0.195910250307949,0.847562199080066,0.999952130816504,-4.61477824320735 +"P48604",-0.13077591643124,20.1329798223979,-0.195535190545926,0.847850066391651,0.999952130816504,-4.61478138783095 +"Q9W077",-0.14415448342967,20.8370437239991,-0.195162319071814,0.848136276536026,0.999952130816504,-4.61478450819911 +"Q7KN75",0.131018883029675,19.3224921961056,0.194946546878089,0.848301909984292,0.999952130816504,-4.61478631119389 +"Q9VVA7",0.0913796557102877,17.4787439751396,0.194694860644344,0.848495121587441,0.999952130816504,-4.61478841179405 +"Q9XY35",-0.0830942888758983,19.1850179906198,-0.194343248048281,0.848765060477557,0.999952130816504,-4.61479134189571 +"Q7KMP8",0.149150907103788,19.1886308254548,0.193938995036899,0.849075436691361,0.999952130816504,-4.61479470419238 +"Q9VZE4",0.126035317908748,17.6107197443444,0.193897709244835,0.849107136444536,0.999952130816504,-4.61479504718923 +"Q9VXC1",-0.11690704025429,18.3419854825272,-0.193752828841892,0.849218379598142,0.999952130816504,-4.61479625026474 +"Q9VLT3",0.0979387178828439,19.3749954088305,0.193671348038004,0.849280944266289,0.999952130816504,-4.61479692648409 +"Q9VV72",0.115357303896179,19.3998564762219,0.193628324190914,0.849313980359715,0.999952130816504,-4.61479728343085 +"Q9W1X5",0.134027599732836,19.4067734607383,0.193319656674125,0.849551001012839,0.999952130816504,-4.61479984198613 +"Q8IMT6",0.0982603819842964,16.0419511138059,0.193058381839246,0.849751641443734,0.999952130816504,-4.61480200454605 +"Q9VNF3",-0.07329723168165,19.1427676687958,-0.192949115341626,0.849835553530504,0.999952130816504,-4.6148029080818 +"Q9VCE1",-0.182406808093726,13.763489791853,-0.191838766151262,0.850688362332931,0.999952130816504,-4.61481206096914 +"Q9VZG0",0.0952727852030826,21.6491495802208,0.191285879701486,0.851113081895367,0.999952130816504,-4.61481659905833 +"Q9V773",-0.102082953057147,15.5795452884962,-0.191271285888009,0.851124293308626,0.999952130816504,-4.61481671866872 +"Q9VMU2",-0.0595672597011117,16.31976715712,-0.190703554869184,0.851560467590322,0.999952130816504,-4.61482136476309 +"Q9W1G0",-0.105801369833852,21.7951866620571,-0.190538836470355,0.85168702629733,0.999952130816504,-4.61482271019779 +"P49963",0.128548529479888,14.9382436861239,0.190183005362521,0.851960437858127,0.999952130816504,-4.61482561273094 +"O46067",-0.101682874613601,19.7682448486216,-0.189787536549073,0.852264329257035,0.999952130816504,-4.61482883229093 +"Q9U6P7",-0.118189760138581,17.0039304507548,-0.189766483794181,0.852280507579454,0.999952130816504,-4.61482900349805 +"Q9W2D9",0.171141312558998,17.6524953387624,0.189134591849751,0.852766127103098,0.999952130816504,-4.61483413347726 +"Q9VSL2",-0.119346584607058,20.4871469776389,-0.189069543032844,0.852816121736567,0.999952130816504,-4.61483466061101 +"Q9VQB4",-0.0999993072561018,21.792366390834,-0.189000262982154,0.852869369097293,0.999952130816504,-4.61483522183588 +"Q9VJQ6",0.0865109712560006,14.3480426674184,0.188681262811138,0.853114556331274,0.999952130816504,-4.61483780337039 +"Q9VU92",0.0992894860219096,17.6656957340571,0.188463340690098,0.853282062885944,0.999952130816504,-4.61483956444106 +"Q4QPU3",0.172297745835239,14.4112893400985,0.188356713369704,0.853364025009734,0.999952130816504,-4.61484042538301 +"Q9VI04",0.165745962677448,16.342848398156,0.188086047451483,0.853572087980135,0.999952130816504,-4.61484260865731 +"Q9VVT6",-0.111967304390266,20.5162392948745,-0.187976305497548,0.853656450694361,0.999952130816504,-4.61484349298407 +"P53034",-0.105691641100451,15.7971889913085,-0.187972038607138,0.853659730849058,0.999952130816504,-4.61484352735737 +"Q9W3B3",-0.129794851826313,15.7277149640269,-0.187838574573321,0.853762332205059,0.999952130816504,-4.61484460212963 +"Q9XZ19",-0.152028487004159,16.1242516033745,-0.187771510647351,0.853813889079778,0.999952130816504,-4.61484514190334 +"Q9VP55",0.179551605735007,17.1141602092794,0.187696407625599,0.85387162701186,0.999952130816504,-4.61484574615437 +"Q23970",-0.0674593027792909,21.6084578156964,-0.186956269883925,0.854440678927185,0.999952130816504,-4.61485168822808 +"M9PDU4",-0.140597902966707,22.5645412918935,-0.186877764570358,0.85450104237074,0.999952130816504,-4.61485231713165 +"Q9V998",0.135861784308883,15.8384052883691,0.186347044189105,0.854909142904213,0.999952130816504,-4.61485656185603 +"Q9VU68",-0.121375141473209,19.1428546115085,-0.184876637192257,0.856040046254661,0.999952130816504,-4.61486825980057 +"P19107",-0.0933619950893458,24.0080751064186,-0.184509053472434,0.856322809748711,0.999952130816504,-4.61487116980617 +"Q95RF6",0.120041786167523,17.2694542438897,0.183027087180167,0.857463019012066,0.999952130816504,-4.61488284373373 +"Q9W4Y1",-0.14802589915119,17.5790132835577,-0.182790650504635,0.857644961596333,0.999952130816504,-4.61488469759751 +"A8WH76",-0.0581627685716839,18.9799980295909,-0.182769451328112,0.857661275183116,0.999952130816504,-4.61488486370106 +"O46098",-0.14237727855323,18.0424649685857,-0.182693368703233,0.857719824264662,0.999952130816504,-4.61488545968003 +"Q7KW39",0.0806975955645193,21.7029029895903,0.182632675640897,0.857766530994249,0.999952130816504,-4.61488593493152 +"Q9VGJ9",-0.0931328819143147,17.9591134333765,-0.182461558608935,0.857898218170867,0.999952130816504,-4.61488727400571 +"Q9W445",-0.0891611923033686,16.4902643667338,-0.18213423221499,0.858150132232166,0.999952130816504,-4.6148898320305 +"Q9VC05",-0.0625954012454635,14.9131932045361,-0.181769886684654,0.858430555543295,0.999952130816504,-4.61489267400589 +"P48609",0.14350174862404,16.9832262476158,0.181681005642458,0.858498967020172,0.999952130816504,-4.6148933664423 +"Q7K0S6",0.123867089241514,17.3845170409259,0.181642654988668,0.85852848577092,0.999952130816504,-4.6148936651132 +"Q9VL16",-0.0874520777608865,20.7806891891966,-0.181429364837093,0.858692660620556,0.999952130816504,-4.61489532505504 +"Q9VCR4",-0.131789363505911,15.1183526134046,-0.180818529167098,0.859162873962996,0.999952130816504,-4.61490006822651 +"Q8I937",-0.123907037504118,14.068060006956,-0.180567977782852,0.859355761246703,0.999952130816504,-4.61490200918831 +"Q9VXQ5",0.0990696092735774,20.3486265476028,0.1796523761975,0.860060717585038,0.999952130816504,-4.61490907945974 +"Q9VKY3",0.112255347213154,18.7400257728273,0.179647430653148,0.860064525684615,0.999952130816504,-4.61490911755253 +"Q9VMH9",0.109996516698729,20.0297063244427,0.179345631489277,0.860296919748937,0.999952130816504,-4.61491144017759 +"A8E6W0",-0.0737764443616484,16.4597067142857,-0.179310053446378,0.860324316756352,0.999952130816504,-4.61491171372874 +"Q9VJJ1",0.0792123050421463,14.1228960635461,0.179273748922343,0.860352273386225,0.999952130816504,-4.61491199281021 +"Q9VSU7",-0.0541699755117353,14.7738190980807,-0.179181214605084,0.860423531162209,0.999952130816504,-4.61491270389017 +"Q9VIK0",0.122766758269435,12.7888837216763,0.179087612410366,0.860495612564051,0.999952130816504,-4.61491342280615 +"Q7JNE1",-0.102170310000478,17.8275747035293,-0.179006042232455,0.860558429376556,0.999952130816504,-4.61491404900616 +"Q9VN73",0.113017639092259,18.3587561219203,0.177889067229363,0.861418705211475,0.999952130816504,-4.6149225953896 +"P20432",-0.0818754472153636,23.6043526494245,-0.177535147401635,0.861691326698354,0.999952130816504,-4.61492529229998 +"Q9V3J4",-0.10790309555755,16.5937253346355,-0.17752528946656,0.861698920446103,0.999952130816504,-4.61492536734241 +"Q7K0X9",-0.111207820531643,16.7101419823065,-0.177336526916495,0.861844330435834,0.999952130816504,-4.61492680347957 +"Q9VCH5",-0.0792314876007758,18.0680030987166,-0.177225459115963,0.861929892044916,0.999952130816504,-4.61492764779448 +"B7Z0Q1",0.112652783777399,17.6642858902534,0.176922562651724,0.86216323893994,0.999952130816504,-4.61492994768782 +"Q9W436",0.0977564336014272,14.4374452279605,0.176774410002054,0.862277378397574,0.999952130816504,-4.61493107119123 +"Q9Y162",-0.128872090291228,20.2159846943879,-0.17673018928671,0.862311447449891,0.999952130816504,-4.61493140635462 +"P48159",0.0981008781833737,19.902128660235,0.176490040084921,0.862496471045829,0.999952130816504,-4.61493322507352 +"Q9VT75",0.155045963964103,15.6049191997584,0.176421279164778,0.862549449627741,0.999952130816504,-4.61493374536836 +"Q9W2J4",-0.059918735812369,15.2518508858656,-0.175783894422226,0.863040571466983,0.999952130816504,-4.61493855871757 +"Q9W1I8",-0.128907539023114,17.9917901196294,-0.175680927660321,0.86311991561982,0.999952130816504,-4.61493933467338 +"Q5U117",0.0974744495325233,14.4655727805127,0.175339967432917,0.863382663801408,0.999952130816504,-4.61494190092718 +"Q9VG26",-0.0731192321294216,19.7019854084116,-0.175271808192673,0.863435190175844,0.999952130816504,-4.61494241333838 +"Q9Y128",0.105815999195855,14.290420348116,0.174358503005789,0.864139086247694,0.999952130816504,-4.61494926038104 +"Q24090",0.0838260941751923,15.8107082983283,0.173579960888397,0.864739213480936,0.999952130816504,-4.61495506910739 +"Q9I7C6",0.130958957278404,15.4058096699453,0.173199835510138,0.865032258867045,0.999952130816504,-4.61495789587121 +"Q0E8U4",-0.0863196573252445,16.2850218418677,-0.173051206655115,0.865146845104268,0.999952130816504,-4.61495899946382 +"Q5U126",-0.0926684312132124,21.6328681191897,-0.17304696103601,0.865150118334156,0.999952130816504,-4.61495903097441 +"Q8MKK0",-0.303475615449457,15.9297062967274,-0.172635234321119,0.865467558041973,0.999952130816504,-4.61496208313045 +"Q9NHA8",0.111600237597031,16.229723325504,0.172532637645069,0.865546663445845,0.999952130816504,-4.61496284256413 +"Q9W4A0",-0.10032738992518,17.1196447205064,-0.172025313474033,0.865937849051424,0.999952130816504,-4.61496659126299 +"Q9VME3",0.150149928116795,15.7558433705495,0.171785962194528,0.86612241983133,0.999952130816504,-4.6149683560674 +"Q7K738",-0.134898459978455,19.7934597393909,-0.171743562702719,0.866155116168551,0.999952130816504,-4.61496866843677 +"A0A0B4KHJ9",-0.116762726472423,24.6224206239501,-0.17167582095647,0.866207355695871,0.999952130816504,-4.61496916735122 +"Q9VP13",0.127884985474621,11.9373294670801,0.171646248684961,0.86623016076646,0.999952130816504,-4.61496938508827 +"Q9VPU6",0.0976554661109894,15.3902411999805,0.170709409263166,0.866952681639737,0.999952130816504,-4.61497626366959 +"Q960W6",0.0625482269938988,14.0616741047332,0.170579185122468,0.867053124521612,0.999952130816504,-4.61497721686255 +"Q7K0W4",0.104022730794487,21.7429982743053,0.170049758720487,0.867461499763812,0.999952130816504,-4.61498108464178 +"Q0E8X8",0.0831135760403541,19.7353570613096,0.169960061391097,0.867530692073079,0.999952130816504,-4.61498173875369 +"Q961T9",0.109152871516731,17.9191353843788,0.169411566878731,0.867953824003817,0.999952130816504,-4.61498573116825 +"A1Z933",-0.17021540970979,15.788118466827,-0.169329548669242,0.868017099951543,0.999952130816504,-4.61498632706725 +"Q9U1K7",-0.110481939185391,17.4699439136558,-0.169127424277842,0.868173040222875,0.999952130816504,-4.61498779436968 +"P41375",-0.0760135663997659,16.8159921352946,-0.168762729469224,0.868454419057819,0.999952130816504,-4.61499043743877 +"Q8SXG7",0.122067546928424,13.9677433757507,0.168668511426595,0.868527115631609,0.999952130816504,-4.61499111934958 +"Q9VG33",-0.0705027330268031,19.972998234768,-0.168448536909924,0.868696847955758,0.999952130816504,-4.61499270996282 +"Q8IR45",-0.10390199306152,14.8576351172618,-0.168000187332948,0.869042815308321,0.999952130816504,-4.61499594555773 +"Q9V9S0",-0.0485086766504494,17.1327227179487,-0.167588135455298,0.869360798283311,0.999952130816504,-4.61499891166063 +"Q9VRY5",-0.102359979652434,16.8880475949649,-0.166995396150463,0.869818260092148,0.999952130816504,-4.61500316574617 +"Q9VKR0",0.205436632600364,13.302937032416,0.166970979043833,0.869837105663584,0.999952130816504,-4.6150033406669 +"Q59E04",0.0961725309069337,16.3796374421905,0.166953581268187,0.869850533636626,0.999952130816504,-4.61500346528665 +"Q9VUW2",-0.198072271583872,14.3537806814533,-0.166827186366531,0.869948089162111,0.999952130816504,-4.61500437026281 +"Q9U915",-0.0705614175430114,21.1508740786565,-0.166499257248745,0.87020120534713,0.999952130816504,-4.61500671503538 +"Q5LJT3",-0.0845058937776848,17.0613513748717,-0.166429724002023,0.870254877354906,0.999952130816504,-4.61500721162678 +"Q9VGG5",0.100362171286505,17.0479513034139,0.165322504195687,0.871109618541731,0.999952130816504,-4.61501509142171 +"Q8I725",0.15174813169866,18.90022538463,0.164651753101623,0.871627500276765,0.999952130816504,-4.61501983959934 +"Q9VK59",0.0576659872057377,18.7533930080886,0.163673426253392,0.872382968645842,0.999952130816504,-4.61502673073063 +"Q9VCR9",-0.0923272350167004,19.3448628195836,-0.163447031063685,0.872557810513491,0.999952130816504,-4.61502831960494 +"Q9VH25",0.0657138400333039,16.1794917184969,0.163383892407978,0.87260657285849,0.999952130816504,-4.61502876233198 +"Q9VB81",0.10899138448827,20.9624620196752,0.162603608510613,0.873209234984299,0.999952130816504,-4.61503421965575 +"Q9VXE5",0.0510063307057358,14.6125619151115,0.162585318327471,0.873223362622231,0.999952130816504,-4.61503434726672 +"Q8SY67",-0.171987168872898,16.0682388986654,-0.162040868118322,0.873643925492226,0.999952130816504,-4.61503813938267 +"Q9VMX3",-0.0963845505232932,12.4979514373125,-0.161893702916609,0.873757610704063,0.999952130816504,-4.61503916222641 +"Q7K1W5",-0.0935553107683731,19.8271897995959,-0.161747015891961,0.873870929410832,0.999952130816504,-4.61504018082877 +"A1ZA23",0.0814532838192932,18.4805710753413,0.161722593309974,0.873889796631325,0.999952130816504,-4.61504035033146 +"Q7K568",0.0759544135980086,16.0522275696362,0.161682819681422,0.87392052319383,0.999952130816504,-4.61504062632231 +"Q9Y0V3",0.0520756560553348,15.1888859387289,0.161500237211597,0.874061577451632,0.999952130816504,-4.61504189240502 +"Q9VAG9",-0.171790116438615,17.4913894258349,-0.161463494176302,0.874089963856545,0.999952130816504,-4.61504214702085 +"Q9VRD9",0.102361585692812,16.1618781683788,0.16102091167849,0.874431902027783,0.999952130816504,-4.61504520943819 +"Q961B9",0.102391625109735,14.8551098598949,0.160837892562255,0.874573309788587,0.999952130816504,-4.61504647338713 +"A1Z7S3",-0.0781522580132865,19.9937063965191,-0.16067109761797,0.874702186000018,0.999952130816504,-4.61504762404758 +"Q9W5R5",-0.0911002466542676,15.8730596719424,-0.160567845483972,0.874781966914028,0.999952130816504,-4.61504833575436 +"P16620",0.108842225849596,17.300600622935,0.160297118669849,0.874991158978426,0.999952130816504,-4.61505019969115 +"Q9W2M4",-0.088074144257547,22.6892054336685,-0.159810401533382,0.875367272371293,0.999952130816504,-4.61505354285499 +"Q9VAC4",0.0825722472219468,19.363841019646,0.159660041787955,0.875483470046747,0.999952130816504,-4.61505457360595 +"Q9VAP3",0.116003702003095,16.4797177066512,0.159634520323879,0.875503193273888,0.999952130816504,-4.61505474846589 +"Q24583",-0.101856506591034,21.2825994283386,-0.15927541211671,0.87578072458914,0.999952130816504,-4.61505720594827 +"Q9VE08",0.130480709546154,14.6876975285385,0.159033907959805,0.875967376968263,0.999952130816504,-4.61505885554182 +"Q9W0Y1",0.056862568706709,17.7240050076461,0.158810233755172,0.87614025588368,0.999952130816504,-4.61506038113133 +"Q03427",-0.0855652426376778,21.7642332208665,-0.158741157256233,0.876193646786268,0.999952130816504,-4.61506085184283 +"Q9VGE4",-0.0706481948155435,15.6960205499294,-0.158512808067834,0.87637014787787,0.999952130816504,-4.61506240644739 +"Q7KUA4",-0.0942624169607491,18.8290473055139,-0.158509390096053,0.876372789830007,0.999952130816504,-4.61506242970011 +"Q9W4X7",0.124555671808121,19.1490467928292,0.158442957136126,0.876424140090447,0.999952130816504,-4.61506288154976 +"Q9VR30",0.103213242011901,17.2560637974242,0.158373097371903,0.876478139770442,0.999952130816504,-4.61506335650427 +"Q9VRG6",-0.0562990559072283,16.354388743549,-0.158227041611784,0.876591038930922,0.999952130816504,-4.61506434881945 +"Q9VVW7",-0.15792699256459,16.6488835524811,-0.157840094276333,0.876890157579863,0.999952130816504,-4.61506697337809 +"P0DKM0",0.0475915066461141,16.9844487009516,0.157619279911747,0.877060860626984,0.999952130816504,-4.61506846824251 +"Q9VPZ5",-0.124167719509874,18.4097192194926,-0.157158310646856,0.877417238642486,0.999952130816504,-4.61507158220583 +"Q95WY3",0.09678703630847,17.2365158158761,0.156729833034449,0.877748521976246,0.999952130816504,-4.61507446855888 +"Q9VMS1",-0.110838668753576,22.4137581619113,-0.156134767621686,0.878208644468228,0.999952130816504,-4.61507846411747 +"P08646",0.126402062037361,18.8809474367599,0.155433778969665,0.878750728735953,0.999952130816504,-4.61508315153386 +"Q9VXN3",-0.0753744602176845,17.0372404927192,-0.15524096364804,0.878899846611944,0.999952130816504,-4.61508443719074 +"O18335",-0.0749692581171288,21.6564587535884,-0.154441755000584,0.879517982729436,0.999952130816504,-4.61508974926679 +"Q9VYV3",0.0998793322470419,20.5006004152391,0.154266593718372,0.879653469569519,0.999952130816504,-4.61509090986795 +"Q9V564",0.0841525410626485,14.0918613844143,0.153763765113174,0.880042428088474,0.999952130816504,-4.61509423429265 +"Q7K486",0.100544658735483,17.6590666347211,0.153716988815213,0.88007861311017,0.999952130816504,-4.61509454300361 +"Q9V3Y0",-0.11796176209144,16.3962524170632,-0.153586295109113,0.880179716102274,0.999952130816504,-4.61509540505237 +"Q9VY78",-0.108959941179716,18.8159735078106,-0.153226067244551,0.880458395055053,0.999952130816504,-4.61509777732609 +"Q9VA34",-0.054124112554911,14.5219493483432,-0.153098749485466,0.880556894376694,0.999952130816504,-4.61509861445136 +"Q9VCI0",0.188371555099247,14.8798025100809,0.152974078613436,0.880653347928668,0.999952130816504,-4.61509943350333 +"Q9W4U2",-0.143654482194016,18.6019963727004,-0.152749342685537,0.880827223338701,0.999952130816504,-4.61510090827988 +"Q9VK58",0.23848459453805,13.3847249652691,0.152739784588291,0.880834618462247,0.999952130816504,-4.61510097095489 +"Q9VS11",0.103268031880681,14.9399795803517,0.152518420560986,0.881005891593598,0.999952130816504,-4.61510242140841 +"Q7JUS9",0.0957693392568189,20.2301541195203,0.152506471195361,0.881015137198324,0.999952130816504,-4.61510249964533 +"Q9V4S8",-0.0992289303257614,17.1807098167497,-0.152388247788111,0.881106611385987,0.999952130816504,-4.61510327336964 +"Q9VIH1",0.10417895570626,15.7362083245005,0.151577133529436,0.881734250530622,0.999952130816504,-4.61510856571052 +"P18053",0.079501194025454,21.0903623012569,0.150857288183605,0.882291335169511,0.999952130816504,-4.61511323904102 +"Q9W2L6",0.083572564350284,20.7751042453114,0.150690717395272,0.882420252697871,0.999952130816504,-4.61511431729161 +"Q9V3W7",-0.0836335591151531,17.9045485347029,-0.150643457609489,0.882456830059525,0.999952130816504,-4.61511462299942 +"O97062",-0.113700255742003,18.5094574885979,-0.149398385943143,0.883420570648355,0.999952130816504,-4.61512264263498 +"Q9VUV6",-0.0711599754229919,14.8330664701628,-0.149211371883642,0.883565344440241,0.999952130816504,-4.61512384149935 +"Q9VEC8",-0.107341105879858,16.5504694152478,-0.149174269760088,0.883594066940491,0.999952130816504,-4.61512407916728 +"Q9VY42",0.127163384749997,15.1635186768384,0.14917069710434,0.883596832710462,0.999952130816504,-4.61512410204981 +"Q9VPR1",-0.0767695092194991,13.6845185809437,-0.14857277527102,0.884059735870565,0.999952130816504,-4.61512792401287 +"Q8MLS2",0.141346129305148,17.3656984448703,0.1479573469508,0.884536238333575,0.999952130816504,-4.61513184194873 +"Q27377",-0.0591196342076081,20.1766953881159,-0.147869373591837,0.884604356521866,0.999952130816504,-4.615132400684 +"Q9VKI8",-0.0672904553637217,22.391491093681,-0.147797841657479,0.884659744737124,0.999952130816504,-4.61513285475327 +"Q9VYT3",-0.0730689323301483,14.3805604925854,-0.147555136784442,0.884847679317896,0.999952130816504,-4.61513439376422 +"Q9VFV9",-0.0979805387452295,21.3903294678431,-0.147238663365534,0.885092746205695,0.999952130816504,-4.6151363967717 +"Q9W236",-0.131669096682092,16.5541939228873,-0.147233926352428,0.885096414490056,0.999952130816504,-4.6151364267205 +"P92204",-0.0988241197844797,15.8998500396396,-0.146786965713151,0.885442547600654,0.999952130816504,-4.61513924823007 +"Q7K1C5",-0.0900050655089899,17.5441016251712,-0.146555688755971,0.885621661547942,0.999952130816504,-4.61514070485531 +"Q9VPB8",0.111327903072642,15.653841998681,0.146532853790628,0.885639346588725,0.999952130816504,-4.61514084855035 +"Q9W1E8",-0.0697606795703258,15.4709819128872,-0.146514289094725,0.885653724472215,0.999952130816504,-4.61514096535719 +"A1Z7K6",0.0540136688325603,15.607503756067,0.14636131474302,0.885772200800771,0.999952130816504,-4.61514192729351 +"Q7JXW8",0.0963801826750945,14.9004745945798,0.146351534326594,0.885779775682504,0.999952130816504,-4.61514198876095 +"Q9VKM3",-0.0914779904251404,21.8164948252635,-0.145936920685325,0.886100902470011,0.999952130816504,-4.61514459074775 +"Q9VGF7",-0.120656248167062,20.0379004316469,-0.145688199480059,0.886293552150592,0.999952130816504,-4.61514614812421 +"O62602",0.0597713785110834,14.5005838998351,0.145356355314487,0.886550597257903,0.999952130816504,-4.61514822186649 +"Q9VAA9",-0.0841644312139138,17.1661585009902,-0.145248215104553,0.886634365085275,0.999952130816504,-4.61514889663491 +"Q9W2D6",-0.0901375432158495,19.6367336563508,-0.144078342211228,0.887540664725315,0.999952130816504,-4.61515616444499 +"Q7JVG2",0.0899369446950047,14.8419559299019,0.143895783855791,0.887682107342931,0.999952130816504,-4.61515729331499 +"Q9VYT1",0.0595774320365194,14.2963884343657,0.14389541799361,0.887682390809741,0.999952130816504,-4.61515729557591 +"Q9VF70",-0.0733143654819894,15.9564414186498,-0.14386964538783,0.887702359238961,0.999952130816504,-4.61515745482869 +"Q95RB1",-0.0429800026236151,15.945213301867,-0.143488036462366,0.887998036360967,0.999952130816504,-4.61515980952873 +"Q9VR89",-0.055165745814481,13.9544681654112,-0.142496133315517,0.888766660923706,0.999952130816504,-4.61516590093748 +"Q9VGQ1",-0.0798595176266197,22.420520584318,-0.142359336633303,0.888872673662209,0.999952130816504,-4.61516673772778 +"Q9VA76",0.0612825836703355,15.2154680909054,0.141666385129019,0.88940972126269,0.999952130816504,-4.61517096426163 +"O76752",-0.0810474152262941,17.8504952651647,-0.14164643244664,0.889425185722879,0.999952130816504,-4.61517108565575 +"Q9VCF8",-0.0868238449338072,16.9571991354603,-0.14155593396292,0.889495327767013,0.999952130816504,-4.61517163604416 +"Q9VXA9",0.127645991751486,14.2479358518285,0.139853027251931,0.890815366947822,0.999952130816504,-4.6151819274706 +"P02299",0.0831776083627176,22.0431832716936,0.139587592587856,0.891021153919968,0.999952130816504,-4.6151835204537 +"Q9W1V3",0.143555684967911,16.3461163048003,0.139547236834631,0.891052441763742,0.999952130816504,-4.6151837623817 +"Q9GYU8",-0.177923550114478,12.3532384870612,-0.139270892403313,0.891266696865737,0.999952130816504,-4.61518541716497 +"Q960X8",-0.0504183963853819,18.4435943822441,-0.139145251663656,0.89136411144783,0.999952130816504,-4.61518616843797 +"O18373",0.0579470539832911,19.6068917286606,0.138861984637012,0.891583747053642,0.999952130816504,-4.61518785976869 +"Q9VP57",-0.0643416360373621,19.4160523748787,-0.138856831096569,0.891587743019205,0.999952130816504,-4.6151878905077 +"Q7K3D4",0.0639879074450853,18.510885839959,0.138769226796966,0.891655670337089,0.999952130816504,-4.61518841286221 +"P11046",0.067729462225163,20.9747432315574,0.138125072643961,0.892155166842987,0.999952130816504,-4.61519224366533 +"Q9VTB4",-0.0801205940820999,20.6387786732111,-0.137979274197717,0.892268229961606,0.999952130816504,-4.61519310827271 +"O18404",-0.0639114713784004,23.0219293892035,-0.137898807296396,0.892330631113748,0.999952130816504,-4.615193585065 +"Q9VGW7",0.103721894053791,16.6207133468886,0.137699286678488,0.892485360247493,0.999952130816504,-4.61519476609555 +"Q9VW90",0.100191031353868,14.995905288844,0.137557194366706,0.892595556250216,0.999952130816504,-4.61519560615147 +"Q9VUM1",-0.0650224257747851,16.5239657181576,-0.137053035569508,0.892986562122215,0.999952130816504,-4.61519857980009 +"Q868Z9",-0.0750817829724646,20.4372709459379,-0.137037096402358,0.892998924390435,0.999952130816504,-4.61519867363599 +"Q9VHD2",0.0882810986520113,16.6046642684407,0.136922649729416,0.893087689003859,0.999952130816504,-4.61519934707933 +"Q7K159",-0.100157354426882,14.6615931577604,-0.136794891787783,0.893186779571753,0.999952130816504,-4.61520009818966 +"Q9VLR3",-0.119470795548253,16.772376997647,-0.13665060461914,0.893298692634792,0.999952130816504,-4.61520094563949 +"Q9VEW1",-0.110109254357322,14.6630521829412,-0.135636333996241,0.89408545519108,0.999952130816504,-4.61520687770554 +"Q9VWS1",0.100329945785461,17.2403712450011,0.135598488536285,0.894114813897258,0.999952130816504,-4.61520709819786 +"Q8SZM2",0.0800124747641782,21.2989583363362,0.13522159301878,0.894407200301106,0.999952130816504,-4.61520929069762 +"Q9VZW1",-0.144087868667215,14.8610508487395,-0.135062593438457,0.894530553112532,0.999952130816504,-4.61521021381907 +"Q8T4G5",0.0710995704407651,19.595822085827,0.13462304529057,0.894871571918197,0.999952130816504,-4.61521276013052 +"Q9VN21",0.0805084967433807,22.0326961235611,0.134522044086577,0.894949935697846,0.999952130816504,-4.6152133440659 +"Q8T0N5",0.0615548155716752,18.6009268270367,0.134242669030432,0.895166700295781,0.999952130816504,-4.61521495699335 +"Q9VTJ4",-0.137913510309394,15.6520528868151,-0.133750113555426,0.895548890877915,0.999952130816504,-4.61521779255858 +"Q9W074",-0.0819596311909017,13.5321075825185,-0.133502170859889,0.895741288283747,0.999952130816504,-4.61521921600231 +"Q9W1C8",-0.0848490081086837,15.8992176970841,-0.13341876779027,0.895806008539903,0.999952130816504,-4.6152196942303 +"P25007",-0.0776944656771938,23.8623346570345,-0.133282789770732,0.895911528280524,0.999952130816504,-4.6152204732822 +"O17452",0.0685193725310675,19.863186826614,0.133246465196712,0.895939716709972,0.999952130816504,-4.61522068126095 +"A0A0B4K692",0.115441573937673,15.8394943903569,0.133213827077241,0.895965044518577,0.999952130816504,-4.61522086808456 +"Q9VW14",0.0544793072324943,13.8277892864,0.13306205197045,0.896082826471378,0.999952130816504,-4.61522173626107 +"Q9W503",0.0848233792183031,17.9425999697994,0.132940134690782,0.896177439717537,0.999952130816504,-4.61522243293313 +"Q9VG00",-0.0955376118082825,15.2924890535195,-0.13279759889526,0.896288055935351,0.999952130816504,-4.61522324661994 +"Q9VKV9",0.0913003393942855,15.5846373073084,0.132485263489865,0.896530454548421,0.999952130816504,-4.61522502659645 +"Q7K1M4",0.0885868907093545,17.1263408752882,0.131742695699573,0.897106792889097,0.999952130816504,-4.61522924169189 +"Q9V4W1",0.111622746223485,13.6950404101597,0.131741570392911,0.897107666333244,0.999952130816504,-4.61522924806166 +"Q9VEH2",-0.106556227570662,15.9031410113769,-0.130542931609226,0.898038108213171,0.999952130816504,-4.61523600219113 +"Q9Y105",-0.111140411485504,17.0281305942969,-0.130396462233876,0.898151815613484,0.999952130816504,-4.61523682330969 +"Q95TK5",-0.0678541927530674,17.0649837866135,-0.130318140411591,0.89821261952351,0.999952130816504,-4.61523726201142 +"Q9VJC7",-0.0886991422051686,18.6290217053441,-0.130188789141087,0.898313040796163,0.999952130816504,-4.61523798596859 +"Q9VQI6",0.0563247021961821,16.120637066652,0.12980537705814,0.89861071167126,0.999952130816504,-4.61524012765775 +"Q9VRG8",0.130349557562123,16.1995823596556,0.129541969795398,0.898815223221815,0.999952130816504,-4.61524159537303 +"Q9VG51",0.104466965243784,19.2151689353544,0.129516758260127,0.898834798056203,0.999952130816504,-4.61524173569708 +"Q9VEP8",0.0818834090470055,17.2627372396394,0.129473909614183,0.898868066919096,0.999952130816504,-4.61524197412459 +"Q9VC66",-0.0597304683349975,17.7515983148648,-0.129314256972618,0.898992027346192,0.999952130816504,-4.61524286180634 +"Q9VVE2",-0.064059115481566,18.4208994947839,-0.129251487656873,0.899040764599009,0.999952130816504,-4.61524321051034 +"Q8IPX7",0.175060139346026,15.3166145657454,0.128911402641002,0.89930483106837,0.999952130816504,-4.61524509686393 +"Q9VBU0",-0.0696699460464654,14.1174985127321,-0.128001081899396,0.900011730547251,0.999952130816504,-4.61525012181039 +"Q9W329",-0.0684594204034426,16.4866494989409,-0.127910888580909,0.90008177398615,0.999952130816504,-4.61525061774537 +"Q7KUC2",-0.0529873728283334,19.3875470669741,-0.127855998685626,0.900124401481538,0.999952130816504,-4.61525091939143 +"Q9W4K0",0.0796788538437561,19.6555910213194,0.127633156508411,0.900297464019401,0.999952130816504,-4.61525214269151 +"Q7K1Q7",-0.0490253446364761,16.5303281195213,-0.12719074456222,0.900641063320638,0.999952130816504,-4.61525456503329 +"Q9VFM9",-0.0933362244283558,17.1232522590463,-0.126585077020253,0.901111488696972,0.999952130816504,-4.61525786767333 +"Q8IPD8",-0.0994099283323564,18.3760191318462,-0.126528926253276,0.901155103273598,0.999952130816504,-4.61525817306261 +"Q8SXX1",-0.0790111125895265,19.868519858784,-0.126397559805065,0.901257142215755,0.999952130816504,-4.61525888700335 +"Q9W0Q2",-0.0498332750842838,15.5257964792929,-0.126060041093762,0.901519318335155,0.999952130816504,-4.61526071794026 +"Q95RN0",-0.0618799581035319,16.9078545771638,-0.125687149188307,0.901808985371134,0.999952130816504,-4.61526273509973 +"P15425",0.0427633204900992,16.9948864953905,0.125662432046435,0.901828186466847,0.999952130816504,-4.61526286859694 +"Q7KK90",-0.0697987602643337,21.119530399925,-0.124802028111167,0.902496616542162,0.999952130816504,-4.61526749934494 +"Q8SWZ6",-0.10752551386949,13.966261692349,-0.124304995316989,0.902882786166231,0.999952130816504,-4.6152701599733 +"Q9VMH2",-0.106422715451068,17.381563295025,-0.12384794835675,0.903237911371785,0.999952130816504,-4.61527259722753 +"Q9VMQ7",0.0462161314317164,15.9269545715369,0.123821147144879,0.903258736566445,0.999952130816504,-4.61527273987056 +"Q9VE12",-0.0405218421200004,15.69563569157,-0.12381671366491,0.903262181495548,0.999952130816504,-4.61527276346373 +"Q7JWD6",-0.0706021896420062,20.4917112804779,-0.122499560845516,0.904285732900761,0.999952130816504,-4.61527973556913 +"Q0E9F9",0.0810001665710978,18.4680721023403,0.122408150089892,0.904356774231798,0.999952130816504,-4.61528021668004 +"Q05856",0.121883923251611,13.681508887379,0.12201202068345,0.904664642376366,0.999952130816504,-4.61528229744626 +"Q9VDL1",-0.111287677540819,14.8806691385649,-0.12163891794996,0.90495462899013,0.999952130816504,-4.61528425111765 +"Q7KTP7",0.0539711825495921,17.8970159509606,0.121572521924933,0.905006235448377,0.999952130816504,-4.61528459816154 +"A1Z7K8",-0.0654486967531227,17.6807719085407,-0.121552725871354,0.905021622061516,0.999952130816504,-4.61528470159658 +"O44434",-0.0853139089056913,15.8738059861917,-0.121101255919914,0.905372540818913,0.999952130816504,-4.61528705598876 +"Q9W147",-0.0864905259800981,13.7732295045062,-0.120620910915505,0.905745926171138,0.999952130816504,-4.6152895513838 +"Q8IQ70",0.0406139093229712,17.9074040029846,0.119334200511535,0.906746235495089,0.999952130816504,-4.61529618718826 +"Q9VWT3",-0.049290293509026,14.3268370420778,-0.119021606606154,0.906989275943964,0.999952130816504,-4.61529778859231 +"Q9VXB0",0.0715643778769923,20.2764434682824,0.119007029031543,0.907000610183784,0.999952130816504,-4.61529786317046 +"Q7KN90",-0.0912804381013252,17.3137817535752,-0.118908771620277,0.907077007054117,0.999952130816504,-4.61529836561316 +"Q9VSC5",-0.0380299637601453,19.4526940489445,-0.118653169989698,0.907275746310545,0.999952130816504,-4.61529967070489 +"Q9VKW5",0.0970734461939031,16.9797528758255,0.118302673806944,0.907548279921033,0.999952130816504,-4.6153014557769 +"Q9VB05",0.058154950149504,20.1684148616009,0.117984968152764,0.907795327228599,0.999952130816504,-4.61530306930263 +"Q9W3T9",-0.0651831943150398,18.6529669433313,-0.117844669453476,0.907904426389812,0.999952130816504,-4.61530378045937 +"Q9VKQ2",-0.112703700526165,16.0002108581059,-0.117757243891757,0.907972411287214,0.999952130816504,-4.61530422318251 +"Q8IQB7",0.193408138327499,14.398581273605,0.117756479311805,0.907973005852213,0.999952130816504,-4.6153042270529 +"Q9VBU9",0.0755581864255888,20.7945959336043,0.117358739345001,0.90828231059426,0.999952130816504,-4.61530623706424 +"Q9VNE2",0.057768898067561,19.0566594664043,0.11726668928579,0.908353896052649,0.999952130816504,-4.61530670128147 +"Q0KI15",-0.0398575573351021,15.5952192172761,-0.116689388909096,0.908802869675025,0.999952130816504,-4.61530960438924 +"Q8SXS0",0.0830070289774234,14.5813319032839,0.116582420720468,0.908886063719931,0.999952130816504,-4.61531014073995 +"Q9W1H5",0.0849173251912667,17.2786833027683,0.116526063308866,0.908929895899887,0.999952130816504,-4.61531042312537 +"Q9VE52",0.0386912810768365,16.0070744267995,0.116417613500476,0.909014243997324,0.999952130816504,-4.61531096614315 +"A1ZB73",-0.12296357399825,13.8165044133177,-0.116253509253784,0.909141880150769,0.999952130816504,-4.61531178686995 +"Q9VIQ8",-0.0812042690080617,21.3031473140466,-0.116010259593438,0.909331078416912,0.999952130816504,-4.6153130013013 +"Q9VW00",-0.178997212157885,15.7867579748493,-0.115787365725065,0.90950444908434,0.999952130816504,-4.61531411188098 +"A1ZBJ2",0.0728621690103175,19.2279150468928,0.114933508344376,0.910168638282279,0.999952130816504,-4.61531834658027 +"Q9VF82",0.0580149508435142,14.9158456946799,0.114451584671362,0.910543542659788,0.999952130816504,-4.61532072289176 +"Q9VVK7",-0.0497848673340187,18.2403639710146,-0.113909580624356,0.910965212032985,0.999952130816504,-4.6153233835677 +"Q7KLX3",0.0889376656132441,19.2859219052003,0.11312550629182,0.911575257083182,0.999952130816504,-4.61532721028873 +"Q9W0C1",-0.063621806831442,21.2609680411294,-0.113083227198368,0.911608153769081,0.999952130816504,-4.61532741588606 +"P13496",-0.059534585599085,18.2719389382299,-0.113001325992333,0.911671880266258,0.999952130816504,-4.61532781394234 +"Q9W330",-0.0556679746127458,20.6525302841512,-0.111969005957616,0.912475172073601,0.999952130816504,-4.61533280658745 +"Q9VLW8",-0.07768412666708,14.2342187831339,-0.11180299450375,0.912604361911436,0.999952130816504,-4.61533360521312 +"Q7K0D8",0.0356607471915211,17.3215488435076,0.11168525629425,0.912695987149081,0.999952130816504,-4.6153341708967 +"Q9VQ88",0.0710078387452455,16.4501168306925,0.111467820292625,0.912865201757419,0.999952130816504,-4.6153352140259 +"Q9VJG0",-0.15114684382786,13.2974179066091,-0.111194681772073,0.913077771810796,0.999952130816504,-4.61533652151238 +"Q9VVK5",-0.0426065434813943,15.8746162179267,-0.110963537603516,0.913257665167992,0.999952130816504,-4.61533762547911 +"Q9V3N1",-0.0673267472341976,18.4057307520564,-0.110739094716909,0.913432347829841,0.999952130816504,-4.61533869524932 +"Q9V405",0.060438045512214,20.2137850150676,0.11071627480097,0.913450108705534,0.999952130816504,-4.61533880389582 +"Q7JVM1",-0.0334540059777435,15.8536032148169,-0.110702472266894,0.913460851322883,0.999952130816504,-4.61533886959939 +"Q8IH18",0.0641511332532332,15.6489392038906,0.110630474804216,0.913516887781476,0.999952130816504,-4.61533921219328 +"Q6IGN6",-0.0631389459816063,16.7506270485208,-0.110373172860426,0.913717152771643,0.999952130816504,-4.61534043472778 +"P05205",-0.072484502947006,18.1401683687703,-0.109973712294935,0.9140280756996,0.999952130816504,-4.6153423270886 +"O61604",0.0560343862568473,20.9087918322953,0.109766156122904,0.91418963428432,0.999952130816504,-4.61534330764321 +"Q9VJJ0",0.0536692538190238,19.7641092497838,0.109711656370559,0.914232056721641,0.999952130816504,-4.61534356480961 +"Q9VJQ5",0.107400176647488,14.4055937343728,0.109380127881141,0.914490123318605,0.999952130816504,-4.61534512644141 +"Q7JQW6",-0.108408413890807,15.855384656807,-0.109161301010776,0.914660466835628,0.999952130816504,-4.61534615462311 +"Q9W227",-0.0787024780266385,22.0050441178417,-0.108832979456455,0.914916053539467,0.999952130816504,-4.61534769342834 +"Q7K1H0",-0.0609770185483214,16.3580768517266,-0.108808567104788,0.914935058082256,0.999952130816504,-4.6153478076617 +"Q7K5K3",0.0557585897180815,22.6649737845149,0.108397279040863,0.915255245999496,0.999952130816504,-4.61534972837307 +"Q7JXB9",0.142846094291265,16.2157817694612,0.107938108927142,0.915612728191089,0.999952130816504,-4.6153518641286 +"Q9VU75",0.0730237844789698,18.2357064777465,0.107819112756841,0.915705374544167,0.999952130816504,-4.61535241614575 +"Q7K3W4",-0.0631549420603896,19.3178700162814,-0.10708229215233,0.91627906622108,0.999952130816504,-4.6153558207057 +"Q9W306",-0.0619056232372035,14.7281523650063,-0.107078060093479,0.916282361460723,0.999952130816504,-4.61535584019318 +"Q9VVS6",-0.0507024076349154,16.5163462340747,-0.107052222247298,0.916302479810913,0.999952130816504,-4.61535595915279 +"Q9W1M9",0.0930471918805544,14.382704234588,0.106821151738145,0.916482402931851,0.999952130816504,-4.61535702174854 +"Q9VG97",0.0459333736988192,20.113722070407,0.106780685682492,0.916513912328445,0.999952130816504,-4.61535720759937 +"Q08012",-0.0527305678229233,19.1498516834206,-0.106623827286784,0.916636053444799,0.999952130816504,-4.61535792734877 +"Q9VN95",0.0585443221552389,17.9351613542003,0.105924969254252,0.917180260647473,0.999952130816504,-4.61536112126279 +"A1Z968",-0.0429994708549906,17.2663005225585,-0.105579765351189,0.917449090070698,0.999952130816504,-4.61536269118557 +"Q9XYW6",0.0434812715558373,16.6267459872354,0.105544500134324,0.917476553642802,0.999952130816504,-4.6153628512776 +"Q95R34",0.0815673991873798,15.2485513117765,0.105356392542917,0.917623048464798,0.999952130816504,-4.61536370432116 +"Q8IMX8",-0.0544366030249108,17.1687355390935,-0.104762845686483,0.918085312505741,0.999952130816504,-4.61536638603483 +"Q9VP78",-0.055125841390133,14.9102054543274,-0.104694566826183,0.918138491183706,0.999952130816504,-4.61536669355804 +"Q9U6M0",-0.0371868067983669,16.2899473139055,-0.104539217978025,0.918259485441707,0.999952130816504,-4.61536739249371 +"Q9VVL5",0.0586280229734726,17.2263219799278,0.103770104554715,0.918858544408236,0.999952130816504,-4.61537083759862 +"Q9VYU9",-0.0695426849493792,17.8581728881067,-0.103614162481533,0.918980013247339,0.999952130816504,-4.61537153302066 +"Q9V3Y2",-0.0639914897144713,17.8965692470237,-0.103271928008594,0.919246599249963,0.999952130816504,-4.61537305555675 +"Q9VWA8",-0.0557577575849866,14.4609297902222,-0.103023436912882,0.919440169508202,0.999952130816504,-4.6153741578995 +"Q9VQ93",-0.0543630207929411,16.7503416124855,-0.102456877318643,0.919881529465394,0.999952130816504,-4.61537666134061 +"Q9VRD4",-0.0542614419978698,20.2874656467988,-0.102434771504836,0.919898750843689,0.999952130816504,-4.61537675873997 +"Q9VJI7",0.0384803831942548,17.3566778049332,0.102413830833611,0.919915064564443,0.999952130816504,-4.61537685098632 +"Q8T0Q4",-0.0575913255155669,20.0364800458056,-0.102042729577245,0.920204175280233,0.999952130816504,-4.61537848261589 +"Q09101",0.0486954932140709,14.594746092953,0.102031992952335,0.920212539946703,0.999952130816504,-4.61537852973396 +"P04388",0.0743770526902807,16.5781441814092,0.101866127269743,0.920341763471108,0.999952130816504,-4.61537925701356 +"Q9VRJ4",-0.0500869428341062,20.6983170433863,-0.10185290041913,0.920352068417576,0.999952130816504,-4.6153793149592 +"P04359",0.0370530574499881,18.8508277304986,0.101680992571191,0.920486001968602,0.999952130816504,-4.6153800673897 +"Q9VAY6",-0.0349920436123448,15.2085288390863,-0.101443671788168,0.920670902917423,0.999952130816504,-4.61538110404642 +"Q7KNM2",-0.0555585194278052,19.6423003879568,-0.101397898927919,0.920706565936827,0.999952130816504,-4.61538130371206 +"O18333",0.0857324129175083,17.3984163906581,0.100803091448481,0.921170014539326,0.999952130816504,-4.61538389014994 +"Q9V434",0.035537656858267,15.0367476794549,0.100789650126292,0.921180487788875,0.999952130816504,-4.61538394842236 +"P17704",0.0462072091923247,20.31746461413,0.10074872245593,0.92121237802694,0.999952130816504,-4.61538412580916 +"Q7K8X7",0.0683622536342199,19.4076644657539,0.100342288480392,0.92152907303962,0.999952130816504,-4.61538588345747 +"Q9V5C6",0.0540817522803252,20.6220851543436,0.100145576802705,0.921682356559185,0.999952130816504,-4.61538673160484 +"Q95SK3",-0.0640928344330689,17.2629840617176,-0.1001385554378,0.921687827872931,0.999952130816504,-4.61538676184767 +"Q9W258",0.0492969500859992,19.3224938902384,0.100129687932857,0.921694737774885,0.999952130816504,-4.61538680003928 +"Q8IPW2",-0.0745423225435076,17.2360813797925,-0.0999455654839514,0.921838214576092,0.999952130816504,-4.61538759227747 +"Q7KMM4",-0.0862270948127097,14.4705657196182,-0.0999441580061656,0.921839311359351,0.999952130816504,-4.61538759832794 +"Q9W141",-0.0796042724813439,21.8755503219735,-0.0999321101353322,0.921848699722485,0.999952130816504,-4.61538765011585 +"Q9VNA3",-0.0611986332438619,18.6456375831638,-0.0998458600097951,0.921915910914736,0.999952130816504,-4.61538802068123 +"Q9VN93",0.0445574920138334,20.3091174846045,0.0997536008811768,0.921987805364159,0.999952130816504,-4.61538841671053 +"P92181",-0.0333343395090289,16.5103540052504,-0.0993684388613282,0.922287956885067,0.999952130816504,-4.61539006610434 +"Q9W4W5",-0.0347199824490438,17.2326646535718,-0.0990385669102278,0.922545031403087,0.999952130816504,-4.61539147366911 +"Q9VF28",0.0651428986605254,17.7543272874272,0.098786530202356,0.922741453735105,0.999952130816504,-4.61539254596531 +"Q7K4Z4",0.0552985586752417,14.9562818899996,0.0984567803770242,0.922998448939079,0.999952130816504,-4.61539394477944 +"Q9W2Y3",-0.0881022359276322,16.4635918396891,-0.0983117960767769,0.923111447343808,0.999952130816504,-4.61539455833343 +"Q9VEP9",-0.0569644145325476,17.5799597671533,-0.0978769806094949,0.923450345792212,0.999952130816504,-4.61539639300677 +"Q8MLS1",-0.0772872741894339,18.5322722998316,-0.097775617485803,0.923529351199492,0.999952130816504,-4.61539681953568 +"Q9VR31",-0.0726775387975884,17.3186014962933,-0.0977013476926865,0.923587239799156,0.999952130816504,-4.61539713177799 +"Q8SXC2",0.0698259034170903,14.6626706607452,0.0973191750248738,0.923885126303234,0.999952130816504,-4.61539873475264 +"Q7JV09",0.049621991898583,15.2171652857816,0.097249667767373,0.923939305380475,0.999952130816504,-4.6153990256186 +"Q8IPP8",-0.0491060319284813,19.0882506214116,-0.097036230654445,0.924105676444092,0.999952130816504,-4.6153999174903 +"P49028",0.064444977833876,16.3454290801585,0.0965622886247096,0.924475120427414,0.999952130816504,-4.6154018909241 +"O15971",-0.0692537856899946,17.1115322904785,-0.0965539558073522,0.924481616129505,0.999952130816504,-4.61540192553468 +"Q8SY33",-0.0404366571214183,17.4047648862918,-0.0965164131923843,0.92451088188816,0.999952130816504,-4.615402081432 +"Q9VCW6",-0.068947623303611,19.7846752667465,-0.0961920770091067,0.924763717820438,0.999952130816504,-4.61540342573419 +"Q9W396",-0.0894389246624918,16.6594045224799,-0.0960327640976386,0.924887913133772,0.999952130816504,-4.61540408439836 +"Q9V429",-0.0587209381105822,22.353507614857,-0.0960049783373171,0.924909574243595,0.999952130816504,-4.61540419916444 +"O76877",-0.0999903697956341,17.3700851807581,-0.0958443825589848,0.925034772059703,0.999952130816504,-4.61540486183897 +"Q9VH39",-0.0815981462986279,18.4531203381608,-0.0957735812879358,0.925089968217735,0.999952130816504,-4.61540515363841 +"Q9VLU4",-0.080763291737167,17.2123106766299,-0.0953914456940513,0.925387885280694,0.999952130816504,-4.61540672485409 +"Q9VVW8",-0.0500943758837611,15.7841897007662,-0.0947009649588521,0.925926221070628,0.999952130816504,-4.6154095479951 +"P54352",0.074029734874518,16.0559424221683,0.0943461833793136,0.926202842505438,0.999952130816504,-4.61541099062055 +"Q9VTW6",0.117972447198717,16.3582160019602,0.0938515838521099,0.926588495862548,0.999952130816504,-4.61541299276562 +"Q7JYZ0",-0.0634227787600992,16.9073134594957,-0.093656209358617,0.926740840222517,0.999952130816504,-4.6154137807518 +"Q7K549",0.0947800412306812,14.7783868724696,0.0931315009293204,0.92714999934985,0.999952130816504,-4.61541588890389 +"Q9VJC0",-0.0592628097280929,16.5437871718288,-0.0929960830210407,0.927255599525578,0.999952130816504,-4.6154164310624 +"Q9VCB9",-0.103604639088108,17.004611425753,-0.0922617792140173,0.927828241416147,0.999952130816504,-4.61541935721437 +"Q9VJU8",-0.0368857276641652,15.604610519936,-0.0916793526421255,0.928282472470905,0.999952130816504,-4.61542166168962 +"A1Z8D3",0.108614039623564,16.6321093182225,0.091601496871527,0.928343193702705,0.999952130816504,-4.61542196863683 +"A1ZBM2",0.0495133263417848,18.584650146154,0.0914860390274614,0.928433242378885,0.999952130816504,-4.61542242335166 +"Q9V428",-0.0477943789273212,18.7462841635732,-0.0909109388640988,0.928881793625728,0.999952130816504,-4.61542467978205 +"P46415",0.0557941166056821,17.9289956606201,0.0893901646548231,0.930068047207449,0.999952130816504,-4.61543057820254 +"P29829",0.0358848088719057,21.3002217031645,0.0889992671622308,0.930372988086295,0.999952130816504,-4.61543207828561 +"Q9V4E7",-0.0945494489800325,15.0162204104356,-0.0889714397719046,0.930394696792121,0.999952130816504,-4.61543218482413 +"A1Z877",0.0464642434083125,19.9196010223024,0.0885212609315729,0.930745898339723,0.999952130816504,-4.61543390373692 +"Q9VD30",-0.0519295957105541,21.4092989689148,-0.0882445802267347,0.930961754879588,0.999952130816504,-4.61543495586713 +"Q7JVK8",-0.0465488452904488,19.1556973286507,-0.0879269737017285,0.931209547270256,0.999952130816504,-4.615436159574 +"O62621",-0.0329878915124056,13.1094316426763,-0.0878269777502775,0.931287564320374,0.999952130816504,-4.61543653765542 +"Q8SX78",-0.0560933389707277,16.0028680247585,-0.0873696737767644,0.93164436318789,0.999952130816504,-4.61543826123619 +"A1ZB69",-0.0744171455812932,20.4786414679702,-0.0870971334326742,0.931857012583989,0.999952130816504,-4.61543928417216 +"Q9VL89",0.0351700427203419,16.8720008939313,0.0863992781365485,0.93240153828781,0.999952130816504,-4.61544188892161 +"Q9VHE4",-0.0762720773176788,17.9277070811952,-0.0855031300940436,0.933100840364122,0.999952130816504,-4.61544520313419 +"Q9VNF5",0.0645375784005413,15.9672352806359,0.0850857582217909,0.933426552875352,0.999952130816504,-4.61544673492537 +"Q9VJ60",-0.0468959087702672,16.5250844157754,-0.0850641516566767,0.933443414744195,0.999952130816504,-4.61544681401971 +"Q9W2K2",-0.0695026407889525,15.6633777905736,-0.0850401044723108,0.933462181323294,0.999952130816504,-4.61544690202477 +"Q0KIE7",0.0820966141970558,13.8452294168401,0.0849612374155273,0.93352372997623,0.999952130816504,-4.61544719047889 +"Q9W1Y1",0.038669285920566,17.821017350858,0.0844938592703794,0.933888485696873,0.999952130816504,-4.61544889442039 +"Q9VGQ8",0.0682192581041861,16.2798281012676,0.0841794263374696,0.934133887151421,0.999952130816504,-4.61545003548461 +"Q9VL18",0.0455312214428822,20.8684925025028,0.0840887248982828,0.934204677040889,0.999952130816504,-4.61545036384744 +"O76454",-0.0338313016490801,18.0107488750705,-0.0837749265716427,0.934449592159247,0.999952130816504,-4.61545149715369 +"P23625",-0.0370104399022182,22.1917393710994,-0.0837483710563709,0.934470318677462,0.999952130816504,-4.61545159286687 +"Q9W5P1",-0.0736164332543172,14.2402773754099,-0.0834146950976134,0.934730756199625,0.999952130816504,-4.61545279294326 +"Q9VU84",0.0502067206943728,18.3997061075836,0.083150722878755,0.934936794745016,0.999952130816504,-4.61545373894038 +"Q9NHD5",0.0928211633035581,16.5337017186292,0.082530270864783,0.935421095955799,0.999952130816504,-4.61545595067087 +"Q9VS84",0.0443042185036226,17.5330257169155,0.0822497987408792,0.935640030555308,0.999952130816504,-4.61545694504619 +"P38979",0.0496889534068075,22.09343291739,0.0818967991819802,0.935915587266321,0.999952130816504,-4.61545819175561 +"Q9VG73",-0.0318863736057793,18.080802729478,-0.081764705816455,0.936018703512966,0.999952130816504,-4.61545865690153 +"M9PF16",-0.0427070814974222,21.1139785368399,-0.0816481178184112,0.93610971677335,0.999952130816504,-4.61545906682512 +"Q9VB10",0.0386323324246582,20.9726727528313,0.0815200048185217,0.936209727983301,0.999952130816504,-4.61545951659741 +"Q9VMQ9",0.0417724898212199,22.1014136692844,0.0813460820550937,0.936345502304973,0.999952130816504,-4.61546012606806 +"Q95RQ8",-0.0433778982715864,14.0436587414643,-0.0812824815626744,0.93639515309863,0.999952130816504,-4.61546034861633 +"Q9VV76",-0.0826672747297152,16.3604502122237,-0.0812407162542424,0.936427758038588,0.999952130816504,-4.6154604946653 +"Q7KS11",-0.0649353291403685,15.6904991012403,-0.0812242169499537,0.936440638589737,0.999952130816504,-4.61546055234101 +"A1Z729",0.0563775180729351,16.6895061132364,0.081210519186415,0.936451332069467,0.999952130816504,-4.61546060021466 +"Q9VXA3",-0.0448143127826768,17.8243106692413,-0.0808367994988416,0.936743090006939,0.999952130816504,-4.61546190325443 +"Q9VH77",0.050329393092774,15.4408588109802,0.0803553984230699,0.937118927283889,0.999952130816504,-4.61546357290356 +"Q9VWD9",-0.0385137043536226,19.4565960399002,-0.0802033474975058,0.937237639041913,0.999952130816504,-4.61546409819504 +"Q9W3C3",-0.0425901609095547,16.3935597205855,-0.0800939844555841,0.937323023757148,0.999952130816504,-4.61546447539835 +"Q9VA18",-0.0303758449402949,21.6013682300405,-0.0799175739287837,0.93746075719237,0.999952130816504,-4.61546508277193 +"Q9VSK9",-0.0329487074571393,14.5702327747103,-0.0798463562486681,0.937516361356503,0.999952130816504,-4.61546532759246 +"Q9NBD7",-0.0255593719459384,13.0922474664559,-0.0797201013035807,0.937614937440855,0.999952130816504,-4.61546576107565 +"Q7JR49",-0.0469442708427117,18.8931625536071,-0.0791894363166235,0.938029276406156,0.999952130816504,-4.61546757557119 +"M9PGG8",0.0575697204170815,18.6083509826547,0.0790082460607385,0.938170752588111,0.999952130816504,-4.61546819234224 +"A8JNP2",-0.061523873114961,21.1434185374744,-0.078648100573917,0.938451966255347,0.999952130816504,-4.61546941408878 +"Q9V3Q4",-0.0236428027843107,16.0042590098976,-0.0781352690727241,0.938852417016291,0.999952130816504,-4.61547114418653 +"Q9VUZ0",-0.0463289364246684,17.6640364748622,-0.0779840186670681,0.938970526040567,0.999952130816504,-4.61547165229015 +"Q9VTZ6",-0.0336039256288494,17.0836163108343,-0.0777386807140959,0.939162109703275,0.999952130816504,-4.61547247437714 +"Q9VBT1",0.0735805160155465,16.2775262653772,0.0776562483560837,0.939226481761723,0.999952130816504,-4.61547275001398 +"Q7KSM5",0.0456942199930452,18.9300736124172,0.077618803718165,0.939255722711706,0.999952130816504,-4.61547287512472 +"Q9VUW4",0.0479989985656228,14.5474279594045,0.0775940519562349,0.939275051698363,0.999952130816504,-4.61547295779271 +"Q9V393",0.0309155846496765,15.6909142393024,0.07750712762568,0.939342932402641,0.999952130816504,-4.61547324790129 +"Q8MLW4",-0.043612525379924,18.6739267008672,-0.0768216659292685,0.93987823837009,0.999952130816504,-4.61547552424574 +"Q9VFN9",-0.0422457944815235,16.0365904669516,-0.0767755741972709,0.939914234436799,0.999952130816504,-4.61547567658709 +"Q9VR25",-0.0308750090126217,16.9117226124012,-0.0765387072364308,0.940099221587793,0.999952130816504,-4.61547645803455 +"Q9VHF9",0.0523067173127281,16.994125903837,0.0758811425696698,0.940612781909117,0.999952130816504,-4.6154786147703 +"Q9XYZ9",0.0351546401819895,21.9673136256804,0.0758111040245248,0.940667483883615,0.999952130816504,-4.6154788433938 +"Q9V455",0.0571969558452636,19.3770583296521,0.0756818475960065,0.940768437424607,0.999952130816504,-4.61547926476603 +"Q9V4N3",-0.0231732308761323,19.6905778009504,-0.0750954550062528,0.941226442688017,0.999952130816504,-4.6154811673732 +"Q9W379",-0.058179246092088,16.3210906124541,-0.0750196431198312,0.941285657575497,0.999952130816504,-4.61548141227358 +"Q9VK11",-0.0342678940834382,18.69853309309,-0.0749230540372318,0.941361101567196,0.999952130816504,-4.61548172393422 +"Q9XZ61",0.0449959969406102,18.5585683424342,0.0747904269894783,0.94146469511805,0.999952130816504,-4.61548215122417 +"Q9VB68",0.0309793333252681,15.4885177287763,0.0745941908904333,0.941617975031558,0.999952130816504,-4.61548278205945 +"E2QCN9",-0.0380061678707335,17.426550276591,-0.0740364956954253,0.942053603573199,0.999952130816504,-4.61548456583445 +"Q9VNI8",-0.0450473677711898,15.7564809377641,-0.0738066272416663,0.942233164732287,0.999952130816504,-4.6154852971736 +"O97111",0.0344293504898125,14.7625033571201,0.0733439513368838,0.942594592738908,0.999952130816504,-4.61548676231775 +"Q9W3G8",0.0316369862109944,15.7681908913236,0.0732579308941587,0.942661790682557,0.999952130816504,-4.61548703370237 +"Q9VIE7",0.0461289945283099,15.0520558678408,0.0729788113322938,0.942879838031102,0.999952130816504,-4.61548791210261 +"Q9V436",0.0505048739428169,19.1212191049764,0.0725914504023997,0.943182451096068,0.999952130816504,-4.61548912559532 +"Q95U34",0.0447581999788333,19.4607711105026,0.0724307005126495,0.94330803437588,0.999952130816504,-4.6154896272862 +"O61444",0.0525592925667553,16.508128941228,0.072422497667029,0.94331444275989,0.999952130816504,-4.61548965285701 +"Q9VJ19",0.0366956078264558,19.1127220888357,0.0721871159423568,0.943498333912816,0.999952130816504,-4.61549038538284 +"Q0E980",0.0351622261054665,18.3793019838641,0.0717782421214269,0.943817773123783,0.999952130816504,-4.61549165216876 +"Q9VRL1",-0.0379517612350355,20.5050728447203,-0.0713996557088861,0.944113558781022,0.999952130816504,-4.61549281871095 +"A1Z7G2",0.0598590413794291,19.54703410268,0.0713499717813997,0.944152376958485,0.999952130816504,-4.61549297134529 +"Q9V3V9",0.0245976879598508,19.5229905122187,0.0712940930166045,0.944196035354282,0.999952130816504,-4.61549314288407 +"Q7K180",-0.0633604502893981,16.3401831667027,-0.0712278564451213,0.944247786604829,0.999952130816504,-4.61549334604582 +"Q9VSL6",0.0859093458985569,14.6424707566889,0.0711151874265986,0.944335816560496,0.999952130816504,-4.61549369119267 +"Q9VS44",-0.0474939943438599,15.1466974027958,-0.0707957461809881,0.944585404797859,0.999952130816504,-4.61549466679294 +"Q9VRZ7",-0.051847958069196,17.2649161249609,-0.0707919010176971,0.944588409166708,0.999952130816504,-4.61549467850967 +"Q7YTY6",-0.0861826579046863,18.4303276441376,-0.0707777075431894,0.944599499062934,0.999952130816504,-4.61549472175362 +"Q7JXF7",-0.0370520253366529,17.8804146234129,-0.0706998442568023,0.944660336793834,0.999952130816504,-4.61549495882943 +"Q9VYS5",0.034737588339171,14.3139934136748,0.0703618704806147,0.944924413516584,0.999952130816504,-4.61549598486156 +"Q7K1U0",-0.0512388958064811,16.7295905687708,-0.0700376262109497,0.945177768984616,0.999952130816504,-4.61549696459868 +"Q9VAV2",-0.0358106222751573,17.7770073601379,-0.0697350373318877,0.945414209099995,0.999952130816504,-4.61549787482552 +"Q9VXK7",-0.0396597133462109,17.9834694318269,-0.0696876293710378,0.945451253722028,0.999952130816504,-4.61549801707825 +"Q7JV69",-0.0753447539136509,16.0864231608568,-0.0691407715733446,0.945878578352439,0.999952130816504,-4.615499651 +"Q9VDC0",-0.0596823585225401,17.5856818272707,-0.0685498299679352,0.946340370353436,0.999952130816504,-4.61550140218602 +"Q9VQL1",-0.0381236531256128,20.1164799644593,-0.0680521754662984,0.946729278612752,0.999952130816504,-4.61550286528287 +"Q9W087",0.0549040554961167,16.7246504467441,0.0679456507370929,0.946812527658605,0.999952130816504,-4.61550317708066 +"A1Z6X6",-0.0228046026681383,18.5979924374458,-0.0678601177885309,0.946879372101732,0.999952130816504,-4.61550342708244 +"Q9VB17",-0.0358103095298645,15.5568922822991,-0.0676810975547683,0.94701927868996,0.999952130816504,-4.61550394931754 +"Q9VU45",0.0663877888107258,17.9204081413191,0.067600103953037,0.947082576817012,0.999952130816504,-4.61550418513818 +"Q7PLI0",0.0392398443534319,17.7699912144632,0.0670624403896791,0.9475027810993,0.999952130816504,-4.6155057434475 +"Q9W0H6",-0.0527244277772958,18.1889632352742,-0.0670468772152108,0.947514944547757,0.999952130816504,-4.61550578836916 +"P08928",-0.0289046993870876,22.7432001495385,-0.0668991935372081,0.947630367872753,0.999952130816504,-4.61550621412608 +"Q9VIG0",-0.0458767831320657,17.3843707622021,-0.066446908296623,0.947983862512517,0.999952130816504,-4.61550751218522 +"P38040",-0.0364043070577615,19.0923082309245,-0.0663742408115441,0.948040658635175,0.999952130816504,-4.61550771992099 +"Q8IMT3",0.064800689321368,14.7283433142183,0.0661772262566916,0.948194644564115,0.999952130816504,-4.61550828198772 +"Q9VP77",-0.0748406852767101,15.3939150863811,-0.0660974351193759,0.9482570096681,0.999952130816504,-4.61550850915066 +"P02572",-0.0426048612708776,26.5894244936808,-0.0659836748215566,0.94834592582745,0.999952130816504,-4.61550883254946 +"Q9V6B9",-0.0513742270732145,15.835220055815,-0.0657705111026129,0.948512538598067,0.999952130816504,-4.61550943703514 +"O97064",0.0490099131794501,16.4871097525208,0.0657631854563874,0.94851826450548,0.999952130816504,-4.61550945777434 +"Q7KSE4",-0.0223218489167643,13.8904074996149,-0.0657005667446184,0.948567208969798,0.999952130816504,-4.61550963495637 +"Q7KTH8",0.0231894157135919,17.6231166910845,0.0652294725403236,0.94893543574444,0.999952130816504,-4.61551096253035 +"Q8IP97",-0.0427447262113354,19.9744979220433,-0.0649533696822499,0.949151254841039,0.999952130816504,-4.61551173617114 +"Q9VFU7",-0.0226940899223109,14.8075584070783,-0.0646136173982,0.949416831968249,0.999952130816504,-4.61551268365963 +"Q9VE56",-0.0404709800396681,17.4883025703053,-0.0643774282043006,0.949601459720115,0.999952130816504,-4.61551333941085 +"Q9V535",0.0242230955752305,18.5823222582011,0.0642793227851679,0.949678149055172,0.999952130816504,-4.61551361108382 +"Q9V3Y4",-0.0843652565979855,14.0450196088911,-0.0634890888311747,0.95029589643987,0.999952130816504,-4.61551578430322 +"Q9W0K9",-0.0229989161991924,14.1863185174898,-0.0634673583904042,0.950312884188361,0.999952130816504,-4.61551584368468 +"Q9W125",-0.0388865807287466,21.3234296599641,-0.0633227489633788,0.95042593309079,0.999952130816504,-4.615516238333 +"P42207",0.0347049461630373,15.967188136115,0.0633044983633443,0.950440200637285,0.999952130816504,-4.61551628807614 +"O61491",0.0271700431239594,20.8940385255895,0.0633031299037983,0.950441270441739,0.999952130816504,-4.61551629180539 +"Q9VD58",-0.0350506393053891,22.723303572096,-0.0627641744513541,0.950862610987936,0.999952130816504,-4.61551775427365 +"Q9VEC2",-0.0435315202354758,16.7037995512201,-0.0626202592930379,0.950975122491739,0.999952130816504,-4.61551814267789 +"Q7JZW2",0.0269715876129624,20.5293995814445,0.0624590619352707,0.951101146346397,0.999952130816504,-4.61551857666658 +"Q9VL00",-0.0507726295085114,16.0278347843229,-0.0624176666756255,0.951133509318656,0.999952130816504,-4.61551868793397 +"Q7K2D2",0.036850447409833,20.3673150414135,0.0624052975151818,0.951143179592993,0.999952130816504,-4.61551872116705 +"O76902",-0.0234528708230961,17.1573340654868,-0.062395437162287,0.951150888474202,0.999952130816504,-4.61551874765484 +"Q9VM69",-0.0450959581262005,16.9184127574515,-0.0622325143163008,0.951278263238226,0.999952130816504,-4.61551918470791 +"P81900",-0.03821781596805,22.4006018444719,-0.062003309532268,0.951457460251009,0.999952130816504,-4.61551979763494 +"A1ZAA9",-0.0237456584132332,16.5042701766614,-0.0619447258301797,0.951503262632636,0.999952130816504,-4.61551995393381 +"Q9VHJ7",-0.0420229348400429,14.7063854097834,-0.0617972250014535,0.95161858370741,0.999952130816504,-4.61552034680626 +"Q9VNQ3",0.0553524512341799,15.1280996092294,0.0614564118859433,0.951885047093858,0.999952130816504,-4.61552125099288 +"A1Z934",-0.0367805804118504,19.3086869595412,-0.061212552638026,0.952075711159252,0.999952130816504,-4.61552189489254 +"Q9VL70",0.0333110751565329,23.5171025033037,0.0611594863845856,0.952117202004697,0.999952130816504,-4.61552203467286 +"Q9VDT5",0.0304685008275918,19.1426229559425,0.0610118981374917,0.952232597402771,0.999952130816504,-4.61552242279412 +"Q9VLP1",0.0323057278423988,18.4621904375678,0.0610030028408007,0.952239552438716,0.999952130816504,-4.61552244615666 +"Q9VBI3",-0.0414631313823861,18.6532424770965,-0.0608626993864813,0.952349253144918,0.999952130816504,-4.6155228141985 +"Q9VGR1",-0.0416001666676706,14.2078313203524,-0.060860686083017,0.952350827317413,0.999952130816504,-4.6155228194736 +"Q9VE94",-0.044158086424245,14.6606160445414,-0.0602240954258279,0.952848578571202,0.999952130816504,-4.61552447867879 +"Q24372",-0.0584876017860054,16.8294565976518,-0.0591578072455305,0.953682356764484,0.999952130816504,-4.61552721879969 +"Q9V9V4",-0.0402367402116539,18.6927859478668,-0.0588039392860956,0.953959074394824,0.999952130816504,-4.61552811735399 +"Q9VBL3",-0.0435412418786605,14.5593125494054,-0.0587722903221953,0.953983823549863,0.999952130816504,-4.6155281974558 +"P20351",0.0422267413845496,13.9802282331593,0.0586324928495988,0.954093144285427,0.999952130816504,-4.6155285507602 +"Q9VDC3",-0.0225925362900909,19.288996819041,-0.0585571307491745,0.954152077368214,0.999952130816504,-4.61552874087104 +"C0HK94",0.0324780685472597,18.4970903712499,0.0582326594494948,0.954405816763558,0.999952130816504,-4.61552955660274 +"Q9VDI3",0.045928752503249,15.0207989485163,0.0580279110674176,0.954565934438636,0.999952130816504,-4.61553006901678 +"P05389",0.0306092212016189,20.55224645321,0.0576377711553506,0.954871037954487,0.999952130816504,-4.61553104041017 +"Q9VV60",-0.037369133719789,20.0697244804291,-0.0568974580835195,0.955450009736302,0.999952130816504,-4.61553286568721 +"Q9VND7",-0.0410892693399667,14.0091250813291,-0.0560631466898808,0.956102525510859,0.999952130816504,-4.61553489446759 +"Q24050",-0.0410899316797462,16.6606765577379,-0.0554538706928519,0.956579061593222,0.999952130816504,-4.61553635711658 +"Q9W1G7",-0.0284087197967651,18.8732685071219,-0.0554195308519951,0.956605920500695,0.999952130816504,-4.61553643907863 +"Q9VC58",0.0630353577798868,13.1881916888592,0.0552829692148464,0.956712732731322,0.999952130816504,-4.61553676452083 +"Q9W078",-0.0357381644566814,19.4541925670275,-0.0552514004805478,0.956737424466297,0.999952130816504,-4.61553683963862 +"Q9VMC8",-0.0235068601204702,16.3714257367262,-0.0551536866124935,0.956813852433035,0.999952130816504,-4.61553707187702 +"Q9VMV5",-0.0325275670926359,17.6447550957462,-0.055064920055575,0.95688328254596,0.999952130816504,-4.61553728249414 +"O16158",-0.0254032779143962,21.2819987592901,-0.0540672494019338,0.957663650731839,0.999952130816504,-4.61553962636169 +"O44226",-0.0315014347239213,20.1990338654296,-0.053929249767474,0.957771596264899,0.999952130816504,-4.61553994719876 +"Q9VLT7",0.0253044764686052,18.0628744472653,0.0539089049543313,0.957787510377832,0.999952130816504,-4.61553999442938 +"P40797",0.0406255592150799,19.1225212539575,0.0534059748273209,0.958180918149238,0.999952130816504,-4.61554115632418 +"Q9VW58",-0.0437988058166052,14.8488714303648,-0.0534054011729254,0.958181366886251,0.999952130816504,-4.61554115764325 +"Q9VB79",0.0496420031956148,17.6592194840505,0.0531270637525815,0.958399096062499,0.999952130816504,-4.61554179598814 +"Q9W197",0.0277357761145396,17.3522986114581,0.0529285689006201,0.958554370578529,0.999952130816504,-4.61554224918447 +"Q7KTJ7",-0.0201357288566513,22.075959604189,-0.0526832937924629,0.958746241818944,0.999952130816504,-4.61554280684645 +"Q9V9U7",0.0374448078663043,17.7882386625905,0.0525834178308223,0.958824372502075,0.999952130816504,-4.61554303318473 +"O97422",0.0206586688542298,15.3903907593606,0.0524376133956475,0.958938432771068,0.999952130816504,-4.61554336283529 +"Q7JW03",-0.035661263740888,17.2129323501878,-0.0523601464911802,0.958999034161359,0.999952130816504,-4.61554353760884 +"Q9VCY3",0.0329653371834802,17.8691286842486,0.0522965087842099,0.959048817340779,0.999952130816504,-4.6155436809891 +"Q9VK69",0.0323635455803206,20.2924868230168,0.051973189787716,0.959301749491054,0.999952130816504,-4.61554440675838 +"Q9V3W9",-0.0292335131880961,18.5411635798691,-0.0519555419384042,0.959315555518665,0.999952130816504,-4.61554444624389 +"Q9VAN1",-0.0525968537315435,14.8729687184041,-0.051932537007719,0.959333552446364,0.999952130816504,-4.61554449769528 +"Q9VII5",0.0300590318961049,17.3360605858406,0.0519257051954723,0.959338897028138,0.999952130816504,-4.6155445129705 +"Q9VJD1",-0.0363094606505072,18.5680685718679,-0.0518099480733329,0.959429455066641,0.999952130816504,-4.61554477148608 +"P55830",0.0237913221584876,22.0510037167304,0.0513822846758866,0.959764025773642,0.999952130816504,-4.61554572156965 +"Q86BL4",-0.0334456008049386,14.9474631401491,-0.0512875866291038,0.959838111257321,0.999952130816504,-4.61554593088373 +"Q9VC31",-0.0434026586386018,17.6703172668165,-0.0509589729081575,0.960095199871191,0.999952130816504,-4.61554665423648 +"P45594",0.0265588304425286,23.0619737086395,0.0505813256051078,0.960390655262913,0.999952130816504,-4.61554747978538 +"Q7JXF5",-0.0356359667108102,18.4948445421339,-0.0490329555395658,0.961602097807094,0.999952130816504,-4.61555080041428 +"O97454",0.0520334737322692,14.1308126079679,0.048888686731758,0.961714978591601,0.999952130816504,-4.61555110455905 +"Q6NL44",0.0337109836215905,15.2072467662662,0.0485841042206196,0.961953297030884,0.999952130816504,-4.61555174373281 +"Q7JYZ9",-0.041322878801207,18.1240655102936,-0.0484535376895027,0.962055459053063,0.999952130816504,-4.61555201650745 +"Q9W4P5",-0.020470800824171,19.5290124332349,-0.0483356172417662,0.962147726720093,0.999952130816504,-4.61555226223195 +"P36951",-0.0230761012720002,20.3451023317773,-0.0483035583857008,0.962172811490584,0.999952130816504,-4.61555232893326 +"Q9I7X6",-0.0288973633508149,14.7517624859443,-0.048037193767295,0.962381232742235,0.999952130816504,-4.61555288141834 +"Q24400",-0.0296969732578063,21.4843106957728,-0.0476078151443176,0.962717212923655,0.999952130816504,-4.6155537655945 +"P32234",-0.0217385765579365,16.7810155378058,-0.0470878798674124,0.963124061733036,0.999952130816504,-4.61555482562509 +"Q7JZN0",0.0283131085799155,16.7984817244563,0.0466237816770743,0.963487227111878,0.999952130816504,-4.61555576199031 +"Q9VVP9",0.0348324068191452,16.7611578186317,0.0457157238909251,0.964197823359615,0.999952130816504,-4.6155575672794 +"Q9VTP4",0.0274094287410058,20.9552069546097,0.0457096972788962,0.964202539562262,0.999952130816504,-4.61555757914224 +"Q9VG76",-0.0231888588256872,15.7933645858691,-0.0457024806038656,0.964208187065829,0.999952130816504,-4.61555759334555 +"Q9W0H3",-0.0226703664955323,16.6836540184876,-0.0453925174077721,0.964450754707001,0.999952130816504,-4.61555820127608 +"Q9VES8",-0.0533724590282532,18.001847587605,-0.044648674181793,0.965032878374374,0.999952130816504,-4.61555964330808 +"Q9W415",-0.0369796253582528,16.7128460611548,-0.044401625667863,0.965226220476683,0.999952130816504,-4.61556011697456 +"P05812",-0.0364288049549799,15.7772960328485,-0.044358461574506,0.965260001268169,0.999952130816504,-4.61556019946359 +"Q9VZV2",0.0186108160129397,14.9861560780801,0.0441546910144185,0.965419475744952,0.999952130816504,-4.61556058779789 +"Q9VX02",0.0301754425412284,17.1891716443502,0.0439140874958365,0.965607778334001,0.999952130816504,-4.61556104402562 +"Q9VER6",-0.0336422398910674,15.0511555403211,-0.0434293502020089,0.965987152854022,0.999952130816504,-4.61556195560904 +"Q9VHN4",-0.0284008055998655,14.6084352814224,-0.0432907677497161,0.96609561452506,0.999952130816504,-4.61556221436449 +"Q8IH23",0.0478701160620396,18.2371435558429,0.0428266677301524,0.966458847861251,0.999952130816504,-4.61556307489384 +"Q9VZS3",-0.0251315005600006,18.4145280439848,-0.0427092211023015,0.966550770076774,0.999952130816504,-4.61556329119233 +"Q95T12",-0.030008302265756,15.8989199770747,-0.0425087280818317,0.966707691541031,0.999952130816504,-4.6155636590635 +"P53501",-0.0332314917507119,24.6324574917877,-0.0424958729209281,0.966717753040913,0.999952130816504,-4.61556368259155 +"Q7K0B6",-0.0151628781392468,20.2340549820899,-0.0424063047812036,0.966787856553206,0.999952130816504,-4.61556384632546 +"Q9NCC3",0.0241153203348041,17.3364694238296,0.0423298545206746,0.966847693142872,0.999952130816504,-4.61556398580626 +"A0A6H2EG56",-0.0258496689728105,20.9355944385446,-0.0422479640981767,0.966911787904538,0.999952130816504,-4.61556413493341 +"Q9VQ35",-0.0435830720369985,12.1729358053235,-0.0421571585831053,0.966982860692411,0.999952130816504,-4.61556429995797 +"O62619",0.0194037455618563,22.1165455102714,0.0418484080174123,0.96722451959833,0.999952130816504,-4.61556485840815 +"Q9VWU1",0.0144918902395812,14.9205996195723,0.0417664278680933,0.967288685982145,0.999952130816504,-4.61556500599976 +"Q7JVH6",0.0228412442355719,18.948579146766,0.0416797377893105,0.967356539114123,0.999952130816504,-4.61556516175614 +"Q9VEB3",0.0363539738066301,12.4236151617691,0.041223281548953,0.967713815990698,0.999952130816504,-4.61556597653728 +"Q9VNX4",-0.0200479178262647,20.8624862759392,-0.0407145734093537,0.968111999906613,0.999952130816504,-4.61556687402232 +"Q9VLG9",0.02759441117378,15.7693409399335,0.0405942257263437,0.968206201607992,0.999952130816504,-4.61556708471567 +"Q9VHL2",-0.0242135553557574,20.676355922656,-0.039660574939012,0.968937029954154,0.999952130816504,-4.61556869808453 +"M9NFC0",0.0293113154960736,19.9614587488786,0.0392445079825272,0.969262721637573,0.999952130816504,-4.61556940497112 +"Q9VKK1",-0.0178623480159548,14.5076402574444,-0.0390623971852092,0.969405277348198,0.999952130816504,-4.61556971202795 +"Q9VAY2",-0.0194985870319648,21.1514561755768,-0.0385038722068244,0.96984249555968,0.999952130816504,-4.61557064485321 +"Q0E8X7",0.0292093048457751,21.048314766439,0.0380004658685733,0.970236575069208,0.999952130816504,-4.61557147411581 +"B7Z0N0",0.0270169605448576,13.0781479286455,0.0378075561257462,0.970387591958018,0.999952130816504,-4.61557178900542 +"Q9VH07",0.0222764293032576,18.2262097601556,0.0377205633598071,0.970455693502956,0.999952130816504,-4.61557193048099 +"Q9VYT0",-0.0132196564084559,18.2173821959271,-0.0375977881369438,0.970551807447035,0.999952130816504,-4.61557212959494 +"Q9VFR0",0.0315265851937099,15.4243010247806,0.0375764319725271,0.970568526057824,0.999952130816504,-4.61557216416361 +"Q9VEP6",-0.0212112742799206,18.6817046023052,-0.0375452504696457,0.970592936431917,0.999952130816504,-4.61557221460104 +"Q4V6M1",-0.0243279127882126,18.234967558562,-0.0369972364526756,0.971021953037423,0.999952130816504,-4.61557309420565 +"Q7K1C3",-0.0267303220886781,17.1438550203407,-0.0369428910867146,0.971064498198162,0.999952130816504,-4.61557318072954 +"O18332",0.0175127767686796,20.5568128213487,0.0369233452621485,0.971079799989796,0.999952130816504,-4.61557321181759 +"Q9W1F7",0.0183857232082367,20.3034580215084,0.0366765014639577,0.971273047005043,0.999952130816504,-4.61557360301256 +"Q9VF77",0.0226411051848139,15.7100788418394,0.0363546117260315,0.971525048178351,0.999952130816504,-4.61557410919896 +"Q9VP18",0.010230823787694,17.1579286425541,0.0362913906775974,0.971574543071981,0.999952130816504,-4.61557420809291 +"Q9VD00",-0.0186927349236008,17.9384969835199,-0.0360630579130741,0.971753302681811,0.999952130816504,-4.61557456383105 +"Q9VJ31",0.0268849539468192,17.1791415545383,0.0360506619715029,0.971763007395127,0.999952130816504,-4.61557458307947 +"Q9VGF3",0.0301998036530637,15.6960178483474,0.0359634953039176,0.971831249822916,0.999952130816504,-4.61557471824502 +"Q9VUK8",0.0195567002026564,20.7392465972482,0.0358719211096231,0.971902943132598,0.999952130816504,-4.61557485989283 +"Q8MRM0",-0.0271619226258117,18.6197688055569,-0.0357690409154532,0.971983488195304,0.999952130816504,-4.61557501859824 +"Q9VVJ7",-0.0247792088846346,18.2086405809315,-0.0353886724920137,0.972281281975287,0.999952130816504,-4.615575601407 +"Q7KND8",-0.0140071991564916,15.4939763675453,-0.0351703886664434,0.972452180245259,0.999952130816504,-4.61557593305341 +"Q8SY96",-0.016287990210575,18.7296309039022,-0.034722222913166,0.972803061547546,0.999952130816504,-4.61557660753847 +"Q9VAY3",-0.0172591983259647,13.8129716146475,-0.0346162526804942,0.972886029418425,0.999952130816504,-4.61557676575862 +"Q9V4C8",-0.0156481037502481,17.2340145273717,-0.0344430082080144,0.973021669391562,0.999952130816504,-4.61557702338215 +"Q966T5",0.0143066225780402,16.5305596843363,0.0337845935388918,0.973537176252204,0.999952130816504,-4.61557799069194 +"Q9VEJ3",0.0148053491916684,19.9898526559333,0.0337794969453628,0.973541166686889,0.999952130816504,-4.61557799810681 +"Q9VXF9",-0.0224371835683819,17.5272621582586,-0.0337055471667374,0.973599066572833,0.999952130816504,-4.61557810556808 +"Q9VDV3",-0.0301447231173562,17.5897987104993,-0.0335746166613803,0.973701580597069,0.999952130816504,-4.61557829525433 +"Q8SZ63",-0.0110112114616605,14.0690890005505,-0.0334616838474575,0.973790003444428,0.999952130816504,-4.6155784582735 +"Q9VZG2",0.018259512209525,21.9298238335844,0.0326304748287912,0.974440824959745,0.999952130816504,-4.61557964123504 +"Q7K084",0.020438400027583,23.7579607001931,0.0326019857745082,0.974463131708606,0.999952130816504,-4.61557968125291 +"Q9VY92",-0.0224229280165886,21.3461480520954,-0.032477817830144,0.974560354681078,0.999952130816504,-4.61557985526052 +"Q9VKJ4",0.0301439169176785,15.1079244434305,0.0323252951637909,0.974679779855931,0.999952130816504,-4.61558006809566 +"Q9VW59",-0.0154587046170036,19.68972059136,-0.0319752802933478,0.974953843715986,0.999952130816504,-4.6155805527314 +"Q9VTV9",-0.0151812695229978,17.2447995753615,-0.0318185621195966,0.975076556107389,0.999952130816504,-4.61558076801612 +"Q9VGE7",-0.011423272021533,13.9940519890456,-0.0317138660800742,0.97515853484948,0.999952130816504,-4.61558091124854 +"P91926",-0.0165399355122098,17.6558806581874,-0.0315343063922278,0.97529913375416,0.999952130816504,-4.61558115580154 +"Q9W0R0",-0.0206447173891746,16.8037676154505,-0.0313320619276982,0.97545749632526,0.999952130816504,-4.61558142958798 +"P08120",0.0124207796672273,18.2136657200855,0.0309488840934807,0.975757537284065,0.999952130816504,-4.6155819434821 +"Q9W1H6",-0.0194141664209901,17.1851750214809,-0.0306076770637394,0.976024716925479,0.999952130816504,-4.61558239576667 +"Q7KQM6",0.0110081469668,15.1693562183869,0.0299487683754644,0.976540678945948,0.999952130816504,-4.61558325499178 +"Q9Y112",-0.0167587234739273,22.2276088513127,-0.0294934676585133,0.976897211038313,0.999952130816504,-4.61558383778825 +"Q9VH37",-0.0259111631557296,16.6634989209646,-0.0293735942996202,0.976991081063871,0.999952130816504,-4.61558398974484 +"Q9VI53",-0.0166949794716302,16.3648143169684,-0.0288744748895322,0.977381933604495,0.999952130816504,-4.61558461579859 +"Q24298",-0.0196565758582494,19.3917982974124,-0.0288455692149149,0.977404569368714,0.999952130816504,-4.61558465172686 +"Q9VUQ7",-0.0149500369871163,16.5355925385857,-0.0285808745804028,0.977611850207777,0.999952130816504,-4.61558497905562 +"O97479",0.0139318322703623,17.8277819582208,0.0282668465659841,0.977857765912755,0.999952130816504,-4.61558536347882 +"P55828",-0.0203910292693763,19.9615133989608,-0.0279030722876071,0.97814264090186,0.999952130816504,-4.61558580349142 +"Q9I7I3",0.0220450937776011,14.5419573289251,0.0264595484123782,0.979273107941214,0.999952130816504,-4.6155874933749 +"Q9VN44",-0.0209917068034038,19.550726434416,-0.0262961568198008,0.979401067786424,0.999952130816504,-4.61558767899895 +"A8DZ14",0.0198817988506583,19.4869535697205,0.0261631695198153,0.979505216997767,0.999952130816504,-4.61558782923304 +"Q9VKZ8",-0.0155639261457985,18.6705002164307,-0.0261436835746929,0.979520477478784,0.999952130816504,-4.6155878511821 +"Q86BI3",-0.0150976913017686,18.0558199144984,-0.0259978387599742,0.979634696582124,0.999952130816504,-4.61558801494322 +"Q9VQV7",-0.0132477441788481,16.282765316873,-0.0256967774237774,0.979870475755181,0.999952130816504,-4.61558835009162 +"Q9W3N9",-0.0161028929967237,20.2228251740243,-0.0254174949101771,0.980089200377799,0.999952130816504,-4.61558865750565 +"Q7JUN9",0.00965799835391223,13.6088706833193,0.0242248364218217,0.981023268709803,0.999952130816504,-4.6155899325002 +"P02515",-0.00932824833737556,18.0272522157987,-0.0241891824819559,0.981051192676829,0.999952130816504,-4.6155899696726 +"Q9VZS1",0.0182219252363183,15.44918855086,0.0241401598298172,0.981089586986999,0.999952130816504,-4.6155900206937 +"A1Z9J3",0.0105146814507933,17.7153965508791,0.0238672418794531,0.981303335928341,0.999952130816504,-4.61559030284552 +"Q9VDK7",-0.0115601617366785,17.868203658519,-0.0238341216554513,0.981329275741555,0.999952130816504,-4.61559033686809 +"Q95SH2",0.00907135668009573,18.743613331027,0.0237643020071428,0.981383958675422,0.999952130816504,-4.61559040843518 +"Q95029",0.0126754140699248,21.8502948204478,0.0235968612133554,0.981515099145714,0.999952130816504,-4.61559057921131 +"Q9U5L1",-0.0163235724226674,17.6899626943884,-0.0233856013976395,0.981680559686799,0.999952130816504,-4.61559079295669 +"Q8SXY6",0.0161715579514166,19.0626310953736,0.0229641038539847,0.982010682874014,0.999952130816504,-4.61559121367075 +"Q24319",0.0291244843590022,16.2418447735978,0.0227417599354536,0.982184827345608,0.999952130816504,-4.61559143251901 +"Q9W3T7",-0.00944424756185924,17.4244787366653,-0.0227361161610158,0.982189247681754,0.999952130816504,-4.61559143804634 +"Q9VLM9",0.0253982112778601,18.4109476342477,0.0225327338875488,0.982348541840428,0.999952130816504,-4.6155916363173 +"Q0KI98",0.0135110380530392,16.5736958257179,0.0224507590943327,0.982412746800998,0.999952130816504,-4.61559171572826 +"Q7KUK9",0.0209135895076038,18.4059822837087,0.0222913978892234,0.982537563335446,0.999952130816504,-4.61559186927719 +"Q3YMU0",-0.00914652292466656,23.1756471033597,-0.0222322946955116,0.98258385487242,0.999952130816504,-4.61559192594673 +"Q9VTB0",0.0159607482197188,17.0719497556874,0.0219616815109486,0.982795808720705,0.999952130816504,-4.61559218349584 +"Q9VQG4",0.0128549393544972,19.1410783423487,0.0219542561280423,0.982801624563202,0.999952130816504,-4.61559219051831 +"Q9VEA5",-0.0263817713173573,15.6796529519836,-0.0218084213754882,0.98291584809754,0.999952130816504,-4.61559232795843 +"Q9VPQ2",0.0215790481703806,16.450678314247,0.0217054259029597,0.98299651845192,0.999952130816504,-4.61559242447338 +"Q0E8C8",-0.0187180417120381,17.5555792352133,-0.0213495981305067,0.983275219103375,0.999952130816504,-4.61559275439688 +"Q9VQ29",-0.00858064152913585,22.1334841923043,-0.0211975650165836,0.983394299114721,0.999952130816504,-4.61559289369943 +"A1ZA83",0.0134954443874093,17.0412049820456,0.0210275621343215,0.983527454443538,0.999952130816504,-4.6155930482882 +"Q8MRT7",0.00951723062047094,15.4279724275468,0.0206173799411793,0.983848733119746,0.999952130816504,-4.61559341615492 +"Q9VZY0",0.0104392110752123,17.2247539041416,0.0201081052233246,0.98424763090585,0.999952130816504,-4.61559386280868 +"Q9W254",-0.0105846457421777,18.1696768350023,-0.019142485712902,0.985003980189325,0.999952130816504,-4.61559467902762 +"P56538",0.00830270229592855,17.0421064613243,0.0185433844351029,0.985473251104205,0.999952130816504,-4.61559516525019 +"Q9VDQ3",-0.0198625325280037,13.4949194693472,-0.0184795407298172,0.985523259666392,0.999952130816504,-4.61559521615349 +"Q9VZZ6",-0.0114540866577215,18.3815062598743,-0.0179148663725515,0.985965569945479,0.999952130816504,-4.61559565873221 +"Q9V595",-0.0092416584114261,18.5426215206405,-0.0179138612923532,0.985966357230646,0.999952130816504,-4.61559565950772 +"Q9VS97",-0.00686807505341314,15.1478379820658,-0.017752438562456,0.986092800790966,0.999952130816504,-4.61559578349622 +"Q9VXG4",-0.00954626419870763,19.9886837410907,-0.0175305503802331,0.986266607999479,0.999952130816504,-4.61559595209661 +"Q9VZ66",0.0122418052982738,17.0908612288253,0.0175166151817441,0.986277523602639,0.999952130816504,-4.61559596261443 +"Q02748",0.014344185633675,19.5173087709989,0.017400749475367,0.986368282669452,0.999952130816504,-4.61559604974204 +"Q9V3Z4",0.0114756949016801,18.7245885246524,0.0172256138768278,0.986505468961437,0.999952130816504,-4.61559618034141 +"Q9W3C4",0.00788558239062098,14.8131268864973,0.0171194737941614,0.986588610266792,0.999952130816504,-4.61559625884764 +"Q6NP72",-0.0100188587109962,18.7140377572829,-0.0167175181822386,0.986903470294267,0.999952130816504,-4.61559655175512 +"Q9V9U4",-0.0126729728659427,15.9402067313149,-0.0164732312990557,0.987094826304074,0.999952130816504,-4.61559672636888 +"Q9VMG0",0.0282456321789972,14.7847545367734,0.0162027278880755,0.987306719337761,0.999952130816504,-4.61559691672328 +"Q9VWW2",0.00948694389416715,15.3004629785109,0.0161727840098433,0.98733017529283,0.999952130816504,-4.61559693760118 +"Q9VDF4",-0.0102483433246086,18.6836790565405,-0.0156120119284245,0.987769447431565,0.999952130816504,-4.61559732145734 +"Q9VZ20",0.00692572584910423,18.7079031391731,0.0149983697429639,0.988250139272363,0.999952130816504,-4.6155977259846 +"Q02910",-0.0107147410030102,16.3663056775869,-0.0149714729038956,0.988271208812406,0.999952130816504,-4.61559774334461 +"Q9VHK6",-0.00849798331957885,18.0698912231983,-0.0147125945950702,0.988474000647434,0.999952130816504,-4.6155979088392 +"Q07093",0.00525214845497324,14.5640487446979,0.0145488800734734,0.988602246537949,0.999952130816504,-4.61559801200803 +"E1JJH5",0.00897297677325781,21.2263789734344,0.0140974164849644,0.988955902558148,0.999952130816504,-4.61559829052834 +"Q9VD26",0.00450691698662453,16.2283754929761,0.013780104620013,0.989204471676051,0.999952130816504,-4.61559848103353 +"Q9V4E0",-0.00722013399691335,18.3766346856715,-0.0134205486392981,0.989486134512112,0.999952130816504,-4.61559869165991 +"Q9VRL2",-0.0114286819247411,12.2818501016443,-0.0131413577947636,0.989704843285475,0.999952130816504,-4.61559885136834 +"Q9VIT0",-0.0140914098825853,16.4487148570414,-0.0131320365620622,0.989712145242491,0.999952130816504,-4.61559885664255 +"Q9U4G1",0.00629170519393796,19.2376226359685,0.0128578953089013,0.989926899200719,0.999952130816504,-4.61559901008568 +"Q86PD3",-0.00748465057896652,18.8776454887587,-0.0125106404969197,0.990198929271443,0.999952130816504,-4.61559919980523 +"Q7JVZ8",-0.0184968365452534,16.1115628249007,-0.0124207441366778,0.990269351867889,0.999952130816504,-4.61559924807301 +"O15943",0.00580114304581869,20.1570243085285,0.012357556543638,0.990318851523895,0.999952130816504,-4.61559928179181 +"Q7JZF5",0.00586181374081463,16.9374722392407,0.0122775883902243,0.990381496730819,0.999952130816504,-4.6155993242187 +"Q9VCU0",-0.0104702399817427,17.3198988389872,-0.0121737023974485,0.990462878719941,0.999952130816504,-4.61559937892381 +"Q9VTZ5",-0.00673215891297474,18.0265069793204,-0.0118065060879208,0.990750533066397,0.999952130816504,-4.61559956855979 +"Q9V470",-0.00647771226299554,19.9184307174943,-0.0114757751031154,0.99100962234339,0.999952130816504,-4.61559973439258 +"Q9VGL0",-0.0107309537446181,12.9817895954054,-0.0113323548977454,0.991121975730586,0.999952130816504,-4.61559980484085 +"Q9VPX5",-0.00721754159174282,18.7850094486542,-0.0112299099807552,0.991202229768874,0.999952130816504,-4.61559985461956 +"A1Z7P1",0.0143175853314368,14.5626808437876,0.0111774795220143,0.991243303158354,0.999952130816504,-4.61559987992102 +"Q9V431",-0.00635192559256481,18.5914723815647,-0.0108867579446033,0.991471051403673,0.999952130816504,-4.61560001806662 +"Q9W2N0",0.00958567346415151,16.0128596507884,0.0104484567545647,0.991814413430737,0.999952130816504,-4.61560021945806 +"Q9VEK8",-0.0050753103622263,18.8914527004802,-0.0103955812708616,0.991855835823119,0.999952130816504,-4.61560024319408 +"Q9VZ49",-0.0036620652974797,18.8729330376129,-0.0103395677985204,0.991899716526927,0.999952130816504,-4.6156002682074 +"Q0E9B7",0.00809952576193318,12.8808469945841,0.0101170197674729,0.992074059927472,0.999952130816504,-4.61560036625317 +"P16378",0.00691542596874939,20.3758154643692,0.00990143155769983,0.992242951428548,0.999952130816504,-4.61560045919852 +"Q9VDU7",-0.00399454010227984,18.3638885594964,-0.00963400255477121,0.992452455470934,0.999952130816504,-4.61560057171187 +"Q95SN8",0.00252944908751473,17.6791519622537,0.00932544509595193,0.992694180289195,0.999952130816504,-4.61560069770143 +"Q9V3I2",-0.00623517862582901,17.3672788027116,-0.00931872773598922,0.992699442697084,0.999952130816504,-4.61560070039864 +"P25455",0.00566454189542043,15.7575198147575,0.00914041845014666,0.99283913106579,0.999952130816504,-4.61560077128435 +"Q9VN71",0.00507245446576121,18.6240608402028,0.0090049359733629,0.992945268865914,0.999952130816504,-4.61560082422898 +"Q9VC67",0.00528792130944211,15.1965979412645,0.00899501425434365,0.992953041606703,0.999952130816504,-4.61560082807518 +"Q9VK18",0.00620207364720038,14.6294647309995,0.0089551077183499,0.99298430466041,0.999952130816504,-4.6156008435023 +"Q9V4Q8",0.00519840932704341,16.9113294736479,0.00859613708713141,0.993265525244891,0.999952130816504,-4.61560097919 +"Q0E8E8",0.0048457546628029,21.4536430494742,0.00833024594182589,0.993473827186815,0.999952130816504,-4.61560107611638 +"O77430",-0.00451915006362924,19.5373224650511,-0.00823222850528536,0.993550615211417,0.999952130816504,-4.6156011110789 +"Q9VXJ7",0.00295871425714012,15.0051528400174,0.00776639504454611,0.993915555575799,0.999952130816504,-4.61560127158359 +"Q9VCU6",-0.00300710857846731,15.4516023804583,-0.00763797495350129,0.994016161900821,0.999952130816504,-4.61560131418772 +"Q9VA41",0.00395254592240946,17.4324026741286,0.00757690091913478,0.994064008299992,0.999952130816504,-4.61560133420015 +"Q9VFM0",0.00624396168276142,14.33603732904,0.00696357557578392,0.994544498708201,0.999952130816504,-4.61560152626358 +"Q9VLV5",0.00284564134480547,17.5039710220412,0.00688685135334342,0.994604606040878,0.999952130816504,-4.61560154914964 +"Q9VS02",0.00365502229117354,17.9616159832086,0.00578426100808645,0.99546840155491,0.999952130816504,-4.61560185003763 +"Q9VL66",-0.00355459534328872,15.7189399012843,-0.00510675702229867,0.995999177303707,0.999952130816504,-4.6156020089497 +"P08736",-0.00270463755130379,24.3699934166779,-0.00508731118928593,0.996014411748599,0.999952130816504,-4.61560201321895 +"Q9VLS5",-0.00167155088650439,14.6780688885057,-0.00457061218794475,0.996419209712343,0.999952130816504,-4.61560212069169 +"P40417",-0.00243913563164355,19.7961244445676,-0.00425390443502617,0.99666732886683,0.999952130816504,-4.61560218088204 +"Q9V438",-0.00296473934280428,19.0222288769153,-0.00417300198392774,0.99673071053694,0.999952130816504,-4.61560219556478 +"P02283",0.00289284719885075,21.6011912000646,0.00407679489491,0.996806082399112,0.999952130816504,-4.61560221265815 +"P22769",0.00164596211017098,20.147907257704,0.00395221826241593,0.99690367996073,0.999952130816504,-4.61560223419966 +"Q8T9B6",-0.00228568391262485,19.5370696800698,-0.00390881960818328,0.996937679951458,0.999952130816504,-4.61560224154706 +"Q9VXP4",-0.00328259174884948,18.0205955043369,-0.00354092709151121,0.997225899779199,0.999952130816504,-4.61560230057261 +"A0A6H2EGA2",-0.00331949021691358,15.8592852899924,-0.00340738177949835,0.997330523935872,0.999952130816504,-4.61560232055675 +"P25171",-0.00145069914556828,16.81352000244,-0.00289803033421047,0.997729568461997,0.999952130816504,-4.61560238972532 +"Q9W073",0.00192614953945203,14.5521392928729,0.00288782568005662,0.997737563167612,0.999952130816504,-4.61560239099691 +"Q9VW40",-0.0014614152595982,14.6574098236884,-0.00281210376939491,0.99779688653666,0.999952130816504,-4.61560240029232 +"Q9VGS3",-0.00118769695006549,19.1969716511432,-0.00273461134417544,0.99785759700688,0.999952130816504,-4.61560240954938 +"Q9VQF7",-0.00141314544399052,18.6958601972766,-0.00265903939621579,0.997916802916538,0.999952130816504,-4.61560241832791 +"A0A0B4KH34",-0.0010675549263226,23.4059105493331,-0.00246859711611569,0.998066002625596,0.999952130816504,-4.61560243935884 +"A1Z8D0",0.00348197047848764,13.861301960269,0.00222588673161323,0.998256151259417,0.999952130816504,-4.6156024638977 +"A1Z6S7",0.000661246071100408,17.5729393272358,0.00221165450798223,0.99826730133338,0.999952130816504,-4.61560246525787 +"Q9VZ19",-0.00120376062119121,20.4015991480078,-0.00200724652965789,0.998427442482807,0.999952130816504,-4.61560248383058 +"Q9VGR2",-0.00172952158109396,15.6857557068526,-0.00195576312853263,0.998467776590263,0.999952130816504,-4.61560248822469 +"Q9VH19",-0.00122036884473786,13.9753052030461,-0.00182869911931643,0.998567323516794,0.999952130816504,-4.61560249858099 +"Q9W257",0.00071644678218874,17.0489607928035,0.00180850260067649,0.998583146263658,0.999952130816504,-4.61560250016305 +"Q9VQR9",0.00112544658415104,16.3278308197624,0.0017597866950814,0.998621312222233,0.999952130816504,-4.61560250390682 +"Q9W1W4",-0.000683026173895485,17.296233356857,-0.00151900447666049,0.998809950542353,0.999952130816504,-4.61560252090946 +"Q9VHA8",-0.000699213285756173,18.6068897557647,-0.00135038751123183,0.998942051791741,0.999952130816504,-4.6156025313295 +"P54397",-0.00110050331422862,14.8187407695473,-0.00120891835794707,0.999052884388439,0.999952130816504,-4.61560253912713 +"Q9W404",-0.000753426520876843,15.9772601883845,-0.000881057424282006,0.999309743840019,0.999952130816504,-4.61560255388451 +"Q8SYD0",-0.000590441500261107,15.4602411489596,-0.000698915239018446,0.999452441395336,0.999952130816504,-4.61560256008232 +"Q9VMB3",-0.000184662290504178,18.720425284667,-0.000439223552382494,0.999655894399256,0.999952130816504,-4.61560256644781 +"Q9V8M5",0.000124550934526013,19.8509275908819,0.000407403158861502,0.999680823788615,0.999952130816504,-4.61560256702801 +"P05031",9.85850438599556e-05,13.2764304528713,0.000296932861350352,0.999767370711348,0.999952130816504,-4.61560256870374 +"Q9VL68",-2.16626279936349e-05,20.8041513755318,-6.11012202870561e-05,0.999952130816504,0.999952130816504,-4.6156025705222 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_Earth_significant.csv new file mode 100644 index 0000000..c4e1d63 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_Earth_significant.csv @@ -0,0 +1 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_SFug_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_SFug_results.csv new file mode 100644 index 0000000..1d94004 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_SFug_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P05031",-0.600737922214011,13.5768487065002,-1.95217816961223,0.0715148763920987,0.999843076742056,-4.55128750305162 +"Q9V3B6",0.594917757195388,13.0781141518043,1.84861520636149,0.0860565711593825,0.999843076742056,-4.55662339159561 +"P54185",0.471733552013703,17.3904454196719,1.6488924775176,0.121744138435641,0.999843076742056,-4.56670829089967 +"Q9VGZ3",0.462751159582542,16.8117178220821,1.53427050763136,0.147571709391754,0.999843076742056,-4.57231676470317 +"Q9NBD7",-0.421640914681127,13.2902882378235,-1.44017792391902,0.17212271922034,0.999843076742056,-4.57679057824636 +"Q95RQ8",-0.789408978528503,14.4166742815928,-1.39237816496141,0.185844197576179,0.999843076742056,-4.57901100604851 +"Q9V4E7",-1.39747885563373,15.6676851137624,-1.37973493579465,0.189620426831431,0.999843076742056,-4.57959191563399 +"Q9NHE5",-0.394919985818973,15.7155782002885,-1.37681156731667,0.190502454971542,0.999843076742056,-4.57972583977808 +"Q9VND8",-0.633577190924004,18.5628870706478,-1.36772398466138,0.193265777883053,0.999843076742056,-4.58014119999498 +"P06002",-1.09562743848828,17.0500392303794,-1.26550853712547,0.226644286446535,0.999843076742056,-4.58470770438987 +"Q9V3A8",-0.342503694816203,15.7274690398777,-1.13152904217899,0.277117809626822,0.999843076742056,-4.59036580806533 +"Q27272",0.434741228952591,15.6523296838131,1.11025253531215,0.285866612093362,0.999843076742056,-4.59122638550189 +"Q23970",0.394229104390504,21.3776136121115,1.10711175992634,0.287175484562327,0.999843076742056,-4.59135248655344 +"O76902",-0.404527458849039,17.3478713594998,-1.05233740423923,0.310727811842206,0.999843076742056,-4.59351188285272 +"Q9VYT6",-0.318767599600452,16.4267362639587,-1.04710364895174,0.31305056530944,0.999843076742056,-4.59371419095582 +"Q9VG42",-0.474817725839372,16.0257582189727,-1.02450471305305,0.323225807541842,0.999843076742056,-4.59457945400423 +"Q7K148",-0.270125567296517,17.0263355031883,-0.994509405887462,0.33709828131387,0.999843076742056,-4.59570672745772 +"Q7JUS9",-0.615235252753283,20.5856564155254,-0.985308388298509,0.341437817184537,0.999843076742056,-4.59604757896567 +"Q9VKC8",-0.299453100246946,17.8701071716264,-0.964509518609855,0.351393304496649,0.999843076742056,-4.59680936894746 +"Q0E8E8",-0.567182386897635,21.7396571202544,-0.960788471301107,0.353195770368863,0.999843076742056,-4.59694437210251 +"Q9VAJ9",-0.504196945167958,17.8432400985038,-0.95646825140232,0.355296614912042,0.999843076742056,-4.59710061997729 +"Q6WV19",0.284827393721692,13.5433889470794,0.922417271946167,0.372161322512873,0.999843076742056,-4.5983133245515 +"Q9VU68",-0.591940801372402,19.3781374414581,-0.921871003858338,0.37243630896077,0.999843076742056,-4.59833250444785 +"Q27377",0.363700724426185,19.965285208799,0.918974874725839,0.373896531865128,0.999843076742056,-4.59843404310488 +"O17444",-0.403198452368509,15.578379621077,-0.917872057624023,0.374453604151857,0.999843076742056,-4.59847264304366 +"Q7JYX5",-0.429588638333634,15.1085925690954,-0.913784417448235,0.376523390966819,0.999843076742056,-4.59861540213941 +"Q9VNZ3",-0.536785104036658,15.5226752267684,-0.908043476385138,0.379443556521406,0.999843076742056,-4.59881506634942 +"Q9V3V0",0.283356624659209,14.3756420635418,0.898496659953235,0.384333801813122,0.999843076742056,-4.59914492173465 +"P54195",0.429188729034781,18.7595851188612,0.89803194281854,0.384572937500213,0.999843076742056,-4.59916090875324 +"A1Z8Y3",0.238586964235274,14.9650823459668,0.874921110862462,0.396592882434949,0.999843076742056,-4.59994773536275 +"Q9VGE7",0.298063089424527,13.8393088083226,0.874768791801577,0.396672932054747,0.999843076742056,-4.59995286736178 +"Q7JUN9",0.422973059543233,13.4022131527247,0.865644090388881,0.401488083972145,0.999843076742056,-4.60025900369966 +"Q9VM10",-0.390897980526901,17.1738876695003,-0.854512894736677,0.407414663947904,0.999843076742056,-4.60062898514033 +"Q9VAU6",-0.251599153541683,13.3691578356129,-0.840234376103683,0.415101430013833,0.999843076742056,-4.60109793846681 +"Q9W4W5",-0.276780853594396,17.3536950891445,-0.833637030647748,0.418685069743591,0.999843076742056,-4.60131245840099 +"Q9VG81",-0.338742207265211,15.9019031230125,-0.830813225039496,0.420225113825002,0.999843076742056,-4.60140385808229 +"Q9VAQ4",-0.242025074805657,15.9128967648192,-0.829493320463354,0.420946229226249,0.999843076742056,-4.6014464936968 +"A0A0B7P9G0",-0.564586413906392,14.7571622353989,-0.815146343102593,0.428836543682335,0.999843076742056,-4.60190636031889 +"Q9VSL9",-0.341171573110762,14.7813625967647,-0.812581402224594,0.430257187069359,0.999843076742056,-4.60198788280312 +"Q9V393",-0.341790095397204,15.8772670793258,-0.810228078825242,0.431563290601328,0.999843076742056,-4.60206249382554 +"Q9VNX4",-0.415941738401344,21.0604331862268,-0.807858628258776,0.432880923129839,0.999843076742056,-4.60213743644312 +"Q9VDD1",0.265048133740086,14.2716186513149,0.80734282682438,0.433168098907693,0.999843076742056,-4.60215372663665 +"Q9VZX9",-0.389388586252274,18.4390897210659,-0.805780110169954,0.434038899172833,0.999843076742056,-4.60220302853075 +"Q9VGS3",-0.33788120191463,19.3653184036255,-0.804230002077145,0.434903783806526,0.999843076742056,-4.60225185489883 +"Q9VXZ8",-0.271820844321422,18.0661778961345,-0.804034050058161,0.435013194168061,0.999843076742056,-4.60225802161315 +"P19334",0.255856103800024,14.8907718013367,0.793667281883092,0.440826664595566,0.999843076742056,-4.60258249853712 +"Q9VYG8",0.351664810964106,15.2456825389018,0.777851970446683,0.449790416378348,0.999843076742056,-4.60307077480489 +"Q9VLB7",-0.352529471628415,21.3102133303724,-0.774313792891122,0.451811404091813,0.999843076742056,-4.60317888904007 +"A0A0B4K7J2",-0.313676441819807,15.7492393366093,-0.774284754473002,0.451828014266102,0.999843076742056,-4.6031797746465 +"Q9Y119",0.350324851988905,17.5270443059725,0.773889690446485,0.452054031732236,0.999843076742056,-4.60319182044982 +"P10676",0.406714413769901,19.3817370793055,0.770733487272323,0.453862256120664,0.999843076742056,-4.60328787064889 +"Q9W299",-0.442524429707822,14.9253395211295,-0.759217073943297,0.46049850288162,0.999843076742056,-4.60363554412475 +"Q7K4T8",-0.302195213884881,13.8670248601026,-0.758476590864481,0.46092725692911,0.999843076742056,-4.60365774813152 +"Q9VM33",-0.364200389008371,13.7871859000803,-0.758360122622908,0.460994716869848,0.999843076742056,-4.60366123886736 +"P00408",-0.25951920101603,21.3679963070753,-0.751355749093662,0.465063009701425,0.999843076742056,-4.60387033881477 +"Q9VF86",-0.2629845635599,17.7364229493024,-0.745209660425277,0.468651014305553,0.999843076742056,-4.6040524641507 +"Q9W4C2",0.216908944209012,15.77688322216,0.740942793929938,0.471151944621922,0.999843076742056,-4.60417815666208 +"Q70PY2",0.320895760895265,17.3339347133882,0.735799035304483,0.474177703689804,0.999843076742056,-4.60432886455014 +"Q8IQ70",-0.247091963681797,18.0512569394869,-0.734354792148724,0.475029394152982,0.999843076742056,-4.60437101892012 +"Q5U1B0",0.24081622194238,14.6383094187753,0.733276828549964,0.475665692420454,0.999843076742056,-4.60440243635697 +"Q9W3K9",-0.219130328831596,19.4238046391869,-0.732341241226322,0.476218370127424,0.999843076742056,-4.60442967230458 +"Q9VRL2",0.674815382454264,11.9387280694548,0.729403151479694,0.477956523769052,0.999843076742056,-4.60451501026128 +"Q9Y0V3",0.265810070938498,15.0820187312873,0.719037079494081,0.484119741647575,0.999843076742056,-4.60481375120907 +"Q9VK00",-0.469945429356713,17.9529919968021,-0.712692298747217,0.487915609731271,0.999843076742056,-4.60499479117889 +"Q9V784",0.320197772406217,14.0730354345362,0.703273968670472,0.493583075289346,0.999843076742056,-4.60526098096886 +"Q9VAY3",-0.335671567648731,13.9721777993089,-0.702076958992166,0.494306171893071,0.999843076742056,-4.60529459297493 +"P20007",0.465406321073589,15.0650392003839,0.700813607949544,0.495070027192463,0.999843076742056,-4.605330014136 +"Q9V597",0.3415222371383,20.1319843960737,0.695373271778437,0.498367396550696,0.999843076742056,-4.60548191615999 +"P22812",0.238781655798444,11.6158676435857,0.693272606626052,0.499644070728628,0.999843076742056,-4.60554029508727 +"A8WH76",-0.216290018358688,19.0590616544844,-0.690892113348812,0.501093140412382,0.999843076742056,-4.60560626529055 +"P09208",0.543049695390728,12.8471839064655,0.689871268087013,0.501715313872292,0.999843076742056,-4.60563449540451 +"Q7JYH3",-0.427682607422867,19.2428728080408,-0.68936652016721,0.502023109949814,0.999843076742056,-4.60564844013013 +"Q95RQ1",0.563504088717631,12.1033161776103,0.687946043319932,0.502889914908387,0.999843076742056,-4.60568763616367 +"Q9VZ19",0.414403035698193,20.1937957498481,0.685218389946469,0.504556849739689,0.999843076742056,-4.60576270460042 +"Q9VIS4",0.184576389325086,14.127903728061,0.683041353277565,0.505889610726913,0.999843076742056,-4.60582243297302 +"Q9VFN7",0.245366652361341,18.4718219500585,0.675958755966102,0.510239728917907,0.999843076742056,-4.60601560083614 +"Q9W1R0",-0.263368152271003,14.3283156301575,-0.675603015684903,0.510458796460094,0.999843076742056,-4.60602525675598 +"P54192",0.282031268010748,24.2453149747956,0.67216913959137,0.512576211794783,0.999843076742056,-4.6061182343897 +"Q9VVU5",-0.20635689665056,15.6182409960931,-0.669194652400117,0.51441446387771,0.999843076742056,-4.60619843795261 +"Q9XYZ5",-0.223440166720348,16.0864617238036,-0.66720339920862,0.515647197700758,0.999843076742056,-4.60625195549296 +"Q5U117",-0.365189334538185,14.6969046725481,-0.664857672036516,0.517101561506474,0.999843076742056,-4.60631482042977 +"Q9VBP9",-0.323506653862109,14.0630558967419,-0.663995549734604,0.517636675127185,0.999843076742056,-4.6063378762438 +"Q95R98",-0.305109482528689,16.4091510010573,-0.663051386299247,0.518223076475987,0.999843076742056,-4.60636309593574 +"Q9VA34",0.246386186258912,14.3716941989362,0.659232126750592,0.520599035457552,0.999843076742056,-4.60646479071505 +"A1ZBJ2",-0.440188581141566,19.4844404219688,-0.659145859048743,0.520652774532983,0.999843076742056,-4.60646708178095 +"Q9V3Z9",0.22196346199333,21.7039131658564,0.657207845467382,0.521860865945965,0.999843076742056,-4.60651848124403 +"Q9VV46",0.346684585623684,23.8009758845677,0.653697960512272,0.524052882574675,0.999843076742056,-4.60661122990061 +"Q8T3L6",0.236569363846396,17.3162707226768,0.644952126509927,0.529537646037468,0.999843076742056,-4.60684042988121 +"Q94523",-0.358106457042485,20.5095661180994,-0.643625761085941,0.530372274362423,0.999843076742056,-4.6068749511284 +"A1ZAA9",-0.239548084067959,16.6121713894888,-0.638808307896215,0.533409941225298,0.999843076742056,-4.60699980487004 +"Q9U4G1",-0.316481859564718,19.3990094183478,-0.636136986218648,0.535098561258624,0.999843076742056,-4.60706867867164 +"O62619",-0.304984832282475,22.2787397991936,-0.634772078906783,0.535962514346124,0.999843076742056,-4.60710377066974 +"Q9V419",-0.232804785344047,16.584646965176,-0.63240642882016,0.537461761073209,0.999843076742056,-4.60716443322525 +"Q95TK5",-0.320612543529137,17.1913629620016,-0.632024582073398,0.537703978447187,0.999843076742056,-4.60717420607066 +"O97102",-0.21792212090854,21.0603264633124,-0.629656222590632,0.539207663508641,0.999843076742056,-4.60723470365676 +"Q9W2L6",-0.350052570769499,20.9919168128713,-0.625413260231839,0.541907391729936,0.999843076742056,-4.60734258027849 +"A1Z6G9",0.181781121795531,14.2892726083222,0.619754254193826,0.545519764770217,0.999843076742056,-4.60748544654527 +"Q9VWW2",0.360402513021642,15.1250051939472,0.619212331659749,0.545866391797057,0.999843076742056,-4.60749906695843 +"P36241",0.239918980039942,19.7907064403389,0.615292637892434,0.548377135499336,0.999843076742056,-4.60759726525807 +"Q9VMI3",-0.211216603673897,20.288322280775,-0.611578689681295,0.550761929233517,0.999843076742056,-4.60768979388175 +"Q9W552",-0.20494831741085,16.297441197954,-0.608259927926106,0.552897758099003,0.999843076742056,-4.60777205190759 +"Q0KIE7",-0.54881745799122,14.1606864529342,-0.607909194149956,0.553123740643909,0.999843076742056,-4.60778072164392 +"Q9W4P5",-0.261700728791919,19.6496273972188,-0.607760551286837,0.553219528450126,0.999843076742056,-4.60778439457053 +"Q9W1F2",-0.225596837440062,13.7401556755807,-0.607337943169461,0.553491913166628,0.999843076742056,-4.60779483270211 +"Q9VCR2",-0.204017696087405,15.5663464288161,-0.606679916352618,0.553916178301076,0.999843076742056,-4.60781107253558 +"Q9VBU0",-0.334315659395175,14.2498213694064,-0.605634380674688,0.554590655081511,0.999843076742056,-4.60783684340742 +"Q9VJQ6",-0.294678987533667,14.5386376468132,-0.600699408686374,0.557780231464587,0.999843076742056,-4.60795794346508 +"O62602",-0.236950355270862,14.6489447667261,-0.59826936995496,0.559354456328658,0.999843076742056,-4.60801724690842 +"Q9VJ68",0.237700133407483,17.7493763389874,0.597881972445856,0.559605641149914,0.999843076742056,-4.60802668107159 +"Q9GYU8",-0.725560628962532,12.6270570264852,-0.594438330137757,0.561841136654277,0.999843076742056,-4.60811030082662 +"Q9VKE2",0.277170029284946,24.0003695902906,0.593948952302242,0.562159213234023,0.999843076742056,-4.60812214872333 +"A8DYP0",0.202922918967824,15.0959855560668,0.592461256092492,0.563126751568954,0.999843076742056,-4.60815811195618 +"Q9VP57",-0.276169011387598,19.5219660625538,-0.591369587065823,0.563837297310135,0.999843076742056,-4.60818444992362 +"Q9W0N6",0.237553753348424,14.5397726281946,0.58685875670831,0.566778390679263,0.999843076742056,-4.60829281428975 +"Q9W2N0",-0.532885038647706,16.2840950068443,-0.586772683347509,0.566834590556603,0.999843076742056,-4.60829487474928 +"Q9VZI8",-0.215008364331835,15.8473408890738,-0.582857802494809,0.569393869244685,0.999843076742056,-4.60838830161377 +"Q9VG92",0.193561125099052,16.4514759592209,0.579162330026505,0.571815329310928,0.999843076742056,-4.60847597251147 +"Q9W309",0.32169425266526,18.2755142817924,0.574065676856985,0.575163821863326,0.999843076742056,-4.60859605470319 +"Q9W4W8",-0.221398392649043,17.4760320514368,-0.573542493706239,0.575508134921233,0.999843076742056,-4.60860832686195 +"Q9VVI2",0.56116828758695,13.7406453392017,0.572512637196227,0.576186211932053,0.999843076742056,-4.60863245420468 +"A1Z992",0.213594730505944,14.0722006304182,0.570639610674936,0.577420521594057,0.999843076742056,-4.60867623416911 +"Q9W403",-0.271398364326185,15.2547710901926,-0.570275176738202,0.577660841489262,0.999843076742056,-4.60868473725407 +"Q9V3L7",-0.224395906733257,17.7156943453058,-0.569469785236235,0.578192129124085,0.999843076742056,-4.60870351136751 +"Q24492",-0.253769627596697,15.1759078918011,-0.568196006400047,0.579032916225891,0.999843076742056,-4.60873315454972 +"Q95RG8",0.305487030780744,13.3917088793579,0.567752508200409,0.579325807214685,0.999843076742056,-4.6087434613889 +"Q9V3I2",-0.372013471393497,17.5501679490955,-0.566187802786355,0.580359772724157,0.999843076742056,-4.60877976639203 +"Q9V396",-0.227881925427813,20.9710426741107,-0.563283571259059,0.582281448823302,0.999843076742056,-4.60884690968414 +"Q9VN13",-0.219851548301577,17.2633421348851,-0.562635807554545,0.582710512324903,0.999843076742056,-4.60886184247662 +"Q9VK58",0.863823384873125,13.0720555701016,0.560331973210528,0.584237846119009,0.999843076742056,-4.60891482537828 +"Q9VHM3",-0.169750132430377,14.7223632830764,-0.560241775752254,0.584297684911126,0.999843076742056,-4.60891689567719 +"P46415",-0.335787446928975,18.1247864423875,-0.55859589852166,0.585390149199053,0.999843076742056,-4.60895462000003 +"Q9VW14",0.24656603462955,13.7317459227015,0.55857129409836,0.585406488583356,0.999843076742056,-4.60895518317676 +"Q9XZ63",0.279297989100094,19.0069854472565,0.554750109302609,0.587946927636009,0.999843076742056,-4.6090423720735 +"Q9W370",0.156755980657643,18.5338769687035,0.553251961624751,0.588944486232486,0.999843076742056,-4.60907640633356 +"Q9VIB5",0.287700946633738,14.2548057298516,0.553104950034913,0.589042422349699,0.999843076742056,-4.60907974154192 +"Q7KY04",-0.158072211137545,14.1561438599219,-0.549555172813366,0.591409744840284,0.999843076742056,-4.60916002794883 +"P15425",-0.180412541864278,17.1064744265677,-0.548870456837982,0.591866936114546,0.999843076742056,-4.60917545991598 +"A1ZA23",0.273860138818957,18.3843676478415,0.546634685080968,0.593361037155581,0.999843076742056,-4.60922572642885 +"Q9NK57",0.22850139225879,15.4236933700929,0.545386575152002,0.594195947188551,0.999843076742056,-4.60925370567205 +"Q9VE52",0.188310679173174,15.9322647277513,0.540918486690631,0.597189714781923,0.999843076742056,-4.60935338691317 +"Q9VN86",-0.230282873291335,15.4804850105866,-0.537014083658196,0.599812025059321,0.999843076742056,-4.6094398757354 +"Q7K511",-0.297276999766087,16.9650727115624,-0.536420736493483,0.600211041043211,0.999843076742056,-4.60945296890415 +"A1Z8Z7",0.14797515777602,18.944762599642,0.534133349784547,0.601750518063677,0.999843076742056,-4.60950331916383 +"Q7JPS2",-0.224353800724231,20.5733062951783,-0.533610423315185,0.602102740547577,0.999843076742056,-4.60951480207756 +"Q9VR25",-0.213882787473892,17.0032265016318,-0.532416171612942,0.602907528230928,0.999843076742056,-4.6095409877493 +"Q9VFS8",0.206048202411502,17.2017644748634,0.530280102379093,0.6043483331657,0.999843076742056,-4.6095876893154 +"Q9VP13",0.459928662607409,11.7713076285137,0.530007618467229,0.604532250444929,0.999843076742056,-4.60959363427558 +"O01666",-0.259321278331292,22.815771389114,-0.525595463899898,0.607514182693677,0.999843076742056,-4.60968950485558 +"Q9W3K6",-0.224913036111566,16.2710424271966,-0.524607637567169,0.608182798910498,0.999843076742056,-4.60971086775361 +"A1Z968",0.207073014627433,17.1412642798173,0.524306073797316,0.608386986799646,0.999843076742056,-4.60971738202967 +"Q9VR94",0.391084923336159,16.2593995376978,0.521507727317543,0.61028335600509,0.999843076742056,-4.60977766591331 +"Q8IN43",0.298365035735621,17.5656187465675,0.520157071482538,0.61119970451442,0.999843076742056,-4.60980665597923 +"E1JGR3",0.15168393482837,12.1788803809115,0.518020982440668,0.612650310271709,0.999843076742056,-4.60985236242221 +"Q9VSW4",0.206389070406427,15.940833917808,0.517714911375652,0.612858299873736,0.999843076742056,-4.60985889725165 +"Q9VQD8",-0.191568451787006,17.5504467580811,-0.516194824637527,0.61389178338133,0.999843076742056,-4.60989129920022 +"Q9VVZ4",0.251018160779614,15.7166772029234,0.51559589737679,0.614299219291881,0.999843076742056,-4.60990404162636 +"O18332",-0.246691041303819,20.6889147303849,-0.514318751451138,0.615168473237382,0.999843076742056,-4.60993116768661 +"Q7K5K3",-0.263997872663111,22.8248520157055,-0.510099008166747,0.618044792552643,0.999843076742056,-4.61002035002199 +"Q9VD09",0.345696499053769,14.4754753640894,0.509959472807318,0.618140016203657,0.999843076742056,-4.61002328740303 +"Q7KSE4",0.183898633303549,13.7872972585047,0.508220013860889,0.619327680108507,0.999843076742056,-4.61005984245694 +"P07486",-0.299764717430847,22.174921274752,-0.506651828156456,0.620399350406126,0.999843076742056,-4.610092698818 +"Q9I7Q5",-0.19784689135675,20.4858997557378,-0.503960539672144,0.622240618531102,0.999843076742056,-4.61014886646878 +"Q9W461",0.283955172854967,16.1263347650681,0.503929317883684,0.622261994647566,0.999843076742056,-4.61014951644222 +"Q8SX89",0.192713129695234,15.4010410866735,0.499823609680531,0.625076063281197,0.999843076742056,-4.61023466269214 +"Q9VV47",-0.171917084635528,20.1413945521166,-0.497405397770927,0.626736367250484,0.999843076742056,-4.61028450956115 +"Q8IRH5",0.155586247635787,14.3463211141873,0.496454916823856,0.62738952841781,0.999843076742056,-4.61030404032079 +"A1Z9J3",0.21312785686672,17.6140899631711,0.496136990856216,0.62760807653742,0.999843076742056,-4.61031056539282 +"Q9W3W4",-0.193174968981033,16.0149393324306,-0.491735176823257,0.630637689954258,0.999843076742056,-4.61040050737422 +"A1ZB73",0.572481445732764,13.4687819034522,0.491714357172423,0.630652035862478,0.999843076742056,-4.6104009310055 +"Q9VR79",0.188266511364198,20.3998609620991,0.490702502019523,0.631349447359048,0.999843076742056,-4.61042149973283 +"Q9VPL3",0.225097232791661,15.8952515058265,0.490446191551677,0.631526164876297,0.999843076742056,-4.61042670367208 +"Q9V3N7",-0.212476379436417,20.7351321178021,-0.489693646218701,0.63204515506237,0.999843076742056,-4.61044196814293 +"Q9VBC1",0.407123938885713,13.2543804818653,0.489520712563082,0.632164446639167,0.999843076742056,-4.6104454728026 +"Q8SZK5",0.363926465544854,15.128845270669,0.488348145918613,0.63297357695313,0.999843076742056,-4.61046920547401 +"Q9Y105",-0.35852684193479,17.1518238095215,-0.487106116508791,0.633831172958596,0.999843076742056,-4.61049428612489 +"A1Z843",-0.234240165915686,17.6695745698284,-0.484039192120881,0.635951163589107,0.999843076742056,-4.61055596187277 +"Q9VK99",0.198191203796746,20.0143812490657,0.483351640940193,0.636426884982079,0.999843076742056,-4.61056973855667 +"Q9VHG4",0.212455515507209,18.3948383989673,0.483223274123177,0.636515721344886,0.999843076742056,-4.61057230865616 +"Q961Q8",-0.1623758084486,15.6157173428352,-0.482366851845998,0.637108557773765,0.999843076742056,-4.61058943920495 +"Q95SH0",-0.348654087253806,13.7906927535107,-0.482241495052475,0.637195354493433,0.999843076742056,-4.61059194426512 +"Q9VMT5",-0.154418143241283,16.5674812298601,-0.479907009453244,0.63881275636018,0.999843076742056,-4.61063848405528 +"Q9VLS5",0.195965355521141,14.5792504353019,0.478109839225029,0.640059193260482,0.999843076742056,-4.61067416808651 +"Q7K1S1",-0.198721242482115,16.7178984324883,-0.476477262553523,0.641192455373338,0.999843076742056,-4.61070647535733 +"M9PF16",-0.249030319273775,21.2171401557281,-0.476132604293087,0.641431820844893,0.999843076742056,-4.61071328261471 +"Q9VYT0",-0.169272895466257,18.295408815456,-0.473147835000656,0.643506477268196,0.999843076742056,-4.61077204098014 +"Q7JWQ7",0.445574983353302,14.3068524119871,0.472856946624073,0.643708833963313,0.999843076742056,-4.61077774890826 +"Q27268",-0.211348383034338,19.0818292003155,-0.471847489153936,0.64441129151279,0.999843076742056,-4.61079753135905 +"Q4V5I9",-0.198317839373688,16.0078217905005,-0.471070988764035,0.644951880136221,0.999843076742056,-4.61081272154658 +"Q7KV34",-0.243262394356634,21.0487768703981,-0.470764101161253,0.645165588528257,0.999843076742056,-4.61081871852571 +"Q9VC06",-0.209656377490152,16.7094342802775,-0.469034348673925,0.646370751418809,0.999843076742056,-4.61085245154143 +"Q7K1Z5",0.281669963365724,15.86258343135,0.463186625274329,0.650452639992221,0.999843076742056,-4.61096562827822 +"Q9VMF0",-0.178897265742506,13.7991476337797,-0.461105610276917,0.6519080782631,0.999843076742056,-4.61100558225956 +"P19107",-0.236486110617047,24.0796371641824,-0.460934147796329,0.652028063052919,0.999843076742056,-4.61100886667099 +"Q24253",-0.295294138616246,19.1089370559444,-0.459760273733152,0.65284977713698,0.999843076742056,-4.61103132169252 +"Q9VJJ1",0.19703312126901,14.0639856554327,0.457422485287259,0.654487628448068,0.999843076742056,-4.61107588070623 +"Q9VKF0",-0.179508211195555,15.9083372393935,-0.455340396447846,0.655947895897464,0.999843076742056,-4.61111538594174 +"P29829",-0.197907183261034,21.417117699231,-0.453773261269773,0.657047967574464,0.999843076742056,-4.61114500854083 +"Q9VX98",-0.121871823664609,18.2294853563932,-0.453321955432835,0.657364921255175,0.999843076742056,-4.61115352145217 +"Q9VVB4",0.236570057131026,15.9037364775404,0.452169817884385,0.658174382193461,0.999843076742056,-4.61117521783286 +"Q9VXK7",-0.25214049175197,18.0897098210298,-0.448710877758047,0.660607215421715,0.999843076742056,-4.61124004174942 +"Q9V4N3",-0.149324266844413,19.7536533189345,-0.448168468442398,0.660989079999765,0.999843076742056,-4.61125016443312 +"Q9VDT5",0.21204361395526,19.0518353993786,0.447146121356536,0.661709094959104,0.999843076742056,-4.61126921251139 +"Q9VPU6",0.257416981692449,15.3103604421898,0.444239758886369,0.663757876637729,0.999843076742056,-4.61132313864976 +"Q9VB46",-0.180971255137397,15.3591399354941,-0.441823579201939,0.665463245022655,0.999843076742056,-4.61136771676883 +"Q9W0Y1",0.152548619790736,17.676161982104,0.441677925591543,0.665566110717628,0.999843076742056,-4.61137039671053 +"Q9VDQ3",0.5202460302195,13.2248651879734,0.441312832214979,0.665823983235075,0.999843076742056,-4.61137711054509 +"Q9VZW7",0.153629697881486,13.820911208178,0.438152776566399,0.668057824959814,0.999843076742056,-4.611435002538 +"P41375",0.216172411905905,16.6698991461418,0.436031113869811,0.669559465362141,0.999843076742056,-4.61147365036462 +"Q9VJE3",0.172232442139832,15.2134507155153,0.435144259328023,0.670187586791531,0.999843076742056,-4.61148975251549 +"O76742",-0.243098978617777,18.1001448748244,-0.435086209696014,0.670228709830532,0.999843076742056,-4.61149080540966 +"Q7K5J8",-0.115108630981172,18.1574607022944,-0.434302539884395,0.670783978204275,0.999843076742056,-4.61150500645695 +"Q9I7X6",-0.235401327182808,14.8550144678603,-0.432973010234563,0.671726472259182,0.999843076742056,-4.61152904367563 +"Q8IPG8",0.155241247568961,15.9694161807229,0.431664763209984,0.672654439751996,0.999843076742056,-4.61155262795373 +"Q9U9Q4",-0.222252610646084,18.0399057794836,-0.431396522043675,0.672844777498292,0.999843076742056,-4.61155745528585 +"Q7K0P0",-0.234327333122838,15.2327356217101,-0.429147058263667,0.674441861369317,0.999843076742056,-4.61159782521442 +"Q9VFT4",0.316230431495757,15.6857764032002,0.428822081210903,0.674672725080399,0.999843076742056,-4.61160364085963 +"Q9VFP1",-0.261890666292835,15.8515127329681,-0.427718500932378,0.675456962603378,0.999843076742056,-4.61162335885196 +"P17336",0.212348168183595,20.871138908176,0.426801267266427,0.676109074854284,0.999843076742056,-4.61163971065231 +"O16797",0.197413002397198,16.9025844125866,0.426340992891431,0.676436411289924,0.999843076742056,-4.61164790355049 +"Q9VH77",-0.262515128093208,15.5972810715732,-0.424648302698763,0.677640797648769,0.999843076742056,-4.61167796131755 +"O97479",-0.218584591243147,17.9440401699775,-0.422987148670483,0.678823636715319,0.999843076742056,-4.61170734870108 +"Q9VHG6",-0.202201268580463,15.6734152328281,-0.422424453653236,0.679224508289487,0.999843076742056,-4.61171727850245 +"Q9VL69",-0.152644235336769,16.0949400981199,-0.421342886111051,0.679995314968562,0.999843076742056,-4.61173632950952 +"Q7K2W6",0.136014333954041,16.795532809579,0.418818615016857,0.6817957471865,0.999843076742056,-4.61178061207483 +"Q7KM15",-0.180535803613694,17.0030570642996,-0.414856307994285,0.684625920170091,0.999843076742056,-4.61184961128889 +"Q9W308",0.279638639874094,16.9891658246316,0.411938323078562,0.686713316694517,0.999843076742056,-4.61190002563884 +"Q9VH81",-0.277506326618006,14.6294925078464,-0.411879113878259,0.686755699906135,0.999843076742056,-4.61190104509529 +"P32234",0.190539890517602,16.674876304268,0.410766221835002,0.687552535416769,0.999843076742056,-4.61192018076103 +"Q7K3V6",-0.246706521530324,16.380447126816,-0.407858029669572,0.689636633931344,0.999843076742056,-4.61196995287599 +"Q9VSK9",0.165553808217613,14.4709815168729,0.402099725268999,0.693770928070021,0.999843076742056,-4.61206750802249 +"Q7JX94",0.196637568901421,12.4554350585169,0.402088209323682,0.69377920640067,0.999843076742056,-4.61206770179531 +"Q9VXN3",0.189000225903012,16.9050531496589,0.40196545817414,0.693867449584457,0.999843076742056,-4.61206976693582 +"Q9VUY9",-0.235133387519728,19.8571199601684,-0.400629514033684,0.69482812957433,0.999843076742056,-4.61209220366003 +"Q8SZK9",0.209041199220664,22.1950382601486,0.398646140284265,0.69625538264818,0.999843076742056,-4.61212538217337 +"A1ZBU5",0.12863615689259,16.557003785199,0.398602871983152,0.696286532254413,0.999843076742056,-4.61212610422627 +"M9NFC0",0.303870632047175,19.824179090603,0.397771222819031,0.696885361657911,0.999843076742056,-4.61213996807218 +"Q9VPN5",0.218688205472269,21.1534553322814,0.395789309188853,0.698313285793185,0.999843076742056,-4.61217289562198 +"Q9VJQ3",-0.209820018670229,20.6476917494112,-0.395522624410503,0.698505516981355,0.999843076742056,-4.61217731432686 +"Q9VAF5",0.14354739559165,15.9981024266242,0.393846723200486,0.699714028430404,0.999843076742056,-4.61220501718192 +"Q9W0M5",0.156661071971929,13.2905799257109,0.393354046095687,0.700069464594837,0.999843076742056,-4.61221313979839 +"Q9VA42",0.228168249976104,20.0686380717812,0.393082091068722,0.70026569468567,0.999843076742056,-4.61221761927188 +"Q9V4E0",-0.231033527341083,18.4885413823436,-0.389721629486697,0.70269227954097,0.999843076742056,-4.61227272605256 +"Q9VEY0",0.252890640379583,18.1551269275838,0.389649471619531,0.702744421723272,0.999843076742056,-4.61227390437245 +"Q8SXF0",-0.12607428855268,16.5317425568007,-0.387055721864793,0.704619728774842,0.999843076742056,-4.61231612091971 +"Q9VW26",0.125079592423891,17.5670869957254,0.386881321715383,0.704745893658001,0.999843076742056,-4.61231894981275 +"Q9VF15",0.164739573891101,20.7893007745883,0.386674385764022,0.704895607368383,0.999843076742056,-4.61232230487506 +"P28668",0.169564586941664,15.629943031294,0.385659805981997,0.705629817846201,0.999843076742056,-4.61233872941901 +"A1Z7B8",-0.250643114493272,17.0910247840694,-0.384560728729622,0.706425519744345,0.999843076742056,-4.61235647519237 +"Q9VP18",0.108795774859303,17.1086461670182,0.383901351174587,0.706903062438893,0.999843076742056,-4.61236709824989 +"Q9VE24",0.216843089403479,15.9479942667611,0.382638780974616,0.707817814745177,0.999843076742056,-4.61238739041474 +"P54622",-0.203796207634809,18.0439202943791,-0.382593113928514,0.707850910048747,0.999843076742056,-4.61238812317946 +"Q9VQR9",0.249116148766522,16.2038354686712,0.380379442639407,0.709455911472925,0.999843076742056,-4.61242354274697 +"Q9VGW7",-0.270487817541195,16.8078182026861,-0.380367598980137,0.709464502471563,0.999843076742056,-4.61242373171974 +"Q0E8V7",0.159223677285258,19.6220034713909,0.379756494826777,0.709907832923436,0.999843076742056,-4.61243347459732 +"Q9W2V2",-0.232836300277336,14.2918285635836,-0.378590181473211,0.710754247382669,0.999843076742056,-4.6124520274947 +"Q7JZV0",-0.316998194932607,15.1624944931239,-0.376706750036689,0.712121924589754,0.999843076742056,-4.61248187215897 +"Q9VD64",0.22144313053532,15.5601455673168,0.376623004352209,0.712182761522563,0.999843076742056,-4.61248319586667 +"Q7JV09",0.194884694352524,15.1445339345546,0.37623694080653,0.712463243167835,0.999843076742056,-4.61248929444106 +"Q9V4W1",0.332379199430731,13.5846621835561,0.37596239282704,0.712662733201576,0.999843076742056,-4.61249362777063 +"Q9VXM4",0.129917272940194,20.2379712594749,0.375648479634348,0.712890853283733,0.999843076742056,-4.6124985786992 +"Q9VF24",-0.141252747724895,16.2021647682123,-0.375059080288606,0.713319245733109,0.999843076742056,-4.61250786376955 +"Q7KND8",0.155491685551599,15.4092269251913,0.37474676647087,0.713546285191307,0.999843076742056,-4.61251277811237 +"Q7KML2",0.228542074791969,13.4733513888034,0.374037261210778,0.714062171511495,0.999843076742056,-4.61252392775635 +"Q9VVP9",0.275151355559679,16.6409983442614,0.373743061417339,0.714276128925027,0.999843076742056,-4.61252854505699 +"Q24478",0.179613435028322,17.2804273430026,0.37204093782469,0.715514491678746,0.999843076742056,-4.61255519040572 +"M9PGG8",0.263096183148196,18.5055877512892,0.369533660885839,0.717340151861799,0.999843076742056,-4.61259422682664 +"A1Z7X8",-0.10003835857599,17.1261738988322,-0.368580301860311,0.718034807254667,0.999843076742056,-4.61260900330869 +"P35381",-0.185856154963552,25.7848328518532,-0.367893351823055,0.718535507194614,0.999843076742056,-4.61261962785695 +"Q9W074",-0.218889199719127,13.6005723667826,-0.367875489958131,0.718548528035226,0.999843076742056,-4.61261990385891 +"Q9Y143",0.096927741840414,20.8585057448267,0.367308962086417,0.718961559426084,0.999843076742056,-4.61262865117239 +"Q9VPE2",-0.0973714614608845,20.990198088334,-0.366571206030228,0.719499562845114,0.999843076742056,-4.61264002284383 +"A1Z8Z3",-0.19219447596598,19.904217354263,-0.366065742431,0.719868257862182,0.999843076742056,-4.61264780129146 +"Q9VNW6",-0.204731328166321,21.9051782188391,-0.365983653072145,0.719928142285613,0.999843076742056,-4.61264906356835 +"Q9VY87",-0.23465943331983,17.7217989828195,-0.361123612902414,0.723476948877787,0.999843076742056,-4.61272330999653 +"Q9VXQ0",0.11519796668933,15.2365393381364,0.360769876491604,0.723735507082456,0.999843076742056,-4.61272867667927 +"Q9VDU7",0.146097543989715,18.2888425174504,0.359649951869223,0.724554329882397,0.999843076742056,-4.61274563410605 +"A1Z7S3",-0.175772888321323,20.0425167116731,-0.358190674895845,0.725621792858866,0.999843076742056,-4.61276765363124 +"Q9VW73",-0.165737220376466,14.2893473972126,-0.35595329857336,0.727259587496583,0.999843076742056,-4.61280124656037 +"Q6IGW6",0.112646691642912,15.7046825263955,0.355328973459002,0.727716851080563,0.999843076742056,-4.61281058422513 +"Q7K0B6",0.127462173505084,20.1627424562677,0.353751542538367,0.728872661361025,0.999843076742056,-4.61283410649178 +"Q7K9H6",0.263699528943135,11.9188124999811,0.353124347610222,0.729332408343326,0.999843076742056,-4.6128434310171 +"Q9VK11",-0.16729890883089,18.7650486004637,-0.352165249874306,0.730035656272129,0.999843076742056,-4.61285765907463 +"Q9VW59",-0.171414795459402,19.7676986367812,-0.352017165569635,0.730144259988794,0.999843076742056,-4.61285985255297 +"A1Z7H8",0.108426925884128,14.6455893711589,0.351178046443221,0.730759776119103,0.999843076742056,-4.61287226507128 +"Q9W259",0.106617033664325,16.9206861529285,0.348465258547337,0.732750995399255,0.999843076742056,-4.61291219780042 +"Q9W1M9",0.313872786387895,14.2722914373343,0.348144310000785,0.732986708239987,0.999843076742056,-4.61291690243836 +"Q9VA09",-0.218627887054993,16.6251054380596,-0.348132767732884,0.732995185699207,0.999843076742056,-4.61291707155319 +"Q6IGM9",0.122462936373081,14.5459213511962,0.347492444570181,0.733465541095752,0.999843076742056,-4.61292644494645 +"Q9VKZ8",-0.20108590645826,18.7632612065869,-0.346787005170342,0.733983857062403,0.999843076742056,-4.61293675224702 +"Q7K204",0.1660805143682,14.6875787448478,0.345684772894351,0.734793983260307,0.999843076742056,-4.6129528166448 +"Q8T4G5",-0.176422272503704,19.7195830072993,-0.344399345722872,0.735739169880131,0.999843076742056,-4.61297148857607 +"Q9VM07",0.27195204483035,17.1203464918657,0.344190835978595,0.735892531032782,0.999843076742056,-4.61297451102132 +"O15971",-0.233868706762816,17.1938397510149,-0.343838027104216,0.736152052396018,0.999843076742056,-4.61297962111941 +"Q9VSU7",0.103078397074922,14.6951949117874,0.343621929545308,0.736311027328129,0.999843076742056,-4.61298274858339 +"Q94524",-0.145428494603301,15.6472896199961,-0.343608311309949,0.736321046177638,0.999843076742056,-4.61298294560914 +"Q9W0C3",0.168578865314316,18.5300521372333,0.34330319718417,0.736545529775549,0.999843076742056,-4.61298735795642 +"Q8SZN1",0.15113270697497,19.9337071635573,0.34233667140827,0.737256803042522,0.999843076742056,-4.61300131015889 +"Q9VIE7",0.212740056557497,14.9687503368262,0.341455604898376,0.737905404336127,0.999843076742056,-4.61301399557913 +"Q8MLS1",0.262453311772965,18.3624020068503,0.341083387677958,0.738179476199017,0.999843076742056,-4.61301934518898 +"Q9W3N7",0.234203352592225,17.1333236870422,0.341055225568553,0.738200214096307,0.999843076742056,-4.61301974971304 +"Q09101",-0.170671712075485,14.7044296955978,-0.34085632539737,0.738346685409774,0.999843076742056,-4.6130226058201 +"Q9VH66",-0.188453469887442,16.820400106082,-0.3395145312128,0.739335066608737,0.999843076742056,-4.61304183120183 +"Q9VE08",0.288002654889247,14.6089365558669,0.33812213574928,0.740361227730415,0.999843076742056,-4.61306170402957 +"Q24297",-0.13220093974029,17.0637091426371,-0.337974425481847,0.740470116742953,0.999843076742056,-4.61306380757313 +"Q9VHB8",-0.0908349785506211,15.697723793912,-0.337322674661022,0.740950643240478,0.999843076742056,-4.61307307854144 +"A1Z803",-0.126818505353054,19.0389217608492,-0.3364863304592,0.741567432396504,0.999843076742056,-4.61308494992127 +"Q9VTC3",-0.103673140408148,17.0848272436251,-0.336292323642625,0.741710535417342,0.999843076742056,-4.61308769964951 +"Q9XY35",-0.14167488083752,19.2143082866006,-0.336040310385042,0.741896439893106,0.999843076742056,-4.61309126923133 +"Q7K486",0.209530556976723,17.6045736856005,0.335819141637679,0.742059604871267,0.999843076742056,-4.61309439978881 +"Q7KMQ0",0.144998851755052,20.7839250043677,0.334992084327093,0.742669872118052,0.999843076742056,-4.61310608877777 +"Q9VCR4",0.256976192184839,14.9239698355593,0.334964033935661,0.742690573036114,0.999843076742056,-4.61310648473097 +"Q9VGJ9",-0.170279320992769,17.9976866529157,-0.334612388399256,0.742950101598475,0.999843076742056,-4.6131114457583 +"C0HK95",-0.187488476445541,19.8354633876715,-0.33444784866277,0.743071549707536,0.999843076742056,-4.61311376535751 +"P48611",0.19057105211818,20.2406448477989,0.334089158328278,0.743336326582572,0.999843076742056,-4.61311881816521 +"Q7KSQ0",-0.175704697832654,20.9966027670454,-0.333202801972178,0.743990758973639,0.999843076742056,-4.61313128158841 +"Q9W1C8",-0.245278230404971,15.9794323082323,-0.332999059846114,0.744141219032114,0.999843076742056,-4.61313414195712 +"Q960W6",-0.124147783820431,14.1550221101404,-0.332895989695163,0.744217338704559,0.999843076742056,-4.6131355883301 +"Q8IMT6",-0.160947176472327,16.1715548930342,-0.331981028816789,0.74489318005337,0.999843076742056,-4.61314840886568 +"Q7JRN6",0.211756477891621,14.5755462157114,0.331106638481536,0.74553925787545,0.999843076742056,-4.61316062897216 +"Q9VSL3",0.213363289510831,22.5382309995254,0.329894045915138,0.746435559107375,0.999843076742056,-4.61317752395624 +"Q9VXJ7",0.119256046144857,14.9470041740735,0.328846230894804,0.747210370578924,0.999843076742056,-4.61319207470968 +"P56538",-0.141794841947537,17.1171552334461,-0.328718542978568,0.747304809415033,0.999843076742056,-4.61319384481328 +"A8JTM7",-0.126825143184366,17.7721622298232,-0.327829645469017,0.747962360771264,0.999843076742056,-4.61320614889142 +"A8JNG6",0.3040983498736,15.4967880739237,0.327827722624793,0.747963783393637,0.999843076742056,-4.61320617547232 +"A0A126GUP6",0.176128556635906,16.9192015595692,0.327469037868009,0.748229174131555,0.999843076742056,-4.61321113119353 +"Q9VB17",-0.1670605172742,15.6225173861712,-0.327097605770997,0.748504031587558,0.999843076742056,-4.61321625749173 +"Q9VJ22",0.263212636795913,13.268703319463,0.326911688866813,0.748641622296751,0.999843076742056,-4.61321882129402 +"Q9VAI9",0.130977842581164,21.924299457077,0.326315358371507,0.749083006029102,0.999843076742056,-4.61322703517791 +"Q7K569",-0.209930062720826,20.7772144629358,-0.324861773988373,0.75015928291067,0.999843076742056,-4.61324699596584 +"Q9VPU4",0.20322759974016,12.8646994658362,0.32447934227007,0.750442536658005,0.999843076742056,-4.61325223319631 +"Q9W1E8",0.14257713297634,15.3648130066139,0.324457806830072,0.75045848831545,0.999843076742056,-4.61325252793645 +"A0A0B4K692",-0.279307085630608,16.0368687201411,-0.324280721066631,0.75058966317436,0.999843076742056,-4.6132549508627 +"Q0E9B7",0.264744500132377,12.7525245073989,0.323297486850816,0.751318131775269,0.999843076742056,-4.6132683803391 +"Q9VXC9",-0.158611764869995,19.2097119977907,-0.322318997902507,0.752043329395349,0.999843076742056,-4.61328170570831 +"Q9VEB3",0.304445469731144,12.2895694138068,0.321262329127976,0.752826742680901,0.999843076742056,-4.61329605172052 +"A1Z7K8",0.174811561749689,17.5606417792893,0.320553234959566,0.753352623277295,0.999843076742056,-4.61330565319231 +"Q9W499",0.130171145373403,16.939224954988,0.320097463363944,0.753690701212991,0.999843076742056,-4.61331181367998 +"Q8SZ63",0.111821964713831,14.0076724124627,0.319668355043203,0.754009049112065,0.999843076742056,-4.61331760599073 +"Q9VKU5",0.313837475202819,13.50344162012,0.319605529401996,0.754055662250931,0.999843076742056,-4.6133184534082 +"Q9VG97",0.135465496384516,20.0689560090642,0.319549110207854,0.754097523010851,0.999843076742056,-4.61331921427508 +"Q9VZ49",-0.105467952987102,18.9238359814577,-0.319293135021469,0.754287456335301,0.999843076742056,-4.61332266470702 +"P55830",0.150906442582951,21.9874461565182,0.319170751482406,0.754378270635697,0.999843076742056,-4.6133243134339 +"Q9V431",0.182137321470137,18.4972277580334,0.318960490997361,0.754534302550423,0.999843076742056,-4.61332714458823 +"Q6NL44",-0.205784864451461,15.3269946903028,-0.317806326891591,0.755390992859834,0.999843076742056,-4.61334265311281 +"Q9VVK7",0.134608569920275,18.1481672523874,0.317599539621192,0.755544518240254,0.999843076742056,-4.61334542594796 +"Q9VV31",0.391478504721956,15.2552510407109,0.316909462164835,0.756056931128272,0.999843076742056,-4.61335466658889 +"Q9VJG0",0.48329679221732,12.9801960885865,0.316594017069184,0.756291202751729,0.999843076742056,-4.61335888412476 +"Q9V3U6",0.154374906038971,21.1277270927857,0.315993612078124,0.756737174370039,0.999843076742056,-4.61336690032846 +"A1Z7K6",0.109991416273212,15.5795148823467,0.315663741927486,0.756982235218196,0.999843076742056,-4.61337129823858 +"O97365",0.126606985051556,18.0109494203035,0.31490242586638,0.75754792132514,0.999843076742056,-4.61338143124973 +"Q95SN8",0.091731359208481,17.6345510071932,0.314732862416535,0.757673932942478,0.999843076742056,-4.61338368487728 +"A1Z6V5",0.148517396396802,19.9831915032711,0.3137100180351,0.758434214765447,0.999843076742056,-4.61339725423143 +"Q7K8X7",-0.209825966484722,19.5467585758134,-0.313639751440965,0.758486453580818,0.999843076742056,-4.61339818483238 +"Q0E8X8",-0.158353406615699,19.8560905526376,-0.312016046394156,0.759693917655203,0.999843076742056,-4.61341963249324 +"Q7KUC2",0.12651993423589,19.297793413442,0.311561198601673,0.76003228101365,0.999843076742056,-4.61342562120601 +"Q8MSI2",0.179418372446428,23.7633719842942,0.311289571296142,0.760234370171759,0.999843076742056,-4.61342919351025 +"P25171",0.15021859787991,16.7376853539272,0.310626443587868,0.760727809805318,0.999843076742056,-4.61343790189768 +"Q9VC18",-0.16356384533961,18.5487265265269,-0.310511051979586,0.76081368486266,0.999843076742056,-4.61343941540886 +"Q9VZJ8",-0.125797240797979,14.9902298971764,-0.31019011975361,0.761052541585095,0.999843076742056,-4.61344362197627 +"Q9VLC5",-0.168407643756254,22.035791435942,-0.309509165739084,0.761559431642037,0.999843076742056,-4.61345253345497 +"Q8SXD5",0.17134039042854,20.5955878358629,0.309016312617335,0.761926373741097,0.999843076742056,-4.61345897141639 +"Q9V4S8",0.201916468851305,17.0301371171612,0.308872207260141,0.762033675217106,0.999843076742056,-4.61346085192613 +"Q94915",0.246688085716013,16.8840368552945,0.30872964708028,0.762139831152951,0.999843076742056,-4.61346271143213 +"Q9V3J4",-0.183029919296914,16.6312887465052,-0.308537068092218,0.762283240968953,0.999843076742056,-4.61346522203985 +"O61491",-0.132765322654219,20.9740062084786,-0.307946801087164,0.762722857816894,0.999843076742056,-4.61347290771668 +"Q9VVL5",-0.176661557082465,17.3439667699557,-0.307435970338881,0.763103381144288,0.999843076742056,-4.61347954751736 +"Q9VLB1",-0.136869710802053,16.8586868403239,-0.305537569123628,0.764518077817126,0.999843076742056,-4.61350412897904 +"Q9VE75",-0.137327251462604,15.3712853573712,-0.305386924265843,0.764630376516751,0.999843076742056,-4.61350607325678 +"Q9VMY1",0.276203114824067,15.6076110818271,0.305132786707538,0.764819836659639,0.999843076742056,-4.61350935113318 +"M9MSK4",-0.157452788236494,20.5290705533767,-0.304755530276138,0.765101111068712,0.999843076742056,-4.61351421210164 +"Q9VII1",0.1674972901281,19.2302366861764,0.304291793446195,0.765446910632627,0.999843076742056,-4.61352017935082 +"Q9VJQ5",0.292210803082032,14.3131884211555,0.303828931949539,0.765792109318528,0.999843076742056,-4.61352612651172 +"Q9W3J1",-0.196452675661634,15.6664277001235,-0.303741376328745,0.765857413473308,0.999843076742056,-4.6135272504945 +"Q9VT23",-0.195678080343612,18.4214511184931,-0.303538184687714,0.766008972932375,0.999843076742056,-4.61352985772243 +"Q9VZJ2",0.217075668900041,17.2457972540006,0.303406692360991,0.766107057599502,0.999843076742056,-4.61353154404397 +"Q6NLJ9",-0.145373623614555,15.0561653945419,-0.302946181501298,0.766450601409128,0.999843076742056,-4.61353744424823 +"Q8MZI3",-0.164367416498951,17.9603688617428,-0.302773712634788,0.766579277345357,0.999843076742056,-4.61353965172447 +"P38040",0.163781867170531,18.9922151438103,0.302076858383945,0.767099260698759,0.999843076742056,-4.61354855848265 +"Q9VFR0",0.251752099325412,15.3141882677147,0.301817980641532,0.767292461544928,0.999843076742056,-4.61355186220357 +"Q9VGL0",0.278394110711202,12.8372270631775,0.301694087184137,0.767384929108869,0.999843076742056,-4.61355344231873 +"Q961B9",-0.192162098515919,15.0023867217077,-0.301307864953877,0.767673208706477,0.999843076742056,-4.61355836407183 +"Q9VSL5",-0.118252306343418,17.6522654405991,-0.301156030778592,0.767786548832948,0.999843076742056,-4.61356029726094 +"Q8SZM2",0.174302913469717,21.2518131169834,0.301071006343133,0.76785001969836,0.999843076742056,-4.61356137939773 +"P36975",0.145845643543669,22.1594398282261,0.30056029637909,0.768231301847227,0.999843076742056,-4.6135678731228 +"Q9Y125",0.138170969592963,22.571238966889,0.300255063105906,0.768459210476687,0.999843076742056,-4.61357174906313 +"Q9W0R0",0.193027277117846,16.696931618197,0.299073643018915,0.769341551414088,0.999843076742056,-4.61358671489766 +"Q7K568",-0.140200522694055,16.1603050377823,-0.299049485007818,0.769359597240968,0.999843076742056,-4.61358702032325 +"Q9VEP6",0.164429662664215,18.5888841338332,0.297822019236177,0.770276686266247,0.999843076742056,-4.61360250730534 +"O02649",0.139150988113538,23.2629009574893,0.296471923776366,0.7712858094724,0.999843076742056,-4.61361946978733 +"P16378",-0.209395875683093,20.4839711151951,-0.294786681763948,0.772546040489826,0.999843076742056,-4.61364053755494 +"Q9W3L4",-0.326521356641496,17.6390387954845,-0.293741820428829,0.773327727561319,0.999843076742056,-4.61365354087734 +"Q9W0C1",-0.164884373894463,21.3115993246609,-0.29310334602864,0.773805512273187,0.999843076742056,-4.61366146453195 +"Q8SXS0",0.190983757021684,14.5273435392617,0.293039487234217,0.773853304487212,0.999843076742056,-4.61366225611288 +"Q7K2L7",0.227156666459546,18.1642622427798,0.292910678489251,0.773949708441892,0.999843076742056,-4.6136638522884 +"Q9VER6",0.230878116912649,14.9188953619193,0.292826175275863,0.774012955042377,0.999843076742056,-4.61366489906552 +"A1Z8H6",0.163384047928229,16.6107318501923,0.292421078043402,0.774316174041368,0.999843076742056,-4.61366991308358 +"Q9VHJ7",-0.190762540046091,14.7807552123864,-0.29221816746003,0.774468068871652,0.999843076742056,-4.61367242202664 +"Q9V3T8",0.111645597710101,15.5183575717429,0.292113665537757,0.774546300679573,0.999843076742056,-4.61367371350602 +"O97111",0.121241661347607,14.7190972016912,0.292083437021136,0.774568930704565,0.999843076742056,-4.61367408699888 +"Q9VI75",0.097151513866887,17.2912939066167,0.291843995192629,0.774748191964554,0.999843076742056,-4.61367704412463 +"Q9VM69",0.204025058406078,16.7938522491854,0.29148378454624,0.775017893531601,0.999843076742056,-4.61368148829632 +"A1Z9M5",0.14368108712763,15.0840945234929,0.291261393608852,0.775184420019617,0.999843076742056,-4.61368422941486 +"Q9VL93",0.104298207897331,15.3680848711975,0.291199596153044,0.775230696039134,0.999843076742056,-4.61368499074769 +"Q9VPX0",-0.165622672861632,14.4855596581959,-0.290474437299177,0.775773785728264,0.999843076742056,-4.61369391278408 +"Q95TN1",-0.138058220760325,14.1548976692733,-0.290310720483879,0.775896414250171,0.999843076742056,-4.61369592407923 +"Q7K3J0",-0.12360947883494,20.4162417818993,-0.290044105419421,0.776096129765247,0.999843076742056,-4.61369919713162 +"Q9V400",-0.107902122232327,14.2324650022531,-0.28975128698712,0.776315492620085,0.999843076742056,-4.61370278848213 +"P54385",-0.165568218155911,21.6755441300828,-0.289661484304951,0.776382771639803,0.999843076742056,-4.6137038891817 +"Q9W4Z2",0.208534336613232,13.8842305337452,0.289479288254314,0.776519276319878,0.999843076742056,-4.61370612131104 +"Q9VF23",0.260212368004774,15.5829264578613,0.28861304025238,0.777168390400741,0.999843076742056,-4.61371671517283 +"P09040",-0.171039874066519,16.3873326873283,-0.288035325795058,0.777601391025892,0.999843076742056,-4.61372376315387 +"Q95RS6",-0.131648194377178,17.2307810230534,-0.287684497157561,0.777864376798431,0.999843076742056,-4.61372803645066 +"P13677",-0.191706584037952,16.908236599816,-0.287581510940913,0.777941581998509,0.999843076742056,-4.61372928991697 +"Q9VG51",0.227203189692894,19.1538008231299,0.286816372971112,0.778515255718634,0.999843076742056,-4.61373858884167 +"Q0E8U4",0.166124397457398,16.1587998144764,0.286359514164484,0.778857856516866,0.999843076742056,-4.61374412963012 +"Q9VXH7",-0.0753566069098959,18.1474502303308,-0.285088726823594,0.779811077687434,0.999843076742056,-4.61375949637008 +"Q7JWU9",0.15660511052387,15.4201115848207,0.284581456428189,0.78019168556939,0.999843076742056,-4.6137656117875 +"A8DRW0",-0.170947302661624,21.4896507534878,-0.28443399626051,0.780302336772548,0.999843076742056,-4.61376738750274 +"P23779",0.112881370469228,20.804998717406,0.283109467515024,0.781296458608467,0.999843076742056,-4.6137832971549 +"Q9VC67",0.164879903757221,15.1168019500406,0.283027800909185,0.781357766310801,0.999843076742056,-4.61378427572265 +"Q9W1H8",-0.200541274526479,20.7503059077752,-0.282850971576031,0.781490518527372,0.999843076742056,-4.61378639362946 +"Q7K127",0.146079376867085,18.5736732832359,0.282177572808995,0.781996128278307,0.999843076742056,-4.61379444716505 +"A1Z877",-0.150121321622944,20.0178938048181,-0.281308222128264,0.782649016600312,0.999843076742056,-4.61380481644375 +"Q9V521",0.19739544217007,17.4635266091091,0.281071266797581,0.782827001230914,0.999843076742056,-4.61380763733049 +"Q9W265",0.150235763596061,17.0547235981163,0.279619314371924,0.783917884231753,0.999843076742056,-4.61382487166045 +"Q9VLW8",0.201118474333473,14.0948174826336,0.279326939413098,0.784137609023806,0.999843076742056,-4.61382833152398 +"A1Z9E3",-0.111872098767563,21.7804210651904,-0.279318861998572,0.784143679610993,0.999843076742056,-4.61382842705904 +"Q9VVW3",-0.236494897169472,16.6795827100979,-0.279080980778411,0.784322465975167,0.999843076742056,-4.61383123937141 +"P04359",0.106026600847933,18.8163409587996,0.27812848340283,0.785038469058799,0.999843076742056,-4.61384247663952 +"Q9VU95",0.147923101138232,16.6342090714877,0.278002078188711,0.785133504512778,0.999843076742056,-4.61384396510464 +"Q9VXG4",0.148025487503524,19.9098978652396,0.277897031439146,0.785212484704836,0.999843076742056,-4.61384520156289 +"Q8MLP9",0.230359026724432,14.8372950547955,0.277512875222945,0.785501336390241,0.999843076742056,-4.61384971940121 +"P20240",0.116883388061996,17.3858291763181,0.27736071989764,0.785615752894808,0.999843076742056,-4.61385150712143 +"P51140",-0.0860655734120215,13.6004682650369,-0.276666807170049,0.786137620916489,0.999843076742056,-4.61385964795578 +"Q9VE12",0.0909681901799324,15.6298906754201,0.276510723871324,0.786255020556775,0.999843076742056,-4.61386147634282 +"P09180",0.153362154746183,20.7684086185402,0.274166079483981,0.788019217449339,0.999843076742056,-4.61388882041549 +"Q02910",0.217440242276858,16.252228185947,0.274064512882207,0.788095667318409,0.999843076742056,-4.61388999977157 +"Q9I7J0",0.112262164129543,20.9084518293038,0.273787395111973,0.788304267284687,0.999843076742056,-4.6138932153913 +"Q7JYW9",-0.218758601663886,17.4245766426789,-0.272224009260132,0.789481419372258,0.999843076742056,-4.6139112969504 +"Q86BM0",0.1028521251318,17.4038718077917,0.271410976339151,0.790093804335133,0.999843076742056,-4.61392066012826 +"Q9VAA9",0.15026361127082,17.0489444797478,0.271040005847059,0.790373271142223,0.999843076742056,-4.61392492324623 +"Q8SYQ4",0.129683696438306,20.8975423303251,0.269484766054184,0.791545220910009,0.999843076742056,-4.61394273359494 +"Q9VW54",-0.0838080214531161,16.0502239982864,-0.26886345128444,0.792013558860919,0.999843076742056,-4.61394982072632 +"E2QCN9",0.137793704090043,17.3386503406106,0.268616730145004,0.792199556798551,0.999843076742056,-4.61395263054749 +"Q9VC05",0.0935254095948679,14.835132799116,0.267951804521365,0.792700895856643,0.999843076742056,-4.61396019057115 +"P82890",0.0905344298350386,19.4806974920861,0.267393778291274,0.79312170872768,0.999843076742056,-4.61396652101034 +"Q8SXY6",-0.185518146128395,19.1634759474135,-0.267229067330576,0.793245931637318,0.999843076742056,-4.61396838707587 +"P25455",-0.163425492031543,15.842064831721,-0.266843084407401,0.793537057892679,0.999843076742056,-4.61397275559187 +"Q24372",-0.263730524140314,16.9320780588289,-0.266527652915862,0.793774994739349,0.999843076742056,-4.61397632101956 +"Q24319",-0.33150720917655,16.4221606203655,-0.265339501625875,0.79467143457634,0.999843076742056,-4.61398971398894 +"Q9VTB0",0.190282786800459,16.984788736397,0.264913512979193,0.794992909245958,0.999843076742056,-4.6139945014964 +"Q9V564",0.133231553404267,14.0673218782435,0.264857260627895,0.795035363286366,0.999843076742056,-4.6139951331294 +"Q9VB68",0.115145963538525,15.4464344136697,0.264404688479611,0.795376947179066,0.999843076742056,-4.61400021007961 +"P53034",0.135087190456542,15.67679957553,0.263828649565555,0.79581178207772,0.999843076742056,-4.61400665976801 +"Q9VSK4",-0.150227404393906,19.7169325716405,-0.263434587288314,0.796109288777917,0.999843076742056,-4.61401106398975 +"Q9W314",0.152654286367859,16.111044625552,0.263005669646712,0.796433147824397,0.999843076742056,-4.61401585043543 +"Q0KI98",-0.149231622932142,16.6550671562105,-0.262597469956764,0.796741399760734,0.999843076742056,-4.61402039858012 +"Q9VI09",0.0961423777252115,20.0513044721059,0.262195264429783,0.797045159696054,0.999843076742056,-4.61402487316309 +"Q9VY91",0.0933403193473232,16.825751517397,0.262135901574275,0.797089995534661,0.999843076742056,-4.61402553301216 +"Q9VMY9",0.0872287176656954,15.0465125895617,0.262031075327951,0.797169170981219,0.999843076742056,-4.61402669785273 +"O76752",-0.145389865358364,17.8826664902307,-0.261894657061236,0.797272211411185,0.999843076742056,-4.6140282130631 +"Q9VLM8",0.0944359206616703,16.857708132054,0.261280495222956,0.797736153195368,0.999843076742056,-4.61403502503225 +"Q9VDT1",-0.16383593700975,19.23813907505,-0.260209218127335,0.798545592845571,0.999843076742056,-4.61404686954823 +"Q9VKV2",0.119817639498972,15.0144137760122,0.259815736374441,0.798842961821008,0.999843076742056,-4.61405120807188 +"Q9VNW0",0.115134101199061,14.4924044810533,0.259438634364414,0.799127982458079,0.999843076742056,-4.61405535994898 +"Q9VRR3",0.159942149504175,19.6680858588852,0.259263920078031,0.799260044821424,0.999843076742056,-4.61405728154053 +"Q9VBC7",-0.21915956149498,16.3021228855977,-0.258429603056449,0.799890773138405,0.999843076742056,-4.61406644024732 +"Q9VU92",-0.146460621456541,17.7885707877963,-0.258353842446936,0.799948053961002,0.999843076742056,-4.61406727047429 +"Q7KLW9",-0.123938356555961,17.299049571388,-0.257752694129205,0.800402610518241,0.999843076742056,-4.6140738497261 +"Q8SXC2",-0.167918177559546,14.7815427012335,-0.257034439385113,0.800945815323364,0.999843076742056,-4.61408169092696 +"Q9XTL2",0.0908860477253448,16.8482075103012,0.256991686772987,0.800978151832176,0.999843076742056,-4.61408215698099 +"P18053",0.13415760118902,21.0630340976751,0.25648466923678,0.801361670213233,0.999843076742056,-4.61408767827051 +"Q9VAN1",0.261133160490624,14.716103711293,0.256085179556127,0.801663889840748,0.999843076742056,-4.61409202107215 +"Q9VAD4",-0.0990405737591207,13.4195673481856,-0.255727231071908,0.801934710998043,0.999843076742056,-4.61409590664114 +"Q9VVE2",0.119235482854325,18.329252195616,0.253860743928671,0.803347309250338,0.999843076742056,-4.6141160811185 +"Q9VYS2",0.0993894955817201,14.9277135048621,0.25369253201425,0.803474650881596,0.999843076742056,-4.61411789215973 +"Q9W5B4",0.14914589736896,18.5030443353191,0.253684077033769,0.803481051716949,0.999843076742056,-4.61411798315855 +"Q8SXQ1",-0.185145902981297,18.763641968041,-0.253089800335031,0.803930985047271,0.999843076742056,-4.61412437174837 +"Q9W1B9",-0.188228712319248,20.6981556996332,-0.252970354559134,0.804021427463996,0.999843076742056,-4.614125654038 +"M9PEG1",-0.106018307362348,20.1981406101712,-0.25246951683972,0.804400685462329,0.999843076742056,-4.61413102422422 +"Q9W4K0",-0.153235562007673,19.7720482292452,-0.251998581755772,0.804757346477773,0.999843076742056,-4.61413606424866 +"Q08012",-0.122083700631176,19.1845282498247,-0.251954047486904,0.804791076688303,0.999843076742056,-4.61413654038346 +"Q7K084",0.158878487611723,23.688740656401,0.251840744480204,0.804876894093328,0.999843076742056,-4.61413775138145 +"Q9VHT5",0.125953588223645,15.7153748860854,0.251676658281915,0.805001180087229,0.999843076742056,-4.61413950420882 +"Q9VTW6",0.328093891084354,16.2531552800174,0.251427483402927,0.805189926410953,0.999843076742056,-4.61414216383834 +"Q9VQ35",-0.267199621362394,12.2847440799862,-0.250874645323757,0.80560873822447,0.999843076742056,-4.6141480554531 +"Q9VCH5",0.111807837809145,17.9724834360116,0.250128088654591,0.80617440322369,0.999843076742056,-4.61415599131799 +"Q9V9V4",0.168990631639375,18.5881722619413,0.248873664707769,0.807125132398758,0.999843076742056,-4.61416927347199 +"Q9VJU8",-0.0971704078100988,15.634752860009,-0.248663243799235,0.807284641700475,0.999843076742056,-4.61417149503554 +"Q9VLS9",0.1493882275476,18.8922508703174,0.248596881174866,0.807334949652115,0.999843076742056,-4.61417219529012 +"Q9V6Y3",0.107982164319447,15.3477168229345,0.248531130091828,0.807384794882535,0.999843076742056,-4.61417288891065 +"Q9U6P7",-0.155848174090853,17.022759657731,-0.248148863656377,0.807674604416688,0.999843076742056,-4.61417691794028 +"Q9VDK9",-0.171377525657988,15.6199296002043,-0.247979619115269,0.807802923991205,0.999843076742056,-4.61417869980558 +"O18333",-0.20284948466248,17.5427073394481,-0.247546615967179,0.8081312489582,0.999843076742056,-4.6141832531753 +"O96824",0.111783859968227,16.6513791209548,0.247169202150121,0.808417453926533,0.999843076742056,-4.61418721560095 +"Q9V9S8",0.0846816727892588,19.9637069821998,0.247146108572065,0.808434967451376,0.999843076742056,-4.61418745786497 +"Q9V3P3",0.0818264982502832,19.4199773370478,0.24653375025094,0.808899401814317,0.999843076742056,-4.61419387371627 +"Q9V3Z4",-0.172756913985143,18.8167048290958,-0.245759522591918,0.80948671080295,0.999843076742056,-4.61420196312603 +"Q9W125",-0.14695188950288,21.3774623143512,-0.24511142360984,0.809978433629045,0.999843076742056,-4.61420871546754 +"P83967",0.159427360869582,17.3667822465648,0.244725445743319,0.81027132071545,0.999843076742056,-4.61421272852321 +"Q9VEP8",0.15014832130564,17.2286047835101,0.244025564348393,0.810802478883949,0.999843076742056,-4.61421998941134 +"Q9VJZ6",0.130612650851813,19.6227786950523,0.243795410331634,0.810977169925723,0.999843076742056,-4.6142223726669 +"Q9VTZ4",-0.12967630342354,18.3242212626394,-0.243360927203801,0.811306978966175,0.999843076742056,-4.61422686573303 +"Q9VQ93",0.126570943102315,16.6598746305378,0.242798726917831,0.811733791277785,0.999843076742056,-4.61423266784912 +"Q8IPX7",0.33154244914828,15.2383734108442,0.242767584121674,0.811757436146699,0.999843076742056,-4.61423298886864 +"Q9VQT8",-0.185352731402919,17.9259406441039,-0.242763423440998,0.811760595118004,0.999843076742056,-4.61423303175382 +"Q7K5M0",0.094782848727391,16.5627123375304,0.2423296807951,0.812089930246709,0.999843076742056,-4.61423749848253 +"Q9VH95",0.146436786955743,20.8370589413008,0.242280409333184,0.812127343764012,0.999843076742056,-4.61423800538855 +"Q9VIH3",0.0868556484327616,13.7255815807453,0.241546257934271,0.812684866646905,0.999843076742056,-4.61424554634838 +"Q9W1G7",-0.122097056471681,18.9201126754594,-0.241274691045796,0.812891124386643,0.999843076742056,-4.61424833009087 +"Q9VZV2",-0.10131311230046,15.0461180422368,-0.240044416319357,0.813825710804059,0.999843076742056,-4.6142609026464 +"Q9NHA8",-0.154022144621027,16.3625345166131,-0.240014815855371,0.813848200632031,0.999843076742056,-4.61426120436378 +"B7Z0Q1",-0.145892154652678,17.7935583594685,-0.239449878689719,0.814277461037763,0.999843076742056,-4.61426695574992 +"Q7KTP7",0.108321414910602,17.8698408347801,0.238535581936398,0.814972309292721,0.999843076742056,-4.61427623556582 +"Q9VLP1",0.138527063646887,18.4090797696655,0.238363811137822,0.815102869933928,0.999843076742056,-4.6142779750863 +"Q9VZI3",-0.109156273414216,14.4563791023324,-0.238288171844594,0.815160364140017,0.999843076742056,-4.61427874069337 +"Q8MRM0",0.180214003278277,18.5160808426049,0.237553592061158,0.815718783322944,0.999843076742056,-4.61428616353923 +"A1ZB70",0.304659313508713,15.9635727533973,0.237246585695722,0.815952196924493,0.999843076742056,-4.61428925912176 +"Q8T3X9",-0.113028786576066,18.2268356777725,-0.237082015262034,0.816077325513626,0.999843076742056,-4.6142909168836 +"O61444",0.173091155067336,16.4478630099777,0.236934875272456,0.816189205549308,0.999843076742056,-4.61429239810538 +"A1Z6X6",0.0784613907888989,18.5473594407173,0.236892573482012,0.816221371103402,0.999843076742056,-4.61429282377953 +"Q9VXR9",-0.169707047462696,15.3305127736148,-0.235840444888016,0.81702150222328,0.999843076742056,-4.61430338706391 +"Q9VZ66",0.160430265381631,17.0167669987836,0.235396289886735,0.817359340470875,0.999843076742056,-4.61430783245139 +"P35220",0.108155298888217,19.2828068826825,0.233750588138619,0.818611441315871,0.999843076742056,-4.61432423177912 +"Q7K519",-0.146652903384355,15.7234004680534,-0.233323462138685,0.818936496256743,0.999843076742056,-4.61432846955211 +"Q9VPC1",0.098137650145917,16.0220412442041,0.232756648508671,0.819367910852403,0.999843076742056,-4.61433408146662 +"Q9V931",0.242440438093968,17.5012622896374,0.232579607038124,0.819502673564592,0.999843076742056,-4.61433583156612 +"Q9VNE9",0.152996067636231,19.0266269502374,0.232559586580038,0.819517913368514,0.999843076742056,-4.61433602939086 +"Q9VG73",0.0899643844349143,18.0198773504576,0.232270520482695,0.819737962265832,0.999843076742056,-4.61433888382142 +"O77410",-0.218055340093853,14.4682873141122,-0.232015368185758,0.819932207711391,0.999843076742056,-4.61434140045978 +"Q9W3C3",-0.127596001756515,16.436062641009,-0.231405507983564,0.820396539257886,0.999843076742056,-4.61434740464469 +"Q4QQ70",0.0623794543445797,16.0633288352795,0.231078094950321,0.820645851839512,0.999843076742056,-4.61435062166508 +"Q9VWS1",0.168181764706599,17.2064453355406,0.230729965903095,0.820910960983334,0.999843076742056,-4.61435403731126 +"Q9VXF9",0.154338968910125,17.4388740820193,0.230722582695319,0.820916583730752,0.999843076742056,-4.61435410969621 +"Q9VCX3",0.222136487581558,13.1992106707229,0.230572960247221,0.821030532238711,0.999843076742056,-4.61435557610276 +"Q9VCI0",0.295623802032447,14.8261763866143,0.230422510897633,0.821145114727824,0.999843076742056,-4.6143570496688 +"Q9VIH9",0.163483176250804,19.0375340436426,0.22964373195557,0.821738301921939,0.999843076742056,-4.61436466222203 +"Q9VHD3",-0.104131809353566,15.7514285197178,-0.229400421468738,0.821923652049912,0.999843076742056,-4.61436703537376 +"Q7K0E6",-0.0911787207415671,16.8080827456928,-0.229144860589821,0.822118346237251,0.999843076742056,-4.61436952534228 +"Q7K485",-0.103743570529986,20.7001155413317,-0.228235180456805,0.822811467484367,0.999843076742056,-4.61437836630506 +"O77477",-0.1135101578747,16.9499927286381,-0.227858957826645,0.823098171358535,0.999843076742056,-4.61438201259427 +"O97454",0.26787364609169,14.0228925217882,0.227039102226475,0.823723040684064,0.999843076742056,-4.61438993797065 +"Q9V3Y7",0.169679473969204,19.393978596755,0.226969788497641,0.823775875231426,0.999843076742056,-4.61439060672172 +"Q9VKA1",0.275732705661593,14.605187351043,0.226934448387608,0.823802813652497,0.999843076742056,-4.61439094761189 +"Q9VNX9",0.160825482470861,13.5977893537697,0.226818192726204,0.823891432547825,0.999843076742056,-4.61439206864316 +"Q0E8C8",-0.191317477192012,17.6418789529533,-0.2266357177764,0.824030533849274,0.999843076742056,-4.61439382707289 +"Q7JYZ0",0.156071698489562,16.7975662208708,0.226232097322057,0.824338236981566,0.999843076742056,-4.61439771162901 +"Q9VZZ6",-0.144151160698332,18.4478547968946,-0.226173818419629,0.824382668829115,0.999843076742056,-4.61439827195768 +"Q9VK18",0.155260919698733,14.5549353079738,0.226019333934551,0.82450045086089,0.999843076742056,-4.61439975657668 +"P04388",0.160228010390757,16.5352187025589,0.225441386578649,0.824941128323891,0.999843076742056,-4.61440530187075 +"Q9V3E7",0.065357368707609,18.6794329837305,0.22494108419468,0.825322652041075,0.999843076742056,-4.61441009087617 +"Q9VZF9",0.0903702259514425,19.0323050545056,0.224776554661718,0.825448130030349,0.999843076742056,-4.61441166349788 +"Q8T0Q4",0.125253375649788,19.9450576952229,0.224640227820908,0.825552103071901,0.999843076742056,-4.61441296569069 +"Q7K0D8",0.0705908181265542,17.3040838080401,0.224539134130267,0.825629206876069,0.999843076742056,-4.6144139308339 +"Q868Z9",0.128397846337105,20.3355311312832,0.223880867783563,0.826131310017888,0.999843076742056,-4.61442020484112 +"Q960X8",0.0831460283468033,18.376812169878,0.223203336194034,0.826648190612717,0.999843076742056,-4.6144266435034 +"Q9VJJ0",0.109348773425523,19.7362694899805,0.223165896895196,0.826676755035447,0.999843076742056,-4.61442699873252 +"P14318",0.139627739585986,21.9786799317018,0.223137139521307,0.826698695731288,0.999843076742056,-4.61442727154647 +"Q9VUW2",-0.269930078483439,14.3897095849031,-0.222685630313033,0.827043198436995,0.999843076742056,-4.61443155035591 +"Q9VW68",-0.0914594357251559,23.0567533635382,-0.222683042247826,0.827045173244279,0.999843076742056,-4.61443157485755 +"Q9VLY7",-0.169331379560077,15.5630645368527,-0.222414489913807,0.827250097064179,0.999843076742056,-4.61443411576087 +"Q9VZD9",-0.155393979558268,14.6447080960799,-0.222401335589261,0.827260135050722,0.999843076742056,-4.61443424014261 +"Q9V9S0",0.0668754077241402,17.0750306757614,0.222355439703151,0.827295158173217,0.999843076742056,-4.61443467405797 +"Q9VRD9",0.148979552670898,16.1385691848898,0.222288947600142,0.827345898933683,0.999843076742056,-4.61443530254034 +"P48596",0.14735023367173,21.9951453467165,0.22197158103223,0.827588095438539,0.999843076742056,-4.61443829973098 +"Q7K0W4",0.130907286882049,21.7295559962615,0.22185963980399,0.827673527106273,0.999843076742056,-4.61443935588983 +"Q9VFU7",-0.0755307233041957,14.8339767237693,-0.221303279379131,0.82809816566916,0.999843076742056,-4.6144445973233 +"O62621",-0.0824348525500049,13.1341551231951,-0.22110715261842,0.828247871502194,0.999843076742056,-4.61444644192623 +"Q9VH72",-0.0758626869399137,18.4461129259226,-0.220971083291888,0.828351738875491,0.999843076742056,-4.61444772073194 +"Q9VIF2",-0.157292828885854,17.5821786941223,-0.220917042202044,0.82839299161196,0.999843076742056,-4.6144482284051 +"Q9VHC7",0.0612963704145422,19.9104484051464,0.220837005327063,0.82845408942434,0.999843076742056,-4.61444898006307 +"Q95RI2",0.122481380764032,16.5978924931702,0.22042594782908,0.828767896886959,0.999843076742056,-4.61445283623427 +"Q9VJH8",-0.115875702822965,14.4362121832611,-0.220260542476737,0.828894178392438,0.999843076742056,-4.61445438591909 +"Q6NMY2",-0.198927916571659,20.2107237892172,-0.220001601436236,0.829091881169004,0.999843076742056,-4.61445680963694 +"Q9VAG3",-0.116215819372464,16.8888871835907,-0.219990844229758,0.829100094610338,0.999843076742056,-4.61445691026479 +"Q7KTW5",-0.103781955424122,21.5637666678625,-0.219570697946536,0.829420904809283,0.999843076742056,-4.61446083670977 +"Q9V438",0.152085419372334,18.9447037975577,0.217561905157083,0.8309551905903,0.999843076742056,-4.61447950739764 +"Q9VSA9",0.108847533199722,22.2183110523498,0.216515822719666,0.831754456898155,0.999843076742056,-4.6144891631552 +"Q9VPL0",-0.121374074593707,15.26328103645,-0.216133906862313,0.832046310541515,0.999843076742056,-4.61449267694767 +"Q9VRD4",-0.112553672387001,20.3166117619933,-0.215781756734152,0.832315440537582,0.999843076742056,-4.61449591145801 +"Q86BN8",-0.208816795067035,14.1230967669581,-0.215001411163786,0.832911895843641,0.999843076742056,-4.6145030604111 +"O62530",0.0724344270970541,15.6386721994464,0.214753080092898,0.833101729570798,0.999843076742056,-4.6145053300766 +"Q9Y136",-0.0881531909505018,15.3530738197308,-0.214628788464321,0.833196746889155,0.999843076742056,-4.6145064650897 +"Q9VEN9",0.0820181000223563,14.9031431216791,0.213994704120867,0.833681527980388,0.999843076742056,-4.61451224536191 +"Q9VR30",-0.13278858832566,17.374064712593,-0.213873060153815,0.83377453736793,0.999843076742056,-4.61451335233074 +"Q8SYQ8",0.0981780550098588,15.9160665952721,0.213404165243702,0.83413308018717,0.999843076742056,-4.61451761349498 +"Q7JVM1",-0.0671450999384078,15.8704487617972,-0.21288045337082,0.834533584406177,0.999843076742056,-4.61452236190398 +"Q9VSD6",-0.101724793995068,16.4344497790965,-0.212759095318582,0.834626398764996,0.999843076742056,-4.6145234605937 +"Q9VKD3",-0.112230522798356,18.8684989962583,-0.212461659254753,0.834853888012274,0.999843076742056,-4.6145261507533 +"A1ZBD8",0.215987151035426,14.2428820226478,0.212316860705975,0.834964640444645,0.999843076742056,-4.61452745903873 +"Q9VSR8",0.190564540153968,15.4975609413312,0.212021221294455,0.835190778209239,0.999843076742056,-4.61453012746886 +"Q9NJH0",-0.0832238597389647,21.2740793306645,-0.21165419421705,0.835471542248409,0.999843076742056,-4.61453343513378 +"Q9VN25",0.100726007900304,14.9676348312909,0.211157786586946,0.83585131538209,0.999843076742056,-4.61453789978058 +"Q9VSN3",0.116483277326726,20.8152739240628,0.210844842328777,0.836090753042963,0.999843076742056,-4.61454070905416 +"P07668",-0.1093316790193,14.5890200073901,-0.210472499742303,0.836375659126782,0.999843076742056,-4.61454404618184 +"Q7JV69",-0.225709020001108,16.1616052939006,-0.209778563386619,0.836906703393608,0.999843076742056,-4.61455025005672 +"Q9VVM1",0.0716883976410863,15.5843424207665,0.209642206108893,0.837011062385623,0.999843076742056,-4.61455146672883 +"Q9VJZ5",0.129179854480785,16.8481014528117,0.209295666892905,0.837276295311229,0.999843076742056,-4.61455455527098 +"Q9VBL3",0.159058273362936,14.4580127917846,0.209288978208991,0.837281414874232,0.999843076742056,-4.61455461483445 +"Q9VGR1",0.14074911237649,14.1166566808303,0.209169320080426,0.837373003293347,0.999843076742056,-4.61455568008579 +"Q9VPB8",0.157832962001866,15.6305894692163,0.209125014837556,0.837406915920955,0.999843076742056,-4.61455607435868 +"Q9W1G0",0.115543505539602,21.6845142243703,0.208928510750443,0.837557330383163,0.999843076742056,-4.61455782205664 +"Q9VIW6",-0.0843675268513824,15.0687556918158,-0.208822392169349,0.837638561817567,0.999843076742056,-4.61455876519547 +"Q9VQI7",0.0872925885855622,19.0933525862996,0.20868289331636,0.83774534804183,0.999843076742056,-4.61456000428465 +"Q9W260",-0.0973775608509655,17.4763900210789,-0.208298541179368,0.838039586382974,0.999843076742056,-4.61456341403582 +"Q9VJ31",-0.152817697204153,17.2689928801138,-0.208247780059293,0.838078448120305,0.999843076742056,-4.61456386389517 +"Q9VSN9",-0.0663925842630348,16.5886768191222,-0.208081437505521,0.838205799857773,0.999843076742056,-4.61456533731084 +"Q9VFJ2",0.117180691438143,13.9744111740587,0.20680936592059,0.839179852496124,0.999843076742056,-4.61457656650911 +"Q7K0S6",0.142675531625819,17.3751128197337,0.206800838946537,0.839186382710323,0.999843076742056,-4.61457664155137 +"Q9VY41",-0.0803285562322102,16.5138348396994,-0.20667229225249,0.839284829141592,0.999843076742056,-4.61457777246563 +"Q9VCJ8",0.0753196136844352,17.9403098743162,0.206609242025737,0.839333116662865,0.999843076742056,-4.61457832690819 +"Q9VIX1",0.161616887035414,17.0657705520004,0.206497387431035,0.839418783055108,0.999843076742056,-4.61457931010877 +"Q9VTM6",0.0752170269900923,16.2651312087768,0.206443509735788,0.839460047271724,0.999843076742056,-4.61457978350538 +"O97125",-0.124668994283926,18.7366062287652,-0.206359244640711,0.839524585781211,0.999843076742056,-4.61458052365632 +"Q7K2Q8",0.198943260068326,16.0086265980747,0.206076259945505,0.83974133211169,0.999843076742056,-4.61458300709617 +"Q9VF82",0.101591593286656,14.8940573734584,0.206048341949368,0.839762716061657,0.999843076742056,-4.6145832519187 +"P40796",0.0992339667736175,18.2808686420818,0.205543137513468,0.84014970301748,0.999843076742056,-4.61458767656823 +"A8E6W0",0.0825574835931917,16.3815397503082,0.205420846416181,0.840243384547874,0.999843076742056,-4.61458874599707 +"A1Z9B5",0.0728827510103773,15.640698877793,0.204621278669866,0.840855958211653,0.999843076742056,-4.61459572267476 +"Q9VBV5",0.098079948377908,17.1078780572294,0.204261320519485,0.841131768329088,0.999843076742056,-4.61459885473545 +"P41094",0.0904972146340164,21.2033251354374,0.204025872238357,0.841312187195358,0.999843076742056,-4.61460090046536 +"P11046",-0.104113654411755,21.0606647898758,-0.202537359284228,0.842453016180475,0.999843076742056,-4.61461377967769 +"Q9VDH3",-0.0791908628899556,20.6397956639293,-0.202063150503303,0.842816537574328,0.999843076742056,-4.61461786314533 +"Q9VS11",0.137956530020611,14.9226353312817,0.201654430390333,0.843129886221151,0.999843076742056,-4.6146213750907 +"Q9VMX3",-0.116866725604474,12.5081925248531,-0.200823747014096,0.84376682153454,0.999843076742056,-4.61462849111295 +"Q9VZ58",0.0984913331984529,18.1679154023081,0.200388360954358,0.844100703842364,0.999843076742056,-4.61463220923507 +"Q9VRP3",-0.133464988708837,18.0907815586622,-0.199970502035042,0.844421174497693,0.999843076742056,-4.61463577017578 +"P91926",-0.104908252203188,17.7000648165329,-0.19989881138576,0.84447615944978,0.999843076742056,-4.61463638037582 +"Q7KUA4",0.120277898908629,18.7217771475792,0.198923638140841,0.84522417674125,0.999843076742056,-4.61464465914678 +"Q7KMS3",0.1517291945593,15.454984500974,0.197980555137223,0.845947726486305,0.999843076742056,-4.61465262740828 +"Q9VY28",0.0750879147985213,15.3026918746893,0.197387489276477,0.846402811013035,0.999843076742056,-4.61465761913949 +"P43332",0.0933317905210806,17.1979023157213,0.197318552278934,0.846455712987432,0.999843076742056,-4.6146581984093 +"P14484",0.0940110374341252,19.3148141414888,0.197141905834051,0.846591274270125,0.999843076742056,-4.61465968183606 +"A1Z8H1",-0.117857021668215,23.0908976105331,-0.196992787281499,0.846705714141936,0.999843076742056,-4.6146609330686 +"Q9VD29",0.0548771981380973,20.6646703017005,0.196656890598617,0.846963508601819,0.999843076742056,-4.61466374809957 +"Q9VND7",0.145330362892006,13.9159152652131,0.195596615057239,0.847777369709556,0.999843076742056,-4.61467260272109 +"Q9VUH8",0.0637864258839791,15.4930412075164,0.193979729830353,0.849018828316615,0.999843076742056,-4.61468601456138 +"Q9W3M8",-0.101344048304199,18.6711990095897,-0.193389640480357,0.849472007997743,0.999843076742056,-4.61469088183846 +"Q9W3V3",0.122982107999931,13.2079596076327,0.193086454265338,0.849704871940395,0.999843076742056,-4.61469337692573 +"Q9VCD9",-0.146466773151964,18.490397149833,-0.192731081213618,0.849977836848118,0.999843076742056,-4.6146962965565 +"Q9VY42",-0.162024254045212,15.308112496236,-0.191949247759745,0.85057843977534,0.999843076742056,-4.61470270111472 +"Q9VUX1",0.11684838737261,16.5054856755968,0.191634853432945,0.850819984083591,0.999843076742056,-4.61470526928145 +"Q9VWV6",0.0938322897302406,23.470450043578,0.191034063843042,0.851281604726964,0.999843076742056,-4.61471016531388 +"Q9VJI9",0.112360383959945,17.4846501973073,0.191033230576288,0.851282245012366,0.999843076742056,-4.61471017209388 +"Q9VH25",-0.0740380134249676,16.2493676452261,-0.190970008397779,0.851330825497155,0.999843076742056,-4.61471068642528 +"Q9VCE1",0.184482485703732,13.5800451449543,0.190969493228469,0.851331221360416,0.999843076742056,-4.61471069061565 +"P20348",0.134300400418933,17.3147562229782,0.19009066058229,0.852006589148358,0.999843076742056,-4.61471782271389 +"Q7K012",-0.112488981524313,15.6657219695047,-0.189837869732619,0.852200876948428,0.999843076742056,-4.6147198681886 +"A1ZBA5",-0.0858423031684961,15.7412812765763,-0.18925856389395,0.85264615240516,0.999843076742056,-4.61472454552036 +"A1ZAL1",-0.124320601290609,17.1608125549685,-0.188717693792535,0.853061931907476,0.999843076742056,-4.61472889974784 +"Q9W0M4",0.108108655087307,17.8564798481394,0.18858573595425,0.853163377879571,0.999843076742056,-4.61472996019098 +"Q9VQ88",0.119912348381213,16.4256645758746,0.188397677140191,0.853307957581831,0.999843076742056,-4.61473147020539 +"Q9VZE4",-0.122197291606394,17.734836049102,-0.188365179971126,0.85333294197569,0.999843076742056,-4.61473173098962 +"Q9W3X7",-0.100787771363816,21.5569386327251,-0.188187259584541,0.85346973319031,0.999843076742056,-4.61473315798094 +"Q9VZ24",-0.0922775200742123,21.7967976361841,-0.188183249783933,0.853472816117195,0.999843076742056,-4.61473319012574 +"Q8T9B6",0.106219992206487,19.4828168420102,0.187903718487658,0.853687739305534,0.999843076742056,-4.61473542933286 +"Q9VA18",0.0740394228707189,21.549160596135,0.187863655399429,0.853718543596382,0.999843076742056,-4.61473574999134 +"Q9VMX4",0.0767871261644082,17.2319397881249,0.187665712966319,0.853870744096551,0.999843076742056,-4.61473733329714 +"Q9VD68",0.0780409996894669,14.8373354610315,0.187323483030276,0.854133903391102,0.999843076742056,-4.61474006683428 +"P22979",0.0569946433202233,19.6027700921493,0.187254916320747,0.854186630251238,0.999843076742056,-4.61474061391197 +"Q9VWL4",0.114165449646684,16.1037637192029,0.186968648191503,0.854406774341006,0.999843076742056,-4.61474289583603 +"Q26377",-0.11582630455262,16.7360509241872,-0.186849268938383,0.854498582337795,0.999843076742056,-4.61474384642046 +"P54353",0.0936173300478416,18.8304147218926,0.186833581744518,0.854510646655935,0.999843076742056,-4.61474397128861 +"Q9VEB1",-0.0850479064377261,25.0700366079905,-0.186156201710589,0.855031625339437,0.999843076742056,-4.61474935324981 +"Q9VM18",0.110442358912785,22.8502204800418,0.185939261089708,0.855198491067334,0.999843076742056,-4.61475107280749 +"Q9VNE2",0.087305123955943,19.0418913534601,0.185598500169865,0.855460611052538,0.999843076742056,-4.61475376980544 +"Q9VPC2",-0.100287953856951,14.7019638223955,-0.185356984944179,0.855646400044099,0.999843076742056,-4.61475567834356 +"Q9VLP0",0.110040909181414,15.9912338076614,0.184831445932157,0.856050709068834,0.999843076742056,-4.61475982283336 +"P49963",0.130030648423084,14.9375026266523,0.184791751504572,0.856081248596088,0.999843076742056,-4.61476013539701 +"Q9W158",0.117103161214121,17.0153274069086,0.184526682924802,0.856285189385284,0.999843076742056,-4.61476222090767 +"Q95T12",-0.130294218601891,15.9490629352428,-0.184524469182095,0.856286892659026,0.999843076742056,-4.6147622383125 +"Q9V3Y0",0.139923854418324,16.2673096088083,0.183938505812567,0.856737764344625,0.999843076742056,-4.61476683798812 +"Q9W385",0.108104874072094,16.7844830117989,0.183927020991144,0.856746601903056,0.999843076742056,-4.61476692799651 +"Q9VIL2",0.0777503662896706,15.9411637485967,0.183890812027771,0.856774464794369,0.999843076742056,-4.61476721173554 +"Q9W1I8",0.131262612915378,17.8617050436602,0.183705862779607,0.85691678681632,0.999843076742056,-4.61476866016331 +"P20432",0.0857361246911097,23.5205468634713,0.183509342262652,0.857068018822335,0.999843076742056,-4.61477019762948 +"Q9VVL8",0.110764776302553,15.7806333986493,0.183308853311374,0.857222310742769,0.999843076742056,-4.61477176446285 +"Q7K3D4",-0.0858323892077806,18.5857959882855,-0.182487569997442,0.857854415712767,0.999843076742056,-4.61477816513321 +"Q9VE85",-0.0761814320233505,15.8814386667096,-0.182295162959093,0.858002517461344,0.999843076742056,-4.61477966054102 +"Q9VCU0",-0.149776267319002,17.3895518526558,-0.182204742714779,0.858072118687095,0.999843076742056,-4.61478036275696 +"Q9W5P1",-0.158395663633129,14.2826669905993,-0.181982588988467,0.858243127322983,0.999843076742056,-4.61478208656749 +"Q9VFP0",0.0704583528804967,16.4498812886435,0.181347176855656,0.858732293222601,0.999843076742056,-4.61478700557143 +"Q7K4Z4",0.0959155231316888,14.9359734077714,0.180552030327849,0.859344514041564,0.999843076742056,-4.61479313713803 +"Q9VXY3",0.0709645792048477,18.1641761953229,0.180456679045209,0.8594179358149,0.999843076742056,-4.61479387062227 +"Q9VBU9",-0.114944449562309,20.8898472515983,-0.180334460311671,0.859512047864346,0.999843076742056,-4.61479481022145 +"Q95RB2",-0.06965669487575,24.2492040050962,-0.179929411359174,0.859823963428276,0.999843076742056,-4.61479791966773 +"Q9W0J9",-0.0608072229095953,18.371571084034,-0.179359200429917,0.860263106290293,0.999843076742056,-4.61480228527455 +"Q7JW03",0.11255382302701,17.1388248068039,0.179200043220962,0.860385688380755,0.999843076742056,-4.61480350135115 +"A1ZA22",-0.0771648948217489,13.8073568413692,-0.178973556284448,0.860560133941109,0.999843076742056,-4.61480523003142 +"Q95SH2",0.0696193897078601,18.7133393145131,0.178312452597144,0.861069374777924,0.999843076742056,-4.61481026356885 +"Q9VL01",0.106355691866977,20.3813067873409,0.177696004841614,0.861544275526396,0.999843076742056,-4.6148149404715 +"Q9VSC5",0.0553078924361579,19.4060251208464,0.177647611500164,0.861581559283309,0.999843076742056,-4.61481530694549 +"P42325",-0.0797180957409367,20.0483515849267,-0.177321080456543,0.86183313806047,0.999843076742056,-4.61481777712006 +"Q8MR62",0.0660816460293105,17.5724999768362,0.177306129403669,0.861844657606929,0.999843076742056,-4.61481789011544 +"Q9VTF9",0.0673207677659349,17.4287630436271,0.176801893169193,0.862233182656404,0.999843076742056,-4.61482169544547 +"A0A0B4KH34",0.073882891987175,23.3684353258763,0.176393023895398,0.862548252594035,0.999843076742056,-4.61482477318153 +"Q9VF89",-0.136526913061571,14.3206189711875,-0.175836496806271,0.86297714500197,0.999843076742056,-4.61482895105221 +"Q7K1U0",0.123350056106233,16.6422960928145,0.175556351111373,0.863193058704924,0.999843076742056,-4.61483104916517 +"Q7KN75",-0.114826921999061,19.44541509862,-0.175412941545036,0.863303591628731,0.999843076742056,-4.61483212192825 +"Q9W4X7",0.135347965056081,19.1436506462052,0.175182234535923,0.863481415299585,0.999843076742056,-4.61483384588887 +"Q9W3E2",-0.0901648689738401,17.4391393011254,-0.174788293106311,0.863785074090623,0.999843076742056,-4.61483678442124 +"Q9V3F3",-0.0619782157604316,14.6457686399797,-0.174665090436027,0.863880046036814,0.999843076742056,-4.61483770208227 +"A1ZB69",0.143935361307094,20.369465214526,0.174660276435438,0.863883756999206,0.999843076742056,-4.61483773792578 +"Q3YMU0",0.0716790296660328,23.1352343270644,0.174562425852414,0.86395918767484,0.999843076742056,-4.61483846627773 +"Q9VS84",0.0915069296780224,17.5094243613283,0.174248460133821,0.864201225648725,0.999843076742056,-4.61484080055308 +"P13060",-0.0846246928863685,20.2895421038433,-0.174059649145382,0.864346787947856,0.999843076742056,-4.61484220232085 +"Q8SXX1",-0.108033440024379,19.8830310225014,-0.174028328840681,0.864370934577754,0.999843076742056,-4.6148424347029 +"Q9W3Y3",0.106297519496518,17.9441762165466,0.173909918030154,0.864462225575823,0.999843076742056,-4.61484331288121 +"Q0E8X7",0.128083487855456,20.9988776749342,0.173800268788039,0.864546763475206,0.999843076742056,-4.61484412555205 +"Q9W3B3",0.112750194383837,15.6064424409218,0.173636591750501,0.864672959191105,0.999843076742056,-4.61484533770716 +"Q9VQM2",-0.0716742440865161,20.0807737249762,-0.172841980238748,0.865285662644854,0.999843076742056,-4.61485120632742 +"Q9VGA0",0.0964828415525574,19.1730413091695,0.1725089792219,0.865542457528488,0.999843076742056,-4.61485365777729 +"Q7K1M4",-0.12277602555902,17.2320223334224,-0.17203047864341,0.865911482535371,0.999843076742056,-4.61485717214209 +"Q8MLW4",0.0943082789405807,18.604966298707,0.171868768113495,0.866036202862097,0.999843076742056,-4.61485835764252 +"Q9VYT3",-0.081315417203605,14.3846837350221,-0.171766274612199,0.866115253580776,0.999843076742056,-4.6148591084503 +"Q7JVZ8",0.259931569807101,15.9723486217246,0.171627111904219,0.866222588741219,0.999843076742056,-4.61486012716447 +"P40301",-0.0476346291393561,17.9360264328529,-0.17142474240319,0.866378679725689,0.999843076742056,-4.61486160711087 +"Q02748",-0.141169784562315,19.5950657560969,-0.171406688189449,0.866392605524701,0.999843076742056,-4.61486173905883 +"Q9V9A7",0.121498405937359,16.2420319184984,0.171385291801458,0.866409109310531,0.999843076742056,-4.614861895415 +"Q8IP62",0.222391915014327,15.8530221432174,0.171264839330273,0.866502019742122,0.999843076742056,-4.61486277527183 +"Q9VLT3",-0.0850942268492609,19.4665118811965,-0.171207122893181,0.866546539763985,0.999843076742056,-4.61486319664979 +"Q9VN73",-0.103948533764889,18.4672392083489,-0.17120125355792,0.866551067147684,0.999843076742056,-4.61486323949292 +"Q9W2M0",0.0802878167284788,17.7041336368835,0.171121142737088,0.866612862097991,0.999843076742056,-4.61486382411518 +"Q8SYJ2",0.0774436301711816,22.469684117288,0.170906871464193,0.866778148626781,0.999843076742056,-4.61486538646247 +"P32748",-0.151262176973084,17.3869066959542,-0.170855802205442,0.866817543853652,0.999843076742056,-4.6148657585447 +"Q9VMB3",0.0695804016068422,18.6855427527183,0.170805619077801,0.866856255870394,0.999843076742056,-4.6148661240633 +"Q9U915",0.0735434913254522,21.0788216242223,0.170780286737074,0.866875797752565,0.999843076742056,-4.6148663085359 +"P40417",-0.09421534825238,19.842012550878,-0.170778074009042,0.866877504700209,0.999843076742056,-4.61486632464791 +"Q7K5M6",0.116145597905152,18.1008761577239,0.17028505518394,0.86725784758959,0.999843076742056,-4.61486990941025 +"Q9V3W9",0.094297105799388,18.4793982703753,0.169958987081859,0.867509413934365,0.999843076742056,-4.6148722746193 +"Q9VN44",0.131065059415143,19.4746980513068,0.169863354984229,0.867583198337717,0.999843076742056,-4.61487296745572 +"P23625",-0.0753512606667428,22.2109097814817,-0.169648282026345,0.867749141345858,0.999843076742056,-4.61487452420554 +"Q9W3R8",0.106563126415836,17.2173338590721,0.169457842649048,0.867896083327373,0.999843076742056,-4.61487590101859 +"Q9W1L1",0.0635102680342143,15.019427046615,0.169150273105066,0.868133413019787,0.999843076742056,-4.61487812140456 +"Q8IPD8",0.125576617312483,18.2635258590238,0.168755427477033,0.868438106870473,0.999843076742056,-4.61488096598322 +"Q7KJ08",-0.108963545327949,14.6271991959506,-0.168635860629931,0.868530378314908,0.999843076742056,-4.61488182607558 +"Q9VDE2",-0.0993927356567497,19.4931018413359,-0.167730267146876,0.869229302304068,0.999843076742056,-4.61488832073842 +"Q9VBI3",0.109275869823076,18.5778729764938,0.167392204170243,0.86949024359381,0.999843076742056,-4.61489073633882 +"Q9W436",0.0930238099272529,14.4398115397976,0.166815796035392,0.869935193229122,0.999843076742056,-4.61489484386458 +"Q6AWN0",-0.0610070802135674,18.3777350153857,-0.166326589349332,0.870312864943571,0.999843076742056,-4.61489831895874 +"Q7K2N0",0.0587234502196026,15.3862683639639,0.166157412854637,0.870443478292743,0.999843076742056,-4.61489951835262 +"Q7JVH6",-0.0917336490784315,19.005866593423,-0.166100479489845,0.870487434795203,0.999843076742056,-4.61489992171512 +"Q9V455",0.121475159201182,19.3449192279742,0.16566534791022,0.870823401208447,0.999843076742056,-4.61490300001302 +"Q9VDV3",0.14426126570141,17.50259571609,0.165663586090336,0.870824761567664,0.999843076742056,-4.61490301246057 +"Q7KTJ7",-0.0654621110196523,22.0986227952706,-0.16562032054439,0.870858168455454,0.999843076742056,-4.61490331809751 +"P42207",-0.0924633721892274,16.0307722952912,-0.165438486750501,0.870998571683519,0.999843076742056,-4.61490460174376 +"Q95SK3",0.103433912189118,17.1792206884065,0.165338527598084,0.871075757214298,0.999843076742056,-4.61490530680423 +"Q9VZG2",0.0907246032381579,21.8935912880701,0.165307699766584,0.871099561838693,0.999843076742056,-4.6149055241626 +"O77263",0.0846181507445216,15.4619017875801,0.165268255202269,0.871130020318244,0.999843076742056,-4.61490580221648 +"Q9VC66",0.0739940135347652,17.68473607393,0.165261411862962,0.87113530466014,0.999843076742056,-4.61490585045006 +"O76521",-0.0507548208758344,16.1161413681071,-0.165043415534817,0.871303642072148,0.999843076742056,-4.6149073859061 +"P52029",-0.143431014217427,18.3054273839494,-0.165025038102632,0.87131783347627,0.999843076742056,-4.61490751525553 +"Q9V3W0",0.135124028516625,20.7576572235941,0.164722845003328,0.871551199362435,0.999843076742056,-4.61490964018982 +"Q9VQF7",-0.0874776860521571,18.7388924675807,-0.164490901642382,0.871730323959553,0.999843076742056,-4.61491126852675 +"Q9VEJ3",-0.0693657213127317,20.0319381911855,-0.164027516782367,0.8720882074734,0.999843076742056,-4.614914514859 +"Q24276",0.0948536926084458,18.4882611299607,0.163859860621623,0.872217699623624,0.999843076742056,-4.61491568716773 +"Q94901",0.0921477559884458,19.0157861576264,0.163130410033258,0.872781147743048,0.999843076742056,-4.61492077388419 +"Q9VL16",0.0755518395871526,20.6991872305225,0.162091411104126,0.873583823540892,0.999843076742056,-4.61492798030051 +"Q9W330",-0.082017278821791,20.6657049362558,-0.16166552520246,0.873912882404538,0.999843076742056,-4.61493092100623 +"Q9VX69",0.0955832422023661,18.026916732431,0.161575871841186,0.873982155770959,0.999843076742056,-4.61493153907658 +"Q8SY96",-0.0762091384177985,18.7595914780058,-0.161438356387827,0.874088413309818,0.999843076742056,-4.6149324864469 +"Q9VLV5",0.067446203458271,17.4716707409845,0.161383625483918,0.874130704322416,0.999843076742056,-4.61493286327585 +"Q9V3V9",0.0545234888344801,19.5080276117813,0.161180668961687,0.874287533960134,0.999843076742056,-4.61493425954903 +"Q9VE50",0.0865715849869986,14.475521288582,0.160930113690472,0.874481151929263,0.999843076742056,-4.61493598088006 +"Q9VGU6",0.0543536900711032,18.6156047721289,0.160725444022088,0.874639317747789,0.999843076742056,-4.61493738500144 +"Q9VIQ5",0.138569950231659,16.4203973331233,0.160720445618517,0.874643180512917,0.999843076742056,-4.61493741927043 +"Q9VVJ7",0.110050683473162,18.1412256347526,0.160625163015671,0.874716815521534,0.999843076742056,-4.61493807232453 +"Q9V434",0.061568601335722,15.0237322072161,0.160513485464947,0.87480312218696,0.999843076742056,-4.61493883725802 +"C0HK94",0.0860667974055787,18.4702960068208,0.160322115054977,0.874951020952622,0.999843076742056,-4.61494014681849 +"Q9I7C6",-0.122250807180514,15.5324145521747,-0.160276077988532,0.874986600978066,0.999843076742056,-4.61494046162178 +"Q5LJT3",-0.080371906895742,17.0592843814307,-0.160206281735045,0.875040543971021,0.999843076742056,-4.61494093872017 +"P45594",0.0865030130244726,23.0320016173485,0.159881818177592,0.875291318560472,0.999843076742056,-4.61494315391049 +"P54352",-0.124221443491304,16.1550680113512,-0.159210370401925,0.875810317928518,0.999843076742056,-4.61494772388524 +"Q9VFP6",-0.0738672613378242,20.1841661370891,-0.159208119196944,0.875812058110224,0.999843076742056,-4.61494773917516 +"Q9I7I3",-0.139003264647275,14.6224815081375,-0.159153055471308,0.875854622584264,0.999843076742056,-4.61494811309479 +"Q9VKI8",0.0741086383334704,22.3207915468324,0.15912210697071,0.875878546070875,0.999843076742056,-4.61494832319949 +"Q9VZU7",-0.0677051255833732,17.7520965147137,-0.158997205501159,0.875975097381374,0.999843076742056,-4.6149491707245 +"P92177",0.0799742803239916,24.0760684689955,0.158794092853682,0.876132111864303,0.999843076742056,-4.61495054754436 +"Q7K1H0",0.0863519055399316,16.2844123896824,0.158596310794814,0.876285010791565,0.999843076742056,-4.61495188655108 +"A0A0B4KHJ9",0.104447151946527,24.5118156847406,0.158461477154715,0.876389249271263,0.999843076742056,-4.61495279844014 +"Q9VN50",0.0883850871057632,17.9174075157007,0.158292327497263,0.876520020477238,0.999843076742056,-4.61495394132177 +"Q9VKG4",-0.0881054884964367,15.8117209264281,-0.158292013373349,0.876520263332906,0.999843076742056,-4.61495394344306 +"Q9W402",-0.0504284570763645,21.1745173690248,-0.158223269948825,0.876573410601313,0.999843076742056,-4.61495440756966 +"Q9VCK6",-0.0999830197650979,16.6695411338012,-0.157908060127664,0.876817115152996,0.999843076742056,-4.61495653317011 +"Q9VRJ6",0.108047238484987,15.6719671718822,0.157461054109783,0.877162740227215,0.999843076742056,-4.61495954031456 +"Q9VF70",0.0796769507350064,15.8799457605413,0.157460856446605,0.87716289306616,0.999843076742056,-4.61495954164243 +"Q9V9U7",-0.105387377268215,17.8596547551577,-0.157428915243571,0.877187591004546,0.999843076742056,-4.61495975619625 +"P61851",0.0622201808076746,23.492583664997,0.157223943631973,0.877346084636099,0.999843076742056,-4.61496113199247 +"O96299",-0.109157471795791,15.7717495595876,-0.157221855686333,0.877347699161416,0.999843076742056,-4.61496114599788 +"Q9VN01",-0.102739738064024,16.1454195783249,-0.157040370270452,0.877488036782338,0.999843076742056,-4.61496236264998 +"Q9VMW7",0.0868794718754984,19.321115867268,0.156971638918842,0.877541185941746,0.999843076742056,-4.61496282305077 +"Q9VD26",0.0536016446056777,16.2038281291666,0.156778489079752,0.877690549764551,0.999843076742056,-4.61496411580423 +"Q9VMU2",0.0498718144713131,16.2650476200337,0.156643003626578,0.877795324293534,0.999843076742056,-4.61496502166629 +"Q9VZY0",0.0834168772720609,17.1882650710432,0.156336210430583,0.878032584482734,0.999843076742056,-4.61496707002544 +"Q9VMQ5",0.0928557751700314,13.6536482014437,0.155888722178328,0.878378673798903,0.999843076742056,-4.61497005060945 +"P05205",0.0996868477057937,18.0540826934439,0.155699251677838,0.878525218882504,0.999843076742056,-4.61497131005837 +"Q9VRG8",0.152354999430646,16.1885796387214,0.155315455583627,0.878822078376736,0.999843076742056,-4.61497385656752 +"Q9VA41",-0.0814466106087828,17.4751022523942,-0.155195584697154,0.878914800273247,0.999843076742056,-4.61497465063854 +"Q9W0A8",0.104113750154912,18.9399094420895,0.154850971827325,0.879181373685993,0.999843076742056,-4.61497693009567 +"A0AQH0",0.0605361292444826,16.953696364868,0.153974472114489,0.879859453831201,0.999843076742056,-4.61498270506261 +"Q9VKK1",-0.0744162695109516,14.5359172181919,-0.153880926498096,0.879931828647421,0.999843076742056,-4.61498331948083 +"Q8I937",0.0990639268070979,13.9565745248004,0.153754539262647,0.880029614294714,0.999843076742056,-4.61498414901748 +"A1ZB68",0.0757935239973477,19.2641362846408,0.153712697027985,0.880061988028118,0.999843076742056,-4.61498442349783 +"O16158",-0.0745588417948504,21.3065765412303,-0.153592413770232,0.880155053565639,0.999843076742056,-4.61498521212921 +"A1ZBU8",0.0764094516694129,20.7168144287995,0.153395613516027,0.880307325787182,0.999843076742056,-4.61498650111811 +"Q9W483",-0.0469693529059665,15.6709905982202,-0.15309194942225,0.880542292485994,0.999843076742056,-4.61498848681571 +"P80455",-0.0597297091451203,20.5171656308944,-0.152995990415487,0.880616545287987,0.999843076742056,-4.61498911349096 +"Q7JVG2",0.0901639330976085,14.8418424357006,0.15296179461414,0.880643006182316,0.999843076742056,-4.61498933671765 +"Q9VHN4",0.108100621417345,14.5401845679138,0.152866874572758,0.880716456595453,0.999843076742056,-4.61498995608618 +"Q9VJI5",0.116134021257764,17.652938204105,0.152827816846734,0.880746680324062,0.999843076742056,-4.61499021083322 +"A8Y535",-0.0539823664592234,21.9712064615473,-0.152239602798939,0.881201876641352,0.999843076742056,-4.6149940395338 +"Q9W4I3",0.0833818679198899,16.6970133565521,0.152070216594976,0.881332966236639,0.999843076742056,-4.61499513935301 +"Q7JZW0",-0.0717341419612048,19.852561806456,-0.152034930813566,0.881360274693836,0.999843076742056,-4.61499536830938 +"Q9VH64",0.117991365012873,17.3830942884285,0.15199590682828,0.88139047641347,0.999843076742056,-4.61499562146009 +"Q01637",-0.0777034840466513,16.1310455210202,-0.151971419719115,0.881409427748715,0.999843076742056,-4.61499578027634 +"Q9V3V6",0.0758795806078894,21.6030274820414,0.151709929232871,0.881611808073606,0.999843076742056,-4.61499747464221 +"Q9VMR6",0.091567732549322,18.6661357537493,0.151620031434754,0.881681386379405,0.999843076742056,-4.61499805647853 +"P48159",0.0866709109241448,19.9078436438646,0.151566829184681,0.881722563866539,0.999843076742056,-4.61499840065263 +"X2JAU8",-0.0868343531769504,21.614891385668,-0.15143347467823,0.881825779173694,0.999843076742056,-4.61499926281746 +"Q9VU04",0.0628619444630623,16.4469590514162,0.151295303417763,0.881932724963524,0.999843076742056,-4.61500015532831 +"Q9VMQ7",0.0529892350714807,15.923568019717,0.150871371165046,0.882260867244062,0.999843076742056,-4.61500288864741 +"Q9VIE8",0.083034235336779,25.0489929445137,0.150868038702657,0.882263446806183,0.999843076742056,-4.6150029101034 +"Q8IQG9",0.101864744599474,20.3413123855555,0.150781520681116,0.882330418373897,0.999843076742056,-4.61500346698312 +"Q7KLE5",0.0556742784371629,21.3584388759151,0.1505545464524,0.882506118236334,0.999843076742056,-4.6150049264112 +"Q0KHZ6",0.0851679015030555,22.9972784062192,0.150480611665918,0.882563352253868,0.999843076742056,-4.61500540133493 +"Q9W5W7",0.0449113066498565,15.0692077280457,0.150464839910352,0.882575561492604,0.999843076742056,-4.61500550261558 +"Q7JQR3",0.082249583652569,18.9968825494401,0.150411870988373,0.882616566046096,0.999843076742056,-4.61500584268611 +"Q9VHI7",0.0868548781068466,15.5328542270178,0.150346629584714,0.882667071512142,0.999843076742056,-4.61500626138479 +"Q9VV39",-0.0832991209266964,17.6207429348284,-0.149379748603196,0.883415627196026,0.999843076742056,-4.61501244536234 +"Q9VRJ5",0.0730094656707081,17.2098243086631,0.149377540862681,0.883417336553332,0.999843076742056,-4.61501245943724 +"O18373",0.059416749452474,19.606156880926,0.148599284726793,0.88401994392346,0.999843076742056,-4.61501740813662 +"Q7JVK6",-0.0894937647039384,17.4664185938899,-0.148345804748718,0.884216230787238,0.999843076742056,-4.61501901439461 +"Q7K1C5",0.0894635490129474,17.4543673179102,0.148076753301455,0.884424584349733,0.999843076742056,-4.61502071634482 +"Q9VBC9",0.104731009862178,15.4567676281696,0.148059707427761,0.884437784981608,0.999843076742056,-4.6150208240692 +"Q9U616",-0.0599030940914425,19.6651499850331,-0.147378541199721,0.88496532154158,0.999843076742056,-4.6150251187319 +"Q9W0H8",0.0761130017170117,19.3576437708151,0.147192924453496,0.885109084283453,0.999843076742056,-4.61502628560855 +"Q9VWA8",-0.0761036077855923,14.4711027153225,-0.146991169785333,0.885265350839678,0.999843076742056,-4.61502755227832 +"Q9VCW6",-0.100979543568922,19.8006912268791,-0.146892387481709,0.885341863248214,0.999843076742056,-4.61502817183036 +"Q9VSL6",0.172303610903624,14.5992736241864,0.146866331110885,0.885362045560161,0.999843076742056,-4.61502833518413 +"Q7K549",0.151953161340408,14.7498003124148,0.146451273926155,0.885683544818197,0.999843076742056,-4.61503093339583 +"Q9Y114",0.0482520942753304,18.5795106811864,0.146314573857856,0.885789435945473,0.999843076742056,-4.61503178752311 +"Q6NP72",-0.0945827071445819,18.7563196814997,-0.145939497052618,0.886079991010491,0.999843076742056,-4.61503412700041 +"Q9VH39",0.122383839450176,18.3511293452864,0.145831797625468,0.886163424042916,0.999843076742056,-4.61503479765417 +"Q9VWT3",0.0604602502795597,14.2719617701835,0.145460352160337,0.886451187693219,0.999843076742056,-4.615037106902 +"Q9W0D3",0.0786433932549446,12.8805767096222,0.145025830835543,0.886787838163393,0.999843076742056,-4.61503980085802 +"Q9VW66",0.0686625363174578,21.2695441890286,0.144574413439278,0.887137603122042,0.999843076742056,-4.61504259108193 +"Q9VEP9",0.0789695372110941,17.5119927912814,0.144227282859998,0.887406581723593,0.999843076742056,-4.6150447308247 +"O76454",0.0546162078638623,17.966525120314,0.144111339912617,0.887496424824577,0.999843076742056,-4.61504544436784 +"Q9V595",0.0725883028613588,18.5017065400041,0.142969382166652,0.888381402848494,0.999843076742056,-4.61505244179308 +"Q9VYS5",0.0733018582156166,14.2947112787365,0.14259461739467,0.88867186645596,0.999843076742056,-4.61505472612819 +"Q95RN0",-0.0680619524891526,16.9109455743566,-0.142444530492863,0.888788196842763,0.999843076742056,-4.61505563929374 +"Q9U9Q2",0.0867921641722109,15.5181123332777,0.14194989817909,0.889171598692144,0.999843076742056,-4.61505864199021 +"P48375",-0.0860373724785113,21.8085269826473,-0.141748868296897,0.889327430215485,0.999843076742056,-4.61505985938664 +"Q9W073",-0.096895351220585,14.6015500432529,-0.141727840311172,0.889343730669254,0.999843076742056,-4.61505998662877 +"Q24583",0.0874521932582688,21.187945078414,0.141565087677596,0.889469894858394,0.999843076742056,-4.61506097082401 +"Q9VZD8",0.0717299611677564,13.6295430519707,0.141456822134225,0.889553822932824,0.999843076742056,-4.61506162490297 +"Q9W227",0.100712673341491,21.9153365421577,0.141294074673902,0.889679988293453,0.999843076742056,-4.61506260719458 +"Q9VGQ8",0.110766497970857,16.2585544813343,0.141205343586309,0.889748775865795,0.999843076742056,-4.61506314227343 +"Q9VG33",0.0636389100204831,19.9059274132444,0.141034975544238,0.889880853966974,0.999843076742056,-4.61506416871411 +"Q9VH26",0.0707965210887167,18.2317465694375,0.14103364414052,0.889881886153257,0.999843076742056,-4.61506417673075 +"Q9W140",0.166493786915103,13.7138353560822,0.141030576989587,0.889884263998632,0.999843076742056,-4.61506419519839 +"Q9VWP4",-0.10412000833248,15.2732558003591,-0.140800794179146,0.890062408996282,0.999843076742056,-4.61506557760911 +"Q9VVU1",-0.101989462375514,22.3379601509327,-0.140709425531862,0.890133246591452,0.999843076742056,-4.61506612667488 +"Q9VK39",0.0825332502891456,18.0226356762533,0.140676464623251,0.890158801236788,0.999843076742056,-4.61506632466138 +"Q9VSR5",0.0738491630137688,20.3570599932398,0.140341362157473,0.890418613914481,0.999843076742056,-4.61506833490535 +"Q9VWD5",-0.0709985296917957,14.5196227166777,-0.140237881647815,0.890498847388347,0.999843076742056,-4.61506895471049 +"Q9VS97",0.0492331533620884,15.119787367858,0.140183992287688,0.890540630925014,0.999843076742056,-4.61506927730527 +"Q9VSU6",-0.0580567630503062,21.5518762551509,-0.140034799137112,0.890656310763737,0.999843076742056,-4.61507016976849 +"Q9VAY2",0.0706825506028039,21.1063656067594,0.139654021195375,0.890951566144375,0.999843076742056,-4.61507244327206 +"Q9VG26",-0.0609287753238519,19.6958901800088,-0.139547124012312,0.891034457291244,0.999843076742056,-4.61507308041432 +"P81900",-0.0851000863589029,22.4240429796673,-0.139194533045919,0.891307875838736,0.999843076742056,-4.61507517853256 +"Q9W445",0.0689803767640385,16.4111935822001,0.13916304440456,0.891332294573393,0.999843076742056,-4.61507536565125 +"Q9VGQ1",-0.0787543556199921,22.4199680033146,-0.138480561408181,0.891861572935928,0.999843076742056,-4.61507941090545 +"Q9W0H3",-0.0699978161956771,16.7073177433376,-0.138401925911885,0.89192255968503,0.999843076742056,-4.61507987572772 +"Q9VGK3",0.0490406462523083,17.0547593905829,0.138198853214962,0.892080058558955,0.999843076742056,-4.61508107489606 +"M9PFN0",-0.0434058667362045,16.6328478275379,-0.138049974237277,0.892195528942325,0.999843076742056,-4.61508195293148 +"Q7KQM6",0.0510462754449499,15.1493371541478,0.13784680655703,0.892353109688588,0.999843076742056,-4.61508314962368 +"Q9VEC8",0.0962355975697626,16.448681063523,0.137669650691959,0.892490519030402,0.999843076742056,-4.61508419167119 +"Q9VGV9",0.0767075158298756,16.0126395571021,0.137442161487947,0.892666974233801,0.999843076742056,-4.61508552782944 +"Q961D9",-0.153117296806277,12.3686929291815,-0.137419096831449,0.892684864989373,0.999843076742056,-4.61508566317703 +"Q0KI15",-0.0454007074298719,15.5979907923235,-0.137128110009124,0.89291058239172,0.999843076742056,-4.61508736879986 +"Q9W1F7",-0.0683885514612896,20.3468451588432,-0.136816278967888,0.893152479284921,0.999843076742056,-4.61508919260946 +"Q9VQ62",0.0522984440904644,19.6136166464376,0.136587933461331,0.893329620902912,0.999843076742056,-4.61509052551683 +"Q9W2N5",0.144702093448622,13.0538368046845,0.136513693242204,0.893387214870552,0.999843076742056,-4.61509095839769 +"Q86BS3",0.0767159640549266,18.8786694014408,0.136457033778974,0.893431170485975,0.999843076742056,-4.61509128861092 +"Q7KTA1",0.0440052468805909,17.0142131731696,0.136330913696002,0.893529013980801,0.999843076742056,-4.61509202315339 +"Q95029",0.0731132934697563,21.8200758807479,0.135561851781579,0.894125688308944,0.999843076742056,-4.61509648766487 +"P02299",0.0796797081817857,22.044932221784,0.135258856489079,0.894360784594797,0.999843076742056,-4.61509823969555 +"Q6IHY5",-0.0688697321561804,20.8055478376889,-0.134840440690744,0.894685453464349,0.999843076742056,-4.61510065271874 +"Q9VU45",0.136986390426561,17.8851088405112,0.134339695012129,0.895074031819042,0.999843076742056,-4.61510353076533 +"Q8MSS7",0.103001401848262,14.2982921642656,0.13425686308138,0.895138312050551,0.999843076742056,-4.61510400581681 +"Q0E9F9",0.0872083220998761,18.4649680245759,0.134194190356562,0.895186948601371,0.999843076742056,-4.615104365059 +"Q9V3G1",0.0552951160207016,21.163539481644,0.133860012801402,0.895446291193151,0.999843076742056,-4.61510627775884 +"Q9VSY0",-0.0648033147643368,22.4982764593045,-0.133715355429745,0.895558558176761,0.999843076742056,-4.61510710424879 +"P91927",0.0933534378263126,19.1369009920535,0.133596496794022,0.89565080478806,0.999843076742056,-4.61510778267404 +"Q24439",0.0905324399746128,24.2205606648298,0.132471763077126,0.896523792116804,0.999843076742056,-4.61511417275014 +"P40797",-0.0988304065822909,19.1922492368562,-0.132469200760171,0.896525781076154,0.999843076742056,-4.61511418724635 +"Q0KI81",-0.101636145702145,15.5755079521523,-0.132414241674128,0.896568442400261,0.999843076742056,-4.61511449810809 +"A8JNT7",-0.0623320440843678,16.9183019633104,-0.13241215243395,0.896570064154177,0.999843076742056,-4.6151145099228 +"Q9VPF6",0.0892020508451825,14.1197783312334,0.132179023595109,0.896751031337458,0.999843076742056,-4.61511582710756 +"P29746",0.0672799083305442,21.2437329093553,0.132106018344143,0.89680770318092,0.999843076742056,-4.61511623911449 +"Q7K159",0.10459742510851,14.5592157679927,0.131920813999389,0.896951474528715,0.999843076742056,-4.61511728330363 +"Q9VIQ8",-0.0890912186655939,21.3070907888754,-0.13152180823203,0.897261229484055,0.999843076742056,-4.61511952796016 +"Q9VMV5",0.075183649353999,17.5908994875229,0.131413881237975,0.897345018037007,0.999843076742056,-4.61512013395429 +"A1Z7P1",-0.155173208085813,14.6474262404962,-0.131019915916432,0.897650881734123,0.999843076742056,-4.61512234180964 +"Q95R34",-0.0972312321112234,15.3379506274258,-0.131014673782239,0.89765495169515,0.999843076742056,-4.61512237114306 +"Q9W3J5",-0.0811463035470652,16.3335365613533,-0.130871833111628,0.897765853472889,0.999843076742056,-4.61512316998763 +"P02283",0.0926613615259058,21.5563069429011,0.130220022698072,0.898271948512277,0.999843076742056,-4.61512680426688 +"Q9VZU4",0.040474917692805,21.3322122086459,0.129753035733535,0.898634566586531,0.999843076742056,-4.61512939692804 +"Q9VPX6",-0.0703536766207797,21.594390052758,-0.129393092123119,0.898914080944984,0.999843076742056,-4.61513138896994 +"Q9VGA3",0.0775154284344275,19.5055893985931,0.129387254546996,0.898918614232138,0.999843076742056,-4.61513142123155 +"Q9VBS7",0.0617435817168328,19.8588156854224,0.12911944577893,0.899126590458835,0.999843076742056,-4.61513289973033 +"Q4QPU3",-0.114600878791745,14.554738652412,-0.129055031495761,0.899176614763896,0.999843076742056,-4.61513325488907 +"Q9VGF7",-0.106583791672428,20.0308642033996,-0.128650185183942,0.899491029684652,0.999843076742056,-4.61513548303764 +"Q9VZ64",0.0732088947871183,19.3434763876649,0.128302295150214,0.899761224789557,0.999843076742056,-4.61513739215014 +"Q9VK69",0.0790740993010282,20.2691315461565,0.12808117228177,0.899932970593842,0.999843076742056,-4.61513860292918 +"Q8ING0",-0.0423884545882203,14.6279531894099,-0.127872874163033,0.900094760200219,0.999843076742056,-4.61513974158365 +"Q9VVA7",-0.0608026802058816,17.5548351430977,-0.127447309482499,0.900425319736806,0.999843076742056,-4.61514206218386 +"Q7JXW8",0.0908720251044208,14.9032286733651,0.127392504923556,0.900467890854819,0.999843076742056,-4.61514236047293 +"Q9V3W2",-0.052252878318388,21.5163689398709,-0.127379936071618,0.900477654140017,0.999843076742056,-4.6151424288644 +"Q9VH76",0.0584051246217356,19.2554924119031,0.127166704435485,0.900643291649519,0.999843076742056,-4.61514358810795 +"Q9W257",-0.0503275202833073,17.0744827763363,-0.127046391797083,0.90073675216505,0.999843076742056,-4.61514424133998 +"Q8WTC1",-0.0739213232186433,15.1320751566517,-0.126776152038235,0.900946683710821,0.999843076742056,-4.61514570635064 +"Q76NQ0",-0.0986325299380297,14.6124155645229,-0.126411633536299,0.90122986643166,0.999843076742056,-4.61514767754132 +"Q9VNQ3",0.115218338164221,15.0981666657644,0.126145570047033,0.901436571441715,0.999843076742056,-4.615149112754 +"Q961T9",0.0742846140695477,17.9365695131024,0.12612446258807,0.901452970167601,0.999843076742056,-4.61514922648401 +"Q9VLR5",0.0632961410325308,16.7286356519268,0.125993430158169,0.901554772425384,0.999843076742056,-4.61514993208163 +"Q8IRD0",-0.0783459062883196,17.6159850244542,-0.125909246272172,0.901620177868585,0.999843076742056,-4.6151503850189 +"Q9VWP2",0.0785631991112581,19.5083899981033,0.125582556849904,0.901874001482255,0.999843076742056,-4.61515213986245 +"Q7KN90",0.0947613491320922,17.2207608599584,0.125500597595198,0.901937682045508,0.999843076742056,-4.61515257940228 +"Q4V5H1",0.069699292135045,15.0468289226551,0.124962888472875,0.902355487753425,0.999843076742056,-4.61515545600094 +"Q9VKC7",0.0425349873747738,13.8749796153627,0.124715903898594,0.90254740748265,0.999843076742056,-4.61515677318049 +"Q9I7T7",0.0643996423863893,14.5539785610335,0.124346630533395,0.902834363707172,0.999843076742056,-4.61515873769219 +"Q9VJC0",-0.0763636089846926,16.5523375714571,-0.124216147356608,0.902935763403051,0.999843076742056,-4.61515943046794 +"P54397",0.111875817120186,14.76225260933,0.124013692206446,0.903093096676494,0.999843076742056,-4.61516050393181 +"P32392",0.0646899163355634,17.800882984299,0.123939311267703,0.903150901142543,0.999843076742056,-4.61516089787878 +"Q9W337",-0.103835517412428,17.6848115467521,-0.123916447539,0.903168669594855,0.999843076742056,-4.61516101892564 +"Q9VQV7",0.0640104422559524,16.2441362236556,0.12390641104267,0.903176469433551,0.999843076742056,-4.61516107205459 +"Q9W086",0.10135842579005,16.9594150939112,0.123406559206025,0.903564941200764,0.999843076742056,-4.61516371263743 +"Q9VB64",-0.0621709166696931,18.7446400026558,-0.122786106025768,0.904047176875484,0.999843076742056,-4.61516697554111 +"Q9VMM6",0.0713360957025806,18.3183079440774,0.122705083690942,0.904110152885377,0.999843076742056,-4.61516740042093 +"Q9VB05",-0.0598609677808142,20.2274228205661,-0.122645501295041,0.904156464760257,0.999843076742056,-4.61516771269187 +"Q9W1X8",0.0357128497590971,16.1474260028393,0.122634422091336,0.904165076382368,0.999843076742056,-4.61516777074126 +"Q8I0J3",0.0560435325118664,15.0509101079194,0.122309707846066,0.904417475208052,0.999843076742056,-4.61516946975917 +"Q9VAC1",0.0533814579224732,23.4732343682761,0.12224456046088,0.904468115252502,0.999843076742056,-4.61516981009272 +"Q9V7D2",0.0634411935668631,21.2933263040172,0.12215960496764,0.90453415308695,0.999843076742056,-4.61517025363367 +"Q9VPZ5",0.0947464469393644,18.300262136268,0.122040107868638,0.904627042138684,0.999843076742056,-4.61517087699191 +"Q8IR45",0.0748606756419985,14.76825378291,0.122013550494917,0.904647686261779,0.999843076742056,-4.6151710154463 +"Q7PLT4",0.0826911667345946,15.8514393477679,0.121993268423488,0.904663452386299,0.999843076742056,-4.61517112116478 +"Q9VYT1",0.048189816852771,14.3020822419576,0.121889904737635,0.904743802064201,0.999843076742056,-4.61517165966688 +"Q8T0N5",0.0546246244872073,18.6043919225789,0.121151578850819,0.905317770584848,0.999843076742056,-4.61517549296313 +"Q9VL66",-0.0862226156404517,15.7602739114329,-0.120969432812279,0.90545937790084,0.999843076742056,-4.6151764350761 +"Q7K1C3",0.0859609495695395,17.0875093845116,0.120776664571164,0.905609246965333,0.999843076742056,-4.61517743059273 +"Q9VBT2",-0.114818327202462,13.189899350694,-0.120513197586807,0.905814087324565,0.999843076742056,-4.61517878866298 +"Q9W3N9",0.0803094689615236,20.1746189930451,0.120201779863082,0.906056217418087,0.999843076742056,-4.61518039009191 +"P40304",-0.0568118610269401,18.8584061171042,-0.120186378372826,0.906068192468101,0.999843076742056,-4.61518046918517 +"D0UGE6",-0.064404819205242,15.1940970284651,-0.119835102315419,0.906341324970233,0.999843076742056,-4.61518227039798 +"A1Z6L9",-0.0639424410367351,15.3924977604202,-0.119651824455448,0.9064838364168,0.999843076742056,-4.61518320809414 +"Q6IGN6",-0.0707858383663158,16.7544504947131,-0.119631789870743,0.906499414920783,0.999843076742056,-4.6151833105095 +"Q9VVW7",0.119385853009302,16.5102271296941,0.119585244979048,0.906535607479049,0.999843076742056,-4.61518354837773 +"Q9W1H6",0.0751436612009151,17.13789610767,0.119547798197746,0.906564725649856,0.999843076742056,-4.61518373968304 +"Q9V3W7",-0.0645233077024088,17.8949934089965,-0.119519368822684,0.906586832086312,0.999843076742056,-4.61518388488105 +"Q8IQW5",-0.0507207878168821,21.8915066377361,-0.119430791689075,0.906655709416115,0.999843076742056,-4.61518433705259 +"Q9VM11",0.0845737190929547,17.8416410407996,0.117818178517932,0.907909808788539,0.999843076742056,-4.61519251080085 +"Q9W0B3",0.055111734317034,19.1137005446103,0.117801495827393,0.907922783947951,0.999843076742056,-4.61519259478093 +"Q8IPW2",0.087681780128122,17.1549693284567,0.117728705415049,0.907979397869647,0.999843076742056,-4.61519296106671 +"A1Z9A8",-0.0488803666851325,16.8681057578212,-0.117622375810814,0.90806209837499,0.999843076742056,-4.61519349571844 +"Q9VVU2",0.072886427090193,20.1210139647749,0.117496689302024,0.908159855625377,0.999843076742056,-4.61519412708093 +"Q9VL00",0.0943922985678469,15.9552523202847,0.117291630323764,0.908319351018396,0.999843076742056,-4.6151951557127 +"Q9VIU3",0.0904254630775601,12.5656175467603,0.117241260532113,0.908358529399073,0.999843076742056,-4.61519540810751 +"Q9V535",-0.0456106964776737,18.6172391542276,-0.117214408470139,0.908379415437593,0.999843076742056,-4.61519554261468 +"Q9VH98",0.0425364193869555,16.9446843814699,0.116977618316017,0.908563598317504,0.999843076742056,-4.61519672741377 +"A8DYK6",0.0637065297821948,16.6311405210582,0.116900030601712,0.908623949688026,0.999843076742056,-4.61519711511119 +"Q9VKW5",-0.0890687817655085,17.0728239898052,-0.116866863490886,0.908649748804521,0.999843076742056,-4.61519728076548 +"Q9VTU2",-0.0581291400200286,20.7468262142075,-0.11679659171942,0.908704410224002,0.999843076742056,-4.61519763158559 +"Q9VMH2",0.107171459397716,17.2747662076006,0.116346390228635,0.909054614190272,0.999843076742056,-4.61519987415449 +"Q9VGE4",0.0511820181539253,15.6351054434447,0.11624399687542,0.909134266957869,0.999843076742056,-4.61520038299774 +"Q7K180",0.102221080696996,16.2573924012095,0.116214116865056,0.90915751109487,0.999843076742056,-4.61520053140218 +"Q24090",-0.0553487793002994,15.880295735066,-0.116168807870487,0.909192757849944,0.999843076742056,-4.61520075636493 +"Q9VC58",0.129571945815654,13.1549233948413,0.116042998361706,0.909290628575099,0.999843076742056,-4.6152013805609 +"P14199",-0.0564759660344905,18.5062445155225,-0.115917870505021,0.909387970542594,0.999843076742056,-4.61520200070659 +"Q00174",-0.0603657340511994,22.0791985117714,-0.115731567371872,0.909532906008452,0.999843076742056,-4.61520292280788 +"Q9I7K0",0.0669574684111094,16.0304968480356,0.115516832611106,0.909699964156383,0.999843076742056,-4.61520398379758 +"Q9NCC3",0.0633200400207805,17.3168670639866,0.115243709056115,0.909912453705937,0.999843076742056,-4.61520533044611 +"Q9VFS4",0.0735265478261322,15.1658399975213,0.11517686013858,0.909964463115033,0.999843076742056,-4.61520565956408 +"Q8MKK0",0.211862824431259,15.6720370767871,0.114571805729243,0.910435223541806,0.999843076742056,-4.61520862978093 +"Q9VLU4",0.095741899976364,17.1240580807731,0.11455274932061,0.910450050881579,0.999843076742056,-4.61520872307582 +"Q9VPX5",-0.0719346301584984,18.8173679929375,-0.114500304071119,0.910490857465896,0.999843076742056,-4.61520897975337 +"Q9V3G7",-0.0421742928915378,18.1703801513103,-0.11426247739181,0.910675908871835,0.999843076742056,-4.6152101422552 +"P36951",-0.0535558103781213,20.3603421863304,-0.113912384224063,0.910948323909268,0.999843076742056,-4.6152118491363 +"Q9W1F8",-0.0803443770588217,17.5508350277994,-0.113462104003649,0.911298713760352,0.999843076742056,-4.61521403680757 +"Q9VTY2",0.0781337509593492,20.6533525836877,0.113239170475283,0.911472198717131,0.999843076742056,-4.61521511672741 +"Q9VYF0",0.0777021413867693,16.229081430833,0.113166743244245,0.911528561976566,0.999843076742056,-4.61521546711917 +"Q9V436",0.0788722130841393,19.1070354354058,0.112561656371187,0.911999463137142,0.999843076742056,-4.61521838570778 +"Q7K1W5",0.0665058713849085,19.7471592085193,0.112499187039987,0.912048081059659,0.999843076742056,-4.61521868613577 +"Q9VS02",0.072673338401529,17.9271068251534,0.111881462154302,0.912528856654372,0.999843076742056,-4.61522164795669 +"Q0E8P5",-0.0648933174806601,17.6916105113712,-0.111806242222699,0.912587402801263,0.999843076742056,-4.61522200750574 +"Q8IQC6",0.0568643929291248,15.8518755269733,0.111055562927828,0.913171710035961,0.999843076742056,-4.61522558252878 +"P45437",-0.0374791752000654,16.2741747660964,-0.110500854498237,0.913603512725619,0.999843076742056,-4.61522820884375 +"P05812",-0.0876079349449945,15.8028855978435,-0.11035920705204,0.9137137801557,0.999843076742056,-4.6152288773853 +"Q9VHA8",0.0581821982936574,18.577449049975,0.110357780824993,0.913714890431434,0.999843076742056,-4.6152288841124 +"Q9W329",0.06040069291506,16.4222194422817,0.110239616209379,0.913806878753236,0.999843076742056,-4.6152294411597 +"Q59E14",0.0529834722308298,14.6411950648286,0.109418483944625,0.914446145934503,0.999843076742056,-4.61523329568546 +"O46067",0.0581682620635497,19.688319280283,0.109004698501251,0.9147683091715,0.999843076742056,-4.61523522717739 +"Q9VXP4",0.100600313728972,17.968654051598,0.108697204205887,0.91500772680587,0.999843076742056,-4.61523665779344 +"Q9VCE0",0.0906353686202355,15.6928036725922,0.108617959767729,0.915069428579936,0.999843076742056,-4.61523702582514 +"Q9V420",0.0750782761464919,17.5684551196462,0.108525128242124,0.915141710336354,0.999843076742056,-4.61523745661855 +"Q9VXB0",0.0652120681772637,20.2796196231322,0.108242785897028,0.915361556400829,0.999843076742056,-4.61523876459847 +"A1Z8D0",0.172658739206764,13.7767135759048,0.108114209627283,0.915461674790228,0.999843076742056,-4.61523935911587 +"Q7KW39",0.0470119457715867,21.7197458144868,0.108083637987692,0.915485480205868,0.999843076742056,-4.61523950037091 +"Q9W2Y3",0.0947756903053474,16.3721528765726,0.107793315343794,0.915711551807854,0.999843076742056,-4.61524083981069 +"Q9VRZ7",0.0772827091837875,17.2003507913344,0.107646598732823,0.915825801583281,0.999843076742056,-4.61524151534026 +"Q9U1K7",-0.066426360884396,17.4479161245053,-0.107633290365579,0.915836165045182,0.999843076742056,-4.61524157657082 +"Q9VFF0",-0.0543407549161401,23.7210918395244,-0.107518010575179,0.915925936130587,0.999843076742056,-4.61524210664662 +"A1Z6P3",0.0593638299433685,17.166281251118,0.107007851651164,0.916323223185629,0.999843076742056,-4.615244445646 +"Q9VW58",-0.0845564151909564,14.869250235052,-0.106818552741374,0.916470645923723,0.999843076742056,-4.61524531073149 +"Q7K0X9",0.0669840270386786,16.6210460585213,0.10681745926141,0.916471497516414,0.999843076742056,-4.6152453157242 +"Q9VSJ8",0.0490643928467591,15.7067287814493,0.106044641404719,0.917073387940528,0.999843076742056,-4.61524883158287 +"Q9VN88",0.0576003401272196,16.9694863985267,0.105111454082073,0.917800248648137,0.999843076742056,-4.61525304310914 +"Q9V3F8",0.0398075435980765,18.5038624549574,0.104991326212663,0.91789382195258,0.999843076742056,-4.61525358255702 +"Q9V470",-0.0570799470067413,19.9437318348662,-0.104784782670192,0.918054711486008,0.999843076742056,-4.61525450862672 +"Q9VVL7",-0.0447982693193438,23.4449115102015,-0.104664279336805,0.918148580705802,0.999843076742056,-4.61525504808221 +"Q9VXK6",0.0627723804385667,17.6907313958114,0.104537009295452,0.918247722407118,0.999843076742056,-4.61525561715823 +"Q94533",0.0473740739188031,15.2443655031398,0.104361978026361,0.918384071789943,0.999843076742056,-4.61525639866665 +"A1Z9I0",0.063952739654404,19.348479623279,0.104333792461573,0.918406028598436,0.999843076742056,-4.61525652439215 +"Q9W1H5",0.0740544214396479,17.2841147546441,0.104188219808288,0.918519432105898,0.999843076742056,-4.61525717319959 +"Q7KS11",0.0803675183564714,15.6178476774918,0.104084304808971,0.918600384738749,0.999843076742056,-4.61525763578927 +"Q7JXF7",0.0527943403793785,17.8354914405549,0.103814067959082,0.918810911042794,0.999843076742056,-4.61525883662548 +"Q7K2E1",0.0433887082440805,17.5881638735955,0.103755506777742,0.918856533594697,0.999843076742056,-4.61525909644019 +"Q9VGP7",-0.0491145065321348,16.0718588277049,-0.103753672219845,0.918857962826348,0.999843076742056,-4.6152591045771 +"Q9VNA5",0.0358013796383823,17.3965250060971,0.103711792210925,0.91889058996768,0.999843076742056,-4.6152592902906 +"Q9W254",0.056144742550515,18.1363121408559,0.103526263691804,0.919035130091549,0.999843076742056,-4.61526011210269 +"P18432",0.0640704299833459,23.5291666167008,0.103440728431229,0.919101769243189,0.999843076742056,-4.61526049049329 +"Q9V3Q4",0.0320208759260812,15.9764271705424,0.103246508109951,0.91925308553044,0.999843076742056,-4.61526134852667 +"Q9W369",-0.0578537923065348,22.1264330675567,-0.10315530156291,0.919324145314395,0.999843076742056,-4.61526175090741 +"P08928",0.0442192998339976,22.7066381499279,0.102998706883877,0.919446151209843,0.999843076742056,-4.61526244093751 +"Q9VKR0",0.1289637963998,13.3411734505163,0.102922420368891,0.919505588250011,0.999843076742056,-4.61526277671332 +"Q9VVW8",0.0561203085353821,15.7310823585567,0.102808074524535,0.919594679355935,0.999843076742056,-4.61526327954311 +"Q03427",0.0548666027263458,21.6940172981845,0.102243736731197,0.920034392363794,0.999843076742056,-4.61526575302637 +"Q9W415",-0.0907111042748738,16.7397118006132,-0.102210566047177,0.92006023869148,0.999843076742056,-4.61526589799054 +"Q9W087",0.0769442180647815,16.7136303654597,0.101488789313014,0.920622664465017,0.999843076742056,-4.61526904072206 +"Q9VJ58",0.0629769780244018,17.2507657581955,0.101038639303325,0.920973454543957,0.999843076742056,-4.61527098950381 +"Q9VD00",0.0522353349339575,17.9030329485912,0.100667830630447,0.92126242885035,0.999843076742056,-4.61527258831404 +"Q7KMM4",-0.0878343690627368,14.4713693567432,-0.100483796287372,0.921405852651444,0.999843076742056,-4.61527337963575 +"Q9VZS3",0.063080307510937,18.3704221399494,0.100432847236121,0.921445559365785,0.999843076742056,-4.61527359845429 +"A0A6H2EG56",0.0587343237640852,20.8933024421762,0.100293842454652,0.921553892679588,0.999843076742056,-4.6152741948962 +"Q0E980",0.0478445483668004,18.3729608227334,0.100248036452722,0.921589591921232,0.999843076742056,-4.61527439126021 +"Q7JZK1",0.0453300120304938,21.4626792493718,0.100185913823053,0.921638007926378,0.999843076742056,-4.61527465742844 +"Q9VA76",0.0413518839603704,15.2254334407604,0.100098813702116,0.921705890978111,0.999843076742056,-4.61527503033722 +"A0A0B4KI23",-0.0407012814970926,20.4662016234098,-0.0999630582612136,0.921811695696398,0.999843076742056,-4.61527561091307 +"P50887",-0.0513956691804474,17.9869090458926,-0.0996301146944917,0.922071190887845,0.999843076742056,-4.61527703146328 +"Q9VI64",-0.0458390232063017,20.8689443117872,-0.0995469853679408,0.922135983069586,0.999843076742056,-4.61527738540887 +"Q7KK90",0.0539821115936086,21.057639963996,0.0993945114578905,0.922254824901114,0.999843076742056,-4.61527803384201 +"Q9VJD0",-0.0452272710642241,16.2045816271486,-0.099285388202447,0.92233987937536,0.999843076742056,-4.61527849730721 +"Q9VEK8",0.0479366564140697,18.8649467170921,0.0991182231370346,0.92247017557713,0.999843076742056,-4.6152792063014 +"Q9VEH2",-0.0810256614026716,15.8903757282929,-0.0986599403189184,0.922827394306531,0.999843076742056,-4.61528114389776 +"A8DZ14",0.0757081493782188,19.4590403944567,0.0986401886103117,0.922842790604527,0.999843076742056,-4.61528122720569 +"A0A6H2EGA2",0.092847750330094,15.8112016697189,0.0982108852753842,0.923177437033351,0.999843076742056,-4.61528303379355 +"Q9VN93",0.0455780292116046,20.3086072160056,0.0981801311595843,0.923201410768722,0.999843076742056,-4.61528316291092 +"O61604",-0.0500088336048847,20.9618134422261,-0.0980644641972457,0.923291577253092,0.999843076742056,-4.61528364816338 +"Q9VEV3",0.0502917744738447,18.1640059411476,0.0980493997013377,0.923303320640677,0.999843076742056,-4.61528371132081 +"Q9VRL1",0.0506209478565758,20.4607864901745,0.0979471253686916,0.923383048136243,0.999843076742056,-4.61528413984687 +"Q8IN51",-0.0848709339673057,17.0293309834214,-0.0973328707861946,0.923861905508017,0.999843076742056,-4.61528670416966 +"Q9VGR2",0.085171754213885,15.6423050689551,0.0973130839984576,0.923877331299579,0.999843076742056,-4.61528678650589 +"Q9VNF5",0.0741396483732117,15.9624342456496,0.0972755178994524,0.923906617940431,0.999843076742056,-4.61528694277898 +"Q9VY78",0.0670127004773988,18.727987186982,0.097052369484771,0.924080587461136,0.999843076742056,-4.61528786982477 +"Q9VEA5",0.115365995414715,15.6087790686176,0.0970396999804258,0.924090464899222,0.999843076742056,-4.61528792239515 +"Q9VYY3",-0.0508986202133279,17.5969178957534,-0.0968499561704684,0.924238395110181,0.999843076742056,-4.61528870889226 +"Q9VHF9",-0.0627998701982371,17.0516791975925,-0.09593056664131,0.924955221111721,0.999843076742056,-4.61529249806304 +"Q494G8",-0.0626819239862293,15.0669469987897,-0.0958178991962993,0.925043069894588,0.999843076742056,-4.61529295993112 +"Q9VUM1",-0.043840511058221,16.5133747607993,-0.0958029370217291,0.925054736240992,0.999843076742056,-4.61529302122623 +"Q7JQW6",-0.0934423903782022,15.8479016450507,-0.0957636129979899,0.925085398158432,0.999843076742056,-4.6152931822783 +"Q9VXA3",0.0511150403288738,17.7763459926855,0.0954565335365557,0.925324839889599,0.999843076742056,-4.6152944376581 +"Q9W3N6",-0.0382594575061859,16.1697452197591,-0.0954141018339124,0.925357926121113,0.999843076742056,-4.61529461080805 +"Q9W022",-0.0706214085324746,21.1500986105245,-0.0953792091234578,0.925385133911252,0.999843076742056,-4.61529475313629 +"Q9VAA6",-0.063399376727201,16.0793317822188,-0.0953602201124501,0.925399940741752,0.999843076742056,-4.61529483057112 +"Q9VFM9",-0.0710533690661705,17.1121108313652,-0.094969886160985,0.925704313065026,0.999843076742056,-4.61529641889759 +"Q9VFZ4",-0.0284620787267791,16.8144662265997,-0.0947501954048781,0.925875627558306,0.999843076742056,-4.61529730999384 +"Q24400",0.0595979586395003,21.4396632298241,0.0946309304412908,0.925968631783607,0.999843076742056,-4.61529779288704 +"Q9VSS2",0.0401039675712624,16.3594375821197,0.0946305288628309,0.925968944941127,0.999843076742056,-4.61529779451197 +"Q9VLG9",0.0651628500405028,15.7505567205001,0.0945882212235774,0.926001937208967,0.999843076742056,-4.61529796566533 +"Q9VCC0",0.0572612312829754,17.3923809452537,0.0945735816355543,0.926013353459365,0.999843076742056,-4.61529802487124 +"O15943",-0.0435196669078159,20.1816847135053,-0.0936465871536294,0.92673627711998,0.999843076742056,-4.61530175523828 +"Q9XYW6",0.0409042465626541,16.628034499732,0.0935134977347841,0.92684007344768,0.999843076742056,-4.61530228780149 +"Q7JZN0",-0.0536366347575417,16.839456596125,-0.0928323273310315,0.927371339318384,0.999843076742056,-4.61530500170575 +"Q9VHN6",-0.0447462537055507,15.1462831482813,-0.0924999440730859,0.927630588392212,0.999843076742056,-4.61530631879464 +"P22769",0.0394846167950433,20.1289879303616,0.0924920416381181,0.927636752160984,0.999843076742056,-4.61530635005117 +"Q9VJD1",0.0636840397711644,18.5180718216571,0.0924332121343405,0.927682638354149,0.999843076742056,-4.61530658265595 +"Q9VKR4",0.0348405127882998,19.2647036448184,0.092255675189973,0.927821116317485,0.999843076742056,-4.61530728372061 +"Q9XZ61",0.0535809532263443,18.5542758642914,0.0920016055318194,0.928019293657436,0.999843076742056,-4.61530828466162 +"Q9VSY6",0.0360063722127926,17.8221119518697,0.0918667159584772,0.928124511139552,0.999843076742056,-4.61530881495783 +"Q7JR58",0.0530453751721289,22.7606185708049,0.0916493886329193,0.928294035216388,0.999843076742056,-4.61530966771179 +"Q9VQG4",-0.0520081760534765,19.1735099000527,-0.0915334756650349,0.928384453485543,0.999843076742056,-4.61531012170983 +"O97064",-0.0651095584187971,16.54416948832,-0.0912878435890178,0.928576062942884,0.999843076742056,-4.61531108188632 +"Q9VMG0",0.153063195309983,14.7223457552079,0.0910201031921986,0.928784923615143,0.999843076742056,-4.61531212555234 +"Q9VHL2",0.054966802045687,20.6367657439553,0.090840253256735,0.928925225188152,0.999843076742056,-4.6153128248996 +"P21914",-0.0381933217089774,22.8684818590248,-0.0906471998163691,0.929075829596132,0.999843076742056,-4.61531357405306 +"Q9W404",0.0744647612161664,15.939651094516,0.0905476902113679,0.929153459905102,0.999843076742056,-4.61531395958399 +"Q9VEX6",0.0468052454759196,20.7234207725951,0.0902088018349361,0.929417842107784,0.999843076742056,-4.61531526937287 +"Q9VVS6",-0.0388488600550225,16.5104194602847,-0.0898898998485341,0.929666639933005,0.999843076742056,-4.61531649744023 +"P22465",-0.0506949036081217,22.6448928578298,-0.0898383992848015,0.929706819855574,0.999843076742056,-4.61531669535805 +"A1Z6S7",0.0284367992299828,17.5590515506564,0.0898159200753584,0.929724357840537,0.999843076742056,-4.61531678171067 +"Q7JVI6",0.0429097571134527,17.5530655400203,0.0896313572081064,0.929868352807886,0.999843076742056,-4.61531748988339 +"Q9VDC6",-0.0442736973507252,17.0614399598261,-0.0892590105178807,0.930158863481258,0.999843076742056,-4.61531891416388 +"Q9VXI1",-0.0588536996461428,19.530596394958,-0.0890631254925364,0.930311700178896,0.999843076742056,-4.61531966107804 +"P45888",-0.0985802379307472,17.2893846968025,-0.0889656604820411,0.930387747028166,0.999843076742056,-4.61532003210441 +"Q9VW34",0.0599188677600715,18.5666504117758,0.088477676955758,0.930768505660031,0.999843076742056,-4.61532188364771 +"Q9W3X8",0.0384495407716763,13.9198286892003,0.0884032836884625,0.930826554003265,0.999843076742056,-4.61532216502356 +"Q9VB79",0.0819282485275359,17.6430763613846,0.0879507075581752,0.931179703562345,0.999843076742056,-4.61532387170276 +"P42281",0.0391384084295545,21.6749046324742,0.0875295825981706,0.931508325002136,0.999843076742056,-4.61532545192811 +"Q9V998",0.0644012016236584,15.8741355797117,0.0874525166642503,0.931568464184614,0.999843076742056,-4.6153257402904 +"Q9VXE8",-0.0509536883563229,16.1686287792403,-0.0870521707287867,0.931880885174345,0.999843076742056,-4.61532723421088 +"Q7K2D2",0.0498697920165618,20.3608053691101,0.0864112492657228,0.932381070186998,0.999843076742056,-4.61532961161639 +"Q9VNC1",-0.0728095778534801,15.7040145032367,-0.0863864733796827,0.932400406268809,0.999843076742056,-4.61532970316701 +"Q9VA32",0.058490587995049,17.2990166996957,0.0863604786447404,0.932420693636219,0.999843076742056,-4.61532979919331 +"Q24050",0.0620509096250466,16.6091061370855,0.0862219399502454,0.932528815792362,0.999843076742056,-4.61533031047812 +"Q9V9Q4",0.0403123807936652,19.0396890741105,0.0861478399672365,0.932586647495688,0.999843076742056,-4.61533058361202 +"Q9VQ29",-0.0350952227628945,22.1467414829212,-0.0859455361953167,0.932744538502947,0.999843076742056,-4.61533132811422 +"Q9VL10",0.0755410448434048,16.8051222626133,0.0858943998422526,0.932784449101394,0.999843076742056,-4.61533151602559 +"Q9VD30",-0.0501056648320066,21.4083870034755,-0.0856592056498991,0.932968014491736,0.999843076742056,-4.61533237885939 +"Q9V3Z2",-0.0383024324063967,16.2358448370358,-0.0854303675011593,0.933146622894444,0.999843076742056,-4.61533321610934 +"Q9VB10",-0.0396482024048233,21.011813020246,-0.0853336043528049,0.933222147754501,0.999843076742056,-4.61533356946423 +"A1Z7H7",0.0342570946469785,17.9034921351046,0.0851879876545215,0.933335804687298,0.999843076742056,-4.61533410046691 +"Q9VVG0",-0.0446292034361448,18.1425576342486,-0.0849593488671743,0.933514265176355,0.999843076742056,-4.61533493239 +"Q9VME3",0.0709172599236236,15.7954597046461,0.0848428453950187,0.933605201599526,0.999843076742056,-4.61533535544038 +"Q8IN49",-0.0336247467554678,17.0833028997499,-0.0847906023934648,0.933645980025033,0.999843076742056,-4.61533554495836 +"O97062",0.0634490132851582,18.4208828540843,0.0847667512010598,0.933664597206427,0.999843076742056,-4.61533563144279 +"Q9W258",0.039894195259123,19.3271952676518,0.0845790572684087,0.933811104160609,0.999843076742056,-4.61533631117367 +"Q9VX02",-0.0556897026716179,17.2321042169567,-0.0842194001569392,0.934091846184319,0.999843076742056,-4.6153376094654 +"Q9W3C4",0.0407509055043906,14.7966942249405,0.0838416986297467,0.934386683174304,0.999843076742056,-4.61533896695007 +"Q9VZF6",0.0764197240909095,15.3137152708551,0.0837440958143723,0.934462874382303,0.999843076742056,-4.61533931675103 +"Q9VZG0",-0.0397633997485585,21.7166676726966,-0.0835603760177031,0.934606292478168,0.999843076742056,-4.61533997408551 +"Q95WY3",0.0486673374584328,17.2605756653011,0.082873587760814,0.935142444261062,0.999843076742056,-4.61534241859764 +"Q9VH37",0.0715938000967427,16.6147464393384,0.0828248944672875,0.93518045867228,0.999843076742056,-4.61534259114917 +"Q9NHD5",-0.0936330576467483,16.6269288291043,-0.0827009199166791,0.935277245217603,0.999843076742056,-4.61534303001353 +"A0A0B4KGY6",0.04921045887383,21.8071065702349,0.0826631741465022,0.935306713434066,0.999843076742056,-4.61534316350158 +"Q9VIK0",0.0648056103800574,12.817864295621,0.0825095558168787,0.935426644661642,0.999843076742056,-4.61534370614584 +"B7YZT2",-0.029637888434717,18.3569559778157,-0.0817736595206643,0.936001188142832,0.999843076742056,-4.61534629166736 +"Q9V8Y2",0.0255490935461005,19.9563796370134,0.0817558519117173,0.936015091711395,0.999843076742056,-4.61534635394669 +"P29613",0.0485577767801821,23.7223571763347,0.0816500950475155,0.936097663480321,0.999843076742056,-4.61534672353583 +"Q9V3E3",0.0761879422746361,15.1153796384448,0.0815406291807853,0.936183131931516,0.999843076742056,-4.61534710558395 +"Q9VSL2",0.049134067725312,20.4029066514727,0.0813024135309351,0.93636912810059,0.999843076742056,-4.61534793521522 +"Q9VW40",-0.0404036240027263,14.67688092806,-0.0812161369322618,0.936436492876575,0.999843076742056,-4.61534823509225 +"Q9W136",-0.037880274562113,18.1475102039402,-0.0811426503912898,0.936493871573424,0.999843076742056,-4.61534849026344 +"Q8MSV2",0.0553467428146917,18.2756556038498,0.0809870584364373,0.93661535984063,0.999843076742056,-4.61534902977274 +"Q7K0S5",-0.035302674688829,18.2754597164465,-0.0809673633004434,0.93663073818177,0.999843076742056,-4.61534909799119 +"Q9Y0Y2",0.0228358406248859,19.4533040478433,0.0809151209968065,0.936671530104981,0.999843076742056,-4.61534927886372 +"Q9VKM3",0.0496520053190181,21.7459298273914,0.0807920602819275,0.936767619309253,0.999843076742056,-4.61534970446217 +"Q9VAG9",0.0865026599140357,17.3622430376586,0.0806102883279206,0.936909553743356,0.999843076742056,-4.61535033192722 +"Q9VWI0",0.0593376549191795,20.888105503622,0.0805003748280619,0.936995379453679,0.999843076742056,-4.61535071065712 +"P55841",0.0369137328712199,20.6904475190117,0.0804590927749016,0.93702761466283,0.999843076742056,-4.6153508527698 +"Q95RF6",-0.0533071199414969,17.3561286969442,-0.0803202764660236,0.937136010615757,0.999843076742056,-4.61535133010859 +"Q9VTZ5",-0.0459858562266398,18.0461338279773,-0.0802887022617119,0.937160665795749,0.999843076742056,-4.61535143856594 +"Q9VFN9",-0.0448490124155825,16.0378920759186,-0.0802230757348506,0.93721191144499,0.999843076742056,-4.6153516638568 +"B7Z107",0.0840295461480984,15.8371310380973,0.0798797049777857,0.937480043362361,0.999843076742056,-4.61535283962427 +"Q7JWD6",0.0448731261257933,20.433973622594,0.0797108640562472,0.937611891030357,0.999843076742056,-4.61535341592175 +"Q9VWD9",0.0376517362031734,19.4185133196218,0.0793535896641623,0.937890892430183,0.999843076742056,-4.61535463137818 +"Q9VRY5",0.0496349330777619,16.8120501385998,0.0790450678938161,0.938131828936801,0.999843076742056,-4.61535567659151 +"Q9VS44",0.0539583143601678,15.0959712484437,0.0788637564051249,0.938273424986046,0.999843076742056,-4.61535628894436 +"Q9VJZ4",0.0290844122998308,21.2250336044934,0.0787742398757878,0.938343334136051,0.999843076742056,-4.61535659075565 +"O61722",0.0256664879385191,18.9064980962813,0.0786928608471622,0.938406888652904,0.999843076742056,-4.61535686483385 +"Q8MLS2",-0.0744452246575769,17.4735941218517,-0.0784538644754601,0.938593539984468,0.999843076742056,-4.61535766812015 +"Q86BL4",-0.0473079613056111,14.9543943203995,-0.0783924426492058,0.938641509794706,0.999843076742056,-4.61535787416996 +"Q9V4Q8",0.048002104327221,16.8899276261478,0.0782664940873776,0.938739875091426,0.999843076742056,-4.61535829618163 +"Q23983",-0.0404881167996152,22.2701600137532,-0.0781595850984168,0.938823371377572,0.999843076742056,-4.61535865386652 +"P92204",0.0553015455254506,15.8227872069847,0.077942075604182,0.938993249344466,0.999843076742056,-4.61535938008034 +"Q9VVA6",0.0286760983154473,19.1613482255758,0.0776010859471486,0.939259573261756,0.999843076742056,-4.61536051449956 +"Q709R6",0.0777491741759739,14.996330558216,0.0773017675633286,0.939493356798474,0.999843076742056,-4.61536150619273 +"Q9VK12",0.0470219015275113,22.2301964758484,0.0772133304906774,0.939562431954624,0.999843076742056,-4.61536179846772 +"Q9VT75",0.0649352978685602,15.6499745328062,0.0771550326636599,0.939607966659044,0.999843076742056,-4.61536199095309 +"Q9VR31",0.0565290702053467,17.2539981917918,0.0770877759627617,0.939660499147022,0.999843076742056,-4.6153622128382 +"Q9W2M4",0.0424754298398931,22.6239306466197,0.0770592894650551,0.939682749309451,0.999843076742056,-4.61536230675914 +"Q9W266",-0.0391082732012151,18.32128115661,-0.0767644720980073,0.939913027593206,0.999843076742056,-4.61536327674665 +"Q8IH23",-0.0840681620654138,18.3031126949066,-0.0767098173126266,0.939955718400302,0.999843076742056,-4.61536345616015 +"Q9V3D9",-0.0393246001519181,17.5208655860174,-0.0766155480796098,0.940029352470086,0.999843076742056,-4.61536376531495 +"Q9VSY4",-0.037553297268758,20.3955344228416,-0.0766117959843059,0.940032283258331,0.999843076742056,-4.61536377761205 +"Q8I099",0.0342689460089254,16.9483475042062,0.0764828756500358,0.940132984393857,0.999843076742056,-4.61536419976964 +"Q9TVP3",-0.0423789776423042,22.8714239650332,-0.0762285579078971,0.940331637986489,0.999843076742056,-4.61536503046756 +"Q7K188",0.0569180465935801,21.9173575221991,0.0760416858936434,0.940477610760912,0.999843076742056,-4.61536563910168 +"Q9VAN7",-0.0332508472831137,23.616679939483,-0.0759284311353639,0.940566079404293,0.999843076742056,-4.61536600724171 +"Q7JNE1",0.042817338750357,17.7550808791539,0.0759166599666452,0.940575274467218,0.999843076742056,-4.61536604547304 +"Q8MKN0",0.0308410246777946,16.6762196725178,0.0757313319043123,0.94072004487133,0.999843076742056,-4.61536664661597 +"P12370",-0.0454988172594426,20.8859332055472,-0.0755872400193368,0.940832604832059,0.999843076742056,-4.61536711298876 +"Q9VP77",0.0812785732683512,15.3158554571085,0.0754126105658777,0.940969021523558,0.999843076742056,-4.61536767701191 +"Q86PD3",-0.0455314260720101,18.8966688765052,-0.0745549183779464,0.94163905968804,0.999843076742056,-4.61537042830207 +"Q9W078",0.0461437123925066,19.4132516286029,0.0744726875978707,0.941703301660306,0.999843076742056,-4.61537069042993 +"Q9VNH5",0.0332408298250257,17.1927681452835,0.0739111136012134,0.942142036964647,0.999843076742056,-4.6153724728435 +"Q9VXZ0",0.0497502099092628,19.5950930859692,0.0737754226488733,0.942248049813101,0.999843076742056,-4.61537290150056 +"Q9VGG5",0.0430034678840308,17.0766306551152,0.0736903028015792,0.942314552967007,0.999843076742056,-4.6153731699986 +"Q9VG76",0.0372747336987835,15.7631327896069,0.0736033212582327,0.94238251110452,0.999843076742056,-4.61537344404937 +"P48609",0.0588605104046636,17.0255468667255,0.0735403548510351,0.942431706656958,0.999843076742056,-4.61537364223455 +"Q9V3Y4",-0.101128025834662,14.0534009935095,-0.0734264292260274,0.942520717184654,0.999843076742056,-4.61537400038216 +"Q9VF39",0.0693904434522921,15.8724826669888,0.0729232941307425,0.942913828094469,0.999843076742056,-4.61537557545543 +"Q9VAP3",0.055504109721376,16.5099675027921,0.0727016144724635,0.943087036374329,0.999843076742056,-4.61537626599571 +"Q9VXN1",-0.0462803073568203,13.5748049341998,-0.0726753793083262,0.943107535285369,0.999843076742056,-4.61537634758029 +"Q8SXF2",0.0391742942592934,15.4799487548273,0.072486248166962,0.943255314614095,0.999843076742056,-4.61537693485927 +"P16620",-0.0489265104136472,17.3794849910667,-0.07234697857798,0.943364135556553,0.999843076742056,-4.61537736633419 +"Q9VI10",0.0192988407397578,17.2414335704277,0.0718992127291371,0.943714013873514,0.999843076742056,-4.61537874795539 +"Q9VEN3",0.0407243893166189,17.4948309500258,0.071878048195527,0.943730551859861,0.999843076742056,-4.61537881304845 +"Q9VNA3",0.0431678530088355,18.5934543400374,0.0713021904505032,0.944180537964455,0.999843076742056,-4.61538057679706 +"Q9VWX8",-0.0346261292563526,20.5116402592238,-0.071193089457525,0.944265793775199,0.999843076742056,-4.6153809093575 +"Q9V773",0.0390035816860088,15.5090020211246,0.0711417932053457,0.944305878931396,0.999843076742056,-4.61538106554242 +"Q9VIK6",0.0317500044181429,16.5070205496729,0.0704038036117401,0.944882593885154,0.999843076742056,-4.61538330010317 +"Q9VDV2",-0.0670053766073817,14.5513657554932,-0.0702794315606894,0.944979789785326,0.999843076742056,-4.61538367439855 +"Q95SI7",0.0316953021488615,21.1520530834484,0.0698902150461837,0.94528396568513,0.999843076742056,-4.61538484146823 +"Q95RA9",0.0249855658592679,20.4499272444701,0.0697814251925814,0.945368987436807,0.999843076742056,-4.61538516651834 +"Q9VKV9",-0.0466677710620278,15.6536213625366,-0.0696806535363723,0.945447743401742,0.999843076742056,-4.61538546715998 +"Q9VJZ1",-0.0497964117700036,15.5246889940724,-0.0696701778152749,0.945455930514907,0.999843076742056,-4.6153854983883 +"Q7KVQ0",0.0554365018944765,15.8413710186382,0.0691670574647106,0.945849142784642,0.999843076742056,-4.61538699267908 +"Q9VNI4",0.0428504134845795,16.4378683361288,0.0691253149647396,0.945881767176538,0.999843076742056,-4.61538711617036 +"Q9Y112",-0.0391986793278356,22.2388288292397,-0.0689071613204371,0.946052269625442,0.999843076742056,-4.61538776034626 +"Q8SWS3",0.0349903194958507,16.3554737081065,0.0686762710836047,0.94623272961216,0.999843076742056,-4.61538843991647 +"O18404",0.0323966153527806,22.9737753458379,0.0686043819120608,0.946288917625301,0.999843076742056,-4.61538865104004 +"Q7YTY6",-0.0806220846921981,18.4275473575314,-0.0685677153731211,0.94631757601924,0.999843076742056,-4.61538875863702 +"Q6IDF5",0.0370389418712627,19.560033426497,0.0685412336972911,0.946338274020242,0.999843076742056,-4.61538883631106 +"Q9VEW1",0.0527890362787868,14.5816030376232,0.0683489400251588,0.946488571403669,0.999843076742056,-4.61538939943349 +"Q9VG69",-0.0397332123448031,19.8844355662625,-0.0678631793355176,0.946868253017838,0.999843076742056,-4.61539081492259 +"A1Z933",-0.0661023674185355,15.7360619456813,-0.0677753316306006,0.946936918219633,0.999843076742056,-4.61539106983105 +"Q9VHX4",0.030314386827019,22.7801182414754,0.0677668460966005,0.946943550868091,0.999843076742056,-4.61539109443613 +"Q9VNF3",-0.0248371334693758,19.1185376196897,-0.0676490189805259,0.947035649894953,0.999843076742056,-4.61539143577563 +"Q9VVT6",0.0401228069926525,20.440194239183,0.0675798535232975,0.947089713125236,0.999843076742056,-4.61539163586832 +"Q9W0S7",0.0544064400354465,18.0308088817972,0.0673627604357518,0.947259405854542,0.999843076742056,-4.61539226258151 +"P48604",0.0428505175004403,20.046166605432,0.067050330092462,0.947503624459432,0.999843076742056,-4.61539316098347 +"Q9W425",-0.0318612900473436,13.8604169784626,-0.0670445850703881,0.947508115243942,0.999843076742056,-4.61539317746439 +"Q9V3H2",0.0504817773355519,18.4838241430999,0.0670241863771549,0.947524060565036,0.999843076742056,-4.61539323597132 +"Q9VG00",0.0463833266165423,15.2215285843071,0.0669735395530913,0.947563650450722,0.999843076742056,-4.61539338115817 +"Q9W401",0.038218501734697,24.4066267096067,0.0668475973753546,0.947662098243083,0.999843076742056,-4.61539374171546 +"Q9VIN9",0.0280628746221723,16.5325928028348,0.0664902879544103,0.947941408421566,0.999843076742056,-4.61539476095999 +"Q9VHD2",0.042808554222983,16.6274005406552,0.0662469513434176,0.948131629681366,0.999843076742056,-4.61539545196797 +"Q9VBT1",-0.0613309993661701,16.344982023068,-0.0661480909140847,0.94820891186276,0.999843076742056,-4.61539573198113 +"Q7JR49",0.0402507413207829,18.8495650475253,0.0661202798573945,0.948230652702852,0.999843076742056,-4.61539581067814 +"Q9VEJ0",-0.0406018200164375,22.1648801920338,-0.0656455066968067,0.948601805476541,0.999843076742056,-4.61539714904633 +"P29327",0.0224796293708209,19.6335002418433,0.0654568481432692,0.94874929229423,0.999843076742056,-4.61539767819349 +"Q9VCA5",0.0315818674072617,14.2960667722661,0.0652869717326126,0.948882097544663,0.999843076742056,-4.61539815335928 +"Q9V3I0",0.0621783769353996,16.4276325077449,0.0652149811161366,0.948938378536153,0.999843076742056,-4.61539835435407 +"Q9VF28",0.0422760429732421,17.7657607152709,0.0651049793165116,0.949024376545817,0.999843076742056,-4.61539866104672 +"Q9VMB9",-0.0415443759684599,22.4720875263389,-0.0648467611240927,0.949226250841039,0.999843076742056,-4.61539937894522 +"Q9VXI6",-0.0362435660439324,21.9778291703426,-0.0646891534269141,0.949349469901075,0.999843076742056,-4.61539981572587 +"Q9VXH4",0.0398631126853175,17.1751866391401,0.0643365781582468,0.949625121165816,0.999843076742056,-4.61540078897939 +"Q9W3G8",0.0327389199836077,15.7676399244373,0.0642796285880179,0.949669646248891,0.999843076742056,-4.61540094568537 +"Q9VV60",0.0405872577784976,20.03074628468,0.0641545276245768,0.949767454989122,0.999843076742056,-4.6154012894343 +"Q9VUN9",0.0297174588422351,16.8396367895264,0.0639302815132635,0.949942781321026,0.999843076742056,-4.61540190393741 +"Q9VEY5",-0.0235488599083062,20.8134840304023,-0.0638547815030803,0.950001811445811,0.999843076742056,-4.61540211034697 +"R9PY51",0.0301848128873772,21.4184165736271,0.0635604940458273,0.95023190472569,0.999843076742056,-4.61540291257425 +"Q94516",-0.0347076788378686,23.3227838557153,-0.0633895970244982,0.950365525370669,0.999843076742056,-4.61540337674045 +"Q9VTP4",0.039218940338408,20.949302198811,0.0629300290621525,0.950724859200597,0.999843076742056,-4.61540461876173 +"Q9W2D6",0.0392242532402776,19.5720527581227,0.0628768137562429,0.950766468696386,0.999843076742056,-4.61540476199743 +"P00334",-0.0367118046908992,25.154576789282,-0.0627590981206052,0.950858512073254,0.999843076742056,-4.61540507841389 +"Q9V9U4",0.0478114874319662,15.909964501166,0.0626430879216028,0.950949222660487,0.999843076742056,-4.61540538966672 +"P49028",-0.0386795167657183,16.3969913274583,-0.0626301320544175,0.950959353144042,0.999843076742056,-4.61540542439132 +"Q9V6B9",-0.0451218138001188,15.8320938491784,-0.0623389885129206,0.951187007139488,0.999843076742056,-4.6154062028285 +"Q9VJ19",-0.03230871754565,19.1472242515217,-0.0622684457978005,0.951242167302781,0.999843076742056,-4.6154063908949 +"Q9VDL1",0.058999545910277,14.7955255268393,0.0620642971828635,0.951401800712146,0.999843076742056,-4.61540693395525 +"Q8SY33",0.0256730305278907,17.3717100424671,0.0620413807950696,0.951419720249732,0.999843076742056,-4.61540699480444 +"Q9VRQ9",-0.0455464953191669,14.7942430412683,-0.0615014561550939,0.951841923809291,0.999843076742056,-4.61540842195528 +"Q9VAC4",-0.0313580491805858,19.4208061678473,-0.0612611047834886,0.952029875630723,0.999843076742056,-4.61540905325365 +"Q9W3T2",0.0319721224381944,16.2126684178839,0.0611525081899385,0.952114797807378,0.999843076742056,-4.6154093376797 +"Q7K1Q7",-0.0235380860014978,16.5175844902038,-0.0611198187921652,0.952140360926674,0.999843076742056,-4.615409423198 +"O61443",0.0526958118843979,16.6316753587641,0.0609591225312147,0.952266026248783,0.999843076742056,-4.61540984292918 +"Q9V6U9",-0.0355220154320968,21.8539672104388,-0.0607610712779791,0.952420905186927,0.999843076742056,-4.61541035871131 +"Q7JWX3",-0.0338090517745009,18.010536446635,-0.0605068423639646,0.952619718794611,0.999843076742056,-4.61541101833857 +"Q9U6M0",0.0201770641277648,16.2612653784424,0.0604190405571334,0.9526883828484,0.999843076742056,-4.61541124550897 +"Q9VE94",-0.041610680171404,14.6593423414149,-0.0604150860804846,0.95269147539529,0.999843076742056,-4.61541125573267 +"Q9VGF3",0.0512221063692024,15.6855066969894,0.0603999863537043,0.952703283946981,0.999843076742056,-4.61541129476457 +"A1ZB71",-0.0473115806513817,19.1346946983751,-0.0601911508029278,0.952866602349668,0.999843076742056,-4.61541183359249 +"Q9VJ28",0.0302115826275191,19.0154155706828,0.0600665635685198,0.952964035986158,0.999843076742056,-4.6154121541589 +"A8JNP2",0.0451319666262577,21.0900906176038,0.0599937696078696,0.953020964975937,0.999843076742056,-4.61541234115267 +"Q7JXF5",-0.0420805956481516,18.4980668566026,-0.0593677425388405,0.95351056448214,0.999843076742056,-4.61541393994569 +"Q7JZF5",0.0281145165283014,16.926345887847,0.0592653860096005,0.953590616725623,0.999843076742056,-4.61541419975759 +"Q9VDI5",-0.0374139713667461,16.7295901757316,-0.0592095946772597,0.95363425091097,0.999843076742056,-4.6154143411843 +"O97422",-0.0275863409748975,15.4145132642752,-0.0591738100419058,0.953662238017308,0.999843076742056,-4.61541443182554 +"Q9VUW4",-0.037060508300824,14.5899577128377,-0.0589711311280034,0.953820754071214,0.999843076742056,-4.6154149441711 +"Q9W380",-0.0162754803648255,18.4382518433882,-0.0586869556624902,0.95404301234946,0.999843076742056,-4.61541565957189 +"Q9VXE0",-0.0265599858523444,18.0819723242216,-0.0584917385598561,0.954195697141577,0.999843076742056,-4.61541614902298 +"Q9VTT2",-0.0336343942323758,13.9681362145376,-0.0580260583814567,0.954559926256588,0.999843076742056,-4.61541731000418 +"Q9VH19",-0.0404814657751587,13.9949357515113,-0.0577701715597568,0.9547600711834,0.999843076742056,-4.61541794400539 +"A1ZB23",-0.0319855326286103,15.7855523655506,-0.0577362143647108,0.954786631446879,0.999843076742056,-4.61541802792948 +"E1JIY8",0.0232563379763917,16.3378180434282,0.057613583546039,0.95488254992981,0.999843076742056,-4.61541833059699 +"Q9VQX3",0.0514704243627069,15.1613029291368,0.0575719391750811,0.954915123186726,0.999843076742056,-4.61541843323404 +"Q8SX78",0.0370608302732123,15.9562909401366,0.0572356195379729,0.955178187636406,0.999843076742056,-4.6154192594127 +"Q9VJD4",0.0309509253485878,20.7105362153608,0.0570788465673046,0.955300815087677,0.999843076742056,-4.6154196428774 +"Q9V9T9",-0.0470346831560953,13.5195727942761,-0.0566198438936919,0.955659852659703,0.999843076742056,-4.61542075954999 +"Q9VB22",0.0208177332235628,17.0819610732704,0.0558990940740502,0.956223652247701,0.999843076742056,-4.61542249482955 +"Q9W0Z5",0.0377336128929642,16.8066921978833,0.0558525091731108,0.956260093678071,0.999843076742056,-4.61542260622332 +"Q9W2X6",-0.0273067747007012,24.0587455298053,-0.0558518861228311,0.956260581065079,0.999843076742056,-4.61542260771253 +"P17210",0.0313971721455459,20.7789626067063,0.0557361132137118,0.956351145839949,0.999843076742056,-4.61542288414366 +"Q9V3L6",-0.031276898055598,15.9384370151374,-0.0553656343697972,0.956640961653681,0.999843076742056,-4.6154237648852 +"Q9U6R9",0.0254612000349965,20.5370590310835,0.0550492026849887,0.956888502851252,0.999843076742056,-4.61542451249318 +"Q8SXG7",0.0383601566779781,14.0095970708759,0.0549095675200748,0.95699773945225,0.999843076742056,-4.61542484103658 +"B7Z0N0",0.0393507634461496,13.0719810271949,0.0548054752794225,0.957079171405067,0.999843076742056,-4.6154250854097 +"Q95RB1",-0.0167675248110655,15.9321070629607,-0.0543025466735486,0.957472622318798,0.999843076742056,-4.61542625958779 +"Q9W3T9",0.0297303424597501,18.6055101749439,0.0543013368353477,0.957473568812889,0.999843076742056,-4.61542626239933 +"Q9V3G3",-0.0359403269166165,14.8796867900004,-0.0538381126510959,0.957835968399952,0.999843076742056,-4.61542733428774 +"Q9V9M7",0.0407963531713911,18.4925272384014,0.0538361443461658,0.957837508307676,0.999843076742056,-4.61542733882277 +"Q7KNM2",0.0283779080198165,19.6003321742329,0.0536539650369436,0.957980037450661,0.999843076742056,-4.6154277578516 +"Q960M4",-0.0298099849781295,23.1310416328802,-0.0535418115993343,0.958067782150171,0.999843076742056,-4.61542801510884 +"Q9VQE0",0.0298444722692217,17.5516897164665,0.0534850141715912,0.958112218571512,0.999843076742056,-4.61542814518545 +"Q9VCF8",-0.0333741858053003,16.930474305896,-0.0534601525278895,0.958131669541495,0.999843076742056,-4.6154282020798 +"Q9VXQ5",0.0293939832394905,20.3834643606198,0.0534477385845138,0.958141381831674,0.999843076742056,-4.61542823047846 +"Q9VXP3",0.0201602207405305,14.8485889648177,0.0532163218739758,0.958322436461899,0.999843076742056,-4.61542875867057 +"Q8IPP8",0.027979474841743,19.0497078680264,0.0530840680262718,0.958425909629602,0.999843076742056,-4.61542905950217 +"Q9VCW2",0.0316341851966584,15.4803121995799,0.0530080387147874,0.958485394026346,0.999843076742056,-4.61542923210388 +"Q9VJC7",0.038128180429144,18.5656080440269,0.0527904481478408,0.958655635624859,0.999843076742056,-4.61542972471185 +"P21187",-0.0400335930246989,19.1557839528566,-0.0526757547600334,0.958745371911235,0.999843076742056,-4.61542998355382 +"P23128",-0.0334400182587178,14.729296228243,-0.0523889194121193,0.958969794879088,0.999843076742056,-4.61543062842608 +"Q9V429",0.0313170022518676,22.3084886446758,0.052246784263498,0.959081004242969,0.999843076742056,-4.61543094667511 +"Q9VSC3",-0.0269144845037701,17.6735075592852,-0.052176107941293,0.959136303131283,0.999843076742056,-4.61543110460198 +"Q8IP97",0.0339339830099092,19.9361585674327,0.0521705557708411,0.959140647294917,0.999843076742056,-4.6154311169993 +"Q9W4A0",-0.0301808355491637,17.0845714433184,-0.0520218062347052,0.95925703333122,0.999843076742056,-4.61543144864825 +"Q9W3H4",0.0226920281173442,19.4281365239318,0.0518964793945953,0.959355093507133,0.999843076742056,-4.61543172733997 +"Q9VTB3",-0.0254300271135364,19.6615265647393,-0.0517016494049549,0.959507536775882,0.999843076742056,-4.61543215925344 +"Q9VP55",0.0478127642731501,17.1800296300103,0.0516751754508058,0.959528251250582,0.999843076742056,-4.61543221781757 +"P02515",-0.0210061186333519,18.0330911509467,-0.0516302210101653,0.959563425802165,0.999843076742056,-4.6154323171945 +"Q9VIG0",0.0346647576309174,17.3440999918206,0.0511405521537422,0.95994657230267,0.999843076742056,-4.61543339406571 +"Q7JXB9",0.0682446300141777,16.2530825015997,0.0511289088938704,0.959955682818329,0.999843076742056,-4.61543341954655 +"Q9VV75",-0.0211889688916571,23.9219490195168,-0.0510802190414762,0.959993781289118,0.999843076742056,-4.61543352603968 +"Q9VRP4",-0.0499252426529164,14.5092918594909,-0.051076842840699,0.959996423077167,0.999843076742056,-4.61543353342025 +"A1Z6R7",-0.0423127966946275,17.8634526535216,-0.0510605134962999,0.960009200365309,0.999843076742056,-4.61543356911029 +"Q9VMC8",0.0226069256285761,16.3483688438516,0.0507172991433183,0.96027775932562,0.999843076742056,-4.61543431661399 +"Q9V4C8",-0.022139716720428,17.2372603338568,-0.0504880541830857,0.960457142112808,0.999843076742056,-4.61543481309182 +"Q9VV76",0.0520334079963511,16.2930998708607,0.0503970275533844,0.960528370515019,0.999843076742056,-4.6154350096056 +"Q9VR89",0.0174797722684144,13.9181454063698,0.0499740672982986,0.960859341800576,0.999843076742056,-4.61543591806892 +"Q9VFM0",-0.0424833332568966,14.3604009765098,-0.0499452357447771,0.960881903098082,0.999843076742056,-4.61543597971678 +"Q9VL18",0.0263018771545056,20.878107174647,0.0498261969218547,0.960975053851293,0.999843076742056,-4.61543623387014 +"Q7K3Z3",0.0159187272914991,19.81421661926,0.0496509227295138,0.961112211216876,0.999843076742056,-4.61543660698548 +"O17452",0.0249763448329716,19.8849583404631,0.0494680455224845,0.961255319536116,0.999843076742056,-4.61543699488513 +"Q8MT58",-0.0250869288288449,21.670010949519,-0.0493565759005827,0.961342549405219,0.999843076742056,-4.61543723062097 +"Q9VU84",-0.0292045663952578,18.4394117511284,-0.0493188674264696,0.96137205805696,0.999843076742056,-4.61543731024652 +"Q9W077",-0.0356702872126426,20.7828016258906,-0.0491956784085468,0.961468459658201,0.999843076742056,-4.61543756994967 +"O97418",-0.0239321826514605,20.9747162444288,-0.0491697841514171,0.961488723296264,0.999843076742056,-4.61543762445656 +"O46098",0.0365954266311057,17.9529786159935,0.049124792850831,0.96152393145574,0.999843076742056,-4.61543771909415 +"Q9VLP3",-0.0147938792697033,17.4457090950326,-0.0490761017222611,0.961562035027481,0.999843076742056,-4.61543782141664 +"Q7K3N4",-0.0206513811690741,17.2176635144804,-0.0488948810949817,0.961703851311273,0.999843076742056,-4.61543820135366 +"M9NDE3",-0.0175251004721382,16.229831683125,-0.0488721449928417,0.961721643804435,0.999843076742056,-4.61543824892173 +"Q9W229",0.0182676717903725,19.2113110961726,0.0485625602556317,0.961963916299385,0.999843076742056,-4.61543889442932 +"Q9VFV9",0.0317566478133351,21.3254608745638,0.0480965876105084,0.962328581022674,0.999843076742056,-4.61543985828906 +"Q9VDC3",0.0184466067997384,19.2684772474961,0.0476411159015305,0.962685036306942,0.999843076742056,-4.61544079145225 +"Q9VEA1",-0.0203150627792219,18.2648548764484,-0.0473960023753215,0.962876867272016,0.999843076742056,-4.61544128996445 +"Q95083",-0.0256823499189665,19.9380337188648,-0.0473766823781786,0.962891987607064,0.999843076742056,-4.61544132914822 +"P0DKM0",-0.0153017547330876,17.0158953316412,-0.047257723781347,0.962985088042897,0.999843076742056,-4.61544157006182 +"Q9VV72",0.0277411033168811,19.4436645765116,0.0466430574908325,0.963466152556752,0.999843076742056,-4.61544280523303 +"Q9W5W8",0.0315057480167376,20.7540783932538,0.0466361303405666,0.963471574129812,0.999843076742056,-4.61544281906105 +"Q9VFC2",-0.0346438379994254,19.9563556833067,-0.0465936173065798,0.96350484723575,0.999843076742056,-4.61544290388082 +"P25007",0.027048206955758,23.809963320718,0.0465555218992687,0.963534662917128,0.999843076742056,-4.6154429798211 +"Q9VBI2",0.0261174049344319,22.0310321221807,0.0462770613448712,0.963752604061284,0.999843076742056,-4.61544353302567 +"Q9VQQ0",-0.0138617231677216,18.2072905395597,-0.0458583262516751,0.964080338747435,0.999843076742056,-4.61544435866325 +"A1ZA83",-0.0286466638654232,17.062276036172,-0.0457062516333382,0.964199365857828,0.999843076742056,-4.61544465665859 +"Q4V6M1",0.0281657113516509,18.2087207464921,0.0453013077168071,0.9645163152706,0.999843076742056,-4.61544544533557 +"Q9W2D9",0.0409306495178576,17.717600670283,0.0452731040607312,0.964538390491816,0.999843076742056,-4.61544550000429 +"Q9VLT8",-0.0202582975088319,13.9197468489709,-0.0450286849704381,0.964729700480927,0.999843076742056,-4.61544597235032 +"Q94529",-0.0165717070365083,19.605580739711,-0.0449290777948322,0.964807664956208,0.999843076742056,-4.61544616411076 +"Q8IN44",-0.0257800494431812,19.7126525971093,-0.0447134827521554,0.964976416673067,0.999843076742056,-4.61544657771372 +"Q7JWF1",0.0222150206575655,20.7102911435609,0.0446682378062941,0.96501183126333,0.999843076742056,-4.61544666426034 +"Q9VPR1",0.0244255702526193,13.6339210412077,0.0443632036345325,0.965250592752636,0.999843076742056,-4.61544724545846 +"A1ZBM2",0.023593780590442,18.5976099190297,0.0442683834742878,0.965324812693989,0.999843076742056,-4.6154474253135 +"Q9VRU1",0.0240734730524323,17.312260216198,0.0441044200762239,0.965453154899547,0.999843076742056,-4.61544773541198 +"Q9VNR6",-0.0192859431059222,14.6137445719229,-0.0438872630263297,0.965623135920592,0.999843076742056,-4.61544814434361 +"Q9Y128",0.0279977678114935,14.3293294638082,0.0437600950650108,0.96572267823423,0.999843076742056,-4.61544838287888 +"Q9VJ43",0.0180818881097053,20.3188453825099,0.0436664126464065,0.965796009700211,0.999843076742056,-4.61544855816112 +"Q9VN91",-0.0252663171375112,19.677938238275,-0.0436291341641106,0.96582519013964,0.999843076742056,-4.6154486278057 +"E1JJH5",-0.0275791936591432,21.2446550586506,-0.0435124143520162,0.965916555116416,0.999843076742056,-4.61544884548006 +"Q9VAM6",0.0207345707175044,21.9887978165628,0.0434498332827593,0.965965542017305,0.999843076742056,-4.61544896194942 +"Q966T5",0.0189988587846415,16.528213566233,0.043385478885548,0.966015917184073,0.999843076742056,-4.61544908154437 +"Q9VBP6",-0.025858982314265,23.068866651639,-0.0433201407240053,0.96606706257361,0.999843076742056,-4.61544920278628 +"A1ZBK7",0.019784394806905,17.5313270461567,0.0432780503039703,0.966100010184167,0.999843076742056,-4.61544928079281 +"P08646",-0.0364700976454344,18.9623835166013,-0.0431912540487799,0.966167952907504,0.999843076742056,-4.61544944141376 +"Q05856",0.0417658593571808,13.7215679193263,0.0430591778966276,0.966271340535383,0.999843076742056,-4.61544968520916 +"O44226",0.0247194303112259,20.1709234329121,0.043038115935955,0.966287827643936,0.999843076742056,-4.61544972401781 +"Q9VMR0",-0.0233473433369902,17.360017974523,-0.0428573606769496,0.96642932185165,0.999843076742056,-4.61545005629612 +"Q07093",-0.0157148063234835,14.5745322220871,-0.0426972409776012,0.966554663640403,0.999843076742056,-4.61545034947306 +"M9PHA0",0.0206390479405663,17.3653166177832,0.0424684220872121,0.96673378478773,0.999843076742056,-4.61545076653359 +"Q9W199",-0.0520674776493557,16.0163636898348,-0.0422725669174328,0.966887103169751,0.999843076742056,-4.61545112173311 +"O18413",-0.0221115587317229,19.5114327498004,-0.0422597630791419,0.966897126255023,0.999843076742056,-4.61545114489678 +"Q9W0H6",0.0331968811138879,18.1460025808286,0.0422329504616744,0.966918115694781,0.999843076742056,-4.61545119338128 +"Q9VL68",0.0153018626701567,20.7964896128827,0.0420083990016031,0.967093899955114,0.999843076742056,-4.61545159822397 +"Q9VY92",0.0281246795899115,21.3208742482921,0.0419111776634763,0.967170007698931,0.999843076742056,-4.61545177283465 +"Q9VSX2",0.0204195772955131,17.8888311676922,0.0418380362584235,0.967227265176974,0.999843076742056,-4.61545190393095 +"Q9W1R3",0.0182274651100585,16.8525855297555,0.0418256195277427,0.9672369854175,0.999843076742056,-4.61545192616357 +"Q95NU8",-0.0145942543966946,17.2973408594938,-0.0416867753027639,0.967345677783512,0.999843076742056,-4.61545217432012 +"Q9V3Y2",0.0254418439976547,17.8518525801676,0.0414856801179295,0.967503103686033,0.999843076742056,-4.61545253227564 +"Q8SWZ6",-0.0353544748063772,13.9301761728174,-0.0414277537232524,0.967548451204275,0.999843076742056,-4.61545263506542 +"Q9VK60",0.0145034532133224,21.2792638885535,0.0411147825290427,0.967793461854497,0.999843076742056,-4.61545318794639 +"Q9VFB2",0.0348075795137603,16.5180519307174,0.0410625901679672,0.967834321165892,0.999843076742056,-4.6154532797394 +"Q9VKQ2",0.0390554548930862,15.9243312803963,0.0409972343425586,0.967885485759275,0.999843076742056,-4.61545339451923 +"Q7KLX3",0.0317510739590148,19.3145152010274,0.0406347296107878,0.968169279607867,0.999843076742056,-4.61545402784288 +"Q9VMU0",-0.0346051338817652,21.0714324369799,-0.0404517921534999,0.96831249744306,0.999843076742056,-4.61545434531417 +"Q9VM12",-0.0200274667768099,19.0267102408236,-0.0403571878364321,0.968386561592151,0.999843076742056,-4.61545450892966 +"P05389",0.0206730811637357,20.557214523229,0.0403472663866287,0.968394328948054,0.999843076742056,-4.61545452606634 +"Q9VRJ4",-0.0199348023501216,20.6832409731443,-0.0402674922596384,0.968456783050037,0.999843076742056,-4.61545466370199 +"Q9W379",-0.0301277664228543,16.3070648726195,-0.0398665062338456,0.968770712921154,0.999843076742056,-4.61545535140602 +"Q9VGP6",0.0192777746120036,18.0186195385219,0.0398048973855351,0.968818946645913,0.999843076742056,-4.6154554564575 +"O44386",0.0134189693980105,16.9158994579382,0.03966422835904,0.968929077261311,0.999843076742056,-4.61545569570867 +"A1ZB79",0.0213820087291339,20.7261478380143,0.0394408554321516,0.969103958604,0.999843076742056,-4.61545607388381 +"Q9VAN0",-0.0228630897688191,20.5052386509913,-0.0389642235037592,0.969477124967762,0.999843076742056,-4.61545687369425 +"Q9W2K2",0.0293198313626455,15.6139665544978,0.0388222752391801,0.969588261048028,0.999843076742056,-4.61545711001157 +"Q9W1X4",-0.0327731120682309,15.2073833647095,-0.0383879286186769,0.969928329724751,0.999843076742056,-4.61545782776248 +"Q9VKU3",0.0358388518451029,15.6182743980102,0.0382931241773967,0.970002557015931,0.999843076742056,-4.6154579833521 +"Q7JZW2",0.0160882504589779,20.5348412500215,0.0380684538439742,0.970178464170707,0.999843076742056,-4.61545835053736 +"P91941",-0.0161905395400836,23.055285000533,-0.0376128092630345,0.970535219116367,0.999843076742056,-4.61545908857889 +"Q9VVN2",-0.0188056420335307,15.0315609789699,-0.0375742194041577,0.970565434027974,0.999843076742056,-4.61545915067772 +"Q9W1V3",-0.0372184749828577,16.4365033847756,-0.0373559412185355,0.970736341368734,0.999843076742056,-4.61545950073166 +"Q9VV36",0.0329893611870844,22.9198134490515,0.0371051038128065,0.970932743755701,0.999843076742056,-4.61545990048349 +"Q7KSM5",0.0214614984254844,18.942189973201,0.037024944774616,0.970995507641437,0.999843076742056,-4.61546002766284 +"Q9VJ25",0.0260340767291893,15.7568464179738,0.036616893025553,0.971315011984599,0.999843076742056,-4.61546067081061 +"Q9VMH9",-0.0225226629701538,20.0959659142772,-0.0365646236870718,0.971355939225126,0.999843076742056,-4.61546075267978 +"O77430",-0.0196341966374582,19.544879988338,-0.0365362085910724,0.971378188469949,0.999843076742056,-4.61546079713713 +"Q9VZG1",-0.0155497807609386,17.6612867866867,-0.0363621491006143,0.971514478967007,0.999843076742056,-4.61546106871104 +"P17704",0.0172161265993296,20.3319601554265,0.036080735177026,0.971734831121828,0.999843076742056,-4.6154615050409 +"Q9Y171",0.0414163485874166,15.2187411066438,0.0357849989330529,0.971966400495924,0.999843076742056,-4.61546195992558 +"P55828",-0.0265432568739357,19.964589512763,-0.0356790104479245,0.972049392950125,0.999843076742056,-4.61546212204008 +"Q9VAY9",-0.0142747149138156,14.7805226970439,-0.0356780259690158,0.972050163830924,0.999843076742056,-4.61546212354364 +"Q8MRT7",0.0158120660518772,15.4248250098311,0.0356711442427911,0.972055552459733,0.999843076742056,-4.61546213405266 +"Q9VLP2",0.0268645530566864,19.2823088497608,0.0355663354122183,0.972137621561418,0.999843076742056,-4.61546229385484 +"Q9VCY3",0.0220880850927507,17.874567310294,0.0354382031546461,0.97223795419486,0.999843076742056,-4.6154624885797 +"Q9VUZ0",0.0199488367837652,17.630897588258,0.0350687740614019,0.972527234538024,0.999843076742056,-4.61546304607482 +"Q9VQI6",-0.0164563944739591,16.1570276149871,-0.0349779113566207,0.972598384923857,0.999843076742056,-4.61546318229835 +"A1Z847",-0.0164136275177498,19.9786608541206,-0.0349461870783668,0.972623226797494,0.999843076742056,-4.61546322977693 +"P02572",0.0222882003928362,26.556977962849,0.034924126256727,0.972640501664758,0.999843076742056,-4.61546326276779 +"Q9VHE4",-0.0306418491267983,17.9048919670998,-0.0348324880890789,0.97271225966981,0.999843076742056,-4.61546339958518 +"Q500Y7",-0.0122421270721667,19.9775381708407,-0.0346841648328896,0.972828405910131,0.999843076742056,-4.61546362027288 +"P38979",0.0206815554256004,22.1079366163806,0.0343787205301748,0.973067589617593,0.999843076742056,-4.61546407177287 +"Q9W1W4",0.0160538245488553,17.2878649314956,0.0343106294547764,0.973120909938561,0.999843076742056,-4.61546417187916 +"B7Z0C9",0.0210358020932393,15.8855518722182,0.0342670460620523,0.97315503901129,0.999843076742056,-4.61546423585055 +"Q7K3W2",-0.0170814773266521,17.6533582755945,-0.0340787063920962,0.973302523758222,0.999843076742056,-4.61546451135959 +"Q9VE56",0.0210310003487066,17.4575515801111,0.0340093041797006,0.973356871395114,0.999843076742056,-4.61546461250054 +"A1Z729",0.0233079060300589,16.7060409192578,0.0339886941689632,0.973373010754086,0.999843076742056,-4.61546464249614 +"Q9VNI8",0.0210291800748834,15.723442663841,0.0337161450359693,0.973586440615646,0.999843076742056,-4.61546503745183 +"P08120",-0.0132646855059697,18.2265084526721,-0.0335881738431835,0.973686654003634,0.999843076742056,-4.61546522180043 +"Q9VII5",-0.0200804581016421,17.3611303308395,-0.0335778574600913,0.973694732714606,0.999843076742056,-4.61546523663114 +"Q9VDF4",0.0217092622567243,18.6677002537498,0.0335423023019572,0.973722575814337,0.999843076742056,-4.61546528770994 +"P20351",0.0242061510576637,13.9892385283227,0.0330690542517681,0.974093177814342,0.999843076742056,-4.61546596242939 +"Q8IH18",0.0185264453238787,15.6717515478553,0.0328355209154155,0.974276060783983,0.999843076742056,-4.61546629185095 +"Q7JXZ2",-0.0194135551872172,17.7276514567356,-0.0326100800047901,0.974452607897364,0.999843076742056,-4.61546660764336 +"Q9VHC3",0.015273164449173,17.3692189901421,0.0321590087659975,0.974805854629603,0.999843076742056,-4.61546723296401 +"Q9VW90",0.0271640014294352,15.0324188038062,0.0321511741299287,0.974811990204991,0.999843076742056,-4.61546724374825 +"O02195",-0.0178328501085403,18.8092280800503,-0.032109863115673,0.974844342321251,0.999843076742056,-4.61546730056867 +"Q9VMH8",0.0102001228313604,18.9810978015728,0.0319004969051523,0.975008305111541,0.999843076742056,-4.61546758741429 +"Q7K3W4",-0.0191052848580249,19.2958451876802,-0.0318231460496039,0.975068881860585,0.999843076742056,-4.61546769291555 +"Q9VCB9",0.0346361305400116,16.9354910409389,0.0315166326277617,0.975308927142955,0.999843076742056,-4.61546810846118 +"Q9Y162",0.0224026115113674,20.1403473434866,0.0314500271583804,0.975361089393074,0.999843076742056,-4.61546819822761 +"Q9VMQ9",-0.0155970886099901,22.1300984585,-0.0311542123938693,0.975592758923451,0.999843076742056,-4.61546859461306 +"Q9VVH3",-0.0108063609812596,19.8476120633594,-0.0310622113137418,0.975664810720612,0.999843076742056,-4.61546871712906 +"Q9VSL4",0.014891974519049,20.8577609909934,0.0308347203908224,0.975842974030302,0.999843076742056,-4.61546901851894 +"Q8IM93",-0.0221319414246821,18.9368108471897,-0.0308299899787397,0.975846678745662,0.999843076742056,-4.61546902476248 +"Q8IMT3",-0.0285504414439703,14.7750188796009,-0.0305477812808029,0.976067697089148,0.999843076742056,-4.61546939550976 +"Q9VKY3",-0.0186185326518782,18.8054627127598,-0.0305443587714424,0.976070377519995,0.999843076742056,-4.61546939998511 +"Q9VH07",0.0178168280760183,18.2284395607693,0.0303974989510374,0.976185395046238,0.999843076742056,-4.61546959155002 +"Q9VZW1",0.0315346319301923,14.7732395984408,0.0302735489765526,0.976282470491025,0.999843076742056,-4.61546975251289 +"Q94522",-0.0125577053199706,23.4148016262002,-0.0300522820041996,0.976455763870768,0.999843076742056,-4.61547003821822 +"Q9VQL1",0.0164185565506152,20.0892088596211,0.0298393324956036,0.976622544289473,0.999843076742056,-4.61547031120517 +"Q9VW00",-0.0462531568672198,15.7203859472039,-0.029698002938659,0.976733233140352,0.999843076742056,-4.61547049130872 +"Q9VJN0",-0.0184234802832819,17.4621977585269,-0.0294643595570901,0.976916222970968,0.999843076742056,-4.61547078717779 +"Q9VC31",-0.0244067323727393,17.6608193036836,-0.0293701979933208,0.97698997082493,0.999843076742056,-4.61547090575667 +"Q9VRG6",-0.00973004496308505,16.3311042380769,-0.0292995786229061,0.977045280447311,0.999843076742056,-4.61547099443954 +"Q9V8M5",-0.00857977686540323,19.8552797547818,-0.0289283332522939,0.977336044627095,0.999843076742056,-4.61547145713424 +"Q8SYD0",0.0238048529393833,15.4480435017398,0.0288672073504628,0.977383919546875,0.999843076742056,-4.6154715327518 +"Q9V8F5",-0.0174018499979365,15.8920122813895,-0.0287904748285691,0.977444017983997,0.999843076742056,-4.61547162744961 +"Q9W236",0.0253474010732724,16.4756856740097,0.0285063022414609,0.977666588842628,0.999843076742056,-4.61547197596045 +"Q7JWD3",-0.0266847780202433,17.008270095552,-0.0284880124924188,0.97768091388386,0.999843076742056,-4.61547199827272 +"Q9U5L1",0.0192254295544849,17.6721881933998,0.0283753529675768,0.977769152140131,0.999843076742056,-4.6154721353941 +"Q9W1N3",0.012250940069098,20.4320726060021,0.0281738523611376,0.977926974100368,0.999843076742056,-4.61547237929202 +"Q9VGT8",-0.013875375653539,15.367817816338,-0.0279859776912779,0.978074124640728,0.999843076742056,-4.61547260513153 +"P08736",0.0146949328587027,24.3612936314729,0.0279324841408142,0.978116022962729,0.999843076742056,-4.61547266915851 +"Q9W147",-0.0198872597373363,13.7399278713848,-0.0276442264612322,0.978341799240827,0.999843076742056,-4.61547301206889 +"A1Z934",0.0163057261055215,19.2821438062826,0.0275475642321191,0.978417509845184,0.999843076742056,-4.61547312626173 +"Q9VCK0",0.0169925984353796,18.353812554884,0.0273991328320718,0.978533769026933,0.999843076742056,-4.61547330083405 +"Q9VED8",-0.011149499611868,16.5522962037041,-0.027320939745151,0.978595014117892,0.999843076742056,-4.61547339241884 +"Q9VIV6",-0.0534139505386584,15.0868467436289,-0.0272343540698572,0.978662832905562,0.999843076742056,-4.61547349352826 +"P92181",0.00859176545382923,16.489390952769,0.0271923894204656,0.978695702049131,0.999843076742056,-4.61547354241655 +"Q9U9P7",-0.0190902659130074,16.5319952329337,-0.0271606020362003,0.978720599796068,0.999843076742056,-4.61547357939828 +"P12080",-0.014941465729855,19.1597787385304,-0.0269532837123966,0.978882984251941,0.999843076742056,-4.61547381953347 +"Q9VHT3",0.0210866473105007,15.5811301786703,0.0267148918549163,0.979069708611959,0.999843076742056,-4.61547409338702 +"Q9W392",-0.0126745227899363,20.0699492926718,-0.0266726792954296,0.979102772429654,0.999843076742056,-4.61547414162537 +"Q9VU70",-0.0149503190809028,14.6287862601356,-0.0265824374560213,0.979173456259583,0.999843076742056,-4.61547424449333 +"Q9W2E7",-0.00796229177996821,18.6533388092769,-0.0261816773127566,0.979487362308894,0.999843076742056,-4.61547469711443 +"P08182",0.00909772949355059,19.6021753332152,0.0259071100807956,0.979702426443799,0.999843076742056,-4.61547500324427 +"Q9VAY6",0.0086453949615688,15.1867101197993,0.0258335205089108,0.979760068261599,0.999843076742056,-4.61547508474495 +"P45889",0.0104387130855947,19.1982284135744,0.0257708113006638,0.979809187715474,0.999843076742056,-4.61547515401268 +"Q9VN14",-0.013344206602202,19.4166963570261,-0.0257102952799528,0.979856589349665,0.999843076742056,-4.61547522069826 +"Q9I7K6",0.0313109967046934,16.1029995868677,0.0255249910664522,0.980001736901647,0.999843076742056,-4.61547542391924 +"Q8IMX8",-0.0131687102659903,17.1481015927141,-0.0254154977863925,0.980087502602531,0.999843076742056,-4.61547554330845 +"Q9VTJ4",0.0260548173948632,15.5700687229629,0.0253593341873344,0.98013149545138,0.999843076742056,-4.61547560434897 +"Q7KMP8",0.0191144223938231,19.2536490678098,0.0251914900529924,0.980262967867949,0.999843076742056,-4.61547578596307 +"Q9VXN2",0.0123974125696371,18.3156934476799,0.0250496431899221,0.980374077070457,0.999843076742056,-4.61547593850695 +"Q9VMD3",0.0229023633694432,17.8670258976151,0.0248444590792797,0.980534799335203,0.999843076742056,-4.61547615764062 +"Q9VAY0",-0.0152498460240444,13.980473758271,-0.0245549164782627,0.980761601736186,0.999843076742056,-4.61547646380231 +"Q9XYZ9",0.0111780867082025,21.9793019024173,0.0242222872180982,0.981022156598345,0.999843076742056,-4.61547681109465 +"Q9VZ67",-0.0142656293818053,15.2050090621346,-0.0239812650318317,0.981210955295697,0.999843076742056,-4.61547705978263 +"Q9W414",0.0087583057204732,19.6250973145801,0.0239247068379576,0.981255258911309,0.999843076742056,-4.61547711777947 +"Q24238",-0.0153294424798105,16.4780977880236,-0.0238582672573623,0.981307302975704,0.999843076742056,-4.61547718573416 +"Q9W0X2",0.0182451844104285,15.9511940052377,0.0238468824777756,0.981316221015027,0.999843076742056,-4.61547719735959 +"P48148",0.0141966601919243,20.7365828351859,0.0238154923854682,0.981340809829283,0.999843076742056,-4.6154772293845 +"Q9W3M7",0.00920033371712492,16.1543326998936,0.0237773384244436,0.981370697014217,0.999843076742056,-4.61547726825327 +"Q9VM58",0.0206796182078186,16.5192553030198,0.0233726601995024,0.981687695841057,0.999843076742056,-4.61547767667777 +"Q9V428",0.0119209458128218,18.7164265012032,0.0232762141444252,0.981763245938121,0.999843076742056,-4.61547777298228 +"Q7KTH8",0.00792828790854117,17.630747254987,0.0231270524452784,0.981880090689926,0.999843076742056,-4.615477921141 +"Q9VA97",0.00784426455827614,18.5066312923482,0.0231141658100213,0.981890185363952,0.999843076742056,-4.61547793389629 +"Q59E04",0.0133080230256475,16.4210696961311,0.0231099348493858,0.981893499664128,0.999843076742056,-4.61547793808258 +"Q9VMS1",0.0162676493149334,22.350205002877,0.0231084777495344,0.981894641075511,0.999843076742056,-4.61547793952412 +"Q8I941",0.0129304749197381,18.9847311079186,0.0230082805117758,0.981973130145115,0.999843076742056,-4.61547803843323 +"Q7K3E2",0.0159902206991447,20.4202628986843,0.0228204295972777,0.982120282862742,0.999843076742056,-4.61547822271106 +"Q9VKJ4",-0.0206368830116332,15.1333148433952,-0.0226971822773228,0.982216828824346,0.999843076742056,-4.61547834279352 +"Q9VJ80",-0.010324695122133,16.5464950419322,-0.0226456665767015,0.98225718380688,0.999843076742056,-4.61547839279367 +"Q9VDC0",0.0193410278459361,17.5461701340865,0.0224756419142262,0.982390373506874,0.999843076742056,-4.61547855701015 +"Q9VLM9",0.0243423203188691,18.4114755797272,0.0224018447798668,0.982448183044424,0.999843076742056,-4.61547862790122 +"Q9VAV2",0.0107663715169082,17.7537188632418,0.0221713224626808,0.982628765085576,0.999843076742056,-4.61547884784435 +"Q9V406",-0.0165656486746748,16.9432838697905,-0.0221657817015127,0.982633105510361,0.999843076742056,-4.61547885310284 +"Q9VJ86",-0.0130271393552839,16.6273467903558,-0.0221437202407965,0.982650387638099,0.999843076742056,-4.61547887402735 +"Q9VXN4",0.0111508405308829,15.0786181379561,0.0219325492109734,0.982815811625078,0.999843076742056,-4.61547907326149 +"Q8SX68",0.0177751445858014,17.4906423067064,0.021824589691251,0.982900383648683,0.999843076742056,-4.61547917438099 +"Q9VQB4",-0.0116030238956206,21.7481682491538,-0.0216502863922803,0.983036927710733,0.999843076742056,-4.6154793365879 +"Q9VUK8",-0.0115742914687189,20.7548120930839,-0.0215023588836709,0.983152810190443,0.999843076742056,-4.61547947322927 +"Q9W1X5",0.0148677920023594,19.4663533646035,0.0213676462885487,0.983258340802036,0.999843076742056,-4.61547959684905 +"Q95U34",0.0132884603678782,19.4765059803081,0.0213666469814184,0.983259123636461,0.999843076742056,-4.61547959776317 +"Q9VLR3",-0.0175554484889702,16.7214193241174,-0.0211798917525737,0.983405423739159,0.999843076742056,-4.61547976784724 +"Q9VHI1",-0.00796470580797859,14.2795955783442,-0.0211501964215127,0.983428686491783,0.999843076742056,-4.61547979475418 +"Q7KUK9",-0.0183392717894471,18.4256087143572,-0.020972695302052,0.983567737789261,0.999843076742056,-4.61547995480078 +"Q9VLT7",0.00949488486716632,18.070779243066,0.0208291453144039,0.983680192765346,0.999843076742056,-4.61548008324843 +"Q9VI04",-0.0192408526129384,16.4353418058012,-0.0207529650017266,0.983739871462837,0.999843076742056,-4.61548015105585 +"Q9VUQ7",-0.0111315300945272,16.5336832851394,-0.0207338013987423,0.983754884004,0.999843076742056,-4.61548016807409 +"Q9Y0Y5",0.0105038960288688,18.6644350567048,0.0204753732565604,0.983957334193193,0.999843076742056,-4.6154803960359 +"Q9VDI3",0.0151468275203701,15.0361899110077,0.0203384406169156,0.984064606408763,0.999843076742056,-4.6154805156667 +"Q9W197",0.0107409002242065,17.3607960494033,0.0200640978188704,0.984279525887076,0.999843076742056,-4.61548075293057 +"Q9VQ91",-0.0142083210321893,14.8408652739704,-0.0199887336865351,0.984338566187252,0.999843076742056,-4.61548081754473 +"Q9VVK5",0.00726682595083794,15.8496795332106,0.0199266987642271,0.984387164448999,0.999843076742056,-4.61548087054854 +"Q9VXC1",0.0127284044497955,18.2771677601751,0.0198609667449692,0.984438659092969,0.999843076742056,-4.61548092653146 +"Q24298",-0.0134037240496525,19.3886718715081,-0.0195653703384797,0.984670231015325,0.999843076742056,-4.61548117600022 +"Q9VZZ5",0.0108858870802493,18.4122626036663,0.0191266303938257,0.985013945049101,0.999843076742056,-4.61548153937922 +"Q8SY67",0.020108175008609,15.9721912267247,0.0188524615686118,0.985228733706947,0.999843076742056,-4.61548176227147 +"Q9W306",0.00982087032734569,14.6922891182241,0.0188240513353612,0.985250990849461,0.999843076742056,-4.61548178518427 +"Q9VWF0",0.00665116160293167,16.4035686000281,0.018735843769687,0.985320094494309,0.999843076742056,-4.61548185610334 +"O18335",-0.00908036516737099,21.6235143071135,-0.0187212720210317,0.985331510317627,0.999843076742056,-4.615481867787 +"Q9VDK7",-0.00863750806759001,17.8667423316844,-0.0185904104053971,0.985434030289323,0.999843076742056,-4.61548197230478 +"Q9W1Y1",-0.00920656003944131,17.844955273838,-0.0184560943494709,0.985539256826409,0.999843076742056,-4.61548207881924 +"Q9VD58",-0.0103311562412856,22.7109438305639,-0.0183903204930871,0.985590785802693,0.999843076742056,-4.61548213069711 +"Q9VYV3",0.0120475283466561,20.5445163171893,0.018390175730898,0.98559089921329,0.999843076742056,-4.61548213081109 +"Q7KUT2",0.00886142650658428,18.3045346924369,0.0183839843774583,0.985595749686558,0.999843076742056,-4.61548213568483 +"Q9VC48",-0.0121239079432911,18.4905674628739,-0.0182286956288585,0.985717407273554,0.999843076742056,-4.61548225738898 +"Q9VEC2",0.0125360121690115,16.6757657850179,0.0180882871216943,0.985827407577603,0.999843076742056,-4.61548236654241 +"Q9VKX2",-0.00770220016660161,23.0809133777286,-0.0180105628271597,0.985888299287896,0.999843076742056,-4.61548242660231 +"Q9VSY8",0.00744637917163615,17.9849461500567,0.0179475459604536,0.985937668793675,0.999843076742056,-4.61548247510751 +"Q9W2E8",0.0118485238048862,19.2862223783814,0.0176223067469822,0.986192472940151,0.999843076742056,-4.61548272274706 +"Q95SS8",0.0143081062166885,15.6713153471792,0.0176109896165417,0.986201339217243,0.999843076742056,-4.61548273128248 +"Q7KN94",0.00809583790077895,22.5787861230576,0.0174907377684241,0.986295549276394,0.999843076742056,-4.61548282163824 +"Q9W2J4",0.00582084809982319,15.2189810939095,0.017195683474016,0.986526707390621,0.999843076742056,-4.61548304071557 +"Q9U1L2",-0.00964289772836935,17.4912647622519,-0.0168744349109952,0.986778388641233,0.999843076742056,-4.61548327500435 +"Q9VWH4",0.00773387504235856,24.2940915450703,0.0167473703973114,0.986877937369602,0.999843076742056,-4.61548336645408 +"Q9VY24",0.00550424564220009,17.7791006589124,0.0166938644181533,0.98691985671184,0.999843076742056,-4.61548340475612 +"Q9VU75",-0.011125216239865,18.2777809781059,-0.0165347385072163,0.987044524390002,0.999843076742056,-4.61548351794155 +"Q9VNB9",-0.00912409519090573,19.1989917581993,-0.0165068952261746,0.987066338329347,0.999843076742056,-4.6154835376349 +"Q9VTC1",-0.0099788567290986,15.7881340359034,-0.0164547163140629,0.987107218153389,0.999843076742056,-4.61548357445129 +"Q9VZ20",-0.00745536611538,18.7150936851554,-0.0163804668202659,0.987165389347522,0.999843076742056,-4.61548362663932 +"O44434",0.0112159830111818,15.8255410402332,0.0162434289184809,0.987272752681012,0.999843076742056,-4.61548372233992 +"Q9W5R5",-0.00892441448534242,15.8319717558579,-0.0159952424379609,0.987467196821889,0.999843076742056,-4.61548389361485 +"Q86BI3",-0.00848788652903565,18.052515012112,-0.0154043315612325,0.987930155072287,0.999843076742056,-4.61548429079276 +"Q7JXC4",-0.00903670269649837,21.5529402881018,-0.0153976338545364,0.987935402520246,0.999843076742056,-4.61548429520892 +"Q9W253",-0.0123707014160903,15.3641987918036,-0.0153956070762723,0.987936990439024,0.999843076742056,-4.6154842965449 +"Q9V405",0.008084124977632,20.2399619753349,0.01528814183719,0.988021186242788,0.999843076742056,-4.61548436713056 +"Q9VCU6",-0.00568319361603464,15.4529404229771,-0.0150830793059689,0.988181847019495,0.999843076742056,-4.61548450044859 +"Q0E9B6",0.0113119947604794,19.2550303467842,0.0147517661512891,0.988441422763159,0.999843076742056,-4.61548471204257 +"Q9VQJ8",0.00684003263502042,15.172800681794,0.0144250635049414,0.988697387618917,0.999843076742056,-4.6154849160905 +"Q9VAS1",-0.00636053469604292,13.0819646297165,-0.0141378792558239,0.988922391686387,0.999843076742056,-4.61548509168283 +"Q2MGK7",0.00580187914142627,16.994237462901,0.0140756647638994,0.988971135832553,0.999843076742056,-4.61548512925718 +"Q9VN21",0.00830765687842927,22.0687965434936,0.0140010404560789,0.989029602948674,0.999843076742056,-4.61548517410784 +"Q9W127",0.00930808669265915,18.5509963277589,0.0139043534251424,0.989105356001495,0.999843076742056,-4.61548523186408 +"Q9VTV9",-0.00660988469176615,17.2405138829459,-0.0138308324119738,0.989162958848661,0.999843076742056,-4.61548527551418 +"Q9VHK6",-0.0079302486761712,18.0696073558766,-0.0138112951972977,0.989178266036637,0.999843076742056,-4.61548528707469 +"Q24185",0.00629210180088791,18.6497903159718,0.0134194613768263,0.989485264355183,0.999843076742056,-4.61548551547924 +"Q9VF51",0.00552864817946741,17.7170595199812,0.0134035599090923,0.98949772305083,0.999843076742056,-4.61548552460961 +"P13496",-0.0070457547220748,18.2456945227914,-0.0133629936889339,0.989529506431081,0.999843076742056,-4.61548554785305 +"Q9VX36",-0.00649602322100762,22.159496396198,-0.013361307190963,0.989530827792113,0.999843076742056,-4.61548554881785 +"Q8SY69",0.00723139369059922,18.906636493129,0.0133452133564428,0.989543437216417,0.999843076742056,-4.61548555801854 +"Q9VXE5",-0.00397440325525444,14.6400522820919,-0.0131255323683333,0.989715556262204,0.999843076742056,-4.61548568249935 +"O77134",0.00766560413579498,21.6265995507676,0.0128427799994622,0.989937092227466,0.999843076742056,-4.61548583967821 +"Q9VL70",-0.00694840764971616,23.5372322447068,-0.012718076013445,0.990034797848337,0.999843076742056,-4.61548590791212 +"Q9VRP2",-0.00581784527309992,20.4738119736112,-0.0125548701287863,0.990162669972386,0.999843076742056,-4.61548599620717 +"P08985",0.00760743578294409,20.6030895963145,0.0124799350076457,0.990221381878054,0.999843076742056,-4.6154860363654 +"B7YZN4",0.00905714129124569,15.3649181548769,0.012354322031111,0.990319800176461,0.999843076742056,-4.61548610314299 +"Q9W289",-0.00553692321730281,17.4197714299845,-0.0122590941202586,0.990394411756639,0.999843076742056,-4.61548615331729 +"Q9VSA3",-0.007193390368883,21.7970402529199,-0.0118499134112897,0.990715008096188,0.999843076742056,-4.61548636449111 +"Q8I725",0.0108201613097592,18.9706893698245,0.0117290781730056,0.990809683787788,0.999843076742056,-4.61548642548198 +"Q9VEV7",-0.0151300881284211,13.1889267144796,-0.0115350693183914,0.990961692084748,0.999843076742056,-4.61548652209928 +"Q9VA37",0.00733429692091647,21.6706975826309,0.0112358018467275,0.991196172501494,0.999843076742056,-4.61548666797591 +"Q8SZA8",-0.00614999852645326,17.9828920168121,-0.0112349303042108,0.991196855368978,0.999843076742056,-4.61548666839515 +"Q7K860",-0.00798772542779957,20.3979676877447,-0.0111348399912818,0.991275277775553,0.999843076742056,-4.61548671632437 +"Q9W0Q2",0.00457561668491557,15.4985920334083,0.0109982481746669,0.991382299861761,0.999843076742056,-4.61548678104067 +"P53501",0.00851842489300481,24.6115825334658,0.0109795939198235,0.991396915811339,0.999843076742056,-4.61548678981695 +"Q9V5C6",0.00570329664384062,20.6462743821618,0.0109155248758662,0.991447115102563,0.999843076742056,-4.61548681984607 +"Q9VWU1",0.00385658894919949,14.9259172702175,0.0106777337882412,0.991633429183438,0.999843076742056,-4.61548692976213 +"Q9VF77",0.00634582609074386,15.7182264813864,0.0104721997422673,0.991794469635162,0.999843076742056,-4.61548702281728 +"Q9VES8",0.0122535440221938,17.9690345860798,0.0103696062954991,0.991874853999779,0.999843076742056,-4.61548706858959 +"Q7JYZ9",-0.00826995710559686,18.1075390494458,-0.00992928944089272,0.992219853582066,0.999843076742056,-4.61548725992085 +"M9PDU4",-0.00709599673064787,22.4977903387755,-0.00976923535454628,0.992345260480599,0.999843076742056,-4.61548732741235 +"Q9VC53",0.00500239177268114,17.8293733527692,0.00960465218985471,0.992474216259247,0.999843076742056,-4.61548739566994 +"Q7PLI0",0.00518411657935758,17.7870190783502,0.0092716606819577,0.992735125621799,0.999843076742056,-4.6154875302248 +"Q9VN71",0.00499660504835475,18.6240987649115,0.00919687324622941,0.992793724059438,0.999843076742056,-4.61548755979201 +"Q7PL91",-0.00534370460765032,18.7613615831914,-0.00835903687147099,0.993450199534775,0.999843076742056,-4.61548787466279 +"Q9VN95",0.00453352812769126,17.962166751214,0.00823810436632808,0.993544954999121,0.999843076742056,-4.61548791762896 +"Q9VP78",0.00428277985801273,14.8805011437033,0.00821061686576459,0.993566492571593,0.999843076742056,-4.61548792730767 +"Q9VUJ1",-0.00491435878505087,20.0852389065681,-0.00811322739168955,0.993642801219631,0.999843076742056,-4.61548796133948 +"Q9VYV4",-0.0066315728888835,15.481700195651,-0.00796546269569667,0.993758581043759,0.999843076742056,-4.61548801219896 +"Q9VFQ9",-0.00339949837709597,19.3116298425396,-0.00785491513830497,0.993845199777758,0.999843076742056,-4.61548804963731 +"Q9VXA9",-0.00642965638944304,14.314973675899,-0.00749036609957574,0.994130840089216,0.999843076742056,-4.61548816938902 +"Q9VY05",-0.0049168998918887,18.4033828440513,-0.00716450731747615,0.994386165580943,0.999843076742056,-4.61548827161535 +"Q9V3R3",-0.00362469985843106,13.5826292973286,-0.00710594518299191,0.9944320518021,0.999843076742056,-4.61548828950517 +"Q9VD02",-0.00203243414023646,18.1446650613572,-0.00703946016634167,0.994484146003544,0.999843076742056,-4.61548830963734 +"Q9VQD7",-0.00359617778331867,20.9103850997388,-0.00693832356108976,0.994563391437794,0.999843076742056,-4.61548833989939 +"Q9VHX2",0.00364316444083634,14.7550962650342,0.00657645029144704,0.99484693717385,0.999843076742056,-4.61548844459224 +"Q9VIM0",0.00346807849819797,18.1032697160817,0.00641530389213047,0.99497320364163,0.999843076742056,-4.61548848940898 +"Q9VL89",-0.00260389682561168,16.8908878637043,-0.00639773260627898,0.994986971653714,0.999843076742056,-4.61548849422855 +"O97477",-0.00338915788129057,21.0025223092311,-0.00637217047011439,0.995007000913646,0.999843076742056,-4.61548850121629 +"Q9W0K9",-0.0023778269730208,14.1760079728767,-0.00627764058831912,0.995081070010837,0.999843076742056,-4.61548852681424 +"Q9VJ60",-0.00332665373790419,16.5032997882592,-0.0060671185687778,0.995246025171515,0.999843076742056,-4.61548858244723 +"M9PF61",0.00282017093552511,22.6394808053267,0.0060203659719197,0.995282658340135,0.999843076742056,-4.61548859454468 +"Q9VF27",0.00338927117921983,22.2033223148423,0.00567117418206948,0.995556269190774,0.999843076742056,-4.61548868194001 +"Q9VCT4",0.00389657872750071,13.5147154560514,0.00557034385387288,0.995635275372985,0.999843076742056,-4.61548870620436 +"Q9VUV6",0.00256935937433056,14.7962018027641,0.00546937940653744,0.995714386692703,0.999843076742056,-4.61548873006485 +"A0A0B4LFA6",0.0027090510960619,19.5719811254424,0.00543693579228098,0.995739808098123,0.999843076742056,-4.61548873763946 +"P53997",-0.00468701594796883,17.267659187173,-0.00542992207964878,0.995745303739004,0.999843076742056,-4.61548873927102 +"Q9VTB4",0.00307846507037368,20.5971791436348,0.00527568960927132,0.995866153666615,0.999843076742056,-4.61548877461701 +"Q9VK59",-0.00185240633736328,18.7831522048601,-0.00526789457259927,0.995872261524779,0.999843076742056,-4.61548877637639 +"Q9W4Y1",0.00417358682830482,17.5029135405679,0.00513437597772206,0.995976881040636,0.999843076742056,-4.6154888061083 +"Q9W3T7",0.00214808987475479,17.418682567947,0.00509563695303802,0.996007235314098,0.999843076742056,-4.61548881459185 +"Q9VIH1",0.00320639315766158,15.7866946057748,0.00471507832062607,0.996305425416451,0.999843076742056,-4.6154888945155 +"Q9Y156",0.00356979749174968,16.2565457072292,0.0047124445591008,0.996307489125781,0.999843076742056,-4.61548889504703 +"Q9VD14",-0.00126015537641067,17.6435612443799,-0.00462404570865522,0.996376754916294,0.999843076742056,-4.61548891271487 +"Q9VVC8",0.00239640960544563,16.5945931575942,0.00459961872705994,0.996395894923851,0.999843076742056,-4.61548891753798 +"M9NEW0",-0.00256653357297765,18.2718642087803,-0.00449454325157789,0.996478227897559,0.999843076742056,-4.61548893799382 +"Q9VRL0",0.00246302400904952,22.7050911228593,0.00440176030901839,0.996550928964877,0.999843076742056,-4.6154889556636 +"Q9GU68",-0.00235493611403825,22.2581460546082,-0.00423953517878059,0.996678042277416,0.999843076742056,-4.61548898567252 +"Q9VPQ2",-0.00394677581757819,16.463441226241,-0.00410606241737076,0.996782626420715,0.999843076742056,-4.61548900951786 +"Q7K738",0.00315734753985808,19.7244318356318,0.00409004235802461,0.996795179129757,0.999843076742056,-4.61548901232863 +"Q9VME1",-0.00126630167430974,16.4235793264164,-0.00407585199203386,0.996806298161432,0.999843076742056,-4.61548901480919 +"Q9VIT0",0.00435090155811224,16.4394937013211,0.00405769378340362,0.996820526244859,0.999843076742056,-4.61548901797079 +"Q9XZ19",0.00321953224044691,16.0466275937522,0.00394194579055006,0.99691122200722,0.999843076742056,-4.61548903779233 +"Q7JVK8",-0.00208815065005297,19.1334669813305,-0.00391348671257922,0.996933521474378,0.999843076742056,-4.61548904257802 +"Q9VYU9",-0.00249147452341347,17.8246472828938,-0.00362456895384294,0.997159906752033,0.999843076742056,-4.61548908919963 +"Q9VTZ6",-0.00144503239525662,17.0675368642175,-0.00358872272504187,0.997187994550226,0.999843076742056,-4.6154890947348 +"Q9W503",-0.00228132641488088,17.986152322616,-0.00355796534584887,0.997212094914459,0.999843076742056,-4.61548909944032 +"O76877",0.00348043718429025,17.3183497772682,0.00351621866984916,0.997244806096703,0.999843076742056,-4.61548910576229 +"Q7KTG2",-0.00162533063043924,18.1607224411744,-0.00322689330852501,0.997471511101713,0.999843076742056,-4.61548914752616 +"Q9VHR8",-0.0020630571827347,20.594638209893,-0.00317894265124456,0.99750908354421,0.999843076742056,-4.61548915410159 +"Q9VQR2",-0.00170396870454681,21.265093783237,-0.00311794253090563,0.99755688109421,0.999843076742056,-4.61548916232421 +"Q9VZS1",-0.00249204998775809,15.4595455384721,-0.00304141742640775,0.997616843489821,0.999843076742056,-4.61548917241427 +"P41093",0.00110050057034528,19.1467279740576,0.00280896677500927,0.997798983781095,0.999843076742056,-4.61548920152608 +"Q9VU35",0.00169715596254605,22.6493945584786,0.00280205595607646,0.997804398861809,0.999843076742056,-4.61548920235617 +"Q9W141",-0.0020178216768052,21.8367570965712,-0.00262045794229083,0.997946692877101,0.999843076742056,-4.61548922343594 +"Q9VJI7",-0.00100112279443465,17.3764185579276,-0.00251917220300218,0.998026056962766,0.999843076742056,-4.61548923457976 +"Q9VB81",-0.00167112518346713,21.017793274511,-0.00250024220955256,0.998040889868947,0.999843076742056,-4.6154892366138 +"Q9W4U2",0.00225859128463313,18.5290398359611,0.0024382511109419,0.998089464014069,0.999843076742056,-4.61548924316737 +"A1Z7G2",-0.00201548808082208,19.5779713674101,-0.00238970516864194,0.998127502991288,0.999843076742056,-4.61548924818467 +"Q9VVH5",-0.00138278536588743,22.4964242272748,-0.00237027124322435,0.99814273076679,0.999843076742056,-4.61548925016492 +"P35992",-0.000911979269663021,15.9165487467213,-0.00218300669939447,0.998289465052487,0.999843076742056,-4.61548926841791 +"Q9VCR9",-0.00110215860678053,19.2992502813786,-0.00189870972779392,0.998512230851541,0.999843076742056,-4.61548929325892 +"Q5U126",-0.000900523177545409,21.5869841651719,-0.00168662516166204,0.998678413458959,0.999843076742056,-4.61548930953663 +"Q9W396",-0.00155154892782861,16.6154608346126,-0.00167038980087127,0.998691134965368,0.999843076742056,-4.61548931070335 +"Q8IQB7",-0.00264756038838598,14.4966091229629,-0.00163436228826854,0.998719364966521,0.999843076742056,-4.61548931325211 +"Q9VM50",0.000888386233876659,13.5571241896827,0.00159378515673715,0.998751159905,0.999843076742056,-4.61548931605618 +"O46106",-0.00057346569385075,16.9505281388616,-0.00134618976233103,0.998945167758455,0.999843076742056,-4.6154893316388 +"Q8SX57",0.000533575941542352,17.9192122062186,0.00132805209153735,0.998959379861629,0.999843076742056,-4.61548933267714 +"Q9V9X4",0.000672462543764851,18.6610770939879,0.00113502430681775,0.999110630329098,0.999843076742056,-4.6154893428549 +"Q9V3N1",0.000593188889226326,18.3717707839947,0.00101817406351035,0.999202190501938,0.999843076742056,-4.61548934824092 +"Q9VLS4",-0.000415617248922473,20.5308286231138,-0.000668946778201677,0.999475834075253,0.999843076742056,-4.61548936085364 +"Q9VI53",0.000270367980466091,16.3563316432423,0.000485476080622234,0.999619596002749,0.999843076742056,-4.61548936538769 +"A1Z8D3",-0.000493499366758243,16.6866630877177,-0.000427156589295066,0.999665293343891,0.999843076742056,-4.61548936652706 +"Q9VN02",-0.000187926275881267,17.2026399805822,-0.000348578009594161,0.999726865079038,0.999843076742056,-4.61548936783194 +"Q9VWD0",0.000164782479640024,18.1298102585801,0.000291873229368209,0.999771297185256,0.999843076742056,-4.61548936860937 +"Q9VW57",-0.00012328303877851,16.6127472085243,-0.000200267310839562,0.999843076742056,0.999843076742056,-4.61548936957446 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_SFug_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_SFug_significant.csv new file mode 100644 index 0000000..c4e1d63 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SF1g_vs_SFug_significant.csv @@ -0,0 +1 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SFug_vs_Earth_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SFug_vs_Earth_results.csv new file mode 100644 index 0000000..c025ea3 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SFug_vs_Earth_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"P19334",-1.02046554310178,15.2730765209876,-3.18640761398288,0.00670043058783997,0.999896763353946,-4.49071486432228 +"Q9V3B6",-0.83242353189106,13.1968670391521,-2.70832057268727,0.0171529913870904,0.999896763353946,-4.51343015251766 +"Q7K148",0.665578619529214,16.828608977072,2.4239947787863,0.029706729580391,0.999896763353946,-4.5277135028271 +"Q9V3A8",0.688036884714656,15.5547024449285,2.27864375645651,0.0391435416824843,0.999896763353946,-4.53514802971081 +"Q9VFZ4",0.668024980805043,16.4946847755605,2.24107260604533,0.0420084944821591,0.999896763353946,-4.53707751898367 +"Q9VG81",0.819544286126302,15.6615020835819,2.0378804451312,0.0612090573675576,0.999896763353946,-4.54751991000293 +"Q9W1R0",0.773187535478591,14.0734059385537,2.01137746612385,0.0642398662929068,0.999896763353946,-4.54887830000372 +"Q9VC06",0.861311545357719,16.3836066963437,1.99428395546412,0.0662669834423398,0.999896763353946,-4.54975342098629 +"P10676",-1.06222841949457,19.7094940821678,-1.90784096938016,0.0774410116972429,0.999896763353946,-4.55416331903457 +"P05031",0.600836507257874,13.5767994139783,1.86883550222993,0.0830208879483954,0.999896763353946,-4.55614233904058 +"Q9VHB8",0.515261203255756,15.4855106815594,1.85639979785298,0.0848745113868909,0.999896763353946,-4.55677157268758 +"Q9VN13",0.710376988671158,17.0180794147003,1.83403516500591,0.0883018264080212,0.999896763353946,-4.5579009115709 +"O17444",0.784590846022143,15.3876834242501,1.82740476976636,0.0893414715086588,0.999896763353946,-4.55823513100563 +"Q9VLB7",0.814590382361004,21.0791828750061,1.81725622674405,0.0909539689686352,0.999896763353946,-4.55874614114105 +"Q8IN43",-1.11392451857727,17.9733984879883,-1.75887428132898,0.100744181828727,0.999896763353946,-4.5616718625821 +"Q9VW54",0.560651678722614,15.8118021696516,1.75386103010421,0.101626918007105,0.999896763353946,-4.56192189748799 +"Q9VXZ8",0.600293034583544,17.9019418010034,1.74764898975575,0.102730221258553,0.999896763353946,-4.56223144131135 +"Q6IGM9",-0.665461922380437,14.8174208441999,-1.74573230375417,0.103072768378459,0.999896763353946,-4.56232688568675 +"Q7JYX5",0.793371589126803,14.9267010936988,1.71308037902502,0.109065032320515,0.999896763353946,-4.56394807143156 +"A1Z803",0.62962900555803,18.7875165107467,1.70195436362988,0.111175715878562,0.999896763353946,-4.56449834245702 +"Q9VPE2",0.449053627262675,20.8143570054331,1.6924633712657,0.113004443258795,0.999896763353946,-4.56496684831426 +"Q9VXP3",0.652701908406097,14.5121579002444,1.66859682009644,0.117719790467845,0.999896763353946,-4.56614117932839 +"Q9VXQ0",0.532641285538661,14.9126197120224,1.65302267397252,0.120888494972855,0.999896763353946,-4.56690444301024 +"Q9VAJ9",0.869971970779755,17.6603525856979,1.64592793605551,0.12235640242155,0.999896763353946,-4.56725131749198 +"Q7K4T8",0.653598197948865,13.6913233680706,1.63652280208742,0.124326164409521,0.999896763353946,-4.56771033371713 +"Q9VFN7",-0.588266316630882,18.6432717821932,-1.62883471720121,0.125956671538557,0.999896763353946,-4.56808484462019 +"A8DYP0",-0.580146686000122,15.2845974395829,-1.62041128875481,0.127764342213518,0.999896763353946,-4.56849443464434 +"P45437",0.55850861028784,16.0136600485525,1.6146314472497,0.129017626312574,0.999896763353946,-4.56877502414345 +"Q9VNW6",0.886768112530579,21.564159826657,1.61265559240982,0.129448491778573,0.999896763353946,-4.56887085835854 +"Q8SXF0",0.521309132596532,16.3341251347788,1.60232817736108,0.131720790817494,0.999896763353946,-4.56937104250034 +"Q9VC18",0.840900893783122,18.2100580023051,1.57747228752645,0.137330863464374,0.999896763353946,-4.57056977278915 +"A1ZA22",0.667856748774154,13.512010914393,1.56793425125458,0.139537378883947,0.999896763353946,-4.57102779086524 +"Q9Y119",-0.735322922691765,17.7195433413239,-1.5498969340739,0.143793010498244,0.999896763353946,-4.57189084558292 +"P41093",0.622296737158742,18.835029355193,1.5107901026281,0.153400245555228,0.999896763353946,-4.57374750008769 +"Q9W370",0.42679146436182,18.2421032461937,1.4774058473223,0.162025570581412,0.999896763353946,-4.57531581389877 +"Q9VKC8",0.447678020130937,17.7959947116844,1.44992497509245,0.169427578194936,0.999896763353946,-4.57659459207751 +"Q9VNZ3",0.883797303968693,15.3491691268023,1.4316971589339,0.174491111009706,0.999896763353946,-4.57743643492174 +"Q9VED8",0.573661669605334,16.2710401187074,1.42067105736221,0.177614577431774,0.999896763353946,-4.57794313046067 +"Q9V3N7",0.605663705165867,20.5385384549374,1.40755474506116,0.181390246189304,0.999896763353946,-4.57854332956013 +"A1Z992",-0.509268039550678,14.2200372849405,-1.39813793858997,0.184141598638628,0.999896763353946,-4.57897250078995 +"Q9VF86",0.470456506848713,17.632686977658,1.37768324757649,0.190236238995575,0.999896763353946,-4.57989960250092 +"Q9VAY9",0.5540013582134,14.5106593753941,1.37326998292992,0.191572641426771,0.999896763353946,-4.58009869609644 +"Q8SZN1",-0.609020650279735,20.1626511352097,-1.36020524277508,0.195573860656299,0.999896763353946,-4.58068609480594 +"Q95RQ8",0.746031080256918,14.4383632307286,1.35261194701777,0.197930507512384,0.999896763353946,-4.5810261134735 +"Q9VNW0",-0.527409600156286,14.698542230532,-1.34848534456962,0.199220886653221,0.999896763353946,-4.58121046694527 +"A1Z9B5",-0.467683337404853,15.8380991709903,-1.34337873253332,0.200827159556736,0.999896763353946,-4.58143817829189 +"P50887",0.660040556929665,17.682586602018,1.33452996025207,0.203635367355581,0.999896763353946,-4.58183163933944 +"Q8MSI2",-0.761746348228659,24.0545359721853,-1.33342694153194,0.203987633002234,0.999896763353946,-4.58188058495275 +"Q9W299",0.779784425939949,14.7567095230134,1.31981034356867,0.208376988080753,0.999896763353946,-4.58248296169626 +"P82890",-0.454651506600705,19.6627560304689,-1.31778121286037,0.209037554461615,0.999896763353946,-4.582572431983 +"Q9VZU7",0.551207876873779,17.5103451390685,1.3154686992137,0.209792427970878,0.999896763353946,-4.58267430329395 +"A1Z8Y3",-0.352786641689461,15.0221821846939,-1.31250150107549,0.210764220487561,0.999896763353946,-4.58280486748394 +"Q7K511",0.733084391750879,16.74716901557,1.31162485568577,0.211052023721821,0.999896763353946,-4.58284341029051 +"Q9V4E7",1.30292940665369,15.7149598382524,1.3098212538234,0.211645140582747,0.999896763353946,-4.58292266215718 +"Q23970",-0.461688407169788,21.4113432635012,-1.30927840545691,0.211823918884417,0.999896763353946,-4.58294650332711 +"Q8IN49",0.504142342313795,16.8480441019707,1.30762118031293,0.21237044940449,0.999896763353946,-4.58301925181583 +"P22979",0.408657434018696,19.3699440534799,1.3046917876013,0.213339291702267,0.999896763353946,-4.58314771778189 +"A1ZBU5",-0.412583764370467,16.6989775889379,-1.30005462208097,0.214880191234507,0.999896763353946,-4.58335074137419 +"Q9VNB9",0.743410430435549,18.831848590577,1.29837974172192,0.215438929626244,0.999896763353946,-4.58342396925993 +"Q9VLC5",0.701507924379616,21.7692412956303,1.29415010553676,0.216855109197744,0.999896763353946,-4.58360865351714 +"Q9VXC9",0.610837544545557,18.983599107953,1.28068440770731,0.22141333326249,0.999896763353946,-4.58419430681639 +"Q9VA42",-0.755475941357517,20.3322919174719,-1.27349232734808,0.223878983520116,0.999896763353946,-4.58450564534864 +"Q9VY91",-0.410897397633029,16.9845300565398,-1.26293490577732,0.227537824648248,0.999896763353946,-4.58496079800014 +"P54185",-0.373529236940509,17.3413432621353,-1.2528935968688,0.23106158987302,0.999896763353946,-4.5853916125055 +"Q9VH72",-0.496605713557624,18.7323471261714,-1.25254788211673,0.231183673833764,0.999896763353946,-4.58540640855735 +"A1Z9A8",0.52267408493972,16.6312088986939,1.24879597667042,0.232511879775887,0.999896763353946,-4.58556682674108 +"A1Z7X8",0.337571128192494,17.007407514024,1.23092282582437,0.238921850330248,0.999896763353946,-4.58632702221153 +"Q7K1S1",0.497128384407588,16.5686948615256,1.22329726365143,0.241698498822463,0.999896763353946,-4.58664932311961 +"Q9NBD7",0.396081542735192,13.3030679237965,1.21778484002252,0.243721374096441,0.999896763353946,-4.58688154235687 +"Q9VND8",0.551626916646033,18.6038622077868,1.21277788511971,0.245570192122305,0.999896763353946,-4.58709190518713 +"Q9VI75",-0.398074941871567,17.441755620619,-1.2105840223729,0.24638371252433,0.999896763353946,-4.58718390873853 +"P23779",-0.470902804573214,20.984009434458,-1.20567633572749,0.248211160789578,0.999896763353946,-4.58738934516702 +"Q7K204",-0.5540361919176,14.8815565836225,-1.20516213535963,0.248403239260029,0.999896763353946,-4.58741083947991 +"Q9Y143",-0.319097896471099,20.969590822142,-1.19230482655888,0.253243697915843,0.999896763353946,-4.58794641832805 +"Q9W2E7",0.37425437252001,18.4701927689069,1.18988450509845,0.254163004960532,0.999896763353946,-4.58804683240834 +"Q8SZK5",-0.880361957186855,15.38706301649,-1.1887791961049,0.254583690368701,0.999896763353946,-4.58809264631794 +"A8JTM7",0.459425213061792,17.6058621948845,1.18482194703174,0.256094250443503,0.999896763353946,-4.58825644820237 +"Q9VGZ3",-0.372253472727518,16.7664689786546,-1.1759585630912,0.259502669210437,0.999896763353946,-4.58862206306259 +"Q9W4C2",-0.375078485700673,15.8559679929059,-1.17207769877191,0.261006005799489,0.999896763353946,-4.58878159419818 +"Q961Q8",0.432334315373398,15.4807380893728,1.17166579018964,0.261165959675806,0.999896763353946,-4.58879850664073 +"Q24253",0.756144490100901,18.8785118802021,1.16448968069227,0.263964711279473,0.999896763353946,-4.58909253207232 +"Q9VA09",0.717891126775829,16.3754738181992,1.15732091700523,0.266783494357287,0.999896763353946,-4.58938508562111 +"Q9VSL9",0.536703905156083,14.683596430742,1.15696005578655,0.266925992508477,0.999896763353946,-4.5893997810687 +"Q9VME1",-0.371327970341568,16.6098764624243,-1.14904682783849,0.270065436225574,0.999896763353946,-4.58972127942865 +"Q7JUS9",0.711004592010102,20.537771745897,1.14566284953917,0.27141653616798,0.999896763353946,-4.58985832131772 +"Q9VZI8",0.42065940842998,15.7445153670247,1.14322964038872,0.272391204367815,0.999896763353946,-4.58995669505304 +"Q9VWV6",-0.552855854456649,23.6999618259412,-1.11797349080994,0.282665583127286,0.999896763353946,-4.59096956479585 +"Q9W3K9",0.346815441679922,19.3599620827627,1.11716224516008,0.283000384701898,0.999896763353946,-4.59100184749893 +"Q7KY04",0.317473047979183,14.0764434415011,1.11494122967514,0.283918527013982,0.999896763353946,-4.59109014967986 +"Q9V784",-0.579713391385583,14.2027932440259,-1.11114476782432,0.285493127646619,0.999896763353946,-4.59124081270565 +"Q9W5W7",0.331453081626757,14.8810255339074,1.09970194159061,0.290278765227092,0.999896763353946,-4.59169280966131 +"O97125",0.662541786334245,18.4676698327401,1.09811843059248,0.29094572520051,0.999896763353946,-4.59175510764006 +"Q9VV31",-1.30560764476998,15.7123156107349,-1.09534557763479,0.29211638273068,0.999896763353946,-4.59186404825237 +"Q9VDD1",-0.396368651102014,14.3372789099959,-1.09407736926406,0.292652972320188,0.999896763353946,-4.59191381102563 +"Q9VMT5",0.33534705118895,16.4770167758862,1.08199553020709,0.297801807537451,0.999896763353946,-4.59238589361351 +"Q9VMI3",0.378702982719833,20.204579091252,1.08173430808063,0.297913869599784,0.999896763353946,-4.59239606052032 +"Q9W1L1",0.375375484280919,14.7999841704574,1.07463725938173,0.300970431602556,0.999896763353946,-4.59267162897242 +"Q27377",-0.422820358633789,19.9948450259028,-1.07395086817445,0.30126727447215,0.999896763353946,-4.59269821363902 +"Q9W483",0.319819423647045,15.5345655628496,1.07244315020217,0.301920076325381,0.999896763353946,-4.59275656758746 +"Q9W3E2",-0.544142213058358,17.7562928421416,-1.07059505677524,0.302721678319874,0.999896763353946,-4.59282801718753 +"Q9VFQ9",0.448707242009664,19.0889759707233,1.06941658710263,0.303233654885176,0.999896763353946,-4.59287353333072 +"Q9VM10",0.500079807440496,17.1192967560435,1.06562189649941,0.304886572794407,0.999896763353946,-4.59301985754425 +"Q9V419",0.408996286435908,16.4965512146301,1.05930707395739,0.30765194184444,0.999896763353946,-4.59326254885057 +"O16797",0.502613650816553,16.5525710859797,1.05636420207546,0.308946962372059,0.999896763353946,-4.59337530219482 +"Q94523",0.588152281167012,20.3945432060371,1.05612917150627,0.309050560833656,0.999896763353946,-4.59338429762099 +"Q8MZI3",0.549297668779911,17.7679037356023,1.04291253770313,0.314917392598134,0.999896763353946,-4.59388785851556 +"A0A0B7P9G0",0.759275092592084,14.659817896056,1.03842830608664,0.316926310916829,0.999896763353946,-4.59405768387816 +"Q9W3J5",0.639137617105982,16.0545409045738,1.03331374269506,0.319229001583215,0.999896763353946,-4.59425074139877 +"Q5U1B0",-0.347451468125268,14.6916270418667,-1.0321933113539,0.319735066209465,0.999896763353946,-4.59429294257534 +"Q7K485",0.475719983612443,20.5141273347905,1.03042950529879,0.320532904920243,0.999896763353946,-4.59435930985457 +"Q8SXD5",-0.567410558158699,20.7936229197279,-1.02854260703444,0.321388023233327,0.999896763353946,-4.5944302183315 +"Q9V396",0.411437744347324,20.879264764651,1.02693672962454,0.322117089840955,0.999896763353946,-4.59449049245797 +"Q9VJE3",-0.400696268742943,15.3276826288168,-1.02367518076038,0.323601520070791,0.999896763353946,-4.59461270043058 +"Q7K569",0.647037923071398,20.5586605327605,1.021421799523,0.324629992754003,0.999896763353946,-4.59469696890453 +"P40301",0.28697245476663,17.8163575200392,1.01834262308843,0.326039189964762,0.999896763353946,-4.59481190169337 +"Q9W309",-0.560497296245718,18.3949158035826,-1.0101229771524,0.329822570733615,0.999896763353946,-4.59511747117315 +"Q9VBP9",0.517979767166283,13.9658193400898,1.01003897330065,0.32986139899656,0.999896763353946,-4.59512058474499 +"Q9VK00",0.679543789561958,17.8481928166995,1.00949216255604,0.330114226289968,0.999896763353946,-4.59514084746534 +"A1Z8H6",-0.578247457091027,16.8181635547737,-0.999567611429506,0.334727252340553,0.999896763353946,-4.5955072173007 +"O76902",0.381074588025943,17.3595977949114,0.98460091060467,0.341770913751958,0.999896763353946,-4.59605467559281 +"Q9V521",-0.722962615495021,17.7263101957716,-0.981905558453956,0.343050535736801,0.999896763353946,-4.59615261708294 +"Q8SX89",-0.387290657472574,15.4983298505622,-0.981341503421365,0.34331875170249,0.999896763353946,-4.59617308799801 +"Q7K5M0",-0.357040319576853,16.6938410729552,-0.970564313337499,0.348472060949571,0.999896763353946,-4.59656253208684 +"P54385",0.548718986545094,21.4839687458882,0.970131992464496,0.34867991761575,0.999896763353946,-4.59657808732545 +"Q9VLR5",-0.465003244316215,16.9294892035686,-0.969926914269359,0.348778548302673,0.999896763353946,-4.59658546438124 +"Q0E8E8",0.572028141560423,21.737234242923,0.966050488324176,0.350646589534814,0.999896763353946,-4.59672468675871 +"Q9W1F2",0.373494497612858,13.6662068454943,0.962311850197051,0.352454900570061,0.999896763353946,-4.59685856349082 +"Q9VB22",-0.365847204306956,17.2544758088121,-0.962217204774288,0.352500763839115,0.999896763353946,-4.59686194757418 +"Q9XYZ5",0.336519547062684,16.0299220336324,0.961060473776078,0.353061631611877,0.999896763353946,-4.59690328667392 +"Q24276",-0.547336177520485,18.7145023724167,-0.960819933016727,0.353178342120364,0.999896763353946,-4.59691187838139 +"Q7K2E1",0.414843527343514,17.3590477558017,0.955145754546736,0.355939322064323,0.999896763353946,-4.59711407945236 +"Q9VQE0",0.549085874673352,17.2622245429953,0.946313872560203,0.360266830673618,0.999896763353946,-4.59742700057933 +"Q01637",0.485075439620372,15.9273595432334,0.944842188397317,0.360991492230808,0.999896763353946,-4.5974789288828 +"Q9VR79",0.339156062991272,20.1361496749213,0.94396463525426,0.361424085353909,0.999896763353946,-4.5975098640136 +"Q9VB46",0.396343096592275,15.2514540147666,0.94041648889667,0.363176839690095,0.999896763353946,-4.59763471828611 +"P54192",-0.385938646144062,24.2972686638622,-0.939768465072431,0.363497595640501,0.999896763353946,-4.59765748257616 +"Q9I7Q5",-0.374750749907623,20.77219857637,-0.939572435541129,0.363594664266885,0.999896763353946,-4.59766436649435 +"Q9U9Q4",0.48639871112902,17.9078327292421,0.938314239077836,0.364218118870751,0.999896763353946,-4.59770852412612 +"Q8T3L6",-0.352859926715507,17.3744160041113,-0.937653995094213,0.36454557638026,0.999896763353946,-4.59773167793467 +"P42281",-0.416957813328775,21.8638143349238,-0.936133876790689,0.365300278196892,0.999896763353946,-4.59778493889728 +"Q9VHC3",0.441742671876355,17.1407110719793,0.932351554577249,0.367182812542325,0.999896763353946,-4.5979171742224 +"Q9VKD3",0.4999236393658,18.6746524379746,0.930139975627593,0.368286666482416,0.999896763353946,-4.59799430381536 +"Q9VN86",0.378387139993059,15.4064328772357,0.916268740911196,0.375262456037116,0.999896763353946,-4.59847484662486 +"Q9V393",0.372705680046884,15.861809287001,0.896999148439476,0.385102746288205,0.999896763353946,-4.5991330912695 +"Q9VFS8",-0.342733959702048,17.2701073535087,-0.895825882635907,0.385707509564376,0.999896763353946,-4.59917281656549 +"Q9VTZ4",0.485339585691364,18.1463896215055,0.894972953576037,0.386147558952586,0.999896763353946,-4.59920167006678 +"Q9NHE5",0.264848816750959,15.7806137848226,0.891637021934525,0.387871928292303,0.999896763353946,-4.59931431309516 +"Q9VV46",-0.466017172177146,23.8606421778444,-0.891102175648815,0.388148879112207,0.999896763353946,-4.59933234228005 +"Q9W552",0.299727535124124,16.2500515890974,0.887670003929017,0.389929291261994,0.999896763353946,-4.59944783505716 +"Q9VZJ8",0.409086433357576,14.8485853008966,0.887064029330829,0.390244208350707,0.999896763353946,-4.59946818967506 +"Q9VU04",-0.375304071729019,16.6031801150492,-0.87547280192777,0.396301077420164,0.999896763353946,-4.59985542208669 +"Q8IRH5",-0.287572180355138,14.4123140805469,-0.87483879256564,0.396634183576182,0.999896763353946,-4.59987648628716 +"Q5U117",0.46266378407072,14.6481674477818,0.87082276406883,0.398748551479709,0.999896763353946,-4.60000963238642 +"Q7JWF1",0.439547781873934,20.4794097422952,0.867525670276701,0.400490042299923,0.999896763353946,-4.6001185787611 +"Q7JUN9",-0.413315061189312,13.3973841535477,-0.866578105340707,0.400991474932544,0.999896763353946,-4.60014982837667 +"Q9VJ68",-0.351088140840911,17.8060703427041,-0.865748110935784,0.401431035783812,0.999896763353946,-4.60017717827419 +"Q9NK57",-0.370410842630903,15.494648095279,-0.864959568610288,0.401848941555531,0.999896763353946,-4.60020314287741 +"Q9VCR2",0.297372883788514,15.5196688349656,0.862692624984172,0.403051974922775,0.999896763353946,-4.60027768207875 +"Q7JXZ2",0.539345138847821,17.4676856649053,0.859450473493196,0.404776701086327,0.999896763353946,-4.60038401522134 +"Q9VI09",-0.308569113344667,20.1575178399157,-0.856573527587375,0.406311251572212,0.999896763353946,-4.60047810221081 +"Q9I7K0",-0.483577179512279,16.2388067035861,-0.854679828280698,0.407323446980185,0.999896763353946,-4.60053989526339 +"Q9VG92",-0.288903689502071,16.4991472414224,-0.854481453947775,0.407429576080324,0.999896763353946,-4.60054636203959 +"Q9VW68",0.351820816761389,22.9265726730201,0.852887237644247,0.40828313775595,0.999896763353946,-4.60059828789501 +"Q95R98",0.410132406723335,16.3566395389599,0.851916198188164,0.408803623247632,0.999896763353946,-4.60062987782827 +"Q9VD02",-0.248834890006574,18.2700987234306,-0.851596509659848,0.408975075079573,0.999896763353946,-4.6006402716317 +"Q9W308",-0.597762160571264,17.1482275849802,-0.851360250011997,0.409101813819317,0.999896763353946,-4.60064795095634 +"Q7K1Z5",-0.521209839576619,15.9823533694555,-0.850885809037657,0.409356400623447,0.999896763353946,-4.6006633668919 +"Q9VGE7",-0.30948636144606,13.8450204443334,-0.850629370778697,0.40949404996474,0.999896763353946,-4.60067169642215 +"Q7KTA1",-0.274749415804621,17.1295852576316,-0.84740588745572,0.411226940851425,0.999896763353946,-4.60077622798796 +"Q9VH81",0.574116866818928,14.481187237746,0.844985845353892,0.412531090994103,0.999896763353946,-4.60085449523359 +"Q9VIE8",0.457393424264129,24.7787791147132,0.843883341840425,0.413126128001248,0.999896763353946,-4.6008900917223 +"Q9VJQ3",0.450210331341527,20.5274965930756,0.842707477347557,0.413761381474686,0.999896763353946,-4.60092801545727 +"Q27272",-0.33444238684115,15.6021802627574,-0.841354843919024,0.414492927747192,0.999896763353946,-4.60097158746091 +"Q7JRN6",-0.545520032585875,14.7424279930585,-0.836438938498427,0.417158756959431,0.999896763353946,-4.60112946510422 +"Q9W1H8",0.585664501461615,20.5577442943077,0.829296507041161,0.421051977213699,0.999896763353946,-4.60135751131351 +"Q8IQ70",0.287705873004779,18.0309499848255,0.82829754787742,0.42159837762687,0.999896763353946,-4.60138927970495 +"Q9VSS2",0.367051995745271,16.1558596004614,0.827236285666829,0.422179362152026,0.999896763353946,-4.60142299527275 +"P29327",0.282235810967912,19.481142521674,0.823395718279546,0.424286224858656,0.999896763353946,-4.60154471294304 +"Q9W425",-0.353361442707387,14.05302834484,-0.822303428647095,0.424886680593026,0.999896763353946,-4.60157924605552 +"Q9VA34",-0.30051029881383,14.3987562552137,-0.821081944835901,0.425558810587498,0.999896763353946,-4.60161781933996 +"Q9VGP7",0.368835492726758,15.9119983346076,0.818909198472255,0.426756083669008,0.999896763353946,-4.60168631673471 +"Q9VJQ6",0.381189958789674,14.4953821611852,0.817713929216538,0.427415656354985,0.999896763353946,-4.60172393515029 +"Q7JYW9",0.651452471682955,17.2082297076694,0.813630135187007,0.429674149375892,0.999896763353946,-4.60185212373662 +"Q9VKE2",-0.368290856598719,24.0459300039475,-0.812157783431174,0.43049030294917,0.999896763353946,-4.60189821114156 +"Q9VIB5",-0.475566728027067,14.3487386205483,-0.809951660281633,0.431715071180718,0.999896763353946,-4.60196713867219 +"Q9VLB1",0.336867296381619,16.7586880475341,0.808190242117502,0.432694563738754,0.999896763353946,-4.60202206131286 +"A1Z6L9",0.42317689549466,15.2128805331913,0.805079621973984,0.434427812236655,0.999896763353946,-4.60211881295966 +"Q9W1R3",-0.355342081737348,17.0211428380692,-0.804395934403463,0.434809362294617,0.999896763353946,-4.6021400369426 +"Q9W3W4",0.322971903562866,15.9500408651397,0.8035120817827,0.435302938451311,0.999896763353946,-4.60216745270039 +"Q9VH98",-0.293625711540098,17.0702290275465,-0.802900931637634,0.435644437507732,0.999896763353946,-4.6021863951099 +"P83967",-0.549410222678649,17.5617736774693,-0.802000072490361,0.436148133573369,0.999896763353946,-4.60221429528004 +"Q9VE50",-0.402572325007238,14.6335216585922,-0.797501730604575,0.438668864919833,0.999896763353946,-4.60235322460135 +"Q9VHR8",0.524861763115318,20.3332388569267,0.79694157844163,0.438983407410403,0.999896763353946,-4.60237047942555 +"P06002",0.703099419449483,17.2463032398988,0.796349855630945,0.439315834179705,0.999896763353946,-4.6023886958515 +"Q9VUY9",0.482887429018465,19.7332429394191,0.795377799449739,0.439862278959762,0.999896763353946,-4.60241859668443 +"Q9VSA9",-0.394658566382255,22.3612165689411,-0.79156943020575,0.442007341082587,0.999896763353946,-4.6025354521064 +"P21187",0.620905529959327,18.8653479843893,0.790774891768664,0.442455702437237,0.999896763353946,-4.6025597729631 +"Q9VNE9",0.509236117966559,18.695510857436,0.789403097765927,0.443230491969618,0.999896763353946,-4.60260171592101 +"A8JNG6",-0.733428438401798,15.7114531181878,-0.789232730692311,0.443326775470288,0.999896763353946,-4.60260692071751 +"Q9VKC7",0.27284100363058,13.71729161986,0.787244349328516,0.444451497787489,0.999896763353946,-4.60266759771138 +"Q7KV34",0.398409889692058,20.9712031227304,0.784176459600795,0.446190388235329,0.999896763353946,-4.60276096700726 +"Q9W3Y3",-0.482577044523619,18.1323159790602,-0.782833755790114,0.446952790598863,0.999896763353946,-4.60280173586955 +"Q24478",-0.386624343347052,17.383932797162,-0.781771545028252,0.447556509179993,0.999896763353946,-4.60283394680854 +"Q95RI2",-0.437078517044888,16.7551910613106,-0.781406785324784,0.447763942985182,0.999896763353946,-4.60284499953122 +"Q8IN44",-0.454274607506569,19.9526799255842,-0.781351530953047,0.447795370679973,0.999896763353946,-4.60284667343994 +"Q9W2L6",0.433625135119783,20.9501305306961,0.780520277751561,0.448268340742239,0.999896763353946,-4.6028718440055 +"Q9Y136",0.303629519501307,15.2453356554554,0.779652801703275,0.448762257240545,0.999896763353946,-4.6028980875779 +"Q9VGS3",0.336693504964554,19.3659122521005,0.777950311991741,0.449732604877848,0.999896763353946,-4.60294952183269 +"O01666",0.371951042810082,22.7594565068746,0.775532633800977,0.451112850184352,0.999896763353946,-4.60302240138453 +"P35381",0.381231344047119,25.6871452573115,0.775434541426034,0.451168907043401,0.999896763353946,-4.60302535432159 +"Q7K3N4",0.323081197032103,17.0664486065489,0.77517008657784,0.451320056913238,0.999896763353946,-4.60303331381777 +"A1ZBJ2",0.513050750151884,19.4480093374636,0.775039231341034,0.45139485934908,0.999896763353946,-4.60303725142648 +"Q9VVZ4",-0.407074232627444,15.7947052388473,-0.769232348816249,0.454722165616419,0.999896763353946,-4.60321142781073 +"Q7K3V6",0.482075888134471,16.2627624435139,0.768908901141788,0.454907949794741,0.999896763353946,-4.60322109728756 +"Q9VNX4",0.395893820575072,21.0704571451399,0.768520913592112,0.45513086753927,0.999896763353946,-4.60323269168567 +"Q9VVB4",-0.392710240963165,15.9818065694565,-0.766864798314799,0.456083155065937,0.999896763353946,-4.6032821268685 +"Q9VPN5",-0.431240780039978,21.2597316195653,-0.765434768626779,0.456906442057206,0.999896763353946,-4.603324741332 +"Q9W461",-0.458675375780476,16.2136948665308,-0.763677627039447,0.457919321821054,0.999896763353946,-4.60337701210936 +"Q9W4W8",0.302351264969495,17.4355556152766,0.760813702275613,0.459573190302679,0.999896763353946,-4.6034619904652 +"Q9VPL0",0.423491635601778,15.1122222559459,0.748118112922472,0.466949332469487,0.999896763353946,-4.60383544841939 +"Q9VFP1",0.455747061508763,15.7545845353601,0.748082304777199,0.4669702398305,0.999896763353946,-4.603836494248 +"Q9NJH0",0.300324812525862,21.165528854271,0.747083616481561,0.467553578136106,0.999896763353946,-4.60386564529607 +"A1Z843",0.361834528747448,17.6057773884125,0.746406269543763,0.467949474949149,0.999896763353946,-4.60388539782095 +"Q0E8V7",-0.321738492614646,19.7032608790556,-0.745775674261507,0.468318231790464,0.999896763353946,-4.60390377333976 +"Q9VLP0",-0.438582032892061,16.1555043695167,-0.745165781356193,0.46867505249922,0.999896763353946,-4.60392153306339 +"Q9VSN9",0.238909878327227,16.5024181720901,0.745004177343729,0.468769627713571,0.999896763353946,-4.60392623681212 +"O62602",0.296721733781949,14.6190590774705,0.745002201107222,0.468770784335435,0.999896763353946,-4.60392629432836 +"Q9VQQ0",-0.23239903880588,18.3304209205465,-0.743146080453386,0.46985788158095,0.999896763353946,-4.60398025755442 +"Q9W5B4",-0.43709564594171,18.6470192096055,-0.741027852298786,0.471100381091067,0.999896763353946,-4.60404170139876 +"Q9VSY6",0.281115865490467,17.663550833018,0.739257801097305,0.472140192866752,0.999896763353946,-4.60409293128234 +"Q8SWS3",-0.373762531835172,16.5248598142761,-0.737703804771974,0.473054241708972,0.999896763353946,-4.60413782206684 +"Q9VZU4",-0.229608836648865,21.4267791681239,-0.735847349660027,0.474147612557431,0.999896763353946,-4.6041913446565 +"Q9VXN2",-0.375230240013313,18.4971098614017,-0.733701640200169,0.475413263155741,0.999896763353946,-4.60425306344632 +"Q9VX69",-0.445344757763817,18.2017974902117,-0.728779719724372,0.478324239229684,0.999896763353946,-4.60439405562347 +"Q9W3N7",-0.470851907746642,17.2516479646195,-0.72849741495497,0.478491530858904,0.999896763353946,-4.60440211788074 +"P54622",0.401401969386374,17.9451174135033,0.725877927428893,0.480045512922265,0.999896763353946,-4.60447679965853 +"O77477",0.363674600670219,16.8249105072404,0.723184006093793,0.481646838808909,0.999896763353946,-4.60455336338703 +"P32392",0.3893464669619,17.5738647926503,0.721540128908615,0.482625581061875,0.999896763353946,-4.60459996407059 +"Q9VD09",-0.486013798365777,14.5456340137454,-0.720682182812062,0.483136867412156,0.999896763353946,-4.60462424904669 +"Q9VF24",0.283622267893136,16.1309800081282,0.720127270018329,0.483467737483652,0.999896763353946,-4.60463994318097 +"A1ZBA5",0.33970567309126,15.6143495916149,0.719692826082661,0.48372687268096,0.999896763353946,-4.60465222295724 +"P17336",0.351953060932285,20.5889882936181,0.719663293504703,0.483744491183271,0.999896763353946,-4.6046530574796 +"Q9VT23",0.46265804674805,18.2879611352909,0.719250597777218,0.483990737093844,0.999896763353946,-4.60466471623201 +"Q9VAD4",0.298986027666,13.3195946212322,0.718675920763055,0.484333759336384,0.999896763353946,-4.60468094143307 +"Q9VU68",0.470565659899201,19.4388250121947,0.716510535664436,0.485627583902398,0.999896763353946,-4.60474197800527 +"Q9VJI9",-0.413087210214389,17.6350136104346,-0.716421375581739,0.485680901883693,0.999896763353946,-4.60474448780454 +"Q9VSL5",0.286202272691128,17.5682904574253,0.713104394145101,0.487666967224264,0.999896763353946,-4.60483766786422 +"Q9VGA0",-0.409564143867787,19.3295819603271,-0.708581155887976,0.490383125930987,0.999896763353946,-4.60496413383624 +"Q9VIX1",-0.550796888876604,17.260360552921,-0.708306307106983,0.490548460886293,0.999896763353946,-4.60497179602746 +"Q9W3M7",0.26624582410123,16.0166096209844,0.707073962169668,0.491290185960107,0.999896763353946,-4.60500611962543 +"Q9W4W5",0.242060871145359,17.371055080369,0.70698291944451,0.491345009403881,0.999896763353946,-4.60500865332617 +"Q9VG42",-0.367986668596117,16.4471604161904,-0.700628245945625,0.495180633489618,0.999896763353946,-4.60518480613759 +"Q9VL69",0.236567903441291,16.0529782640677,0.699825739638567,0.495666281179573,0.999896763353946,-4.60520695396097 +"Q9VRL2",-0.686244064379004,11.9444424104172,-0.694967215248504,0.498612512720567,0.999896763353946,-4.60534057151041 +"Q7K5J8",-0.185588120002759,18.3078090777864,-0.691483832010763,0.500731209910009,0.999896763353946,-4.6054358733688 +"Q9VMR6",-0.426275564100099,18.8334896695247,-0.690323992305656,0.501437834817049,0.999896763353946,-4.60546751312392 +"Q9VJZ4",-0.249606943623863,21.3352948701554,-0.688033744249999,0.502834876598203,0.999896763353946,-4.60552985415995 +"Q9I7J0",-0.276712706381289,20.9906771004296,-0.686378340737898,0.503846088439201,0.999896763353946,-4.60557480238281 +"Q8SYQ8",-0.310434574745573,16.02219485514,-0.685410163227344,0.504438057350981,0.999896763353946,-4.60560104707075 +"Q27268",0.306852372055634,19.0340772058048,0.684986014655261,0.504697521221398,0.999896763353946,-4.60561253443576 +"Q0KIE7",0.630914072188276,14.1196381458357,0.684703758794937,0.504870228578497,0.999896763353946,-4.60562017543847 +"Q4QQ70",-0.18851015546862,16.1263941858416,-0.68467762549574,0.504886220832352,0.999896763353946,-4.60562088275929 +"Q95TN1",0.363894173276641,14.0419796930152,0.68438070354434,0.505067942851607,0.999896763353946,-4.6056289175626 +"Q8MR62",-0.264923869115936,17.6719210883795,-0.68366622761505,0.505505373018252,0.999896763353946,-4.60564823906605 +"Q9VAY3",0.318412369322765,13.9808073984718,0.682555717644889,0.50618571080291,0.999896763353946,-4.60567823556276 +"Q9VPX0",0.373291697596439,14.3817251458285,0.681749795669444,0.506679782348947,0.999896763353946,-4.60569997806884 +"Q9VVN2",0.323209331024847,14.8793591344742,0.681060338720131,0.50710267846088,0.999896763353946,-4.60571856075024 +"A1Z7B8",0.453332217922785,16.9896802323546,0.680657177898349,0.507350062993247,0.999896763353946,-4.60572941939643 +"O76742",0.380940291480133,18.0312242183932,0.679616482714119,0.507988972199208,0.999896763353946,-4.60575742331839 +"M9PEG1",-0.285429495187945,20.3938645114464,-0.679318438428989,0.508172035581857,0.999896763353946,-4.605765436461 +"Q8SXQ1",0.49644565554901,18.6079920917571,0.677885303365914,0.509052826239246,0.999896763353946,-4.60580392450114 +"Q9VD29",-0.194318054351367,20.7343907298071,-0.677161706365864,0.50949787944807,0.999896763353946,-4.60582333032822 +"Q9VZD9",0.488771420903719,14.4780193754072,0.676564337942562,0.509865465537563,0.999896763353946,-4.60583933723984 +"O62619",0.324388577844335,22.2690379264126,0.675230840333689,0.510686579470275,0.999896763353946,-4.6058750247024 +"Q9VZW7",-0.251289096596897,13.8697409075358,-0.671568174858793,0.512945850011178,0.999896763353946,-4.60597272905318 +"Q9V3Y7",-0.47975706381532,19.5490173916781,-0.670468645604903,0.513625209659727,0.999896763353946,-4.60600196900472 +"Q9VZ19",-0.415606796319366,20.1943976301587,-0.665601379405328,0.516638763405435,0.999896763353946,-4.60613090030091 +"Q7JX94",0.32978606596855,12.1922232410819,0.660939417978765,0.519534731637051,0.999896763353946,-4.60625361958955 +"Q9VZG1",-0.276948482443618,17.8075359182889,-0.658667401319997,0.520949457192563,0.999896763353946,-4.60631315212348 +"P29613",-0.388251559438565,23.8922040676639,-0.657838401933144,0.521466202272115,0.999896763353946,-4.60633482904942 +"Q9VWW2",-0.350915569127467,15.1202617220001,-0.655896657570878,0.522677708280921,0.999896763353946,-4.60638550823016 +"Q9VBC7",0.541127349488585,16.1411389916009,0.654166973914727,0.523758256364741,0.999896763353946,-4.60643054145322 +"Q9VD64",-0.379797429798758,15.6393227169485,-0.653451355449663,0.524205681556473,0.999896763353946,-4.60644914228505 +"Q9VAC1",0.285033994167399,23.3040266422312,0.652564852516067,0.52476025050017,0.999896763353946,-4.60647215995013 +"Q7K2W6",-0.221079705964456,16.8380654955842,-0.652279198508017,0.524939017987661,0.999896763353946,-4.60647957095828 +"Q9VF15",-0.277340522695116,20.8456012489903,-0.650420322206967,0.526103182927547,0.999896763353946,-4.60652772766685 +"P18432",-0.396741265739323,23.6955020345788,-0.649532235475016,0.52665988557457,0.999896763353946,-4.60655069190541 +"Q9U4G1",0.322773564758656,19.3958635657509,0.648230452905839,0.527476520077169,0.999896763353946,-4.60658430342101 +"Q9XTL2",-0.235068410825743,16.9202986918514,-0.647665201449891,0.527831337201319,0.999896763353946,-4.6065988794305 +"Q9VH64",-0.494076220169706,17.5711367160069,-0.647547164504232,0.52790544789609,0.999896763353946,-4.60660192180303 +"Q9VSY0",-0.302813581042596,22.682084907208,-0.646927967133806,0.528294313831305,0.999896763353946,-4.60661787342535 +"P15425",0.223175862354374,17.0850927663226,0.643613192055695,0.530378802022478,0.999896763353946,-4.6067030382359 +"Q9VWP2",-0.4132668214692,19.6757418092823,-0.639732236079345,0.53282522162392,0.999896763353946,-4.60680225705439 +"Q9VCK6",0.405782359578183,16.5166414638947,0.637471465969141,0.534253253558339,0.999896763353946,-4.60685980955915 +"Q9VU70",-0.339304054185906,14.8059134467691,-0.63614995387395,0.535088990255807,0.999896763353946,-4.60689336757043 +"Q9VSC3",0.329361310570061,17.5222841462521,0.634738309458432,0.535982536445667,0.999896763353946,-4.60692914603434 +"Q9VDC6",0.291215540944801,16.937969038029,0.632674530635005,0.537290374186189,0.999896763353946,-4.6069813258499 +"P36975",-0.301452210157368,22.2372431115329,-0.63174619759443,0.537879249252698,0.999896763353946,-4.60700474819546 +"Q9VBT2",0.714501584398663,12.8900577220959,0.631289654670031,0.538168982969002,0.999896763353946,-4.60701625579614 +"Q9VAM6",-0.3004018651779,22.128631463793,-0.630991615415657,0.538358173205048,0.999896763353946,-4.60702376416647 +"Q7K0E6",0.254950455986386,16.7261968780704,0.628893891974319,0.539690821009081,0.999896763353946,-4.60707652188275 +"Q9W253",0.514689251093907,15.1130395169647,0.62831902322235,0.540056345631456,0.999896763353946,-4.60709095251015 +"Q9VV36",-0.556198564578295,23.1814180507471,-0.624255778977879,0.542643841307658,0.999896763353946,-4.60719261453276 +"A0A126GUP6",-0.331472928847276,16.9968737456749,-0.620704121433214,0.544911171011105,0.999896763353946,-4.60728099456308 +"Q9VPX6",0.334822989343326,21.4621553963967,0.619155994881553,0.545901108715019,0.999896763353946,-4.60731937741787 +"P14318",-0.393555797243792,22.1056439605307,-0.618890936637994,0.546070697547286,0.999896763353946,-4.60732594044282 +"Q7K3Z3",-0.199778321377842,19.9061464163032,-0.618236417436959,0.546489594558515,0.999896763353946,-4.60734213602678 +"Q9VK39",-0.369278894071545,18.1660084981445,-0.617637527754058,0.546873043289575,0.999896763353946,-4.60735694167326 +"Q7K5K3",0.3197564623812,22.7969727208464,0.615504891691263,0.5482396995079,0.999896763353946,-4.60740956006827 +"P46415",0.391581563534654,18.0968893840846,0.614819941420562,0.548679033614812,0.999896763353946,-4.60742642524019 +"Q9W314",-0.355475007668066,16.2124549862021,-0.614513126197855,0.54887589068743,0.999896763353946,-4.60743397433817 +"A1Z847",-0.291619421326345,20.1326773785427,-0.613538094241626,0.549501742440592,0.999896763353946,-4.60745794230754 +"Q9VZF9",-0.243719069873578,19.1089794764666,-0.613191381945501,0.549724383756864,0.999896763353946,-4.60746645687749 +"Q9VII1",-0.343409129473542,19.3181926058491,-0.610347043598605,0.551552740190159,0.999896763353946,-4.60753614534631 +"A1Z968",-0.250072485482423,17.1627640152448,-0.608969705405532,0.552439293573895,0.999896763353946,-4.60756978676219 +"Q2MGK7",-0.261053092308668,17.1218630694846,-0.608331312009912,0.552850472805588,0.999896763353946,-4.60758535635856 +"Q7JWU9",-0.347323765596142,15.5154709123568,-0.607697602344658,0.553258800305275,0.999896763353946,-4.60760079722787 +"P91927",-0.431509120876768,19.3059788335788,-0.607605044726827,0.553318453072771,0.999896763353946,-4.60760305126299 +"Q9W2N0",0.542470712111857,16.2793021701122,0.604386131731194,0.555395199002872,0.999896763353946,-4.60768124886882 +"Q9VPC1",-0.268217151119567,16.107080994691,-0.603850346746962,0.555741281925168,0.999896763353946,-4.60769422854996 +"Q9VDH3",0.238474959797692,20.5601536154755,0.60283107631665,0.556399988595216,0.999896763353946,-4.60771889235371 +"O02195",0.333860268917107,18.6512143706461,0.602597814867559,0.556550794032166,0.999896763353946,-4.60772453143064 +"Q9VW73",0.284805380261449,14.2298133172702,0.602351560406135,0.556710023595729,0.999896763353946,-4.60773048248264 +"Q9VPU4",-0.370093992417546,12.9481326621749,-0.602076768632254,0.556887734690689,0.999896763353946,-4.60773712059206 +"Q9VZF6",0.551316518553071,14.9998471495332,0.601039500967342,0.557558824818931,0.999896763353946,-4.60776215317435 +"Q9VY87",0.376776984680909,17.650740207139,0.600713830538266,0.557769616907408,0.999896763353946,-4.60777000463011 +"Q9V3G7",0.216491990795799,18.0832213023582,0.597677991700196,0.559736653247091,0.999896763353946,-4.60784301008506 +"Q9W260",0.262923708272542,17.3936169473681,0.597550382383008,0.559819418083227,0.999896763353946,-4.60784607152041 +"P41375",-0.292185978305671,16.7079059293417,-0.597373627609817,0.559934068572189,0.999896763353946,-4.60785031101609 +"Q9V3E7",-0.168876514986842,18.7311925568701,-0.597126979323263,0.560094076050188,0.999896763353946,-4.60785622503157 +"Q500Y7",-0.218702672354365,20.093010570554,-0.595698548212956,0.56102122267286,0.999896763353946,-4.60789043198115 +"Q9VIF2",0.418378605696795,17.4516358057169,0.595230980078025,0.561324884764856,0.999896763353946,-4.60790161289053 +"Q9VHN6",0.288850848273006,15.0242308509976,0.593964352131699,0.562147940083666,0.999896763353946,-4.60793186185526 +"Q9VV39",0.328210017096076,17.4982874867437,0.591964570511657,0.563448717351926,0.999896763353946,-4.60797950124788 +"Q9W3R8",-0.380877088299023,17.3544908400137,-0.591357995654527,0.563843588514563,0.999896763353946,-4.60799392258519 +"Q9VHT3",-0.462898367023575,15.8020360385269,-0.590990743625706,0.56408273611703,0.999896763353946,-4.60800264752546 +"Q9VIK6",-0.274023036206046,16.6281570655669,-0.590014848225146,0.564718484614795,0.999896763353946,-4.60802580843797 +"Q9VIH9",-0.415498693828226,19.1635418024313,-0.589608533116887,0.564983292152677,0.999896763353946,-4.60803544131282 +"Q9V3T8",-0.241710984561003,15.5833902651684,-0.589241007556767,0.565222876569762,0.999896763353946,-4.60804414940423 +"Q9VDT1",0.379567315580648,19.1302733857646,0.586736797988624,0.566856777392626,0.999896763353946,-4.60810335306756 +"Q7KSQ0",0.309008841693934,20.9299506951147,0.586302371381734,0.567140480178236,0.999896763353946,-4.60811360042179 +"Q9W369",-0.329244418922855,22.3199821731714,-0.584709552680557,0.568181318922242,0.999896763353946,-4.60815111344043 +"Q9W3H4",-0.255794964921673,19.5446879923339,-0.584604008843692,0.568250323169232,0.999896763353946,-4.60815359587673 +"Q8SYJ2",-0.268878952512011,22.5654017784584,-0.584251155813162,0.568481049780398,0.999896763353946,-4.60816189218619 +"R9PY51",-0.285280253876316,21.5459642941215,-0.584187890109812,0.568522423773299,0.999896763353946,-4.60816337921521 +"Q9Y0V3",-0.213734414883161,15.0559809032597,-0.583480932110488,0.56898486328502,0.999896763353946,-4.60817998599529 +"X2JAU8",-0.334014278128258,21.8253157013207,-0.582941291773154,0.56933799038938,0.999896763353946,-4.60819265014859 +"Q9VYT6",0.182643074994118,16.4947985262619,0.582769757001699,0.569450262803364,0.999896763353946,-4.6081966734636 +"Q9VXN3",-0.264374686120686,16.9427403797677,-0.581891711021842,0.570025142708006,0.999896763353946,-4.60821725106533 +"Q9V9Q4",-0.280718780028252,19.1598922737278,-0.578200482230403,0.572445248549036,0.999896763353946,-4.6083034498438 +"Q9VTY2",-0.405069623508286,20.8168205199622,-0.576599724885532,0.573496448550745,0.999896763353946,-4.60834067656242 +"Q7JPS2",-0.25042431696772,20.8106953540243,-0.575756897219473,0.574050332986288,0.999896763353946,-4.60836023945541 +"Q9VIH3",-0.202015749936512,13.7831616314972,-0.575037141966526,0.574523560337152,0.999896763353946,-4.60837692514221 +"Q7K012",0.332555045579966,15.5556889374769,0.572946825569353,0.575899072003535,0.999896763353946,-4.60842527629216 +"Q8IQG9",-0.39354756282566,20.4871537946686,-0.572814622369388,0.57598612508825,0.999896763353946,-4.60842832890724 +"Q9W1N3",-0.248346735087054,20.5501205035111,-0.572428791909824,0.57624022598606,0.999896763353946,-4.60843723419742 +"A1Z6V5",-0.275935609851643,20.0469006099985,-0.572024209738438,0.576506739573221,0.999896763353946,-4.60844656643424 +"Q9VMH8",0.179140629066406,18.8864274256239,0.571763399100349,0.576678579670208,0.999896763353946,-4.60845257920565 +"Q9V9A7",0.432372063353744,15.9650966838529,0.571345218985549,0.576954161701121,0.999896763353946,-4.60846221479519 +"Q7KSE4",-0.206220482220317,13.7984581829631,-0.57055103321202,0.577477722568057,0.999896763353946,-4.60848049655204 +"Q9VFS4",-0.375025967631645,15.3165897074241,-0.570521234033627,0.57749737228814,0.999896763353946,-4.60848118206394 +"Q9W4I3",0.298724800702256,16.505960022241,0.568155570633431,0.579058417924133,0.999896763353946,-4.6085354987475 +"Q9VJD0",0.256501457569692,16.0989445338959,0.566886021946677,0.579897070853603,0.999896763353946,-4.60856456343564 +"Q95RS6",0.254481161012073,17.1693645397359,0.566409821944356,0.580211807721614,0.999896763353946,-4.60857545015348 +"A1ZB73",-0.695445019731014,13.5302636904513,-0.565413048690843,0.580870897282587,0.999896763353946,-4.60859821105368 +"Q7KUT2",0.27711679924121,18.161545579563,0.564833014466414,0.581254608632903,0.999896763353946,-4.60861143907937 +"Q8SYQ4",-0.269564595237568,20.9674827797247,-0.564225953577829,0.581656340145758,0.999896763353946,-4.60862527021195 +"Q9VZI3",0.264052063178648,14.3789312074502,0.564017953987869,0.581794020137282,0.999896763353946,-4.60863000610736 +"Q9W0Z5",-0.390466526975171,16.9830586549244,-0.562984855068856,0.582478104301363,0.999896763353946,-4.60865350491061 +"Q7K2L7",-0.443046268003535,18.2722070435518,-0.562204893690062,0.582994845552038,0.999896763353946,-4.60867121983567 +"Q24297",0.230136286961482,17.0147414690265,0.562186161704756,0.583007258819486,0.999896763353946,-4.60867164501169 +"Q9V3D9",0.288460966492821,17.396297402847,0.560103630786504,0.584388159428309,0.999896763353946,-4.60871883340766 +"Q9VW66",-0.264075085057929,21.3672504633989,-0.56004116719808,0.584429604390937,0.999896763353946,-4.60872024631111 +"Q9VEV3",-0.288097810876742,18.2829089593491,-0.560011830698446,0.584449069857736,0.999896763353946,-4.60872090984234 +"A1ZAA9",0.215802425654715,16.6240442186954,0.559860979829711,0.584549168300446,0.999896763353946,-4.60872432127735 +"Q9VLY7",0.423146754673505,15.436156849296,0.559461156865278,0.584814517287972,0.999896763353946,-4.60873335906266 +"Q9W4P5",0.241229927967741,19.6598627976309,0.559385381488678,0.584864813862111,0.999896763353946,-4.60873507126026 +"Q9VLP3",-0.170378521165446,17.5382952952502,-0.559322378757778,0.584906634182362,0.999896763353946,-4.60873649468979 +"Q9V8F5",-0.339228126635174,16.0703272697061,-0.559318606993672,0.584909137874976,0.999896763353946,-4.60873657990114 +"Q9VFP0",-0.214926307863429,16.5221152661349,-0.556133516748154,0.587025372010733,0.999896763353946,-4.60880834978714 +"O18332",0.264203818072506,20.6801583420006,0.555184388993559,0.587656752219536,0.999896763353946,-4.60882966411602 +"Q9W1B9",0.41527051318862,20.5846347991985,0.554946281807202,0.587815201035579,0.999896763353946,-4.6088350060081 +"Q9V3I2",0.365778292767651,17.5532855384084,0.554082385946021,0.588390266324884,0.999896763353946,-4.60885436976322 +"Q9VMX4",-0.234232563011265,17.3106625065484,-0.553344782167316,0.588881492005071,0.999896763353946,-4.60887088091305 +"Q9VJZ6",-0.296586678101651,19.7057657086772,-0.552781910128718,0.589256492264503,0.999896763353946,-4.60888346718257 +"Q9VQ91",-0.389367524276555,15.0426531966247,-0.552237634949738,0.589619219247543,0.999896763353946,-4.60889562646466 +"Q9VKU5",-0.564251105500563,13.6286484352689,-0.550911214990953,0.590503678171557,0.999896763353946,-4.60892521319447 +"Q9VQI7",-0.234208508299027,19.1668105461563,-0.550864804290378,0.590534637191428,0.999896763353946,-4.60892624723837 +"Q9VJZ5",-0.34401001654615,16.9555165338443,-0.548335988493624,0.592222779713673,0.999896763353946,-4.60898246936589 +"Q9VIN9",0.226925931699601,16.4050983996739,0.547040149011219,0.593088786758573,0.999896763353946,-4.60901118737825 +"Q9VVA6",-0.199694530731119,19.2468574417836,-0.546250478186993,0.593616838437843,0.999896763353946,-4.60902865728467 +"P40304",0.258248933649543,18.7576875807929,0.545810137947261,0.593911397168957,0.999896763353946,-4.6090383888924 +"P29829",0.233791992132922,21.399175294795,0.544932370680203,0.594498787608237,0.999896763353946,-4.60905776625004 +"Q8I099",0.249880453281229,16.8062728045611,0.544775920441285,0.59460351306329,0.999896763353946,-4.60906121700008 +"Q00174",0.282262623317511,21.9682500671383,0.543164395185081,0.595682789137453,0.999896763353946,-4.60909670874377 +"P12080",0.300537725287668,19.0169806087515,0.543140819247946,0.595698585863024,0.999896763353946,-4.60909722725687 +"Q9VN14",0.282446570030025,19.2821451753122,0.542812822046554,0.595918377811408,0.999896763353946,-4.60910443886084 +"Q7JZW0",0.254524423465114,19.7611666657041,0.542443516554351,0.596165899757088,0.999896763353946,-4.60911255391494 +"Q0E9B6",0.415810007389194,19.0414693457093,0.541397402222379,0.596867326150548,0.999896763353946,-4.60913551351926 +"Q7KML2",-0.337584622417063,13.5278726626159,-0.540312766736692,0.59759502186673,0.999896763353946,-4.60915927558309 +"Q9VZJ2",-0.389249993012832,17.331884416057,-0.538808294484869,0.59860513299801,0.999896763353946,-4.60919216289136 +"Q7JVK6",0.31929508615044,17.3515179331666,0.538439150622728,0.598853109783622,0.999896763353946,-4.60920021938749 +"Q9W414",0.199496933106921,19.5209696951664,0.537440405028835,0.599524288519123,0.999896763353946,-4.60922199137709 +"Q7KLW9",0.260239891276559,17.2308988040277,0.537193587081713,0.599690213895335,0.999896763353946,-4.60922736611637 +"Q9V6Y3",0.223077103674843,15.1821871889373,0.536941731014171,0.599859550014031,0.999896763353946,-4.60923284822588 +"Q9VAG3",0.269627908560881,16.8121811389965,0.536193618644558,0.600362687259386,0.999896763353946,-4.60924911832063 +"O18413",0.281028275309097,19.3819743915117,0.53618456166553,0.600368779760967,0.999896763353946,-4.60924931516575 +"Q9VXK6",-0.322064404052025,17.8203774076181,-0.535827333815008,0.600609106666473,0.999896763353946,-4.6092570767451 +"Q7JQR3",-0.294207812272674,19.1028616637502,-0.534541659730977,0.60147445050009,0.999896763353946,-4.60928497151546 +"Q9VXR9",0.392707188679459,15.2190127030065,0.533428462752149,0.602224210779553,0.999896763353946,-4.60930907429178 +"A1Z7H8",-0.176655212223015,14.6797035143283,-0.531764047813347,0.603346100050821,0.999896763353946,-4.60934502564435 +"Q9VE85",0.236279020140376,15.8013898726511,0.531216862744404,0.60371515512251,0.999896763353946,-4.60935682223324 +"Q9VH66",0.296141210341435,16.766556235855,0.528357375522658,0.605645600728794,0.999896763353946,-4.60941828690162 +"Q9VMW7",-0.289149967790106,19.4222511152253,-0.528111896867533,0.6058114670337,0.999896763353946,-4.60942354920766 +"O96824",-0.243849395697325,16.7174118888194,-0.527447427986839,0.606260552242573,0.999896763353946,-4.60943778205714 +"P09040",-0.28191950218412,16.6138123754536,-0.527131892941467,0.606473866424022,0.999896763353946,-4.60944453499426 +"Q9VCX3",0.518069878327687,12.8291074877683,0.527017456083145,0.606551239489047,0.999896763353946,-4.60944698319848 +"Q9VAI9",-0.211108521695348,21.9643647966341,-0.526435389151433,0.606944862589361,0.999896763353946,-4.60945942805239 +"Q9VPC2",-0.293981631873622,14.8990986152607,-0.525195179163941,0.607783978206549,0.999896763353946,-4.60948590197056 +"Q9VL01",-0.313739684025208,20.48499878342,-0.525176736649655,0.607796460596348,0.999896763353946,-4.60948629521544 +"Q9VWF0",-0.190607801568802,16.495546920011,-0.524751773760331,0.608084122118444,0.999896763353946,-4.60949535305603 +"Q9VY28",0.195872637183365,15.1672115986983,0.523755606817465,0.608758701576636,0.999896763353946,-4.60951655924702 +"Q7K3J0",0.222138372436913,20.3669773350983,0.523183907061304,0.609146009650402,0.999896763353946,-4.60952871266332 +"Q9Y125",-0.241259232615818,22.6227830984005,-0.523122107623366,0.609187884067583,0.999896763353946,-4.6095300256856 +"Q9VJH8",0.280370502292136,14.3539647835265,0.52270153699366,0.609472894529583,0.999896763353946,-4.60953895753754 +"Q8MSS7",0.451890920297831,14.0208460031926,0.522041329636577,0.609920433863482,0.999896763353946,-4.60955296527786 +"Q7K5M6",-0.354121950342272,18.2198643339424,-0.520540060038037,0.610938713622201,0.999896763353946,-4.60958475708556 +"Q95NU8",-0.176076920569908,17.3926764469771,-0.520408640431922,0.61102789267305,0.999896763353946,-4.60958753607934 +"P12370",0.305367028820125,20.7559990997669,0.514472348050098,0.615062830048397,0.999896763353946,-4.60971238762752 +"Q9VF23",0.45798759291459,15.2238264774016,0.513341402664526,0.615833017187102,0.999896763353946,-4.60973602316679 +"P08182",-0.18267142609389,19.6889621815154,-0.513116057089059,0.615986536441699,0.999896763353946,-4.60974072688895 +"Q9VJ86",0.294434005500179,16.4866433572834,0.513095085669173,0.616000824412031,0.999896763353946,-4.60974116453589 +"B7YZT2",-0.181884185227954,18.4627170146471,-0.511763829648999,0.616908149089972,0.999896763353946,-4.60976891223483 +"Q8IMT6",0.259207558456604,16.1224247020421,0.510902979217442,0.617495212892082,0.999896763353946,-4.60978681957824 +"Q7K860",-0.38125084337851,20.5925869721479,-0.509379057402168,0.61853512983807,0.999896763353946,-4.60981845153056 +"Q94915",-0.41364643709883,16.9675160309859,-0.508966637927315,0.618816709149437,0.999896763353946,-4.60982699702695 +"O02649",-0.239086046145829,23.3128684865054,-0.508578613477965,0.619081689578365,0.999896763353946,-4.60983503118569 +"Q7KLE5",-0.186072757909564,21.4236381156513,-0.50854102702838,0.619107360147871,0.999896763353946,-4.60983580912202 +"Q9VCR4",-0.38876555569075,14.9898645173122,-0.507646142160206,0.61971869578266,0.999896763353946,-4.60985431502533 +"Q9VSU7",-0.157248372586652,14.7222798995432,-0.507175467429697,0.62004035199952,0.999896763353946,-4.60986403627356 +"P13060",0.24994804024459,20.2068804301642,0.506004042891547,0.620841247234597,0.999896763353946,-4.60988819436368 +"Q9V3L6",0.290555000340756,15.8087979639948,0.505649813403909,0.621083530097824,0.999896763353946,-4.60989548936472 +"Q0E8X8",0.24146698265605,19.8145337646174,0.505089156881049,0.621467096560926,0.999896763353946,-4.60990702582642 +"Q9VLS5",-0.19763690640764,14.5800862107451,-0.50422592772901,0.622057888097526,0.999896763353946,-4.60992476499168 +"Q9VLS9",-0.299242476853294,18.9671779949702,-0.503562451961177,0.622512153106359,0.999896763353946,-4.60993838010937 +"Q9VYS2",-0.211887686932442,14.9839626005374,-0.501964495741256,0.623606889026046,0.999896763353946,-4.6099711032174 +"P00408",0.178428662164002,21.4085415765013,0.501921917978942,0.623636071078794,0.999896763353946,-4.60997197380677 +"Q7K568",0.216154936292064,16.1223278309833,0.501414524507015,0.623983880223234,0.999896763353946,-4.60998234321909 +"O77410",0.469099715524383,14.3427651263969,0.500993246743267,0.624272729420255,0.999896763353946,-4.60999094530698 +"A8Y535",-0.168530972921673,22.0824631312377,-0.500929253739461,0.624316611857763,0.999896763353946,-4.60999225139452 +"Q9VAN7",-0.216634703085944,23.7416227146676,-0.500256376105192,0.624778119328977,0.999896763353946,-4.61000597533185 +"Q86BM0",-0.2007769599482,17.4528342251999,-0.499350917754389,0.625399405518674,0.999896763353946,-4.61002441587815 +"Q7K2N0",-0.170038476972378,15.4419258773403,-0.498516227481113,0.625972395929926,0.999896763353946,-4.61004138762937 +"Q9VQX3",-0.455639831117155,15.363387632514,-0.498005253907398,0.626323288307945,0.999896763353946,-4.61005176421268 +"P20348",-0.359248641128257,17.4272303433328,-0.497252017805794,0.626840717148578,0.999896763353946,-4.61006704247381 +"Q9VGW7",0.37420971159499,16.7559572556592,0.495919046537749,0.627756890266926,0.999896763353946,-4.6100940270228 +"Q9W266",-0.250565509279614,18.4661180478504,-0.495885299260413,0.627780093617392,0.999896763353946,-4.61009470932414 +"Q9VNH5",0.221424926245174,17.0654352672484,0.494778876469199,0.62854105453851,0.999896763353946,-4.61011705499018 +"Q9V931",-0.50896096100923,17.634522551095,-0.49391791648305,0.629133498100425,0.999896763353946,-4.61013441103976 +"Q9VVW3",0.43145426886565,16.5821030242498,0.49352822257158,0.629401741494689,0.999896763353946,-4.61014225759999 +"Q9VCK0",0.312410536617218,18.1891109873577,0.493484217192929,0.629432035742285,0.999896763353946,-4.61014314329389 +"Q9V3G1",0.201433014346495,21.0351754164604,0.493235794100089,0.629603068537306,0.999896763353946,-4.61014814191152 +"Q9VM18",-0.295658462536238,22.9428285318536,-0.491926419964198,0.630504903175994,0.999896763353946,-4.61017444956314 +"A8WH76",0.158127249787007,19.0881430387702,0.491564758633842,0.6307541062965,0.999896763353946,-4.61018170449 +"Q9VXN4",0.248329320423585,14.9488780574788,0.490693358411179,0.631354737309469,0.999896763353946,-4.61019916434132 +"P40796",-0.238550210793292,18.3505267640917,-0.489015647902541,0.632511896936337,0.999896763353946,-4.61023269848369 +"A1ZBU8",-0.229751543277022,20.7934854746034,-0.486624004396272,0.63416320473748,0.999896763353946,-4.61028031741347 +"Q9W1E8",-0.212337812546664,15.3996933463991,-0.486576585182583,0.63419596580753,0.999896763353946,-4.6102812593522 +"Q9VM12",0.242195126366429,18.9156264110288,0.486172273951105,0.634475329427622,0.999896763353946,-4.61028928713869 +"Q24238",0.305426849564324,16.3330490844813,0.485237586052598,0.635121384686032,0.999896763353946,-4.61030782193818 +"Q9VCE0",-0.40866646471364,15.8518192206389,-0.485196818549972,0.635149570176401,0.999896763353946,-4.61030862959676 +"Q9VBU0",0.26464571334872,14.2846563424297,0.484923431364502,0.635338597479618,0.999896763353946,-4.61031404412337 +"Q9VIW6",0.193445771609824,15.0142165694366,0.484378971758911,0.635715130307646,0.999896763353946,-4.61032481883826 +"Q9VH95",-0.296644164227626,20.9121626299367,-0.483376898056548,0.636408409773232,0.999896763353946,-4.61034462004969 +"Q9GYU8",0.547637078848055,12.7160188015424,0.483178757458244,0.636545534276746,0.999896763353946,-4.61034853081598 +"Q9VNA5",0.180747831279195,17.2882504006384,0.482829625491837,0.63678718703913,0.999896763353946,-4.61035541810148 +"M9NDE3",0.174622930922343,16.1512827678999,0.4827500760978,0.636842253407398,0.999896763353946,-4.61035698671208 +"Q8MLP9",-0.397825370887974,14.9210282268772,-0.482061644063955,0.637318898914395,0.999896763353946,-4.61037055160212 +"Q9VHD3",0.221657854056906,15.6926654973662,0.481927006961736,0.637412136300904,0.999896763353946,-4.61037320238046 +"Q9VQ62",-0.183041811910758,19.6789883303478,-0.480371162368321,0.638490035060872,0.999896763353946,-4.61040378410688 +"Q9VH77",0.312844521185978,15.5721163750268,0.479455620596414,0.63912472550471,0.999896763353946,-4.61042173678639 +"Q95TK5",0.25275835077607,17.2252900583781,0.479089838864593,0.639378382346757,0.999896763353946,-4.61042890036941 +"Q0KHZ6",-0.272997552757197,23.0911932318463,-0.479036743568768,0.6394152059764,0.999896763353946,-4.61042993977894 +"Q9VA37",-0.30916024370282,21.8216105560219,-0.478728683438431,0.639628877018942,0.999896763353946,-4.61043596832959 +"Q9VRR3",-0.291311456069543,19.7337705121679,-0.47788973217299,0.640210943585868,0.999896763353946,-4.61045236769559 +"Q8T4G5",0.247521842944472,19.6840332220789,0.477818843092024,0.640260137901812,0.999896763353946,-4.61045375216332 +"Q9W3M8",0.257032818436077,18.5933546245238,0.477353044668429,0.640583427944352,0.999896763353946,-4.61046284445007 +"Q9VK60",-0.168099646166027,21.3560619850298,-0.477004319469006,0.640825512302893,0.999896763353946,-4.61046964605735 +"Q9VVL8",-0.290317725181714,15.8704098730889,-0.47367719970776,0.643137325757994,0.999896763353946,-4.61053430473753 +"Q9VDK9",0.317025731833628,15.5471054971165,0.472287768129288,0.644103897557008,0.999896763353946,-4.6105611811651 +"Q9VBV5",-0.230331870452698,17.1740040182668,-0.472029311301045,0.644283769514086,0.999896763353946,-4.61056617245174 +"P35220",-0.214892755967732,19.3361756112223,-0.471943725171554,0.644343337931105,0.999896763353946,-4.61056782471596 +"Q9VMQ5",0.288963214829126,13.4627387064441,0.471581574101782,0.644595425171994,0.999896763353946,-4.61057481303426 +"Q960W6",0.186696010814332,14.1237479966434,0.471554935526372,0.644613969628874,0.999896763353946,-4.61057532687207 +"Q9VPF6",0.299110153727517,13.9256222289471,0.470134224879955,0.645603353990055,0.999896763353946,-4.61060269185032 +"Q9VIQ5",-0.404097639031626,16.5531611775232,-0.469623784900639,0.645958995391814,0.999896763353946,-4.61061250476067 +"Q9VWH4",-0.217193493714063,24.3988213544061,-0.468592267633221,0.646677964226386,0.999896763353946,-4.61063230454447 +"A1ZB68",-0.227819846087588,19.340149445686,-0.46815976880972,0.646979525672075,0.999896763353946,-4.61064059412153 +"Q7KVQ0",0.376569264783447,15.6253681352992,0.468057423632959,0.64705089566927,0.999896763353946,-4.61064255468997 +"P48596",0.310206162525489,21.7663671486179,0.466080934357641,0.648429899740753,0.999896763353946,-4.6106803382342 +"P61851",-0.182335878149402,23.5526415136679,-0.465273266601615,0.648993799066044,0.999896763353946,-4.61069573479087 +"Q9VN01",0.298160998805582,16.0477089479542,0.464496773623694,0.649536143723062,0.999896763353946,-4.61071051341009 +"Q9Y156",0.350645921850562,16.079437847558,0.464111851313594,0.649805070873083,0.999896763353946,-4.61071783085358 +"O62530",-0.161434143385819,15.6831720575908,-0.463447713484498,0.650269192074644,0.999896763353946,-4.61073044283118 +"Q9VSK9",-0.198502515674752,14.4874558706014,-0.462651527488203,0.650825791697328,0.999896763353946,-4.61074554002943 +"Q95RA9",-0.165615501534734,20.5202422123078,-0.462594517511244,0.650865654681314,0.999896763353946,-4.61074662011064 +"Q8IRD0",0.297076474327575,17.5066197404346,0.461225897678904,0.6518229653022,0.999896763353946,-4.61077251170082 +"Q86BS3",-0.259060900171125,18.9698418694989,-0.460137353300715,0.652584827031272,0.999896763353946,-4.61079305330142 +"Q9VF89",0.376108585186351,14.2008281351251,0.459961991977312,0.652707598458787,0.999896763353946,-4.61079635822317 +"Q9VH76",-0.206630836466644,19.3296052678256,-0.459245083020595,0.653209619128423,0.999896763353946,-4.61080985701649 +"Q9VI10",0.122728554463691,17.1704198728259,0.458782190203548,0.653533855952179,0.999896763353946,-4.61081856237296 +"E1JIY8",-0.198608582931396,16.4254941659057,-0.457587392309676,0.654371097381022,0.999896763353946,-4.61084099405557 +"Q961B9",0.294553723625649,14.9511909091529,0.454430971306799,0.656585248941034,0.999896763353946,-4.61089998917176 +"P28668",0.19859310589802,15.4458641848742,0.453891000675011,0.656964361924779,0.999896763353946,-4.61091004296517 +"A1Z9J3",-0.202613175415919,17.6088326224457,-0.453372424603839,0.657328546241933,0.999896763353946,-4.6109196878067 +"Q9VR25",0.18300777846127,17.0186640061381,0.452249664570565,0.6581173453233,0.999896763353946,-4.61094053407878 +"Q8IQC6",-0.215632206386097,15.9312594337017,-0.451362205243813,0.658741132683318,0.999896763353946,-4.61095697704435 +"Q9VSN3",-0.238864952753183,20.8764647617761,-0.450472103268213,0.659367042851731,0.999896763353946,-4.61097343838055 +"A0A0B4K692",0.394748659568283,15.9791479331723,0.448693403414693,0.660618599943978,0.999896763353946,-4.61100624140888 +"Q9VNC1",0.377922033849462,15.5514582752387,0.448215411133635,0.660955112679358,0.999896763353946,-4.6110150357336 +"Q9VFF0",0.221759193158935,23.637382620403,0.448205064004949,0.660962398034551,0.999896763353946,-4.61101522600709 +"Q95SI7",-0.204224715156379,21.2383177899522,-0.445292648161692,0.663014431167634,0.999896763353946,-4.61106861760601 +"Q7K3W2",0.219966357215974,17.5519158356498,0.444748269838633,0.663398302588369,0.999896763353946,-4.61107856091202 +"Q94901",0.247399056271121,18.8460127514966,0.444092594940684,0.663860785875757,0.999896763353946,-4.61109052184494 +"Q9VP57",0.211827375350236,19.5541368805725,0.444053066700896,0.6638886718536,0.999896763353946,-4.61109124239302 +"A1ZB70",-0.57368743941745,16.0980868163516,-0.443677269406468,0.664153811325364,0.999896763353946,-4.61109808965927 +"Q9W2M0",-0.212428086095155,17.7702037715669,-0.443611815569993,0.66419999631023,0.999896763353946,-4.61109928170981 +"Q9VKR4",0.163262179047411,19.1656522989005,0.443258689306032,0.664449190748569,0.999896763353946,-4.61110571000708 +"Q9VJG0",-0.634443636045182,13.0557695105005,-0.443171022488787,0.66451106193399,0.999896763353946,-4.61110730514104 +"Q9V4S8",-0.30114539917707,17.0797515823241,-0.442486848189834,0.664994007810852,0.999896763353946,-4.6111197437313 +"O97479",0.232516423513513,17.9370742538424,0.441464975795808,0.665715616374437,0.999896763353946,-4.61113828799575 +"Q9VRP3",0.297875493978164,18.0085763060275,0.441314073135162,0.665822207457455,0.999896763353946,-4.61114102304283 +"P53034",-0.24077883155698,15.7296453960802,-0.441099171044109,0.665974017915211,0.999896763353946,-4.61114491652667 +"B7Z107",-0.467949537070201,16.0290910335584,-0.440658948900984,0.66628504576915,0.999896763353946,-4.61115288664289 +"Q9VAA6",-0.286714178144809,16.2543885596548,-0.440493800230751,0.666401743861174,0.999896763353946,-4.6111558746789 +"A0A0B4K7J2",0.188912156677539,15.8116214791804,0.440372992171787,0.66648711547863,0.999896763353946,-4.61115805978916 +"A1Z7K8",-0.240260258502811,17.5933661276658,-0.439997917694037,0.66675220054258,0.999896763353946,-4.61116484032006 +"Q9VHI1",0.163023676384535,14.2020660930559,0.439229454774891,0.667295458610922,0.999896763353946,-4.61117871539168 +"P22812",0.153659636268626,11.4196469975521,0.439225538342577,0.667298227795171,0.999896763353946,-4.61117878604652 +"O77263",-0.221211210276827,15.5301983173462,-0.439069612796293,0.66740848186376,0.999896763353946,-4.61118159855486 +"Q9VDQ3",-0.540108562747497,13.2347964542374,-0.438936263183683,0.667502778951628,0.999896763353946,-4.61118400310021 +"Q9VIL2",-0.210574913009747,16.0075760219568,-0.438360640076634,0.667909893098413,0.999896763353946,-4.61119437474282 +"Q7KTG2",0.229146351179292,18.0469619309,0.437757487805135,0.668336594063615,0.999896763353946,-4.61120522859289 +"Q9W402",-0.140307419617717,21.2698853073718,-0.43729951088152,0.668660670131579,0.999896763353946,-4.61121346053688 +"Q09101",0.219367205289551,14.6800819489907,0.437215567645067,0.668720077939011,0.999896763353946,-4.6112149684972 +"Q9VVK7",-0.184393437254297,18.1730596860544,-0.436867166704756,0.668966670825949,0.999896763353946,-4.61122122425993 +"Q6NMY2",0.393661668385139,20.1133569133105,0.435687591035169,0.669801851195146,0.999896763353946,-4.61124236925114 +"Q9VBI2",-0.246891534909139,22.141419187168,-0.434878756302991,0.670374796720168,0.999896763353946,-4.61125683708292 +"Q8MLS1",-0.339740585962392,18.4010456439451,-0.434466847921298,0.67066665778606,0.999896763353946,-4.61126419520884 +"Q6IHY5",-0.21881421406885,20.9493898108014,-0.434182958274889,0.670867842299153,0.999896763353946,-4.61126926262784 +"Q0E8U4",-0.252444054782636,16.201959643139,-0.433353095601728,0.67145609276351,0.999896763353946,-4.61128405765363 +"Q9W140",-0.484174257011979,13.8726755911306,-0.433213724536825,0.671554908296294,0.999896763353946,-4.61128653977055 +"Q9W199",0.547951574963284,15.7684216411779,0.433066200343826,0.671659511359276,0.999896763353946,-4.61128916626585 +"Q9VYT0",0.156053239057805,18.3020186436602,0.432772224802952,0.671867977860586,0.999896763353946,-4.61129439762847 +"Q76NQ0",0.339845915235495,14.4918088718742,0.43235821302483,0.672161613096764,0.999896763353946,-4.61130175935562 +"Q9VJ43",0.177414972756814,20.2210969520767,0.432181749819581,0.672286785418136,0.999896763353946,-4.61130489509686 +"Q9VWL4",-0.270616541976857,16.181989265368,-0.431555197062939,0.672731305622575,0.999896763353946,-4.61131601910372 +"Q9VU92",0.24575010747845,17.7389260447854,0.430857618097573,0.673226366419305,0.999896763353946,-4.61132838613569 +"Q9VJ80",0.207476924841256,16.4479189270726,0.430399506472048,0.67355156670255,0.999896763353946,-4.61133649745283 +"Q9Y0Y2",-0.126876261498666,19.5053242582802,-0.429867308694264,0.673929443826148,0.999896763353946,-4.61134591026576 +"Q7PL91",-0.273557291902826,18.9008120814466,-0.429117934382278,0.674461678210298,0.999896763353946,-4.61135914548843 +"Q9VW14",-0.192086727397056,13.7045062690852,-0.428108966600494,0.675178571966942,0.999896763353946,-4.61137693097641 +"Q9VW34",0.283491617316841,18.3949451692373,0.427927905162414,0.675307254803462,0.999896763353946,-4.61138011841771 +"P32234",-0.212278467075542,16.685745592547,-0.426691943819662,0.676185951126689,0.999896763353946,-4.61140184235383 +"Q9VCT4",0.31859234675019,13.3534709933126,0.426076753347068,0.676623498576906,0.999896763353946,-4.61141263305486 +"Q7KUC2",-0.179507307064227,19.3242870998561,-0.425865529924894,0.676773756918819,0.999896763353946,-4.61141633459547 +"A8JNT7",0.202110111436436,16.8484129296343,0.425552596312536,0.6769963953009,0.999896763353946,-4.61142181533262 +"Q9VHC7",-0.118314037396839,19.9389572386376,-0.42511564966163,0.677307315964564,0.999896763353946,-4.61142946164339 +"P54353",-0.21040526548386,18.8888086896107,-0.424850806159265,0.67749580195809,0.999896763353946,-4.61143409262012 +"Q9VC05",-0.15612081084033,14.8664304997387,-0.424457963412509,0.677775424851738,0.999896763353946,-4.61144095670837 +"Q7K519",0.28176951679696,15.6558421613471,0.424324870794922,0.67787017050214,0.999896763353946,-4.61144328085044 +"Q7KMS3",-0.329198573409311,15.543719190399,-0.423767774372232,0.67826681641981,0.999896763353946,-4.61145300168652 +"Q9VHX4",-0.188859773327302,22.8593909347255,-0.423666172979962,0.678339166075837,0.999896763353946,-4.61145477323274 +"Q9VK12",-0.257352242494832,22.335361646332,-0.423517723868169,0.678444881600264,0.999896763353946,-4.61145736090173 +"Q9VGK3",-0.148719504189241,17.1045988195514,-0.423101823621169,0.678741095395496,0.999896763353946,-4.61146460601958 +"P32748",0.372011696852017,17.2765319360148,0.420427681673615,0.680646997708209,0.999896763353946,-4.6115110289101 +"Q9W380",0.116794848561113,18.3879921592901,0.420311585850752,0.680729792500645,0.999896763353946,-4.61151303798938 +"Q9VCH5",-0.191039325409925,18.012099179812,-0.419774708281193,0.681112727247747,0.999896763353946,-4.61152232198713 +"Q9VE52",-0.149619398096348,15.9129190872129,-0.41829112810426,0.682171384626473,0.999896763353946,-4.61154791825585 +"Q7K2Q8",-0.398395918383681,16.1083529272324,-0.417802808910155,0.682519993169912,0.999896763353946,-4.61155632439752 +"Q960M4",-0.227767086373976,23.2598301685563,-0.417768226483061,0.682544684242749,0.999896763353946,-4.61155691936059 +"Q9VXY3",0.164749469257565,18.0463191710917,0.417232718174385,0.682927073300346,0.999896763353946,-4.61156612637553 +"Q9VVL5",0.235289580055934,17.314652758469,0.416933894574494,0.683140492855057,0.999896763353946,-4.61157125917846 +"Q7K8X7",0.278188220118942,19.5125774489963,0.412312205125763,0.686444875898724,0.999896763353946,-4.61165019888601 +"Q9VN02",-0.217477000419205,17.3114724439297,-0.411821285580207,0.686796263471486,0.999896763353946,-4.61165853470666 +"Q9VSR5",0.220702585136266,20.2097841191648,0.411358993325554,0.687127229183454,0.999896763353946,-4.61166637578851 +"P53997",-0.311948699674922,17.4259770449845,-0.410821012712966,0.6875124658977,0.999896763353946,-4.61167549008257 +"Q9VEV7",0.607278813553423,12.8928523517671,0.410683378205283,0.687611037599736,0.999896763353946,-4.61167782001677 +"Q9V4E0",0.223813393344169,18.492151449342,0.409925460718026,0.688153952083211,0.999896763353946,-4.61169063703383 +"Q7KND8",-0.169498884708091,15.4162305247695,-0.409768419971972,0.688266466502986,0.999896763353946,-4.61169328990265 +"P48148",0.233437083474676,20.6127659633526,0.409498087504237,0.688460168605123,0.999896763353946,-4.61169785432497 +"Q9VBC9",-0.284699923363053,15.5467520849201,-0.409382516195689,0.688542986182084,0.999896763353946,-4.61169980481019 +"Q9W392",0.192435777834252,19.9800686651496,0.409347820907931,0.688567849388664,0.999896763353946,-4.61170039025664 +"Q9VEN3",-0.232584309960096,17.5907609103476,-0.407794950063151,0.689681044617979,0.999896763353946,-4.61172654489023 +"Q9VWP4",0.306061439896787,15.1722850845769,0.406935524095809,0.690297456436725,0.999896763353946,-4.61174097926045 +"Q9VE12",-0.131490032299933,15.6501515964801,-0.406092209283799,0.690902534863508,0.999896763353946,-4.611755114812 +"P92177",-0.203840307343668,24.1380014825053,-0.406091798010443,0.69090283000578,0.999896763353946,-4.6117551216989 +"A1ZB23",-0.229339880140511,15.9162150719352,-0.405844658495634,0.691080194286849,0.999896763353946,-4.6117592589221 +"B7Z0Q1",0.258544938430077,17.7372319675798,0.405578780161333,0.691271027884415,0.999896763353946,-4.61176370715909 +"Q9NHA8",0.265622382218069,16.3067343978145,0.405559726570846,0.69128470439531,0.999896763353946,-4.61176402582552 +"Q7K0B6",-0.142625051644337,20.1703238953373,-0.403297784777556,0.69290910239737,0.999896763353946,-4.61180175472986 +"Q9VDV2",0.393639544939724,14.3880486713271,0.403145529106163,0.693018500293281,0.999896763353946,-4.61180428710254 +"A0A0B4KI23",-0.157891210732956,20.5654978695248,-0.402876746748856,0.693211641666539,0.999896763353946,-4.61180875536269 +"Q9VP13",-0.332043677132782,11.7073651357764,-0.400787526610544,0.694713666512514,0.999896763353946,-4.61184338973655 +"Q9VAA9",-0.234428042484733,17.0910266953547,-0.400271691683459,0.695084726651024,0.999896763353946,-4.61185191460463 +"Q9W1G0",-0.221344875373447,21.7374149092873,-0.399350146397068,0.695747832178721,0.999896763353946,-4.61186711828447 +"Q9VWD5",0.20337251332306,14.453435724862,0.399109210143537,0.695921242544447,0.999896763353946,-4.61187108773784 +"Q9W385",-0.239115006799327,16.8499880781625,-0.398489764341913,0.696367160795881,0.999896763353946,-4.61188128267568 +"Q7K3E2",-0.281989765448216,20.5532626710589,-0.397257299294986,0.69725471803457,0.999896763353946,-4.61190152178217 +"Q9U1L2",-0.246517489312968,17.6193449557726,-0.397151394933909,0.697331006368577,0.999896763353946,-4.61190325811111 +"Q9VZ64",-0.228970073097155,19.4213569768199,-0.396350949004278,0.697907718547601,0.999896763353946,-4.61191636731544 +"Q9VCE1",-0.366889293797458,13.6712485490011,-0.39582853158203,0.69828421902549,0.999896763353946,-4.61192490950822 +"Q9VH26",-0.200831119287567,18.296763868537,-0.39543679211252,0.698566595519865,0.999896763353946,-4.61193130788308 +"Q9VCW2",0.250658209300115,15.3391660023315,0.395226921158668,0.698717895314233,0.999896763353946,-4.61193473326405 +"Q9VTC3",-0.120561227772832,17.1969444277156,-0.395169092385272,0.698759587469723,0.999896763353946,-4.61193567680319 +"O97102",0.140961938362075,21.0988065545856,0.395133935707082,0.698784934475484,0.999896763353946,-4.61193625035799 +"Q9V9S0",-0.115384084374586,17.0992850140867,-0.393924887616262,0.699656852211561,0.999896763353946,-4.61195594537487 +"Q9VCC0",-0.234446789683783,17.4809737244541,-0.393215745412726,0.700168462599073,0.999896763353946,-4.6119674702231 +"Q9W229",0.152562335217013,19.1258960926689,0.392669864737943,0.700562391105328,0.999896763353946,-4.61197632824471 +"A1ZA23",-0.19240685499966,18.3436410059318,-0.392254260202094,0.700862367395776,0.999896763353946,-4.61198306437821 +"M9PF16",0.206323237776346,21.2384936964768,0.391841249467011,0.701160522913555,0.999896763353946,-4.61198975171008 +"Q9VZD8",-0.199941024847236,13.6936485838105,-0.391839934923344,0.701161471974131,0.999896763353946,-4.61198977298397 +"Q9VXZ0",-0.263776702464451,19.7021063322468,-0.389438266919159,0.702896267686635,0.999896763353946,-4.61202852626438 +"Q9W0S7",0.323232073635737,17.8419896249616,0.389407745858117,0.702918325049998,0.999896763353946,-4.6120290172842 +"Q94522",-0.159164876422278,23.5006629170713,-0.38915678645801,0.703099702245468,0.999896763353946,-4.61203305329727 +"Q9VXE0",0.178968162107751,18.0057682360939,0.389051083377066,0.703176103209292,0.999896763353946,-4.61203475250401 +"Q7JWX3",0.213575720729949,17.9206531121572,0.388455416539989,0.703606706600806,0.999896763353946,-4.61204431975255 +"Q95SS8",0.320790413506248,15.5037660873177,0.388432620134928,0.703623188063774,0.999896763353946,-4.61204468561605 +"O96299",0.291610682449335,15.6805229542608,0.388291157442521,0.703725466954709,0.999896763353946,-4.61204695551592 +"Q9W4K0",0.232914415851436,19.7322088023233,0.387206712197373,0.704509729172265,0.999896763353946,-4.61206433014119 +"O76521",0.114287999065546,16.0843747790122,0.386193732398168,0.705242623838075,0.999896763353946,-4.61208051772403 +"Q9W0J9",-0.12994187356496,18.4669456322713,-0.386140679445461,0.70528101623809,0.999896763353946,-4.61208136439938 +"A1Z6P3",-0.21471416772112,17.2439564200068,-0.385488398944189,0.705753114952325,0.999896763353946,-4.61209176507548 +"Q8IPG8",0.139442216115709,15.8220744488806,0.385467284199128,0.705768399201299,0.999896763353946,-4.61209210147062 +"Q9VZE4",0.248232609515142,17.6718183901476,0.385242810982726,0.70593089592113,0.999896763353946,-4.61209567663332 +"Q9VCA5",0.186004390740329,14.1872736431923,0.385091203988912,0.706040653037727,0.999896763353946,-4.61209809013382 +"M9PFN0",-0.123875187721278,16.7164883547666,-0.383595972319112,0.707123502041526,0.999896763353946,-4.61212184463232 +"Q9V4N3",0.126151035968288,19.7652399343726,0.38344620982608,0.707231996620182,0.999896763353946,-4.61212421900374 +"M9PHA0",-0.188936909703891,17.4494655486649,-0.382809274033758,0.707693494929019,0.999896763353946,-4.61213430721127 +"Q9W0D3",0.204527425018895,12.7389913004853,0.382683397400185,0.707784714263104,0.999896763353946,-4.61213629902518 +"Q9V3Z2",0.173149865681911,16.168421120398,0.381641869571577,0.70853965963423,0.999896763353946,-4.61215275558116 +"Q9VAQ4",-0.109751793869233,16.0887851991566,-0.38127090256153,0.70880862987728,0.999896763353946,-4.61215860662005 +"Q9VXK7",0.212480778405748,18.1095396777029,0.380530620438014,0.709345493304598,0.999896763353946,-4.61217026633074 +"Q9V7D2",-0.205800611109165,21.3645060127884,-0.379933227415991,0.709778848522308,0.999896763353946,-4.61217965963721 +"Q9VTU2",-0.189140093158016,20.8704608307966,-0.379751443753455,0.709910737039447,0.999896763353946,-4.61218251516295 +"Q9VSA3",0.230194623245943,21.6855396364814,0.378747519983294,0.71063928237188,0.999896763353946,-4.61219826155539 +"P07668",-0.209150444046751,14.7482610689231,-0.37860377415176,0.710743622499054,0.999896763353946,-4.61220051291336 +"Q7JVI6",0.190451040937372,17.4363851409949,0.37799981663694,0.711182080212443,0.999896763353946,-4.61220996317853 +"Q9VRJ6",-0.256559338362411,15.7462232218209,-0.376979453295376,0.711923079256298,0.999896763353946,-4.61222589614236 +"Q9VKG4",-0.218108254638537,15.9648277979956,-0.376971462765712,0.711928883261663,0.999896763353946,-4.61222602075125 +"Q9VQR9",-0.247990702182364,16.2032727453791,-0.376757499715635,0.712084304477061,0.999896763353946,-4.61222935647061 +"A8E6W0",-0.15633392795484,16.4184279724891,-0.37582332180877,0.712763040291715,0.999896763353946,-4.6122438991578 +"P09180",0.208119300831846,20.5876678907512,0.374371970351175,0.713818035172172,0.999896763353946,-4.61226642409506 +"Q9VN88",-0.199664548171928,17.040518502549,-0.374013555467881,0.714078662610983,0.999896763353946,-4.61227197379541 +"Q9VVU5",0.123398282020498,15.6597203034082,0.373664359429365,0.714332622088557,0.999896763353946,-4.61227737583984 +"Q9VR30",0.23600183033756,17.3224580915871,0.37362548034618,0.714360899820479,0.999896763353946,-4.61227797699731 +"Q6NLJ9",-0.18707079888345,15.2223876057909,-0.373567638601078,0.714402970378886,0.999896763353946,-4.61227887124868 +"D0UGE6",-0.19593784283733,15.3242683594864,-0.37284165615452,0.714931087782844,0.999896763353946,-4.61229008385046 +"Q9VVE2",-0.183294598335888,18.3612817533568,-0.372532225144597,0.7151562301526,0.999896763353946,-4.61229485655828 +"Q9V3F3",0.146133410835443,14.6036910424422,0.372073488628953,0.715490058091999,0.999896763353946,-4.61230192516797 +"Q9VLW8",-0.278802601000553,14.1336595459671,-0.37188132783989,0.715629913735618,0.999896763353946,-4.61230488366041 +"O61491",0.159935365778175,20.9604211869166,0.371513322145253,0.715897779855499,0.999896763353946,-4.61231054534704 +"Q9V3W0",-0.300605552314014,20.8403979854928,-0.371095949470159,0.716201626563593,0.999896763353946,-4.61231696001332 +"P38040",-0.200186174228293,19.0104172973392,-0.369727457008656,0.717198237440112,0.999896763353946,-4.61233794396327 +"Q9VDT5",-0.181575113127671,19.0366011489648,-0.369561439385975,0.717319176995765,0.999896763353946,-4.61234048454541 +"A1Z877",0.196585565031267,19.9946616831139,0.368667691168831,0.717970384843243,0.999896763353946,-4.61235414279821 +"Q9VFC2",0.27772353861101,19.8348158330009,0.368296764443715,0.718240718508174,0.999896763353946,-4.61235980195809 +"Q960X8",-0.133564424732189,18.4020213680707,-0.367898336687439,0.71853113878618,0.999896763353946,-4.61236587459232 +"Q8WTC1",0.213137740904083,15.0624669478089,0.36781062888625,0.718595076460041,0.999896763353946,-4.61236721054115 +"Q8SXC2",0.237744080976636,14.7466297495249,0.367495683909239,0.718824684686197,0.999896763353946,-4.61237200519855 +"Q9VK58",-0.625338790335073,12.9528132728325,-0.367456501697834,0.718853252152358,0.999896763353946,-4.61237260142411 +"Q9VHT5",0.182591159931317,15.5611025120079,0.366991827323493,0.719192076167823,0.999896763353946,-4.61237966759014 +"Q9W1I8",-0.260170151938485,17.9261588131717,-0.366487638508085,0.719559782130042,0.999896763353946,-4.61238732490964 +"Q7KN75",0.245845805028729,19.3799056571052,0.365638508650497,0.720179217405637,0.999896763353946,-4.61240019809236 +"Q9VLT3",0.183032944732101,19.4175425222551,0.364620386787896,0.720922200677561,0.999896763353946,-4.61241559538093 +"Q9VDU7",-0.150092084091995,18.2908397875015,-0.364177041211512,0.72124582758893,0.999896763353946,-4.61242228728092 +"M9NFC0",-0.274559316551098,19.809523432855,-0.363881781065955,0.72146138806399,0.999896763353946,-4.61242673961739 +"P20432",-0.16761157190647,23.5614845870789,-0.363041997662688,0.722074622898867,0.999896763353946,-4.61243938401294 +"Q9I7C6",0.253209764458918,15.4669350735355,0.362171179124407,0.722710730300925,0.999896763353946,-4.61245246598534 +"Q8IM93",-0.261564432093742,19.0786590339489,-0.362046369985512,0.722801917191927,0.999896763353946,-4.61245433846615 +"Q9VEY0",0.23517547768267,17.9110938685526,0.362005912681548,0.722831476670215,0.999896763353946,-4.61245494530373 +"A0AQH0",0.140280912117444,16.853287844187,0.361904147072648,0.722905832108601,0.999896763353946,-4.61245647144382 +"Q9VJ22",0.310944858606529,12.9816245717618,0.361680157126165,0.723069501483312,0.999896763353946,-4.61245982907989 +"Q9VSL4",-0.174532399177714,20.9375812033228,-0.360520323924242,0.723917216358999,0.999896763353946,-4.61247718308939 +"Q9V8Y2",0.114015134291556,19.8865975230946,0.359663774912629,0.724543504581683,0.999896763353946,-4.61248996473392 +"Q7JYH3",0.230777043598405,19.3413255899531,0.358938735199933,0.725073796587658,0.999896763353946,-4.61250076106771 +"Q6NL44",0.239495848073055,15.310139198492,0.358827773525855,0.7251549665901,0.999896763353946,-4.61250241150996 +"Q9VVU1",0.257985751211709,22.2599620065146,0.358627664764828,0.725301357602464,0.999896763353946,-4.61250538668144 +"Q868Z9",-0.203479629309562,20.3730720227694,-0.358402860490479,0.725465828111037,0.999896763353946,-4.61250872711237 +"A1ZBK7",-0.163858997537158,17.6033643475218,-0.357972685627977,0.725780590370505,0.999896763353946,-4.61251511357563 +"Q9VSY8",-0.148020104792099,18.0552330128669,-0.357458033989363,0.72615723260834,0.999896763353946,-4.61252274448442 +"Q9VP18",-0.0985649510716087,17.1035307551244,-0.357301367742452,0.726271901731302,0.999896763353946,-4.61252506532504 +"Q9VE75",-0.157897705040007,15.5188978356225,-0.356384611188497,0.72694304233746,0.999896763353946,-4.61253862641571 +"Q9VMM6",-0.206171508198793,18.3857256503255,-0.355220147579712,0.72779586068242,0.999896763353946,-4.61255580326647 +"Q9Y114",-0.116880509190295,18.6138248886439,-0.354713250223848,0.728167214360674,0.999896763353946,-4.61256326350573 +"B7Z0C9",-0.21959498139398,15.9848314618686,-0.354411656329295,0.728388196129443,0.999896763353946,-4.61256769732465 +"E2QCN9",-0.175799871960781,17.357653424546,-0.352971651393317,0.729443652256915,0.999896763353946,-4.61258881709298 +"Q7KUA4",-0.214540315869378,18.7689083560596,-0.35245861420871,0.729819822369576,0.999896763353946,-4.61259632148506 +"Q7KJ08",0.234362019393307,14.5644999589179,0.352357167111762,0.729894214170708,0.999896763353946,-4.61259780414339 +"Q709R6",-0.346798708032592,15.1308553251443,-0.352152521657216,0.730044290584791,0.999896763353946,-4.61260079380138 +"P48375",-0.209558940161571,21.9563251389674,-0.351773830358181,0.730322033554274,0.999896763353946,-4.61260632166793 +"Q6IDF5",-0.184003266637923,19.6335155888803,-0.351269454339645,0.730692018342773,0.999896763353946,-4.61261367527621 +"Q9VSX2",-0.177552898803857,17.9673978284464,-0.350087805548556,0.731559088970306,0.999896763353946,-4.61263086337756 +"Q9U9Q2",-0.216782679439063,15.5831075909112,-0.34994258244206,0.731665677165866,0.999896763353946,-4.61263297191476 +"Q9I7X6",0.206503963831992,14.8694631495357,0.349455884829206,0.732022936540697,0.999896763353946,-4.61264003226212 +"Q9VZX9",0.170437508524653,18.5485652599297,0.349277971099714,0.73215354987307,0.999896763353946,-4.61264261082449 +"Q7JZK1",-0.166670062189922,21.5233492744515,-0.349106508799288,0.732279435127574,0.999896763353946,-4.61264509468431 +"Q24439",-0.241374411422999,24.295981650554,-0.348646866058514,0.732616937996561,0.999896763353946,-4.612651747411 +"Q9VM69",-0.249121016532271,16.8164002282485,-0.348563014212265,0.732678514276933,0.999896763353946,-4.61265296014371 +"Q8SZ63",-0.122833176175485,14.0131780181936,-0.348384513376522,0.732809602049567,0.999896763353946,-4.61265554082789 +"A0A0B4KHJ9",-0.221209878418961,24.5701970479768,-0.34827120923338,0.732892815051828,0.999896763353946,-4.61265717826544 +"Q9V3F8",-0.127814080787697,18.5478657235522,-0.347933551693832,0.733140818718622,0.999896763353946,-4.61266205494018 +"Q9VN73",0.216966172857155,18.4107303888028,0.347815472942761,0.733227552846336,0.999896763353946,-4.61266375923378 +"Q9W3B3",-0.242545046210155,15.671339866835,-0.347601786936094,0.733384524410057,0.999896763353946,-4.61266684205729 +"P13677",-0.235542973497996,17.121861378584,-0.347354588266842,0.733566129498983,0.999896763353946,-4.61267040608103 +"Q9VRJ5",-0.169604577648478,17.258121864652,-0.347258934906444,0.733636405916664,0.999896763353946,-4.61267178452041 +"Q9VYY3",0.182936300772731,17.5308990554737,0.347033628005709,0.733801948453277,0.999896763353946,-4.61267502991889 +"Q9VQD7",-0.180026032819253,21.0021962050401,-0.346919781943714,0.73388560121825,0.999896763353946,-4.61267666902305 +"O61722",-0.113250926893063,18.9502903157586,-0.346758173727165,0.734004355092301,0.999896763353946,-4.61267899489287 +"Q9VQJ8",-0.170251675808455,15.2545065033807,-0.346157943836735,0.734445481374267,0.999896763353946,-4.61268762425129 +"Q8MKN0",0.152707650547534,16.5844453349051,0.345997585009621,0.734563350210924,0.999896763353946,-4.61268992724584 +"O18333",0.288581897579981,17.4998411329893,0.344746688023733,0.735483037738389,0.999896763353946,-4.61270785661531 +"Q9VY42",0.289187638795211,15.244530803861,0.343987972989447,0.736041067650572,0.999896763353946,-4.6127187008581 +"Q9U915",-0.14410490886846,21.1141023329938,-0.343837066012673,0.73615207721488,0.999896763353946,-4.61272085500377 +"Q9VN91",0.195020029936984,19.5930613818753,0.343692964651901,0.736258086177218,0.999896763353946,-4.61272291114873 +"Q9U6R9",-0.157326348178952,20.6029916051555,-0.343535126960379,0.736374206753899,0.999896763353946,-4.61272516233769 +"Q9VWI0",-0.254338961190225,20.9856061567575,-0.342886974972814,0.736851119826795,0.999896763353946,-4.61273439624209 +"Q9VRP4",0.355282302539393,14.3566133295476,0.342471610462157,0.737156806132081,0.999896763353946,-4.61274030487253 +"Q9VL16",-0.16300391734805,20.742913269403,-0.342186366595485,0.737366757314274,0.999896763353946,-4.61274435850394 +"Q9VH25",0.139751853458268,16.2165107252094,0.341995831896998,0.737507010807075,0.999896763353946,-4.6127470643936 +"Q9VGL0",-0.289125064455817,12.8425925400498,-0.341238188955036,0.738064811480405,0.999896763353946,-4.61275780968332 +"Q9VMU2",-0.109439074172418,16.2948312498843,-0.341222620960888,0.738076274738912,0.999896763353946,-4.61275803023512 +"P11046",0.171843116636911,21.0268000587632,0.341046322362551,0.738206094080739,0.999896763353946,-4.61276052717853 +"Q9VVH3",-0.12041453459257,19.9132225111463,-0.340314825970139,0.738744827843074,0.999896763353946,-4.61277087413745 +"Q9VGV9",-0.203312627861102,16.0759421131177,-0.339946536145567,0.739016120595134,0.999896763353946,-4.61277607543398 +"Q9V3L7",0.130004225516565,17.7628901859142,0.339903219487488,0.739048031251672,0.999896763353946,-4.61277668682992 +"Q9VQ93",-0.180933963895253,16.6870561409343,-0.337391745773955,0.740899044487383,0.999896763353946,-4.61281200629394 +"A1ZB79",-0.184167950715274,20.8075408090073,-0.337037141587226,0.741160530555224,0.999896763353946,-4.61281697275486 +"Q23983",-0.176161595930704,22.3784848701184,-0.337026539667184,0.741168348951167,0.999896763353946,-4.61281712116378 +"Q9W0H8",-0.186404550552734,19.412789545233,-0.336392979796058,0.741635622195613,0.999896763353946,-4.61282598172396 +"P56538",0.150097544243465,17.1130038822981,0.335942266382562,0.741968104091376,0.999896763353946,-4.61283227528595 +"Q8T0Q4",-0.182844701165365,19.9738533579807,-0.335862094427044,0.742027250885176,0.999896763353946,-4.61283339391571 +"Q9VVI2",-0.338808232031804,13.6294653114241,-0.335829426262669,0.742051352282244,0.999896763353946,-4.6128338496566 +"Q9VY05",0.237385835122073,18.2871483764362,0.335673608498495,0.742166312896097,0.999896763353946,-4.61283602281919 +"Q8I937",-0.22297096431123,14.0185280435525,-0.335475133332519,0.742312754929404,0.999896763353946,-4.61283878950285 +"P35992",0.13867401665685,15.8476677280277,0.332892309649072,0.744219397939901,0.999896763353946,-4.61287464877912 +"Q9V3Y0",-0.257885616509757,16.326290489854,-0.332111756636443,0.744795946836363,0.999896763353946,-4.61288543295382 +"Q59E14",0.164667270827273,14.5323696932996,0.330625196308391,0.745894421686555,0.999896763353946,-4.61290590352632 +"Q4V5H1",0.181433666997252,14.9212624430889,0.329937017080149,0.746403137690386,0.999896763353946,-4.6129153499111 +"Q9VUX1",0.195461024736559,16.3493309695423,0.329772532334717,0.746524746350629,0.999896763353946,-4.61291760490818 +"M9PF61",-0.156052870042679,22.7160971548803,-0.329767767684523,0.746528269108525,0.999896763353946,-4.61291767021272 +"Q9VEP6",-0.185640936944136,18.5994897709731,-0.32840044735685,0.747539444419666,0.999896763353946,-4.61293637297833 +"Q9XZ63",-0.164017095206354,18.9493450003096,-0.326621477033441,0.748855770708816,0.999896763353946,-4.61296059366399 +"Q9VER6",-0.264520356803715,14.9357164818648,-0.326066742984167,0.749266405778571,0.999896763353946,-4.61296812027136 +"Q7JXC4",-0.193414022939535,21.6541656509198,-0.325879176048054,0.749405267790775,0.999896763353946,-4.61297066236387 +"Q9VMB9",-0.207890820096651,22.5968051243714,-0.324965249576741,0.750082006975407,0.999896763353946,-4.61298302849659 +"Q9VJN0",-0.203854054638974,17.573336525988,-0.324519564568128,0.75041210296895,0.999896763353946,-4.61298904673745 +"Q9VNI4",-0.203152216286266,16.5180192375297,-0.324080415118998,0.75073740811628,0.999896763353946,-4.6129949688874 +"Q9VTT2",-0.207413104172971,14.0886599637403,-0.323853047880876,0.750905852452903,0.999896763353946,-4.61299803199081 +"Q9W0R0",-0.21367199450702,16.7072539768916,-0.323800210507129,0.750944998753616,0.999896763353946,-4.61299874351997 +"Q9VTB3",-0.164519002854824,19.7565010797234,-0.323650652500288,0.751055807570834,0.999896763353946,-4.61300075691697 +"Q94533",-0.144637596939656,15.2929972646502,-0.323580544006314,0.751107753524285,0.999896763353946,-4.61300170042885 +"Q9W1F8",-0.222850430221275,17.7024324314394,-0.32355233154672,0.751128657523855,0.999896763353946,-4.61300208005284 +"P23128",0.212480522467803,14.6397759761384,0.323504608723682,0.751164018174101,0.999896763353946,-4.61300272213318 +"Q9VW59",0.155956090842398,19.7754279890897,0.323406022854743,0.751237068090659,0.999896763353946,-4.61300404825249 +"Q9VSJ8",-0.157992524542703,15.7611928472973,-0.323281942932185,0.75132901205241,0.999896763353946,-4.61300571674534 +"Q9W445",-0.158141569067411,16.4557741783517,-0.322869593465072,0.751634593657884,0.999896763353946,-4.6130112571118 +"Q8SXF2",-0.180335213566938,15.5505292144811,-0.322810486161423,0.751678400113394,0.999896763353946,-4.61301205072071 +"Q9V9T9",0.279943921441767,13.4031181751333,0.322759535148317,0.751716162375508,0.999896763353946,-4.61301273470537 +"Q9W3T2",-0.171919305153658,16.2826420092416,-0.322602318186612,0.751832687642256,0.999896763353946,-4.61301484458162 +"Q24492",0.145836872143594,15.2298742695276,0.321814729000677,0.752416523625632,0.999896763353946,-4.61302539913137 +"Q9V431",-0.188489247062694,18.5004037208297,-0.321725023774567,0.752483031667849,0.999896763353946,-4.61302659969003 +"Q9VF39",-0.311707659402551,15.9936412749639,-0.319510852071228,0.754125279456765,0.999896763353946,-4.61305612977029 +"Q9VU35",-0.190583426697675,22.7438376938461,-0.31912734622386,0.754409851087075,0.999896763353946,-4.61306122440903 +"Q9VVA7",0.152182335916166,17.5091453152426,0.318955303060559,0.754537523781974,0.999896763353946,-4.61306350796537 +"Q9W401",-0.182257811355015,24.4786463644169,-0.318783343216552,0.754665142099353,0.999896763353946,-4.61306578922061 +"Q9VX36",-0.157098627555559,22.2412937215863,-0.318733683685238,0.754701997821302,0.999896763353946,-4.61306644779196 +"Q9VIV6",0.644546565279587,14.7912804362585,0.318638747855283,0.754772457898069,0.999896763353946,-4.61306770652803 +"Q7JR58",-0.189924345697566,22.8290580560676,-0.318592921105411,0.754806470698233,0.999896763353946,-4.61306831400583 +"Q9VV75",-0.129894460898683,23.9974907344119,-0.317965685428121,0.755272060681015,0.999896763353946,-4.61307662008898 +"P07486",0.184540750154074,22.2325332583904,0.31768768595668,0.755478448191599,0.999896763353946,-4.61308029637335 +"M9PGG8",-0.205526462731118,18.4768028910806,-0.317615313162021,0.755532181121847,0.999896763353946,-4.61308125292371 +"A1Z8Z7",0.0900727391310667,18.8257386511884,0.316973839560086,0.756008498425571,0.999896763353946,-4.61308972201681 +"Q4QPU3",0.286898624626978,14.4685897794944,0.316522335636311,0.756343818236589,0.999896763353946,-4.6130956730481 +"Q9W1X4",0.262777214724691,15.0923813133813,0.316244510730042,0.756550176680004,0.999896763353946,-4.61309933081268 +"Q9VG73",-0.12185075804069,18.0358205372605,-0.316022532800124,0.75671506785421,0.999896763353946,-4.61310225106841 +"Q7KN94",-0.145848039819526,22.647662224017,-0.315958210954969,0.756762850151995,0.999896763353946,-4.61310309688934 +"A1Z9I0",-0.188450396109054,19.4107284515063,-0.315291077518918,0.757258499622408,0.999896763353946,-4.61311185970842 +"Q9VKZ8",0.185521980312448,18.7710431696598,0.314920029395766,0.757534219378377,0.999896763353946,-4.61311672564669 +"Q9VGT8",0.153536227036911,15.2979873906463,0.313931293433637,0.758269100226957,0.999896763353946,-4.61312966476928 +"Q9W289",-0.139397739191153,17.4922387611887,-0.313567796129313,0.758539331754609,0.999896763353946,-4.61313441174328 +"Q9VUJ1",0.190776436051046,19.9923078679351,0.313202600407357,0.758810858953571,0.999896763353946,-4.61313917551254 +"Q9VVP9",-0.240318948740526,16.6235821408519,-0.312945662571216,0.759001914998663,0.999896763353946,-4.61314252388489 +"Q9VG69",-0.184294156507448,19.9964492506887,-0.312337443308088,0.759454245087552,0.999896763353946,-4.6131504394505 +"Q9W0B3",-0.150252370139473,19.1612708625215,-0.312306739044017,0.759477082146615,0.999896763353946,-4.61315083864883 +"Q9VG33",-0.134141643047279,19.9411787797578,-0.311843303463279,0.759821802183916,0.999896763353946,-4.61315685932347 +"Q9VJI5",0.2512832881153,17.4692295494184,0.311516361204215,0.760065025507845,0.999896763353946,-4.61316110152841 +"O97477",0.164796504065535,20.9218186361389,0.310997221645015,0.760451285052749,0.999896763353946,-4.61316782867657 +"P17210",-0.177714422314082,20.8521212317906,-0.310982147296613,0.76046250193319,0.999896763353946,-4.61316802385093 +"Q9VA97",-0.115655962887409,18.5605371415127,-0.310698971938876,0.760673224207013,0.999896763353946,-4.61317168853926 +"Q7K3D4",0.149820296652866,18.5538020345629,0.310511499156722,0.760812741175808,0.999896763353946,-4.61317411291464 +"Q9VIS4",-0.0838357425922389,14.0775334046946,-0.310066708247719,0.761143788514942,0.999896763353946,-4.61317985920179 +"Q9V9M7",0.236384479821631,18.3539368219049,0.309401886165559,0.761638690490914,0.999896763353946,-4.61318843314714 +"Q9VDI5",0.196958475016011,16.649817923907,0.309350049534827,0.761677282894934,0.999896763353946,-4.61318910091102 +"O46106",-0.133048069234949,17.017338906326,-0.308714739426982,0.762150325181782,0.999896763353946,-4.61319727618602 +"P36241",-0.11822274566217,19.7298583231501,-0.308581007242699,0.762249912738628,0.999896763353946,-4.61319899499016 +"A1ZAL1",-0.197783320794773,17.3218645160112,-0.30843825848405,0.762356219579612,0.999896763353946,-4.61320082888091 +"Q9VAN1",-0.313730014222166,14.7424021381588,-0.308203825333263,0.762530815785595,0.999896763353946,-4.61320383884775 +"Q7K188",-0.229332205438411,22.0035646016215,-0.307273157989425,0.763224071163212,0.999896763353946,-4.61321576602859 +"Q9V9V4",-0.209227371851021,18.6082906320472,-0.306806389665576,0.763571847089157,0.999896763353946,-4.6132217347851 +"A1Z6X6",-0.101265993457037,18.5587617420513,-0.306188987813603,0.76403193730199,0.999896763353946,-4.61322961618504 +"P16378",0.216311301651842,20.4805134022107,0.305780975559093,0.764336040449764,0.999896763353946,-4.61323481615465 +"Q7JYZ0",-0.219494477249665,16.8292776102509,-0.305492931922762,0.764550751913757,0.999896763353946,-4.6132384831021 +"Q24185",-0.145640685474259,18.7194646078084,-0.30528997352153,0.76470205182802,0.999896763353946,-4.61324106484888 +"Q6WV19",-0.0936104173742649,13.4477804589056,-0.30508409458322,0.764855539126041,0.999896763353946,-4.61324368203968 +"Q95SN8",-0.0892019101209591,17.6332862826494,-0.304332413711059,0.765416020983537,0.999896763353946,-4.61325322301995 +"O44386",0.100053988947852,16.8591629787653,0.304198151279613,0.765516146548732,0.999896763353946,-4.61325492478161 +"Q9VKI8",-0.141399093697192,22.3544367745142,-0.30375769222472,0.765844647359737,0.999896763353946,-4.61326050241702 +"Q24583",-0.189308699849295,21.2388733317095,-0.303235333458332,0.766234290866189,0.999896763353946,-4.6132671069644 +"O77134",-0.176236956544784,21.7108852269721,-0.302899735633675,0.766484658330647,0.999896763353946,-4.61327134432062 +"Q9Y105",0.247386430449282,17.2073940152642,0.302498748672335,0.766783843882959,0.999896763353946,-4.61327640130584 +"Q9VRU1",0.156588850521324,17.2219290544111,0.302348158649193,0.766896212536724,0.999896763353946,-4.6132782987631 +"Q9W3V3",0.172246465448479,13.0603453209085,0.301465901010053,0.767554653126978,0.999896763353946,-4.61328939684972 +"Q9V400",-0.123631784221594,14.3482319554801,-0.301190069718142,0.767760547997631,0.999896763353946,-4.61329286010007 +"Q8IPD8",-0.224986545644839,18.3132308231899,-0.30107708668514,0.767844889692093,0.999896763353946,-4.61329427778747 +"Q9VXJ7",-0.11629733188772,14.9455248169449,-0.30028809596065,0.768433955446216,0.999896763353946,-4.61330416342954 +"Q9VBU9",0.190502635987905,20.8520681583855,0.299560228534906,0.768977518033712,0.999896763353946,-4.61331326081027 +"Q9VPL3",0.140736765528091,15.7123345066666,0.298818300059889,0.769531711225463,0.999896763353946,-4.61332251178884 +"Q9VC66",-0.133724481869756,17.7146013080975,-0.298230007945808,0.769971236813566,0.999896763353946,-4.61332983120624 +"Q9VGP6",0.142160158360614,17.9379005720356,0.297170068248265,0.770763347693924,0.999896763353946,-4.61334298327826 +"O46067",-0.159851136677158,19.7391607175898,-0.297101249788126,0.770814786096742,0.999896763353946,-4.61334383562138 +"P25171",-0.151669297025471,16.7384107035,-0.296587777992976,0.771198616286544,0.999896763353946,-4.61335018909098 +"Q7K1M4",0.211362916268374,17.1877288880678,0.296379436089435,0.771354373698498,0.999896763353946,-4.61335276396381 +"Q9VXG4",-0.157571751702228,19.914670997339,-0.29635772186142,0.771370607950015,0.999896763353946,-4.61335303222585 +"Q9VSC5",-0.0933378561962996,19.4250401027264,-0.295736886382877,0.771834811482947,0.999896763353946,-4.6133606940461 +"Q8SXY6",0.201689704079808,19.1553901684378,0.295630383288372,0.771914453811018,0.999896763353946,-4.61336200684148 +"Q8IR45",-0.178762668703515,14.8202047794408,-0.295119529444025,0.772296504162449,0.999896763353946,-4.61336829739768 +"Q0E9B7",-0.256644974370444,12.7484747445179,-0.294253275811938,0.772944486283246,0.999896763353946,-4.61337894002333 +"Q9VEB3",-0.268091495924514,12.2713924269035,-0.293760262544797,0.773313352740151,0.999896763353946,-4.61338498346178 +"Q9VZ49",0.101805887689618,18.9256670141064,0.29373843591966,0.773329684469266,0.999896763353946,-4.61338525078763 +"Q9VF70",-0.152991316216998,15.9166029432823,-0.293660235470352,0.773388198717018,0.999896763353946,-4.61338620840379 +"Q9VHX2",-0.147365282261616,14.8269573239446,-0.292998349265868,0.773883518842599,0.999896763353946,-4.61339430367369 +"Q9VEB1",-0.134201238114258,25.1796611802665,-0.292631896252422,0.774157796669348,0.999896763353946,-4.61339877795061 +"Q9V597",-0.145487786866195,20.0339671709376,-0.292253300917333,0.774441195544085,0.999896763353946,-4.61340339474278 +"Q9VQD8",0.100553688739694,17.5959541396048,0.292184049078442,0.774493037869869,0.999896763353946,-4.61340423860539 +"Q9W3N6",0.118209500677576,16.1297701981734,0.291865002457933,0.774731892446858,0.999896763353946,-4.61340812380106 +"Q9VVG0",0.156087417207711,18.0868285273628,0.291187444411791,0.775239225577037,0.999896763353946,-4.61341636103472 +"Q9VQR2",-0.154580192753652,21.3432358639661,-0.291053128810308,0.775339809351857,0.999896763353946,-4.61341799172205 +"Q9VZ67",0.167014832728595,15.1286344604612,0.290192705118895,0.775984246829282,0.999896763353946,-4.6134284204592 +"Q9VJJ1",-0.117820816226866,14.0243795029116,-0.290033541974334,0.776103475164563,0.999896763353946,-4.61343034628749 +"Q9VEA1",0.123192262654236,18.2134162765109,0.289906143292565,0.776198913123452,0.999896763353946,-4.61343188703169 +"Q9U616",-0.112532577935106,19.7513678210464,-0.289376446438264,0.776595764304797,0.999896763353946,-4.61343828603487 +"Q9VEX6",-0.151496031129497,20.7757661654219,-0.289280269641991,0.776667827337349,0.999896763353946,-4.61343944667312 +"Q9VXE8",-0.1712773814338,16.2797443141354,-0.289229211470723,0.776706084903988,0.999896763353946,-4.61344006267768 +"Q9VAN0",0.169774965661581,20.4317827130449,0.289086903311928,0.776812718690756,0.999896763353946,-4.61344177903107 +"Q7K1C5",-0.179468614521941,17.4993698506647,-0.288764332732349,0.777054443312703,0.999896763353946,-4.61344566644388 +"Q7K0X9",-0.178191847570332,16.6766499687872,-0.288097397876032,0.777554300186568,0.999896763353946,-4.6134536904735 +"Q9VEC8",-0.203576703449613,16.5023516164629,-0.288052591469641,0.777587885535694,0.999896763353946,-4.61345422889902 +"Q9W127",-0.194989240625997,18.6438369047256,-0.288034028924942,0.777601799519443,0.999896763353946,-4.61345445193575 +"Q9VUN9",0.138202734480291,16.7556766928651,0.287892753721376,0.777707698206872,0.999896763353946,-4.61345614895643 +"Q9VMY9",0.105393572284404,14.9502014445866,0.287773556866327,0.777797050724139,0.999896763353946,-4.61345758013599 +"Q24090",0.139174873475488,15.8383826879784,0.287453938121084,0.778036659910235,0.999896763353946,-4.61346141489555 +"Q02910",-0.228154983279868,16.2575855564485,-0.287039936416946,0.77834706023299,0.999896763353946,-4.613466375867 +"P45888",0.312846456651318,17.1822515874422,0.286934408773816,0.778426186523987,0.999896763353946,-4.61346763928502 +"Q9VZG0",0.135036184951627,21.6690312800951,0.285581069402349,0.779441167864054,0.999896763353946,-4.61348380176222 +"Q9Y171",0.363028862968081,15.016518500866,0.284922282970019,0.779935397890462,0.999896763353946,-4.61349164241319 +"Q9VA18",-0.104415267811007,21.5643485186051,-0.283905927945653,0.780698074410966,0.999896763353946,-4.6135037040183 +"Q9VJD4",-0.150907297084103,20.7705144012286,-0.282111002759984,0.78204556555899,0.999896763353946,-4.61352490242502 +"Q9VM50",0.155408317678759,13.4789758377264,0.281885685543441,0.782214767815653,0.999896763353946,-4.61352755418033 +"Q9VZV2",0.119923928313401,15.0368126342303,0.281529570409344,0.782482216304879,0.999896763353946,-4.61353174107084 +"Q9VZZ5",-0.161935425429661,18.487787372841,-0.281046557988682,0.782845012489752,0.999896763353946,-4.61353741164015 +"Q24319",0.360631693535552,16.407598378186,0.280530975787837,0.783232330162459,0.999896763353946,-4.61354345407431 +"Q9VPZ5",-0.218914166449238,18.3623459960229,-0.28008511237985,0.78356732158737,0.999896763353946,-4.6135486706826 +"Q7JV09",-0.145262702453937,15.1197229386053,-0.27981433262155,0.783770788851296,0.999896763353946,-4.61355183484958 +"Q8T3X9",-0.133598102822894,18.350149122472,-0.279527243605609,0.783986529049238,0.999896763353946,-4.61355518632794 +"Q9VBP6",-0.165775130019551,23.164683707806,-0.279408830293923,0.784075519063662,0.999896763353946,-4.6135565677054 +"Q9VM07",0.223645669565354,16.8725476346678,0.279290710530381,0.784164291598984,0.999896763353946,-4.61355794508815 +"Q9VVL7",-0.116918082638655,23.5257696861805,-0.279072627623374,0.78432819932462,0.999896763353946,-4.61356048663452 +"Q8MKK0",-0.515338439880715,15.8237748845118,-0.278472716751122,0.784779137881203,0.999896763353946,-4.6135674680011 +"O61443",0.251101374282172,16.4797767656809,0.278065364042276,0.785085380915169,0.999896763353946,-4.61357220012636 +"Q0KI98",0.162742660985185,16.648311637184,0.277987829866437,0.785143674400426,0.999896763353946,-4.61357310005594 +"Q9VVW7",-0.277312845573892,16.5891906259764,-0.277154284486567,0.785770453776857,0.999896763353946,-4.61358275940729 +"Q9VSL2",-0.16848065233237,20.4625799437762,-0.276739336243989,0.786082529191179,0.999896763353946,-4.61358755736135 +"Q9VJZ1",0.2137254229098,15.4427244885025,0.276726079872872,0.78609249970954,0.999896763353946,-4.61358771052589 +"Q8MT58",0.143667945754895,21.6107204410559,0.276692262401774,0.786117935030849,0.999896763353946,-4.61358810122151 +"Q8MRM0",-0.207375925904085,18.5296618039178,-0.276495627912762,0.786265835843259,0.999896763353946,-4.61359037202808 +"Q9VNR6",-0.12542850615003,14.6861017965509,-0.276376167687456,0.786355693365412,0.999896763353946,-4.61359175082693 +"Q7JWD3",-0.260452218015796,17.15183859357,-0.276010713606339,0.786630606161757,0.999896763353946,-4.61359596524429 +"Q7JWQ7",-0.255194504553589,14.2116621725872,-0.275974222915099,0.786658057905361,0.999896763353946,-4.61359638575542 +"P19107",0.143124115527698,24.1263181617271,0.275777318589169,0.786806193019511,0.999896763353946,-4.61359865390112 +"Q9W2X6",-0.132961347499869,24.1388795909056,-0.274701770758563,0.787615500730359,0.999896763353946,-4.6136110152025 +"Q9VGU6",0.0928640659202138,18.5419958941332,0.274482723346155,0.787780356643582,0.999896763353946,-4.61361352692639 +"Q9VBL3",-0.202599515241598,14.4797834127239,-0.273986202299092,0.788154079399392,0.999896763353946,-4.61361921306238 +"P25455",0.169090033926963,15.8392325607733,0.27352560428385,0.788500812006777,0.999896763353946,-4.61362447879984 +"P55830",-0.127115120424456,21.9755504954389,-0.27285884074863,0.789002826056633,0.999896763353946,-4.6136320861383 +"Q9VK11",0.133031014747456,18.7821825475055,0.272295580846674,0.789426986943015,0.999896763353946,-4.61363849840463 +"Q9W0Y1",-0.0956860510840265,17.6477306977507,-0.271978068105218,0.789666119391677,0.999896763353946,-4.6136421073173 +"A1ZB71",-0.220511095175958,19.2686060362888,-0.271863579423647,0.789752351127958,0.999896763353946,-4.61364340760706 +"Q9VPU6",-0.159761515581454,15.2615327091343,-0.271705129446989,0.789871698797653,0.999896763353946,-4.61364520629699 +"Q9VY24",0.0962900091181389,17.7282035315322,0.271610951665074,0.789942637970977,0.999896763353946,-4.61364627489635 +"Q7K1W5",-0.160061182153282,19.7939368639035,-0.270987203267032,0.790412523694897,0.999896763353946,-4.61365334317409 +"Q9VWD0",-0.150419973662792,18.2049378541717,-0.270479661921851,0.790794930189718,0.999896763353946,-4.61365908285813 +"Q9V406",-0.205292008730666,17.0542126984931,-0.269893485001513,0.791236654267099,0.999896763353946,-4.6136656987029 +"Q9VRL0",-0.146590836953028,22.7771550293313,-0.269668876497623,0.791405931779362,0.999896763353946,-4.61366823000581 +"Q9VM58",0.231369917866669,16.3932305349826,0.269323917797401,0.791665933219065,0.999896763353946,-4.61367211361719 +"P09208",-0.220493564368351,12.6859058409543,-0.26859671516096,0.79221412303079,0.999896763353946,-4.61368028465211 +"Q9W1X8",0.0777752937224712,16.0906819310985,0.268317865560784,0.792424359560024,0.999896763353946,-4.6136834121372 +"Q9V3I0",0.246702165515174,16.2731922365196,0.268274398195155,0.792457132961198,0.999896763353946,-4.61368389936612 +"P48604",-0.173626433931688,20.1115545636477,-0.267308920742797,0.793185185915748,0.999896763353946,-4.6136947015385 +"Q9VGE4",-0.121830212969471,15.6704295408524,-0.26728265811834,0.793204992995308,0.999896763353946,-4.61369499484282 +"Q8SX57",-0.109162978760853,17.9735269076282,-0.26639369580171,0.793875529290314,0.999896763353946,-4.6137049062322 +"Q9VLS4",-0.163735083812934,20.6129039736447,-0.26619616408826,0.794024548716337,0.999896763353946,-4.61370710419705 +"Q9VMD3",0.248619105836429,17.7312651630121,0.266129266772368,0.794075018455465,0.999896763353946,-4.6137078482113 +"Q70PY2",0.117742402018088,17.1146156319315,0.266009873031137,0.794165095766692,0.999896763353946,-4.6137091756215 +"Q9VYG8",0.116749287651263,15.0114754895941,0.265965057416118,0.794198907959401,0.999896763353946,-4.6137096737273 +"Q9VGA3",0.157062366906494,19.3883005009227,0.26549060661312,0.794556894866273,0.999896763353946,-4.61371494199419 +"P05205",-0.172171350652796,18.0903249449174,-0.265336108101921,0.794673478868504,0.999896763353946,-4.61371665554455 +"M9NEW0",-0.153308627720161,18.3498017894269,-0.265160308935302,0.794806142468796,0.999896763353946,-4.61371860415241 +"Q9VWT3",-0.109750543788586,14.2966069169381,-0.265070082746197,0.794874232561838,0.999896763353946,-4.61371960375356 +"Q9VIE7",-0.166611062029185,14.945685839562,-0.264402248941109,0.795378273994952,0.999896763353946,-4.61372699220646 +"Q9VGR1",-0.182349279044159,14.1374567641641,-0.264104230901283,0.795603231036679,0.999896763353946,-4.61373028337712 +"Q03427",-0.14043184536402,21.7367999195033,-0.264082981560255,0.795619271689882,0.999896763353946,-4.61373051790585 +"Q7K1H0",-0.147328924088246,16.3149008989566,-0.263959864708727,0.795712211743059,0.999896763353946,-4.61373187638106 +"Q9W3X7",-0.136711035978205,21.6756880363961,-0.263882386711061,0.795770700995949,0.999896763353946,-4.61373273095736 +"Q7K159",-0.204754779535394,14.6092944452061,-0.263763683897623,0.79586031392921,0.999896763353946,-4.61373403976314 +"Q9W3K6",0.115227992315944,16.3258849490945,0.263588974462495,0.795992213679024,0.999896763353946,-4.61373596504241 +"Q9U9P7",-0.189252337480045,16.6361665346302,-0.263296675250542,0.796212904249171,0.999896763353946,-4.61373918335191 +"Q9VBC1",-0.213430396857818,13.1575337108514,-0.263205988614036,0.796281377792007,0.999896763353946,-4.61374018112975 +"Q9VC67",-0.159591982447779,15.1141579893859,-0.262925595928026,0.796493101168968,0.999896763353946,-4.61374326401272 +"Q9V773",-0.14108653474316,15.5600434976532,-0.260459454769052,0.798355990037497,0.999896763353946,-4.61377024012688 +"Q9VVT6",-0.152090111382915,20.4961778913781,-0.259980966173212,0.798717582014175,0.999896763353946,-4.61377544523837 +"A1ZB69",-0.218352506888397,20.4066737873166,-0.259598991813214,0.799006273021163,0.999896763353946,-4.61377959370661 +"Q95SK3",-0.167526746622187,17.211267105623,-0.259501667566685,0.799079834243954,0.999896763353946,-4.61378064974922 +"Q9V3Z4",0.18423260888682,18.810966981645,0.259400010648578,0.799156672375487,0.999896763353946,-4.61378175238987 +"P21914",-0.106605827868435,22.9408814338135,-0.258925770791084,0.799515158633998,0.999896763353946,-4.61378689072013 +"Q9VXF9",-0.176776152478503,17.4500926738035,-0.258860230875538,0.799564705107265,0.999896763353946,-4.61378760011154 +"P55841",0.116969449174835,20.6135059279887,0.258004392057185,0.800211779289199,0.999896763353946,-4.61379684737344 +"Q7JNE1",-0.144987648750835,17.8061660341541,-0.257465855527164,0.80061902889356,0.999896763353946,-4.61380265081012 +"Q9VRQ9",0.191028546849024,14.7215020155033,0.256573760355463,0.801293777543749,0.999896763353946,-4.61381223812224 +"P54352",0.198251178365819,16.1180531439139,0.2563621397318,0.801453863973148,0.999896763353946,-4.61381450760867 +"Q9V9X4",-0.151680178121676,18.7365809517768,-0.256066203423406,0.801677748941414,0.999896763353946,-4.61381767824105 +"Q9VA32",0.16917374166092,17.1851845348677,0.255998011787097,0.801729340590923,0.999896763353946,-4.61381840832998 +"Q9VZ24",-0.125894560612675,21.9058836765275,-0.25502018827033,0.802469236753006,0.999896763353946,-4.61382885633781 +"Q9VY78",-0.175972641657108,18.7824671575719,-0.254967593208379,0.802509039793562,0.999896763353946,-4.6138294172018 +"Q94529",-0.0953596309385176,19.6615464086985,-0.254319911443709,0.802999240917408,0.999896763353946,-4.61383631465019 +"Q9W086",0.201032115638522,16.8082198231969,0.254027833369233,0.803220329855857,0.999896763353946,-4.61383941948371 +"Q9VND7",-0.186419632231974,13.9364598998831,-0.253708160250631,0.803462326975242,0.999896763353946,-4.61384281364187 +"Q8I941",-0.14573879175461,19.0511352663361,-0.253671504517425,0.803490077228617,0.999896763353946,-4.61384320256927 +"Q9VN50",0.137732080987796,17.8043489316539,0.2530193301767,0.803983852370427,0.999896763353946,-4.61385011309422 +"Q9VC53",-0.125507851593042,17.8896260826794,-0.251147474247665,0.805401556949424,0.999896763353946,-4.61386985050082 +"Q9W227",-0.179415151368122,21.954687781171,-0.250372787690609,0.80598849686946,0.999896763353946,-4.61387797691302 +"Q8MLW4",-0.137920804320498,18.6267725613969,-0.249859335530474,0.806377580006147,0.999896763353946,-4.61388334940444 +"A0A0B4LFA6",0.123695192022165,19.5087790038833,0.249833135568095,0.806397435210928,0.999896763353946,-4.61388362325645 +"Q9VF51",0.10641345258172,17.6610884696007,0.248963510539641,0.807056544698274,0.999896763353946,-4.61389269690059 +"Q95083",0.134448551675028,19.8836506179867,0.248762222203652,0.807209127649115,0.999896763353946,-4.61389479270762 +"Q9VHM3",0.0744182303618341,14.7700292341107,0.248516268624433,0.807395579345791,0.999896763353946,-4.61389735130674 +"P14484",0.117046062956337,19.2092855912936,0.248465586397332,0.807434001877631,0.999896763353946,-4.61389787823341 +"Q9VB17",0.131250207744333,15.6404225409362,0.247895909037868,0.807865913569447,0.999896763353946,-4.61390379371982 +"Q9W0X2",-0.194332709101678,16.0392377675833,-0.24783400934737,0.807912847918885,0.999896763353946,-4.61390443567787 +"Q9V3E3",0.225435257844959,14.964568038385,0.247257462164405,0.808350041563807,0.999896763353946,-4.61391040744767 +"Q8SX68",-0.200475297050367,17.5819923829387,-0.24697623698289,0.808563317759521,0.999896763353946,-4.61391331536702 +"Q95RF6",0.173348906109016,17.2961078038605,0.246733236590978,0.808747617691269,0.999896763353946,-4.61391582541595 +"Q9V3Z9",-0.0819308523648985,21.6338968610421,-0.246663918222301,0.808800193311548,0.999896763353946,-4.61391654098815 +"Q9V4W1",-0.220756453207246,13.5288508104444,-0.246436813875683,0.808972450941443,0.999896763353946,-4.61391888399779 +"Q9VMR0",0.134158953933891,17.3046121692246,0.24579936736762,0.809456006233922,0.999896763353946,-4.61392544912794 +"Q9VFR0",-0.220225514131689,15.2984249751179,-0.244985037001534,0.810073860068755,0.999896763353946,-4.61393381169019 +"Q9W1M9",-0.22082559450735,14.2257678413941,-0.244573189152154,0.810386389996034,0.999896763353946,-4.61393803067158 +"Q7KN90",-0.186041787233417,17.2664010790091,-0.244468818287929,0.810465596961556,0.999896763353946,-4.61393909874144 +"Q9W329",-0.12886011331851,16.4564491524834,-0.243522775217712,0.811183646625628,0.999896763353946,-4.61394875954428 +"Q9W2M4",-0.130549574097444,22.6679677187485,-0.243170026947387,0.811451428926121,0.999896763353946,-4.61395235231288 +"Q9VB05",0.118015917930322,20.1983453454913,0.242620069037371,0.811868968186272,0.999896763353946,-4.61395794346132 +"Q9VH39",-0.203981985748801,18.3919284184357,-0.242303129018559,0.812109622545465,0.999896763353946,-4.61396115997857 +"Q7K1U0",-0.17458895191271,16.6679155407177,-0.242117621444308,0.812250488660493,0.999896763353946,-4.61396304071403 +"Q9VJ31",0.179702651150976,17.2555504031404,0.241731757482153,0.812543518051373,0.999896763353946,-4.61396694818926 +"Q9VAS1",0.11428910507572,13.0280003445266,0.241218594019783,0.812933265318629,0.999896763353946,-4.61397213527458 +"Q9VMH2",-0.213594174848783,17.3279775653262,-0.240822245807227,0.813234326763983,0.999896763353946,-4.61397613416407 +"Q9VEP9",-0.135933951743638,17.5404749985477,-0.240355366990538,0.813589001793544,0.999896763353946,-4.61398083636325 +"Q9VRP2",0.111918089239055,20.4207618516282,0.240348558884942,0.813594174039251,0.999896763353946,-4.61398090486512 +"Q9VAG9",-0.258292776352647,17.4481380958779,-0.239791705700815,0.814017256446871,0.999896763353946,-4.61398650135333 +"Q9W337",-0.206069858865163,17.8397642348909,-0.23936857116385,0.814338783295131,0.999896763353946,-4.61399074540329 +"Q9VRY5",-0.151994912730196,16.863230128426,-0.238433705143318,0.815049282310008,0.999896763353946,-4.61400009598763 +"Q9W2E8",-0.15913868007264,19.3598674565153,-0.238059333738706,0.815333852386068,0.999896763353946,-4.61400383037702 +"P08985",-0.139900705689733,20.6692362312678,-0.237448611133467,0.815798137681604,0.999896763353946,-4.61400990999864 +"O97062",-0.177149269027161,18.4777329819553,-0.236472450698686,0.816540386450269,0.999896763353946,-4.61401959556745 +"O46098",-0.178972705184329,18.0241672552701,-0.234703407900785,0.817885989709197,0.999896763353946,-4.61403704812688 +"Q9W5W8",0.155965114105488,20.6603429621927,0.234165157363452,0.818295522790935,0.999896763353946,-4.61404233266115 +"O15971",0.164614921072825,17.22846664386,0.233053150188322,0.819141778620349,0.999896763353946,-4.61405321249582 +"Q9VXM4",0.085447362429214,20.1302889417902,0.232985745056076,0.819193082582089,0.999896763353946,-4.61405387034588 +"Q9VFB2",0.200898586833077,16.4001988475439,0.23268016826483,0.819425676554347,0.999896763353946,-4.61405685031623 +"Q9VKW5",0.186142227959412,17.0242872667082,0.232376849464733,0.819656569298039,0.999896763353946,-4.61405980445825 +"Q9VXN1",-0.152286974206621,13.6740885749815,-0.232140051530364,0.819836837025181,0.999896763353946,-4.61406210808962 +"Q9VTB0",-0.174322038580737,16.9768083622871,-0.230149229885943,0.821352812210184,0.999896763353946,-4.61408138384486 +"Q9VLP2",-0.170192200740413,19.3539726736026,-0.229764911525579,0.821645549451895,0.999896763353946,-4.61408508610426 +"Q9VKU3",0.218547919479484,15.4910810123479,0.229385033311347,0.821934931753748,0.999896763353946,-4.61408873960052 +"Q9VQ35",0.223616549325397,12.3065356160047,0.229223033639626,0.822058347496073,0.999896763353946,-4.61409029582847 +"A1Z8Z3",-0.121278446603622,20.0609538155478,-0.228957575349107,0.822260591403528,0.999896763353946,-4.61409284357613 +"Q9I7K6",-0.278780094355408,16.2267341356931,-0.228269544260266,0.822784840673407,0.999896763353946,-4.6140994334464 +"Q9W2N5",0.265837348609141,12.8485670836556,0.228093081904242,0.822919311372501,0.999896763353946,-4.61410112043097 +"Q9VC48",0.153663825990677,18.4197975038502,0.228018061126587,0.822976481671212,0.999896763353946,-4.6141018372421 +"Q8MLS2",0.215791353962722,17.4029210571991,0.227853367266185,0.8231019918618,0.999896763353946,-4.61410341004984 +"P16620",0.157768736263236,17.3250638781419,0.227333683693069,0.823498066222411,0.999896763353946,-4.61410836562792 +"Q9VVH5",-0.132277858995071,22.5632545494553,-0.227231345508622,0.823576068678322,0.999896763353946,-4.61410934018631 +"Q7KK90",-0.123780871857932,21.0925393441282,-0.227176767780369,0.823617668770858,0.999896763353946,-4.61410985974889 +"E1JGR3",-0.063868015245351,12.13497242112,-0.226725272040205,0.823961827792545,0.999896763353946,-4.61411415312745 +"Q95R34",0.178798631298603,15.2971669278321,0.226523189493716,0.824115880274966,0.999896763353946,-4.61411607205092 +"Q9W074",0.136929568528227,13.6415521823781,0.225354778357792,0.825006736282673,0.999896763353946,-4.61412713391736 +"Q8SZA8",-0.120109367924425,18.0460217000376,-0.22433092002635,0.825787584009209,0.999896763353946,-4.61413678088646 +"P45889",0.0908818141539633,19.1475681499546,0.224001572531839,0.826038802357296,0.999896763353946,-4.61413987485019 +"O76454",-0.0884475095129389,17.9834407711386,-0.223275612151507,0.826592617379311,0.999896763353946,-4.61414667885836 +"Q9VFJ2",0.126363829829039,13.8526389134251,0.223006219214908,0.826798154193416,0.999896763353946,-4.61414919818368 +"Q7K084",-0.13844008758414,23.6785214563872,-0.222973188472677,0.826823356332509,0.999896763353946,-4.61414950687622 +"Q9VKM3",-0.141129995744169,21.791668822604,-0.22230815083871,0.827330815822617,0.999896763353946,-4.6141557124689 +"P42207",0.127168318352265,16.0134198222097,0.222219267146649,0.827398644940352,0.999896763353946,-4.61415654047495 +"Q7JW03",-0.148215086767891,17.1566554386743,-0.221940947461341,0.827611046126159,0.999896763353946,-4.61415913108152 +"C0HK95",-0.122982744857538,19.990698998323,-0.221811245110933,0.827710033972941,0.999896763353946,-4.61416033726066 +"Q9VW57",0.141640134423557,16.541988782832,0.221421136525033,0.828007780212977,0.999896763353946,-4.61416396092141 +"Q9VHJ7",0.148739605206044,14.8017666798064,0.22063905448868,0.828604778772967,0.999896763353946,-4.61417120661903 +"Q9VAY0",-0.128957421096903,14.0525773918315,-0.22060120510433,0.828633673714607,0.999896763353946,-4.614171556638 +"A1Z7H7",0.0881550483304032,17.8422860636159,0.220399829338614,0.828787412147778,0.999896763353946,-4.61417341790076 +"Q9VBI3",-0.150739001205451,18.598604542185,-0.220372151060337,0.828808543439024,0.999896763353946,-4.6141736735927 +"Q9VAC4",0.11393029640254,19.3795200442363,0.220188318616685,0.828948895869947,0.999896763353946,-4.6141753710331 +"Q9VSU6",-0.0933044146895092,21.6275568440208,-0.219920384139373,0.829153469410781,0.999896763353946,-4.61417784253827 +"Q9V438",-0.155050158715145,18.9461861672291,-0.21960166554675,0.829396834455109,0.999896763353946,-4.61418077862556 +"Q9W1C8",0.160429222296283,16.0218568122866,0.219520594788389,0.829458740836232,0.999896763353946,-4.61418152479248 +"Q9V3W9",-0.123530618987495,18.4940150269694,-0.219306746785302,0.829622042798139,0.999896763353946,-4.61418349172363 +"Q9GU68",0.12062703145256,22.199010006939,0.218151560210451,0.830504325808902,0.999896763353946,-4.61419408420006 +"P92204",-0.154125665309918,15.8721992668769,-0.218109530491415,0.830536430831934,0.999896763353946,-4.61419446855085 +"Q9VMH9",0.132519179668886,20.0409676559278,0.217274544275673,0.831174312537363,0.999896763353946,-4.61420208913736 +"P22465",-0.124418372020983,22.7324494956443,-0.216619605388586,0.831674734971922,0.999896763353946,-4.61420804632175 +"Q9VXI6",-0.121866146619084,22.0568840266741,-0.216255750610799,0.831952780119174,0.999896763353946,-4.61421134819956 +"Q9TVP3",-0.121651409539226,22.953439158624,-0.21624753189506,0.831959060845683,0.999896763353946,-4.61421142271879 +"Q8IPW2",-0.162224102671622,17.1922404897284,-0.21621083668837,0.831987103396492,0.999896763353946,-4.61421175540075 +"Q9VCJ8",0.0794867507106467,17.8629066921186,0.215939057563838,0.832194804950972,0.999896763353946,-4.61421421763977 +"Q9I7T7",0.118481569858645,14.4625379549109,0.215533309967947,0.832504913370214,0.999896763353946,-4.61421788790663 +"Q9VZ66",-0.148188460083361,17.0106460961345,-0.215255293697974,0.832717414883338,0.999896763353946,-4.61422039882263 +"B7YZN4",-0.166223083568715,15.4435011260156,-0.214239831654192,0.833493697858284,0.999896763353946,-4.61422954283483 +"Q9VKY3",0.130873879865032,18.7493350391532,0.21326609899866,0.83423824984362,0.999896763353946,-4.61423827100003 +"Q9VF27",-0.128046293408779,22.2656508259571,-0.212965815613326,0.834467891001211,0.999896763353946,-4.61424095470695 +"Q9VK18",-0.149058846051533,14.5518342711502,-0.212958992407944,0.834473109217262,0.999896763353946,-4.61424101564425 +"Q9VG97",-0.0895321226856858,20.0459893222148,-0.212909672237176,0.834510828285777,0.999896763353946,-4.61424145606 +"Q9VEW1",-0.162898290636106,14.6366576648018,-0.212547954670668,0.834787475494103,0.999896763353946,-4.61424468302216 +"Q9V9U7",0.142832185134523,17.8409323512246,0.212545045667442,0.834789700437127,0.999896763353946,-4.61424470895206 +"Q9W2D6",-0.129361796456134,19.6171215297306,-0.211481008360779,0.835603624897826,0.999896763353946,-4.61425416993026 +"Q8IN51",-0.186508007505228,17.1650204541577,-0.211114376576754,0.835884121540088,0.999896763353946,-4.61425741900835 +"Q9Y162",-0.151274701802581,20.2047833886323,-0.210618540620077,0.836263504508802,0.999896763353946,-4.61426180423456 +"Q9VLU4",-0.176505191713531,17.1644397266417,-0.210232130382726,0.836559191065356,0.999896763353946,-4.61426521462864 +"Q8SY69",-0.115697961350914,18.9608697769592,-0.209874390839116,0.836832961296813,0.999896763353946,-4.61426836646683 +"O61604",0.106043219861732,20.9337962490977,0.208938122101385,0.837549571166653,0.999896763353946,-4.61427659030201 +"Q94516",-0.114679721348661,23.3974775558086,-0.208416061551479,0.837949215741303,0.999896763353946,-4.6142811601172 +"Q9VD14",0.0578852875781131,17.615248678279,0.208171333822553,0.838136574215926,0.999896763353946,-4.61428329843442 +"Q94524",-0.0890245845773592,15.7645161595864,-0.208124532953209,0.838172405153779,0.999896763353946,-4.61428370707603 +"Q7JVH6",0.114574893314003,18.9944459713052,0.207348853975562,0.838766322447425,0.999896763353946,-4.61429046669643 +"Q9VEJ0",-0.127734494151955,22.249048349118,-0.207068819708923,0.838980762540611,0.999896763353946,-4.61429290091743 +"Q7JWD6",-0.115475315767799,20.469274717415,-0.205871536551651,0.839897748318792,0.999896763353946,-4.614303271748 +"Q95RB2",-0.0734235441330569,24.3207441246006,-0.205858234084308,0.839907937889805,0.999896763353946,-4.61430338663984 +"Q9V3W2",-0.0833337261163116,21.5841622420883,-0.205813663942901,0.839942078436931,0.999896763353946,-4.61430377153343 +"Q9Y0Y5",0.105578248469712,18.6063939844555,0.204824970231636,0.840699499775032,0.999896763353946,-4.61431228840466 +"Q9VQT8",-0.159797006790527,18.0985155132006,-0.204184165784082,0.841190496750569,0.999896763353946,-4.61431778682049 +"P0DKM0",0.0628932613792017,16.9920995783182,0.20324696373327,0.84190872305134,0.999896763353946,-4.61432579781259 +"Q24372",0.205242922354298,16.961321859722,0.203246956865468,0.841908728315028,0.999896763353946,-4.61432579787116 +"Q9VX98",0.0552530593407354,18.2627947385551,0.203044013687656,0.842064273438728,0.999896763353946,-4.6143275277862 +"Q9VR89",-0.0726455180828953,13.945728279277,-0.20282126659156,0.842235005098963,0.999896763353946,-4.61432942454637 +"Q9W2Y3",-0.18287792623298,16.4162039945364,-0.202775698459035,0.842269933273036,0.999896763353946,-4.61432981231952 +"Q0E8C8",0.172599435479974,17.6512379738093,0.202684598555445,0.842339762784512,0.999896763353946,-4.61433058729824 +"P20007",-0.12746178018682,14.8960669299406,-0.202568307027692,0.842428904076069,0.999896763353946,-4.61433157607971 +"Q9VHN4",-0.13650142701721,14.5543849707137,-0.20243525215183,0.842530897781051,0.999896763353946,-4.61433270670541 +"Q9VI04",0.184986815290387,16.3524688244624,0.202371762205866,0.842579567268312,0.999896763353946,-4.61433324594857 +"Q9VMU0",-0.171871146861623,21.1746705773516,-0.20231785195713,0.842620893772115,0.999896763353946,-4.61433370369665 +"Q9VXC1",-0.129635444704089,18.3356212803023,-0.202209358770699,0.842704063910353,0.999896763353946,-4.61433462453914 +"Q9VZZ6",0.13269707404061,18.4535818402234,0.202047277355812,0.842828318054114,0.999896763353946,-4.61433599930548 +"Q9VVC8",-0.103806966541239,16.6452984360621,-0.201759754728944,0.843048748093464,0.999896763353946,-4.61433843537685 +"Q9VJ28",0.101937732408398,18.9493409131649,0.201413980065401,0.84331385533094,0.999896763353946,-4.61434136045425 +"O97111",-0.0868123108577858,14.7018825264463,-0.201227190793542,0.84345707585539,0.999896763353946,-4.61434293853301 +"O18404",-0.0963080867311916,23.0057310815271,-0.201117108825522,0.843541483812423,0.999896763353946,-4.61434386787655 +"Q7KS11",-0.145302847496842,15.650315342062,-0.200502606684827,0.844012704571236,0.999896763353946,-4.61434904644383 +"Q9VKV9",0.137968110456313,15.6079711928394,0.200361089206041,0.844121233701616,0.999896763353946,-4.61435023682855 +"Q9VM33",0.116619332070966,13.910976428549,0.200056340386687,0.844354955397769,0.999896763353946,-4.61435279742443 +"Q3YMU0",-0.0808255525906958,23.1398075885267,-0.199532207769845,0.844756965231276,0.999896763353946,-4.61435719233919 +"Q9VDV3",-0.174405988818766,17.5176680776486,-0.197939413031261,0.84597891461339,0.999896763353946,-4.61437047815101 +"Q9VG00",-0.141920938424827,15.2692973902112,-0.197260803745961,0.846499650811528,0.999896763353946,-4.61437610657573 +"Q9VVW8",-0.106214684419148,15.7561295464985,-0.196695490688397,0.84693350518699,0.999896763353946,-4.61438078071938 +"Q8MSV2",0.137745061840771,18.1791097015221,0.19632397871649,0.847218653354856,0.999896763353946,-4.61438384524474 +"Q9VQM2",-0.0843292102296971,20.1587754521343,-0.195932707230948,0.847518991675549,0.999896763353946,-4.61438706656653 +"A1Z7S3",0.0976206303080325,20.0815928406797,0.195407991351434,0.847921799990904,0.999896763353946,-4.61439137655215 +"Q9VEJ3",0.0841710705043894,20.0245355165897,0.195295078826711,0.848008485258655,0.999896763353946,-4.61439230251426 +"Q9VVJ7",-0.1348298923578,18.1536152391949,-0.194784250381741,0.848400684293433,0.999896763353946,-4.61439648505108 +"Q9VN44",-0.152056766218546,19.4851939047085,-0.194774531031782,0.848408146929043,0.999896763353946,-4.61439656452565 +"Q9VKV2",0.0887734545903331,14.9101182289676,0.194206146880186,0.848844585477252,0.999896763353946,-4.61440120534775 +"Q9VFV9",-0.12973718655855,21.3744511439364,-0.193983635498832,0.849015456754617,0.999896763353946,-4.61440301848517 +"Q9XZ19",-0.15524801924461,16.1226418372543,-0.193858422422387,0.849111614039265,0.999896763353946,-4.61440403788166 +"Q9VIU3",0.173765318175732,12.4335221561337,0.19384053827446,0.849125348360539,0.999896763353946,-4.61440418342863 +"Q9W2V2",0.105850692980141,14.3553213672322,0.193571808838853,0.84933172811271,0.999896763353946,-4.61440636883582 +"Q9VIM0",0.10441411611199,18.0493286187766,0.193273150605203,0.849561106157238,0.999896763353946,-4.6144087941157 +"Q9VJ58",0.11804776682833,17.1602533857691,0.192542358864247,0.850122434745395,0.999896763353946,-4.61441471294716 +"Q9V535",0.0698337920529042,18.60512760644,0.191885651466861,0.850626930476544,0.999896763353946,-4.61442001282719 +"Q8IQW5",-0.0800258299897116,21.9568799466394,-0.19163065195819,0.850822844530853,0.999896763353946,-4.61442206594118 +"Q9VB68",-0.0841666302132502,15.430944747007,-0.191456996648494,0.850956268359019,0.999896763353946,-4.61442346257051 +"O97454",-0.215840172359426,13.996875784922,-0.191387646939971,0.851009552844745,0.999896763353946,-4.61442401996802 +"P29746",0.0969983888930344,21.1615937607435,0.19109512559465,0.851234318412044,0.999896763353946,-4.61442636890577 +"P08646",0.162872159682795,18.8991824855826,0.191078829374671,0.851246840386418,0.999896763353946,-4.61442649965938 +"Q9VL10",0.170201084012451,16.6822511981854,0.190901979975502,0.851382733700692,0.999896763353946,-4.6144279179104 +"Q9V3R3",-0.0969273812388796,13.6329053378773,-0.190384394483733,0.851780481119712,0.999896763353946,-4.61443206124022 +"Q9W2J4",-0.0657395839121921,15.2489404618157,-0.190045361745587,0.852041039355853,0.999896763353946,-4.61443476920047 +"P91941",-0.0775226921671788,23.1021416163866,-0.188996856732223,0.852846964777015,0.999896763353946,-4.61444311370329 +"Q8T9B6",-0.108505676119115,19.4839596839665,-0.188862490581496,0.852950256668613,0.999896763353946,-4.61444417974994 +"Q9VYV4",-0.159682994925546,15.5648574795582,-0.188364688524921,0.853332958690741,0.999896763353946,-4.61444812271718 +"Q9VMV5",-0.107711216446639,17.6071632710692,-0.187751311309008,0.853804565774671,0.999896763353946,-4.61445296695921 +"A1Z6R7",-0.156268359327392,17.9627432315327,-0.186508634550487,0.854760200042806,0.999896763353946,-4.61446273324271 +"Q9VJQ5",-0.184810626434549,14.2594883328318,-0.186303765605711,0.854917769667277,0.999896763353946,-4.61446433715622 +"Q02748",0.15551397019599,19.58789366328,0.186274206957053,0.854940504464955,0.999896763353946,-4.61446456842601 +"P40797",0.139455965797367,19.1719364572486,0.185537892914213,0.855506877672551,0.999896763353946,-4.61447031769361 +"Q9W4Y1",-0.152199485979494,17.5769264901435,-0.185404742028075,0.855609306262379,0.999896763353946,-4.61447135495135 +"M9PDU4",-0.13350190623607,22.5680892902589,-0.18528995543591,0.85569760997723,0.999896763353946,-4.61447224855767 +"Q9V3H2",0.140488104666133,18.388339202099,0.185203804283305,0.855763886170168,0.999896763353946,-4.61447291887891 +"P42325",-0.0806805956846688,20.1285509306395,-0.184982601821957,0.855934062689604,0.999896763353946,-4.61447463858772 +"Q9VDL1",-0.170287223451099,14.8511693656097,-0.184880266241619,0.856012794501268,0.999896763353946,-4.61447543349334 +"Q9W1G7",0.0936883366749228,18.9343170353578,0.184760374003901,0.856105035542887,0.999896763353946,-4.61447636421857 +"Q9VPR1",-0.10119507947212,13.6723057958174,-0.184548175264203,0.856268299449484,0.999896763353946,-4.6144780100549 +"Q95RG8",0.11229218925584,13.1828192693397,0.184057512863883,0.856645837111081,0.999896763353946,-4.61448180851243 +"Q9VKX2",-0.0775679030453134,23.1235484293345,-0.184047140666599,0.856653818339005,0.999896763353946,-4.61448188870059 +"Q9VZ58",0.0954365424396393,18.0709514644891,0.183693590768754,0.856925878663268,0.999896763353946,-4.61448461934229 +"Q9I7I3",0.16104835842488,14.6114589612487,0.183411502354141,0.857142962193063,0.999896763353946,-4.61448679432154 +"Q9VLP1",-0.106221335804488,18.3929269057443,-0.183403004202876,0.857149502203925,0.999896763353946,-4.61448685979325 +"Q7K180",-0.165581530986405,16.2890726263542,-0.182904943247694,0.85753281919826,0.999896763353946,-4.61449069172081 +"Q9VSL3",0.11813993978328,22.3724793848783,0.182861540425614,0.857566224590272,0.999896763353946,-4.61449102515984 +"Q9VLT8",-0.0831970611407353,13.9714745282957,-0.182590600181992,0.857774762717793,0.999896763353946,-4.61449310486668 +"P25007",-0.104742672632952,23.8488105535566,-0.182515347482544,0.857832685408328,0.999896763353946,-4.61449368195592 +"Q8SY67",-0.192095343881514,16.0581848111611,-0.18174152240006,0.858428354963641,0.999896763353946,-4.61449960250607 +"Q9VL00",-0.14516492807636,15.980638635039,-0.181479795075689,0.858629845861429,0.999896763353946,-4.61450159934717 +"Q9W125",0.10806530877413,21.3969056047156,0.181251484819464,0.858805618977057,0.999896763353946,-4.61450333890559 +"Q5U126",-0.0917679080356635,21.6333183807785,-0.180846072065424,0.859117760190471,0.999896763353946,-4.61450642251 +"Q7JVZ8",-0.278428406352356,15.9815970399972,-0.180716926255122,0.8592171991337,0.999896763353946,-4.61450740336749 +"Q9VMS1",-0.127106318068517,22.4056243372538,-0.180451952594395,0.85942122979078,0.999896763353946,-4.61450941365893 +"Q9W0C1",0.101262567063017,21.3434102280767,0.179886835970361,0.85985640644465,0.999896763353946,-4.61451369129968 +"O97418",-0.0857647537526276,21.0295647126309,-0.179535266471209,0.860127161780016,0.999896763353946,-4.61451634579119 +"Q9VJC7",-0.126827322634316,18.6099576151295,-0.179446475073024,0.860195545875321,0.999896763353946,-4.61451701538819 +"Q9W1V3",0.180774159950769,16.3647255422917,0.179001745270049,0.860538079077522,0.999896763353946,-4.61452036426207 +"Q9VR31",-0.129206609002935,17.2903369611906,-0.178693409403376,0.860775578093603,0.999896763353946,-4.61452268123807 +"Q9VE08",-0.157521945343094,14.5436962010939,-0.178561945530739,0.860876843813837,0.999896763353946,-4.61452366791379 +"Q9VDE2",-0.104448476131239,19.5950224472299,-0.178325201961092,0.861059212176715,0.999896763353946,-4.6145254429304 +"Q9VTC1",-0.107706942571371,15.8469769355536,-0.177911831555049,0.861377659510494,0.999896763353946,-4.61452853663542 +"Q7JZV0",0.147220012569438,15.2473835843055,0.177746567212981,0.861504980886998,0.999896763353946,-4.61452977149913 +"Q9VAY2",-0.0901811376347688,21.1161149002754,-0.177179186854858,0.861942127078331,0.999896763353946,-4.61453400233929 +"P04359",-0.068973543397945,18.7978144300746,-0.177041404208712,0.862048290761396,0.999896763353946,-4.61453502773343 +"Q9VRZ7",-0.129130667252983,17.226274770369,-0.177010814508832,0.862071860979396,0.999896763353946,-4.61453525527822 +"Q9VJ25",0.137302846522367,15.675177956348,0.176334262448669,0.86259319810567,0.999896763353946,-4.61454027792114 +"Q9VXE5",0.054980733960992,14.6145491167391,0.175652073383649,0.863118946382461,0.999896763353946,-4.61454532310909 +"A0A0B4KH34",-0.0749504469134834,23.3689691033395,-0.175500582809186,0.86323570603057,0.999896763353946,-4.61454644084033 +"Q7K738",-0.138055807518313,19.791881065621,-0.175492420824364,0.863241996882457,0.999896763353946,-4.61454650103414 +"Q9W236",-0.157016497755372,16.5415202223507,-0.174341626589065,0.864129068153445,0.999896763353946,-4.61455496024369 +"Q9VSD6",-0.0839072478283178,16.5272658000082,-0.174212231420527,0.864228822277739,0.999896763353946,-4.61455590794562 +"Q9VXH4",0.103448713356094,17.1035307261194,0.173741977382496,0.864591373683067,0.999896763353946,-4.61455934625434 +"Q9VXA3",-0.095929353111547,17.7987531490768,-0.173237522565779,0.8649803280774,0.999896763353946,-4.61456302438165 +"Q9V3Q4",-0.0556636787104026,15.9882485719345,-0.172953714656048,0.865199171072806,0.999896763353946,-4.6145650890469 +"Q9W1X5",0.11915980773048,19.3993395647371,0.172617823173665,0.865458190328113,0.999896763353946,-4.61456752827626 +"Q9VCU0",0.139306027337259,17.3947869726467,0.172572535267392,0.86549311486061,0.999896763353946,-4.61456785679537 +"Q9W3T9",-0.0949135367747864,18.6381017721014,-0.172425252348393,0.86560669658616,0.999896763353946,-4.61456892459674 +"P00334",-0.101764414498028,25.2238148988764,-0.17215521760105,0.865814950153018,0.999896763353946,-4.61457088000084 +"Q9W1F7",0.0867742746695299,20.3376522972391,0.171907690586014,0.866005854627744,0.999896763353946,-4.61457266974997 +"Q9VI64",-0.0778326415927317,20.9307801441868,-0.171825589037219,0.866069177123853,0.999896763353946,-4.61457326282293 +"Q9VNA3",-0.104366486252701,18.6240536566594,-0.171632649540946,0.866217989412691,0.999896763353946,-4.61457465544469 +"Q7JXF7",-0.0898463657160313,17.8540174532232,-0.171116239339037,0.8666163173292,0.999896763353946,-4.61457837521787 +"P08928",-0.0731239992210817,22.7210904996215,-0.170894425186747,0.866787423060155,0.999896763353946,-4.61457996956277 +"Q9VK59",0.0595183935430939,18.7543192112573,0.170339889397827,0.867215218052871,0.999896763353946,-4.61458394645494 +"Q9VB81",0.110662509671744,20.9632975822669,0.170180561418863,0.8673381391548,0.999896763353946,-4.61458508671597 +"Q7K486",-0.108985898241237,17.5543013562327,-0.16902013797552,0.868233510076138,0.999896763353946,-4.61459335958329 +"Q9VB10",0.0782805348294815,20.9924968540337,0.168587497812768,0.868567378994964,0.999896763353946,-4.61459642958444 +"O61444",-0.120531862500588,16.4215833636943,-0.168468851065776,0.868658943384843,0.999896763353946,-4.61459727013438 +"Q494G8",-0.110351353359389,15.1534636374625,-0.167847730063738,0.869138318980245,0.999896763353946,-4.61460166087044 +"Q9U6M0",-0.0573638709261317,16.2798587818416,-0.167370646990973,0.869506563732537,0.999896763353946,-4.61460502247033 +"Q9VQB4",-0.0883962833604848,21.7981679027819,-0.166508728063569,0.870171930373326,0.999896763353946,-4.61461107161527 +"Q9VHF9",0.115106587510962,17.0255258389361,0.166415566495258,0.870243853475933,0.999896763353946,-4.61461172358897 +"Q9VMB3",-0.0697650638973357,18.6856350838636,-0.166343770375528,0.870299282722617,0.999896763353946,-4.6146122257936 +"P91926",0.0883683166909783,17.708334784289,0.165896881691636,0.870644313152235,0.999896763353946,-4.61461534688815 +"Q9NHD5",0.186454220950303,16.5805182474526,0.165792792187497,0.870724681722056,0.999896763353946,-4.61461607265867 +"Q7KMP8",0.130036484709965,19.1790736142579,0.165714434803859,0.870785183238127,0.999896763353946,-4.6146166187122 +"Q9V9S8",0.0560561656921941,19.8933380629591,0.163832221396552,0.872238734777831,0.999896763353946,-4.61462965842329 +"P40417",0.0917762126207258,19.8432321186938,0.163367983258787,0.872597319676476,0.999896763353946,-4.61463285187504 +"Q9VRL1",-0.0885727090916149,20.479762370792,-0.163354051412447,0.872608081305823,0.999896763353946,-4.61463294757194 +"Q8SZM2",-0.0942904387055457,21.2118068796013,-0.162935422051917,0.872931463012718,0.999896763353946,-4.61463581933027 +"Q9V6U9",-0.0978790243605339,21.9206677303352,-0.162610821045999,0.873182226198869,0.999896763353946,-4.61463804102892 +"Q8SY33",-0.0661096876493055,17.3919283710278,-0.162379857139665,0.873360660784595,0.999896763353946,-4.61463961916043 +"Q9VKQ2",-0.151759155419256,15.9806831306593,-0.161592835124719,0.873968740029964,0.999896763353946,-4.61464498000998 +"Q9W4U2",-0.145913073478642,18.6008670770581,-0.161391649859409,0.874124195723499,0.999896763353946,-4.6146463462469 +"Q9VA41",0.0853991565311922,17.473125979433,0.161121678403228,0.874332810940744,0.999896763353946,-4.61464817695198 +"Q9VFP6",-0.0754029400839755,20.2588012378,-0.160945026723517,0.874469320365629,0.999896763353946,-4.6146493731991 +"Q9VG51",-0.12273622444911,19.101567340508,-0.160906503571582,0.874499090084366,0.999896763353946,-4.61464963389657 +"Q9W136",-0.073823333547157,18.2033620079948,-0.159882563651339,0.875290437250551,0.999896763353946,-4.61465654049126 +"Q9W3C3",0.0850058408469714,16.4573577214638,0.159778393144715,0.875370952725443,0.999896763353946,-4.61465724068052 +"Q9VQF7",0.0860645406081595,18.7395990403027,0.159231718825526,0.875793511774316,0.999896763353946,-4.61466090776232 +"Q7K1C3",-0.112691271658221,17.1008745455559,-0.158948074221148,0.87601277409724,0.999896763353946,-4.6146628055287 +"O97064",0.114119471598247,16.5196645317302,0.158773462174171,0.876147757578249,0.999896763353946,-4.61466397212601 +"Q95SH2",-0.0605480330277572,18.708803636173,-0.158628771671104,0.876259613307204,0.999896763353946,-4.61466493785049 +"Q9VWD9",-0.076165440556796,19.4377701717986,-0.15858535663033,0.87629317666146,0.999896763353946,-4.61466522745 +"Q9VTJ4",-0.163968327704261,15.6390254781176,-0.158114957494486,0.876656849263379,0.999896763353946,-4.61466836019538 +"A1Z7K6",-0.055977747440652,15.5525080479304,-0.157598026956005,0.877056529381228,0.999896763353946,-4.61467179217213 +"A1ZBD8",0.168649373347391,14.0505637604564,0.157082509696541,0.877455151497301,0.999896763353946,-4.61467520365205 +"P52029",-0.135080613701021,18.4446831979087,-0.156807401331573,0.877667892333388,0.999896763353946,-4.61467701966331 +"Q9VZW1",-0.175622500597408,14.8452835327744,-0.156658718291525,0.877782872769311,0.999896763353946,-4.61467799981551 +"Q7KNM2",-0.0839364274476289,19.6281114339468,-0.155700743295037,0.878523768217694,0.999896763353946,-4.61468429286244 +"Q9VYF0",0.112108224251209,16.1341762480141,0.155553527227772,0.878637635259358,0.999896763353946,-4.61468525654343 +"Q9V595",-0.0818299612727849,18.5063273692098,-0.155132696335391,0.878963150231555,0.999896763353946,-4.61468800632254 +"Q9VCR9",-0.0912250764099234,19.345413898887,-0.154371376234407,0.879552093220254,0.999896763353946,-4.61469296211543 +"P49028",0.103124494599601,16.3647688385414,0.153887234503102,0.879926654778236,0.999896763353946,-4.61469610102695 +"Q9VLV5",-0.0646005621134584,17.4702479203121,-0.153223385350683,0.880440297506737,0.999896763353946,-4.61470038914227 +"Q9V429",-0.0900379403624498,22.3378491137311,-0.152925755263822,0.880670602231566,0.999896763353946,-4.61470230569679 +"Q8SXS0",-0.107976728044264,14.485840024773,-0.152718031799919,0.880831344296669,0.999896763353946,-4.61470364111469 +"Q9VTW6",-0.210121443885644,16.194169056418,-0.152586274088417,0.880933304827046,0.999896763353946,-4.61470448722743 +"Q7PLT4",0.113488385449374,15.753349571676,0.152119634447023,0.881294430933461,0.999896763353946,-4.61470747802752 +"Q8I725",0.140927970388901,18.8948153039751,0.151022963762959,0.882143237447642,0.999896763353946,-4.61471447101423 +"Q9VWX8",-0.0739057366155258,20.5659061921597,-0.150879295982749,0.882254445310282,0.999896763353946,-4.61471538339647 +"Q9VQV7",-0.0772581864348041,16.250760095745,-0.150632602705884,0.882445407381612,0.999896763353946,-4.61471694804384 +"A0A0B4KGY6",0.0864109955289827,21.7392958430335,0.15026648560182,0.882728827893372,0.999896763353946,-4.61471926544533 +"Q9W077",-0.108484196217027,20.8548788676054,-0.150053371587481,0.882893812533156,0.999896763353946,-4.61472061180723 +"Q9W3X8",0.0662870850094865,13.8674603763097,0.149998902465753,0.882935981330446,0.999896763353946,-4.61472095561487 +"Q9VW26",0.0478656122234362,17.4806143934017,0.149647881170196,0.883207743148418,0.999896763353946,-4.61472316827678 +"Q9W073",0.098821500760037,14.6005869684832,0.149356875806963,0.883433052028667,0.999896763353946,-4.61472499872305 +"Q9VXA9",0.13407564814092,14.2511506800232,0.149319855112627,0.88346171579624,0.999896763353946,-4.61472523133224 +"Q9VUV6",-0.0737293347973278,14.8317817904756,-0.149310009391367,0.88346933900613,0.999896763353946,-4.61472529318543 +"Q9VFU7",0.0528366333818848,14.8453237687304,0.148927420653351,0.883765573846832,0.999896763353946,-4.61472769356147 +"Q8IPP8",-0.0770855067702243,19.0742608839907,-0.148627797626054,0.883997581744409,0.999896763353946,-4.61472956913448 +"Q9VS97",-0.056101228415498,15.1232214053848,-0.148477574895197,0.884113908277358,0.999896763353946,-4.61473050808238 +"Q9VQI6",0.0727810966701412,16.128865263889,0.148337338220846,0.884222504511092,0.999896763353946,-4.61473138376214 +"Q9VGJ9",0.0771464390784544,18.0442530938729,0.148305096603156,0.884247472061405,0.999896763353946,-4.61473158497219 +"Q9VIH1",0.100972562548597,15.7346051279217,0.148227379001165,0.884307656233809,0.999896763353946,-4.61473206980526 +"Q9W1H6",-0.0945578276219052,17.1476031908805,-0.14797501414302,0.884503091597869,0.999896763353946,-4.61473364241525 +"A0A6H2EG56",-0.0845839927369134,20.9062272766626,-0.14790904336688,0.884554181706236,0.999896763353946,-4.61473405307265 +"Q59E04",0.0828645078812862,16.3729834306777,0.147137888072154,0.885151431240179,0.999896763353946,-4.61473883989213 +"Q9VTB4",-0.0831990591524665,20.6372394406759,-0.147128504593208,0.885158699067638,0.999896763353946,-4.61473889798539 +"Q86BN8",-0.136596560844222,14.2958034449137,-0.147053439647297,0.885216839838975,0.999896763353946,-4.61473936258105 +"Q9W5R5",-0.0821758321689288,15.8775218791851,-0.146530205213184,0.885622124686827,0.999896763353946,-4.61474259446346 +"Q9VJU8",0.0602846801459354,15.653195723841,0.146505677079186,0.885641124408732,0.999896763353946,-4.61474274568639 +"Q9VD26",-0.0490947276190568,16.2015746706733,-0.146317910716717,0.885786572409634,0.999896763353946,-4.6147439024859 +"Q9VV72",0.0876162005792942,19.3859859245635,0.14604015111575,0.886001739019999,0.999896763353946,-4.61474561101584 +"Q7JR49",-0.0871950121634981,18.8730371829467,-0.145549732229559,0.886381665057894,0.999896763353946,-4.61474861975811 +"Q9VJD1",-0.0999935004216681,18.5362265519824,-0.145169029072649,0.886676614677168,0.999896763353946,-4.61475094845359 +"Q9VE24",0.0824869960468213,15.7983292240359,0.144558622417947,0.887149563403163,0.999896763353946,-4.61475466955262 +"Q9W0N6",-0.0510693799204116,14.4465304414806,-0.144102547101477,0.887502963960722,0.999896763353946,-4.61475743965909 +"Q9VZS3",-0.0882118080709482,18.3829878902294,-0.144095577105633,0.887508365017135,0.999896763353946,-4.61475748192589 +"Q24400",-0.0892949318972995,21.4545117164531,-0.143577520570214,0.887909823762151,0.999896763353946,-4.61476061778617 +"Q9VKF0",0.0590117051363581,15.9685854924231,0.143522478097903,0.887952479833381,0.999896763353946,-4.6147609503052 +"Q9VS44",-0.101452308704019,15.1197182456157,-0.143516731700175,0.887956933119828,0.999896763353946,-4.61476098501266 +"Q8SX78",-0.0931541692439399,15.9843376096219,-0.14345622453213,0.888003824604875,0.999896763353946,-4.61476135038385 +"Q9VP77",-0.156119258545059,15.3532757997469,-0.143218820886325,0.888187810478041,0.999896763353946,-4.61476278246097 +"Q9W3N9",-0.0964123619582438,20.1826704395435,-0.142969187271356,0.888381281702258,0.999896763353946,-4.61476428576883 +"Q9VBT1",0.134911515381717,16.3081917650603,0.142824847362619,0.888493151497068,0.999896763353946,-4.61476515380233 +"Q9V3Y2",-0.0894333337121225,17.8838483250248,-0.142587072980991,0.888677442513059,0.999896763353946,-4.61476658183267 +"Q9VBS7",0.0696118782318003,19.7931379554481,0.14254749683769,0.888708117315457,0.999896763353946,-4.61476681929025 +"P54195",-0.0756238888767058,18.5828026987821,-0.142005268060696,0.889128408353758,0.999896763353946,-4.61477006607261 +"Q24050",-0.103140841304782,16.6296511029254,-0.141853925914657,0.889245722498697,0.999896763353946,-4.61477097008989 +"Q7K0S5",-0.0631416858443892,18.3246818967131,-0.140749511414182,0.890101900222072,0.999896763353946,-4.61477753810831 +"A1Z7P1",0.169490793417253,14.6402674478305,0.140495903966255,0.890298525054841,0.999896763353946,-4.61477903912006 +"Q9VEY5",-0.050833633818133,20.8506752772655,-0.140226384372432,0.890507494984858,0.999896763353946,-4.6147806313596 +"Q9VZY0",-0.0729776661968593,17.1830454655056,-0.139684001110714,0.890928053268354,0.999896763353946,-4.61478382637875 +"Q9VP55",0.131738841461861,17.0902538271428,0.139364061713623,0.891176146925874,0.999896763353946,-4.614785705273 +"Q9V420",0.0984375094298215,17.4816972268581,0.139258605749602,0.891257924247029,0.999896763353946,-4.61478632364078 +"Q9V3G3",-0.0868079635657644,14.9410609352416,-0.139015771200001,0.891446238627726,0.999896763353946,-4.61478774579253 +"Q08012",0.0693531328082564,19.2108935337362,0.138793476356607,0.89161863075795,0.999896763353946,-4.61478904549014 +"Q7JZN0",0.0819497433374607,16.825300041835,0.138761540961655,0.891643397481074,0.999896763353946,-4.61478923203779 +"Q95T12",0.100285916336135,15.9640670863757,0.138594617210979,0.891772853070718,0.999896763353946,-4.61479020641261 +"Q9W2D9",0.13021066304114,17.6320300140035,0.138492813675592,0.891851807081353,0.999896763353946,-4.61479080009217 +"O62621",0.0494469610375905,13.1506490689513,0.138226519173271,0.892058338147577,0.999896763353946,-4.61479235096877 +"Q7JV69",0.150364266087461,16.1992776708574,0.137907063779988,0.892306110154475,0.999896763353946,-4.61479420753303 +"O44434",-0.0965298919168784,15.8681979946861,-0.137685036075745,0.892478323400551,0.999896763353946,-4.6147954953646 +"O18335",-0.0658888929497543,21.6609989361721,-0.137668357939969,0.892491259833353,0.999896763353946,-4.61479559201977 +"Q9VZG2",-0.0724650910286364,21.8844615319653,-0.137363400651438,0.892727806231764,0.999896763353946,-4.61479735729226 +"Q9W4Z2",0.106566519550819,13.7266801056632,0.136808249401617,0.893158447955253,0.999896763353946,-4.61480056083874 +"Q9VD68",0.0595855241789991,14.7685221990973,0.136151876939684,0.893667654143695,0.999896763353946,-4.61480433184225 +"Q9VD00",-0.0709280698575547,17.912379316053,-0.135886682901027,0.893873402458881,0.999896763353946,-4.61480585032318 +"Q9W0Q2",-0.0544088917691994,15.5235086709504,-0.135710846188221,0.894009828107643,0.999896763353946,-4.61480685552712 +"A8JNP2",-0.106655839741201,21.1208525541613,-0.135630281831586,0.894072336381966,0.999896763353946,-4.61480731565604 +"Q9VYV3",0.0878318039003858,20.4945766510658,0.135608281136197,0.894089406409041,0.999896763353946,-4.61480744126182 +"Q9VFT4",-0.102127964097082,15.5787251695009,-0.135466919464704,0.89419908822302,0.999896763353946,-4.61480824783661 +"Q9W403",0.062335027040616,15.3593027588354,0.135146295007906,0.894447867469726,0.999896763353946,-4.61481007413897 +"Q9VU84",0.0794112870896271,18.4143083907812,0.135132043911419,0.89445892546286,0.999896763353946,-4.61481015521442 +"Q9VJ19",0.0690043253721058,19.1288764476085,0.135130156470038,0.894460390005482,0.999896763353946,-4.61481016595156 +"Q6NP72",0.0845638484335858,18.7613291108552,0.134560849326782,0.894902156834002,0.999896763353946,-4.61481339777632 +"Q0E8X7",-0.0988741830096664,20.9842730225113,-0.13346481880948,0.895752748585532,0.999896763353946,-4.6148195814637 +"Q9VRG6",-0.0465690109441468,16.3592537660305,-0.133202211415694,0.895956569024052,0.999896763353946,-4.61482105559435 +"Q9XY35",0.0585805919616149,19.2558554310386,0.132833252406801,0.896242946239756,0.999896763353946,-4.61482312184279 +"Q0KI81",-0.0984668958351538,15.6755594729209,-0.132722993696053,0.896328529350584,0.999896763353946,-4.61482373820818 +"Q9VXH7",-0.0367630474922507,18.2035100575318,-0.132608966814242,0.896417038737043,0.999896763353946,-4.61482437510262 +"Q9VUW4",0.085059506866445,14.5659582135549,0.132415457446937,0.896567246908233,0.999896763353946,-4.61482545469809 +"Q9W503",0.0871047056331804,17.9437406330069,0.132009168612579,0.896882634727142,0.999896763353946,-4.6148277162931 +"Q9VR94",-0.102462224301494,16.1150881881805,-0.131477179755353,0.89729562646585,0.999896763353946,-4.61483066713768 +"Q9VSY4",-0.0645596833759505,20.446590913164,-0.131114647051107,0.897577084328761,0.999896763353946,-4.61483267124664 +"P92181",-0.0419261049628616,16.5060581225235,-0.131067795171967,0.897613459555094,0.999896763353946,-4.61483292984566 +"Q9W306",-0.0717264935645492,14.7232419298427,-0.130792774205937,0.897826987293419,0.999896763353946,-4.61483444596977 +"Q9VHL2",-0.0791803574014445,20.6488725216332,-0.130447547998948,0.898095034397303,0.999896763353946,-4.61483634463244 +"Q9VNF3",-0.0484600982122743,19.1551862355305,-0.129468107076776,0.898855580834204,0.999896763353946,-4.61484170414326 +"Q9VV76",-0.134700682726063,16.3344335082256,-0.129086192097838,0.89915216997226,0.999896763353946,-4.61484378309215 +"Q0E8P5",-0.0746325491981601,17.7613734447106,-0.128816446235327,0.899361659787726,0.999896763353946,-4.61484524776666 +"Q9VAY6",-0.0436374385739082,15.2042061416055,-0.128430197534258,0.899661641516792,0.999896763353946,-4.61484733972244 +"Q9VVK5",-0.0498733694322446,15.8709828049513,-0.128064931969392,0.899945341268152,0.999896763353946,-4.6148493122794 +"Q9VTM6",0.0442716775426,16.2053868565104,0.127988717367143,0.900004538523633,0.999896763353946,-4.61484972315878 +"Q9W2K2",-0.0988224721515891,15.6487178748922,-0.127744751312816,0.90019403551334,0.999896763353946,-4.61485103676346 +"Q9W257",0.0510439670654925,17.0741245529452,0.127674165564521,0.900248863119822,0.999896763353946,-4.61485141635827 +"Q9VX02",0.0858651452128427,17.217016495686,0.127527828200012,0.900362532615752,0.999896763353946,-4.61485220266355 +"Q9W078",-0.0818818768491845,19.4311207108313,-0.127416462218962,0.900449039146881,0.999896763353946,-4.61485280045784 +"Q9VXQ5",0.0696756260340727,20.333929555983,0.127358415028621,0.900494129389839,0.999896763353946,-4.61485311183952 +"P02283",-0.0897685143270586,21.5548605193017,-0.127125463055225,0.90067508680444,0.999896763353946,-4.6148543600396 +"Q8SY96",0.0599211482072306,18.7677354731111,0.126581859252394,0.901097381299406,0.999896763353946,-4.61485726392253 +"Q9VU75",0.0841490007188384,18.2412690858665,0.126306132205441,0.901311589673707,0.999896763353946,-4.61485873209674 +"Q9VXI1",-0.0843502024723435,19.6021983460172,-0.126227497704067,0.901372681151352,0.999896763353946,-4.61485915022078 +"Q9VU95",0.0685317585057348,16.5259816416658,0.125900414951994,0.901626800094705,0.999896763353946,-4.61486088663967 +"Q9VCB9",-0.138240769628119,16.987293360483,-0.125736104138719,0.901754461593892,0.999896763353946,-4.61486175724147 +"P54397",-0.112976320434417,14.7628028609872,-0.125615669661289,0.901848035111744,0.999896763353946,-4.6148623946454 +"Q9Y128",0.0778182313843629,14.2764214642103,0.125579860550021,0.901875857873276,0.999896763353946,-4.61486258404917 +"Q9W254",-0.0667293882926927,18.141604463727,-0.125036675996878,0.902297914761953,0.999896763353946,-4.61486545050182 +"Q9VM11",0.0928915973725992,17.7529083825668,0.125001135112459,0.902325531263938,0.999896763353946,-4.61486563762432 +"Q9V3J4",0.0751268237393532,16.685240294284,0.124471095777005,0.902737405818808,0.999896763353946,-4.61486842199317 +"Q8IP97",-0.0766787092212446,19.9575309305384,-0.123709035825625,0.903329626255151,0.999896763353946,-4.61487240455484 +"Q7KTP7",-0.0543502323610028,17.8428552435053,-0.12305104635086,0.903841018426659,0.999896763353946,-4.61487582364888 +"Q9W022",-0.0890530889346905,21.229935859258,-0.122526789879766,0.904248504511709,0.999896763353946,-4.61487853483377 +"Q26377",-0.0740147111862974,16.8309714320567,-0.121613920296163,0.904958112735697,0.999896763353946,-4.6148832282162 +"Q9VN21",0.0722008398649621,22.0285422951219,0.121231847243529,0.905255137732987,0.999896763353946,-4.61488518221225 +"Q9VLR3",-0.101915347059283,16.7811547218915,-0.12105084553935,0.905395854272135,0.999896763353946,-4.61488610575286 +"Q9VV60",-0.0779563914982795,20.0494308515399,-0.120582264752041,0.90576015936086,0.999896763353946,-4.61488849024947 +"Q9VN25",0.0557908141239523,14.8893764202788,0.120423640296394,0.905883489299121,0.999896763353946,-4.61488929536514 +"Q8IH23",0.131938278127457,18.2791776368756,0.120368729404815,0.905926182906183,0.999896763353946,-4.61488957382542 +"Q9V3P3",0.0398583760855935,19.3591348998798,0.1185238476669,0.9073607663757,0.999896763353946,-4.61489885594631 +"Q9VG76",-0.0604635925244654,15.7747272190197,-0.118468504674028,0.90740380640827,0.999896763353946,-4.61489913218658 +"Q7KTJ7",0.0453263821630188,22.1086906596989,0.118452243174583,0.907416452971281,0.999896763353946,-4.61489921333017 +"Q9VIG0",-0.0805415407629866,17.3670383833867,-0.118258837193758,0.907566866741958,0.999896763353946,-4.61490017756 +"Q9VEA5",-0.141747766732074,15.6219699542762,-0.117444740752583,0.908200038048706,0.999896763353946,-4.61490421904929 +"Q9W4A0",-0.0701465543760165,17.134735138281,-0.117292118876937,0.908318748408094,0.999896763353946,-4.61490497362792 +"Q8IQB7",0.196055698715886,14.3999050537992,0.117185370773359,0.908401779180936,0.999896763353946,-4.6149055008209 +"Q9VMQ9",0.0573695784312171,22.1092122135894,0.116374152195848,0.909032797223136,0.999896763353946,-4.61490949153279 +"Q961D9",-0.127206116145823,12.5088546356576,-0.115737091382876,0.909528388909516,0.999896763353946,-4.61491260613349 +"Q95029",-0.060437879399835,21.8137381737129,-0.115583176498049,0.909648130513359,0.999896763353946,-4.61491335607133 +"Q8ING0",-0.0382209516409286,14.6682578925245,-0.115504390037797,0.909709425124897,0.999896763353946,-4.61491373956729 +"Q9VKK1",0.0565539214949968,14.5448483921998,0.115217835279653,0.909932365200679,0.999896763353946,-4.61491513218616 +"P45594",-0.0599441825819476,23.0187222021273,-0.114768469050333,0.910281988743967,0.999896763353946,-4.61491730910807 +"Q9V428",-0.059715324740143,18.7403236906668,-0.114768001934562,0.910282352187375,0.999896763353946,-4.61491731136657 +"P04388",-0.0858509577004725,16.4980301762138,-0.11392676463659,0.910936917830488,0.999896763353946,-4.6149213638786 +"Q9VHA8",-0.0588814115794172,18.5777986566179,-0.113837314966723,0.911006522464157,0.999896763353946,-4.61492179303945 +"Q9VL66",0.0826680202971666,15.7620512091045,0.113768097759518,0.911060383870031,0.999896763353946,-4.61492212489868 +"Q8SXG7",0.0837073902504351,13.9485632974117,0.113745669135011,0.911077836813386,0.999896763353946,-4.61492223238872 +"Q9V3N1",-0.0679199361234311,18.4054341576118,-0.113486062939865,0.911279854107575,0.999896763353946,-4.61492347502459 +"Q9VP78",-0.0594086212481368,14.9080640643984,-0.113438876023789,0.911316574152028,0.999896763353946,-4.61492370058654 +"Q9VJJ0",-0.0556795196065103,19.709434863071,-0.112565273302699,0.911996434677854,0.999896763353946,-4.61492785968129 +"O76752",0.0643424501320666,17.9231901978439,0.112456641990957,0.912080979429904,0.999896763353946,-4.61492837461948 +"Q9VRD4",0.0582922303891351,20.3437424829923,0.11229206819276,0.912209064783261,0.999896763353946,-4.61492915379456 +"A8DYK6",0.0589293001111066,16.5698226061116,0.111797021030977,0.912594367943039,0.999896763353946,-4.61493149074232 +"Q9VB64",-0.0549456519557978,18.8031982869686,-0.111586484489085,0.912758238847293,0.999896763353946,-4.61493248149481 +"Q9VXP4",-0.103882905477814,17.9702953474724,-0.111539879927218,0.912794514018756,0.999896763353946,-4.61493270055713 +"Q9VUZ0",-0.0662777732084407,17.6540620564704,-0.11136212335698,0.912932874647524,0.999896763353946,-4.61493353525544 +"P14199",-0.0530628662697481,18.5610139316746,-0.111312930758198,0.912971165277713,0.999896763353946,-4.61493376601664 +"Q9VQG4",0.0648631154079773,19.1670824303754,0.111236789871788,0.9130304324111,0.999896763353946,-4.61493412299123 +"Q9VH37",-0.0975049632524758,16.6277020209163,-0.111130938165579,0.913112826976279,0.999896763353946,-4.61493461885592 +"Q7JVM1",0.0336910939606625,15.8871757647861,0.11103651320714,0.913186327880964,0.999896763353946,-4.61493506079477 +"Q8IPX7",-0.156482309802252,15.1508433411712,-0.110027008957392,0.913972182981982,0.999896763353946,-4.61493976220017 +"Q7K0D8",-0.0349300709350224,17.2862534344444,-0.109424625377643,0.914441156982788,0.999896763353946,-4.61494254720123 +"Q9VEP8",-0.0682649122586305,17.1876630789866,-0.109062709935798,0.914722935140538,0.999896763353946,-4.61494421311806 +"Q9VCD9",-0.0818835183422344,18.6045722955801,-0.108574567513344,0.915103009285939,0.999896763353946,-4.61494645135203 +"Q9W0H6",-0.0859213088911837,18.1723647947172,-0.108275416506606,0.915335942889704,0.999896763353946,-4.61494781807592 +"A1Z933",-0.10411304229126,15.8211696505362,-0.107523284176278,0.915921625573323,0.999896763353946,-4.6149512377208 +"Q9VEK8",-0.053011966776296,18.8674843722732,-0.106191218301652,0.916959024708258,0.999896763353946,-4.61495723578905 +"Q7KQM6",-0.0400381284781464,15.1438330806644,-0.105941455930343,0.917153554627868,0.999896763353946,-4.61495835212958 +"P18053",-0.0546564071635629,21.0232835006624,-0.105924185133367,0.917167006364782,0.999896763353946,-4.61495842922645 +"P48609",0.0846412382193726,16.9537959924135,0.105894916497628,0.917189802940311,0.999896763353946,-4.61495855985309 +"Q9VS02",-0.069018316110359,17.9252793140078,-0.10555893729881,0.91745149377637,0.999896763353946,-4.61496005675914 +"O15943",0.0493208099536382,20.1787841419824,0.105060139009113,0.917840021107236,0.999896763353946,-4.61496227033616 +"Q8I0J3",0.0488004616268167,14.9984881108501,0.104512309640136,0.91826676519511,0.999896763353946,-4.61496468946086 +"A1Z8D0",-0.169176768728279,13.7749725906656,-0.104293660262745,0.918437094395429,0.999896763353946,-4.61496565146038 +"O76877",-0.103470806979921,17.368344962166,-0.103850133382953,0.918782617319739,0.999896763353946,-4.61496759669222 +"Q9VT75",0.0901106660955371,15.5724515508241,0.103849607172931,0.918783027265861,0.999896763353946,-4.61496759899518 +"P02572",-0.064893061663696,26.5782803934844,-0.103345481898444,0.919175779184239,0.999896763353946,-4.61496979995422 +"Q9VMC8",-0.046113785749057,16.3601222739119,-0.103316759573105,0.919198156720765,0.999896763353946,-4.61496992503142 +"A0A6H2EGA2",-0.0961672405470111,15.8128614148274,-0.103062182659923,0.919396500461616,0.999896763353946,-4.61497103212322 +"O97422",0.0482450098291256,15.4041839298481,0.102822878677477,0.919582949975426,0.999896763353946,-4.61497207031393 +"Q9VNI8",-0.0660765478460661,15.7459663477266,-0.102695998709232,0.919681808279416,0.999896763353946,-4.61497261979089 +"Q9VDC3",-0.0410391430898258,19.2797735156411,-0.102591186183801,0.919763473815423,0.999896763353946,-4.61497307319055 +"O16158",0.0491555638804506,21.3192781801875,0.10258596434313,0.919767542479887,0.999896763353946,-4.6149730957672 +"A8DRW0",-0.0612696158507156,21.6057592127439,-0.101430286651937,0.920668060897623,0.999896763353946,-4.61497806415696 +"Q9W3L4",0.111117894745327,17.7467405264326,0.101325996999774,0.920749330274746,0.999896763353946,-4.61497850974921 +"Q9VPX5",0.0647170885667521,18.8209767637334,0.10119668964342,0.920850096375335,0.999896763353946,-4.61497906159846 +"C0HK94",-0.0535887288583332,18.4540569725471,-0.100401316222718,0.921469942688206,0.999896763353946,-4.61498244058611 +"Q9W141",-0.0775864508045352,21.8765592328119,-0.100095729367122,0.921708105189808,0.999896763353946,-4.61498373174229 +"Q9VJI7",0.0394815059886788,17.3571783663304,0.099960774918295,0.921813285921384,0.999896763353946,-4.61498430069835 +"Q9VGR2",-0.0869012757949825,15.6431698297456,-0.0993804151021786,0.92226562377315,0.999896763353946,-4.61498673872043 +"Q9VYU9",-0.0670512104259728,17.8594186253684,-0.0991887234716554,0.922415036168079,0.999896763353946,-4.61498754088392 +"P13496",-0.0524888308770066,18.2754618155909,-0.0989242445948963,0.922621186953909,0.999896763353946,-4.61498864510156 +"Q9V405",0.0523539205345855,20.2097429525788,0.0988771567840149,0.922657890639951,0.999896763353946,-4.61498884138811 +"Q7KM15",-0.0419358771949661,17.1142929047039,-0.0987302285539925,0.922772418432662,0.999896763353946,-4.61498945326251 +"Q9VN95",0.0540107940275476,17.9328945901364,0.0985927221832456,0.922879603676196,0.999896763353946,-4.61499002507814 +"Q9VE56",-0.0615019803883783,17.4777870701309,-0.098196643472891,0.923188352925813,0.999896763353946,-4.61499166771652 +"Q9VQL1",-0.0545422096762351,20.1082706861839,-0.0977181110756124,0.923561393214394,0.999896763353946,-4.61499364351489 +"O44226",-0.0562208650351472,20.186674150274,-0.0974070879035251,0.923803861591195,0.999896763353946,-4.61499492252801 +"Q9W0H3",0.0473274497001555,16.7186529265854,0.097342594574472,0.923854140480313,0.999896763353946,-4.61499518723335 +"Q8IMT3",0.0933511307653418,14.7426185349403,0.0973019639095415,0.923885816250969,0.999896763353946,-4.6149953539074 +"Q9VGG5",0.0573587034024783,17.0264495694719,0.0972476061311364,0.923928193924397,0.999896763353946,-4.61499557678392 +"Q9W1Y1",0.0478758459600037,17.8256206308778,0.0971082994197576,0.92403679942773,0.999896763353946,-4.61499614739907 +"Q6AWN0",-0.0350074786298329,18.4257422948074,-0.0965292892699724,0.924488220864582,0.999896763353946,-4.61499851034427 +"Q9V998",0.0714605826852246,15.8062046875572,0.0963581363390711,0.924621664301403,0.999896763353946,-4.61499920612203 +"Q9W5P1",0.0847792303788086,14.3194752072265,0.0962666131288944,0.924693023508347,0.999896763353946,-4.61499957768051 +"P48611",0.0522076854297531,20.1192554790249,0.0955209720633218,0.925274413166384,0.999896763353946,-4.61500259165177 +"Q9VAU6",0.0288471224195863,13.4805338511739,0.0949881557411842,0.925689886778821,0.999896763353946,-4.61500473104021 +"Q9VME3",0.0792326681931677,15.7203847405877,0.0949033525325272,0.925756015768167,0.999896763353946,-4.61500507044487 +"Q9VL89",0.0377739395459571,16.8733028423441,0.0940712553110983,0.926404909936538,0.999896763353946,-4.61500838467631 +"A1Z8D3",0.109107538990322,16.6323560679059,0.0938018772849146,0.926614990623559,0.999896763353946,-4.61500945136714 +"Q9W396",-0.0878873757346597,16.6601802969438,-0.0935826407374917,0.926785971518379,0.999896763353946,-4.61501031725411 +"Q9VWS1",-0.0678518189211275,17.1562803626478,-0.093318907353093,0.926991660134834,0.999896763353946,-4.61501135620577 +"Q9VAV2",-0.046576993792069,17.7716241743794,-0.0929800129646487,0.927255975622491,0.999896763353946,-4.61501268695282 +"Q9VVU2",0.0561378174942107,20.0565018424827,0.0916592080018193,0.92828620212032,0.999896763353946,-4.6150178273055 +"Q9V564",-0.0490790123416254,14.0252456077122,-0.091657708362986,0.928287371913393,0.999896763353946,-4.61501783310015 +"Q9V5C6",0.0483784556364988,20.6192335060217,0.089949424494679,0.929620029744911,0.999896763353946,-4.61502437253642 +"O17452",0.0435430276980995,19.8506986541975,0.0898439940486238,0.929702284848922,0.999896763353946,-4.61502477211054 +"Q9W147",-0.0666032662427618,13.7831731343749,-0.0897271394758341,0.92979345384488,0.999896763353946,-4.61502521443504 +"Q9VDC0",-0.0790233863684833,17.5760113133478,-0.0897017574608123,0.929813256823939,0.999896763353946,-4.61502531043654 +"Q9V470",0.0506022347437387,19.9469706909977,0.0895584175793265,0.929925091116151,0.999896763353946,-4.61502585207729 +"A1Z6S7",-0.0277755531588788,17.5587209276209,-0.0887950111196891,0.930520729450119,0.999896763353946,-4.61502872221515 +"Q9V3V9",-0.029925800874615,19.4957287678014,-0.0882118050891369,0.930975797835642,0.999896763353946,-4.61503089834518 +"Q9W404",-0.075218187737045,15.9400278077765,-0.0882010504410812,0.93098418978942,0.999896763353946,-4.61503093833989 +"P22769",-0.0378386546848688,20.1281649493065,-0.0879866115576512,0.931151520261814,0.999896763353946,-4.6150317347859 +"P23625",0.0383408207645282,22.2294150014328,0.0879769105511147,0.931159090209721,0.999896763353946,-4.61503177077061 +"Q9VCF8",-0.0534496591285176,16.9738862283629,-0.0879021002188945,0.931217466891738,0.999896763353946,-4.61503204813748 +"A1Z934",-0.0530863065173719,19.3005340964885,-0.087462304722085,0.931560660440911,0.999896763353946,-4.61503367396322 +"Q9VF82",-0.0435766424431474,14.8650498980366,-0.0870717887225174,0.931865410694529,0.999896763353946,-4.61503511079313 +"Q8SWZ6",-0.0721710390631092,13.9839389297522,-0.0870501759994362,0.931882277121768,0.999896763353946,-4.6150351901257 +"Q9VY41",-0.0378159030287684,16.5729070693299,-0.0869941096255357,0.931926031110516,0.999896763353946,-4.61503539583367 +"Q95RB1",-0.0262124778125497,15.9535970642725,-0.0869924220115424,0.931927348121719,0.999896763353946,-4.61503540202349 +"Q9VUH8",0.0294080798389125,15.4464439546549,0.0868947658316999,0.932003559197771,0.999896763353946,-4.61503576000207 +"Q9VW00",-0.132744055290667,15.8098845532829,-0.0859847025812548,0.932713807587544,0.999896763353946,-4.61503907673194 +"Q9VS84",-0.0472027111743962,17.4872722520765,-0.0858929316537076,0.932785432468899,0.999896763353946,-4.61503940925742 +"Q9VW90",0.0730270299244449,14.9823232881292,0.0854472242532468,0.933133304385743,0.999896763353946,-4.61504101920705 +"Q7K9H6",-0.0643586433378616,11.8191420571785,-0.0846877354282129,0.933726113475099,0.999896763353946,-4.61504374331665 +"Q9VII5",0.050139489997747,17.3461008148914,0.0842851169928652,0.93404038863957,0.999896763353946,-4.61504517757141 +"Q9W0A8",0.0559336333016915,18.8598857503612,0.0835449001454749,0.934618215547546,0.999896763353946,-4.61504779666032 +"Q9V455",-0.0642782033559222,19.3163207500515,-0.0829720826681352,0.935065393731389,0.999896763353946,-4.61504980761927 +"Q7JVK8",-0.0444606946403923,19.1567414039757,-0.082967007331496,0.935069355967826,0.999896763353946,-4.61504982537526 +"Q4V6M1",-0.0524936241398635,18.2208847028862,-0.082788215898875,0.935208936801055,0.999896763353946,-4.61505045018278 +"Q05856",0.0801180638944299,13.6606259577005,0.0824571010614109,0.935467440965907,0.999896763353946,-4.61505160374951 +"Q9VTF9",0.031031934056962,17.3795866927156,0.0823063731602385,0.935585118025784,0.999896763353946,-4.61505212734026 +"Q8IH18",0.0456246879293509,15.6396759812287,0.0818815870531417,0.935916767624024,0.999896763353946,-4.61505359779581 +"Q9VCI0",-0.107252246933209,14.7319906090647,-0.0799544674535707,0.937421510835301,0.999896763353946,-4.61506017340524 +"Q95SH0",0.055379726122851,13.9373299340762,0.0795889196583955,0.937706967929208,0.999896763353946,-4.61506140306922 +"Q9V3V6",0.0394745369783642,21.5453504232483,0.0794522384853492,0.937813704853038,0.999896763353946,-4.61506186140544 +"M9MSK4",-0.0408087719222436,20.6282013334561,-0.0789513714941745,0.938204852002214,0.999896763353946,-4.6150635342537 +"Q9VEC2",-0.0560675324044908,16.6975315451356,-0.0788094286081009,0.938315703922564,0.999896763353946,-4.61506400640907 +"Q9VJ60",-0.0435692550323665,16.5267477426444,-0.0787406847679658,0.938369390688718,0.999896763353946,-4.61506423477207 +"Q9VAP3",0.0604995922817295,16.4519656517905,0.0784557377541214,0.938591928618213,0.999896763353946,-4.61506517922802 +"O97365",-0.0321017739072786,17.9636968147313,-0.0783847401059728,0.938647377194822,0.999896763353946,-4.61506541401758 +"Q9V3U6",0.0367035927182293,21.0321878434071,0.0782514581747893,0.938751470175029,0.999896763353946,-4.61506585420848 +"Q9VQ88",-0.0489045096359533,16.3901606565019,-0.0781051251558977,0.938865757374618,0.999896763353946,-4.61506633664204 +"Q8IMX8",-0.0412678927589205,17.1753198942265,-0.077629608404213,0.939237149225528,0.999896763353946,-4.61506789811079 +"Q95WY3",0.0481196988500407,17.2121821471469,0.077432740721161,0.939390912686002,0.999896763353946,-4.61506854178485 +"Q9V9U4",-0.0604844602979089,15.9163009875989,-0.0773241089593131,0.939475760575891,0.999896763353946,-4.61506889626619 +"Q9VL93",-0.026547151959587,15.3292093432287,-0.0770586102425584,0.939683134133839,0.999896763353946,-4.61506976053646 +"Q9W0M5",-0.031960914194082,13.2282298468219,-0.076905003214464,0.939803114328159,0.999896763353946,-4.6150702592138 +"Q9VY92",-0.0505476076065037,21.3320857123004,-0.0767229852622693,0.939945287844866,0.999896763353946,-4.61507084883978 +"Q7KW39",0.033685649792929,21.6793970167045,0.0765955003625334,0.940044867073482,0.999896763353946,-4.61507126098169 +"Q95RQ1",0.0729018078998092,11.7851132293016,0.076185153732058,0.940365398384978,0.999896763353946,-4.61507258293247 +"Q9VK69",-0.0467105537207004,20.2529497733663,-0.076161562158853,0.940383826639444,0.999896763353946,-4.61507265871831 +"Q9VW40",0.0389422087431281,14.6776116356898,0.0758155807541053,0.9406540896427,0.999896763353946,-4.61507376746123 +"P81900",0.0468822703908458,22.4431518876514,0.075512040686527,0.940891205900792,0.999896763353946,-4.61507473604479 +"Q9VYS5",-0.0385642698764439,14.2773424845669,-0.0754660708634546,0.940927116635397,0.999896763353946,-4.61507488239431 +"Q7K4Z4",-0.0406169644564418,14.9083241284338,-0.0752920979182447,0.941063022135975,0.999896763353946,-4.61507543544901 +"Q7K3W4",-0.0440496572023719,19.3274226587104,-0.0750564395399027,0.941247118572143,0.999896763353946,-4.61507618256755 +"Q9VL70",0.0402594828062455,23.5205767071286,0.0747703775054983,0.941470595057761,0.999896763353946,-4.61507708634106 +"A1Z7G2",0.0618745294602441,19.5480418467204,0.0744911011915316,0.941688775367719,0.999896763353946,-4.61507796535201 +"A8DZ14",-0.0558263505275534,19.4490994950313,-0.0742333942556554,0.94189010925113,0.999896763353946,-4.61507877356071 +"Q9VSW4",0.0282053889498091,15.8235366881298,0.0741113406641067,0.941985465222225,0.999896763353946,-4.61507915536372 +"Q9VHI7",0.0428762797774258,15.4679886480757,0.0740830933668208,0.94200753392597,0.999896763353946,-4.61507924363636 +"Q9VTZ6",-0.0321588932335928,17.0843388270319,-0.0728651703404131,0.942959104803251,0.999896763353946,-4.61508301768321 +"Q9VSL6",-0.0863942650050653,14.5563189512371,-0.0722299868238956,0.943455413673394,0.999896763353946,-4.61508496117846 +"Q9VIK0",0.0579611478893796,12.7564809164862,0.0716296629978972,0.943924506915314,0.999896763353946,-4.61508678239436 +"Q9U1K7",-0.0440555783009913,17.503157094098,-0.0716020603055857,0.943946076189891,0.999896763353946,-4.6150868657683 +"Q7KLX3",0.0571865916542222,19.2700463682208,0.0714441676283832,0.944069457442043,0.999896763353946,-4.61508734206641 +"Q9VMG0",-0.124817563130987,14.7082229391184,-0.0714224246250281,0.944086448080838,0.999896763353946,-4.61508740757398 +"Q7K127",-0.0348308444370069,18.5180490170209,-0.0712753792579106,0.944201354509071,0.999896763353946,-4.61508785007128 +"Q9VRD9",-0.0466179669780864,16.0873883920434,-0.0708391908340595,0.944542215089482,0.999896763353946,-4.6150891573172 +"Q9NCC3",-0.0392047196859764,17.3048094038192,-0.0707282299470334,0.94462892756812,0.999896763353946,-4.61508948858574 +"Q9VTZ5",0.039253697313665,18.0494999074338,0.069405707707872,0.945662493374322,0.999896763353946,-4.61509339698984 +"Q9V4Q8",-0.0428036950001776,16.8873284214843,-0.0693822342528977,0.945680839064279,0.999896763353946,-4.61509346569474 +"Q9VU45",-0.0705986016158349,17.8519149461058,-0.0692644068917203,0.945772927578469,0.999896763353946,-4.61509381021525 +"P80455",-0.0269671368509528,20.5605140538924,-0.0691112542762203,0.945892625911194,0.999896763353946,-4.61509425715075 +"Q9VHD2",0.0454725444290283,16.5832599913292,0.0681274160347743,0.946661589193558,0.999896763353946,-4.61509710466397 +"Q9V434",-0.0260309444774585,15.005963378787,-0.0679337519152758,0.94681296268113,0.999896763353946,-4.61509766038123 +"Q9W3J1",-0.0403940692155516,15.7848510725621,-0.0669367799115305,0.947592258543893,0.999896763353946,-4.61510049618072 +"Q9VHG4",-0.0306195417607285,18.303920412094,-0.0668654148428163,0.947648044106961,0.999896763353946,-4.61510069756652 +"Q9VMF0",0.0249799679688323,13.8761062826665,0.066102524090108,0.948244408115715,0.999896763353946,-4.61510283696971 +"A1ZA83",0.0421421082528362,17.0555283139783,0.0660120932361319,0.94831510151796,0.999896763353946,-4.61510308894291 +"Q7K1Q7",-0.0254872586349677,16.5420971625221,-0.0656742246894368,0.948579230823225,0.999896763353946,-4.61510402731916 +"Q9W499",0.0255703880038496,16.8613541882994,0.0646325022512012,0.949393638506868,0.999896763353946,-4.61510689026416 +"Q9VK99",-0.025534921117,19.9280531077258,-0.0645655526768633,0.949445981003056,0.999896763353946,-4.61510707269674 +"Q9VNQ3",-0.0598658869300497,15.0704904401473,-0.0644444309952987,0.949540676936165,0.999896763353946,-4.61510740226438 +"P36951",0.0304797091061211,20.3718802369664,0.0643575077663072,0.949608636159843,0.999896763353946,-4.61510763839833 +"Q9VQ29",0.0265145812337551,22.1510318036857,0.0641711414407117,0.949754344393532,0.999896763353946,-4.61510814360451 +"Q9W3C4",-0.032865323113759,14.7927514337452,-0.0640775762217569,0.949827497921104,0.999896763353946,-4.61510839669151 +"P08120",0.0256854651732006,18.2202980628385,0.0632983946737356,0.950436715558281,0.999896763353946,-4.61511048999391 +"Q9VUW2",0.0718578068995672,14.488745720695,0.0624498845739408,0.951100175647925,0.999896763353946,-4.61511274045352 +"Q86PD3",0.0380467754930471,18.9004112017947,0.0623728070636284,0.951160445340735,0.999896763353946,-4.61511294337918 +"P05812",0.0511791299900128,15.821100000321,0.0620966846205711,0.951376358012091,0.999896763353946,-4.61511366828523 +"Q9VKR0",0.0764728362005638,13.2384551342161,0.0617871082570052,0.951618434541338,0.999896763353946,-4.61511447719789 +"Q9VRJ4",-0.0301521404839811,20.7082844445614,-0.0614767237886822,0.95186114796078,0.999896763353946,-4.61511528416783 +"P17704",0.0289910825929951,20.3088565508304,0.0614274072788568,0.951899712779756,0.999896763353946,-4.61511541201228 +"Q7KMQ0",-0.0263222149476938,20.724586685964,-0.0610253685982994,0.952214106052993,0.999896763353946,-4.61511645040409 +"Q9VNE2",-0.0295362258883678,19.0130069044264,-0.0608121927664054,0.952380812395272,0.999896763353946,-4.61511699823467 +"Q9VPB8",-0.0465050589292275,15.57492551768,-0.0606220156400161,0.952529535399158,0.999896763353946,-4.61511748534567 +"Q9U6P7",0.037658413952272,17.0818545378003,0.0606120288237485,0.952537345376174,0.999896763353946,-4.61511751088333 +"Q9VH19",0.0392610969304208,13.9955459359337,0.06060055870551,0.952546315344167,0.999896763353946,-4.6151175402088 +"A1Z6G9",0.0188126372489652,14.1889757287999,0.0603335755331432,0.952755105881013,0.999896763353946,-4.61511822123414 +"P41094",0.0265754529572177,21.1447888016418,0.0601151856332292,0.952925897396014,0.999896763353946,-4.6151187760734 +"Q9VEN9",0.0239582866982424,14.8501549283188,0.0595302999254836,0.953383318260963,0.999896763353946,-4.61512025212855 +"Q7PLI0",0.0340557277740636,17.7673991561735,0.0589045130092167,0.953872745590651,0.999896763353946,-4.6151218154402 +"Q9VC58",-0.0665365880357722,13.1234057159513,-0.0588493608047557,0.953915881005868,0.999896763353946,-4.61512195242749 +"Q9W415",0.053731478916621,16.7582016132923,0.0579474156416776,0.954621327844673,0.999896763353946,-4.61512417449184 +"E1JJH5",0.036552170432401,21.240168570264,0.0572127299516646,0.955195983706235,0.999896763353946,-4.61512595915101 +"Q7JXB9",0.0746014642770874,16.1816594544541,0.0565793629287413,0.955691411014918,0.999896763353946,-4.61512747943201 +"Q9W0K9",-0.0206210892261733,14.1875074309763,-0.0563659428203915,0.955858355091022,0.999896763353946,-4.61512798789907 +"Q8SZK9",0.0294191182673238,22.0758081014046,0.0563483224540632,0.955872138404887,0.999896763353946,-4.61512802979327 +"Q9VUK8",0.0311309916713789,20.7450337429826,0.0562540692558191,0.955945867053801,0.999896763353946,-4.61512825366756 +"Q9VLG9",-0.0375684388667263,15.7367595149132,-0.0561890266572183,0.955996746239317,0.999896763353946,-4.6151284079412 +"Q961T9",0.0348682574471866,17.881993077344,0.0557642026669271,0.956329067169913,0.999896763353946,-4.61512941118942 +"Q9VKJ4",0.0507807999293099,15.1182428849363,0.055755071040357,0.95633621052852,0.999896763353946,-4.61512943267081 +"Q9VFM0",0.0487272949396527,14.3572789956684,0.0556844249167939,0.956391474702314,0.999896763353946,-4.61512959874112 +"Q9VMY1",0.0505932760615995,15.4442128863843,0.055529992007308,0.956512283375703,0.999896763353946,-4.61512996103936 +"Q9W259",-0.0167718422245748,16.8757635572087,-0.0555258899294048,0.956515492335065,0.999896763353946,-4.61512997064909 +"Q9VES8",-0.065626003050447,17.9957208155939,-0.0554872006492086,0.956545758090355,0.999896763353946,-4.61513006124964 +"A1Z9M5",-0.0277644673253654,15.0261362135918,-0.0554648105163048,0.956563273420476,0.999896763353946,-4.61513011365287 +"Q7K549",-0.057173120109729,14.7024102917994,-0.0550045788847445,0.95692330810074,0.999896763353946,-4.61513118612558 +"P53501",-0.0417499166437167,24.6281982793412,-0.0537624287414686,0.957895078496958,0.999896763353946,-4.61513403612546 +"Q9VGQ8",-0.042547239866682,16.2244448522822,-0.0530559299417541,0.95844782432454,0.999896763353946,-4.61513562810467 +"Q9XYZ9",0.0239765534737799,21.9617245823263,0.0521020968244349,0.9591941131189,0.999896763353946,-4.61513774402987 +"Q07093",0.0209669547784621,14.5719061478596,0.0520472422458601,0.959237033118918,0.999896763353946,-4.6151378645496 +"Q9VS11",-0.0346884981399356,14.8710013153414,-0.0519790517263223,0.959290387774516,0.999896763353946,-4.61513801419256 +"Q9W330",0.0263493042090523,20.6935389235621,0.0515498692250101,0.95962619986924,0.999896763353946,-4.61513895152669 +"Q95U34",0.0314697396109622,19.4541268803187,0.0515114763929797,0.959656240572991,0.999896763353946,-4.61513903499819 +"Q9U5L1",-0.0355490019771452,17.6803499796112,-0.0514965317581076,0.959667934110209,0.999896763353946,-4.61513906747316 +"Q9VHE4",-0.0456302281908805,17.9430280057586,-0.0514039098784049,0.959740406982363,0.999896763353946,-4.61513926853218 +"P20240",0.0222835984627636,17.3162456830558,0.0502347689335627,0.960655244042296,0.999896763353946,-4.61514177534892 +"Q9VDF4",-0.0319576055813364,18.6728244254121,-0.0497307190698249,0.961049674131703,0.999896763353946,-4.61514283832996 +"Q8IP62",0.0662987834815851,15.7086767939694,0.0496959833782446,0.961076855965008,0.999896763353946,-4.61514291118885 +"Q9VW58",0.0407576093743476,14.8911496379603,0.0485473962839086,0.961975691673298,0.999896763353946,-4.61514529172291 +"A1ZBM2",0.0259195457513499,18.5728532558588,0.0482388840817849,0.962217129490972,0.999896763353946,-4.61514592166079 +"Q9W265",0.0267491829697981,16.9662311248334,0.0478155471359603,0.962548433992807,0.999896763353946,-4.61514677952258 +"P38979",0.0290073979811964,22.0830921396772,0.0473113167403873,0.96294305527945,0.999896763353946,-4.61514779144843 +"Q8SXX1",0.029022327434852,19.9225365787962,0.0471715501444612,0.963052441341266,0.999896763353946,-4.61514807004439 +"Q7JZF5",-0.0222527027875046,16.9234149809766,-0.0471460844533134,0.963072371735204,0.999896763353946,-4.6151481207163 +"A1Z729",0.0330696120428762,16.6778521602213,0.046994045118099,0.963191363888659,0.999896763353946,-4.61514842267679 +"Q9VUM1",-0.0211819147165784,16.5458859736867,-0.046708314309737,0.963414990878419,0.999896763353946,-4.61514898752042 +"Q7K0W4",-0.0268845560875768,21.6775446308642,-0.0464225726037314,0.963638629597734,0.999896763353946,-4.61514954894271 +"Q9VA76",0.0199306997099669,15.1947921489252,0.0461006224668772,0.963890611032447,0.999896763353946,-4.6151501773819 +"Q9VCW6",0.0320319202653145,19.8351650385309,0.0458903365542184,0.964055198145628,0.999896763353946,-4.61515058549531 +"Q7K0P0",-0.0241647671190854,15.3619816718311,-0.0443032968063696,0.965297400836168,0.999896763353946,-4.61515360540697 +"Q9VD58",-0.0247194830641142,22.7284691502166,-0.0439618044075307,0.965564705037099,0.999896763353946,-4.61515424133207 +"Q7KTH8",0.0152611278050472,17.6191525471302,0.0435174130103107,0.965912560176594,0.999896763353946,-4.61515506151091 +"Q9W158",0.027685742723115,16.94293295494,0.0426720917503103,0.966574270030112,0.999896763353946,-4.61515659866587 +"Q7KUK9",0.0392528612970473,18.4151519196034,0.0424364400118249,0.966758740668266,0.999896763353946,-4.61515702180978 +"Q9VL68",-0.0153235252981609,20.7965004441967,-0.0421727678021551,0.966965148367941,0.999896763353946,-4.61515749249183 +"Q9V436",-0.0283673391413188,19.0817829984344,-0.0407425790247401,0.968084770259777,0.999896763353946,-4.61515999443985 +"Q7KSM5",0.0242327215675679,18.9193428632045,0.0405630421622937,0.968225325510732,0.999896763353946,-4.61516030242395 +"Q9VDI3",0.030781924982886,15.0132255347561,0.0394891924614862,0.969066040316616,0.999896763353946,-4.61516211616035 +"Q9Y112",0.0224399558539226,22.2472081909766,0.0394882715891609,0.969066761282293,0.999896763353946,-4.61516211769483 +"Q7JYZ9",-0.0330529216956101,18.1282004888464,-0.0388750038911533,0.969546904585944,0.999896763353946,-4.61516313166229 +"Q9VWA8",0.0203458502005986,14.498981594115,0.0369283879565385,0.971071041454014,0.999896763353946,-4.61516624507213 +"Q9VL18",0.0192293442883766,20.8553415639256,0.0363225733561433,0.971545398815373,0.999896763353946,-4.61516718139658 +"Q9W1W4",-0.0167368507227543,17.2882064445825,-0.0362768405078917,0.971581208434196,0.999896763353946,-4.6151672514511 +"Q9VMX3",0.0204821750811739,12.5563848001148,0.0362231115548734,0.971623279224075,0.999896763353946,-4.6151673336415 +"Q9W379",-0.0280514796692337,16.3361544956655,-0.0357455825658171,0.971997197328154,0.999896763353946,-4.61516805877762 +"Q9V3W7",-0.0191102514127444,17.9368101885541,-0.0356639687712784,0.972061103822353,0.999896763353946,-4.61516818174709 +"Q9W0M4",0.0213979583852755,17.7917265414031,0.035542397029876,0.972156299175127,0.999896763353946,-4.61516836440115 +"Q9VLT7",0.0158095916014425,18.0581270048317,0.0349849265055863,0.972592825678369,0.999896763353946,-4.61516919398188 +"P51140",-0.0109168173805081,13.6489594604332,-0.0342563566452032,0.973163345014766,0.999896763353946,-4.61517025841511 +"A1Z9E3",0.0137661226813748,21.8294740532335,0.0340059519099557,0.97335943235245,0.999896763353946,-4.61517061908319 +"Q9VB79",-0.0322862453319175,17.6182553597868,-0.0339870517959353,0.973374232756588,0.999896763353946,-4.61517064619842 +"Q9VF28",0.0228668556872798,17.7331892659406,0.0339608482874429,0.973394752359479,0.999896763353946,-4.61517068376662 +"Q9VAF5",-0.0122233616260381,15.9324404096414,-0.0339087790846133,0.973435527085798,0.999896763353946,-4.61517075833272 +"P08736",-0.0173995704100136,24.3626459502486,-0.0331190058708007,0.974053997779128,0.999896763353946,-4.61517187530921 +"Q9VEH2",-0.0255305661679888,15.9436538420782,-0.0313786224627908,0.975416951112339,0.999896763353946,-4.61517424384822 +"Q6IGW6",-0.00958927461023507,15.6531538178792,-0.0312318106796157,0.975531928116542,0.999896763353946,-4.61517443780422 +"Q9VZ20",0.0143810919644913,18.7116308222308,0.0311664613286816,0.975583107246401,0.999896763353946,-4.6151745238461 +"Q9W197",0.0169948758903331,17.346928161346,0.0310831894853578,0.975648322753593,0.999896763353946,-4.61517463322446 +"Q9VKA1",0.0404630409903994,14.447089477717,0.0304407104868435,0.976151495204874,0.999896763353946,-4.61517546729057 +"Q9VWU1",0.0106353012903799,14.9186713250977,0.0303053386743914,0.976257516158842,0.999896763353946,-4.61517564080893 +"Q9VI53",-0.0169653474521034,16.3646791329782,-0.0299667231189186,0.976522716272979,0.999896763353946,-4.61517607145748 +"Q9VFM9",-0.0222828553621852,17.1587789435794,-0.0295297701797189,0.976864937443863,0.999896763353946,-4.61517662002174 +"Q9V8M5",0.00870432779992925,19.8552174793146,0.0290850878700864,0.977213217112545,0.999896763353946,-4.61517717001916 +"Q9V3V0",-0.00890432972923882,14.2384159160768,-0.0289907419161513,0.977287110438637,0.999896763353946,-4.61517728563644 +"Q8SYD0",-0.0243952944396444,15.4483387224899,-0.0286148561341918,0.977581512602966,0.999896763353946,-4.61517774254098 +"Q9VYT1",0.0113876151837378,14.2722935259393,0.0284866841887927,0.977681900520306,0.999896763353946,-4.61517789697628 +"A1Z8H1",-0.0169049818653875,23.1582786122999,-0.0282059229568959,0.977901802082943,0.999896763353946,-4.6151782328454 +"Q9VG26",-0.0121904568055768,19.7324497960736,-0.028073714459936,0.978005352835952,0.999896763353946,-4.61517838985198 +"Q9W3T7",-0.0115923374366034,17.4234046917279,-0.0279173621148709,0.978127814506314,0.999896763353946,-4.61517857457922 +"O77430",0.0151150465738219,19.5471395633698,0.0278788034250739,0.978158015366777,0.999896763353946,-4.61517861997701 +"Q7K0S6",-0.0188084423843051,17.313179275113,-0.0276613246185809,0.978328354976554,0.999896763353946,-4.61517887485499 +"Q9VJC0",0.0171007992565926,16.5819689763211,0.0274227703101929,0.978515203172216,0.999896763353946,-4.61517915213768 +"Q9W087",-0.0220401625686648,16.6861783377117,-0.0272811487541443,0.97862612919361,0.999896763353946,-4.61517931561508 +"Q9VF77",0.0162952790940682,15.706905928794,0.0268478747288933,0.978965496786247,0.999896763353946,-4.61517981049943 +"Q9VPQ2",0.0255258239879552,16.4526517021558,0.0268047152447929,0.978999302254177,0.999896763353946,-4.61517985936226 +"Q0E980",-0.0126823222613339,18.3553797096807,-0.0266451611313756,0.979124276342007,0.999896763353946,-4.61518003931842 +"Q9VVS6",-0.0118535475799,16.5357706641022,-0.0263113150349662,0.97938577010081,0.999896763353946,-4.61518041237801 +"P02515",0.0116778702959763,18.0377552751154,0.0258453937349761,0.97975071935671,0.999896763353946,-4.61518092516483 +"Q7JZW2",0.0108833371539845,20.521355456215,0.0257458983752507,0.979828653212426,0.999896763353946,-4.61518103348124 +"Q9VZS1",0.0207139752240728,15.4504345758539,0.0256542677384551,0.979900426888013,0.999896763353946,-4.61518113286617 +"Q9VGF3",-0.0210223027161316,15.6704067951628,-0.0251579023135051,0.98028922979146,0.999896763353946,-4.61518166507922 +"P20351",0.0180205903268824,13.9681251576305,0.0249666626469454,0.980439029165795,0.999896763353946,-4.61518186735594 +"Q9W0C3",-0.0114779733960653,18.4515016912742,-0.0246300927548856,0.980702668586012,0.999896763353946,-4.61518221960242 +"Q86BL4",0.0138623605006725,14.971117120802,0.0226154791827652,0.982280788569796,0.999896763353946,-4.61518422811452 +"Q7K2D2",-0.0130193446067395,20.3423801454052,-0.0222519873111552,0.982565533366576,0.999896763353946,-4.6151845722673 +"Q9VC31",-0.0189959262658661,17.6825206330029,-0.0218517691364519,0.982879050915713,0.999896763353946,-4.61518494474344 +"Q9VRG8",-0.0220054418685187,16.1234048599403,-0.021611218447042,0.983067491708689,0.999896763353946,-4.61518516536763 +"P48159",0.0114299672592324,19.858793204773,0.0204648178866004,0.983965564604841,0.999896763353946,-4.61518618325555 +"Q9W258",0.00940275482687625,19.3025467926088,0.0201411824081996,0.984219099898622,0.999896763353946,-4.61518646057286 +"Q7KTW5",0.00917615798670113,21.6110695665812,0.0191740921390335,0.984976726653004,0.999896763353946,-4.61518726291675 +"Q9VTP4",-0.0118095115974164,20.9355974844405,-0.0191702959966632,0.984979700613456,0.999896763353946,-4.61518726598845 +"P05389",0.00993614003788679,20.5419099126282,0.0190036279756796,0.985110271314097,0.999896763353946,-4.61518740025032 +"Q9VMQ7",-0.00677310363976069,15.9004599540012,-0.0185740098325808,0.985446843866539,0.999896763353946,-4.61518774093012 +"Q9VCY3",0.010877252090733,17.8580846417023,0.0181094614929307,0.985810784762662,0.999896763353946,-4.61518810054417 +"Q9VTV9",-0.00857138483123165,17.2481045177074,-0.0177634621028446,0.986081853046944,0.999896763353946,-4.61518836247001 +"Q9VIT0",-0.018442311440694,16.4465394062624,-0.0171918947557335,0.986529643225103,0.999896763353946,-4.61518878408726 +"Q9VYT3",0.00824648487345847,14.4212182011872,0.017046767296979,0.986643343008441,0.999896763353946,-4.61518888894594 +"B7Z0N0",-0.0123338029012956,13.0584725469224,-0.0166458425031341,0.986957448202474,0.999896763353946,-4.61518917400585 +"Q9VGF7",-0.0140724564946275,20.0911923274831,-0.0165331570049554,0.9870457322498,0.999896763353946,-4.61518925290465 +"Q0KI15",0.0055431500947698,15.6179195709911,0.0161261571097418,0.987364599922715,0.999896763353946,-4.61518953340989 +"Q9W1H5",0.0108629037516152,17.2416560920484,0.015388703185337,0.987942370410569,0.999896763353946,-4.6151900238557 +"Q7JQW6",-0.0149660235126046,15.9021058519961,-0.0153777499468945,0.987950951960422,0.999896763353946,-4.61519003096721 +"Q8T0N5",0.00693019108446435,18.5736145147931,0.0151599165542767,0.98812161852986,0.999896763353946,-4.61519017134616 +"Q9XZ61",-0.00858495628574829,18.5317778658211,-0.0146456682806051,0.988524520520953,0.999896763353946,-4.61519049480041 +"Q9V4C8",0.00649161297017997,17.2450843857319,0.0145891754059121,0.988568781621955,0.999896763353946,-4.61519052965319 +"Q8MRT7",-0.00629483543140452,15.4200663945209,-0.0141397593414141,0.988920892006687,0.999896763353946,-4.61519080211865 +"Q9VSR8",-0.0121732024107146,15.4083652724595,-0.0140797127457189,0.988967937748937,0.999896763353946,-4.6151908378773 +"Q9W4X7",-0.0107922932479489,19.0813728103012,-0.0137506110851725,0.989225785457314,0.999896763353946,-4.61519103115977 +"Q6IGN6",0.00764689238471661,16.7860199677039,0.0130673287792873,0.989761133958247,0.999896763353946,-4.61519141785656 +"Q95RN0",0.00618199438562428,16.9418855534084,0.0127721918434975,0.989992373972437,0.999896763353946,-4.61519157879278 +"Q9VNF5",-0.00960206997267399,15.9301654564493,-0.0124945749774772,0.990209887852236,0.999896763353946,-4.61519172682006 +"Q9V3Y4",0.0167627692366761,14.0955836218084,0.012231469438957,0.990416032798369,0.999896763353946,-4.61519186410765 +"Q9VIQ8",0.00788694965753933,21.3476929233794,0.0118439110045958,0.990719688710834,0.999896763353946,-4.61519206101299 +"Q4V5I9",0.00484380295579712,16.1045588087095,0.0118164165708313,0.990741230932247,0.999896763353946,-4.61519207474117 +"Q86BI3",-0.00660980477274009,18.0600638577629,-0.011534132799943,0.990962404112103,0.999896763353946,-4.61519221384231 +"Q966T5",-0.00469223620660841,16.521060254944,-0.0107782648149419,0.991554640725696,0.999896763353946,-4.61519256975263 +"Q9VXB0",0.00635230969973222,20.2438374341937,0.0107299208849766,0.99159251927318,0.999896763353946,-4.61519259169556 +"Q9VVM1",-0.00344472977535837,15.5502205868336,-0.00994016286905147,0.99221131521017,0.999896763353946,-4.61519293619282 +"Q0E9F9",-0.00620815552877119,18.4244679412904,-0.00944406156505631,0.99260002616953,0.999896763353946,-4.61519313913348 +"Q24298",-0.00625285180857915,19.3985001594372,-0.00929796535651235,0.992714497516204,0.999896763353946,-4.61519319691729 +"Q7JXF5",0.00644462893734143,18.515884839958,0.00909895804537953,0.992870426778527,0.999896763353946,-4.61519327417914 +"Q9W436",0.00473262367418137,14.3909333229969,0.00895697728096452,0.992981673911326,0.999896763353946,-4.61519332827955 +"Q9VSK4",0.00497355468899485,19.7895594964929,0.00862734996485478,0.993239949575947,0.999896763353946,-4.61519345060034 +"P55828",0.0061522276045558,19.9747850273977,0.00842991349202903,0.993394649015954,0.999896763353946,-4.61519352167067 +"Q9V6B9",-0.00625241327308856,15.857780962715,-0.00828550762669788,0.993507797011223,0.999896763353946,-4.61519357261008 +"Q5LJT3",-0.00413398688194277,17.1015373283195,-0.00800554840532054,0.993727157104268,0.999896763353946,-4.61519366885903 +"Q7JXW8",0.00550815757067369,14.8550385820276,0.00792060382930874,0.993793714938768,0.999896763353946,-4.61519369740854 +"Q9VH07",0.00445960122723577,18.2173013461176,0.00747887656188608,0.994139828563903,0.999896763353946,-4.61519384096168 +"Q9VCU6",0.00267608503757089,15.4544439772664,0.00711803620086159,0.994422564491909,0.999896763353946,-4.61519395211666 +"Q9VUQ7",-0.00381850689258556,16.541158303633,-0.00703858765717348,0.994484816386105,0.999896763353946,-4.61519397585217 +"Q9VDK7",-0.00292265366909206,17.8725224125528,-0.00613669346685295,0.995191497955848,0.999896763353946,-4.6151942266183 +"Q9XYW6",0.00257702499318313,16.6062938639541,0.00606941385078941,0.99524421525208,0.999896763353946,-4.61519424394894 +"P02299",0.00349790018093188,22.0033434176027,0.00605535002677116,0.995255235038118,0.999896763353946,-4.61519424754751 +"Q9VFN9",0.00260321793406249,16.0590149731594,0.00467640041130975,0.996335723052646,0.999896763353946,-4.61519455984841 +"Q7YTY6",-0.00556057321249526,18.4706386864837,-0.00457823848806267,0.996412638995835,0.999896763353946,-4.61519457901997 +"Q9VE94",-0.00254740625284278,14.6814213846271,-0.00363279792345257,0.997153451982879,0.999896763353946,-4.61519474284763 +"O18373",-0.00146969546918641,19.5771833539344,-0.00360099620995503,0.997178370705283,0.999896763353946,-4.61519474770244 +"Q9VV47",0.00121366100414377,20.2267462639323,0.00337926993989749,0.997352107822653,0.999896763353946,-4.61519478036457 +"Q9VLM8",-0.00119907562635291,16.8110897095364,-0.00332948209110281,0.997391119896664,0.999896763353946,-4.61519478741345 +"Q9VD30",-0.00182393087853328,21.4343518013308,-0.00309932850985602,0.997571460545426,0.999896763353946,-4.61519481863855 +"Q9VHG6",0.00139154076619619,15.7738200967352,0.00273284919315831,0.997858621761633,0.999896763353946,-4.6151948637447 +"Q9W3G8",-0.00110193377260615,15.7518214313318,-0.00228204010885001,0.998211861446609,0.999896763353946,-4.61519491145473 +"Q9VN93",-0.00102053719776762,20.2863284699987,-0.00221270919857553,0.998266186983103,0.999896763353946,-4.61519491803113 +"P49963",-0.00148211894319061,14.8732283619124,-0.00213385377445301,0.998327975642102,0.999896763353946,-4.61519492526438 +"Q9VNX9",0.00141671340531957,13.5166682558316,0.00203338993448558,0.998406696000123,0.999896763353946,-4.61519493409954 +"Q9VGQ1",-0.00110516200663824,22.459897762128,-0.00196961257404566,0.998456669976368,0.999896763353946,-4.6151949394873 +"Q7KMM4",0.0016072742500306,14.5144829041496,0.00181355781945081,0.998578949705847,0.999896763353946,-4.61519495194646 +"Q9VHK6",-0.0005677346434112,18.0738563475364,-0.0010412619864431,0.999184097568113,0.999896763353946,-4.61519499847489 +"Q9VLM9",0.00105589095899461,18.3987764740882,0.000944711407217447,0.999259751752169,0.999896763353946,-4.61519500252143 +"Q7JVG2",-0.000226988402609152,14.7968739633531,-0.00035487358884999,0.999721931389487,0.999896763353946,-4.61519501869826 +"P43332",7.67781345984986e-05,17.1511980313934,0.000166659247603905,0.999869410664305,0.999896763353946,-4.61519502076978 +"Q9VN71",7.58494174029067e-05,18.6215625376787,0.000131751506605696,0.999896763353946,0.999896763353946,-4.61519502098962 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SFug_vs_Earth_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SFug_vs_Earth_significant.csv new file mode 100644 index 0000000..c4e1d63 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/Limma_SFug_vs_Earth_significant.csv @@ -0,0 +1 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SF1g_vs_Earth.csv new file mode 100644 index 0000000..0e2e9cd --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SF1g_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","SF1g","Earth" +"Earth_F1",0,1 +"Earth_F2",0,1 +"Earth_F3",0,1 +"Earth_M1",0,1 +"Earth_M2",0,1 +"Earth_M3",0,1 +"SF1g_F1",1,0 +"SF1g_F2",1,0 +"SF1g_F3",1,0 +"SF1g_M1",1,0 +"SF1g_M2",1,0 +"SF1g_M3",1,0 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SF1g_vs_SFug.csv new file mode 100644 index 0000000..3e88f6a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SF1g_vs_SFug.csv @@ -0,0 +1,13 @@ +"sample","SF1g","SFug" +"SF1g_F1",1,0 +"SF1g_F2",1,0 +"SF1g_F3",1,0 +"SF1g_M1",1,0 +"SF1g_M2",1,0 +"SF1g_M3",1,0 +"SFug_F1",0,1 +"SFug_F2",0,1 +"SFug_F3",0,1 +"SFug_M1",0,1 +"SFug_M2",0,1 +"SFug_M3",0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SFug_vs_Earth.csv new file mode 100644 index 0000000..32c0c48 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/design_matrix_SFug_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","SFug","Earth" +"Earth_F1",0,1 +"Earth_F2",0,1 +"Earth_F3",0,1 +"Earth_M1",0,1 +"Earth_M2",0,1 +"Earth_M3",0,1 +"SFug_F1",1,0 +"SFug_F2",1,0 +"SFug_F3",1,0 +"SFug_M1",1,0 +"SFug_M2",1,0 +"SFug_M3",1,0 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SF1g_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SF1g_vs_Earth.csv new file mode 100644 index 0000000..6ef3a3e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SF1g_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"Earth_F1","Earth","Female","TMTa" +"Earth_F2","Earth","Female","TMTb" +"Earth_F3","Earth","Female","TMTc" +"Earth_M1","Earth","Male","TMTa" +"Earth_M2","Earth","Male","TMTb" +"Earth_M3","Earth","Male","TMTc" +"SF1g_F1","SF1g","Female","TMTa" +"SF1g_F2","SF1g","Female","TMTb" +"SF1g_F3","SF1g","Female","TMTc" +"SF1g_M1","SF1g","Male","TMTa" +"SF1g_M2","SF1g","Male","TMTb" +"SF1g_M3","SF1g","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SF1g_vs_SFug.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SF1g_vs_SFug.csv new file mode 100644 index 0000000..ce40c16 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SF1g_vs_SFug.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"SF1g_F1","SF1g","Female","TMTa" +"SF1g_F2","SF1g","Female","TMTb" +"SF1g_F3","SF1g","Female","TMTc" +"SF1g_M1","SF1g","Male","TMTa" +"SF1g_M2","SF1g","Male","TMTb" +"SF1g_M3","SF1g","Male","TMTc" +"SFug_F1","SFug","Female","TMTa" +"SFug_F2","SFug","Female","TMTb" +"SFug_F3","SFug","Female","TMTc" +"SFug_M1","SFug","Male","TMTa" +"SFug_M2","SFug","Male","TMTb" +"SFug_M3","SFug","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SFug_vs_Earth.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SFug_vs_Earth.csv new file mode 100644 index 0000000..6f0455c --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/model_metadata_SFug_vs_Earth.csv @@ -0,0 +1,13 @@ +"sample","condition","sex","tmt_run" +"Earth_F1","Earth","Female","TMTa" +"Earth_F2","Earth","Female","TMTb" +"Earth_F3","Earth","Female","TMTc" +"Earth_M1","Earth","Male","TMTa" +"Earth_M2","Earth","Male","TMTb" +"Earth_M3","Earth","Male","TMTc" +"SFug_F1","SFug","Female","TMTa" +"SFug_F2","SFug","Female","TMTb" +"SFug_F3","SFug","Female","TMTc" +"SFug_M1","SFug","Male","TMTa" +"SFug_M2","SFug","Male","TMTb" +"SFug_M3","SFug","Male","TMTc" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/significant_counts_summary.csv new file mode 100644 index 0000000..5a4e723 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/condition_only/significant_counts_summary.csv @@ -0,0 +1,4 @@ +"model","contrast","n_significant" +"condition_only","SF1g_vs_Earth",0 +"condition_only","SFug_vs_Earth",0 +"condition_only","SF1g_vs_SFug",0 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_results.csv new file mode 100644 index 0000000..92cb4a8 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q8MSI2",-0.873285317818553,24.0461586236833,-14.0486643263532,1.82531640866116e-05,0.00827781390113706,3.75722465736038 +"Q9VXQ0",0.779936797951352,14.9769959304666,13.5936493512103,2.17207999331117e-05,0.00827781390113706,3.60271318892589 +"Q8IN43",-0.971052471709385,18.7118013049804,-12.744230214654,3.05175453063216e-05,0.00827781390113706,3.29388962543591 +"P10676",-0.923702968956768,20.0270018721723,-12.3980714063476,3.52708973682162e-05,0.00827781390113706,3.15982959650652 +"P13677",-0.724138774938034,17.1752607946765,-12.311487097801,3.65931489898565e-05,0.00827781390113706,3.12550912248456 +"Q70PY2",0.76491552582975,17.2354178086612,12.1501943150039,3.9215519506068e-05,0.00827781390113706,3.06071063916258 +"Q9VIE8",0.666867445948611,24.8234102158726,11.5511029209064,5.11068028760489e-05,0.00827781390113706,2.80976372162344 +"Q9VC06",0.737674076918646,16.3803290825685,11.3323736666146,5.6476278166533e-05,0.00827781390113706,2.71391531441808 +"O16797",0.689222441118442,16.8816637834037,11.177944858817,6.06695186059775e-05,0.00827781390113706,2.64481552695073 +"Q9VNE9",0.693090226170195,18.8749682446011,11.0956691089399,6.30529702669578e-05,0.00827781390113706,2.60750717355122 +"Q9VC18",0.608215330046608,18.0802855624512,10.9655542078409,6.70513344905114e-05,0.00827781390113706,2.54779226035011 +"P17336",0.609190063443084,20.749061096268,10.8873417248462,6.95984449827954e-05,0.00827781390113706,2.51147043288692 +"Q9VG42",-0.619557585345532,15.2820964376128,-10.878973116323,6.9877672873355e-05,0.00827781390113706,2.50756485847834 +"Q9VV36",-0.62907299523896,23.3006789648926,-10.8684150853523,7.02318375298533e-05,0.00827781390113706,2.50263217420734 +"Q9VED8",0.666257262581082,16.0895997168234,10.7475456606429,7.44407724922398e-05,0.00827781390113706,2.44573627567936 +"Q9VAY9",0.635863376290093,14.381111062563,10.5453578814578,8.21647604993229e-05,0.00856567628205442,2.34878000963295 +"Q9VHR8",0.623877017062462,20.3280224165185,10.2168381151238,9.68251730370253e-05,0.00866886254508676,2.18632282123879 +"A1Z8H6",-0.718209467914006,16.9644710329734,-10.1797725436804,9.86653243602389e-05,0.00866886254508676,2.16759952922159 +"Q9VM07",0.658323593238128,16.9218424171868,10.1467444893807,0.00010033978169758,0.00866886254508676,2.15084702975686 +"Q9VLC5",0.599269631441196,21.6812593030655,10.0755168765292,0.000104066035963535,0.00866886254508676,2.11449685847584 +"Q9I7Q5",-0.727867376353892,20.7226369775085,-9.9832042584333,0.000109140355783466,0.00866886254508676,2.0669299653538 +"Q9VEY0",0.550009977561501,17.9233436793823,9.81787206293546,0.000118975059412882,0.00902047268639487,1.9804273336093 +"P06002",-0.767919993608489,16.7825736432431,-9.68573699484431,0.000127590183659674,0.00925306201497117,1.91005902901657 +"P19334",-1.18434629209147,15.3825096141411,-9.43494174513699,0.000146045997520068,0.0101501968276447,1.77339076568895 +"Q9VXP3",0.591126624245396,14.4120677484671,9.27788630953373,0.000159203432937963,0.0102891643067037,1.68566999485167 +"Q8IN44",-0.510554865924881,20.0967248508549,-9.21130383857619,0.000165198755808115,0.0102891643067037,1.64797196899199 +"A1Z803",0.577442513509499,18.7104120713701,9.19667581593114,0.000166551220791966,0.0102891643067037,1.6396486093825 +"B7Z107",-0.564642776461714,16.0404259930414,-9.00421432021429,0.000185615084974853,0.0105975823050751,1.52873463441463 +"Q9W370",0.571182806845158,18.33445916151,8.98292452037128,0.000187877451670185,0.0105975823050751,1.5163032174644 +"Q7JWF1",0.545119175567809,20.3959731551489,8.95766312468263,0.000190603998292717,0.0105975823050751,1.50151022701572 +"Q9W3E2",-0.53939088825868,17.8560187520338,-8.8560960397781,0.000202046000286974,0.0107588234901011,1.44156337139341 +"Q01637",0.504260382365024,15.8575756476267,8.81917146850215,0.000206404287579877,0.0107588234901011,1.41958165151233 +"Q9W2E7",0.491004534754385,18.3821835263089,8.64991432065165,0.000227850289417739,0.0108257013163954,1.31751391333332 +"A1Z9A8",0.611408312443178,16.5941778348511,8.52860954112069,0.000244837004146613,0.0108257013163954,1.24301840157332 +"P22979",0.559290953989802,19.2243470283701,8.52292749161176,0.000245668439767979,0.0108257013163954,1.23950095031493 +"Q7K569",0.61627835033196,20.5116033268151,8.46009531324867,0.000255086844531931,0.0108257013163954,1.20043603494525 +"P42281",-0.472821425270588,21.9015415209857,-8.45538318910613,0.000255810099302032,0.0108257013163954,1.19749380611348 +"Q7JYW9",0.524867412860747,17.3552957346927,8.45406341255183,0.00025601310024719,0.0108257013163954,1.19666942874407 +"Q9VZF6",0.711892756075846,15.0704692764983,8.43736329771432,0.000258598215341498,0.0108257013163954,1.18622604857472 +"P41093",0.564638149572275,18.9169132918726,8.4308857734706,0.000259609144278067,0.0108257013163954,1.18216938780499 +"P21187",0.605875533795089,18.8481077550561,8.27151247451973,0.000286005549863077,0.0114491391627361,1.0812994355986 +"Q8SXF0",0.455537492228476,16.1967474931315,8.2299204651425,0.000293404061349546,0.0114491391627361,1.0546359896615 +"Q9VNB9",0.647272703459358,18.7890929444577,8.19096915707384,0.000300537048789919,0.0114491391627361,1.02953631428577 +"Q8IN49",0.484154765592876,16.8496958740421,8.18303042600539,0.000302015661367139,0.0114491391627361,1.02440530876864 +"Q9VE75",-0.453572342443797,15.6441378047844,-8.10704625859891,0.000316607967125231,0.0114876477238717,0.975029086548602 +"Q9W369",-0.482865400058838,22.4136900645796,-8.10604533342686,0.000316805632672721,0.0114876477238717,0.97437543599175 +"Q9VFZ4",0.684610297829931,16.481158287294,8.04275229396538,0.00032960385072365,0.0114972159383488,0.932870318565226 +"Q9VTZ4",0.514215869471439,18.0296241806912,8.0263927815397,0.000333009745059555,0.0114972159383488,0.922087100542588 +"Q9VQE0",0.527656703125903,17.3315085606916,7.98243391555939,0.000342367799371126,0.0114972159383488,0.892998708114724 +"M9PEG1",-0.465974043836439,20.3571070396855,-7.96274026870909,0.000346659946529873,0.0114972159383488,0.879913229548495 +"O97125",0.482164320172139,18.3587832905368,7.93933915281044,0.000351842338731023,0.0114972159383488,0.864320787357608 +"Q9VFQ9",0.44331814819235,19.094496574171,7.91018454781121,0.000358426396159556,0.0114972159383488,0.844828304774699 +"Q9VN13",0.489760217189836,16.8734950744693,7.8373407348931,0.000375517665104382,0.0118181785923417,0.795801145987172 +"Q9VV31",-0.89121211165476,16.1964214262354,-7.78884832861181,0.00038742511779284,0.0118469172050936,0.762904283851978 +"Q9VZU7",0.442318262132488,17.5180513074333,7.77607139631855,0.00039063575916076,0.0118469172050936,0.754201739210811 +"Q9W3J5",0.479842343570741,16.1221272617637,7.66786168834047,0.000419113411367303,0.0123019539883472,0.679911101602992 +"Q7KUT2",0.445497477165098,18.1693242294195,7.64113751946861,0.000426516232805608,0.0123019539883472,0.661400542245913 +"Q9VLB7",0.522346224636475,20.9156510004619,7.61931957481816,0.000432673637653974,0.0123019539883472,0.646239886924961 +"Q9VHC3",0.467242786187764,17.2374303818692,7.59757032436789,0.000438915447732026,0.0123019539883472,0.631083475331794 +"Q9W299",0.434316137681583,14.6322153204414,7.53641673972036,0.000457038610092408,0.0123019539883472,0.588233182549725 +"Q8SYQ8",-0.440787051096246,15.9503972343598,-7.53273296806036,0.000458157990825733,0.0123019539883472,0.585640875747797 +"Q24276",-0.420773246128402,18.8203321391739,-7.52738994053397,0.000459787271827518,0.0123019539883472,0.581878685271606 +"Q7K2E1",0.551255450527268,17.3568225928295,7.51159938202958,0.00046464214704189,0.0123019539883472,0.570744483015353 +"Q9V784",-0.563107472406193,14.4999444144198,-7.44458564635781,0.000485924649796426,0.0126326316427328,0.523231409606219 +"Q7JPS2",-0.460960733714124,20.5622956621839,-7.42436199803178,0.000492569907845753,0.0126326316427328,0.5088094000846 +"P48596",0.411849897118351,21.6798199574891,7.39056301801476,0.000503914637864182,0.0126326316427328,0.484619580431822 +"Q0E9B6",0.43603612192512,19.1029342796327,7.38028216353375,0.000507425851356775,0.0126326316427328,0.477239957248133 +"Q9W1H8",0.449983662840271,20.5306286307239,7.32486964668942,0.00052685088340756,0.0129233422577031,0.437289759816495 +"P45437",0.523363446907574,16.054258039185,7.19316457757056,0.000576615872235802,0.0139390619549177,0.341136956236854 +"Q95RI2",-0.465683464995358,16.8683493226797,-7.1068467949491,0.000612215839649549,0.0145882288647921,0.277188905355073 +"Q9V521",-0.580805384296344,18.1413518617492,-7.05931570721402,0.000632913251835414,0.0148690042825559,0.241655987566954 +"P52029",-0.386998176957384,18.5560519064909,-6.99626243212711,0.000661644412365059,0.0153280955531239,0.194164408996508 +"P29613",-0.41594497074891,23.9325437966629,-6.95944639351375,0.00067912391700269,0.0155175163501437,0.16624592409251 +"Q9VPE2",0.443844105020876,20.7501584972789,6.9066610006908,0.000705134972579779,0.0155418603738905,0.125972446271998 +"Q9VFN7",-0.382990332254213,18.6638690952292,-6.88803212082278,0.000714591096844456,0.0155418603738905,0.111689852823949 +"Q7K511",0.482292508267543,16.4143534263708,6.87239414908414,0.000722643439358009,0.0155418603738905,0.09967226459925 +"Q9VA09",0.534056520671871,16.2347996525561,6.86755417971979,0.000725157074966411,0.0155418603738905,0.095947598690385 +"Q9VNW6",0.778944627822284,21.4930366344478,6.86444416766643,0.00072677764338337,0.0155418603738905,0.0935529441935765 +"A8JNG6",-0.531644096216992,16.1467502909552,-6.83757836513909,0.000740954268354841,0.0156444521470364,0.0728242715142571 +"Q7K0S6",0.408151229076179,17.5305907415144,6.81250422475677,0.000754477374351904,0.0157308532552372,0.0534090540227847 +"Q95SS8",0.39443764112907,15.3611309728469,6.755195708243,0.000786481186028089,0.0161956866456155,0.0087828170087203 +"Q9VA42",-0.444164480965476,20.4066654762436,-6.73705201909584,0.000796941664455584,0.0162109597111209,-0.00541909151616071 +"A1Z9B5",-0.446630755856733,15.7021163594624,-6.70200736928349,0.000817609128186824,0.0164309882628388,-0.0329507667086997 +"Q9Y119",-0.470630932346467,18.2618650697547,-6.64604632688541,0.000851922525566314,0.0169167472933882,-0.0771914176485726 +"Q8SWS3",-0.395713797212071,16.5915594445705,-6.61314672117631,0.000872878634983641,0.0171289595665025,-0.103360627742753 +"Q9VQ91",-0.409931195580654,15.1307063173993,-6.55568371395168,0.000910940038288839,0.0176128271771954,-0.149355025907754 +"O61443",0.416302741022758,16.5875357170966,6.54437762093601,0.00091865465492566,0.0176128271771954,-0.158447834660653 +"P09180",0.361496881730659,20.7346712795367,6.51043300461833,0.000942278008737863,0.0178468203727832,-0.185833349956018 +"Q9VJ86",0.477024735518171,16.6064677566714,6.48565564665192,0.000959968938220819,0.0178468203727832,-0.205904714607544 +"Q9VSR5",0.363376490361706,20.1735663563832,6.48152190502743,0.000962957933783266,0.0178468203727832,-0.209260068157183 +"Q9VHT3",-0.47063764560675,15.8051694420827,-6.45882306578776,0.000979565366957007,0.0178516805681654,-0.227719140485184 +"Q00174",0.362794477240683,21.9712825527533,6.45199650221845,0.000984625067308885,0.0178516805681654,-0.233282038733702 +"Q7K204",-0.407992856204181,15.004278542722,-6.43395829530445,0.000998141761178083,0.0178825182268674,-0.248006686871814 +"X2JAU8",-0.383237586157442,21.7170937283355,-6.42128478241937,0.00100776781374433,0.0178825182268674,-0.258374291983454 +"P20007",0.470100533601713,15.7921446010379,6.39902377259528,0.00102493896255051,0.0179957704161501,-0.276629425486766 +"Q9VAC1",0.36571762620467,23.3975682875294,6.27180470491702,0.00112986453405589,0.0191653719360584,-0.382053037519093 +"Q9VKD3",0.440510525960807,18.5808838637029,6.25925372521688,0.00114087806883027,0.0191653719360584,-0.392556010586642 +"Q9VXC9",0.395369831038401,18.9689468309413,6.25518017339161,0.00114447944382459,0.0191653719360584,-0.39596884229791 +"Q9VT23",0.359873969286625,18.0594422167759,6.24963919465051,0.00114939940792472,0.0191653719360584,-0.400614224488175 +"Q9VPC2",-0.506833197039981,14.8124305517593,-6.23998050370882,0.00115803454595905,0.0191653719360584,-0.408720420725809 +"Q9I7K0",-0.47940131633961,16.1983213024415,-6.23724579721224,0.00116049314480929,0.0191653719360584,-0.411017562716451 +"Q9VW54",0.478091486614129,15.8447035022699,6.19947639338546,0.00119507806401992,0.0192470473310733,-0.442834250518927 +"O02195",0.365953518581275,18.5941061487261,6.19369550469438,0.00120047668828861,0.0192470473310733,-0.447718974437292 +"Q9W309",-0.34382627461952,18.4838062830184,-6.18623461691255,0.00120748620700199,0.0192470473310733,-0.45402914253671 +"Q9W199",0.377604598178994,15.7260819457051,6.18188493497703,0.00121159470609275,0.0192470473310733,-0.457711019034005 +"Q9VWV6",-0.366413219301414,23.5953728585258,-6.14968750750876,0.00124251763099886,0.019552069891567,-0.485035501660537 +"Q94901",0.340277690080079,18.7367622899402,6.13621239362869,0.00125573114015041,0.0195753228202886,-0.496508101366134 +"Q9VMQ5",0.411483139775232,13.5057154122764,6.11073869485196,0.00128115933819427,0.0196370950392923,-0.518255917750337 +"Q9I7J0",-0.378784555586808,21.0535533170084,-6.09858141736454,0.00129350564493971,0.0196370950392923,-0.528662646484277 +"Q9V3N7",0.369482417858848,20.3824155804531,6.09710710683405,0.00129501226278307,0.0196370950392923,-0.529925884583573 +"Q9VIV6",0.696866671902617,14.4153838167489,6.08394876878712,0.00130854968657607,0.0196636115063864,-0.541212055508435 +"P12080",0.349023891889999,19.0157329217144,6.0075767205793,0.00139044870846059,0.0207077539795737,-0.607134621390667 +"Q9VF23",0.432399036550697,15.1241230229583,5.98789245336755,0.00141251319599534,0.0207537520666265,-0.624241608890033 +"P23779",-0.348457376797761,21.0269812885799,-5.982681741776,0.00141842190383418,0.0207537520666265,-0.628778082571707 +"P29327",0.378502496286821,19.5431913081816,5.93202528995815,0.00147738570596316,0.0213994720077178,-0.673055297261953 +"A8DRW0",-0.338973277738216,21.6057794141043,-5.92297898365823,0.00148821268159188,0.0213994720077178,-0.680995998517488 +"Q9Y156",0.328548539341771,15.9791455864316,5.91056880886206,0.00150321592777918,0.0214304629703904,-0.691906089735008 +"Q8SZN1",-0.361028243671885,20.2286487391119,-5.88314264945231,0.00153700002224628,0.0217039274094179,-0.716085578178706 +"Q9W1R0",0.324712598798461,13.9055494695749,5.87402842343624,0.00154842167968869,0.0217039274094179,-0.724141807330664 +"P14318",-0.327397435499417,22.3748783868977,-5.85106629119775,0.00157763660147644,0.0219291487605225,-0.744484907326829 +"Q9VW68",0.331978852381567,22.8255571160548,5.84028394724541,0.00159157552783338,0.0219400659539345,-0.754060437070459 +"Q9VIF2",0.348089713818608,17.3930883421035,5.80284889293332,0.00164109174801489,0.0220891930781284,-0.787420181640035 +"Q7KVQ0",0.459177816317373,15.7104607322712,5.7883922601208,0.00166069071964607,0.0220891930781284,-0.800350822141706 +"P91926",-0.324416908836465,17.7277404019859,-5.78013940099389,0.00167200090951204,0.0220891930781284,-0.8077445233519 +"A1Z6L9",0.356580554725198,15.2373589035121,5.77888553818206,0.00167372708349741,0.0220891930781284,-0.808868617038917 +"Q9W337",-0.349302620334008,17.7113882194709,-5.76570717851368,0.00169199514689692,0.0220891930781284,-0.82069527194624 +"Q24253",0.37435581788753,18.7363994259327,5.75526173263817,0.00170663924343704,0.0220891930781284,-0.830085174050708 +"P32392",0.437187714062134,17.5410357394919,5.74830295995851,0.00171647676855787,0.0220891930781284,-0.836348532834999 +"Q9VM12",0.321600991856855,18.9462581610265,5.74627955496058,0.00171934956155395,0.0220891930781284,-0.838170902537573 +"Q7K2L7",-0.367365446224241,18.3470839926729,-5.72965465184566,0.00174316561150159,0.0220891930781284,-0.853164034939248 +"Q9VU70",-0.666447206598832,14.5836843202663,-5.72952811733181,0.00174334834036922,0.0220891930781284,-0.853278286670174 +"P45888",0.360318123592712,17.0854541263753,5.72626683639783,0.00174806563927635,0.0220891930781284,-0.856223707253669 +"Q7K3W2",0.324550138672464,17.4848119036985,5.65508306298617,0.00185481183387419,0.0232618506684373,-0.920857236549085 +"Q9VQX3",-0.514764940880532,15.6045914008076,-5.60482300296378,0.00193474052579241,0.0240831880374757,-0.966891506665899 +"Q9VX69",-0.485373146551446,18.2302035216663,-5.56536341136151,0.0020002976323253,0.0247147885238414,-1.00326699017741 +"Q7K3N4",0.308293779894068,17.1472379619653,5.50227022091278,0.00211054153423931,0.0258851711699351,-1.06185950981587 +"Q9VFF0",0.311567188501801,23.6230513806021,5.48690504466962,0.002138444660894,0.0260359539735123,-1.07620938834655 +"Q9W253",0.437831044354386,15.0804025782766,5.45186282776259,0.00220369394028346,0.0266359528434262,-1.10905516458875 +"Q9V4E7",-0.514913666482029,15.0372922266419,-5.43136858565755,0.00224292163385828,0.0269150596062993,-1.12834185550898 +"Q9VXZ8",0.406209902611991,17.7685181079818,5.41964622298513,0.00226572226396398,0.0269944624020852,-1.13939917054422 +"Q9VYT6",-0.332245816591708,16.3363846289206,-5.34274120025211,0.00242213468778785,0.0286355954028666,-1.21240682447757 +"Q9VV39",0.294284367527631,17.4259516068756,5.32611431564669,0.00245757210959543,0.0286355954028666,-1.22829795682355 +"P54385",0.313650267069974,21.5451223963061,5.32575177842393,0.0024583514476563,0.0286355954028666,-1.22864487685284 +"Q7JXZ2",0.473402829416386,17.5191558191597,5.31936046555702,0.00247213773262158,0.0286355954028666,-1.23476385269427 +"Q9VH64",-0.312291336503398,17.7304951664796,-5.30499730796641,0.00250344692923375,0.0287982722618062,-1.24853562397684 +"Q9VSA3",0.304859996213249,21.6318168879961,5.29536172944213,0.00252470771678465,0.0288439210383342,-1.25779050142229 +"Q9VSS2",0.435847112355439,16.2220744490263,5.2777879789108,0.00256402367853868,0.0289167915968785,-1.274703139709 +"Q9VAJ9",0.357323117806708,17.4284631479134,5.27701972610246,0.0025657584870132,0.0289167915968785,-1.27544347194888 +"Q9VRL2",-0.416898944303448,12.4232860682888,-5.25721713639475,0.00261094665927602,0.0290393285399634,-1.29455478036325 +"Q8IQG9",-0.377205537570514,20.6087028254199,-5.25685308870626,0.00261178595763403,0.0290393285399634,-1.29490663210211 +"A1Z847",-0.291389479035356,20.0384386911675,-5.24947635267276,0.00262886007765856,0.0290393285399634,-1.3020402318461 +"P07668",-0.553041611391548,14.7742884120219,-5.22697578400788,0.00268174160457535,0.0294285855028401,-1.32384625006002 +"Q9VAA6",-0.305330807727444,16.1716206836651,-5.21750355051656,0.00270437030663774,0.0294829390292271,-1.33304733968798 +"Q9V400",-0.399194640860102,14.5190831709525,-5.19495278924378,0.00275913602850893,0.0298277482256163,-1.35500338550926 +"Q2MGK7",-0.302525475733134,17.0562411490699,-5.17401341736969,0.00281113782062541,0.0298277482256163,-1.37545477620076 +"Q9VFS4",-0.307652994774571,15.2969106737871,-5.17167284326058,0.00281702050766092,0.0298277482256163,-1.37774465704674 +"Q9VD02",-0.32299793332346,18.2450018904053,-5.17107660966176,0.00281852132291979,0.0298277482256163,-1.37832810109126 +"Q7PL91",-0.395384511717207,18.910229392314,-5.16834453629067,0.00282541020362552,0.0298277482256163,-1.38100221380723 +"A8DYP0",-0.571526939238268,15.5550600069999,-5.15257687467888,0.00286554995447295,0.0300612410318295,-1.39645604124641 +"Q9VH81",0.419305925381765,14.3603072414867,5.13947687898329,0.002899399749306,0.030226242386515,-1.40932214557365 +"Q9VNW0",-0.547826809444507,14.7580248368399,-5.1314249499538,0.00292043450866719,0.0302564270835831,-1.41724242611038 +"P35381",0.287541754362213,25.6418621806775,5.10446424673048,0.0029921591757264,0.0308081574389607,-1.44382962158198 +"P50887",0.545347129503288,17.5316993432263,5.09575215280655,0.00301576927116901,0.0308607554865638,-1.45244322469963 +"Q9W266",-0.302764135153115,18.3991171397357,-5.07006373808706,0.00308664668631609,0.0311641360498769,-1.47790455801512 +"Q7KM15",-0.298176927561419,16.9689670576238,-5.06507516436942,0.00310063249342301,0.0311641360498769,-1.48286002147682 +"Q9W0Z5",-0.321162858753347,16.8838402251719,-5.06053473868673,0.00311342544272828,0.0311641360498769,-1.48737342316522 +"Q9VK39",-0.308056898425988,18.2402201908212,-5.05264831554749,0.00313579090960053,0.0311641360498769,-1.49521996203077 +"A0A0B4K7J2",-0.37849366902379,15.7814079877745,-5.05158034079971,0.00313883384675019,0.0311641360498769,-1.49628322450643 +"Q9VR79",0.440521442087558,20.1393826335891,5.03014704370583,0.00320062855171797,0.0312806490981774,-1.51765673985101 +"Q9W1R3",-0.326776951298509,17.0903519625464,-5.02908125096909,0.00320373777393879,0.0312806490981774,-1.51872129159786 +"A1ZAL1",-0.325183173233057,17.1688458532051,-5.02802276244007,0.00320682913416567,0.0312806490981774,-1.51977871020646 +"Q9VSY0",-0.311471928772665,22.8253317855677,-5.01886287755767,0.00323372506685385,0.0313596128576292,-1.5289361069577 +"Q9V9M7",0.352434359090832,18.4616316679918,5.00377278568646,0.00327860274581363,0.0315966215626732,-1.54404860222602 +"Q9V3G1",0.324168174286299,21.1531184133051,4.99797014935333,0.00329605045078245,0.0315966215626732,-1.54986864601768 +"Q9VZJ8",0.407154534799659,14.7739380546543,4.96336028926311,0.00340236704742852,0.0324294184863473,-1.58468403799638 +"P02515",-0.335051322401654,18.4153630596707,-4.94033295940026,0.00347529281795251,0.0329362978428681,-1.60794491105663 +"Q9VHB8",0.392251167053821,15.3741318920362,4.92076302676355,0.00353868688455981,0.0329597421336861,-1.62777433372015 +"A1ZB73",-0.362126597690278,13.9493332852447,-4.91725676379385,0.00355018506484298,0.0329597421336861,-1.6313330225958 +"Q9VME1",-0.496459203247625,16.5625998356082,-4.91623534297605,0.00355354272347603,0.0329597421336861,-1.63237005532363 +"Q7KTG2",0.306458731579806,18.0894782708435,4.91524348382696,0.00355680670507404,0.0329597421336861,-1.63337722119806 +"P48375",-0.270611706833648,21.8841842569203,-4.90255366511785,0.00359887203429885,0.0331652958740911,-1.64627563256503 +"Q9V3D9",0.282985632140431,17.329694715751,4.88097055827384,0.00367174002869888,0.0334187386173717,-1.66826796388037 +"P20348",-0.293283645912531,17.5332672270544,-4.8804746893695,0.00367343400656152,0.0334187386173717,-1.66877404173556 +"Q7K5J8",-0.327194180814118,18.2175956889441,-4.87212094180421,0.00370210756387033,0.0334187386173717,-1.67730523331115 +"Q709R6",-0.299125466999136,15.1099722206247,-4.8708435492793,0.00370651477470849,0.0334187386173717,-1.67861066778724 +"Q9VIN9",0.288521777573669,16.4224065765116,4.85531726325357,0.00376056849178951,0.0334380829850579,-1.69449708270957 +"R9PY51",-0.349048305373717,21.6286601812671,-4.8507458331774,0.00377665606342182,0.0334380829850579,-1.69918134477072 +"P09040",-0.4663244789809,16.4292327630406,-4.84891325598732,0.00378312740884077,0.0334380829850579,-1.70106002286958 +"Q7K4T8",0.344086626313635,13.6988260843378,4.84371191991371,0.00380156438831297,0.0334380829850579,-1.70639491666616 +"Q9VMD3",0.29575014365764,17.5367406993192,4.84165209053519,0.00380889434482074,0.0334380829850579,-1.70850874629548 +"Q7K2Q8",-0.281839180822544,16.1531216900201,-4.8310114954308,0.00384701906742543,0.0335959570914431,-1.71943832029985 +"P82890",-0.348219289657116,19.7549816251568,-4.80659683921425,0.00393616628047951,0.0340865246290096,-1.74457963175316 +"Q9VGA0",-0.354501148644847,19.3028936507552,-4.80446453518056,0.00394406430059883,0.0340865246290096,-1.74677961268051 +"Q9W2Y3",-0.364453867310317,16.5293415786199,-4.77584231322296,0.00405186407160265,0.0347215564899759,-1.77637593686516 +"P28668",0.275723033964143,15.5560397302007,4.76456434898511,0.00409526760228121,0.0347215564899759,-1.78807135165547 +"Q9VXN1",-0.407924358757864,13.6289874319758,-4.7643157599192,0.00409623030518561,0.0347215564899759,-1.78832935664708 +"C0HK95",-0.37885905937226,20.0427779309763,-4.76313479841106,0.00410080733125015,0.0347215564899759,-1.78955517642393 +"Q9W4I3",0.290001560023004,16.4331875861008,4.75612242510058,0.00412810640512962,0.0347761691098798,-1.796838215636 +"Q9VM18",-0.279116027700056,23.0792308932027,-4.74820474480249,0.00415918119190904,0.0348618805432376,-1.80507036668111 +"Q9VKG4",-0.301696222177442,15.897513687677,-4.73952894435712,0.00419354046647775,0.0349741274904244,-1.81410155060742 +"Q9VTY2",-0.424507509572987,20.8909255227105,-4.7333433868692,0.00421823667530609,0.0350050685294058,-1.82054738857349 +"Q7K860",0.291625684420517,20.4046061450837,4.71979077377549,0.00427293266940656,0.0352834242206443,-1.83469039143148 +"Q9W3Y3",-0.348784882980805,18.2524425653349,-4.68645005152006,0.00441099228883592,0.036123965900235,-1.86960132517278 +"Q9VAN7",-0.258681317705072,23.8186769022695,-4.68106977188184,0.00443374805610809,0.036123965900235,-1.87525072194908 +"P91927",-0.327312821380847,19.5029020992707,-4.67966867834407,0.00443969604888979,0.036123965900235,-1.87672261543542 +"Q9VAM6",-0.280815346609955,22.157730696844,-4.6693736600605,0.00448368302404593,0.0363047732238282,-1.88754697112334 +"Q9VUX1",0.346328161157096,16.3501300638893,4.65784940811421,0.00453351669852407,0.0365309461504259,-1.89968280512126 +"Q7K188",-0.262880376718275,21.9442389394758,-4.65004582768133,0.0045676223054712,0.0366288173342594,-1.90791194883448 +"Q9VH72",-0.389748586129969,18.6207141656809,-4.62551089877715,0.00467678611976551,0.0373247810898032,-1.93384512017823 +"Q9VTJ4",-0.289954273600639,15.5570695747951,-4.61506005717961,0.00472419222003491,0.0373757177902788,-1.94491935978296 +"Q9U9Q4",0.320977014072486,17.8330090413979,4.61422945926705,0.00472798348546093,0.0373757177902788,-1.94580021680225 +"Q9VXN4",0.310080138281403,14.926649342462,4.60321941706005,0.00477857002982186,0.0375974283478437,-1.95748640646496 +"Q9VSL4",-0.265615341036931,20.9319583139266,-4.59506308008236,0.00481644542814988,0.0377175163105822,-1.96615556101255 +"Q9VN14",0.25756440222445,19.1989930522926,4.58507712850804,0.00486328665388132,0.0378426212947223,-1.97678319433435 +"Q9VCX3",0.901661600277384,12.9282771186039,4.58200629583034,0.00487779591029094,0.0378426212947223,-1.98005441694885 +"Q9VII1",-0.29341904790731,19.4046881646625,-4.56907563567742,0.00493943847523805,0.0381434415587827,-1.99384469940169 +"Q9VF39",-0.360516691918855,16.090662090154,-4.55713690539512,0.0049971464179032,0.0384112452767859,-2.00659983237999 +"Q9W140",-0.360282928835055,13.8800439506938,-4.55062615943158,0.00502894270719572,0.0384783322734058,-2.01356500351618 +"Q9VSY6",0.266324515915827,17.5768516547977,4.54081410576029,0.00507730053656093,0.0386709465524366,-2.02407418278564 +"Q94524",-0.252192677449349,15.6215749118177,-4.52275136375241,0.005167721327589,0.03904371734037,-2.04345889757046 +"Q9VQD8",-0.390481049184316,17.4070644111196,-4.51929484201545,0.00518523398989954,0.03904371734037,-2.04717411062829 +"Q8SXQ1",0.300512013997263,18.3874270120179,4.51708498636151,0.00519646597695573,0.03904371734037,-2.04955031821762 +"Q9VHT5",0.376286286902543,15.5958047108946,4.49765990592908,0.00529640579933631,0.0393016194944049,-2.07047001132442 +"Q9VNH5",0.26751093841559,16.9592295862948,4.49301163307935,0.00532064592621414,0.0393016194944049,-2.07548455287045 +"Q9VL10",0.298202056410986,16.7742135516881,4.49251883183457,0.005323223260193,0.0393016194944049,-2.07601638053933 +"Q9VXY3",0.255748944637485,17.9767589178646,4.48660357072283,0.00535427171856119,0.0393016194944049,-2.08240301203183 +"Q9VAG3",0.276296352142579,16.7627944253442,4.48493463134602,0.00536306924352191,0.0393016194944049,-2.08420592073113 +"Q9VJE3",-0.336090672172377,15.2825752462397,-4.48321263267682,0.00537216381578196,0.0393016194944049,-2.08606659840718 +"Q9VA37",-0.314269878838019,21.8274915033954,-4.46736343527933,0.00545670423407069,0.0397457758184712,-2.10321368920021 +"Q9VQT8",-0.387487495170774,18.0693138461776,-4.46203232041163,0.00548548223802991,0.0397816711871039,-2.10899009232408 +"A1Z7X8",0.262162173235989,16.8732920593989,4.45628961396674,0.00551667661583534,0.0398347038753825,-2.11521738204528 +"Q8IN51",-0.375204472970809,17.3274491214387,-4.44574677741528,0.00557447535608509,0.0399128008565048,-2.12666312998592 +"Q9W5B4",-0.278595290214017,18.8274968708782,-4.44364579069261,0.00558607619041619,0.0399128008565048,-2.12894610575991 +"Q8SXD5",-0.288923580079828,21.1496779705056,-4.44126095569963,0.00559927781799888,0.0399128008565048,-2.1315383452849 +"Q9W5W7",0.407609612620657,14.8834481469101,4.4341207483767,0.005639017525685,0.0399835089121725,-2.13930479046657 +"Q9VWP2",-0.384526501610505,19.7030784666655,-4.43088384648313,0.00565713915064311,0.0399835089121725,-2.14282819012113 +"Q7JWX3",0.257437070427898,18.0626599483875,4.42430901049325,0.00569415353657291,0.0400753084346144,-2.14998996466427 +"Q9VCK6",0.295211280227109,16.1529259482076,4.40867187630064,0.00578330442574283,0.0405317301770548,-2.16704997554523 +"Q7K485",0.332904723365232,20.439016802275,4.40281347037945,0.00581711487261581,0.0405981071444484,-2.17345123373126 +"Q9VH98",-0.325980443314389,17.0978861894697,-4.39427105722862,0.00586682140354259,0.040774408754621,-2.18279476212401 +"Q9VTC3",-0.33892448517237,17.0848162653163,-4.38625597821792,0.00591390158759998,0.0409310699091982,-2.19157181859368 +"Q9VF15",-0.242614525572275,20.9255912069826,-4.34992722496399,0.00613278335229616,0.0422705893869008,-2.23147966507616 +"Q9VAQ4",-0.269773478080435,16.1260234185288,-4.33556873087424,0.00622183574106458,0.0427079095312581,-2.24730948078996 +"Q9VLT8",-0.25602044086731,13.9135307360681,-4.30561547158571,0.00641240540860971,0.0437011281704982,-2.28043571199329 +"Q9VPU4",-0.473979262042695,12.9381499244114,-4.30225471234917,0.00643420031744094,0.0437011281704982,-2.28416123105444 +"Q9VJ28",0.267921631829498,18.9245241687231,4.29769933940522,0.00646387760459722,0.0437011281704982,-2.28921384228768 +"Q500Y7",-0.259628086273551,20.1624816027554,-4.29463594776902,0.00648392284679773,0.0437011281704982,-2.29261344241189 +"Q9VMY1",0.237119342852667,15.4887649588672,4.29256262803952,0.00649752984789182,0.0437011281704982,-2.29491514335683 +"Q9VLP0",-0.308131319057166,16.1711529821517,-4.26350108085788,0.00669173030395164,0.0448265307108086,-2.32724875421134 +"Q8MLP9",-0.272125644789138,15.0017009121489,-4.25822643096491,0.00672768347996417,0.0448871041783209,-2.33313147520096 +"Q9VUY9",0.285793453470561,19.7436316274376,4.25237731310773,0.00676781035575875,0.0449749309697434,-2.33965999274643 +"A1ZB70",-0.237679899643688,16.2234973070463,-4.24387568402954,0.00682662221045555,0.0451857374882534,-2.34915869381288 +"Q02910",-0.307106858823698,16.3319003451734,-4.23758390080814,0.00687052249282272,0.045296567264934,-2.3561956830346 +"P32748",0.280936022332819,17.1587847658588,4.23244127386101,0.00690664393001948,0.0453554412412303,-2.36195202517341 +"Q9VEV3",-0.255139512002199,18.2760099359843,-4.22655726902485,0.00694823873269024,0.0454496557103032,-2.36854331556409 +"Q9VC05",-0.265827285501764,14.979577564938,-4.21865530366386,0.00700454900413721,0.0456390146050815,-2.37740369248309 +"Q9V3A8",0.23862387220467,15.4435319977419,4.21121823016684,0.0070580222236295,0.0458084866498599,-2.3857517561473 +"Q8SY67",-0.240477435273242,16.153664680907,-4.20718185637538,0.00708723889237049,0.0458198235367209,-2.39028619808506 +"A8JTM7",0.296024021825101,17.5022300207055,4.20321805395211,0.00711606453007266,0.0458285545797729,-2.39474160688339 +"D0UGE6",-0.256869750144643,15.3836168586869,-4.19560268655593,0.00717182102517633,0.045932107096432,-2.40330839645031 +"P54185",0.231609841542468,17.4892332906395,4.19351158772954,0.00718721819674386,0.045932107096432,-2.40566234212686 +"Q9VQF7",0.266862815456729,18.6012741810994,4.18844213009552,0.00722470225526609,0.0459954326785643,-2.41137187594443 +"Q9VCR4",-0.272793704076269,15.1559255279955,-4.16437402789,0.00740573159650904,0.0467901307771138,-2.43853403957734 +"Q9VLY7",0.269852436751046,15.3328602872853,4.16249692583319,0.00742006620734973,0.0467901307771138,-2.4406562858092 +"A1Z992",-0.3234735430014,14.5616101059044,-4.16071753297087,0.00743368384648391,0.0467901307771138,-2.44266857472638 +"Q8IM93",-0.249219248077491,18.969225624915,-4.15675355583288,0.00746412252297169,0.0468050991290104,-2.44715317069111 +"Q8SXF2",-0.307520378606608,15.6240696671764,-4.14514622050539,0.00755407292194218,0.0471148481018621,-2.46029922297881 +"Q9VDV2",0.397154512150292,14.4495316391771,4.14106811544014,0.00758596856779922,0.0471148481018621,-2.46492297900351 +"Q26377",-0.244789047602744,16.7556950643977,-4.13950204054332,0.00759825787733867,0.0471148481018621,-2.46669929152254 +"Q9VCE0",-0.409254705259499,15.9237384514469,-4.13319957570353,0.00764794433821317,0.0472473005782947,-2.47385173902262 +"O97477",0.244129490490842,20.9043428320442,4.12518384552559,0.00771167295507271,0.0474652047566837,-2.48295755893408 +"Q9VM58",0.262236860901679,16.3158665880917,4.11359544891896,0.00780487757931797,0.0478622639790529,-2.49613981844556 +"O18413",0.258951017254649,19.3338481993299,4.10200868800898,0.00789935313203433,0.048264179575946,-2.5093413951771 +"Q9VN02",-0.229119355211118,17.3371293905881,-4.07814494949274,0.00809806147282481,0.049297688090043,-2.53659770143214 +"A1Z8Z3",-0.264417714178553,20.008079308632,-4.04686015254296,0.00836723453848525,0.0507510807643396,-2.57246623996155 +"Q9VSL3",0.223303972662034,22.3124030651246,4.02934034456713,0.00852241031758358,0.0515050014845269,-2.59262049106586 +"Q9VDI5",0.2252470100144,16.6370390729685,4.01797380331148,0.0086248345267771,0.0519358266810982,-2.60572213575095 +"Q9V3B6",-0.289776406697463,13.3760853480889,-4.01390027535973,0.00866188109234334,0.0519712865540601,-2.61042245398364 +"Q9VPL3",0.337157542333633,15.6940541884191,3.99967970142913,0.00879263399666315,0.0523780268924781,-2.62685167560771 +"O15971",-0.263976854777413,17.1371202549821,-3.9988413767348,0.00880041178480204,0.0523780268924781,-2.6278212001922 +"Q24238",0.232973450858863,16.2996124668339,3.99631736359598,0.00882387623308534,0.0523780268924781,-2.63074089765282 +"Q9VMI3",0.262217373353181,20.1476157466981,3.98101356151896,0.00896767846343211,0.0530428641028538,-2.64846538442708 +"Q9VQQ0",-0.286498616588705,18.283680903617,-3.97520417322417,0.00902296174387022,0.053181272751857,-2.65520335743727 +"Q7KTA1",-0.25359456040476,17.1337609005113,-3.95833026685292,0.00918574373751345,0.0539500723738466,-2.67480463494156 +"Q9VCD9",-0.249651259242309,18.4000028868533,-3.94894182308205,0.00927775546352591,0.0542992846075833,-2.68573001408174 +"Q9VB81",0.223027699330043,20.8543784977132,3.94204506473149,0.00934601378904571,0.054403496455537,-2.69376466825329 +"A1Z933",-0.298559831026083,15.7885740613747,-3.94055926685304,0.00936079345487956,0.054403496455537,-2.69549659043761 +"Q7JYX5",0.349846410864277,14.6435503463687,3.93085562843238,0.00945797295820522,0.0547774267162719,-2.70681621373071 +"Q9W1N3",-0.243043044829005,20.563013821799,-3.92433439345974,0.00952392438445889,0.0549685324334859,-2.71443180047102 +"Q7JX94",0.541003773564922,12.5427549417599,3.91705404512922,0.00959816990902326,0.0550761023058694,-2.72294181342267 +"Q9NJH0",0.218367362098846,21.1869386940069,3.91268949092132,0.00964299453327855,0.0550761023058694,-2.72804755618479 +"Q9VLR5",-0.3738004577135,16.9842180446446,-3.91248942002998,0.00964505497360805,0.0550761023058694,-2.72828167510611 +"Q9W308",-0.257409584951912,17.2234853246188,-3.90962210461351,0.00967463907411254,0.0550761023058694,-2.73163764305536 +"Q9W0S7",0.284050371334569,18.0049905009807,3.8778652202246,0.010009268807422,0.0566709619926237,-2.76889322670927 +"Q7JRN6",-0.245210873771407,14.7459081908881,-3.87661188138115,0.0100227420790312,0.0566709619926237,-2.77036683952756 +"Q9VTU2",-0.220038009822822,20.8564847174181,-3.86707523432483,0.0101259357073306,0.0570610160804983,-2.7815876496812 +"Q9VVA6",-0.264156111963562,19.2415895428531,-3.83657805818821,0.0104641034068729,0.0587680959012258,-2.81756664332225 +"Q8IP62",0.22300401765099,15.7633051850626,3.81928936792354,0.0106614777645543,0.0595548358385145,-2.83802787374317 +"P12370",0.26246252344059,20.7455280348825,3.81523254784833,0.0107084000850499,0.0595548358385145,-2.84283593439532 +"Q9VEB1",-0.215439594058125,25.1545296011389,-3.81354784491983,0.010727954461022,0.0595548358385145,-2.84483336911464 +"Q9VN88",-0.216703311010802,16.9892762996077,-3.81190982351725,0.0107470057478375,0.0595548358385145,-2.84677588385397 +"Q9VMX4",-0.315340683595529,17.3881518335334,-3.80338401148531,0.010846786803994,0.0599087430101391,-2.85689336452573 +"Q9VE50",-0.375108926343826,14.788203747836,-3.79247570765184,0.0109759826978619,0.0603256421727277,-2.8698547416117 +"Q9VEN3",-0.237177035846784,17.584870660026,-3.79091566117313,0.0109946014511446,0.0603256421727277,-2.8717099318442 +"Q9VNZ3",0.378955171446691,15.0294131111348,3.76859320433066,0.0112649635809862,0.0616064237806067,-2.89829729738941 +"Q9VBC7",0.319375016921059,15.9194280185827,3.7504001894218,0.01149087632752,0.062636541550011,-2.92002390602726 +"P54622",0.296000587775069,17.8026828417193,3.74400102343595,0.0115715517765232,0.0628708415740738,-2.92767826229099 +"Q9W414",0.213858743891365,19.5138546006229,3.74090286352977,0.0116108405752783,0.0628794872713125,-2.93138641987929 +"Q9VZG1",-0.229811936666795,17.8605914939377,-3.73770106752695,0.01165160201188,0.0628960263942263,-2.93522019227765 +"A1ZB23",-0.277583015105513,15.8973137415333,-3.73262193994335,0.0117165953647067,0.0630428421559057,-2.94130512781068 +"Q9W392",0.217266853926979,19.9711579125792,3.71464580006144,0.0119499313016586,0.0639475827977,-2.96287333812255 +"Q9V3G7",0.236511681222517,18.0902856887651,3.71377109625457,0.0119614183650374,0.0639475827977,-2.96392411298243 +"Q9VBI2",-0.211652434305488,22.1570113955555,-3.69799585793056,0.0121707411658018,0.0648587740081707,-2.98289521165933 +"Q9VXI1",-0.233328186552551,19.2808991038123,-3.6899516448731,0.0122790696045489,0.0652276691095145,-2.99258396786013 +"Q8SYQ4",-0.228857212272075,21.0011082064242,-3.66982857383393,0.0125548552617532,0.0661364699525017,-3.01686493213181 +"Q9VJZ4",-0.206109911360649,21.4219669716625,-3.6680837144129,0.0125790957150787,0.0661364699525017,-3.01897327661292 +"Q9VDD1",-0.227575496615543,14.5426272299216,-3.66773922029165,0.0125838878338922,0.0661364699525017,-3.01938959067198 +"A8Y535",-0.223606821781033,22.0598187236014,-3.66595420388259,0.0126087514657647,0.0661364699525017,-3.02154704051761 +"Q7KML2",-0.281362593301603,13.7056514324057,-3.65086744191819,0.0128211225223995,0.0669456547965398,-3.03980125743841 +"Q9VMW7",-0.205012062779584,19.5053413561449,-3.64837310688448,0.0128566213629865,0.0669456547965398,-3.04282266555927 +"Q9VAG9",-0.223895664299027,17.5486070337308,-3.64649478369324,0.0128834263727154,0.0669456547965398,-3.04509852780291 +"Q7K148",0.309745921316495,16.7679072650104,3.64274646747818,0.0129371059644607,0.0670158159898153,-3.04964178709825 +"Q9I7K6",-0.2408711109473,16.1702813396604,-3.63376303735911,0.0130667863605042,0.0674780174901578,-3.06053924654305 +"P38040",-0.211989557553078,19.0079382602381,-3.62539888733763,0.0131888448938767,0.0678981274166247,-3.07069666290926 +"Q9VI75",-0.200191928303035,17.440362029825,-3.62023114257659,0.0132648997348681,0.0680795469469537,-3.07697775107073 +"Q9VPN5",-0.224260587921258,21.3678524503612,-3.60935641797363,0.0134265641152026,0.0685303281851845,-3.09020875045702 +"Q9VMM6",-0.220438600786803,18.3923444237398,-3.60740824049656,0.0134557595432656,0.0685303281851845,-3.09258096737924 +"Q9VZ24",-0.217147847014616,21.7937375941111,-3.6060612210305,0.013475987796607,0.0685303281851845,-3.09422151926523 +"Q9V8F5",-0.260069669956758,16.2084858767833,-3.59963511961326,0.0135729612538989,0.0688136759012258,-3.10205178154174 +"Q9VMR6",-0.278252684223592,18.902734269309,-3.59260270946423,0.0136799854125658,0.0691461080853328,-3.11062809324524 +"Q9W1L1",0.305203999785869,14.7070144678823,3.58748065066356,0.0137585343219448,0.0693330370060541,-3.11687942204646 +"Q9VLP2",-0.203610044158225,19.2606263281548,-3.58098941072664,0.0138588102833028,0.0696279986522562,-3.12480756644882 +"Q960M4",-0.199446654121349,23.2619534766222,-3.5741384698199,0.0139655356320946,0.0699534937967983,-3.13318202282797 +"Q7K3E2",-0.239742850746453,20.7274488354737,-3.56335537120668,0.0141353947531386,0.0705923306833387,-3.14637758788067 +"Q9VAN0",0.202522270195722,20.4095284774003,3.55754475658019,0.014227888045942,0.0708421410765112,-3.15349554245504 +"Q9VJI5",0.322236935994258,17.4144548171389,3.55142966665325,0.0143259635449193,0.0711181761694206,-3.16099202892923 +"Q9W3X7",-0.20310926229887,21.6471056343202,-3.54758540763967,0.0143880078059927,0.0711778599306202,-3.16570761673949 +"P18432",-0.203757104781456,23.9660585758508,-3.54472799689718,0.0144343205673371,0.0711778599306202,-3.1692141354508 +"Q9W3H4",-0.229282271906762,19.7009122750145,-3.5427791236202,0.0144660039067627,0.0711778599306202,-3.17160643894479 +"Q9VJQ3",0.240025235530947,20.3654582261834,3.53480073612002,0.0145965280497019,0.0715065126812512,-3.18140617313081 +"A1Z7B8",0.253287589217305,16.8341192167192,3.53346328252101,0.0146185376644524,0.0715065126812512,-3.18304989241254 +"Q9VW34",0.225574884390536,18.3652874976344,3.52446362948361,0.0147676124278021,0.0720244957005086,-3.19411743837001 +"Q9VSX2",-0.240101005567698,18.1866491032317,-3.50356583317775,0.0151204050833534,0.0733296003422664,-3.21986425466217 +"M9NDE3",0.200326430182402,16.0962295340875,3.50304983760517,0.0151292349439904,0.0733296003422664,-3.22050081287956 +"Q9W1F8",-0.224751719280952,17.6226915302803,-3.4984572929856,0.0152080793908048,0.0733296003422664,-3.22616817484828 +"O77410",0.193547716489578,14.4359920908176,3.49828442402698,0.0152110561861056,0.0733296003422664,-3.22638156325243 +"Q9VXK6",-0.218996440619215,17.9281512339468,-3.48763783542131,0.015395656604339,0.0739153537085144,-3.23953231017927 +"Q9W3T2",-0.199827591791177,16.4742239559471,-3.48617657765347,0.0154211889032152,0.0739153537085144,-3.24133859608836 +"Q9W385",-0.214923553051547,16.7688243286845,-3.47643550030588,0.0155926119923501,0.0745228561697422,-3.25338789478851 +"Q9VD29",-0.23047533046811,20.7595239762517,-3.46481177650151,0.0157999692927755,0.0752981393724271,-3.26778454249843 +"Q9VFS8",-0.298717245745813,17.3155860657011,-3.45935028749542,0.0158984640791034,0.075551675452833,-3.27455588202657 +"Q9VIU3",-0.336846140439761,12.464387444096,-3.44711030033644,0.0161217152761758,0.0763949462518784,-3.28974758634799 +"Q9VY24",0.255226834597629,17.5627232150469,3.44067678242787,0.0162404668175766,0.0767396562371607,-3.29774150906777 +"Q9VFP1",0.221837319766852,15.9215343708571,3.41926447096392,0.0166428167166349,0.0784186957156694,-3.3243914414784 +"Q9V6Y3",0.327825379273294,15.1516540923006,3.41467138547238,0.0167305705660494,0.0785220002332595,-3.33011686468266 +"Q9VWF0",-0.226078371952077,16.4634296941306,-3.41319477451218,0.0167588921361153,0.0785220002332595,-3.33195816708779 +"Q9VWW2",-0.331483525235269,15.1405521660971,-3.40151254429995,0.0169848604287718,0.0792245849420552,-3.34653698086466 +"M9MSK4",-0.223626740363592,20.4844180427936,-3.39885485211899,0.0170367428707314,0.0792245849420552,-3.3498564447862 +"P48148",0.231952425440905,20.5628211494031,3.39810902232195,0.0170513345288956,0.0792245849420552,-3.3507881744143 +"Q94915",-0.296840272045531,16.8263307829402,-3.37747210142603,0.0174606820371652,0.0807227274018046,-3.37660122856984 +"Q9NK57",-0.230368047975981,15.6282251055743,-3.37698050730107,0.0174705663021891,0.0807227274018046,-3.3772168832938 +"Q9V9Q4",-0.239474468315894,19.1531245366182,-3.37456503312025,0.0175192241793314,0.0807239390362564,-3.38024244812123 +"Q9VPL0",0.302487161104239,14.9622438225813,3.35703234789985,0.0178769829536234,0.0818134644246687,-3.40222892727304 +"Q9VXE8",-0.297376030427804,16.1806311342559,-3.3567406492736,0.0178830038101392,0.0818134644246687,-3.40259510323441 +"Q9VLS9",-0.199108055622336,19.0521867537113,-3.35578105664859,0.0179028264478442,0.0818134644246687,-3.40379978887312 +"P48609",0.199389051343527,17.0167688565164,3.34993170834882,0.0180241908795719,0.0821430338446063,-3.41114602575375 +"Q23983",-0.213736451353665,22.3041402375407,-3.34557640505733,0.0181151535376141,0.0823326324270851,-3.41661909726322 +"Q7JWU9",-0.228908675508803,15.5146661312028,-3.34139889764874,0.0182028850484755,0.0825065550566771,-3.42187131781245 +"Q9VWH4",-0.19357428098758,24.4274561373449,-3.33853964839278,0.0182632055436856,0.0825336832593265,-3.42546759457645 +"Q8SZK9",0.200986521778677,22.017862151702,3.33643112033411,0.0183078314184357,0.0825336832593265,-3.42812039214727 +"Q9VQD7",-0.185614066274741,21.0620658182594,-3.32926394625314,0.0184604339584596,0.08277703354766,-3.43714239844302 +"Q95RB2",-0.200042901774104,24.3075024361453,-3.326187475411,0.0185263731232693,0.08277703354766,-3.44101731162721 +"Q9W086",0.292204627266489,16.790799032864,3.32491337085297,0.0185537584742433,0.08277703354766,-3.44262248495344 +"Q9W3K9",0.192180905048001,19.0687429028754,3.32460849695881,0.018560318073636,0.08277703354766,-3.4430066131265 +"Q7K5M6",-0.187070224808117,18.3126809132753,-3.3210925950959,0.0186361528625997,0.0828936079328434,-3.44743746374621 +"Q9VVU2",0.196720010901675,20.1984854575642,3.31088058044267,0.0188583854255318,0.0835039422684108,-3.46031700518213 +"Q7JXC4",-0.192930503893681,21.6726438040799,-3.31019124282018,0.0188734929467571,0.0835039422684108,-3.46118694498648 +"Q7K5K3",0.194238677571985,22.7243318776817,3.30771235883609,0.0189279318904317,0.0835232550085715,-3.46431584171125 +"Q9VTT2",-0.378820362630741,14.081600089584,-3.30504669025838,0.0189866684525238,0.0835613798913185,-3.46768147972696 +"Q6NLJ9",-0.237197310916082,15.1773347773192,-3.30143995996193,0.0190664648402452,0.0836119267706993,-3.47223690163621 +"A1ZB71",-0.242769182193914,19.2665959267525,-3.30000088578025,0.019098407733595,0.0836119267706993,-3.47405501767498 +"Q7JWD3",-0.353801718057694,17.1785073325747,-3.29631250701996,0.0191805510455299,0.0837517255077064,-3.47871623375733 +"Q9VA41",0.19567357052852,17.2447222874863,3.2894535949617,0.0193343548667005,0.0840517261002396,-3.48738937116138 +"P22465",-0.217559384755717,22.8114499925094,-3.28875763881351,0.0193500376633645,0.0840517261002396,-3.48826978487013 +"P40304",0.199560565415538,18.6751943503748,3.28439810678623,0.0194485994937678,0.0842604258587137,-3.49378633597645 +"Q9VVW7",-0.186437335526056,16.570933703832,-3.28059320762721,0.0195350796837273,0.0844158365607699,-3.49860325153366 +"Q9I7C6",-0.372943182323887,15.1963828364407,-3.26915697347208,0.0197976014614558,0.085027514500042,-3.51309355829197 +"Q9W3C4",-0.317214702641712,14.9560594307366,-3.26757543362026,0.0198342146696692,0.085027514500042,-3.51509890111692 +"O76877",-0.217331439282338,17.3974794935016,-3.26619490198965,0.019866236162685,0.085027514500042,-3.51684965911924 +"Q9VI09",-0.182686031817198,20.2964520674857,-3.26557928637824,0.0198805339658372,0.085027514500042,-3.51763045476488 +"Q9VDH3",0.179989700592877,20.4280898149019,3.25570857452593,0.0201113563395068,0.0855277549811436,-3.53015690169825 +"Q9VIH3",-0.262668691517877,13.8166136341325,-3.25542642085425,0.0201179981363578,0.0855277549811436,-3.53051516993987 +"Q9VVB4",-0.190589347545771,16.0876855158158,-3.25401227064115,0.0201513235657011,0.0855277549811436,-3.53231097297733 +"Q9W403",-0.256278431717288,15.1551846376007,-3.24323459923897,0.0204073365088156,0.0863945109053411,-3.54600650632798 +"A1ZA22",0.385043399222862,13.4889314013872,3.2298881912166,0.0207294004170044,0.087535797203958,-3.56298860303748 +"Q9V396",0.203847682536772,20.6851537334932,3.22365642999566,0.0208817143989244,0.0879563121651666,-3.57092640221387 +"A1ZBK7",-0.233754468354061,17.6485267278435,-3.21943284075476,0.0209856535506376,0.0879671949278585,-3.57630930896208 +"Q9VB22",-0.247750430200895,17.2757401311558,-3.21926587205761,0.0209897743293092,0.0879671949278585,-3.57652215878328 +"Q8MKK0",-0.497771787745029,16.1665596064597,-3.21347519871915,0.0211332464007779,0.0883465037506204,-3.58390641704436 +"Q7JZN0",-0.213764491257706,16.9321881666938,-3.19744321410055,0.0215361846352894,0.0898058899291569,-3.60437436473273 +"Q24372",-0.196297124563463,16.8643303809506,-3.19517487101511,0.0215938825897591,0.0898219355603947,-3.60727318126837 +"B7YZT2",-0.342144821109599,18.4562284927067,-3.18912092426571,0.0217487149179741,0.0902409365253252,-3.6150132171883 +"Q9VI10",0.205022078245882,17.1695716447554,3.18392543541875,0.0218825761026007,0.0905710594023274,-3.62165967362348 +"Q24492",-0.180622829462656,15.1445621010421,-3.16735310177804,0.0223157156469172,0.0915707258742391,-3.64288461968128 +"Q9V3J4",-0.190185507736961,16.5394514395262,-3.16582007179149,0.0223562621841465,0.0915707258742391,-3.64484991011904 +"Q7K8X7",0.182958679064303,19.3836721961512,3.16433459836386,0.0223956289782164,0.0915707258742391,-3.64675453562839 +"Q7JVI6",0.243723925542252,17.4289395519481,3.16168186532745,0.022466121149258,0.0915707258742391,-3.65015651925136 +"Q7K012",0.263745659049444,15.443993675753,3.16047475131113,0.0224982798253562,0.0915707258742391,-3.65170488840199 +"O62530",-0.279944039630395,15.7966916594262,-3.16032314879223,0.0225023222734842,0.0915707258742391,-3.65189936324336 +"Q9VDE2",-0.187790998763756,19.5824477493901,-3.15919966144083,0.0225323049648265,0.0915707258742391,-3.65334066221925 +"O76454",-0.219586825843749,18.1002716791685,-3.15804034397424,0.0225632903682927,0.0915707258742391,-3.65482810391381 +"Q8MSS7",0.293506317016902,14.0592697442855,3.15315165075027,0.0226944731907688,0.091612675342127,-3.66110242992691 +"Q8T3X9",-0.256093335033892,18.3182262964373,-3.15140400821676,0.0227415745524317,0.091612675342127,-3.6633461913263 +"Q9VSY8",-0.190042847152359,18.0432699459061,-3.1509437580632,0.0227539969688812,0.091612675342127,-3.66393716449525 +"Q9VVA7",0.174625857078478,17.4072733160866,3.14948862203972,0.0227933215029872,0.091612675342127,-3.66580578256851 +"Q9NHE5",-0.319847283608938,15.5909135662089,-3.14641987908421,0.0228765007040589,0.0916351281066107,-3.66974744318829 +"Q9U6R9",-0.177295463157712,20.5646063158767,-3.1439463041382,0.0229437929262181,0.0916351281066107,-3.67292554843282 +"Q9VIS4",0.177003584403144,14.217572357328,3.14309657549522,0.02296695998375,0.0916351281066107,-3.67401748648797 +"Q0E8V7",-0.187231294562746,19.7531686296273,-3.14120386657412,0.0230186562809772,0.0916351281066107,-3.67645004345471 +"Q9VHX4",-0.178726019576487,22.8941359114831,-3.13613690454424,0.0231576887794382,0.0919691068669118,-3.68296456491275 +"Q9VJZ5",-0.225874024984481,16.9822989815254,-3.13020309303676,0.0233216923169183,0.092400434167743,-3.69059789423174 +"Q95NU8",-0.247447318619123,17.2599248065772,-3.12317955004566,0.0235174816608611,0.0924731199259071,-3.69963905915814 +"Q9VIX1",-0.344147954612877,17.4956582696552,-3.12292098445298,0.0235247241774299,0.0924731199259071,-3.69997202539395 +"Q7KV34",0.184950377966917,20.9595222170679,3.12168678958992,0.0235593285178564,0.0924731199259071,-3.70156147296239 +"A1Z8Z7",0.209559196813217,18.7985873053676,3.12159885626793,0.023561796144191,0.0924731199259071,-3.7016747247789 +"P55841",0.184690366909273,20.6972161651609,3.11799536883407,0.0236631658106372,0.092652959089537,-3.70631662944551 +"Q9VCK0",0.309020908182099,18.2023341431625,3.11370244634004,0.0237845615445341,0.0928538178135531,-3.71184886029503 +"Q9VIQ5",-0.276556957474339,16.609768793032,-3.1122496610017,0.0238257997747007,0.0928538178135531,-3.71372158984484 +"A1Z7H8",-0.250909579778888,14.8489818051402,-3.10301427630911,0.0240898122891438,0.0929614815114249,-3.7256329922877 +"Q9VVU1",0.172719174636782,22.0215984610022,3.10297141767615,0.0240910450236921,0.0929614815114249,-3.72568829533725 +"Q9W3R8",-0.217932415037732,17.5436104014424,-3.10223104082273,0.0241123513754417,0.0929614815114249,-3.72664368532322 +"Q9Y0Y2",-0.211189763402203,19.6522695764326,-3.10150982323879,0.024133126442618,0.0929614815114249,-3.72757442029462 +"Q9V4S8",-0.248345118614703,17.1993185656976,-3.1003183193159,0.0241674918221939,0.0929614815114249,-3.72911220978459 +"Q8SYJ2",-0.188601401220634,22.6092778918144,-3.09961440760917,0.0241878195299511,0.0929614815114249,-3.73002078499506 +"Q9VLP3",-0.191416634434248,17.4822094589629,-3.09559269177461,0.0243043233277461,0.0930527784569313,-3.73521305018419 +"Q9W0A8",0.222179064975958,19.0800016426856,3.09494485641511,0.0243231483256727,0.0930527784569313,-3.73604963806521 +"M9PF61",-0.195884333291591,22.7313497215493,-3.09178697578098,0.024415142508768,0.0931909787291191,-3.74012836991004 +"Q4V5I9",-0.269428470376997,16.1716832266114,-3.08370645122739,0.024652300590005,0.0938813638907039,-3.75057105092872 +"Q9V9S0",-0.193455849583604,17.090358370486,-3.07988608905343,0.0247653127856073,0.0939950338091292,-3.75551112420995 +"Q9V420",0.235738521546198,17.4775580058419,3.07889066564167,0.0247948530431756,0.0939950338091292,-3.75679860316389 +"Q9VJ68",-0.188090233831446,17.8684729049642,-3.07396448324181,0.0249416180462637,0.0943331873156565,-3.76317198100129 +"Q9VY28",0.253929349349249,15.1781711551881,3.06905123836339,0.0250889558323199,0.0943331873156565,-3.76953169909557 +"Q9VJ43",0.178629491313146,20.112835537847,3.06457597536366,0.0252239979222899,0.0943331873156565,-3.77532715961192 +"Q9VQR2",-0.187206931545333,21.3390828748733,-3.06269819393768,0.0252808997381107,0.0943331873156565,-3.77775963994948 +"Q9VKR4",0.204001782709732,18.9296747233995,3.06194251999304,0.0253038387439649,0.0943331873156565,-3.77873866673068 +"A8E6W0",-0.170975758367303,16.446784831237,-3.06181557029004,0.0253076946484889,0.0943331873156565,-3.77890314575086 +"Q9VMH8",0.17123498409013,18.8674084553935,3.06141780658499,0.0253197803264446,0.0943331873156565,-3.77941851094564 +"Q9Y125",-0.185914770512746,22.741336939024,-3.05924965890454,0.0253857698049611,0.0943331873156565,-3.7822280372005 +"Q9VL01",-0.18001183520099,20.5584929477304,-3.05809367436981,0.0254210309409342,0.0943331873156565,-3.78372622597562 +"Q9VPR1",-0.264711223015976,13.7653045317568,-3.05715835021662,0.0254496008945116,0.0943331873156565,-3.7849385559203 +"Q9W127",-0.207857719491368,18.6549000666741,-3.05463039201465,0.0255269965139276,0.0943627006800767,-3.78821574599693 +"Q95SI7",-0.178288294884446,21.2747864027396,-3.05320639929332,0.0255707078581503,0.0943627006800767,-3.79006213316834 +"Q9VUV6",-0.206483235487941,14.8855756145891,-3.0493482556274,0.02568955515563,0.0945461680328033,-3.7950659853154 +"Q0E8X8",-0.222557449855593,19.4448043161141,-3.04562181966263,0.0258049253372455,0.0945461680328033,-3.79990078901938 +"Q9VPF6",0.423280984104332,13.8817874524474,3.04553676069517,0.0258075654342096,0.0945461680328033,-3.8000111676717 +"Q95RG8",0.417148315265186,13.4043616546723,3.04256647426507,0.0258999459905001,0.0945461680328033,-3.80386619240802 +"Q9VD30",-0.199976089707537,21.4019101261563,-3.0424416503194,0.0259038362056302,0.0945461680328033,-3.80402822089482 +"Q7K3Z3",-0.178109407060571,19.9224648345871,-3.03973542296082,0.0259883364303983,0.0946474785281755,-3.80754153339112 +"Q9VK12",-0.189157211949748,22.3988381771538,-3.03376311399479,0.0261758979943305,0.0951228711427958,-3.81529820323255 +"Q9VDT1",0.264956848674931,18.9933537061122,3.0244004109808,0.0264729529548841,0.0956793980565924,-3.82746711591497 +"Q7JR58",-0.212748824320162,22.7370895343773,-3.02356907681302,0.0264995085575487,0.0956793980565924,-3.82854814225273 +"Q9VFC2",0.199047330005151,19.9020764315315,3.02351840179667,0.0265011282386965,0.0956793980565924,-3.8286140403193 +"Q9VL00",-0.178397482488023,15.9054261784501,-3.01520906448209,0.02676819693735,0.0964348865907122,-3.8394238138039 +"Q9V3E3",0.173890278128543,15.0049541512557,3.00779050485383,0.027009147653885,0.0970932290661212,-3.84908189575219 +"Q9W483",0.229146026898796,15.417915052883,3.00572049835174,0.0270768068080211,0.0971271263565145,-3.85177799422931 +"Q95RA9",-0.183973247321674,20.5312764815656,-2.99507339653823,0.0274277805875334,0.0980308444468406,-3.86565361240178 +"P83967",0.277572992541785,17.3408576890866,2.99406702013428,0.0274612137971439,0.0980308444468406,-3.86696586013046 +"Q9VYT3",-0.271118136666697,14.3234124130652,-2.99274933558737,0.0275050570750128,0.0980308444468406,-3.86868421723418 +"Q9VBP6",-0.171825646090305,23.0872961667136,-2.99003510860202,0.0275956109866378,0.0981438787328611,-3.87222442569392 +"Q9VJ58",0.208720355392622,17.1385921228581,2.98417053794357,0.027792393627275,0.0986334310006269,-3.87987669263979 +"Q9Y143",-0.191088361302466,21.0076406348153,-2.98158270541205,0.0278797186190613,0.0987332710331087,-3.883254681313 +"A1Z7H7",0.165258959894015,17.8898270686114,2.97292056099376,0.0281742259137734,0.0995648492037584,-3.89456748108699 +"Q9W402",-0.185284320870402,21.2452124060693,-2.96738936177568,0.0283640760508709,0.100023845354868,-3.90179590242474 +"Q9VXI6",-0.174929717121973,22.0909202884273,-2.95698888645906,0.0287248853206475,0.101082507837215,-3.91539746238507 +"Q9VM11",0.202648783688309,17.6343463960129,2.95208338805163,0.0288968169974891,0.101473454214341,-3.92181717906269 +"Q9VXN2",-0.353158653966407,18.5218652380813,-2.94485163656565,0.0291523510604012,0.10205051128656,-3.93128631217016 +"Q9VRP4",0.370505533675599,14.4535977992375,2.94397461125132,0.0291835095225954,0.10205051128656,-3.93243508600037 +"Q9VIH9",-0.2793005315926,19.2611507195553,-2.93856871821833,0.029376378200105,0.102510039409571,-3.93951796722139 +"Q9VEH2",-0.163321329820647,16.0006162436742,-2.93427547580405,0.0295305497579503,0.102832895608061,-3.94514543072001 +"A1Z6P3",-0.184027805923993,17.2083642177796,-2.92772555678434,0.02976747703473,0.103336309337597,-3.95373494616344 +"Q9NCC3",0.198955037152309,17.369433470083,2.92685787981575,0.0297990196591033,0.103336309337597,-3.95487317818401 +"Q9VB46",0.236137322873267,15.200020644348,2.9226680029135,0.0299518523024403,0.103438219424507,-3.96037072682002 +"Q9VH76",-0.167482777639893,19.3329198485765,-2.92120571347599,0.0300053944636508,0.103438219424507,-3.9622898691612 +"Q9VXE5",0.182841295798729,14.6620986286648,2.92095875342577,0.0300144473629865,0.103438219424507,-3.96261400910202 +"Q9VC48",0.181617560701241,18.3901730292986,2.90641426834441,0.0305529426845859,0.105076924531731,-3.98171604241383 +"A1Z6R7",-0.219954192782286,17.804657652159,-2.90408656798884,0.0306401050155465,0.105148139379374,-3.98477533167537 +"Q24583",-0.166291734312342,21.224407416883,-2.90249854080366,0.0306997265454167,0.105148139379374,-3.98686281684937 +"Q9VXC1",-0.159846234874607,18.3398903972975,-2.8858498387139,0.0313325214778908,0.106903985450274,-4.00876456279624 +"Q9VBT2",0.625558640906197,12.8255640400909,2.88564080967098,0.031340556885602,0.106903985450274,-4.00903973881293 +"Q9VH95",-0.181910233335856,20.9742527612769,-2.88393360065537,0.0314062694590432,0.106909505015682,-4.01128737050921 +"Q9W1B9",0.311399713331088,20.553146964407,2.88197102753969,0.031481998242255,0.106949028651897,-4.01387159526014 +"Q9U9P7",-0.201070140629,16.5865938661773,-2.87619513858796,0.0317060347389421,0.107491190944218,-4.02147944495231 +"Q9V773",-0.189136440620755,15.6240253669962,-2.87292438369646,0.0318336769846818,0.107705016654055,-4.02578919914771 +"Q7K5M0",-0.247272891912232,16.8822738743256,-2.86645328195827,0.0320878780917671,0.108345304973821,-4.03431932674022 +"Q961Q8",0.275042232644557,15.3550886831811,2.86440583334096,0.0321687700474931,0.108399006947916,-4.03701918346283 +"Q9VVW3",0.162437896286066,16.4160645958378,2.85692658621012,0.0324661711208124,0.109013779494661,-4.04688544811498 +"Q8I725",0.200121830242399,18.8895246926273,2.85653253135278,0.0324819235065027,0.109013779494661,-4.04740543114458 +"Q7K3V6",0.176010167741124,16.1355155780269,2.8506959653017,0.0327162245965978,0.109535187152667,-4.05510911059118 +"Q94523",0.160204741111734,20.3946594941109,2.84879678317871,0.0327928636656617,0.109535187152667,-4.05761661349456 +"P48604",-0.179758381765996,20.1240135282553,-2.84710057597169,0.0328614782909278,0.109535187152667,-4.05985644729695 +"Q7K0E6",0.199048989994928,16.7846541659495,2.84615104262308,0.032899957292258,0.109535187152667,-4.0611104333196 +"Q9W1V3",0.216880586864729,16.4327539658147,2.84261809298078,0.0330435611287465,0.10979414335209,-4.0657769944114 +"A1Z7K8",-0.161721729666372,17.7011831383566,-2.83896598773903,0.0331927304701174,0.110070525694147,-4.07060231151533 +"Q9VI04",0.202871930687637,16.6131983546228,2.82944026693941,0.033585288415069,0.111151311659395,-4.08319459755037 +"Q9VTB4",-0.157946735078578,20.5809472690554,-2.82729876041724,0.0336742387249923,0.111225010283737,-4.08602679352953 +"Q7K1Z5",-0.326059033058998,16.086669126019,-2.82444507792601,0.0337931712632311,0.111397252306461,-4.08980158921579 +"O76521",0.194748234749436,16.0167899037768,2.81197666069841,0.0343182354633564,0.112770653853988,-4.10630427199603 +"Q9VLT7",-0.203387208354588,18.0924064038203,-2.81134624489095,0.0343450192792721,0.112770653853988,-4.10713908101109 +"Q9VV47",-0.190940016409591,20.14289273286,-2.80961598611419,0.0344186485459994,0.112790384626183,-4.10943052854182 +"Q9VU35",-0.20208012588958,22.6690805482127,-2.80037018611954,0.0348150307281873,0.113865629911013,-4.12168015696068 +"B7Z0C9",-0.255151692565319,15.9124582242102,-2.7955417832317,0.0350240137387396,0.114324960697099,-4.12808060685226 +"Q9VSA9",-0.171733435530367,22.5005364837068,-2.78478037795905,0.0354947392620668,0.115635205252202,-4.14235396954743 +"Q8I941",-0.168337253546248,19.072427251975,-2.77390504909099,0.0359774786323475,0.116979404208101,-4.15678983314942 +"Q9VSL5",0.159927475719893,17.5102107877546,2.77056653791177,0.0361271047546763,0.117237374962646,-4.16122363057781 +"Q9VY91",-0.562100690084957,17.0599281665043,-2.76862135954236,0.0362145972969723,0.117293103478349,-4.1638074642336 +"A0A0B4KI23",-0.198846761212824,20.6048894078373,-2.76386550022199,0.0364294875135703,0.117541567474027,-4.17012630965941 +"P29746",0.179727449653551,21.0487839479986,2.76368803970999,0.0364375328300017,0.117541567474027,-4.17036213283029 +"Q9W3M7",0.203738873841315,15.9480129386626,2.76225180697582,0.0365027169973298,0.117541567474027,-4.17227081822175 +"Q9W2M0",-0.180194881920862,17.8287342083565,-2.75199010445206,0.0369721681469149,0.118823846761183,-4.18591374451986 +"Q8MT58",0.179675562918682,21.631631618113,2.74275300879461,0.0374003805683761,0.119307770784529,-4.1982027852674 +"Q9VVE2",-0.194335174669089,18.3829166553845,-2.74167772940722,0.0374505785724705,0.119307770784529,-4.19963384540934 +"A1ZB68",-0.204101358017276,19.3142111995694,-2.74164085057725,0.0374523015142067,0.119307770784529,-4.19968292830979 +"Q9VCT4",0.241100736940316,13.1338993925751,2.73842906064974,0.0376026850156257,0.119307770784529,-4.20395804878812 +"Q9VKY3",0.16038859947065,18.6854148754891,2.73692224360416,0.037673464393995,0.119307770784529,-4.2059640513945 +"Q9VEV7",0.447651732024156,12.7435645021526,2.73618523310532,0.0377081366835532,0.119307770784529,-4.20694529696362 +"Q9V931",-0.222779739878389,17.7828007840187,-2.73598372401741,0.0377176226298016,0.119307770784529,-4.20721359190434 +"Q9V406",-0.185873136685158,17.0975801131757,-2.73539703141829,0.0377452557193956,0.119307770784529,-4.20799475199227 +"Q7K3J0",0.163371919703728,20.3033237888686,2.73494654302229,0.0377664885936639,0.119307770784529,-4.20859458213327 +"Q59E04",0.231115053523284,16.2220818142404,2.73283892574918,0.0378659999616795,0.119396007440607,-4.21140113966924 +"Q9U915",-0.155966633430367,21.0861961674886,-2.7280778376026,0.0380918483428222,0.119826349221312,-4.21774259255878 +"Q9VAU6",-0.163447633304605,13.3559311901679,-2.72693752795614,0.0381461579355616,0.119826349221312,-4.21926170938539 +"Q9W0B3",-0.169796088762183,19.1923347424078,-2.72482383122913,0.0382470502648702,0.119917443311661,-4.2220778748211 +"Q9VSL9",0.266808211458967,14.5047834349547,2.71738691540593,0.0386043502580081,0.120810612064461,-4.23198952115031 +"Q7JUS9",0.166391817432391,20.3815686507709,2.71162661727306,0.0388835958465685,0.121456625228607,-4.23966996178168 +"Q9VFP0",-0.226651508698369,16.4940802712632,-2.70191256876065,0.0393595015177757,0.122029929982215,-4.25262859572489 +"Q8IPD8",-0.160138903190113,18.5762562528074,-2.70021714523587,0.0394432104218112,0.122029929982215,-4.25489113473853 +"O46098",-0.227549822006203,18.0288905005092,-2.69971234567508,0.0394681715086322,0.122029929982215,-4.25556483585328 +"Q9VEW1",-0.347269727294124,14.5992068716495,-2.69948599534319,0.0394793695494405,0.122029929982215,-4.25586692806511 +"Q9VIQ8",-0.150577617222254,21.3661143652598,-2.69888693594518,0.0395090229909869,0.122029929982215,-4.25666646709174 +"O61604",0.156903124701032,20.8871033573105,2.69581286135405,0.039661571211916,0.122029929982215,-4.26076978097056 +"Q9Y162",-0.152673573996047,20.2726017188341,-2.69519243304848,0.0396924370217469,0.122029929982215,-4.26159803328006 +"Q9VYF0",0.188495402499534,16.0877787874667,2.69500841902828,0.0397015965924453,0.122029929982215,-4.26184369245108 +"Q0E8U4",-0.184302075975848,16.3372479023132,-2.69411368510598,0.039746166064874,0.122029929982215,-4.2630382050329 +"Q9VEN9",0.293206798646045,14.8340847998094,2.69305985955576,0.0397987301620653,0.122029929982215,-4.2644451987867 +"Q9VJ22",0.234830103819561,12.9914659531393,2.69070252720336,0.0399165860890451,0.122166725865188,-4.26759287997212 +"Q8SX89",-0.221892476948101,15.5205318248979,-2.68645207296953,0.0401300493207391,0.122595095727093,-4.27326956583044 +"Q9VUJ1",0.170897668644905,19.9308105686167,2.68118301053388,0.0403963921016787,0.12318314812724,-4.28030872789414 +"Q9VBV5",-0.170538994191826,17.1803821089951,-2.67939633908168,0.040487141063313,0.123234582652566,-4.28269613550152 +"Q95RF6",0.30090803432703,17.3116589156058,2.67365656335207,0.0407801784585043,0.123338296034961,-4.29036756873123 +"P20432",-0.150465046385627,23.6166679831825,-2.67196985361453,0.0408667287120677,0.123338296034961,-4.29262242946065 +"O77477",0.253879702608405,16.7878458060538,2.67192794976794,0.0408688814647501,0.123338296034961,-4.29267845111246 +"Q7JQR3",-0.158567326057408,19.2554971124794,-2.6701233404135,0.0409617077329525,0.123338296034961,-4.29509118463806 +"Q9V3Y0",-0.183979890108882,16.3508569373315,-2.66960225441441,0.0409885541531626,0.123338296034961,-4.2957879168815 +"Q9VGP7",0.182539774921365,15.7854464051807,2.66733505792772,0.0411055829885583,0.123338296034961,-4.29881958697555 +"Q9VND8",-0.222502316957673,18.1824408014357,-2.66620730968736,0.0411639304870558,0.123338296034961,-4.30032775242486 +"Q9W0J9",-0.185968185870742,18.4983199914517,-2.66575624707373,0.0411872927536743,0.123338296034961,-4.3009309979273 +"Q9W147",-0.197953207956393,13.7341903996841,-2.66435905437736,0.0412597501160401,0.123338296034961,-4.30279968868324 +"Q9VR30",0.188468572789622,17.2635457732273,2.66434166109315,0.041260652990113,0.123338296034961,-4.30282295250006 +"Q9W1G0",-0.156277699541175,21.8647382879415,-2.65882361492043,0.0415481765632066,0.123920518485574,-4.31020464185301 +"Q9VMB9",-0.152929703859186,22.5633601731146,-2.65742950601205,0.0416211616072687,0.123920518485574,-4.31206997083324 +"Q9VFP6",-0.184188551303038,20.2230120780499,-2.65633986453227,0.0416783038791409,0.123920518485574,-4.31352802586155 +"Q6IDF5",-0.14726105278298,19.6864912444294,-2.65252851970535,0.0418788463905819,0.124295223806923,-4.31862873447874 +"Q5U1B0",-0.242945032902668,15.0464944089205,-2.64555845555568,0.0422483043837368,0.125169043893558,-4.32795964987459 +"Q9VSC3",0.193639743129509,17.5382741102509,2.64321697292151,0.0423732097738134,0.125183215631094,-4.33109505800832 +"Q9VVN2",0.183061258010005,14.7727139933593,2.64265612144828,0.0424031875489017,0.125183215631094,-4.33184613904344 +"Q86BM0",-0.210706330000026,17.5369088987579,-2.63998430974712,0.0425463131130529,0.125383834403838,-4.33542450275046 +"Q9VW66",-0.173874012522873,21.3402417747473,-2.63684837766565,0.042714969301141,0.125658851489071,-4.33962515055008 +"Q9VE24",0.250413945113305,15.6561721250286,2.63183914070284,0.0429858800518713,0.126233182969228,-4.34633665605299 +"Q9VUN9",0.19435664113912,16.6916156618692,2.62698354787216,0.0432502588330906,0.126609729230041,-4.35284407928918 +"Q9VMT5",0.208768860076894,16.3927695985436,2.62596338569111,0.043306028507112,0.126609729230041,-4.35421151195862 +"Q24439",-0.151175743240408,24.3850077875056,-2.62476049436479,0.0433718875922917,0.126609729230041,-4.35582397378062 +"Q6IHY5",-0.162377497611484,20.9793890968127,-2.6239244602128,0.0434177248918366,0.126609729230041,-4.3569447299644 +"Q9VA32",0.204813858075745,17.1526167712159,2.61745295187742,0.0437743181610342,0.127426810981859,-4.36562190495381 +"Q7KJ08",0.148768739322582,14.4549295657536,2.60334485394535,0.0445627388626446,0.129495903175769,-4.384548764271 +"Q7K1S1",0.323177121487021,16.5063438237851,2.60004842340413,0.0447491628638705,0.129737930490638,-4.38897312678026 +"Q9VU04",-0.217804679269424,16.5367036826212,-2.59912410269424,0.0448015875075586,0.129737930490638,-4.39021385430913 +"Q9VY41",-0.351214536633744,16.5962517375914,-2.59444051418892,0.0450682489650541,0.129930639061138,-4.39650159148973 +"Q961D9",-0.458755207888011,12.3653315560623,-2.59409093089156,0.0450882212901177,0.129930639061138,-4.39697096826926 +"P92177",-0.18651621459291,24.1185769360707,-2.59260883057344,0.0451730026791226,0.129930639061138,-4.3989610390744 +"Q9VZW7",-0.230819376943407,14.0983301851691,-2.59249155485623,0.0451797186183813,0.129930639061138,-4.39911851583049 +"Q9VZF9",-0.145796239238724,19.2454530658756,-2.58997331295646,0.045324189533994,0.130121769608781,-4.40250021080663 +"Q9VVU5",-0.195186404992551,15.5060869323995,-2.58303509683474,0.04572482188896,0.131046396753927,-4.41181958251927 +"Q9VZI8",0.187199702955763,15.5604057933724,2.57752487997313,0.0460457229133965,0.131739735539529,-4.41922312740719 +"Q9VY05",0.148993668147664,18.4277805060662,2.57486213962796,0.0462016649897621,0.131762327066623,-4.4228014989127 +"Q9VJI9",-0.355747126984994,17.6721469133654,-2.57469269833275,0.0462116075143733,0.131762327066623,-4.42302922107296 +"P19107",-0.152755815879409,24.0216178247711,-2.56844093171891,0.0465800700689677,0.132538864669855,-4.43143261888002 +"Q9VRL0",-0.145296249618347,22.8445903875973,-2.56651596078178,0.0466941602825294,0.132538864669855,-4.43402059266489 +"Q9Y136",0.216879908042623,15.1753639780188,2.56604139205308,0.0467223335886541,0.132538864669855,-4.43465864913691 +"Q8IQC6",-0.371877387343087,15.807899216735,-2.56243657754683,0.0469369371942223,0.132716189766359,-4.43950577166096 +"Q9VEJ3",0.147183719693857,19.6642750712149,2.56231864428451,0.0469439759964939,0.132716189766359,-4.43966436126465 +"Q9VU68",-0.170978196918352,19.2763727320347,-2.55718521700928,0.0472514688524792,0.133359475543038,-4.44656831702169 +"Q9W265",0.239104744672625,16.9818081330616,2.55473911110382,0.0473987544132572,0.133548990185407,-4.44985865544152 +"Q9VLS4",-0.196911594642092,20.6264664500525,-2.55341402153633,0.0474787477098001,0.133548990185407,-4.45164122869708 +"Q9VKU3",0.219948759352318,15.4486307307823,2.55018271567074,0.0476744267769518,0.133839890277496,-4.45598857668442 +"Q94516",-0.161090483853425,23.4130144603849,-2.54905953985974,0.0477426467116966,0.133839890277496,-4.45749982576907 +"Q9NHD5",0.161063482734997,16.4964426416531,2.54514625521344,0.0479811566135465,0.134166136284548,-4.46276578955539 +"Q9W425",-0.459872362808399,14.1124651553235,-2.54451266003329,0.0480198941018437,0.134166136284548,-4.46361848014568 +"Q9VSL2",-0.163733527849502,20.5046268075522,-2.54169544327636,0.0481925449287506,0.134423352744408,-4.46741016623552 +"Q7KW39",0.14256873745552,21.5899758118542,2.53915999345036,0.0483484997829578,0.134633218093445,-4.47082301641369 +"P00334",-0.153316447899357,25.1194020031667,-2.53097760872257,0.0488555151407391,0.135782557123739,-4.48183944669592 +"Q7KMS3",-0.173486263341347,15.6448097714966,-2.52987857612161,0.0489240508581336,0.135782557123739,-4.48331942712487 +"Q9VTW6",-0.205064001659983,16.2711053737979,-2.52636331874318,0.0491439582972752,0.136166316345274,-4.48805359733658 +"Q9V3Y7",-0.400695016289799,19.7827436450022,-2.52402199158072,0.0492910171868789,0.136347291322909,-4.49120715580021 +"Q9VCC0",-0.179716483831289,17.4324308401333,-2.51844947707354,0.0496429353736408,0.137093404309988,-4.49871403382308 +"Q9VKA1",-0.229557494811656,14.6826677630072,-2.51548890790925,0.0498310014221377,0.13724872358932,-4.50270297076355 +"Q9VII5",0.147200834022865,17.2435822374276,2.51497468279465,0.0498637449011558,0.13724872358932,-4.50339586183186 +"Q9VS97",0.181982452917179,15.0458612742645,2.51313182967248,0.0499812794641217,0.137345591674061,-4.50587912317819 +"Q9VK60",-0.146519427664192,21.3906781062681,-2.51017659400401,0.0501703826098258,0.137638483870377,-4.50986170142759 +"Q9W2E8",-0.231946386302724,19.3817618840966,-2.50655256659817,0.0504033319260296,0.138050505176712,-4.51474618437496 +"Q7JYZ0",-0.198823742440931,16.9282235529862,-2.50219938972004,0.050684688490743,0.13859354164354,-4.52061430581387 +"Q9VP55",0.254485766121205,17.1397701350207,2.49902607430807,0.0508908511431303,0.138929524888284,-4.52489256462486 +"Q7JV69",-0.172732427011066,16.2092499590857,-2.49282622237033,0.0512962447296215,0.139600391226715,-4.53325263117765 +"Q7KN94",-0.150252686568084,22.6152987657733,-2.49042974248815,0.0514538731275738,0.139600391226715,-4.53648461749654 +"Q0E8P5",-0.141294755416833,17.7190241005634,-2.48999705951257,0.051482388230498,0.139600391226715,-4.53706818003522 +"P42325",-0.149218720831314,20.0441818630299,-2.4884164026674,0.0515867025481772,0.139600391226715,-4.53920009883789 +"Q9VVL7",-0.14680564355432,23.444592683802,-2.48785536435819,0.0516237824192291,0.139600391226715,-4.53995683061533 +"Q9VXN3",-0.153920459100885,17.035441304971,-2.48762896150369,0.0516387538290665,0.139600391226715,-4.54026220834265 +"P40301",0.245767976678138,17.8112635641599,2.47841348199816,0.0522521217000656,0.141029998374934,-4.55269430459257 +"A0A126GUP6",-0.137988515291111,17.1578728049701,-2.47388488444999,0.052556398708443,0.14162208892679,-4.55880500940316 +"Q9VUQ7",-0.173863059799437,16.5922206017835,-2.47000889795567,0.0528183362793454,0.141880456470274,-4.56403583239651 +"Q9VLW8",-0.202742340913716,14.3379794957208,-2.46757891512686,0.0529832672044317,0.141880456470274,-4.56731554178149 +"Q8SWZ6",-0.205043409344775,13.8676267730932,-2.46608365885737,0.0530850295202911,0.141880456470274,-4.56933379230018 +"Q9VF70",-0.158877410197046,15.9507844004775,-2.46597161578916,0.0530926632438748,0.141880456470274,-4.56948502842184 +"Q9VSK4",-0.152632310127771,19.6653661799601,-2.46526111892634,0.0531410982487739,0.141880456470274,-4.57044407204258 +"Q7JUN9",-0.510089069901094,13.5426155990768,-2.46494532870589,0.0531626410635018,0.141880456470274,-4.57087033924469 +"Q9VWL4",-0.142148582016539,16.4244347231102,-2.45910413503337,0.0535628124409384,0.142513673328001,-4.5787557920103 +"Q9VZX9",-0.170344426994433,18.4066736595859,-2.45898820429133,0.0535707872761729,0.142513673328001,-4.57891230977791 +"Q8ING0",-0.226984756595137,14.6768932395088,-2.45721860606175,0.0536926753663098,0.142610481705422,-4.58130150808431 +"Q7KN75",0.173170698956721,19.4640481152568,2.4533838682958,0.053957828817034,0.143086897403518,-4.58647936397659 +"P20351",0.173370264107561,13.7787622457542,2.44684011610946,0.0544135412397972,0.144066328234892,-4.59531642305274 +"Q9VNA3",-0.157587359266824,18.6038573122672,-2.44527910455888,0.0545228590542867,0.144096427035644,-4.59742474987558 +"Q9VF86",0.139083195849238,17.41447104729,2.4442125241302,0.0545976869823303,0.144096427035644,-4.59886534403473 +"Q9W4Y1",-0.149588219609594,17.4332779176102,-2.43744245096245,0.0550752243460479,0.144910720338106,-4.60801045373035 +"Q9VX36",-0.139934750098597,22.230086813979,-2.43697153235474,0.0551086071423183,0.144910720338106,-4.60864664045842 +"P08985",-0.157546014554221,20.6864320038922,-2.43560960128812,0.055205274519857,0.144910720338106,-4.61048658455514 +"Q9VL16",-0.13724692981253,20.717909489385,-2.43449902691767,0.0552842353226902,0.144910720338106,-4.61198700012065 +"Q6NMY2",0.181415989387261,19.7335560519893,2.43370723393323,0.0553406048293608,0.144910720338106,-4.61305676067351 +"Q9VWI0",-0.173318168521185,21.0369336309229,-2.43145736300573,0.0555011139235036,0.14510322574358,-4.61609659557288 +"Q6IGM9",-0.807882737081007,15.0007967836045,-2.42993361463678,0.0556101030951537,0.145160644699087,-4.61815545695064 +"Q9VS11",0.174741232433078,14.8078917119233,2.42865125760926,0.0557020036139543,0.145173346918868,-4.61988821768542 +"Q9VEP8",0.155103426007694,17.3587952457861,2.42477196797581,0.0559810040577624,0.145466542594944,-4.62513038017088 +"Q94522",-0.140716236271224,23.4563419208339,-2.42466218967585,0.0559889210707159,0.145466542594944,-4.62527873327826 +"Q9VGA3",0.165791087950971,19.3841603257911,2.41239810547434,0.0568809626679162,0.147554347947254,-4.64185477006912 +"Q9VSJ8",-0.190039484679726,15.7689177827738,-2.40812184866944,0.0571955603151286,0.148140053735457,-4.64763564372923 +"Q24478",-0.148589497112056,17.5677238922484,-2.40528796347342,0.0574050680322887,0.148452175934663,-4.65146694614279 +"Q9VMH9",0.139733256713658,19.9869555060073,2.40202036966636,0.0576476568554792,0.148633139176653,-4.65588489878793 +"A0A0B4LFA6",0.135909668000963,19.4368635527038,2.40194504346512,0.0576532620187616,0.148633139176653,-4.65598674727666 +"Q7KSE4",0.168229946157574,13.8804570892475,2.39609841376179,0.0580900998614548,0.149396455673129,-4.66389245858484 +"Q0KHZ6",-0.143777761265703,23.1213926575207,-2.39557890036553,0.0581290863797424,0.149396455673129,-4.66459498143825 +"Q9VJC7",-0.165826423854174,18.5556075208944,-2.3943948986536,0.0582180432778978,0.149396455673129,-4.6661960998827 +"Q7KSQ0",0.139766489671263,20.8439626595491,2.38853901081133,0.0586601499171559,0.150299738958243,-4.67411552938731 +"Q9W0C1",-0.151144355332615,21.1756711936892,-2.38732003547892,0.0587526292020857,0.15030580599552,-4.67576416811617 +"Q9VMG0",-0.40154030059635,14.7574477311948,-2.37703076405846,0.0595394585745012,0.152085477645127,-4.68968164677632 +"Q9VGE4",-0.154109220485731,15.7579544383289,-2.37499516761161,0.0596964483632462,0.152253327018188,-4.69243533067318 +"Q9VXR9",0.136289052281471,15.297862466472,2.3736377689766,0.0598013789707814,0.152288091791242,-4.69427162379656 +"Q9VG69",-0.165390719128755,19.9714302474319,-2.36884572477772,0.0601733903213843,0.152873102859411,-4.7007546365974 +"Q7K0W4",0.156503685471002,21.9416467833683,2.36831931973932,0.0602144056226816,0.152873102859411,-4.70146682387091 +"Q9VNA5",0.264770329975931,17.2631825492379,2.3666943633889,0.0603412033137049,0.152928215622422,-4.70366530632 +"Q0KI15",-0.134903894355656,15.5676230615635,-2.36569302266566,0.0604194808724077,0.152928215622422,-4.70502009569439 +"Q9VHG4",0.295577675483234,18.4412750768866,2.36303566226463,0.0606277384348514,0.15298085475679,-4.70861553607841 +"Q7KUC2",-0.176443712567245,19.3799800247696,-2.36216702332138,0.060695979284614,0.15298085475679,-4.70979084498302 +"Q9V3T8",-0.214082232361925,15.5634335883071,-2.36097894861442,0.0607894475762699,0.15298085475679,-4.71139838883216 +"Q9W401",-0.131193696552273,24.6252981026903,-2.36075430055801,0.0608071383116019,0.15298085475679,-4.71170235556897 +"Q9W1W4",-0.166673756140639,17.2032320655102,-2.358639228056,0.0609739662263303,0.153033949910058,-4.71456426376455 +"Q9VMS1",-0.136599342081265,22.3870179146268,-2.3581612231591,0.0610117366248134,0.153033949910058,-4.71521106448655 +"O77134",-0.163585188299706,21.7286414078802,-2.35452583437175,0.0612998088326397,0.153525647346611,-4.72013033732677 +"A1ZBU5",-0.21429038916229,16.8171271667791,-2.35220131036915,0.0614847644985922,0.15375800177459,-4.7232759179216 +"Q9VZG0",0.136559570065661,21.455729108066,2.35022894761055,0.061642165001195,0.153920855122744,-4.72594502005786 +"O77263",-0.135624201924012,15.5333325313678,-2.34633539281111,0.0619541410791653,0.154468620807246,-4.73121416221964 +"Q9VJN0",-0.195210679021336,17.7715952666084,-2.33882605809805,0.0625605842292139,0.155747842528849,-4.74137717945047 +"Q8SZ63",-0.197215377584326,14.0092805115683,-2.33479967806026,0.0628883427781946,0.156330485475452,-4.746826740053 +"Q9VDQ3",-0.161061395878891,13.5264091772619,-2.32891494336726,0.0633706598977268,0.156989317862216,-4.75479187652871 +"Q9NHA8",0.156408984018805,16.3058414383423,2.32832698423114,0.063419064728928,0.156989317862216,-4.75558771580164 +"A0A0B4K692",0.130012345500349,15.8741305615631,2.32812464740447,0.0634357315582335,0.156989317862216,-4.75586159215619 +"M9PGG8",-0.13860288384884,18.4865587263121,-2.32505806224396,0.0636889012030861,0.157362819543252,-4.76001247209454 +"P36975",-0.132783303306205,22.2101711245025,-2.32136126055461,0.0639955257023558,0.157362819543252,-4.76501652753621 +"Q8IH23",0.139787474224104,18.2591468587668,2.32095400709674,0.0640294002227425,0.157362819543252,-4.76556780076313 +"P61851",-0.147935010823726,23.5350039810576,-2.31994470214239,0.0641134341603763,0.157362819543252,-4.76693403937009 +"Q9VFB2",0.201734037212741,16.3940649240232,2.31874664449458,0.0642133353343532,0.157362819543252,-4.76855579324648 +"Q9VIK6",-0.166531392944629,16.5964193060732,-2.31777837676105,0.0642941958655535,0.157362819543252,-4.76986650024202 +"Q9VVH5",-0.145775557800576,22.6039417110047,-2.31643527673313,0.0644065376174904,0.157362819543252,-4.7716846159925 +"Q9VTB3",-0.172781515711968,19.7048585039503,-2.31612514074203,0.0644325080793044,0.157362819543252,-4.77210444016004 +"O01666",0.128771010890542,22.6614610294272,2.31608661617738,0.064435734860936,0.157362819543252,-4.77215659005527 +"Q9V3Y4",-0.142182586981734,14.1987687676302,-2.31427544717549,0.0645876301980695,0.157503168377748,-4.77460834423135 +"Q7K519",0.186733036017431,15.5410869392485,2.30815351910962,0.0651038668180567,0.158262060725256,-4.78289567989975 +"Q7K1M4",0.150446942535892,17.1173876566612,2.30750377697904,0.0651589129388358,0.158262060725256,-4.78377525799983 +"Q9VNC1",0.180572428871375,15.491075844124,2.30721404806779,0.0651834746512297,0.158262060725256,-4.78416747466906 +"Q94533",-0.130450433692697,15.4769681541416,-2.30055047854449,0.0657510923860148,0.159408171656792,-4.79318830627548 +"Q9VG81",0.423311394133437,15.7183779445533,2.2988285383496,0.0658986205361845,0.159533960891663,-4.79551941878807 +"Q9W236",-0.167579353564566,16.507907214288,-2.29030716823091,0.0666338683117135,0.161080133831794,-4.80705551622437 +"Q9W1I8",-0.131851658526347,17.9297402003761,-2.28428182535088,0.0671589869292346,0.161939761883886,-4.81521258309674 +"P21914",-0.1477616379224,22.9475860192832,-2.2835774867808,0.0672206562899785,0.161939761883886,-4.81616611130538 +"Q9VZY0",-0.128956142186409,17.0595203347119,-2.28289204724035,0.0672807284085927,0.161939761883886,-4.817094053755 +"Q9W158",0.139425412858062,16.8990347147008,2.27956842747798,0.067572817261886,0.162408442640959,-4.82159353467627 +"Q9W2J4",-0.134292778196615,15.4319674317724,-2.27754396622209,0.0677513891028962,0.162603333846951,-4.82433421896613 +"Q9W0X2",-0.260635351258873,16.2664149518113,-2.27444191182036,0.068025980464468,0.163027780768294,-4.82853371182204 +"Q9VSD6",-0.128872572148513,16.6618671497571,-2.27332511727986,0.0681251258797933,0.163031147729548,-4.83004559629132 +"A0A0B4KGY6",0.135990636673021,21.6241604463089,2.26641886050792,0.0687416412234428,0.164270856104158,-4.83939497444731 +"Q9VPX0",0.24011284277401,14.7817557347265,2.25981761153187,0.0693364370312391,0.165455188795575,-4.84833120306036 +"Q9VVZ4",-0.214721727125882,15.8427935312263,-2.24923208582136,0.0703015929242978,0.167326862834227,-4.86266031916402 +"Q9VXQ5",0.129233116303929,20.3102620704509,2.24856760772403,0.0703626486920216,0.167326862834227,-4.86355975623562 +"Q9VW26",0.137755556694714,17.5575423849471,2.24792511771636,0.0704217372359875,0.167326862834227,-4.86442942585759 +"Q9VCJ8",0.145697842844768,17.8750786693954,2.24097833841159,0.0710639689408906,0.168612660303564,-4.87383223798636 +"Q4V5H1",0.203062754389807,14.9558391033377,2.23808329043635,0.0713334360847852,0.168975269436912,-4.87775065579288 +"P25007",-0.123522086518172,23.8252817555212,-2.23642331255218,0.0714884298574296,0.168975269436912,-4.87999736859551 +"O17444",0.271944043540866,15.0441869705849,2.23607809627609,0.071520707567422,0.168975269436912,-4.88046460007322 +"Q9VYS2",-0.30759241063355,15.0472152626183,-2.23233928351576,0.0718712711608073,0.169206562110704,-4.88552477080663 +"Q7KLE5",-0.133635832350617,21.4476711786575,-2.23144418352678,0.0719554668280616,0.169206562110704,-4.88673618320544 +"O97102",-0.13682594139771,21.0012607749031,-2.23142849836138,0.0719569431449405,0.169206562110704,-4.88675741112044 +"Q7K738",-0.146165603139796,19.8053168687738,-2.22819397600974,0.072262064611113,0.169206562110704,-4.89113485156216 +"P41375",-0.166752956695511,16.8287596536025,-2.22797686378265,0.072282594117001,0.169206562110704,-4.89142867439015 +"Q95RQ8",-0.182066397929106,14.2262752550975,-2.22787784264344,0.0722919593081648,0.169206562110704,-4.89156268165525 +"Q9W022",-0.159051149269789,21.194448710346,-2.22748945644335,0.0723287043075131,0.169206562110704,-4.89208829082836 +"Q9VMF0",-0.188946100476619,13.7605658104945,-2.22369625703401,0.0726886116881009,0.169810370162118,-4.89722155439333 +"Q9VBT1",0.133995137700222,16.309386283171,2.22035053766293,0.0730076248783769,0.170317088527458,-4.90174904284094 +"Q9VNI4",-0.209413480044169,16.5088321244197,-2.21676100379529,0.0733515234444724,0.170880364672318,-4.90660623474256 +"Q9VZZ5",-0.153689348636103,18.5126193848345,-2.20826121213759,0.0741726612118937,0.172416703804111,-4.91810673161926 +"Q8MZI3",0.364404206994891,17.6263912753339,2.20779743913706,0.0742177418053668,0.172416703804111,-4.91873418749067 +"Q9VF24",0.183448841354419,16.0975620484048,2.20332904781616,0.074653564589441,0.173187963470358,-4.92477939263157 +"P02283",-0.132828981864552,21.5726268858802,-2.19978312496242,0.0750013269167571,0.173753074023821,-4.92957627412759 +"Q9VY78",-0.199436910924533,18.8158081910959,-2.19762755227874,0.0752135629804134,0.174003083288945,-4.9324921565969 +"A1ZB79",-0.123117369083335,20.7956985345446,-2.1954178678033,0.0754317811841507,0.174266220242609,-4.93548111542849 +"Q9VK59",0.130454325095666,18.7114072809186,2.19380347056311,0.0755916314965008,0.174393971419313,-4.937664771437 +"P11046",0.146859792472661,20.994886432904,2.19135004413521,0.0758352394358099,0.174714336158744,-4.94098317794322 +"Q9VI64",-0.147184270323223,20.808639202853,-2.18840420675358,0.0761288286545997,0.175148808546031,-4.94496738389992 +"Q9VFV9",-0.134978981998003,21.349925623163,-2.17905900693322,0.077068105548879,0.17706556481478,-4.95760499793975 +"P45889",0.133348814546878,19.1310077776987,2.17466210665734,0.077514226982001,0.177845571672597,-4.96355005708413 +"Q9VKK1",-0.179795690760017,14.4585279039385,-2.17325038938581,0.0776580366061368,0.177930776179995,-4.96545871261874 +"Q9W461",-0.181942337873489,16.3140569722807,-2.17126876775356,0.0778603730576177,0.178138091507972,-4.96813777456019 +"O97418",-0.147755890637637,20.9667579149056,-2.17027438025766,0.0779621143889804,0.178138091507972,-4.96948209202605 +"Q9Y171",0.526032282153052,14.9532439003279,2.15962052111294,0.0790609419783556,0.180401711655126,-4.98388295522621 +"Q9W1H5",0.129814067372131,17.2382262347738,2.15790851575468,0.0792390217550317,0.180561049572941,-4.9861966993948 +"O96824",-0.165206840890729,16.881153235475,-2.15551946910218,0.0794882274621521,0.180881805466398,-4.98942526910132 +"Q9VJQ5",0.20398647138223,14.2747399748411,2.15131317949397,0.0799289860933405,0.18163698747097,-4.99510913850485 +"Q9VZ64",-0.186869490279435,19.4565165560689,-2.14751871912203,0.0803287821449132,0.182297154581926,-5.00023591351203 +"P20240",0.251735697370844,17.2750889543039,2.14443991981025,0.0806547088730461,0.182788117391632,-5.00439531439895 +"Q9VNX9",-0.133065690086589,13.6552128584591,-2.14045231342934,0.0810788971982568,0.183500136399854,-5.00978190873938 +"Q9VDI3",-0.134452959062129,15.0339762798921,-2.13650509496628,0.0815010832442819,0.184205700340735,-5.01511327367129 +"Q9VQ62",-0.171042914499242,19.6982757324859,-2.13050317476616,0.0821474367026596,0.185415323978398,-5.02321852395423 +"Q9VV72",0.132271964507289,19.3880792609992,2.12888575453402,0.0823225314160459,0.18555943567833,-5.02540247627046 +"Q9VFU7",-0.134459902900817,14.7466210550009,-2.12349089234919,0.0829093738557878,0.186353094431165,-5.03268610106757 +"Q9V3L6",0.124897224061549,15.7034663258437,2.12299672372228,0.0829633460973803,0.186353094431165,-5.03335321042961 +"Q9VZU4",-0.136398968385063,21.4367785807842,-2.1225716458821,0.0830098016560884,0.186353094431165,-5.03392704029869 +"M9PHA0",-0.150789018036384,17.4793195410016,-2.12097655404345,0.0831843665834821,0.186493983146839,-5.0360802409829 +"Q9VKZ8",-0.130628646223109,18.6154287147345,-2.11484140494913,0.0838593621186415,0.187754920824019,-5.0443608465823 +"P91941",-0.120677808075964,23.1375949128834,-2.11023577371452,0.0843698249136763,0.188249373519806,-5.05057579982819 +"Q9VY42",0.136052825457071,15.1620087285252,2.10991355374929,0.0844056588434847,0.188249373519806,-5.05101056993696 +"Q9VRG8",0.139309476358457,16.2823354545534,2.10920498160695,0.084484514541155,0.188249373519806,-5.05196662416501 +"Q9VZD9",0.282871819606108,14.4006766374407,2.10878182752842,0.0845316431452844,0.188249373519806,-5.05253756001709 +"M9PF16",-0.123600086922643,21.3389835143907,-2.10455387904086,0.0850040339307457,0.18887209759049,-5.05824154391649 +"Q9VQ93",-0.125710332138782,16.7806548177716,-2.10425316783262,0.0850377369846868,0.18887209759049,-5.05864720065231 +"P16620",0.120036678335449,17.1701730899152,2.10300520823282,0.0851777541648421,0.188931507908187,-5.06033063399178 +"Q7JZV0",-0.122921878992452,15.2117513327276,-2.09796246113507,0.0857459808673502,0.189939304232059,-5.06713215861244 +"Q7KS11",-0.183645438433008,15.5949309440248,-2.09607955638335,0.0859591594917722,0.190158989432727,-5.06967140249098 +"B7Z0Q1",0.15741634000246,17.5739656496639,2.09451233233592,0.0861370174205515,0.190300059678781,-5.07178477094398 +"Q9VIB5",-0.270794608187998,14.682490417017,-2.08261846731335,0.087499325464517,0.192866527037309,-5.08781865668065 +"A0A0B4KHJ9",-0.13202831283623,24.7605308057653,-2.08213547501634,0.0875551171743725,0.192866527037309,-5.08846958741769 +"Q9VYS5",0.142162974084005,14.3915961512636,2.0811992725902,0.0876633655391547,0.192866527037309,-5.08973126995015 +"Q9VU92",0.149827188447272,17.5549410305748,2.08035410361753,0.0877612074468331,0.192866527037309,-5.09087022324621 +"Q9V3W0",-0.115620329518695,20.8771900463586,-2.07057275156471,0.0889018332934186,0.194881233321655,-5.10404829443695 +"Q0KI81",-0.148054529331686,15.5817058586889,-2.07048920471849,0.0889116418212106,0.194881233321655,-5.10416082732463 +"P02299",0.119955151717967,22.044612523002,2.06545190578663,0.0895051056904556,0.195837718585218,-5.11094492259679 +"Q9W2N5",0.753089424612174,12.8723279251334,2.06479465364144,0.0895828412952767,0.195837718585218,-5.1118299653079 +"Q9W314",-0.142994919424586,16.2946238780301,-2.06301852717911,0.0897932603054768,0.196040782970596,-5.11422151421184 +"Q9V3Z2",0.115684515824595,16.2061819773681,2.0610832431289,0.0900231177106242,0.196285699792577,-5.11682712089279 +"Q7KK90",-0.113864507013361,21.1094052953789,-2.05869076636078,0.0903081192593031,0.196650056037229,-5.12004791734836 +"Q9W2K2",-0.165735448898133,15.5189576497471,-2.05756525125241,0.0904425181369056,0.19668594557022,-5.12156296751374 +"Q8MRM0",-0.120371827100232,18.6169317650121,-2.04737740453801,0.0916685161068751,0.199092558419619,-5.13527263465641 +"Q95SH0",-0.592468371656492,13.442450182286,-2.04448109768549,0.0920201842174617,0.199596446391061,-5.13916876765265 +"Q95RS6",0.138545461104606,17.1317372302477,2.03662871213925,0.0929806489231143,0.201417821303577,-5.14972864474615 +"Q9VKM3",-0.146284097274631,21.8276190574317,-2.03390187921522,0.0933165991060083,0.201629613622521,-5.15339456578407 +"P08646",0.184201341662643,18.8645141442347,2.03387286135663,0.0933201808852436,0.201629613622521,-5.15343357388449 +"Q9VLT3",0.139796973183984,19.356489536444,2.03204449512322,0.0935461492184561,0.201729109531431,-5.15589127341218 +"Q8SX68",-0.17455215993866,17.5177944879799,-2.03154393548251,0.093608111976815,0.201729109531431,-5.15656408182409 +"Q9VT75",0.230363361438434,15.6085023376443,2.02945585592007,0.0938670463235281,0.202026107442122,-5.15937047839297 +"Q9VBS7",0.123227804090366,19.9216633128401,2.02376136015079,0.0945769608408098,0.203063680584772,-5.16702212710449 +"Q9VVS6",-0.145540838562775,16.5320438621743,-2.02363629919566,0.0945926137975828,0.203063680584772,-5.16719014057791 +"Q7K1W5",-0.115130450541677,19.7189942681707,-2.01505325440977,0.0956732979782083,0.205119615716776,-5.17871791464592 +"Q9VXZ0",-0.141163874180108,19.740004790756,-2.01155680727258,0.0961171728465172,0.205806732102684,-5.18341214040967 +"Q9V3V0",0.172434875413058,14.2281267155801,2.00870110891194,0.0964812779647285,0.206152016327458,-5.18724532349231 +"O02649",-0.117742911147005,23.2927844386043,-2.00835413408268,0.0965256143595592,0.206152016327458,-5.18771101626764 +"Q9W1X8",0.124985784454239,16.1375017612552,2.00549945217474,0.0968911823672778,0.206668148578797,-5.19154202525972 +"Q09101",0.116390445483237,14.4791299150175,2.0011809774337,0.0974469129145536,0.207588059695371,-5.1973360652043 +"Q9VZ19",0.155923362010022,20.4768630938534,1.99852630917723,0.0977901602122371,0.208053555145423,-5.20089695481058 +"Q8IQW5",-0.119077474015182,22.014748001722,-1.99727454949344,0.0979524433262204,0.208133344545396,-5.20257580109608 +"Q9VHN6",0.182376943422252,15.0124791851257,1.99380139627027,0.0984041684416543,0.208394122703671,-5.20723319218074 +"Q9VEJ0",-0.120242275505291,22.2225436385344,-1.99373363152166,0.098413003327697,0.208394122703671,-5.20732405137393 +"Q9VWT3",-0.110036210215753,14.4524339259868,-1.99309802772017,0.0984959104077848,0.208394122703671,-5.20817624993947 +"Q8MR62",-0.163696613898374,17.7129525180572,-1.99249283259131,0.0985749177537149,0.208394122703671,-5.20898764203235 +"Q8I099",0.14131149046964,16.8505032127431,1.98713233229397,0.0992775727514963,0.209352733998701,-5.21617300428054 +"Q8SX57",-0.128346403013861,18.0628638915904,-1.98650676249761,0.0993599071225243,0.209352733998701,-5.21701135543557 +"Q9V9U7",0.112184448227293,17.7806753744707,1.98616517107172,0.0994048952799589,0.209352733998701,-5.2174691197971 +"Q9W436",0.136253818506866,14.3695652068237,1.98514734550999,0.0995390686715458,0.209370954027917,-5.21883303377691 +"Q9VJZ6",-0.171429476437353,19.8463972978658,-1.98099498405079,0.100088377446511,0.210261226172268,-5.22439626138798 +"Q9W329",-0.145721984884693,16.4478441992202,-1.97800612249268,0.100485694027243,0.210830361808103,-5.22839960670042 +"Q8IRH5",-0.13867395371936,14.5844588161891,-1.97411336082805,0.101005595917139,0.211381882961217,-5.23361231226942 +"P08182",-0.111400748889967,19.6668271570694,-1.97411132176363,0.101005868968366,0.211381882961217,-5.23361504233097 +"Q9W4W8",0.13838757055245,17.4656493304332,1.97319431188846,0.101128742567776,0.211381882961217,-5.23484276516973 +"Q9V3F8",-0.120462337290064,18.455971676338,-1.94985008559296,0.104308841219741,0.217756129104541,-5.26606706834622 +"Q9W4Z2",0.177219681760816,13.8298318868045,1.9432016187287,0.105233129553094,0.21910562130529,-5.27494892723024 +"Q9W3T9",-0.110159502431976,18.5441933025033,-1.9430987152036,0.105247501089947,0.21910562130529,-5.27508635947865 +"Q7KMM4",-0.195693711621155,14.5150505844408,-1.94236989686682,0.105349345495709,0.21910562130529,-5.27605969434751 +"Q7K2N0",-0.127140698857366,15.5272687226591,-1.93930459514682,0.10577879143394,0.21972481209441,-5.28015273071116 +"P41094",0.106805636862262,21.2462841385295,1.93464533720437,0.106434976212946,0.220754942196252,-5.28637206498997 +"Q9W4C2",-0.176346806049722,16.1179151014484,-1.93380803735183,0.106553336821957,0.220754942196252,-5.28748945237382 +"P54195",0.265662784395207,18.7478845641606,1.93297129638176,0.106671752643992,0.220754942196252,-5.28860601156445 +"A1Z9I0",-0.139893479474427,19.5295304724814,-1.92846887669976,0.107311245746135,0.221785709653557,-5.29461268176215 +"Q9VNF3",-0.126375538202204,19.1835360385781,-1.92759538104371,0.107435763429301,0.221785709653557,-5.29577773076141 +"A1ZBJ2",0.131609077215405,19.3504876401698,1.92177721681834,0.108268916199721,0.223229359976682,-5.30353551706271 +"Q9VPZ5",-0.123886560782477,18.4317813027797,-1.91639527898723,0.109045464756071,0.224552882979169,-5.31070796081281 +"Q9VN50",0.162792932163711,17.8327357035315,1.91450461378603,0.109319609578929,0.22483983819686,-5.31322677357981 +"Q9GYU8",-0.319463318128385,12.504361400964,-1.9119208726482,0.109695385061143,0.225155288430175,-5.31666820142457 +"Q7KMP8",0.120929060322315,19.1571483037135,1.91159443370971,0.109742955331974,0.225155288430175,-5.31710294355849 +"Q7KTJ7",-0.106207139048728,22.0577575624849,-1.90975746763868,0.110011038776418,0.225428025404258,-5.31954911082832 +"Q9W3M8",0.120380188358549,18.4885422035343,1.90848525478702,0.110197093713273,0.225532211427901,-5.32124298138266 +"Q9VLM8",0.107337047018831,17.0701012266347,1.90469928776015,0.110752669121448,0.226123396168026,-5.32628252727053 +"Q9VRD9",0.123460795788437,15.7405194508441,1.90466928588939,0.110757083135058,0.226123396168026,-5.32632245573344 +"A1ZBD8",0.189117339566177,14.0250382774329,1.90160730741187,0.111208517647151,0.226767490752381,-5.33039692282824 +"Q7KMQ0",0.104783968814033,20.7987192330813,1.89825417905964,0.11170502331376,0.227215812302039,-5.33485740528684 +"Q8IPP8",-0.106078227280861,18.9320272182816,-1.89721616336821,0.111859180956755,0.227215812302039,-5.33623791991814 +"Q9VYY3",0.117427508057304,17.5457949252623,1.89669026854689,0.111937365059537,0.227215812302039,-5.33693728207765 +"Q9VA34",0.135591077473631,14.4774684939274,1.89644895092927,0.11197326001935,0.227215812302039,-5.33725818644092 +"Q8T9B6",-0.10749333450525,19.4465368642846,-1.88702026610561,0.113384926001383,0.229459889951942,-5.34979033763262 +"Q9VQM2",-0.140556551078056,20.1376317515895,-1.88642786542057,0.113474221325574,0.229459889951942,-5.35057732506517 +"Q9VRU1",0.117006393294915,17.2466357370444,1.88631095608764,0.113491852044576,0.229459889951942,-5.35073263009638 +"Q9VCU6",0.108197438623595,15.368893032633,1.88281983555583,0.114019619193379,0.230247850865081,-5.35536944688107 +"Q7K0D8",0.104196088910534,17.3065114130174,1.8770262218334,0.114900962193889,0.231747043457566,-5.36306063521244 +"Q7JZW0",0.162624783702107,19.7635589697111,1.87207178782237,0.115660121572308,0.232928055877131,-5.36963403116369 +"Q9Y114",-0.106496917333477,18.6233070874121,-1.87138470599922,0.115765802351404,0.232928055877131,-5.37054535426018 +"Q9VRQ9",0.125774711334781,14.7758599122101,1.86913780559635,0.116112083681611,0.233142048789555,-5.37352509597356 +"Q9VYV4",-0.121865599794305,15.5294245393243,-1.86819711118274,0.116257370171179,0.233142048789555,-5.3747723874832 +"Q9VF27",-0.106053038700637,22.2759390982581,-1.86797644658862,0.116291477573687,0.233142048789555,-5.37506495391172 +"Q9VGT8",0.145494765200741,15.2967863410372,1.86397058628469,0.116912413905728,0.23410552988566,-5.38037485926395 +"Q9VKF0",-0.166565631959594,15.7726578351396,-1.86254070265172,0.117134867375411,0.234269734750821,-5.38226964978175 +"Q9W3N7",-0.318903529343295,17.2660171468569,-1.85924335848328,0.1176494834156,0.235017171661342,-5.38663792818297 +"Q9VV75",-0.10482119704502,24.0169636745384,-1.85592916182138,0.118169033178487,0.23577266428435,-5.39102690085153 +"Q95RN0",-0.107942978168408,16.8790504124635,-1.85114316240397,0.118923404534572,0.236994311545599,-5.39736205484679 +"Q24185",-0.139385834873387,18.6971318566902,-1.84849390863704,0.119343070680276,0.237445971385253,-5.40086733272347 +"Q9VFJ2",0.132484092885374,13.80761586872,1.84791638420709,0.119434754191983,0.237445971385253,-5.40163132336302 +"Q7K0P0",-0.202861851548015,15.2943023245642,-1.84410728518476,0.120041242028627,0.238367609171131,-5.40666898233648 +"Q9VBC9",-0.246900794191575,15.4641572697011,-1.84263332019996,0.120276761049551,0.238503511920711,-5.40861774515394 +"Q9VV46",0.112911995135736,23.9865872081765,1.8418903266961,0.120395657696186,0.238503511920711,-5.4095999452676 +"Q8IH18",0.130676921048034,15.607753113979,1.83574974805118,0.121382845201951,0.240173885880017,-5.41771415597702 +"Q9W445",-0.128803262346054,16.62027533743,-1.83340139811965,0.121762529999285,0.240639691989107,-5.42081570244747 +"Q9VIM0",0.126721917246886,18.0726501885382,1.83184106479829,0.12201546853339,0.240854202974787,-5.42287599964994 +"Q9VKC8",0.102859958986176,17.688762955893,1.83016682319579,0.122287460892246,0.241105773957762,-5.42508626761104 +"Q9VQB4",-0.108892551304919,21.6947594025914,-1.8286075765459,0.122541320626267,0.24132104227227,-5.42714431588846 +"Q9VVK5",-0.135009080147253,16.0230621632827,-1.82430659559757,0.123244313459118,0.242327921128325,-5.4328191236138 +"Q9VKV9",0.122598467347299,15.54294796724,1.82216495565797,0.123595875455651,0.242327921128325,-5.43564371758833 +"Q9VJD4",-0.104529454486986,20.7640085286638,-1.82193935296109,0.123632968069653,0.242327921128325,-5.4359412193161 +"Q9XZ19",-0.145496037300568,16.0018405181503,-1.82193472227316,0.123633729544487,0.242327921128325,-5.43594732570478 +"Q7K180",-0.109502201295332,16.3558166882955,-1.82016864873597,0.123924488654355,0.24261273130923,-5.43827594970566 +"Q9U9Q2",-0.116539200430681,15.5980025195564,-1.81868574348728,0.124169159171795,0.242806749705222,-5.44023080675844 +"Q9VGF7",-0.124122685616371,19.9612271504571,-1.80772619868505,0.125992535882549,0.245917632777643,-5.45466686924959 +"Q9VTV9",0.147124061773496,17.2932147624604,1.80719975052926,0.12608079668638,0.245917632777643,-5.45535979873332 +"Q9W136",-0.101410548269005,18.1093603334076,-1.8064754215589,0.126202334327136,0.245917632777643,-5.45631310782737 +"P53997",-0.524911805212621,17.4151771469287,-1.80188519794773,0.126975281862556,0.247093686846719,-5.46235231384203 +"Q7KY04",0.109303927988238,13.939265108384,1.80113446868929,0.127102148270075,0.247093686846719,-5.46333967454063 +"Q9VR31",-0.104115483017669,17.3100279884718,-1.79970512222028,0.127344046360749,0.247275750092816,-5.4652192811236 +"Q9XYZ5",0.108055286887236,15.9701382135673,1.79822947896444,0.127594263904842,0.247473525806135,-5.46715939187079 +"Q9VAC4",0.104800360972177,19.325183915242,1.79360737489208,0.128381205218835,0.24871062753196,-5.47323383803403 +"Q0E8E8",-0.102151541787237,21.4541644543354,-1.78857351308375,0.129243783469653,0.250091219057287,-5.47984508228839 +"Q9VZD8",-0.109233338298651,13.8457417623954,-1.78661447020429,0.129581042132921,0.250267458127556,-5.48241676396802 +"Q9VVT6",-0.102118306533669,20.5213273771569,-1.78630185179812,0.129634942339453,0.250267458127556,-5.48282708103822 +"Q7JYH3",-0.127478844143436,19.1396808424397,-1.78233124696351,0.130321490709406,0.251302019078947,-5.48803701646928 +"Q9W3K6",-0.156565368229305,16.2815660469248,-1.78076083145817,0.130594030442209,0.25131839917004,-5.49009680195559 +"Q9W3B3",-0.205000802496802,15.7267925247756,-1.78054618267858,0.130631326187305,0.25131839917004,-5.49037830387329 +"Q9VK99",0.136192492310933,19.876937526219,1.77800194593624,0.131074205547662,0.251823551887361,-5.49371430294596 +"Q7K4Z4",0.200711648407186,14.982256496867,1.77730467029451,0.131195843279446,0.251823551887361,-5.49462835990823 +"Q9VHG6",-0.13023495483713,15.6235610400529,-1.77336927596059,0.131884479579686,0.252854381538984,-5.49978555689336 +"Q9VP57",0.11787215543383,19.3963421695575,1.77077843894273,0.13233980802638,0.253436050273252,-5.50317917028758 +"A1ZBA5",0.22702952810462,15.53453902383,1.76845055525084,0.132750262246217,0.253717097117668,-5.50622727020464 +"Q9GU68",0.0996471226719216,22.2009187780426,1.76822113322696,0.132790782843959,0.253717097117668,-5.50652761659074 +"P35220",-0.102781938605712,19.3500355908777,-1.76494517012706,0.133370732964772,0.25398358172313,-5.51081522620827 +"Q9VQI7",-0.109071428908109,19.1896932416881,-1.76369533030258,0.133592659960506,0.25398358172313,-5.51245048533424 +"Q9VK58",-0.308723044617018,13.5006112337877,-1.7632790400546,0.133666660018342,0.25398358172313,-5.51299508229463 +"Q7K549",0.168108416897944,14.7302352306457,1.76274537507301,0.133761584498552,0.25398358172313,-5.51369318169389 +"Q27377",0.119732924645881,20.1240841032964,1.76273841404601,0.13376282311997,0.25398358172313,-5.51370228720967 +"Q9VNR6",-0.252922328570161,14.6232166750152,-1.76228309488936,0.133843865908052,0.25398358172313,-5.51429785654435 +"Q9W227",-0.0997035434049067,22.0546090557346,-1.76113772392085,0.134047948403276,0.254081793109847,-5.51579585429952 +"Q9W2V2",-0.205645248565618,14.2518969573138,-1.75972384667182,0.134300301374206,0.254271172181812,-5.51764467279644 +"Q94529",-0.12678494803929,19.6626031908473,-1.75738191800179,0.134719337973274,0.254775346643334,-5.52070617629891 +"Q9VDV3",-0.110324205673422,17.5835760442334,-1.75527837552385,0.135096831240341,0.254941115518039,-5.52345513278256 +"Q9VFN9",-0.114324663784684,15.9262303764519,-1.75519020183344,0.135112677528745,0.254941115518039,-5.5235703411606 +"Q9V7D2",-0.126600501747046,21.408329013943,-1.75352048660885,0.135413103057836,0.255219272203921,-5.52575171392514 +"Q8IMT6",0.124844208383413,16.106808075683,1.74677923459247,0.136632809654752,0.257084709737226,-5.53455309015797 +"Q9VKR0",0.702749125590811,13.5790908670775,1.74634850103009,0.136711113631247,0.257084709737226,-5.53511514708294 +"P14484",0.134339980170086,19.1422361490168,1.74452779583354,0.137042597002778,0.25741785112684,-5.53749054187049 +"Q9W3J1",-0.535591004385743,15.7793713251518,-1.74339551648559,0.137249146419665,0.257515833777278,-5.53896743999462 +"Q9VG92",-0.0983422932700861,16.7361623428409,-1.73731139794129,0.138364317018648,0.25931649526641,-5.5468988481137 +"Q7JXF7",-0.11586883808819,17.8635535397,-1.73619582705905,0.138569766987461,0.259410068838479,-5.54835231209404 +"M9PDU4",-0.107413950649807,22.5718065002281,-1.73063850859157,0.139597757241782,0.260841010746078,-5.55558904222261 +"Q9VFM9",-0.10760540581083,17.0271149712041,-1.73037388251999,0.139646896040916,0.260841010746078,-5.55593347766597 +"Q9VE85",0.20200267262004,15.67407861332,1.7279443145736,0.140098848988982,0.26139248334857,-5.55909510142041 +"Q9VN25",0.182145855315103,15.1461507458431,1.72699562542429,0.140275719678513,0.261430056339397,-5.56032930485048 +"Q8IQ70",0.126804264783509,17.8971475142685,1.72510617307383,0.140628643434714,0.261795287108374,-5.56278683536227 +"Q9W3C3",-0.11695291271702,16.4842486648318,-1.72286243893658,0.141048885887196,0.262284884793582,-5.56570418411417 +"Q9VWD0",-0.128490041773173,18.271898865369,-1.71949374401508,0.141682167442285,0.263169103890569,-5.5700822179136 +"Q9VPQ2",0.114030825971961,16.4577026570439,1.71851428842801,0.141866823549139,0.263218978509414,-5.5713546855261 +"Q24297",0.130502953571813,16.8864450270395,1.71125575267868,0.143242717842475,0.265223052301909,-5.58077821724843 +"Q9U1L2",-0.175989160151836,16.8521968362484,-1.71113892874837,0.143264970098334,0.265223052301909,-5.58092979254039 +"Q9VD14",0.104606512096041,17.5511829359605,1.70996847968755,0.143488102430677,0.265248041452688,-5.58244824781037 +"Q9VDT5",-0.122164619477392,19.0567594171685,-1.70940046480158,0.143596511649747,0.265248041452688,-5.58318504078466 +"Q7JWD6",-0.103791702937713,20.4980432748969,-1.7067809562128,0.144097510496331,0.265434727456655,-5.58658198429387 +"Q9VHM3",-0.104935976312499,14.6649915338166,-1.70611261334749,0.144225612124027,0.265434727456655,-5.58744844021186 +"Q9VEY5",-0.0981620812331734,20.828107451206,-1.70517163366245,0.144406161053231,0.265434727456655,-5.58866818172615 +"Q9V9S8",0.142032960663673,19.9159518694317,1.70499559951832,0.144439962114363,0.265434727456655,-5.58889634358343 +"Q9W1X4",0.212703607996836,15.0480180555955,1.7047181881298,0.144493244922448,0.265434727456655,-5.58925588885377 +"Q8IMT3",0.104897642276145,14.7532337417679,1.7025911190277,0.144902440185571,0.265893586611147,-5.59201215676547 +"Q9W1M9",0.153459017167519,14.5480807309474,1.70173278555223,0.145067886293558,0.265904653118302,-5.59312410482346 +"Q9V3Z9",0.102670592427234,21.609933430375,1.69642575160399,0.146094982463894,0.267493337815341,-5.59999556059982 +"Q9W289",-0.105798959544714,17.5181130374575,-1.69483844486264,0.146403574082274,0.267764431545212,-5.602049545016 +"Q9VZJ2",-0.0986620372274576,17.4389132656299,-1.69343000889941,0.146677929592418,0.267789900850332,-5.60387159124551 +"Q9VW59",-0.119627893491529,19.6995743822104,-1.69276254702241,0.146808124555875,0.267789900850332,-5.60473490671281 +"Q9VVH3",-0.10254285740001,19.9891933914191,-1.69229631004655,0.146899136257826,0.267789900850332,-5.60533789157838 +"Q9VFT4",0.108513249206005,15.6933955685626,1.68786235956965,0.147767450212717,0.268642138238121,-5.61106984033843 +"Q9VZW1",-0.299520283661629,14.8770024624102,-1.68716192241959,0.147905080970026,0.268642138238121,-5.61197491099725 +"Q8MLW4",-0.0960297073039555,18.6228668555755,-1.68715706967533,0.147906034939204,0.268642138238121,-5.61198118108168 +"Q9VAY0",-0.10037961819484,14.1111448039488,-1.68662399089039,0.148010866331435,0.268642138238121,-5.61266992300239 +"Q9V3P3",0.115194990776953,19.4359094371196,1.68366678546209,0.148593739769336,0.269114366079917,-5.61648946118475 +"Q9VGV9",-0.151084609812317,16.1034320143044,-1.68366673164675,0.148593750397037,0.269114366079917,-5.61648953067439 +"Q9VNF5",0.102551015388519,15.9687631610621,1.68285033046587,0.148755063264798,0.269114366079917,-5.61754364007628 +"Q9VN21",0.0940608406413403,22.0207716655262,1.67795625436423,0.149725706084471,0.270405408027888,-5.62385943990872 +"Q7JYZ9",-0.112502506339315,17.9937934185847,-1.67761849284707,0.149792923871564,0.270405408027888,-5.62429511343704 +"Q9NBD7",-0.208033316659046,13.248566946605,-1.67464534218114,0.150385891769202,0.271182343211923,-5.62812897403414 +"Q8MLS1",-0.110437908758993,18.5553249901732,-1.67251152333965,0.150812885030364,0.271658630918626,-5.63087922963235 +"P48611",0.188182383980227,20.1361936838224,1.67003697757012,0.151309553086282,0.272077008055385,-5.63406728545669 +"O18333",-0.110582701929186,17.3459853619567,-1.66972949181853,0.151371380980454,0.272077008055385,-5.63446332928449 +"Q9VME3",0.112638606724255,15.7155433885554,1.66700823722124,0.151919642070784,0.272768528497382,-5.63796733484224 +"Q07093",-0.149057431298106,14.6183693601258,-1.66608677505401,0.152105734157622,0.272808994166574,-5.63915344533049 +"Q9V434",-0.118835187013952,15.161584660443,-1.66277481492735,0.152776444537412,0.273717625658865,-5.64341491927511 +"Q9W1X5",0.10828699059131,19.3476780161636,1.66048308048422,0.153242245900971,0.274096828187558,-5.64636211501479 +"Q9VRY5",-0.123139898550754,16.9075586527055,-1.66011715086786,0.15331675101858,0.274096828187558,-5.64683258576924 +"Q95U34",0.123367098395775,19.4192056831664,1.65477765777106,0.154407948842113,0.275752097075637,-5.65369375812761 +"Q9VJ80",0.190372434243713,16.3853252625917,1.65276620482805,0.154820987872332,0.276194019006471,-5.65627662034129 +"Q95WY3",0.120918848063397,17.3946827772655,1.65165155016097,0.15505034111858,0.276307659172854,-5.65770749079291 +"Q9VUW2",-0.375264568481104,14.3035052826221,-1.64644180911711,0.156126726360465,0.277866857951579,-5.66439106246694 +"Q9VGK3",-0.0966167573531109,17.1370742922432,-1.64576568467274,0.156266955747366,0.277866857951579,-5.6652579620045 +"Q9VR94",0.194181903954224,16.4739221102677,1.64429363683457,0.156572687479009,0.277866857951579,-5.66714496321923 +"Q9VA76",0.130180523176852,15.1436457193207,1.6442025022613,0.156591634577029,0.277866857951579,-5.66726176956703 +"Q4QPU3",0.320661548084782,14.2371792682248,1.64177665755884,0.157096798840571,0.278467014310385,-5.67037017822417 +"Q8T0N5",0.117408479288052,18.6649443906587,1.64077168104413,0.157306544418482,0.278542798397058,-5.67165748834074 +"Q8SXG7",0.197869962341359,13.9931296114243,1.63697042121743,0.15810237287108,0.279655098567297,-5.67652432277338 +"Q9W074",-0.205195194284682,13.6081396919336,-1.63158141135398,0.159237356805331,0.281357436577029,-5.68341761450564 +"A1Z6X6",-0.104760934202432,18.659281794593,-1.63027072292948,0.159514602577169,0.281357436577029,-5.68509302871279 +"Q9TVP3",-0.0926959111844567,22.8392879390214,-1.6300052038947,0.159570824341648,0.281357436577029,-5.68543237932312 +"Q9VMU2",-0.0998103323919519,16.3489399966778,-1.62842892315916,0.159904988943677,0.281648914000057,-5.68744658975131 +"Q8MLS2",0.0981009245073512,17.2988173036093,1.62536414100212,0.160556664615371,0.282498435209324,-5.6913609810776 +"O18335",-0.0894400346966435,21.5988929358432,-1.62005993974713,0.161690640217796,0.284193875535599,-5.69812974222613 +"Q7KQM6",0.119057519269068,15.1824219127377,1.61210037073075,0.163406953009296,0.286754331462759,-5.70827297459672 +"Q02748",-0.106882384891641,19.6130105962308,-1.61171163349471,0.16349122854981,0.286754331462759,-5.70876792292393 +"Q9VJG0",-0.598157940299062,13.2053968979704,-1.60786602325861,0.164327210978158,0.287917844444923,-5.71366202396291 +"Q9VN01",0.160027921979088,15.9563122588214,1.60602345218798,0.164729231608061,0.288319368648736,-5.71600553675534 +"Q9I7T7",0.168508419515405,14.4838390677644,1.60520289979766,0.1649085709525,0.288330708960974,-5.71704887450641 +"Q9V3V6",0.0903778914537696,21.5419062227554,1.60319669865592,0.165347844052203,0.288596606439741,-5.71959899384776 +"Q9VJJ1",0.143319700623636,14.1246237297594,1.60292834569194,0.165406688103353,0.288596606439741,-5.71994001828513 +"Q9VHX2",-0.33932863278657,14.9097092343594,-1.59812480249703,0.166463448014903,0.290136918797135,-5.72604102002084 +"Q9W3W4",0.115337397303517,15.9009879318329,1.59631724555482,0.166862797482279,0.290529380167476,-5.72833514679934 +"Q8IRD0",0.159866407212579,17.3897465817556,1.59530808551999,0.167086158621772,0.290614924485,-5.72961556232155 +"Q9VYV3",0.0911261118456181,20.4371783387371,1.58924132385752,0.168435059632772,0.292655916111941,-5.73730700242531 +"Q494G8",-0.139778546516668,15.0519808608505,-1.58494675875966,0.169396296844031,0.29401979514656,-5.74274535783506 +"M9PFN0",-0.130332395312777,16.7372400479989,-1.58241639376419,0.169965143415379,0.294087707119105,-5.7459471825507 +"Q9VQG4",0.106152991247395,19.1184462382359,1.58206037748851,0.17004532693938,0.294087707119105,-5.74639752432203 +"Q7JZK1",-0.112325039093708,21.5851609497425,-1.58054830264138,0.170386290913819,0.294087707119105,-5.74830981308879 +"Q7JVK6",0.103460634073258,17.2689355477098,1.58021591495401,0.170461330989048,0.294087707119105,-5.74873008845448 +"Q9VZ58",0.140177353744036,18.076952961825,1.57956957985215,0.17060733955849,0.294087707119105,-5.74954723186292 +"Q9VCI0",0.11287992558673,14.8027258676517,1.57939995892453,0.170645677340882,0.294087707119105,-5.74976165889345 +"Q9V6U9",-0.103720317053462,21.8794223369339,-1.57929411425682,0.170669604611087,0.294087707119105,-5.74989545867956 +"Q9VMU0",-0.0925293589633078,21.1455240268921,-1.57634080717154,0.171338539241185,0.294935689839315,-5.75362747017123 +"Q9VSN9",0.090413558947283,16.543330471527,1.57406093706763,0.171856670301929,0.295522604189296,-5.75650674619775 +"Q86BN8",-0.216442418174099,14.227389340271,-1.57092123367118,0.172572687839323,0.296448242343965,-5.76046943269372 +"Q9VA97",-0.131692573785553,18.5790229210361,-1.55606743066057,0.175999330708595,0.302023542820922,-5.77917721101803 +"Q8SY69",-0.10204442180688,18.9145071891146,-1.54828453435089,0.177820843552962,0.304835731805077,-5.78895297736128 +"Q9V419",0.091424522583873,16.5490446706633,1.54530697790131,0.178522494491504,0.305724354016252,-5.79268806498913 +"Q9VZG2",0.12184602652539,21.6443618631741,1.54138842152936,0.179449942375086,0.306997439878609,-5.79759938926107 +"Q9VWP4",0.217948585155078,15.0666292746694,1.53850272237228,0.180135887707978,0.307855185140274,-5.80121313551398 +"Q7KN90",-0.0912590702865543,17.3776065560893,-1.53460386211484,0.181066662140209,0.309129163203551,-5.80609152730088 +"A1Z9E3",-0.103549040043792,21.8041314534235,-1.5267947646125,0.182944805374837,0.312016293829477,-5.81584813856725 +"Q9W4A0",-0.113683545956681,17.1500845173566,-1.52509409832702,0.183356293694952,0.312398669952176,-5.81797036495758 +"Q9W3N6",0.0997731008708254,16.0883409435485,1.52134191495653,0.184267294796791,0.313630456858212,-5.82264935982425 +"Q9XZ63",-0.0852230503879419,19.0174977011596,-1.51564339497058,0.185659130383567,0.315677298144536,-5.82974676233743 +"Q9W257",-0.126405952439892,16.8146987338949,-1.5144267397018,0.185957590434826,0.315862791084816,-5.8312607185289 +"Q9W5W8",0.0920549466238434,20.6724194683973,1.50810217101553,0.187516472987229,0.318186649992572,-5.83912294943096 +"Q9VKQ2",-0.0848809686934295,15.9097348752529,-1.50658530721614,0.187892198833102,0.318434544219732,-5.84100664414358 +"Q9VKU5",-0.349943672867067,13.6928010313477,-1.50487266705492,0.18831728061992,0.318434544219732,-5.84313254558587 +"A1Z877",0.0856611059174526,19.9293994006302,1.50339973290816,0.188683599402349,0.318434544219732,-5.84496012116952 +"Q9V9X4",-0.102783855315412,18.9570256199622,-1.5031303290372,0.188750673532842,0.318434544219732,-5.84529431192219 +"Q9VD64",-0.136307476207977,15.7057846451911,-1.50279690613646,0.188833718077031,0.318434544219732,-5.84570788368898 +"Q8IQB7",-0.110207353085093,14.37759418486,-1.5015730656103,0.1891388343156,0.318434544219732,-5.84722559580816 +"A1Z7S3",-0.0947585144099747,20.0014397163394,-1.5012940200739,0.189208468966315,0.318434544219732,-5.84757157647002 +"Q7JXW8",-0.151748666216054,14.7572300547557,-1.50110724666422,0.189255091125962,0.318434544219732,-5.84780313700249 +"Q95R98",0.0861816073447237,16.1868169633068,1.50060411717287,0.18938073613068,0.318434544219732,-5.84842685586402 +"O96299",0.148643870854006,15.5708804275056,1.49793433324933,0.190048782502315,0.319105416306415,-5.85173511135479 +"Q24090",0.0988119322113068,15.6584609647597,1.49748139790537,0.190162340412816,0.319105416306415,-5.8522961275993 +"A1Z8H1",-0.0834713816228891,23.1782748730376,-1.49008286944032,0.192026423989201,0.32190962333064,-5.86145030761459 +"Q9V4N3",0.134779030144983,19.6944742121578,1.48924639176773,0.192238266320574,0.321941192994697,-5.86248411005427 +"Q9VG51",-0.0896580338969954,19.0780099477059,-1.48685347457156,0.192845511005215,0.322634215001704,-5.86544019561201 +"Q9VHD2",0.0938854526390021,16.5022099565946,1.48397296826013,0.193578904520257,0.323536686112013,-5.86899601959036 +"Q9VGP6",0.111498946485895,17.9401619596959,1.4759878945285,0.195625800656844,0.326630465961578,-5.8788381581722 +"Q9VTM6",-0.179811092411622,16.0152322294276,-1.47230750563856,0.196576118337068,0.327888965386229,-5.88336700414813 +"A1Z843",0.109784000646805,17.4928727178784,1.47055324822939,0.197030622870775,0.328161505354467,-5.88552400465879 +"Q9VAF5",0.0953203216717924,15.8472399813998,1.47000821333114,0.197172036328544,0.328161505354467,-5.88619394807915 +"Q9VNX4",-0.0961365748502807,21.0369378530428,-1.46940086651844,0.197329730138208,0.328161505354467,-5.88694036024106 +"Q9V3H2",0.0965982587736534,18.3502546296636,1.46751014588049,0.197821407597757,0.328537187503397,-5.88926316772049 +"Q86BI3",0.0829269578414511,17.9521734817521,1.46701805508823,0.197949564413018,0.328537187503397,-5.88986750847659 +"Q9Y0Y5",0.0947225661706348,18.5478194788848,1.46604526088159,0.198203143256383,0.328631056611975,-5.89106195219207 +"Q9VHI7",0.124544071510035,15.3944652483047,1.46441036430353,0.198630004080379,0.329011764454888,-5.89306859933137 +"Q9VIH1",0.0817793930894943,15.6356268389409,1.46284227396332,0.19904023779701,0.329364203021243,-5.89499235455296 +"Q9VVC8",-0.0869802439278864,16.5163775123216,-1.45506726516685,0.201086122230437,0.332313897416831,-5.90451781874434 +"Q9VAY6",-0.0849829693186823,15.1754046084891,-1.45455638586046,0.201221244838729,0.332313897416831,-5.90514295343701 +"Q9VGU6",0.0865732651590818,18.5105225128356,1.45025943628433,0.202361136206208,0.333865850832793,-5.91039714049146 +"A1ZA23",0.0821947506992728,18.3476942432466,1.4467890342674,0.203286196382469,0.335060647792449,-5.91463573023258 +"Q9VSY4",-0.0876471064046136,20.3800807406723,-1.44252353512649,0.204428644288882,0.336544020683657,-5.91983935308343 +"Q59E14",0.145516782094564,14.477136318025,1.44192397385126,0.204589710415604,0.336544020683657,-5.92057023923853 +"Q9VH26",-0.106220358553855,18.0823901927302,-1.43993671894528,0.205124419415947,0.33709116412394,-5.92299181995409 +"O97062",-0.0847241950088957,18.5679313087787,-1.43374828752045,0.206797952331804,0.339297549692532,-5.93052334751217 +"Q9VG33",-0.12800394334543,19.8944788078761,-1.43346868847341,0.206873865729799,0.339297549692532,-5.93086329056209 +"Q9W2X6",-0.0798618579489627,24.1454755027508,-1.42459231236305,0.209297492687047,0.342935380944985,-5.94164006160955 +"Q9V3Y2",-0.0799610180171122,17.9401623404163,-1.42177660902121,0.210071836018184,0.34383604789958,-5.94505234240163 +"Q9VZE4",0.0905922602954341,17.5097074134396,1.42109584583021,0.210259453751542,0.34383604789958,-5.9458768871888 +"Q7KUA4",-0.0898845588304766,18.8079958761785,-1.42029010364406,0.210481718048812,0.343862395401977,-5.94685257775882 +"Q868Z9",-0.0822854550685079,20.6149261067784,-1.41790987952092,0.21113958716605,0.344302067389341,-5.94973338574884 +"Q9VJZ1",0.141864361371908,15.3369092788236,1.41754097450117,0.211241720481432,0.344302067389341,-5.95017967982719 +"Q7JVG2",0.197072766096028,14.7759227045299,1.41707752581716,0.211370094128708,0.344302067389341,-5.95074027660752 +"Q9VXH7",-0.122445628989247,18.1731056542186,-1.41506734720554,0.211927750442734,0.344873646574127,-5.95317086859952 +"Q9VCB9",-0.0997164285881951,17.0591939034441,-1.41073647266444,0.213133876180126,0.346498348409796,-5.95840218944762 +"Q9XY35",-0.111272334757256,19.2810667365184,-1.40966466569286,0.213433355777163,0.346647358750057,-5.95969571243444 +"Q9VQI6",-0.0965134456695331,16.0747498604573,-1.40350629838704,0.215161715294496,0.348789078997124,-5.96711929173323 +"P51140",-0.147175808822972,13.5379834072321,-1.40300030291458,0.215304302135256,0.348789078997124,-5.96772857882461 +"Q9VMC8",-0.0821098756431944,16.3047880893254,-1.40215882850197,0.215541619971441,0.348789078997124,-5.96874160412524 +"Q9VL70",0.0777806276376118,23.3576149944697,1.40199286947381,0.215588453504817,0.348789078997124,-5.96894136408294 +"P04359",-0.0950843383308921,18.9293270390322,-1.39219393510939,0.218370544112721,0.35294773990312,-5.98071664249533 +"Q9V3Q4",-0.120625459018679,15.8920846508638,-1.38882019768508,0.219336101021933,0.354093109514965,-5.9847619314641 +"Q7K2W6",-0.138433418447622,17.2378288097541,-1.38779324602058,0.219630798121908,0.354093109514965,-5.98599238905705 +"Q9W258",0.0788465148285269,19.255260152542,1.38718015434071,0.219806907770952,0.354093109514965,-5.98672677072378 +"P54352",0.166088854492527,16.0974303086084,1.38675769697354,0.219928334207136,0.354093109514965,-5.9872327156771 +"Q9XZ61",0.0815340301112109,18.5308031463816,1.38280077348333,0.221068691012897,0.355585898369828,-5.9919681031904 +"Q9VAP3",-0.167094025680289,16.4961412139495,-1.38170536833367,0.221385345808669,0.355752174189654,-5.99327788575516 +"Q9VE12",-0.0782300711720456,15.6848041865304,-1.37992357329349,0.22190131656525,0.356238109750565,-5.99540734135683 +"Q9VMH2",-0.359666768580851,17.4162196897065,-1.37038689382118,0.22468190394246,0.360355207476945,-6.00678260004811 +"Q9W1F2",0.162346732682668,13.4650498818033,1.36845403271303,0.225249373266786,0.360874834789237,-6.00908350673034 +"Q9VCW2",0.117705617802134,15.3722470496941,1.36716928362467,0.225627294819733,0.360874834789237,-6.01061202935361 +"Q9VD68",0.125737842648666,14.7821539594081,1.36674808959451,0.225751320482089,0.360874834789237,-6.01111299236912 +"Q9VP78",-0.077247015803966,14.8544944734079,-1.36634084127514,0.2258712994724,0.360874834789237,-6.01159729797662 +"Q9VSU6",-0.0944957169072573,21.6733584208013,-1.36405254044669,0.226546547783558,0.361061946953616,-6.01431728656589 +"Q9VW58",-0.168293669457544,14.8675645870255,-1.36395240542842,0.226576138816817,0.361061946953616,-6.01443626188065 +"Q9V9T9",0.207087226376654,13.2933723048347,1.36374376853494,0.226637804832395,0.361061946953616,-6.01468414005136 +"Q9VBU9",0.0940626161554903,20.8484333293044,1.35898863042375,0.228047463398594,0.362961039073334,-6.02032867326359 +"Q9VRP3",0.0922343580210345,17.92301055565,1.35209648061967,0.230104971202279,0.365886646296856,-6.02849291312924 +"Q9VPX6",0.0759809530884183,21.3481180206051,1.34869655799849,0.231126221406144,0.366866457639518,-6.03251289045266 +"Q9XYZ9",-0.0771283945034611,21.9203809837809,-1.34858081993844,0.231161059340008,0.366866457639518,-6.03264964868112 +"Q960X8",-0.106435762385651,18.3983278663313,-1.33471529511317,0.235369701498152,0.373190743440036,-6.0489914218705 +"Q9VC53",-0.0789758877941402,17.9389168721106,-1.33379817601296,0.235650536799412,0.37328119219508,-6.05006937090763 +"Q9VLP1",-0.0756188354760319,18.3749763389192,-1.33112692805427,0.236470259246542,0.374224281236463,-6.05320695002415 +"A1Z6G9",0.10000716067314,14.1893212915253,1.32721635190318,0.237674993807259,0.37577430300522,-6.05779452406976 +"Q9VHI1",0.10969358516483,14.1812814660772,1.32628797757216,0.237961821050494,0.375871512795667,-6.05888262178971 +"B7YZN4",-0.1893748244094,15.4838898901454,-1.32325814502388,0.238900106834336,0.376996573509624,-6.06243105508196 +"P17210",-0.0764717228557323,20.8911471082665,-1.3190455068902,0.240210294377582,0.378705832723825,-6.0673579262692 +"A1Z6S7",-0.0816070757081384,17.5431398761794,-1.31747780929588,0.240699539027133,0.379118820677298,-6.06918938440258 +"Q9W2M4",-0.0806677496583532,22.7063565486434,-1.3127207434355,0.242189675229291,0.381106017247602,-6.07474001979532 +"Q9VQJ8",-0.0841073728761188,15.2308938489763,-1.31098840649232,0.242734405683729,0.381603193855287,-6.07675879542172 +"Q7K1Q7",-0.0760875267677665,16.6296836382832,-1.30615263272194,0.244260904331576,0.383641420362588,-6.08238691542053 +"Q9VBL3",-0.272050691061073,14.6451681916967,-1.29388696422071,0.248171922332095,0.389417466086486,-6.09661406755844 +"Q9VWX8",-0.0738276699075158,20.5410471597853,-1.28991660810322,0.249449999483957,0.391055074378986,-6.10120436572317 +"Q9VHC7",-0.0721960627230018,19.892262411377,-1.28761437099651,0.250193822955833,0.391852860742093,-6.10386269336371 +"Q9VSK9",-0.102543819128169,14.5514166848266,-1.28681953194116,0.250451090164369,0.391887822133366,-6.10477989206544 +"Q9VAI9",-0.086321566895986,21.8430123674915,-1.28579933138498,0.250781650617987,0.392037294499346,-6.1059567083776 +"Q9VX98",-0.0732780801936777,18.289966175583,-1.27993552126092,0.25268925905995,0.394649516958798,-6.11271114553598 +"Q9VVL5",0.0858243616545131,17.2550835616679,1.27878826650376,0.253064009166651,0.394865076978461,-6.11403074045577 +"Q9VB05",0.0731010461844974,20.2124606549936,1.27699774315275,0.253649883001128,0.39511694359165,-6.11608898048297 +"Q9VVG0",0.0823027448136209,18.0053669810135,1.27684722736332,0.253699188601113,0.39511694359165,-6.11626193138369 +"Q9VHA8",0.0734236547671792,18.647144407158,1.27076081603207,0.255700200017012,0.397290918410269,-6.12324644664598 +"Q9VBP9",0.201954398657021,13.8768697250939,1.26996218412684,0.255963814318419,0.397290918410269,-6.12416160043221 +"E1JIY8",-0.295472115589666,16.5189805833539,-1.26962810893576,0.256074159064255,0.397290918410269,-6.12454432643227 +"Q9VGF3",-0.0846014289210242,15.67807214629,-1.26926372713291,0.256194562782307,0.397290918410269,-6.12496171104037 +"Q9VW40",-0.104095089470007,14.702887205057,-1.26898714626391,0.256285988135161,0.397290918410269,-6.12527848037068 +"Q7K1U0",-0.0872155532480789,16.8539324403428,-1.2665492857552,0.257093104710049,0.398172050748711,-6.12806897085992 +"Q9W229",0.0859012188472086,19.248976110229,1.2635178693648,0.258099915000329,0.399073395053983,-6.13153484817276 +"Q9I7I3",0.165705663053686,14.585882151773,1.26335654743645,0.258153593083482,0.399073395053983,-6.13171916528858 +"Q8T0Q4",-0.0769819113509307,20.0136756162418,-1.2610742044908,0.258914090592034,0.399878428803253,-6.13432547728862 +"Q4QQ70",-0.0960897352418826,16.0793594740473,-1.25897735666889,0.259614548288762,0.400589330754537,-6.13671771802161 +"Q86BS3",-0.0783369473661217,18.9960772366749,-1.25464056569881,0.261068651055363,0.40246073009274,-6.1416586011552 +"Q7K0X9",-0.0811645821565996,16.6882581393146,-1.25327820042878,0.261526946425297,0.402794964577466,-6.14320882295742 +"Q9VWS1",0.0835900447264049,17.1652275164888,1.24877207712469,0.263047918685835,0.404726156445756,-6.14832974638254 +"Q8MRT7",-0.127451998146398,15.4323646685942,-1.24812754549672,0.263266114954224,0.404726156445756,-6.14906139104065 +"Q9VRD4",-0.0712049697985044,20.4042361120427,-1.24737380234536,0.263521488027059,0.404745710892389,-6.14991674540443 +"A1Z8Y3",-0.0854997227418703,15.1108173161509,-1.24504592673421,0.26431158342244,0.405585760026339,-6.15255664913512 +"Q9VJU8",-0.106113935733417,15.5804363509683,-1.24211683824855,0.265308734963736,0.406526635675453,-6.15587449928569 +"P08120",0.102057411069222,18.3071073548456,1.24181355254776,0.265412174011132,0.406526635675453,-6.15621779248292 +"Q7K159",-0.109518236927606,14.7855151685972,-1.23793755230393,0.266737294255927,0.408181474145768,-6.16060101261067 +"Q7KTW5",-0.0872541985570159,21.5890419081101,-1.2323851048304,0.26864581063592,0.410725217360875,-6.16686682728633 +"Q9VLB1",0.111033523952051,16.7272929402284,1.23046079558363,0.269310070110816,0.411363733465971,-6.16903471142494 +"Q9V428",-0.0720470155136468,18.7863832943372,-1.22947521278046,0.26965085147673,0.411507429335028,-6.1701443154791 +"Q9W0H8",-0.106924287466743,19.4418982317714,-1.22552222440538,0.271021509475149,0.413221094885328,-6.17458973371027 +"Q9VJC0",-0.0754989150190362,16.5583640202402,-1.22323937448853,0.271815874441651,0.413514019624432,-6.177153306551 +"Q9VIL2",-0.2348611123361,16.0885120426518,-1.22289850003342,0.271934665596809,0.413514019624432,-6.17753586813813 +"Q7KLW9",0.070288495903899,17.0792885690103,1.22283338758782,0.271957361827339,0.413514019624432,-6.17760893667315 +"Q9VZ67",0.0927769831067806,15.0800840443017,1.22031499215861,0.272836486303899,0.41417472310096,-6.18043337495801 +"Q9VTP4",0.0729133163203173,21.0598916689975,1.2201662109934,0.272888501611484,0.41417472310096,-6.18060013386633 +"Q9VXP4",-0.0782687100189428,17.9561340562274,-1.21933793291887,0.273178235910602,0.414237543180804,-6.18152828610927 +"Q27268",0.079951913098899,18.9098370758498,1.2173631908886,0.273870104906427,0.414703428329377,-6.18373970838583 +"Q7K3D4",0.0957114780848798,18.3992128277551,1.21561408983561,0.274484211808141,0.414703428329377,-6.18569675360057 +"Q8SXY6",0.0718018602708881,19.1253867210628,1.21554106199404,0.274509878223602,0.414703428329377,-6.18577842882282 +"A0AQH0",0.0915023658756375,16.8703971746434,1.21506913927249,0.274675791641349,0.414703428329377,-6.18630616591161 +"P92181",-0.107583075995016,16.4943149330522,-1.21491901257608,0.274728590110289,0.414703428329377,-6.18647402377783 +"Q9VFM0",0.160345741407037,14.2860554131945,1.21401665895392,0.275046130246664,0.414807364603468,-6.18748270495923 +"Q9VB64",-0.120613131813556,18.8045518160573,-1.21045821857919,0.27630151371047,0.415959531353752,-6.19145630115649 +"Q7K1H0",-0.081771089654973,16.3204073262339,-1.21016576341844,0.276404913564,0.415959531353752,-6.191782581528 +"Q7JVH6",0.0728242762201887,18.9255577373134,1.20973231472501,0.276558225582321,0.415959531353752,-6.19226608011628 +"O18373",0.0737664252145684,19.5741723308133,1.20898506477034,0.276822706074902,0.415982228588231,-6.19309938264943 +"Q9VDC0",-0.0815632569872413,17.4631104615447,-1.20348542254686,0.278776107721475,0.418512516041022,-6.19922331133984 +"Q9VC66",-0.0885757382565835,17.7085111080149,-1.20283383906231,0.279008344027348,0.418512516041022,-6.19994779997941 +"Q9VG00",-0.145309183222711,15.2695616793142,-1.20089401909618,0.279700739433528,0.419174153975854,-6.2021033322428 +"Q24298",-0.0670213810880469,19.3422666342026,-1.19740692152747,0.280949216596692,0.42066722915914,-6.20597317250312 +"Q9W073",-0.0746311161317585,14.5017961248163,-1.19576713457588,0.281537996089597,0.421015202576487,-6.20779070022711 +"P13060",0.0780084623092918,20.3268286205039,1.19535421089576,0.281686430500815,0.421015202576487,-6.20824815521029 +"P25171",0.0978440631106654,16.7598678401721,1.19428080502824,0.282072611026359,0.421214964361653,-6.20943689430859 +"Q9VEA1",0.0691973218095399,18.19879573058,1.19289873273458,0.282570524919255,0.421581069378638,-6.21096655529174 +"Q8T4G5",0.066789171612573,19.5991014228937,1.19160102609236,0.283038746265589,0.421667074163028,-6.21240190782041 +"P43332",0.0995998051229741,17.0991514891644,1.19133790005634,0.283133766824096,0.421667074163028,-6.21269283286268 +"Q9VMY9",0.144699856078605,15.1281559073021,1.1885284169368,0.284150076666308,0.4226357179894,-6.21579681022052 +"Q9VHD3",0.0726415865760366,15.6372705561059,1.18813973010855,0.284290932604381,0.4226357179894,-6.21622590448914 +"Q9VDF4",0.0718883388965814,18.6794617771542,1.18674550066609,0.28479668948241,0.423010577076278,-6.21776440459502 +"Q9VH39",-0.0731717316777534,18.74818616243,-1.18388362927422,0.285837301104239,0.423909857866241,-6.22091911507763 +"Q9W4X7",0.0936821515833017,19.1113663605581,1.18368286614233,0.285910425719138,0.423909857866241,-6.22114025431921 +"M9NEW0",-0.080241857049355,18.3740836079756,-1.18124064000055,0.28680127604324,0.424853044795848,-6.22382859428209 +"Q8SZA8",-0.0768422664882564,18.0259001314358,-1.17819521597287,0.287915551152949,0.426125173873234,-6.22717636192688 +"Q9VXG4",-0.076751309625557,20.0809734826362,-1.17749855110886,0.288170980892691,0.426125173873234,-6.22794147749932 +"Q9V455",0.165382488116606,19.4348665225249,1.17078585284657,0.290642310444096,0.429398913924493,-6.23530007034086 +"Q9VGW7",0.124824610517413,16.676238338772,1.16763589810575,0.291808338099712,0.430574690543583,-6.23874454128375 +"Q9VN91",0.0674028070311721,19.4580417425463,1.16724203463293,0.291954421465703,0.430574690543583,-6.23917484359587 +"Q8SXS0",-0.0737989953397857,14.5870292083253,-1.16341200965802,0.293378289405979,0.432292391103509,-6.24335471110821 +"Q9VDC3",-0.0839020730428572,19.279795120675,-1.16141902289654,0.294121594191347,0.433005136020447,-6.24552650640161 +"Q9W0Y1",0.0968829060619392,17.7204280085285,1.16048733061147,0.294469638559318,0.43313523555286,-6.24654102727618 +"Q9VUK8",0.0790800331342574,20.7523267683967,1.15778464890435,0.295481278000568,0.434240327493346,-6.24948122802736 +"Q9V4Q8",0.0815062581990027,16.8724142889093,1.14915465394759,0.29873174340578,0.438400294849447,-6.2588420990619 +"Q9VW14",0.102027848859896,13.8163142699141,1.14863204227786,0.298929572768231,0.438400294849447,-6.25940761653889 +"Q9VCA5",0.0942975630108922,14.3072464650005,1.14818089509872,0.299100440970426,0.438400294849447,-6.25989567748656 +"O76902",-0.0773199683785641,17.2207447848866,-1.13920126828896,0.302518973778533,0.442831407379216,-6.26958585975928 +"Q9VMB3",-0.0840015013373225,18.8609578568709,-1.13884692622512,0.302654559000183,0.442831407379216,-6.26996729273027 +"Q9VRJ6",-0.109334830600943,15.785985328164,-1.1357945106771,0.303824700272807,0.444153900135883,-6.27325008162056 +"Q9W0H3",-0.134336676127379,16.8305268586992,-1.13180918965322,0.305358322673555,0.445793336971164,-6.27752807790491 +"Q9VM33",-0.436518648149091,13.7313323769452,-1.13149195357595,0.305480685946067,0.445793336971164,-6.27786821554278 +"P49028",0.126923732377978,16.3198441828588,1.12940283306438,0.306287546332953,0.446580093779166,-6.28010669019819 +"Q7JVM1",-0.103737753750654,15.6406970688698,-1.12233376230202,0.309031328959344,0.450187123759114,-6.28766224518636 +"Q8SYD0",-0.109280631197413,15.5582840058873,-1.11920647736825,0.310251846355697,0.451570750193109,-6.29099539265594 +"C0HK94",-0.0661372985175248,18.5742010863067,-1.11783462092309,0.310788553475332,0.451682819105183,-6.29245573642981 +"Q9W3V3",0.101662292114707,12.8711715014946,1.11762551881644,0.310870429456085,0.451682819105183,-6.29267822839887 +"Q95RQ1",0.26819710341594,12.1106334570177,1.11448338699369,0.312102981255825,0.453002198800067,-6.29601845132146 +"Q9VEC8",-0.0680526384975675,16.5368631477261,-1.11392701819741,0.312321659844171,0.453002198800067,-6.29660928579252 +"Q9VWA8",-0.0928195352064751,14.4054583056553,-1.1086777583735,0.314391297912506,0.455607893065213,-6.30217466031773 +"Q9VW57",0.102732139631106,16.460325474796,1.10710654029779,0.315013052108314,0.456112648365163,-6.30383730152891 +"Q8MKN0",0.102360637706113,16.6259845984732,1.09814787563268,0.318578130354672,0.460874519888633,-6.31328891437014 +"A8JNP2",-0.0899991248317562,21.1205421191672,-1.09501189804606,0.319834145145118,0.462290601474919,-6.31658599790228 +"P45594",-0.0679166762681334,22.9815070294219,-1.09426386853616,0.320134362978954,0.462323911211164,-6.31737157460992 +"Q961B9",0.118810774187912,14.7481781888765,1.09138709812433,0.321291163180469,0.463593131647943,-6.32038957101289 +"Q9VGR2",0.0610320367300279,15.6664109968422,1.08960473871941,0.322009653255902,0.464228264158033,-6.3222568974562 +"P40797",0.0705742159131262,19.0214764990102,1.08870509453268,0.322372825707277,0.464350495060222,-6.32319869126676 +"Q7K1C5",-0.0602029458016524,17.5099041846311,-1.08468741768531,0.32399892324348,0.466290081078624,-6.32739854808544 +"P56538",0.0842031490296087,17.1160007631264,1.08385871785651,0.324335187059636,0.466371631047821,-6.32826359146934 +"A1Z9J3",-0.0744894860892273,17.9000532085424,-1.08119399563566,0.325418452921482,0.467445510343279,-6.33104231040399 +"Q9XTL2",-0.111777157234815,17.0270142652807,-1.07937588856587,0.326159299212378,0.467445510343279,-6.33293568003714 +"Q9VK00",-0.069174957022895,17.944259944481,-1.0792941569475,0.326192636706631,0.467445510343279,-6.33302074700616 +"P23128",0.0902572860877626,14.6822939532355,1.07926879532198,0.326202982038115,0.467445510343279,-6.3330471427628 +"Q9VU84",0.0638597028852388,18.3320222096415,1.07772916548166,0.32683153396832,0.467944204857647,-6.33464880545785 +"Q9VVP9",0.0916665804640324,16.7228037153055,1.07702102187339,0.327120974498562,0.467956934359864,-6.3353849873129 +"Q9VIT0",0.0616537281202092,16.3695842792245,1.07620469789158,0.327454899093887,0.46803322338355,-6.336233246623 +"Q9W4P5",-0.0674773150871424,19.5601953943025,-1.07505973518295,0.327923738906269,0.468302051794227,-6.33742230365562 +"O97479",0.0619631426546334,17.6074885698781,1.0673519302576,0.331094620144798,0.472425856630902,-6.34540566874735 +"Q9VGR1",-0.118735826525171,14.173610903411,-1.06356587426537,0.332661532893096,0.474007123040284,-6.34931344111001 +"Q9VBI3",-0.0716323501461211,18.6800578468026,-1.06330147952888,0.332771187697945,0.474007123040284,-6.34958599859461 +"Q9V3L7",-0.0814802950146536,17.7212515172575,-1.05974403671057,0.334249537713951,0.475706679954668,-6.35324897828253 +"Q9W379",-0.0689857903943967,16.4380304926784,-1.05240744698911,0.337315679143597,0.479661170342302,-6.36077787123332 +"O18404",-0.0651803424590049,22.9871255137501,-1.05045214145289,0.338136791087181,0.480419222771225,-6.36277863765468 +"Q9VJH8",0.155216983110318,14.3264553025801,1.04930040330174,0.338621230014357,0.480488381108058,-6.36395600860857 +"Q9VEB3",-0.107275469545035,12.7238720833041,-1.04896695202648,0.338761592435897,0.480488381108058,-6.36429672240732 +"Q9W2D6",-0.0644650877337476,19.6338062614597,-1.04827538257283,0.339052854648207,0.480492915508249,-6.36500312681978 +"Q8IP97",-0.0844505152888395,19.9486260124208,-1.04159781068876,0.341875898576326,0.483849848124448,-6.37180811310479 +"P29829",-0.0658067146058769,21.3647667903859,-1.04130111691636,0.342001781138324,0.483849848124448,-6.37210980058441 +"O76742",0.0751498811348128,17.9090644774842,1.03963861856886,0.34270786379358,0.484437895599739,-6.37379922659152 +"Q9VG76",-0.0624259562808831,15.7348884503118,-1.03358598263966,0.34528868510928,0.487672757631057,-6.3799347385539 +"O44434",-0.0588317111199608,15.7451949728391,-1.03193921478858,0.345993632308561,0.488254973511573,-6.381599924245 +"P18053",0.0610702066117099,21.0442959752798,1.02612350455913,0.348492720094127,0.491354603100897,-6.38746646778135 +"O61722",-0.0651726648839812,19.0440165451432,-1.02545882308643,0.348779286613586,0.491354603100897,-6.3881355442816 +"Q9VPC1",-0.0924153832614518,16.0553724621303,-1.02401293207839,0.349403328306994,0.491818355794149,-6.38958999057122 +"Q9VV76",-0.103129749295141,16.3096226771779,-1.02269011057269,0.349975057450128,0.49220775364824,-6.39091943109813 +"Q9VW00",-0.06511947752049,15.8834698395606,-1.02065630735832,0.350855575095936,0.493030412181989,-6.39296115508187 +"Q9VS44",-0.0729406497211809,15.1699308948809,-1.01928133465406,0.351451887561831,0.493452650213076,-6.3943399312151 +"Q9V429",-0.0570045505428673,22.3521936705283,-1.01585731231855,0.35294046651101,0.495125902557077,-6.39776797189849 +"P42207",0.0618358810063899,15.9668603947833,1.01509597731131,0.353272154765485,0.49517475138557,-6.39852914073603 +"Q9VWU1",-0.135143462187283,14.8762109260336,-1.01393000495686,0.353780624776553,0.495471101702175,-6.39969410982122 +"Q9VXM4",0.0700626027471216,20.0503318117817,1.00923941614884,0.355832200980345,0.497926267814778,-6.40437148665614 +"Q9V436",0.0588035066383235,19.0822094870536,1.00492088446985,0.357729628433041,0.500161793986851,-6.40866480982497 +"Q9VLU4",-0.0659058658303948,17.415751436897,-1.00012118343482,0.359848134928866,0.50270241964937,-6.41342174550867 +"Q9Y105",0.1957644408626,17.154194306874,0.999044025291054,0.360324974208499,0.502947328016549,-6.41448716497635 +"Q9VGE7",-0.105003563704312,13.9899422478695,-0.995675795711515,0.36181934573193,0.504474974775107,-6.41781360652784 +"P36241",0.0814389154991417,19.9082832784324,0.994845301225689,0.36218858086138,0.504474974775107,-6.41863261174221 +"Q8SZK5",-0.198496749802445,15.8400318912812,-0.994534702737323,0.362326750467973,0.504474974775107,-6.4189387926178 +"O17452",0.07690210746971,19.7939801124182,0.993535605651734,0.362771488398162,0.504672929648152,-6.41992323362078 +"Q8IR45",-0.0704832088268592,14.8440459905148,-0.991514194266676,0.36367265285372,0.505504987466671,-6.42191290856118 +"Q9U6P7",-0.0724029466655924,16.9109225503744,-0.985905930025687,0.366182365322258,0.508569679731495,-6.42741847388398 +"Q9W3T7",-0.0602389573641808,17.4158004753623,-0.984438051380237,0.36684155160318,0.509061321193098,-6.42885590512086 +"Q9VHJ7",-0.139244106753418,14.6348598216156,-0.983530635570781,0.367249527600088,0.509203833779673,-6.42974375647913 +"P38979",0.068936707059855,22.1509627237416,0.982479246783339,0.367722692029547,0.509436420519339,-6.43077176641495 +"P02572",0.0564888521788411,26.6561903870578,0.977872380870689,0.36980175370702,0.51156929051262,-6.43526718241915 +"E1JJH5",0.0560772303350525,21.2053130569706,0.977709049219801,0.369875638104448,0.51156929051262,-6.4354262928374 +"Q9VGJ9",-0.0702774247529376,17.9896696656838,-0.973162389806447,0.371937126998998,0.513994306407895,-6.43984800307904 +"P17704",0.0679338622085872,20.4158788975533,0.968900184175862,0.373878013066871,0.51624877963207,-6.44397998605443 +"Q9VTB0",-0.0667507793446251,17.0337813649244,-0.962427841148157,0.376840842237295,0.519909449836069,-6.45023022461509 +"Q9VSL6",0.0692101839637953,14.7441406355249,0.960710190361249,0.377630270784788,0.520568009643823,-6.45188397950634 +"Q9VCW6",-0.062769334212728,19.9615727385908,-0.957930117532346,0.37891078282502,0.521901887491439,-6.45455621522377 +"Q9VRR3",-0.0578809993048992,19.8170369968122,-0.957092049774789,0.379297478470737,0.522003460469629,-6.45536070115685 +"Q9W4U2",-0.063647642429558,18.7049502236642,-0.955741725561881,0.379921197528061,0.522279375137407,-6.45665586892614 +"Q9VRP2",0.0575302006736891,20.4661120315779,0.955302620452292,0.380124197492093,0.522279375137407,-6.45707675901027 +"A0A6H2EG56",-0.0526979154557807,20.9757902400151,-0.953746566724698,0.380844262286165,0.522838048965699,-6.45856716071317 +"Q9VQR9",-0.070728736763245,16.3459663912118,-0.943994379096931,0.385381809859136,0.528632285234407,-6.46786852944497 +"M9NFC0",0.0554186783860544,20.1020966630158,0.938113815233122,0.388138577200062,0.531871759734978,-6.47344424324508 +"Q9W0C3",-0.0802224949619337,18.2921785243703,-0.937597897667279,0.388381177072664,0.531871759734978,-6.47393222405429 +"Q9W4W5",0.0524676876442776,17.1292855937466,0.936181623630453,0.389047766517196,0.532347559106385,-6.47527081671685 +"Q9VHE4",-0.0610157060524852,17.9004668648482,-0.93240131052826,0.390831441108623,0.534191348326027,-6.47883665766603 +"Q95SK3",-0.0766749944597329,17.2782367381326,-0.93196916002202,0.391035753181103,0.534191348326027,-6.47924362901081 +"A1Z7G2",0.0549242610841283,19.5025498850026,0.928270239385328,0.392787966729724,0.536145931673633,-6.48272146483683 +"Q6AWN0",-0.0631424891766059,18.63488814224,-0.927241739987359,0.393276270923675,0.536202441754985,-6.48368671595392 +"Q03427",-0.0513844255365115,21.7786534622148,-0.926829141927362,0.39347229538855,0.536202441754985,-6.48407372359499 +"Q9V3W9",-0.064196417379943,18.521783721927,-0.924747438292865,0.394462477611508,0.537112989923262,-6.48602441359993 +"Q9W1E8",-0.0601036350221555,15.5061696113462,-0.922630011853723,0.395471654393387,0.537940431128793,-6.48800531806943 +"Q9VAY3",-0.0683298144732145,13.8012781805426,-0.922119701275289,0.395715173258411,0.537940431128793,-6.48848223370015 +"Q95083",0.0608454873873221,19.8383515322268,0.915331507554477,0.398965648640049,0.541917509716288,-6.49480795299715 +"Q9V998",0.0851280880564644,15.8479133394576,0.912342580937738,0.400403463824575,0.543427972058089,-6.49758244334827 +"Q9VU75",0.0539204567081093,18.3413492095786,0.911617980610279,0.400752637995325,0.543459674940002,-6.4982540600501 +"Q9U616",-0.0506058927530475,19.6976041978411,-0.908373880417685,0.402318827618898,0.545112221930023,-6.50125616061103 +"O61491",0.0526432496425997,20.9418372109282,0.907710397227495,0.402639729884114,0.545112221930023,-6.50186918456445 +"Q9VK18",0.0584398081318618,14.5174315211694,0.907006384158783,0.402980452318937,0.545112221930023,-6.50251929694891 +"Q9VVL8",-0.0672877041880735,15.8729107461707,-0.906390995573924,0.403278466343914,0.545112221930023,-6.50308726709477 +"A1Z729",0.0510037425785725,16.7260344300612,0.904862516198154,0.404019402538167,0.545253087190997,-6.50449674619703 +"P05031",-0.132355862337418,13.2703635556562,-0.904827353324062,0.404036460292609,0.545253087190997,-6.50452915089975 +"Q9VKX2",-0.0588793241397454,23.1664483676301,-0.904091478014262,0.404393566669197,0.545293831207939,-6.5052070919759 +"P00408",-0.0563602032328312,21.2932523512681,-0.902155262354111,0.405334344212563,0.546120909649883,-6.50698893531366 +"Q9V9V4",0.0615989320729611,18.788984452786,0.899767674536708,0.406496768960658,0.547245044896188,-6.5091822913726 +"Q9VSN3",-0.0519719083748811,20.8436155826366,-0.898595150685809,0.407068569053333,0.547572881597548,-6.51025786118338 +"Q9W260",0.0854731126160964,17.2285409026412,0.896920279584802,0.407886424729524,0.548230907694477,-6.51179244496125 +"Q9VIW6",0.0719638765562465,14.9781601267436,0.894688123741851,0.408978379352236,0.549013458098304,-6.51383434725466 +"Q95R34",0.0879530884122826,15.4377012483287,0.894384803113157,0.409126935501314,0.549013458098304,-6.51411152457795 +"P22769",-0.0519170853258366,20.1015304614849,-0.891365330693991,0.410608039334657,0.550347274068646,-6.51686695294784 +"Q9W0D3",0.106744219183392,12.8044692943386,0.891013698560063,0.410780789098,0.550347274068646,-6.51718738700323 +"Q9VEA5",-0.0549960707867818,15.6472460628838,-0.889798718461061,0.411378114784531,0.550705213050239,-6.5182938478188 +"P0DKM0",0.0785301365910094,16.916512505879,0.883465541156655,0.414502535442431,0.55444284612508,-6.52404318456309 +"Q9VE56",0.0579956792292897,17.4832779601058,0.882006944814679,0.415224693554427,0.554963773116013,-6.52536298269604 +"Q9VZ20",0.0515496743906425,18.6524997881387,0.879092230267954,0.416670667907079,0.55645049965493,-6.52799545924937 +"Q9VK11",-0.0760884256981313,18.7362439505661,-0.875808466397306,0.418304333248422,0.558137871173818,-6.53095344193506 +"Q9VH77",-0.0662935998351593,15.4255355415439,-0.875208378374557,0.418603403380363,0.558137871173818,-6.53149309949357 +"Q9VP13",-0.17684847638615,11.9824431190079,-0.871812993539936,0.420298657161289,0.559562123807553,-6.53454133297107 +"O61444",0.0614007313632694,16.4117655621832,0.871203243823054,0.420603647081316,0.559562123807553,-6.53508779824875 +"Q8IPW2",-0.0655961155975309,17.1194842110178,-0.871054645998632,0.42067799955316,0.559562123807553,-6.5352209299265 +"Q9VK69",-0.0530156356455578,20.2814802867647,-0.866231639025471,0.423096671711089,0.562330875230356,-6.53953267463877 +"Q9VNQ3",-0.0826886301183123,15.0956683854259,-0.864110558093065,0.424163700759431,0.563300201327015,-6.54142319686428 +"O44386",0.06456439870216,16.8339316821948,0.86215247779908,0.425150540023295,0.564161575782702,-6.5431653291878 +"P14199",-0.0497779637286477,18.5940821885099,-0.858222443019645,0.427136452619818,0.566346266271746,-6.54665291313037 +"Q9VS02",-0.101596600037631,17.9877124191413,-0.856651288653839,0.427932341217086,0.566950869857108,-6.54804380519537 +"Q9VN44",-0.0588756562931003,19.6919577230246,-0.853396839384342,0.429584482228928,0.568444035427543,-6.55091870775136 +"P07486",-0.0534149747189474,22.1676874851837,-0.853089084069782,0.429740964432932,0.568444035427543,-6.55119014101374 +"A0A6H2EGA2",-0.0619526459648068,15.8068303360975,-0.850176176855362,0.431224195281385,0.569954007709469,-6.55375556894409 +"Q9VTF9",0.0551679222977199,17.3407429159085,0.846432392951846,0.433136147664955,0.572027786464881,-6.5570429334693 +"Q9W141",-0.0531412406539751,21.9287104990769,-0.842605022735993,0.43509735139546,0.574163276999705,-6.56039223244513 +"O76752",-0.0535243850479077,17.9925238609037,-0.840175526093074,0.436345706020266,0.575016663892199,-6.56251223319321 +"Q9VVW8",0.0469973888611097,15.7711953739745,0.840004839094393,0.436433511083647,0.575016663892199,-6.56266099978025 +"Q7YTY6",-0.0706067897657299,18.4412404526883,-0.835712670679761,0.438645832766433,0.577475334691721,-6.56639431718249 +"A0A0B7P9G0",0.0995264928424593,14.3676977147926,0.834842824920185,0.439095196024488,0.577611030732528,-6.56714911519194 +"Q9VA18",-0.0816447043764157,21.5422504840817,-0.832842667767577,0.440129779119443,0.578443099127374,-6.56888243151148 +"Q6IGN6",-0.0486509450605084,16.7242276319705,-0.831989353854097,0.440571707788105,0.578443099127374,-6.56962093006991 +"Q9V597",-0.0799278874274805,20.2540538487583,-0.831610360695755,0.440768092920199,0.578443099127374,-6.56994874166578 +"Q9VLM9",-0.0659315869180848,18.3260020218571,-0.825622150154654,0.443879670175236,0.582068624097715,-6.57511295466659 +"Q9VN73",0.0603799905910485,18.4213557205194,0.824601375427436,0.444411701549335,0.582308498180904,-6.5759903876137 +"Q9VR25",-0.0554434019434638,16.8569009527036,-0.821886703904578,0.445828892401616,0.583706901511692,-6.57831975911329 +"P54192",-0.055673029577715,24.3684064930687,-0.819852685644163,0.446892934293404,0.58464110933443,-6.58006117817165 +"Q9VUZ0",-0.124395746258632,17.6675819819761,-0.817167751166876,0.448300351344029,0.58602271633373,-6.5823547422677 +"A1Z968",-0.0553571173100664,17.2774844334311,-0.815906019953688,0.448962864964863,0.586429176790439,-6.58343053500128 +"Q9V595",-0.0539539321298008,18.4971982097782,-0.815010137283762,0.449433714809542,0.586584848436867,-6.58419360751928 +"Q9U1K7",-0.0463620841332784,17.74894256412,-0.812923176701478,0.450531967924101,0.587558500779828,-6.58596865225715 +"Q9VF51",0.0652670782983122,17.6867677071723,0.806825551328549,0.453752093958187,0.591295697439263,-6.59113455791435 +"Q9U5L1",-0.0503444434831444,17.6731792899244,-0.804656320783921,0.454901705442856,0.592331026290932,-6.59296498638592 +"Q7K486",0.0571246150168534,17.6598635298432,0.803805363025323,0.455353261828815,0.592456506030002,-6.59368198183274 +"Q9VJ19",-0.0676792656180965,19.1180444987588,-0.801864112298273,0.456384600513969,0.59333555234396,-6.59531540188169 +"Q9V8Y2",0.0512682554642936,19.9815438191341,0.801116144500385,0.456782431487582,0.593390261465177,-6.59594393402231 +"Q9VAA9",-0.0740653173177002,17.1762299697851,-0.798475582557381,0.458188919701261,0.594754177479924,-6.59815916203635 +"Q6IGW6",-0.0970086620484718,15.662664330947,-0.796093430429004,0.459460466472513,0.595940947182078,-6.60015266360218 +"Q9VNI8",-0.0604904291608168,15.7698578326431,-0.794407367265684,0.460362001686343,0.596646323863885,-6.60156080597731 +"Q9VG26",-0.0445681676566316,19.6223387730668,-0.793349009391642,0.460928558942563,0.596916798382139,-6.60244350684386 +"P22812",0.198828209232859,11.4260895024291,0.784577772827497,0.465643385138608,0.602554822661907,-6.60972312744329 +"P23625",-0.0436910178299854,22.2070968711381,-0.78390785717277,0.466004911328853,0.602555187671726,-6.61027648150196 +"Q9VIK0",0.118843234829924,12.8484469990554,0.781303264905846,0.467412423401548,0.603906988562186,-6.6124243205903 +"Q9VXA9",0.0441366166879789,14.302921086731,0.778908752727945,0.468709102419042,0.605113609005388,-6.61439390340105 +"Q9VKJ4",0.0623438067047495,15.1431744887339,0.776814730767329,0.469845173546937,0.605759202617101,-6.61611237378274 +"Q7K9H6",0.0977138821286214,12.0196827305672,0.776648402036209,0.469935496514706,0.605759202617101,-6.61624871425808 +"Q9W3L4",-0.0649531266567056,17.5689630647247,-0.762412564747112,0.477712154477869,0.615300382257528,-6.62783128298701 +"O46106",-0.0503107629216188,17.0046135230087,-0.761433238502619,0.478250476832629,0.615300382257528,-6.6286217606397 +"Q9VL69",-0.0900742532283854,16.0347184745272,-0.761081364278854,0.478444002270992,0.615300382257528,-6.62890558150941 +"Q7K084",0.0476353553617379,23.548011102026,0.758122083820231,0.480073755876978,0.616920666257935,-6.63128834915948 +"Q9VPX5",-0.0432948943657507,18.7191322477615,-0.753763644210969,0.482481202021077,0.619537063103277,-6.63478406209769 +"Q7JQW6",-0.0508958656256731,15.8824038594246,-0.751676139138788,0.483637274543356,0.620543826106398,-6.63645259009105 +"Q9VG97",0.046444047728194,20.0327682390386,0.747567328003548,0.485918446750337,0.622524239269098,-6.63972578833771 +"Q9VDK9",0.0499043344149364,15.4562519324788,0.747551598759418,0.48592719396185,0.622524239269098,-6.63973829077186 +"Q9W404",-0.0457688844653052,16.0388411148516,-0.746781764540778,0.486355442508367,0.62259468772368,-6.6403499348945 +"Q9VM10",-0.0488282819455961,16.9407568567544,-0.744997652474431,0.487348937133342,0.623388057621483,-6.64176547080149 +"Q7JXF5",0.0510696752860227,18.4992485343383,0.743753860944076,0.488042390780913,0.623796710975143,-6.64275068308728 +"Q7JXB9",0.100481111007348,16.255104809087,0.738959624048859,0.490721783866221,0.626741145091008,-6.64653568635454 +"Q9W5P1",-0.0762211848874959,14.2205267758191,-0.73789225795795,0.491319704738786,0.627024688220578,-6.6473756479093 +"Q9VE52",0.0588996573322422,16.0116502950805,0.735263477603452,0.492794466407171,0.628262862338208,-6.64944013736444 +"A8WH76",-0.0510110704944644,18.9684433847411,-0.733923113686848,0.493547601976062,0.628262862338208,-6.65049046447553 +"E2QCN9",-0.0545084886893896,17.4552524182259,-0.733206464071916,0.493950607141035,0.628262862338208,-6.65105139819347 +"Q9VWD9",-0.046639113501314,19.4345085175801,-0.732853057409471,0.494149428071739,0.628262862338208,-6.65132785060685 +"Q9VX02",0.0443388822907824,17.1463669424292,0.732810832782478,0.494173186683291,0.628262862338208,-6.65136087353953 +"Q9VMV5",-0.0468530805818226,17.6969332964615,-0.723850270166579,0.49923295182992,0.634212158151033,-6.65833344688495 +"Q9VCF8",-0.0578739135514912,16.9755972657197,-0.717409747780868,0.502891705190181,0.637978205103369,-6.66330151576737 +"Q9VKI8",-0.042492763202624,22.3921095926027,-0.717285561127061,0.502962433879454,0.637978205103369,-6.66339695096903 +"O44226",-0.0401388800550642,20.1545873696855,-0.714256563821128,0.504689664949505,0.638909743352783,-6.6657204585401 +"Q08012",-0.0551809269598529,19.2482230914264,-0.714127315961316,0.504763456352262,0.638909743352783,-6.66581942242071 +"P54353",-0.0499023254321713,18.8781927887064,-0.713681221485698,0.505018201454205,0.638909743352783,-6.66616087913533 +"Q9V9A7",0.207088665219061,16.0503278595243,0.713312221388294,0.505228987699233,0.638909743352783,-6.66644319181425 +"Q3YMU0",-0.0391251631539618,23.1484203918996,-0.707657302438975,0.508466794412749,0.642343536136857,-6.67075451263291 +"Q9VXH4",0.0777337731643186,17.0808228763996,0.706623823713102,0.509060050650449,0.642343536136857,-6.67153936599619 +"Q4V6M1",-0.042027370959687,18.2089889334656,-0.706554933160101,0.509099613173217,0.642343536136857,-6.67159164963826 +"Q9XYW6",0.0420854874457799,16.5872589832714,0.703108394513549,0.511081559380991,0.644356795954266,-6.67420195619781 +"P55828",0.0464541600168573,20.001520088866,0.698698495931469,0.513625102415812,0.647074524795751,-6.67752640513948 +"P48159",0.0437159042315116,19.9657387704048,0.697402025816147,0.514374504427454,0.647400192536623,-6.67850045007516 +"Q9V5C6",0.059008606595377,20.5731788527061,0.696908684674027,0.514659865289905,0.647400192536623,-6.67887070389119 +"Q9VRJ4",-0.0415322846539645,20.651034987492,-0.69594203084372,0.515219311355263,0.647615532283782,-6.6795955466921 +"Q9W0M5",0.0638447637666779,13.1537584761335,0.694112013302162,0.516279545941127,0.648459550173043,-6.68096548150645 +"Q9VZV2",-0.0578828366416015,14.9703298355455,-0.692414223599055,0.517264484444599,0.649207795375163,-6.68223373821681 +"Q5LJT3",-0.0651504097092435,17.129943447517,-0.689609900721803,0.518894116988806,0.650763448975435,-6.68432289342308 +"Q7JVZ8",-0.0553703699827999,16.1629704809101,-0.687508485039056,0.520117532245948,0.65180769630822,-6.68588374789305 +"Q9VH37",0.0469673669203168,16.7697507951935,0.681478451824545,0.523638828509405,0.655727902367633,-6.69034045151458 +"P16378",-0.0405838226777036,20.415802051948,-0.67976294738971,0.524643507339192,0.656493150969072,-6.69160232765252 +"Q9VER6",-0.0467448416296854,15.1769244333377,-0.678558488405495,0.52534965900603,0.656883981425831,-6.69248669466404 +"Q9V405",0.0422107736287707,20.140580928119,0.676138666826761,0.52677026015888,0.657572590419041,-6.69425944278868 +"Q9VDL1",-0.0467129085037765,14.8934351843246,-0.675711109495888,0.527021529916425,0.657572590419041,-6.69457211428573 +"O16158",-0.0431472825223373,21.2011053528627,-0.675606421785958,0.527083065581689,0.657572590419041,-6.69464864671394 +"Q9VMR0",0.0474002792888619,17.2465631710377,0.67090691792849,0.529850338791974,0.660530915624076,-6.69807393300042 +"P05205",-0.0447666021107693,18.0311925889871,-0.66779637488576,0.531687221791342,0.662325829684808,-6.70032997472091 +"Q9VRG6",-0.0451257200585129,16.2748663050566,-0.660719091685602,0.535882169863909,0.666708351620654,-6.7054299460984 +"Q9VVK7",0.0406376576904535,18.2277880461788,0.660476214989172,0.536026514345983,0.666708351620654,-6.70560414752066 +"A1Z934",0.042631184637802,19.2650959288734,0.659840510546255,0.536404441172013,0.666708351620654,-6.7060598440261 +"Q9VJD1",-0.0369901310061422,18.5156776063066,-0.653158492712443,0.540387413341844,0.671158753130452,-6.71082717168326 +"Q9VD09",-0.0663217218963794,14.6794894711602,-0.650970897219268,0.541695542192002,0.672282860399003,-6.71237894075085 +"Q9VEK8",-0.0483995165581099,18.8688679092981,-0.649481653341708,0.542587245843298,0.672888866964031,-6.71343279283244 +"Q9W552",0.0379558893631611,16.1094347257235,0.648402391473076,0.543234060366841,0.672981814670386,-6.71419523599843 +"Q9VES8",0.0419511999029378,17.926196684684,0.648010369113273,0.543469127314754,0.672981814670386,-6.71447191145934 +"P08736",-0.0399774006909404,24.4166368804709,-0.641302682139953,0.547501394165279,0.677169126017884,-6.71918376855878 +"Q9VIE7",-0.0416776540476107,15.0389719499289,-0.640763706913374,0.547826226390375,0.677169126017884,-6.71956055189854 +"Q9V3G3",-0.0760747925936123,14.8906749847987,-0.640361788050673,0.54806853724469,0.677169126017884,-6.71984134591117 +"Q8IPG8",0.0355667707400951,15.8901269692809,0.639014184219003,0.548881488574534,0.677293960268132,-6.72078172406414 +"Q0E980",0.0445334847214909,18.414025808836,0.638848196451434,0.548981675229325,0.677293960268132,-6.72089743521143 +"Q9VLS5",-0.0588796851205853,14.6445491477708,-0.636808786122059,0.550213574548376,0.678312078600659,-6.72231701421389 +"Q9VZ49",0.0543030008694352,18.8299395690919,0.633602641685558,0.552153802707421,0.680201287234844,-6.72454083657715 +"Q9V4E0",-0.14015191604285,18.6279811609669,-0.631850759159329,0.553215810046226,0.680629295942821,-6.72575188342271 +"Q9VF89",0.0936096180785793,14.2648107663569,0.631683385735276,0.553317341306034,0.680629295942821,-6.72586743473778 +"Q7JWQ7",0.0551924147156857,14.602345711244,0.630886203744331,0.553801086548128,0.680722337776182,-6.72641743154493 +"Q9V3N1",-0.0537127321182673,18.4739203044092,-0.625509168404829,0.557070982183297,0.684237406687584,-6.73011153974508 +"P15425",-0.0394052611986311,17.0667649856273,-0.623544821572001,0.558268584003832,0.685203824958345,-6.73145426631487 +"Q76NQ0",-0.059674970421824,14.5651052487029,-0.621677182544519,0.559408730780142,0.68609835510388,-6.73272750127351 +"Q9W1H6",-0.0430677419578522,17.2061963730983,-0.619347495100612,0.560832999502684,0.687339781903362,-6.73431109640531 +"Q24050",-0.0346695434790369,16.6405702375726,-0.617116142446834,0.562199284104868,0.688358186635377,-6.73582301838004 +"O46067",-0.0364499400968086,19.8416933642358,-0.616642884802406,0.56248933356356,0.688358186635377,-6.73614308051138 +"Q9VE08",0.0605058682356407,14.5535523156117,0.615732714978475,0.563047420532763,0.688535995196956,-6.73675802567918 +"Q9W330",-0.0458014104363293,20.6383661470241,-0.610978692128627,0.565968059688811,0.691600530081272,-6.73995719971508 +"Q9VXE0",-0.0361574060667245,17.8677474542672,-0.609861313029326,0.566655890858991,0.691934133201169,-6.74070600016583 +"O15943",0.0366052094780756,20.0452246752024,0.608218783413273,0.567667935365488,0.692662850175299,-6.74180455921258 +"Q7K3W4",-0.0457821029973147,19.3754184471936,-0.605888175806126,0.56910586396397,0.693909781499929,-6.7433588906087 +"Q9VLG9",-0.0366431057132193,15.6199829277685,-0.600610889480623,0.572370148415067,0.697380137002434,-6.74685918139508 +"Q9W4K0",0.0347630433363051,19.658198224641,0.596263309202373,0.575068010825656,0.699819949890912,-6.74972271290659 +"Q0KIE7",-0.079773258716239,14.0047319679265,-0.596032072764231,0.575211721403142,0.699819949890912,-6.74987450675762 +"Q9VH19",0.0647709548396271,13.9985430790054,0.592671939656409,0.577302485459318,0.701851709727509,-6.7520744253479 +"Q9VVJ7",-0.0338640652800279,18.1935677343594,-0.59159759262391,0.577971951751996,0.702153835049038,-6.75277551222119 +"P25455",-0.0405574383347957,15.7269055927369,-0.589710642608583,0.5791489280222,0.70307162441123,-6.75400417738321 +"P04388",0.04319568681459,16.5811416299233,0.584357919984083,0.582495595151664,0.706620111063983,-6.75747076552551 +"Q8T3L6",-0.037756457865612,17.4803268545899,-0.580736864560031,0.584766207341835,0.708859036225422,-6.75980009340378 +"Q7JZW2",0.0333247603130467,20.6017725171317,0.577964594407763,0.586508186117784,0.710454360526118,-6.76157479208729 +"Q9V3U6",0.0399664799345949,21.0720061606284,0.576790826419338,0.587246672708061,0.710832692363603,-6.76232393389391 +"Q95TK5",-0.045560494584489,17.1323643829886,-0.57422068032969,0.588865651721582,0.712275494613197,-6.76395959704248 +"Q9VYT0",-0.0345912635955337,18.3380061028684,-0.572075044407969,0.590219270048133,0.713395465536438,-6.76532015153761 +"Q9VN93",-0.0325587215510161,20.2897377915348,-0.571256821631577,0.590735952073023,0.713502945733384,-6.76583780219823 +"Q9VDC6",0.071324010639783,16.9286423615865,0.570187568085066,0.591411558979045,0.713542578656461,-6.7665132794423 +"Q8SY33",0.0318963714211122,17.3557857618894,0.569850971899353,0.591624332303289,0.713542578656461,-6.76672568471008 +"Q9Y128",-0.0536865198438203,14.3117415945268,-0.563025966161338,0.595948460020506,0.718238461932228,-6.77100853212555 +"A1Z7K6",0.0366815756248027,15.5799929013369,0.561823218347808,0.596712421514619,0.718639941578617,-6.77175853543351 +"Q9VUW4",0.0336991146957875,14.5030658755355,0.559395978261269,0.598255916089284,0.719662652046146,-6.77326775879587 +"Q9W380",-0.0400557163243178,18.3632369204811,-0.558882692850861,0.598582618031162,0.719662652046146,-6.77358616783411 +"Q9V8M5",-0.0407089414912498,19.5983404088349,-0.558453350035942,0.598855971846553,0.719662652046146,-6.77385230454447 +"Q95SN8",0.0443651897690316,17.728385152693,0.555953398474279,0.600449097647552,0.721057663697709,-6.77539833196942 +"Q9VC67",-0.0528776437316196,15.3831911478631,-0.555241328956821,0.600903327679067,0.72108399321488,-6.775837561447 +"E1JGR3",0.0486821518470943,12.2903174198223,0.549116850569094,0.604818438713031,0.724958384450103,-6.77959461694594 +"Q95TN1",0.0471727107582893,13.9919135825552,0.548831454421683,0.605001241699367,0.724958384450103,-6.77976878557867 +"Q9VTZ6",-0.0727853467384669,17.2577667766245,-0.547328226315923,0.605964625101344,0.72529529012504,-6.78068482445977 +"Q961T9",-0.0390941440679988,18.0994068153855,-0.546495723754101,0.606498539461867,0.72529529012504,-6.78119116929957 +"A1Z9M5",-0.0636044657851773,15.2417290508711,-0.545819090952884,0.606932689826767,0.72529529012504,-6.78160220313823 +"Q9U6M0",-0.0396664211717521,16.2236332454183,-0.545680373850836,0.607021717634626,0.72529529012504,-6.78168641328529 +"Q9VGG5",0.0317924027976382,16.9159204659787,0.541563879547968,0.609667099052134,0.727934660858239,-6.78417666487629 +"Q9VIG0",-0.0425790579368623,17.3326263483144,-0.539021981112206,0.611303914374499,0.729118111331674,-6.78570593259157 +"Q9VCH5",-0.0310405834318743,18.0327620977374,-0.538667284206641,0.611532516638497,0.729118111331674,-6.78591881376692 +"Q24319",-0.0459572765545886,16.2999973914657,-0.537171033413055,0.612497391160489,0.729746891754069,-6.78681544587725 +"Q9VTZ5",0.0364678713044491,18.0690975977093,0.53429797460888,0.614352561646505,0.730726336052461,-6.78853085338382 +"Q9VQ88",0.0401913407305425,16.3117995939912,0.534235850041691,0.614392711733497,0.730726336052461,-6.78856785458241 +"Q9VXA3",-0.0386005720096172,17.7197299943257,-0.533862980485167,0.614633722710793,0.730726336052461,-6.78878985325873 +"Q9VMQ7",0.0361823854433663,15.9643053284758,0.526467438655586,0.619425094121056,0.73589818874211,-6.79316417232121 +"P53034",-0.0678941043567676,15.6969972146668,-0.523110304148944,0.621607054871267,0.737964816743967,-6.79513169774272 +"Q9W0N6",-0.0562026087213425,14.4602962360201,-0.522182374973206,0.622210923762405,0.738156344833351,-6.79567352761282 +"Q9VKW5",-0.0574279880763005,17.0898493669866,-0.52081870033144,0.623098961899412,0.738585472425015,-6.79646821802463 +"Q9V470",-0.0431242344321632,19.8538952412781,-0.520038594487925,0.623607294551306,0.738585472425015,-6.79692198547972 +"Q9VW90",-0.0846323964035207,15.3058152109402,-0.519436781774771,0.623999606864478,0.738585472425015,-6.79727162429404 +"Q9V3F3",0.0609002072714411,14.5630901327025,0.518908906306446,0.62434383460388,0.738585472425015,-6.79757800597707 +"Q9VXF9",-0.0354315163023333,17.5128840301717,-0.517100426353722,0.625523951429636,0.739457087870044,-6.79862552077149 +"Q9VKV2",-0.0440525369707654,14.9734523375637,-0.515297785976922,0.626701498256869,0.740202310489181,-6.7996663590977 +"B7Z0N0",-0.0320321327406958,12.9562763273068,-0.514777058912276,0.627041885324468,0.740202310489181,-6.7999664124059 +"Q9VY87",-0.0463233051767382,17.5263393008888,-0.51112958564469,0.629429039057345,0.742494792890843,-6.80206045098426 +"Q9Y0V3",0.0295189921151984,15.1806644470882,0.510021573601419,0.63015519537295,0.742826053626912,-6.802693893908 +"Q9VFR0",0.0731678811641956,15.6448773386498,0.506924311447783,0.632187503327727,0.744664895921696,-6.80445795755176 +"Q9VSU7",-0.0351035910966306,14.7283075063207,-0.506284144236944,0.632608008106141,0.744664895921696,-6.80482135134907 +"Q9W087",-0.0644050435593808,16.743223981255,-0.496375952556818,0.639135960911978,0.751818605642581,-6.81039247677176 +"Q9VXK7",-0.0329017504963716,18.0156463496238,-0.487631296224132,0.644927648473393,0.758096770721367,-6.81522589011991 +"P36951",0.0368663006775911,20.4534400965224,0.484015542334552,0.647330633353577,0.76038556086885,-6.81720144976431 +"Q0KI98",-0.0394890780521813,16.609362449882,-0.479417798893997,0.650393137449334,0.762832976119755,-6.81969407853958 +"Q9V3I0",0.0525472460438738,16.2156563351825,0.478960039228215,0.650698467169992,0.762832976119755,-6.81994105443096 +"Q9VEP9",0.0383450953316249,17.5661982659005,0.478828579429374,0.650786166078184,0.762832976119755,-6.8200119411454 +"Q9VHK6",-0.04178705886196,18.0120801068392,-0.475895615166524,0.652744422462832,0.764202577381422,-6.8215888283257 +"P54397",-0.029882627592837,15.0212512230022,-0.47570633421224,0.652870906935568,0.764202577381422,-6.82169028812329 +"P46415",-0.0355938451020776,18.0142310278459,-0.47336511426947,0.654436465779418,0.765497913688689,-6.82294217840405 +"Q9VP77",-0.0304958718102508,15.4980391057404,-0.465530200302069,0.659689950469708,0.771102198586877,-6.82709027797574 +"Q9VBU0",-0.0285402744974466,14.1520476825709,-0.464090942625086,0.660657390324702,0.771692245841459,-6.82784533666409 +"Q9VD00",-0.0323938558839174,17.986315501057,-0.463233410967349,0.661234156006607,0.771825452917439,-6.82829418649922 +"O62602",-0.0443676726556443,14.551165398685,-0.459366442855254,0.663838272475324,0.774323243698489,-6.83030871400023 +"A0A0B4KH34",-0.0304465099236104,23.4260933875951,-0.455069981393801,0.666737812073769,0.776688610369131,-6.83252867771006 +"Q9VMX3",-0.045916963403398,12.5372662588071,-0.454981762480723,0.66679741609628,0.776688610369131,-6.83257405782167 +"Q9VHL2",-0.0274230757043341,20.6808536188978,-0.450215501111574,0.670021730575709,0.779527648578747,-6.83501372357581 +"O62619",0.0342366028585737,22.2259469187173,0.449997414209598,0.670169453274535,0.779527648578747,-6.83512478419535 +"Q8SZM2",0.0263799143877961,21.2213172149692,0.447291213068465,0.672003893385383,0.781116720673742,-6.83649876282342 +"Q9VNE2",-0.0292037270362329,19.0696713206014,-0.445904293605817,0.672945022743689,0.781665945638213,-6.83719994151934 +"Q9W3N9",0.029175692545202,20.1601103376909,0.444433345381687,0.673943898975858,0.782281435971977,-6.83794139277994 +"Q0E8X7",-0.0481060567757545,21.0288766127559,-0.441217060395617,0.676130579271101,0.783704856057758,-6.8395546730408 +"P05812",0.0392221245624427,15.6330812017836,0.44015322923953,0.676854636872008,0.783704856057758,-6.84008589016371 +"Q8MSV2",0.0525342836739107,18.0217296854937,0.4400604540939,0.676917799266258,0.783704856057758,-6.84013216027701 +"Q9VB17",-0.0381616599428991,15.5740114975358,-0.439855706729756,0.677057204082021,0.783704856057758,-6.84023424262558 +"Q9VE94",0.0371835993769754,14.8028975090761,0.439176980694715,0.677519425920436,0.783704856057758,-6.84057232376658 +"Q9VV60",0.0323604223087663,20.1813562695757,0.437704100631796,0.678523019676551,0.784116498238088,-6.84130431070783 +"Q8IPX7",0.0242883777107252,15.3936133451596,0.437245289486491,0.678835796638179,0.784116498238088,-6.84153186150076 +"Q9W077",-0.0262825184532929,20.8388246256511,-0.436585695398731,0.679285575512013,0.784116498238088,-6.84185860270348 +"Q9VAV2",0.0310175197282483,17.7794089477715,0.434482799719309,0.68072053442599,0.785229496142843,-6.84289724010386 +"P80455",-0.0296186980097346,20.6041488070881,-0.433196530942639,0.681598989869264,0.785699457568716,-6.84353023505999 +"Q9W0K9",-0.0515133425660288,14.2051930996156,-0.4320446316473,0.682386153775317,0.786063608078196,-6.84409561923102 +"Q7K2D2",-0.0242783700686786,20.2893382211532,-0.430607134367517,0.683369113807136,0.786652644465357,-6.84479921313729 +"Q9VHN4",0.031749754474184,14.5641110070432,0.425643589207654,0.686768533530293,0.789797681032233,-6.84721182502802 +"P40417",-0.0305595572488393,19.7228090722269,-0.425235747501957,0.687048222528639,0.789797681032233,-6.84740890124989 +"Q9W125",0.0245707581150363,21.318732787128,0.423283701987849,0.688387662478622,0.790233636031833,-6.8483497176317 +"A8JNT7",0.0235225088693749,16.782634044303,0.422877769532881,0.6886663617951,0.790233636031833,-6.84854485414211 +"Q8I0J3",0.0415084376766384,14.9438315386109,0.422612167025,0.688848745078109,0.790233636031833,-6.84867243760756 +"P40796",-0.0317593952923545,18.5522525563548,-0.420582813478852,0.69024303094361,0.791288917947726,-6.84964477144594 +"Q9VB10",0.0231143534951421,20.9198173881329,0.416815416315496,0.692835073651553,0.793172964280998,-6.85143824076933 +"Q9V4C8",-0.0258479846816329,17.1543864700039,-0.416811841607412,0.692837535346172,0.793172964280998,-6.85143993532901 +"Q8SXX1",-0.0260262983051014,19.8341059876386,-0.414871946862254,0.694174049019485,0.793618474063589,-6.85235751589856 +"Q7K1C3",-0.0251758373982263,16.9682784863624,-0.414865823735245,0.694178269579602,0.793618474063589,-6.85236040581607 +"Q7KLX3",-0.0279322337004935,19.3701852231209,-0.413566786841157,0.695073950233667,0.794098184239559,-6.85297260455401 +"Q9VW73",0.0334048946748862,14.1475603888202,0.410506886219292,0.69718592166749,0.795965857180954,-6.85440752678593 +"P35992",0.025267106894665,15.7888339539108,0.408013225578706,0.698909325720733,0.796949105594256,-6.85556951277189 +"Q9W396",-0.0307928446927033,16.588262403293,-0.407878169241757,0.699002722712468,0.796949105594256,-6.85563225587726 +"Q9VVM1",-0.0449956413352748,15.5441130778754,-0.407183019645302,0.699483540672892,0.796952558635508,-6.85595489257885 +"Q9VH07",-0.0312709027961091,18.1981030105853,-0.400789429618999,0.703913142646897,0.801451960365204,-6.85889803941744 +"A1ZAA9",-0.0307840910157609,16.4329448383797,-0.397443295554996,0.70623663258742,0.803548910747488,-6.86042087005594 +"Q7JR49",-0.0257489961058006,18.9419275927464,-0.39443978066211,0.708325246923135,0.805375945376816,-6.86177752144346 +"Q9V3V9",-0.0220560521392166,19.5349556233304,-0.386752443587753,0.71368389451742,0.810387561791489,-6.86520552564356 +"A1Z6V5",-0.0249607400551,20.0478663705421,-0.386722743930934,0.713704633256413,0.810387561791489,-6.86521864591333 +"Q9V564",-0.0445701497004141,14.0893877122403,-0.382786930855697,0.71645536437424,0.812957515494035,-6.86694891549325 +"Q9VWD5",0.0389991441079385,14.4018702163027,0.381412590344539,0.71741701697537,0.813335523962318,-6.86754915852508 +"Q9VSR8",0.0291294927565193,15.4430291319501,0.380917300154248,0.717763723784491,0.813335523962318,-6.86776497519902 +"Q9VUH8",-0.0282375313215244,15.4109167003921,-0.380162849718714,0.718291989723119,0.813381560664061,-6.86809320723295 +"Q9VL93",0.0454667549869896,15.3665030011977,0.377351861928912,0.72026177980773,0.815058784748503,-6.86931072842294 +"Q7PLI0",0.0278832582386634,17.6622542067289,0.376234476138616,0.721045455241164,0.815341677659709,-6.86979232111238 +"Q9VI53",-0.0345213698665852,16.2855847364688,-0.375184227984269,0.721782390767193,0.815341677659709,-6.8702437423879 +"P53501",-0.0229841656309873,24.8335472390862,-0.374905232311976,0.721978212172296,0.815341677659709,-6.87036345999543 +"Q9VYU9",0.0263028621117982,17.9422249693455,0.370119038242155,0.725341216659398,0.818585351412635,-6.87240405707005 +"Q9VEP6",-0.0281358512605756,18.7507506529069,-0.369052230531785,0.726091747452361,0.818878319642014,-6.87285549671215 +"Q8I937",0.0354580263223063,14.1452932954438,0.365994893547896,0.728244563953648,0.820751305861273,-6.87414240289767 +"Q23970",0.0235411525282814,21.5080202469237,0.362854034275453,0.730459094458659,0.822691269113466,-6.8754538586842 +"Q9W0H6",-0.0251935508094938,18.1664599336723,-0.36115063129389,0.73166133842302,0.82348927968259,-6.87616060843082 +"Q5U126",-0.022536109088545,21.4668793501891,-0.358680652051287,0.733406143432719,0.824896458021427,-6.87717978629627 +"Q9W0Q2",0.0256153379478903,15.4984274842732,0.35091883286786,0.73890073230909,0.830516456530702,-6.88033908744953 +"O77430",-0.0202798666966828,19.545303392326,-0.347627008646507,0.741236275250494,0.832580543513686,-6.88165902926953 +"Q9VAS1",0.0369935236919456,13.0933527255797,0.344595147717604,0.743390117171476,0.834437897336488,-6.88286421009724 +"Q7K0B6",-0.0205925329420253,20.180512786865,-0.343710606265318,0.744018990450493,0.83458216279181,-6.8832139170774 +"Q6NP72",-0.0279895585517949,18.7382294261919,-0.342879496401094,0.74461007807205,0.83468387783883,-6.88354171592691 +"Q9VC58",0.0706101616372692,13.2713969988053,0.337265370433056,0.748607957152704,0.838601794849369,-6.88573608165836 +"Q9VN71",0.034882094641695,18.6569873788367,0.335674075929785,0.749742739706774,0.83930932203416,-6.88635174861268 +"Q9VB68",-0.0187401491421184,15.5318547380187,-0.331459026315626,0.752751965646911,0.841758428648215,-6.8879690408881 +"Q9V3E7",-0.0198836612334752,18.7748300873409,-0.33109332595263,0.753013279072425,0.841758428648215,-6.88810843361421 +"Q9VYT1",-0.0246066437265018,14.2766894398267,-0.329753736887284,0.753970804178691,0.841758428648215,-6.8886177783598 +"Q9VU45",0.032709698064604,17.9193562676133,0.329650813599408,0.754044393082478,0.841758428648215,-6.88865683030711 +"A1ZBM2",0.0295381379056607,18.5164210091474,0.329078354224763,0.754453747499449,0.841758428648215,-6.888873823611 +"Q7JV09",0.0324255168054055,15.2248931891329,0.3269596866587,0.755969543196068,0.842885827574225,-6.88967376240462 +"Q9VD58",-0.0189308232978007,22.7329668592938,-0.325873559869576,0.756747083648437,0.843189135287637,-6.89008192297369 +"A1ZA83",-0.0240928897787001,16.9876573546321,-0.32196127839663,0.759550466712954,0.845747782695065,-6.89154131334457 +"Q9VPU6",0.0234422023476597,15.3624877383769,0.320816324216963,0.760371673597483,0.846097365951036,-6.89196520595437 +"Q9V6B9",0.024517020372123,15.9853912296116,0.317508620478184,0.762746057679557,0.847842139438949,-6.89318164002352 +"Q9V3W2",-0.0195801504407989,21.5900408733001,-0.317215979271644,0.762956265766105,0.847842139438949,-6.89328867661304 +"O97422",-0.0230522186044979,15.4641689653631,-0.315041148438848,0.764519185779147,0.848526838039877,-6.8940811646578 +"Q9VAD4",-0.0360003076335129,13.228546725425,-0.314942885837412,0.764589830679817,0.848526838039877,-6.89411684659585 +"Q9W197",-0.0181579880974105,17.4083176688835,-0.314057798013552,0.765226270155406,0.848668496422352,-6.89443776359054 +"P13496",-0.0195848811170727,18.277612723638,-0.312799881419486,0.766131153464893,0.849107484371722,-6.89489236368957 +"Q9VJ60",0.0240520654353382,16.5218249867512,0.310926371889369,0.767479631916054,0.849628555792884,-6.89556617221117 +"Q9W1C8",-0.0311651312033874,15.8612075955688,-0.310731363231489,0.767620044112635,0.849628555792884,-6.89563608282368 +"Q9VG73",-0.0193255954759941,18.0156481124971,-0.309663102131583,0.768389400361613,0.849916127190431,-6.89601830368708 +"Q27272",0.0275243788030171,15.8254384028859,0.307229797684383,0.770142958816969,0.850607180276815,-6.89688419100097 +"O18332",-0.0173475158782104,20.5318076009291,-0.306897851413741,0.770382294180607,0.850607180276815,-6.89700180240747 +"Q9VZZ6",-0.0205486647167668,18.426551487802,-0.306673548039958,0.770544034411431,0.850607180276815,-6.89708120551568 +"Q8WTC1",0.025178384857556,15.0542706878225,0.301937569952542,0.773962056289775,0.853642352324928,-6.89874464257533 +"Q9VR89",-0.0243777482592691,14.007461455632,-0.301367866171121,0.774373605075525,0.853642352324928,-6.89894305624238 +"Q8IMX8",0.0190387758561954,17.1331226344382,0.300737807211013,0.774828849772147,0.853642352324928,-6.89916206826127 +"Q9VCU0",0.0316218744211039,17.3687739306255,0.298507526609807,0.776441129959068,0.854853996548994,-6.89993376478364 +"Q0E9F9",0.0201347621244068,18.6637772713316,0.296717355201034,0.777736159055572,0.855714982390959,-6.90054915948264 +"Q9W078",-0.0167824960359901,19.425942776117,-0.29525847605592,0.778792121233911,0.856311969820806,-6.90104801893987 +"Q9VEC2",-0.0210304473245273,16.6335531717303,-0.294340447152205,0.779456878657215,0.856478309354569,-6.90136071609879 +"Q86BL4",0.0184359895581601,14.8995040941033,0.291794211233332,0.78130173787796,0.857940288861381,-6.90222307488844 +"Q7KSM5",-0.0194669593294385,18.8966613253667,-0.287744231016215,0.784239416014621,0.860419833158788,-6.90357976346427 +"Q9V3W7",-0.0168752328576929,17.9630846593338,-0.287259253311218,0.784591466567456,0.860419833158788,-6.90374099202399 +"Q9VYG8",-0.0263140671894053,15.0667730685249,-0.282100206289439,0.788340000811267,0.863962629009983,-6.90543975991853 +"Q9VGQ1",-0.0190627496702724,22.4311746782961,-0.280134335438893,0.789770074468235,0.864532146819293,-6.9060792176085 +"Q7JW03",-0.0324590322257841,17.2491272752424,-0.279960908762436,0.789896278029138,0.864532146819293,-6.90613542133087 +"Q0E8C8",0.0226294526820965,17.5988203036762,0.279124072933963,0.790505348642542,0.864631423957876,-6.90640614606511 +"O97365",0.0261434638903317,18.0043436611987,0.277839493373911,0.791440621841613,0.865087127936966,-6.90682018851645 +"Q9W2D9",-0.0194006239065381,17.6592324768098,-0.272888469650167,0.795048983890416,0.868462151361633,-6.90839862330166 +"Q5U117",-0.0158553098110108,14.6075392056676,-0.270963207296783,0.796453681673036,0.869427186538366,-6.90900496243755 +"Q9W3X8",-0.0216801250192322,13.817632319952,-0.26698283108991,0.7993605295161,0.871554882088292,-6.91024528721195 +"Q9V3Z4",-0.0174964596227731,18.6903520933925,-0.26623665728809,0.799905860080887,0.871554882088292,-6.91047581328379 +"Q9VRJ5",-0.0166088482644042,17.3565702068142,-0.266148443288679,0.799970338415573,0.871554882088292,-6.91050302495545 +"Q9VP18",0.0210557140229071,17.2074324544002,0.264940561047888,0.800853394686315,0.871572738141408,-6.91087474094151 +"Q9VF28",-0.0216317594661035,17.7219088524027,-0.264696614113915,0.801031779119171,0.871572738141408,-6.91094961372201 +"Q9VKC7",-0.019426243191722,13.7861920415993,-0.259285907051334,0.80499176285342,0.875310469647656,-6.91259299929907 +"Q9VPB8",-0.0196359502167081,15.5615608027712,-0.258329832198708,0.805692174028419,0.875501333081044,-6.91287994595469 +"Q7KNM2",-0.0169945418808268,19.5485006939257,-0.256180296191668,0.807267641653025,0.876642204607582,-6.91352130980942 +"Q9W503",0.0170381722186335,17.9344747313062,0.254200615432159,0.808719515441038,0.877647463731719,-6.91410736710167 +"Q9VRZ7",-0.0140082849149188,17.3325233017609,-0.253104215866232,0.809523970107509,0.877949273172513,-6.91443003147865 +"Q9VJQ6",0.0189811741322412,14.246610165966,0.251454042481626,0.81073523444256,0.878495123022102,-6.91491310100218 +"Q9W1G7",-0.0165920257297785,18.9755973120068,-0.250983638978157,0.811080629169087,0.878495123022102,-6.91505024104198 +"Q9VU95",0.092679989848353,16.9412018837252,0.249799883502087,0.81195001516778,0.878866077417169,-6.91539423969197 +"Q9W0R0",0.0149966328042535,16.8151246802544,0.24713250672567,0.813910119635939,0.880056923346113,-6.916163552859 +"Q9VSC5",0.0138502199116992,19.440175245371,0.246866854916902,0.81410541530159,0.880056923346113,-6.91623972900161 +"Q95SH2",-0.0158563718684199,18.7603846167276,-0.246029335690569,0.814721221202105,0.880152200106937,-6.91647936488038 +"Q9VQL1",0.014375438955895,20.1878587359893,0.24448347511424,0.815858242068672,0.880810063281906,-6.91691958426497 +"A1ZB69",-0.0188694080429919,20.5754263554274,-0.242617160038511,0.817231636445565,0.881722101934801,-6.91744744446462 +"Q9VQV7",-0.0197871135655188,16.2751973873036,-0.240498319606582,0.818791744003993,0.882339734418662,-6.91804193079595 +"Q9V393",0.0283196227071123,15.7244562175851,0.24040285656677,0.818862055683507,0.882339734418662,-6.91806859487638 +"Q9VCR9",-0.0152289847903333,19.3520143540518,-0.239053369766397,0.81985619930341,0.882840632949056,-6.91844441573121 +"Q95T12",-0.0181913235997246,15.864588869188,-0.236735062152834,0.821564933370353,0.884109876684999,-6.91908520957423 +"Q9VHF9",0.0222687444967171,16.8293426568946,0.235450177338321,0.822512446247501,0.884558839678163,-6.91943772530742 +"Q9W306",-0.0172497324320418,14.5915037406938,-0.233896106678907,0.823658914011792,0.885221049337415,-6.91986158253621 +"Q9VH25",0.0211479292270784,16.1240692870709,0.231985659612365,0.825068957103171,0.886165499322659,-6.92037886896444 +"Q9VCY3",-0.0161456165742742,17.8109139449931,-0.23004621283056,0.826501154057038,0.886663477717695,-6.92089975386595 +"P08928",0.0130363208605075,22.7009349202238,0.2299181516566,0.826595748112119,0.886663477717695,-6.92093399687494 +"Q9VLV5",-0.0126515845731099,17.4787227506474,-0.228851088331765,0.827384075246539,0.886855405253642,-6.92121859807727 +"Q9VQ35",0.0376347723049477,11.9847190667013,0.228236737437064,0.827838049148633,0.886855405253642,-6.92138186540538 +"Q9VBC1",-0.0237280315039392,13.1301214096978,-0.226786283810048,0.828910156281854,0.887166396504386,-6.92176562397183 +"Q9VJ25",0.0257585577323614,15.7114810246674,0.226404943935824,0.82919209361531,0.887166396504386,-6.92186611978731 +"Q9W415",0.0290991810000865,16.665321222977,0.223294268709944,0.831492983047763,0.889000405101584,-6.92267968825022 +"Q7KTP7",-0.0161793109937172,17.8754436952039,-0.222646711854171,0.831972201656819,0.889000405101584,-6.92284766156664 +"O97064",-0.0136409442960037,16.5230286029297,-0.216273866591601,0.836692661622265,0.893083941890777,-6.92447518839086 +"Q9VGZ3",0.0166639293483541,17.211897723849,0.216041898932655,0.836864629001969,0.893083941890777,-6.9245335535445 +"A1Z7P1",0.0440044243742257,14.5927483308554,0.213366035362432,0.838849088570388,0.894629334869186,-6.92520237362694 +"Q9VXB0",-0.0118974768358378,20.1852313364448,-0.211280997772527,0.840396306782313,0.89570673464083,-6.92571783833579 +"Q9VMQ9",0.0136100356059146,22.074117139095,0.209080230734826,0.842030271848183,0.896875155455153,-6.92625651279273 +"Q9VN86",0.019255758226608,15.3831363683247,0.206875550316809,0.843668028640675,0.897061156367618,-6.92679058066489 +"Q9VZI3",0.0147223161753107,14.4450158437832,0.206516191402523,0.843935063509177,0.897061156367618,-6.92687710468009 +"Q9V3I2",0.0126074023781069,17.4552484623829,0.206122668110281,0.844227512199278,0.897061156367618,-6.92697168472239 +"Q9VKE2",-0.0136904483794247,24.0719084877492,-0.205546391159966,0.844655825439293,0.897061156367618,-6.92710986767437 +"Q95RB1",0.016527633686243,15.9222371359168,0.205226065341644,0.844893930847439,0.897061156367618,-6.92718651253979 +"Q9W2N0",0.0146042623428908,16.0557417956833,0.204207966088031,0.845650829058499,0.897293627779629,-6.9274293333458 +"Q9I7X6",-0.0211780574077505,14.8807433210715,-0.202756867432134,0.846729957013243,0.897867494150089,-6.9277733711263 +"Q9VGQ8",0.01746522257422,16.2659787145749,0.20114976296244,0.847925536339447,0.898302960394742,-6.92815157608466 +"Q9V4W1",-0.0119414798485877,13.6827849016991,-0.200757096543532,0.848217723394316,0.898302960394742,-6.92824353286009 +"P49963",0.0169258416021076,14.8477933129441,0.197541932732143,0.850611173804351,0.899686534610794,-6.92898981786914 +"Q9VCE1",-0.0124275745877203,13.776566718213,-0.19696180500312,0.851043227063472,0.899686534610794,-6.92912320925436 +"Q7KUK9",-0.0244003278881344,18.3350602840895,-0.196828792368592,0.851142297131794,0.899686534610794,-6.92915373895733 +"Q9VS84",-0.0117338225864643,17.5064214829238,-0.192309959305079,0.854509800657396,0.902674064278997,-6.93017884294664 +"Q9Y112",-0.0103648100977018,22.2076687471042,-0.177443661212737,0.865612293113013,0.91342332617791,-6.93338543897318 +"Q9VN95",-0.012644812316676,17.8879169317772,-0.176639669610133,0.866213742047848,0.91342332617791,-6.93355159595715 +"A8DZ14",0.0114838682652127,19.4435437120706,0.176486470411787,0.866328358521255,0.91342332617791,-6.93358317228356 +"P09208",-0.0291773549765857,12.9637278697546,-0.168381988625906,0.872396882967601,0.919240682747921,-6.93521497887297 +"Q9VEX6",-0.0095793136178699,20.8396864816494,-0.162852377659526,0.876543012967314,0.923026354564066,-6.93628478786814 +"O97111",-0.0131391002450645,14.6638289601684,-0.158688056459437,0.879668357020228,0.925546192423503,-6.93706710677407 +"Q9W5R5",-0.0111224106399099,15.8370888669147,-0.158185465408942,0.880045720134098,0.925546192423503,-6.93716016721068 +"Q9VDK7",0.012473346523759,17.8905325091866,0.15673939799887,0.88113167560841,0.926104369826608,-6.93742629157889 +"Q9VCR2",0.00903240762494129,15.4526552192508,0.155532934473312,0.882037917657169,0.926204439862949,-6.93764646779145 +"Q7KND8",0.012051692685878,15.5078621585748,0.155134240633851,0.882337443010927,0.926204439862949,-6.9377188576559 +"Q7K568",-0.0101785918545225,15.8812364256194,-0.153209743713142,0.883783559570026,0.927138979473461,-6.93806569390601 +"Q9V438",0.0112461045584524,19.0467883461955,0.15185648765988,0.884800732640828,0.927622641134445,-6.93830701009556 +"Q9VF82",-0.0090209651846358,14.901555796265,-0.148982427327562,0.886961831672779,0.929304230672234,-6.93881247818016 +"Q95029",-0.00803453507970531,21.8341596401409,-0.145566926208048,0.88953147603115,0.930918311462978,-6.93940071442107 +"Q9VJ31",-0.00974560147704473,17.2362034719387,-0.144747073738179,0.890148515891234,0.930918311462978,-6.93953989964336 +"Q9VB79",-0.0129315202426827,17.6292546968186,-0.144709651595921,0.890176682723891,0.930918311462978,-6.93954623413496 +"Q9V9U4",0.00984847476547834,16.0217775826567,0.143821405367744,0.890845299090722,0.930976344861052,-6.93969611154715 +"Q9VC31",-0.0161194115368755,17.5763160234626,-0.143153059235467,0.891348454881954,0.930976344861052,-6.93980828058961 +"Q9VL18",-0.00933335755629017,20.9267637464774,-0.140936146821671,0.89301783430535,0.932136262591567,-6.9401766340262 +"Q9VVI2",-0.00815738449565018,13.8661422539062,-0.140000292732137,0.893722736562913,0.932288633262627,-6.94033041892219 +"Q9VZS1",0.0131674822358576,15.3273144484448,0.137873887550329,0.895324787690771,0.933376091167629,-6.94067606061656 +"Q8SXC2",0.0215853773063568,14.7187450199793,0.135995047086409,0.89674078331536,0.934268348888208,-6.94097709020385 +"Q9VL68",0.00742246750765929,20.7617979270005,0.133771718467925,0.89841695531595,0.934925871684383,-6.94132801460718 +"Q9W1Y1",0.0108970375846162,17.7501627884927,0.13319395456304,0.898852629476214,0.934925871684383,-6.94141826679142 +"Q9VXJ7",0.00929027455882192,15.0174555251606,0.132927701449143,0.899053416176109,0.934925871684383,-6.94145972742063 +"Q9VY92",-0.00741675374221273,21.2094901459543,-0.130112293488066,0.901177080943249,0.936550386924199,-6.94189309542403 +"Q9VF77",0.00848083983319903,15.6705929431684,0.127427161749489,0.903203334722052,0.937624820137487,-6.94229782122377 +"Q7KTH8",0.00969557728567239,17.5885377430556,0.126971094513128,0.903547573964044,0.937624820137487,-6.94236573018979 +"Q9W259",-0.00736501994189354,16.8984483762732,-0.126507778590153,0.903897308621751,0.937624820137487,-6.94243447066521 +"Q9VJD0",0.0070055752495719,16.0029021289058,0.124091980432881,0.905721267511536,0.938932923685048,-6.94278884642844 +"P32234",0.0158965410440537,16.8097423908107,0.122555006505994,0.906882039794691,0.939500007253095,-6.94301077068573 +"Q9VTC1",-0.0112716020716999,15.7423111463113,-0.121876183613662,0.9073947911779,0.939500007253095,-6.94310791056656 +"Q9VJJ0",0.0103337897584872,19.6874479531453,0.120264775650148,0.908612174365349,0.94017686528623,-6.94333635505338 +"Q9VND7",0.0113836744756561,13.949205103998,0.11812220837435,0.91023126788152,0.941002130311848,-6.94363541641215 +"Q9VM69",-0.0136719829832526,17.0676423620272,-0.117716335267334,0.910538032567939,0.941002130311848,-6.94369146605447 +"Q24400",0.0070436904830693,21.7047631765838,0.116028474701608,0.911813926799016,0.941737232136693,-6.94392249485645 +"Q9VM50",0.0127349515960429,13.3335417845303,0.113700242795444,0.913574376867229,0.942971572162462,-6.94423572722962 +"Q9VGL0",-0.0138625541158106,12.990131880229,-0.109023075080735,0.917112585635239,0.945948256598596,-6.94484587836729 +"Q7K0S5",0.00815795918372686,18.3130658011357,0.108388903326367,0.917592493511108,0.945948256598596,-6.94492664403827 +"Q9VUM1",0.00868472096718875,16.4530775260113,0.106839236915286,0.918765363294409,0.946134850226338,-6.94512202973113 +"A1ZBU8",-0.00736296056675556,21.0056848776731,-0.106650866073036,0.918907948061552,0.946134850226338,-6.94514558901102 +"Q9W499",0.0174546691759971,17.0081963084202,0.104769312427246,0.920332349601491,0.947016877936636,-6.94537864019952 +"Q7PLT4",0.010272154370595,15.6875048104617,0.103613195158127,0.921207735642426,0.947333232460892,-6.94551978901424 +"P55830",0.00563902834543839,22.1276843483239,0.100101237508648,0.923867665921357,0.949483220429343,-6.94593899145144 +"Q9VRL1",-0.00831437767569909,20.4525570606955,-0.0988072275915831,0.924848020167447,0.949905478841935,-6.94608981977762 +"Q9VGS3",0.00607057948528578,19.2751839000981,0.0967643898201776,0.92639599454194,0.950519392932251,-6.94632395044052 +"Q9W0M4",0.00978220665268736,17.9163930445476,0.0965143995678262,0.926585451383597,0.950519392932251,-6.94635226722651 +"Q9W2L6",-0.00722615026937135,20.6972007423607,-0.0928516318249833,0.929361917968487,0.952150804339679,-6.94675878368358 +"Q9VL66",0.0079967668120684,15.6875116181228,0.0924930521268259,0.929633790798503,0.952150804339679,-6.9467977386851 +"Q9W3G8",0.0112624823736844,16.0116438922688,0.0921574055703926,0.929888285533176,0.952150804339679,-6.94683406615655 +"Q966T5",0.007157709291155,16.6556039656838,0.0891747916520193,0.932150175367694,0.953881283750499,-6.94715109510318 +"Q9VL89",-0.00512254512130639,16.8578395204329,-0.0874612898284986,0.933449947040944,0.954625696912504,-6.94732852428295 +"Q6NL44",0.00655410754962027,15.2003549167631,0.0860009802873132,0.934557842550653,0.955173089077506,-6.94747702668462 +"A1Z8D0",0.00701199323019353,14.1842481680338,0.0849944680012016,0.935321550938922,0.955368246764313,-6.94757792974971 +"Q05856",0.00643593313153978,13.6758554575349,0.083565401188134,0.936406012375832,0.955515879711878,-6.94771915883468 +"Q9V431",-0.00487366491817554,18.6076434195236,-0.0832942591411991,0.936611788566499,0.955515879711878,-6.94774568516785 +"Q0E9B7",0.0165929736822186,12.7695667074717,0.0820419601369927,0.937562259335744,0.955900885435221,-6.9478670842025 +"Q9VZS3",-0.00590816488779922,18.3995964239608,-0.0790122890757937,0.939862195737408,0.957660441350029,-6.94815319547184 +"Q7JZF5",-0.00476667224902982,16.9251150124106,-0.0764981160758083,0.941771294135884,0.959019852636541,-6.94838247086691 +"Q9VZ66",0.00489853028309817,17.116053170848,0.0706295355082875,0.946229176737026,0.962971486758609,-6.94888885599793 +"Q7JVK8",-0.00423323177541235,19.126619098004,-0.0663967941293966,0.949445813946733,0.96565586442875,-6.9492290586628 +"Q9VLR3",0.00426644296113743,16.8022984470571,0.0655545830604341,0.950085975196987,0.965718102759643,-6.94929424773214 +"Q8SY96",0.00540658697734031,18.8351457596567,0.0641841871145966,0.951127696844912,0.966188184127475,-6.94939854368072 +"Q9VD26",-0.00576970739643556,16.2123377758142,-0.0619520799014777,0.952824689066767,0.967322934487747,-6.94956371141208 +"Q9VAY2",-0.00365113107181614,21.1724985273723,-0.060273326805996,0.954101169321586,0.968029653545259,-6.94968408693521 +"Q6WV19",0.00599764835919459,13.543258526355,0.0543821092730639,0.958581880113115,0.971984544698284,-6.95008038797307 +"Q9VQ29",-0.00306751303846298,22.1431145721576,-0.0451027546479456,0.965642898813831,0.978454613363872,-6.95062209562144 +"P81900",0.00352493636309248,22.3533938886354,0.0444549988897714,0.96613594017404,0.978454613363872,-6.95065613991784 +"A1Z8D3",0.0093506908108516,16.4504226646647,0.0434830257875496,0.966875792068807,0.978609721584205,-6.9507063009713 +"Q8SX78",-0.00355374141993359,15.9289006799776,-0.0419937441729998,0.968009483298834,0.979163018885661,-6.95078100933729 +"Q960W6",-0.00574604617079544,14.1781109547037,-0.0408241116621941,0.968899905910422,0.979469723065808,-6.9508378588561 +"Q7JNE1",-0.00209794021617427,17.7860278288567,-0.0378385351977765,0.971173002703199,0.981172966995116,-6.95097569514096 +"P05389",0.00204246638955752,20.6310138772026,0.0367076683055683,0.972034079598577,0.981185759439276,-6.95102517366572 +"Q9VAN1",0.00219191485533976,14.725921941437,0.036276827207022,0.972362146494678,0.981185759439276,-6.95104362943455 +"Q9U4G1",-0.00272369129377026,19.1613868823809,-0.0346525607004885,0.973599009328262,0.981385556552401,-6.95111124922859 +"O62621",-0.00376641591090809,13.1441159838404,-0.0344715292482328,0.973736868162005,0.981385556552401,-6.95111859401167 +"Q9V3R3",0.00341597644067093,13.5860267825015,0.0290356052096225,0.977876876524253,0.984962940846893,-6.95132122501198 +"Q86PD3",-0.00145558521753486,18.9229597339812,-0.025183828146162,0.980810873155788,0.987321989392791,-6.95144381317472 +"Q9W254",0.00145606123860631,18.1190109413766,0.0220231435813839,0.983218701197724,0.989148850179616,-6.95153139907734 +"Q9VSW4",0.00330710449560456,15.8925091712421,0.0193298588641133,0.985270619091982,0.990615667658484,-6.95159677935716 +"Q9VJI7",-0.000975885952204436,17.2594930392683,-0.0158183537768851,0.98794609739369,0.992707283405226,-6.95166923354842 +"Q9VDU7",0.00082778575294995,18.3122881150925,0.0132165581879464,0.989928567551887,0.994100451942533,-6.95171358100399 +"Q9V535",0.000593471858891803,18.4714215981675,0.00885666021215465,0.99325081849534,0.996208324876287,-6.95177007781856 +"Q9W1F7",0.00058223140520397,20.2968653586352,0.00853876017575163,0.993493065805941,0.996208324876287,-6.95177332429011 +"Q7K127",0.00134608473440778,18.4136358318541,0.00811059878798259,0.993819336087615,0.996208324876287,-6.95177750925312 +"O97454",0.000877569195939287,14.0645514713789,0.00704283951977655,0.994633002534957,0.996425134071056,-6.95178700812622 +"P92204",0.000591202125056256,15.8252732547468,0.0062470941897294,0.995239390504289,0.996434155678965,-6.95179321660995 +"A8DYK6",-0.000377520843430901,16.4826889024713,-0.00455203676375792,0.996531099561871,0.997128898661788,-6.95180396301057 +"Q9VH66",-0.000204152119144041,16.6073889196322,-0.00276444248401098,0.997893338519079,0.997893338519079,-6.95181164125927 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_significant.csv new file mode 100644 index 0000000..dd49db2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_significant.csv @@ -0,0 +1,63 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q8MSI2",-0.873285317818553,24.0461586236833,-14.0486643263532,1.82531640866116e-05,0.00827781390113706,3.75722465736038 +"Q9VXQ0",0.779936797951352,14.9769959304666,13.5936493512103,2.17207999331117e-05,0.00827781390113706,3.60271318892589 +"Q8IN43",-0.971052471709385,18.7118013049804,-12.744230214654,3.05175453063216e-05,0.00827781390113706,3.29388962543591 +"P10676",-0.923702968956768,20.0270018721723,-12.3980714063476,3.52708973682162e-05,0.00827781390113706,3.15982959650652 +"P13677",-0.724138774938034,17.1752607946765,-12.311487097801,3.65931489898565e-05,0.00827781390113706,3.12550912248456 +"Q70PY2",0.76491552582975,17.2354178086612,12.1501943150039,3.9215519506068e-05,0.00827781390113706,3.06071063916258 +"Q9VIE8",0.666867445948611,24.8234102158726,11.5511029209064,5.11068028760489e-05,0.00827781390113706,2.80976372162344 +"Q9VC06",0.737674076918646,16.3803290825685,11.3323736666146,5.6476278166533e-05,0.00827781390113706,2.71391531441808 +"O16797",0.689222441118442,16.8816637834037,11.177944858817,6.06695186059775e-05,0.00827781390113706,2.64481552695073 +"Q9VNE9",0.693090226170195,18.8749682446011,11.0956691089399,6.30529702669578e-05,0.00827781390113706,2.60750717355122 +"Q9VC18",0.608215330046608,18.0802855624512,10.9655542078409,6.70513344905114e-05,0.00827781390113706,2.54779226035011 +"P17336",0.609190063443084,20.749061096268,10.8873417248462,6.95984449827954e-05,0.00827781390113706,2.51147043288692 +"Q9VG42",-0.619557585345532,15.2820964376128,-10.878973116323,6.9877672873355e-05,0.00827781390113706,2.50756485847834 +"Q9VV36",-0.62907299523896,23.3006789648926,-10.8684150853523,7.02318375298533e-05,0.00827781390113706,2.50263217420734 +"Q9VED8",0.666257262581082,16.0895997168234,10.7475456606429,7.44407724922398e-05,0.00827781390113706,2.44573627567936 +"Q9VAY9",0.635863376290093,14.381111062563,10.5453578814578,8.21647604993229e-05,0.00856567628205442,2.34878000963295 +"Q9VHR8",0.623877017062462,20.3280224165185,10.2168381151238,9.68251730370253e-05,0.00866886254508676,2.18632282123879 +"A1Z8H6",-0.718209467914006,16.9644710329734,-10.1797725436804,9.86653243602389e-05,0.00866886254508676,2.16759952922159 +"Q9VM07",0.658323593238128,16.9218424171868,10.1467444893807,0.00010033978169758,0.00866886254508676,2.15084702975686 +"Q9VLC5",0.599269631441196,21.6812593030655,10.0755168765292,0.000104066035963535,0.00866886254508676,2.11449685847584 +"Q9I7Q5",-0.727867376353892,20.7226369775085,-9.9832042584333,0.000109140355783466,0.00866886254508676,2.0669299653538 +"Q9VEY0",0.550009977561501,17.9233436793823,9.81787206293546,0.000118975059412882,0.00902047268639487,1.9804273336093 +"P06002",-0.767919993608489,16.7825736432431,-9.68573699484431,0.000127590183659674,0.00925306201497117,1.91005902901657 +"P19334",-1.18434629209147,15.3825096141411,-9.43494174513699,0.000146045997520068,0.0101501968276447,1.77339076568895 +"Q9VXP3",0.591126624245396,14.4120677484671,9.27788630953373,0.000159203432937963,0.0102891643067037,1.68566999485167 +"Q8IN44",-0.510554865924881,20.0967248508549,-9.21130383857619,0.000165198755808115,0.0102891643067037,1.64797196899199 +"A1Z803",0.577442513509499,18.7104120713701,9.19667581593114,0.000166551220791966,0.0102891643067037,1.6396486093825 +"B7Z107",-0.564642776461714,16.0404259930414,-9.00421432021429,0.000185615084974853,0.0105975823050751,1.52873463441463 +"Q9W370",0.571182806845158,18.33445916151,8.98292452037128,0.000187877451670185,0.0105975823050751,1.5163032174644 +"Q7JWF1",0.545119175567809,20.3959731551489,8.95766312468263,0.000190603998292717,0.0105975823050751,1.50151022701572 +"Q9W3E2",-0.53939088825868,17.8560187520338,-8.8560960397781,0.000202046000286974,0.0107588234901011,1.44156337139341 +"Q01637",0.504260382365024,15.8575756476267,8.81917146850215,0.000206404287579877,0.0107588234901011,1.41958165151233 +"A1Z9A8",0.611408312443178,16.5941778348511,8.52860954112069,0.000244837004146613,0.0108257013163954,1.24301840157332 +"P22979",0.559290953989802,19.2243470283701,8.52292749161176,0.000245668439767979,0.0108257013163954,1.23950095031493 +"Q7K569",0.61627835033196,20.5116033268151,8.46009531324867,0.000255086844531931,0.0108257013163954,1.20043603494525 +"Q7JYW9",0.524867412860747,17.3552957346927,8.45406341255183,0.00025601310024719,0.0108257013163954,1.19666942874407 +"Q9VZF6",0.711892756075846,15.0704692764983,8.43736329771432,0.000258598215341498,0.0108257013163954,1.18622604857472 +"P41093",0.564638149572275,18.9169132918726,8.4308857734706,0.000259609144278067,0.0108257013163954,1.18216938780499 +"P21187",0.605875533795089,18.8481077550561,8.27151247451973,0.000286005549863077,0.0114491391627361,1.0812994355986 +"Q9VNB9",0.647272703459358,18.7890929444577,8.19096915707384,0.000300537048789919,0.0114491391627361,1.02953631428577 +"Q9VFZ4",0.684610297829931,16.481158287294,8.04275229396538,0.00032960385072365,0.0114972159383488,0.932870318565226 +"Q9VTZ4",0.514215869471439,18.0296241806912,8.0263927815397,0.000333009745059555,0.0114972159383488,0.922087100542588 +"Q9VQE0",0.527656703125903,17.3315085606916,7.98243391555939,0.000342367799371126,0.0114972159383488,0.892998708114724 +"Q9VV31",-0.89121211165476,16.1964214262354,-7.78884832861181,0.00038742511779284,0.0118469172050936,0.762904283851978 +"Q9VLB7",0.522346224636475,20.9156510004619,7.61931957481816,0.000432673637653974,0.0123019539883472,0.646239886924961 +"Q7K2E1",0.551255450527268,17.3568225928295,7.51159938202958,0.00046464214704189,0.0123019539883472,0.570744483015353 +"Q9V784",-0.563107472406193,14.4999444144198,-7.44458564635781,0.000485924649796426,0.0126326316427328,0.523231409606219 +"P45437",0.523363446907574,16.054258039185,7.19316457757056,0.000576615872235802,0.0139390619549177,0.341136956236854 +"Q9V521",-0.580805384296344,18.1413518617492,-7.05931570721402,0.000632913251835414,0.0148690042825559,0.241655987566954 +"Q9VA09",0.534056520671871,16.2347996525561,6.86755417971979,0.000725157074966411,0.0155418603738905,0.095947598690385 +"Q9VNW6",0.778944627822284,21.4930366344478,6.86444416766643,0.00072677764338337,0.0155418603738905,0.0935529441935765 +"A8JNG6",-0.531644096216992,16.1467502909552,-6.83757836513909,0.000740954268354841,0.0156444521470364,0.0728242715142571 +"Q9VPC2",-0.506833197039981,14.8124305517593,-6.23998050370882,0.00115803454595905,0.0191653719360584,-0.408720420725809 +"Q9VIV6",0.696866671902617,14.4153838167489,6.08394876878712,0.00130854968657607,0.0196636115063864,-0.541212055508435 +"Q9VU70",-0.666447206598832,14.5836843202663,-5.72952811733181,0.00174334834036922,0.0220891930781284,-0.853278286670174 +"Q9VQX3",-0.514764940880532,15.6045914008076,-5.60482300296378,0.00193474052579241,0.0240831880374757,-0.966891506665899 +"Q9V4E7",-0.514913666482029,15.0372922266419,-5.43136858565755,0.00224292163385828,0.0269150596062993,-1.12834185550898 +"P07668",-0.553041611391548,14.7742884120219,-5.22697578400788,0.00268174160457535,0.0294285855028401,-1.32384625006002 +"A8DYP0",-0.571526939238268,15.5550600069999,-5.15257687467888,0.00286554995447295,0.0300612410318295,-1.39645604124641 +"Q9VNW0",-0.547826809444507,14.7580248368399,-5.1314249499538,0.00292043450866719,0.0302564270835831,-1.41724242611038 +"P50887",0.545347129503288,17.5316993432263,5.09575215280655,0.00301576927116901,0.0308607554865638,-1.45244322469963 +"Q9VCX3",0.901661600277384,12.9282771186039,4.58200629583034,0.00487779591029094,0.0378426212947223,-1.98005441694885 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_significant_fdr_only.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_significant_fdr_only.csv new file mode 100644 index 0000000..58ea982 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_females_vs_Earth_females_significant_fdr_only.csv @@ -0,0 +1,275 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q8MSI2",-0.873285317818553,24.0461586236833,-14.0486643263532,1.82531640866116e-05,0.00827781390113706,3.75722465736038 +"Q9VXQ0",0.779936797951352,14.9769959304666,13.5936493512103,2.17207999331117e-05,0.00827781390113706,3.60271318892589 +"Q8IN43",-0.971052471709385,18.7118013049804,-12.744230214654,3.05175453063216e-05,0.00827781390113706,3.29388962543591 +"P10676",-0.923702968956768,20.0270018721723,-12.3980714063476,3.52708973682162e-05,0.00827781390113706,3.15982959650652 +"P13677",-0.724138774938034,17.1752607946765,-12.311487097801,3.65931489898565e-05,0.00827781390113706,3.12550912248456 +"Q70PY2",0.76491552582975,17.2354178086612,12.1501943150039,3.9215519506068e-05,0.00827781390113706,3.06071063916258 +"Q9VIE8",0.666867445948611,24.8234102158726,11.5511029209064,5.11068028760489e-05,0.00827781390113706,2.80976372162344 +"Q9VC06",0.737674076918646,16.3803290825685,11.3323736666146,5.6476278166533e-05,0.00827781390113706,2.71391531441808 +"O16797",0.689222441118442,16.8816637834037,11.177944858817,6.06695186059775e-05,0.00827781390113706,2.64481552695073 +"Q9VNE9",0.693090226170195,18.8749682446011,11.0956691089399,6.30529702669578e-05,0.00827781390113706,2.60750717355122 +"Q9VC18",0.608215330046608,18.0802855624512,10.9655542078409,6.70513344905114e-05,0.00827781390113706,2.54779226035011 +"P17336",0.609190063443084,20.749061096268,10.8873417248462,6.95984449827954e-05,0.00827781390113706,2.51147043288692 +"Q9VG42",-0.619557585345532,15.2820964376128,-10.878973116323,6.9877672873355e-05,0.00827781390113706,2.50756485847834 +"Q9VV36",-0.62907299523896,23.3006789648926,-10.8684150853523,7.02318375298533e-05,0.00827781390113706,2.50263217420734 +"Q9VED8",0.666257262581082,16.0895997168234,10.7475456606429,7.44407724922398e-05,0.00827781390113706,2.44573627567936 +"Q9VAY9",0.635863376290093,14.381111062563,10.5453578814578,8.21647604993229e-05,0.00856567628205442,2.34878000963295 +"Q9VHR8",0.623877017062462,20.3280224165185,10.2168381151238,9.68251730370253e-05,0.00866886254508676,2.18632282123879 +"A1Z8H6",-0.718209467914006,16.9644710329734,-10.1797725436804,9.86653243602389e-05,0.00866886254508676,2.16759952922159 +"Q9VM07",0.658323593238128,16.9218424171868,10.1467444893807,0.00010033978169758,0.00866886254508676,2.15084702975686 +"Q9VLC5",0.599269631441196,21.6812593030655,10.0755168765292,0.000104066035963535,0.00866886254508676,2.11449685847584 +"Q9I7Q5",-0.727867376353892,20.7226369775085,-9.9832042584333,0.000109140355783466,0.00866886254508676,2.0669299653538 +"Q9VEY0",0.550009977561501,17.9233436793823,9.81787206293546,0.000118975059412882,0.00902047268639487,1.9804273336093 +"P06002",-0.767919993608489,16.7825736432431,-9.68573699484431,0.000127590183659674,0.00925306201497117,1.91005902901657 +"P19334",-1.18434629209147,15.3825096141411,-9.43494174513699,0.000146045997520068,0.0101501968276447,1.77339076568895 +"Q9VXP3",0.591126624245396,14.4120677484671,9.27788630953373,0.000159203432937963,0.0102891643067037,1.68566999485167 +"Q8IN44",-0.510554865924881,20.0967248508549,-9.21130383857619,0.000165198755808115,0.0102891643067037,1.64797196899199 +"A1Z803",0.577442513509499,18.7104120713701,9.19667581593114,0.000166551220791966,0.0102891643067037,1.6396486093825 +"B7Z107",-0.564642776461714,16.0404259930414,-9.00421432021429,0.000185615084974853,0.0105975823050751,1.52873463441463 +"Q9W370",0.571182806845158,18.33445916151,8.98292452037128,0.000187877451670185,0.0105975823050751,1.5163032174644 +"Q7JWF1",0.545119175567809,20.3959731551489,8.95766312468263,0.000190603998292717,0.0105975823050751,1.50151022701572 +"Q9W3E2",-0.53939088825868,17.8560187520338,-8.8560960397781,0.000202046000286974,0.0107588234901011,1.44156337139341 +"Q01637",0.504260382365024,15.8575756476267,8.81917146850215,0.000206404287579877,0.0107588234901011,1.41958165151233 +"Q9W2E7",0.491004534754385,18.3821835263089,8.64991432065165,0.000227850289417739,0.0108257013163954,1.31751391333332 +"A1Z9A8",0.611408312443178,16.5941778348511,8.52860954112069,0.000244837004146613,0.0108257013163954,1.24301840157332 +"P22979",0.559290953989802,19.2243470283701,8.52292749161176,0.000245668439767979,0.0108257013163954,1.23950095031493 +"Q7K569",0.61627835033196,20.5116033268151,8.46009531324867,0.000255086844531931,0.0108257013163954,1.20043603494525 +"P42281",-0.472821425270588,21.9015415209857,-8.45538318910613,0.000255810099302032,0.0108257013163954,1.19749380611348 +"Q7JYW9",0.524867412860747,17.3552957346927,8.45406341255183,0.00025601310024719,0.0108257013163954,1.19666942874407 +"Q9VZF6",0.711892756075846,15.0704692764983,8.43736329771432,0.000258598215341498,0.0108257013163954,1.18622604857472 +"P41093",0.564638149572275,18.9169132918726,8.4308857734706,0.000259609144278067,0.0108257013163954,1.18216938780499 +"P21187",0.605875533795089,18.8481077550561,8.27151247451973,0.000286005549863077,0.0114491391627361,1.0812994355986 +"Q8SXF0",0.455537492228476,16.1967474931315,8.2299204651425,0.000293404061349546,0.0114491391627361,1.0546359896615 +"Q9VNB9",0.647272703459358,18.7890929444577,8.19096915707384,0.000300537048789919,0.0114491391627361,1.02953631428577 +"Q8IN49",0.484154765592876,16.8496958740421,8.18303042600539,0.000302015661367139,0.0114491391627361,1.02440530876864 +"Q9VE75",-0.453572342443797,15.6441378047844,-8.10704625859891,0.000316607967125231,0.0114876477238717,0.975029086548602 +"Q9W369",-0.482865400058838,22.4136900645796,-8.10604533342686,0.000316805632672721,0.0114876477238717,0.97437543599175 +"Q9VFZ4",0.684610297829931,16.481158287294,8.04275229396538,0.00032960385072365,0.0114972159383488,0.932870318565226 +"Q9VTZ4",0.514215869471439,18.0296241806912,8.0263927815397,0.000333009745059555,0.0114972159383488,0.922087100542588 +"Q9VQE0",0.527656703125903,17.3315085606916,7.98243391555939,0.000342367799371126,0.0114972159383488,0.892998708114724 +"M9PEG1",-0.465974043836439,20.3571070396855,-7.96274026870909,0.000346659946529873,0.0114972159383488,0.879913229548495 +"O97125",0.482164320172139,18.3587832905368,7.93933915281044,0.000351842338731023,0.0114972159383488,0.864320787357608 +"Q9VFQ9",0.44331814819235,19.094496574171,7.91018454781121,0.000358426396159556,0.0114972159383488,0.844828304774699 +"Q9VN13",0.489760217189836,16.8734950744693,7.8373407348931,0.000375517665104382,0.0118181785923417,0.795801145987172 +"Q9VV31",-0.89121211165476,16.1964214262354,-7.78884832861181,0.00038742511779284,0.0118469172050936,0.762904283851978 +"Q9VZU7",0.442318262132488,17.5180513074333,7.77607139631855,0.00039063575916076,0.0118469172050936,0.754201739210811 +"Q9W3J5",0.479842343570741,16.1221272617637,7.66786168834047,0.000419113411367303,0.0123019539883472,0.679911101602992 +"Q7KUT2",0.445497477165098,18.1693242294195,7.64113751946861,0.000426516232805608,0.0123019539883472,0.661400542245913 +"Q9VLB7",0.522346224636475,20.9156510004619,7.61931957481816,0.000432673637653974,0.0123019539883472,0.646239886924961 +"Q9VHC3",0.467242786187764,17.2374303818692,7.59757032436789,0.000438915447732026,0.0123019539883472,0.631083475331794 +"Q9W299",0.434316137681583,14.6322153204414,7.53641673972036,0.000457038610092408,0.0123019539883472,0.588233182549725 +"Q8SYQ8",-0.440787051096246,15.9503972343598,-7.53273296806036,0.000458157990825733,0.0123019539883472,0.585640875747797 +"Q24276",-0.420773246128402,18.8203321391739,-7.52738994053397,0.000459787271827518,0.0123019539883472,0.581878685271606 +"Q7K2E1",0.551255450527268,17.3568225928295,7.51159938202958,0.00046464214704189,0.0123019539883472,0.570744483015353 +"Q9V784",-0.563107472406193,14.4999444144198,-7.44458564635781,0.000485924649796426,0.0126326316427328,0.523231409606219 +"Q7JPS2",-0.460960733714124,20.5622956621839,-7.42436199803178,0.000492569907845753,0.0126326316427328,0.5088094000846 +"P48596",0.411849897118351,21.6798199574891,7.39056301801476,0.000503914637864182,0.0126326316427328,0.484619580431822 +"Q0E9B6",0.43603612192512,19.1029342796327,7.38028216353375,0.000507425851356775,0.0126326316427328,0.477239957248133 +"Q9W1H8",0.449983662840271,20.5306286307239,7.32486964668942,0.00052685088340756,0.0129233422577031,0.437289759816495 +"P45437",0.523363446907574,16.054258039185,7.19316457757056,0.000576615872235802,0.0139390619549177,0.341136956236854 +"Q95RI2",-0.465683464995358,16.8683493226797,-7.1068467949491,0.000612215839649549,0.0145882288647921,0.277188905355073 +"Q9V521",-0.580805384296344,18.1413518617492,-7.05931570721402,0.000632913251835414,0.0148690042825559,0.241655987566954 +"P52029",-0.386998176957384,18.5560519064909,-6.99626243212711,0.000661644412365059,0.0153280955531239,0.194164408996508 +"P29613",-0.41594497074891,23.9325437966629,-6.95944639351375,0.00067912391700269,0.0155175163501437,0.16624592409251 +"Q9VPE2",0.443844105020876,20.7501584972789,6.9066610006908,0.000705134972579779,0.0155418603738905,0.125972446271998 +"Q9VFN7",-0.382990332254213,18.6638690952292,-6.88803212082278,0.000714591096844456,0.0155418603738905,0.111689852823949 +"Q7K511",0.482292508267543,16.4143534263708,6.87239414908414,0.000722643439358009,0.0155418603738905,0.09967226459925 +"Q9VA09",0.534056520671871,16.2347996525561,6.86755417971979,0.000725157074966411,0.0155418603738905,0.095947598690385 +"Q9VNW6",0.778944627822284,21.4930366344478,6.86444416766643,0.00072677764338337,0.0155418603738905,0.0935529441935765 +"A8JNG6",-0.531644096216992,16.1467502909552,-6.83757836513909,0.000740954268354841,0.0156444521470364,0.0728242715142571 +"Q7K0S6",0.408151229076179,17.5305907415144,6.81250422475677,0.000754477374351904,0.0157308532552372,0.0534090540227847 +"Q95SS8",0.39443764112907,15.3611309728469,6.755195708243,0.000786481186028089,0.0161956866456155,0.0087828170087203 +"Q9VA42",-0.444164480965476,20.4066654762436,-6.73705201909584,0.000796941664455584,0.0162109597111209,-0.00541909151616071 +"A1Z9B5",-0.446630755856733,15.7021163594624,-6.70200736928349,0.000817609128186824,0.0164309882628388,-0.0329507667086997 +"Q9Y119",-0.470630932346467,18.2618650697547,-6.64604632688541,0.000851922525566314,0.0169167472933882,-0.0771914176485726 +"Q8SWS3",-0.395713797212071,16.5915594445705,-6.61314672117631,0.000872878634983641,0.0171289595665025,-0.103360627742753 +"Q9VQ91",-0.409931195580654,15.1307063173993,-6.55568371395168,0.000910940038288839,0.0176128271771954,-0.149355025907754 +"O61443",0.416302741022758,16.5875357170966,6.54437762093601,0.00091865465492566,0.0176128271771954,-0.158447834660653 +"P09180",0.361496881730659,20.7346712795367,6.51043300461833,0.000942278008737863,0.0178468203727832,-0.185833349956018 +"Q9VJ86",0.477024735518171,16.6064677566714,6.48565564665192,0.000959968938220819,0.0178468203727832,-0.205904714607544 +"Q9VSR5",0.363376490361706,20.1735663563832,6.48152190502743,0.000962957933783266,0.0178468203727832,-0.209260068157183 +"Q9VHT3",-0.47063764560675,15.8051694420827,-6.45882306578776,0.000979565366957007,0.0178516805681654,-0.227719140485184 +"Q00174",0.362794477240683,21.9712825527533,6.45199650221845,0.000984625067308885,0.0178516805681654,-0.233282038733702 +"Q7K204",-0.407992856204181,15.004278542722,-6.43395829530445,0.000998141761178083,0.0178825182268674,-0.248006686871814 +"X2JAU8",-0.383237586157442,21.7170937283355,-6.42128478241937,0.00100776781374433,0.0178825182268674,-0.258374291983454 +"P20007",0.470100533601713,15.7921446010379,6.39902377259528,0.00102493896255051,0.0179957704161501,-0.276629425486766 +"Q9VAC1",0.36571762620467,23.3975682875294,6.27180470491702,0.00112986453405589,0.0191653719360584,-0.382053037519093 +"Q9VKD3",0.440510525960807,18.5808838637029,6.25925372521688,0.00114087806883027,0.0191653719360584,-0.392556010586642 +"Q9VXC9",0.395369831038401,18.9689468309413,6.25518017339161,0.00114447944382459,0.0191653719360584,-0.39596884229791 +"Q9VT23",0.359873969286625,18.0594422167759,6.24963919465051,0.00114939940792472,0.0191653719360584,-0.400614224488175 +"Q9VPC2",-0.506833197039981,14.8124305517593,-6.23998050370882,0.00115803454595905,0.0191653719360584,-0.408720420725809 +"Q9I7K0",-0.47940131633961,16.1983213024415,-6.23724579721224,0.00116049314480929,0.0191653719360584,-0.411017562716451 +"Q9VW54",0.478091486614129,15.8447035022699,6.19947639338546,0.00119507806401992,0.0192470473310733,-0.442834250518927 +"O02195",0.365953518581275,18.5941061487261,6.19369550469438,0.00120047668828861,0.0192470473310733,-0.447718974437292 +"Q9W309",-0.34382627461952,18.4838062830184,-6.18623461691255,0.00120748620700199,0.0192470473310733,-0.45402914253671 +"Q9W199",0.377604598178994,15.7260819457051,6.18188493497703,0.00121159470609275,0.0192470473310733,-0.457711019034005 +"Q9VWV6",-0.366413219301414,23.5953728585258,-6.14968750750876,0.00124251763099886,0.019552069891567,-0.485035501660537 +"Q94901",0.340277690080079,18.7367622899402,6.13621239362869,0.00125573114015041,0.0195753228202886,-0.496508101366134 +"Q9VMQ5",0.411483139775232,13.5057154122764,6.11073869485196,0.00128115933819427,0.0196370950392923,-0.518255917750337 +"Q9I7J0",-0.378784555586808,21.0535533170084,-6.09858141736454,0.00129350564493971,0.0196370950392923,-0.528662646484277 +"Q9V3N7",0.369482417858848,20.3824155804531,6.09710710683405,0.00129501226278307,0.0196370950392923,-0.529925884583573 +"Q9VIV6",0.696866671902617,14.4153838167489,6.08394876878712,0.00130854968657607,0.0196636115063864,-0.541212055508435 +"P12080",0.349023891889999,19.0157329217144,6.0075767205793,0.00139044870846059,0.0207077539795737,-0.607134621390667 +"Q9VF23",0.432399036550697,15.1241230229583,5.98789245336755,0.00141251319599534,0.0207537520666265,-0.624241608890033 +"P23779",-0.348457376797761,21.0269812885799,-5.982681741776,0.00141842190383418,0.0207537520666265,-0.628778082571707 +"P29327",0.378502496286821,19.5431913081816,5.93202528995815,0.00147738570596316,0.0213994720077178,-0.673055297261953 +"A8DRW0",-0.338973277738216,21.6057794141043,-5.92297898365823,0.00148821268159188,0.0213994720077178,-0.680995998517488 +"Q9Y156",0.328548539341771,15.9791455864316,5.91056880886206,0.00150321592777918,0.0214304629703904,-0.691906089735008 +"Q8SZN1",-0.361028243671885,20.2286487391119,-5.88314264945231,0.00153700002224628,0.0217039274094179,-0.716085578178706 +"Q9W1R0",0.324712598798461,13.9055494695749,5.87402842343624,0.00154842167968869,0.0217039274094179,-0.724141807330664 +"P14318",-0.327397435499417,22.3748783868977,-5.85106629119775,0.00157763660147644,0.0219291487605225,-0.744484907326829 +"Q9VW68",0.331978852381567,22.8255571160548,5.84028394724541,0.00159157552783338,0.0219400659539345,-0.754060437070459 +"Q9VIF2",0.348089713818608,17.3930883421035,5.80284889293332,0.00164109174801489,0.0220891930781284,-0.787420181640035 +"Q7KVQ0",0.459177816317373,15.7104607322712,5.7883922601208,0.00166069071964607,0.0220891930781284,-0.800350822141706 +"P91926",-0.324416908836465,17.7277404019859,-5.78013940099389,0.00167200090951204,0.0220891930781284,-0.8077445233519 +"A1Z6L9",0.356580554725198,15.2373589035121,5.77888553818206,0.00167372708349741,0.0220891930781284,-0.808868617038917 +"Q9W337",-0.349302620334008,17.7113882194709,-5.76570717851368,0.00169199514689692,0.0220891930781284,-0.82069527194624 +"Q24253",0.37435581788753,18.7363994259327,5.75526173263817,0.00170663924343704,0.0220891930781284,-0.830085174050708 +"P32392",0.437187714062134,17.5410357394919,5.74830295995851,0.00171647676855787,0.0220891930781284,-0.836348532834999 +"Q9VM12",0.321600991856855,18.9462581610265,5.74627955496058,0.00171934956155395,0.0220891930781284,-0.838170902537573 +"Q7K2L7",-0.367365446224241,18.3470839926729,-5.72965465184566,0.00174316561150159,0.0220891930781284,-0.853164034939248 +"Q9VU70",-0.666447206598832,14.5836843202663,-5.72952811733181,0.00174334834036922,0.0220891930781284,-0.853278286670174 +"P45888",0.360318123592712,17.0854541263753,5.72626683639783,0.00174806563927635,0.0220891930781284,-0.856223707253669 +"Q7K3W2",0.324550138672464,17.4848119036985,5.65508306298617,0.00185481183387419,0.0232618506684373,-0.920857236549085 +"Q9VQX3",-0.514764940880532,15.6045914008076,-5.60482300296378,0.00193474052579241,0.0240831880374757,-0.966891506665899 +"Q9VX69",-0.485373146551446,18.2302035216663,-5.56536341136151,0.0020002976323253,0.0247147885238414,-1.00326699017741 +"Q7K3N4",0.308293779894068,17.1472379619653,5.50227022091278,0.00211054153423931,0.0258851711699351,-1.06185950981587 +"Q9VFF0",0.311567188501801,23.6230513806021,5.48690504466962,0.002138444660894,0.0260359539735123,-1.07620938834655 +"Q9W253",0.437831044354386,15.0804025782766,5.45186282776259,0.00220369394028346,0.0266359528434262,-1.10905516458875 +"Q9V4E7",-0.514913666482029,15.0372922266419,-5.43136858565755,0.00224292163385828,0.0269150596062993,-1.12834185550898 +"Q9VXZ8",0.406209902611991,17.7685181079818,5.41964622298513,0.00226572226396398,0.0269944624020852,-1.13939917054422 +"Q9VYT6",-0.332245816591708,16.3363846289206,-5.34274120025211,0.00242213468778785,0.0286355954028666,-1.21240682447757 +"Q9VV39",0.294284367527631,17.4259516068756,5.32611431564669,0.00245757210959543,0.0286355954028666,-1.22829795682355 +"P54385",0.313650267069974,21.5451223963061,5.32575177842393,0.0024583514476563,0.0286355954028666,-1.22864487685284 +"Q7JXZ2",0.473402829416386,17.5191558191597,5.31936046555702,0.00247213773262158,0.0286355954028666,-1.23476385269427 +"Q9VH64",-0.312291336503398,17.7304951664796,-5.30499730796641,0.00250344692923375,0.0287982722618062,-1.24853562397684 +"Q9VSA3",0.304859996213249,21.6318168879961,5.29536172944213,0.00252470771678465,0.0288439210383342,-1.25779050142229 +"Q9VSS2",0.435847112355439,16.2220744490263,5.2777879789108,0.00256402367853868,0.0289167915968785,-1.274703139709 +"Q9VAJ9",0.357323117806708,17.4284631479134,5.27701972610246,0.0025657584870132,0.0289167915968785,-1.27544347194888 +"Q9VRL2",-0.416898944303448,12.4232860682888,-5.25721713639475,0.00261094665927602,0.0290393285399634,-1.29455478036325 +"Q8IQG9",-0.377205537570514,20.6087028254199,-5.25685308870626,0.00261178595763403,0.0290393285399634,-1.29490663210211 +"A1Z847",-0.291389479035356,20.0384386911675,-5.24947635267276,0.00262886007765856,0.0290393285399634,-1.3020402318461 +"P07668",-0.553041611391548,14.7742884120219,-5.22697578400788,0.00268174160457535,0.0294285855028401,-1.32384625006002 +"Q9VAA6",-0.305330807727444,16.1716206836651,-5.21750355051656,0.00270437030663774,0.0294829390292271,-1.33304733968798 +"Q9V400",-0.399194640860102,14.5190831709525,-5.19495278924378,0.00275913602850893,0.0298277482256163,-1.35500338550926 +"Q2MGK7",-0.302525475733134,17.0562411490699,-5.17401341736969,0.00281113782062541,0.0298277482256163,-1.37545477620076 +"Q9VFS4",-0.307652994774571,15.2969106737871,-5.17167284326058,0.00281702050766092,0.0298277482256163,-1.37774465704674 +"Q9VD02",-0.32299793332346,18.2450018904053,-5.17107660966176,0.00281852132291979,0.0298277482256163,-1.37832810109126 +"Q7PL91",-0.395384511717207,18.910229392314,-5.16834453629067,0.00282541020362552,0.0298277482256163,-1.38100221380723 +"A8DYP0",-0.571526939238268,15.5550600069999,-5.15257687467888,0.00286554995447295,0.0300612410318295,-1.39645604124641 +"Q9VH81",0.419305925381765,14.3603072414867,5.13947687898329,0.002899399749306,0.030226242386515,-1.40932214557365 +"Q9VNW0",-0.547826809444507,14.7580248368399,-5.1314249499538,0.00292043450866719,0.0302564270835831,-1.41724242611038 +"P35381",0.287541754362213,25.6418621806775,5.10446424673048,0.0029921591757264,0.0308081574389607,-1.44382962158198 +"P50887",0.545347129503288,17.5316993432263,5.09575215280655,0.00301576927116901,0.0308607554865638,-1.45244322469963 +"Q9W266",-0.302764135153115,18.3991171397357,-5.07006373808706,0.00308664668631609,0.0311641360498769,-1.47790455801512 +"Q7KM15",-0.298176927561419,16.9689670576238,-5.06507516436942,0.00310063249342301,0.0311641360498769,-1.48286002147682 +"Q9W0Z5",-0.321162858753347,16.8838402251719,-5.06053473868673,0.00311342544272828,0.0311641360498769,-1.48737342316522 +"Q9VK39",-0.308056898425988,18.2402201908212,-5.05264831554749,0.00313579090960053,0.0311641360498769,-1.49521996203077 +"A0A0B4K7J2",-0.37849366902379,15.7814079877745,-5.05158034079971,0.00313883384675019,0.0311641360498769,-1.49628322450643 +"Q9VR79",0.440521442087558,20.1393826335891,5.03014704370583,0.00320062855171797,0.0312806490981774,-1.51765673985101 +"Q9W1R3",-0.326776951298509,17.0903519625464,-5.02908125096909,0.00320373777393879,0.0312806490981774,-1.51872129159786 +"A1ZAL1",-0.325183173233057,17.1688458532051,-5.02802276244007,0.00320682913416567,0.0312806490981774,-1.51977871020646 +"Q9VSY0",-0.311471928772665,22.8253317855677,-5.01886287755767,0.00323372506685385,0.0313596128576292,-1.5289361069577 +"Q9V9M7",0.352434359090832,18.4616316679918,5.00377278568646,0.00327860274581363,0.0315966215626732,-1.54404860222602 +"Q9V3G1",0.324168174286299,21.1531184133051,4.99797014935333,0.00329605045078245,0.0315966215626732,-1.54986864601768 +"Q9VZJ8",0.407154534799659,14.7739380546543,4.96336028926311,0.00340236704742852,0.0324294184863473,-1.58468403799638 +"P02515",-0.335051322401654,18.4153630596707,-4.94033295940026,0.00347529281795251,0.0329362978428681,-1.60794491105663 +"Q9VHB8",0.392251167053821,15.3741318920362,4.92076302676355,0.00353868688455981,0.0329597421336861,-1.62777433372015 +"A1ZB73",-0.362126597690278,13.9493332852447,-4.91725676379385,0.00355018506484298,0.0329597421336861,-1.6313330225958 +"Q9VME1",-0.496459203247625,16.5625998356082,-4.91623534297605,0.00355354272347603,0.0329597421336861,-1.63237005532363 +"Q7KTG2",0.306458731579806,18.0894782708435,4.91524348382696,0.00355680670507404,0.0329597421336861,-1.63337722119806 +"P48375",-0.270611706833648,21.8841842569203,-4.90255366511785,0.00359887203429885,0.0331652958740911,-1.64627563256503 +"Q9V3D9",0.282985632140431,17.329694715751,4.88097055827384,0.00367174002869888,0.0334187386173717,-1.66826796388037 +"P20348",-0.293283645912531,17.5332672270544,-4.8804746893695,0.00367343400656152,0.0334187386173717,-1.66877404173556 +"Q7K5J8",-0.327194180814118,18.2175956889441,-4.87212094180421,0.00370210756387033,0.0334187386173717,-1.67730523331115 +"Q709R6",-0.299125466999136,15.1099722206247,-4.8708435492793,0.00370651477470849,0.0334187386173717,-1.67861066778724 +"Q9VIN9",0.288521777573669,16.4224065765116,4.85531726325357,0.00376056849178951,0.0334380829850579,-1.69449708270957 +"R9PY51",-0.349048305373717,21.6286601812671,-4.8507458331774,0.00377665606342182,0.0334380829850579,-1.69918134477072 +"P09040",-0.4663244789809,16.4292327630406,-4.84891325598732,0.00378312740884077,0.0334380829850579,-1.70106002286958 +"Q7K4T8",0.344086626313635,13.6988260843378,4.84371191991371,0.00380156438831297,0.0334380829850579,-1.70639491666616 +"Q9VMD3",0.29575014365764,17.5367406993192,4.84165209053519,0.00380889434482074,0.0334380829850579,-1.70850874629548 +"Q7K2Q8",-0.281839180822544,16.1531216900201,-4.8310114954308,0.00384701906742543,0.0335959570914431,-1.71943832029985 +"P82890",-0.348219289657116,19.7549816251568,-4.80659683921425,0.00393616628047951,0.0340865246290096,-1.74457963175316 +"Q9VGA0",-0.354501148644847,19.3028936507552,-4.80446453518056,0.00394406430059883,0.0340865246290096,-1.74677961268051 +"Q9W2Y3",-0.364453867310317,16.5293415786199,-4.77584231322296,0.00405186407160265,0.0347215564899759,-1.77637593686516 +"P28668",0.275723033964143,15.5560397302007,4.76456434898511,0.00409526760228121,0.0347215564899759,-1.78807135165547 +"Q9VXN1",-0.407924358757864,13.6289874319758,-4.7643157599192,0.00409623030518561,0.0347215564899759,-1.78832935664708 +"C0HK95",-0.37885905937226,20.0427779309763,-4.76313479841106,0.00410080733125015,0.0347215564899759,-1.78955517642393 +"Q9W4I3",0.290001560023004,16.4331875861008,4.75612242510058,0.00412810640512962,0.0347761691098798,-1.796838215636 +"Q9VM18",-0.279116027700056,23.0792308932027,-4.74820474480249,0.00415918119190904,0.0348618805432376,-1.80507036668111 +"Q9VKG4",-0.301696222177442,15.897513687677,-4.73952894435712,0.00419354046647775,0.0349741274904244,-1.81410155060742 +"Q9VTY2",-0.424507509572987,20.8909255227105,-4.7333433868692,0.00421823667530609,0.0350050685294058,-1.82054738857349 +"Q7K860",0.291625684420517,20.4046061450837,4.71979077377549,0.00427293266940656,0.0352834242206443,-1.83469039143148 +"Q9W3Y3",-0.348784882980805,18.2524425653349,-4.68645005152006,0.00441099228883592,0.036123965900235,-1.86960132517278 +"Q9VAN7",-0.258681317705072,23.8186769022695,-4.68106977188184,0.00443374805610809,0.036123965900235,-1.87525072194908 +"P91927",-0.327312821380847,19.5029020992707,-4.67966867834407,0.00443969604888979,0.036123965900235,-1.87672261543542 +"Q9VAM6",-0.280815346609955,22.157730696844,-4.6693736600605,0.00448368302404593,0.0363047732238282,-1.88754697112334 +"Q9VUX1",0.346328161157096,16.3501300638893,4.65784940811421,0.00453351669852407,0.0365309461504259,-1.89968280512126 +"Q7K188",-0.262880376718275,21.9442389394758,-4.65004582768133,0.0045676223054712,0.0366288173342594,-1.90791194883448 +"Q9VH72",-0.389748586129969,18.6207141656809,-4.62551089877715,0.00467678611976551,0.0373247810898032,-1.93384512017823 +"Q9VTJ4",-0.289954273600639,15.5570695747951,-4.61506005717961,0.00472419222003491,0.0373757177902788,-1.94491935978296 +"Q9U9Q4",0.320977014072486,17.8330090413979,4.61422945926705,0.00472798348546093,0.0373757177902788,-1.94580021680225 +"Q9VXN4",0.310080138281403,14.926649342462,4.60321941706005,0.00477857002982186,0.0375974283478437,-1.95748640646496 +"Q9VSL4",-0.265615341036931,20.9319583139266,-4.59506308008236,0.00481644542814988,0.0377175163105822,-1.96615556101255 +"Q9VN14",0.25756440222445,19.1989930522926,4.58507712850804,0.00486328665388132,0.0378426212947223,-1.97678319433435 +"Q9VCX3",0.901661600277384,12.9282771186039,4.58200629583034,0.00487779591029094,0.0378426212947223,-1.98005441694885 +"Q9VII1",-0.29341904790731,19.4046881646625,-4.56907563567742,0.00493943847523805,0.0381434415587827,-1.99384469940169 +"Q9VF39",-0.360516691918855,16.090662090154,-4.55713690539512,0.0049971464179032,0.0384112452767859,-2.00659983237999 +"Q9W140",-0.360282928835055,13.8800439506938,-4.55062615943158,0.00502894270719572,0.0384783322734058,-2.01356500351618 +"Q9VSY6",0.266324515915827,17.5768516547977,4.54081410576029,0.00507730053656093,0.0386709465524366,-2.02407418278564 +"Q94524",-0.252192677449349,15.6215749118177,-4.52275136375241,0.005167721327589,0.03904371734037,-2.04345889757046 +"Q9VQD8",-0.390481049184316,17.4070644111196,-4.51929484201545,0.00518523398989954,0.03904371734037,-2.04717411062829 +"Q8SXQ1",0.300512013997263,18.3874270120179,4.51708498636151,0.00519646597695573,0.03904371734037,-2.04955031821762 +"Q9VHT5",0.376286286902543,15.5958047108946,4.49765990592908,0.00529640579933631,0.0393016194944049,-2.07047001132442 +"Q9VNH5",0.26751093841559,16.9592295862948,4.49301163307935,0.00532064592621414,0.0393016194944049,-2.07548455287045 +"Q9VL10",0.298202056410986,16.7742135516881,4.49251883183457,0.005323223260193,0.0393016194944049,-2.07601638053933 +"Q9VXY3",0.255748944637485,17.9767589178646,4.48660357072283,0.00535427171856119,0.0393016194944049,-2.08240301203183 +"Q9VAG3",0.276296352142579,16.7627944253442,4.48493463134602,0.00536306924352191,0.0393016194944049,-2.08420592073113 +"Q9VJE3",-0.336090672172377,15.2825752462397,-4.48321263267682,0.00537216381578196,0.0393016194944049,-2.08606659840718 +"Q9VA37",-0.314269878838019,21.8274915033954,-4.46736343527933,0.00545670423407069,0.0397457758184712,-2.10321368920021 +"Q9VQT8",-0.387487495170774,18.0693138461776,-4.46203232041163,0.00548548223802991,0.0397816711871039,-2.10899009232408 +"A1Z7X8",0.262162173235989,16.8732920593989,4.45628961396674,0.00551667661583534,0.0398347038753825,-2.11521738204528 +"Q8IN51",-0.375204472970809,17.3274491214387,-4.44574677741528,0.00557447535608509,0.0399128008565048,-2.12666312998592 +"Q9W5B4",-0.278595290214017,18.8274968708782,-4.44364579069261,0.00558607619041619,0.0399128008565048,-2.12894610575991 +"Q8SXD5",-0.288923580079828,21.1496779705056,-4.44126095569963,0.00559927781799888,0.0399128008565048,-2.1315383452849 +"Q9W5W7",0.407609612620657,14.8834481469101,4.4341207483767,0.005639017525685,0.0399835089121725,-2.13930479046657 +"Q9VWP2",-0.384526501610505,19.7030784666655,-4.43088384648313,0.00565713915064311,0.0399835089121725,-2.14282819012113 +"Q7JWX3",0.257437070427898,18.0626599483875,4.42430901049325,0.00569415353657291,0.0400753084346144,-2.14998996466427 +"Q9VCK6",0.295211280227109,16.1529259482076,4.40867187630064,0.00578330442574283,0.0405317301770548,-2.16704997554523 +"Q7K485",0.332904723365232,20.439016802275,4.40281347037945,0.00581711487261581,0.0405981071444484,-2.17345123373126 +"Q9VH98",-0.325980443314389,17.0978861894697,-4.39427105722862,0.00586682140354259,0.040774408754621,-2.18279476212401 +"Q9VTC3",-0.33892448517237,17.0848162653163,-4.38625597821792,0.00591390158759998,0.0409310699091982,-2.19157181859368 +"Q9VF15",-0.242614525572275,20.9255912069826,-4.34992722496399,0.00613278335229616,0.0422705893869008,-2.23147966507616 +"Q9VAQ4",-0.269773478080435,16.1260234185288,-4.33556873087424,0.00622183574106458,0.0427079095312581,-2.24730948078996 +"Q9VLT8",-0.25602044086731,13.9135307360681,-4.30561547158571,0.00641240540860971,0.0437011281704982,-2.28043571199329 +"Q9VPU4",-0.473979262042695,12.9381499244114,-4.30225471234917,0.00643420031744094,0.0437011281704982,-2.28416123105444 +"Q9VJ28",0.267921631829498,18.9245241687231,4.29769933940522,0.00646387760459722,0.0437011281704982,-2.28921384228768 +"Q500Y7",-0.259628086273551,20.1624816027554,-4.29463594776902,0.00648392284679773,0.0437011281704982,-2.29261344241189 +"Q9VMY1",0.237119342852667,15.4887649588672,4.29256262803952,0.00649752984789182,0.0437011281704982,-2.29491514335683 +"Q9VLP0",-0.308131319057166,16.1711529821517,-4.26350108085788,0.00669173030395164,0.0448265307108086,-2.32724875421134 +"Q8MLP9",-0.272125644789138,15.0017009121489,-4.25822643096491,0.00672768347996417,0.0448871041783209,-2.33313147520096 +"Q9VUY9",0.285793453470561,19.7436316274376,4.25237731310773,0.00676781035575875,0.0449749309697434,-2.33965999274643 +"A1ZB70",-0.237679899643688,16.2234973070463,-4.24387568402954,0.00682662221045555,0.0451857374882534,-2.34915869381288 +"Q02910",-0.307106858823698,16.3319003451734,-4.23758390080814,0.00687052249282272,0.045296567264934,-2.3561956830346 +"P32748",0.280936022332819,17.1587847658588,4.23244127386101,0.00690664393001948,0.0453554412412303,-2.36195202517341 +"Q9VEV3",-0.255139512002199,18.2760099359843,-4.22655726902485,0.00694823873269024,0.0454496557103032,-2.36854331556409 +"Q9VC05",-0.265827285501764,14.979577564938,-4.21865530366386,0.00700454900413721,0.0456390146050815,-2.37740369248309 +"Q9V3A8",0.23862387220467,15.4435319977419,4.21121823016684,0.0070580222236295,0.0458084866498599,-2.3857517561473 +"Q8SY67",-0.240477435273242,16.153664680907,-4.20718185637538,0.00708723889237049,0.0458198235367209,-2.39028619808506 +"A8JTM7",0.296024021825101,17.5022300207055,4.20321805395211,0.00711606453007266,0.0458285545797729,-2.39474160688339 +"D0UGE6",-0.256869750144643,15.3836168586869,-4.19560268655593,0.00717182102517633,0.045932107096432,-2.40330839645031 +"P54185",0.231609841542468,17.4892332906395,4.19351158772954,0.00718721819674386,0.045932107096432,-2.40566234212686 +"Q9VQF7",0.266862815456729,18.6012741810994,4.18844213009552,0.00722470225526609,0.0459954326785643,-2.41137187594443 +"Q9VCR4",-0.272793704076269,15.1559255279955,-4.16437402789,0.00740573159650904,0.0467901307771138,-2.43853403957734 +"Q9VLY7",0.269852436751046,15.3328602872853,4.16249692583319,0.00742006620734973,0.0467901307771138,-2.4406562858092 +"A1Z992",-0.3234735430014,14.5616101059044,-4.16071753297087,0.00743368384648391,0.0467901307771138,-2.44266857472638 +"Q8IM93",-0.249219248077491,18.969225624915,-4.15675355583288,0.00746412252297169,0.0468050991290104,-2.44715317069111 +"Q8SXF2",-0.307520378606608,15.6240696671764,-4.14514622050539,0.00755407292194218,0.0471148481018621,-2.46029922297881 +"Q9VDV2",0.397154512150292,14.4495316391771,4.14106811544014,0.00758596856779922,0.0471148481018621,-2.46492297900351 +"Q26377",-0.244789047602744,16.7556950643977,-4.13950204054332,0.00759825787733867,0.0471148481018621,-2.46669929152254 +"Q9VCE0",-0.409254705259499,15.9237384514469,-4.13319957570353,0.00764794433821317,0.0472473005782947,-2.47385173902262 +"O97477",0.244129490490842,20.9043428320442,4.12518384552559,0.00771167295507271,0.0474652047566837,-2.48295755893408 +"Q9VM58",0.262236860901679,16.3158665880917,4.11359544891896,0.00780487757931797,0.0478622639790529,-2.49613981844556 +"O18413",0.258951017254649,19.3338481993299,4.10200868800898,0.00789935313203433,0.048264179575946,-2.5093413951771 +"Q9VN02",-0.229119355211118,17.3371293905881,-4.07814494949274,0.00809806147282481,0.049297688090043,-2.53659770143214 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_results.csv new file mode 100644 index 0000000..7bc6a0a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q7K860",-1.07010282203316,20.7725800737843,-19.7007841151088,1.06636101316588e-05,0.015206785524887,4.10857966198521 +"Q9VF23",1.00400088528804,15.5837422998497,17.5526202692861,1.82335557852362e-05,0.015206785524887,3.71499635645629 +"Q9VG42",-1.06605120352546,17.1374066689286,-15.6082259453213,3.14098599462344e-05,0.0174638821301063,3.2811985473115 +"Q9V9A7",0.900652273363141,16.0013639141188,14.3443122433113,4.63885033587056e-05,0.0193440059005802,2.95005855289624 +"Q9VC18",0.746458766840398,18.1762665968194,12.8544727686304,7.68247591117411e-05,0.0217041282225164,2.49878216501929 +"O16797",0.710830865309042,16.4208913909529,12.248555244674,9.58567321348076e-05,0.0217041282225164,2.29328166115227 +"P41093",0.682156325885902,18.7542459190837,11.3651319559547,0.000134947757122798,0.0217041282225164,1.96744665129504 +"P83967",-1.05753871615993,17.9421170267216,-11.263649342606,0.000140579296003827,0.0217041282225164,1.9278627252734 +"Q9VA42",-0.610450901797364,20.4860866086764,-11.113214507153,0.00014945838795163,0.0217041282225164,1.86832015458678 +"Q8SZK5",-0.834374233481554,15.2980206072436,-10.5561419464999,0.000188818741322524,0.0217041282225164,1.63845102043695 +"Q9VG81",0.538292763588732,15.2658840153453,10.537863485288,0.000190309450772959,0.0217041282225164,1.63064872827028 +"Q9VC06",0.56563625881649,16.1772279326288,10.4205617612663,0.000200221102909503,0.0217041282225164,1.5801699867847 +"Q9VNW6",0.585128940906209,21.4305516906999,10.3252707718399,0.000208733652145113,0.0217041282225164,1.5386374348594 +"P50887",0.671942645995156,17.7820781916292,10.2543389772391,0.000215354286944347,0.0217041282225164,1.50741114170602 +"P48596",0.50326289527607,22.0002645734184,10.1101982840596,0.000229604823819164,0.0217041282225164,1.44312535980709 +"O97125",0.593581263928478,18.4518873806594,10.0622079288232,0.000234599712002362,0.0217041282225164,1.42147133587429 +"Q9VNB9",0.821299967029908,18.8654801415054,9.95931163480612,0.000245757612352681,0.0217041282225164,1.3746139531959 +"Q9VXP3",0.754597634047849,14.6324082727622,9.88376782449566,0.000254357872664267,0.0217041282225164,1.3398354011205 +"Q9W1L1",0.572567504844393,14.9564641410667,9.78316061065564,0.000266381337866878,0.0217041282225164,1.29301483016564 +"Q9VNE9",0.631374145035377,18.6690495379071,9.71086728004906,0.000275445026021571,0.0217041282225164,1.2590109604784 +"Q9VN13",0.491290663549297,16.9428122066297,9.67949629361022,0.000279493401253136,0.0217041282225164,1.2441605752187 +"Q9VQE0",0.630203990759231,17.2227849975681,9.62822306019263,0.000286265480153095,0.0217041282225164,1.21976435368786 +"Q9VFZ4",0.59451550632658,16.4797491851002,9.31756019175613,0.00033179819376477,0.0217675046856725,1.06856995645036 +"Q9VW54",0.475595827924851,15.6950928155802,9.30731424987858,0.000333442833773114,0.0217675046856725,1.06348252736778 +"Q8SXD5",-0.503216755380496,20.6089082593788,-9.29209826339754,0.000335903383503688,0.0217675046856725,1.05591519793282 +"Q8SZN1",-0.554747642937652,20.2477862382824,-9.27130264580798,0.000339301631791058,0.0217675046856725,1.04554947735513 +"Q9VKC7",0.650178225202424,13.6909261854954,9.11308355710128,0.000366557281883499,0.0218694092125467,0.965785770586624 +"Q9VXQ0",0.515741706504627,14.9634414602676,9.03280161829958,0.000381392061685978,0.0218694092125467,0.924696429538094 +"Q9VZU7",0.524687240448316,17.4349338451203,8.92871694377737,0.000401714948363189,0.0218694092125467,0.870794321518786 +"Q9VLC5",0.466930929805507,21.6888156444389,8.92552419039562,0.000402358657963719,0.0218694092125467,0.869129524910905 +"Q8IN44",-0.449554447974631,19.7828549508703,-8.71398314602472,0.00044791356044005,0.0218694092125467,0.757288943637987 +"Q9V8F5",-0.453190283309455,15.9147668126309,-8.71026147241361,0.000448768964696263,0.0218694092125467,0.755293860096589 +"Q24253",0.547344885081777,18.7253301958552,8.62796303909175,0.000468196272304746,0.0218694092125467,0.710929086186475 +"A1ZA22",0.796340308681946,13.4579255325769,8.59880502200847,0.000475320707951475,0.0218694092125467,0.695096685298755 +"Q9VZF6",0.543579729212098,15.0056447466589,8.58492904497921,0.000478756861762359,0.0218694092125467,0.687541092775067 +"O17444",0.490840743766393,15.3279814255469,8.5113290295729,0.000497489721769717,0.0218694092125467,0.647235831219948 +"Q9W0S7",0.471226656007783,17.7333951889781,8.45164961730151,0.000513328808144651,0.0218694092125467,0.614267923721618 +"Q9V597",0.47199678797168,20.1554027302553,8.38232535098274,0.000532494845682468,0.0218694092125467,0.575646611611044 +"P21187",0.555868340074156,18.8425546206978,8.31547553267421,0.000551796320929764,0.0218694092125467,0.538068643679674 +"Q9VHC3",0.446788886463267,17.0592649265387,8.30252396997494,0.000555632349865817,0.0218694092125467,0.530749841011557 +"Q9VSL3",0.439702485926158,22.6459189941429,8.2924573938302,0.000558636026256415,0.0218694092125467,0.525052659610238 +"Q8IPG8",0.553800156629229,15.9092631760493,8.20981472401187,0.000584046460264392,0.0218694092125467,0.477992930192945 +"Q7K148",0.481160183148869,16.619185121837,8.18849124924397,0.000590826596273259,0.0218694092125467,0.46576663072787 +"Q9VEY0",0.426122258562998,18.1517346981025,8.16657421919926,0.000597894169967396,0.0218694092125467,0.453163842297015 +"Q76NQ0",0.542101741016749,14.3198799651075,8.16452441360808,0.000598560345322675,0.0218694092125467,0.451983277970248 +"Q9W3Y3",-0.403774167073404,18.118486912282,-8.10345330705626,0.000618823080432753,0.0218694092125467,0.41666173919509 +"Q9W3J5",0.636140283547071,15.9058082438369,8.07748578404308,0.000627687699886149,0.0218694092125467,0.401555560827024 +"Q9VHR8",0.421720394802691,20.3363922401522,8.07270726711216,0.000629335516907819,0.0218694092125467,0.398770023301173 +"Q9VWV6",-0.551633910151406,23.8983830830868,-8.01807280524068,0.000648549511415161,0.0220449716085859,0.366795083524765 +"Q9VJD0",0.41554279776137,16.1497596678217,7.9554356657912,0.000671451082553142,0.0220449716085859,0.329847188201919 +"Q9VHT3",-0.4129857938194,15.8199892822815,-7.89510853274638,0.000694431155505688,0.0220449716085859,0.293966440478691 +"Q9VLB7",0.401775596828731,20.8901852779219,7.86517467513967,0.000706183458977792,0.0220449716085859,0.276054049649026 +"Q8I099",0.426987308110627,16.7963113423881,7.85918255019536,0.000708564593631322,0.0220449716085859,0.272459659971044 +"Q9V3I0",0.565213838857268,16.392906514792,7.83010955778161,0.000720255163168554,0.0220449716085859,0.254978754565327 +"Q9VSC3",0.411253909003058,17.4793796977495,7.80700807473712,0.000729709732357844,0.0220449716085859,0.241039244902662 +"X2JAU8",-0.458459676452968,21.8467033211288,-7.73362255323783,0.000760746834851318,0.0220449716085859,0.196467273083689 +"Q9W253",0.566806055001235,15.1333057542366,7.73285630603061,0.000761079163831543,0.0220449716085859,0.195999530891924 +"Q7JPS2",-0.488595501669774,20.8347412451404,-7.70894402582137,0.000771538171645748,0.0220449716085859,0.181378154693029 +"Q9VTM6",0.418788501477,16.4707585105834,7.69039945404291,0.000779768180399622,0.0220449716085859,0.170006076349186 +"P17336",0.519412394788667,20.6412636591518,7.65671408516573,0.000794988481029799,0.0221006797726284,0.14927548957542 +"Q9VR79",0.61432370662336,20.3211832276177,7.58310569120373,0.000829505033842088,0.0224728460479599,0.10364196698569 +"Q9VR94",0.383063494115117,16.1473391894294,7.56126619243992,0.000840089630151149,0.0224728460479599,0.09001380343663 +"Q9VBC1",0.411115115559726,13.5920699508906,7.4997168333105,0.00087080222925624,0.0224728460479599,0.0513853693515012 +"Q9W370",0.595912083193731,18.3065033115352,7.48631845713295,0.000877665133845391,0.0224728460479599,0.0429330821825396 +"Q9VMR6",-0.391162978877965,18.8558128022898,-7.48563024531319,0.000878019395432491,0.0224728460479599,0.0424985062533203 +"Q9VA09",0.464469958769801,16.2975200967873,7.44434643933038,0.000899587384780178,0.0224728460479599,0.0163539638421755 +"Q9VIE8",0.413987873253209,24.8171822488906,7.42517552853107,0.000909818397609499,0.0224728460479599,0.004162485910844 +"A8JTM7",0.36917611792974,17.5826692258792,7.40948923394225,0.00091829356930157,0.0224728460479599,-0.00583706609110024 +"Q9W3E2",-0.72922327580573,17.5664020632755,-7.3811911531962,0.000933823211647528,0.0224728460479599,-0.0239312699584371 +"Q7K485",0.411048102799676,20.4854942967759,7.36454555506335,0.000943105049974338,0.0224728460479599,-0.0346078984768008 +"Q0E9B6",0.418207882374197,18.9913164065464,7.26926246902456,0.000998413999773394,0.0234556979101693,-0.0962007129376321 +"Q9VV36",-0.417345411543479,23.0951464977888,-7.14303942612757,0.00107778514635793,0.0249686892239586,-0.179064634881638 +"A1Z8Z3",-0.362528130960666,19.9216338464977,-7.1115358097739,0.00109875890781934,0.0251058884690776,-0.199975954955177 +"Q9VMY1",0.416473438918668,15.6758639287253,7.06142517397638,0.00113313582909311,0.0255414940936123,-0.23342965071548 +"Q9VIX1",-0.434212049069499,17.1866797232223,-7.03729029977201,0.0011501513028396,0.0255793649751527,-0.249626492521601 +"P10676",-0.387325042492588,19.7987007059331,-6.96781130954975,0.00120086900197092,0.0263559144116776,-0.296563140997001 +"Q9W5W7",0.345119163932569,14.9235142275545,6.92607842864478,0.00123261915244046,0.0263712505488278,-0.324978659760678 +"P18432",-0.461584566730501,23.4890159232902,-6.92534251604163,0.0012331879753049,0.0263712505488278,-0.325481246849967 +"Q9Y156",0.379882899342849,16.1832999061761,6.86751483077511,0.00127888364092776,0.0270022520641455,-0.365139146486973 +"Q6IHY5",-0.412990394838619,20.8505207926339,-6.78210463352457,0.00135013494847049,0.0277369565971658,-0.424314031916321 +"P91927",-0.348998544720086,19.2024090057132,-6.77669052537005,0.00135480934038373,0.0277369565971658,-0.428089490974601 +"P54385",0.452651269708358,21.2572468773143,6.74840373005941,0.0013795481640616,0.0277369565971658,-0.447862584881523 +"Q6WV19",0.376436304335652,13.637129785178,6.7316891314968,0.00139441997628308,0.0277369565971658,-0.459584186693189 +"Q9VLR5",-0.429613748853885,16.9380565035252,-6.72582802188043,0.00139968020205751,0.0277369565971658,-0.463701120548343 +"Q7KVQ0",0.404833717038457,15.5957120402217,6.68962400401752,0.00143270316709383,0.0277369565971658,-0.489208319223537 +"P09180",0.361466029425412,20.5940266567118,6.68521373009161,0.00143678920747398,0.0277369565971658,-0.492324612664159 +"Q8MZI3",0.405456297567031,17.7450487793717,6.67456587211378,0.00144671176496009,0.0277369565971658,-0.499856526419901 +"Q9W3L4",-0.365853797135648,17.5979966314991,-6.65105902672163,0.0014689086826196,0.0278424963932896,-0.516525351529201 +"Q9VM07",0.332871835553281,17.0952048969791,6.61559188092237,0.00150317424298202,0.028171849857236,-0.541782388967331 +"Q7K511",0.389322275702016,16.7827076050032,6.5864995271792,0.00153199534124819,0.0283929803244664,-0.56259650636492 +"Q9VXC9",0.509081728312694,18.8396396200947,6.52188376551806,0.00159840305866542,0.0288663175537339,-0.609140326361327 +"Q7JRN6",-0.422316235617121,14.9507042731206,-6.50565715545639,0.00161561591236582,0.0288663175537339,-0.620897251940155 +"Q9V521",-0.470328962353561,17.5086639719641,-6.47804627695481,0.00164541624585059,0.0288663175537339,-0.640966375819917 +"Q9V3A8",0.452442507592211,15.3233691972988,6.47662332183779,0.00164696972987512,0.0288663175537339,-0.642002842005439 +"Q9VB22",-0.442308511965887,17.254029219692,-6.45998247857704,0.00166526758892325,0.0288663175537339,-0.654139797047184 +"Q9VE24",0.348246225787289,16.1573294124467,6.44843658238701,0.00167810578034385,0.0288663175537339,-0.662578048555474 +"A1Z803",0.428178486900443,18.7378024447702,6.43709959841958,0.0016908267381851,0.0288663175537339,-0.670877430261315 +"Q9VAA6",-0.394896302016591,16.2737570589173,-6.43253353548443,0.00169598268601075,0.0288663175537339,-0.674223947245895 +"Q9V3N7",0.416892233600027,20.4821849499853,6.40539004090084,0.00172702290797443,0.0290977192979934,-0.694163747738755 +"Q7JYW9",0.340520327177376,16.8424050789821,6.35789093538646,0.00178298759479058,0.0297402330811068,-0.729247557585615 +"Q24276",-0.484191723695666,18.7035262982679,-6.33472507876521,0.00181106575022518,0.0299094818948079,-0.746446919961129 +"P22979",0.372013200688006,19.5725357219099,6.25271146259428,0.00191479973989063,0.0311775128364353,-0.807808985806631 +"Q9VMU0",-0.320423202523475,21.1692119939293,-6.24475912161885,0.00192523010920434,0.0311775128364353,-0.813798274328586 +"A1Z847",-0.324676618652834,20.2105024384,-6.21318647097907,0.00196731491020382,0.0315527045213458,-0.837646417422789 +"P23779",-0.367585491410221,21.0539189508054,-6.14774748114379,0.00205808522631868,0.0321905212499628,-0.887430043518467 +"Q9VSY0",-0.423761862841211,22.474034714084,-6.1456955944711,0.00206101113860904,0.0321905212499628,-0.888998835502457 +"Q9VV31",-0.937046168441297,15.6196882999564,-6.13714459130021,0.00207325801823473,0.0321905212499628,-0.895541722693825 +"A0AQH0",0.310131716848211,16.8967146429751,6.1238981227381,0.00209240141086816,0.0321905212499628,-0.905693742963826 +"Q9W4I3",0.474211777221297,16.6621143263011,6.10925820553987,0.00211380402114028,0.0321905212499628,-0.916936867242558 +"Q9VKD3",0.334875707174085,18.6561904894478,6.10029940247408,0.00212702981578412,0.0321905212499628,-0.923829053808922 +"Q9VAJ9",0.374226933416882,17.3880450783144,6.08764317887567,0.00214588242061995,0.0321905212499628,-0.93358134214399 +"Q7JWQ7",0.325568542883738,14.2665536172837,6.07727588316079,0.00216147384891837,0.0321905212499628,-0.941583532476104 +"Q9VIK6",-0.318014670631186,16.6916448294787,-6.01960807670821,0.0022507039446498,0.0325793706784135,-0.98632092369365 +"Q9VMB9",-0.345940688271053,22.5887056996598,-6.00990657312346,0.00226614272472869,0.0325793706784135,-0.993884875536462 +"Q9VSA9",-0.399888630834727,22.3307441873751,-6.00645325747659,0.002271668659937,0.0325793706784135,-0.996579950720899 +"Q9VK00",0.488371677433378,17.2821802595613,5.99918751602567,0.00228334762987503,0.0325793706784135,-1.00225488621449 +"Q9VAC1",0.311113277975064,23.2638664548554,5.9980121484932,0.00228524362672325,0.0325793706784135,-1.00317348838494 +"Q9W483",0.316554114583353,15.6042467199103,5.974998869262,0.00232274680374977,0.0325832554915753,-1.0211918224239 +"Q9VFQ9",0.447297339072794,19.0800558688986,5.96322471773371,0.00234221739021524,0.0325832554915753,-1.03043435670573 +"Q94523",0.299886907137324,20.0363204609209,5.96208097204676,0.00234411910011333,0.0325832554915753,-1.0313330448873 +"Q9W0Z5",-0.384302969411074,17.1200106975698,-5.9259623440491,0.00240512972756703,0.0327643051423023,-1.05979196859052 +"Q01637",0.310483528782417,15.9194399547935,5.92251522121937,0.00241105069242844,0.0327643051423023,-1.06251608729369 +"P32392",0.470885052532783,17.6713837621443,5.90362872588793,0.0024438006142448,0.0327643051423023,-1.07746623212733 +"Q9VCK6",0.316387399399039,16.7803739598168,5.88764861855651,0.00247192466152043,0.0327643051423023,-1.09014875299169 +"Q9VU04",-0.407079575262506,16.7325184919402,-5.88283202855675,0.0024804769607316,0.0327643051423023,-1.09397736211869 +"M9PEG1",-0.316921561264152,20.3246036758449,-5.8705205568216,0.00250249753787539,0.0327643051423023,-1.10377605248261 +"A8JNG6",-0.327016080839435,15.5802542952941,-5.84041692744957,0.00255732815657889,0.0327643051423023,-1.12781174778345 +"Q9VCA5",0.340874953284308,14.0988826887914,5.83385012438127,0.00256947798497014,0.0327643051423023,-1.13306931673027 +"Q9VED8",0.458767077405849,16.4413310209794,5.83372138807699,0.00256971685652905,0.0327643051423023,-1.13317243842496 +"P82890",-0.380014863874226,19.6610648656161,-5.81184465473859,0.00261069558286223,0.0327643051423023,-1.15072532612948 +"Q9VFN7",-0.302808996284885,18.8680411215186,-5.81061034772134,0.00261303070507663,0.0327643051423023,-1.15171739605263 +"Q0E8X8",0.388784601936287,20.025909806505,5.80955183629581,0.00261503522638269,0.0327643051423023,-1.15256831733054 +"Q7JVK6",0.356142008819724,17.3446065539195,5.80649266557599,0.00262083871397345,0.0327643051423023,-1.15502829861176 +"Q9VAY9",0.443589910309067,14.6259329733115,5.80055618884026,0.00263214441790678,0.0327643051423023,-1.15980524320526 +"Q8MSI2",-0.291370633745927,24.2423316931338,-5.77122304536543,0.00268886605423152,0.0330467857887484,-1.18347158388697 +"P45437",0.51869542326795,15.93558288272,5.76836897881377,0.00269446215064136,0.0330467857887484,-1.18577985597923 +"Q7K3E2",-0.292256238751698,20.3950667273432,-5.73975699664272,0.00275133471142106,0.0333357221810199,-1.20897511845077 +"Q8IN43",-0.660066493973943,17.5333607067319,-5.73645407452897,0.00275799140346568,0.0333357221810199,-1.21165918105564 +"Q9VCX3",0.578751131541109,12.9520743445143,5.71985056542793,0.00279174531892382,0.0334047761423288,-1.22517198548468 +"Q9VVL8",-0.291818193570249,15.9786737763096,-5.7073500863316,0.00281748215139033,0.0334047761423288,-1.23536786553227 +"Q9VA37",-0.289382014725813,21.8230639055693,-5.70392584708675,0.002824581318706,0.0334047761423288,-1.23816416394349 +"Q9VNZ3",0.315069228417384,15.1321400384332,5.69008624889808,0.00285349105206961,0.0334047761423288,-1.24948056860291 +"Q9I7Q5",-0.417327906174869,20.6239132838747,-5.68517305869677,0.00286383872203418,0.0334047761423288,-1.25350368832179 +"Q9VNC1",0.429652483120574,15.5390311284999,5.65690900850406,0.00292423868822777,0.0338536972999553,-1.27670550024104 +"A1Z6L9",0.361888354190647,15.1244597218337,5.64830845995116,0.00294291733123113,0.0338536972999553,-1.28378532914657 +"Q9VV46",-0.351577168242656,24.081381733136,-5.60347513543722,0.00304261138624108,0.0347607930976035,-1.32084088178493 +"Q6IGM9",-0.278115234933734,14.7565078411683,-5.58001817215558,0.00309636748437189,0.0351342922716484,-1.34032894682669 +"Q9VQ91",-0.397220495036839,14.940391754818,-5.55272052155338,0.00316035088696068,0.0356180086449353,-1.36309527853127 +"Q6NLJ9",-0.427691534079919,15.122066810648,-5.54229331970991,0.00318520464636298,0.0356571902693521,-1.37181651666499 +"Q7JWF1",0.378406429495158,20.585061350099,5.53175510372505,0.00321055898096928,0.0357014158683784,-1.38064464409177 +"Q9W1H8",0.320262791029968,20.384318683365,5.5116060028484,0.00325970628325846,0.0359604641066848,-1.39756343952397 +"Q9VW00",-0.292874946795282,15.690046110138,-5.50461259227451,0.00327697274833099,0.0359604641066848,-1.40344778686976 +"Q9VXE0",0.340973758577544,18.1172290320684,5.49148012342282,0.00330969034116773,0.0360821143076325,-1.41451453840579 +"Q9VZG1",-0.355184589742322,17.7389305618792,-5.47904817435916,0.00334102022782403,0.0361871541559122,-1.42501134853296 +"Q9VZD9",0.383883063084781,14.3999681338154,5.45904415607688,0.00339217404582755,0.0365041697318733,-1.44194331367866 +"Q9W1R3",-0.34745228195608,16.970161178702,-5.44806577237482,0.0034206422703872,0.0365745596602939,-1.4512576693154 +"Q9VN14",0.280640324631186,19.3519530917296,5.4170807929651,0.00350253083418335,0.0372116014739989,-1.47763036258469 +"Q9VCK0",0.349785361923086,18.1928804299884,5.40388135431043,0.00353811942598335,0.0373517924211407,-1.488902891381 +"Q8IN49",0.456880425523771,16.8127675831439,5.37468999179111,0.00361835910466169,0.0379586351356963,-1.51391355979667 +"Q9I7K0",-0.353838105862749,16.3462495731419,-5.34258463054605,0.00370911135848467,0.0386674859122027,-1.54154996438859 +"Q9V3V0",0.376469714446882,14.5320617412328,5.28922473972918,0.00386598124434153,0.0397551228649369,-1.58778357326012 +"A1Z9A8",0.336179124065996,16.6193595958516,5.28338070204979,0.00388363474869275,0.0397551228649369,-1.59287011502775 +"Q7JZN0",0.270390708417535,16.6647752822188,5.28060782344707,0.00389204435943363,0.0397551228649369,-1.59528517023346 +"A1ZBA5",0.280697211740907,15.6083178562313,5.26121048336503,0.00395147948952066,0.0397551228649369,-1.61220812377455 +"Q8IRD0",0.277594728865925,17.5451469928253,5.25091991866372,0.00398344665353364,0.0397551228649369,-1.62120643755537 +"Q9VFB2",0.269678295480929,16.4411403505784,5.25085947931889,0.00398363530779086,0.0397551228649369,-1.62125932909719 +"Q9VTU2",-0.274500456533254,20.826307804155,-5.24600513983272,0.00399882214620738,0.0397551228649369,-1.62550904872192 +"Q9VKU3",0.288824783296839,15.5693701457586,5.24431905760616,0.0040041130943102,0.0397551228649369,-1.62698586564514 +"Q9V3E3",0.429356122110651,15.000369867789,5.23036128654396,0.00404823241864055,0.0399553353508429,-1.63922596889215 +"P91926",0.291337037812045,17.5840209143888,5.21505772608487,0.00409726847255569,0.0402014341895464,-1.65267640445873 +"O18413",0.258882415900089,19.4079890249618,5.19521772621844,0.0041618904944705,0.040580302807083,-1.6701610543744 +"Q9W3R8",-0.330695508728661,17.2719344050007,-5.18835017476121,0.00418453961799657,0.040580302807083,-1.67622572982209 +"Q8SXQ1",0.322087491138163,18.6434112685149,5.11967562993482,0.0044192354248732,0.0422834409788507,-1.73722496161288 +"A1ZAL1",-0.31902467093772,17.3505625775267,-5.11635571198885,0.00443097026075629,0.0422834409788507,-1.74019018947953 +"P19334",-0.344872586512036,15.419499531634,-5.11487602727923,0.00443621233291299,0.0422834409788507,-1.74151227722062 +"Q9VDC6",0.422559676548344,16.9030220171208,5.06744475025193,0.00460819686598731,0.043032486366046,-1.78405172429206 +"Q9W369",-0.291331022399937,22.1684204894567,-5.06113567653411,0.00463166231954138,0.043032486366046,-1.78973356202882 +"Q4V5H1",0.299203163874797,14.9563850749753,5.05560043321361,0.00465236598989925,0.043032486366046,-1.79472305252146 +"Q94901",0.338815934439054,19.0474109690414,5.05351653214215,0.00466018879765029,0.043032486366046,-1.79660259220567 +"Q8SXF0",0.33493219585923,16.3454284878734,5.05344106984788,0.00466047236885442,0.043032486366046,-1.7966706654829 +"Q7K569",0.25793737036917,20.3957876759851,5.05055504087265,0.00467133276407531,0.043032486366046,-1.79927469823826 +"Q8SZK9",0.275934113197287,22.3427952503278,5.04418991258271,0.00469539119821366,0.043032486366046,-1.80502198033817 +"Q9VDV2",0.256113824514376,14.2595603268696,5.02052138701445,0.00478614512083038,0.0436245358554376,-1.82644260157321 +"Q9VGA3",0.303364502730872,19.4699561044887,5.00828844134336,0.00483386227288625,0.043646922397928,-1.83754441058138 +"Q8IM93",-0.318173498959386,19.1659605015581,-4.99981385962571,0.00486724868101814,0.043646922397928,-1.84524766874089 +"Q6IGW6",0.303123496113811,15.7562899964543,4.99340111563812,0.00489269334430479,0.043646922397928,-1.85108344644691 +"P13060",0.252638232407126,20.0023075469381,4.9932562200472,0.00489327007698593,0.043646922397928,-1.85121537222613 +"Q7K5M6",-0.288882480066132,18.2431933525148,-4.97872654782679,0.00495151275510616,0.0439315067846653,-1.86445946018649 +"Q9VY28",0.287991754614508,15.2313399570071,4.95616753829758,0.00504357131473959,0.0445115182697653,-1.88508138820263 +"Q9W5B4",-0.297304206931464,18.6156874457017,-4.92971561267007,0.00515410140026805,0.0448686064081534,-1.90935361276611 +"Q9VH64",-0.439878373810291,17.5297696305471,-4.92439029133571,0.00517669766913919,0.0448686064081534,-1.91425211565278 +"Q86BS3",-0.286352924866279,19.0203224663779,-4.91368061861975,0.00522249555507708,0.0448686064081534,-1.92411562773482 +"Q9VG69",-0.282664018575769,19.9817350416006,-4.90236372226873,0.00527141046227936,0.0448686064081534,-1.93455613414258 +"Q9VXZ0",-0.286889110930261,19.7139580836469,-4.90085833997514,0.00527795780556385,0.0448686064081534,-1.93594631440734 +"Q9W086",0.312576455590644,16.9269990393199,4.89906056443719,0.005285789423604,0.0448686064081534,-1.93760693568891 +"P42281",-0.282817384527846,21.8652255572914,-4.883178348472,0.00535557555486711,0.0448686064081534,-1.95229753544264 +"Q9VN86",0.276952775176825,15.1994465128554,4.88305618949692,0.00535611651506449,0.0448686064081534,-1.95241066880893 +"Q7K3N4",0.296565851831982,16.9650078699634,4.87500221744057,0.00539192475662174,0.0448686064081534,-1.95987429437009 +"Q9V931",-0.310261305952137,17.7286847562652,-4.87115383917334,0.00540913441514461,0.0448686064081534,-1.96344387243149 +"Q9I7K6",-0.254067084354153,16.3144979284304,-4.86532604720207,0.00543531933353814,0.0448686064081534,-1.96885350689903 +"P02515",0.316394825726881,17.6391413719267,4.85983314442516,0.00546013648113446,0.0448686064081534,-1.97395674397178 +"Q9VBC7",0.32456055906615,16.1436904031242,4.85972795763874,0.00546061302122234,0.0448686064081534,-1.97405451110956 +"Q9W1F8",-0.381637895279242,17.7018289555397,-4.85972470489182,0.00546062775830644,0.0448686064081534,-1.97405753444007 +"O77410",0.308541034371464,14.0314828218824,4.85377022236626,0.00548768426994134,0.0448698890306968,-1.97959459621025 +"Q9VJQ3",0.240755389811628,20.4797149412976,4.83619888412558,0.00556845266186196,0.0451491188801443,-1.99596389281682 +"Q8SWS3",-0.281830627466576,16.4931505034776,-4.83457870028264,0.00557597031733197,0.0451491188801443,-1.9974754814554 +"Q95SS8",0.275759398316792,15.6607093080053,4.821143351569,0.00563877341382691,0.0454370727259096,-2.01002490618744 +"Q9VXK6",-0.299587606607684,17.7753759617279,-4.78341177916814,0.00581965640267998,0.0460619627202749,-2.04540821467447 +"A8JNT7",0.256033625834768,16.8518597708813,4.77142654877079,0.00587853756395866,0.0460619627202749,-2.05669081062495 +"A1ZB23",-0.245067810432726,15.9031308697085,-4.76812168143353,0.005894896986256,0.0460619627202749,-2.05980561065173 +"Q9VRP3",0.236586652517612,17.9606770676961,4.76403973956625,0.00591517707784215,0.0460619627202749,-2.06365499312718 +"Q7JXZ2",0.566460337904786,17.3968019554637,4.76288036358043,0.00592095211906132,0.0460619627202749,-2.0647487595597 +"Q27377",-0.237972193061101,20.2293066729353,-4.76276539769322,0.00592152514472512,0.0460619627202749,-2.06485723017116 +"Q9VZU4",-0.24186886952706,21.4572546731564,-4.76173917616709,0.005926643045874,0.0460619627202749,-2.06582555829342 +"Q9VFC2",0.287112071218012,19.7329113964709,4.75935970271174,0.00593852984769958,0.0460619627202749,-2.06807138728857 +"Q9V3W2",-0.251593058428615,21.5260307325581,-4.75398362431076,0.00596548990056094,0.0460619627202749,-2.07314855988663 +"Q7K4T8",0.358719341814343,13.3816254379186,4.74722697188175,0.00599957795403979,0.0460619627202749,-2.07953553842953 +"Q9VSS2",0.378464814277633,16.1297487194679,4.74172910449476,0.00602748463458577,0.0460619627202749,-2.08473753147998 +"Q9VPL3",0.394510454305872,15.9557120577058,4.73776444911965,0.00604770373845336,0.0460619627202749,-2.08849157065229 +"A1Z9B5",-0.342970416932227,16.0469647335285,-4.73094232682577,0.0060826827024049,0.0461177943073244,-2.09495667018486 +"Q8MSV2",0.333649325636994,18.3918364603652,4.72251523109266,0.00612622017749669,0.0461575285362634,-2.10295217527834 +"Q9VAM6",-0.278519242310828,22.1202668014595,-4.715686872235,0.0061617672091948,0.0461575285362634,-2.10943847136525 +"Q9V406",-0.257842178125532,16.9942796351359,-4.71098598873825,0.00618638017305747,0.0461575285362634,-2.11390785060126 +"Q7K0P0",-0.314122348935856,15.1953336859751,-4.70203029880414,0.00623359148556388,0.0461575285362634,-2.12243149954045 +"Q9VPF6",0.353343425041045,14.0586590562919,4.69627321914376,0.00626416475350214,0.0461575285362634,-2.1279170847524 +"Q9W0M4",0.24923102029247,17.7751686933459,4.69311182630814,0.00628102853793217,0.0461575285362634,-2.13093147014589 +"Q7K5J8",-0.274199321153755,18.2829138356475,-4.69299924145669,0.00628163008257302,0.0461575285362634,-2.1310388468942 +"Q9VW34",0.461246085763289,18.4845217086004,4.67604757604998,0.0063729819406552,0.0466233941974249,-2.14722769739614 +"P49963",0.240171217357663,15.0286940593038,4.66217024863555,0.00644893141292587,0.0469730026059404,-2.16051219185321 +"P12370",0.257273899680772,20.7209713473918,4.63767578642442,0.00658560178041047,0.0470317745677839,-2.18402996434999 +"Q9VM10",0.267191935772791,16.9069386748058,4.63270134553033,0.00661377190527158,0.0470317745677839,-2.18881694970915 +"Q9VAQ4",-0.433780259269348,15.8095219049789,-4.62834951338329,0.00663853247032501,0.0470317745677839,-2.19300781005898 +"Q9W314",-0.262646523175835,16.2829403807419,-4.62440162964194,0.00666108902981607,0.0470317745677839,-2.19681210476782 +"Q9V3H2",0.285341505229702,18.47690555187,4.62037710701662,0.00668417628225293,0.0470317745677839,-2.20069264257293 +"P09208",0.674289617021337,12.9511335075448,4.61834564750967,0.00669586576477221,0.0470317745677839,-2.20265234031034 +"Q7JXW8",0.34450903156624,15.0437191344039,4.61819113164167,0.00669675586753122,0.0470317745677839,-2.20280142306782 +"Q9W3M7",0.347153441795374,16.0944066370234,4.6179781594917,0.00669798294104768,0.0470317745677839,-2.20300691249786 +"Q86BN8",-0.474384293648406,14.1554007544894,-4.61576175904018,0.00671076879324495,0.0470317745677839,-2.20514584209096 +"Q9Y143",-0.253251947958898,21.0284687513091,-4.60354221114536,0.00678177758910768,0.047330564931513,-2.21695144685695 +"Q9VBI2",-0.229895825643929,22.1519443837149,-4.58275004775461,0.00690464294143902,0.0479872684430012,-2.23709060814603 +"Q9VN50",0.289441404023403,17.8643472468821,4.57649489421648,0.00694211655722709,0.0480475121056216,-2.24316199074898 +"P08182",-0.235746644310719,19.720194935455,-4.55266460998138,0.0070870863858874,0.0487496308493266,-2.26634602463333 +"P48611",0.297375091115622,20.2928883263457,4.5501389316911,0.00710265862432422,0.0487496308493266,-2.26880821818803 +"Q9W266",-0.276583429808543,18.494010682764,-4.54552001199814,0.00713124096357055,0.0487496308493266,-2.27331352477676 +"Q9VU95",0.340229729439573,16.2586845007446,4.53262715703242,0.00721174087592825,0.0490987093104013,-2.28590627948137 +"Q7JX94",0.511843496175016,12.0383291093054,4.52634556643144,0.00725134800898631,0.0491676767438584,-2.29205075175139 +"Q9VWP2",-0.284880743105393,19.7269683510103,-4.51282254052518,0.00733748444558382,0.0495502998187603,-2.30529884294063 +"Q9VK39",-0.265434389138825,18.1743300557571,-4.49510938754334,0.00745213429407974,0.0501216129134073,-2.32269378805836 +"Q9VKW5",0.251574880464096,16.8696563846643,4.47265865556935,0.00760048374708587,0.0509140838961415,-2.34480968253574 +"O02195",0.266101319035847,18.6904897424575,4.46144969923379,0.00767584568883263,0.0512132424358913,-2.35588018396365 +"P48375",-0.32058091844652,21.9424286485359,-4.45520633291661,0.00771820218518827,0.0512906822505738,-2.36205474002835 +"Q9VZJ2",-0.24568661099816,17.4419312353842,-4.43711095020623,0.00784252325130184,0.051910034853855,-2.37998432435132 +"Q9VEV3",-0.220472560803611,18.3400997571877,-4.41981479668034,0.0079635539459484,0.0521722488896498,-2.39716883940467 +"Q9VVN2",0.425746119972606,14.9671986335556,4.41627001516395,0.00798862839142131,0.0521722488896498,-2.40069640314356 +"O77477",0.24644918298263,16.7484650505523,4.41376428286248,0.00800640884383509,0.0521722488896498,-2.4031911276988 +"Q9VZX9",-0.267557728460837,18.3010682740212,-4.41364567441977,0.00800725162814769,0.0521722488896498,-2.40330923897829 +"A1Z6V5",-0.229875686854587,20.1944522458517,-4.40691326112167,0.00805526042026827,0.0522808341673442,-2.41001697340596 +"Q9VWH4",-0.225344956355833,24.3779204465097,-4.37935879049589,0.00825530052080946,0.0530891963317784,-2.43754307276768 +"Q0KHZ6",-0.231881541242604,23.1461617076749,-4.37685621701611,0.0082737554354095,0.0530891963317784,-2.44004886143921 +"Q9VY05",0.315944202312707,18.1415993469143,4.37664782272177,0.00827529439224364,0.0530891963317784,-2.44025756702486 +"Q9VI09",-0.242167439421745,20.1147259900709,-4.35834156148981,0.00841180136028287,0.0537581788082445,-2.45861732669621 +"Q9W2X6",-0.240674386452209,24.1049769043598,-4.34093255823584,0.00854407067145955,0.054296712167117,-2.47612525382909 +"Q8T3X9",-0.237160443764054,18.2690431619307,-4.33393864681478,0.00859789350529798,0.054296712167117,-2.4831721184819 +"Q9VFS4",-0.295345844836465,15.4097952888871,-4.33042931098293,0.00862504973736195,0.054296712167117,-2.48671088105675 +"P28668",0.460592351715226,15.5052532264893,4.33027112181147,0.00862627621360072,0.054296712167117,-2.48687044166594 +"Q9VY87",0.330558407898888,17.5404816800694,4.3204974732457,0.0087024511183078,0.0543130208287064,-2.49673635342023 +"Q9VNH5",0.241820573724784,17.2048817780271,4.31724677575816,0.00872796108286354,0.0543130208287064,-2.50002102323603 +"Q23983",-0.219562974107006,22.4123413858964,-4.3140858893719,0.0087528502381761,0.0543130208287064,-2.50321651715824 +"Q7JQR3",-0.26534913118283,19.0324757986735,-4.30933859172586,0.00879038723822019,0.0543130208287064,-2.50801870811604 +"Q9VIV6",0.485398557579224,15.1137631052294,4.30896368049072,0.00879335969073625,0.0543130208287064,-2.50839810371497 +"Q7JYX5",0.377719490722088,14.7802632026953,4.29875506689454,0.0088747518197755,0.0543130208287064,-2.51873722534985 +"Q9V3D9",0.215287100541364,17.4235754897911,4.29702919282816,0.00888859899337097,0.0543130208287064,-2.52048676558708 +"Q9VP57",-0.246555427508564,19.4357625801998,-4.29693426957321,0.00888936132268396,0.0543130208287064,-2.52058300393608 +"Q9VIH9",-0.224730503562245,19.2294160615582,-4.28960117308164,0.00894848542389851,0.0544331005228114,-2.52802193625591 +"A1ZB71",-0.292876169460797,19.2233045651737,-4.28641937758795,0.00897428216053546,0.0544331005228114,-2.53125225931248 +"Q9TVP3",-0.235364863178614,23.0252114005843,-4.27445753607045,0.00907204566228655,0.0548267107416448,-2.54341065966397 +"P29327",0.230928384390623,19.4415733645371,4.26972256556298,0.00911108818066283,0.0548638811745328,-2.54822960353707 +"Q9VQF7",-0.269689106344735,18.7904462134538,-4.25459888994879,0.00923711445494281,0.0554226867296569,-2.56364495057206 +"Q9VGP7",0.456902197467866,15.9894357575025,4.23989466744646,0.00936160438171826,0.055785423649193,-2.57866705369505 +"Q9V3Y7",-0.219460163402449,19.4849706123232,-4.2361413096593,0.00939369493972246,0.055785423649193,-2.58250697686726 +"A1ZB70",-0.300376352173798,16.2773356391657,-4.2319998405536,0.0094292531418522,0.055785423649193,-2.58674652451447 +"Q9VEB1",-0.22305869504585,25.1197448529564,-4.23175635185212,0.00943134860256141,0.055785423649193,-2.58699586321567 +"Q9VW66",-0.21695108495809,21.4629216883679,-4.22628121398133,0.00947861163652578,0.0558668699990282,-2.59260500031479 +"Q9VN91",0.272104618567749,19.7028147040668,4.2203602249404,0.00953003532319313,0.0559721792925569,-2.59867619307585 +"Q9VF86",0.275860690728386,17.5879183444661,4.20826679582459,0.00963608322044779,0.0559887959516258,-2.61109351027018 +"Q9V3L6",0.39365898050877,15.8828527040903,4.20825503893714,0.00963618698619269,0.0559887959516258,-2.61110559321138 +"Q9VWI0",-0.216684444020913,20.9936163375113,-4.20420600628577,0.0096720013551129,0.0559887959516258,-2.61526820990196 +"P29613",-0.263442594567874,23.900422115445,-4.20001297235047,0.00970925349600699,0.0559887959516258,-2.61958158422842 +"P17210",-0.216162777481355,20.8444925274603,-4.19841347095701,0.00972350809213508,0.0559887959516258,-2.62122772003414 +"Q9VJZ4",-0.234935151287441,21.2777071809481,-4.19720847073248,0.0097342630851148,0.0559887959516258,-2.62246811857066 +"Q24238",0.347221363310167,16.351156259649,4.18327342171362,0.00985965282301134,0.0563698128181005,-2.63682913017145 +"Q960M4",-0.315707488582852,23.2278968755121,-4.18109666859714,0.00987940952859252,0.0563698128181005,-2.63907518334303 +"Q9VGP6",0.211376919459326,17.9549169589874,4.17862581943036,0.00990189158015794,0.0563698128181005,-2.64162560034547 +"Q9W308",-0.378837456442426,17.3526084852157,-4.17259133293522,0.00995705053094268,0.056491021379634,-2.64785845857886 +"Q9VXY3",0.215679152287297,18.1868440035235,4.15522430162959,0.0101178097067768,0.0572084969183174,-2.66582845600601 +"Q9VX69",-0.214149884571466,18.2689747009594,-4.13957257217308,0.010265292613328,0.0578463110778081,-2.68206441472899 +"P23128",0.267823722330411,14.5638179807827,4.13278364431466,0.0103300426112112,0.0578550963839256,-2.68911879866313 +"Q9VSR5",0.225727005938364,20.3198510449602,4.1321383165429,0.0103362222556414,0.0578550963839256,-2.68978973923536 +"Q9VXN4",0.208880183627528,14.9822576130266,4.12492093156587,0.0104056305658124,0.0580102339028103,-2.69729807176478 +"Q8MR62",-0.233987832274895,17.6969713047311,-4.11705489471673,0.0104818971415259,0.0580102339028103,-2.70549060155654 +"Q7K0S5",-0.20504668025017,18.3009953176017,-4.11658828302487,0.0104864417154562,0.0580102339028103,-2.70597688882255 +"Q8MKN0",0.264736712744522,16.5737470960149,4.11488484198982,0.0105030519416359,0.0580102339028103,-2.70775245169192 +"Q9Y119",-0.299365209059253,17.5275464648821,-4.10773327079746,0.0105731226140852,0.0582045165686276,-2.71521183320114 +"Q9VXH4",0.208889878918486,17.1661016885245,4.09731167643642,0.0106762116170154,0.0585786874249397,-2.72609651003081 +"P35992",0.250256967879698,15.9055895228749,4.09306321481778,0.0107185729129851,0.0586182938323248,-2.73053869844012 +"Q9W2E7",0.241579626725684,18.5502397197248,4.08788219227907,0.0107704983370814,0.0586577234356005,-2.73595985162788 +"Q9VEJ0",-0.216430352831495,22.2349512396852,-4.08533685266168,0.0107961157642262,0.0586577234356005,-2.73862472524058 +"P40796",-0.246873092747009,18.2480349386022,-4.07664089543666,0.0108841733589796,0.0587962459978418,-2.74773683019376 +"Q9VFT4",0.319691685591332,15.780285201935,4.07586112903815,0.0108921103197441,0.0587962459978418,-2.74855449997342 +"P14484",0.287774220610832,19.3703460710046,4.06572054542735,0.0109959446293875,0.0589332447287779,-2.75919681184494 +"M9NEW0",-0.231508465536933,18.3229534373052,-4.06333784332863,0.011020509415457,0.0589332447287779,-2.76169977778207 +"Q9VSY6",0.367919959490681,17.7862563834511,4.05895875701575,0.0110658232154915,0.0589332447287779,-2.76630224995775 +"Q9VI75",-0.401654927706335,17.5403007252799,-4.05722442692951,0.0110838296882106,0.0589332447287779,-2.76812589584393 +"Q24478",-0.265432319525399,17.3797551371038,-4.05519456423451,0.0111049478868767,0.0589332447287779,-2.77026090237998 +"Q9VKG4",-0.310731264092516,15.9440364198177,-4.05284223215919,0.011129479670003,0.0589332447287779,-2.77273590277512 +"Q7JZW0",0.202955779305679,19.6870402197359,4.04450376083284,0.0112169493569974,0.0592084542008599,-2.78151630734074 +"Q9W3H4",-0.2369236017019,19.4111557377707,-4.03646478246015,0.0113020367383942,0.0594693920493422,-2.78999184050399 +"Q9VHT5",0.240803209407389,15.6523539013448,4.02797948741593,0.0113926650811612,0.059486790839648,-2.79894911053251 +"Q9V3U6",0.34219051757978,21.1467444322248,4.02739042517153,0.0113989880060193,0.059486790839648,-2.79957136451151 +"Q9VAU6",-0.282056428939589,13.3535373586382,-4.02140535490823,0.0114634633608335,0.059486790839648,-2.80589681449739 +"A1Z7X8",0.21290336599699,17.0414846100731,4.02090977030864,0.0114688211622534,0.059486790839648,-2.80642084011221 +"Q9VCW2",0.446879171191407,15.3377191401657,4.01953851962455,0.0114836610613709,0.059486790839648,-2.80787098964885 +"A1ZB79",-0.202454514888938,20.8407650921992,-4.00696372316232,0.0116207955932828,0.0598341161328293,-2.82118331998279 +"O46106",-0.21693230693597,17.0294908239495,-4.00656528580345,0.0116251718286196,0.0598341161328293,-2.82160553937521 +"Q9V9Q4",-0.241338330153287,19.206972391631,-4.00015871071637,0.0116958026096536,0.0598341161328293,-2.8283979964748 +"Q9W1X4",0.247304597316084,15.1039714590987,3.99659514393719,0.0117353062043577,0.0598341161328293,-2.83217904513801 +"Q9VGU6",0.207862246823556,18.627822965502,3.99581661581018,0.0117439571708265,0.0598341161328293,-2.83300535658863 +"Q9VQQ0",-0.206022907358513,18.3632992143083,-3.99239181223668,0.0117821017001651,0.0598341161328293,-2.83664151392329 +"M9PFN0",-0.204229713602196,16.6523307947982,-3.98892773429191,0.0118208304623322,0.0598341161328293,-2.84032127824024 +"Q9VJZ5",-0.203786299146257,17.0579139406441,-3.98742432458005,0.0118376848464231,0.0598341161328293,-2.84191889332319 +"P54195",0.441466895920943,18.8469095624385,3.98295788566655,0.0118879223218114,0.0599065088603667,-2.84666733807249 +"Q9U1L2",-0.336331613930852,18.3768501775684,-3.97844270861067,0.0119389604084448,0.0599824878351988,-2.85147084404502 +"Q9VEX6",-0.199802257689317,20.7586510946704,-3.95841727401668,0.0121684171953202,0.0607418036909724,-2.87281441301451 +"Q9VTC1",-0.224099996529246,15.9416638680668,-3.95803760011905,0.0121728169106098,0.0607418036909724,-2.87321969891287 +"Q9V9T9",0.258731250194685,13.4658293622758,3.95575190034537,0.0121993430674315,0.0607418036909724,-2.87566007549874 +"Q9VHI1",0.200424355988281,14.2148860142266,3.94387644992168,0.0123382478556435,0.0612505875690873,-2.88835263907741 +"Q8WTC1",0.253254450513325,14.9967418845767,3.92818399421435,0.0125246305954325,0.0619432991219143,-2.90515954711752 +"Q9VW26",0.208134852599926,17.5287659942802,3.92589756369148,0.0125520594143927,0.0619432991219143,-2.90761165536543 +"Q9V9X4",-0.199231575840429,18.5168087461352,-3.92055530427459,0.0126164196957884,0.0620772508925517,-2.91334429393358 +"Q9W499",0.294028397578504,16.8446832135519,3.90752508200985,0.0127750154283582,0.062672722748534,-2.92734591084263 +"Q9VXZ8",0.250734477912232,17.7635446497036,3.89590310966289,0.0129184286403318,0.0631529999847709,-2.93985731437748 +"Q9VTY2",-0.229364235524898,20.8208492681732,-3.89347421237401,0.012948636687525,0.0631529999847709,-2.94247483874411 +"Q9VYV4",-0.210763535834566,15.5936588469032,-3.88350706084829,0.0130734600154786,0.0635758930198783,-2.95322596924173 +"Q7K9H6",0.300967889081916,11.8823009127328,3.86172728410177,0.0133511146593087,0.064737381545718,-2.97677448183451 +"Q9W0J9",-0.195530007078386,18.3747640501814,-3.85555648459108,0.0134310226058417,0.0647648095597005,-2.98346029231727 +"Q7JNE1",-0.202242679784792,17.8691215782019,-3.85529453738491,0.0134344269230554,0.0647648095597005,-2.98374423711623 +"Q9NJH0",0.215834543474919,21.0608951547962,3.84906796092751,0.0135156444092984,0.0649685731259646,-2.99049695677486 +"Q9VLY7",0.237778313475793,15.3701220317466,3.84508552097824,0.013567888950556,0.0650322953147341,-2.99481918494875 +"A1ZBD8",0.580155709199451,14.2920763945152,3.83703231845629,0.0136742546744611,0.0653543174699173,-3.00356730544898 +"Q9VLR3",-0.243208034057643,16.742455548237,-3.83361274058407,0.0137197125430487,0.0653842300623006,-3.00728512163549 +"Q9VTB3",-0.20711654422475,19.782713628383,-3.8248388117766,0.0138371524740844,0.0656661496466512,-3.01683288667387 +"Q9W1N3",-0.229148545206929,20.5494781252922,-3.82331966082076,0.0138576047215955,0.0656661496466512,-3.01848728233501 +"Q9VMD3",0.247292794754113,17.9486919900745,3.81414918917443,0.0139818137548509,0.0660670406319866,-3.02848206802346 +"Q9VUX1",0.278290663061249,16.4653802625678,3.80739918955962,0.0140740642616404,0.0663150824531533,-3.03584747082854 +"P40301",0.232907674576413,17.7738168467792,3.80086952105332,0.0141639759391986,0.0663785051804258,-3.0429794436208 +"Q9VDE2",-0.219891424812218,19.508204409413,-3.79704362869994,0.0142169668264048,0.0663785051804258,-3.04716143434716 +"Q9VXR9",0.30971123015205,14.9704558920783,3.79524341532763,0.0142419803641509,0.0663785051804258,-3.04913002064888 +"Q7JXC4",-0.211970947378383,21.6266507950631,-3.79322069737535,0.0142701464515603,0.0663785051804258,-3.05134254562674 +"Q9W0N6",0.429171355577351,14.6703184002894,3.79204834897407,0.0142865008152115,0.0663785051804258,-3.05262520637204 +"Q9V4E7",0.325814768521953,14.9951485942292,3.77825104402138,0.0144806163000371,0.067093522190172,-3.06773742313206 +"Q7K2E1",0.36520902064791,17.404661627018,3.77087337350242,0.0145856670417361,0.067393054364587,-3.07583079696075 +"Q9W2D9",0.361683249024511,17.6457582007151,3.7642571304837,0.0146806275801708,0.0676444386843228,-3.08309634346932 +"Q9W402",-0.196187432517785,21.244129751598,-3.75363740944907,0.014834550385333,0.068054623528131,-3.09477302080198 +"Q9W414",0.202651733763439,19.5368430954302,3.75249300413166,0.0148512487795202,0.068054623528131,-3.09603241180479 +"Q7KY04",0.209497745695037,14.0555495634807,3.74492276690359,0.014962258596108,0.068246794660498,-3.10436859907955 +"Q9W0C3",0.394424278798422,18.7794037234924,3.74405694763654,0.0149750160945697,0.068246794660498,-3.10532261021161 +"Q9VQT8",-0.302811981216134,17.9423644488207,-3.72740396453278,0.0152228593616879,0.0691378819127787,-3.12369538324674 +"Q9VL10",0.193282201300732,16.6658298895261,3.7224893292842,0.0152969083444591,0.0691378819127787,-3.12912611113924 +"Q9VNX9",0.45755008183896,13.538949135675,3.71840893921974,0.0153587046588395,0.0691378819127787,-3.13363794818437 +"Q9VW68",0.188743909690878,22.9361287942603,3.71596364300587,0.0153958764181647,0.0691378819127787,-3.13634308862915 +"Q9VXN2",-0.372507000920958,18.4847518972917,-3.71367881971636,0.0154307029055867,0.0691378819127787,-3.1388715752495 +"P12080",0.222168627225606,19.0032868300588,3.71182969277353,0.0154589550439934,0.0691378819127787,-3.1409185173448 +"Q9VCE0",-0.226807486927303,15.8705353584511,-3.71171630376518,0.0154606894205434,0.0691378819127787,-3.14104405437844 +"Q9VUJ1",0.200826485887056,20.0488908084684,3.69434161333309,0.0157291300573204,0.07015023779575,-3.16030469347853 +"A1ZBU8",-0.299321222648487,20.657695523203,-3.68127358151603,0.0159345882919647,0.0702018642223235,-3.174823272991 +"A0A0B7P9G0",0.289850864528905,14.3873516634131,3.67937369907819,0.0159647163338985,0.0702018642223235,-3.17693633369463 +"Q9VVI2",0.452877495605922,13.953956656529,3.67897229216727,0.0159710902089893,0.0702018642223235,-3.17738285532264 +"Q95RQ1",1.00461468981893,12.0230970903031,3.67884413627251,0.0159731257953242,0.0702018642223235,-3.17752542031715 +"Q9VSU6",-0.208226638572381,21.5236985041901,-3.67796481588222,0.0159871007272104,0.0702018642223235,-3.17850367774093 +"O18333",0.282047527764172,17.4508474193595,3.67757940584435,0.0159932304583231,0.0702018642223235,-3.17893249159973 +"Q9V434",0.189910500730477,14.9119106984667,3.66441230520981,0.0162042873535134,0.0709416044767986,-3.19359681309897 +"Q9W229",0.255758795167569,19.0210837468992,3.66147830327475,0.0162517544298172,0.0709631580862175,-3.1968682439602 +"Q9VZ24",-0.219196314359156,21.9257522388698,-3.65440999601823,0.0163667688966766,0.0710419879497763,-3.2047551461529 +"Q9VQD7",-0.181630354930434,20.9387304140375,-3.65326679391307,0.0163854591660136,0.0710419879497763,-3.20603150083831 +"Q494G8",-0.206288008174582,15.1922644900883,-3.65099298413891,0.0164227071685112,0.0710419879497763,-3.2085707745355 +"Q9VN01",0.230814599504019,16.0363658990229,3.64966905604303,0.0164444399277516,0.0710419879497763,-3.21004965282664 +"Q9VME1",-0.248729340784148,16.6558867875662,-3.64733936539465,0.0164827633912251,0.0710419879497763,-3.21265269170253 +"Q9VV39",0.195537424811125,17.487324245685,3.64069473467401,0.0165926359126029,0.0713312286139733,-3.22008175391691 +"Q9VJ22",0.913484886985305,13.2349958271802,3.6310244523629,0.0167540545936543,0.0718400078720191,-3.23090636024731 +"Q8SX68",-0.190848144990483,17.6639654224832,-3.58334853468367,0.0175768682201035,0.0751749133105967,-3.28449314526758 +"Q7K1S1",0.273637162363928,16.432324656784,3.58058769236188,0.0176259270690552,0.0751919344020055,-3.28760746543855 +"Q9W380",0.241094452716894,18.3964719177343,3.57766626211239,0.0176780115841136,0.0752217431691365,-3.29090426656406 +"Q02910",0.285677376817663,16.4007110100005,3.56774403357145,0.0178562394186865,0.0757867871510666,-3.30211161614567 +"Q9VBP6",-0.211442578577351,23.2162122665841,-3.56521979030978,0.0179019111825013,0.0757877864274419,-3.3049653182608 +"Q9VD02",-0.178736714970174,18.2931631223157,-3.56156323541079,0.0179683092524517,0.0758763033749101,-3.30910093134158 +"Q9VL01",-0.234756149115473,20.5178603109765,-3.55330118652415,0.0181193851837799,0.076321046683194,-3.31845331485996 +"Q9VJI9",-0.245706525523893,17.7102406914637,-3.54443684321411,0.0182831052209125,0.0768166738248918,-3.32849964206478 +"Q9W3M8",0.19099735190521,18.5968229972091,3.53558181359242,0.0184483578255036,0.0772302169685362,-3.33854797895595 +"Q7K127",0.221150980125731,18.7685415790547,3.53420881092455,0.0184741346345599,0.0772302169685362,-3.34010713206986 +"Q9VX36",-0.187254551454558,22.2460046059725,-3.51553996845717,0.0188287744562068,0.078395504751057,-3.3613370056997 +"Q9VPL0",0.301747960911898,15.1408266147169,3.51378870248396,0.0188624425459693,0.078395504751057,-3.36333137264083 +"A1Z8H1",-0.186052625444308,23.020425329894,-3.5110950484603,0.0189143634640007,0.078395504751057,-3.36639990114599 +"Q9VPC1",-0.24774361868586,16.2569271773976,-3.50815539519536,0.0189712139820166,0.078395504751057,-3.36974998708634 +"Q9VJ43",0.21236423041988,20.3474402544161,3.50729554065875,0.0189878800476181,0.078395504751057,-3.37073015489135 +"Q8MLS2",0.184591334102947,17.4325795861314,3.49416181271604,0.0192445502326227,0.0792590365136164,-3.3857162594373 +"P40304",0.203313579829665,18.7833689501841,3.48960885564858,0.0193344584140225,0.0792664971732646,-3.39091778732958 +"Q9VZ67",0.212721423586769,15.1629192472389,3.48925806994098,0.0193414054853229,0.0792664971732646,-3.39131867975424 +"Q9VK12",-0.231503469984915,22.3189070170378,-3.48250229112019,0.0194757610612786,0.0795165193797237,-3.39904328934147 +"Q9VGA0",-0.271661455985637,19.4527531114515,-3.47900533400774,0.0195457284374123,0.0795165193797237,-3.40304459321512 +"M9PHA0",-0.185806705490265,17.4402506042687,-3.47498575348962,0.0196265100187412,0.0795165193797237,-3.40764630126873 +"Q9VP13",0.432618447335388,11.8922158151523,3.47441088579195,0.0196380945090326,0.0795165193797237,-3.40830463324954 +"P92204",-0.198239441694014,15.9744268245325,-3.47427812461637,0.0196407709738886,0.0795165193797237,-3.40845667732216 +"Q9VRJ6",-0.187689369153901,15.8145083539628,-3.46216083086857,0.0198868317996864,0.0801090494068131,-3.42234575596274 +"Q9VMW7",-0.199528929049649,19.4260403461813,-3.45927380504407,0.0199459792092214,0.0801090494068131,-3.42565836548241 +"Q9VTZ4",0.197110695064204,18.1334787588962,3.45561910389754,0.0200211445592129,0.0801090494068131,-3.42985371486575 +"Q9VLP3",-0.178928166436069,17.5795872522678,-3.45498356844255,0.0200342486774151,0.0801090494068131,-3.43058348310537 +"Q9VA41",-0.187768478683704,17.620083060771,-3.45372099972957,0.0200603108713234,0.0801090494068131,-3.4320334470612 +"Q7KMS3",-0.181452494358673,15.5943578038607,-3.45299622812161,0.0200752893597409,0.0801090494068131,-3.43286590640083 +"Q7JUN9",0.529405066608922,13.6751257675618,3.44432810712272,0.0202554290565378,0.0806349777238784,-3.44282841343908 +"Q9W337",-0.270508132221176,17.8643047328985,-3.43089341843326,0.0205383107224809,0.0814096118764637,-3.45829281513937 +"Q9VRR3",-0.204857613825862,19.8104461770279,-3.42977258874458,0.0205621154381551,0.0814096118764637,-3.45958427236253 +"Q9W5W8",0.28288677762059,20.6797722040048,3.42660379223993,0.0206295875243643,0.0814096118764637,-3.46323654118533 +"Q9VLP0",-0.348950928364127,16.2498966660631,-3.42587022741841,0.0206452432996068,0.0814096118764637,-3.46408225467112 +"Q9VSN9",0.254621029181083,16.3951132883901,3.41739523414654,0.0208271101953292,0.0819330655797385,-3.47385909367735 +"Q9VIF2",0.174081839803259,17.3528904404443,3.39071715215447,0.0214117260333894,0.0840347271145728,-3.50470927467311 +"A0A126GUP6",-0.172700229131634,17.0120032430155,-3.37958988208515,0.0216611160000276,0.0847767109958097,-3.5176098565361 +"Q9W199",0.614163596448856,15.7586938590013,3.37776066875231,0.0217024314119969,0.0847767109958097,-3.51973244904198 +"Q9VWD0",-0.172020340593136,18.1381416254541,-3.36494772102549,0.0219943775076562,0.0854386928707169,-3.53461514438634 +"Q8SYJ2",-0.194269243461026,22.5989692952736,-3.36313636907447,0.0220360118727081,0.0854386928707169,-3.53672117328096 +"Q9U9Q4",0.207315186893389,17.7604038064402,3.36222641068881,0.0220569615850914,0.0854386928707169,-3.53777936100492 +"Q9V4W1",0.235186972295541,13.7072959186204,3.36136630504146,0.0220767845487284,0.0854386928707169,-3.53877969450369 +"Q9W077",-0.262026448406079,20.8352628223471,-3.34740956981439,0.0224013190234495,0.0862670413104977,-3.55502807409526 +"Q8IQB7",0.497023629740067,14.41956836235,3.34580145323043,0.0224390625121585,0.0862670413104977,-3.55690219642564 +"Q9VJ80",0.203932025194534,16.5001878964314,3.34550702680035,0.0224459807726355,0.0862670413104977,-3.55724536904676 +"Q9VK99",0.209120073048542,20.1773598930293,3.34090745565032,0.022554376804229,0.0864843689872504,-3.56260821952801 +"Q9VJG0",0.295864252643344,13.3894389152478,3.33797035136886,0.0226239080107156,0.0864983484429608,-3.56603445323202 +"Q961T9",0.257399887101442,17.7388639533721,3.33199940605698,0.0227660189960854,0.0864983484429608,-3.57300391960316 +"Q9V6Y3",0.334293156715299,15.3207024498935,3.32852935626796,0.0228490773543136,0.0864983484429608,-3.57705682128101 +"Q9W1R0",0.694926167616707,13.9778942552616,3.32788457413085,0.0228645489306116,0.0864983484429608,-3.57781011201051 +"O76742",0.200532744589886,17.9102849806845,3.32723788000971,0.0228800784387901,0.0864983484429608,-3.57856570157729 +"P54353",-0.183673545439891,18.9930419205627,-3.32619757702523,0.0229050853004218,0.0864983484429608,-3.57978131572129 +"Q9VV75",-0.197345662535675,23.9568288253938,-3.32467687677425,0.0229416963231155,0.0864983484429608,-3.58155858677232 +"P14318",-0.180458679816223,21.9760372737498,-3.3233836883452,0.022972882709971,0.0864983484429608,-3.58307024390047 +"Q9VQD8",0.208451523089682,17.593275416303,3.31198106277841,0.0232499783575081,0.0873445132890171,-3.59641047217126 +"Q9VD64",-0.180401122318919,15.7943039192411,-3.30707116316226,0.0233704711873275,0.0875998785178926,-3.60216091725189 +"Q9VT23",0.174085963522248,18.3208019734623,3.3036570025614,0.0234546787488225,0.0877183949619639,-3.60616176802237 +"Q9VKR4",0.192203600961694,19.4364703871899,3.29942610834701,0.0235595126221963,0.0878337513005808,-3.61112220905539 +"Q9VPB8",0.242291756361983,15.7461231945907,3.29816598809284,0.0235908396778538,0.0878337513005808,-3.61260015232773 +"Q9VKC8",0.193589880781783,17.6037733672289,3.2946151225482,0.0236793722244699,0.0879670219831087,-3.61676614012207 +"Q9VPC2",-0.281705974421183,14.8854787249053,-3.29070413020575,0.0237773239373945,0.0880128170084738,-3.62135689963876 +"M9PDU4",-0.173781855283622,22.557276083559,-3.2899115595054,0.0237972304980945,0.0880128170084738,-3.6222875150405 +"Q7KSE4",-0.212873643991117,13.9003579099823,-3.26402226021104,0.0244580795567672,0.0902568068599287,-3.6527393783494 +"P36241",0.161953553256375,19.7913523479077,3.2541498177288,0.0247155902503279,0.0907539852744117,-3.6643788646179 +"Q94522",-0.202728927213279,23.5324262079888,-3.25303563574345,0.0247448464204885,0.0907539852744117,-3.66569341127429 +"Q95SI7",-0.166770531130606,21.2335444793136,-3.25261000178063,0.0247560331533917,0.0907539852744117,-3.66619563778354 +"Q9VJI5",0.412597682751858,17.6401383029557,3.2449954230991,0.0249571430589159,0.0912297296122262,-3.67518514867107 +"A1ZBU5",-0.353604825793479,16.7094641679893,-3.24356253148184,0.0249951957031099,0.0912297296122262,-3.67687776464162 +"Q9VHD3",0.162410502830641,15.6439286292729,3.23501926326961,0.0252234555460461,0.0918618424690063,-3.68697609640676 +"Q9U9P7",-0.215615066157101,16.6666489371701,-3.23013781250254,0.0253549468628093,0.0921395454622349,-3.69275108626672 +"Q9VPN5",-0.200844561214204,21.3702989942415,-3.21563133849104,0.0257503488608309,0.0933730041301433,-3.70993437875943 +"Q7JVI6",0.222997670559401,17.4867404871551,3.20440804413559,0.0260610930754653,0.09429480097587,-3.7232506149833 +"Q9VHB8",0.456601282356431,15.5060544925319,3.19897885123503,0.026212947296362,0.0944714199678142,-3.72969910897796 +"M9MSK4",-0.172896379953873,20.614531835882,-3.19861422722943,0.0262231819215216,0.0944714199678142,-3.73013234905485 +"Q7KLX3",0.205807564926968,19.2016585872797,3.19253705194004,0.0263944347983702,0.0948834423355203,-3.73735610618798 +"Q9W260",0.245619182227053,17.461315431244,3.18992051594883,0.026468560443416,0.0949452877841245,-3.74046802315653 +"Q9I7C6",0.634861096880671,15.6152365034499,3.18565533503444,0.0265899010583535,0.0951758690243211,-3.74554293297312 +"Q9VGZ3",0.164331444361672,16.7837913930427,3.18038150575399,0.0267408146103312,0.0955110894433242,-3.75182177109655 +"Q9VU35",-0.175692415580691,22.8202919954422,-3.17329891000095,0.0269450254064119,0.0960348341408015,-3.76026064942116 +"Q9V8Y2",0.227860200211019,19.8172003206012,3.1706968310905,0.0270204964758266,0.0960548672271597,-3.76336290731134 +"Q7KLW9",0.202314573537279,17.2585706824892,3.16721707923289,0.0271218004118734,0.0960548672271597,-3.76751313504871 +"Q9VW57",0.180301563138437,16.6235288078291,3.16716202134732,0.0271234067529929,0.0960548672271597,-3.76757881604027 +"Q8IQG9",-0.206160098881885,20.4674695085168,-3.16298233829319,0.0272456680989213,0.0962834203156795,-3.77256627154037 +"Q9VMH8",0.207446519705382,18.9156465186857,3.14790346213151,0.027691991902931,0.0976537896280948,-3.79058103423087 +"Q9VA34",-0.243839302583469,14.5664302027589,-3.14427921304248,0.0278005042582457,0.0978296225796493,-3.79491598896494 +"Q9V998",0.186595480561294,15.8288972372806,3.13976784551767,0.0279362543926604,0.0981003627935949,-3.80031475524725 +"Q9VH66",0.215579633027104,16.7372700821904,3.13658800840716,0.0280323911925646,0.0982271784409858,-3.80412189322657 +"Q9VH98",-0.176198140991893,17.0851082850102,-3.13468365051143,0.028090146352728,0.0982271784409858,-3.80640265135914 +"Q9VVH3",-0.159898933747641,19.8264452698923,-3.1299478290963,0.0282343618082537,0.0985249278162492,-3.81207685004988 +"Q7K3Z3",-0.189609781112139,19.9057467253108,-3.11811702654365,0.0285983290767408,0.0991658025397375,-3.82626636914359 +"Q7K0S6",-0.160417050593169,17.2384433403374,-3.11646964936726,0.0286494316407889,0.0991658025397375,-3.82824382527927 +"Q9U1K7",-0.174601794237509,17.1909452631916,-3.11595083510286,0.0286655470458563,0.0991658025397375,-3.82886667534457 +"Q9VPU6",0.171868729874308,15.4179946615842,3.11469257644937,0.0287046739007167,0.0991658025397375,-3.83037741252667 +"Q9W3X7",-0.271888352385194,21.6034826671082,-3.11435192177423,0.0287152773541326,0.0991658025397375,-3.830786462121 +"Q7JYH3",-0.266332283505498,19.1152877300436,-3.10709291754774,0.0289422881253434,0.0997432574237043,-3.83950695373743 +"Q94524",-0.216713480911977,15.7620289127518,-3.10244350217329,0.0290887609703602,0.0999891013894908,-3.8450965266312 +"Q9VF51",0.158617123224065,17.6409378802085,3.10102819766544,0.0291335151530531,0.0999891013894908,-3.84679864960983 +"Q8MSS7",0.816278327275269,14.0854236639479,3.07283543273507,0.030041522035561,0.102701765912571,-3.88076582410526 +"Q9VN73",0.165655287593463,18.2961565233213,3.0726670936702,0.0300470394276588,0.102701765912571,-3.88096898979504 +"A1Z9M5",0.295437705389691,14.9542244634401,3.06656174460571,0.0302479246886707,0.103077846968869,-3.88834021301236 +"O46067",-0.166915809130426,19.6947963330074,-3.06492628870408,0.0303019949291681,0.103077846968869,-3.89031567861408 +"O97365",0.162866958398226,18.0496569533155,3.06370451962816,0.0303424597492294,0.103077846968869,-3.89179170476196 +"Q0KI81",-0.252151553742907,15.6677769414508,-3.04900235724413,0.030834232555651,0.104535568908183,-3.9095703616221 +"Q9VQI7",-0.18476041051882,19.2312204392101,-3.04048348822954,0.0311233144716052,0.105190871532092,-3.91988606678733 +"Q23970",-0.158459758086877,21.7088953844692,-3.03959470381709,0.0311536514009913,0.105190871532092,-3.92096291657975 +"Q9VSR8",0.32765318272997,15.5642659531229,3.03190588281077,0.0314174984557726,0.105867449341876,-3.93028339454096 +"Q7K3V6",0.294728565467155,16.1433027874705,3.02623800121977,0.0316136177053654,0.106313536960785,-3.93715946678569 +"Q9VKV2",0.461234725149362,14.9666017598704,3.0234044968968,0.0317121821419771,0.106430422158587,-3.94059868769386 +"Q7K204",-0.367918498894619,14.9249151388912,-3.01926291063689,0.0318568757227236,0.106701342782135,-3.94562767041282 +"Q9W022",-0.160297845664584,21.1948015996376,-3.00268458691925,0.03244360443933,0.108180181332481,-3.96578245844717 +"Q9VEP9",-0.152273924396734,17.593721268406,-3.00176130145968,0.0324766387049899,0.108180181332481,-3.96690606537757 +"Q9VPE2",0.259520226582694,20.7811840521264,3.00130529751996,0.0324929681340364,0.108180181332481,-3.96746105086863 +"P48148",0.263315061892307,20.676907437494,2.99934202083863,0.0325633789981072,0.108198637786539,-3.96985081605617 +"Q9W3C4",0.332985867422945,14.670194342258,2.98940528262664,0.0329224093335656,0.108970232684779,-3.98195443840795 +"Q9VCD9",-0.207049323746105,18.662674931155,-2.98929944762299,0.0329262573579908,0.108970232684779,-3.9820834270618 +"Q9VSD6",-0.242391511498267,16.2909396562643,-2.9848780557673,0.0330874690908133,0.109283092755888,-3.9874734904646 +"Q9VCC0",-0.174654632970345,17.5867778400579,-2.98197746126303,0.0331937149201398,0.109283092755888,-3.99101105074722 +"Q9VSL5",0.175972456975522,17.5081178207525,2.98133382519039,0.0332173429419877,0.109283092755888,-3.99179618719902 +"B7Z107",-0.203197205382512,16.1017856202234,-2.97026104620088,0.0336268203707488,0.110263635715423,-4.00531228256285 +"Q9VUH8",0.214626542767295,15.5457576348017,2.96970330967537,0.0336475962704737,0.110263635715423,-4.00599353902652 +"Q9VAN7",-0.241089783033051,23.6313176797825,-2.9585619473042,0.034065671627863,0.111410885377688,-4.01961134515885 +"Q9W1X5",0.159768208874347,19.465868905313,2.95682777278628,0.034131272438848,0.111410885377688,-4.02173252196735 +"Q7KTA1",-0.207893777443317,17.1694148616325,-2.948998029583,0.0344292406028582,0.111914906339992,-4.0313147107554 +"Q9VZY0",0.149834564336803,17.3899874735714,2.94846633707451,0.0344495809690877,0.111914906339992,-4.03196571091288 +"Q05856",0.237331913371674,13.6871623172232,2.94748998492305,0.0344869675412206,0.111914906339992,-4.03316124962327 +"Q24439",-0.150508199656382,24.297487953577,-2.93541297350088,0.0349532308009941,0.113207745584579,-4.04796025524006 +"Q9W4U2",-0.223661321958481,18.4990425217367,-2.93133145194543,0.0351124141253571,0.113502920079643,-4.05296618364891 +"Q9VQJ8",-0.242715913470768,15.2849591904202,-2.92149307501599,0.0354994946745876,0.114532218795381,-4.06504208574484 +"Q500Y7",-0.202261512579515,20.0112974112803,-2.91954872600646,0.0355765615625641,0.114559275456288,-4.0674301810304 +"Q9W552",0.151602546063367,16.1857201350604,2.91663853541429,0.0356922638097947,0.11471039698408,-4.07100549652628 +"Q8T3L6",-0.194824667872609,17.5050745174792,-2.91324463537662,0.0358277336816735,0.114715099472651,-4.07517651098893 +"Q9V419",0.260958479599854,16.2112529732528,2.91315610777266,0.0358312750750906,0.114715099472651,-4.07528532978893 +"Q9XYZ9",0.147437674867444,22.0142462675799,2.91065717666335,0.0359314035262778,0.114815289428796,-4.07835746817274 +"Q9NCC3",-0.150724396482723,17.3035053775763,-2.90757818657545,0.0360552082537395,0.114990606820722,-4.08214386982182 +"Q9W401",-0.156884922688398,24.3702131278781,-2.90561776419259,0.0361342865146534,0.115022881500843,-4.08455536828964 +"Q9V564",0.212875231825697,14.0943350565883,2.89971627225107,0.0363735199060877,0.11556386895877,-4.0918178365073 +"Q9VIW6",0.14619261296064,14.9659054852781,2.8806830465885,0.0371573318120278,0.117829713806963,-4.11527189687478 +"Q9VYY3",0.146647853061488,17.4651045654718,2.87041779171824,0.03758795386341,0.118674381221875,-4.12794125231905 +"Q9VCR9",-0.169425485243103,19.3377112851153,-2.86985365510272,0.0376117814657961,0.118674381221875,-4.12863790801195 +"Q9XZ19",-0.158560936707762,16.2466626885988,-2.86841536602447,0.0376726078708997,0.118674381221875,-4.13041424764477 +"R9PY51",-0.161142576604163,21.4934532198634,-2.86757292966785,0.0377082865992769,0.118674381221875,-4.13145481258302 +"A0A0B4KI23",-0.19833822324728,20.4854050497153,-2.86374460525019,0.0378709030008712,0.118755457678287,-4.13618466604053 +"Q9VLB1",0.288961647207074,16.6532134440378,2.86346648734181,0.0378827473789324,0.118755457678287,-4.13652835195424 +"Q9XTL2",-0.176587568965971,16.9044691661474,-2.86194454226729,0.0379476372557117,0.118755457678287,-4.13840928279201 +"Q9VK60",-0.160672958241225,21.3359493170049,-2.8582437636721,0.0381059466496467,0.118815704664695,-4.1429842284196 +"Q8I937",-0.283272101330558,13.9908267184683,-2.85816430740414,0.0381093537143957,0.118815704664695,-4.14308247263593 +"P53034",-0.14348917784414,15.8973807679502,-2.84604736277277,0.0386329584879888,0.119876033137329,-4.15807408228509 +"P42325",-0.171578662019893,20.1332019025081,-2.84532922863632,0.0386642439696313,0.119876033137329,-4.15896318189311 +"Q95RI2",-0.163510807566366,16.7645141807055,-2.8453107020688,0.0386650514555653,0.119876033137329,-4.15898611993711 +"Q9I7T7",0.197254004974658,14.5056364844438,2.84161320213269,0.0388265882419355,0.120153523539051,-4.16356493479521 +"Q9VEN3",-0.146542805440177,17.6373755499857,-2.82562980357554,0.0395336544010627,0.12196795503191,-4.18337809866042 +"Q9VV47",-0.15046683085318,20.138682710369,-2.82443653269924,0.0395870193982508,0.12196795503191,-4.18485858782785 +"Q7K1Z5",-0.153020719362807,16.1597075762576,-2.82342604849463,0.0396322731578508,0.12196795503191,-4.18611243446444 +"Q7JZV0",-0.216634485733898,14.9660176409507,-2.8211369278977,0.0397350047318373,0.122058909562992,-4.18895333731072 +"Q9V4N3",-0.181125491897244,19.686681389743,-2.81728928883382,0.0399083542826859,0.122366056881471,-4.19372991873604 +"A1Z6G9",0.301180357415841,14.3704112878701,2.80943172948642,0.0402650088000627,0.123233091153219,-4.20349031089806 +"Q9W403",-0.161848242853868,15.2920225157438,-2.80763075146071,0.04034725831078,0.123258657257108,-4.20572851143918 +"Q9VWX8",-0.143236061836244,20.5561390952778,-2.80486928879735,0.0404737390215786,0.123419006742218,-4.20916115776353 +"Q9VHN6",0.305832245712653,14.9912362631639,2.80228945032607,0.0405923030971238,0.123554674390516,-4.21236889215384 +"Q9VDT5",0.183101621132572,19.2284864947164,2.79714954650109,0.0408296859747638,0.124020396432871,-4.21876223519337 +"Q9W396",-0.148085004632286,16.7305466416668,-2.79576242885705,0.0408940156103592,0.124020396432871,-4.22048818125174 +"Q9VVL7",-0.176627060361675,23.5621484192397,-2.78637118231336,0.0413325505446401,0.125122857184137,-4.23217964090677 +"Q7JWD3",-0.220472274014407,17.0984850765451,-2.78419230746463,0.0414350476476771,0.125205904848415,-4.23489373767583 +"Q9VZF9",-0.160901448605582,19.0628761130092,-2.78177756724423,0.04154897318104,0.125323123446609,-4.23790231595402 +"Q9V6U9",-0.163081762531803,21.9263911083044,-2.77138415398593,0.0420433500765323,0.12658539337122,-4.25085979942445 +"Q9V3Z9",0.177394626829646,21.8798237537027,2.76672808890275,0.0422669571166795,0.127029341388507,-4.25666876459 +"Q9VRP2",0.15467028725821,20.3695938264055,2.76200309821464,0.042495236994188,0.127485710982564,-4.26256639001578 +"Q94516",-0.13768431651965,23.3472329723944,-2.76002706859836,0.0425911146844746,0.127543948462664,-4.26503361929483 +"Q9VZ58",0.247678397532137,18.1634413003516,2.75697590279848,0.0427396344841336,0.127759337490206,-4.26884415850141 +"Q7K5M0",-0.277242049786725,16.6001911203121,-2.753799602921,0.042894861617186,0.127993969906022,-4.27281215516087 +"Q9VUY9",0.209714629526925,19.4877208638808,2.74913016713838,0.043124205975668,0.128448527798954,-4.27864763198899 +"P29746",0.148829144793602,21.341683481819,2.74562204915528,0.0432974138146745,0.128602761135076,-4.28303348904662 +"Q9VSW4",0.465881814216843,15.960953275424,2.74496003612828,0.0433301869052234,0.128602761135076,-4.28386130234807 +"Q9W299",0.240203854782665,14.4386792958776,2.73823668319391,0.0436646046512911,0.129365116444678,-4.29227143372513 +"Q0E8P5",-0.137756977940821,17.7388294713772,-2.73475665620724,0.0438388333914154,0.129651017902271,-4.29662662564284 +"Q9VSA3",0.141142469540849,21.7320689945978,2.72928712958715,0.0441142403778015,0.129943370294583,-4.30347449871333 +"Q9VXI6",-0.141289708204081,21.986604198877,-2.72818854976035,0.0441697901233948,0.129943370294583,-4.30485034569544 +"A8DYP0",-0.182920594826314,15.2170577911338,-2.72791857246276,0.0441834535060339,0.129943370294583,-4.30518848317712 +"Q9GU68",0.136897068005116,22.1947462997213,2.72661878394575,0.0442493011554694,0.129943370294583,-4.3068165429174 +"Q02748",0.13557075615898,19.4216069457669,2.71877419361774,0.0446490464064876,0.130769750342965,-4.31664649067834 +"Q9VVM1",0.181482977066716,15.628016493433,2.71740275730219,0.0447193457507965,0.130769750342965,-4.31836574685773 +"Q9W158",0.150152395016391,17.1039343563933,2.71491466805862,0.0448472002353675,0.130769750342965,-4.3214854095032 +"Q9VCE1",-0.352386041599743,13.750412865493,-2.71382011251875,0.0449035750322035,0.130769750342965,-4.32285803030246 +"Q9VF89",0.385553726170974,14.0003185908318,2.71207836651414,0.0449934464797273,0.130769750342965,-4.32504253894142 +"Q9W392",0.142255656161616,19.9763048949301,2.71193019568479,0.0450011011372074,0.130769750342965,-4.32522839171278 +"Q9VLP1",0.140230291160808,18.5494045362163,2.71001722170035,0.0451000580606399,0.130829385817647,-4.32762808706161 +"Q9V396",0.163263955302224,20.845493870381,2.7063819595803,0.0452887782561891,0.131148753700214,-4.33218942386572 +"Q9VJ19",0.141070481271001,19.1073996789125,2.70386681880406,0.0454198647849684,0.131300406345455,-4.33534616935194 +"Q9VN02",-0.206210498179065,17.2856275709954,-2.70024165055193,0.0456095507055774,0.13145618678452,-4.33989736651227 +"Q9VDT1",0.166505908466835,19.1033571284073,2.6997069033627,0.0456376059720888,0.13145618678452,-4.34056883745057 +"Q9VES8",-0.148696117959451,18.077498490526,-2.69729771533433,0.0457642420202567,0.13145618678452,-4.34359440425925 +"Q95NU8",-0.13389503131409,17.5108338329803,-2.69682766168949,0.0457889955166702,0.13145618678452,-4.34418479492082 +"Q8IP62",0.354377379340812,15.8764403178906,2.6840407069918,0.0464681339235848,0.133093298247896,-4.36025478041918 +"Q9VNE2",0.144741523171351,19.0436476122072,2.68239855466834,0.0465561628537532,0.133093298247896,-4.36231987079272 +"Q9VBP9",0.186991827951312,13.7312623012237,2.68091216944479,0.0466360021230739,0.133093298247896,-4.36418933321373 +"Q9VE50",-0.256892553696646,14.5654111543354,-2.68012389970519,0.0466784049610427,0.133093298247896,-4.36518085800846 +"Q9VHX4",-0.138364753424085,22.854960344795,-2.67186318317737,0.0471253626550111,0.134138404280817,-4.37557570779518 +"Q9Y105",-0.418045263833612,16.9020668817197,-2.66117068739159,0.0477109933996215,0.135573998280356,-4.38904163978277 +"Q9VZI8",0.224102385240501,15.7136165763451,2.65891157439903,0.047835760343045,0.135697360973128,-4.39188830848727 +"Q9V3V6",0.140330343718709,21.6246742043492,2.64950820279192,0.0483590103974169,0.1369487764735,-4.40374321418215 +"Q9U616",-0.294265451300056,19.7452283501602,-2.64704334024522,0.0484972193679521,0.137107393060583,-4.40685224601431 +"Q9VLT7",0.253996161291784,18.0333424907103,2.64150651750535,0.0488092839252191,0.137505133526624,-4.41383841218363 +"Q9V3W0",-0.215342718076094,20.9387299531436,-2.64038426263741,0.0488728080433535,0.137505133526624,-4.41525482760377 +"Q9W3X8",0.231153376581538,13.9557379734392,2.63906681544913,0.0489474982228626,0.137505133526624,-4.41691776723492 +"Q9VL69",0.257921589437423,15.9185938182713,2.63743059208073,0.0490404376584706,0.137505133526624,-4.41898333370693 +"Q9W1W4",0.165307703792852,17.3892346482037,2.6372608121775,0.0490500925949288,0.137505133526624,-4.41919767972461 +"Q9Y0Y5",0.137441722826516,18.675472386055,2.63523106840035,0.0491656826638396,0.137597917253833,-4.42176045150568 +"Q9VUN9",0.141483745505914,16.8494551827034,2.62217676271104,0.0499163791826096,0.139464858419753,-4.43825316115514 +"Q9VAP3",0.399101429686466,16.4632941993529,2.61994988953756,0.0500457047671202,0.139592367143071,-4.44106833040397 +"Q9W4Z2",0.452982030567284,13.8320626611351,2.61795947729245,0.0501616130760527,0.139682087831145,-4.44358499990806 +"Q9Y136",0.214072749058987,15.2271541419414,2.61236222048902,0.0504891617165668,0.140359869572056,-4.45066431302648 +"Q9VHG6",-0.271384500791413,15.721877884837,-2.61070081561175,0.0505868430451811,0.140397427952349,-4.45276624072524 +"Q9W309",-0.133779812541405,18.6277195768121,-2.60120444082078,0.0511492206803962,0.141722425406812,-4.46478591933407 +"Q9VCJ8",0.163914885945385,17.9260543285263,2.59892371355425,0.0512853172890942,0.141863862749932,-4.46767400713437 +"Q9VXB0",0.155026232589787,20.36765560012,2.59541517248014,0.0514954659331791,0.142209333073746,-4.47211788537994 +"Q95083",0.156686916124784,19.9032673538278,2.59124128016468,0.0517467121067156,0.142666968254548,-4.4774060739561 +"Q9VJ58",0.153329134312839,17.2448916267045,2.58806638595383,0.0519387345866644,0.142844884960038,-4.48142971016338 +"Q9V9V4",-0.142072412496269,18.5965874429477,-2.58734424408191,0.0519825210855775,0.142844884960038,-4.48234503938095 +"Q9U6P7",-0.163976573611594,17.0969383511353,-2.58558886654355,0.0520891278210004,0.14290240987735,-4.4845702276287 +"P52029",-0.170025078879522,18.189883475109,-2.58198465917043,0.0523087775942842,0.143269361292719,-4.48914000783453 +"Q9VA32",0.250514801236196,17.2762428865145,2.57374398815507,0.0528148537113782,0.144418321296031,-4.49959308336237 +"Q9W4X7",0.15542919203293,19.1867272251003,2.57159880863647,0.052947482024275,0.144544026213569,-4.50231525604783 +"Q9V3G1",0.189288086448091,20.9725275356364,2.56740244167264,0.0532079958256234,0.145017870975719,-4.50764159474047 +"C0HK95",-0.242083383233922,19.7511315892242,-2.56205719993612,0.0535418911235181,0.145446832879558,-4.51442858254987 +"Q9VM58",0.241862211247305,16.4912741000813,2.56071634752782,0.0536260122846966,0.145446832879558,-4.51613151813193 +"Q9VVG0",0.140613682729491,18.123660870276,2.5607009401487,0.0536269797487577,0.145446832879558,-4.51615108709173 +"Q9VIN9",0.221455835069868,16.4158530974585,2.55805706464559,0.0537932812039839,0.145618861235644,-4.51950941022047 +"Q9VE08",0.200455550856661,14.8218427414652,2.55685143575224,0.0538693055175469,0.145618861235644,-4.52104104959125 +"Q8SXX1",-0.13199592687398,19.9029337299294,-2.55553723120844,0.0539523118966594,0.145618861235644,-4.52271077827077 +"Q9VYG8",0.963142264420128,15.3078427216274,2.55177093809561,0.0541909797704723,0.145823155936667,-4.5274968317893 +"Q9V3R3",-0.204520138635313,13.6761591933946,-2.55092301414809,0.0542448732388773,0.145823155936667,-4.52857452013084 +"Q7KMQ0",0.132569304800676,20.7954529906018,2.54964552532904,0.0543261815908202,0.145823155936667,-4.53019829879926 +"Q8IR45",-0.137320777296173,14.8712242440087,-2.54844410529096,0.0544027714629338,0.145823155936667,-4.53172552554263 +"A8Y535",-0.221419856980742,22.0511251724148,-2.54746740550887,0.0544651235902538,0.145823155936667,-4.53296718892044 +"Q9W503",0.152608586217948,17.9507252082927,2.54012077311612,0.0549366715082646,0.1468499488394,-4.54230963895175 +"Q9VTV9",-0.177486600819503,17.1963843882626,-2.53368458981055,0.0553534939301325,0.147667543304864,-4.55049831552436 +"Q95TN1",0.404499194274351,13.9539875827148,2.53266886425841,0.0554195935904346,0.147667543304864,-4.55179094995888 +"Q9Y128",0.265318518235514,14.2690991017053,2.52652347984589,0.0558213779195684,0.148153989554563,-4.55961365682116 +"Q9VF27",-0.143261005758511,22.2587518248353,-2.52603641579161,0.0558533595063206,0.148153989554563,-4.56023380322101 +"Q9VD68",0.149515205088246,14.8329314384759,2.52566807605599,0.0558775588649462,0.148153989554563,-4.56070279969583 +"A1Z7B8",0.152090617641715,16.8945981334968,2.5244534191183,0.0559574420979466,0.148153989554563,-4.56224947234819 +"Q9XZ63",0.315784838175396,19.1604902885597,2.5169728825563,0.0564521973070091,0.149227044545311,-4.57177759422571 +"P20007",0.205788548171814,14.4653955799168,2.5111803142555,0.0568386311179926,0.150010817570905,-4.57915904882647 +"Q9VZI3",0.295069263353557,14.2036902977029,2.50356843057936,0.057350881721678,0.151123650413521,-4.588863218402 +"Q9VVK7",-0.140207392358512,18.2529398958503,-2.49947622416938,0.0576283754310396,0.151614776530931,-4.59408227964789 +"Q9VTF9",0.141537481348067,17.4857512372887,2.49731942463649,0.0577752243995252,0.151614776530931,-4.59683355347651 +"Q9VB46",0.194606360036479,15.1219161300478,2.49681027566045,0.0578099507635924,0.151614776530931,-4.59748309478317 +"Q9VAF5",0.167327746259417,16.1611882334747,2.48716680199459,0.0584720465011165,0.153109500006142,-4.60978970224631 +"O77263",-0.137561917140612,15.6116822540692,-2.4847979776375,0.058635959717951,0.153109500006142,-4.61281386605686 +"Q7PL91",-0.162417481303734,18.8860510659716,-2.48451956356514,0.058655258095878,0.153109500006142,-4.61316933383706 +"Q9VCH5",-0.127422391769695,18.1032440996957,-2.48307687690845,0.0587553706384709,0.153131184726515,-4.61501139821196 +"P22465",-0.132667166502507,22.6027540951712,-2.48074601702168,0.0589175143549631,0.153286228435763,-4.61798786353164 +"Q9VIU3",0.865227702946353,12.4930823312489,2.47958223179459,0.0589986562684411,0.153286228435763,-4.61947415970207 +"Q9VJD4",-0.135383288984055,20.8079711991419,-2.47558935608784,0.0592779862617976,0.153674580305786,-4.62457437532916 +"Q8SZM2",0.133645035140542,21.3765994577031,2.47383272999971,0.0594013358111832,0.153674580305786,-4.62681856709819 +"P22812",0.586054374901273,11.6519861484736,2.47350296938612,0.0594245229599711,0.153674580305786,-4.62723988271172 +"Q9VUQ7",0.143962985825194,16.4789644753879,2.46162887757298,0.0602661267273276,0.15560975136406,-4.64241639525093 +"Q9V9M7",0.201927306895197,18.2870383289894,2.45971049729509,0.0604033231353425,0.155626568326257,-4.6448693426641 +"Q9VFP1",0.165875470665002,15.3257440335703,2.45892996843949,0.0604592423713518,0.155626568326257,-4.64586745102711 +"Q9VZ19",-0.158330883252393,20.3263352021621,-2.45579370994959,0.0606845073761095,0.155965729280972,-4.64987843952919 +"D0UGE6",-0.263815573940516,15.2005150410806,-2.4517121362641,0.0609790541499589,0.156259463211147,-4.65509951868053 +"Q9VE56",-0.138937639308635,17.4933271805047,-2.45161397341724,0.0609861574043504,0.156259463211147,-4.65522510240243 +"Q9W1B9",0.142683888407664,20.4278939216708,2.44344603712231,0.0615804042192457,0.157524068643259,-4.66567719880006 +"Q9VW90",0.285014459111258,14.6859953667477,2.43948560969019,0.0618708281048488,0.157524068643259,-4.67074693521715 +"Q7KUT2",0.126458974330468,18.1626283562131,2.43868005871335,0.0619300843127566,0.157524068643259,-4.67177826014754 +"P41094",0.127339698320192,21.1337906793882,2.4385775824943,0.0619376269169875,0.157524068643259,-4.67190946104503 +"Q4QQ70",-0.156171667006202,16.2358083519804,-2.43838353989332,0.0619519118884761,0.157524068643259,-4.67215789700713 +"Q8I0J3",0.168179550600732,15.1091882156011,2.43092192123747,0.0625039736851469,0.158685887529414,-4.68171319707985 +"Q24185",-0.139311332473365,18.7480894607276,-2.42881978261664,0.0626604780590687,0.158841455019037,-4.68440590295808 +"Q6NMY2",0.208051514239699,20.29422985806,2.42365589819416,0.0630467590011604,0.158929461108652,-4.69102183841521 +"Q9V7D2",-0.158118333337601,21.3841242052005,-2.42358670449789,0.0630519527024463,0.158929461108652,-4.69111050166381 +"P04359",0.169190453230858,18.772328421965,2.42306835454055,0.0630908751550081,0.158929461108652,-4.69177471431072 +"Q8SX89",-0.167262578606602,15.6688410059218,-2.42271606618878,0.063117343233472,0.158929461108652,-4.69222614665095 +"Q9VFJ2",0.354604949648969,14.0148426495684,2.4219943875387,0.0631716023471441,0.158929461108652,-4.69315095329787 +"Q59E14",0.28978470402164,14.640586540805,2.41631320877048,0.0636005309605809,0.159767598858809,-4.70043245206502 +"Q9VRJ5",-0.17658137569115,17.2326829881604,-2.40934540486387,0.0641309666324101,0.16085782307197,-4.70936602103201 +"P29829",0.137576332349667,21.2356766159431,2.40460635176774,0.0644945054468845,0.161378727700327,-4.71544392987822 +"Q9V3Z2",0.154010350726429,16.0923578310215,2.40348440292945,0.0645809018529227,0.161378727700327,-4.71688306530702 +"P09040",-0.439594273520376,16.6273521138,-2.40286192400725,0.0646288909495315,0.161378727700327,-4.71768156136936 +"Q9VMT5",0.153088955818433,16.4068458099876,2.39648778281482,0.0651225507421316,0.162368332792041,-4.72585956768597 +"Q9VMQ5",0.352154840223088,13.5126177757818,2.39399152098439,0.0653170036807375,0.162610092745478,-4.72906298380896 +"Q7K738",-0.123631316817132,19.781602610008,-2.38688012755125,0.0658744586776983,0.163753497875411,-4.73819111186637 +"Q9VIQ5",-0.254498420125604,16.6351235122462,-2.38132337269016,0.0663136717546365,0.164308060986366,-4.74532592968371 +"Q0KIE7",0.24396648711034,13.6857268657536,2.38113232425024,0.0663288293400663,0.164308060986366,-4.74557126799393 +"Q9W5R5",-0.17107808266864,15.9090304769701,-2.38032321315008,0.0663930654105581,0.164308060986366,-4.74661032753916 +"A8DRW0",-0.125460559286456,21.434791708722,-2.37906006418475,0.0664934840626769,0.164312787283771,-4.7482325422927 +"Q9VAG9",-0.119684568578219,17.434171817939,-2.37589543817363,0.0667457978755182,0.164692294166219,-4.75229717993076 +"Q9VQI6",0.209162850061903,16.1665242728467,2.37393424457089,0.0669026881409181,0.164835574326516,-4.75481643642294 +"A1Z6R7",-0.177208119261765,18.0785160142117,-2.37189853108918,0.0670659664424352,0.164994147530947,-4.75743166198895 +"Q8IN51",-0.167553409974264,16.9177208529094,-2.3652725022999,0.0676004436047535,0.166064123612266,-4.76594564293207 +"Q9VBS7",0.139483115806915,19.7263561797729,2.36182005286457,0.0678807727141187,0.166278311786666,-4.77038281513744 +"Q9VIE7",0.133935643104222,15.0651397857526,2.36051781044075,0.067986840786935,0.166278311786666,-4.77205666745373 +"P32748",0.160563017425034,17.2430169291977,2.35951043794856,0.0680690158091144,0.166278311786666,-4.77335157194179 +"P48159",0.152485852135229,19.8385185500653,2.35704490095765,0.0682705966627487,0.166278311786666,-4.77652108524536 +"Q9VZZ5",-0.148409728062735,18.4738412479278,-2.35579616604537,0.0683729411471579,0.166278311786666,-4.77812649843776 +"Q9VJZ6",-0.16051857806232,19.6957467703404,-2.35541662121212,0.0684040812781724,0.166278311786666,-4.77861447071193 +"Q9VM50",0.299858456229231,13.6252982771563,2.35538643868117,0.06840655829845,0.166278311786666,-4.77865327606212 +"Q9VH81",0.173915155020062,14.3245609073872,2.35442963560204,0.0684851320128536,0.166278311786666,-4.77988345381716 +"Q7KTP7",0.124121676092901,17.9185882067173,2.34896590136157,0.0689357119791742,0.167129022647184,-4.78690924456741 +"Q9VME3",0.187661249509334,15.7961433525436,2.3443644507611,0.0693176921255736,0.167551868517617,-4.79282749913713 +"Q9VM12",0.12273432732238,18.8649671942543,2.34421863727323,0.0693298342317982,0.167551868517617,-4.79301505902128 +"P55841",0.123075997182831,20.5667094236876,2.34101682324631,0.0695970397919074,0.167551868517617,-4.79713383928561 +"O44386",0.162381517989566,16.8978132447337,2.34052953399946,0.0696378046442658,0.167551868517617,-4.79776073098926 +"Q9VVW7",-0.129416649603119,16.7268334011302,-2.3399143785105,0.0696893035189785,0.167551868517617,-4.79855213902071 +"A1Z6P3",-0.126672869631516,17.3389124521774,-2.33963354541081,0.0697128277885049,0.167551868517617,-4.79891344224521 +"Q9W136",-0.121996667949549,18.25948340802,-2.33555325235986,0.0700555964464595,0.168133431471503,-4.8041633725974 +"Q9U9Q2",-0.143441830103036,15.6550048264382,-2.33008693565772,0.0705176822701671,0.168726627453701,-4.81119798859733 +"Q9VH95",-0.118504521207921,20.9965092855523,-2.32961456684107,0.0705577688435985,0.168726627453701,-4.8118059527516 +"P07486",-0.177032959834623,21.9976143141662,-2.32904394474409,0.070606226596333,0.168726627453701,-4.81254038922627 +"Q9VMR0",0.174222941904926,17.3393138240744,2.32716202156594,0.0707662984590351,0.168867218640444,-4.81496269171872 +"A1Z992",-0.26787307508808,14.0920591944827,-2.31592970628054,0.0717299517174376,0.170922227806694,-4.8294239107055 +"Q9VSY4",-0.1165788548848,20.4755477883869,-2.3024434159267,0.0729058960329135,0.173476511530528,-4.84679493506692 +"Q7KV34",0.125344612703923,20.7396216340362,2.29660879560499,0.0734211333160511,0.174453633007369,-4.85431275858863 +"Q9VE94",-0.125499772225462,14.5183345800066,-2.2953378364673,0.0735338920491308,0.174473018403912,-4.85595056709473 +"Q9VQM2",-0.171450357554377,20.1082449085926,-2.29248153435094,0.0737879888629351,0.17482722361275,-4.85963156309093 +"Q9VRU1",0.244318253852569,17.2212958448304,2.28827860569785,0.0741636181248535,0.17546796458476,-4.86504861740323 +"Q9V3P3",0.128174757894786,19.3641868608903,2.2867399217867,0.0743016543024756,0.175545551524829,-4.86703197293765 +"Q26377",-0.134892983875082,16.7904214951631,-2.28096592977311,0.074822135744843,0.176525208518243,-4.8744754721572 +"A1Z8Z7",0.266536597000947,19.0008651547853,2.27873272736946,0.0750245024284029,0.176752641314373,-4.87735474333883 +"Q9W2L6",0.174371278969929,20.8530077482621,2.27550699696415,0.075317858823927,0.177193495794514,-4.88151402386313 +"P54192",-0.152141726688932,24.5081621026665,-2.27197371878677,0.0756406135228831,0.177702173741083,-4.88607031334064 +"Q9VDK9",0.241392077936343,15.4665815360961,2.26538089933235,0.0762468672155301,0.178874507054155,-4.89457322652015 +"Q9VFM0",-0.147857818041532,14.3860192448855,-2.26171280975573,0.0765864521590095,0.179418823316331,-4.89930472260988 +"Q9VNA5",0.168328091859212,17.3491196316772,2.25835068854846,0.0768991514160448,0.179898716075684,-4.90364195883316 +"Q9VGQ8",0.118973293634133,16.2936774879603,2.2568902579572,0.0770354118005956,0.179965079668618,-4.90552607770323 +"Q9VH26",-0.153848837843853,18.5819340654324,-2.25444068950133,0.0772645479717903,0.180228271616224,-4.9086864554628 +"Q9W127",-0.163504588375336,18.6420818294697,-2.25337809460957,0.0773641741470123,0.180228271616224,-4.91005745305806 +"Q9W0D3",0.459597417364284,12.7521566998868,2.24649719218884,0.0780126869061482,0.18148558125447,-4.91893631781217 +"Q9VK69",0.117742726806195,20.303493359269,2.2417624640586,0.078462343615819,0.182209278078426,-4.92504669480712 +"P38040",0.139180943437555,19.1766782016109,2.24092416410473,0.0785422487640216,0.182209278078426,-4.92612862851374 +"Q9VB64",-0.11362000543744,18.7396738412102,-2.23651836976755,0.078963650499696,0.182932456990962,-4.93181521004502 +"Q7JQW6",-0.165920962155964,15.8283654541893,-2.23490395498711,0.0791186764441565,0.183037381843069,-4.93389908306844 +"Q709R6",-0.238973600714099,15.2294876038399,-2.22458844542661,0.0801170367063512,0.185090328568136,-4.94721593735663 +"Q9VN25",0.130887788733398,14.7333281026148,2.21893960262698,0.0806695075668104,0.186108905423845,-4.95450950107469 +"Q2MGK7",-0.207976950601349,17.1932868690408,-2.21631844395757,0.0809272598523197,0.186432830902084,-4.95789410059053 +"Q9VN93",0.121673705578669,20.3284971776741,2.21524113861145,0.0810334546786634,0.186432830902084,-4.95928522941892 +"Q9VWW2",0.350457413023612,15.4603737909248,2.20992581802633,0.0815596164689927,0.187384903953553,-4.966149309117 +"Q9W4Y1",-0.146463578692817,17.7247486495052,-2.20694282432981,0.0818565163175245,0.187808348304857,-4.97000174669046 +"M9PF61",-0.110581064922727,22.7036647591468,-2.1953985219036,0.0830165634816878,0.189971138592222,-4.98491251232682 +"Q9VVW3",0.227480847106262,16.5116465554924,2.195295902827,0.0830269544566724,0.189971138592222,-4.98504506761748 +"Q9V9S8",0.139442716299211,19.9554059292757,2.19131497914466,0.0834311375632561,0.190500702192879,-4.99018745427862 +"Q9VN95",0.129733456627157,17.9824057766233,2.19076818920583,0.0834868185269753,0.190500702192879,-4.99089379506191 +"Q9VVU1",0.139273403035602,22.3963360896516,2.18645691756416,0.0839272505747079,0.19124406278499,-4.99646324539623 +"Q9VP77",-0.11918549874318,15.2897910670217,-2.17799622580638,0.0847988699029426,0.192881540355458,-5.00739386737444 +"Q9VFP6",-0.114351851540576,20.2207231362124,-2.17724116220229,0.0848771286696078,0.192881540355458,-5.00836940439534 +"Q9VVH5",-0.121545730921348,22.5211846025401,-2.1733252764784,0.0852842401066757,0.193401755440213,-5.01342881626088 +"M9NDE3",0.113869230718002,16.1888109012402,2.17281020804961,0.0853379448465206,0.193401755440213,-5.01409430989101 +"A1Z843",0.145404725016707,17.4844418930309,2.17117131216975,0.0855090700587402,0.19352663345723,-5.01621186383132 +"Q9VDH3",0.138578493222571,20.6130265531591,2.16619304066777,0.0860311426041234,0.193912515910608,-5.0226442735246 +"P80455",-0.143774993982415,20.4571495915517,-2.16564035426215,0.0860893139581772,0.193912515910608,-5.02335841344828 +"Q9VPX0",0.175225206695597,13.8160718840689,2.16525412937326,0.0861299899982123,0.193912515910608,-5.02385746601979 +"Q7JXF5",-0.122341608707664,18.4904405499295,-2.16511555846809,0.0861445889027341,0.193912515910608,-5.02403651791822 +"P36975",-0.178429829921175,22.410160742107,-2.16029523142997,0.0866540851849689,0.194796514944108,-5.03026512387459 +"Q9VKA1",0.861948988115634,14.4872438980883,2.15732298320764,0.0869698571821273,0.195003572225068,-5.03410582224621 +"Q7K486",0.143964702454102,17.658269739599,2.15722760487693,0.0869800106327641,0.195003572225068,-5.03422906991128 +"Q9VUM1",-0.13872957251677,16.5948539103038,-2.15527894527983,0.08718773312817,0.195206897795688,-5.03674713743296 +"Q8MRT7",0.146486459387335,15.4235801864994,2.15237121642382,0.0874986812175181,0.195640482936756,-5.04050456514859 +"Q95RS6",0.107120472165153,17.075343654847,2.15039745179879,0.0877104308433274,0.195851403810803,-5.04305513323807 +"Q7KSQ0",0.12684179805127,20.8402340328477,2.1440164174753,0.0883987730637245,0.19712453672499,-5.05130105868522 +"P21914",-0.141836661232443,22.8959835266348,-2.13902153019135,0.0889416304209591,0.198070279762563,-5.05775582872398 +"P02283",0.138614676262247,21.629755514249,2.13177455015353,0.089735615276518,0.199572008374976,-5.06712099987646 +"Q9VWD5",0.22574882315458,14.4340027037295,2.12775271771918,0.090179524715079,0.200292206690748,-5.07231836124914 +"Q9VF28",0.151917556787144,17.7867457224517,2.12640983534766,0.09032826859214,0.200355787249587,-5.07405374664557 +"Q9VGG5",0.168931939775364,17.1799821408492,2.1253211254011,0.0904490520042903,0.200357262607113,-5.07546066681059 +"Q9VAS1",0.178863617067407,12.9562874287775,2.12319646663626,0.0906852637604185,0.200614084817478,-5.07820631748784 +"Q9VCR2",0.177677967777267,15.382664754593,2.11982994449075,0.0910608945516611,0.201178241208173,-5.0825567753553 +"A1Z934",-0.116192345461521,19.3522779902091,-2.11478275743892,0.0916271739052484,0.202161542425866,-5.08907902510654 +"Q9VKE2",-0.168551206248146,24.2971215494308,-2.11131969708983,0.0920178974528082,0.202755420014906,-5.09355410567983 +"Q9VZD8",-0.14718878906031,13.6132853663933,-2.10991616664759,0.0921767593710157,0.202837512705612,-5.09536777326494 +"Q9VY42",0.118273944042926,15.1650286251517,2.1065487332238,0.0925591072571671,0.203410528201521,-5.09971917679356 +"Q9VZE4",0.161478375522048,17.7117320752492,2.10437940440533,0.0928063165238794,0.203634851196535,-5.10252234188603 +"O77134",-0.17355751651829,21.7007946501998,-2.09911957342691,0.093408642565774,0.203634851196535,-5.10931882512294 +"A0A0B4K7J2",0.128965098739252,15.5281585287666,2.09843612674695,0.0934872130406406,0.203634851196535,-5.11020192049842 +"Q9VS97",-0.195718603024009,15.2498146898671,-2.09827015188917,0.0935063045111504,0.203634851196535,-5.11041637927898 +"P35220",-0.110692975553331,19.4304709304552,-2.09753674227797,0.0935907157533385,0.203634851196535,-5.11136402622898 +"Q9W265",0.114865148459081,17.1008898802013,2.09747522612265,0.0935977996083049,0.203634851196535,-5.11144351170319 +"Q6AWN0",-0.128886628510209,18.1555893671614,-2.09734327234581,0.0936129965955872,0.203634851196535,-5.11161401000953 +"Q7KN94",-0.125251717269446,22.6881215201615,-2.09712753750251,0.0936378482420519,0.203634851196535,-5.11189276196502 +"Q9VEC8",-0.146629573262159,16.5640756827694,-2.09364593899477,0.0940398877998765,0.204242881315357,-5.11639128070426 +"Q9VKU5",-0.150883587728433,13.8783333143929,-2.09220602288892,0.0942067012416476,0.204339112706201,-5.11825173313463 +"Q9VJE3",-0.120836981033857,15.5450224535339,-2.08948141282991,0.0945232105093997,0.204496755425959,-5.12177201285997 +"Q9VVT6",-0.121816302246877,20.511151212592,-2.08946965017965,0.0945245793965316,0.204496755425959,-5.1217872103609 +"Q9W1I8",-0.125963419519888,18.0538400388828,-2.07620972620516,0.0960812426152537,0.207595223681662,-5.13891794810354 +"Q9VGQ1",-0.140656285582995,22.4098664903399,-2.07291102238084,0.0964727271089797,0.208171421497772,-5.14317916506594 +"A1ZB69",-0.129964883119612,20.3818565805129,-2.06846847724239,0.0970026479051466,0.208912102349526,-5.14891766509182 +"O97062",-0.142676316475121,18.4509836684171,-2.06692960905563,0.0971869310505453,0.208912102349526,-5.15090535480859 +"Q9VPZ5",-0.124448878237285,18.3876571362054,-2.0668896477338,0.097191721476758,0.208912102349526,-5.15095697049791 +"Q8I725",0.103374433154922,18.9109260766328,2.06444053896678,0.0974857925342584,0.209232525051424,-5.15412027828299 +"Q9VPX6",0.452957672356646,21.5058390955675,2.06319280516158,0.0976359752906144,0.209232525051424,-5.15573182326458 +"Q9W257",0.127838846004266,17.2832228517122,2.06251959139044,0.097717108522218,0.209232525051424,-5.15660131735367 +"Q9VMY9",0.24054472382157,14.8594756995368,2.06036363353032,0.0979774196847453,0.209296242920341,-5.15938579423864 +"P14199",-0.169299700879844,18.4714697088049,-2.05981997077255,0.0980431781433282,0.209296242920341,-5.16008793299477 +"Q9VV60",-0.107098689748344,19.9580926912826,-2.05915809367095,0.0981232985393923,0.209296242920341,-5.16094273628441 +"Q9VP55",0.104617445348795,17.0885502835381,2.05675062283275,0.0984153113764118,0.209651008142854,-5.16405186083488 +"Q9VRP4",0.24020858609736,14.2097036172049,2.04888376674852,0.0993759777626805,0.21142746289305,-5.17421053266463 +"Q9W425",-0.310573102701067,13.9617302443091,-2.04771043605867,0.0995201118191464,0.211464390464123,-5.1757255509296 +"Q9W141",-0.106067304308727,21.8223901448701,-2.03860724114663,0.100645937450113,0.213346358735831,-5.18747843139528 +"Q8SY69",-0.114888713513761,19.0144637584944,-2.03848118963549,0.100661621298021,0.213346358735831,-5.187641156506 +"Q8IQW5",-0.142415761598009,21.8482911037399,-2.03476883750095,0.101124692490591,0.214055821160287,-5.19243337350888 +"Q70PY2",0.112360799996932,17.314709216097,2.03010088972103,0.101710172773013,0.215022266394658,-5.19845855351687 +"Q9W289",-0.184070365272198,17.4608275617026,-2.02695734037343,0.102106479383259,0.215586845077565,-5.20251571493906 +"Q9VQR2",-0.125361391371086,21.3456848843543,-2.02253707489319,0.102666512834292,0.216495250831351,-5.20822008782799 +"Q9VGT8",0.133826937565994,15.2853130646018,2.0205298161672,0.102921899923779,0.216759758930382,-5.21081024228387 +"Q9VH72",-0.755188214865111,18.7681173997219,-2.01890716636076,0.103128844469964,0.216921705644262,-5.21290399562876 +"Q9VSN3",-0.19279144247804,21.0257972182422,-2.01597298283699,0.103504175209586,0.21704260808218,-5.21668981867393 +"P05812",-0.112079734472404,15.9215108639134,-2.01575487785918,0.103532132153098,0.21704260808218,-5.21697121548839 +"O97064",0.1116607706549,16.451190902112,2.01540740395727,0.103576688269434,0.21704260808218,-5.21741951912802 +"Q9VAN1",-0.107385622318427,15.0200154953712,-2.0136059101356,0.103808017131593,0.217254419793598,-5.2197436969736 +"Q9VVW8",-0.147186140628637,15.7971840275579,-2.01007064054157,0.104263570369044,0.217934380169881,-5.22430432888572 +"Q9VF24",0.101290198982053,16.0231452201267,2.00752612018384,0.104592765167516,0.218168386651341,-5.22758655609362 +"Q7KMP8",0.177372753885273,19.2201133471961,2.00718395775008,0.104637115899924,0.218168386651341,-5.22802789863693 +"P02572",-0.141698574720607,26.5226586003038,-2.00178349010732,0.105339759483999,0.219290494782429,-5.23499313122959 +"Q9VCT4",0.403877114015053,13.5769391727776,2.00102965512212,0.105438235500904,0.219290494782429,-5.23596529120689 +"Q9VI64",-0.100159059274837,21.0070820623142,-1.99474450850039,0.106263082865309,0.220730787321713,-5.24406979037274 +"Q9VRQ9",0.165189391724931,14.6215976234774,1.9933878441164,0.106442021239564,0.220827476899991,-5.24581893976082 +"Q0E8E8",0.111843051112835,21.453121644613,1.98683393389694,0.107310947454353,0.222353615346411,-5.25426772885281 +"Q9VBC9",-0.113037032810182,15.7340779100012,-1.98042266132617,0.108168209568619,0.22385182823878,-5.26253068320794 +"Q7K0E6",0.128494480494691,16.5765608694498,1.97324327783265,0.109136756373751,0.225576344029017,-5.27178117705679 +"A0A0B4LFA6",0.116898818235484,19.5834035061589,1.96909426299027,0.109700649890634,0.226461242596011,-5.27712588763062 +"B7Z0C9",-0.141966666036156,16.0782405016202,-1.96779057657841,0.109878467270738,0.226547939935217,-5.27880509175872 +"Q9VEA1",0.136557077940473,18.2077217596625,1.96644340957684,0.110062534167233,0.226647292581412,-5.28054020439291 +"P00408",-0.105820874471259,21.2643116007186,-1.96128739716125,0.110770017922122,0.227822922187545,-5.28718008048561 +"Q9VD09",-0.214312876727648,14.7574750553845,-1.95795893645543,0.111229274557458,0.228485751184533,-5.29146565612946 +"Q9W0Q2",-0.125281888116458,15.5531654743126,-1.95522457308343,0.111608057055603,0.228981843995997,-5.294985822349 +"Q9VQX3",-0.293573872628382,15.1736542885831,-1.9467216227629,0.112794633694195,0.231132001230857,-5.30592952283123 +"Q9V3W7",-0.150391885372624,17.8460124100721,-1.94530295149697,0.11299389457008,0.23125621612625,-5.30775499178959 +"Q9VZ64",-0.12465286634065,19.4594062923581,-1.94148937737856,0.113531368813894,0.232071474487224,-5.31266146719163 +"Q9VYT3",0.124980272006393,14.4377085721056,1.94003497369376,0.113737054854227,0.232098595750886,-5.31453243375902 +"Q7KM15",-0.146766434055944,17.0790829481703,-1.9394285510834,0.113822932448576,0.232098595750886,-5.31531250476288 +"Q9VLS4",-0.131389807481639,20.5989258799881,-1.93292326694286,0.114748460139746,0.233700160577651,-5.3236790607622 +"Q7K2Q8",-0.117066135808173,16.262527424513,-1.93144452453962,0.114959944800253,0.233845351130271,-5.32558050501583 +"Q9VSK4",-0.137875389282051,19.7635254086318,-1.93015017079094,0.11514539430644,0.233937293182876,-5.32724473160876 +"Q9VAV2",-0.10263876427857,17.7746057725043,-1.91534971708968,0.11728836779035,0.238001213472388,-5.34626624026575 +"Q7KSM5",0.110855399315518,18.9634858994677,1.91071177912671,0.11796846095873,0.239090392319759,-5.35222364475167 +"Q9Y162",-0.105070606586416,20.1593676699418,-1.90864751559141,0.118272483832279,0.239415659019711,-5.35487465940411 +"Q9W4W5",-0.121907652542376,17.336043713397,-1.90661274036905,0.118572965684232,0.239732977892483,-5.35748748573247 +"P15425",0.124931902178826,16.9230080051537,1.90328897154487,0.11906551522016,0.240437384246038,-5.3617548025766 +"Q9VJN0",-0.2493443908232,17.3566543050844,-1.89879179662983,0.119735358031828,0.241497674966251,-5.36752724922445 +"Q9VNQ3",0.193393532586663,15.1605308330329,1.89179800946043,0.120784895261226,0.243320296250876,-5.37650104150857 +"Q9VH76",-0.128968646049934,19.3846958116965,-1.88826001244684,0.121319485172733,0.243892857742535,-5.38103914065009 +"Q9VJH8",0.173772615828009,14.2655985616499,1.88798228578955,0.121361553912652,0.243892857742535,-5.38139532911653 +"Q9VWL4",-0.170753602643822,16.0537092572725,-1.88000320112716,0.122576707505263,0.246038445389625,-5.39162580354046 +"Q9V3G7",0.112123714585984,18.0339826230597,1.87869463285539,0.122777199761854,0.246144674522563,-5.39330307172118 +"Q9W087",0.174213154551595,16.7060769122332,1.87408100527353,0.123486806267862,0.247270099465538,-5.39921541527115 +"P00334",-0.123635990478512,25.2915159898952,-1.86947786930414,0.12419905588624,0.24839811177248,-5.40511240208566 +"Q0E8V7",-0.137798336096065,19.8125768057692,-1.86600336913691,0.12473950068456,0.249180224121972,-5.40956222682954 +"Q03427",-0.119746059738844,21.7498129795181,-1.86265260263358,0.125263016487801,0.249926688399106,-5.4138525164605 +"Q9VXE8",-0.147086109152452,16.3279038056585,-1.85940077198427,0.125773259217254,0.250437853712406,-5.41801511177921 +"P45594",0.121034337153155,23.1424403878571,1.85910676998559,0.125819497248799,0.250437853712406,-5.41839140721517 +"Q9VNI4",-0.111190125559217,16.5700567641242,-1.85665841357424,0.126205239768782,0.250906245452119,-5.42152475329068 +"A8DYK6",0.245649180630018,16.7206628395341,1.85560435991605,0.126371685782237,0.250938061767584,-5.42287352586997 +"Q9VH37",-0.0987896932317849,16.5572470467358,-1.85201605435908,0.126940027721741,0.2517669039713,-5.42746432334233 +"Q9VKX2",-0.11166088228412,23.0729462908724,-1.85022195251936,0.127225185204177,0.251820258260559,-5.42975917890944 +"Q9VZV2",0.0951044686674845,15.0019823206146,1.84994746364006,0.127268871530966,0.251820258260559,-5.43011025234958 +"A1ZB68",-0.0999512861632077,19.4418812157999,-1.84592737337971,0.127910476353196,0.252535217810357,-5.43525111070117 +"Q9VBV5",-0.0939648499577785,17.2657058759164,-1.84546591751624,0.127984338950793,0.252535217810357,-5.43584111190641 +"Q8I941",-0.0972793801234992,19.0427737556169,-1.84320667868986,0.128346601427706,0.252535217810357,-5.43872938077863 +"Q9VH25",0.110279750839515,16.234914149923,1.84301571042521,0.128377271346828,0.252535217810357,-5.43897349548719 +"Q9VXM4",0.36066666799168,20.340163344739,1.84295384278343,0.128387209054666,0.252535217810357,-5.43905258008009 +"Q9W0A8",0.0979157019372359,18.7438836081917,1.8408925831584,0.128718762557087,0.252889158946079,-5.44168723500694 +"Q9VAN0",0.0913014815897668,20.4311738589207,1.83856823415691,0.12909369900293,0.253029613134694,-5.44465763479694 +"Q9VWP4",0.185934277973537,15.1738208861519,1.8376697319862,0.129238937919208,0.253029613134694,-5.44580572323528 +"Q9W4K0",0.124594664351203,19.6529838179979,1.83763013828293,0.129245341960887,0.253029613134694,-5.44585631333867 +"Q9VM18",-0.0913161795468547,22.9168685294172,-1.83604437207347,0.129502100533055,0.253235057079878,-5.44788236001349 +"Q7KTG2",0.148583309517885,18.0028202603261,1.83228552600896,0.130112825184584,0.254131372842958,-5.45268376394607 +"O76752",-0.108570445404681,17.7084666694256,-1.82349862790148,0.131552151054134,0.256642091179293,-5.46390183492288 +"Q9VGF7",-0.117189810717765,20.1145737128367,-1.81616018474284,0.132766831628118,0.258709199948249,-5.47326411108208 +"Q7KLE5",-0.127161126594203,21.4552793310823,-1.81390458085371,0.133142510100981,0.259138514408911,-5.47614054490595 +"Q7K012",0.176386469061843,15.5548952176764,1.81192833252988,0.133472563377452,0.259299007477966,-5.47866025051024 +"Q9VHE4",-0.0915284485828867,17.9549472975422,-1.80994553360986,0.133804559814834,0.259299007477966,-5.48118785103473 +"Q7JWX3",0.102096267482974,17.7448372241525,1.80987733121433,0.133815994662193,0.259299007477966,-5.48127478480211 +"Q9W0X2",-0.0915396981236327,15.8303057677658,-1.80888295635138,0.133982826659901,0.259299007477966,-5.48254219658861 +"P61851",-0.0922963838597433,23.6324992270859,-1.8087673003179,0.134002244871707,0.259299007477966,-5.48268960207472 +"Q9VNW0",-0.276724188469963,14.7541937254231,-1.80609515449829,0.134451697761582,0.259867244341042,-5.48609485485709 +"A1Z9I0",-0.10910183343487,19.3558791701856,-1.80365304921423,0.134863818338704,0.260362093737221,-5.48920621214911 +"Q9VH77",0.166952386020695,15.4561820804164,1.7965830734834,0.136064281349985,0.262375978371994,-5.49820963335885 +"Q9VKI8",-0.0920881475248194,22.3908725947593,-1.79136463462643,0.136957417862834,0.263575118819981,-5.50485123015715 +"C0HK94",0.131093435612023,18.4199796561932,1.79110404910765,0.137002175070098,0.263575118819981,-5.5051827927056 +"Q9VWU1",0.164127242666448,14.964988313111,1.78789429261065,0.137554707609111,0.264333239967739,-5.50926610470602 +"Q8SY33",-0.112769685663945,17.4537440106941,-1.78299177606824,0.138403064333605,0.265657435337691,-5.51550033876425 +"O76454",0.151924222545581,17.9212260709725,1.78166621423571,0.138633369365363,0.26579363230049,-5.51718544390367 +"A1Z8D3",0.207877388436279,16.8137959717803,1.77889296521605,0.139116473002366,0.266413636013715,-5.52071016474267 +"Q9VDL1",-0.17586244657787,14.8679030928052,-1.77658827182165,0.139519269987642,0.266709303956927,-5.52363859722922 +"Q9VL18",0.100395800442037,20.8102212585283,1.77616383563863,0.139593580324322,0.266709303956927,-5.52417782580082 +"Q9VJJ0",0.097004717879539,19.8407705464222,1.77526799028797,0.139750558548174,0.266709303956927,-5.52531588179093 +"Q7K2D2",0.0979792648883127,20.4452918616738,1.77283458889065,0.140177877280321,0.267219084918372,-5.52840666525475 +"Q9VSC5",-0.0899101474319899,19.465212852518,-1.76502831000737,0.14155777905863,0.269541524508898,-5.53831641791754 +"Q9VLS9",-0.100600442989059,19.0315574637768,-1.75947296150281,0.142548268487944,0.271118029461677,-5.54536361250679 +"Q9VVC8",-0.115840869943721,16.776615769408,-1.75799736734251,0.142812551366633,0.271311316263717,-5.547234742284 +"Q7KTW5",-0.101957396317829,21.5293152696281,-1.75566635984112,0.143231064445384,0.271796832189876,-5.55018995493676 +"Q27272",0.173073305419861,15.8136633515815,1.75161709392138,0.143961065381165,0.272854140449464,-5.55532171003083 +"Q7KN90",-0.0913018059161121,17.2499569510611,-1.75076366767167,0.144115406316534,0.272854140449464,-5.55640298260927 +"Q27268",0.111056064943689,18.9469689527256,1.74828827893107,0.144564035578167,0.272993953870857,-5.55953865119629 +"Q9VG26",-0.101670296602226,19.7816320437565,-1.74766400904958,0.144677401156277,0.272993953870857,-5.56032929707259 +"Q8SX57",-0.088912402624775,17.8847234996076,-1.74764833364549,0.144680248933955,0.272993953870857,-5.56034914944422 +"Q9VE85",0.11819250361401,15.8525196999589,1.739726350232,0.146126809789354,0.275411885569088,-5.57037745425258 +"Q9VW59",0.0887104842575255,19.6798668005096,1.73085307979966,0.14776463445001,0.278184435962322,-5.58159882835892 +"Q9V4E0",0.125711648049002,18.1252882103761,1.72959633390791,0.147998114472726,0.278309870282421,-5.58318717200511 +"Q9VCU6",-0.114211655780535,15.5343117282837,-1.72700219172526,0.148481248850837,0.27847375427894,-5.58646501779841 +"Q7JXB9",0.185211077575174,16.1764587298354,1.72695376450839,0.14849028324054,0.27847375427894,-5.5865261984061 +"Q9VQL1",-0.0906227452071491,20.0451011929292,-1.72644025576773,0.14858611589224,0.27847375427894,-5.58717491809764 +"Q95RG8",0.418410124807957,13.2667639147878,1.72274488114702,0.149277620946346,0.279455748303597,-5.59184209849073 +"Q7KNM2",-0.0941224969748085,19.7361000819878,-1.71362297360217,0.150998649349982,0.282360703044586,-5.60335360991514 +"Q9W415",-0.103058431716606,16.7603708993327,-1.712493860024,0.151213079463399,0.282445035324692,-5.60477757928066 +"Q9VII5",-0.0870827702306656,17.4285389342536,-1.70113431387101,0.153387679762188,0.285927348417963,-5.61909189400561 +"P54622",0.0992109357280455,17.8837557776525,1.70096542275763,0.153420249900526,0.285927348417963,-5.61930455396632 +"Q9VWF0",-0.141834907979685,16.5343153074943,-1.69985064692299,0.153635407299485,0.286008771624488,-5.62070810814633 +"Q7KQM6",-0.0970412253354649,15.1562905240361,-1.69871222201825,0.153855445337116,0.286099088988083,-5.62214122102291 +"Q0E9F9",0.141865571017778,18.2723669333489,1.69604968359024,0.15437131845,0.286738707321381,-5.62549211457897 +"Q7KUA4",-0.098640275091018,18.8500987348493,-1.69501856464112,0.154571571476393,0.286791302806032,-5.6267894875799 +"Q9VQB4",-0.0911060632072989,21.8899733790767,-1.68504551360199,0.156522082720518,0.289875691547166,-5.63932828594228 +"Q9VGF3",0.145001036227146,15.7139635504049,1.6835279180333,0.156821070615548,0.289875691547166,-5.64123478581087 +"Q9V3E7",-0.187154631324994,18.7529123951069,-1.6823443909058,0.157054643708687,0.289875691547166,-5.64272132481282 +"Q95TK5",-0.0901478909216671,16.9976031902385,-1.68233800146475,0.157055905642219,0.289875691547166,-5.64272934943245 +"O62602",0.163910429677809,14.4500024009853,1.68210013246691,0.157102892780958,0.289875691547166,-5.64302808843539 +"Q9W2M0",-0.0840856568125083,17.7919611515057,-1.68010970948498,0.157496626626114,0.290037997739819,-5.64552746018401 +"Q9VI04",0.128619994667247,16.0724984416891,1.6798976962625,0.157538624671628,0.290037997739819,-5.64579364326599 +"O96824",-0.0989242305674729,16.665454402132,-1.67586074725084,0.158340476569574,0.291192849964773,-5.65086050226084 +"Q7JZK1",-0.130355061225142,21.506867611191,-1.66965342071845,0.15958148826724,0.29315189694907,-5.65864568313406 +"Q9VYV3",0.108632552648444,20.5640224917412,1.66833939935014,0.15984545488968,0.293302170991329,-5.66029281294349 +"Q9VM11",0.152281849242783,17.9560440882137,1.66679660876236,0.160155940794794,0.293302170991329,-5.6622262983946 +"Q95RA9",-0.0972866240292838,20.5341935089093,-1.66662351405907,0.16019081401265,0.293302170991329,-5.66244319991809 +"Q9VCF8",-0.115773776316141,16.9388010052009,-1.66274532941847,0.160974161707193,0.294413269438155,-5.6673014123531 +"Q9VAD4",0.435891215447262,13.3116019432802,1.6581127063491,0.161914966659426,0.295809599548655,-5.67310100995252 +"Q9VV72",0.0984426432850682,19.4116336914447,1.65483288419754,0.162584392787367,0.296707622723554,-5.67720456816692 +"Q9VC48",0.101462275393516,18.4372980704586,1.65335764598011,0.162886404468525,0.29684982157085,-5.67904964491926 +"P13677",-0.130360340133874,16.8767553784535,-1.65271449652612,0.163018247337469,0.29684982157085,-5.67985389928173 +"A1Z9J3",0.0955188489908032,17.5307398932157,1.65119873039327,0.163329398365749,0.297092079033881,-5.68174903952779 +"Q94529",-0.0970777279107864,19.6439179195132,-1.64595826069245,0.164409759416138,0.298539179862464,-5.68829768253149 +"Q9VL93",0.110035356888488,15.396213893157,1.64560464992045,0.164482917442209,0.298539179862464,-5.68873937141 +"Q9VIT0",-0.0898365478853975,16.5278454348583,-1.64101971619529,0.165434458853961,0.299747821169779,-5.69446409596901 +"Q7KN75",0.0888670671026226,19.1809362769545,1.64053604775982,0.16553516005374,0.299747821169779,-5.69506775883931 +"O15971",0.125469283397402,17.085944325975,1.6398027887575,0.165687944315669,0.299747821169779,-5.69598284486635 +"Q9V3B6",-0.185235142693873,13.6125664874107,-1.63517256554373,0.166655991900685,0.301172475070794,-5.70175874204281 +"Q9VMB3",0.0836321767562964,18.5798927124631,1.62974823045792,0.167797295287929,0.302906805779509,-5.70851972638044 +"O44434",-0.111796106691431,16.0024169995442,-1.62784297184844,0.168200029125245,0.303305566033415,-5.71089304651347 +"Q8IMX8",-0.127911981906038,17.2043484437488,-1.62382377652295,0.169052790558414,0.304514097895718,-5.71589717338754 +"Q9W2M4",-0.0954805388567479,22.6720543186936,-1.62031428432373,0.169800951616755,0.305188919201443,-5.72026394215056 +"P46415",0.147182078313435,17.8437602933944,1.62006694082063,0.169853805840453,0.305188919201443,-5.72057160784385 +"Q9VBL3",0.184968207303745,14.4734569071141,1.61949389232579,0.169976322504881,0.305188919201443,-5.72128436211864 +"Q7K3W4",-0.0805277811234895,19.2603215853692,-1.61213829687702,0.171556815822554,0.30752048088688,-5.73042703417949 +"Q9VMS1",-0.0850779954259089,22.4404984091958,-1.61173625220098,0.171643625722833,0.30752048088688,-5.73092642501336 +"Q9VRL0",-0.142959376269634,22.7121826950743,-1.60814555443315,0.172420884098703,0.308581582271069,-5.73538498712543 +"Q9VGE7",0.0821570196612438,13.9981617302217,1.60107882781079,0.173960869992918,0.310883974473245,-5.74415154536044 +"A1Z6S7",0.0829295678503321,17.6027387782923,1.59861853386204,0.174500236799117,0.310883974473245,-5.74720106440008 +"Q9VSY8",-0.0911046040885601,18.0746424589994,-1.59844633683799,0.174538049760757,0.310883974473245,-5.74741445134896 +"Q7JVK8",-0.0888644588054923,19.1847755592973,-1.59820684863668,0.174590652873277,0.310883974473245,-5.74771121473726 +"Q9W1X8",0.10199050250888,16.0795749507008,1.59798562148139,0.174639259041625,0.310883974473245,-5.74798533851182 +"Q9VEJ3",-0.117573021310509,20.3154302406517,-1.59459809043232,0.175385227386017,0.311879061065966,-5.75218148490721 +"Q9VYF0",0.191125328776415,16.2582758499482,1.59261123741331,0.175824230216107,0.31232674760433,-5.75464141158997 +"Q7K188",-0.0819479409713892,22.1198083103609,-1.59073488496356,0.176239823335594,0.312731941833798,-5.75696371123442 +"Q9V420",0.111293049606413,17.5609147240208,1.58975646384882,0.176456921972715,0.312784427046216,-5.7581743551271 +"Q9VJ25",0.300915288770758,15.6649089647579,1.5829808075435,0.177967677751163,0.315127480349192,-5.76655219034455 +"Q9VIH1",0.12657851832302,15.8367898100602,1.58020598434091,0.178590084982789,0.315615290111672,-5.76998010631046 +"Q9VMH2",0.146821337678704,17.3469069003435,1.58006572623803,0.178621603036822,0.315615290111672,-5.77015332873831 +"O61722",-0.109996213025127,18.8822305743125,-1.5782553599687,0.179028915790869,0.316000245014995,-5.77238876797189 +"Q07093",0.159561728208066,14.5097281292699,1.57573118131457,0.179598370511409,0.316496426458078,-5.77550434593006 +"P05205",-0.100202403783229,18.2491441485535,-1.57532789795041,0.17968951789916,0.316496426458078,-5.7760019778166 +"Q9VC53",-0.162035031846589,17.8453376850208,-1.57245926592492,0.18033919443396,0.31695434484658,-5.77954062476748 +"Q9VH39",-0.0900245609194794,18.1580545138915,-1.57104208373495,0.180661012865413,0.31695434484658,-5.78128809529591 +"A1Z8Y3",-0.142899632166515,15.1721340174722,-1.57103971953709,0.180661550211528,0.31695434484658,-5.78129101009582 +"Q8SX78",-0.108632936521529,16.0768353695395,-1.57082842122813,0.180709581504255,0.31695434484658,-5.78155151266939 +"Q9VJI7",0.0779366523406999,17.4538625705981,1.56911104924296,0.181100436649522,0.317306227238868,-5.78366840920152 +"P48604",-0.0817934510965053,20.1419461165405,-1.56689910828944,0.181605086929741,0.317404551130798,-5.78639389364359 +"Q9VAA9",-0.0942635451101239,17.1560870321953,-1.56670866450444,0.181648601521192,0.317404551130798,-5.78662849779439 +"A1Z7H7",0.0795653260607487,17.8290021532674,1.56636380108892,0.181727425857261,0.317404551130798,-5.78705330648263 +"Q9W259",0.187055402821382,16.9596957718085,1.5639954528904,0.182269669091211,0.317706493410373,-5.78996990652064 +"Q961Q8",0.264874781205014,15.4440116871159,1.56394497562158,0.182281243521419,0.317706493410373,-5.79003205413365 +"P13496",-0.0994842900811044,18.2662651528218,-1.56103426673663,0.182949902653621,0.318400294528274,-5.79361467674603 +"Q8IPX7",0.325831900981321,15.2396157863311,1.56055132583707,0.183061080607083,0.318400294528274,-5.79420890196629 +"Q00174",0.0809993012919108,21.904851847472,1.55878086277323,0.183469232289135,0.318777791102372,-5.79638684810155 +"O02649",-0.0821272049175938,23.4721035225201,-1.55482069231142,0.184385451639394,0.320036351024464,-5.8012557003991 +"Q5U126",-0.162800753337873,21.7988568881904,-1.55176628421708,0.185095207878971,0.320934310542748,-5.80500831965005 +"Q8SZA8",-0.175676466413506,18.0599932701129,-1.54952186935592,0.185618467317307,0.32139072228888,-5.80776431298404 +"Q9VPR1",0.11117220457697,13.6037326301307,1.54854174735359,0.185847430126535,0.32139072228888,-5.80896744417172 +"Q7K0X9",-0.141251058906699,16.7320258252984,-1.54816087782706,0.185936479022044,0.32139072228888,-5.80943490893544 +"Q9VJ60",-0.11784388297588,16.5283438447996,-1.54731462129861,0.186134488366586,0.321399924011868,-5.81047344197047 +"A0A0B4KGY6",0.135252272132586,21.9036416986319,1.54432123550822,0.186836562517387,0.322278579399174,-5.81414550607978 +"O61443",0.19129163131038,16.4247136261495,1.54270148794175,0.187217551274971,0.322602144139103,-5.81613154993985 +"Q9VDF4",-0.0923850255458163,18.6878963359267,-1.53914485686223,0.188056817608287,0.323424939905474,-5.82049015511476 +"Q9VB79",0.112215526633888,17.6891842712825,1.5390347931598,0.188082848745989,0.323424939905474,-5.82062498531876 +"Q9VYT1",0.143761507799525,14.3160874289047,1.53754363414477,0.188435872981795,0.323433940695667,-5.82245137899731 +"E1JGR3",0.126949687318938,12.1313113572459,1.53737476319948,0.188475893498914,0.323433940695667,-5.82265817872033 +"P18053",0.0979321814391945,21.1364286272339,1.53493821258009,0.189054262666812,0.324093021714535,-5.82564116799805 +"A1Z9E3",-0.0926629121285956,21.7429445542759,-1.53244127685861,0.189648781215802,0.32477840561392,-5.82869649551557 +"Q9VTC3",-0.10954425118959,17.2053994497067,-1.52566088622246,0.191272495710792,0.327223100354462,-5.83698500307645 +"Q7K5K3",-0.0827214981358431,22.6056156913481,-1.52085100858995,0.192432616376722,0.328870496020873,-5.84285737661132 +"Q9V9S0",0.0964384962827012,17.1750870654115,1.51900605229898,0.192879445367976,0.329296739891283,-5.84510825017074 +"O97477",0.0786852018776294,20.9359052823524,1.51809648844791,0.193100107338118,0.329336379386484,-5.84621759658106 +"Q9VRL2",0.394041580453962,12.1404141349999,1.51156094922115,0.194692951173774,0.331713833051946,-5.85418209862211 +"Q9W1E8",-0.079417724118505,15.4357942144282,-1.51060148983874,0.194927874226271,0.331775198172878,-5.85535036557127 +"Q9V3N1",-0.0809407623501386,18.3375411997036,-1.50976541396468,0.195132813676934,0.331785456894114,-5.85636819255541 +"Q9W2D6",-0.115809998697959,19.6396610512418,-1.50821757973012,0.195512777819992,0.331918202370197,-5.85825200037652 +"Q9V6B9",-0.127265474518563,15.6850488820183,-1.50782660838064,0.195608868663012,0.331918202370197,-5.85872773244363 +"Q9VT75",0.0797285664897451,15.6013360618725,1.50593054419598,0.196075530403168,0.332371935683419,-5.86103425939212 +"Q9W3W4",0.144256471860148,15.8059188294654,1.50488329799632,0.196333747678952,0.332471767643139,-5.86230779111162 +"Q9VKZ8",0.099500793931508,18.7255717181269,1.50336084444621,0.196709730332174,0.332657130252977,-5.86415867167654 +"B7YZT2",-0.0808993262157571,18.4395676481528,-1.50282560847336,0.196842078872715,0.332657130252977,-5.86480921763688 +"Q9VJ86",0.0857889967716137,16.3537918185401,1.497971260252,0.19804640928726,0.334059106859179,-5.87070573947006 +"Q95R98",0.123864241044553,16.2213526320844,1.49786755559605,0.198072216237247,0.334059106859179,-5.87083163660376 +"Q9VKK1",0.144070994728096,14.5567526109502,1.49283973375306,0.199327345913615,0.335836376751423,-5.87693177121688 +"Q9VQG4",-0.0804431125384006,19.1637104464615,-1.49046148541579,0.199923750374731,0.33639696061242,-5.87981475385588 +"Q6IDF5",-0.146667596750362,19.6175788752025,-1.4899055338686,0.200063420220336,0.33639696061242,-5.8804884628955 +"Q9W3T2",-0.08006677363975,16.1230321849742,-1.48438978761304,0.201454295706038,0.338394526926155,-5.88716772583436 +"Q9W0H6",-0.0802553047451049,18.211466536876,-1.47880468371398,0.202872274138348,0.340433554590306,-5.89392204065697 +"Q8SZ63",0.175192954661,14.1288974895327,1.47621704524466,0.203532532583044,0.341198255626651,-5.89704830929166 +"Q8T4G5",0.0754099692689607,19.5925427487604,1.47358574493276,0.204206078131884,0.341983673016047,-5.90022531442901 +"Q9VLM9",0.116728009473794,18.4958932466382,1.47002470567604,0.205121069493763,0.342655884066251,-5.90452162334496 +"P81900",-0.0799605682992244,22.4478098003084,-1.46986176364064,0.205163031949381,0.342655884066251,-5.90471811909739 +"Q86BI3",-0.113122340444992,18.1594663472446,-1.46962601952582,0.205223757902988,0.342655884066251,-5.90500239467574 +"O62530",0.10194460705285,15.6420868828525,1.4656467362951,0.206251433646737,0.344027391322758,-5.90979837291573 +"Q9VBT2",0.573807873486198,12.8397330768984,1.46074715723091,0.207523653276929,0.345803650015902,-5.91569699990721 +"Q9VXA9",0.211155366814973,14.192950616926,1.45799906479124,0.208240552221072,0.346651937230287,-5.91900226379807 +"Q9V3L7",-0.107303067418744,17.5801329478375,-1.45691110785045,0.208525032701904,0.346779416297881,-5.92031016744412 +"Q9W3V3",0.488794854782089,13.3725012483223,1.45445113759828,0.209169659551072,0.347388656678045,-5.92326612393076 +"Q9VSL2",-0.0749596413646287,20.4696671477256,-1.45392450152005,0.209307913645945,0.347388656678045,-5.92389870091555 +"P25171",-0.100745461401811,16.8671721647079,-1.44764294629081,0.210963808633601,0.34978889940442,-5.93143729375677 +"Q9VGJ9",-0.115988339075688,17.9285572010692,-1.44632305379268,0.211313357820072,0.35002053708429,-5.93301976203654 +"A1Z7H8",0.114453007101096,14.6188521494005,1.44493500057101,0.211681562753732,0.350282585985342,-5.93468336448857 +"Q9VH07",0.0758237614025994,18.254316509726,1.43850778886824,0.213394594330142,0.352525250853273,-5.94237859054943 +"Q9VW73",0.204731425095064,14.1463290253436,1.43770391972116,0.213609788229823,0.352525250853273,-5.94334013623181 +"Q7PLT4",0.38208694999733,15.9018854996248,1.43747584873422,0.213670880463225,0.352525250853273,-5.94361290532694 +"Q9VMF0",-0.118888495070756,13.8127494890961,-1.4357368409208,0.21413725491121,0.352945594063141,-5.94569218599951 +"Q9W2Y3",0.188249395455053,16.3978421007583,1.42968964449008,0.215766677768835,0.35528017622746,-5.95291511831877 +"Q9VLU4",-0.0956207176439534,17.0088699163628,-1.42401958254586,0.217305335552599,0.357460847832086,-5.95967688048348 +"Q9VQR9",0.0729796299315471,16.3096952483129,1.41406910506415,0.220031113958721,0.361588076929209,-5.97151778076403 +"Q0E8X7",0.106524666467315,21.0677529201221,1.41225239247019,0.220532309088349,0.36197844983361,-5.97367610202041 +"Q9VEB3",0.179983417158294,12.1233582402341,1.41163571272464,0.220702687938118,0.36197844983361,-5.97440848997281 +"Q7K1C5",-0.119807185216342,17.5782990657114,-1.41056524908231,0.220998740193479,0.362107955444719,-5.97567950389125 +"Q9U6R9",-0.0864348331302232,20.6668380944694,-1.40791992451931,0.221731978571941,0.362952836367023,-5.97881877994496 +"P36951",-0.0830185032216129,20.2367645670322,-1.40711685792162,0.221955036196167,0.362961765073732,-5.979771334664 +"Q5U117",0.210804208876056,14.3236063553579,1.4047630064624,0.222610075948108,0.36367640223452,-5.98256209386353 +"P48609",0.0876144459045403,16.9496836387152,1.40318620069495,0.223049912101043,0.364038408399745,-5.98443052794885 +"Q9Y171",0.282858140957957,15.1212094499916,1.3980014822525,0.224502019723226,0.365971660788469,-5.9905681862695 +"Q9VU75",0.0921271122498339,18.1300637459144,1.39739222628991,0.224673249788605,0.365971660788469,-5.99128881840232 +"Q9VE75",-0.136877570561454,15.256330614998,-1.39567039494926,0.225157842515673,0.366403201284041,-5.99332472255423 +"Q9VHI7",0.134918244258502,15.6283669259535,1.39412488412431,0.225593662721926,0.366734527206953,-5.99515127427296 +"P35381",0.103208623804896,25.5465721789819,1.39339000549294,0.225801174725144,0.366734527206953,-5.99601949626969 +"Q9VKQ2",-0.1405264323589,16.0906868409589,-1.39245344128729,0.226065902307664,0.366807320086754,-5.99712572866286 +"Q9VU68",-0.0717720860280799,19.0093364909822,-1.3895281192353,0.226894679677495,0.367794291255647,-6.00057904180863 +"Q9VI10",0.0790327121610055,17.1905669416362,1.38756362035033,0.227452872555099,0.368341156720297,-6.00289643937506 +"Q9VPU4",0.140246476687921,13.1613429996785,1.38519907976133,0.228126471601661,0.369073670835665,-6.00568394984376 +"Q9VWS1",0.117069846844515,17.3155149735135,1.38383419059848,0.228516160595797,0.369345887474602,-6.00729209679741 +"Q9W0H8",-0.113658810204711,19.4597938604116,-1.3782897223924,0.230105694061726,0.371346068464494,-6.01381796150367 +"P16620",0.0976477733637182,17.4310281559549,1.3779655984141,0.230198941721995,0.371346068464494,-6.01419911934325 +"O96299",0.216262550453063,15.6810080092202,1.37683384472191,0.230524819687162,0.371512463032064,-6.0155297262254 +"Q9VRD9",0.0812623755971806,16.5832368859135,1.37436912672918,0.231236032457403,0.37229894028856,-6.01842592009411 +"Q9VAI9",-0.0739397913323963,22.2166950683579,-1.36358456233588,0.234372605782849,0.376802129961176,-6.0310726792294 +"Q9VS02",0.10890664461996,17.9355195472758,1.36319314870968,0.234487200502167,0.376802129961176,-6.03153088377349 +"Q7K1W5",-0.0719801709950723,19.9353853310212,-1.36243034874491,0.234710679274378,0.376802129961176,-6.03242368685628 +"Q9VRZ7",-0.0896876312234856,17.1973089481608,-1.35562835656224,0.23671241802042,0.379650301209674,-6.04037546425185 +"Q8SXS0",0.239813053294624,14.5756345982425,1.35363808643664,0.237301180226817,0.380093778963936,-6.04269892319313 +"Q24319",0.104206245272593,16.1836921557299,1.35305700294774,0.237473337731383,0.380093778963936,-6.04337700700019 +"Q9VDI5",0.0938419972841125,16.6251828034787,1.35163389738171,0.237895460215065,0.380093778963936,-6.04503713937688 +"Q9VSX2",-0.0741656374490276,17.7685661309566,-1.35161718116686,0.237900422804766,0.380093778963936,-6.04505663528047 +"Q9W236",-0.0957588397996361,16.6004806314867,-1.34877263506524,0.238746318414535,0.380996200863127,-6.04837266746713 +"Q9VB68",0.0806988157926565,15.4451807195339,1.34818279301843,0.238922077999299,0.380996200863127,-6.04905989604137 +"Q9VTW6",0.441008896057401,16.4453266301224,1.3464409839974,0.239441811593087,0.381023244113168,-6.05108852350302 +"Q9XYZ5",0.118103473797433,15.8662656869773,1.34625284385565,0.239498014084801,0.381023244113168,-6.05130757562678 +"Q9W461",-0.16749806797756,16.3972879336359,-1.34546459489421,0.239733620621097,0.381023244113168,-6.05222519081838 +"Q9VMH9",0.0802597766837785,20.0724571428781,1.34506627348997,0.23985276158203,0.381023244113168,-6.05268879476189 +"Q9VCW6",-0.0751259123944976,19.6077777949021,-1.34152167853239,0.240915441561636,0.3822133732482,-6.05681167782456 +"Q9V405",0.0786653173956573,20.2869891020162,1.34103986569198,0.241060233007858,0.3822133732482,-6.05737172787752 +"Q9V3V9",0.0712514280589112,19.5110254011069,1.33981613444163,0.241428350303253,0.382433512161279,-6.05879377166149 +"Q4V5I9",-0.117519602458785,15.8391165514339,-1.33520553782044,0.242820054254321,0.384273102937579,-6.0641463914517 +"Q9W0H3",0.0889959431363216,16.5367811782759,1.32929339319704,0.244615685922539,0.386747833287958,-6.07099803440999 +"Q9VDI3",0.226310464068627,15.0076216171405,1.3221084168176,0.246814708026084,0.389855050177564,-6.07930644057432 +"Q9VQ88",0.101824336759952,16.5884340673939,1.32027476961918,0.247378876831531,0.390175292895792,-6.08142354309763 +"O01666",0.096488518067023,22.5981307059907,1.31992935555781,0.247485287700089,0.390175292895792,-6.0818222044181 +"Q9VFM9",-0.0790670430458871,17.2193895468885,-1.31739541435672,0.248267226338888,0.39086841963568,-6.0847453190261 +"Q9VN21",0.0669561528454103,22.0446205815961,1.31698659183978,0.248393600008286,0.39086841963568,-6.08521669134803 +"Q9VKF0",-0.0744273801588164,15.985004938511,-1.31494841027922,0.249024534911152,0.391491917277853,-6.08756572127652 +"Q9I7I3",-0.121615475498487,14.4980325060772,-1.31100799778013,0.250248578348146,0.393045789721947,-6.09210238740834 +"A1ZA23",0.0807118169392993,18.613447907436,1.30627145536836,0.251727380594125,0.394996491844779,-6.09754738555909 +"Q9VCB9",-0.107492849588034,16.9500289480619,-1.30537021705658,0.252009680861322,0.395067807966809,-6.09858239655922 +"Q9W5P1",-0.0710116816211404,14.2600279750007,-1.30315189019087,0.252705801027479,0.395787113721911,-6.10112858834165 +"Q9VG51",0.298591964384567,19.352327923003,1.29908253991964,0.253987449065108,0.397421261764166,-6.10579416160037 +"Q9VM69",-0.0765199332691466,16.7691831528758,-1.29591903074179,0.254987986939781,0.398612898046444,-6.10941648053993 +"Q9VXP4",0.0717035265212527,18.0850569524464,1.29472348425066,0.255367063541017,0.398831705979791,-6.11078434526631 +"Q9VJZ1",0.185993660907673,15.4987432864114,1.2925793188091,0.256048237653866,0.399521478397239,-6.11323607522015 +"P43332",0.0872173321883736,17.2965763641435,1.29096394536082,0.256562538122465,0.39960311682154,-6.11508190198033 +"Q9VRY5",-0.0815800607541259,16.8685365372242,-1.29080561819197,0.256612997815399,0.39960311682154,-6.11526275811755 +"Q9VD30",0.0961168982864216,21.4166878116732,1.29015870202641,0.256819269324155,0.39960311682154,-6.11600161795455 +"Q9V3G3",-0.169421788371166,14.9555065587679,-1.28919385431791,0.25712720102808,0.399709386127528,-6.11710327158699 +"Q9VXC1",-0.0739678456339803,18.3440805677569,-1.28752275488199,0.257661345880936,0.400166782988269,-6.11901039670933 +"Q9VEV7",0.736645718825852,13.0270101132532,1.28372691975171,0.258878468541453,0.401333372311022,-6.12333800575226 +"Q9VSU7",-0.0732363599268435,14.8193306898406,-1.28367949085571,0.258893710195839,0.401333372311022,-6.12339204083415 +"Q9W330",-0.0655345387891551,20.6666944212784,-1.28095110383713,0.2597719028487,0.402320830038655,-6.12649885619056 +"A1Z7K6",0.0713457620402949,15.6350146107971,1.27828761675004,0.260631871505536,0.403278257579995,-6.12952873040293 +"Q868Z9",-0.0678781108764319,20.2596157850975,-1.27730554768078,0.260949620903081,0.403395706827005,-6.13064513163012 +"Q9W0M5",0.185555551788987,13.4593622894823,1.27070047731253,0.263096038982024,0.406337215761127,-6.13814296960269 +"Q9W140",-0.275078011358703,14.0318010184826,-1.26770979632183,0.264073269999406,0.40746920847272,-6.14153171589393 +"A8WH76",-0.0653144666489105,18.9915526744406,-1.26397199305273,0.265299346242267,0.408982726000094,-6.14576158311813 +"Q9VCI0",0.263863184611747,14.9568791525102,1.25771667252437,0.267362981272795,0.411703363630753,-6.15282675625045 +"Q8SYD0",0.108099748196885,15.362198292032,1.25712837244585,0.267557821448283,0.411703363630753,-6.15349033827918 +"Q9VIM0",0.0890424719734924,18.0294751275131,1.25485444253004,0.268312159072713,0.412483577265701,-6.1560538175015 +"Q9VKY3",0.064122094955632,18.7946366701654,1.2497521481939,0.27001188876373,0.414654522635406,-6.1617974769082 +"Q9W197",0.0736295403264826,17.2962795540328,1.24825228873172,0.270513417784679,0.414654522635406,-6.16348366777867 +"Q9VG92",-0.0923428355359519,16.4556932651029,-1.24775461353505,0.270680021495035,0.414654522635406,-6.16404294843797 +"Q9W3K6",-0.0628047193619619,16.1452908151525,-1.24763914360255,0.270718690137864,0.414654522635406,-6.16417269615802 +"Q7K3W2",0.0812196211061753,17.6019382902745,1.24238459710541,0.272483713298802,0.416928730790528,-6.17007063532224 +"Q9VLP2",-0.0830452512092279,19.4741835721071,-1.24173281426666,0.272703384467905,0.416928730790528,-6.17080135941421 +"Q9VEW1",0.127051218579471,14.7268974942329,1.23989445311939,0.273323844898032,0.417398993176803,-6.1728613408666 +"B7YZN4",-0.124957060145544,15.4121695031772,-1.23933934987593,0.273511450564895,0.417398993176803,-6.17348306286139 +"P45889",0.0692922399322242,19.1745672352962,1.23418321005098,0.275259692371149,0.419682967893122,-6.17925130624787 +"Q9VVA6",-0.0778807528677845,19.2808014390295,-1.23330057877073,0.275559980888711,0.419757121572941,-6.18023750221801 +"O97418",-0.0716379821705537,21.0684393277047,-1.23216696691658,0.275946097535503,0.419961761577755,-6.18150360461675 +"Q8MLP9",-0.0628070435379549,15.0707145683299,-1.221996076046,0.279432556666354,0.424880131740637,-6.19283672050454 +"Q9VGK3",-0.102740958520737,17.1211639931119,-1.22080897349474,0.279842089581543,0.42511530548453,-6.19415634527096 +"Q9VJQ6",0.154040768379767,14.4494751688707,1.21228632361632,0.282798362200264,0.429215348635159,-6.20361102243042 +"Q9VL89",0.075462630561983,16.8861622674297,1.20981454241983,0.283661051823454,0.430133304037747,-6.20634670333896 +"A1Z8H6",-0.111517350411606,16.8352401245022,-1.20802215197343,0.284288117701643,0.430692625182871,-6.20832864305366 +"Q9V4Q8",-0.0711094395449354,16.9502446583866,-1.2066920082208,0.284754280016702,0.43100308953034,-6.20979846310532 +"P08985",-0.107040525259368,20.6596478944264,-1.2059587498666,0.28501155421427,0.43100308953034,-6.21060835863704 +"Q9VYU9",-0.165388232010574,17.774120806868,-1.20522778953965,0.285268231919361,0.43100308953034,-6.21141546013217 +"O18404",-0.0626426002977993,23.0567332646569,-1.19837859804254,0.287683531109328,0.434258941077249,-6.21896564052619 +"Q9VLM8",0.079136643051779,16.6465141130997,1.19167680178513,0.290064745690498,0.437457500733952,-6.22633137711583 +"Q9V3F3",0.107410182878574,14.5823137364214,1.18968945920317,0.290774282207635,0.438131438773564,-6.22851139402484 +"Q95RB1",-0.102487638933473,15.9681894678172,-1.18520143974737,0.292382392106688,0.440156886312235,-6.23342739755995 +"Q9VW40",0.101172258950802,14.6119324423198,1.18375069416656,0.292903922473885,0.440544402783084,-6.23501436520935 +"P08928",-0.070845719634697,22.7854653788532,-1.1823881545511,0.293394506130633,0.440884717320627,-6.23650389640008 +"Q9W1C8",-0.13853288501398,15.9372277985995,-1.17904936214274,0.294599768247029,0.442297401832623,-6.24014997663442 +"P08120",-0.0772158517347741,18.1202240853255,-1.17732662849189,0.295223392812828,0.442699051849359,-6.24202909256227 +"Q9VF82",0.125050866871648,14.9301355930949,1.17684457139895,0.295398108338331,0.442699051849359,-6.24255464339039 +"Q9VMI3",0.0727553847386595,20.0503258321321,1.17317261685733,0.296732012140669,0.444298919435041,-6.24655408207601 +"Q7YTY6",-0.101758526043652,18.419414835587,-1.17017657900818,0.297824377823791,0.445534584941779,-6.24981230245815 +"Q9VQ62",-0.0904438211413741,19.7119993723002,-1.16743390119298,0.298827525905411,0.446378402657539,-6.25279101770229 +"A0A0B4K692",0.100870802374981,15.8048582191508,1.16583875814704,0.299412348041973,0.446378402657539,-6.25452168692591 +"Q9W125",-0.102343919572537,21.3281265328002,-1.16558186451483,0.299506627833167,0.446378402657539,-6.25480028586101 +"Q9VRJ4",-0.058641601014255,20.7455990992807,-1.16553912203325,0.29952231687269,0.446378402657539,-6.25484663645896 +"Q9VEN9",-0.0812540252048617,14.9482431568506,-1.16498302307216,0.299726505381561,0.446378402657539,-6.25544959394779 +"Q9VAC4",0.0603441334717054,19.40249812405,1.16416485941092,0.300027145230751,0.446427545267523,-6.25633641232023 +"Q9W3N9",-0.0613814785386566,20.2855400103576,-1.16159984558489,0.3009714257825,0.447433456510882,-6.25911445171203 +"O97422",0.0643695563129416,15.3166125533581,1.15797062692523,0.302312017593654,0.44863261616221,-6.26303932607587 +"Q9VK58",0.785692233693117,13.2688386967505,1.15759560947449,0.302450848181613,0.44863261616221,-6.26344450894837 +"Q9VHD2",0.0826767446650081,16.7071185802869,1.15669757723098,0.302783528872415,0.44863261616221,-6.26441448233722 +"Q9VXQ5",0.0689061022432043,20.3869910247546,1.15650769816819,0.30285391234931,0.44863261616221,-6.26461951936528 +"P92177",-0.0612158394464721,24.237400309264,-1.15372585211749,0.303886747901306,0.449536569959922,-6.26762130588079 +"P20348",-0.156612835506134,17.4554938600301,-1.15341286787761,0.304003148030451,0.449536569959922,-6.26795878517782 +"Q960W6",0.13084250015859,13.9452372547627,1.15166249251735,0.304654852369465,0.450025686132929,-6.26984521433521 +"Q7JV09",0.0668184669917533,15.2094373824302,1.15047902949257,0.305096187102829,0.450025686132929,-6.27111976504107 +"Q7KJ08",0.102028208808129,14.5651068067544,1.15035274098948,0.30514331595704,0.450025686132929,-6.27125573061512 +"Q86BL4",-0.0853271911680373,14.995422186195,-1.14801338311696,0.306017499217458,0.450916244429965,-6.27377284409934 +"Q9W227",-0.0577014126483633,21.9554791799488,-1.14204433618201,0.308258139057134,0.453816924931421,-6.28018248310913 +"Q9VZ49",-0.0616271314644052,18.9159265061339,-1.14116565168219,0.30858920366735,0.453903696399594,-6.28112444572904 +"Q9VVB4",-0.121691020118526,16.1124976802282,-1.13939232100213,0.309258307560591,0.454318240235706,-6.28302424195833 +"Q9VY41",0.114925618111789,16.4692338448361,1.13897546552776,0.309415779920721,0.454318240235706,-6.28347058447438 +"Q9VMG0",0.458031564954329,14.8120613423521,1.13775872373142,0.309875825894445,0.454593559887365,-6.28477286894404 +"Q9VND8",0.0586017684017079,18.3917064232139,1.13658589471608,0.310319842157439,0.454844900455719,-6.28602741097658 +"Q9VEC2",-0.0660325931464474,16.77404593071,-1.13582933959634,0.310606562004739,0.454865448133367,-6.28683628934215 +"Q9VBU9",0.057053756695673,20.7407585379043,1.13505033903952,0.310902033329778,0.454898764556201,-6.28766884770193 +"Q9VU45",0.100065879556842,17.9214600150248,1.13333410978429,0.311553869152065,0.455452983125017,-6.2895019316627 +"Q9VMQ9",0.0699349440365289,22.1287101994739,1.12394424896612,0.315141632598489,0.460152082891235,-6.29950322367201 +"P56538",-0.0675977444377551,16.9682121595222,-1.12347978336099,0.315320042412879,0.460152082891235,-6.29999670185422 +"Q8MT58",0.057486470933398,21.56472233517,1.1200086412827,0.316656192530675,0.461698014983537,-6.30368096728292 +"Q9W1G0",-0.0553250401265331,21.7256350361726,-1.11397520193125,0.318990511225983,0.464695347358026,-6.31006924785172 +"Q9VF39",-0.124117739981667,15.9660109032261,-1.11004600989557,0.320518819795627,0.466514303158033,-6.31421880566402 +"Q6IGN6",-0.0776269469027291,16.7770264650711,-1.10863655613207,0.32106860793903,0.466907095067395,-6.31570523593174 +"Q94533",-0.0640766123490302,15.1564004490775,-1.10588076401851,0.322145953096521,0.468065722791809,-6.31860836171408 +"A0A0B4KHJ9",-0.101497140108627,24.4843104421348,-1.10403599899435,0.322868910542178,0.468454957439103,-6.32054940174087 +"P22769",0.0552090095461679,20.194284053923,1.10376421891538,0.322975540200821,0.468454957439103,-6.32083520574587 +"Q9VLT3",0.0560804625816971,19.393501281217,1.09907065696907,0.324821867502843,0.470723609899863,-6.32576446222692 +"Q9Y0V3",0.0746323199954588,15.1971074303697,1.09761370823716,0.325396866429852,0.47114754618489,-6.32729206921317 +"Q9W3K9",0.0631893206486396,19.4320509338185,1.09607978760585,0.326003203029469,0.471616082092936,-6.32889909410376 +"Q9W1V3",0.0702307830710698,16.2594786437858,1.09515427194399,0.326369522577444,0.471736883586807,-6.32986807870965 +"Q9VRL1",-0.0675891447944004,20.5575886287451,-1.09216746554186,0.327554151059626,0.473039241530266,-6.33299187504367 +"Q9VVU2",0.0613284782671144,19.9874046544914,1.0837698164427,0.330904909201676,0.477464868986501,-6.34174759350359 +"Q9VAY0",-0.188034916047069,13.9787601336901,-1.08220509057707,0.331532533815866,0.477957015043098,-6.34337459467234 +"Q8IPW2",-0.0834885294895038,17.3526785485672,-1.08132770424456,0.331884912612078,0.478051843037087,-6.34428628673001 +"Q24090",0.0688402561390742,15.9629556318968,1.08048550008482,0.332223466974073,0.478126611658976,-6.34516100549294 +"Q9VHA8",-0.0748220813387022,18.5666351043714,-1.07944396755346,0.33264256268839,0.478317064279513,-6.34624218440729 +"Q0KI98",0.0665111541582561,16.5380292015539,1.07349426763679,0.335045415902807,0.48135723835132,-6.3524063704409 +"A1Z7S3",-0.0615460016166018,19.9859730766987,-1.07123125060596,0.335963294571466,0.482260563980383,-6.35474558830728 +"Q5LJT3",-0.103861377846144,16.9927593022263,-1.06486528267841,0.338556982147226,0.48556581790333,-6.36130990367467 +"Q9VB10",0.0541503113541708,21.0255281175297,1.06361019517651,0.339070375110828,0.485642316255665,-6.36260129647315 +"Q9VX98",-0.0599594484540731,18.1137514778626,-1.06282872336095,0.339390374408277,0.485642316255665,-6.36340490587782 +"O18335",-0.0604984815376213,21.7140245713336,-1.06260074300995,0.339483777430518,0.485642316255665,-6.36363927677914 +"Q9VXE5",-0.0808286343872577,14.5630252015581,-1.05631297267689,0.342068591928006,0.488621687431874,-6.37009120997004 +"Q7K568",0.162087419050529,16.2232187136531,1.05610989210545,0.342152356666924,0.488621687431874,-6.37029920244898 +"Q9VGV9",-0.102125614250141,16.1251597277609,-1.05390511688118,0.343062895152445,0.489502916265423,-6.37255572703663 +"Q9VRG8",0.121389638765798,16.1168292647578,1.04465813764905,0.34690441161683,0.494234292048047,-6.38198811645538 +"Q9W4A0",-0.0869712338936974,17.0892049236562,-1.04449758024258,0.346971436443803,0.494234292048047,-6.38215143968729 +"O97111",0.0819978012246825,14.8611777540717,1.03964518633027,0.349002296198704,0.49650558316027,-6.38708007354316 +"Q7K4Z4",-0.0901145310567024,14.9303072831323,-1.03926629068917,0.349161300387888,0.49650558316027,-6.3874643220426 +"Q9VSL4",-0.0536655082804138,20.958096067238,-1.03674890363736,0.350219294746925,0.497474140557786,-6.39001505793273 +"P32234",-0.0593736941599445,16.7522886848008,-1.03605904641795,0.350509700624831,0.497474140557786,-6.39071338056278 +"Q9VFU7",0.0890717230561737,14.8684957591557,1.03530541619829,0.350827187015354,0.497474140557786,-6.39147592709556 +"Q9W1Y1",0.0664415342565015,17.8918719132234,1.03481146469205,0.351035409734121,0.497474140557786,-6.39197553457326 +"Q7K519",0.0835001908077668,15.6239444800613,1.03180404233995,0.352305443055859,0.498509655802773,-6.39501417411829 +"Q9VKR0",-0.291875860390096,13.0267831977546,-1.03166598223584,0.352363839443327,0.498509655802773,-6.39515353432249 +"Q9VS84",0.100342259593706,17.5596299509072,1.02646403067382,0.354570148307202,0.501070647301611,-6.40039593560565 +"Q24372",0.0793219209914326,16.794582814353,1.0259828077921,0.354774840805278,0.501070647301611,-6.40088005783664 +"P45888",0.0682143138484044,17.1804688105783,1.02446213019594,0.355422333196494,0.501560449891499,-6.40240895663513 +"P05389",0.0591759760136839,20.4734790292175,1.02268632360595,0.356179724263633,0.502204378758867,-6.40419255162166 +"Q9VSL6",0.102608507833315,14.540800877853,1.01991967092404,0.357362438267468,0.503446407964642,-6.40696743791253 +"Q9W3N6",0.0601269854719462,16.132939995292,1.01772523866948,0.358302894079328,0.504265924946892,-6.40916501216403 +"O46098",-0.0572047351002425,18.0560394366621,-1.01709396899763,0.35857382079866,0.504265924946892,-6.40979662912656 +"Q7JR58",-0.0610091167307445,22.97407195293,-1.01644828940742,0.35885111085849,0.504265924946892,-6.41044240629658 +"Q9V429",-0.0604373256783184,22.3548215591857,-1.01305518740872,0.360311269790931,0.505485286884314,-6.41383173031303 +"Q8SYQ4",-0.0509045853264674,21.0635410494636,-1.01302346694881,0.360324943708303,0.505485286884314,-6.41386338138056 +"Q9VJ31",0.0635155093706725,17.1220796371379,1.01085184131124,0.361262118864169,0.506374129634819,-6.41602875197302 +"Q9VZG0",0.0539860003404939,21.8425700523756,1.00835911711664,0.362340394843665,0.507459092022866,-6.41851063343103 +"Q9W4C2",-0.139992276933599,15.8109298285724,-1.00450400291451,0.364013327889085,0.509374354797813,-6.42234124161321 +"Q9VFV9",-0.0609820954924665,21.4307333125232,-1.00105238342521,0.365516662197367,0.5110492812617,-6.4257629129802 +"M9PGG8",0.253742324682978,18.7301432389973,0.997843598857124,0.366918896338488,0.512343985521273,-6.4289370409617 +"Q9VCY3",0.0820762909412167,17.9273434235042,0.99752814514984,0.367056992025133,0.512343985521273,-6.42924873202827 +"B7Z0Q1",0.0678892275523211,17.7546061308429,0.996588824006144,0.36746845483407,0.512489450387315,-6.43017647154339 +"Q9VV76",-0.0622048001643059,16.4112777472696,-0.995479403585604,0.367954925351529,0.51268055044799,-6.43127148400166 +"Q7KUC2",0.070468966910564,19.3951141091786,0.99487494018289,0.368220203499216,0.51268055044799,-6.43186776461811 +"O17452",0.0601366375924179,19.9323935408099,0.993605371065948,0.368777894145526,0.512690400499118,-6.43311938228569 +"Q0E8C8",-0.0600655361061726,17.5123381667504,-0.993459504937354,0.368842014747567,0.512690400499118,-6.43326311946013 +"Q9VII1",-0.0584046307835955,19.3991943371638,-0.99035220606233,0.370210150785706,0.513782690274751,-6.43632180757932 +"Q8T9B6",0.102921966679983,19.627602495855,0.988295921131423,0.371117854059612,0.513782690274751,-6.43834249319101 +"Q24400",-0.0664376369986961,21.2638582149618,-0.987786885951229,0.37134284307474,0.513782690274751,-6.43884229280512 +"Q9VXI1",-0.0530796176844177,19.864643888576,-0.987759654446204,0.371354882359517,0.513782690274751,-6.43886902550673 +"Q9VHF9",0.0823446901287248,17.1589091507794,0.987600193667868,0.371425387882254,0.513782690274751,-6.43902555576403 +"Q9VNX4",0.0560407391977478,20.6880346988357,0.987276187273311,0.371568681539902,0.513782690274751,-6.43934355685561 +"Q9W306",-0.106561514042369,14.8648009893189,-0.986154772495769,0.37206498909179,0.513782690274751,-6.44044366060142 +"Q9VRG6",-0.0674723917559383,16.4339111820414,-0.9860937308422,0.372092020294904,0.513782690274751,-6.44050351879374 +"Q9VGW7",0.0826191775901517,16.5651883550051,0.983683841711146,0.373160503364118,0.51471112387511,-6.44286474859241 +"Q95SK3",-0.0515106744064155,17.2477313853025,-0.983126433679063,0.373408006905312,0.51471112387511,-6.44341036301143 +"Q9VD58",-0.0511704553129952,22.7136402848982,-0.982491386616625,0.373690150487265,0.51471112387511,-6.44403172677364 +"Q9VLS5",0.0555365833475694,14.7115886292406,0.979259914740629,0.375128598919246,0.515983486581311,-6.44718948750906 +"Q9VC05",0.140636483010823,14.8468088441343,0.979026685735993,0.375232595457512,0.515983486581311,-6.44741713196457 +"Q9VMM6",-0.0492322242056176,18.4504429726137,-0.970875869035249,0.378882074449533,0.520572734910891,-6.45535030582675 +"Q9VXA3",-0.0510280535557293,17.9288913441568,-0.967466999171297,0.380417057916753,0.52225156593016,-6.45865512911962 +"Q9VUW4",0.0622988824354493,14.5917900432735,0.962142825011729,0.382824747528717,0.525124735919326,-6.46380132468564 +"P08646",0.068602782412075,18.897380729285,0.952805228869862,0.387077646878026,0.530522198021814,-6.47278088744516 +"Q9VSL9",0.124256452631668,14.5212378534186,0.950863632875628,0.387966814427966,0.531304307443225,-6.47464064618402 +"Q9V5C6",0.0491548979652841,20.6709914559811,0.949187288843498,0.388735852290502,0.531920756046396,-6.47624427589233 +"Q9VC31",-0.0706859057403282,17.7643185101704,-0.946894095564745,0.389789893987015,0.532925855057657,-6.47843490282354 +"Q9VYS5",-0.0726877974056706,14.2363906760859,-0.938788822114406,0.39353410539238,0.537604330708017,-6.48614886122669 +"Q9VHJ7",0.0551982370733182,14.7779109979511,0.937176749803142,0.394282279011577,0.538185631253118,-6.48767772671517 +"Q8IRH5",-0.125297911719361,14.3957555925405,-0.934625935697403,0.395468490704035,0.539363403511309,-6.49009321816106 +"Q9NBD7",0.156914572767171,12.9359279863068,0.933679244181701,0.395909469795922,0.539523689231697,-6.4909885425438 +"O18332",0.0523730694155624,20.5818180417683,0.932044449258946,0.396671914171891,0.540121430888747,-6.49253317251096 +"Q9VND7",-0.0935622131555895,14.0690450586603,-0.930112640407404,0.397574415536155,0.540908748054083,-6.4943560445597 +"Q9VXH7",-0.101793679815049,18.1585578539352,-0.92786793296695,0.398625184892376,0.541896339364698,-6.49647091050317 +"Q9VDV3",0.0500347594387112,17.5960213767653,0.926688152267808,0.399178351938908,0.542206425923533,-6.49758104086046 +"Q9W445",-0.0495191222607083,16.3602533960375,-0.925355717412723,0.399803840480029,0.542462034066869,-6.49883364460086 +"P20351",-0.0889167813384599,14.1816942205644,-0.924902092340259,0.400016967567295,0.542462034066869,-6.49925980814195 +"Q9VVE2",0.0662169437059639,18.4588823341834,0.919785801557967,0.402427115352863,0.54524482541778,-6.50405638248543 +"P05031",0.132553032425145,13.2824973500864,0.919159828218982,0.402722796711454,0.54524482541778,-6.50464197612738 +"Q7K2N0",-0.0954893546482118,15.415306482241,-0.917749331988284,0.403389692261782,0.545704790504989,-6.50596047356921 +"Q9W2E8",-0.0626339262328166,19.3498215527389,-0.915238911930992,0.40457883984353,0.546869939107786,-6.50830367957283 +"B7Z0N0",0.0860660538304074,13.2000195299843,0.913201662411715,0.405545923331869,0.547198404595017,-6.51020195521122 +"Q8IQ70",-0.0455764461375843,17.9176604917006,-0.912775646762388,0.405748387681008,0.547198404595017,-6.51059853773681 +"Q9VIG0",-0.0491745083272832,17.4361151760899,-0.912654429594436,0.405806011081556,0.547198404595017,-6.51071135656605 +"Q7K159",-0.0907964719261773,14.5376711469235,-0.907967293870114,0.408039188246959,0.549411366391459,-6.51506574132269 +"Q9VG97",0.0454226996694373,20.1946759017754,0.907827539008841,0.408105925035382,0.549411366391459,-6.51519533443989 +"Q8MRM0",0.0660479818486088,18.6226058461017,0.907091092348014,0.408457742896578,0.54944154447701,-6.51587800291365 +"Q24297",0.0653677408705704,17.0108369712732,0.904542843820008,0.40967697363149,0.550610451905485,-6.51823717768751 +"P07668",-0.0839226347405777,14.612902046805,-0.903896009772946,0.409986919224588,0.550610451905485,-6.51883527868827 +"Q9W3J1",0.0618975146313474,15.5938781443108,0.898273504499882,0.412688964731921,0.553793397564638,-6.524021523399 +"Q7K0W4",0.0515417761179506,21.5443497652422,0.895998608242259,0.413786250715403,0.554819506586247,-6.52611343491216 +"Q7JR49",-0.068139545579637,18.8443975144678,-0.892159412927774,0.415643329330709,0.556861906284034,-6.5296353261421 +"A1Z7G2",0.0647938216747193,19.5915183203574,0.889396168969116,0.416984043373712,0.558209778769945,-6.53216356917589 +"Q9VMQ7",0.0562498774200737,15.8896038145981,0.882918629467249,0.420140343388777,0.561688349289367,-6.53806838947078 +"E1JIY8",-0.0552323743203704,16.3552640864339,-0.88234235499414,0.420422055799472,0.561688349289367,-6.53859222373486 +"A1ZA83",0.0510837785534974,17.0947526094591,0.881993278478621,0.420592774737661,0.561688349289367,-6.53890941616635 +"Q9VN88",-0.0674251050786232,17.1493610456176,-0.878974484834827,0.422071424509899,0.563136625641291,-6.5416487401688 +"Q8SXG7",0.0462651315154758,13.942357140077,0.878401650305787,0.422352469230969,0.563136625641291,-6.54216778610887 +"Q7JWU9",-0.152528634635761,15.6728808040347,-0.875332003293318,0.423861013661594,0.564168713156728,-6.54494506944173 +"Q8ING0",0.0657659441368192,14.6172340909519,0.874787693600028,0.424128950482992,0.564168713156728,-6.54543681004952 +"Q9VLG9",0.0918319280607669,15.9186989520985,0.874762760924108,0.424141226797684,0.564168713156728,-6.54545932948985 +"Q9V455",-0.0509885764261107,19.3192501367794,-0.873556166517146,0.424735661770544,0.564412944334483,-6.54654858713782 +"O97454",0.103189378268578,14.1970737445568,0.872440556275758,0.425285854880079,0.564412944334483,-6.54755474808027 +"P16378",0.0544146746152094,20.3358288767904,0.872330888563537,0.425339970640555,0.564412944334483,-6.54765360675109 +"P55828",-0.0872362185556383,19.9215067090555,-0.867780391189242,0.427590187731474,0.56694788007639,-6.55174771407711 +"Q9NHA8",0.0667914911752554,16.1536052126657,0.863957280477976,0.429487907207236,0.56901177857162,-6.55517544728444 +"P53501",-0.0434788178704295,24.4313677444891,-0.861083161798069,0.430918892035657,0.570454533266251,-6.5577451223052 +"Q9VTB0",0.0986722757840646,17.1101181464503,0.858789537218203,0.432063521631091,0.571275250555934,-6.55979133914324 +"Q9VG73",-0.0444471517355787,18.1459573464589,-0.858468665751529,0.432223840648435,0.571275250555934,-6.56007728315085 +"Q7KTJ7",0.0659356813354286,22.0941616458932,0.851458263213454,0.435738050286568,0.575464028406964,-6.5663051743241 +"Q9W1F2",0.133448587662928,13.6417669717452,0.837638477443188,0.442730456749665,0.584236077419652,-6.57847280003459 +"Q95RF6",-0.0608244619919898,17.2272495721736,-0.833964384247892,0.444603900733278,0.586244511006409,-6.58168297533006 +"Q9VXK7",-0.046417676196068,17.9512925140301,-0.831107670433742,0.446064755143485,0.587706170283833,-6.58417176473956 +"Q9VYT6",0.0599967673790296,16.3344448240027,0.82640990529708,0.448475062878462,0.590415473465884,-6.58825071309974 +"Q9VXG4",0.0576587812281524,19.8963939995453,0.824600836266345,0.449405899770625,0.5911743224112,-6.58981689619779 +"Q9VPQ2",-0.070872729631219,16.4436539714501,-0.822999600350465,0.450231026727647,0.591793028039177,-6.59120101697962 +"O61604",-0.044834352187344,20.93048030728,-0.821675218398064,0.450914360616493,0.592054653941647,-6.59234430715947 +"Q9VHM3",-0.0857278278246021,14.7053168019744,-0.821238301749332,0.451139967122202,0.592054653941647,-6.59272117979805 +"Q9VZS3",-0.0443548362322232,18.4294596640089,-0.815635017017734,0.454040893748434,0.595393247462569,-6.59754113341045 +"Q9VJC0",-0.0430267044371639,16.5292103234174,-0.810523391612218,0.456699594436479,0.598409209363744,-6.60191657130666 +"Q8IH23",-0.044047242100028,18.2151402529189,-0.807976632331749,0.45802862024693,0.599507503017984,-6.60408881769999 +"Q9VHC7",-0.0418392712416313,20.0469484363128,-0.807540258337566,0.458256634501157,0.599507503017984,-6.60446050397567 +"Q9VLT8",0.0491097235681615,14.0091600230144,0.802009325646141,0.461154075177263,0.602825233068711,-6.60915839310978 +"Q9VHG4",0.06809427200972,18.3790212628086,0.797052416795225,0.463762485078436,0.605760238927824,-6.61334793723605 +"Q9VZG2",-0.0853270021063643,22.2152858039947,-0.793357414961197,0.465714035951502,0.607833342697266,-6.61645808848394 +"Q9VB05",0.0432088541145106,20.1243690682082,0.792283855892638,0.466282195576722,0.608099063504278,-6.61735966046491 +"Q7KND8",-0.0400660909988702,15.4800905765159,-0.790971724145819,0.466977317460072,0.60852969670193,-6.61846032140985 +"Q9VMX3",-0.146852137643195,12.458636615818,-0.790283825033157,0.467342051244108,0.60852969670193,-6.61903679870467 +"Q7KUK9",0.0662275069033242,18.4769042833279,0.789126028638537,0.467956410585408,0.608854362602544,-6.62000619763752 +"Q9VEY5",-0.0506029062197015,20.8496942434167,-0.786245670958677,0.469487418312315,0.610370236745863,-6.62241314878586 +"Q24050",-0.0475103198804536,16.6807828779033,-0.780632906241292,0.472481480770958,0.613778031547451,-6.62708404115668 +"Q9VZJ8",0.159423850319529,14.797435306341,0.779879830510779,0.472884274408631,0.613778031547451,-6.62770878952198 +"Q9I7J0",0.0498834710833052,21.0400630479804,0.778648477624065,0.473543429032478,0.613778031547451,-6.62872931583808 +"P53997",-0.108359626033181,17.4320899270922,-0.778579204919828,0.473580531535713,0.613778031547451,-6.62878669113988 +"A1Z6X6",0.0591517288661514,18.5367030802985,0.773974065628767,0.476051867413721,0.616501952520253,-6.63259208901632 +"Q9VYS2",0.0825960279321034,15.0200994340383,0.771568753563816,0.477346446362181,0.617698892577283,-6.63457276209544 +"Q9VY24",-0.0516383250769614,17.8991880936597,-0.768082405924374,0.479227451775411,0.619652239970066,-6.63743515723575 +"Q9VUV6",0.0641632846419427,14.7805573257365,0.764527429314239,0.481151081647314,0.621657632988164,-6.64034355114268 +"Q9VUK8",-0.0399666327289339,20.7261664260997,-0.763394726574489,0.481765183884718,0.62196929312671,-6.64126803604541 +"Q59E04",-0.0387699917094118,16.5371930701406,-0.755946607663214,0.485817501379199,0.626189290194424,-6.64732042039454 +"Q9V8M5",0.0409580433602699,20.1035147729289,0.755340397669972,0.486148413192136,0.626189290194424,-6.64781099259714 +"E1JJH5",-0.0381312767885404,21.2474448898982,-0.75531890141517,0.486160150360779,0.626189290194424,-6.64782838268137 +"Q9VZ20",-0.0376982226924625,18.7633064902076,-0.753730429780792,0.487028041912759,0.626823128017347,-6.64911235701816 +"Q7K8X7",-0.0462341717958914,19.4316567353566,-0.751989025053439,0.487980784051666,0.627229088414165,-6.65051751810259 +"Q9VEK8",0.0382488958336538,18.9140374916624,0.749895331325698,0.489128056754424,0.627229088414165,-6.65220357450572 +"Q8IMT6",0.0716765555851548,15.9770941519288,0.749822081210871,0.489168230677413,0.627229088414165,-6.65226249627111 +"Q9V3F8",-0.0555507370891632,18.6795673143646,-0.749796420241652,0.489182304965407,0.627229088414165,-6.65228313666746 +"A1ZBK7",-0.0543947371064775,17.577986362007,-0.749693116002012,0.489238967274309,0.627229088414165,-6.65236622381115 +"Q9V436",0.0422062412473032,19.1602287228992,0.748380073325162,0.489959584504085,0.627229088414165,-6.65342151555905 +"P91941",-0.0667486553385892,23.0504977803497,-0.748350687350645,0.489975720745598,0.627229088414165,-6.65344511644243 +"Q9W073",0.0784834152106466,14.6024824609295,0.743530676899181,0.49262765687769,0.63014028502453,-6.65730637136017 +"Q9VHX2",0.05188439714499,14.7478485779706,0.737435845773332,0.495995782886597,0.633962425942409,-6.66216071022113 +"O18373",0.0421276827520032,19.6396111265079,0.734841735640237,0.497434346347097,0.635216685886492,-6.66421725474584 +"P55830",0.0419436159715367,21.9743230851369,0.734127507529969,0.497830945810567,0.635216685886492,-6.66478246924682 +"M9PF16",0.0381859239277809,20.8889735592892,0.733608005017034,0.49811955943617,0.635216685886492,-6.6651933113283 +"Q9VA97",-0.0839308228727127,18.5498956265476,-0.731175868840272,0.49947234335173,0.636455209099072,-6.6671136682806 +"P92181",0.040914396976941,16.5263930774486,0.725861481404378,0.502437392475809,0.639744710419579,-6.67129214594965 +"Q95WY3",0.072655224553527,17.0783488544868,0.723848443456517,0.503563789182581,0.640689855344428,-6.67286857442785 +"Q9V9U7",-0.0372948324947018,17.7958019507102,-0.722060131876834,0.504565943483256,0.641364432995382,-6.67426608853059 +"Q7K2L7",-0.0644137568637504,18.4244867608902,-0.721419973469408,0.504925026344124,0.641364432995382,-6.674765683181 +"Q9VHN4",-0.0885513656739256,14.6527595558015,-0.720673523345533,0.505343959932823,0.641364432995382,-6.67534778337887 +"Q9VFP0",-0.0622844012674975,16.6206086138872,-0.719575561314955,0.505960621512782,0.641364432995382,-6.67620312598016 +"Q9VRD4",-0.0373179141972386,20.1706951815548,-0.719476040222866,0.506016543058707,0.641364432995382,-6.67628060410898 +"Q8MLS1",-0.044136639619893,18.5092196094899,-0.715414774488321,0.508302324619039,0.643772420246436,-6.6794350193868 +"Q9VCU0",-0.0525623543846088,17.2710237473489,-0.71381820396457,0.509202906972106,0.644423709278811,-6.68067116818113 +"Q9W1F7",0.0361892150112624,20.3100506843816,0.711892299748437,0.51029075279712,0.644831156611726,-6.68215935421976 +"Q8MKK0",-0.109179443153891,15.6928529869952,-0.711879412588269,0.510298037606401,0.644831156611726,-6.68216930151786 +"Q9W3N7",-0.154393580965571,17.4714821349743,-0.710736136544953,0.510944595840935,0.64515941397629,-6.68305119363731 +"Q7KTH8",0.0366832541414901,17.6576956391133,0.707489551772269,0.512783777891096,0.646991937611459,-6.68554930264911 +"Q7PLI0",0.0505964304681825,17.8777282221976,0.704234464442356,0.514632430850388,0.648833631639038,-6.68804469901167 +"Q8SXC2",0.118066429527831,14.6065963015111,0.70284425713537,0.515423386364484,0.648961173589479,-6.68910762102574 +"Q9XY35",-0.0549162429945405,19.0889692447212,-0.702689085442721,0.515511723624736,0.648961173589479,-6.6892261566368 +"Q7K1H0",-0.0401829474416875,16.3957463772192,-0.701917134387116,0.515951342588699,0.649024765790309,-6.68981553545052 +"Q9VVK5",0.0497959931844409,15.7261702725707,0.701206448099756,0.51635630307983,0.64904469746583,-6.69035767600995 +"Q9VR89",-0.0859537433697017,13.9014748751905,-0.698816119897596,0.517719976516089,0.650249966749993,-6.69217785483445 +"Q9V3Y2",-0.0480219614118376,17.852976153631,-0.698159791928943,0.518094847608358,0.650249966749993,-6.69267675243526 +"A1Z729",0.0617512935672959,16.6529777964116,0.694041862937352,0.520451167847068,0.652716201480383,-6.6957982551068 +"Q95T12",-0.0418252809317909,15.9332510849615,-0.691401817596513,0.521965732271893,0.654123847805798,-6.69779158960071 +"A0A6H2EGA2",0.0553136655309654,15.9117402438874,0.689184076656352,0.523240379890358,0.654430044224963,-6.69946129026269 +"Q7JXF7",0.0417647874148805,17.8972757071259,0.688953459417069,0.523373050566192,0.654430044224963,-6.69963466740186 +"Q9XYW6",0.0448770556658662,16.6662329911994,0.688929044057824,0.523387097719485,0.654430044224963,-6.6996530200059 +"P04388",0.105558418565955,16.575146732895,0.684443308867397,0.525972338217561,0.657169932694301,-6.70301586505032 +"P02299",0.046400065007461,22.0417540203851,0.682901938805667,0.526862693040827,0.657789649694685,-6.70416725011181 +"Q9VTZ5",-0.0499321891304199,17.9839163609316,-0.680442630670029,0.5282854262913,0.658647680535589,-6.70599992645924 +"Q9VIK0",0.126690281708941,12.7293204442971,0.680348928076504,0.528339686185022,0.658647680535589,-6.70606964658205 +"Q9VDK7",-0.0355936699971267,17.8458748078514,-0.677723075679477,0.529861777931682,0.660051863771505,-6.70802023166734 +"Q9VAY2",-0.0353460429921171,21.1304138237814,-0.672973428024092,0.532622547845266,0.662995828213361,-6.71153272204212 +"Q0KI15",0.0551887796854462,15.6228153729887,0.669594553657168,0.534592499016942,0.664867130191072,-6.71401911699442 +"Q9VK18",-0.0460356608374646,14.7414979408297,-0.669028377104421,0.534923074770035,0.664867130191072,-6.71443473779088 +"Q9VDC3",0.0387170004626611,19.298198517407,0.667577944458451,0.535770577273292,0.665424663359532,-6.7154981534365 +"Q08012",-0.0502802086860044,19.0514802754149,-0.665770147440004,0.536828164577553,0.666242097109641,-6.71682091160292 +"P19107",-0.0339681742993001,23.994532388066,-0.664006779699356,0.537861120130254,0.667027768310233,-6.71810830592914 +"Q9W0R0",-0.0562860675826133,16.7924105506465,-0.659553928095072,0.540475506628741,0.66914285667027,-6.72134665281569 +"Q7JWD6",-0.037412676346289,20.485379286059,-0.659483444333921,0.54051695818901,0.66914285667027,-6.7213977671699 +"Q9VF77",0.0368013705364199,15.7495647405103,0.658717577404331,0.540967503055104,0.66914285667027,-6.72195287676648 +"Q9VB17",-0.0334589591168406,15.5397730670623,-0.657970118247015,0.541407462382854,0.66914285667027,-6.72249412830277 +"Q9NHE5",0.0597049454729035,15.5753940176172,0.657689911337748,0.541572455938168,0.66914285667027,-6.72269690086383 +"Q95RB2",-0.0861175762435096,24.2643291181802,-0.65273901159797,0.544493247414486,0.672253691108336,-6.72626779708651 +"A1ZBM2",0.0694885147779196,18.6528792831605,0.649830298060563,0.546214153023795,0.673879591156575,-6.72835526955035 +"Q9V3Q4",0.0733398534500402,16.1164333689314,0.648060361855294,0.547263088270934,0.674674672014722,-6.72962168173278 +"Q9VU92",0.0487517835965363,17.7764504375394,0.645632213307039,0.548704286957723,0.675951809930194,-6.73135436242964 +"Q9VBU0",-0.110799617595481,14.0829493428933,-0.641748057548847,0.551014917628529,0.678297330335341,-6.73411471463948 +"Q9W078",-0.054693832877394,19.4824423579381,-0.63895638865433,0.552679616058827,0.679844837452893,-6.7360900530361 +"P25455",0.05188652212561,15.7881340367782,0.636771493228774,0.553984803741219,0.680948159646539,-6.73763100951641 +"Q9VKV9",0.0600022114412653,15.6263266473769,0.635993200003354,0.554450221819228,0.681018387330244,-6.73817885136839 +"O76521",-0.0676818783700259,16.1012048333718,-0.634888548273698,0.555111243523412,0.681328590284806,-6.73895545099445 +"Q9VDC0",-0.0378014600578709,17.7082531929967,-0.633895749988245,0.555705774329164,0.68155678792724,-6.7396524463297 +"Q9V3Z4",0.0404478494261333,18.7588249559123,0.629691412916436,0.55822814634804,0.684147353496349,-6.74259392859838 +"Q9V3Y0",-0.0519436340739983,16.4416478967949,-0.628577269203196,0.558897826057926,0.684465179048914,-6.74337065268466 +"Q9W3B3",-0.0545889011558298,15.7286374032781,-0.627508580998332,0.559540676969217,0.684749705931514,-6.74411459722673 +"Q9VIB5",-0.104936954598664,14.3026877707133,-0.625229214782805,0.56091340221626,0.685926359894957,-6.74569775850632 +"Q95SN8",-0.0393062915940234,17.6299187718144,-0.622387713265228,0.562627737087292,0.6875187292759,-6.74766453767857 +"Q95U34",-0.0338506984381084,19.5023365378388,-0.618624566429767,0.564903351488745,0.689794136371322,-6.75025756837392 +"O97479",-0.0340994781139194,18.0480753465635,-0.617856819879613,0.565368347007826,0.689856915002965,-6.750784953791 +"P54185",-0.0352012113960782,17.6651867856448,-0.615619706321405,0.566724694146947,0.691006425319523,-6.75231851657047 +"Q9VL16",-0.0376572257092747,20.8434688890081,-0.613206982600137,0.568189863965703,0.692286846672603,-6.75396716438892 +"P38979",0.0304411997537279,22.0359031110384,0.606309174327265,0.5723921063861,0.696897834636507,-6.75865011725006 +"A1Z7K8",0.0308243361601122,17.6603606787248,0.603071054822763,0.574371654803961,0.698797899498911,-6.76083289655761 +"Q9VEH2",-0.0497911253206844,15.8056657790796,-0.601483478767299,0.575343774285055,0.699470419466087,-6.76189941243046 +"Q8SY67",-0.103496902472568,15.9828131164238,-0.598346527357171,0.577267695679969,0.701298263943328,-6.76399970420514 +"Q9NK57",-0.0534508527682611,15.5895724772425,-0.596761571422436,0.578241313605433,0.701969804289565,-6.76505730465739 +"Q961B9",0.0859724760315288,14.9620415309133,0.593920095701482,0.579989394874422,0.703579862291299,-6.76694732139426 +"Q9VUZ0",0.0317378734092735,17.6604909677483,0.590441079400861,0.582134227684534,0.70566852600131,-6.76925084227309 +"Q9VKM3",-0.0366718835756643,21.8053705930953,-0.58838210389265,0.58340594417533,0.706437799705342,-6.7706086415348 +"Q9VG00",-0.0457660403938593,15.3154164277248,-0.588042477680757,0.583615880092303,0.706437799705342,-6.77083221680128 +"Q24492",-0.0352426814435773,15.0614168104164,-0.587314165675481,0.584066237214915,0.706470256471703,-6.77131128808281 +"Q9VD29",-0.0484063819584186,20.7641346815006,-0.581714814323196,0.587535898874556,0.710152086465768,-6.77497733228345 +"Q9W3G8",0.0520114900483115,15.5247378903784,0.579460086772514,0.588936671090028,0.711217665553084,-6.77644499036661 +"Q9VGR2",-0.0644910798922123,15.705100416863,-0.578923603711272,0.58927027205897,0.711217665553084,-6.77679347416443 +"Q9VNA3",0.0351900927791,18.6874178540604,0.576221350614537,0.590952395162559,0.712394165183617,-6.77854452839882 +"Q9VR31",-0.0412395945775259,17.3271750041148,-0.575985684900891,0.591099235380171,0.712394165183617,-6.77869690270912 +"Q961D9",-0.101891618016214,12.4992604184465,-0.574167524901237,0.592232865832652,0.713245068742861,-6.77987065254087 +"Q9U6M0",-0.0347071924249853,16.3562613823927,-0.572715064704661,0.593139445229956,0.713573139999456,-6.78080600359865 +"Q9VVZ4",-0.0973904165697927,15.997635107248,-0.572360507599494,0.593360878404823,0.713573139999456,-6.78103401789509 +"Q9W379",-0.0473727017897989,16.2041507322297,-0.571593769699276,0.593839906953009,0.713634700862838,-6.78152668465969 +"Q9V400",-0.0638731720477566,14.0694786177753,-0.570344193460446,0.594621104637355,0.71405903710231,-6.78232836898651 +"Q9W3T7",0.0413504622404623,17.4331569979683,0.565051562171357,0.597936895765321,0.717524274918385,-6.78570700527929 +"Q9VQ35",-0.124800916378952,12.3611525439457,-0.561579284855127,0.600118380874389,0.719624341695529,-6.78790867250962 +"Q95R34",0.0751817099624628,15.0594013752243,0.560678683367031,0.600684981800631,0.719786314399032,-6.78847778228036 +"P08736",0.0345681255882937,24.3233499528849,0.559900317998701,0.601174941661515,0.71985628333913,-6.78896900558134 +"Q7KML2",0.063277498051411,13.5786359676181,0.556889587458458,0.60307239936062,0.721174279538344,-6.79086344830945 +"Q9VP78",-0.033004666976316,14.9659164352468,-0.556098515611145,0.60357155931531,0.721174279538344,-6.791359732121 +"Q9VVL5",0.0314316842924107,17.1975603981876,0.556096679200236,0.603572718366624,0.721174279538344,-6.79136088348631 +"Q9VWD9",-0.0303882952059524,19.4786835622203,-0.554932362598633,0.604307848184169,0.721535784374512,-6.792090199 +"A0A0B4KH34",0.0283114000709652,23.3857277110711,0.553196349750736,0.605404941498648,0.722328642646456,-6.79317513192414 +"Q9VW58",0.0806960578243228,14.830178273704,0.552416918212167,0.605897902794192,0.722400072809659,-6.79366127363989 +"Q24583",-0.0374212788697257,21.3407914397943,-0.549761288579534,0.607579303370582,0.72352504275536,-6.79531310957912 +"Q7K3J0",0.0336858675002034,20.3070214024931,0.549556653043824,0.607708983753153,0.72352504275536,-6.79544010556867 +"Q7K3D4",0.0322643368052553,18.622558852163,0.546007689845134,0.609960651694831,0.725687850946489,-6.79763596874161 +"Q9V9U4",-0.035194420497378,15.8586358799731,-0.542986151312803,0.611881617503705,0.727454410546101,-6.79949563142869 +"Q9W436",0.0592590486959903,14.5053252490974,0.540877041619455,0.613224633928083,0.728531830051312,-6.8007883348221 +"Q9VZW7",0.0355005795125845,13.7947813277839,0.537508305112044,0.615373371031843,0.730564258278373,-6.80284387560513 +"Q95RQ8",0.0953106013859237,13.8610422278312,0.535928930521913,0.616382302870691,0.731158084103474,-6.80380367590404 +"Q9W1G7",-0.0402254138637694,18.770939702237,-0.534858651103113,0.617066571090496,0.731158084103474,-6.8044526754948 +"Q7K0D8",-0.0328745945274989,17.3365862739978,-0.534667858760196,0.617188598571757,0.731158084103474,-6.8045682483253 +"Q8IPD8",-0.0386809534746106,18.1757820108849,-0.531898481419056,0.618961445500196,0.732454525883887,-6.80624169579494 +"Q9Y114",-0.0307599124964675,18.652594784151,-0.531586736242305,0.619161199937818,0.732454525883887,-6.80642959187603 +"Q9V595",0.0354706153069415,18.5880448315028,0.529593711957475,0.62043914851113,0.733114464380908,-6.80762852777835 +"Q5U1B0",0.0296745405368846,14.5775758967553,0.529345994269351,0.620598095746907,0.733114464380908,-6.80777726750106 +"Q7JVM1",0.0368297417951524,16.066509360764,0.527985180104919,0.6214716829835,0.733626869933814,-6.80859325486645 +"A1Z968",-0.0306418243999147,17.255116611686,-0.527020984008654,0.622091092778113,0.733718061291818,-6.80917028971036 +"Q9W1H5",0.0400205830103904,17.3191403707627,0.526004930993471,0.622744206135347,0.733718061291818,-6.80977734602866 +"Q9V470",0.0301688099061614,19.9829661937105,0.525811527736342,0.622868570017514,0.733718061291818,-6.80989277992786 +"Q9VH19",-0.0672116925290975,13.9520673270868,-0.524703770363419,0.623581169037195,0.734039089593536,-6.81055322522989 +"Q9VPX5",0.0288598111822758,18.8508866495468,0.523722397516462,0.624212863876618,0.734264497141184,-6.81113728633344 +"Q7JVH6",-0.0271417877490592,18.9716005562186,-0.519993229043952,0.626616663626994,0.736572653227502,-6.81334782148405 +"Q9VC67",0.0634534863504879,15.0100047346659,0.51833978413319,0.627684178071925,0.737307893678853,-6.81432343288883 +"Q9VU84",0.0365537385034891,18.4673900055257,0.517010770591395,0.628542991064563,0.737797121108861,-6.8151056074725 +"P20240",0.0265982756786478,17.4742857998696,0.515257311990303,0.629677118183704,0.738608602764008,-6.81613484459997 +"Q9VFS8",0.025345731164709,17.4306768437277,0.506035694713423,0.635660921946309,0.745103596490824,-6.82149627522501 +"Q7K1C3",-0.028284806779153,17.319431554319,-0.504769203180505,0.636485256889732,0.745312729523639,-6.82222584283969 +"Q6NL44",0.0608678596935484,15.2141386157694,0.504388761806009,0.636732997344835,0.745312729523639,-6.82244467764781 +"Q9W385",-0.0470967124029453,17.0392567017127,-0.502284146444919,0.638104494059083,0.74597522160721,-6.82365260641922 +"Q9V393",0.0335115465922335,15.6573722610196,0.502147759243941,0.638193429996096,0.74597522160721,-6.82373072855612 +"Q95SH2",0.0339990852285972,18.7268420453264,0.500389448414276,0.639340624098008,0.746792829828766,-6.82473617796031 +"Q9VMC8",0.0350961554022255,16.4380633841269,0.498816864507305,0.640367627443788,0.747445833587049,-6.82563274061373 +"A1Z933",-0.0418709883935087,15.7876628722792,-0.497830545033935,0.641012234398722,0.747445833587049,-6.82619376778216 +"Q9V3I2",-0.0250777596297773,17.2793091430404,-0.497476058359751,0.641243997519825,0.747445833587049,-6.82639515907901 +"O76902",0.0304142267323506,17.0939233460871,0.495975044512133,0.642225880874744,0.748067576326168,-6.82724648679432 +"Q9V535",0.0478527192915479,18.6932229182347,0.494635710782507,0.643102713248924,0.748566172853598,-6.82800416058266 +"Q9VY91",-0.073013466486465,17.0024722659228,-0.491196314931535,0.645357476366666,0.750666855355369,-6.82994140576799 +"P25007",-0.0318668448362125,23.8993875585479,-0.489202398438409,0.646666642566789,0.75158355727238,-6.83105890238965 +"Q9VDQ3",0.121336330822897,13.4634297614324,0.487444912751897,0.647821795691214,0.75158355727238,-6.83204048970618 +"Q8SY96",-0.0379825673984939,18.6241160481477,-0.486938117380276,0.648155112544138,0.75158355727238,-6.83232295156288 +"P23625",-0.0303298619744581,22.1763818710607,-0.486553448212809,0.648408170994606,0.75158355727238,-6.83253716936747 +"Q7JW03",-0.0388634952559919,17.1767374251333,-0.486325556217108,0.648558117818427,0.75158355727238,-6.83266400765137 +"P51140",-0.0467889727620889,13.6738699402223,-0.485866594401395,0.648860160624505,0.75158355727238,-6.83291928998852 +"Q7KK90",-0.025733013515314,21.129655504471,-0.485198908190444,0.649299703854616,0.75158355727238,-6.83329027949434 +"Q9VLW8",0.0473740875795325,14.1304580705469,0.482807732692971,0.650875182346946,0.752884746293139,-6.83461511527297 +"A1ZB73",0.116199449693768,13.6836755413908,0.481321855437871,0.651855245066841,0.753495875794519,-6.8354353856666 +"O15943",-0.0250029233864311,20.2688239418545,-0.480110152563142,0.652655066422416,0.753897957612597,-6.83610260529292 +"Q9W404",0.0442620314235427,15.9156792619175,0.478824332514405,0.653504399528918,0.754045632725566,-6.83680897130865 +"Q9VAY3",0.0338114178212727,13.8246650487523,0.47854794758559,0.653687041319646,0.754045632725566,-6.83696057942047 +"Q8SXY6",-0.0394587443680692,18.9998754696844,-0.47351048261767,0.657020803531147,0.75736745009672,-6.83970991607986 +"Q9VJU8",0.0323424804050756,15.6287846889037,0.465072006332593,0.662625953983832,0.763301167986901,-6.84425618103054 +"Q9V428",-0.0235417423410134,18.7061850328092,-0.459869495418865,0.666094412992177,0.766381488771863,-6.84702193044038 +"O44226",-0.0228639893927962,20.2434803611738,-0.45958275853236,0.666285858516967,0.766381488771863,-6.84717353932535 +"Q9VC66",-0.0308851984134115,17.7946855217148,-0.458994995756908,0.666678381419648,0.766381488771863,-6.84748404229487 +"Q9W4W8",0.0235181740884585,17.184063507471,0.458002737380649,0.667341315651175,0.766615230376143,-6.84800740826709 +"Q9VVS6",0.044136023292932,16.5006486059751,0.456680131160932,0.668225501285915,0.767102640154787,-6.84870340651864 +"Q7K1M4",0.0267268388828068,17.1352940939153,0.454123499487653,0.669936412346384,0.768537782526663,-6.85004357043202 +"Q9VGR1",0.0355354931898262,14.2420517372938,0.45308210895075,0.670633978659197,0.768809262133017,-6.85058748478677 +"A8DZ14",0.0282797294360932,19.5303634273703,0.451714310641286,0.671550767481598,0.769331511098424,-6.85130014347536 +"Q94915",-0.0370764307200968,17.3553893647475,-0.449512078295502,0.673028232424166,0.770494915362738,-6.85244341572174 +"Q9VY92",-0.037429102291,21.4828059582365,-0.444445699106424,0.676433687942259,0.773862408427769,-6.85505412509687 +"Q9W2N5",0.0679894595033463,12.9695083356265,0.436307476313774,0.681922613315447,0.779607209739661,-6.85919079652364 +"Q966T5",0.0214555358649182,16.4055154029888,0.432118862427235,0.684756567736936,0.782310928072061,-6.86129241802983 +"P17704",0.0244805561760693,20.2190503307068,0.431053548581835,0.685478300380134,0.782599455875471,-6.86182395145573 +"Q8T0Q4",-0.0382007396802244,20.0592844753693,-0.428734068871984,0.687051046650761,0.783420774094818,-6.86297705391947 +"Q9VIL2",-0.0307879811040568,16.0043903675514,-0.428607315303445,0.68713704586374,0.783420774094818,-6.86303990235119 +"Q9VL00",0.0768522234709774,16.1502433901958,0.426986095875934,0.68823748434009,0.784139428879283,-6.86384223932282 +"P40417",0.0256812859855273,19.8694398169083,0.425909378083792,0.688968822121672,0.784436856859351,-6.86437355022379 +"Q9Y112",-0.0231526368501491,22.2475489555212,-0.424173584884582,0.690148647415545,0.78524416363515,-6.86522747138109 +"Q9VNF5",0.0265241414125512,15.9657074002097,0.423159201001385,0.690838598165061,0.78549337541876,-6.86572500182919 +"Q7JYZ0",0.0719781849207131,16.8864033660051,0.421372462074449,0.692054720841848,0.786065085572791,-6.86659867039699 +"Q9W4P5",0.0265357134387756,19.4978294721674,0.421035868381172,0.69228393927244,0.786065085572791,-6.86676287253644 +"P54397",0.027681620964362,14.6162303160924,0.41884697724751,0.69377548723182,0.787222797756923,-6.86782772242882 +"Q24298",0.0277082293715374,19.4413299606221,0.417583102957548,0.694637441694688,0.787665025660598,-6.86844022674409 +"Q9VFN9",0.0298330748216333,16.1469505574512,0.415516206862655,0.696048198230647,0.788728528973315,-6.86943819326099 +"Q7K2W6",-0.0316973255732229,16.5743165153683,-0.413929527645802,0.697132145908551,0.789420515529846,-6.87020117519828 +"Q9VIH3",0.0323484885103849,13.8365652772947,0.406833158147023,0.701990230426201,0.794382431717031,-6.87358036232271 +"Q8SXF2",0.0251985399913153,15.5161630560451,0.40428248053255,0.703740424106043,0.795823069429749,-6.87478166398485 +"Q7JUS9",0.0251468610812324,20.0787395882697,0.402668679058003,0.704848857042104,0.796139238634493,-6.87553808388199 +"Q9VJD1",-0.0356287902948829,18.6204595374293,-0.40185323108031,0.705409265566614,0.796139238634493,-6.87591922689123 +"Q7JV69",0.0220429191837592,15.9635963626279,0.401791184492077,0.705451915288838,0.796139238634493,-6.87594819815701 +"Q9VN71",-0.0247371857101939,18.591134301569,-0.400884164611021,0.706075526880515,0.796304245325692,-6.87637123425233 +"Q9VHL2",-0.0210040350071807,20.6718582264143,-0.398917914540622,0.707428313203827,0.797290828664853,-6.87728523316245 +"Q9W0C1",0.0239007416697241,21.3462648885696,0.396697780958978,0.70895726880506,0.798474493157894,-6.87831220230667 +"Q9VNR6",-0.0365065699417642,14.7297009749807,-0.394700160148238,0.710334336360179,0.799485609344655,-6.87923166452864 +"Q7JYZ9",0.0298567487368899,18.2543376020025,0.389675647847008,0.713803629416326,0.802848586558619,-6.88152513535136 +"Q9VJ68",-0.03868578103544,17.9813679138515,-0.388915243035013,0.714329366816551,0.802898506637471,-6.88186982951073 +"Q9V3J4",-0.0256206833781611,16.6479992297448,-0.387173225046093,0.715534471498869,0.803372414425059,-6.8826571134879 +"Q7K1Q7",-0.0219631625051893,16.4309726007594,-0.386913434206849,0.715714273282756,0.803372414425059,-6.88277423889455 +"Q7JZW2",0.0206184149128674,20.4570266457572,0.384935848223185,0.717083660226361,0.804368221424055,-6.88366340648356 +"Q9W3T9",-0.0202068861981068,18.7617405841593,-0.381287937732656,0.719612883127896,0.80666282866756,-6.88529236810133 +"Q9VNF3",-0.020218925161096,19.1019992990136,-0.377553680628408,0.72220626287093,0.809026223283217,-6.88694478988257 +"Q7KW39",0.018826453673487,21.8158301673264,0.376348320258999,0.723044286846858,0.809421389570845,-6.88747490066785 +"Q9VZS1",0.0232763682367647,15.5710626532752,0.375617171857375,0.723552834267144,0.809447436323002,-6.88779567844733 +"Q9V3T8",-0.0460485413398874,15.7149925397397,-0.374379928647201,0.72441376846492,0.809537638030711,-6.88833715838436 +"Q95029",0.0333853632195371,21.8664300007547,0.374106448341678,0.724604132841637,0.809537638030711,-6.88845662014895 +"Q9W254",-0.0226253527229687,18.2203427286279,-0.372173807699728,0.725950059872058,0.810498460419406,-6.88929849316025 +"Q9V4S8",0.0498872579631513,17.1621010678018,0.369186640706159,0.728032621700881,0.812279874914428,-6.89059164055218 +"Q9I7X6",-0.0366166692938936,14.6227816508171,-0.364886309613146,0.731035433515335,0.815084961967633,-6.89243599149608 +"Q9W0B3",-0.0204851828826946,19.1853187169523,-0.363781779023364,0.731807598961093,0.815400851748232,-6.89290641550661 +"Q9VTP4",-0.018094458838334,20.8505222402219,-0.358382930134134,0.73558712720986,0.819001946598528,-6.89518640431768 +"Q9VR30",0.0179579112341717,17.2485818216212,0.357763197207243,0.736021533543881,0.819001946598528,-6.8954460603865 +"Q3YMU0",0.0208321173046357,23.2028738148198,0.355700485653629,0.737468224641402,0.820064665801239,-6.89630723170234 +"Q9W1M9",0.0326353665935848,14.2173277382286,0.354873767414876,0.738048399188885,0.820163044535016,-6.89665105842276 +"Q9NHD5",0.0245788438721135,16.5709607956052,0.353178868535958,0.739238474060121,0.820938598357045,-6.89735358559078 +"Q9VIS4",0.024477709062559,14.1220708413863,0.349347984693001,0.74193142981376,0.823380987976948,-6.89892971697215 +"Q9VNI8",-0.0296043063815645,15.743104042885,-0.347514809843643,0.743221587859188,0.824264367386387,-6.89967816553041 +"Q9VMU2",-0.0193241870102661,16.2905943175621,-0.343212510506901,0.746253285599403,0.827076731149372,-6.90142001720572 +"Q9VTT2",-0.103274634179957,14.0620854436642,-0.341450770780948,0.747496262125835,0.827904226577618,-6.90212733183902 +"Q0E980",0.0257909674894172,18.3445781588921,0.339298596280332,0.749015906491223,0.828075566319666,-6.90298670163485 +"Q9W074",0.0412759319028666,13.4560754731035,0.338971564407539,0.749246937966043,0.828075566319666,-6.90311683387027 +"O76877",0.0173506996910611,17.3426908680147,0.338257381578385,0.749751577383999,0.828075566319666,-6.90340060559051 +"Q8IQC6",0.0543417604291356,16.1114840435976,0.337148231607302,0.750535585473723,0.828075566319666,-6.90384018286371 +"Q9VVP9",-0.0220017668257437,16.7995119219579,-0.336792126233742,0.750787373985209,0.828075566319666,-6.90398102263032 +"A8JNP2",-0.0330486213981551,21.1662949557816,-0.336643922367267,0.750892173820648,0.828075566319666,-6.90403959552189 +"Q9VU70",-0.0420615399348012,15.0131922541909,-0.336091412867581,0.751282926039604,0.828075566319666,-6.90425774100197 +"Q9VSK9",0.0366464042138919,14.5890488645939,0.335118633621431,0.751971115129537,0.828075566319666,-6.90464099051651 +"Q9VE52",0.0184829048214237,16.0024985585185,0.334909649910989,0.752118994588905,0.828075566319666,-6.90472318648863 +"Q9VC58",0.0554605539224937,13.104986378913,0.33184171101564,0.754291313917588,0.829919466764206,-6.90592421991122 +"Q9VZ66",0.0195850803134299,17.0656692868027,0.328407206789633,0.756726297670077,0.831504086870918,-6.90725624581046 +"O62621",-0.0622093671139154,13.0747473015122,-0.32791952462985,0.757072317828249,0.831504086870918,-6.90744431418234 +"Q9VLV5",0.0183428672627208,17.529219293435,0.327701484095593,0.757227043139643,0.831504086870918,-6.90752831238651 +"Q9V3Y4",-0.0265479262142385,13.891270450152,-0.324432440555451,0.759548380183383,0.833504406674923,-6.90878128355534 +"Q9VMV5",-0.0182020536034493,17.5925768950308,-0.317813977534151,0.764257050490022,0.838120157933831,-6.91128124575577 +"Q9VSJ8",-0.0278167787121752,15.8025323046675,-0.314750401465547,0.766440614081396,0.839962512672647,-6.91242173272224 +"Q09101",-0.0189994590551201,14.7103622708884,-0.306932584525667,0.772024054210085,0.845333887506406,-6.91528407652383 +"Q9VER6",-0.0205396381524565,14.9253866473046,-0.306469315403886,0.772355422397939,0.845333887506406,-6.9154515248293 +"Q9VVU5",0.0292691757324164,15.6069967777662,0.303953915384993,0.774155618102886,0.846579391633872,-6.9163564726883 +"Q9VX02",0.0160120027916602,17.2319763462713,0.302595541038,0.775128447297477,0.846579391633872,-6.91684218484547 +"Q9W2V2",-0.0483259660287825,14.2259094768733,-0.302538747466725,0.7751691316181,0.846579391633872,-6.91686244689916 +"Q7KMM4",0.0232395219957358,14.4260808547956,0.302044019362434,0.775523567396017,0.846579391633872,-6.91703879472644 +"Q9VF15",0.0174126279642373,20.9303508648891,0.300682608523392,0.776499241725041,0.847090081881863,-6.91752264227409 +"Q9U5L1",0.0176972986378026,17.7067460988525,0.299748298678944,0.777169103248724,0.847266708639785,-6.91785348081819 +"Q9U4G1",0.0153071016816391,19.3138583895561,0.298989208546546,0.777713503911081,0.84730641706315,-6.91812154475372 +"A8E6W0",0.0234228696439924,16.4726285973343,0.297022334473004,0.779124780773325,0.848289904915082,-6.91881307983365 +"Q9W0Y1",0.0168422313514718,17.7275820067636,0.294271002787992,0.78110056983678,0.849886334303815,-6.91977304834512 +"Q9Y125",-0.0202617555329496,22.6424002273699,-0.293229371908195,0.781849085029608,0.850146201974828,-6.92013423816112 +"O97102",-0.0170944236952444,20.9784302133596,-0.291961958225111,0.782760214780327,0.850582435344355,-6.92057205426784 +"Q9W258",0.0197473853434609,19.3897276279348,0.290436109489729,0.783857663414333,0.850995839938917,-6.92109671855211 +"Q9VL66",-0.015105957498653,15.7503681844458,-0.288814182072837,0.7850248509123,0.850995839938917,-6.92165151219298 +"Q9V438",-0.0171755832440716,18.9976694076351,-0.288192028234371,0.785472744541321,0.850995839938917,-6.9218635296065 +"A1ZAA9",-0.0167072258107197,16.5755955149431,-0.287465675927797,0.785995772586325,0.850995839938917,-6.92211049749686 +"Q9VEP6",-0.0142866972992763,18.6126585517036,-0.287281317150621,0.786128545433572,0.850995839938917,-6.92217308582939 +"Q9W3C3",0.0317725908978979,16.3028707763393,0.287179617003435,0.786201792173783,0.850995839938917,-6.92220759563123 +"Q8IMT3",0.0247037363665861,14.7034528866687,0.284443781598155,0.788173156878206,0.852576410942184,-6.92313151626084 +"Q9W147",0.0249721559961973,13.8122686093283,0.281441706353112,0.790338471464296,0.854326883201752,-6.92413551767822 +"Q7JZF5",0.0164902997306342,16.9498294660708,0.28078036640763,0.790815771980518,0.854326883201752,-6.92435530960717 +"Q9VS11",0.0317948313282752,15.0720674487801,0.277570532014431,0.793133863061824,0.856007527196763,-6.92541497352641 +"Q9VAG3",0.0305278262342448,16.7453520332763,0.276856178526343,0.793650094039657,0.856007527196763,-6.92564919998321 +"Q8SYQ8",0.0162740116248088,16.19217053093,0.276254718851651,0.794084836256727,0.856007527196763,-6.92584595725092 +"Q95RN0",-0.0158169380386735,16.9366587418641,-0.275785225095299,0.794424251858867,0.856007527196763,-6.92599925632118 +"Q9VVJ7",-0.0156943524892625,18.2237134275035,-0.26922844763228,0.799169851582271,0.860565082271936,-6.92811378157456 +"Q9VY78",-0.0184829714349135,18.8161388245252,-0.267508736212366,0.800416194103687,0.861190883015587,-6.92866021673188 +"A1ZBJ2",0.0141152608052195,19.1053424536159,0.267001955565806,0.800783608847227,0.861190883015587,-6.92882059761492 +"Q9VS44",-0.0220473389665408,15.1234639107106,-0.263710379106248,0.803171435127674,0.863202289815052,-6.92985510110364 +"O61444",0.0437178537702199,16.6044923202728,0.262451851942185,0.804085071796051,0.863627752579403,-6.93024734999588 +"Q9W2J4",0.0144553065718593,15.0717343399589,0.259455397494935,0.80626181822511,0.865408438094906,-6.93117392958541 +"Q9VAY6",0.0149988820939981,15.2416530696835,0.256096924925245,0.808703954307153,0.867174126746642,-6.93220016663832 +"Q9W2K2",0.0267301673202258,15.8077979314,0.25576341300248,0.808946607444709,0.867174126746642,-6.93230136731184 +"Q86PD3",-0.0135137159404088,18.8323312435361,-0.254997587681537,0.809503892323182,0.8672141890784,-6.93253326362174 +"Q9U915",0.0148437983443195,21.2155519898245,0.252223094568429,0.811523956195077,0.868820256054806,-6.93336773159659 +"Q9VN44",0.0168922426862608,19.4094951458074,0.251137832477066,0.812314579431254,0.869108863689116,-6.93369172265772 +"Q9VFF0",0.0232696879837526,23.5973731052878,0.247758555870026,0.814778060314733,0.870773022748571,-6.93469185083335 +"Q7KS11",0.0537747801522581,15.7860672584557,0.247572067570056,0.814914081840839,0.870773022748571,-6.93474665961244 +"Q9VG76",0.0160482386295016,15.8518407214264,0.2401981423948,0.820298476084361,0.875965338097769,-6.9368816067864 +"Q9VGE4",0.0128128308546511,15.6340866615299,0.23676647943382,0.822808174385983,0.877468851508216,-6.93785369313335 +"P41375",0.0147258238959687,16.8032246169868,0.236268515087808,0.823172557489561,0.877468851508216,-6.93799361699758 +"P06002",-0.0171360444691064,16.6144053980663,-0.23598034672672,0.823383446831746,0.877468851508216,-6.93807445854257 +"Q9VDD1",-0.0350655381083165,14.3969787238103,-0.235071488576138,0.82404868613264,0.877468851508216,-6.93832879474525 +"Q9V784",0.044076234447461,14.2258398460382,0.234678011530452,0.824336744792191,0.877468851508216,-6.93843860865126 +"Q9VUW2",-0.0208799746866557,14.4040560802845,-0.22703340821703,0.829939512848181,0.882669136502397,-6.94053642922044 +"Q7K549",0.0214516655634025,14.8265385142936,0.226568671732951,0.830280500702794,0.882669136502397,-6.94066177131718 +"Q86BM0",0.0148566603672151,17.4716116767738,0.224778470042183,0.831594414721935,0.883279928031973,-6.94114225072621 +"Q7JVZ8",0.0183766968922896,16.0601551688914,0.224342992004546,0.83191412885985,0.883279928031973,-6.94125856645862 +"Q9VHK6",0.024791092222781,18.1277023395575,0.22226075616637,0.833443357158252,0.884012197138707,-6.94181167781621 +"Q9VK59",-0.0151223506842015,18.7953787352586,-0.221960717591339,0.833663780635004,0.884012197138707,-6.94189096189254 +"E2QCN9",-0.0215038470520845,17.3978481349561,-0.220662471207606,0.834617740706852,0.884461493963805,-6.94223281006607 +"P11046",-0.0114008680223527,20.9546000302107,-0.218870182203588,0.835935265334181,0.885295252430104,-6.94270151983977 +"Q9VBT1",0.0131658943308555,16.2456662475834,0.213586646911033,0.839822824132343,0.888848014373571,-6.94406144175306 +"Q9VA18",0.0208930144958188,21.6604859759993,0.211425595324701,0.841414424979284,0.88996782553294,-6.94460828268252 +"Q9VG33",-0.0130015227081763,20.0515176616599,-0.207795354753434,0.844090036955649,0.892232054272511,-6.9455146108734 +"Q9VF70",0.0122486792330481,15.9620984368221,0.205028808688063,0.846130707797685,0.893822685627953,-6.94619496204781 +"Q9GYU8",-0.036383782100577,12.2021155731584,-0.203614803487306,0.84717425058628,0.894358639226528,-6.94653923688849 +"P40797",0.0106769025170301,19.2235660089048,0.201674184538854,0.848607024549989,0.895304564800368,-6.9470079182309 +"Q9VTJ4",0.014127252981849,15.7470361988351,0.197338112375794,0.851810807924993,0.898116578773002,-6.94803918652443 +"Q9VJQ5",0.0108138819127319,14.5364474939045,0.195215997896574,0.853379976225105,0.899202653407122,-6.94853586539621 +"Q8SWZ6",-0.0100076183942122,14.0648966116047,-0.191467091960593,0.856153959595539,0.901556063513484,-6.94940038053852 +"Q9VWT3",0.0114556231976923,14.2012401581689,0.188832878192754,0.858104568896708,0.902948483280102,-6.94999797084586 +"P20432",-0.0132858480451077,23.5920373156665,-0.187156512267366,0.859346510561364,0.902948483280102,-6.95037402131899 +"Q9VIQ8",-0.0118309207938765,21.2401802628334,-0.18704249867323,0.859430995022245,0.902948483280102,-6.95039947743404 +"Q7JVG2",-0.0171988767060363,14.9079891552738,-0.186758293328316,0.859641601588011,0.902948483280102,-6.95046286618581 +"Q9VQ29",-0.0140937700198087,22.1238538124509,-0.185566406141511,0.860524979967389,0.903307530890878,-6.95072766874882 +"Q9VCR4",0.00921497706444363,15.0807796988138,0.18435635430918,0.861422061901528,0.903670076191981,-6.95099479800368 +"Q9VXF9",-0.00944285083442864,17.5416402863455,-0.18363913580417,0.861953891619569,0.903670076191981,-6.95115231714335 +"Q9VM33",-0.0586434657257264,13.7264200911445,-0.181303308073887,0.86368653068503,0.90491779722527,-6.95166112779417 +"O77430",0.0112415665693959,19.5293415377762,0.178691871738661,0.865624653037845,0.90595788094865,-6.95222236970639 +"P54352",-0.0180293847434978,16.0144545357281,-0.178502144604034,0.865765504935341,0.90595788094865,-6.95226283234872 +"Q9VJJ1",0.0151049094606464,14.1211683973329,0.170830760213229,0.87146542853661,0.910918532382077,-6.95386335223048 +"Q9VDU7",-0.00881686595752029,18.4154890039003,-0.170652067660265,0.871598307962707,0.910918532382077,-6.95389980664045 +"Q8MLW4",0.00880465654410045,18.7249865461589,0.166280751273516,0.874850417195471,0.911543021905927,-6.95477984450511 +"Q0E8U4",0.0116627613253453,16.2327957814222,0.1662672091595,0.8748604965303,0.911543021905927,-6.954782535761 +"Q9XZ61",0.0084579637699953,18.5863335384869,0.166237607306077,0.87488252915254,0.911543021905927,-6.95478841785213 +"Q9VEP8",0.00866339208631395,17.1666792334927,0.165812124687941,0.875199229761539,0.911543021905927,-6.95487284981055 +"Q9VL70",-0.0111584773245639,23.6765900121377,-0.16500949765745,0.87579672456561,0.911543021905927,-6.95503153939509 +"Q9VD14",0.00864375230734993,17.6780542652211,0.164712563262719,0.876017793852999,0.911543021905927,-6.95509005424636 +"Q9VJC7",-0.0115718605561774,18.7024358897938,-0.164707905804739,0.876021261459953,0.911543021905927,-6.95509097123029 +"Q9VVA7",0.00813345434209012,17.5502146341927,0.162263386655492,0.877841714486404,0.912867817807557,-6.95556872308108 +"P0DKM0",0.0166528767012011,17.0523848960242,0.160853548438828,0.87889202917817,0.913390594809463,-6.95584104742214 +"Q9VGS3",-0.00844597338545938,19.1187594021883,-0.157732708072375,0.881218041032424,0.91475779973571,-6.95643550826333 +"Q9W329",0.00880314407778826,16.5254547986616,0.157368212380666,0.88148979607174,0.91475779973571,-6.95650418634296 +"Q7K180",-0.0172186992834895,16.32454964511,-0.156881309479347,0.881852842910684,0.91475779973571,-6.95659568305282 +"Q9VQ93",0.0169842905528981,16.7200284071993,0.155998182022572,0.882511409881164,0.914871989858162,-6.95676092065251 +"Q9VYT0",0.00815195077862541,18.0967582889858,0.154941806710017,0.883299315215419,0.915120035887776,-6.95695736125359 +"O16158",-0.00765927330646932,21.3628921657174,-0.153545305689819,0.884341144501261,0.915630682202422,-6.95721502298453 +"A1Z7P1",-0.0153692537113557,14.5326133567198,-0.15005061168061,0.886949461498566,0.917761601600254,-6.95784968995584 +"Q7K0B6",-0.00973322333647886,20.2875971773148,-0.14778107509965,0.88864425075186,0.918945201645445,-6.95825410700861 +"Q9V773",-0.0150294654935443,15.5350652099962,-0.146552638206175,0.889561879863502,0.919236197809873,-6.95847045972781 +"Q9VWA8",-0.0186959799635051,14.5164012747891,-0.145928938322721,0.890027853395051,0.919236197809873,-6.95857962108107 +"Q9VL68",-0.00746579276366788,20.846504824063,-0.142298377456465,0.892741298011112,0.921468121957015,-6.95920588963552 +"Q6NP72",0.00795184112978475,18.689846088374,0.136882080795097,0.896792518303728,0.925077254502547,-6.96011111754244 +"A1Z877",0.00726738089916523,19.9098026439747,0.13407928412138,0.898890356383283,0.926668179510084,-6.96056586980982 +"Q9VD26",0.0147835413696757,16.244413210138,0.133216145479054,0.899536591411364,0.926761602516464,-6.96070403351378 +"Q8IPP8",0.00786616342389479,19.2444740245415,0.129248534745588,0.902508302141435,0.929249288871551,-6.96132774086424 +"Q9VBI3",-0.0112939126186511,18.6264271073904,-0.124375951039414,0.906160345495899,0.93199378844593,-6.96206809101988 +"Q7K084",-0.00675855530657898,23.9679102983602,-0.123606041621516,0.906737646695216,0.93199378844593,-6.9621824875169 +"Q4V6M1",-0.00662845461675943,18.2609461836585,-0.123456118713449,0.906850071131742,0.93199378844593,-6.96220468162871 +"P42207",0.00757401131968827,15.9675158774468,0.121065583835797,0.908643027174381,0.933261434314574,-6.96255495321357 +"Q9V431",-0.00783018626696119,18.5753013436059,-0.120201170659229,0.909291512002125,0.93335276431972,-6.96267993539948 +"Q4QPU3",0.0239339435856856,14.5853994119723,0.117429279124094,0.91137153830439,0.934487863471039,-6.9630747087892 +"Q7K1U0",-0.0152622383648975,16.6052486971988,-0.117234358032861,0.911517838049988,0.934487863471039,-6.96310212496714 +"Q8T0N5",0.00570115185528408,18.5369092634146,0.113097677251119,0.914623603166791,0.937095927568923,-6.96367328135019 +"Q9V3W9",0.00572939100372949,18.5605434378112,0.110673503471764,0.916444461683872,0.938385120987537,-6.96399850796186 +"Q9V4C8",-0.00544822281886681,17.3136425847395,-0.109325851466221,0.917456973764743,0.938845541251283,-6.9641762770869 +"Q9VW14",0.00693076560506611,13.8392643028859,0.103752401941049,0.92164628613101,0.94255426441847,-6.96488845640284 +"Q9VK11",0.00755263753125135,18.6608222356139,0.102493377822091,0.922593049703537,0.942944366976409,-6.96504420084621 +"Q9VR25",-0.00630661608179395,16.9665442720988,-0.100682349155612,0.923955169635317,0.943747516713902,-6.96526490970788 +"Q9VA76",-0.00761535583620265,15.2872904624902,-0.0999441728500241,0.924510457020693,0.943747516713902,-6.9653537469496 +"Q9VTZ6",0.00557749548076814,16.9094658450442,0.0937431612475385,0.929177042298775,0.947931074345172,-6.9660743118967 +"Q9W2N0",0.00456708458540334,15.9699775058935,0.0916858248947862,0.930726031662364,0.948696352892151,-6.96630322249262 +"O62619",0.00457088826510699,22.0071441018255,0.0906477333858973,0.931507756040912,0.948696352892151,-6.966416805083 +"Q960X8",0.00559896961487993,18.4888608981569,0.0904808040379321,0.931633468847328,0.948696352892151,-6.96643494934515 +"Q9VXN1",0.0107897956309522,13.6729094106304,0.0896643669967808,0.932248352376978,0.948743289667358,-6.96652321125251 +"Q9VD00",-0.00499161396330194,17.8906784659829,-0.0884909933466415,0.933132151028629,0.949063675558386,-6.96664866388417 +"Q9VZW1",0.0113445463271873,14.8450992350689,0.0788059434001881,0.940431152220785,0.955904425292059,-6.96762123086847 +"Q9VFR0",-0.0101147107767829,15.2037247109114,-0.0730194848249227,0.944795308975396,0.95975552702251,-6.96814870761476 +"Q9VQV7",-0.00670837479219166,16.2903332464424,-0.0696930365442541,0.947305144516473,0.961719404171319,-6.96843377780125 +"Q9W1H6",0.00423940911585774,17.1641536698635,0.0679979838266723,0.948584350500606,0.962432297223242,-6.96857393994709 +"Q9VJ28",-0.00362300175767771,19.0043692402342,-0.0632846362063904,0.952142299322014,0.96545492721527,-6.96894557638694 +"Q95SH0",0.0059196493945759,14.0835555986126,0.0504529066527686,0.96183478384409,0.974690412789758,-6.96982230947352 +"Q9VB81",-0.0050449303534883,21.0705455416371,-0.0488622062524106,0.963036893328338,0.975316052259665,-6.96991722940425 +"Q9Y0Y2",0.00310892165463272,19.3812147807527,0.0453890489995545,0.965661984389318,0.977380492250225,-6.97011392193915 +"M9NFC0",0.00320395260609629,19.8208208347414,0.04461478394846,0.966247261223394,0.977380492250225,-6.97015579603497 +"Q9VXN3",0.00317153866551578,17.0390396804675,0.0418698882532344,0.968322357478521,0.978885874105559,-6.97029844679016 +"Q8IH18",-0.00237465454158148,15.6901252938023,-0.0359759954439068,0.972778996601268,0.982795497474812,-6.97057417385906 +"Q9W0K9",0.00551551016763874,14.167443935364,0.0343003040569177,0.974046280065492,0.983480142342155,-6.97064494746132 +"Q9VEA5",0.0022325281520601,15.7120598410834,0.0334688032080057,0.974675156404401,0.983519758549631,-6.97067881401092 +"Q9VGL0",-0.00759935337342554,12.9734473105817,-0.0324332143531385,0.975458417119959,0.983715017990381,-6.97071983143413 +"Q9VZZ6",-0.00235950859868339,18.3364610319465,-0.0299815786566219,0.977312820708039,0.984693824510321,-6.97081179929286 +"Q9VKJ4",-0.00205597286941028,15.0726743981271,-0.0294242771718586,0.977734383988788,0.984693824510321,-6.9708316978109 +"O61491",0.0016968366053014,20.8462398402508,0.0288086981187137,0.978200040295924,0.984693824510321,-6.97085324334687 +"Q9VTB4",-0.00229445308563214,20.6966100773668,-0.0271028064130831,0.979490517987345,0.98511406677987,-6.9709105708781 +"Q9VE12",-0.00281361306797123,15.7064671966096,-0.0266954286637286,0.979798703110195,0.98511406677987,-6.97092374377828 +"Q9VXJ7",-0.00337284604454169,14.9928501548741,-0.0232219334429595,0.982426593862048,0.987161179856563,-6.97102796196217 +"P49028",0.00196622328976304,16.3710139774582,0.0186564011045681,0.985881055789991,0.990035882635584,-6.97114288920335 +"Q9VI53",0.00113141092331404,16.444043897468,0.0169631607738625,0.987162323605216,0.990726086506318,-6.97117914363101 +"Q8IP97",-0.00103893713382774,20.0003698316659,-0.0125385218863414,0.990510628567891,0.99298202923381,-6.97125761069234 +"A0A6H2EG56",0.000998577510138432,20.8953986370742,0.0124193987711337,0.990600777365143,0.99298202923381,-6.97125939789348 +"Q9VP18",-0.000594066447526131,17.1084248307079,-0.010061691946182,0.992385050387702,0.994173131559571,-6.97129126031491 +"Q9VMX4",0.000449809901809317,17.3099603057278,0.00841373151029732,0.993632230430681,0.994825066241522,-6.97130956307848 +"Q0E9B7",-0.000393922158355764,12.9921272816966,-0.00166010917695371,0.998743561277437,0.999342687588942,-6.97135046200661 +"A1Z8D0",-4.80522732164701e-05,13.5383557525041,-0.000485557865463029,0.999632509702702,0.999632509702702,-6.97135197702425 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_significant.csv new file mode 100644 index 0000000..17819b8 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_significant.csv @@ -0,0 +1,50 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q7K860",-1.07010282203316,20.7725800737843,-19.7007841151088,1.06636101316588e-05,0.015206785524887,4.10857966198521 +"Q9VF23",1.00400088528804,15.5837422998497,17.5526202692861,1.82335557852362e-05,0.015206785524887,3.71499635645629 +"Q9VG42",-1.06605120352546,17.1374066689286,-15.6082259453213,3.14098599462344e-05,0.0174638821301063,3.2811985473115 +"Q9V9A7",0.900652273363141,16.0013639141188,14.3443122433113,4.63885033587056e-05,0.0193440059005802,2.95005855289624 +"Q9VC18",0.746458766840398,18.1762665968194,12.8544727686304,7.68247591117411e-05,0.0217041282225164,2.49878216501929 +"O16797",0.710830865309042,16.4208913909529,12.248555244674,9.58567321348076e-05,0.0217041282225164,2.29328166115227 +"P41093",0.682156325885902,18.7542459190837,11.3651319559547,0.000134947757122798,0.0217041282225164,1.96744665129504 +"P83967",-1.05753871615993,17.9421170267216,-11.263649342606,0.000140579296003827,0.0217041282225164,1.9278627252734 +"Q9VA42",-0.610450901797364,20.4860866086764,-11.113214507153,0.00014945838795163,0.0217041282225164,1.86832015458678 +"Q8SZK5",-0.834374233481554,15.2980206072436,-10.5561419464999,0.000188818741322524,0.0217041282225164,1.63845102043695 +"Q9VG81",0.538292763588732,15.2658840153453,10.537863485288,0.000190309450772959,0.0217041282225164,1.63064872827028 +"Q9VC06",0.56563625881649,16.1772279326288,10.4205617612663,0.000200221102909503,0.0217041282225164,1.5801699867847 +"Q9VNW6",0.585128940906209,21.4305516906999,10.3252707718399,0.000208733652145113,0.0217041282225164,1.5386374348594 +"P50887",0.671942645995156,17.7820781916292,10.2543389772391,0.000215354286944347,0.0217041282225164,1.50741114170602 +"P48596",0.50326289527607,22.0002645734184,10.1101982840596,0.000229604823819164,0.0217041282225164,1.44312535980709 +"O97125",0.593581263928478,18.4518873806594,10.0622079288232,0.000234599712002362,0.0217041282225164,1.42147133587429 +"Q9VNB9",0.821299967029908,18.8654801415054,9.95931163480612,0.000245757612352681,0.0217041282225164,1.3746139531959 +"Q9VXP3",0.754597634047849,14.6324082727622,9.88376782449566,0.000254357872664267,0.0217041282225164,1.3398354011205 +"Q9W1L1",0.572567504844393,14.9564641410667,9.78316061065564,0.000266381337866878,0.0217041282225164,1.29301483016564 +"Q9VNE9",0.631374145035377,18.6690495379071,9.71086728004906,0.000275445026021571,0.0217041282225164,1.2590109604784 +"Q9VQE0",0.630203990759231,17.2227849975681,9.62822306019263,0.000286265480153095,0.0217041282225164,1.21976435368786 +"Q9VFZ4",0.59451550632658,16.4797491851002,9.31756019175613,0.00033179819376477,0.0217675046856725,1.06856995645036 +"Q8SXD5",-0.503216755380496,20.6089082593788,-9.29209826339754,0.000335903383503688,0.0217675046856725,1.05591519793282 +"Q8SZN1",-0.554747642937652,20.2477862382824,-9.27130264580798,0.000339301631791058,0.0217675046856725,1.04554947735513 +"Q9VKC7",0.650178225202424,13.6909261854954,9.11308355710128,0.000366557281883499,0.0218694092125467,0.965785770586624 +"Q9VXQ0",0.515741706504627,14.9634414602676,9.03280161829958,0.000381392061685978,0.0218694092125467,0.924696429538094 +"Q9VZU7",0.524687240448316,17.4349338451203,8.92871694377737,0.000401714948363189,0.0218694092125467,0.870794321518786 +"Q24253",0.547344885081777,18.7253301958552,8.62796303909175,0.000468196272304746,0.0218694092125467,0.710929086186475 +"A1ZA22",0.796340308681946,13.4579255325769,8.59880502200847,0.000475320707951475,0.0218694092125467,0.695096685298755 +"Q9VZF6",0.543579729212098,15.0056447466589,8.58492904497921,0.000478756861762359,0.0218694092125467,0.687541092775067 +"P21187",0.555868340074156,18.8425546206978,8.31547553267421,0.000551796320929764,0.0218694092125467,0.538068643679674 +"Q8IPG8",0.553800156629229,15.9092631760493,8.20981472401187,0.000584046460264392,0.0218694092125467,0.477992930192945 +"Q76NQ0",0.542101741016749,14.3198799651075,8.16452441360808,0.000598560345322675,0.0218694092125467,0.451983277970248 +"Q9W3J5",0.636140283547071,15.9058082438369,8.07748578404308,0.000627687699886149,0.0218694092125467,0.401555560827024 +"Q9VWV6",-0.551633910151406,23.8983830830868,-8.01807280524068,0.000648549511415161,0.0220449716085859,0.366795083524765 +"Q9V3I0",0.565213838857268,16.392906514792,7.83010955778161,0.000720255163168554,0.0220449716085859,0.254978754565327 +"Q9W253",0.566806055001235,15.1333057542366,7.73285630603061,0.000761079163831543,0.0220449716085859,0.195999530891924 +"P17336",0.519412394788667,20.6412636591518,7.65671408516573,0.000794988481029799,0.0221006797726284,0.14927548957542 +"Q9VR79",0.61432370662336,20.3211832276177,7.58310569120373,0.000829505033842088,0.0224728460479599,0.10364196698569 +"Q9W370",0.595912083193731,18.3065033115352,7.48631845713295,0.000877665133845391,0.0224728460479599,0.0429330821825396 +"Q9W3E2",-0.72922327580573,17.5664020632755,-7.3811911531962,0.000933823211647528,0.0224728460479599,-0.0239312699584371 +"Q9VXC9",0.509081728312694,18.8396396200947,6.52188376551806,0.00159840305866542,0.0288663175537339,-0.609140326361327 +"Q9VV31",-0.937046168441297,15.6196882999564,-6.13714459130021,0.00207325801823473,0.0321905212499628,-0.895541722693825 +"P45437",0.51869542326795,15.93558288272,5.76836897881377,0.00269446215064136,0.0330467857887484,-1.18577985597923 +"Q8IN43",-0.660066493973943,17.5333607067319,-5.73645407452897,0.00275799140346568,0.0333357221810199,-1.21165918105564 +"Q9VCX3",0.578751131541109,12.9520743445143,5.71985056542793,0.00279174531892382,0.0334047761423288,-1.22517198548468 +"Q7JXZ2",0.566460337904786,17.3968019554637,4.76288036358043,0.00592095211906132,0.0460619627202749,-2.0647487595597 +"P09208",0.674289617021337,12.9511335075448,4.61834564750967,0.00669586576477221,0.0470317745677839,-2.20265234031034 +"Q7JX94",0.511843496175016,12.0383291093054,4.52634556643144,0.00725134800898631,0.0491676767438584,-2.29205075175139 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_significant_fdr_only.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_significant_fdr_only.csv new file mode 100644 index 0000000..bca7a5d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SF1g_males_vs_Earth_males_significant_fdr_only.csv @@ -0,0 +1,248 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q7K860",-1.07010282203316,20.7725800737843,-19.7007841151088,1.06636101316588e-05,0.015206785524887,4.10857966198521 +"Q9VF23",1.00400088528804,15.5837422998497,17.5526202692861,1.82335557852362e-05,0.015206785524887,3.71499635645629 +"Q9VG42",-1.06605120352546,17.1374066689286,-15.6082259453213,3.14098599462344e-05,0.0174638821301063,3.2811985473115 +"Q9V9A7",0.900652273363141,16.0013639141188,14.3443122433113,4.63885033587056e-05,0.0193440059005802,2.95005855289624 +"Q9VC18",0.746458766840398,18.1762665968194,12.8544727686304,7.68247591117411e-05,0.0217041282225164,2.49878216501929 +"O16797",0.710830865309042,16.4208913909529,12.248555244674,9.58567321348076e-05,0.0217041282225164,2.29328166115227 +"P41093",0.682156325885902,18.7542459190837,11.3651319559547,0.000134947757122798,0.0217041282225164,1.96744665129504 +"P83967",-1.05753871615993,17.9421170267216,-11.263649342606,0.000140579296003827,0.0217041282225164,1.9278627252734 +"Q9VA42",-0.610450901797364,20.4860866086764,-11.113214507153,0.00014945838795163,0.0217041282225164,1.86832015458678 +"Q8SZK5",-0.834374233481554,15.2980206072436,-10.5561419464999,0.000188818741322524,0.0217041282225164,1.63845102043695 +"Q9VG81",0.538292763588732,15.2658840153453,10.537863485288,0.000190309450772959,0.0217041282225164,1.63064872827028 +"Q9VC06",0.56563625881649,16.1772279326288,10.4205617612663,0.000200221102909503,0.0217041282225164,1.5801699867847 +"Q9VNW6",0.585128940906209,21.4305516906999,10.3252707718399,0.000208733652145113,0.0217041282225164,1.5386374348594 +"P50887",0.671942645995156,17.7820781916292,10.2543389772391,0.000215354286944347,0.0217041282225164,1.50741114170602 +"P48596",0.50326289527607,22.0002645734184,10.1101982840596,0.000229604823819164,0.0217041282225164,1.44312535980709 +"O97125",0.593581263928478,18.4518873806594,10.0622079288232,0.000234599712002362,0.0217041282225164,1.42147133587429 +"Q9VNB9",0.821299967029908,18.8654801415054,9.95931163480612,0.000245757612352681,0.0217041282225164,1.3746139531959 +"Q9VXP3",0.754597634047849,14.6324082727622,9.88376782449566,0.000254357872664267,0.0217041282225164,1.3398354011205 +"Q9W1L1",0.572567504844393,14.9564641410667,9.78316061065564,0.000266381337866878,0.0217041282225164,1.29301483016564 +"Q9VNE9",0.631374145035377,18.6690495379071,9.71086728004906,0.000275445026021571,0.0217041282225164,1.2590109604784 +"Q9VN13",0.491290663549297,16.9428122066297,9.67949629361022,0.000279493401253136,0.0217041282225164,1.2441605752187 +"Q9VQE0",0.630203990759231,17.2227849975681,9.62822306019263,0.000286265480153095,0.0217041282225164,1.21976435368786 +"Q9VFZ4",0.59451550632658,16.4797491851002,9.31756019175613,0.00033179819376477,0.0217675046856725,1.06856995645036 +"Q9VW54",0.475595827924851,15.6950928155802,9.30731424987858,0.000333442833773114,0.0217675046856725,1.06348252736778 +"Q8SXD5",-0.503216755380496,20.6089082593788,-9.29209826339754,0.000335903383503688,0.0217675046856725,1.05591519793282 +"Q8SZN1",-0.554747642937652,20.2477862382824,-9.27130264580798,0.000339301631791058,0.0217675046856725,1.04554947735513 +"Q9VKC7",0.650178225202424,13.6909261854954,9.11308355710128,0.000366557281883499,0.0218694092125467,0.965785770586624 +"Q9VXQ0",0.515741706504627,14.9634414602676,9.03280161829958,0.000381392061685978,0.0218694092125467,0.924696429538094 +"Q9VZU7",0.524687240448316,17.4349338451203,8.92871694377737,0.000401714948363189,0.0218694092125467,0.870794321518786 +"Q9VLC5",0.466930929805507,21.6888156444389,8.92552419039562,0.000402358657963719,0.0218694092125467,0.869129524910905 +"Q8IN44",-0.449554447974631,19.7828549508703,-8.71398314602472,0.00044791356044005,0.0218694092125467,0.757288943637987 +"Q9V8F5",-0.453190283309455,15.9147668126309,-8.71026147241361,0.000448768964696263,0.0218694092125467,0.755293860096589 +"Q24253",0.547344885081777,18.7253301958552,8.62796303909175,0.000468196272304746,0.0218694092125467,0.710929086186475 +"A1ZA22",0.796340308681946,13.4579255325769,8.59880502200847,0.000475320707951475,0.0218694092125467,0.695096685298755 +"Q9VZF6",0.543579729212098,15.0056447466589,8.58492904497921,0.000478756861762359,0.0218694092125467,0.687541092775067 +"O17444",0.490840743766393,15.3279814255469,8.5113290295729,0.000497489721769717,0.0218694092125467,0.647235831219948 +"Q9W0S7",0.471226656007783,17.7333951889781,8.45164961730151,0.000513328808144651,0.0218694092125467,0.614267923721618 +"Q9V597",0.47199678797168,20.1554027302553,8.38232535098274,0.000532494845682468,0.0218694092125467,0.575646611611044 +"P21187",0.555868340074156,18.8425546206978,8.31547553267421,0.000551796320929764,0.0218694092125467,0.538068643679674 +"Q9VHC3",0.446788886463267,17.0592649265387,8.30252396997494,0.000555632349865817,0.0218694092125467,0.530749841011557 +"Q9VSL3",0.439702485926158,22.6459189941429,8.2924573938302,0.000558636026256415,0.0218694092125467,0.525052659610238 +"Q8IPG8",0.553800156629229,15.9092631760493,8.20981472401187,0.000584046460264392,0.0218694092125467,0.477992930192945 +"Q7K148",0.481160183148869,16.619185121837,8.18849124924397,0.000590826596273259,0.0218694092125467,0.46576663072787 +"Q9VEY0",0.426122258562998,18.1517346981025,8.16657421919926,0.000597894169967396,0.0218694092125467,0.453163842297015 +"Q76NQ0",0.542101741016749,14.3198799651075,8.16452441360808,0.000598560345322675,0.0218694092125467,0.451983277970248 +"Q9W3Y3",-0.403774167073404,18.118486912282,-8.10345330705626,0.000618823080432753,0.0218694092125467,0.41666173919509 +"Q9W3J5",0.636140283547071,15.9058082438369,8.07748578404308,0.000627687699886149,0.0218694092125467,0.401555560827024 +"Q9VHR8",0.421720394802691,20.3363922401522,8.07270726711216,0.000629335516907819,0.0218694092125467,0.398770023301173 +"Q9VWV6",-0.551633910151406,23.8983830830868,-8.01807280524068,0.000648549511415161,0.0220449716085859,0.366795083524765 +"Q9VJD0",0.41554279776137,16.1497596678217,7.9554356657912,0.000671451082553142,0.0220449716085859,0.329847188201919 +"Q9VHT3",-0.4129857938194,15.8199892822815,-7.89510853274638,0.000694431155505688,0.0220449716085859,0.293966440478691 +"Q9VLB7",0.401775596828731,20.8901852779219,7.86517467513967,0.000706183458977792,0.0220449716085859,0.276054049649026 +"Q8I099",0.426987308110627,16.7963113423881,7.85918255019536,0.000708564593631322,0.0220449716085859,0.272459659971044 +"Q9V3I0",0.565213838857268,16.392906514792,7.83010955778161,0.000720255163168554,0.0220449716085859,0.254978754565327 +"Q9VSC3",0.411253909003058,17.4793796977495,7.80700807473712,0.000729709732357844,0.0220449716085859,0.241039244902662 +"X2JAU8",-0.458459676452968,21.8467033211288,-7.73362255323783,0.000760746834851318,0.0220449716085859,0.196467273083689 +"Q9W253",0.566806055001235,15.1333057542366,7.73285630603061,0.000761079163831543,0.0220449716085859,0.195999530891924 +"Q7JPS2",-0.488595501669774,20.8347412451404,-7.70894402582137,0.000771538171645748,0.0220449716085859,0.181378154693029 +"Q9VTM6",0.418788501477,16.4707585105834,7.69039945404291,0.000779768180399622,0.0220449716085859,0.170006076349186 +"P17336",0.519412394788667,20.6412636591518,7.65671408516573,0.000794988481029799,0.0221006797726284,0.14927548957542 +"Q9VR79",0.61432370662336,20.3211832276177,7.58310569120373,0.000829505033842088,0.0224728460479599,0.10364196698569 +"Q9VR94",0.383063494115117,16.1473391894294,7.56126619243992,0.000840089630151149,0.0224728460479599,0.09001380343663 +"Q9VBC1",0.411115115559726,13.5920699508906,7.4997168333105,0.00087080222925624,0.0224728460479599,0.0513853693515012 +"Q9W370",0.595912083193731,18.3065033115352,7.48631845713295,0.000877665133845391,0.0224728460479599,0.0429330821825396 +"Q9VMR6",-0.391162978877965,18.8558128022898,-7.48563024531319,0.000878019395432491,0.0224728460479599,0.0424985062533203 +"Q9VA09",0.464469958769801,16.2975200967873,7.44434643933038,0.000899587384780178,0.0224728460479599,0.0163539638421755 +"Q9VIE8",0.413987873253209,24.8171822488906,7.42517552853107,0.000909818397609499,0.0224728460479599,0.004162485910844 +"A8JTM7",0.36917611792974,17.5826692258792,7.40948923394225,0.00091829356930157,0.0224728460479599,-0.00583706609110024 +"Q9W3E2",-0.72922327580573,17.5664020632755,-7.3811911531962,0.000933823211647528,0.0224728460479599,-0.0239312699584371 +"Q7K485",0.411048102799676,20.4854942967759,7.36454555506335,0.000943105049974338,0.0224728460479599,-0.0346078984768008 +"Q0E9B6",0.418207882374197,18.9913164065464,7.26926246902456,0.000998413999773394,0.0234556979101693,-0.0962007129376321 +"Q9VV36",-0.417345411543479,23.0951464977888,-7.14303942612757,0.00107778514635793,0.0249686892239586,-0.179064634881638 +"A1Z8Z3",-0.362528130960666,19.9216338464977,-7.1115358097739,0.00109875890781934,0.0251058884690776,-0.199975954955177 +"Q9VMY1",0.416473438918668,15.6758639287253,7.06142517397638,0.00113313582909311,0.0255414940936123,-0.23342965071548 +"Q9VIX1",-0.434212049069499,17.1866797232223,-7.03729029977201,0.0011501513028396,0.0255793649751527,-0.249626492521601 +"P10676",-0.387325042492588,19.7987007059331,-6.96781130954975,0.00120086900197092,0.0263559144116776,-0.296563140997001 +"Q9W5W7",0.345119163932569,14.9235142275545,6.92607842864478,0.00123261915244046,0.0263712505488278,-0.324978659760678 +"P18432",-0.461584566730501,23.4890159232902,-6.92534251604163,0.0012331879753049,0.0263712505488278,-0.325481246849967 +"Q9Y156",0.379882899342849,16.1832999061761,6.86751483077511,0.00127888364092776,0.0270022520641455,-0.365139146486973 +"Q6IHY5",-0.412990394838619,20.8505207926339,-6.78210463352457,0.00135013494847049,0.0277369565971658,-0.424314031916321 +"P91927",-0.348998544720086,19.2024090057132,-6.77669052537005,0.00135480934038373,0.0277369565971658,-0.428089490974601 +"P54385",0.452651269708358,21.2572468773143,6.74840373005941,0.0013795481640616,0.0277369565971658,-0.447862584881523 +"Q6WV19",0.376436304335652,13.637129785178,6.7316891314968,0.00139441997628308,0.0277369565971658,-0.459584186693189 +"Q9VLR5",-0.429613748853885,16.9380565035252,-6.72582802188043,0.00139968020205751,0.0277369565971658,-0.463701120548343 +"Q7KVQ0",0.404833717038457,15.5957120402217,6.68962400401752,0.00143270316709383,0.0277369565971658,-0.489208319223537 +"P09180",0.361466029425412,20.5940266567118,6.68521373009161,0.00143678920747398,0.0277369565971658,-0.492324612664159 +"Q8MZI3",0.405456297567031,17.7450487793717,6.67456587211378,0.00144671176496009,0.0277369565971658,-0.499856526419901 +"Q9W3L4",-0.365853797135648,17.5979966314991,-6.65105902672163,0.0014689086826196,0.0278424963932896,-0.516525351529201 +"Q9VM07",0.332871835553281,17.0952048969791,6.61559188092237,0.00150317424298202,0.028171849857236,-0.541782388967331 +"Q7K511",0.389322275702016,16.7827076050032,6.5864995271792,0.00153199534124819,0.0283929803244664,-0.56259650636492 +"Q9VXC9",0.509081728312694,18.8396396200947,6.52188376551806,0.00159840305866542,0.0288663175537339,-0.609140326361327 +"Q7JRN6",-0.422316235617121,14.9507042731206,-6.50565715545639,0.00161561591236582,0.0288663175537339,-0.620897251940155 +"Q9V521",-0.470328962353561,17.5086639719641,-6.47804627695481,0.00164541624585059,0.0288663175537339,-0.640966375819917 +"Q9V3A8",0.452442507592211,15.3233691972988,6.47662332183779,0.00164696972987512,0.0288663175537339,-0.642002842005439 +"Q9VB22",-0.442308511965887,17.254029219692,-6.45998247857704,0.00166526758892325,0.0288663175537339,-0.654139797047184 +"Q9VE24",0.348246225787289,16.1573294124467,6.44843658238701,0.00167810578034385,0.0288663175537339,-0.662578048555474 +"A1Z803",0.428178486900443,18.7378024447702,6.43709959841958,0.0016908267381851,0.0288663175537339,-0.670877430261315 +"Q9VAA6",-0.394896302016591,16.2737570589173,-6.43253353548443,0.00169598268601075,0.0288663175537339,-0.674223947245895 +"Q9V3N7",0.416892233600027,20.4821849499853,6.40539004090084,0.00172702290797443,0.0290977192979934,-0.694163747738755 +"Q7JYW9",0.340520327177376,16.8424050789821,6.35789093538646,0.00178298759479058,0.0297402330811068,-0.729247557585615 +"Q24276",-0.484191723695666,18.7035262982679,-6.33472507876521,0.00181106575022518,0.0299094818948079,-0.746446919961129 +"P22979",0.372013200688006,19.5725357219099,6.25271146259428,0.00191479973989063,0.0311775128364353,-0.807808985806631 +"Q9VMU0",-0.320423202523475,21.1692119939293,-6.24475912161885,0.00192523010920434,0.0311775128364353,-0.813798274328586 +"A1Z847",-0.324676618652834,20.2105024384,-6.21318647097907,0.00196731491020382,0.0315527045213458,-0.837646417422789 +"P23779",-0.367585491410221,21.0539189508054,-6.14774748114379,0.00205808522631868,0.0321905212499628,-0.887430043518467 +"Q9VSY0",-0.423761862841211,22.474034714084,-6.1456955944711,0.00206101113860904,0.0321905212499628,-0.888998835502457 +"Q9VV31",-0.937046168441297,15.6196882999564,-6.13714459130021,0.00207325801823473,0.0321905212499628,-0.895541722693825 +"A0AQH0",0.310131716848211,16.8967146429751,6.1238981227381,0.00209240141086816,0.0321905212499628,-0.905693742963826 +"Q9W4I3",0.474211777221297,16.6621143263011,6.10925820553987,0.00211380402114028,0.0321905212499628,-0.916936867242558 +"Q9VKD3",0.334875707174085,18.6561904894478,6.10029940247408,0.00212702981578412,0.0321905212499628,-0.923829053808922 +"Q9VAJ9",0.374226933416882,17.3880450783144,6.08764317887567,0.00214588242061995,0.0321905212499628,-0.93358134214399 +"Q7JWQ7",0.325568542883738,14.2665536172837,6.07727588316079,0.00216147384891837,0.0321905212499628,-0.941583532476104 +"Q9VIK6",-0.318014670631186,16.6916448294787,-6.01960807670821,0.0022507039446498,0.0325793706784135,-0.98632092369365 +"Q9VMB9",-0.345940688271053,22.5887056996598,-6.00990657312346,0.00226614272472869,0.0325793706784135,-0.993884875536462 +"Q9VSA9",-0.399888630834727,22.3307441873751,-6.00645325747659,0.002271668659937,0.0325793706784135,-0.996579950720899 +"Q9VK00",0.488371677433378,17.2821802595613,5.99918751602567,0.00228334762987503,0.0325793706784135,-1.00225488621449 +"Q9VAC1",0.311113277975064,23.2638664548554,5.9980121484932,0.00228524362672325,0.0325793706784135,-1.00317348838494 +"Q9W483",0.316554114583353,15.6042467199103,5.974998869262,0.00232274680374977,0.0325832554915753,-1.0211918224239 +"Q9VFQ9",0.447297339072794,19.0800558688986,5.96322471773371,0.00234221739021524,0.0325832554915753,-1.03043435670573 +"Q94523",0.299886907137324,20.0363204609209,5.96208097204676,0.00234411910011333,0.0325832554915753,-1.0313330448873 +"Q9W0Z5",-0.384302969411074,17.1200106975698,-5.9259623440491,0.00240512972756703,0.0327643051423023,-1.05979196859052 +"Q01637",0.310483528782417,15.9194399547935,5.92251522121937,0.00241105069242844,0.0327643051423023,-1.06251608729369 +"P32392",0.470885052532783,17.6713837621443,5.90362872588793,0.0024438006142448,0.0327643051423023,-1.07746623212733 +"Q9VCK6",0.316387399399039,16.7803739598168,5.88764861855651,0.00247192466152043,0.0327643051423023,-1.09014875299169 +"Q9VU04",-0.407079575262506,16.7325184919402,-5.88283202855675,0.0024804769607316,0.0327643051423023,-1.09397736211869 +"M9PEG1",-0.316921561264152,20.3246036758449,-5.8705205568216,0.00250249753787539,0.0327643051423023,-1.10377605248261 +"A8JNG6",-0.327016080839435,15.5802542952941,-5.84041692744957,0.00255732815657889,0.0327643051423023,-1.12781174778345 +"Q9VCA5",0.340874953284308,14.0988826887914,5.83385012438127,0.00256947798497014,0.0327643051423023,-1.13306931673027 +"Q9VED8",0.458767077405849,16.4413310209794,5.83372138807699,0.00256971685652905,0.0327643051423023,-1.13317243842496 +"P82890",-0.380014863874226,19.6610648656161,-5.81184465473859,0.00261069558286223,0.0327643051423023,-1.15072532612948 +"Q9VFN7",-0.302808996284885,18.8680411215186,-5.81061034772134,0.00261303070507663,0.0327643051423023,-1.15171739605263 +"Q0E8X8",0.388784601936287,20.025909806505,5.80955183629581,0.00261503522638269,0.0327643051423023,-1.15256831733054 +"Q7JVK6",0.356142008819724,17.3446065539195,5.80649266557599,0.00262083871397345,0.0327643051423023,-1.15502829861176 +"Q9VAY9",0.443589910309067,14.6259329733115,5.80055618884026,0.00263214441790678,0.0327643051423023,-1.15980524320526 +"Q8MSI2",-0.291370633745927,24.2423316931338,-5.77122304536543,0.00268886605423152,0.0330467857887484,-1.18347158388697 +"P45437",0.51869542326795,15.93558288272,5.76836897881377,0.00269446215064136,0.0330467857887484,-1.18577985597923 +"Q7K3E2",-0.292256238751698,20.3950667273432,-5.73975699664272,0.00275133471142106,0.0333357221810199,-1.20897511845077 +"Q8IN43",-0.660066493973943,17.5333607067319,-5.73645407452897,0.00275799140346568,0.0333357221810199,-1.21165918105564 +"Q9VCX3",0.578751131541109,12.9520743445143,5.71985056542793,0.00279174531892382,0.0334047761423288,-1.22517198548468 +"Q9VVL8",-0.291818193570249,15.9786737763096,-5.7073500863316,0.00281748215139033,0.0334047761423288,-1.23536786553227 +"Q9VA37",-0.289382014725813,21.8230639055693,-5.70392584708675,0.002824581318706,0.0334047761423288,-1.23816416394349 +"Q9VNZ3",0.315069228417384,15.1321400384332,5.69008624889808,0.00285349105206961,0.0334047761423288,-1.24948056860291 +"Q9I7Q5",-0.417327906174869,20.6239132838747,-5.68517305869677,0.00286383872203418,0.0334047761423288,-1.25350368832179 +"Q9VNC1",0.429652483120574,15.5390311284999,5.65690900850406,0.00292423868822777,0.0338536972999553,-1.27670550024104 +"A1Z6L9",0.361888354190647,15.1244597218337,5.64830845995116,0.00294291733123113,0.0338536972999553,-1.28378532914657 +"Q9VV46",-0.351577168242656,24.081381733136,-5.60347513543722,0.00304261138624108,0.0347607930976035,-1.32084088178493 +"Q6IGM9",-0.278115234933734,14.7565078411683,-5.58001817215558,0.00309636748437189,0.0351342922716484,-1.34032894682669 +"Q9VQ91",-0.397220495036839,14.940391754818,-5.55272052155338,0.00316035088696068,0.0356180086449353,-1.36309527853127 +"Q6NLJ9",-0.427691534079919,15.122066810648,-5.54229331970991,0.00318520464636298,0.0356571902693521,-1.37181651666499 +"Q7JWF1",0.378406429495158,20.585061350099,5.53175510372505,0.00321055898096928,0.0357014158683784,-1.38064464409177 +"Q9W1H8",0.320262791029968,20.384318683365,5.5116060028484,0.00325970628325846,0.0359604641066848,-1.39756343952397 +"Q9VW00",-0.292874946795282,15.690046110138,-5.50461259227451,0.00327697274833099,0.0359604641066848,-1.40344778686976 +"Q9VXE0",0.340973758577544,18.1172290320684,5.49148012342282,0.00330969034116773,0.0360821143076325,-1.41451453840579 +"Q9VZG1",-0.355184589742322,17.7389305618792,-5.47904817435916,0.00334102022782403,0.0361871541559122,-1.42501134853296 +"Q9VZD9",0.383883063084781,14.3999681338154,5.45904415607688,0.00339217404582755,0.0365041697318733,-1.44194331367866 +"Q9W1R3",-0.34745228195608,16.970161178702,-5.44806577237482,0.0034206422703872,0.0365745596602939,-1.4512576693154 +"Q9VN14",0.280640324631186,19.3519530917296,5.4170807929651,0.00350253083418335,0.0372116014739989,-1.47763036258469 +"Q9VCK0",0.349785361923086,18.1928804299884,5.40388135431043,0.00353811942598335,0.0373517924211407,-1.488902891381 +"Q8IN49",0.456880425523771,16.8127675831439,5.37468999179111,0.00361835910466169,0.0379586351356963,-1.51391355979667 +"Q9I7K0",-0.353838105862749,16.3462495731419,-5.34258463054605,0.00370911135848467,0.0386674859122027,-1.54154996438859 +"Q9V3V0",0.376469714446882,14.5320617412328,5.28922473972918,0.00386598124434153,0.0397551228649369,-1.58778357326012 +"A1Z9A8",0.336179124065996,16.6193595958516,5.28338070204979,0.00388363474869275,0.0397551228649369,-1.59287011502775 +"Q7JZN0",0.270390708417535,16.6647752822188,5.28060782344707,0.00389204435943363,0.0397551228649369,-1.59528517023346 +"A1ZBA5",0.280697211740907,15.6083178562313,5.26121048336503,0.00395147948952066,0.0397551228649369,-1.61220812377455 +"Q8IRD0",0.277594728865925,17.5451469928253,5.25091991866372,0.00398344665353364,0.0397551228649369,-1.62120643755537 +"Q9VFB2",0.269678295480929,16.4411403505784,5.25085947931889,0.00398363530779086,0.0397551228649369,-1.62125932909719 +"Q9VTU2",-0.274500456533254,20.826307804155,-5.24600513983272,0.00399882214620738,0.0397551228649369,-1.62550904872192 +"Q9VKU3",0.288824783296839,15.5693701457586,5.24431905760616,0.0040041130943102,0.0397551228649369,-1.62698586564514 +"Q9V3E3",0.429356122110651,15.000369867789,5.23036128654396,0.00404823241864055,0.0399553353508429,-1.63922596889215 +"P91926",0.291337037812045,17.5840209143888,5.21505772608487,0.00409726847255569,0.0402014341895464,-1.65267640445873 +"O18413",0.258882415900089,19.4079890249618,5.19521772621844,0.0041618904944705,0.040580302807083,-1.6701610543744 +"Q9W3R8",-0.330695508728661,17.2719344050007,-5.18835017476121,0.00418453961799657,0.040580302807083,-1.67622572982209 +"Q8SXQ1",0.322087491138163,18.6434112685149,5.11967562993482,0.0044192354248732,0.0422834409788507,-1.73722496161288 +"A1ZAL1",-0.31902467093772,17.3505625775267,-5.11635571198885,0.00443097026075629,0.0422834409788507,-1.74019018947953 +"P19334",-0.344872586512036,15.419499531634,-5.11487602727923,0.00443621233291299,0.0422834409788507,-1.74151227722062 +"Q9VDC6",0.422559676548344,16.9030220171208,5.06744475025193,0.00460819686598731,0.043032486366046,-1.78405172429206 +"Q9W369",-0.291331022399937,22.1684204894567,-5.06113567653411,0.00463166231954138,0.043032486366046,-1.78973356202882 +"Q4V5H1",0.299203163874797,14.9563850749753,5.05560043321361,0.00465236598989925,0.043032486366046,-1.79472305252146 +"Q94901",0.338815934439054,19.0474109690414,5.05351653214215,0.00466018879765029,0.043032486366046,-1.79660259220567 +"Q8SXF0",0.33493219585923,16.3454284878734,5.05344106984788,0.00466047236885442,0.043032486366046,-1.7966706654829 +"Q7K569",0.25793737036917,20.3957876759851,5.05055504087265,0.00467133276407531,0.043032486366046,-1.79927469823826 +"Q8SZK9",0.275934113197287,22.3427952503278,5.04418991258271,0.00469539119821366,0.043032486366046,-1.80502198033817 +"Q9VDV2",0.256113824514376,14.2595603268696,5.02052138701445,0.00478614512083038,0.0436245358554376,-1.82644260157321 +"Q9VGA3",0.303364502730872,19.4699561044887,5.00828844134336,0.00483386227288625,0.043646922397928,-1.83754441058138 +"Q8IM93",-0.318173498959386,19.1659605015581,-4.99981385962571,0.00486724868101814,0.043646922397928,-1.84524766874089 +"Q6IGW6",0.303123496113811,15.7562899964543,4.99340111563812,0.00489269334430479,0.043646922397928,-1.85108344644691 +"P13060",0.252638232407126,20.0023075469381,4.9932562200472,0.00489327007698593,0.043646922397928,-1.85121537222613 +"Q7K5M6",-0.288882480066132,18.2431933525148,-4.97872654782679,0.00495151275510616,0.0439315067846653,-1.86445946018649 +"Q9VY28",0.287991754614508,15.2313399570071,4.95616753829758,0.00504357131473959,0.0445115182697653,-1.88508138820263 +"Q9W5B4",-0.297304206931464,18.6156874457017,-4.92971561267007,0.00515410140026805,0.0448686064081534,-1.90935361276611 +"Q9VH64",-0.439878373810291,17.5297696305471,-4.92439029133571,0.00517669766913919,0.0448686064081534,-1.91425211565278 +"Q86BS3",-0.286352924866279,19.0203224663779,-4.91368061861975,0.00522249555507708,0.0448686064081534,-1.92411562773482 +"Q9VG69",-0.282664018575769,19.9817350416006,-4.90236372226873,0.00527141046227936,0.0448686064081534,-1.93455613414258 +"Q9VXZ0",-0.286889110930261,19.7139580836469,-4.90085833997514,0.00527795780556385,0.0448686064081534,-1.93594631440734 +"Q9W086",0.312576455590644,16.9269990393199,4.89906056443719,0.005285789423604,0.0448686064081534,-1.93760693568891 +"P42281",-0.282817384527846,21.8652255572914,-4.883178348472,0.00535557555486711,0.0448686064081534,-1.95229753544264 +"Q9VN86",0.276952775176825,15.1994465128554,4.88305618949692,0.00535611651506449,0.0448686064081534,-1.95241066880893 +"Q7K3N4",0.296565851831982,16.9650078699634,4.87500221744057,0.00539192475662174,0.0448686064081534,-1.95987429437009 +"Q9V931",-0.310261305952137,17.7286847562652,-4.87115383917334,0.00540913441514461,0.0448686064081534,-1.96344387243149 +"Q9I7K6",-0.254067084354153,16.3144979284304,-4.86532604720207,0.00543531933353814,0.0448686064081534,-1.96885350689903 +"P02515",0.316394825726881,17.6391413719267,4.85983314442516,0.00546013648113446,0.0448686064081534,-1.97395674397178 +"Q9VBC7",0.32456055906615,16.1436904031242,4.85972795763874,0.00546061302122234,0.0448686064081534,-1.97405451110956 +"Q9W1F8",-0.381637895279242,17.7018289555397,-4.85972470489182,0.00546062775830644,0.0448686064081534,-1.97405753444007 +"O77410",0.308541034371464,14.0314828218824,4.85377022236626,0.00548768426994134,0.0448698890306968,-1.97959459621025 +"Q9VJQ3",0.240755389811628,20.4797149412976,4.83619888412558,0.00556845266186196,0.0451491188801443,-1.99596389281682 +"Q8SWS3",-0.281830627466576,16.4931505034776,-4.83457870028264,0.00557597031733197,0.0451491188801443,-1.9974754814554 +"Q95SS8",0.275759398316792,15.6607093080053,4.821143351569,0.00563877341382691,0.0454370727259096,-2.01002490618744 +"Q9VXK6",-0.299587606607684,17.7753759617279,-4.78341177916814,0.00581965640267998,0.0460619627202749,-2.04540821467447 +"A8JNT7",0.256033625834768,16.8518597708813,4.77142654877079,0.00587853756395866,0.0460619627202749,-2.05669081062495 +"A1ZB23",-0.245067810432726,15.9031308697085,-4.76812168143353,0.005894896986256,0.0460619627202749,-2.05980561065173 +"Q9VRP3",0.236586652517612,17.9606770676961,4.76403973956625,0.00591517707784215,0.0460619627202749,-2.06365499312718 +"Q7JXZ2",0.566460337904786,17.3968019554637,4.76288036358043,0.00592095211906132,0.0460619627202749,-2.0647487595597 +"Q27377",-0.237972193061101,20.2293066729353,-4.76276539769322,0.00592152514472512,0.0460619627202749,-2.06485723017116 +"Q9VZU4",-0.24186886952706,21.4572546731564,-4.76173917616709,0.005926643045874,0.0460619627202749,-2.06582555829342 +"Q9VFC2",0.287112071218012,19.7329113964709,4.75935970271174,0.00593852984769958,0.0460619627202749,-2.06807138728857 +"Q9V3W2",-0.251593058428615,21.5260307325581,-4.75398362431076,0.00596548990056094,0.0460619627202749,-2.07314855988663 +"Q7K4T8",0.358719341814343,13.3816254379186,4.74722697188175,0.00599957795403979,0.0460619627202749,-2.07953553842953 +"Q9VSS2",0.378464814277633,16.1297487194679,4.74172910449476,0.00602748463458577,0.0460619627202749,-2.08473753147998 +"Q9VPL3",0.394510454305872,15.9557120577058,4.73776444911965,0.00604770373845336,0.0460619627202749,-2.08849157065229 +"A1Z9B5",-0.342970416932227,16.0469647335285,-4.73094232682577,0.0060826827024049,0.0461177943073244,-2.09495667018486 +"Q8MSV2",0.333649325636994,18.3918364603652,4.72251523109266,0.00612622017749669,0.0461575285362634,-2.10295217527834 +"Q9VAM6",-0.278519242310828,22.1202668014595,-4.715686872235,0.0061617672091948,0.0461575285362634,-2.10943847136525 +"Q9V406",-0.257842178125532,16.9942796351359,-4.71098598873825,0.00618638017305747,0.0461575285362634,-2.11390785060126 +"Q7K0P0",-0.314122348935856,15.1953336859751,-4.70203029880414,0.00623359148556388,0.0461575285362634,-2.12243149954045 +"Q9VPF6",0.353343425041045,14.0586590562919,4.69627321914376,0.00626416475350214,0.0461575285362634,-2.1279170847524 +"Q9W0M4",0.24923102029247,17.7751686933459,4.69311182630814,0.00628102853793217,0.0461575285362634,-2.13093147014589 +"Q7K5J8",-0.274199321153755,18.2829138356475,-4.69299924145669,0.00628163008257302,0.0461575285362634,-2.1310388468942 +"Q9VW34",0.461246085763289,18.4845217086004,4.67604757604998,0.0063729819406552,0.0466233941974249,-2.14722769739614 +"P49963",0.240171217357663,15.0286940593038,4.66217024863555,0.00644893141292587,0.0469730026059404,-2.16051219185321 +"P12370",0.257273899680772,20.7209713473918,4.63767578642442,0.00658560178041047,0.0470317745677839,-2.18402996434999 +"Q9VM10",0.267191935772791,16.9069386748058,4.63270134553033,0.00661377190527158,0.0470317745677839,-2.18881694970915 +"Q9VAQ4",-0.433780259269348,15.8095219049789,-4.62834951338329,0.00663853247032501,0.0470317745677839,-2.19300781005898 +"Q9W314",-0.262646523175835,16.2829403807419,-4.62440162964194,0.00666108902981607,0.0470317745677839,-2.19681210476782 +"Q9V3H2",0.285341505229702,18.47690555187,4.62037710701662,0.00668417628225293,0.0470317745677839,-2.20069264257293 +"P09208",0.674289617021337,12.9511335075448,4.61834564750967,0.00669586576477221,0.0470317745677839,-2.20265234031034 +"Q7JXW8",0.34450903156624,15.0437191344039,4.61819113164167,0.00669675586753122,0.0470317745677839,-2.20280142306782 +"Q9W3M7",0.347153441795374,16.0944066370234,4.6179781594917,0.00669798294104768,0.0470317745677839,-2.20300691249786 +"Q86BN8",-0.474384293648406,14.1554007544894,-4.61576175904018,0.00671076879324495,0.0470317745677839,-2.20514584209096 +"Q9Y143",-0.253251947958898,21.0284687513091,-4.60354221114536,0.00678177758910768,0.047330564931513,-2.21695144685695 +"Q9VBI2",-0.229895825643929,22.1519443837149,-4.58275004775461,0.00690464294143902,0.0479872684430012,-2.23709060814603 +"Q9VN50",0.289441404023403,17.8643472468821,4.57649489421648,0.00694211655722709,0.0480475121056216,-2.24316199074898 +"P08182",-0.235746644310719,19.720194935455,-4.55266460998138,0.0070870863858874,0.0487496308493266,-2.26634602463333 +"P48611",0.297375091115622,20.2928883263457,4.5501389316911,0.00710265862432422,0.0487496308493266,-2.26880821818803 +"Q9W266",-0.276583429808543,18.494010682764,-4.54552001199814,0.00713124096357055,0.0487496308493266,-2.27331352477676 +"Q9VU95",0.340229729439573,16.2586845007446,4.53262715703242,0.00721174087592825,0.0490987093104013,-2.28590627948137 +"Q7JX94",0.511843496175016,12.0383291093054,4.52634556643144,0.00725134800898631,0.0491676767438584,-2.29205075175139 +"Q9VWP2",-0.284880743105393,19.7269683510103,-4.51282254052518,0.00733748444558382,0.0495502998187603,-2.30529884294063 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_results.csv new file mode 100644 index 0000000..68f91af --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q7K511",1.13145574265622,16.7389350435651,14.1853499061444,1.77269379697615e-05,0.0164091674164789,3.73689974552785 +"P10676",-1.21936335245132,19.8791716804251,-13.6205489088466,2.19591489761324e-05,0.0164091674164789,3.55391328636115 +"Q9VAJ9",1.02993577931089,17.7647694786655,12.3405829699411,3.6869071226856e-05,0.0164091674164789,3.09533357290157 +"Q9VG42",0.952030965500544,16.0678907130358,11.6393538954814,5.00572530828175e-05,0.0164091674164789,2.81499443780398 +"Q9Y119",-0.877080346675001,18.0586403625904,-11.5406632699376,5.23306444575497e-05,0.0164091674164789,2.77371367180669 +"Q9VC06",0.931468039905168,16.4772260640617,11.0943591822326,6.42615061027432e-05,0.0164091674164789,2.58104777076031 +"Q9VC18",0.893125705021049,18.2227407499384,10.9012677161862,7.04007910980556e-05,0.0164091674164789,2.49453899611184 +"Q9W299",0.849737446857917,14.8399259750296,10.6140142739001,8.08622992803719e-05,0.0164091674164789,2.36214973168511 +"Q9VA09",0.82209298305926,16.3788178837498,10.4027255686372,8.97363662358723e-05,0.0164091674164789,2.26184797711538 +"Q8MSI2",-0.828909795841703,24.0683463846717,-10.2194184730707,9.83763034561087e-05,0.0164091674164789,2.17274932205569 +"O17444",0.788730468020319,15.3025801828247,9.77131740914759,0.000123967235009726,0.0172869442902144,1.94643332339383 +"Q9VN13",0.872007094076533,17.0646185129127,9.62422709135812,0.000134024206720064,0.0172869442902144,1.86939827004644 +"Q9VNW6",1.18934205871869,21.698235349896,9.31830266322279,0.000158185475509069,0.0172869442902144,1.70461130815614 +"P19334",-1.07048355174927,15.4394409843122,-9.22818395924625,0.000166255982318927,0.0172869442902144,1.65485681446596 +"Q9V4E7",1.0747637179047,15.8321309188353,9.1905216053406,0.00016977157763818,0.0172869442902144,1.6338960603786 +"Q9V521",-0.903543805715584,17.9799826510396,-9.13956272398063,0.000174668406442744,0.0172869442902144,1.60537654876204 +"Q8IN43",-1.6600611023567,18.3672969896568,-9.124111034687,0.000176185883053744,0.0172869442902144,1.59669263541443 +"Q9VLC5",0.826305766797031,21.7947773707434,8.89163640276511,0.000200997024732748,0.0177137634200204,1.46396940883121 +"Q9V3B6",-0.964637367854531,13.0386548675104,-8.86041644230608,0.000204632712800189,0.0177137634200204,1.44584485922109 +"Q9VH81",0.693932457160038,14.4976205073759,8.76671016825559,0.000216018149052612,0.0177137634200204,1.39100804279299 +"O97125",0.680032398967487,18.4577173299345,8.71097602877552,0.000223142595758572,0.0177137634200204,1.35807887574121 +"Q70PY2",0.670791349096611,17.1883557202946,8.5748371136582,0.000241737123605735,0.0177137634200204,1.27664466124808 +"Q6NMY2",0.665732268376967,19.9757141914841,8.51827980432939,0.000249992973678797,0.0177137634200204,1.24239059720224 +"A1Z803",0.718109352158109,18.7807454906944,8.46428666452817,0.000258184902951893,0.0177137634200204,1.20945442273488 +"Q9W3J5",0.641812615876985,16.2031123979168,8.41778230589624,0.000265494056055462,0.0177137634200204,1.18090068301776 +"Q9VXZ8",0.671637072649116,17.9012316930004,8.11359450864802,0.00031976971286893,0.0190057487155537,0.989786727002937 +"P54385",0.675734697769741,21.726164611656,8.05195020786105,0.000332299140064776,0.0190057487155537,0.95011660035744 +"Q7JUS9",0.635324212332126,20.6160348482208,8.01712118427577,0.000339632503583925,0.0190057487155537,0.927559512838818 +"Q9W1H8",0.693147886170312,20.6522107423889,7.96978460163719,0.000349905741933201,0.0190057487155537,0.896734382851835 +"Q8SWS3",-0.598690283481979,16.4900712014356,-7.86994271691422,0.00037279261146575,0.0190057487155537,0.831078591149934 +"Q9V3N7",0.640349716570459,20.5178492298089,7.84416173105868,0.000378984466965891,0.0190057487155537,0.813982621437767 +"Q8SZK5",-0.835753976833365,15.5214032777657,-7.84144667002064,0.000379643533614923,0.0190057487155537,0.812178772290273 +"Q9VT23",0.684175012715087,18.2215927384901,7.82849178035263,0.000382806814107302,0.0190057487155537,0.803562702088464 +"Q7K2E1",0.632452840021926,17.3974212875768,7.78775105241798,0.000392957903271411,0.0190057487155537,0.776369227263162 +"Q9VZF6",0.60573299119015,15.0173893940554,7.70799400790856,0.000413757967281262,0.0190057487155537,0.722701368026124 +"Q9VV31",-1.33125889925796,15.9763980324338,-7.70576747912606,0.000414356879722107,0.0190057487155537,0.721194890936433 +"Q94523",0.615649965146758,20.6223821061284,7.64160931158519,0.000432058940588173,0.0190057487155537,0.677590726077255 +"Q7JWF1",0.615678105214002,20.431252619972,7.60805660495057,0.000441668595744724,0.0190057487155537,0.654636476438814 +"Q01637",0.592141656149098,15.9015162845187,7.59770708945292,0.000444683091586462,0.0190057487155537,0.647535099072912 +"Q9VA42",-0.900703808004518,20.1783958127241,-7.56032654975896,0.000455773350492895,0.0190057487155537,0.621803313768336 +"Q9VCK6",0.63730395461242,16.3239722854002,7.51547037098143,0.000469511680022845,0.0191011093238562,0.590753091361068 +"Q7JYW9",0.634959807085428,17.410341931805,7.43122643143545,0.000496645874571386,0.0197239361615493,0.531924532402309 +"Q9VED8",0.63866577649093,16.0758039737784,7.37869040241777,0.000514496384369665,0.0199576737006651,0.494894994457587 +"Q7JYX5",0.836290728650789,14.886772505262,7.30305288738062,0.000541531930680792,0.0200157622850457,0.441113837799511 +"Q9VX69",-0.695850558356593,18.1249648157637,-7.27902286726122,0.000550466521828624,0.0200157622850457,0.42391070121308 +"Q8SXQ1",0.635688601796939,18.5550153059178,7.27496178553916,0.000551993444311812,0.0200157622850457,0.420997762887201 +"Q9VXP3",0.593633551699112,14.413321212194,7.22116032086526,0.000572697073791982,0.0200830389501483,0.382253331032723 +"Q8IN44",-0.677169634636606,20.0134174664991,-7.20792336845342,0.000577929178421533,0.0200830389501483,0.372676924425963 +"P14318",-0.600195345467263,22.2384794319138,-7.12589640856576,0.000611626503926606,0.0203908175916043,0.312942823476942 +"Q9W3K9",0.603293642884847,19.2742992717938,7.11423219535133,0.000616602504474384,0.0203908175916043,0.304393627591631 +"Q7K148",0.558381038359091,16.8922248235317,7.0408320993605,0.000649023590685535,0.0203908175916043,0.250278009785687 +"Q9VFN7",-0.548326424038752,18.5812010493369,-7.03811677366396,0.000650260657410079,0.0203908175916043,0.248265515341608 +"Q9VZU7",0.551736284249163,17.5727603184916,7.02182417619016,0.000657741475228878,0.0203908175916043,0.236174145801018 +"Q9VFZ4",0.689282774349136,16.4834945255536,7.00274917139734,0.000666627981742899,0.0203908175916043,0.221983068840399 +"Q8SYQ8",-0.64011774872996,15.8507318855429,-6.99060415476097,0.000672359093248342,0.0203908175916043,0.212928037683406 +"Q9W309",-0.590634520357977,18.3604021601492,-6.92688002994363,0.000703390053007212,0.0209509751502862,0.165165479347726 +"P45437",0.534686976369837,16.0599198039162,6.83866279409797,0.000749152086245692,0.0215719329937363,0.098340828695509 +"Q9VUY9",0.559116670545787,19.8802932359752,6.83509571330496,0.000751074406395563,0.0215719329937363,0.0956214012225436 +"A1Z9A8",0.615256513663489,16.5961019354613,6.8131364953979,0.00076303599917892,0.0215719329937363,0.0788504721096217 +"Q9VNX4",0.580529421184906,21.3752708510604,6.7605099080547,0.000792619182911066,0.0220348132849276,0.0384473475913403 +"A8DYP0",-0.511683842746624,15.5849815552457,-6.658072016636,0.000854130046681683,0.0231856694046534,-0.0410589942396928 +"Q9VHR8",0.546182584969795,20.2891752004721,6.64587705755941,0.000861817447894789,0.0231856694046534,-0.050600607791643 +"Q9VQE0",0.572283940477307,17.3538221793673,6.6188216070597,0.00087916251784744,0.0232059811553198,-0.0718280980118733 +"Q9VLB7",0.772657502774258,21.0408066395308,6.60162720006353,0.000890397358477498,0.0232059811553198,-0.0853608873330813 +"Q9V3A8",0.5755950600941,15.6120175916866,6.55991637601892,0.000918354105027296,0.0232710733942579,-0.118326200789446 +"Q8IN49",0.518653526098538,16.8669452542949,6.53824674443833,0.000933281612538452,0.0232710733942579,-0.135529305377045 +"Q9VTZ4",0.526862454852957,18.035947473382,6.51819445158772,0.00094734753452803,0.0232710733942579,-0.151495546073908 +"A1ZBJ2",0.737722563965718,19.6535443835449,6.51628351867623,0.000948700833818667,0.0232710733942579,-0.153019458174033 +"P21187",0.574970396943439,18.8326551866302,6.49106760911063,0.000966771187501747,0.0233706426196074,-0.173167126843587 +"Q9VVU1",0.500243484863947,22.1853606161157,6.44428157476462,0.00100137303982023,0.0238049669546158,-0.210741065140413 +"Q7K569",0.678454800732506,20.5426915520154,6.41712045911353,0.0010221224078724,0.0238049669546158,-0.232669131502393 +"Q9VIE8",0.511929517642546,24.7459412517196,6.37181702299633,0.00105785664647563,0.0238049669546158,-0.269433316380666 +"A1Z8H6",-0.665019864346968,16.9910658347569,-6.35472241772466,0.00107171718543495,0.0238049669546158,-0.283367574401129 +"Q9W5B4",-0.708315006563268,18.6126370127036,-6.35069449980331,0.00107501379974425,0.0238049669546158,-0.286655785799088 +"Q9VCX3",0.706441923639968,12.8306672802852,6.34988281089711,0.00107567954848211,0.0238049669546158,-0.287318641069218 +"Q9VK58",-0.851475899515492,13.2292348063385,-6.32561060236025,0.00109581132788596,0.0238049669546158,-0.307175763757978 +"Q9VFP1",0.494989720951153,16.0581105714492,6.3201104725284,0.00110043400864078,0.0238049669546158,-0.311685002100933 +"Q0E8E8",0.595264172870849,21.8028723116644,6.30508117799895,0.00111318190794966,0.0238049669546158,-0.324024742884047 +"Q9VZJ8",0.584172422160002,14.8624469983344,6.26563307316672,0.00114746835356006,0.0242275596675718,-0.356539914956687 +"Q7K4T8",0.808431475814993,13.9309985090885,6.18221687151946,0.00122410107935807,0.0250476026663203,-0.425904050955864 +"Q9W3Y3",-0.524951810651235,18.1643591014996,-6.18112625935133,0.00122514175044883,0.0250476026663203,-0.426816451714909 +"Q24253",0.698159449111909,18.8983012415449,6.17463514519614,0.00123135696561047,0.0250476026663203,-0.432249844240592 +"Q9W2N0",0.471968713604763,16.2844240213142,6.1009738729642,0.00130452050427542,0.0262161470015831,-0.494264732856934 +"Q9V784",-0.534162058328127,14.5144171214589,-6.00572792963243,0.00140674955412556,0.0276443967827532,-0.575433706357555 +"Q9VW54",0.482608682398343,15.846962100162,6.00395652537597,0.00140873724612351,0.0276443967827532,-0.576953902788307 +"O77410",0.484294916384341,14.581365690765,5.95172939739284,0.00146883499145066,0.0284885670434849,-0.621950027589155 +"Q9W199",0.471417648299626,15.7729884707654,5.92352911702285,0.00150252160424408,0.028537252619052,-0.646387703005193 +"Q9W308",-0.527321406066836,17.0885294140613,-5.92101969332558,0.00150556248829531,0.028537252619052,-0.64856715036154 +"Q9V396",0.483297360192442,20.824878572321,5.88841544071738,0.00154572899485916,0.0289693928474728,-0.676956311864328 +"Q8SXF0",0.495895704840883,16.2169265994377,5.84118378913822,0.00160614434877817,0.0295114163480121,-0.718320796076098 +"Q9VW68",0.479086587938816,22.8991109838335,5.8382128797734,0.00161003530435797,0.0295114163480121,-0.720932153467131 +"Q9VAY9",0.625571550884079,14.37596514986,5.81308613536912,0.0016433848169802,0.0297254362840247,-0.743063109534265 +"P17336",0.467230314617421,20.6780812218551,5.80273698351465,0.00165735346187908,0.0297254362840247,-0.752201897681316 +"Q7JXZ2",0.563997882260626,17.5644533455818,5.67333690768871,0.00184417805026821,0.0320488834069365,-0.867638630579379 +"Q9VPC2",-0.591778605192022,14.7699578476832,-5.66859536466819,0.00185147465825828,0.0320488834069365,-0.87191003066523 +"Q9VK39",-0.468250220627628,18.1601235297204,-5.66299955605677,0.00186012898153165,0.0320488834069365,-0.876954797927786 +"Q9VPE2",0.529405521559934,20.7929392055484,5.64889310712747,0.00188215462506323,0.0320488834069365,-0.889690438442995 +"Q9VFQ9",0.463745389693948,19.1047101949218,5.64837586560439,0.00188296796995191,0.0320488834069365,-0.890157915369128 +"P41093",0.552003017204857,18.9105957256889,5.61291062588047,0.00193972046276994,0.0322211762917443,-0.922295395108034 +"Q9VZI8",0.507401641135338,15.7205067624622,5.60968539313198,0.00194497924152282,0.0322211762917443,-0.925226271005509 +"Q95RI2",-0.671557735370671,16.765412187492,-5.59034291999279,0.00197686634974651,0.0322211762917443,-0.942832448557009 +"Q9VBU0",0.469905129090233,14.4012703843647,5.58289278649242,0.00198930964706356,0.0322211762917443,-0.949627111465976 +"P35381",0.429103142876897,25.7126428749349,5.58267369179389,0.00198967695326719,0.0322211762917443,-0.949827042092014 +"Q9VEJ3",0.456939998782033,19.819153210759,5.56860819648621,0.002013422711661,0.0322557906481869,-0.962675659452572 +"P23779",-0.512098120330275,20.9451609168136,-5.54393885014041,0.0020558679395059,0.0322557906481869,-0.985274707895478 +"Q9VV36",-0.607931283926916,23.3112498205486,-5.5421088666886,0.00205905764008626,0.0322557906481869,-0.986954369630319 +"Q9VIB5",-0.506712894947054,14.5645312736375,-5.5257833772213,0.00208776849214308,0.0322557906481869,-1.00195875808745 +"O16797",0.422689268921939,16.7483971973055,5.5253683346102,0.00208850443045814,0.0322557906481869,-1.00234068218997 +"A1Z992",-0.678978163066009,14.383857795872,-5.45929185063987,0.00220959660953349,0.0335074425912198,-1.06344174765862 +"Q9VU68",0.430111381195626,19.5769175210917,5.4592248627395,0.00220972343227468,0.0335074425912198,-1.06350399232286 +"Q9VHT3",-0.468181153036559,15.8063976883678,-5.44203205853243,0.00224255363317302,0.0335487499007247,-1.07949965814225 +"Q9I7K0",-0.593512668440264,16.1412656263912,-5.43679090175063,0.0022526738542453,0.0335487499007247,-1.08438390123055 +"Q9W2E7",0.422289023405948,18.3478257706347,5.3952637175979,0.00233475529797008,0.0344634675841955,-1.12321624254947 +"P29613",-0.415728784665049,23.9326518897049,-5.37750301576438,0.00237091379534827,0.0346902123740431,-1.13989680065365 +"Q7K8X7",0.425314816470912,19.5048502648545,5.35173318487249,0.00242453625713868,0.0350255613370411,-1.16417689500523 +"A1ZB70",-0.475247384643712,16.1047135645463,-5.34638949821568,0.00243583040473427,0.0350255613370411,-1.16922318253869 +"Q9VXQ0",0.480879456476618,14.8274672597292,5.31215369864398,0.00250965042962431,0.0355951405246949,-1.20164779520139 +"Q9VNE9",0.544124189881515,18.8004852264568,5.29908138495573,0.00253851746871621,0.0355951405246949,-1.21407164473457 +"Q9VME1",-0.561395876946808,16.5301314987586,-5.29865680693871,0.00253946146429178,0.0355951405246949,-1.21447556159342 +"Q9VKD3",0.533405067330492,18.6273311343878,5.27359662547164,0.00259590544582224,0.0360830856969292,-1.23836096167634 +"A1ZBU5",-0.399413893352406,16.7245654146841,-5.17687004661822,0.00282779996692303,0.0389547505992532,-1.33138324526463 +"Q8SZN1",-0.526393071844517,20.1459663250256,-5.16840535425457,0.0028492083771636,0.0389547505992532,-1.33958693569808 +"Q9U9Q4",0.459803307520794,17.9024221881221,5.15247681834992,0.00289000348066621,0.0391252866909437,-1.35505206253624 +"Q5U117",0.483303907493948,14.85711881432,5.14188222875208,0.00291751118077411,0.0391252866909437,-1.36535851678259 +"Q7K3E2",-0.514326894017824,20.590156813838,-5.13632875843929,0.00293205086113188,0.0391252866909437,-1.37076737513129 +"Q9VJQ3",0.407762946245199,20.4493270815405,5.10320097068025,0.00302054157187015,0.0397159456697183,-1.40312451998743 +"Q9VFS8",-0.463729008371246,17.2330801843884,-5.10195263443015,0.00302393591130349,0.0397159456697183,-1.4043469036512 +"A0A0B7P9G0",0.723341223427694,14.6796050800852,5.09058947932073,0.00305503660997227,0.0398109458237012,-1.41548415437253 +"P06002",0.414541968563558,17.3738046243291,5.06684181656326,0.00312123290161853,0.0400267327801837,-1.43881992924644 +"Q9W461",-0.426455004083737,16.1918006391756,-5.06614961782917,0.00312318707469084,0.0400267327801837,-1.43950134632 +"P32392",0.457930770669364,17.5514072677955,5.05854382426469,0.00314475250985307,0.0400267327801837,-1.44699324610871 +"M9PEG1",-0.431698679963372,20.3742447216221,-5.04881861173092,0.00317257806225318,0.0400267327801837,-1.45658505266655 +"Q9VY24",0.418062626841238,17.6441411111687,5.02843626781371,0.00323182200596171,0.0400267327801837,-1.47673239275973 +"Q7KUT2",0.387319467957791,18.1402352248158,5.02427423549759,0.00324407580420092,0.0400267327801837,-1.48085387304567 +"P54622",0.394612259257329,17.8519886774604,5.01927483063445,0.0032588658807916,0.0400267327801837,-1.48580790544853 +"Q8SXD5",-0.456952092167207,21.065663714462,-5.017690025054,0.00326357053843224,0.0400267327801837,-1.48737908895642 +"P38040",-0.390050305849023,18.9189078860901,-5.00833688980013,0.00329149630597104,0.0400745681632094,-1.49665929618754 +"Q7JRN6",-0.582764594756007,14.5771313303958,-4.98896400329355,0.0033502191305958,0.0404939529698101,-1.51592180083355 +"Q24238",0.402862680107567,16.3845570814582,4.97039068328075,0.00340765502030909,0.0408918602437091,-1.5344409183021 +"O01666",0.428526037333238,22.8113385426485,4.94669570786872,0.00348258417119002,0.0414925028396068,-1.55814031594996 +"P46415",0.374200676954569,18.2191282888742,4.88994825699879,0.00366987981806852,0.0429134165140162,-1.61523521250705 +"P45888",0.402968508786202,17.1067793189721,4.88993744029737,0.00366991660821861,0.0429134165140162,-1.61524614090462 +"P42281",-0.498165473325681,21.8888694969582,-4.8818205698952,0.00369764411924396,0.0429134165140162,-1.6234517284027 +"A1Z6L9",0.593470451318048,15.3558038518085,4.87975012800608,0.00370475538250499,0.0429134165140162,-1.62554636750999 +"Q9VQX3",-0.709539784206559,15.5072039791446,-4.8630712254326,0.00376261963651103,0.0431084221096787,-1.64244346178084 +"Q9VPN5",-0.420408757296791,21.2697783656735,-4.86003092005374,0.00377327915348506,0.0431084221096787,-1.64552800473537 +"Q9VF86",0.447886584545724,17.5688727416382,4.85083456803328,0.00380573440458785,0.0431834352847111,-1.65486655791211 +"Q9W2L6",0.456108447848983,20.9288680414199,4.82150912816398,0.00391139433631958,0.0440824713039261,-1.68472983411858 +"Q24319",0.376749304011252,16.5113506817486,4.80356647417355,0.00397770558965818,0.0445289457956365,-1.70306506681355 +"Q24276",-0.46845694377723,18.7964902903495,-4.75848312529029,0.00415010674273096,0.0459279130250592,-1.74934841405781 +"Q9VAG3",0.493673037484664,16.8714827680152,4.75519057726409,0.00416303070440814,0.0459279130250592,-1.75274060699353 +"A0A126GUP6",-0.574374318998416,16.9396799031165,-4.74955036140124,0.00418527744592866,0.0459279130250592,-1.75855532313474 +"Q9V419",0.380597462856896,16.6936311407999,4.72835550845321,0.00427010696601652,0.046552538688337,-1.78044893354558 +"B7Z107",-0.871031518153211,15.8872316221957,-4.69277737308118,0.00441698615325468,0.0477756978699929,-1.81735317185103 +"D0UGE6",-0.434804695483347,15.2946493860175,-4.68742335216437,0.00443958823132428,0.0477756978699929,-1.82292341033415 +"Q7JQR3",-0.381342985735852,19.1441092826402,-4.65558458317961,0.00457677237824788,0.0488722554582676,-1.8561382192383 +"Q9VW90",0.860401241035035,15.7783320296595,4.65028271059118,0.00460008639505276,0.0488722554582676,-1.86168426654128 +"Q9VER6",-0.457288919883101,14.971652394211,-4.63647706154783,0.00466143677069011,0.0492106109715893,-1.87614590369969 +"Q7K3N4",0.382644923782667,17.1844135339096,4.61592121297771,0.0047545328814859,0.0498777411718143,-1.89773258630271 +"Q9VXN1",-0.428413874261709,13.6187426742239,-4.59899291150505,0.00483280461386979,0.0503819880995925,-1.91555850282156 +"O97479",0.515317088912113,17.8341655430068,4.5603323716913,0.00501716808703542,0.051979107883075,-1.95643436417156 +"Q9W2Y3",-0.385773617307979,16.518681703621,-4.5528792138536,0.00505363102244829,0.0520336823792824,-1.9643411051985 +"Q9VPL0",0.348125964554297,14.9850632243063,4.52887613945363,0.00517314247875868,0.0523552568060576,-1.98986331609791 +"Q9VSA3",0.37702151208968,21.6678976459343,4.52506707972974,0.00519240419141711,0.0523552568060576,-1.99392164622702 +"Q961Q8",0.668009451598648,15.5515722926581,4.52298630073116,0.00520296102147529,0.0523552568060576,-1.99613954371755 +"Q9VJ86",0.501667635765145,16.6187892067948,4.52151996629825,0.00521041524568679,0.0523552568060576,-1.99770290915246 +"Q27272",-0.404803889940094,15.6092742685144,-4.49617630392703,0.00534120563990949,0.0529319092421991,-2.02477631560689 +"Q9W3C4",-0.420377425968541,14.9044780690732,-4.49202277486419,0.00536299755064917,0.0529319092421991,-2.02922283959201 +"Q9VIQ5",-0.549620819961378,16.4732368617884,-4.4806820131203,0.00542301865836042,0.0529319092421991,-2.04137724910585 +"Q9V3Y0",-0.354524050216634,16.2655848572777,-4.48018679457168,0.00542565709178346,0.0529319092421991,-2.04190845309205 +"Q7K2L7",-0.340016575483016,18.3607584280435,-4.47874987243207,0.00543332107632114,0.0529319092421991,-2.04345000625629 +"Q9VMX4",-0.457950570853473,17.3168468899044,-4.46770753832871,0.00549263217011748,0.0529319092421991,-2.05530712329836 +"A1Z843",0.413190310279216,17.6445758726946,4.45856813068707,0.00554228349100046,0.0529319092421991,-2.06513526522337 +"Q7K3V6",0.346519256493579,16.2207701224032,4.45534478602371,0.00555991729831988,0.0529319092421991,-2.06860462227855 +"Q9VVP9",-0.361175109364945,16.496382870391,-4.45275719852579,0.00557411959596769,0.0529319092421991,-2.07139087203664 +"Q9W0X2",-0.389644930437463,16.201910162222,-4.44883117949917,0.00559574744704368,0.0529319092421991,-2.07562030563708 +"Q9VNW0",-0.68700533935958,14.6884355718823,-4.44324140039338,0.00562670670649391,0.0529319092421991,-2.08164622892641 +"Q9VSY0",-0.391001107117408,22.7855671963953,-4.43185394591041,0.00569038533963617,0.0529319092421991,-2.09393728254316 +"Q9V406",-0.344029161535097,17.0185021007508,-4.43170042231667,0.00569124946201169,0.0529319092421991,-2.09410312665648 +"Q9VRP3",0.357833891354613,18.0558103223168,4.4249934318682,0.00572914744136677,0.0529319092421991,-2.10135195905456 +"Q7K3W2",0.34374733282187,17.4944105007732,4.422412088126,0.00574381029546645,0.0529319092421991,-2.10414371721785 +"P82890",-0.389328444143672,19.7344270479135,-4.41030095878126,0.00581318140702707,0.0530757908845756,-2.11725598163247 +"Q95SS8",0.337120136108684,15.3324722203367,4.40223754120395,0.00585989939818642,0.0530757908845756,-2.12599866897013 +"P22979",0.491460439881596,19.190431771316,4.39726258086532,0.00588893768734254,0.0530757908845756,-2.13139780324598 +"Q9VBP9",0.41079857466528,13.981291813098,4.39408207276838,0.00590758822662449,0.0530757908845756,-2.13485151883723 +"Q7KY04",0.493121691402591,14.1311739900912,4.38892041052395,0.00593800029521133,0.0530757908845756,-2.14045994483466 +"Q9W4C2",-0.588526585221505,15.9118252118625,-4.3868340987855,0.00595034346247939,0.0530757908845756,-2.14272802088082 +"Q9VPZ5",-0.368884091257204,18.3092825375424,-4.36281699336205,0.00609456908580629,0.0540730916761963,-2.16888672782678 +"Q9I7J0",-0.386343555448445,21.0497738170776,-4.35694075252582,0.00613046273470097,0.0541037663570435,-2.17530074173542 +"Q9W369",-0.383738555979068,22.4632534866195,-4.34428279443843,0.00620860512189188,0.0545050175963982,-2.18913554785386 +"Q9VM18",-0.329110627463358,23.054233593321,-4.3356214887893,0.00626273088831384,0.0546923304801439,-2.19861664061826 +"Q9W1R0",0.428763717861681,13.9575750291065,4.32984731950758,0.00629911416671006,0.0547235543232936,-2.20494388975315 +"Q9VBC7",0.475242164393984,15.9973615923192,4.30631275975521,0.00644992648188355,0.0557434060714081,-2.2307870301233 +"Q9VIF2",0.40418741863825,17.4211371945134,4.29642627703576,0.0065145077603911,0.0560113347645998,-2.24166935185258 +"Q9VGS3",0.341919423645763,19.4431083221783,4.28010563452243,0.00662274176152357,0.0564401557267168,-2.25966767521647 +"Q95R98",0.345630991408875,16.3165416553389,4.27871529280837,0.0066320566681274,0.0564401557267168,-2.26120288103787 +"Q9W253",0.500981133012273,15.1119776226056,4.26954721327501,0.00669385622500037,0.0566021087692634,-2.27133385748825 +"Q9VXN4",0.324996861893002,14.9341077042678,4.26419533311112,0.00673023567249466,0.0566021087692634,-2.27725396980121 +"Q9VAA6",-0.455821203659356,16.0963754856991,-4.25570659898623,0.00678840186890633,0.0566021087692634,-2.28665327595437 +"Q95TK5",0.394349393706015,17.3523193271338,4.25530073727964,0.00679119724256901,0.0566021087692634,-2.28710295916865 +"Q9VAC1",0.34598185356236,23.3877004012083,4.24872317891296,0.00683668390749027,0.0566021087692634,-2.29439433922417 +"Q9VM07",0.391139849890076,16.7882505455128,4.24303953064638,0.00687626903442114,0.0566021087692634,-2.30070031119429 +"Q9VM11",0.332385679716403,17.699214844027,4.23131032287777,0.00695878970931542,0.0566021087692634,-2.3137299559848 +"Q9W1I8",-0.329398945827798,17.8309665567254,-4.2301464628447,0.00696703948466782,0.0566021087692634,-2.31502404300499 +"Q7K5K3",0.384763693071857,22.8195943854316,4.22591783084137,0.00699710732271379,0.0566021087692634,-2.31972763201599 +"A1Z7X8",0.385969320762889,16.9351956331624,4.22064254468486,0.00703482522397015,0.0566021087692634,-2.32559940526254 +"Q9VI09",-0.418081122201976,20.1787545222933,-4.21874445821865,0.00704845310847341,0.0566021087692634,-2.3277131906575 +"Q7K2Q8",-0.382607618699257,16.1027374710818,-4.21737607170633,0.00705829653717434,0.0566021087692634,-2.32923743499672 +"Q9VDT1",0.489223708712437,19.1054871361309,4.20192290926509,0.00717055362555409,0.0570723766272855,-2.34647129636604 +"Q8IQG9",-0.436062511078703,20.5792743386658,-4.19990377948205,0.00718537115811149,0.0570723766272855,-2.3487258910042 +"Q9VVW3",0.466062068676429,16.567876682033,4.19054072378868,0.00725454065522614,0.0573486910564797,-2.35918928921264 +"Q9W3E2",-0.318665054588873,17.9663816688687,-4.1812976974781,0.00732356916226728,0.057621289446518,-2.36953219376352 +"Q9I7Q5",-0.429057822168058,20.8720417546014,-4.14366596896684,0.00761244698206919,0.0594936238028556,-2.41178195258268 +"Q9VCE1",-0.320305772071539,13.6226276194711,-4.13829102188279,0.00765475799665588,0.0594936238028556,-2.41783485477134 +"Q9VKR4",0.367783508462477,19.0115655862758,4.13312029217379,0.0076957144575016,0.0594936238028556,-2.42366211466907 +"Q8IRH5",-0.334599677995323,14.4864959540511,-4.1320516257513,0.00770421027662878,0.0594936238028556,-2.4248670001804 +"Q9VQ91",-0.383049408392028,15.1441472109936,-4.12352483008459,0.00777238169622414,0.0597434685221284,-2.43448717998715 +"Q0E9B6",0.385146512268644,19.0774894748045,4.10221101736294,0.00794581050636285,0.06079638497529,-2.45858461857094 +"Q7K1S1",0.508719803292605,16.5991151646879,4.09021828375749,0.00804532953014347,0.0608779479506815,-2.47217539884345 +"P48596",0.318473752770114,21.633131885315,4.08844174291837,0.00806019208435913,0.0608779479506815,-2.47419061219921 +"Q9V3D9",0.325929860230236,17.3511668297959,4.08699173117068,0.00807234606031197,0.0608779479506815,-2.47583580061174 +"Q9VSX2",-0.310294620731906,18.1515522956496,-4.08162460477989,0.00811751508489607,0.0608779479506815,-2.4819282725645 +"P83967",-0.407879699984971,16.9981313428232,-4.07209953553171,0.0081983868834409,0.0608779479506815,-2.49275190541325 +"A1Z6V5",-0.33794808613553,19.8913726975019,-4.07086935008676,0.00820889836923763,0.0608779479506815,-2.49415085650159 +"Q9VE50",-0.578360780787294,14.6865778206142,-4.06959136382762,0.00821983453969275,0.0608779479506815,-2.49560442119659 +"Q9VDD1",-0.335028365362126,14.4889007955483,-4.0662564184551,0.00824845098132735,0.0608779479506815,-2.49939876853991 +"A8Y535",-0.330144506504528,22.0065498812397,-4.05058297906354,0.00838446853164872,0.0616092225144937,-2.51725500278812 +"Q7KV34",0.429904943010889,21.0819994995899,4.03687093165506,0.00850555994554338,0.0620092154035698,-2.53290876706978 +"Q9VL01",-0.43245352929344,20.4322721006842,-4.0355645202651,0.00851720029835144,0.0620092154035698,-2.53440173718313 +"Q9W4W5",0.387551531595832,17.2968275157224,4.02726920229843,0.00859153710208763,0.0620092154035698,-2.54388798889696 +"Q5U1B0",-0.559843067858347,14.8880453914427,-4.02723523923359,0.00859184296773753,0.0620092154035698,-2.54392685046209 +"R9PY51",-0.457388742204426,21.5744899628518,-4.02358563399531,0.00862478295781067,0.0620092154035698,-2.54810390955906 +"Q9VVB4",-0.360103518853743,16.0029284301618,-4.00940476787535,0.0087541440130547,0.0626691511320826,-2.5643543792105 +"Q7K485",0.447337328905572,20.4962331050452,3.99645762250634,0.00887417946077041,0.0632569715408763,-2.57921904345052 +"Q9VHB8",0.55864800025784,15.4573303086382,3.9881566092977,0.00895212347203463,0.0635410295802288,-2.58876351166995 +"Q9VIV6",0.955063209666207,14.5444820856307,3.98076780630526,0.00902215687670275,0.063766769789577,-2.59726835550367 +"Q00174",0.314861433881092,21.9473160310735,3.95758262631758,0.00924598632148433,0.0643581460191923,-2.62401197554936 +"Q9VKU5",-0.603206041659323,13.5661698469516,-3.95744520531056,0.00924733164863947,0.0643581460191923,-2.62417074295002 +"Q9VFF0",0.33689040638702,23.6357129895447,3.95661833722208,0.00925543123325344,0.0643581460191923,-2.62512611667151 +"P25455",0.32500940013391,15.9096890119713,3.95613546881404,0.00926016489484781,0.0643581460191923,-2.62568407920443 +"P20348",-0.420054870002321,17.4698816150095,-3.9360913734758,0.0094591079300432,0.0654680167108384,-2.64887811367148 +"Q9VTY2",-0.427398677415102,20.8894799387894,-3.92549262253489,0.00956626135237639,0.0659360493213381,-2.6611683070122 +"Q9VGA0",-0.320258876904354,19.3200147866255,-3.91923584834011,0.00963016361770053,0.0661033453264382,-2.66843198227705 +"Q9VNB9",0.564692248724914,18.7478027170905,3.91469811734091,0.00967681180641119,0.0661513200536634,-2.67370386516923 +"P32748",0.345356900204475,17.1909952047946,3.90138901388349,0.00981511549058457,0.0663991756690567,-2.68918511445612 +"Q9VMI3",0.422237257799122,20.227625688921,3.90061804360067,0.00982319559022852,0.0663991756690567,-2.69008277596097 +"Q9W1R3",-0.335446182294351,17.0860173470485,-3.89938156544456,0.00983617016796401,0.0663991756690567,-2.69152263816226 +"Q9VLY7",0.399322277163261,15.3975952074914,3.89428067600516,0.0098899005188653,0.0663991756690567,-2.69746512493631 +"Q9VMR6",-0.337539313807589,18.873090954517,-3.89218165932339,0.00991210715922969,0.0663991756690567,-2.69991166020334 +"O02195",0.312771924061096,18.567515351466,3.88518961264347,0.0099864886802031,0.0666298524743151,-2.70806637944848 +"Q7K1Z5",-0.503655771518737,15.9978707567891,-3.87760907863706,0.01006784636337,0.0669050507334711,-2.71691621953347 +"C0HK95",-0.388704948946724,20.0378549861891,-3.8605140298799,0.0102540903504612,0.0678723123197194,-2.73690721319008 +"Q9VSL5",0.297826638793726,17.5791603692915,3.84192412356275,0.0104610649635031,0.0683536468183083,-2.75869894983165 +"Q9VH72",-0.403496291143355,18.6138403131742,-3.8407936652771,0.0104738029927254,0.0683536468183083,-2.76002588086556 +"B7YZN4",-0.448678069857193,15.3542382674215,-3.83587452148541,0.0105294369380144,0.0683536468183083,-2.76580232757934 +"Q9VN86",0.400633153680911,15.5738250660518,3.83582426420461,0.0105300070563021,0.0683536468183083,-2.76586136344436 +"Q9V3Y7",-0.699623741606992,19.6332792823436,-3.83567443073072,0.0105317069738041,0.0683536468183083,-2.76603737114016 +"Q9W483",0.320096437321917,15.4633902580945,3.82909083137623,0.0106067081311405,0.0684951232698409,-2.77377456516088 +"Q9VG81",0.837414781199827,15.9254296380865,3.82656582297295,0.0106356336492139,0.0684951232698409,-2.77674383460989 +"Q9VHC3",0.331468319093389,17.169543148322,3.81680375403025,0.0107483073187404,0.0689477120398892,-2.78823298770069 +"Q8IQ70",0.369378336561319,18.0184345501574,3.81334252097401,0.010788580840774,0.0689477120398892,-2.79231019961748 +"Q9VWP2",-0.348230516840797,19.7212264590503,-3.80146267664797,0.0109281147597023,0.0694077283874784,-2.80631866942259 +"Q9VH37",-0.318007587330371,16.5872633180682,-3.79604038513737,0.0109924798831451,0.0694077283874784,-2.8127199483149 +"P07668",-0.469648244600123,14.8159850954176,-3.79232457370301,0.0110368359909455,0.0694077283874784,-2.81710933003049 +"P40304",0.332350816890678,18.7415894761123,3.79125267301816,0.0110496690121932,0.0694077283874784,-2.81837594143265 +"Q9VJE3",-0.416877518713919,15.2421818229689,-3.78562610255518,0.0111173089924679,0.0694077283874784,-2.82502755768548 +"Q8SXF2",-0.316161443279436,15.6197491348399,-3.78488487481369,0.0111262545508032,0.0694077283874784,-2.82590419499331 +"P16378",0.307411810104359,20.589799868339,3.78252525521626,0.011154786046314,0.0694077283874784,-2.82869545472981 +"Q9V3I2",0.320836051244678,17.6093627868162,3.77933831561344,0.0111934525996593,0.0694077283874784,-2.83246677099497 +"Q9VMT5",0.478068762521229,16.5274195497658,3.74793033169631,0.0115827366237559,0.0715555729200923,-2.86971968492295 +"Q9VEV7",0.791133351908066,12.9153053120945,3.71470333226951,0.0120113123067617,0.0739294056371901,-2.90929934148993 +"P12080",0.283693907857511,18.9830679296981,3.69308648040988,0.0122997461238768,0.0754263843184798,-2.93514227663284 +"Q9VAD4",0.383708073973919,13.4384009162287,3.68772418121794,0.0123725003429292,0.0755208146608962,-2.94156424834773 +"Q9V4S8",-0.363896632519104,17.1415428087454,-3.68528922885039,0.0124056973723534,0.0755208146608962,-2.94448187204051 +"Q9VCA5",0.285923939842853,14.4030596534165,3.67458733859149,0.01255279874212,0.0760601052010686,-2.95731616374128 +"Q9VM10",0.340523668889006,17.1354328321717,3.66302152017513,0.0127139920262903,0.0760601052010686,-2.97120666899104 +"Q9VSS2",0.363341303481231,16.1858215445892,3.66241042437524,0.0127225736142745,0.0760601052010686,-2.97194117428255 +"A0A0B4KHJ9",-0.318872456991105,24.6671087336879,-3.66194767569493,0.0127290763178474,0.0760601052010686,-2.97249741288214 +"Q2MGK7",-0.357472594825456,17.0287675895237,-3.65922522452428,0.0127674091233679,0.0760601052010686,-2.9757705627699 +"P18432",-0.372557053735811,23.8816586013736,-3.65919160080672,0.0127678833670859,0.0760601052010686,-2.97581099514484 +"Q9VFS4",-0.396461377455902,15.2525064824464,-3.64334092046457,0.0129936765752892,0.0769173048182051,-2.99489101368782 +"Q9VDH3",0.294631710983609,20.4854108200972,3.64262332367375,0.0130040047714232,0.0769173048182051,-2.99575573702276 +"Q7KSQ0",0.31158551507805,20.9298721722525,3.62961492338884,0.0131928452287139,0.0776757361276573,-3.01144511066302 +"Q960W6",0.47800981266033,14.4199888841193,3.62739595662595,0.0132253651440376,0.0776757361276573,-3.01412402572226 +"Q9VEV3",-0.298395190460614,18.2543820967551,-3.62253670385863,0.0132968955778237,0.0778218309607368,-3.01999318011375 +"Q9VM58",0.291772530172656,16.3306344227272,3.61725857696752,0.0133750863726872,0.0778324684393959,-3.02637242062734 +"Q9Y125",-0.362706574768449,22.6529410368961,-3.61611891141864,0.0133920374353157,0.0778324684393959,-3.02775040917551 +"O61443",0.304336066525947,16.5315523798482,3.61076040359896,0.0134720634633073,0.0779890381131111,-3.03423217237312 +"Q9W3M7",0.31667770237458,16.0044823529292,3.6054092216238,0.0135525180512178,0.0779890381131111,-3.0407095192245 +"A1Z8Y3",-0.351108648757505,14.9780128531431,-3.60496340606592,0.0135592452354929,0.0779890381131111,-3.04124935773102 +"A1ZAA9",0.281368863231084,16.5890213155031,3.59744209488732,0.0136733077258848,0.0783466307925892,-3.05036156322702 +"A1Z7B8",0.386208978737336,16.9005799114793,3.59468713368993,0.0137153574289185,0.0783466307925892,-3.05370144093568 +"Q9VF23",0.812127037509407,15.3139870234376,3.59161147494364,0.013762474130804,0.0783474636524952,-3.05743149229685 +"Q9VW73",0.284642355749291,14.2731791193574,3.5859968288385,0.0138489568779005,0.0785592101062664,-3.06424451182755 +"Q9VPF6",0.281773436683286,13.8110336787369,3.58309683846464,0.0138938650967318,0.0785592101062664,-3.06776537581555 +"Q9VBT2",0.989097517198092,13.0073334782369,3.57312434351049,0.0140495512053552,0.0791711196301774,-3.07988284354017 +"Q9VQT8",-0.586202305106459,17.9699564412097,-3.5650297200585,0.0141773650576447,0.0793387923855986,-3.08972980848082 +"A1Z847",-0.296245420340391,20.036010720515,-3.56105623076462,0.0142405846703852,0.0793387923855986,-3.09456718065025 +"Q9VHD3",0.309756190074733,15.7558278578553,3.56075203409035,0.0142454376005648,0.0793387923855986,-3.09493761338048 +"Q9VV39",0.324338855343875,17.4409788507838,3.55924125904567,0.0142695669758271,0.0793387923855986,-3.09677755690969 +"Q7JZV0",0.384877526677782,15.4656510355628,3.55599072654633,0.0143216389582469,0.0793637667187899,-3.10073750764847 +"Q9VM12",0.332621050405052,18.9517681903006,3.53054909029611,0.0147366641637255,0.0813932312089208,-3.13178774750497 +"P54192",-0.28955709228822,24.2514644617134,-3.51677790282168,0.0149669402418713,0.082392265093866,-3.14863614502917 +"Q8IRD0",0.267230618441488,17.4434286873701,3.51094902573414,0.0150656240093752,0.0826627001567033,-3.15577622495409 +"A0A0B4K692",0.376483771048616,15.9973662743373,3.50422464669237,0.0151803779227662,0.0830192471317179,-3.16401968423282 +"A1Z9B5",-0.720512453618912,15.5651755105813,-3.48251251742242,0.0155576587421902,0.0848044927515463,-3.19068367696213 +"A1Z7H8",-0.430606047067343,14.759133571496,-3.47608112003077,0.0156714264313469,0.0850488266898028,-3.19859560801153 +"A1ZB73",-0.485052500148381,13.8878703340156,-3.47080508455431,0.0157654538577593,0.0850488266898028,-3.20509088273506 +"Q95RF6",0.346625493665002,17.3345176452748,3.46920558563137,0.0157940844303592,0.0850488266898028,-3.20706084136819 +"Q7KJ08",0.314255752542548,14.5376730723636,3.46851651275224,0.0158064366150113,0.0850488266898028,-3.2079096294734 +"Q9VAY3",0.378282410692972,14.0245842931257,3.4513657350099,0.0161173975170548,0.0860862421441738,-3.22905874664919 +"Q9VAN7",-0.265836926867443,23.8150990976883,-3.448947530357,0.0161617914447692,0.0860862421441738,-3.23204426902928 +"O18413",0.26979197898698,19.3392686801961,3.44763508645852,0.0161859429740455,0.0860862421441738,-3.23366498424048 +"P09180",0.27481492013834,20.6913302987405,3.44656397704725,0.0162056834731838,0.0860862421441738,-3.2349878714208 +"Q9VIX1",-0.795666891647715,17.2698988011378,-3.43980297266426,0.0163309132574052,0.0864760740106407,-3.24334211292441 +"Q9VJQ6",0.272278178597857,14.3732586681988,3.43353262470413,0.0164480253067618,0.0865500170109942,-3.2510962053945 +"Q9VU92",0.303724015180602,17.6318894439415,3.43104973673799,0.0164946584615724,0.0865500170109942,-3.25416824462643 +"Q9V8F5",-0.421184941478192,16.1279282410226,-3.43073699557206,0.0165005428114485,0.0865500170109942,-3.25455525994671 +"Q8IMT6",0.376780807325277,16.232776375154,3.41854215231975,0.0167318384719043,0.0874881083734681,-3.26965771223331 +"Q9W3H4",-0.276166363445455,19.6774702292451,-3.40048358114693,0.0170810517144117,0.0890349820613712,-3.29206272667528 +"P29327",0.292049453658336,19.4999647868674,3.39284988410281,0.0172311192340752,0.0890950321905501,-3.30154832601458 +"Q7JWD3",-0.288957223333631,17.2109295799367,-3.38715158516519,0.0173441019124191,0.0890950321905501,-3.30863463890276 +"Q9VL10",0.323219137125108,16.7867220920451,3.38620232625478,0.017363003748304,0.0890950321905501,-3.30981558911045 +"A1Z7K8",-0.273538859815645,17.645274573282,-3.38413418984947,0.0174042647929338,0.0890950321905501,-3.31238896947669 +"Q9XYZ5",0.304906291877275,16.0685637160623,3.3834642395968,0.0174176543837887,0.0890950321905501,-3.31322272362981 +"A1ZBK7",-0.270051445711641,17.6303782391648,-3.37980421546097,0.0174910072799496,0.0890950321905501,-3.31777880046537 +"Q7JPS2",-0.399629986082541,20.5929610359997,-3.37774373482174,0.0175324547584393,0.0890950321905501,-3.32034460152106 +"Q9U4G1",0.282379340013986,19.3039383980348,3.37347543994686,0.0176186635046739,0.0890950321905501,-3.32566166272401 +"Q9VWV6",-0.270520692791766,23.6433191217806,-3.3718537135796,0.017651542528202,0.0890950321905501,-3.32768256896956 +"Q9VLP0",-0.357683850064097,16.1463767166482,-3.37049061189117,0.0176792312776393,0.0890950321905501,-3.3293814910631 +"Q9U1L2",0.280730603609101,17.0805567181289,3.37044644325891,0.0176801292896116,0.0890950321905501,-3.32943654587311 +"Q9VG92",-0.263239224823877,16.653713877064,-3.36293264684895,0.0178336409628394,0.0895721319215871,-3.33880643487442 +"Q9VR25",0.268502171840193,17.0188737395954,3.360570623526,0.0178822061929787,0.0895721319215871,-3.34175365064769 +"Q500Y7",-0.264331480807719,20.1601299054883,-3.35144920019042,0.0180711438746803,0.0901742825654702,-3.35314259527631 +"Q9VY42",0.362344315679143,15.2751544736362,3.34843715414827,0.0181340236925515,0.0901742825654702,-3.3569060917087 +"Q9NJH0",0.255856844836895,21.2056834353759,3.34507865155573,0.0182044247824159,0.0901742825654702,-3.36110404396754 +"Q9VGZ3",-0.360913975154148,17.0231087715977,-3.34302201049491,0.0182476870067159,0.0901742825654702,-3.36367555128014 +"O62602",0.289740364403389,14.7182194172145,3.34118328871628,0.0182864625382525,0.0901742825654702,-3.36597510762614 +"Q9VDK9",0.274823780369745,15.5687116554563,3.33865124322079,0.0183400099191724,0.0901742825654702,-3.3691425612599 +"Q9VZJ2",-0.304179823568829,17.3361543724592,-3.33672567273645,0.0183808489641846,0.0901742825654702,-3.37155197289156 +"O96824",-0.291174560049592,16.8181693758955,-3.3145406926714,0.0188587683105033,0.0918351865369058,-3.3993502945007 +"Q9VWW2",-0.341761562179135,15.1354131476251,-3.31263322288698,0.0189005036640147,0.0918351865369058,-3.40174373198914 +"Q9VCR4",-0.419422408186641,15.0826111759403,-3.3112993033956,0.0189297510484165,0.0918351865369058,-3.40341780780921 +"Q8T0Q4",-0.280118159815757,19.9121074920093,-3.30842838257651,0.0189928701642996,0.0918351865369058,-3.40702170013299 +"Q9VVA6",-0.304437616928737,19.2214487903705,-3.30834586394569,0.0189946878628492,0.0918351865369058,-3.40712530409543 +"Q7KMS3",-0.419160370251687,15.5219727180414,-3.30428836902914,0.0190843053244922,0.091965310145451,-3.41222079024463 +"Q9VGT8",0.300279938791151,15.3741789278324,3.30214338298569,0.0191318720746232,0.091965310145451,-3.41491546712871 +"Q9V3G7",0.340861384753996,18.1424605405308,3.29871904772102,0.0192080839469839,0.0920234671821963,-3.41921872235513 +"Q9VVW7",-0.283796096190612,16.5222543234997,-3.29574168695027,0.0192746234569097,0.0920234671821963,-3.42296164961728 +"Q9W414",0.25765267109465,19.5357515642246,3.29319609440809,0.0193317176525793,0.0920234671821963,-3.42616279856153 +"Q9W314",-0.518312393712584,16.1069651408861,-3.28889030137833,0.0194287208972159,0.0920234671821963,-3.43157956256869 +"Q9VRL2",-1.1001118690605,12.0816796059102,-3.28763377044429,0.0194571310012154,0.0920234671821963,-3.4331608018542 +"Q9VKC8",0.308992271030252,17.791829111915,3.28254530488599,0.019572655849554,0.0920234671821963,-3.43956652267097 +"Q9W0S7",0.262625502814601,17.9942780667207,3.28207891055943,0.019583282757309,0.0920234671821963,-3.44015383822183 +"Q8IN51",-0.390980926104758,17.3195608948718,-3.2817831006664,0.0195900261933639,0.0920234671821963,-3.44052635833582 +"Q9VAN1",-0.333773937624615,14.557939015197,-3.27957259171344,0.0196405001899651,0.0920234671821963,-3.44331049835797 +"Q94524",-0.307492297867467,15.5939251016087,-3.27436964968233,0.0197598759184808,0.0923234538712211,-3.44986636697992 +"Q9VH64",-0.262373139680752,17.7554542648909,-3.26737436480457,0.0199216523628272,0.0926198172525888,-3.4586867241059 +"Q9VXY3",0.259308978305427,17.9785389346986,3.26682751705542,0.0199343611472898,0.0926198172525888,-3.45937653805898 +"Q7PL91",-0.271249078552223,18.9722971088965,-3.250595934586,0.0203157315121095,0.0941295560061073,-3.4798709721488 +"Q9W3R8",-0.313578109784565,17.495787554069,-3.24629282786636,0.0204181943681017,0.0942922206369597,-3.48531044070161 +"Q9VGW7",0.318441822211431,16.7730469446191,3.24438112743256,0.0204638992029853,0.0942922206369597,-3.48772781963432 +"Q9VY28",0.28258074925054,15.1924968551387,3.23986926220466,0.0205722213032266,0.0944268228571989,-3.49343519357701 +"A8JNG6",-1.00302536440511,15.9110596568611,-3.23688358748847,0.0206442533682244,0.0944268228571989,-3.49721355656398 +"Q9VY91",-0.36975240609015,17.1561023085017,-3.23413629354752,0.0207107825498751,0.0944268228571989,-3.50069135536445 +"Q960X8",-0.267019241695131,18.3180361266765,-3.23377478683025,0.0207195546557163,0.0944268228571989,-3.50114906549169 +"Q9VXN2",-0.427412302782052,18.4847384136735,-3.22855544830994,0.0208466662536783,0.0947472460793879,-3.50775940477638 +"Q961B9",0.298818656396945,14.838182129981,3.21998648160806,0.0210572420525601,0.0952884899648621,-3.51862034187753 +"Q7K5M6",-0.24886351728609,18.2817842670363,-3.21906579848229,0.0210800076720828,0.0952884899648621,-3.51978789299766 +"Q9Y0Y2",-0.26394253223166,19.6258931920179,-3.20741225785787,0.0213705438492696,0.0954666175385155,-3.53457635919881 +"Q9VSY8",-0.258023960102776,18.0092793894309,-3.20713943378648,0.0213773988453042,0.0954666175385155,-3.53492280179213 +"Q9VXK7",0.247055483006651,18.1556249663753,3.2048827584142,0.0214341941362894,0.0954666175385155,-3.53778881133336 +"Q7K3Z3",-0.257698443985621,19.8826703161246,-3.20217234376178,0.021502631031783,0.0954666175385155,-3.54123200839053 +"Q9VJ68",-0.348564831786561,17.7882356059866,-3.20193486736759,0.0215086387905072,0.0954666175385155,-3.54153373687517 +"Q05856",-0.243981220135856,13.5506468809012,-3.20128301329058,0.0215251392175304,0.0954666175385155,-3.54236199798986 +"Q7K204",-0.310513389357519,15.0530182761454,-3.20014967064622,0.0215538611359203,0.0954666175385155,-3.54380218966653 +"Q9VQQ0",-0.279384367824008,18.2872380279993,-3.19922654685217,0.0215772870575662,0.0954666175385155,-3.54497537756888 +"Q7K860",-0.359655442058227,20.0789655818444,-3.194383535622,0.0217006521475234,0.0955480667907286,-3.55113223509522 +"Q9VN14",0.26164741468957,19.2010345585251,3.19400755573879,0.0217102621784689,0.0955480667907286,-3.55161034878161 +"Q9VR30",0.267929700893017,17.303276337279,3.18404621426274,0.0219666055480005,0.0964218369843813,-3.56428474347638 +"P09040",-0.41557138797177,16.4546093085452,-3.17878400110201,0.0221033796256219,0.0965352343497273,-3.57098566184219 +"Q9VGE4",-0.244144148064287,15.7129369745396,-3.17859961950609,0.0221081891616282,0.0965352343497273,-3.57122052268829 +"Q9I7I3",0.480712286393741,14.743385463443,3.16822775296866,0.022380618368482,0.0974696382209606,-3.58443943410518 +"Q9VP13",-0.834572155671372,11.6535812793653,-3.15890307872454,0.0226287290352225,0.0982935417467475,-3.59633620405424 +"Q9GYU8",0.242207742479376,12.7851969312679,3.15667908559017,0.022688355293483,0.0982965626741028,-3.59917540004302 +"Q9VKY3",0.26742239965094,18.7389317755793,3.1488223123531,0.0229004002618152,0.0989582063127144,-3.60921087452753 +"Q9VJZ5",-0.318258801583314,16.936106593226,-3.14400838270075,0.0230314092859228,0.0992671594028922,-3.61536383066242 +"Q9VRP4",0.423333234345945,14.4800116495726,3.13676057105354,0.0232302276199659,0.0998660300775854,-3.62463354333488 +"X2JAU8",-0.23837155889915,21.7895267419647,-3.12753791434954,0.0234859783154754,0.100705943008259,-3.63643918619905 +"Q9VEA5",-0.282887673719749,15.5333002614173,-3.10716850920472,0.0240619775088272,0.102669546439564,-3.6625535239436 +"P13677",-0.342688071887697,17.3659861462017,-3.10699251542302,0.0240670219771399,0.102669546439564,-3.66277939364543 +"Q9W0J9",-0.262056606267944,18.4602757812531,-3.09809875576538,0.024323474733718,0.103252606858187,-3.67419891272908 +"Q9VH76",-0.284721221774976,19.2743006265089,-3.09795989667333,0.0243275026950046,0.103252606858187,-3.67437728906543 +"Q9W0N6",-0.293972311365003,14.3414113846983,-3.0895131842397,0.0245739167369415,0.104033738876189,-3.68523255482422 +"Q9VH95",-0.293935184811641,20.918240285539,-3.08195210135208,0.0247968416584353,0.104598590502447,-3.6949575487314 +"Q9VVN2",0.269836422886758,14.8161015757977,3.0796796853709,0.0248642768299943,0.104598590502447,-3.69788176055838 +"Q23970",-0.358377524547279,21.3170609083859,-3.0786309235013,0.0248954678833761,0.104598590502447,-3.69923156400819 +"P91927",-0.247187969799228,19.5429645250615,-3.07097995736025,0.0251243293875869,0.105294928187173,-3.70908300460428 +"P50887",0.42278622620405,17.4704188915767,3.05892620897647,0.0254896302178073,0.106416845664289,-3.72461879505375 +"Q9VJ43",0.25160799559437,20.1493247899876,3.05610831560921,0.0255758745038272,0.106416845664289,-3.72825339671919 +"Q9V9Q4",-0.303655502756929,19.1210340193977,-3.05586207274836,0.0255834263257673,0.106416845664289,-3.72857105619556 +"Q9VSA9",-0.246626027984558,22.4630901874797,-3.03875945357383,0.0261140174704211,0.108353684429508,-3.75065273487425 +"Q7K188",-0.295380328659377,21.9279889635052,-3.03232246294281,0.0263168609476643,0.108924377321846,-3.75897330250221 +"Q9VH98",-0.332346377716103,17.0947032222688,-3.02849515786003,0.0264382928899829,0.109128953462845,-3.76392301438007 +"Q9VY05",0.258535774780082,18.4825515593824,3.02664745464091,0.0264971379810865,0.109128953462845,-3.76631323789827 +"Q9W3L4",0.33639026943367,17.7696347627699,3.0179428798025,0.0267763125617923,0.110007116633176,-3.77757937838375 +"O77477",0.293069131098814,16.807440520299,3.01485161336052,0.0268762368608218,0.110146346643368,-3.78158260787102 +"Q6NLJ9",-0.388570296622015,15.1016482844662,-3.00807696682042,0.0270966689371793,0.110777558301998,-3.79036000592234 +"Q8MLS1",-0.26788070154841,18.4766035937784,-3.00170588275076,0.0273057927961913,0.111359565731166,-3.79861971119777 +"P54397",-0.227311246792542,14.9225369134023,-2.99112354223129,0.0276570952081945,0.112306714888887,-3.81235005810009 +"Q9VGE7",-0.354318167302145,13.8652849460706,-2.99065699067013,0.0276726977334129,0.112306714888887,-3.81295571329665 +"Q9VQG4",0.237334711576707,19.1840370984006,2.98522751028326,0.027854987612236,0.112750941247218,-3.82000595698995 +"A1Z9J3",-0.246624313755166,17.8139857947095,-2.98337906774093,0.0279173493615714,0.112750941247218,-3.82240699852246 +"Q9V6Y3",0.248942072334723,15.1122124388313,2.97964005022766,0.0280439656889752,0.112839020874217,-3.82726507527361 +"B7Z0Q1",0.273874100517766,17.6321945299216,2.97874242532291,0.0280744566323741,0.112839020874217,-3.82843160412417 +"Q9VXR9",0.249157214341949,15.3542965475022,2.9739083343424,0.0282392932108407,0.112849473808254,-3.83471552844385 +"Q7KTA1",-0.561630740135342,16.979742810646,-2.97289108029207,0.0282741160802972,0.112849473808254,-3.83603823424466 +"Q9VTJ4",-0.236091897773777,15.5840007627085,-2.96945811516005,0.0283919840756288,0.112849473808254,-3.84050293647625 +"Q9VJQ5",-0.235714108082169,14.0548896851089,-2.96898156744181,0.0284083887209877,0.112849473808254,-3.84112281674392 +"Q8MLS2",0.246476523077222,17.3730051028942,2.96877986869794,0.0284153351315748,0.112849473808254,-3.84138518916346 +"Q9VMW7",-0.24724366164714,19.4842255567111,-2.95971879891536,0.0287293338840903,0.113759346681002,-3.85317696581825 +"Q9W0Z5",-0.309544826345142,16.889649241376,-2.95824285539948,0.0287808419061049,0.113759346681002,-3.855098636647 +"Q9VD29",-0.27559833285023,20.7369624750606,-2.95596287619286,0.0288606095882195,0.113804956957802,-3.85806766627241 +"O62530",-0.232466071793166,15.8204306433448,-2.94508677663096,0.029244489518674,0.115021673991897,-3.87223917880363 +"P48375",-0.31070591472729,21.8641371529735,-2.94332834397544,0.0293070812029713,0.115021673991897,-3.87453171751956 +"P00408",0.223362876601104,21.433113891185,2.93341601661256,0.0296626829657838,0.116144026260393,-3.88746158178994 +"O62619",0.313033585212999,22.3653454098945,2.92990094285569,0.029789923841544,0.116186092888784,-3.89204947269583 +"Q8ING0",-0.235030424045666,14.6728704057835,-2.92927242817875,0.0298127384630693,0.116186092888784,-3.89286996408732 +"Q9VPX6",0.228029378815382,21.4241422334686,2.92721300926712,0.0298876286885613,0.116206444411469,-3.89555874286015 +"P20007",-0.268782005172799,15.4227033316506,-2.91463210576422,0.0303496487612378,0.117728404962197,-3.9119949940617 +"Q7JYZ0",-0.591087074095993,16.7320918871587,-2.91092325850756,0.0304873473195429,0.117988156215771,-3.91684385914724 +"Q9V3T8",-0.445317860752123,15.447815774112,-2.90662495656581,0.0306477906567707,0.118334525035865,-3.9224653240419 +"Q9VZX9",0.233764089264668,18.6087279177154,2.89400721460761,0.0311241610699542,0.119895441203456,-3.93897930880581 +"Q9V393",0.452700850470237,15.9366468314667,2.89175698874813,0.031209968072345,0.119895441203456,-3.94192626468985 +"Q7KUC2",-0.234118791832035,19.3511424851372,-2.89024693741677,0.0312676959973041,0.119895441203456,-3.94390418577288 +"Q9W552",0.231729024226826,16.2063212931553,2.8829018317659,0.0315501707927865,0.120701112115523,-3.95352870062639 +"Q9VSL9",0.556383023478194,14.6495708409643,2.87131433996211,0.0320015118901554,0.122147647214598,-3.96872428174706 +"Q7K519",0.299152327097275,15.5972965847884,2.86606656527383,0.0322082442420106,0.122410529956891,-3.97561094582914 +"Q9VH39",-0.355096764933442,18.6072236458022,-2.86584107978079,0.0322171598627549,0.122410529956891,-3.97590691816591 +"Q9VMG0",-0.417983806164607,14.7492259784106,-2.8559625049162,0.0326104258919754,0.123623159972307,-3.98887895421399 +"Q94901",0.224216540401134,18.6787317151007,2.85134851983761,0.032795910177705,0.12404439495785,-3.99494141061915 +"Q9VD09",-0.331015999695737,14.5471423322605,-2.84313031198263,0.0331291577505051,0.125021346443083,-4.00574520996888 +"Q9VAG9",-0.242143666990065,17.5394830323853,-2.8386703870754,0.0333115597794612,0.125425918086098,-4.01161131185216 +"Q9VZG1",-0.244673643472275,17.853160640535,-2.8345086294384,0.0334827604124553,0.125786586414359,-4.01708713278695 +"Q9VE52",-0.251998358148807,15.8562012873399,-2.82675497380589,0.0338042963983895,0.126114882824983,-4.02729383458171 +"Q9V3L6",0.244285829855396,15.7631606287407,2.82588873223837,0.0338404280540222,0.126114882824983,-4.02843452159716 +"Q6IHY5",-0.2201343807988,20.9505106552191,-2.82517454386938,0.0338702492568485,0.126114882824983,-4.02937504018686 +"Q9VSN9",0.226087455592459,16.6111674198496,2.82511869554886,0.0338725824374055,0.126114882824983,-4.02944858938447 +"Q9VJD4",-0.231992238173117,20.7002771368207,-2.81974741597585,0.0340978035143672,0.126604666495962,-4.03652378496773 +"Q8SYQ4",-0.448499035304355,20.891287294908,-2.81834048565393,0.0341570676183553,0.126604666495962,-4.03837752542396 +"Q9NHD5",0.240126309213249,16.5359740548923,2.8165692611728,0.0342318372839803,0.126604666495962,-4.04071154219542 +"M9NDE3",0.227447609945981,16.1097901239693,2.80937917077532,0.0345372015320897,0.127264414792323,-4.05018953513113 +"Q9V3G1",0.242807714357571,21.1124381833407,2.80877917983756,0.0345628176864044,0.127264414792323,-4.05098068362337 +"Q9VCE0",-0.479912018183906,15.8884097949847,-2.80489738441143,0.0347290511778642,0.127594840010303,-4.05610010770004 +"Q9W1B9",0.392769421871225,20.5938318186771,2.79978471937457,0.0349493314143802,0.128121944613596,-4.06284517016191 +"P22465",-0.252998163516565,22.793730603129,-2.7963038770287,0.0351001785091285,0.12839275823076,-4.06743890228134 +"Q9VW66",-0.272224498812278,21.2910665316026,-2.78868450134599,0.0354328656630124,0.129035623782229,-4.07749857037432 +"Q95T12",0.226471970008644,15.9869205159921,2.78717097725553,0.0354993606902284,0.129035623782229,-4.07949752644749 +"Q9VLT8",-0.287599188307036,13.8977413623483,-2.78697446172549,0.0355080043861169,0.129035623782229,-4.07975708699997 +"Q9VWT3",-0.267739711120381,14.3735821755345,-2.78110497115144,0.0357672361323838,0.129691496016888,-4.08751135570589 +"O97477",0.253365639705219,20.9089609066514,2.77807961677157,0.0359016610261179,0.129691496016888,-4.09150952042098 +"Q8I937",-0.227329737187238,14.013899413689,-2.77293670497239,0.0361314433402314,0.129691496016888,-4.09830820446118 +"Q9VU70",-0.371798527363307,14.731008659884,-2.77253957926888,0.0361492533881939,0.129691496016888,-4.09883329295186 +"Q9VU04",-0.35058987028772,16.4703110871121,-2.7724690449276,0.0361524176714348,0.129691496016888,-4.09892655664005 +"Q0E9F9",-0.260833688714314,18.5232930459123,-2.77241141233968,0.0361550033860029,0.129691496016888,-4.09900276140697 +"Q9V420",0.258860702584119,17.4891190963608,2.76497946025212,0.0364901401195924,0.13061277622206,-4.10883236657223 +"Q9VB46",0.355505592883706,15.2597047793533,2.7565319718239,0.0368751957899081,0.131708408089008,-4.12001158458469 +"Q9VXN3",-0.251584475992358,16.9866092965253,-2.75439969734576,0.0369730892181914,0.131775882085349,-4.12283446461801 +"Q9U1K7",-0.219351275556392,17.6624479684085,-2.75150655648718,0.0371063679962626,0.131968916455791,-4.12666533069746 +"Q9V9M7",0.272241728987289,18.42153535294,2.74618207130693,0.0373530240368174,0.132563498071088,-4.13371765075653 +"Q9VEP6",-0.216865620268841,18.6563857684028,-2.73661247507925,0.0378008417602487,0.133386876555474,-4.14639930974419 +"Q9W2D6",-0.219688591600249,19.5561945095265,-2.73636805272511,0.0378123561256066,0.133386876555474,-4.14672333021597 +"A8E6W0",-0.232867890931535,16.4158387649549,-2.73610111301525,0.0378249356179493,0.133386876555474,-4.14707720729802 +"Q9V9S0",-0.266414156217685,17.053879217169,-2.7309225631006,0.0380698789070065,0.133738703847897,-4.15394361277931 +"A1Z9M5",-0.325208034335715,15.1109272665959,-2.72924369694496,0.0381496592761868,0.133738703847897,-4.15617020273294 +"Q9VQD7",-0.211628329015635,21.049058686889,-2.72765228033617,0.0382254522510044,0.133738703847897,-4.15828105044115 +"Q95NU8",-0.287157233720734,17.2400698490264,-2.72697002161703,0.0382579958169949,0.133738703847897,-4.15918606589442 +"A8JTM7",0.320397502503358,17.5144167610447,2.72415651609585,0.0383925186172545,0.133738703847897,-4.16291862441525 +"Q9W4W8",0.371028072396658,17.5819695813553,2.72387976363415,0.0384057788627955,0.133738703847897,-4.16328581892263 +"Q9W404",-0.268085783811888,15.9276826651783,-2.72050632227876,0.0385678147627043,0.133853512262515,-4.16776224884102 +"Q9VIK6",-0.22180904316583,16.5687804809626,-2.71926834800967,0.0386274648252935,0.133853512262515,-4.16940525125287 +"Q9VKG4",-0.234807151379217,15.9309582230761,-2.71327979406457,0.0389174371083633,0.133853512262515,-4.17735501852182 +"Q9NK57",-0.519322545796774,15.4837478566639,-2.71313202238767,0.0389246222761582,0.133853512262515,-4.17755122491926 +"Q9VPU4",-0.459400736277896,12.9454391872938,-2.71092240972858,0.039032233705301,0.133853512262515,-4.18048530752723 +"O76902",0.219042359345071,17.3689259487484,2.70939047373505,0.0391070313846759,0.133853512262515,-4.18251977620081 +"Q9W3W4",0.20956890701726,15.9481036866898,2.70867903793187,0.0391418207061316,0.133853512262515,-4.18346466024946 +"A1Z933",-0.368671375953895,15.7535182889108,-2.70859823283718,0.0391457742179687,0.133853512262515,-4.18357198329165 +"Q9VB22",-0.236358796875713,17.2814359478184,-2.70828753548587,0.0391609796067789,0.133853512262515,-4.18398464809357 +"Q0E8V7",-0.414762914684005,19.6394028195666,-2.70399132161668,0.0393718947657566,0.134149330221442,-4.1896917025895 +"Q9VL00",-0.225321917905799,15.8819639607412,-2.70168630210594,0.03948556504674,0.134149330221442,-4.19275433782475 +"Q9VCB9",-0.224908981929877,16.9965976267733,-2.70162077581614,0.0394888016419231,0.134149330221442,-4.19284140812944 +"Q8MSS7",0.375596671533437,14.1003149215438,2.6852986653613,0.0403040752204637,0.136640645259621,-4.21454152102681 +"Q9VI10",0.238885874006794,17.1865035426359,2.678887416717,0.0406293021015326,0.13746384564981,-4.22307143261053 +"Q9V9X4",-0.235542283017615,18.8906464061111,-2.67501460273674,0.0408271415766937,0.137853587348027,-4.22822572724155 +"Q9VZI3",0.241601632964883,14.558455502178,2.66303177106682,0.0414459327492869,0.139402502059778,-4.24418142856793 +"Q9Y143",-0.267016634864756,20.9696764980341,-2.66240999859245,0.0414783177519358,0.139402502059778,-4.2450096683267 +"Q8T3L6",-0.248153145834056,17.3751285106057,-2.66129240205442,0.0415365968367564,0.139402502059778,-4.24649845551474 +"Q9VDQ3",-0.52748635279227,13.3431966988052,-2.65276523841781,0.0419841987718803,0.140621774199792,-4.25786108342149 +"Q8IMT3",0.342227307811564,14.8718985745356,2.65085745054859,0.0420850560128069,0.140677101060845,-4.26040404715408 +"P12370",0.308050746862879,20.7683221465937,2.64904622263501,0.0421810518261353,0.140715988891987,-4.26281856939769 +"Q7JWD6",-0.211223926810572,20.4443271629605,-2.6379668551055,0.0427734578830549,0.142407440616638,-4.27759392063614 +"Q7K5J8",-0.231874030826873,18.2652557639377,-2.63415001533542,0.0429796261602036,0.142698220886481,-4.28268623087198 +"Q9VLS5",-0.245300894562469,14.5513385430499,-2.63261632121665,0.0430627725154541,0.142698220886481,-4.28473275292353 +"Q8T4G5",0.218564652618657,19.6749891633968,2.63160954037655,0.0431174480376417,0.142698220886481,-4.28607627300905 +"Q9VMD3",0.258808409681638,17.5182698323312,2.62073983506162,0.0437125664326148,0.144381308533864,-4.30058645940955 +"Q9VEW1",-0.306628493183375,14.6195274887049,-2.61179905373982,0.0442087464509645,0.145307665382837,-4.31252827498875 +"A1ZA22",0.352470245504692,13.4726448245281,2.61075793231743,0.0442669200515192,0.145307665382837,-4.3139192363571 +"Q9VAY0",-0.321954555792269,14.0003573351501,-2.61012929985248,0.0443020855793165,0.145307665382837,-4.31475914141521 +"Q9VK60",-0.201609022150077,21.3631333090251,-2.60838712259313,0.0443997006241743,0.145307665382837,-4.31708698413103 +"Q9VH77",0.200322861050287,15.5588437719867,2.60787208990068,0.0444286027249683,0.145307665382837,-4.31777519668822 +"Q9W4P5",0.246734030237704,19.7173010669649,2.6001789352093,0.0448627518126194,0.146424734391536,-4.32805743956341 +"P48604",-0.252365557154363,20.0877099405611,-2.59871787033102,0.0449457218276177,0.146424734391536,-4.33001069325851 +"Q9VGL0",-0.318019878891874,12.838053217841,-2.59109413393763,0.0453813546934605,0.14751143759801,-4.34020506624092 +"Q9VA37",-0.301672810433654,21.8337900375975,-2.58979293548037,0.0454561624252862,0.14751143759801,-4.34194541767833 +"P41375",-0.29666180446694,16.7638052297167,-2.58779918755634,0.0455710445698947,0.147597091927348,-4.34461227952293 +"Q7KLW9",0.20360088023978,17.1459447611782,2.58049915986002,0.0459943667173493,0.148559859712545,-4.35437920251755 +"Q9VAM6",-0.252504936529487,22.1718859018843,-2.57960634299461,0.0460464313377613,0.148559859712545,-4.35557397607717 +"Q02748",0.205891832569183,19.7693977049612,2.57473808935443,0.0463314460535412,0.149190834010245,-4.36208964388157 +"Q9VQD8",-0.318042202561898,17.4432838344308,-2.56808695394237,0.0467239249405618,0.150164752988164,-4.37099405315606 +"Q7JWU9",-0.314416845768557,15.4719120460729,-2.56093185477651,0.0471501541547185,0.151243186788597,-4.38057636991896 +"Q9VEB3",-0.500911998927421,12.5270538186129,-2.5543831000275,0.0475439430089782,0.152213621763869,-4.38934951363217 +"Q9VXG4",-0.209532844659684,20.0145827151191,-2.54691891594954,0.0479971096764831,0.153370074598417,-4.39935229299203 +"Q8SY67",-0.363637643170204,16.0920845769585,-2.53553915007797,0.0486969862537287,0.155119099271539,-4.41460888346734 +"Q8SZ63",-0.361778626783606,13.9269988869686,-2.53374127179527,0.0488085615826319,0.155119099271539,-4.41701996315189 +"Q9VVL5",0.243625475072644,17.333984118377,2.53350158022452,0.0488234575045313,0.155119099271539,-4.41734142053818 +"Q9VFJ2",0.293187562438414,13.8879676034966,2.52038620184723,0.0496460400477136,0.157341726924733,-4.43493589551314 +"Q9VAN0",0.209161802489373,20.4128482435471,2.51934965167659,0.0497116847058358,0.157341726924733,-4.43632685966826 +"Q9VL70",0.197157500947981,23.4173034311249,2.50877735678078,0.0503865880766031,0.159175812332905,-4.45051738814368 +"P07486",0.193899813097609,22.291344879092,2.50632176877174,0.0505447519057761,0.15934871749268,-4.45381423818497 +"Q9VXC9",0.445591315129217,18.9940575729867,2.50371193373861,0.0507134362332673,0.15934871749268,-4.45731853083184 +"Q24439",-0.193095488661275,24.3640479147952,-2.50348829494917,0.0507279190579215,0.15934871749268,-4.45761883314761 +"Q8MR62",-0.237597842343394,17.6760019038347,-2.49868276540559,0.0510402014859557,0.159752995352275,-4.46407233445506 +"Q9VS97",0.267001171589559,15.0883706336007,2.49603693357719,0.0512130197587596,0.159752995352275,-4.46762601906738 +"A1Z968",-0.189727100372611,17.2102994418998,-2.49566795411382,0.0512371703818603,0.159752995352275,-4.46812163341111 +"Q9W0H8",-0.235524668711186,19.3775980411491,-2.49275189979947,0.0514284645041354,0.159752995352275,-4.47203873050962 +"Q9Y171",0.572281041023508,14.9763682797632,2.49141784843957,0.0515162344358739,0.159752995352275,-4.47383088756423 +"O77134",-0.210664279320572,21.7051018623697,-2.49042637544411,0.0515815696925589,0.159752995352275,-4.47516288474784 +"Q9W1W4",-0.21647436358381,17.1783317617887,-2.49018923348552,0.0515972098634617,0.159752995352275,-4.47548148107853 +"Q9VUW4",0.18962639100981,14.5810295136925,2.4898010833115,0.0516228204405731,0.159752995352275,-4.47600296053658 +"Q9VJH8",0.423242746072475,14.4604681840612,2.4872377128227,0.0517922977087769,0.159980652922666,-4.47944703512142 +"Q9VMM6",-0.399802379865555,18.3026625342005,-2.48461783938113,0.051966128358016,0.159991748290838,-4.48296736095686 +"P40301",0.199660867379684,17.7882100095106,2.48429298442972,0.05198772636309,0.159991748290838,-4.48340389223916 +"Q9VDV2",0.287967914324261,14.3949383402641,2.47861686455061,0.0523666632505574,0.160861131311105,-4.4910321332625 +"Q9VF39",-0.270331265582985,16.1357548033219,-2.47245383662482,0.0527814660033997,0.161671496287566,-4.49931647539247 +"Q9VSL4",-0.194800180934472,20.9673658939778,-2.47090454851749,0.0528862945455322,0.161671496287566,-4.50139930729734 +"Q7JVI6",0.278752216528105,17.4464536974411,2.46861099341123,0.0530418922908636,0.161671496287566,-4.50448291946231 +"Q9VSY6",0.292741723062068,17.5900602583708,2.46786089070666,0.0530928867419179,0.161671496287566,-4.50549146089732 +"Q9VIG0",-0.198470764382227,17.2546804950917,-2.46670187026565,0.0531717842007068,0.161671496287566,-4.5070498578693 +"Q7JYH3",0.232602720636208,19.3197216248295,2.46611148936777,0.053212021260116,0.161671496287566,-4.50784369619713 +"Q9VCC0",-0.293930773115171,17.3753236954913,-2.46277491282556,0.0534400383072128,0.162069061629875,-4.51233041950035 +"Q7K2W6",-0.260048509567401,17.1770212641942,-2.4592056522258,0.0536851170055154,0.162516833330671,-4.5171305810547 +"Q86BM0",-0.213602966297067,17.5354605806093,-2.45717545713709,0.0538250551282197,0.162645275278751,-4.51986116071063 +"Q9W401",-0.216819674796419,24.5824851135683,-2.45465182992564,0.053999550054613,0.162818668110944,-4.52325564623716 +"Q9VLW8",-0.32088964152044,14.2789058454175,-2.45352495233104,0.0540776631495581,0.162818668110944,-4.52477147680765 +"Q9VN01",0.280851041936879,16.0167238188003,2.44387272009727,0.0547517189957121,0.164138923328144,-4.53775744400327 +"P92177",-0.290198768051727,24.0667356593412,-2.44363375003608,0.0547685210145626,0.164138923328144,-4.53807899910084 +"Q9VZD9",0.420354713106688,14.469418084191,2.44184609302063,0.0548943867104552,0.164138923328144,-4.54048452046029 +"A1Z6P3",-0.20770062815081,17.1965278066662,-2.44162771251522,0.0549097837033001,0.164138923328144,-4.54077838813485 +"Q9VLP3",-0.280974481679497,17.4374305353403,-2.43884478771735,0.0551064001928581,0.164431977677437,-4.54452344654556 +"Q9VNZ3",0.401753716962645,15.0408123838927,2.42811857632104,0.0558712964958147,0.16641331058074,-4.55896080015779 +"Q9VTC3",-0.321956744847064,17.0933001354789,-2.42674667647035,0.0559699443859683,0.16641331058074,-4.56080767233084 +"Q9VJZ4",-0.190871474806073,21.4295861899398,-2.42364939875618,0.0561933430808494,0.166780242453482,-4.56497752587227 +"B7Z0N0",0.245544874683562,13.0950648310189,2.41905441173276,0.0565265260316975,0.167471128633875,-4.57116437095674 +"Q9W4I3",0.207650324230213,16.3920119682044,2.4172494537492,0.0566579808985861,0.16756296478518,-4.57359482924013 +"Q9VJN0",-0.382962252321079,17.6777194799585,-2.41267132455954,0.0569928730787492,0.167977027687825,-4.57975998844264 +"Q9VD64",-0.515425295221791,15.5162257356842,-2.4116965865906,0.0570644483501306,0.167977027687825,-4.58107271490448 +"Q9VIN9",0.198022691340343,16.3771570333949,2.41028280995648,0.0571684330678615,0.167977027687825,-4.58297677171503 +"Q9VSN3",-0.228752719901834,20.7552251768731,-2.40984316861085,0.0572008103877006,0.167977027687825,-4.58356888861579 +"Q8MRM0",-0.195355014285891,18.5794401714193,-2.40561163785553,0.0575134442656201,0.168598286529094,-4.58926831105262 +"O18333",0.288362838042483,17.5454581319425,2.40077210863093,0.0578732367135651,0.169355366382854,-4.59578733861259 +"Q9VBI2",-0.224254172563509,22.1507105264265,-2.39901419228181,0.0580045224924032,0.169442282867476,-4.59815549695187 +"A8DRW0",-0.248622963634251,21.6509545711563,-2.39586687283251,0.0582403672560876,0.169650051407798,-4.60239560744937 +"Q961T9",-0.30525422247208,17.9663267761834,-2.39535176315278,0.0582790644224631,0.169650051407798,-4.6030895980617 +"Q9VQI7",-0.206761199526355,19.140848356379,-2.38512971693066,0.0590526875133019,0.171602583226808,-4.61686300158675 +"Q9W265",0.209199299178868,16.9668554103147,2.37720849358038,0.0596597096273574,0.173065035927708,-4.62753818010699 +"Q9VHT5",0.270692497480015,15.5430078161833,2.37195803488897,0.0600657273259347,0.17391923918364,-4.63461493098316 +"Q8MLP9",-0.43967457004026,14.9179264495234,-2.37070948238305,0.0601627104370264,0.17391923918364,-4.63629787165419 +"A0A0B4LFA6",0.184660354084514,19.4612388957456,2.36016443433781,0.0609884949853918,0.176001400753691,-4.65051310329167 +"Q9W425",-0.39049415793383,14.1471542577607,-2.3519574902601,0.0616395286415542,0.177572942615047,-4.66157809154388 +"Q9VLT7",-0.273512775969081,18.0573436200131,-2.34978030491029,0.0618134766048997,0.177666755075799,-4.66451369602061 +"Q9VZF9",-0.25002418303368,19.1933390939781,-2.34888545437438,0.0618851227212464,0.177666755075799,-4.6657202919191 +"Q7K3J0",0.179928510093184,20.3116020840633,2.34558074956011,0.0621504797416158,0.177792444939033,-4.67017640541079 +"Q9W227",-0.186629599399453,22.0111460277373,-2.34534058680068,0.0621698111237931,0.177792444939033,-4.67050025201529 +"Q9VFN9",-0.182738338534975,15.8920235390767,-2.34436166134452,0.0622486737676232,0.177792444939033,-4.67182029085493 +"Q9VDU7",-0.181419946794595,18.2211642488187,-2.33892617575351,0.0626884974365805,0.178742587562763,-4.67915010193413 +"Q8IPD8",-0.262424255948915,18.525113576428,-2.33699637370505,0.0628454447781617,0.178884303566508,-4.6817525752777 +"Q9VH66",0.210654081448197,16.7128180364159,2.33420707631728,0.0630730315098773,0.17901396971361,-4.68551423873736 +"Q9VSL2",-0.184382794402474,20.4943021742757,-2.33380825441126,0.0631056439997618,0.17901396971361,-4.68605210181733 +"O76521",0.205364984442893,16.0220982786236,2.33240623476459,0.0632204322620187,0.179035112076481,-4.68794292543 +"Q7K1U0",-0.197499922523523,16.7987902557051,-2.32002085235293,0.064244149009057,0.181625831435775,-4.70464751269511 +"Q9VR79",0.215620402479402,20.0269321137851,2.31632170169472,0.0645533039410064,0.182107996461076,-4.70963703335314 +"Q9VF15",-0.238032600815796,20.9278821693609,-2.31537051338633,0.0646330538998544,0.182107996461076,-4.71092004628523 +"Q9U9Q2",-0.225519177190447,15.5435125311765,-2.31078809084028,0.0650187223218479,0.182885714726547,-4.71710118016228 +"Q9VAI9",-0.271188084042098,21.7505791089185,-2.30839396789374,0.0652211875877343,0.183146365145355,-4.72033063636535 +"Q9VLT3",0.187807462866591,19.3804947812853,2.30392734669885,0.0656007076207806,0.183759482049024,-4.72635582638589 +"Q9W1G0",-0.187074273114781,21.8493400011547,-2.30269855435692,0.0657055256701252,0.183759482049024,-4.72801341471497 +"O18332",0.188272161041656,20.634617439389,2.3019433904413,0.0657700304456039,0.183759482049024,-4.72903210348641 +"M9PF16",0.174475004657136,21.4880210601806,2.2956206851241,0.066312744162603,0.184965982045521,-4.73756133522589 +"P23128",0.229604945652309,14.7519677830177,2.29246889410718,0.0665850497256364,0.18541546401062,-4.74181312678452 +"O46098",-0.249175253734069,18.0180777846453,-2.29043546250405,0.0667613603534408,0.185596581782565,-4.74455626331038 +"Q9VWI0",-0.22297605303034,21.0121046886683,-2.2849012177946,0.0672437193135547,0.186442369857022,-4.75202212389626 +"Q9W5W7",0.287800082187863,14.8235433816937,2.28438211374794,0.0672891526702201,0.186442369857022,-4.7527224142787 +"A1ZAL1",-0.192484518722082,17.2351951804606,-2.28043124091395,0.0676360093915086,0.187092642893924,-4.75805229885185 +"Q7KN75",0.212968109445868,19.4839468205013,2.27798276515296,0.0678519157074205,0.187100663258473,-4.76135539611519 +"O76742",0.26137331525339,18.0021761945435,2.27668846152684,0.0679663415907568,0.187100663258473,-4.76310146660834 +"Q9W266",-0.198383462276063,18.4513074761742,-2.2762131262213,0.0680084159070296,0.187100663258473,-4.763742713975 +"O96299",0.357606046939392,15.6753615155483,2.27489576730983,0.0681251659326208,0.187100663258473,-4.76551988601005 +"Q7JVK6",0.216143316152749,17.3252768887495,2.27405530353632,0.0681997621469733,0.187100663258473,-4.76665370590942 +"Q9VD02",-0.24876220841773,18.2821197528581,-2.27276948709961,0.0683140532211173,0.187106470891336,-4.76838832317888 +"Q9W3T2",-0.199112766868407,16.4745813684085,-2.26846753133739,0.0686979106429011,0.187568595514937,-4.77419181132234 +"Q9VQR9",-0.231700891580875,16.265480313803,-2.26835836533632,0.068707680970999,0.187568595514937,-4.77433907952514 +"Q9VFV9",-0.18807555214471,21.3233773380896,-2.26615349052481,0.0689053312556738,0.187800804794876,-4.77731351443901 +"Q9VTB0",-0.184820641278113,16.9747464339577,-2.26393319592463,0.069104970831417,0.18803766940751,-4.7803087351627 +"Q9W3M8",0.217184647860208,18.5369444332851,2.26268209291915,0.069217733784962,0.188037752366965,-4.78199648936674 +"Q95SH0",-0.641172539669382,13.4180980982796,-2.2566427201254,0.0697648066147859,0.189215768184493,-4.7901435798278 +"Q9VC05",-0.317806398773392,14.9535880083021,-2.25151476282204,0.0702329021623633,0.19017610520588,-4.7970610090416 +"Q9VZG0",0.207443686392722,21.4911711662295,2.24456221906357,0.070872849650013,0.190893958972361,-4.80643942648018 +"Q9VPR1",-0.295787239593489,13.749766523468,-2.24431231307636,0.0708959664455972,0.190893958972361,-4.80677652163768 +"Q9VJI9",-0.543840940851581,17.5781000064321,-2.24290073361792,0.0710266896788476,0.190893958972361,-4.80868057302609 +"Q9VFB2",0.209608912899867,16.3980023618668,2.24213547507207,0.0710976647720949,0.190893958972361,-4.80971280699278 +"Q9VVK5",-0.248327064676499,15.9664031710181,-2.24144199116182,0.0711620475922004,0.190893958972361,-4.81064822132545 +"Q9Y114",-0.178233938710111,18.5874385767238,-2.24119839303139,0.0711846777462883,0.190893958972361,-4.81097680052136 +"Q0KIE7",0.466660709487474,14.2779489520284,2.23937021064774,0.0713547573208088,0.191042913661491,-4.81344273870835 +"Q9VC48",0.177193687443779,18.3879610926699,2.23784198792956,0.0714972596631872,0.191117674868904,-4.81550404985833 +"Q9VZ64",-0.210032394951565,19.4449351037328,-2.23523106914116,0.0717414145492613,0.191416717300212,-4.81902567218322 +"Q9VEN9",0.256926493622398,14.8159446472976,2.2341938883604,0.0718386480994802,0.191416717300212,-4.82042460542241 +"P25171",-0.175960010049312,16.6229658035921,-2.2303692905851,0.0721983976379932,0.192068464529781,-4.82558304756206 +"Q9VGV9",-0.180429896122886,16.0887593711491,-2.2281061562375,0.0724121657705331,0.192330402078422,-4.82863536907673 +"Q7JWX3",0.170292642947494,18.0190877346473,2.22427701687444,0.0727753724676823,0.192751904319493,-4.83379961982144 +"Q9VYT0",0.170222640544246,18.4404130549383,2.2238210979393,0.0728187454888759,0.192751904319493,-4.83441449029927 +"O02649",-0.194552137073369,23.2543798256411,-2.22262329739375,0.0729328257509387,0.192751904319493,-4.83602987686273 +"Q9VE85",0.206421802805128,15.6762881784125,2.22157212763085,0.0730330956414386,0.192751904319493,-4.83744749484693 +"Q9VL16",-0.176002738478278,20.6985315850521,-2.21796099860621,0.0733786636304328,0.193357995158866,-4.84231736425105 +"Q8T3X9",-0.208967976646569,18.341788975631,-2.21123600361636,0.074026805741273,0.194758220783034,-4.85138591173076 +"M9PDU4",-0.175523802092748,22.5377515745067,-2.20965453827344,0.0741800968039132,0.194854175541618,-4.85351837202673 +"Q9VEY0",0.211460954563176,17.7540691678832,2.20424620322099,0.0747068517592072,0.195634763703731,-4.86081064206662 +"Q9VEN3",-0.174166511276379,17.6163759223112,-2.20419520780385,0.0747118372177919,0.195634763703731,-4.86087939835364 +"Q8SX89",-0.331957633280249,15.4654992467318,-2.19495673204914,0.0756208088313101,0.19770455976587,-4.87333454890343 +"Q9VXF9",-0.18098348291149,17.4401080468671,-2.18808173421921,0.0763047690447415,0.199180523891438,-4.88260200382348 +"Q9VWF0",-0.199344240599091,16.4767967598071,-2.18672943062671,0.0764400654472455,0.199221920571884,-4.88442476087772 +"A1Z9I0",-0.199961968337018,19.4994962280501,-2.18312334401987,0.0768020817986952,0.199853155132954,-4.88928513498873 +"Q9VAA9",-0.238858811074568,17.0938332229066,-2.17802426986883,0.0773170509543492,0.200608133835541,-4.89615718808079 +"Q9W385",-0.206628170230058,16.7729720200953,-2.17657484440242,0.0774640920350716,0.200608133835541,-4.89811045283964 +"Q9VIH1",0.19258456904727,15.6910294269198,2.17561120516803,0.0775620133213487,0.200608133835541,-4.89940903181149 +"Q9V3W9",-0.173699971756541,18.4670319447387,-2.17550032195137,0.0775732891630241,0.200608133835541,-4.89955845383592 +"Q9VJI5",0.202729215877897,17.3547009570808,2.17385343315855,0.0777409655391416,0.200730542599517,-4.90177769584841 +"P45889",0.18368092776868,19.1561738343096,2.16917027950044,0.0782198545323985,0.201654895456013,-4.90808796441344 +"Q7JVZ8",-0.233970138045033,16.073670596879,-2.16604941222025,0.0785407022561208,0.202169585437052,-4.91229276445575 +"Q24583",-0.175211614807182,21.2199474766356,-2.16348715562123,0.0788051507145005,0.202537737121397,-4.91574470259141 +"B7Z0C9",-0.195011921590536,15.9425281096976,-2.15276399350948,0.079922030306862,0.204634200026588,-4.93018879492289 +"Q9W3N7",-0.389035157173195,17.2309513329419,-2.15250285861143,0.0799494346381038,0.204634200026588,-4.930540492546 +"Q8SX57",-0.180087819437233,18.0369931833787,-2.15212688352378,0.0799889079240619,0.204634200026588,-4.93104685304466 +"Q9VXE8",-0.204123889188153,16.2272572048757,-2.1434818385054,0.080902185475915,0.206413481587166,-4.94268846770153 +"Q9VJ28",0.183550837176128,18.8823387713964,2.14320223408831,0.0809319046510832,0.206413481587166,-4.94306494116045 +"O77263",-0.164587846474525,15.5188507090926,-2.14172849747045,0.081088736815964,0.206497729784776,-4.94504920295472 +"Q8MKK0",-0.918240950168581,15.9563250252479,-2.13419718450415,0.0818951745880953,0.208147742281006,-4.95518809782163 +"P61851",-0.2965232769583,23.4607098479903,-2.13185127622306,0.0821480763909191,0.208147742281006,-4.95834574867581 +"Q7JV69",0.178309044915087,16.3847706950488,2.12993351577226,0.0823554269278849,0.208147742281006,-4.96092692521353 +"Q9VWH4",-0.17078206879814,24.4388522434396,-2.12935464741642,0.0824181220996258,0.208147742281006,-4.96170601146603 +"Q24297",0.220081857733906,16.9312344791206,2.12882135608896,0.0824759250542277,0.208147742281006,-4.96242374352501 +"Q9W1L1",0.345664607751402,14.7272447718651,2.12871435021503,0.0824875284156711,0.208147742281006,-4.96256775625271 +"Q9VNH5",0.191233532580934,16.9210908833775,2.12670732274731,0.0827054796027809,0.208147742281006,-4.96526879864373 +"Q9VCR2",0.172874579066169,15.5345763049714,2.12618130513182,0.0827627012592738,0.208147742281006,-4.9659766793463 +"Q7K012",0.216875322833811,15.4205585076452,2.12442550528512,0.0829540011520695,0.208147742281006,-4.96833943132739 +"Q9VMQ5",0.386265999408355,13.493106842093,2.12414540552369,0.0829845615209047,0.208147742281006,-4.96871634415266 +"Q9VCH5",-0.172567071027697,17.9619988539395,-2.12254909382029,0.0831589518308713,0.208173199803592,-4.97086433275757 +"Q8SYJ2",-0.188345679016845,22.6094057529163,-2.12176894177613,0.0832443191061126,0.208173199803592,-4.97191405840677 +"O61604",0.167497662089467,20.8924006260048,2.11640535738124,0.0838337017165968,0.209333255184556,-4.97913019978736 +"Q9VWL4",-0.192934810487136,16.3990416088749,-2.11379488632884,0.0841221274577873,0.209739474737802,-4.98264181577674 +"M9PGG8",-0.214211328506448,18.4487545039833,-2.11102249535675,0.0844295755028761,0.210191838714623,-4.98637088013732 +"Q9VZ67",0.1930475755223,15.1302193405095,2.10888437076202,0.0846674848525529,0.210469992152099,-4.98924654829558 +"Q9VVM1",-0.196160113678246,15.4685308417039,-2.10315878486818,0.0853080144734591,0.211746678782336,-4.99694601610169 +"Q9V3Z9",-0.175827076389098,21.4706845959668,-2.10142785591641,0.0855026471926384,0.211862750120963,-4.99927334146787 +"Q9W1F8",-0.186019185533622,17.642057797154,-2.10048545225882,0.0856088091016362,0.211862750120963,-5.0005403859521 +"Q9Y0V3",-0.268918223520085,15.0314458392705,-2.09439450735322,0.0862982698254549,0.213252613435346,-5.00872838988223 +"Q9VMB9",-0.187199311017547,22.5462253695354,-2.09314177776733,0.0864407862332791,0.21328880390105,-5.01041216989931 +"Q9W3B3",-0.257189263730503,15.7006982941588,-2.08945934654031,0.0868611351652182,0.21400941426231,-5.01536117323706 +"Q94533",-0.203224078657591,15.4405813316592,-2.08563611875794,0.0872998040510616,0.214772969258364,-5.02049857768704 +"Q9VAC4",0.158620848215438,19.3520941588636,2.08318126973948,0.0875826807760487,0.215151563379159,-5.02379679349436 +"P05031",0.576396049464712,13.6247395115572,2.08163437294824,0.087761421264822,0.215214281144919,-5.02587494516546 +"Q95RA9",-0.183418612609906,20.5315537989215,-2.08072855538089,0.0878662622660013,0.215214281144919,-5.02709178353161 +"Q9VN88",-0.197788270961647,16.9987338196322,-2.07591226763299,0.088425895916181,0.216025902259147,-5.03356095118239 +"Q9VDV3",-0.182866171877901,17.5473050611311,-2.0756485162151,0.0884566494262574,0.216025902259147,-5.03391517710679 +"P13060",0.184947483229305,20.3802981309639,2.07222930385995,0.0888563367697288,0.21668475107004,-5.03850688718835 +"Q9I7C6",0.249151509944349,15.5074301825748,2.07004336986539,0.0891128418591488,0.216993022220526,-5.04144202342526 +"Q9VIL2",-0.321249798979631,16.04531769933,-2.06587304355786,0.0896043345002266,0.21787176377023,-5.04704082739645 +"Q7K2N0",-0.193878162982674,15.4938999905965,-2.06384723841683,0.0898440984988586,0.218008716942345,-5.04976013023395 +"Q59E04",0.158654111902534,16.18585134343,2.06318973001293,0.0899220607052356,0.218008716942345,-5.05064266653788 +"Q9VE12",-0.162158073083534,15.6428401855747,-2.05992437689317,0.0903102806257423,0.218632145259417,-5.05502513820976 +"A1ZA23",-0.166129057863962,18.223532338965,-2.05443475377394,0.0909668631177202,0.219902503884576,-5.06239120238358 +"Q9VVI2",-0.248848429481122,13.7457967314135,-2.05326958173006,0.0911068574937444,0.219922197249733,-5.0639543816586 +"Q8IPX7",-0.199488600079782,15.2817248562644,-2.05199981520412,0.0912596727956107,0.219972737316588,-5.06565777550123 +"Q9VN73",0.18970745518045,18.4860194528141,2.05066416957469,0.0914207029357754,0.220042904035892,-5.06744942394228 +"Q9VN02",-0.170973522517329,17.366202306935,-2.04885463336709,0.0916393362056076,0.22025131526074,-5.06987655241128 +"Q6IGM9",-0.818077755321159,14.9956992744844,-2.04503359789572,0.0921027836185056,0.220922955099169,-5.07500093134999 +"Q9VM69",-0.228533962618892,16.9602113722094,-2.04436866930299,0.0921836791061282,0.220922955099169,-5.07589255706692 +"Q9VUX1",0.265118448353039,16.3095252074873,2.04246319184366,0.0924159075437107,0.221161741438894,-5.07844749844581 +"Q7KN90",-0.164966149945361,17.3407530162599,-2.04076750632774,0.0926230764664591,0.221303672696722,-5.08072091736081 +"Q9VVA7",0.155607037007631,17.3977639060511,2.03980757631994,0.0927405678747055,0.221303672696722,-5.08200780848345 +"Q9VMB3",-0.19370060372502,18.8061083056771,-2.02966885965868,0.0939909492016331,0.223967004669034,-5.0955956047668 +"Q9VQR2",-0.190354991533738,21.3375088448791,-2.02360498437507,0.0947470992978088,0.225268148137233,-5.10371852069593 +"Q9VN44",-0.159568727020119,19.6416111876611,-2.02312596859271,0.0948070983167489,0.225268148137233,-5.10436006526185 +"Q9VLU4",-0.166323960445343,17.3655423895896,-2.02033885241193,0.0951569764322355,0.225607072992731,-5.10809247398958 +"Q9VBV5",-0.189592161246999,17.1708555254675,-2.01983593511526,0.0952202514309847,0.225607072992731,-5.10876589590812 +"Q9VLS4",-0.28124491452591,20.5842997901106,-2.01778999551384,0.0954781109048446,0.225897147502526,-5.11150525868743 +"Q8MRT7",-0.155707042451279,15.4182371464417,-2.01425607221397,0.0959252054230226,0.226633488166575,-5.11623610555474 +"Q7JXC4",-0.184392518246707,21.6769127969034,-2.01236896755433,0.0961648360261658,0.226878283580827,-5.11876193546389 +"Q9VCK0",0.216637319389221,18.156142348766,2.00772777777863,0.0967568171157629,0.227952501340526,-5.12497273351384 +"Q8MZI3",0.413034852735073,17.650706598204,2.00567800809852,0.097019457994856,0.228248880021749,-5.12771512654246 +"Q9VSL3",0.168809627178064,22.2851558923826,2.00360845504055,0.0972853787015344,0.228531719963815,-5.13048361633208 +"Q9VA76",0.160345924995138,15.1587284202298,2.00261185899373,0.0974137007759429,0.228531719963815,-5.13181665217343 +"Q9V3Y2",-0.159967741229305,17.9001589788102,-1.99878212551757,0.097908442156387,0.229369777411311,-5.13693844202465 +"P40797",0.162059042426662,19.067218912267,1.99741795497656,0.0980852955447422,0.229461813420238,-5.13876253282439 +"M9PF61",-0.18354001018924,22.7375218831005,-1.99325873162937,0.0986265356444503,0.230404847976111,-5.14432296769864 +"M9NFC0",-0.201623415377831,19.9735756161338,-1.99191415458881,0.0988021618465674,0.230492316028076,-5.14612018436687 +"Q8SXC2",0.35283418394144,14.8843694232968,1.98006723680499,0.100363547134184,0.233662243096578,-5.16194794111369 +"Q94915",-0.163389175708776,16.8930563311086,-1.9794834233517,0.100441144064896,0.233662243096578,-5.16272758322657 +"Q9VZ66",-0.193239079474173,17.0169843659693,-1.97386761063333,0.10119071681648,0.234868177259378,-5.17022540811 +"Q7JW03",-0.236707533343576,17.1470030246835,-1.97349138244105,0.101241138758689,0.234868177259378,-5.17072760954851 +"Q9VWP4",0.27202002219396,15.0936649931889,1.96618880614494,0.102224948510522,0.236553580835968,-5.18047251085597 +"Q9VTW6",-0.486338952356988,16.1304678984494,-1.96599436012089,0.102251278047202,0.236553580835968,-5.18073191494768 +"Q9VH26",-0.207501159087546,18.0317497924634,-1.96319159725121,0.102631567607432,0.237104507990577,-5.18447055831755 +"Q9VLS9",-0.194717226852788,19.054382168096,-1.96052386065667,0.102994882771375,0.237613502972345,-5.18802833405907 +"Q7K1W5",-0.166494025946786,19.6933124804681,-1.95948444150641,0.103136796254184,0.237613502972345,-5.18941433468736 +"P08182",-0.174892797335296,19.6350811328468,-1.95623152949099,0.10358221691197,0.238310534909194,-5.1937511561264 +"Q9VBC9",-0.277325389877591,15.4489449718581,-1.94786131949601,0.104737424357684,0.240493407967382,-5.20490522615498 +"Q9V400",-0.153779642753253,14.6417906700059,-1.94727117109344,0.104819369060124,0.240493407967382,-5.20569136624826 +"Q7JVH6",0.17950010453843,18.9788956514725,1.94537319251108,0.105083356609754,0.240767910473997,-5.20821941512594 +"Q9VWU1",-0.180184365404491,14.853690474425,-1.94395728008297,0.105280736912605,0.240889258121022,-5.21010510786588 +"Q9W260",0.186925387164209,17.2792670399152,1.94087339336956,0.10571194827096,0.241466850365023,-5.21421141427203 +"P32234",-0.153635350220936,16.7249764451782,-1.94008339038689,0.105822702408173,0.241466850365023,-5.21526316049629 +"Q9VIH9",-0.460612157112223,19.1704949067955,-1.93412738316335,0.106661528173612,0.24304840026446,-5.22319023325647 +"Q7K159",-0.357795567473014,14.6613765033245,-1.93253304532969,0.106887220071171,0.243230399834533,-5.22531150888183 +"O62621",0.242647169790672,13.2673227766912,1.93136912436059,0.107052290739195,0.243274142987708,-5.22685992697721 +"Q8SZM2",-0.179225558102456,21.1185144787241,-1.92942309339629,0.107328864091846,0.243570809939046,-5.22944847083337 +"Q95083",0.148470071577147,19.8821638243217,1.92768641474046,0.107576299758828,0.243800635866474,-5.23175816788547 +"Q9VMH9",0.172866519157651,20.0035221372293,1.92159770295544,0.108448403970989,0.24521929791816,-5.23985304040511 +"Q7K486",-0.148325894608863,17.5571382750303,-1.91967409604311,0.108725424129839,0.24521929791816,-5.24240953321286 +"A1Z8Z3",-0.203313110052019,20.0386316106953,-1.91697819026796,0.109114878095101,0.24521929791816,-5.2459916660227 +"Q9U915",-0.148386615165567,21.089986176621,-1.91548561741698,0.109331108247538,0.24521929791816,-5.24797451285587 +"Q9TVP3",-0.20892718244707,22.7811723033901,-1.91520646219193,0.109371598118538,0.24521929791816,-5.24834533354326 +"Q9VYS2",-0.276018635905821,15.0630021499822,-1.91312459923581,0.109674042666031,0.24521929791816,-5.25111051031007 +"Q9VII1",-0.434482036311451,19.3341566704604,-1.91222213825685,0.109805413090604,0.24521929791816,-5.25230901300367 +"Q9VKW5",0.233664922808391,17.235395822429,1.91191893356337,0.109849586283946,0.24521929791816,-5.25271165780597 +"Q9W392",0.177120795763472,19.9510848834974,1.91153755106266,0.109905174723153,0.24521929791816,-5.25321810370364 +"Q26377",-0.251984682137492,16.7520972471304,-1.91131569440239,0.109937524638998,0.24521929791816,-5.2535127035537 +"Q95TN1",0.226654661588718,14.0816545579704,1.91129776679337,0.109940139167603,0.24521929791816,-5.25353650906709 +"Q9VIH3",-0.227572009751091,13.8341619750159,-1.91090638053202,0.109997233983968,0.24521929791816,-5.25405620873094 +"Q27377",-0.242049605638726,19.9431928381541,-1.91011027562499,0.110113461715049,0.24521929791816,-5.25511325254187 +"Q9VIE7",-0.158719279958898,14.9804511369732,-1.90214287720333,0.111283575140693,0.246906401087937,-5.26568773154408 +"Q9VL66",0.169013470150825,15.7680199697921,1.90206439665853,0.111295163716927,0.246906401087937,-5.26579185229491 +"Q9VH25",0.177673913324432,16.2023322791195,1.90192929408374,0.111315116078015,0.246906401087937,-5.26597109208634 +"A0A6H2EG56",-0.205510306627424,20.8993840444293,-1.89939529097936,0.111690020193088,0.247289100912554,-5.26933250461789 +"Q7KW39",0.155418344629062,21.596400615441,1.89790096658252,0.11191170613219,0.247289100912554,-5.27131437134396 +"Q7KUA4",-0.182382617914563,18.7617468466364,-1.89776151551152,0.111932416779963,0.247289100912554,-5.27149930533136 +"Q9VG33",-0.256762638968141,19.8300994600647,-1.89655193459153,0.112112221871223,0.247358711747619,-5.27310329320954 +"Q9VSR5",0.189771426049376,20.086763824227,1.89470687477581,0.112387057028476,0.247371267033658,-5.27554960230756 +"A1ZB71",-0.144536101852555,19.3157124669231,-1.89413583415332,0.112472256388887,0.247371267033658,-5.27630663746176 +"P56538",0.190282845862765,17.169040611543,1.89352929013213,0.11256282474733,0.247371267033658,-5.27711069294959 +"C0HK94",-0.176791091137463,18.5188741899967,-1.89157447017304,0.112855220474689,0.247687510199711,-5.27970173900699 +"Q9VS11",0.143137966806703,14.7920900791102,1.88615327260338,0.113670148838685,0.249148236876381,-5.28688468966173 +"A1ZBU8",-0.150941563412786,20.9338955762501,-1.87517953163807,0.115338078797875,0.252472329967001,-5.30141242516521 +"Q9W329",-0.147933891907075,16.446738245709,-1.86333433932102,0.117166322029802,0.255818947954624,-5.31707497722789 +"Q9W3X8",0.240670296732159,13.9488075308277,1.86328713091857,0.117173666808953,0.255818947954624,-5.31713735941308 +"O61491",0.148570418658633,20.9898007954362,1.86173729273191,0.117415052717999,0.256010860043951,-5.31918516926881 +"A1Z877",0.17404818783962,19.9735929415913,1.85905928170132,0.117833337068069,0.256297672446978,-5.32272281685791 +"Q9VCD9",-0.17326201628568,18.4381975083316,-1.85892784169421,0.117853905735511,0.256297672446978,-5.32289642189241 +"Q9VGK3",-0.200131014354866,17.0853171637423,-1.85378614955299,0.118661369960463,0.257579126733566,-5.32968553671329 +"Q9W1N3",-0.173721603419896,20.5976745425036,-1.85317781313904,0.118757273943057,0.257579126733566,-5.33048852801444 +"Q9VGP7",0.252543481996105,15.8204482587181,1.85188770206506,0.118960918742776,0.257579126733566,-5.33219126495298 +"Q9VBL3",-0.567059570308302,14.4976637520731,-1.85125540944391,0.119060855342673,0.257579126733566,-5.3330256975959 +"P20432",-0.159111605957332,23.6123447033967,-1.84990098411059,0.119275213746591,0.257708622447297,-5.33481292252247 +"Q7JXF7",-0.170754982052145,17.836110467718,-1.84445594394624,0.120140915420897,0.259126957712956,-5.34199510071207 +"Q7K0E6",0.200836569352219,16.7855479556281,1.84302646558783,0.120369236426341,0.259126957712956,-5.34387987918217 +"Q9VEC8",-0.161078038457681,16.4903504477461,-1.84284834465397,0.120397717162794,0.259126957712956,-5.34411471108607 +"Q9VJZ6",-0.204209775619354,19.8300071482748,-1.83926225535097,0.120972565712658,0.259797185258964,-5.34884151622696 +"Q9W3X7",-0.142973234486451,21.6771736482264,-1.83896318641458,0.121020631262719,0.259797185258964,-5.34923562753043 +"Q9VW14",-0.185128254061219,13.6727362184536,-1.83692886562756,0.121348093399487,0.260165321067281,-5.35191607441856 +"Q9VGJ9",0.139237128253097,18.0944269421868,1.83314167697663,0.121960094624353,0.261141768720695,-5.35690439742926 +"B7YZT2",-0.302062889746971,18.476269458388,-1.82403147114431,0.123445055481858,0.263982503261204,-5.36889464797263 +"Q9VRY5",-0.197616402007636,16.8703204009771,-1.82300460622368,0.12361357202727,0.264004402229815,-5.37024530286478 +"Q9VEB1",-0.14067514157442,25.1919118273807,-1.82012481067278,0.124087405200566,0.264677483215529,-5.37403223708954 +"M9MSK4",-0.160058893789728,20.5162019660806,-1.81770993191783,0.124486150889373,0.264975613564771,-5.37720675873056 +"Q9W2N5",0.580804007965193,12.7861852168099,1.81676416641296,0.124642667070867,0.264975613564771,-5.37844976988408 +"Q9V3G3",-0.338614633152126,14.7594050645194,-1.81639538441712,0.124703750988216,0.264975613564771,-5.37893441672251 +"Q9VFM0",0.292262501341629,14.3520137931618,1.81335645232543,0.125208257794979,0.265709127229039,-5.38292726920563 +"Q9VNR6",-0.314090762543078,14.5926324580287,-1.81147428487669,0.125521753339788,0.266035939734139,-5.38539947689961 +"P05205",-0.190475736883553,17.9583380216008,-1.81046743620576,0.125689778730051,0.26605399863163,-5.38672171861415 +"Q9VNA3",-0.138733374416297,18.6132843046924,-1.80600147427013,0.126437797801229,0.266998814640953,-5.39258457134454 +"Q8MLW4",-0.140447527678518,18.6006579453882,-1.80589150561083,0.126456273121315,0.266998814640953,-5.3927288940121 +"Q7JUN9",-0.688494860431048,13.4534127038119,-1.80232489257691,0.127056954904502,0.26792794030431,-5.39740859061557 +"Q9VJ80",0.243298923861841,16.4117885074007,1.79865976224486,0.127677212476152,0.268895947487654,-5.40221527173885 +"Q9VVC8",-0.154005007050513,16.4828651307603,-1.79755644083177,0.127864524052281,0.268950852609339,-5.40366178079826 +"Q9VQ35",0.189443086622926,12.0606232238603,1.79583226669886,0.128157790227247,0.26909688329901,-5.4059218338953 +"Q7PLT4",0.192567320784956,15.7786523936689,1.79524902993789,0.12825714603711,0.26909688329901,-5.40668622497098 +"Q8I099",0.146960614557749,16.8533277747871,1.79430611601832,0.128417937113916,0.26909688329901,-5.40792188344295 +"Q9VW34",0.160823018504892,18.3329115646915,1.78987502078974,0.12917626285116,0.270346306694774,-5.41372659420953 +"Q9V9U7",0.206824231148065,17.8279952659311,1.78807678887063,0.129485285889606,0.270653454716619,-5.41608127535172 +"Q7KTG2",0.152046715445042,18.0122722627761,1.78500213841138,0.130015375495697,0.271421334576749,-5.42010601414652 +"Q9W2M0",-0.172877550478393,17.8323928740777,-1.7823966150284,0.130466284924642,0.272022204067878,-5.42351533109092 +"P49028",0.226189712294701,16.3694771728172,1.77992294729544,0.130895823709734,0.27252462597872,-5.42675097726147 +"Q9VZ24",-0.298382719585,21.7531201578259,-1.77912880014591,0.131034022802718,0.27252462597872,-5.42778951394722 +"Q7K1M4",0.256033520387305,17.1701809455869,1.77812301482779,0.131209261097761,0.272549249702448,-5.42910465254269 +"Q9VVU2",0.13660771085496,20.1684293075408,1.77441702306014,0.131856982354306,0.273424650031385,-5.43394890718113 +"Q9W140",-0.342031392488282,13.8891697188672,-1.77383760846221,0.131958539133852,0.273424650031385,-5.434706054864 +"Q9VMY9",0.247454972040035,15.1795334652828,1.77052590629184,0.13254049915812,0.274190665603936,-5.4390324119559 +"Q9VMU0",-0.184474278462474,21.0995515671425,-1.76986472227138,0.132656994689674,0.274190665603936,-5.43989592783904 +"Q9VSK9",-0.139327932098146,14.5330246283416,-1.76809457513505,0.132969384685506,0.274191709196211,-5.44220736250428 +"Q9W2V2",0.141915021214087,14.4256770922036,1.76799903250785,0.132986266630537,0.274191709196211,-5.44233210407048 +"Q9VVW8",0.139056776247807,15.8172250676679,1.76681700896007,0.133195301908461,0.274283658744831,-5.44387522567651 +"Q9VS84",-0.134803095853549,17.4448868462903,-1.76450827571764,0.133604537092101,0.274787136707305,-5.44688849647841 +"Q8IPW2",-0.139314267177499,17.0826251352278,-1.76252917717895,0.133956341671994,0.275171401365622,-5.44947073597154 +"Q9VB10",0.134661938861758,20.9755911808162,1.76135965800376,0.134164669792531,0.275260355736705,-5.45099632166269 +"Q9VQ93",-0.209361052194597,16.7388294577437,-1.76000333378108,0.134406678595316,0.275418107981556,-5.45276525865914 +"Q9VVK7",-0.174532842145876,18.1202027962607,-1.75809196225816,0.134748463776552,0.275779678011398,-5.4552574966917 +"Q960M4",-0.19183835290271,23.2657576272316,-1.75533358235969,0.135243236581576,0.276453086541752,-5.45885290684894 +"A0A0B4K7J2",-0.152244907316307,15.8945323686282,-1.7528673388537,0.135687141778332,0.276762838578799,-5.46206628162953 +"P29829",0.234950581778275,21.515145438578,1.7511482070192,0.135997430950958,0.276762838578799,-5.46430551031418 +"Q8IM93",-0.179233577277884,19.0042184603148,-1.75086501383158,0.136048612764275,0.276762838578799,-5.46467432369745 +"Q0E8U4",-0.342106109472182,16.2583458855651,-1.75081048620125,0.136058469804925,0.276762838578799,-5.46474533532147 +"Q9VKA1",-0.25771050650587,14.6685912571601,-1.7477686334449,0.136609478088849,0.277545200307187,-5.46870582972893 +"Q9VKQ2",-0.186065284169484,15.8591427175148,-1.74163178574039,0.13772789142231,0.279477035148921,-5.47669042563903 +"Q9VC66",-0.15014921891111,17.6777243676876,-1.73985596789527,0.138053222485642,0.279796810578434,-5.47899952035629 +"Q9W379",-0.137605486916259,16.4037206444175,-1.73776797852594,0.138436721183977,0.279908842645752,-5.48171371795704 +"P15425",0.150634075059973,17.1617846537566,1.7377277417946,0.138444121812198,0.279908842645752,-5.48176601341123 +"Q7K1H0",-0.136959803717573,16.2928129692026,-1.73459108402645,0.1390222501835,0.280593725568843,-5.48584169760902 +"Q9Y156",0.17636522724481,15.9030539303831,1.73313699915919,0.139291070862004,0.280593725568843,-5.48773041359318 +"Q709R6",-0.139089669104047,15.1899901195722,-1.73224217596082,0.139456755889796,0.280593725568843,-5.48889248734411 +"Q9W4U2",-0.162796361140991,18.6553758643085,-1.73199923500127,0.139501772497523,0.280593725568843,-5.48920795740323 +"Q9VZE4",0.134595851726068,17.5317092091549,1.7313401313564,0.139623976152362,0.280593725568843,-5.49006377282779 +"P35220",-0.141987204297891,19.3304329580316,-1.73023764781767,0.139828624046925,0.280615142049936,-5.49149509648904 +"Q9VAQ4",-0.1407256090015,16.1905473530682,-1.72947103297441,0.139971102029704,0.280615142049936,-5.49249022337489 +"Q9VQJ8",-0.145234898894927,15.2003300859669,-1.7254172886687,0.140726903408872,0.281791686537813,-5.49775027987805 +"Q9VSL6",0.186511638606682,14.8027913628463,1.7205824053471,0.141633640557602,0.282649767665019,-5.50401943819549 +"Q95R34",0.141371798376522,15.4644106033108,1.7204775102249,0.141653376732709,0.282649767665019,-5.50415539610197 +"Q24400",-0.142572455006682,21.6299551038389,-1.72042215804928,0.141663792426832,0.282649767665019,-5.50422713888187 +"A1Z6R7",-0.16036964965291,17.8344499237237,-1.719484214613,0.141840401996302,0.282664026917362,-5.50544272288293 +"P53997",-0.534724558030995,17.4102707705196,-1.71631012201177,0.142439686471451,0.283519566866803,-5.50955499438767 +"Q27268",0.155696992164692,18.9477096153827,1.71491541444724,0.142703806947355,0.283534265812781,-5.51136126248304 +"Q9I7K6",-0.180383245148052,16.2005252725601,-1.71375931451232,0.14292310917309,0.283534265812781,-5.51285819739394 +"Q4V5I9",-0.165885816396152,16.2234545536018,-1.71358067712836,0.142957024909202,0.283534265812781,-5.51308947410074 +"Q9VV46",-0.140962386032747,23.8596500175922,-1.70865299006,0.143895733737327,0.284501380459896,-5.51946649881008 +"Q9VXP4",-0.134510945657235,17.9280129384082,-1.70848828820178,0.143927214063694,0.284501380459896,-5.51967955226615 +"Q9W0B3",-0.158088385070737,19.1981885942535,-1.70833596741034,0.143956333997693,0.284501380459896,-5.51987658469552 +"Q9VVE2",-0.146237848489967,18.4069653184741,-1.70396871777073,0.144793726852381,0.285628700901897,-5.52552362787315 +"P48148",0.188538849523052,20.5411143614442,1.70357615855214,0.14486923319125,0.285628700901897,-5.52603101952089 +"Q9VDL1",-0.132260024039587,14.8506616265567,-1.70079457837414,0.14540536920011,0.286347291411787,-5.52962530299342 +"Q86BS3",-0.1550281428853,18.9577316389153,-1.69965690598464,0.145625214648776,0.286442049568582,-5.53109488047956 +"O97062",-0.173325934576223,18.5236304389951,-1.69763463596028,0.146016812070758,0.286874019474704,-5.53370641973525 +"Q9VHN6",0.187542686461468,15.0150620566453,1.69587531857585,0.146358336660375,0.286904364332283,-5.53597764385527 +"Q9VJD0",0.146948545510043,16.072873614036,1.69513561339953,0.146502166164809,0.286904364332283,-5.53693237375001 +"Q9VDT5",-0.180201863084374,19.027740795365,-1.69489864384696,0.14654827242872,0.286904364332283,-5.53723820201353 +"Q95SI7",-0.151083147032942,21.2883889766653,-1.69073291321762,0.147361125824256,0.288157512162788,-5.5426123510618 +"Q9VKV9",0.157726818494828,15.5605121428137,1.68442319123586,0.148600811566836,0.290241397767545,-5.55074494324749 +"Q7K549",-0.206821539193786,14.5427702525998,-1.68195151119725,0.149089225904323,0.290854770536154,-5.55392820498962 +"Q9VD68",0.160170915705558,14.7993704959365,1.67359266984749,0.150752711944168,0.293756452713636,-5.56468301466811 +"Q9W4K0",0.134893245268128,19.7082633256069,1.67264776064598,0.150941902983712,0.293781906857446,-5.56589774378215 +"Q9Y136",0.25428748653801,15.1940677672665,1.66854494936094,0.151766085472804,0.295028421822076,-5.57116967241968 +"P54185",-0.187790799700242,17.2795329700182,-1.66770133810672,0.151936099727316,0.295028421822076,-5.57225318026336 +"Q24492",0.139962832349946,15.3048549319484,1.66604840823135,0.152269760067457,0.29533251138665,-5.57437565986907 +"Q9W0R0",-0.145057400787534,16.7350976634585,-1.66360590534068,0.152764121950016,0.295947218829997,-5.57751081121029 +"Q9VF24",0.153869304537059,16.0827722799961,1.66109400476711,0.15327417412343,0.296590861296846,-5.58073354472202 +"Q4QPU3",0.379353305190234,14.2665251467775,1.65959391788232,0.153579570229045,0.296837454394028,-5.58265740876707 +"Q9V931",-0.645791028770182,17.5712951395728,-1.65185019385835,0.155165602128072,0.299555815219473,-5.59258003266046 +"Q7KM15",-0.142837938961584,17.0466365519238,-1.64947687945226,0.155654900238947,0.300153033061923,-5.59561819322414 +"A1Z8D0",-0.479433715279423,13.941025313779,-1.64654626826636,0.156261180632441,0.300974190871723,-5.59936784196181 +"P09208",-0.674817195169926,12.6409079496579,-1.64108326419357,0.15739753760187,0.302813255732318,-5.60635190167562 +"Q9VPU6",-0.126926089344273,15.2873035925309,-1.63761921832251,0.15812227732336,0.303634072721369,-5.61077654172781 +"Q9VX02",0.182281279148064,17.2153381408578,1.63730463608601,0.158188254912992,0.303634072721369,-5.61117820822494 +"Q02910",-0.383633881823929,16.2936368336733,-1.63469600314688,0.158736403549254,0.304336001287536,-5.61450800520839 +"Q95RB2",-0.151043079327259,24.3320023473687,-1.62369040936571,0.161069491702018,0.308339580685701,-5.62853685990451 +"Q9VTU2",-0.128768934706759,20.9021192549762,-1.62272211575305,0.161276355830995,0.308339580685701,-5.62976963978388 +"Q9VNA5",0.146539245727624,17.2040670071138,1.62070210459395,0.161708740943748,0.308339580685701,-5.63234061867377 +"Q8T9B6",-0.132360777527115,19.4341031427737,-1.62031611052205,0.161791491825073,0.308339580685701,-5.6328317723802 +"Q9VYY3",0.14321919852464,17.558690770496,1.61947256338195,0.161972478378089,0.308339580685701,-5.63390499754631 +"Q09101",0.213029707873194,14.5274495462125,1.61934962045048,0.161998872767044,0.308339580685701,-5.63406139927181 +"Q9W445",-0.163079618070636,16.6031371595677,-1.61879222067084,0.16211859248283,0.308339580685701,-5.63477044476739 +"Q7K3D4",0.165606475484765,18.434160326455,1.61680540458477,0.162546027547244,0.308800425909798,-5.63729712375182 +"Q23983",-0.164071595152159,22.3289726656414,-1.61378198597929,0.163198579956088,0.309687407698241,-5.6411400622961 +"Q8SXY6",0.126034884855557,19.1525032333552,1.60874097420877,0.164292270158779,0.311408530255504,-5.64754204246692 +"Q9VUJ1",0.1293376797436,19.910030574166,1.60650254053004,0.164780200496306,0.311978858601406,-5.65038261287573 +"Q6NL44",0.139195964443559,15.26667584521,1.59598488613761,0.167091741284151,0.315569181640704,-5.66371122468341 +"Q9VXI6",-0.155689847002908,22.1005402234869,-1.59594542386802,0.167100473205522,0.315569181640704,-5.66376117641099 +"Q9VE94",-0.146501271277712,14.7110550737487,-1.59476599960573,0.16736165203481,0.315569181640704,-5.66525390404716 +"Q868Z9",-0.198310946183394,20.556913361221,-1.59406863295148,0.167516267411292,0.315569181640704,-5.66613633829087 +"Q9VX36",-0.145800240290821,22.2271540688829,-1.59358994526509,0.167622478977017,0.315569181640704,-5.66674198219639 +"Q9VK69",-0.147104878440611,20.2344356653672,-1.59188463958187,0.168001384522944,0.315595971036014,-5.66889904589762 +"Q9XTL2",-0.20725546367818,16.979275112059,-1.5903477198363,0.168343587558169,0.315595971036014,-5.67084242065673 +"Q9XZ63",-0.161524984991683,18.9793467338578,-1.59013306033818,0.168391436345495,0.315595971036014,-5.67111379658816 +"Q9VC58",-0.17843563033945,13.146874102817,-1.59012365249934,0.168393533706267,0.315595971036014,-5.67112568983159 +"A0A0B4KI23",-0.134066397257868,20.6372795898147,-1.57699566452012,0.171345043353248,0.320767151866687,-5.68769752302339 +"Q9VUQ7",-0.222418139461718,16.5679430619524,-1.57555715240229,0.171671484939409,0.321017978563828,-5.68951040904812 +"Q8IQW5",-0.156021091279786,21.9962761930897,-1.57272554337888,0.172315819378248,0.321862023205955,-5.69307720214269 +"Q9V3F3",0.123336381678314,14.5943082199059,1.56384017760709,0.1743528905563,0.325061909344105,-5.70425436855299 +"Q9VI75",-0.142772764504343,17.4690716117243,-1.56355475653296,0.174418710349505,0.325061909344105,-5.70461302437848 +"Q9VZY0",-0.196271652223489,17.0258625796934,-1.55745432301112,0.175831248223403,0.327328707630174,-5.71227296803813 +"A1ZB23",-0.340844677459888,15.8656829103561,-1.55589646757144,0.176193728401937,0.327637836091897,-5.7142272965634 +"Q9VYS5",0.159534005345749,14.4002816668945,1.54685192875646,0.178312455907507,0.330753094809987,-5.7255592369038 +"Q9VA34",-0.147093554821025,14.3361261777801,-1.54645586154471,0.178405794465418,0.330753094809987,-5.7260549046746 +"Q9VPX0",0.228560978995461,14.7759798028373,1.54496818548548,0.178756804985131,0.330753094809987,-5.72791626489029 +"Q9VMU2",-0.127849365259628,16.334920480244,-1.54463904867287,0.178834552964008,0.330753094809987,-5.72832798507844 +"Q7JWQ7",-0.284211639575142,14.4326436840986,-1.54452929262498,0.178860486521947,0.330753094809987,-5.72846527253432 +"Q9W086",0.174148767348957,16.7317711029052,1.54344337397979,0.179117266145067,0.330861129490555,-5.72982338621522 +"Q9VB05",0.126753372165847,20.2392868179843,1.54040033249373,0.179838720945047,0.331826312540198,-5.73362726397283 +"P17210",-0.118138677111752,20.8703136311384,-1.53870244959005,0.180242472813649,0.332203806246592,-5.73574841974561 +"Q9VXM4",0.140542564687156,20.0855717927517,1.53752130182419,0.180523859499353,0.33230670356745,-5.73722349527411 +"Q9VP57",0.130997073478621,19.4029046285799,1.53679645034563,0.180696750680862,0.33230670356745,-5.73812851138172 +"Q9VJC7",-0.204373511750575,18.5363339769462,-1.53516797321592,0.181085753703208,0.332571722090264,-5.7401611574762 +"Q9VDE2",-0.119670673760211,19.6165079118919,-1.53452474803915,0.181239625527608,0.332571722090264,-5.74096379620855 +"Q9W415",0.165105527357543,16.7333243961557,1.53025171368875,0.182265004505264,0.333847610390729,-5.74629255430884 +"O76454",-0.142803133934546,18.1386635251231,-1.52984689354292,0.1823624350064,0.333847610390729,-5.74679709506635 +"Q9VGU6",0.133200987569293,18.5338363740407,1.52912880654622,0.182535384098528,0.333847610390729,-5.7476919438334 +"Q9VPQ2",0.147018214025955,16.4741963510709,1.52594540117282,0.18330399148336,0.33463450559223,-5.75165700610352 +"P55830",-0.125882045132006,22.0619238115852,-1.52485391195647,0.183568235346838,0.33463450559223,-5.75301576256504 +"Q9VJ31",0.118397048705553,17.30027479703,1.52383430208572,0.183815406934607,0.33463450559223,-5.75428469729044 +"Q9U9P7",-0.247654978329225,16.5633014473272,-1.52257968361751,0.18411998584568,0.33463450559223,-5.75584565333505 +"Q8SZK9",0.120660877932753,21.9776993297791,1.52214259896976,0.184226208571704,0.33463450559223,-5.75638934222038 +"Q9VRJ6",-0.11843155431183,15.7814369663085,-1.52202202336665,0.184255521836088,0.33463450559223,-5.75653931529259 +"Q9VXK6",-0.121943655764774,17.976677626374,-1.52130927959994,0.184428888892454,0.33463450559223,-5.75742573789968 +"Q9VA97",-0.126829349405178,18.5814545332263,-1.52020755816968,0.18469717746711,0.33463450559223,-5.75879560336395 +"Q9VUN9",0.130069328690208,16.6594720056447,1.519903811158,0.184771210821609,0.33463450559223,-5.75917320995614 +"P51140",-0.117313698924622,13.5529144621812,-1.51771300668333,0.185306024371033,0.33523909831983,-5.7618958572482 +"Q9W1F2",0.360940078144715,13.5643465545343,1.5132652456775,0.186396353912735,0.336648728695579,-5.76741860734835 +"Q9VK12",-0.132288876461899,22.4272723448977,-1.51288901503664,0.186488864097551,0.336648728695579,-5.76788547642096 +"Q9V8Y2",-0.181010411073643,19.8654044858651,-1.50032889453498,0.189602493880341,0.34148528189683,-5.78344491751083 +"Q0E8X8",-0.136467690031921,19.487849196026,-1.50018462025807,0.189638545384572,0.34148528189683,-5.78362334205581 +"Q9W1E8",-0.169510000304438,15.4514664287051,-1.4996096373295,0.189782287960649,0.34148528189683,-5.78433435693309 +"Q9VB68",-0.215288715525082,15.4335804548272,-1.49748105554156,0.190315325015118,0.342075390221139,-5.78696557035141 +"Q9VMS1",-0.135962570000515,22.3873363006671,-1.49418027989297,0.191144720022141,0.343196332612413,-5.7910427806659 +"Q8T0N5",0.118010619693784,18.6652454608616,1.49144678334968,0.191834174294059,0.344063873895151,-5.79441650429934 +"Q95029",-0.135744935918694,21.7703044397215,-1.4859014944338,0.193240097502138,0.346213192946903,-5.80125282914253 +"Q9VNX9",-0.185333007797416,13.6290791996037,-1.48417282553325,0.193680371828441,0.346629678336738,-5.80338182394499 +"P45594",-0.140218922341994,22.945355906385,-1.48315801865018,0.193939276075588,0.346721020893976,-5.80463116474584 +"Q9VVG0",0.14802380499432,18.0382275111038,1.48221822338945,0.194179335688215,0.346778513841481,-5.80578784343111 +"Q7K568",0.180796915844059,15.9767241794687,1.47836284435091,0.195167099363624,0.34816975587008,-5.81052978127805 +"Q9VDC6",0.212924862965743,16.9994427877495,1.47548863021207,0.195906581384355,0.349115574518275,-5.81406159462411 +"P53034",-0.177732835287678,15.6420778492013,-1.47097204569244,0.197073978531026,0.350821127203576,-5.81960574349864 +"Q9VG73",-0.121552780930827,17.9645345197697,-1.46963327896942,0.197421271313928,0.350912600145513,-5.82124772359888 +"Q9VMV5",-0.127195485981993,17.6567620937615,-1.46915254075689,0.197546122024362,0.350912600145513,-5.8218371895626 +"Q7KLE5",-0.118800120439825,21.4550890346129,-1.46666674592015,0.198192890645865,0.351686959146067,-5.82488389724691 +"Q9VC67",-0.141202929348443,15.3390285050547,-1.46490784368294,0.198651740965048,0.352126571657493,-5.82703837608721 +"Q9VY41",-0.363333898314361,16.5901920567511,-1.46353498830101,0.199010579420506,0.352319648449969,-5.82871922656546 +"Q7KSE4",-0.156754754343739,13.7179647389969,-1.46287574543331,0.199183110604509,0.352319648449969,-5.82952613094068 +"Q9VKU3",0.168884812158607,15.4230987571855,1.46045944384951,0.19981669212252,0.352972400038177,-5.83248233213362 +"Q9VP55",0.139952981313902,17.082503742617,1.45985542186753,0.199975370525226,0.352972400038177,-5.83322099251036 +"P36975",-0.117039017239069,22.2180432675361,-1.45431853586806,0.201435478078885,0.355173760502728,-5.83998598863878 +"Q9VIT0",0.117575011920243,16.3975449211245,1.45225380645104,0.201982527579504,0.35562631016692,-5.84250586638988 +"Q9VLG9",0.124222906471285,15.7004159338607,1.45174123362216,0.202118550382638,0.35562631016692,-5.84313119221074 +"Q9VW57",0.112783754574016,16.4653512822675,1.45046025530523,0.202458864425053,0.355849721665952,-5.84469353765278 +"P55841",0.114435603383122,20.6620887833979,1.44926723394154,0.202776296531227,0.356032486962196,-5.84614807163798 +"Q9VS44",-0.117976768170704,15.1474128356562,-1.44731108946856,0.203297790327948,0.356355196043591,-5.84853188792101 +"A1Z6X6",-0.146131408524152,18.6385965574322,-1.44691051440822,0.203404736330599,0.356355196043591,-5.84901986888067 +"Q9V3U6",-0.133742743819898,20.9851515487511,-1.44617583218861,0.2036010202815,0.356355196043591,-5.84991470746969 +"Q9W289",-0.134114111705131,17.5039554613773,-1.44116447063651,0.204944658768078,0.358330912814628,-5.85601324785577 +"O76877",-0.171787663014532,17.4202513816355,-1.4333296486513,0.207062028201499,0.361653888000106,-5.86552922223288 +"Q9VSU6",-0.140556209987558,21.6503281742611,-1.43104258257285,0.207683971467102,0.362126381419574,-5.86830272978864 +"Q9VK59",0.116012318973919,18.7041862778577,1.43030964785234,0.207883655670799,0.362126381419574,-5.86919114004464 +"Q7JZK1",-0.111467126069147,21.5855899062548,-1.42994211081878,0.207983856954407,0.362126381419574,-5.86963656594552 +"Q9Y162",-0.111122074170346,20.293377468747,-1.42908468612937,0.208217791910262,0.362155658922124,-5.8706754999811 +"Q9VFP0",-0.142599374439801,16.5361063383925,-1.42574629195856,0.20913097183564,0.363365063564425,-5.87471796824398 +"Q8IQC6",-0.360985248150225,15.8133452863315,-1.42300283266152,0.209884220614749,0.364294360026432,-5.87803687785753 +"Q7KVQ0",0.170921975415199,15.5663328118201,1.4215578860489,0.210281967880631,0.364605324766001,-5.87978375951811 +"Q9VLR5",-0.227697467855926,17.0572695395734,-1.4202876600828,0.210632202583204,0.364833347776515,-5.88131875504512 +"Q9VXZ0",-0.123125915777894,19.7490237699571,-1.41591132548424,0.21184305497136,0.366268990013874,-5.88660258688243 +"Q9W0C3",-0.175080829932483,18.244749356885,-1.41570527655687,0.211900225038003,0.366268990013874,-5.88685118220582 +"Q9VVT6",-0.1198542661799,20.5124593973338,-1.41465441176211,0.212192020911426,0.36639367585948,-5.88811878295943 +"Q9VKC7",0.12038763166627,13.8560989790283,1.41359355554915,0.212486971810256,0.366523545997422,-5.88939800478444 +"M9PHA0",-0.129952453891107,17.4897378230742,-1.41250412536695,0.212790265619909,0.366667523816124,-5.89071123070043 +"Q9VJD1",-0.131682333790547,18.4683315049144,-1.40045494605902,0.216171759782711,0.371767143462846,-5.90520485637726 +"Q9V3W0",-0.111057858491126,20.8794712818724,-1.40037090124811,0.216195521078514,0.371767143462846,-5.90530575205102 +"Q9VXB0",-0.109529942760926,20.1364151034822,-1.39927307077923,0.216506125004811,0.371917833684887,-5.90662344025333 +"Q03427",-0.108103776667935,21.7502937866491,-1.39821799026557,0.216805025209485,0.372048129680474,-5.9078893689898 +"Q9VDC0",0.123452010253189,17.565618095165,1.39413710687263,0.217964740951212,0.373040896313999,-5.91278163053789 +"Q7K0S6",0.131185324839851,17.3921077893962,1.39400096318213,0.218003529849557,0.373040896313999,-5.91294472890213 +"P29746",0.128946720105542,21.0233935832246,1.39382216671511,0.218054480759082,0.373040896313999,-5.91315891353029 +"Q9VE24",0.154189228548111,15.608059766746,1.39280523431079,0.218344482435192,0.373154299899488,-5.91437687939315 +"Q9V9S8",0.131534293895697,19.9107025360477,1.39063989446059,0.218963173194949,0.373828631411643,-5.91696890225404 +"Q9VUV6",-0.105415018514549,14.9361097230758,-1.38825231112013,0.219647251475621,0.374141988050483,-5.9198247868063 +"Q9V4W1",-0.213352123072143,13.5820795800873,-1.38812290636957,0.219684384488928,0.374141988050483,-5.91997950770024 +"Q9VLR3",-0.111746997352228,16.7442917269004,-1.38765174978581,0.21981963326707,0.374141988050483,-5.92054278231363 +"P02515",0.124652020159445,18.6452147309512,1.38440848732641,0.220752732660203,0.375347154003282,-5.92441772475112 +"Q24050",-0.111108535016667,16.6023507418037,-1.3785151902394,0.222457662202283,0.377643970275246,-5.93144794420708 +"Q9VN50",0.112808344146107,17.8077434095227,1.37817528229292,0.222556368573481,0.377643970275246,-5.93185299554474 +"Q9VBC1",-0.17222255690859,13.0558741469955,-1.3764032975516,0.223071594777387,0.378133557000693,-5.93396381695928 +"Q9VU35",-0.121252680248713,22.7094942710331,-1.37496632478821,0.223490222454552,0.378458569598166,-5.93567462219795 +"Q9V4N3",0.181581105167563,19.7178752496691,1.37003257332065,0.224933089204599,0.380515611352201,-5.94154209958212 +"Q9VMR0",0.107250477501832,17.2764882701442,1.36895689103392,0.225248811543486,0.380636783297006,-5.94282002391051 +"Q6AWN0",-0.127625846446549,18.602646463605,-1.36823434083175,0.225461116245469,0.380636783297006,-5.94367815376487 +"Q8IP97",-0.130402550893567,19.9256499946184,-1.36011166458323,0.227860518700588,0.384298630123944,-5.95331001848962 +"Q9VCW2",0.155215278332163,15.3910018799591,1.35656532155016,0.228915457153976,0.385687861144275,-5.95750660072999 +"Q95U34",0.12656391380084,19.4208040908689,1.35352524327982,0.22982337399618,0.386540151760529,-5.96109986522277 +"Q9VHX2",-0.218248531419887,14.9702492850427,-1.3533199949437,0.22988479049547,0.386540151760529,-5.96134232035499 +"Q9W1X8",0.104290605099106,16.1271541715777,1.35184495506696,0.230326611281806,0.386754346204315,-5.963084224655 +"Q8SX68",-0.129501121103109,17.5403200073977,-1.35134709785666,0.230475911347175,0.386754346204315,-5.96367194544266 +"Q8IR45",-0.139955174588579,14.809310007634,-1.33702132210115,0.234810265678343,0.393631681559273,-5.98053800549525 +"Q9VMH2",-0.453374852300518,17.3693656478467,-1.33162376968214,0.236462618273084,0.396003661927212,-5.98686960492552 +"Q9VCF8",-0.11947901561649,16.9447947146872,-1.3267673934043,0.237958383602516,0.397371911540371,-5.99255545493948 +"Q9VZW1",-0.180762160744315,14.9363815238688,-1.32675826365086,0.237961203694049,0.397371911540371,-5.99256613426945 +"Q9VJ58",0.14655350324694,17.1075086967853,1.32665103353023,0.237994328314647,0.397371911540371,-5.99269156160658 +"Q9W3C3",0.142393423956804,16.6139218331687,1.32342375803763,0.238993243614027,0.398640730348198,-5.99646413104816 +"Q9W136",-0.133247234628161,18.093441990228,-1.32207503693421,0.23941183629718,0.398775336733051,-5.99803936799444 +"Q95SK3",-0.118876941606944,17.257135764559,-1.32123876387989,0.239671720095479,0.398775336733051,-5.99901568532185 +"Q9NHA8",0.118683896300235,16.2869788944831,1.32085468368475,0.239791164714179,0.398775336733051,-5.99946398005925 +"Q9W396",-0.104527876303241,16.5513948874878,-1.31814934552453,0.240634033327047,0.399778453774416,-6.00261975893627 +"Q9VY78",-0.122137711302837,18.8544577909067,-1.31356869413916,0.242067327505057,0.401504817506382,-6.00795561214616 +"Q9VC53",-0.0997022134454184,17.928553709285,-1.31302427302388,0.242238193712374,0.401504817506382,-6.00858916298051 +"Q9VQ62",-0.324650604167466,19.6214718876518,-1.31159744345579,0.24268652412069,0.401504817506382,-6.01024895057344 +"Q9VV76",-0.152730017027906,16.2848225433115,-1.31105704589099,0.242856521830949,0.401504817506382,-6.01087733841313 +"Q9VFU7",-0.10856395077982,14.7595690310614,-1.31099287719568,0.242876715146246,0.401504817506382,-6.01095194660438 +"Q8SY69",-0.214839411561147,18.8581096942375,-1.30876260732771,0.243579510676513,0.402267944364775,-6.01354389594007 +"Q7JZW0",0.14925304600844,19.7568731008642,1.3052913656966,0.244677035164218,0.403287578450002,-6.01757356683786 +"A1ZB69",-0.124274042540765,20.5227240381786,-1.30528051396906,0.244680473256236,0.403287578450002,-6.01758615570639 +"Q7K5M0",-0.257622267476716,16.8770991865433,-1.30437182735454,0.244968523028998,0.403363767435705,-6.01864011378003 +"Q94522",-0.128186176101696,23.4626069509187,-1.29849634956911,0.246838464256823,0.40588773781193,-6.02544577015179 +"Q9VVH5",-0.108413540906163,22.6226227194519,-1.29802811211074,0.24698804189395,0.40588773781193,-6.02598745384292 +"Q9VG69",-0.127988517129861,19.9901313484314,-1.29351054169002,0.248435395516199,0.407526941232752,-6.03120842949382 +"P11046",0.14566491254697,20.9942889929411,1.29304932450396,0.248583592951543,0.407526941232752,-6.03174092797441 +"P14484",0.130803098657303,19.1404677082604,1.29262974505562,0.248718480920229,0.407526941232752,-6.03222526770907 +"Q9VLP2",-0.202775609297049,19.2610435455854,-1.29112088046884,0.249204103826794,0.407921928540817,-6.03396634210463 +"A0AQH0",0.139921391833521,16.8946066876224,1.28896202988041,0.249900413858658,0.408308558938575,-6.03645558761045 +"Q9W0D3",0.150150920179893,12.8261726448369,1.28887079474806,0.249929879302329,0.408308558938575,-6.03656073761129 +"Q24090",0.137446386247639,15.6777781917779,1.28759578021752,0.25034198873205,0.408581641100841,-6.03802980544708 +"Q9VZZ5",-0.107600403825664,18.5356638572397,-1.28658688957073,0.250668516815604,0.408714649118697,-6.03919170648581 +"P92204",-0.210937719420896,15.7195087939738,-1.28496468836614,0.251194349901077,0.409172046518551,-6.0410589324509 +"Q9V3I0",-0.283974659211037,16.0473953825551,-1.28135313751526,0.252368604433615,0.410478108088385,-6.0452115397413 +"Q95RG8",0.187422969728315,13.2894989819038,1.28098575218859,0.252488332673072,0.410478108088385,-6.04563361909102 +"Q9VHX4",-0.105082371936771,22.9309577353029,-1.27759075934336,0.253597162167267,0.411712432238244,-6.04953101190988 +"Q9VW26",0.101994373865775,17.5396617935326,1.27715062175143,0.253741235216376,0.411712432238244,-6.05003588162239 +"Q9NCC3",0.148857434978748,17.3443846689962,1.27472955894637,0.254535056087811,0.412599099664207,-6.05281136718063 +"Q9VM50",0.14729026020513,13.4008194388348,1.27164941545598,0.255548208045698,0.413695212592277,-6.05633837222643 +"Q8MT58",0.100635586144985,21.5921116297262,1.27116677110185,0.255707292675443,0.413695212592277,-6.05689062607167 +"E1JIY8",-0.309838998580073,16.5117971418587,-1.26772552522248,0.256844146298336,0.415131817854287,-6.06082494293465 +"Q9W125",0.0973270140211469,21.355110915081,1.2625605285807,0.258558981886304,0.417324200672709,-6.0667192705573 +"Q4V6M1",-0.109096503051219,18.1754543674198,-1.26213423701704,0.258700973318694,0.417324200672709,-6.06720517976588 +"A1ZB79",-0.116682973693226,20.7989157322396,-1.25991145921583,0.259442481295358,0.418115998841214,-6.0697373851362 +"Q9VBU9",0.117798719470997,20.8603013809621,1.25883151007303,0.259803434340378,0.418271346437289,-6.07096680250775 +"A8JNT7",0.140318539545881,16.8410320596412,1.25742911656633,0.260272829938723,0.418271346437289,-6.07256244157243 +"Q9VQM2",-0.0978260601391305,20.158996997059,-1.25737439371624,0.260291161631838,0.418271346437289,-6.07262468557338 +"P54352",0.184610400222414,16.1066910814734,1.25470801119865,0.26118577900799,0.419304984971441,-6.07565576075272 +"Q9XYW6",-0.148764711791022,16.491833883653,-1.25122075593951,0.262359965332644,0.420600856070908,-6.07961471181479 +"Q9VRQ9",0.138358474037437,14.7821517935615,1.25081380249315,0.262497296864398,0.420600856070908,-6.08007632043668 +"Q9VZU4",-0.134726852600629,21.4376146386764,-1.24910827773076,0.26307354663589,0.421119650468967,-6.08201001268099 +"O97365",-0.130316336938321,17.9261137607844,-1.24776616737077,0.263527803026584,0.421442354217011,-6.08353066034272 +"Q9VDI3",-0.100245524373662,15.0510799972363,-1.24550736580798,0.264293908159186,0.422262680852032,-6.08608792654304 +"Q9VF51",0.129698160456947,17.7189832482516,1.24419940576283,0.26473842982223,0.422568134874143,-6.08756755279874 +"A1ZBA5",0.238495251185006,15.5402718853702,1.24337351335032,0.265019460000232,0.4226122937671,-6.0885014022987 +"Q7KMP8",0.0964367573461757,19.1449021522254,1.24016948808383,0.266112227512975,0.423949565894596,-6.09212101912974 +"Q961D9",-0.222211551698486,12.4836033841571,-1.2394138314933,0.266370536819176,0.423956159746551,-6.09297394237787 +"Q7YTY6",-0.118695012918339,18.417196341112,-1.23635972448585,0.267416811589701,0.425215673719372,-6.0964182462416 +"Q9W1C8",-0.111816087749068,15.8208821172959,-1.2329816685192,0.268578322674189,0.426655849733855,-6.1002224126463 +"Q7KNM2",-0.101730637484224,19.506132646124,-1.23166356915515,0.269032753278768,0.426861968217705,-6.10170521282424 +"Q9VBP6",-0.105839041893347,23.1202894688121,-1.23061977785391,0.269393097496828,0.426861968217705,-6.10287880422414 +"Q9VEX6",-0.093492543104901,20.7977298669059,-1.22965629032756,0.269726099197725,0.426861968217705,-6.10396161464666 +"Q7JXW8",-0.294432311663694,14.6858882320319,-1.22964002689032,0.269731723322219,0.426861968217705,-6.10397988817594 +"Q9VVL7",-0.104046264920505,23.4659723731189,-1.22833300843515,0.270184049194378,0.427172506214429,-6.10544800855212 +"Q9W2K2",-0.112351258745576,15.5456497448234,-1.22515237665275,0.271287598573209,0.428317265887388,-6.10901704318401 +"Q9VF70",-0.0943094906578548,15.9830683602471,-1.22415426791754,0.271634724714405,0.428317265887388,-6.11013596996199 +"Q9VVZ4",-0.220553586656424,15.839877601461,-1.22402860078012,0.271678457619219,0.428317265887388,-6.11027681256094 +"Q9V431",-0.104152514724504,18.5580039946204,-1.22277026817131,0.272116709013543,0.428603088417931,-6.11168665392287 +"A8WH76",0.112234374432955,19.0500661072048,1.22045231831811,0.272925643192618,0.4293042785252,-6.11428156629968 +"P91926",-0.114432446056036,17.8327326333761,-1.21890579734257,0.273466542414832,0.4293042785252,-6.11601133651108 +"Q9V3V0",-0.115619377325805,14.0840995892107,-1.21866355168033,0.273551354282062,0.4293042785252,-6.11628217442441 +"Q9VP77",-0.147871934560834,15.4393510743651,-1.21749816315248,0.273959690192683,0.4293042785252,-6.11758469013222 +"Q9VJZ1",0.120450216770823,15.3262022065231,1.21737214359555,0.274003877982976,0.4293042785252,-6.11772549591447 +"P16620",0.0966029261466836,17.1584562138208,1.2170805447323,0.274106149058356,0.4293042785252,-6.11805127739318 +"Q9W4Y1",-0.180746188708781,17.4176989330606,-1.21477679343569,0.274915320272066,0.430167686879744,-6.12062353740569 +"Q9W2M4",-0.0971475300222622,22.6981166584614,-1.21113614577304,0.27619836815742,0.431770269996791,-6.12468289375259 +"P20351",0.144275042032609,13.7642146347167,1.20793072580755,0.277332405107521,0.433056805820424,-6.12825124577281 +"Q9VZ19",-0.094833343710679,20.3514847409931,-1.20690753244632,0.27769526169222,0.433056805820424,-6.12938915763012 +"Q9VNI4",-0.121485613451721,16.5527960577159,-1.20661176202099,0.277800229153389,0.433056805820424,-6.12971798699565 +"Q9VMH8",0.093297476627459,18.8284397016622,1.20489480119642,0.278410261074365,0.433602535454754,-6.13162594921515 +"Q9VRD9",0.167878006052906,15.7627280559764,1.20268497774023,0.279197142596397,0.434422419636931,-6.13407931955789 +"Q9VIM0",0.103921496163974,18.0612499779968,1.19596600907735,0.281601690467377,0.43775547036308,-6.14152293733044 +"Q9V9T9",0.222837960075459,13.3012476716841,1.19509701580016,0.281914006544231,0.437832926364783,-6.14248390229496 +"Q9VNC1",0.14251783075505,15.4720485450659,1.19279116087508,0.282744205220726,0.438374813343537,-6.14503185029039 +"Q9VAY2",-0.0914796638988129,21.1285842609588,-1.19266816541359,0.282788548655663,0.438374813343537,-6.14516767935351 +"Q7JR58",-0.0922414601080561,22.7973432164834,-1.19158764438203,0.28317837019456,0.438571514841715,-6.1463605964306 +"Q9VNF3",-0.108650997281245,19.1923983090386,-1.18589555182302,0.285239704781486,0.440648536967081,-6.15263444110132 +"Q0E8P5",-0.11625134764952,17.731545804447,-1.18521752133507,0.285486120677879,0.440648536967081,-6.15338060634545 +"E1JJH5",0.0930086997348489,21.2237787916705,1.18498234943059,0.285571632464982,0.440648536967081,-6.15363935252693 +"Q9V597",-0.248527777390148,20.1697539037769,-1.18496984429981,0.285576180132742,0.440648536967081,-6.15365311037003 +"Q9VP78",-0.0925632003064205,14.8468363811567,-1.18345114009005,0.286128949836312,0.440842911614199,-6.15532332369598 +"Q9VJG0",-0.633954124111792,13.1874988060641,-1.18317175885882,0.286230739375406,0.440842911614199,-6.15563044072878 +"Q9VEP8",-0.105697273713281,17.2283948959256,-1.18179518927193,0.286732740253075,0.441208681496429,-6.15714305305789 +"P21914",-0.108586541567103,22.9671735674609,-1.18102593856026,0.287013602102207,0.441233814107356,-6.15798787928243 +"Q9V3F8",-0.100847524461596,18.4657790827522,-1.17579948057851,0.288928211001524,0.443768191483004,-6.16371929094809 +"Q9VXE0",0.0988020773390552,17.9352271959701,1.17286191911256,0.290009213609701,0.4447215634978,-6.16693411633954 +"Q9W3N6",0.10669248618786,16.091800636207,1.17266400599351,0.290082170914632,0.4447215634978,-6.16715053957854 +"M9NEW0",-0.106863836874847,18.3607726180629,-1.16678469727321,0.29225678201918,0.4472622711715,-6.1735698895246 +"P40417",0.0897532415537334,19.7829654716282,1.16673370476236,0.292275704782335,0.4472622711715,-6.17362548251238 +"Q9V3Z4",0.115428479628623,18.7568145630182,1.15988395308778,0.294827271625717,0.450354126732003,-6.18108009860593 +"Q7JZN0",-0.100806751279107,16.9886670366831,-1.15986019573441,0.29483615491088,0.450354126732003,-6.18110590841252 +"Q7JNE1",-0.097777415588169,17.7381880911707,-1.15890693291178,0.295192788015635,0.450486340722853,-6.18214126585513 +"Q9VU84",0.0965906294758803,18.3483876729368,1.15536387111986,0.296521593508796,0.452100564874471,-6.18598499917174 +"Q9VCU6",0.11407289801433,15.3718307623283,1.15319964721009,0.297335820822963,0.452927990075527,-6.18832941911468 +"Q95SN8",-0.180193288844798,17.6161059133861,-1.14943455020538,0.298756943027311,0.45467753738098,-6.19240171589918 +"P53501",-0.0896925775094779,24.800193033147,-1.14867366887994,0.299044847297617,0.454700825243779,-6.1932237060612 +"Q0KI98",0.113703385114775,16.6859586814655,1.14441345566215,0.300661270235868,0.456419888280671,-6.19782000690423 +"Q9VRZ7",-0.0937157238605213,17.2926695822881,-1.14425195299928,0.300722696175334,0.456419888280671,-6.19799404760752 +"Q9VNF5",0.0869482637459527,15.9609617852408,1.14111511356647,0.301917910932239,0.457817341304522,-6.20137146249125 +"Q9VKI8",-0.10088732098631,22.3629123137108,-1.13931933186006,0.302603990460188,0.458440922877015,-6.20330243909225 +"Q8IPG8",-0.162158938047106,15.7912641148873,-1.13486335494384,0.304312200712333,0.460563845670753,-6.2080858945511 +"Q9VM33",0.261933942552917,14.0805586722962,1.13323592799741,0.304938143777469,0.460563845670753,-6.20983007593862 +"Q9VHC7",-0.114836046174275,19.8709424196513,-1.13310201350995,0.304989699388477,0.460563845670753,-6.20997352964636 +"Q9W229",0.0966612279556927,19.2543561147832,1.13279028131389,0.305109741886201,0.460563845670753,-6.21030742756264 +"Q9VR31",-0.0946361900416246,17.3147676349598,-1.13194180344696,0.305436681209508,0.460640492095352,-6.21121595209406 +"Q9VSD6",0.0859023916764059,16.7692546316696,1.12836126455187,0.306819666502717,0.462308223781871,-6.21504529528806 +"Q8I941",-0.0863505077019724,19.1134206248971,-1.12548161565749,0.307935827499658,0.463571263781074,-6.21811964423476 +"Q9VBT1",0.0913740268899002,16.2880757277658,1.1242134157818,0.308428488623852,0.463894246189887,-6.21947205809617 +"Q9VF27",-0.0868682713827198,22.2855314819171,-1.12093495124057,0.309705212073242,0.465050965333431,-6.2229638720749 +"Q9VE08",-0.102072041816413,14.4722633605857,-1.120806902586,0.309755169355781,0.465050965333431,-6.22310012594267 +"P25007",-0.086683694857193,23.8437009513517,-1.11556927160422,0.311804507743589,0.467706761615383,-6.22866512253117 +"Q9V9V4",-0.102250608280901,18.7070596826091,-1.11424368524544,0.31232500535554,0.4680665848455,-6.23007099862976 +"Q9W0M4",-0.111914413011135,17.8555447347156,-1.1108175445566,0.313673730790649,0.469665873392103,-6.2336998425069 +"Q9VCU0",0.0939580294649307,17.3999420081474,1.1074956894549,0.314986140154112,0.47095740645554,-6.23721157848462 +"Q9VRJ5",-0.102592800784578,17.3135782305541,-1.1072055311733,0.315100998563778,0.47095740645554,-6.23751801060197 +"Q86BN8",-0.141989158933077,14.2646159698915,-1.10341560746437,0.316604505577823,0.472780944766167,-6.24151588003042 +"P08736",-0.0882750735740849,24.3924880440293,-1.10206105738875,0.317143348824912,0.473161990912302,-6.24294266674897 +"P22769",-0.108350598842755,20.0733137047265,-1.10070886171601,0.317682032296928,0.473432719201543,-6.24436587556913 +"Q7K738",-0.0940836568745596,19.8313578419065,-1.10018114442391,0.317892473324777,0.473432719201543,-6.24492100895765 +"Q7JV09",-0.0868064054646656,15.1652772279979,-1.09643360721845,0.3193903068607,0.475239100663379,-6.24885841566351 +"Q9VHF9",0.151075905980885,16.8937462376367,1.09554161204219,0.319747704099538,0.475346854222843,-6.24979435538287 +"Q9VXE5",0.112025501947111,14.6266907317389,1.09172375083666,0.321281243460417,0.476941147061742,-6.25379486186508 +"Q4QQ70",-0.140948248520925,16.0569302174077,-1.09144862179905,0.321391995981653,0.476941147061742,-6.25408281141195 +"Q24185",-0.120542253974921,18.7065536471394,-1.09049004222547,0.321778122161359,0.477089695791241,-6.25508569959158 +"Q9Y112",0.0850054899220538,22.2553538971141,1.08937974630182,0.322225851595608,0.477329236644293,-6.25624661809905 +"Q9XZ19",-0.110636797152249,16.0192701382244,-1.08619996533727,0.323511019703841,0.478807791362916,-6.25956721838598 +"P05812",0.0954528090500784,15.6611965440274,1.08484521008508,0.324059882857109,0.479194933161044,-6.26098009301878 +"Q95RQ8",0.109725335529401,14.3721711218267,1.0814047819579,0.325457263360769,0.480835000253111,-6.26456305941805 +"Q9VPC1",-0.147419548763546,16.0278703793792,-1.0728234551922,0.328964824065229,0.485266884810479,-6.27346812210281 +"O46067",-0.0826778443189475,19.8185794121247,-1.07264311391071,0.329038876930846,0.485266884810479,-6.27365477757294 +"Q9W370",0.112084182532513,18.1049098493536,1.06938486349089,0.330379212072471,0.486634902382497,-6.27702362137423 +"Q9W5P1",-0.124986003075888,14.1961443667249,-1.06897056906898,0.330549966666288,0.486634902382497,-6.27745150389294 +"Q9V434",-0.121941175241403,15.1600316663293,-1.06823496152245,0.330853335227391,0.486651995731295,-6.27821097397642 +"Q9W337",-0.1167606640164,17.8276591976297,-1.06724588430837,0.331261603856063,0.486823220468645,-6.27923160315829 +"Q8SXX1",0.0812401825207409,19.8877392280515,1.06415253749604,0.332541191903714,0.488273510647355,-6.28241967627782 +"Q7KND8",-0.135022640241592,15.4343249921111,-1.05701093014157,0.335511171849463,0.492141074223771,-6.28975699879046 +"Q9V7D2",-0.0902081883568115,21.4265251706382,-1.05640227737372,0.335765313229408,0.492141074223771,-6.29038084235096 +"Q9VHI7",0.0987897004030316,15.3815880627512,1.05320494778145,0.337102987715159,0.493667939867326,-6.29365411281668 +"P23625",0.0834582579327794,22.2706715090195,1.04996619925758,0.338462513577699,0.495224098813686,-6.29696315889315 +"A0A0B4KGY6",0.084510882103821,21.5984205690243,1.04138040345137,0.342088636331333,0.500091012621089,-6.30570284650562 +"Q7JVG2",0.218577315016731,14.7866749789903,1.03986180342571,0.342733343524593,0.500385263215077,-6.30724373396094 +"Q9W402",-0.0891698699229337,21.2932696315431,-1.03949338993,0.342889901591626,0.500385263215077,-6.30761733005916 +"Q9VCT4",-0.169617537871968,12.9285402551689,-1.03659060359504,0.344125518820269,0.501749445272909,-6.31055788103818 +"P19107",0.100237423316671,24.1481144443691,1.03508158757676,0.344769309284985,0.502249089857952,-6.31208437279001 +"Q9W022",-0.0935239025343044,21.2272123337138,-1.03355748397073,0.345420546774453,0.502758701587947,-6.3136246262284 +"Q4V5H1",0.149602538438014,14.9291089953618,1.03090317153411,0.346557139015735,0.503873444533788,-6.31630345647909 +"E2QCN9",-0.100439175134948,17.4322870750031,-1.030358862967,0.346790596117979,0.503873444533788,-6.31685222540753 +"Q9Y0Y5",0.0880425282330215,18.544479459916,1.02879392904226,0.347462528048727,0.504410354034183,-6.31842890557858 +"Q24478",-0.0829360213064732,17.6005506301512,-1.02802065886466,0.347794941214717,0.504453879953171,-6.31920738889718 +"Q8I725",0.112482432020059,18.8457049935161,1.02487215624863,0.34915112483279,0.505980952407554,-6.32237307359723 +"Q9W436",0.105728686792173,14.3543026409663,1.02298083592299,0.349967881247085,0.506589175299175,-6.32427158655273 +"Q9VW40",0.0947991772104082,14.8023343383972,1.02249428652507,0.350178248872871,0.506589175299175,-6.32475960573877 +"P92181",-0.116950503771491,16.489631219164,-1.02036349209941,0.351100757462359,0.507344402376963,-6.32689499946009 +"Q9VEJ0",-0.0844056026246207,22.2404619749747,-1.01988400070699,0.351308623948077,0.507344402376963,-6.32737511297536 +"Q9VSU7",-0.0853255633255596,14.7031965202063,-1.01532666176743,0.353289343042242,0.509238906448739,-6.33193077282845 +"Q9W127",-0.0837361743873934,18.7169608392261,-1.01510665651313,0.353385193339797,0.509238906448739,-6.33215034871727 +"Q9W1X5",0.0826663467863931,19.3348676942611,1.01475977578071,0.353536363110096,0.509238906448739,-6.33249648718192 +"Q7KML2",0.121570237150289,13.9071178476317,1.01138872975623,0.355008216580552,0.510917778478309,-6.33585615223726 +"Q9VHD2",0.0906779372055162,16.5006061988778,1.01001279618979,0.355610410634241,0.511343245636132,-6.33722526459264 +"Q9VK11",0.112537715961682,18.830557021396,1.00871093973751,0.356180952552448,0.511722505475868,-6.33851950309817 +"Q9V564",-0.1029330746808,14.0602062497501,-1.00649787775456,0.357152548599825,0.512663707765785,-6.34071701317525 +"Q9V3Z2",0.0972513656135696,16.1969654022626,1.00581957646192,0.357450774659237,0.512663707765785,-6.34138989079076 +"Q9VY92",0.112165379972769,21.2692812128118,1.00252539477465,0.358902004573894,0.514302872533725,-6.34465333827536 +"Q9W503",0.0777022132364458,17.9648067518151,0.999842684434823,0.360087398466946,0.515270867362119,-6.3473056221843 +"Q9VCI0",-0.223767925891856,14.6344019419124,-0.999598749389157,0.360195342532513,0.515270867362119,-6.34754654974465 +"Q0KHZ6",-0.0869272812503716,23.1498178975284,-0.997561114156176,0.361098048230341,0.516119575362647,-6.3495574915915 +"Q9W3K6",0.0847309123459166,16.4022141872125,0.996429714688562,0.361600070283547,0.516394620918628,-6.35067285618173 +"Q9VGQ1",-0.0874222017077066,22.3969949522773,-0.993775565362658,0.362779988740085,0.517564691172383,-6.35328598193649 +"Q9W5W8",0.077625254971128,20.6652046225709,0.993191671630838,0.363039981218038,0.517564691172383,-6.35386020857493 +"Q9VLP1",-0.1992205649636,18.3131754741754,-0.990675219164896,0.364162220788058,0.51846885703937,-6.35633234240005 +"Q9VFR0",-0.0961931362902302,15.5601968299226,-0.990375964448032,0.364295863579221,0.51846885703937,-6.35662603961142 +"Q9VBS7",0.075316203367656,19.8977075124788,0.988377483570031,0.365189374845032,0.519297423053294,-6.35858583869886 +"Q9U6R9",-0.0764635416968424,20.6150222766071,-0.98614807097682,0.366188226856582,0.520019282753879,-6.36076887647358 +"Q9W078",-0.103251405206219,19.3827083215318,-0.98526248258448,0.366585612960689,0.520019282753879,-6.36163509834429 +"Q9VTM6",-0.253413832487592,15.9784308593896,-0.98515848972558,0.36663230007108,0.520019282753879,-6.36173678173468 +"A8DZ14",-0.0943069448400422,19.390648305518,-0.983508259189928,0.367373806660769,0.520628300348481,-6.36334937016827 +"Q9VKZ8",0.0754411016736469,18.7184635886829,0.978087037369053,0.36981827646134,0.523600044007622,-6.36863373734218 +"Q9V3W7",0.0971956969332446,18.0201201242292,0.976271330509941,0.370639916566999,0.523600044007622,-6.37039907067635 +"Q9VC31",0.0994763258274851,17.6341138921448,0.976087693037751,0.370723097596543,0.523600044007622,-6.37057748633843 +"Q9VA32",0.134828934771065,17.1176243095636,0.975460020623177,0.37100752357218,0.523600044007622,-6.37118713414264 +"Q7K3W4",-0.125800154218108,19.3354094215832,-0.974748096050828,0.37133034035992,0.523600044007622,-6.37187828398709 +"Q9V6U9",-0.0750946589422803,21.8937351659895,-0.974695435506223,0.371354227854326,0.523600044007622,-6.37192939387224 +"Q9V4Q8",0.0893489406854489,16.8763356301525,0.967323844424967,0.374710277544116,0.527621176562329,-6.37906487752839 +"Q9VFC2",0.086671739225217,19.8458886361415,0.966852592959966,0.374925647852038,0.527621176562329,-6.3795197455944 +"Q9VQV7",-0.0763085894614584,16.2469366493557,-0.965799684956842,0.375407203857746,0.527621176562329,-6.38053548680663 +"A1Z8D3",0.24757241750831,16.5695335280134,0.965181378069851,0.375690222274433,0.527621176562329,-6.38113160602855 +"Q9V3N1",-0.0986044554098555,18.4514744427634,-0.964006382192635,0.376228525320871,0.527621176562329,-6.38226369890995 +"Q9V3E7",-0.0923528126463076,18.7385955116345,-0.963824238285746,0.376312026470674,0.527621176562329,-6.38243910540728 +"Q9VB17",0.127093426592197,15.6566390408034,0.963587923032161,0.376420383758496,0.527621176562329,-6.38266664476524 +"Q9W087",-0.173596046209498,16.6886284799299,-0.958360758335633,0.378823571575535,0.530295719692402,-6.38768964568883 +"Q9VBI3",-0.0781116875030143,18.6768181781242,-0.958055422862982,0.378964327262196,0.530295719692402,-6.38798245987555 +"Q9W4A0",-0.0863626693473183,17.1637449556613,-0.957230560225494,0.379344786806669,0.530383155401109,-6.3887731669742 +"Q9V4E0",0.219188108621729,18.8076511732992,0.955613949208585,0.380091315546028,0.530972100881878,-6.39032144245475 +"Q9VKF0",0.0734991897864656,15.8926902460127,0.954940448430651,0.380402674192952,0.530972100881878,-6.39096592778714 +"Q86BI3",0.0901501372437075,17.9557850714532,0.952210256351213,0.381666919760255,0.532291322876342,-6.39357520370683 +"Q9VXH4",0.146831636179085,17.115371807907,0.950606702626105,0.382411019711232,0.53262008024027,-6.39510526977583 +"P02299",0.078441749169631,22.0238558217279,0.950248554008354,0.38257736950146,0.53262008024027,-6.39544675517286 +"Q9VS02",-0.0973177729148986,17.9898518327027,-0.949639053486086,0.382860597247053,0.53262008024027,-6.39602768803739 +"Q9VUM1",0.0958585827707683,16.4966644569131,0.939506398961904,0.387593536889678,0.538755016276652,-6.40564650568412 +"Q8WTC1",0.10030659180916,15.0918347912983,0.937268128929844,0.388645243750677,0.539410631828208,-6.40776132718855 +"Q9I7X6",0.142340159909722,14.9625024297303,0.937126264613415,0.38871197809203,0.539410631828208,-6.407895245405 +"Q9W3V3",0.197943615275955,12.9193121630753,0.934859383151636,0.389779568129996,0.540442493467027,-6.41003318188487 +"Q9V8M5",0.109056650120284,19.6732232046407,0.933234499833172,0.390546230045909,0.541055740628386,-6.41156335091894 +"Q6IDF5",-0.0751204238537966,19.722561558894,-0.932309602084512,0.390983150977483,0.541211531809495,-6.41243348198434 +"Q9NBD7",0.155827607078473,13.4304974084738,0.929635469653798,0.392248573717887,0.542512952704341,-6.41494577552374 +"Q9W3T9",-0.0774430038506857,18.5605515517939,-0.928707550986564,0.392688424913596,0.54267132788391,-6.41581632131315 +"Q9VW00",-0.0882752317970557,15.8718919624223,-0.924804900499085,0.394542599187015,0.544782330665514,-6.41947080133482 +"Q9W1F7",0.0725898046106224,20.3328691452379,0.921914641836495,0.39592020062198,0.545847464889614,-6.42217009328299 +"Q0E980",-0.096628095967727,18.3434450184914,-0.921813483027348,0.395968484722082,0.545847464889614,-6.42226445743457 +"Q9VA41",0.0886778128860257,17.191224408665,0.920481361619802,0.396604749635172,0.546273098589155,-6.4235064022562 +"Q7K1Q7",-0.0826252946315442,16.6264147543513,-0.914821103317311,0.399317195543282,0.549555348321943,-6.42876894252411 +"Q9VLB1",0.110580731786241,16.7270665441455,0.913182065123104,0.40010533484497,0.550083989870963,-6.43028840195629 +"Q9VP18",-0.0726401447651668,17.1605845250061,-0.912651146392235,0.400360889510401,0.550083989870963,-6.43078016067696 +"Q95RB1",0.0816263554443193,15.9547864967958,0.911723602007386,0.400807662834361,0.550244593915814,-6.43163878967992 +"Q7K1C5",-0.0771716609934678,17.5014198270352,-0.906696995239136,0.403235598838248,0.553027994348466,-6.436280824866 +"Q9VHL2",-0.0692582213998243,20.6599360460501,-0.906154649246414,0.403498242878946,0.553027994348466,-6.43678055480615 +"Q7KMQ0",0.0713873881469098,20.7820209427478,0.905058164076118,0.404029647823943,0.553127111866751,-6.43779021176596 +"Q9VK00",0.0709156592506162,18.0143052526178,0.904637256037044,0.404233782593267,0.553127111866751,-6.43817755094332 +"Q8SYD0",-0.0782963184252932,15.5737761622734,-0.901998419499132,0.405515406515368,0.55442598202265,-6.44060291709195 +"Q9VRR3",-0.0773675474842541,19.8072937227225,-0.898563963927253,0.407188156702173,0.556232216942106,-6.44375173690588 +"Q07093",0.0896773492085448,14.7377367503791,0.897917815704284,0.407503458694996,0.556232216942106,-6.4443431578894 +"Q9W0H6",-0.0810942476377861,18.1385095852581,-0.89648067091529,0.408205421191022,0.556734785401982,-6.44565745529439 +"Q9VN91",0.13820065022691,19.4934406641442,0.891805859541079,0.410495256062363,0.559400397967338,-6.44992190699312 +"Q9VZS3",-0.150722379954122,18.3271893164276,-0.891122499803245,0.410830809927549,0.55940064568094,-6.45054389926229 +"Q9V5C6",0.0856433727418811,20.5864962357793,0.890270290117634,0.411249571032196,0.559514098272188,-6.45131908358772 +"Q7KK90",-0.083397290907314,21.124638903432,-0.885999597739813,0.413353063696507,0.561917612262245,-6.45519549068763 +"A1Z6S7",-0.0862919110093756,17.5407974585288,-0.882365579782384,0.415149466341757,0.563900089460954,-6.45848309193338 +"Q9W1G7",0.0690367752425693,19.018411712493,0.881281287206268,0.415686621876246,0.564170289088347,-6.45946207416612 +"Q7K0S5",0.0689193021522136,18.34344647262,0.880416724547888,0.416115305115219,0.564292950351371,-6.46024202439917 +"P08985",-0.0811127858688501,20.7246486182349,-0.875468339990559,0.418575413862917,0.567167985640411,-6.46469512161816 +"P36241",-0.105016265010359,19.8150556881776,-0.872433619254002,0.420089621288217,0.568369289316689,-6.46741680221392 +"Q8MKN0",0.114517880948473,16.6320632200943,0.872325820327823,0.420143485448128,0.568369289316689,-6.46751335109354 +"O18335",-0.0666223018317105,21.6103018022757,-0.866456526176431,0.423084153776506,0.571883604942635,-6.47275658729179 +"Q7KSM5",-0.0699816941085452,18.8714039579771,-0.864775885533769,0.423929071593871,0.572561693456337,-6.47425305388328 +"Q9V428",-0.0813289402091115,18.7817423319895,-0.8636723848266,0.42448453642031,0.572848063712845,-6.47523443569474 +"Q9XZ61",0.06860662656835,18.5243394446101,0.862281832005762,0.425185278988107,0.573329866897464,-6.47646975669011 +"Q9VIS4",-0.0972667489588446,14.080437190647,-0.859348132464502,0.426666534098044,0.574862503130483,-6.4790710249065 +"Q9VL68",0.0707782331848072,20.7934758098391,0.857999733269017,0.427348662491346,0.575316843450819,-6.48026438133219 +"Q9VYV3",0.0814716443216348,20.4323511049751,0.855695773760475,0.42851609582554,0.575959524076213,-6.48230014015089 +"O97454",-0.153476813826652,13.9873742798676,-0.855694684543519,0.428516648308501,0.575959524076213,-6.48230110159242 +"Q9W4Z2",0.0935251396932308,13.7879846157707,0.854561258648671,0.429091846601394,0.576268277078201,-6.48330106284821 +"O61722",-0.078224597280439,19.037490578945,-0.849973128659484,0.431426206330167,0.578937177923345,-6.48733863661118 +"Q7KN94",-0.0665443095069946,22.6571529543039,-0.848995983426255,0.431924592324701,0.579140048229583,-6.48819639270878 +"Q9V3E3",0.0784510053301126,14.9572345148565,0.847919258588666,0.432474269067607,0.579411309883348,-6.48914069126264 +"Q9V429",-0.0748587918481114,22.3432665498757,-0.84690690369626,0.432991563432602,0.579524508339514,-6.49002770357963 +"Q6WV19",0.111432817304093,13.5959761108274,0.846394372579445,0.433253634232238,0.579524508339514,-6.49047646860754 +"Q9W3J1",-0.278072332516462,15.9081306610864,-0.845357061720644,0.433784402988379,0.579769538609468,-6.49138408904352 +"Q9VFT4",-0.10411836696211,15.5870797604785,-0.840895489691256,0.436072845762938,0.58236149458173,-6.49527815195001 +"Q9VB81",0.0850766743706899,20.7854029852335,0.839437001148855,0.436822893353702,0.582468753623695,-6.49654770111561 +"O15971",0.0867250945076758,17.3124712296246,0.838985997092714,0.437055023340215,0.582468753623695,-6.49693993817598 +"Q9VII5",-0.0837153912509194,17.1281241247907,-0.838702923757462,0.437200767108433,0.582468753623695,-6.49718604378509 +"Q9VVS6",-0.133473020142059,16.5380777713846,-0.837425888522794,0.43785871543707,0.582471665058267,-6.49829551382626 +"Q9VR94",-0.0973665406823745,16.3281478879494,-0.837343168189465,0.437901359702079,0.582471665058267,-6.49836733534752 +"Q9VV47",0.0731491338514765,20.2749373079906,0.833827416252658,0.439716676385619,0.584420251961126,-6.50141483130879 +"Q9VXI1",0.0656918955890937,19.4304091448831,0.832689428420708,0.440305461823603,0.584736871275294,-6.50239914070113 +"Q9V9U4",-0.0749529267464926,15.9793768819008,-0.829182957367743,0.442123367239849,0.586683990895837,-6.50542557259674 +"Q9VE75",-0.0634209628675091,15.8392134945725,-0.826941880863917,0.443288153011411,0.587405466492912,-6.50735468294966 +"Q9VVJ7",-0.0646149946455772,18.1781922696766,-0.826781893731595,0.443371392274926,0.587405466492912,-6.50749224509789 +"Q9VQ29",0.0705097173036862,22.1799031873287,0.821362903818734,0.446197664074131,0.590680717202898,-6.51213950597874 +"Q7KUK9",0.113197985839882,18.4038594409535,0.820502236351735,0.446647767500673,0.590807673426743,-6.51287542543669 +"Q7K0D8",-0.062967237296089,17.2229297499141,-0.818953058542896,0.44745878570181,0.591411453685119,-6.51419855180314 +"Q9VUZ0",-0.116894461017669,17.6713326245966,-0.816706462778017,0.448636841339659,0.592245828786813,-6.51611388053305 +"A0A0B4KH34",-0.0620187587629566,23.4103072631754,-0.816395281856492,0.448800196394803,0.592245828786813,-6.51637885448237 +"O44226",-0.0725183441169008,20.1383976376545,-0.815217865604551,0.449418679718383,0.592593168197837,-6.51738072642098 +"P80455",-0.11870662602615,20.5596048430799,-0.810868550698053,0.451708758939963,0.594740089238678,-6.52107182376832 +"Q8SXS0",-0.0839024289478854,14.5819774915212,-0.810771404291441,0.451760007832977,0.594740089238678,-6.52115409242167 +"Q9VV75",-0.0622174947055711,24.0382655257081,-0.809969524986978,0.452183196434841,0.594827737896936,-6.52183287187834 +"A1ZB68",-0.0630683224317821,19.3847277173621,-0.809214841829962,0.452581742887712,0.594882858263753,-6.52247122142419 +"Q9W0A8",0.0654649073316733,19.0016445638634,0.805117649889694,0.454749951366178,0.597262140849437,-6.52592871538294 +"Q9VJI7",-0.0868239230655448,17.2165690207116,-0.803366981421643,0.455678706352135,0.597360919362379,-6.52740186049213 +"Q94516",-0.0739902087737754,23.4565645979247,-0.80326206409553,0.455734410471148,0.597360919362379,-6.52749006606142 +"Q9VZG2",0.0874403742826182,21.6271590370527,0.802951081817527,0.45589955056853,0.597360919362379,-6.5277514604641 +"Q9W0C1",0.0713980314836,21.2869423870973,0.80131352082006,0.456769860591155,0.59763373441083,-6.52912659327658 +"Q9VAV2",-0.0724667919812845,17.7276667919167,-0.801125205401563,0.456870021681168,0.59763373441083,-6.52928458887331 +"Q9VG51",-0.0642742810599906,19.0907018241244,-0.800537635397487,0.45718264095217,0.59763373441083,-6.52977736946956 +"Q9VQF7",0.085258806305152,18.5104721765236,0.799132281439658,0.457930997944613,0.597927600456651,-6.53095485347157 +"Q9VCY3",-0.0809999621289528,17.7784867722158,-0.79876938899695,0.458124384522542,0.597927600456651,-6.53125864090173 +"Q9VKV2",-0.0789888698711163,14.9559841711136,-0.796698968242176,0.459228855213331,0.598192456937801,-6.53298977214945 +"P04359",-0.116332482206737,18.9187029670942,-0.795039149037003,0.460115686202424,0.598192456937801,-6.53437503468528 +"Q9VTC1",0.0662558220663492,15.7810748583803,0.793959195230299,0.460693366017736,0.598192456937801,-6.53527512704801 +"Q9VTZ5",0.0747113842149147,18.0882193541646,0.793840443883939,0.460756919587534,0.598192456937801,-6.53537404203438 +"Q9VI53",-0.0758711529616622,16.2649098449212,-0.793346952042137,0.461021095605217,0.598192456937801,-6.53578497544849 +"Q24298",-0.0731550668969447,19.3391997912982,-0.791818575470827,0.461839962697658,0.598192456937801,-6.53705638400973 +"Q9VHG6",0.0807509121321566,15.7290539735376,0.7917981958929,0.461850888696014,0.598192456937801,-6.53707332406883 +"Q0KI15",0.079209374210679,15.6746796958467,0.791134287150992,0.462206929073549,0.598192456937801,-6.53762499477277 +"P04388",-0.0866887788957911,16.5161993970681,-0.791133726492248,0.462207229827075,0.598192456937801,-6.53762546049412 +"M9PFN0",-0.0792908919140629,16.7627607996982,-0.790726705627944,0.462425604949894,0.598192456937801,-6.53796349096418 +"P49963",-0.131541079732193,14.7735598522769,-0.790609833114847,0.462488323272262,0.598192456937801,-6.53806052809041 +"Q9VKE2",-0.0666640860792533,24.0454216688993,-0.790344271192332,0.46263085698427,0.598192456937801,-6.53828097720512 +"Q9VGG5",0.0663281259460042,16.9331883275528,0.788808575520071,0.463455726487044,0.598794850333376,-6.5395546457122 +"Q9VHI1",0.0862575273924815,14.1695634371911,0.787902165515306,0.463943085957941,0.598960578465825,-6.54030548058941 +"Q9V773",-0.0653901686702234,15.6858985029715,-0.786121667324181,0.464901503643495,0.59973372627792,-6.54177838660125 +"P20240",0.0916308809894808,17.1950365461132,0.784493950316504,0.465778930572014,0.600401279902719,-6.54312259530052 +"Q9V3V9",-0.0674557671061535,19.5122557658469,-0.783063752792621,0.466550868445117,0.600931929394946,-6.54430186392052 +"Q9VSC5",-0.063773420115929,19.4013634253572,-0.777990095733807,0.469296759971517,0.604002311444823,-6.54847155335417 +"Q9VZ58",0.0742043769461596,18.043966473426,0.776337089861845,0.470193876636613,0.604690351757803,-6.54982538688345 +"Q9VXQ5",0.0593582930173042,20.2753246588076,0.773362492068049,0.471811339287779,0.60600239094458,-6.55225583889141 +"Q24372",0.0760324954442613,17.0004951909545,0.773124886258964,0.471940710933458,0.60600239094458,-6.55244965818778 +"Q7K127",-0.176381630294667,18.3247719743396,-0.771088430435749,0.473050560801072,0.606960258012452,-6.55410888047784 +"Q9W197",-0.0628318587675736,17.3859807335484,-0.760124862169338,0.479057585138816,0.614195274413179,-6.56298128379472 +"Q9VB64",-0.0956890115895597,18.8170138761693,-0.757673554440819,0.480408045273915,0.61545362482096,-6.56495106863574 +"Q9W3T7",-0.0607178623102591,17.4155610228892,-0.754280939766412,0.482281521831667,0.617379569006309,-6.56766879470101 +"Q9VTV9",0.0675501512014982,17.2534278071744,0.752372545747035,0.483337641588103,0.618257044608095,-6.56919322823146 +"A1Z7P1",0.18618229103927,14.6638372641879,0.749898732411084,0.484709091560903,0.619381119141557,-6.57116467543173 +"Q9VYT6",0.0907576010185807,16.5478863377258,0.74908603507488,0.485160237068134,0.619381119141557,-6.57181118914921 +"Q9VHM3",-0.109950700280159,14.6624841718328,-0.748449104106769,0.485514017126035,0.619381119141557,-6.57231748123556 +"Q9V998",0.0999503578283889,15.8553244743435,0.748111266354042,0.485701740909567,0.619381119141557,-6.57258588461286 +"Q9VEH2",-0.0692007574523608,16.0476765298583,-0.743897733149762,0.488047323144109,0.621309291140587,-6.5759251732087 +"O97418",-0.0654268678333381,21.0079224263077,-0.743795122613471,0.488104542987185,0.621309291140587,-6.57600630272628 +"Q9VAY6",-0.0634635937643662,15.1861642962662,-0.742814465144877,0.488651634649435,0.621309291140587,-6.57678120578982 +"Q9VRG8",0.0610286429387035,16.2431950378435,0.741693981471939,0.48927725767843,0.621309291140587,-6.57766558097538 +"Q9VYT3",-0.063336199701217,14.4273033815479,-0.741507615945062,0.48938136930692,0.621309291140587,-6.57781257028049 +"A1Z934",0.0703246469565926,19.2789426600328,0.741387129783984,0.48944868618629,0.621309291140587,-6.57790758355177 +"Q9W2E8",-0.0835989419452581,19.4559356062753,-0.739775613280471,0.490349679120413,0.621979669028783,-6.57917718988887 +"Q9VN21",0.0567268513300974,22.0021046708705,0.738156727989862,0.491255956547771,0.622655726080305,-6.58045033750933 +"Q9W3N9",0.0607846377297108,20.1759148102832,0.736884226820945,0.491969141690791,0.623086202232529,-6.58144948178976 +"Q9VXC1",-0.0795569845263842,18.3800350224716,-0.733353556669531,0.493951710999368,0.625122499201021,-6.58421433479265 +"Q8SWZ6",-0.0617042630054527,13.9392963462629,-0.730788108597741,0.495395757438882,0.626474695533021,-6.58621652210047 +"Q9VG76",-0.073435295630027,15.7293837806372,-0.729304087801092,0.49623242174761,0.627057332935617,-6.58737209656514 +"Q9VA18",-0.0838635249591952,21.5411410737903,-0.727837872883117,0.497060007496514,0.627627624908543,-6.58851191734063 +"Q9U6M0",0.0689019163470626,16.2779174141777,0.727131777193756,0.497458894228172,0.627656153988345,-6.58906015869378 +"Q9VVL8",-0.0922975125690488,15.8604058419802,-0.726374433202375,0.49788697789581,0.627721450589729,-6.58964770654786 +"Q9I7T7",0.162612576754585,14.480891146384,0.723499122849102,0.499514543346819,0.629297778174089,-6.59187380005304 +"Q9VJU8",-0.0550079053034214,15.6059893661833,-0.718957108981626,0.502093004782665,0.632068778850932,-6.59537548747389 +"Q9VY87",0.096467292165034,17.5977345995597,0.715977295079217,0.503789576396205,0.633726254471244,-6.59766292623242 +"Q9VTZ6",-0.11021979148752,17.2390495542499,-0.71435586047045,0.504714396368507,0.634411162880686,-6.59890432118189 +"Q7KLX3",-0.0611868891300809,19.3535578954061,-0.712936120331172,0.505525128740014,0.634951743025862,-6.59998938819796 +"Q9VEP9",-0.0914139981780906,17.5013187191457,-0.711670161281224,0.506248795686587,0.635382235669847,-6.60095542086267 +"Q9VAS1",0.0856596516777248,13.1176857895726,0.707385291723686,0.508703421534255,0.637982937683562,-6.60421459553904 +"P48609",0.072386104528249,16.9532673831087,0.705722983235725,0.509657866945267,0.63869971605162,-6.6054745984136 +"Q3YMU0",-0.0551959676596141,23.1403849896468,-0.704229265988073,0.510516549679096,0.639295499147697,-6.60660471495663 +"Q7KS11",0.084757514800506,15.7291324206415,0.701498734119862,0.512088766853755,0.640783243144834,-6.60866544225731 +"P42325",-0.0535434419642158,20.0920195024635,-0.700748045623422,0.512521581006911,0.640844075801745,-6.60923081978003 +"Q9VWD9",-0.0685040048654457,19.4235760718981,-0.698933935259482,0.513568539005772,0.641352321822441,-6.61059503024411 +"Q9VYU9",0.0599877256789192,17.9590674011291,0.698711407459337,0.513697063522051,0.641352321822441,-6.61076216850748 +"Q9VCJ8",0.0574702533178133,17.8309648746319,0.69654653382207,0.514948554512067,0.64243394833667,-6.61238586936705 +"Q9VD26",-0.0820411861246431,16.1742020364501,-0.693183505298053,0.516896759529657,0.643912191087862,-6.61489988075878 +"Q0E8C8",0.0604034729083871,17.6177073137893,0.693168385027364,0.516905529896072,0.643912191087862,-6.61491116090255 +"Q9VR89",-0.127336708881385,13.9559819753209,-0.692244089448965,0.51744184854706,0.644099256251116,-6.61560032110463 +"Q8SY33",-0.0630211942656835,17.308326979046,-0.691056519965648,0.518131479291226,0.644271076520416,-6.61648465254261 +"O97102",-0.0549359163966017,21.0422057874036,-0.690676329892812,0.518352388903116,0.644271076520416,-6.616767495494 +"Q9VMC8",-0.0737919390883448,16.3089470576029,-0.688122819716892,0.519837743843873,0.645636155421876,-6.61866381012033 +"Q7JX94",-0.0922824592581915,12.2261118253484,-0.68271375076619,0.522993550656308,0.649072353046669,-6.62266131652106 +"Q9VUH8",-0.0853139884399905,15.3823784718329,-0.680214341734706,0.524456083813643,0.650403529963685,-6.62449953202699 +"Q8SX78",0.0637434907884646,15.9625492960818,0.679306752571553,0.52498783366827,0.650579276789505,-6.62516562563826 +"Q9VSC3",0.0884377082650794,17.4856730928187,0.67845532727675,0.525487003072614,0.650618688204291,-6.62578981996697 +"Q9Y105",0.231462976194905,17.1720435745402,0.677922144545947,0.525799755215458,0.650618688204291,-6.6261803700067 +"A1Z9E3",-0.0526945172462447,21.8295587148223,-0.673343249115043,0.528490706042368,0.653463675076849,-6.62952371063553 +"Q9VT75",0.0759660293676934,15.5313036716089,0.668942222910411,0.531085690499168,0.656185875372305,-6.63271916070037 +"Q9VJ60",0.0834556131663309,16.5515267606167,0.666793814326117,0.532355503712444,0.657022351320671,-6.63427262188307 +"O61444",-0.0630947789313101,16.349517807036,-0.666464212082372,0.53255049099853,0.657022351320671,-6.63451057511957 +"Q6IGN6",-0.0525605546398129,16.7222728271808,-0.662135962030285,0.535115362681529,0.659305549739488,-6.6376260673819 +"Q9VGQ8",-0.0721256510260257,16.2211832777748,-0.661425482152608,0.535537156622319,0.659305549739488,-6.63813582954866 +"Q7KTP7",-0.0531103946744054,17.8569781533636,-0.661213579312234,0.535663000071127,0.659305549739488,-6.63828777782178 +"A8DYK6",0.0510454985931332,16.5084004121896,0.660676221046148,0.535982209500447,0.659305549739488,-6.63867291382141 +"Q9VPL3",0.101360207473936,15.5761555209892,0.659952458501835,0.536412345976366,0.659348410529535,-6.63919122965301 +"Q9VXH7",-0.0825243852767059,18.1930662760749,-0.656966342708897,0.538189395101995,0.661045589860182,-6.6413246054116 +"Q9W1X4",0.118043145141547,15.0006878241679,0.655155592350557,0.539268845648242,0.661884057793427,-6.64261425615441 +"Q7K9H6",0.0805808586468171,12.0111162188263,0.654253327032553,0.539807242314106,0.662057706014654,-6.64325573590447 +"A1Z7S3",0.0552255244239426,20.0764317357564,0.651514414167696,0.541443734817362,0.662686627441518,-6.64519839644506 +"P54353",-0.0627461310241948,18.8717708859104,-0.651463720131943,0.541474054649332,0.662686627441518,-6.6452342873255 +"Q9VV60",-0.0638921888319111,20.1332299640053,-0.651400422131209,0.541511914390161,0.662686627441518,-6.64527909834699 +"Q9VQL1",-0.0555336494188374,20.1529041918019,-0.647999825231516,0.543548396244563,0.664691147313733,-6.64768104662128 +"Q9VZV2",0.0709443240913075,15.034743415912,0.644549041054246,0.545619984241453,0.666260159370665,-6.65010746383251 +"Q9VX98",-0.0654399571991284,18.2938852370803,-0.644004646512938,0.54594726121556,0.666260159370665,-6.65048924273595 +"Q9W254",-0.0570897588555503,18.0897380313295,-0.643867452492455,0.546029758908692,0.666260159370665,-6.65058541209914 +"P02572",-0.0533166949345087,26.6012876135011,-0.642690395530731,0.546737877967897,0.666636535416998,-6.65140977704601 +"Q9VEK8",-0.0501767299438569,18.8679793026052,-0.641036734217959,0.547733719543025,0.667120784420733,-6.65256575476465 +"Q9VEY5",-0.0586897226595724,20.8478436304928,-0.640667824225264,0.547956037406346,0.667120784420733,-6.65282328999187 +"Q9VQ88",0.0585028661195182,16.3209553566856,0.640039385757973,0.548334889353013,0.667120784420733,-6.65326170884058 +"Q9VCW6",-0.0549868366490038,19.9654639873726,-0.637137674123978,0.550086352695191,0.668763874851005,-6.65528124933463 +"Q9V3R3",0.0574775041187099,13.6130575463405,0.635496218196283,0.551078712766436,0.669482369187483,-6.65642018489991 +"Q9V3Q4",-0.097879902887744,15.9034574289292,-0.633957426079593,0.552010043629897,0.670125729821446,-6.65748559361943 +"Q9VKJ4",0.0878391724251983,15.1559221715941,0.632253240341848,0.553042646723794,0.670891007080209,-6.65866292307211 +"A0A6H2EGA2",-0.072575481904245,15.8015189181278,-0.629225319719194,0.554880359213603,0.67263113311649,-6.66074801837678 +"Q9VDI5",0.081836891005965,16.5653340134643,0.625654409017833,0.557052597738299,0.674037363349545,-6.66319593865025 +"Q9W074",0.110532741795861,13.7660036599738,0.625531435540376,0.557127500073905,0.674037363349545,-6.66328002494251 +"Q8I0J3",-0.0665245229339533,14.8898150583056,-0.625325887473791,0.557252712265601,0.674037363349545,-6.66342054188356 +"A1ZA83",0.0520127687546115,17.0257101838988,0.623453596182127,0.558394060738635,0.674928473414524,-6.66469864280017 +"Q9W2X6",-0.0556316347240298,24.1575906143633,-0.622736771362951,0.558831427340771,0.674968009271837,-6.66518709943232 +"Q9W258",0.0515722797527971,19.2416230350041,0.613511491465688,0.564479414489283,0.68129642790747,-6.67142992134632 +"Q8SZA8",-0.0564063571366233,18.0361180861116,-0.611874827943797,0.565485145781816,0.682016791875683,-6.67252902273881 +"Q9VYV4",-0.0705081124347036,15.5551032830041,-0.610409570770597,0.566386495384957,0.682610313802102,-6.67351085178183 +"Q9VWX8",-0.0564949459343005,20.5497135217719,-0.60780191136924,0.567992802437229,0.684051981563392,-6.67525310933956 +"Q9VI64",-0.0667856137131508,20.8488385311581,-0.606018718689045,0.569092869320474,0.684882327580484,-6.6764407770077 +"Q9VD14",0.0758914493302285,17.5368254045776,0.604713096717606,0.569899155945798,0.685358177445992,-6.67730843824115 +"Q9V438",-0.0576122051017265,19.0123591913654,-0.599959231136939,0.572840872882696,0.688399550409465,-6.68045386162925 +"Q9W0M5",-0.0670861334047199,13.0882930275478,-0.596515799074215,0.574977520254005,0.690469765143039,-6.68271868277895 +"Q9VQI6",-0.0763849251744517,16.0848141207049,-0.594393866846719,0.576296611757689,0.691551247478573,-6.68410864412265 +"O44434",-0.0497961556828344,15.7497127505577,-0.593733820020616,0.576707305301376,0.691551247478573,-6.68454012014098 +"Q7K0W4",-0.0579164616945285,21.8344367097856,-0.591779317925386,0.577924483343305,0.691925337656157,-6.68581532437438 +"Q9VF89",0.140536021259473,14.2882739679473,0.59160609799712,0.578032432784234,0.691925337656157,-6.68592816295888 +"Q9VQB4",-0.048471889344583,21.7249697335716,-0.591234997548499,0.578263741422472,0.691925337656157,-6.68616980697563 +"Q9VRD4",-0.0508460630559497,20.414415565414,-0.588580674891244,0.579919839449142,0.693409528459619,-6.68789430409684 +"Q9VZ20",0.0449638728288591,18.6492068873578,0.583150163501978,0.583317050621713,0.696073989787683,-6.69140122688638 +"Q9VWD0",-0.0614230078143549,18.3054323823484,-0.583116880260671,0.583337909011057,0.696073989787683,-6.69142263242205 +"P13496",0.0444925070892168,18.3096514177411,0.583017579994421,0.583400142519892,0.696073989787683,-6.69148648926481 +"P42207",0.0460963828987886,15.9589906457295,0.582052273498122,0.584005329163671,0.696127820321899,-6.69210674825263 +"Q95RQ1",-0.0707900821735894,11.9411398642229,-0.581374954208336,0.584430192376955,0.696127820321899,-6.69254142033273 +"Q9VW59",0.0468201792762244,19.7827984185943,0.580949301266018,0.584697287932242,0.696127820321899,-6.69281435652072 +"P35992",0.047983328626847,15.8001920647769,0.573915589454768,0.589121563629102,0.700639937207559,-6.69729895978698 +"Q9VL69",0.0870242698707955,16.1232677360768,0.573589382371867,0.589327237351442,0.700639937207559,-6.69750577468682 +"Q7JXB9",0.104258191470944,16.2569933493188,0.572689933426174,0.589894563033885,0.700697512912887,-6.69807548583448 +"Q9VF82",-0.0537769015072751,14.8791778281037,-0.572180819057823,0.590215830720987,0.700697512912887,-6.69839760861894 +"A1Z7K6",-0.074066502378388,15.5246188623353,-0.569902621312034,0.591654728049182,0.701906178083951,-6.69983594689244 +"Q5LJT3",0.0631181306922635,17.1940777177178,0.567609031157174,0.593105458552475,0.703085797307568,-6.70127887064997 +"Q9V3Y4",0.0936583180000881,14.3166892201211,0.566998337832969,0.593492087895118,0.703085797307568,-6.70166219570949 +"Q9VCR9",-0.0498680186859133,19.334694837104,-0.56414973810872,0.595297511111312,0.70472409406222,-6.70344539406338 +"Q9VRL0",-0.0465382062440689,22.8939694092844,-0.56276047250697,0.596179197962708,0.705267306526097,-6.7043121707927 +"Q9VFP6",-0.0497463193985546,20.2902331940021,-0.56065779115777,0.597515117009544,0.706346715217519,-6.70562044418356 +"Q9VF28",0.0689969590129245,17.7672232116422,0.558630070950209,0.598805082111186,0.707370309462789,-6.70687795410725 +"Q9VZZ6",0.0479719702374517,18.4608118052791,0.554207961351416,0.60162395251473,0.708816119846789,-6.70960630114961 +"Q9VN71",0.0786345281999026,18.6788635956158,0.554108695845775,0.60168731839418,0.708816119846789,-6.70966732420156 +"Q9VYT1",-0.0517872873383336,14.2630991180208,-0.553405622412482,0.602136235374801,0.708816119846789,-6.71009925676367 +"P17704",0.0491533634834305,20.4064886481907,0.552941245620719,0.602432850457338,0.708816119846789,-6.71038427816532 +"P38979",0.0445308804980016,22.1387598104607,0.552794609469266,0.602526530285802,0.708816119846789,-6.71047423499018 +"Q9W236",-0.0465648339731715,16.5684144740837,-0.55271296730323,0.602578691812198,0.708816119846789,-6.71052431075945 +"Q9VK18",-0.0508951474871697,14.4627640433599,-0.547899813167931,0.605658495628242,0.711936836298737,-6.71346482435994 +"Q9W077",-0.0537804355343852,20.8250756671106,-0.546591684344241,0.606497111262555,0.71220242541582,-6.71426003281798 +"Q9VGA3",0.0529793258689573,19.3277544447501,0.546215505016129,0.606738397191775,0.71220242541582,-6.71448839678187 +"Q9VWA8",-0.0563593268133857,14.4236884098518,-0.544807364660003,0.607642089542286,0.712761607142428,-6.7153419762676 +"Q9W499",0.0644642834836198,17.031701115574,0.542081125684011,0.609393902545746,0.713985012143688,-6.71698894961798 +"Q8IQB7",-0.0540966406186598,14.4056495410932,-0.541309002022116,0.609890579532767,0.713985012143688,-6.71745405989924 +"Q9VKX2",-0.0515640366425671,23.1701060113787,-0.541186797989339,0.609969210014841,0.713985012143688,-6.71752761847912 +"Q9VAP3",-0.0934209088762596,16.5329777723515,-0.535904876909773,0.613373366120803,0.717466181409186,-6.7206927432801 +"Q9VD30",0.0456119622079321,21.5247041521141,0.534562578904422,0.614240199807176,0.717976631589608,-6.72149265818205 +"Q9VIW6",0.0657090080479197,14.9750326924895,0.528583186285098,0.618110087488031,0.721994135805347,-6.72503403737494 +"Q95RS6",0.0478960485557849,17.0864125239733,0.520884058485131,0.623113318795046,0.72732891235139,-6.72954107650787 +"Q7K180",-0.0413509384896393,16.3898923196984,-0.518573182248204,0.624619465093939,0.727363663380992,-6.73088220375114 +"Q9VSW4",0.0973632076861932,15.9395372228374,0.518389731412107,0.624739119212281,0.727363663380992,-6.73098843933361 +"Q9VKR0",-0.100883322097225,13.1772746432335,-0.51831365476575,0.624788743273324,0.727363663380992,-6.73103248502038 +"O15943",0.0459195113835911,20.0498818261551,0.518162467412309,0.624887367880672,0.727363663380992,-6.7311199997998 +"Q8MSV2",0.108627699699984,18.0497763935067,0.515590049045253,0.626566778916647,0.728405020098578,-6.73260550419626 +"Q59E14",0.0507170314868315,14.4297364427211,0.515454414962224,0.626655397986487,0.728405020098578,-6.73268364366806 +"Q9W1V3",0.0717646268270205,16.3601959857959,0.51477501904363,0.627099399358313,0.728413508446842,-6.73307476696262 +"Q9VAF5",0.0431151299030486,15.8211373855154,0.509146559381723,0.630784466937684,0.73194601729563,-6.73629705014429 +"Q9VPB8",-0.0391693898989054,15.5517940829301,-0.508697869178247,0.631078749498185,0.73194601729563,-6.73655254180232 +"Q0KI81",-0.0430778864723198,15.6341941801186,-0.508121284621883,0.631457025712477,0.73194601729563,-6.73688055848863 +"Q9W259",-0.0653759651110057,16.8694429036887,-0.507388383745642,0.631938036365393,0.731994892123247,-6.73729701548441 +"Q9VNI8",-0.0536674631199219,15.7732693156635,-0.503815408867485,0.634285913135487,0.734204651707142,-6.73931946968299 +"Q9V3L7",0.0595228926102038,17.7917531110699,0.495080689958555,0.640045803230552,0.7403581135843,-6.74420890537693 +"O44386",0.0380566127143602,16.8206777892009,0.488833213626553,0.644182928166622,0.744627251685327,-6.74765819511517 +"Q9U616",0.0584246309774308,19.7521194597063,0.484947723213619,0.646763181683023,0.747092096293132,-6.74978320893003 +"Q8IPP8",-0.046848045538912,18.9616423091526,-0.479873174755621,0.650141377911108,0.750474614779051,-6.75253513677209 +"Q08012",-0.0583054470774336,19.2466608313676,-0.477672561481206,0.651609271123869,0.751153029743822,-6.75372027579457 +"Q9VXA9",0.053843944058988,14.3077747504165,0.477641868987636,0.651629756618292,0.751153029743822,-6.7537367698674 +"Q9VJJ1",-0.0614948385111571,14.022216460192,-0.475190922674356,0.653266725285643,0.751651360365365,-6.75505076021314 +"Q9VAU6",-0.0391701600933416,13.4180699267736,-0.47519019382155,0.653267212404158,0.751651360365365,-6.75505115003886 +"Q9VYF0",0.0414517128769702,16.0142569426554,0.474970646719348,0.653413952355983,0.751651360365365,-6.75516854943471 +"Q7K0B6",-0.0380275635274714,20.1717952715723,-0.473862290061371,0.654155016733736,0.751985229436163,-6.75576046466055 +"Q9VGP6",0.0376728619408517,17.9032489174234,0.461870589314482,0.662201035249473,0.760710280162617,-6.76208316266666 +"Q9VG26",0.0364144430619291,19.6628300784261,0.45746093086324,0.665172630514363,0.763333503151527,-6.76437057332788 +"Q9VND8",0.0511753959162249,18.3192796578726,0.457124202277199,0.665399828286763,0.763333503151527,-6.76454441019361 +"Q9W3G8",-0.0914637132953722,15.9602807944343,-0.454964922690867,0.666857686749607,0.76448015223254,-6.76565632904215 +"Q9VFM9",-0.0453947986385987,17.0582202747902,-0.452400107958874,0.668591471224595,0.765581309866614,-6.76697074632179 +"Q9U5L1",-0.0367562805341777,17.6799733713988,-0.4521861738867,0.668736192131689,0.765581309866614,-6.76708007244034 +"P0DKM0",0.0547894299718195,16.9046421525694,0.448396282764415,0.671302601915817,0.767992277088878,-6.76900886509368 +"Q7JVK8",-0.0397579781157695,19.1088567248339,-0.445243498299097,0.673441383071742,0.769911053436371,-6.77060194064272 +"Q7JYZ9",0.0347015963791115,18.0673954699439,0.4436189219213,0.674544802971651,0.770644336545694,-6.77141875134789 +"Q94529",-0.0400914517693387,19.7059499389823,-0.438829363500343,0.677803179662926,0.773836895056646,-6.77381071192853 +"Q9VZ49",0.071975694937791,18.8387759161261,0.431346998718237,0.682909177479641,0.778900872507431,-6.77749910439384 +"O77430",-0.032830717339813,19.5390279670045,-0.430961661062787,0.683172647768808,0.778900872507431,-6.77768745371426 +"Q86PD3",0.0341337922721685,18.9407544227261,0.429470628511529,0.684192596588573,0.779530909227965,-6.77841477649072 +"Q8IP62",-0.0727736621829678,15.6154163451456,-0.420528378730776,0.690325237487061,0.785981226026224,-6.78272736553283 +"P14199",-0.036959845395959,18.6004912476762,-0.414415434432577,0.694532815107273,0.790232425374442,-6.7856265824851 +"Q9V455",0.0620999180184434,19.3832252374758,0.402703560541577,0.702628308395457,0.798898444719579,-6.7910698944934 +"Q9VGR2",-0.0334807221223024,15.6191546174161,-0.400577383851951,0.704102719579439,0.800029520612061,-6.79204233563245 +"P05389",-0.0361155129311435,20.6119348875423,-0.399158081158093,0.705087749613857,0.800603380773257,-6.79268877850919 +"P00334",0.0311308642179711,25.2116256592254,0.396587346275096,0.706873536234916,0.802085073768598,-6.79385415393285 +"Q9VES8",-0.0337592123012218,17.8883414785819,-0.394167984541773,0.708556086636125,0.80344769035286,-6.79494442319503 +"Q9VVH3",-0.0304154438565973,20.0252570981908,-0.391181612292953,0.710635515504149,0.805258179253343,-6.79628153008012 +"O18373",-0.0298301334503819,19.5223740514808,-0.385417617284284,0.714656928057537,0.809265279022384,-6.79883511026375 +"Q9VTB3",-0.0389055441123922,19.7717964897501,-0.381863489927906,0.717141715110254,0.811060042644934,-6.80039179786935 +"P08120",0.0506405739081188,18.281398936265,0.381759656974671,0.717214366247768,0.811060042644934,-6.80043707087802 +"Q9VHN4",0.0407282734666978,14.5686002665395,0.379152214816109,0.719039861825611,0.812573502388292,-6.80157013846577 +"Q9V3P3",0.0347613828433282,19.3956926331528,0.377970169361545,0.719868110793932,0.812747098568931,-6.80208137403065 +"P08646",0.0548859703747127,18.7998564585908,0.377542339841669,0.720167992616835,0.812747098568931,-6.80226603769845 +"Q9VZW7",-0.0441467075087125,14.1916665198864,-0.375899653577002,0.721319932601481,0.813496719120535,-6.80297322644388 +"P08928",-0.0299174582810302,22.679458030653,-0.373632535026252,0.722911107429551,0.814340792570014,-6.80394443342021 +"Q9W073",0.0323535355074682,14.5552884506359,0.37344216073616,0.723044792443759,0.814340792570014,-6.80402573380142 +"Q9VRJ4",0.0302237381164048,20.6869129988772,0.369318359512708,0.725943304351951,0.817053597610698,-6.80577716818466 +"O46106",-0.0375305707046287,17.0110036191172,-0.366299481806454,0.72806843538921,0.81889288619636,-6.80704760962511 +"Q76NQ0",0.0707047475518863,14.6302951076898,0.360751551615437,0.731980964769105,0.822309733724961,-6.80935648739976 +"O76752",-0.0284622396030869,18.0050549336261,-0.360593869631089,0.732092298909813,0.822309733724961,-6.80942161949317 +"Q9VF77",0.0273632052477222,15.6800341258757,0.35551216651671,0.735684233586667,0.825556620258105,-6.81150613605305 +"Q9W330",0.0390517140807809,20.6807927092827,0.355104324916528,0.735972838323622,0.825556620258105,-6.81167221003161 +"Q9VGF3",-0.033529666735415,15.7036080273828,-0.354392764797451,0.736476482112014,0.825566379141693,-6.81196152345134 +"E1JGR3",-0.0359484689837135,12.2480021094069,-0.350106733451046,0.739513248202394,0.828413766287168,-6.81369246525336 +"Q9VLM8",0.0265597726105575,17.0297125894306,0.346913647834505,0.741779072274849,0.830394290304999,-6.81496893640162 +"Q0E9B7",-0.053037370115657,12.7347515355727,-0.343645814491953,0.744100952434509,0.832434868317076,-6.8162637111557 +"Q9VJ22",-0.113782229699094,12.81715978638,-0.341296188798795,0.745772293966698,0.833171865214345,-6.81718742945451 +"Q9VSJ8",0.033399926495342,15.8806374883613,0.341059626301834,0.74594065253578,0.833171865214345,-6.81728009415584 +"Q9W0Y1",0.0277807555127865,17.6858769332539,0.340613422104485,0.746258253375439,0.833171865214345,-6.81745471088316 +"Q9VHE4",0.0266668185036814,17.9443081271263,0.337895114466055,0.748194308101962,0.834465194906362,-6.81851375859262 +"Q7KQM6",-0.0275653194677776,15.1091104933693,-0.337582315308342,0.748417225167816,0.834465194906362,-6.81863510302796 +"P43332",-0.0525058453781284,17.0230986639139,-0.335770248669079,0.749709135791771,0.835347253507465,-6.81933594021156 +"Q7JZW2",0.026416713773326,20.5983184938618,0.335010838250475,0.750250828204555,0.835392778000799,-6.81962857549946 +"Q9VKK1",-0.0253696320252264,14.5357409333059,-0.329446535627289,0.754224744741954,0.839081083166899,-6.82175335957572 +"Q9VIQ8",-0.0274060172684898,21.4277001652366,-0.328345991104195,0.755011739686902,0.839081083166899,-6.8221695668548 +"Q9XY35",0.0293328498496166,19.3513693288219,0.328261230173465,0.755072365607623,0.839081083166899,-6.82220156652975 +"Q9W403",-0.0318840435231689,15.2673818316978,-0.323947874968569,0.758160105587417,0.841103408188021,-6.82381950002468 +"Q9VB79",-0.0356830247690354,17.6178789445554,-0.32388333748028,0.758206343378474,0.841103408188021,-6.82384355175691 +"Q9W158",0.0368351641179423,16.8477395903307,0.323319677697113,0.758610224369746,0.841103408188021,-6.82405341976069 +"Q9W306",-0.0616641113697991,14.5692965512249,-0.322902431639262,0.758909250193628,0.841103408188021,-6.82420854698121 +"Q9VH07",-0.0280863366391202,18.1996952936638,-0.321084803985685,0.760212427026477,0.841988265790281,-6.82488207177646 +"A1Z8H1",0.0285009495256894,23.2342610386119,0.318293473086182,0.762215437209017,0.843646548948003,-6.82590928008001 +"Q9W257",-0.066771012558565,16.8445162038355,-0.315676306772759,0.764095351945492,0.844759262681399,-6.82686455119812 +"Q9VZD8",0.0301087214361804,13.9154127922628,0.315483872231647,0.764233649512129,0.844759262681399,-6.82693449036732 +"A1Z729",0.0348645602814184,16.7179648389126,0.312927977826951,0.76607142744342,0.845651237650424,-6.82785951671519 +"Q9VHJ7",0.0568764317449748,14.7329200908648,0.312806902896115,0.766158527139144,0.845651237650424,-6.82790315609641 +"P02283",-0.0293883901317393,21.6243471817467,-0.312069329982425,0.766689210201351,0.845651237650424,-6.82816864989899 +"A1Z7H7",-0.0263206326544996,17.7940372723372,-0.311542239210076,0.767068538708089,0.845651237650424,-6.82835800915282 +"Q9VL89",0.0235342715056497,16.8721679287464,0.304280780263093,0.77230169028573,0.850858136985864,-6.8309352710856 +"Q9VSR8",-0.0413837168402189,15.4077725271517,-0.303528084766058,0.772844915521265,0.850894600059057,-6.83119906336608 +"P52029",0.0289362942784805,18.7640191421089,0.30008208540377,0.775333758099619,0.853019863856815,-6.83239869782085 +"Q7JXF5",0.0306440785930207,18.4890357359918,0.298312244322998,0.776613179010752,0.853019863856815,-6.83300967425463 +"Q9Y128",-0.0373312328194153,14.319919238039,-0.298069131786845,0.776788987086912,0.853019863856815,-6.83309332740534 +"Q9VL18",-0.0274348504653652,20.9177130000228,-0.298025076835134,0.776820847241308,0.853019863856815,-6.8331084793145 +"Q9VMY1",0.0408762162842322,15.390643395583,0.295256767260627,0.778823840228512,0.854656687829709,-6.83405624328352 +"Q9V4C8",-0.0305193087600948,17.1520508079647,-0.287477740879357,0.784462483349521,0.860084458245692,-6.83667362831039 +"Q9VDC3",-0.0220945083444981,19.3106989030242,-0.286540281597562,0.785143004717888,0.860084458245692,-6.83698447954147 +"Q9VIK0",-0.0924666664258762,12.7427920484275,-0.286300743926357,0.785316924405389,0.860084458245692,-6.8370637496828 +"Q9W1Y1",-0.0356497961495705,17.7268893716256,-0.285544282678029,0.7858662550972,0.860121334318983,-6.83731366308699 +"Q9VRU1",-0.0374101517611116,17.1694274645163,-0.282088231148725,0.788377745192459,0.862304314085915,-6.83844728413883 +"P55828",-0.0221503967057153,19.9672178105047,-0.279773208184784,0.79006165960929,0.863503899956965,-6.8391991418765 +"Q9V535",0.0227999068146119,18.4825248156454,0.279157316745027,0.790509865248373,0.863503899956965,-6.83939815378267 +"Q9VXJ7",-0.0283284578524103,14.998646158955,-0.277250943476027,0.791897769400989,0.864453847749247,-6.84001145649417 +"P91941",0.0213253993623077,23.2085965166026,0.275429645242115,0.793224537132632,0.865335858690144,-6.84059357516202 +"Q9VG00",-0.0506462789765649,15.3168931314373,-0.27295137205014,0.795031142786606,0.866739834096771,-6.8413796840237 +"Q9VK99",-0.0358481599993041,19.7909172000639,-0.27091665682596,0.796515473655651,0.867739694249008,-6.84201993042464 +"Q9VDF4",0.0209864228407639,18.6540108191263,0.270268186742134,0.796988735964917,0.867739694249008,-6.84222299960452 +"Q9VU45",0.0355000376790446,17.9207514374206,0.268601815349799,0.798205320977966,0.868164712596028,-6.84274265370059 +"Q9VWS1",-0.0287210217395781,17.1090719832558,-0.26830776797118,0.798420065421047,0.868164712596028,-6.84283402701381 +"Q9VW58",-0.0660736401991091,14.9186746016548,-0.26558678438126,0.800408152615548,0.869759477891032,-6.84367493203272 +"Q9VIU3",-0.0565287935961969,12.6045461175178,-0.264367130717664,0.801299839559899,0.870161544522078,-6.84404914979665 +"Q9W1M9",-0.0351340036679098,14.4537842205297,-0.26200168028669,0.803030174712148,0.871473214977139,-6.84477014054506 +"O18404",0.0255622931249881,23.0324968315421,0.25803638040566,0.805933616694315,0.874055443853132,-6.84596459512887 +"Q9V9A7",0.0716821028411481,15.9826245783354,0.257140607321616,0.806589996553076,0.874198904646219,-6.84623196611521 +"P40796",0.0224865710493205,18.5793755395256,0.255539305093593,0.807763795376201,0.874902604342535,-6.84670766368654 +"Q9VDK7",0.0247083389715215,17.8966500054104,0.254250143120716,0.808709195731359,0.875358169033035,-6.84708852690388 +"P22812",0.103068793475572,11.3782097945505,0.253256155091452,0.809438379722907,0.875384325162463,-6.84738090172147 +"Q9VI04",-0.0377762264198083,16.4928742760691,-0.252786512328677,0.809782981849928,0.875384325162463,-6.84751865500551 +"Q9VUK8",0.0210942660440132,20.7233338848516,0.248310355504394,0.813069772401586,0.878368121998604,-6.84881904573175 +"Q95RN0",0.0192636294273569,16.9426537162614,0.245919427240939,0.814827163310895,0.879696898642442,-6.84950434456539 +"Q9VD00",-0.0210797551086088,17.9919725514447,-0.244469091092859,0.81589378703393,0.880278678378134,-6.84991688792627 +"A1Z8Z7",0.0204101349640311,18.704012774443,0.243248621167982,0.816791703454289,0.880677803078056,-6.85026219762954 +"Q7KTJ7",-0.0214480206524961,22.100137121683,-0.239473301499696,0.819571230534372,0.883103884064168,-6.85131965084838 +"Q9VU75",0.0213545068228989,18.325066234636,0.236042100692912,0.822099963876996,0.884821773356687,-6.85226667288394 +"Q9VE56",0.0274234024268729,17.4679918217045,0.235870535044178,0.822226468047281,0.884821773356687,-6.85231367422073 +"A1Z6G9",0.030484930334655,14.1545601763561,0.234258679999309,0.823415264347792,0.885529762045208,-6.85275361603822 +"Q9VND7",-0.0265537629173647,13.9302363853014,-0.230557166445896,0.826147241363399,0.887276927154727,-6.85375272313326 +"Q8IH23",-0.0233441151975438,18.177581064056,-0.229950559249306,0.826595222274124,0.887276927154727,-6.85391497016414 +"A1ZBD8",-0.0449535696571512,13.9080028228212,-0.229895755870187,0.826635698320411,0.887276927154727,-6.85392960758596 +"Q9VG97",-0.0177879446335574,20.0006522428578,-0.227354817632968,0.828513010213947,0.888189357489835,-6.85460450957044 +"Q7KTH8",0.0219795175941933,17.5946797132099,0.227303763347794,0.828550743557663,0.888189357489835,-6.8546179947784 +"A1ZBM2",-0.0284448405235977,18.4874295199328,-0.225140808380274,0.830149817283532,0.888573860715224,-6.85518657698314 +"Q9W5R5",0.0200913321930596,15.8526957383312,0.224911615958469,0.830319313096478,0.888573860715224,-6.85524651292454 +"Q7JVM1",0.0272865316228703,15.7062092115566,0.224657053120082,0.830507583246424,0.888573860715224,-6.85531301325111 +"Q9VVU5",-0.0166568433482031,15.5953517132217,-0.218890845547649,0.834775529332548,0.892012206345874,-6.85679953470794 +"Q9W141",-0.0195649270191964,21.9454986558943,-0.218856924716421,0.834800655241138,0.892012206345874,-6.8568081671656 +"Q9XYZ9",0.0213579863572519,21.9696241742113,0.218148326930178,0.835325579323894,0.892012206345874,-6.85698819661504 +"Q9VEA1",0.0170727037915057,18.172733421571,0.216710554543642,0.836390963343394,0.892578456082394,-6.85735172076396 +"Q9W2D9",-0.0260807287326852,17.6558924243967,-0.215667535259253,0.837164081084506,0.892832280849716,-6.85761395788977 +"Q7K084",-0.0184131874180835,23.5149868306361,-0.213591549085156,0.838703472812555,0.893902487317151,-6.85813220419145 +"Q9GU68",0.0218153415786553,22.162002887496,0.210677772767389,0.84086545728872,0.895634471748139,-6.85885128196602 +"Q9VHA8",0.0174398849029451,18.6191525222259,0.208847682195374,0.842224160215053,0.896227325914447,-6.85929795499911 +"Q9VRL1",-0.0223335920909093,20.4455474534879,-0.208480726052658,0.842496670883605,0.896227325914447,-6.85938705712831 +"Q9V595",-0.0201417619884623,18.5141042948489,-0.207364580261341,0.843325698750015,0.896537454120475,-6.85965712542 +"Q7JR49",0.0162769785886994,18.9629405800936,0.204442535545553,0.845497140997512,0.898273395658503,-6.86035740075716 +"Q9W1H5",-0.0213404517166804,17.1626489752294,-0.201850504702345,0.847424620044489,0.899748100721965,-6.8609703982604 +"Q8IH18",-0.016232524081488,15.5342983914142,-0.200895668346852,0.848134952764182,0.899767087869864,-6.86119426910362 +"Q966T5",-0.0265271312329833,16.6387615454217,-0.200376345819228,0.848521360443223,0.899767087869864,-6.86131559042378 +"Q9VN93",-0.0154744848281574,20.2982799098962,-0.198661083972298,0.849797955587104,0.900454608210804,-6.86171410222574 +"O97064",0.0231476726549982,16.5414229114052,0.198054670986052,0.850249405235022,0.900454608210804,-6.86185418424703 +"Q9V6B9",0.0258836557548214,15.9860745473029,0.19618415986989,0.851642325360475,0.901357486485579,-6.86228361547778 +"Q9VTF9",-0.015817204609256,17.3052503524551,-0.191424195964168,0.855189645820544,0.904309705112753,-6.86335828511499 +"Q9VME3",-0.0156590692690592,15.6513945505588,-0.19098651519794,0.855516015987964,0.904309705112753,-6.86345579461959 +"Q9VXA3",0.0195831642237785,17.7488218624424,0.189115608912573,0.856911476248005,0.905211109804732,-6.86387012544759 +"Q9VEC2",0.0156182033827417,16.6518774970839,0.182703104418562,0.861698775060764,0.909511633592661,-6.8652596904757 +"O97422",-0.0416909731567383,15.454849588087,-0.182202109988098,0.862073077164267,0.909511633592661,-6.86536626088231 +"Q9VTB4",-0.0142963837168857,20.6527724447362,-0.180703383065256,0.8631930433712,0.910117570381265,-6.86568334104395 +"Q9VJC0",0.0139106201602512,16.6030687878299,0.166964224237639,0.873476317916534,0.920378078512178,-6.86846941389019 +"Q9W0Q2",0.0166101222040353,15.4939248764012,0.164845366500526,0.8750647420889,0.921233381720749,-6.86887969393023 +"Q9VU95",-0.0659385276411655,16.8618926249804,-0.164408091170621,0.875392631910904,0.921233381720749,-6.8689637190689 +"Q9W1H6",-0.0158611174374386,17.2197996853585,-0.163457180643061,0.876105765686228,0.921402532890686,-6.86914567969667 +"Q9VV72",0.0213236244053796,19.3326050909483,0.160706526199065,0.878169347967601,0.922990845878991,-6.86966614461788 +"Q9VLM9",0.015454943493884,18.3666952870631,0.152353834798559,0.884442185724144,0.928998467120826,-6.87119296325801 +"Q95SH2",-0.0137061574459771,18.7614597239388,-0.149978183528062,0.886228034148582,0.930163523002237,-6.87161246587445 +"Q9VHK6",-0.0187865127692177,18.0235803798856,-0.148823282177431,0.887096480268901,0.930163523002237,-6.87181404172519 +"Q9VJJ0",-0.0130076872343849,19.6757772146489,-0.14865329512053,0.887224319602254,0.930163523002237,-6.87184358070814 +"Q8SXG7",-0.013589521049834,13.8873998697287,-0.147764492834281,0.887892808327791,0.930279650936404,-6.87199748440322 +"Q9VKM3",-0.0123425972638422,21.8945898074371,-0.146713999877043,0.888683041946658,0.930523109834918,-6.87217820578628 +"P41094",0.0113668786693708,21.198564759433,0.144943202461938,0.890015449787804,0.930569445802492,-6.87247994922798 +"Q7KTW5",-0.0129920358732889,21.626172989452,-0.144623701514381,0.890255896246841,0.930569445802492,-6.87253400498934 +"Q9V470",0.0127515113610919,19.8818331141747,0.144430924570844,0.890400980516053,0.930569445802492,-6.87256656330528 +"Q9VGR1",-0.0240513022616202,14.2209531655428,-0.140386115380915,0.893446201564566,0.932201479131967,-6.87323975669237 +"P36951",-0.0122039857070497,20.42890495333,-0.139877334766677,0.893829393742835,0.932201479131967,-6.87332309127962 +"Q9V3H2",-0.0109514800291244,18.2964797602622,-0.139702467076086,0.893961104182147,0.932201479131967,-6.87335166398696 +"Q9VRP2",0.0112153824577028,20.4429546224699,0.139387879184168,0.894198061517474,0.932201479131967,-6.87340297710204 +"Q9VMQ9",0.0114740960551671,22.0730491693197,0.131865609563398,0.899867661673001,0.937526083491921,-6.87459573421326 +"O16158",-0.01402260296382,21.215667692642,-0.130389456694647,0.900981042905567,0.938017565114339,-6.87482208466618 +"Q9VMX3",0.0160149875514488,12.5682322342845,0.129078832053613,0.901969787589169,0.938017565114339,-6.87502093129515 +"Q9VSK4",-0.010552664965477,19.7364060025413,-0.128694119787361,0.902260054913747,0.938017565114339,-6.87507892045224 +"Q9VPX5",-0.0102216030025986,18.7356688934431,-0.128258378855097,0.902588844129804,0.938017565114339,-6.87514439359351 +"Q9VYG8",-0.0200434431247487,15.0699083805572,-0.125887844981725,0.904377913875982,0.939291631597221,-6.87549671640114 +"Q9VL93",0.0143195568035157,15.350929402106,0.123612841578137,0.906095479255639,0.940489893838461,-6.87582869658075 +"O17452",-0.0180679836038955,19.7464950668813,-0.121243586713718,0.907884808732736,0.941761107566047,-6.87616803120773 +"Q9VJ19",-0.00945771915689875,19.1471552719894,-0.115799756942586,0.911998428933901,0.94544026069717,-6.87692297223988 +"Q9W0H3",-0.0151147402370189,16.8901378266444,-0.112122233769112,0.914779087271779,0.947733861844302,-6.87741343800074 +"P54195",0.0236757389925124,18.6268910414593,0.108793490679503,0.91729719565557,0.949130303209736,-6.87784380382455 +"Q9V436",-0.00819400005319793,19.0487107337079,-0.107702096906892,0.918123043337313,0.949130303209736,-6.87798209701701 +"Q9VMQ7",0.00868015316637027,15.9505542123373,0.107474195432923,0.918295508827544,0.949130303209736,-6.87801079976049 +"Q9VUW2",0.00904145908734399,14.4956582964064,0.107332072981111,0.918403063177766,0.949130303209736,-6.87802866853322 +"Q7PLI0",-0.00929729508977672,17.6436639300646,-0.106495904776225,0.919035891416131,0.949196202403781,-6.87813332155033 +"Q9W380",0.0148689188752975,18.3906992380809,0.102050202008773,0.922401592007691,0.952082831354473,-6.87867604795681 +"Q7K4Z4",-0.0135568731937781,14.8751222360665,-0.0977859999823969,0.925631582906428,0.95482589999253,-6.87917495837815 +"Q9U6P7",-0.00799655814217104,16.9431257446361,-0.0939169561771976,0.92856363571553,0.956758429064013,-6.87960927632223 +"A8JNP2",0.00815203986897117,21.1696177015176,0.0938000943856823,0.928652216219807,0.956758429064013,-6.87962212275564 +"Q494G8",0.00806339655900068,15.1259018323883,0.0900489380554275,0.93149617179549,0.959096058367208,-6.88002601145592 +"Q9W147",0.00912896403939989,13.837731485682,0.0811471467366922,0.9382495694029,0.965453597633582,-6.88091869244887 +"Q9VN25",0.0110639594730451,15.060609797922,0.07686693356694,0.941498874487784,0.9681998290047,-6.88131494819247 +"Q9VTP4",0.00735001790763334,21.0271100197912,0.0749555986722907,0.942950269059428,0.969094916075863,-6.88148497862139 +"Q95WY3",-0.00695368885181047,17.3307465088078,-0.0730415997711619,0.944403933318731,0.969991232004707,-6.88165096486535 +"Q7K1C3",-0.00640212848462873,16.9776653408192,-0.0696927391785987,0.946947936770138,0.972005636020055,-6.8819310779354 +"Q9W4X7",0.00589041935667112,19.0674704944448,0.0686430332855086,0.947745505203612,0.972226016408133,-6.88201617905682 +"Q9V3J4",0.00509764989762651,16.6370930183435,0.0666762791882223,0.949240030934175,0.972978825653332,-6.88217215574773 +"Q9VNQ3",0.00621022577962194,15.1401178133748,0.065343852568006,0.950252666985987,0.972978825653332,-6.88227525399316 +"Q8IMX8",0.00584831744725278,17.1265274052338,0.0641906020966459,0.951129214648149,0.972978825653332,-6.88236281081059 +"Q9VN95",0.0068949854261291,17.8976868306486,0.0636235092277688,0.951560271515888,0.972978825653332,-6.88240529457861 +"Q0E8X7",-0.0103308639464998,21.0477642091705,-0.0635978144118455,0.951579803016924,0.972978825653332,-6.88240721059198 +"Q9V3V6",-0.00488756289777825,21.4942734955796,-0.0625448500525587,0.952380229281009,0.972978825653332,-6.88248506340604 +"P81900",-0.00529331066728034,22.3489847651202,-0.0622557624009116,0.952599994457888,0.972978825653332,-6.88250621055198 +"P18053",0.00471239764167564,21.0161170707948,0.0591653349024586,0.95494963376767,0.972978825653332,-6.88272616610329 +"Q9VJ25",-0.0103483153311892,15.6934275881356,-0.0590798977957646,0.95501459859982,0.972978825653332,-6.88273208809837 +"Q9W2J4",-0.00738114713467297,15.4954232473033,-0.0589746298145654,0.955094643004692,0.972978825653332,-6.88273937289994 +"Q9VTT2",-0.00761129850342712,14.2672046216477,-0.0585074153403013,0.955449913908669,0.972978825653332,-6.88277154869642 +"Q6NP72",0.00882565976376171,18.7566370353496,0.0584688935363547,0.955479206486906,0.972978825653332,-6.88277419018333 +"P48611",-0.00876371035765544,20.0377206366535,-0.0570729812878201,0.956540732171225,0.973465491922881,-6.88286873727983 +"Q6IGW6",0.00532391423292289,15.7138306190877,0.0547456305241245,0.958310794646719,0.97467219845776,-6.8830212983522 +"Q9VNE2",0.00422688590467502,19.0863866270719,0.0536547226139499,0.959140575376178,0.974921681735201,-6.8830906252808 +"Q9NHE5",-0.00462033202024337,15.7485270420033,-0.0498886390645533,0.962005618290669,0.977238350370789,-6.8833192462349 +"Q9VSY4",0.00370846854695017,20.425758528148,0.0479981840304166,0.96344402281781,0.977552693153952,-6.88342774324525 +"Q9VZS1",0.00861227656136698,15.3250368456076,0.0479414580201682,0.963487186777636,0.977552693153952,-6.88343093416042 +"Q5U126",-0.00369032133987446,21.4763022440634,-0.044398796993937,0.966183137571969,0.979692081136805,-6.88362274321732 +"Q9VMF0",-0.00644934107857686,13.8518141901935,-0.0381348385486476,0.97095118941816,0.983928665825936,-6.88392589671832 +"P28668",0.00321780281663031,15.4197871146269,0.0364461913457816,0.972236808117002,0.984462911081909,-6.88399975108432 +"Q86BL4",0.0041014621981379,14.8923368304233,0.0358919371227813,0.972658799438241,0.984462911081909,-6.88402326321031 +"Q9V3W2",0.00237493680182865,21.6010184169214,0.0309367841331964,0.97643191739454,0.987682497400905,-6.88421746397181 +"Q9VHG4",0.00348164699511955,18.2952270626426,0.0290784785156709,0.977847113116376,0.988514536168555,-6.88428287147223 +"Q9VD58",-0.00223825574764192,22.7413131430689,-0.027089516817718,0.979361910457176,0.988866833114097,-6.88434839135618 +"Q8SY96",0.00309149695183208,18.833988214644,0.0270640588465847,0.979381299942738,0.988866833114097,-6.88434919991813 +"A1Z7G2",-0.00204970448181996,19.4740629022196,-0.0257143885942725,0.98040926793988,0.989305903765106,-6.88439097810717 +"Q9VWD5",-0.00266294981588011,14.3810391693408,-0.0244662029580268,0.981359978490482,0.989428914384597,-6.88442771358749 +"Q7K2D2",0.00203188276066513,20.3024933475678,0.0239196241748326,0.981776304277144,0.989428914384597,-6.88444322478492 +"Q9VGF7",0.00207203038277726,20.0243245084567,0.0232180208601173,0.982310720755931,0.989428914384597,-6.88446262186325 +"Q7JZF5",0.00158572465632645,16.9282912108633,0.0204000187705103,0.984457314760764,0.990992637912466,-6.88453471444856 +"Q7K0P0",-0.0017361254291739,15.3948651876236,-0.0181670516971271,0.986158367164099,0.991539286105994,-6.88458522598909 +"Q9W0K9",-0.00150524282659248,14.2301971494853,-0.0181265076775849,0.986189253986717,0.991539286105994,-6.88458608907011 +"P48159",-0.00151653756586612,19.9431225495061,-0.0162294722509563,0.987634462807019,0.992384298279324,-6.88462431655232 +"Q9VH19",0.00184129307388758,13.9670782481225,0.0154613983534254,0.988219615972396,0.992384298279324,-6.88463859361047 +"O97111",-0.00195810116510842,14.6694194597084,-0.0107015288433337,0.991846066058703,0.995426737777326,-6.88471163835651 +"Q9VLV5",-0.000679069720149528,17.4847090080739,-0.00838890947853652,0.993608089899786,0.996595486441878,-6.88473753446578 +"Q9V405",0.000632067469794606,20.1197915750395,0.00728867947474742,0.99444638867281,0.996836884799427,-6.88474765211724 +"Q7KMM4",0.00160870276345015,14.6137017916331,0.00589847275785795,0.995505640785545,0.997188285888393,-6.88475840559165 +"Q7K0X9",0.000499743536195751,16.729090302161,0.00525935024112765,0.995992616480853,0.997188285888393,-6.88476258854503 +"Q7JQW6",0.000169372611136254,15.907936478543,0.00200212810994139,0.998474463134754,0.999073428019658,-6.88477646227105 +"Q9VRG6",6.56791284896485e-05,16.2974620046501,0.000625644624078584,0.999523284940737,0.999523284940737,-6.88477858395458 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_significant.csv new file mode 100644 index 0000000..c6880ab --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_significant.csv @@ -0,0 +1,108 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q7K511",1.13145574265622,16.7389350435651,14.1853499061444,1.77269379697615e-05,0.0164091674164789,3.73689974552785 +"P10676",-1.21936335245132,19.8791716804251,-13.6205489088466,2.19591489761324e-05,0.0164091674164789,3.55391328636115 +"Q9VAJ9",1.02993577931089,17.7647694786655,12.3405829699411,3.6869071226856e-05,0.0164091674164789,3.09533357290157 +"Q9VG42",0.952030965500544,16.0678907130358,11.6393538954814,5.00572530828175e-05,0.0164091674164789,2.81499443780398 +"Q9Y119",-0.877080346675001,18.0586403625904,-11.5406632699376,5.23306444575497e-05,0.0164091674164789,2.77371367180669 +"Q9VC06",0.931468039905168,16.4772260640617,11.0943591822326,6.42615061027432e-05,0.0164091674164789,2.58104777076031 +"Q9VC18",0.893125705021049,18.2227407499384,10.9012677161862,7.04007910980556e-05,0.0164091674164789,2.49453899611184 +"Q9W299",0.849737446857917,14.8399259750296,10.6140142739001,8.08622992803719e-05,0.0164091674164789,2.36214973168511 +"Q9VA09",0.82209298305926,16.3788178837498,10.4027255686372,8.97363662358723e-05,0.0164091674164789,2.26184797711538 +"Q8MSI2",-0.828909795841703,24.0683463846717,-10.2194184730707,9.83763034561087e-05,0.0164091674164789,2.17274932205569 +"O17444",0.788730468020319,15.3025801828247,9.77131740914759,0.000123967235009726,0.0172869442902144,1.94643332339383 +"Q9VN13",0.872007094076533,17.0646185129127,9.62422709135812,0.000134024206720064,0.0172869442902144,1.86939827004644 +"Q9VNW6",1.18934205871869,21.698235349896,9.31830266322279,0.000158185475509069,0.0172869442902144,1.70461130815614 +"P19334",-1.07048355174927,15.4394409843122,-9.22818395924625,0.000166255982318927,0.0172869442902144,1.65485681446596 +"Q9V4E7",1.0747637179047,15.8321309188353,9.1905216053406,0.00016977157763818,0.0172869442902144,1.6338960603786 +"Q9V521",-0.903543805715584,17.9799826510396,-9.13956272398063,0.000174668406442744,0.0172869442902144,1.60537654876204 +"Q8IN43",-1.6600611023567,18.3672969896568,-9.124111034687,0.000176185883053744,0.0172869442902144,1.59669263541443 +"Q9VLC5",0.826305766797031,21.7947773707434,8.89163640276511,0.000200997024732748,0.0177137634200204,1.46396940883121 +"Q9V3B6",-0.964637367854531,13.0386548675104,-8.86041644230608,0.000204632712800189,0.0177137634200204,1.44584485922109 +"Q9VH81",0.693932457160038,14.4976205073759,8.76671016825559,0.000216018149052612,0.0177137634200204,1.39100804279299 +"O97125",0.680032398967487,18.4577173299345,8.71097602877552,0.000223142595758572,0.0177137634200204,1.35807887574121 +"Q70PY2",0.670791349096611,17.1883557202946,8.5748371136582,0.000241737123605735,0.0177137634200204,1.27664466124808 +"Q6NMY2",0.665732268376967,19.9757141914841,8.51827980432939,0.000249992973678797,0.0177137634200204,1.24239059720224 +"A1Z803",0.718109352158109,18.7807454906944,8.46428666452817,0.000258184902951893,0.0177137634200204,1.20945442273488 +"Q9W3J5",0.641812615876985,16.2031123979168,8.41778230589624,0.000265494056055462,0.0177137634200204,1.18090068301776 +"Q9VXZ8",0.671637072649116,17.9012316930004,8.11359450864802,0.00031976971286893,0.0190057487155537,0.989786727002937 +"P54385",0.675734697769741,21.726164611656,8.05195020786105,0.000332299140064776,0.0190057487155537,0.95011660035744 +"Q7JUS9",0.635324212332126,20.6160348482208,8.01712118427577,0.000339632503583925,0.0190057487155537,0.927559512838818 +"Q9W1H8",0.693147886170312,20.6522107423889,7.96978460163719,0.000349905741933201,0.0190057487155537,0.896734382851835 +"Q8SWS3",-0.598690283481979,16.4900712014356,-7.86994271691422,0.00037279261146575,0.0190057487155537,0.831078591149934 +"Q9V3N7",0.640349716570459,20.5178492298089,7.84416173105868,0.000378984466965891,0.0190057487155537,0.813982621437767 +"Q8SZK5",-0.835753976833365,15.5214032777657,-7.84144667002064,0.000379643533614923,0.0190057487155537,0.812178772290273 +"Q9VT23",0.684175012715087,18.2215927384901,7.82849178035263,0.000382806814107302,0.0190057487155537,0.803562702088464 +"Q7K2E1",0.632452840021926,17.3974212875768,7.78775105241798,0.000392957903271411,0.0190057487155537,0.776369227263162 +"Q9VZF6",0.60573299119015,15.0173893940554,7.70799400790856,0.000413757967281262,0.0190057487155537,0.722701368026124 +"Q9VV31",-1.33125889925796,15.9763980324338,-7.70576747912606,0.000414356879722107,0.0190057487155537,0.721194890936433 +"Q94523",0.615649965146758,20.6223821061284,7.64160931158519,0.000432058940588173,0.0190057487155537,0.677590726077255 +"Q7JWF1",0.615678105214002,20.431252619972,7.60805660495057,0.000441668595744724,0.0190057487155537,0.654636476438814 +"Q01637",0.592141656149098,15.9015162845187,7.59770708945292,0.000444683091586462,0.0190057487155537,0.647535099072912 +"Q9VA42",-0.900703808004518,20.1783958127241,-7.56032654975896,0.000455773350492895,0.0190057487155537,0.621803313768336 +"Q9VCK6",0.63730395461242,16.3239722854002,7.51547037098143,0.000469511680022845,0.0191011093238562,0.590753091361068 +"Q7JYW9",0.634959807085428,17.410341931805,7.43122643143545,0.000496645874571386,0.0197239361615493,0.531924532402309 +"Q9VED8",0.63866577649093,16.0758039737784,7.37869040241777,0.000514496384369665,0.0199576737006651,0.494894994457587 +"Q7JYX5",0.836290728650789,14.886772505262,7.30305288738062,0.000541531930680792,0.0200157622850457,0.441113837799511 +"Q9VX69",-0.695850558356593,18.1249648157637,-7.27902286726122,0.000550466521828624,0.0200157622850457,0.42391070121308 +"Q8SXQ1",0.635688601796939,18.5550153059178,7.27496178553916,0.000551993444311812,0.0200157622850457,0.420997762887201 +"Q9VXP3",0.593633551699112,14.413321212194,7.22116032086526,0.000572697073791982,0.0200830389501483,0.382253331032723 +"Q8IN44",-0.677169634636606,20.0134174664991,-7.20792336845342,0.000577929178421533,0.0200830389501483,0.372676924425963 +"P14318",-0.600195345467263,22.2384794319138,-7.12589640856576,0.000611626503926606,0.0203908175916043,0.312942823476942 +"Q9W3K9",0.603293642884847,19.2742992717938,7.11423219535133,0.000616602504474384,0.0203908175916043,0.304393627591631 +"Q7K148",0.558381038359091,16.8922248235317,7.0408320993605,0.000649023590685535,0.0203908175916043,0.250278009785687 +"Q9VFN7",-0.548326424038752,18.5812010493369,-7.03811677366396,0.000650260657410079,0.0203908175916043,0.248265515341608 +"Q9VZU7",0.551736284249163,17.5727603184916,7.02182417619016,0.000657741475228878,0.0203908175916043,0.236174145801018 +"Q9VFZ4",0.689282774349136,16.4834945255536,7.00274917139734,0.000666627981742899,0.0203908175916043,0.221983068840399 +"Q8SYQ8",-0.64011774872996,15.8507318855429,-6.99060415476097,0.000672359093248342,0.0203908175916043,0.212928037683406 +"Q9W309",-0.590634520357977,18.3604021601492,-6.92688002994363,0.000703390053007212,0.0209509751502862,0.165165479347726 +"P45437",0.534686976369837,16.0599198039162,6.83866279409797,0.000749152086245692,0.0215719329937363,0.098340828695509 +"Q9VUY9",0.559116670545787,19.8802932359752,6.83509571330496,0.000751074406395563,0.0215719329937363,0.0956214012225436 +"A1Z9A8",0.615256513663489,16.5961019354613,6.8131364953979,0.00076303599917892,0.0215719329937363,0.0788504721096217 +"Q9VNX4",0.580529421184906,21.3752708510604,6.7605099080547,0.000792619182911066,0.0220348132849276,0.0384473475913403 +"A8DYP0",-0.511683842746624,15.5849815552457,-6.658072016636,0.000854130046681683,0.0231856694046534,-0.0410589942396928 +"Q9VHR8",0.546182584969795,20.2891752004721,6.64587705755941,0.000861817447894789,0.0231856694046534,-0.050600607791643 +"Q9VQE0",0.572283940477307,17.3538221793673,6.6188216070597,0.00087916251784744,0.0232059811553198,-0.0718280980118733 +"Q9VLB7",0.772657502774258,21.0408066395308,6.60162720006353,0.000890397358477498,0.0232059811553198,-0.0853608873330813 +"Q9V3A8",0.5755950600941,15.6120175916866,6.55991637601892,0.000918354105027296,0.0232710733942579,-0.118326200789446 +"Q8IN49",0.518653526098538,16.8669452542949,6.53824674443833,0.000933281612538452,0.0232710733942579,-0.135529305377045 +"Q9VTZ4",0.526862454852957,18.035947473382,6.51819445158772,0.00094734753452803,0.0232710733942579,-0.151495546073908 +"A1ZBJ2",0.737722563965718,19.6535443835449,6.51628351867623,0.000948700833818667,0.0232710733942579,-0.153019458174033 +"P21187",0.574970396943439,18.8326551866302,6.49106760911063,0.000966771187501747,0.0233706426196074,-0.173167126843587 +"Q9VVU1",0.500243484863947,22.1853606161157,6.44428157476462,0.00100137303982023,0.0238049669546158,-0.210741065140413 +"Q7K569",0.678454800732506,20.5426915520154,6.41712045911353,0.0010221224078724,0.0238049669546158,-0.232669131502393 +"Q9VIE8",0.511929517642546,24.7459412517196,6.37181702299633,0.00105785664647563,0.0238049669546158,-0.269433316380666 +"A1Z8H6",-0.665019864346968,16.9910658347569,-6.35472241772466,0.00107171718543495,0.0238049669546158,-0.283367574401129 +"Q9W5B4",-0.708315006563268,18.6126370127036,-6.35069449980331,0.00107501379974425,0.0238049669546158,-0.286655785799088 +"Q9VCX3",0.706441923639968,12.8306672802852,6.34988281089711,0.00107567954848211,0.0238049669546158,-0.287318641069218 +"Q9VK58",-0.851475899515492,13.2292348063385,-6.32561060236025,0.00109581132788596,0.0238049669546158,-0.307175763757978 +"Q0E8E8",0.595264172870849,21.8028723116644,6.30508117799895,0.00111318190794966,0.0238049669546158,-0.324024742884047 +"Q9VZJ8",0.584172422160002,14.8624469983344,6.26563307316672,0.00114746835356006,0.0242275596675718,-0.356539914956687 +"Q7K4T8",0.808431475814993,13.9309985090885,6.18221687151946,0.00122410107935807,0.0250476026663203,-0.425904050955864 +"Q9W3Y3",-0.524951810651235,18.1643591014996,-6.18112625935133,0.00122514175044883,0.0250476026663203,-0.426816451714909 +"Q24253",0.698159449111909,18.8983012415449,6.17463514519614,0.00123135696561047,0.0250476026663203,-0.432249844240592 +"Q9V784",-0.534162058328127,14.5144171214589,-6.00572792963243,0.00140674955412556,0.0276443967827532,-0.575433706357555 +"Q9W308",-0.527321406066836,17.0885294140613,-5.92101969332558,0.00150556248829531,0.028537252619052,-0.64856715036154 +"Q9VAY9",0.625571550884079,14.37596514986,5.81308613536912,0.0016433848169802,0.0297254362840247,-0.743063109534265 +"Q7JXZ2",0.563997882260626,17.5644533455818,5.67333690768871,0.00184417805026821,0.0320488834069365,-0.867638630579379 +"Q9VPC2",-0.591778605192022,14.7699578476832,-5.66859536466819,0.00185147465825828,0.0320488834069365,-0.87191003066523 +"Q9VPE2",0.529405521559934,20.7929392055484,5.64889310712747,0.00188215462506323,0.0320488834069365,-0.889690438442995 +"P41093",0.552003017204857,18.9105957256889,5.61291062588047,0.00193972046276994,0.0322211762917443,-0.922295395108034 +"Q9VZI8",0.507401641135338,15.7205067624622,5.60968539313198,0.00194497924152282,0.0322211762917443,-0.925226271005509 +"Q95RI2",-0.671557735370671,16.765412187492,-5.59034291999279,0.00197686634974651,0.0322211762917443,-0.942832448557009 +"P23779",-0.512098120330275,20.9451609168136,-5.54393885014041,0.0020558679395059,0.0322557906481869,-0.985274707895478 +"Q9VV36",-0.607931283926916,23.3112498205486,-5.5421088666886,0.00205905764008626,0.0322557906481869,-0.986954369630319 +"Q9VIB5",-0.506712894947054,14.5645312736375,-5.5257833772213,0.00208776849214308,0.0322557906481869,-1.00195875808745 +"A1Z992",-0.678978163066009,14.383857795872,-5.45929185063987,0.00220959660953349,0.0335074425912198,-1.06344174765862 +"Q9I7K0",-0.593512668440264,16.1412656263912,-5.43679090175063,0.0022526738542453,0.0335487499007247,-1.08438390123055 +"Q9VNE9",0.544124189881515,18.8004852264568,5.29908138495573,0.00253851746871621,0.0355951405246949,-1.21407164473457 +"Q9VME1",-0.561395876946808,16.5301314987586,-5.29865680693871,0.00253946146429178,0.0355951405246949,-1.21447556159342 +"Q9VKD3",0.533405067330492,18.6273311343878,5.27359662547164,0.00259590544582224,0.0360830856969292,-1.23836096167634 +"Q8SZN1",-0.526393071844517,20.1459663250256,-5.16840535425457,0.0028492083771636,0.0389547505992532,-1.33958693569808 +"Q7K3E2",-0.514326894017824,20.590156813838,-5.13632875843929,0.00293205086113188,0.0391252866909437,-1.37076737513129 +"A0A0B7P9G0",0.723341223427694,14.6796050800852,5.09058947932073,0.00305503660997227,0.0398109458237012,-1.41548415437253 +"Q7JRN6",-0.582764594756007,14.5771313303958,-4.98896400329355,0.0033502191305958,0.0404939529698101,-1.51592180083355 +"A1Z6L9",0.593470451318048,15.3558038518085,4.87975012800608,0.00370475538250499,0.0429134165140162,-1.62554636750999 +"Q9VQX3",-0.709539784206559,15.5072039791446,-4.8630712254326,0.00376261963651103,0.0431084221096787,-1.64244346178084 +"A0A126GUP6",-0.574374318998416,16.9396799031165,-4.74955036140124,0.00418527744592866,0.0459279130250592,-1.75855532313474 +"B7Z107",-0.871031518153211,15.8872316221957,-4.69277737308118,0.00441698615325468,0.0477756978699929,-1.81735317185103 +"Q9VW90",0.860401241035035,15.7783320296595,4.65028271059118,0.00460008639505276,0.0488722554582676,-1.86168426654128 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_significant_fdr_only.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_significant_fdr_only.csv new file mode 100644 index 0000000..0d6c542 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_females_vs_Earth_females_significant_fdr_only.csv @@ -0,0 +1,160 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q7K511",1.13145574265622,16.7389350435651,14.1853499061444,1.77269379697615e-05,0.0164091674164789,3.73689974552785 +"P10676",-1.21936335245132,19.8791716804251,-13.6205489088466,2.19591489761324e-05,0.0164091674164789,3.55391328636115 +"Q9VAJ9",1.02993577931089,17.7647694786655,12.3405829699411,3.6869071226856e-05,0.0164091674164789,3.09533357290157 +"Q9VG42",0.952030965500544,16.0678907130358,11.6393538954814,5.00572530828175e-05,0.0164091674164789,2.81499443780398 +"Q9Y119",-0.877080346675001,18.0586403625904,-11.5406632699376,5.23306444575497e-05,0.0164091674164789,2.77371367180669 +"Q9VC06",0.931468039905168,16.4772260640617,11.0943591822326,6.42615061027432e-05,0.0164091674164789,2.58104777076031 +"Q9VC18",0.893125705021049,18.2227407499384,10.9012677161862,7.04007910980556e-05,0.0164091674164789,2.49453899611184 +"Q9W299",0.849737446857917,14.8399259750296,10.6140142739001,8.08622992803719e-05,0.0164091674164789,2.36214973168511 +"Q9VA09",0.82209298305926,16.3788178837498,10.4027255686372,8.97363662358723e-05,0.0164091674164789,2.26184797711538 +"Q8MSI2",-0.828909795841703,24.0683463846717,-10.2194184730707,9.83763034561087e-05,0.0164091674164789,2.17274932205569 +"O17444",0.788730468020319,15.3025801828247,9.77131740914759,0.000123967235009726,0.0172869442902144,1.94643332339383 +"Q9VN13",0.872007094076533,17.0646185129127,9.62422709135812,0.000134024206720064,0.0172869442902144,1.86939827004644 +"Q9VNW6",1.18934205871869,21.698235349896,9.31830266322279,0.000158185475509069,0.0172869442902144,1.70461130815614 +"P19334",-1.07048355174927,15.4394409843122,-9.22818395924625,0.000166255982318927,0.0172869442902144,1.65485681446596 +"Q9V4E7",1.0747637179047,15.8321309188353,9.1905216053406,0.00016977157763818,0.0172869442902144,1.6338960603786 +"Q9V521",-0.903543805715584,17.9799826510396,-9.13956272398063,0.000174668406442744,0.0172869442902144,1.60537654876204 +"Q8IN43",-1.6600611023567,18.3672969896568,-9.124111034687,0.000176185883053744,0.0172869442902144,1.59669263541443 +"Q9VLC5",0.826305766797031,21.7947773707434,8.89163640276511,0.000200997024732748,0.0177137634200204,1.46396940883121 +"Q9V3B6",-0.964637367854531,13.0386548675104,-8.86041644230608,0.000204632712800189,0.0177137634200204,1.44584485922109 +"Q9VH81",0.693932457160038,14.4976205073759,8.76671016825559,0.000216018149052612,0.0177137634200204,1.39100804279299 +"O97125",0.680032398967487,18.4577173299345,8.71097602877552,0.000223142595758572,0.0177137634200204,1.35807887574121 +"Q70PY2",0.670791349096611,17.1883557202946,8.5748371136582,0.000241737123605735,0.0177137634200204,1.27664466124808 +"Q6NMY2",0.665732268376967,19.9757141914841,8.51827980432939,0.000249992973678797,0.0177137634200204,1.24239059720224 +"A1Z803",0.718109352158109,18.7807454906944,8.46428666452817,0.000258184902951893,0.0177137634200204,1.20945442273488 +"Q9W3J5",0.641812615876985,16.2031123979168,8.41778230589624,0.000265494056055462,0.0177137634200204,1.18090068301776 +"Q9VXZ8",0.671637072649116,17.9012316930004,8.11359450864802,0.00031976971286893,0.0190057487155537,0.989786727002937 +"P54385",0.675734697769741,21.726164611656,8.05195020786105,0.000332299140064776,0.0190057487155537,0.95011660035744 +"Q7JUS9",0.635324212332126,20.6160348482208,8.01712118427577,0.000339632503583925,0.0190057487155537,0.927559512838818 +"Q9W1H8",0.693147886170312,20.6522107423889,7.96978460163719,0.000349905741933201,0.0190057487155537,0.896734382851835 +"Q8SWS3",-0.598690283481979,16.4900712014356,-7.86994271691422,0.00037279261146575,0.0190057487155537,0.831078591149934 +"Q9V3N7",0.640349716570459,20.5178492298089,7.84416173105868,0.000378984466965891,0.0190057487155537,0.813982621437767 +"Q8SZK5",-0.835753976833365,15.5214032777657,-7.84144667002064,0.000379643533614923,0.0190057487155537,0.812178772290273 +"Q9VT23",0.684175012715087,18.2215927384901,7.82849178035263,0.000382806814107302,0.0190057487155537,0.803562702088464 +"Q7K2E1",0.632452840021926,17.3974212875768,7.78775105241798,0.000392957903271411,0.0190057487155537,0.776369227263162 +"Q9VZF6",0.60573299119015,15.0173893940554,7.70799400790856,0.000413757967281262,0.0190057487155537,0.722701368026124 +"Q9VV31",-1.33125889925796,15.9763980324338,-7.70576747912606,0.000414356879722107,0.0190057487155537,0.721194890936433 +"Q94523",0.615649965146758,20.6223821061284,7.64160931158519,0.000432058940588173,0.0190057487155537,0.677590726077255 +"Q7JWF1",0.615678105214002,20.431252619972,7.60805660495057,0.000441668595744724,0.0190057487155537,0.654636476438814 +"Q01637",0.592141656149098,15.9015162845187,7.59770708945292,0.000444683091586462,0.0190057487155537,0.647535099072912 +"Q9VA42",-0.900703808004518,20.1783958127241,-7.56032654975896,0.000455773350492895,0.0190057487155537,0.621803313768336 +"Q9VCK6",0.63730395461242,16.3239722854002,7.51547037098143,0.000469511680022845,0.0191011093238562,0.590753091361068 +"Q7JYW9",0.634959807085428,17.410341931805,7.43122643143545,0.000496645874571386,0.0197239361615493,0.531924532402309 +"Q9VED8",0.63866577649093,16.0758039737784,7.37869040241777,0.000514496384369665,0.0199576737006651,0.494894994457587 +"Q7JYX5",0.836290728650789,14.886772505262,7.30305288738062,0.000541531930680792,0.0200157622850457,0.441113837799511 +"Q9VX69",-0.695850558356593,18.1249648157637,-7.27902286726122,0.000550466521828624,0.0200157622850457,0.42391070121308 +"Q8SXQ1",0.635688601796939,18.5550153059178,7.27496178553916,0.000551993444311812,0.0200157622850457,0.420997762887201 +"Q9VXP3",0.593633551699112,14.413321212194,7.22116032086526,0.000572697073791982,0.0200830389501483,0.382253331032723 +"Q8IN44",-0.677169634636606,20.0134174664991,-7.20792336845342,0.000577929178421533,0.0200830389501483,0.372676924425963 +"P14318",-0.600195345467263,22.2384794319138,-7.12589640856576,0.000611626503926606,0.0203908175916043,0.312942823476942 +"Q9W3K9",0.603293642884847,19.2742992717938,7.11423219535133,0.000616602504474384,0.0203908175916043,0.304393627591631 +"Q7K148",0.558381038359091,16.8922248235317,7.0408320993605,0.000649023590685535,0.0203908175916043,0.250278009785687 +"Q9VFN7",-0.548326424038752,18.5812010493369,-7.03811677366396,0.000650260657410079,0.0203908175916043,0.248265515341608 +"Q9VZU7",0.551736284249163,17.5727603184916,7.02182417619016,0.000657741475228878,0.0203908175916043,0.236174145801018 +"Q9VFZ4",0.689282774349136,16.4834945255536,7.00274917139734,0.000666627981742899,0.0203908175916043,0.221983068840399 +"Q8SYQ8",-0.64011774872996,15.8507318855429,-6.99060415476097,0.000672359093248342,0.0203908175916043,0.212928037683406 +"Q9W309",-0.590634520357977,18.3604021601492,-6.92688002994363,0.000703390053007212,0.0209509751502862,0.165165479347726 +"P45437",0.534686976369837,16.0599198039162,6.83866279409797,0.000749152086245692,0.0215719329937363,0.098340828695509 +"Q9VUY9",0.559116670545787,19.8802932359752,6.83509571330496,0.000751074406395563,0.0215719329937363,0.0956214012225436 +"A1Z9A8",0.615256513663489,16.5961019354613,6.8131364953979,0.00076303599917892,0.0215719329937363,0.0788504721096217 +"Q9VNX4",0.580529421184906,21.3752708510604,6.7605099080547,0.000792619182911066,0.0220348132849276,0.0384473475913403 +"A8DYP0",-0.511683842746624,15.5849815552457,-6.658072016636,0.000854130046681683,0.0231856694046534,-0.0410589942396928 +"Q9VHR8",0.546182584969795,20.2891752004721,6.64587705755941,0.000861817447894789,0.0231856694046534,-0.050600607791643 +"Q9VQE0",0.572283940477307,17.3538221793673,6.6188216070597,0.00087916251784744,0.0232059811553198,-0.0718280980118733 +"Q9VLB7",0.772657502774258,21.0408066395308,6.60162720006353,0.000890397358477498,0.0232059811553198,-0.0853608873330813 +"Q9V3A8",0.5755950600941,15.6120175916866,6.55991637601892,0.000918354105027296,0.0232710733942579,-0.118326200789446 +"Q8IN49",0.518653526098538,16.8669452542949,6.53824674443833,0.000933281612538452,0.0232710733942579,-0.135529305377045 +"Q9VTZ4",0.526862454852957,18.035947473382,6.51819445158772,0.00094734753452803,0.0232710733942579,-0.151495546073908 +"A1ZBJ2",0.737722563965718,19.6535443835449,6.51628351867623,0.000948700833818667,0.0232710733942579,-0.153019458174033 +"P21187",0.574970396943439,18.8326551866302,6.49106760911063,0.000966771187501747,0.0233706426196074,-0.173167126843587 +"Q9VVU1",0.500243484863947,22.1853606161157,6.44428157476462,0.00100137303982023,0.0238049669546158,-0.210741065140413 +"Q7K569",0.678454800732506,20.5426915520154,6.41712045911353,0.0010221224078724,0.0238049669546158,-0.232669131502393 +"Q9VIE8",0.511929517642546,24.7459412517196,6.37181702299633,0.00105785664647563,0.0238049669546158,-0.269433316380666 +"A1Z8H6",-0.665019864346968,16.9910658347569,-6.35472241772466,0.00107171718543495,0.0238049669546158,-0.283367574401129 +"Q9W5B4",-0.708315006563268,18.6126370127036,-6.35069449980331,0.00107501379974425,0.0238049669546158,-0.286655785799088 +"Q9VCX3",0.706441923639968,12.8306672802852,6.34988281089711,0.00107567954848211,0.0238049669546158,-0.287318641069218 +"Q9VK58",-0.851475899515492,13.2292348063385,-6.32561060236025,0.00109581132788596,0.0238049669546158,-0.307175763757978 +"Q9VFP1",0.494989720951153,16.0581105714492,6.3201104725284,0.00110043400864078,0.0238049669546158,-0.311685002100933 +"Q0E8E8",0.595264172870849,21.8028723116644,6.30508117799895,0.00111318190794966,0.0238049669546158,-0.324024742884047 +"Q9VZJ8",0.584172422160002,14.8624469983344,6.26563307316672,0.00114746835356006,0.0242275596675718,-0.356539914956687 +"Q7K4T8",0.808431475814993,13.9309985090885,6.18221687151946,0.00122410107935807,0.0250476026663203,-0.425904050955864 +"Q9W3Y3",-0.524951810651235,18.1643591014996,-6.18112625935133,0.00122514175044883,0.0250476026663203,-0.426816451714909 +"Q24253",0.698159449111909,18.8983012415449,6.17463514519614,0.00123135696561047,0.0250476026663203,-0.432249844240592 +"Q9W2N0",0.471968713604763,16.2844240213142,6.1009738729642,0.00130452050427542,0.0262161470015831,-0.494264732856934 +"Q9V784",-0.534162058328127,14.5144171214589,-6.00572792963243,0.00140674955412556,0.0276443967827532,-0.575433706357555 +"Q9VW54",0.482608682398343,15.846962100162,6.00395652537597,0.00140873724612351,0.0276443967827532,-0.576953902788307 +"O77410",0.484294916384341,14.581365690765,5.95172939739284,0.00146883499145066,0.0284885670434849,-0.621950027589155 +"Q9W199",0.471417648299626,15.7729884707654,5.92352911702285,0.00150252160424408,0.028537252619052,-0.646387703005193 +"Q9W308",-0.527321406066836,17.0885294140613,-5.92101969332558,0.00150556248829531,0.028537252619052,-0.64856715036154 +"Q9V396",0.483297360192442,20.824878572321,5.88841544071738,0.00154572899485916,0.0289693928474728,-0.676956311864328 +"Q8SXF0",0.495895704840883,16.2169265994377,5.84118378913822,0.00160614434877817,0.0295114163480121,-0.718320796076098 +"Q9VW68",0.479086587938816,22.8991109838335,5.8382128797734,0.00161003530435797,0.0295114163480121,-0.720932153467131 +"Q9VAY9",0.625571550884079,14.37596514986,5.81308613536912,0.0016433848169802,0.0297254362840247,-0.743063109534265 +"P17336",0.467230314617421,20.6780812218551,5.80273698351465,0.00165735346187908,0.0297254362840247,-0.752201897681316 +"Q7JXZ2",0.563997882260626,17.5644533455818,5.67333690768871,0.00184417805026821,0.0320488834069365,-0.867638630579379 +"Q9VPC2",-0.591778605192022,14.7699578476832,-5.66859536466819,0.00185147465825828,0.0320488834069365,-0.87191003066523 +"Q9VK39",-0.468250220627628,18.1601235297204,-5.66299955605677,0.00186012898153165,0.0320488834069365,-0.876954797927786 +"Q9VPE2",0.529405521559934,20.7929392055484,5.64889310712747,0.00188215462506323,0.0320488834069365,-0.889690438442995 +"Q9VFQ9",0.463745389693948,19.1047101949218,5.64837586560439,0.00188296796995191,0.0320488834069365,-0.890157915369128 +"P41093",0.552003017204857,18.9105957256889,5.61291062588047,0.00193972046276994,0.0322211762917443,-0.922295395108034 +"Q9VZI8",0.507401641135338,15.7205067624622,5.60968539313198,0.00194497924152282,0.0322211762917443,-0.925226271005509 +"Q95RI2",-0.671557735370671,16.765412187492,-5.59034291999279,0.00197686634974651,0.0322211762917443,-0.942832448557009 +"Q9VBU0",0.469905129090233,14.4012703843647,5.58289278649242,0.00198930964706356,0.0322211762917443,-0.949627111465976 +"P35381",0.429103142876897,25.7126428749349,5.58267369179389,0.00198967695326719,0.0322211762917443,-0.949827042092014 +"Q9VEJ3",0.456939998782033,19.819153210759,5.56860819648621,0.002013422711661,0.0322557906481869,-0.962675659452572 +"P23779",-0.512098120330275,20.9451609168136,-5.54393885014041,0.0020558679395059,0.0322557906481869,-0.985274707895478 +"Q9VV36",-0.607931283926916,23.3112498205486,-5.5421088666886,0.00205905764008626,0.0322557906481869,-0.986954369630319 +"Q9VIB5",-0.506712894947054,14.5645312736375,-5.5257833772213,0.00208776849214308,0.0322557906481869,-1.00195875808745 +"O16797",0.422689268921939,16.7483971973055,5.5253683346102,0.00208850443045814,0.0322557906481869,-1.00234068218997 +"A1Z992",-0.678978163066009,14.383857795872,-5.45929185063987,0.00220959660953349,0.0335074425912198,-1.06344174765862 +"Q9VU68",0.430111381195626,19.5769175210917,5.4592248627395,0.00220972343227468,0.0335074425912198,-1.06350399232286 +"Q9VHT3",-0.468181153036559,15.8063976883678,-5.44203205853243,0.00224255363317302,0.0335487499007247,-1.07949965814225 +"Q9I7K0",-0.593512668440264,16.1412656263912,-5.43679090175063,0.0022526738542453,0.0335487499007247,-1.08438390123055 +"Q9W2E7",0.422289023405948,18.3478257706347,5.3952637175979,0.00233475529797008,0.0344634675841955,-1.12321624254947 +"P29613",-0.415728784665049,23.9326518897049,-5.37750301576438,0.00237091379534827,0.0346902123740431,-1.13989680065365 +"Q7K8X7",0.425314816470912,19.5048502648545,5.35173318487249,0.00242453625713868,0.0350255613370411,-1.16417689500523 +"A1ZB70",-0.475247384643712,16.1047135645463,-5.34638949821568,0.00243583040473427,0.0350255613370411,-1.16922318253869 +"Q9VXQ0",0.480879456476618,14.8274672597292,5.31215369864398,0.00250965042962431,0.0355951405246949,-1.20164779520139 +"Q9VNE9",0.544124189881515,18.8004852264568,5.29908138495573,0.00253851746871621,0.0355951405246949,-1.21407164473457 +"Q9VME1",-0.561395876946808,16.5301314987586,-5.29865680693871,0.00253946146429178,0.0355951405246949,-1.21447556159342 +"Q9VKD3",0.533405067330492,18.6273311343878,5.27359662547164,0.00259590544582224,0.0360830856969292,-1.23836096167634 +"A1ZBU5",-0.399413893352406,16.7245654146841,-5.17687004661822,0.00282779996692303,0.0389547505992532,-1.33138324526463 +"Q8SZN1",-0.526393071844517,20.1459663250256,-5.16840535425457,0.0028492083771636,0.0389547505992532,-1.33958693569808 +"Q9U9Q4",0.459803307520794,17.9024221881221,5.15247681834992,0.00289000348066621,0.0391252866909437,-1.35505206253624 +"Q5U117",0.483303907493948,14.85711881432,5.14188222875208,0.00291751118077411,0.0391252866909437,-1.36535851678259 +"Q7K3E2",-0.514326894017824,20.590156813838,-5.13632875843929,0.00293205086113188,0.0391252866909437,-1.37076737513129 +"Q9VJQ3",0.407762946245199,20.4493270815405,5.10320097068025,0.00302054157187015,0.0397159456697183,-1.40312451998743 +"Q9VFS8",-0.463729008371246,17.2330801843884,-5.10195263443015,0.00302393591130349,0.0397159456697183,-1.4043469036512 +"A0A0B7P9G0",0.723341223427694,14.6796050800852,5.09058947932073,0.00305503660997227,0.0398109458237012,-1.41548415437253 +"P06002",0.414541968563558,17.3738046243291,5.06684181656326,0.00312123290161853,0.0400267327801837,-1.43881992924644 +"Q9W461",-0.426455004083737,16.1918006391756,-5.06614961782917,0.00312318707469084,0.0400267327801837,-1.43950134632 +"P32392",0.457930770669364,17.5514072677955,5.05854382426469,0.00314475250985307,0.0400267327801837,-1.44699324610871 +"M9PEG1",-0.431698679963372,20.3742447216221,-5.04881861173092,0.00317257806225318,0.0400267327801837,-1.45658505266655 +"Q9VY24",0.418062626841238,17.6441411111687,5.02843626781371,0.00323182200596171,0.0400267327801837,-1.47673239275973 +"Q7KUT2",0.387319467957791,18.1402352248158,5.02427423549759,0.00324407580420092,0.0400267327801837,-1.48085387304567 +"P54622",0.394612259257329,17.8519886774604,5.01927483063445,0.0032588658807916,0.0400267327801837,-1.48580790544853 +"Q8SXD5",-0.456952092167207,21.065663714462,-5.017690025054,0.00326357053843224,0.0400267327801837,-1.48737908895642 +"P38040",-0.390050305849023,18.9189078860901,-5.00833688980013,0.00329149630597104,0.0400745681632094,-1.49665929618754 +"Q7JRN6",-0.582764594756007,14.5771313303958,-4.98896400329355,0.0033502191305958,0.0404939529698101,-1.51592180083355 +"Q24238",0.402862680107567,16.3845570814582,4.97039068328075,0.00340765502030909,0.0408918602437091,-1.5344409183021 +"O01666",0.428526037333238,22.8113385426485,4.94669570786872,0.00348258417119002,0.0414925028396068,-1.55814031594996 +"P46415",0.374200676954569,18.2191282888742,4.88994825699879,0.00366987981806852,0.0429134165140162,-1.61523521250705 +"P45888",0.402968508786202,17.1067793189721,4.88993744029737,0.00366991660821861,0.0429134165140162,-1.61524614090462 +"P42281",-0.498165473325681,21.8888694969582,-4.8818205698952,0.00369764411924396,0.0429134165140162,-1.6234517284027 +"A1Z6L9",0.593470451318048,15.3558038518085,4.87975012800608,0.00370475538250499,0.0429134165140162,-1.62554636750999 +"Q9VQX3",-0.709539784206559,15.5072039791446,-4.8630712254326,0.00376261963651103,0.0431084221096787,-1.64244346178084 +"Q9VPN5",-0.420408757296791,21.2697783656735,-4.86003092005374,0.00377327915348506,0.0431084221096787,-1.64552800473537 +"Q9VF86",0.447886584545724,17.5688727416382,4.85083456803328,0.00380573440458785,0.0431834352847111,-1.65486655791211 +"Q9W2L6",0.456108447848983,20.9288680414199,4.82150912816398,0.00391139433631958,0.0440824713039261,-1.68472983411858 +"Q24319",0.376749304011252,16.5113506817486,4.80356647417355,0.00397770558965818,0.0445289457956365,-1.70306506681355 +"Q24276",-0.46845694377723,18.7964902903495,-4.75848312529029,0.00415010674273096,0.0459279130250592,-1.74934841405781 +"Q9VAG3",0.493673037484664,16.8714827680152,4.75519057726409,0.00416303070440814,0.0459279130250592,-1.75274060699353 +"A0A126GUP6",-0.574374318998416,16.9396799031165,-4.74955036140124,0.00418527744592866,0.0459279130250592,-1.75855532313474 +"Q9V419",0.380597462856896,16.6936311407999,4.72835550845321,0.00427010696601652,0.046552538688337,-1.78044893354558 +"B7Z107",-0.871031518153211,15.8872316221957,-4.69277737308118,0.00441698615325468,0.0477756978699929,-1.81735317185103 +"D0UGE6",-0.434804695483347,15.2946493860175,-4.68742335216437,0.00443958823132428,0.0477756978699929,-1.82292341033415 +"Q7JQR3",-0.381342985735852,19.1441092826402,-4.65558458317961,0.00457677237824788,0.0488722554582676,-1.8561382192383 +"Q9VW90",0.860401241035035,15.7783320296595,4.65028271059118,0.00460008639505276,0.0488722554582676,-1.86168426654128 +"Q9VER6",-0.457288919883101,14.971652394211,-4.63647706154783,0.00466143677069011,0.0492106109715893,-1.87614590369969 +"Q7K3N4",0.382644923782667,17.1844135339096,4.61592121297771,0.0047545328814859,0.0498777411718143,-1.89773258630271 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_results.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_results.csv new file mode 100644 index 0000000..563e17d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_results.csv @@ -0,0 +1,1669 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VK00",1.28817191987328,17.6820803807813,17.7420459291497,5.62683188626478e-06,0.00938555558628965,4.71469290317418 +"Q9VG42",-1.68800430269279,16.826430119345,-13.9768375391246,1.97974866913844e-05,0.0121795232978165,3.67979477940418 +"P06002",0.991656870335397,17.1188018554686,13.2118987850754,2.6591296130529e-05,0.0121795232978165,3.41711274277574 +"Q9VLB7",0.856523261947761,21.1175591104814,12.4784208225503,3.58415186085451e-05,0.0121795232978165,3.14444693430441 +"P10676",-0.90509348653783,19.5398164839105,-12.1491448742158,4.12043661399531e-05,0.0121795232978165,3.01484140312249 +"Q9V4E7",1.53109509540269,15.5977887576696,12.0068810490974,4.38112348842321e-05,0.0121795232978165,2.95738487886804 +"Q7JUS9",0.786684971688071,20.4595086435732,11.4020050810959,5.73148765519174e-05,0.0123597500121717,2.70272668905953 +"Q9VV46",-0.791071958321552,23.8616343380966,-11.2234177131893,6.22046200929384e-05,0.0123597500121717,2.62418169484476 +"Q9VWV6",-0.835191016121545,23.7566045301018,-10.6174738040938,8.28900075639399e-05,0.0123597500121717,2.34544945566108 +"Q9VNB9",0.922128612146167,18.9158944640635,10.4653804287735,8.929518258813e-05,0.0123597500121717,2.27237572390567 +"Q9VC18",0.78867608254518,18.1973752546718,10.0811108098754,0.000108258877207109,0.0123597500121717,2.08185141570591 +"Q9VC06",0.791155050810262,16.2899873286257,10.0365190148683,0.000110753391934921,0.0123597500121717,2.05917789363927 +"Q8MZI3",0.685560484824752,17.8851008730005,9.74012064083796,0.00012916813245098,0.0123597500121717,1.90536760770921 +"Q9VAJ9",0.710008162248634,17.5559356927303,9.69963139228826,0.000131954250750054,0.0123597500121717,1.88392926486754 +"Q9VZ19",-0.736380248928079,20.0373105193243,-9.60003325313545,0.000139114233219094,0.0123597500121717,1.83074636257552 +"Q9VXP3",0.711770265113074,14.6109945882948,9.55263671639056,0.000142681575406932,0.0123597500121717,1.80521207474849 +"Q9VH64",-0.725779300658676,17.3868191671229,-9.50063212028289,0.000146720310519179,0.0123597500121717,1.77702593345026 +"Q9W299",0.709831405021967,14.6734930709973,9.37735426573112,0.000156843869901868,0.0123597500121717,1.7094936454998 +"Q7JYX5",0.750452449602834,14.9666296821357,9.37447354097829,0.000157090087556761,0.0123597500121717,1.70790339850174 +"Q9VM10",0.659635945991985,17.1031606799154,9.27646165828558,0.000165744683596829,0.0123597500121717,1.65346259970643 +"Q9W3J5",0.636462618334976,15.9059694112309,9.25385794091512,0.000167819484691494,0.0123597500121717,1.64081426573724 +"Q8MSI2",-0.694582900615643,24.0407255596989,-9.2387593960517,0.000169222407886519,0.0123597500121717,1.63234601056042 +"Q7JYW9",0.667945136280483,17.0061174835337,9.22589951226189,0.000170428207601887,0.0123597500121717,1.62512094085609 +"Q9V3A8",0.800478709335191,15.4973872981703,8.9931348675803,0.000194102657316226,0.0134901346834777,1.49234542279483 +"P50887",0.897294887655281,17.8947543124593,8.80715528027625,0.000215830887063684,0.0141435422671421,1.38346395548236 +"Q9W2N0",0.612972710618941,16.2741803189102,8.71120388468702,0.000228153899119065,0.0141435422671421,1.32629028852923 +"Q9W1R0",1.11761135309549,14.189236848001,8.70527395394059,0.000228942230942947,0.0141435422671421,1.32273419403743 +"Q8SZN1",-0.691648228714968,20.1793359453937,-8.59283996482153,0.000244512594885089,0.0145659645810117,1.254803316457 +"Q8SXD5",-0.677869024150201,20.5215821249939,-8.47061600632313,0.000262870468585869,0.0147520177349209,1.17985209491024 +"Q7K204",-0.797558994477686,14.7100948910997,-8.34244171097434,0.000283886597864106,0.0147520177349209,1.09998867469411 +"Q9VG81",0.801673791052764,15.3975745290774,8.2900817635335,0.000293035303254263,0.0147520177349209,1.0669853106355 +"Q9VLR5",-0.702309020776507,16.8017088675639,-8.28614525776976,0.000293736998531074,0.0147520177349209,1.06449508996038 +"Q9Y119",-0.593565498708525,17.3804463200574,-8.28139917704274,0.0002945856273889,0.0147520177349209,1.06149106008415 +"Q9VFN7",-0.628206209223027,18.7053425150496,-8.24766790669831,0.000300700601311337,0.0147520177349209,1.04008798761561 +"Q9VLB1",0.563153860976982,16.7903095509227,8.1008832184415,0.000329107141358863,0.0153138099726605,0.945859175869985 +"P21187",0.666840662975211,18.8980407821483,8.0940041049874,0.000330513884302026,0.0153138099726605,0.941399087235865 +"Q7KVQ0",0.582216554151678,15.6844034587783,7.97890730391496,0.000355130135515035,0.015712103287282,0.866181763774007 +"Q9VLC5",0.576710081962194,21.7437052205172,7.96632427679663,0.000357949595273811,0.015712103287282,0.857890056925529 +"Q0E8E8",0.548792110250005,21.6715961741816,7.83946205090453,0.00038789270528654,0.0159029348666755,0.773526887261515 +"Q9VW54",0.638694675046869,15.7766422391412,7.78772272576427,0.000400941471712226,0.0159029348666755,0.738715551741447 +"A8JTM7",0.598452923620229,17.6973076287244,7.78363208163052,0.000401994916641133,0.0159029348666755,0.735953164523426 +"Q9VA09",0.613689270492394,16.3721297526486,7.72533898345003,0.000417365145442619,0.0159029348666755,0.69642604317356 +"O16797",0.582538032711156,16.356744974654,7.6797669206752,0.000429862288329388,0.0159029348666755,0.665312320871085 +"Q9VKE2",-0.669917627118199,24.0464383389957,-7.67543089190937,0.000431074039181591,0.0159029348666755,0.662342179573806 +"O76902",0.543106816706796,17.3502696410743,7.60936657721285,0.00045004078553915,0.0159029348666755,0.616877149021277 +"Q9VXQ0",0.584403114600692,14.9977721643156,7.56073288672559,0.000464629584383337,0.0159029348666755,0.583152192728123 +"Q9VZU7",0.550679469498398,17.4479299596453,7.51124798293093,0.000480045655631066,0.0159029348666755,0.548612294790048 +"Q9VN13",0.548746883265764,16.9715403164879,7.49792488856643,0.000484298051351626,0.0159029348666755,0.539273944848105 +"Q9VHC3",0.552017024659307,17.1118789956367,7.45050903166697,0.000499794090172081,0.0159029348666755,0.505904420435621 +"P05031",0.625276965051032,13.5288593163993,7.43487793264926,0.00050502924774325,0.0159029348666755,0.494857400443176 +"Q9V3N7",0.570977693761243,20.5592276800659,7.39760613199479,0.000517773535783596,0.0159029348666755,0.468422705984467 +"Q7K148",0.772776200699315,16.7649931306122,7.3936613538072,0.000519144276530069,0.0159029348666755,0.465617173170302 +"A1ZB70",-0.67212749419121,16.091460068157,-7.35998883063118,0.000531019424709097,0.0159029348666755,0.441608692932995 +"O97125",0.645051173700988,18.4776223355456,7.35953092152923,0.000531183091815796,0.0159029348666755,0.441281455615459 +"Q9VNW6",0.584194166342453,21.430084303418,7.34216147581023,0.000537435153313272,0.0159029348666755,0.428853785782733 +"Q9VHR8",0.503540941260837,20.3773025133813,7.32705495801162,0.00054294281184917,0.0159029348666755,0.418021601127894 +"Q27377",-0.603591111628855,20.0464972136514,-7.32568479837292,0.000543445615947543,0.0159029348666755,0.417038034022911 +"Q9VBP9",0.625160959667275,13.9503468670817,7.22337895238494,0.000582576413503926,0.0162663872090841,0.343082544733416 +"Q7K569",0.615621045410272,20.5746295135057,7.21710601508786,0.000585081154604116,0.0162663872090841,0.338514606405241 +"Q7K485",0.50410263831931,20.5320215645358,7.18687599685592,0.000597329894500301,0.0162663872090841,0.316446738989238 +"Q9VA42",-0.610248074710533,20.4861880222198,-7.17327175648662,0.000602939853331016,0.0162663872090841,0.306486154990134 +"Q23970",-0.564999289792329,21.5056256186164,-7.16921197678649,0.000604625903455163,0.0162663872090841,0.303510156809913 +"Q9VV31",-1.279956390282,15.448233189036,-7.14375577967788,0.000615324618581257,0.0162914518062466,0.284812249602247 +"Q7K3V6",0.617632519775341,16.3047547646246,7.11200376913352,0.000628981236077384,0.0163928234652668,0.261399257849104 +"Q9VRR3",-0.505255364654861,19.6602473016134,-7.089479419243,0.000638884139232606,0.0163947499113844,0.244729108776181 +"A0A0B7P9G0",0.795208961756462,14.6400307120269,7.04481648176591,0.000659064754855284,0.0164673134598516,0.211522783383466 +"Q24253",0.814129531089883,18.8587225188593,7.02495907091968,0.000668275962105477,0.0164673134598516,0.196694009626253 +"Q24276",-0.62621541126374,18.6325144544839,-7.01844719018604,0.000671329325701384,0.0164673134598516,0.19182242480943 +"Q8IN43",-0.567787934797874,17.5794999863199,-6.98011522867334,0.000689636998450518,0.0166162719459873,0.16305801624541 +"Q7JX94",0.751854591195281,12.1583346568155,6.96281849184993,0.000698088775186044,0.0166162719459873,0.150029055454651 +"Q9U9Q4",0.512994114737246,17.9132432703622,6.94426942229491,0.000707287355015048,0.0166162719459873,0.136022439261956 +"Q9VV36",-0.504465845229706,23.0515862809457,-6.89979267026869,0.000729926742347966,0.0169099695310612,0.102292119430107 +"Q9VB22",-0.495335611738199,17.2275156698059,-6.83565450078408,0.000764082703933573,0.0172786683075045,0.0532867535316255 +"Q76NQ0",0.608987082919095,14.3533226360587,6.81601799426269,0.000774910824054196,0.0172786683075045,0.038196615929885 +"Q9VJ22",0.735671946912143,13.1460893571436,6.80919659811049,0.000778714211880981,0.0172786683075045,0.0329449898811598 +"Q9W253",0.528397369175527,15.1141014113238,6.78051860559199,0.000794944540280625,0.0172786683075045,0.0108123795120463 +"Q9VZF6",0.49690004591598,14.9823049050109,6.77327381641399,0.000799107036440556,0.0172786683075045,0.00520724723134336 +"Q9VVL8",-0.488337937794379,15.8804139041976,-6.75167421089144,0.000811669011139916,0.0172786683075045,-0.0115372152519706 +"P19334",-0.970447534454291,15.1067120576629,-6.74033797934574,0.000818354194420175,0.0172786683075045,-0.0203453193361005 +"Q9VED8",0.508657562719726,16.4662762636363,6.69573502355761,0.000845289176814071,0.0176242793365734,-0.0551356712143667 +"Q9VNE9",0.474348046051599,18.5905364884152,6.66220271691194,0.00086622165273676,0.0178147205699548,-0.0814328543673239 +"P41093",0.69259045711264,18.7594629846971,6.6471984477181,0.000875783625141662,0.0178147205699548,-0.0932393973007448 +"Q9VFC2",0.468775337996796,19.8237430298603,6.6039541408359,0.00090403944866569,0.0179853546807608,-0.127405455539674 +"Q9VXC9",0.776083773961876,18.9731406429193,6.56328829278294,0.000931585561163734,0.0179853546807608,-0.159722463445243 +"Q9VPL0",0.498857306649258,15.2393812875856,6.53386425922922,0.000952128218729538,0.0179853546807608,-0.18322012553509 +"Q9VKC8",0.586363769231603,17.8001603114538,6.52874547869361,0.000955755673037929,0.0179853546807608,-0.187317779944965 +"Q9V521",-0.542381425274476,17.4726377405037,-6.50294414726894,0.000974287220331019,0.0179853546807608,-0.208016757164141 +"Q9Y156",0.524926616456304,16.2558217647329,6.50117932201771,0.000975570030755236,0.0179853546807608,-0.209435307176472 +"Q9VKD3",0.466442211401098,18.7219737415614,6.48832934515936,0.000984970007688795,0.0179853546807608,-0.219774557413475 +"A1Z803",0.541148658957926,18.794287530799,6.45711442408838,0.00100824765290341,0.0179853546807608,-0.244968023127528 +"Q0KHZ6",-0.459067824264036,23.0325685661641,-6.45250813105886,0.00101173671816294,0.0179853546807608,-0.248695079036706 +"Q9VU68",0.511019938602743,19.3007325032976,6.45040567872023,0.00101333391250252,0.0179853546807608,-0.250397020287132 +"P83967",-0.69094074537233,18.1254160121154,-6.44543858583836,0.00101711901485612,0.0179853546807608,-0.254419888170726 +"Q9VMR6",-0.515011814392626,18.7938883845324,-6.44244111817639,0.00101941116884522,0.0179853546807608,-0.256848903917542 +"Q9VR79",0.462691723503127,20.2453672360576,6.43601472802215,0.00102434574021119,0.0179853546807608,-0.262060007744104 +"Q9W1H8",0.478181116752914,20.4632778462265,6.3894164399087,0.00106097187384185,0.0183475290714607,-0.299986998397481 +"Q9W370",0.741498746191105,18.3792966430339,6.38196083069645,0.00106697261386792,0.0183475290714607,-0.306078278843333 +"A8DYP0",-0.648609529253608,14.9842133239202,-6.34555106244277,0.00109685195435014,0.0185572803930537,-0.33591717403189 +"Q9VQE0",0.525887808869383,17.1706269066232,6.34008501701512,0.00110142131829276,0.0185572803930537,-0.340409969678606 +"Q9VCT4",0.806802231372334,13.7784017314562,6.29309455350357,0.00114163192598166,0.0188716071738609,-0.379176610618631 +"Q95RS6",0.461066273468333,17.2523165554986,6.29186682101893,0.00114270523055153,0.0188716071738609,-0.380192922744796 +"Q8IN49",0.48963115852905,16.8291429496466,6.27802488578712,0.00115488779812708,0.0188767295126078,-0.39166340929715 +"Q9V3I0",0.777378990241379,16.4989890904841,6.26593827755846,0.00116564936438765,0.0188767295126078,-0.401697637351444 +"X2JAU8",-0.42965699735737,21.8611046606766,-6.23424122873128,0.00119443099531008,0.0190476733803613,-0.428093833449739 +"O77410",0.453904514664417,14.1041645620288,6.22924352580535,0.00119904418761267,0.0190476733803613,-0.432266547624335 +"Q9VZW7",-0.458431485685081,13.5478152951851,-6.21618695158288,0.0012111944841926,0.0190591735814458,-0.443181752439442 +"Q7K5M6",-0.459380383398461,18.1579444008486,-6.20360640715822,0.00122303764845391,0.0190656710058048,-0.453718089201918 +"Q7K1Z5",-0.538763907634507,15.9668359821218,-6.16663596283857,0.00125862948328445,0.0193123769451428,-0.484790058115471 +"Q9VF86",0.493026429151691,17.6965012136778,6.16317792139177,0.00126201983634326,0.0193123769451428,-0.487704716494939 +"Q9VFQ9",0.433669094325381,19.0732417465249,6.14107515085536,0.00128394287552553,0.0194692428761508,-0.506368144724182 +"Q9VTZ4",0.443816716529756,18.256831769629,6.12903948655971,0.00129606699508389,0.0194760337639633,-0.5165556148767 +"Q8T3L6",-0.45756670759696,17.373703497617,-6.08493551201199,0.00134164860337659,0.0199707007895907,-0.554036160739716 +"Q9W3E2",-0.769619371527856,17.5462040154144,-6.07428761631807,0.00135293116859937,0.0199707007895907,-0.563120245475546 +"Q8SXF0",0.54672256035218,16.4513236701199,6.06170886260905,0.0013664022336618,0.0199926221556832,-0.57386935537428 +"P54385",0.421703275320439,21.2417728801204,6.03789424024245,0.0013923360567219,0.0201949264574968,-0.594272805537158 +"Q9VZJ2",-0.474320162456863,17.3276144596549,-6.02570517808764,0.00140583114315142,0.020214882299798,-0.604742730013207 +"Q9VHT3",-0.45761558101059,15.7976743886859,-6.00212608690088,0.00143237097084969,0.0203594997836476,-0.625047940376307 +"Q9VSA9",-0.542691104779969,22.2593429504025,-5.99517976434248,0.00144030034440672,0.0203594997836476,-0.631042819673472 +"O17444",0.780451224023953,15.4727866656756,5.97291217747568,0.00146606560325301,0.0204567638641104,-0.65030050269634 +"Q9VPX0",0.518022416197411,13.9874704888198,5.96413289377169,0.0014763709477235,0.0204567638641104,-0.657909935003141 +"Q9VJQ3",0.492657716437837,20.6056661046107,5.94174999744715,0.00150302798924517,0.0204567638641104,-0.677353515869497 +"Q0E9B6",0.446473502509733,19.0054492166142,5.9308906199575,0.00151616242481078,0.0204567638641104,-0.68680927553451 +"P91927",-0.615830271954326,19.068993142096,-5.92250076722385,0.00152640139293387,0.0204567638641104,-0.694124766902006 +"Q9W3R8",-0.448176066813499,17.2131941259583,-5.91845888432926,0.00153136278307266,0.0204567638641104,-0.697652201572707 +"Q9W3Y3",-0.440202278396008,18.1002728566207,-5.91119586590576,0.00154032529184768,0.0204567638641104,-0.703995915679089 +"P40796",-0.499586992635919,18.1216779886578,-5.90718957614904,0.00154529511203712,0.0204567638641104,-0.707497938288856 +"O77477",0.434280070241615,16.8423804941817,5.88313604753462,0.00157552854584474,0.0206927686178664,-0.728566155367776 +"Q9VBC7",0.607012534583188,16.2849163908827,5.87276105549603,0.00158878097871432,0.020703802128871,-0.737675920973817 +"Q9VNZ3",1.36584089097476,15.6575258697119,5.84754860744852,0.00162152950180473,0.0209667535582193,-0.759870250847696 +"Q7K2Q8",-0.414184218068115,16.113968383383,-5.82719820337577,0.00164853569573424,0.0210995854323936,-0.777843171343879 +"P18432",-0.420925477742838,23.509345467784,-5.82082410210565,0.00165710173359926,0.0210995854323936,-0.783483404030271 +"Q70PY2",-0.435306545060442,17.0408755435684,-5.79270524043805,0.00169551274752379,0.0212675970220858,-0.80842655501121 +"P23779",-0.429707488816153,21.0228579521025,-5.79249948323927,0.00169579760427903,0.0212675970220858,-0.808609445703544 +"Q9W3W4",0.436374900108468,15.9519780435895,5.7721649203141,0.00172422563088093,0.0214627488978313,-0.826710856394472 +"Q9W1X4",0.40751128430783,15.1840748025946,5.76281206451035,0.00173748666549739,0.02146761302259,-0.8350543557083 +"Q9VIE8",0.402857330885706,24.8116169777069,5.7435953560983,0.0017651067351657,0.0215198889558346,-0.852232458569476 +"P54192",-0.482320199999915,24.343072866011,-5.74013407435049,0.00177013563233623,0.0215198889558346,-0.855331599867823 +"Q9VIF2",0.432569792755331,17.4821344169203,5.72549979651324,0.00179158247237726,0.0215198889558346,-0.868451823390638 +"Q95RQ8",1.38233682498443,14.5045553396304,5.7243203467541,0.00179332407965288,0.0215198889558346,-0.869510451776628 +"Q9V9A7",0.793062023866341,15.9475687893704,5.70296455959585,0.00182520116368459,0.0215613218475466,-0.888709707848768 +"A1ZA22",0.983243252043616,13.5513770042578,5.69549253541095,0.00183650940186617,0.0215613218475466,-0.895441155811755 +"Q9VXZ0",-0.404427489151011,19.6551888945366,-5.69224380505854,0.0018414514166711,0.0215613218475466,-0.898370155032912 +"Q9V8Y2",0.409040679656758,19.9077905603241,5.68763910087659,0.00184848262841677,0.0215613218475466,-0.902524026449518 +"Q9W199",0.624485501626932,15.7638548115903,5.63521956223328,0.00193076189451215,0.0223646586114324,-0.950006214991167 +"Q5U117",0.442023660647472,14.4392160812436,5.61634134728689,0.00196142900365679,0.0224451599243345,-0.967194445119138 +"Q9VXR9",0.536257163016973,15.0837288585107,5.60803779155557,0.0019750965853404,0.0224451599243345,-0.974769510449899 +"Q9VPX6",0.441616599871246,21.5001685593248,5.60623373293136,0.00197808064081365,0.0224451599243345,-0.976416496251558 +"Q9VRJ6",-0.394687122412995,15.7110094773332,-5.594870939447,0.00199699625411354,0.0225066875125769,-0.986799842463518 +"Q9V3B6",-0.700209695927583,13.3550792107938,-5.58491236914613,0.00201374695190207,0.0225431537971319,-0.995914032064683 +"Q9VW90",-0.714347181186159,14.186314546599,-5.55832079761162,0.00205927950411862,0.0228870060369544,-1.0203152974467 +"Q9VK12",-0.38241560852779,22.2434509477663,-5.54806057384237,0.00207716641330359,0.0228870060369544,-1.0297555130248 +"Q6IGM9",-0.512846089439737,14.6391424139153,-5.54324338304633,0.00208562644941071,0.0228870060369544,-1.03419254350813 +"A1Z9A8",0.430091656215954,16.6663158619265,5.50498983964265,0.00215424487652526,0.0234854931636872,-1.06953722026986 +"P45437",0.582330244205824,15.9674002931889,5.47713827997855,0.00220585280930299,0.0235633431678328,-1.09539431220651 +"Q9W2L6",0.411141822390572,20.9713930199724,5.47437137247719,0.00221105759058313,0.0235633431678328,-1.09796878033928 +"A0A0B4K7J2",0.530069220671383,15.7287105897326,5.45081424743764,0.00225595154418539,0.0235633431678328,-1.11992935184432 +"Q0E8X8",0.619401655344003,20.1412183332089,5.44987352271179,0.00225776614300306,0.0235633431678328,-1.12080787790641 +"Q9VY87",0.65708667719678,17.7037458147184,5.44544308173412,0.00226633495334165,0.0235633431678328,-1.12494699886125 +"P54185",-0.559267674180784,17.4031535542525,-5.44523489122973,0.00226673853554988,0.0235633431678328,-1.12514156536954 +"Q7JVK6",0.42244685614812,17.3777589775837,5.44291966493901,0.00227123227238396,0.0235633431678328,-1.12730567894751 +"Q9U1L2",-0.773765582235047,18.1581331934163,-5.44129109353312,0.00227439943046828,0.0235633431678328,-1.12882839020663 +"Q7K012",0.448234768326111,15.6908193673085,5.42997881785976,0.00229654067935825,0.0236458632911701,-1.13941527529635 +"Q9W4I3",0.389799277174296,16.6199080762776,5.38196381667468,0.00239334130101689,0.0242941111917279,-1.18454519195028 +"Q94915",-0.663903698488879,17.0419757308631,-5.37732628805277,0.0024029385449236,0.0242941111917279,-1.18892073836219 +"Q9VGP7",0.485127503457393,16.0035484104972,5.37720292350319,0.00240319445241913,0.0242941111917279,-1.18903717405041 +"Q9VI75",-0.653377119238797,17.4144396295137,-5.36127850089555,0.0024364946084359,0.0244823675112716,-1.2040847097182 +"Q9VSC3",0.570284912875028,17.5588951996855,5.32294016726175,0.00251888004824075,0.0251315247749078,-1.24045496516066 +"Q9VW34",0.406160216128782,18.4569787737831,5.31166658887937,0.00254371622556077,0.0251315247749078,-1.2511884132071 +"Q94523",0.560654597187263,20.1667043059459,5.31050128066611,0.00254629957251764,0.0251315247749078,-1.25229889304559 +"Q9VXZ8",0.528948996517943,17.9026519090064,5.26464601709079,0.00265040716467343,0.0259831680100667,-1.29614628616236 +"Q9VWP2",-0.478303126097636,19.6302571595142,-5.25892337287483,0.00266374204419749,0.0259831680100667,-1.30163889474838 +"Q9I7K6",-0.377176943562787,16.2529429988261,-5.25019457461262,0.00268423159367069,0.0260308040595507,-1.3100256248763 +"Q7K860",-0.402846244698814,21.1062083624514,-5.23987256390461,0.00270869661924409,0.0260880225260768,-1.3199568790519 +"Q9Y143",-0.371179158077439,20.9695051462499,-5.23053217248875,0.00273105751155566,0.0260880225260768,-1.32895653292726 +"P36975",-0.485865403075671,22.2564429555298,-5.22804293369214,0.00273705272305961,0.0260880225260768,-1.33135702831115 +"Q9V3E3",0.3724195103598,14.9719015619136,5.21661082782513,0.00276478256947321,0.0262025984425075,-1.34239273911973 +"Q7KS11",-0.375363209794193,15.5714982634825,-5.19506924942608,0.00281792159230231,0.0265553289037303,-1.36323732793888 +"Q24478",-0.690312665387623,17.1673149641727,-5.17648042461711,0.00286472745091527,0.0268447493714981,-1.38127728842029 +"Q9VN86",0.356141126305193,15.2390406884196,5.16867725949928,0.0028846428204761,0.0268803587963918,-1.38886460622875 +"Q9VUY9",0.406658187491139,19.5861926428629,5.13634254810053,0.00296889136383295,0.0275117266381853,-1.42039688159506 +"Q9V3I2",0.410720534290618,17.4972082900006,5.12635792565898,0.00299547847016032,0.0275508450553861,-1.43016374583349 +"Q9VDC6",0.369506218923831,16.8764952883086,5.11642999793493,0.00302218768807143,0.0275508450553861,-1.43988923659267 +"Q9W461",-0.490895747477238,16.2355890938861,-5.1159870857387,0.00302338565501851,0.0275508450553861,-1.4403234451141 +"Q9VH81",0.454301276477802,14.4647539681161,5.11016577085826,0.00303918194855578,0.0275508450553861,-1.44603296807463 +"Q8SXQ1",0.357202709301067,18.6609688775964,5.09541287311563,0.00307964306667596,0.027688936832839,-1.46052424039129 +"Q86BS3",-0.363093657456957,18.9819521000826,-5.09253245741474,0.00308761525833816,0.027688936832839,-1.46335720863327 +"Q9VFZ4",0.64676718726094,16.5058750255674,5.07416881315022,0.00313900464639876,0.0279789952657211,-1.48144631581926 +"Q9VWL4",-0.348298273466586,15.9649369218611,-5.06186382963511,0.0031739919623418,0.0279789952657211,-1.49359442790388 +"Q9W0S7",0.383838644456864,17.6897011832026,5.05694578562149,0.00318810143742253,0.0279789952657211,-1.49845586441532 +"Q9W0Z5",-0.471388227605209,17.0764680684728,-5.05211253605529,0.00320203823314023,0.0279789952657211,-1.50323687510242 +"Q9VB46",0.437180600300847,15.24320325018,5.04490197749163,0.00322296099043205,0.0279789952657211,-1.510375756698 +"O76742",0.500507267706858,18.060272242243,5.04487112382169,0.00322305085645646,0.0279789952657211,-1.51040631977091 +"P54622",0.408191679515411,18.0382461495462,5.03996493408754,0.00323737774957085,0.0279789952657211,-1.51526804736786 +"Q9VHN6",0.39015901008454,15.0333996453499,5.00606806714246,0.00333839492496236,0.0287033130661712,-1.54895277336416 +"Q8IQG9",-0.351032614572645,20.3950332506714,-4.99840281455451,0.00336173978476806,0.0287558049281698,-1.5565931268698 +"Q9VPN5",-0.442072802783198,21.249684873457,-4.99153122841647,0.00338282771553813,0.0287803604746974,-1.56344964329289 +"Q7KV34",0.366914836373219,20.8604067458708,4.98625629507568,0.0033991193126591,0.0287803604746974,-1.56871766394255 +"Q9VU04",-0.400018273170335,16.7360491429863,-4.97855566405718,0.00342306544243816,0.0288367331211457,-1.57641547045928 +"M9NFC0",-0.347495217724362,19.6454712495762,-4.96910452774419,0.00345272142811151,0.0288663048302013,-1.58587494218519 +"Q8IM93",-0.343895286909611,19.153099607583,-4.95930071731278,0.00348379761536961,0.0288663048302013,-1.59570116000522 +"Q9VH66",0.381628339234654,16.8202944352942,4.95733450768776,0.00349006888550319,0.0288663048302013,-1.59767355224185 +"Q9VJZ5",-0.36976123150899,16.9749264744627,-4.9555413653756,0.00349579950581574,0.0288663048302013,-1.59947282516905 +"Q9NJH0",0.344792780214814,21.1253742731661,4.94942901703702,0.00351541536953243,0.0288852849082763,-1.60560960096585 +"Q9VND7",-0.346285501546578,13.9426834144648,-4.92642547226015,0.00359038506043704,0.0292584822706414,-1.62875407335349 +"Q9VA34",-0.453927042806644,14.4613863326473,-4.92354103179212,0.00359991502093531,0.0292584822706414,-1.6316616554985 +"Q9W1R3",-0.375237981180351,16.9562683290899,-4.91945718297088,0.00361345764253725,0.0292584822706414,-1.6357803564693 +"A1ZB68",-0.392571369743401,19.2955711740098,-4.88261054774835,0.00373833802420783,0.0301234194414428,-1.67305230766128 +"Q9VAM6",-0.348298793826313,22.0853770257018,-4.87356194450348,0.00376976156696961,0.0301685422985334,-1.68223595368488 +"Q9VLY7",0.446971232183744,15.4747184911005,4.8691048030978,0.00378535191414919,0.0301685422985334,-1.68676405911677 +"Q9V3W0",-0.490153246136913,20.8013246891132,-4.86402274401762,0.00380321883174736,0.0301685422985334,-1.69193061442455 +"Q9VLP0",-0.519480215720037,16.1646320223852,-4.86032375000473,0.00381628442745237,0.0301685422985334,-1.6956935110878 +"Q9W260",0.338922029380864,17.5079668548209,4.82437159600062,0.00394600475748862,0.0310468676202407,-1.73237238078964 +"Q9VXK6",-0.522185152339269,17.6640771888621,-4.81057057795553,0.0039971441818216,0.0313015797900396,-1.74650335584126 +"Q9VHB8",0.471874406253667,15.5136910544805,4.77325539065479,0.00413927957797053,0.0322631697946488,-1.78485285707935 +"P28668",0.393968408979402,15.4719412551214,4.73886178044544,0.0042754590445268,0.0331696078431196,-1.82038429722677 +"A1Z7B8",0.520455457108223,17.07878055323,4.73061905832296,0.00430885678327162,0.0332739496041531,-1.82892608666087 +"P29613",-0.360774334212106,23.8517562456229,-4.69407428450363,0.00446058891146164,0.0342869230613734,-1.86692003513236 +"Q9W1L1",0.405086360810426,14.8727235690497,4.66036722507186,0.00460600708075901,0.0351283167630489,-1.90214258416394 +"Q9VVZ4",-0.593594878598479,15.7495328762336,-4.65896556321634,0.00461217108579599,0.0351283167630489,-1.90361099255205 +"Q9V784",-0.62526472444304,13.8911693665929,-4.65326851396373,0.00463732241468994,0.0351593353986492,-1.90958240044601 +"Q7JZW0",0.359795800921766,19.7654602305439,4.62624753944086,0.00475878165348944,0.0358303745374505,-1.93797179672185 +"P40301",0.374284042153572,17.8445050305678,4.62377453515705,0.0047700791874745,0.0358303745374505,-1.94057558812397 +"A1ZB73",-0.905837539313657,13.1726570468871,-4.61635774075658,0.00480414683853506,0.0358303745374505,-1.94839021232499 +"P42281",-0.335750153331876,21.8387591728894,-4.61471008170388,0.00481175293548496,0.0358303745374505,-1.95012738805424 +"Q9VCR2",0.421871188510847,15.5047613649597,4.60630485241929,0.00485076991866617,0.0359603743303786,-1.95899571151497 +"Q95R98",0.474633822037783,16.396737422581,4.59161465355101,0.0049198373499342,0.036311011945532,-1.97452116752359 +"Q8SYJ2",-0.349412226007178,22.5213978040005,-4.56408827896777,0.00505231798088512,0.0371245215511735,-2.00370146373151 +"Q7KLW9",0.316878902313327,17.3158528468772,4.55378411459432,0.00510296033564895,0.0371399130647534,-2.01465460353451 +"Q9I7K0",-0.373641690584311,16.3363477807811,-4.55074400247292,0.00511801282873901,0.0371399130647534,-2.01788929841721 +"Q9GYU8",0.853066415216725,12.646840671817,4.54499325940335,0.00514662601716509,0.0371399130647534,-2.02401199760294 +"Q9VGZ3",-0.383592970300906,16.5098291857115,-4.54285140681191,0.00515732982063277,0.0371399130647534,-2.02629368209792 +"Q9I7Q5",-0.320443677647216,20.6723553981385,-4.53898516791237,0.00517671589128048,0.0371399130647534,-2.03041411403578 +"Q9VI04",0.407749857000578,16.2120633728558,4.53538518590747,0.00519484209815557,0.0371399130647534,-2.03425284815423 +"Q7K5M0",-0.456458371677021,16.510582959367,-4.5323313379634,0.00521027557383231,0.0371399130647534,-2.0375107897897 +"Q9VFR0",-0.344257891973172,15.0366531203132,-4.51590986908999,0.00529417339745514,0.0375773669232135,-2.05505432574876 +"O62619",0.335743570475636,22.1727304429308,4.50748722057102,0.0053378055690505,0.037726524106679,-2.06406859361739 +"O01666",0.315376048286915,22.7075744711007,4.49417643801899,0.00540760349108421,0.0380585764688965,-2.07833663855995 +"Q8I099",0.352800292004693,16.7592178343351,4.48878469176135,0.00543617364176888,0.0380988976238256,-2.08412391685651 +"Q9VJD0",0.366054369629328,16.1250154537557,4.4783225183413,0.00549210644200706,0.0383298474697396,-2.09536638731146 +"Q9VTY2",-0.382740569601477,20.7441611011349,-4.46768471734245,0.00554965565226898,0.0383886135394428,-2.10681492581149 +"Q9VF15",-0.316648444574444,20.7633203286198,-4.46569707682475,0.00556048502121256,0.0383886135394428,-2.1089559903431 +"P32392",0.320762163254425,17.5963223175051,4.46377011595959,0.00557100691372656,0.0383886135394428,-2.11103227487981 +"Q9W2E7",0.326219721634068,18.592559767179,4.45702753135872,0.0056080038510002,0.0383886135394428,-2.11830187735814 +"P13060",0.314948597259853,20.0334627293645,4.4556493644735,0.00561560054174103,0.0383886135394428,-2.11978863153217 +"Q9VJZ4",-0.308342412441675,21.241003550371,-4.44859607006959,0.0056546645924158,0.0384978797557124,-2.12740226753529 +"Q9VJZ6",-0.388963580583948,19.5815242690796,-4.44085060061373,0.00569792136582139,0.038634686334106,-2.13577194723488 +"Q9VGA0",-0.498869410831233,19.3391491340287,-4.42174095386985,0.00580627572932286,0.03920999156482,-2.156461441604 +"Q9VMW7",-0.331056273933093,19.3602766737396,-4.41578903254225,0.00584050461966992,0.0392821036516509,-2.16291700211419 +"Q01637",0.378009223091642,15.9532028019481,4.37001253155837,0.00611162224352566,0.0409405056313285,-2.2127511572808 +"P46415",0.408962450114725,17.974650479295,4.35331274139679,0.0062140943838865,0.0414604377292908,-2.23101250628369 +"Q9VND8",1.05207843737585,18.888444757701,4.34240954478486,0.00628205854231313,0.0417469069664474,-2.24295872493521 +"Q9VA37",-0.316647676972011,21.8094310744462,-4.33212347630436,0.00634695643577579,0.0418970080664173,-2.25424580602797 +"Q9VD09",-0.641011597035835,14.5441256952304,-4.33064797411943,0.00635632857090538,0.0418970080664173,-2.25586625654229 +"P12080",0.317381542717794,19.0508932878049,4.32693231010401,0.00638000002929855,0.0418970080664173,-2.25994844293159 +"Q9VMI3",0.335168707640516,20.181532493583,4.31603304063815,0.00645001996049606,0.0421907188004213,-2.27193530288817 +"P32748",0.398666493499539,17.3620686672349,4.3041397770426,0.00652743020381586,0.042394203951669,-2.28503655874574 +"P48596",0.30193857228085,21.8996024119208,4.30344871855877,0.00653196068080271,0.042394203951669,-2.28579848862956 +"Q9VLT7",0.30513195917197,18.0589103896504,4.29321126640108,0.00659949876504408,0.0426665268995873,-2.29709460609982 +"Q7K4T8",0.498764920082737,13.4516482270528,4.28034495231224,0.00668551485117709,0.0427794897716811,-2.31131473842467 +"O02195",0.354948613773104,18.7349133898261,4.27880903366443,0.00669586838783498,0.0427794897716811,-2.31301400410328 +"Q9W5W7",0.375106081065656,14.938507686121,4.27737207582475,0.00670557142974678,0.0427794897716811,-2.31460411947182 +"Q9VV39",0.332081178848266,17.5555961227036,4.2753046145344,0.00671956014399307,0.0427794897716811,-2.31689250864776 +"Q7JVZ8",-0.322886674659685,15.8895234831154,-4.2574954584801,0.00684144985902721,0.0432324067915209,-2.33663252550643 +"Q9U4G1",0.363167789503326,19.4877887334669,4.25311967219817,0.00687178402161223,0.0432324067915209,-2.34149035538713 +"Q7K1S1",0.485536965522556,16.5382745583633,4.24812814504696,0.00690657443318245,0.0432324067915209,-2.34703543054518 +"Q9VLS9",-0.40376772685379,18.8799738218444,-4.24584050755932,0.00692258622615372,0.0432324067915209,-2.34957806989476 +"Q9VAN1",-0.293686090819737,14.9268652611206,-4.24331151725415,0.00694033667978472,0.0432324067915209,-2.35238992291847 +"Q9VDV2",0.499311175555174,14.38115900239,4.24247576973531,0.00694621404084389,0.0432324067915209,-2.35331936823058 +"Q9W309",-0.53036007213348,18.4294294470161,-4.22574274871977,0.00706509298080235,0.0438088293382094,-2.37195148659401 +"Q9V396",0.339578128502179,20.933650956981,4.19876939730422,0.00726164807767122,0.0446972734309498,-2.40207891832183 +"Q9VTB3",-0.29013246159726,19.7412056696968,-4.19556009283602,0.00728544713348832,0.0446972734309498,-2.40567112500672 +"Q9VWP4",0.340102857599618,15.250905175965,4.19511376151384,0.00728876401272083,0.0446972734309498,-2.40617083668061 +"A1ZBJ2",0.288378936338038,19.2424742913823,4.1892731486126,0.00733232731774435,0.0446982390074586,-2.41271286880201 +"Q9VH77",0.425366181321657,15.5853889780669,4.1879127820834,0.00734251647964248,0.0446982390074586,-2.41423737837918 +"Q7KML2",-0.796739481984426,13.1486274776002,-4.16965446964388,0.00748084688655727,0.0453747367519183,-2.43472699347927 +"Q7JXW8",0.305448626805035,15.0241889320233,4.15714536194328,0.00757733596270178,0.0457934651658934,-2.44879516164203 +"Q9W266",-0.302747556283173,18.4809286195267,-4.15125737107161,0.007623243772528,0.0459045870490134,-2.45542554352217 +"Q9VPE2",0.368701732965391,20.8357748053177,4.11856080097524,0.0078840177846418,0.0471782766808555,-2.49234428306136 +"Q9VAY9",0.482431165542708,14.6453536009283,4.11766176206319,0.00789133045201359,0.0471782766808555,-2.49336180213561 +"Q9W4K0",0.330935586434734,19.7561542790396,4.11081757280567,0.00794725431985724,0.0473237238439128,-2.50111214273335 +"Q9VL69",0.38611153701178,15.9826887920585,4.10461440407962,0.00799833083823134,0.0473237238439128,-2.50814298926342 +"Q8MLS1",-0.411600470376399,18.3254876941117,-4.10281166372225,0.00801324456656508,0.0473237238439128,-2.51018740672877 +"Q9VSL6",-0.359300168616821,14.3098465396279,-4.10089385904631,0.00802914499270224,0.0473237238439128,-2.51236287811883 +"Q9VQ91",-0.395685640161096,14.9411591822559,-4.09094245183374,0.00811223101163096,0.0476450750964804,-2.52366064383749 +"Q9VN01",0.315470955674254,16.078694077108,4.08291610936874,0.00817995828694839,0.0478074186747642,-2.53278430451818 +"Q9VZG1",-0.309223321414954,17.7619111960429,-4.0791120031538,0.00821228260189404,0.0478074186747642,-2.53711204618382 +"Q9VF89",0.611681149113217,14.1133823023029,4.07751959546285,0.00822585681034611,0.0478074186747642,-2.53892432845115 +"Q9VZD9",0.557188128700735,14.4866206666233,4.07216352841136,0.00827170155365388,0.0478976052815463,-2.54502288739882 +"Q9VN14",0.303245725370466,19.3632557920993,4.06794327817902,0.00830802938062859,0.0478976052815463,-2.54983137176648 +"Q9VDC0",-0.281498782990163,17.5864045315306,-4.06088977120403,0.00836915211476514,0.0478976052815463,-2.55787431242769 +"P82890",-0.519974569057752,19.5910850130243,-4.05858347769506,0.00838924843469137,0.0478976052815463,-2.56050582976725 +"Q9V9V4",-0.316204135421149,18.5095215814852,-4.05672109879548,0.00840551672000003,0.0478976052815463,-2.56263144767452 +"A1ZBU8",-0.308561523141272,20.6530753729566,-4.05578948147348,0.00841366807403661,0.0478976052815463,-2.56369495089104 +"P35381",0.333359545217323,25.6616476396881,4.02648490170188,0.00867472534149842,0.0492157886721747,-2.59721818314521 +"A1ZBU5",-0.425753635388556,16.6733897631918,-4.02175852241844,0.0087176872679257,0.0492918724166104,-2.60263769323965 +"P12370",0.302683310777379,20.7436760529401,4.01462333280036,0.00878300417822965,0.0494934154367806,-2.61082596678982 +"Q7KSQ0",0.306432168309794,20.930029217977,3.99920693039507,0.00892603851907275,0.0501300749151965,-2.62854519117385 +"A1Z843",0.310478747215676,17.5669789041304,3.99494510594883,0.00896604608268773,0.0501857881406817,-2.63345026146903 +"Q7K0E6",0.30906434262053,16.6668458005127,3.99114574306422,0.00900188429918002,0.0502178696021146,-2.63782549361444 +"Q9VWI0",-0.285701869350106,20.9591076248467,-3.974635061801,0.0091595278635129,0.05088780847932,-2.65686523353606 +"Q9VEN3",-0.291002108643827,17.5651458983839,-3.97001376718499,0.00920421229762744,0.05088780847932,-2.662202132147 +"Q9W552",0.367726046021414,16.2937818850395,3.96905641737046,0.00921350009637567,0.05088780847932,-2.66330814943401 +"Q9VZD8",-0.429990771130655,13.4718843753581,-3.96388318146087,0.00926387327194153,0.0509971637544504,-2.66928724979561 +"Q9VZE4",0.361869367304198,17.8119275711403,3.95326708539502,0.00936822818922177,0.0512346635943286,-2.68157033706925 +"Q7K0X9",-0.356883438676858,16.6242096354133,-3.95324479730935,0.00936844867881908,0.0512346635943286,-2.68159614369663 +"Q9NBD7",0.63633547839191,13.1756384391192,3.94699082689288,0.00943055097031023,0.0512704471830625,-2.6888405113808 +"Q8MSS7",0.528185169062215,13.9413770848413,3.94639747916532,0.00943646719736223,0.0512704471830625,-2.68952814478607 +"Q9VEJ3",-0.28859785777324,20.2299178224204,-3.94256822367693,0.00947474998256904,0.0513113083471596,-2.69396722607241 +"O18333",0.288800957117463,17.4542241340362,3.92847194036399,0.00961720460009335,0.051687461721074,-2.71032838876338 +"Q9VF24",0.413375231249212,16.1791877362603,3.92716307225455,0.00963055474578346,0.051687461721074,-2.71184914992955 +"Q709R6",-0.554507746961136,15.0717205307164,-3.92651520531174,0.00963717062065589,0.051687461721074,-2.71260200048535 +"Q9VVB4",-0.425316963072612,15.9606847087512,-3.92004054527038,0.00970357268477223,0.0518767924301285,-2.72012949307621 +"Q94901",0.270581572141111,19.0132937878924,3.91657815002201,0.00973929498877319,0.0519014186622162,-2.72415762210171 +"Q7K1C5",-0.281765568050419,17.4973198742943,-3.91290819028966,0.00977732186354177,0.0519381301541009,-2.72842929949406 +"Q9VHX4",-0.272637174717829,22.7878241341481,-3.9077042195593,0.00983153292927912,0.0520603077017066,-2.73449015065637 +"Q9VPC1",-0.389014753475598,16.1862916100027,-3.89821940317373,0.00993121853450551,0.0524217484669468,-2.74554773718718 +"Q9VBI2",-0.269528897254773,22.1321278479095,-3.89189772277683,0.00999829650655326,0.0526093330376367,-2.75292557227317 +"Q9VFP0",-0.287253241287074,16.5081241938774,-3.8886020132441,0.0100334703343561,0.052628391565113,-2.7567743954273 +"Q8SZK5",-0.924969937540343,15.2527227552142,-3.87156678189738,0.0102175338898844,0.0530801753614761,-2.7766959732224 +"Q9VSY6",0.269490007918868,17.7370414076652,3.87116988552663,0.0102218677322684,0.0530801753614761,-2.77716066355446 +"A1Z992",-0.339557916035361,14.056216774009,-3.86938792299804,0.0102413512794342,0.0530801753614761,-2.77924730998107 +"Q9V431",-0.272825979400906,18.4428034470389,-3.86888183812824,0.0102468923659444,0.0530801753614761,-2.7798400177579 +"Q8SX89",-0.442623681664912,15.5311604543926,-3.86472333758966,0.0102925524591472,0.0531500227992622,-2.78471182983099 +"Q7JXZ2",0.514692395434995,17.3709179842288,3.85990046859086,0.0103457965000236,0.0531500227992622,-2.79036538826206 +"A1Z8Y3",-0.35446463462142,15.0663515162448,-3.85898218092737,0.01035596967012,0.0531500227992622,-2.79144225747101 +"O18413",0.292264571631193,19.4246801028274,3.85076807092039,0.0104474751925276,0.0534551798194356,-2.80108080155625 +"Q9U616",-0.28348978684765,19.7506161823864,-3.84249054758629,0.010540615524339,0.0537668094636008,-2.81080452140009 +"Q9VWH4",-0.263604918629998,24.3587904653726,-3.83428919444638,0.0106338280719411,0.0539735375746394,-2.82044941730881 +"Q9VGS3",0.331467586283328,19.2887161820226,3.83323653147332,0.0106458596295302,0.0539735375746394,-2.82168813011168 +"Q9VIK6",-0.326237029246272,16.6875336501711,-3.8233556687355,0.0107595494106765,0.0543846315666923,-2.83332386819936 +"Q961T9",0.374990737366442,17.7976593785046,3.81605036017538,0.0108444894230203,0.0546014393145639,-2.8419365128676 +"Q9VW59",0.265092002408558,19.7680575595852,3.81404725425922,0.0108679123815559,0.0546014393145639,-2.84429955658101 +"Q9VMH8",0.26498378150534,18.9444151495857,3.80179619478691,0.0110124210947821,0.0549337764820407,-2.85876574966426 +"Q9W1V3",0.28978369307449,16.3692550987875,3.80020663572421,0.0110313299132487,0.0549337764820407,-2.86064445023134 +"Q9VDK9",0.359227683297506,15.5254993387767,3.79883305386523,0.0110476991611566,0.0549337764820407,-2.86226820734203 +"Q9VAG9",-0.274441885715241,17.3567931593705,-3.7899806869679,0.0111538567642051,0.0549337764820407,-2.872740004173 +"Q9VTC1",-0.281669707209094,15.9128790127269,-3.78891035769171,0.0111667702392451,0.0549337764820407,-2.87400697165887 +"P08646",0.27085834899087,18.9985085125744,3.78824311046124,0.0111748291119003,0.0549337764820407,-2.87479689499046 +"Q9VIV6",0.334029920892954,15.0380787868862,3.78431133015953,0.011222450248942,0.0549337764820407,-2.87945296986043 +"A1Z9M5",0.269679099684973,14.9413451605878,3.78374501553161,0.0112293282763231,0.0549337764820407,-2.8801238085156 +"Q9W369",-0.274750281866645,22.1767108597234,-3.78365135258126,0.0112304662951894,0.0549337764820407,-2.88023476358313 +"Q24439",-0.289653334184738,24.2279153863128,-3.77384874068917,0.0113502944814079,0.0553575765935333,-2.89185475943219 +"Q9VP57",0.292657677221854,19.705369132565,3.76845301226726,0.0114168695288135,0.055519936950615,-2.89825728312976 +"O77263",-0.27783457407914,15.5415459255999,-3.76293592898177,0.0114853991843281,0.0556908309286609,-2.90480852992043 +"O97102",0.336859793120748,21.1554073217676,3.75700575952798,0.011559579427949,0.0558880535820837,-2.91185561947497 +"Q9VZI8",0.333917175724601,15.7685239715871,3.74241477341562,0.0117444158658244,0.0564861443332178,-2.92921822019788 +"Q7K3J0",0.264348234780623,20.4223525861333,3.74189869278486,0.011751014438625,0.0564861443332178,-2.92983294310569 +"Q7JWX3",0.256858798512376,17.8222184896672,3.71748595313358,0.0120679964810904,0.0578431555472954,-2.95895948853844 +"Q9XYZ5",0.368132802248075,15.9912803512026,3.71271274612283,0.0121310965836603,0.057978994560302,-2.96466523507186 +"Q9W308",-0.668202915075703,17.2079257558991,-3.70825096335253,0.0121904171112635,0.0580960449759642,-2.97000193231613 +"Q8IH23",0.287220671452449,18.3807742096951,3.70390636197891,0.0122484948456961,0.05820652251459,-2.97520145648298 +"Q9VSS2",0.370762688009306,16.1258976563337,3.69762657694404,0.0123329950590946,0.0584415788595732,-2.98272217152933 +"Q9V419",0.437395110014918,16.2994712884603,3.6937726869945,0.0123851786755434,0.0585226006538424,-2.98734066284299 +"A8JNG6",-0.463831512398508,15.5118465795146,-3.69099463831842,0.0124229495605109,0.0585352538613904,-2.99067130490678 +"Q9VE85",0.266136237475623,15.9264915668897,3.68582007567382,0.0124936513022573,0.0587025644286342,-2.99687836779269 +"Q9VEY0",0.258890000802154,18.0681185692221,3.67449065536962,0.0126500411668402,0.0592704176019366,-3.01048294820588 +"Q9W1F8",-0.259681674908933,17.7628070657249,-3.66840014275972,0.0127350266012088,0.0595014688258158,-3.01780480327216 +"Q9VKM3",-0.2699173942245,21.6887478377708,-3.66470039852009,0.0127869664887167,0.059577262858043,-3.02225535448972 +"Q7KTG2",0.306245986913535,18.0816515990239,3.65520570680634,0.012921358050027,0.0600357248675351,-3.03368657990047 +"P15425",0.295717649648761,17.0084008788887,3.65122393871712,0.0129781913962422,0.060132286802589,-3.03848463266888 +"P54353",-0.358064399943554,18.9058464933109,-3.64164387544224,0.0131160907756401,0.0606028792625142,-3.05003873659736 +"Q7K180",-0.289812123483182,16.1882529330101,-3.62955478442285,0.0132924711095452,0.0610878453188197,-3.06463916143817 +"Q9VH95",-0.299353143643629,20.9060849743345,-3.62789303022701,0.0133169246607287,0.0610878453188197,-3.06664788909871 +"Q9W0D3",0.258903929857892,12.6518099561336,3.62387534223177,0.0133762568466463,0.0610878453188197,-3.07150623253739 +"Q9VGW7",0.429977600978543,16.7388675666993,3.62293082366679,0.0133902484943099,0.0610878453188197,-3.07264874310149 +"Q8T4G5",0.276479033270284,19.693077280761,3.61988588705038,0.0134354672121467,0.0610878453188197,-3.07633290437709 +"Q8SX68",-0.271449472997638,17.6236647584797,-3.61952816072957,0.0134407909064789,0.0610878453188197,-3.07676582234052 +"Q9VS97",-0.379203628420576,15.1580721771688,-3.61691388219003,0.0134797689630914,0.0610985180174903,-3.07993020447263 +"Q7K084",-0.258466987750207,23.8420560821383,-3.61248460696538,0.0135460992534478,0.0612327738611135,-3.08529390819814 +"Q8SXY6",0.277344523304052,19.1582771035204,3.60457747544827,0.0136654286793094,0.0615403005754228,-3.09487670406035 +"Q9VSK9",-0.257677099251366,14.4418871128613,-3.60309581185669,0.0136879205716318,0.0615403005754228,-3.09667343139578 +"A1Z8H6",-0.491475049835099,16.6452612747905,-3.59433905377469,0.0138217045183597,0.0619747396145804,-3.10729914836614 +"Q9W3M8",0.296880989011935,18.6497648157625,3.58501585101596,0.0139657642973801,0.062452801201153,-3.11862517653908 +"Q9V3R3",-0.251332266596496,13.652753129414,-3.57328575455461,0.0141494233789702,0.062923507840615,-3.13289412370888 +"Q7JWU9",-0.380230685423745,15.5590297786407,-3.57311853434129,0.014152061151526,0.062923507840615,-3.13309768957162 +"Q9V8F5",-0.257271311792159,16.0127262983896,-3.57108417556603,0.0141841960120331,0.062923507840615,-3.13557456375008 +"E2QCN9",-0.251160568786609,17.2830197740889,-3.560472955584,0.0143531491795108,0.0635041189162442,-3.14850422709779 +"Q7K5K3",0.254749231690514,22.7743510562612,3.54588929967158,0.0145890607496427,0.0643771252127091,-3.16630237455123 +"Q7JR58",-0.28760723128709,22.8607728956518,-3.54336572778428,0.0146303244597449,0.0643888685985607,-3.16938548321924 +"Q9W1N3",-0.322971866754227,20.5025664645186,-3.54044834958228,0.0146781911730438,0.0644117153090504,-3.1729509255976 +"A0A0B4K692",0.413013548087935,15.9609295920073,3.53738248359391,0.0147286841692072,0.0644117153090504,-3.17669923952395 +"Q9V393",0.292710509623511,15.7869717425352,3.53257830254116,0.0148081996940234,0.0644117153090504,-3.18257569081777 +"Q9V3L6",0.336824170826109,15.854435299249,3.52943408355192,0.0148605020815294,0.0644117153090504,-3.18642358761223 +"Q9NHE5",0.534317965522154,15.8127005276418,3.52798260109347,0.01488471678749,0.0644117153090504,-3.18820042026324 +"Q9VRU1",0.350587852803745,17.2744306443059,3.52157173872151,0.0149921997464201,0.0644117153090504,-3.196052112693 +"Q9VYG8",0.253542018427268,14.9530425986309,3.5192879531901,0.0150306997760934,0.0644117153090504,-3.19885068423017 +"Q00174",0.249663812753916,21.989184103203,3.51675070060151,0.0150736031771143,0.0644117153090504,-3.20196078564284 +"Q9VQD8",0.519149580041276,17.7486244447788,3.51624827886355,0.0150821151473559,0.0644117153090504,-3.20257675772299 +"Q9V438",-0.252488112328585,18.8800131430928,-3.51385493701103,0.0151227371275434,0.0644117153090504,-3.205511535275 +"P32234",-0.270921583930161,16.6465147399157,-3.51241971792649,0.0151471559701425,0.0644117153090504,-3.207271854883 +"O02649",-0.283619955218313,23.3713571473697,-3.50907982337522,0.0152041527894996,0.0644117153090504,-3.21136949952637 +"Q9VQI7",-0.261655817071709,19.1927727359337,-3.50657830450137,0.0152470002770684,0.0644117153090504,-3.21443966678373 +"Q9VXN2",-0.323048177244594,18.5094813091299,-3.50437850301861,0.0152847919603507,0.0644117153090504,-3.21714031340686 +"Q9VGA3",0.261145407944024,19.4488465570952,3.50270198846764,0.0153136644936233,0.0644117153090504,-3.21919902461952 +"Q9V9T9",0.337049882808076,13.5049886785825,3.50268276269732,0.0153139959505824,0.0644117153090504,-3.21922263577577 +"Q9VU35",-0.259914173146647,22.7781811166592,-3.50129070670466,0.0153380167773604,0.0644117153090504,-3.22093236755785 +"B7Z0C9",-0.244178041197427,16.0271348140395,-3.50063118671499,0.0153494120036067,0.0644117153090504,-3.22174249649232 +"Q9VEV3",-0.277800431292878,18.3114358219431,-3.49600175196257,0.0154296679763376,0.0644117153090504,-3.22743096793802 +"Q9VQR9",-0.264280512783865,16.1410651769552,-3.49516685803652,0.0154441918492645,0.0644117153090504,-3.22845719846807 +"Q9VK39",-0.270307567515484,18.1718934665687,-3.49503687008707,0.0154464545105636,0.0644117153090504,-3.22861698585322 +"Q9VW66",-0.255925671303597,21.4434343951952,-3.48230355218486,0.0156699155818772,0.065180596485215,-3.24428175597678 +"Q9VJE3",-0.384515018771971,15.4131834346648,-3.46861566283471,0.0159141877746479,0.0655973061231495,-3.26114811584068 +"Q7KLE5",-0.253345395379309,21.3921871966898,-3.46583103091698,0.0159644037140196,0.0655973061231495,-3.26458281814684 +"Q95TN1",0.501133684964564,14.0023048280599,3.4656833212855,0.0159670723622215,0.0655973061231495,-3.26476504302457 +"Q9VCK0",0.408183753845215,18.2220796259495,3.46284928027094,0.0160183716840863,0.0655973061231495,-3.26826194766951 +"Q9VXE0",0.259134246876442,18.0763092762178,3.46145569274456,0.0160436650293563,0.0655973061231495,-3.26998192839954 +"Q9VGP6",0.246647454780362,17.9725522266479,3.46004168928361,0.0160693747568194,0.0655973061231495,-3.27172740454295 +"P91926",0.291169079437985,17.5839369352018,3.45994076989792,0.0160712114632558,0.0655973061231495,-3.27185199306086 +"Q7JWF1",0.263417458533837,20.5275668646183,3.45919941509021,0.0160847111536979,0.0655973061231495,-3.27276726837765 +"Q9VSL9",0.517024786833963,14.7176220205197,3.44806240394499,0.0162890499385729,0.0662686226769257,-3.28652691427845 +"Q9VCW2",0.346101140268066,15.287330124704,3.43621749787201,0.0165095798106194,0.0667686917164886,-3.30118151397904 +"Q9W2M0",-0.251978621711924,17.708014669056,-3.43621186091433,0.0165096855544871,0.0667686917164886,-3.30118849304856 +"Q8IRD0",0.326922330213648,17.5698107934992,3.43502024602084,0.0165320561624159,0.0667686917164886,-3.30266392773049 +"Q7KUA4",-0.24669801382419,18.7760698654827,-3.41565190241032,0.0169004740434495,0.0677517726839699,-3.32667508155781 +"Q9VVW7",-0.270829594957172,16.6561269284532,-3.41260204905271,0.0169593220555515,0.0677517726839699,-3.33046109850021 +"Q9V3D9",0.250992072755398,17.4414279758981,3.41248818080492,0.0169615236283512,0.0677517726839699,-3.33060247860224 +"P00334",-0.234659693214034,25.2360041385275,-3.41188707870193,0.0169731508802964,0.0677517726839699,-3.33134884561471 +"Q9W5P1",0.294544463833491,14.442806047728,3.41141797259233,0.0169822311119447,0.0677517726839699,-3.33193135512432 +"Q9VM18",-0.262206297609133,22.8314234703861,-3.4081342760977,0.01704594451652,0.0677517726839699,-3.3360097771815 +"Q95SI7",-0.25736628327984,21.188246603239,-3.40742206344647,0.0170597988772586,0.0677517726839699,-3.3368945714526 +"Q9V7D2",-0.32139303386155,21.3024868549386,-3.40307964620549,0.0171445435764302,0.0679266002030538,-3.34229085682352 +"Q9VJQ6",0.490101738981478,14.6175056541716,3.39956817997384,0.0172134168845867,0.0680378657902622,-3.34665656561934 +"Q8IQB7",0.446208038050418,14.3941605665052,3.39645580193915,0.0172747218148518,0.0681187611989902,-3.35052762199519 +"Q9VUJ1",0.25221519235847,20.0745851617041,3.39124681824044,0.0173778719899518,0.0683638926397162,-3.35700955452432 +"Q9VJG0",-0.634933147978566,12.9240402149369,-3.38679741530554,0.0174665273116642,0.068428949179262,-3.36254945053266 +"Q9V9Q4",-0.257782057299593,19.1987505280579,-3.38501488110518,0.0175021867474641,0.068428949179262,-3.36476967945495 +"Q961B9",0.290288790854333,15.0641996883248,3.38023193250318,0.0175982728190471,0.068428949179262,-3.37072937305785 +"Q9VYV4",-0.248857877416405,15.5746116761123,-3.37923636940223,0.0176183471824046,0.068428949179262,-3.37197029655011 +"Q9VPU4",-0.2807872485572,12.950826137056,-3.37854366206633,0.0176323299434365,0.068428949179262,-3.37283381019451 +"Q9VZU4",-0.324490820697122,21.4159436975714,-3.37670177605954,0.0176695701382,0.068428949179262,-3.37513020732612 +"A8JNT7",0.263901683326987,16.8557937996274,3.37610865067378,0.0176815809929628,0.068428949179262,-3.37586980070471 +"Q0E9F9",0.24841737765675,18.3256428366684,3.36476818041372,0.0179129942028542,0.0689884548829738,-3.39002063771644 +"Q9VEV7",0.423424275198776,12.8703993914397,3.36472198307949,0.0179139438121035,0.0689884548829738,-3.39007832207181 +"Q7K0B6",-0.247222539761221,20.1688525191024,-3.36295858679198,0.0179502334647546,0.0689884548829738,-3.39228042223656 +"Q9VT23",0.241141080781006,18.3543295320917,3.36045935326852,0.0180018072536739,0.0690276195382255,-3.39540220243029 +"Q6IDF5",-0.292886109422078,19.5444696188666,-3.35312221099617,0.0181541760042182,0.069342005552217,-3.40457225915084 +"Q9W2E8",-0.234678418200041,19.2637993067553,-3.35211946790677,0.0181751116142962,0.069342005552217,-3.40582611046069 +"B7Z0N0",-0.270212480486153,13.021880262826,-3.34902848565721,0.0182398163649304,0.069342005552217,-3.40969206213086 +"O18332",0.340135475103349,20.7256992446122,3.3485391137042,0.0182500841950979,0.069342005552217,-3.41030425671745 +"Q9VZ64",-0.247907751242739,19.397778849907,-3.34269336622655,0.0183732389150892,0.0696343232198795,-3.41761986409207 +"P29327",0.272422168277462,19.4623202564805,3.34093270165504,0.0184105135131696,0.0696343232198795,-3.41982420491826 +"Q9VTU2",-0.249511251609277,20.8388024066169,-3.33490354199537,0.0185387975743519,0.0696702696609731,-3.42737608242429 +"Q8MR62",-0.292249895888506,17.6678402729243,-3.33486511394285,0.0185396184182611,0.0696702696609731,-3.42742423272806 +"O46067",-0.23702442903539,19.6597420230549,-3.3331350991227,0.0185766146052858,0.0696702696609731,-3.42959216085603 +"Q9VMD3",0.238429801991222,17.9442604936931,3.33264584026955,0.0185870923256193,0.0696702696609731,-3.43020534292941 +"Q9VDT1",0.269910922448837,19.1550596353983,3.32556372510122,0.0187395018406893,0.0700840562113672,-3.4390851498711 +"Q9VMB9",-0.228582329175779,22.6473848792074,-3.30691825885809,0.0191474828019937,0.0714496673685133,-3.4624981020721 +"Q9VSN9",0.251732301061979,16.3936689243306,3.29912061813813,0.019321038494514,0.0718412554319942,-3.47230435113234 +"M9PF16",0.238171470895555,20.9889663327731,3.29833760022694,0.0193385633626891,0.0718412554319942,-3.47328954937341 +"Q960M4",-0.263695819845235,23.2539027098809,-3.29150417366106,0.0194922593871678,0.0722513081284354,-3.48189113301445 +"Q9VZF9",-0.237413956713496,19.0246198589552,-3.28692666634353,0.0195959786240624,0.0724747058646032,-3.48765680538295 +"Q9VSN3",-0.248977185604545,20.997704346679,-3.2839356214828,0.019664083929973,0.0724852795748191,-3.49142583727642 +"Q9VNH5",0.251616319909388,17.2097796511194,3.28298649972101,0.0196857503881253,0.0724852795748191,-3.49262209705632 +"Q9VN02",-0.263980478321088,17.2567425809244,-3.27982222616012,0.0197581768894588,0.0725519613470214,-3.49661122914122 +"Q9U6R9",-0.238189154661068,20.590960933704,-3.27686825062953,0.01982605847695,0.0725519613470214,-3.50033652764441 +"Q9NHA8",0.412560868135902,16.326489901146,3.27502804919264,0.0198684774086597,0.0725519613470214,-3.50265785704006 +"Q494G8",-0.228766103277783,15.1810254425367,-3.27462223642437,0.0198778455249333,0.0725519613470214,-3.50316983584568 +"Q8IN44",-0.231379580376544,19.8919423846693,-3.26927866746039,0.020001661829781,0.0728444802010366,-3.50991353185854 +"Q9VDQ3",-0.552730772702725,13.1263962096696,-3.25623923131077,0.0203074279568083,0.0736286047038607,-3.52638652675602 +"Q9VRL0",-0.246643467661997,22.6603406493781,-3.25223287047054,0.0204024189835628,0.0736286047038607,-3.53145266291363 +"Q9VIQ5",-0.258574458101881,16.633085493258,-3.25196979041363,0.020408673944107,0.0736286047038607,-3.53178541277273 +"Q8WTC1",0.325968889999,15.0330991043195,3.2518408855492,0.0204117395517237,0.0736286047038607,-3.53194845823779 +"Q9W1G0",-0.255615477632134,21.6254898174198,-3.25075114423529,0.0204376762457359,0.0736286047038607,-3.53332691214909 +"Q9VVW3",0.396846469054845,16.5963293664667,3.22588742862916,0.0210395517563969,0.0756335610553232,-3.56482314876884 +"Q9VSJ8",-0.349384975580769,15.6417482062332,-3.22194419455436,0.0211368084071069,0.0758197772538803,-3.56982618536288 +"Q9VW68",0.224555045583955,22.9540343622068,3.21401381366547,0.0213339250743559,0.0763626330987676,-3.57989450879923 +"Q0E9B7",-0.46025257862523,12.7621979534631,-3.20524198309423,0.0215543451305086,0.0769863975967631,-3.59104126527895 +"Q9VAC1",0.224086134772431,23.2203528832541,3.20177518873894,0.0216421575619525,0.0771348692592667,-3.59544960271286 +"Q9VBU9",0.263206552504794,20.8438349358088,3.19946395037977,0.0217009215168708,0.0771793967806833,-3.59838946721155 +"Q9VAA9",-0.229997273894881,17.0882201678029,-3.19380852901464,0.0218454628768967,0.0775281533588591,-3.60558618426196 +"Q0KIE7",0.795167434889066,13.961327339643,3.18663178638222,0.0220304311720659,0.0780185970169978,-3.61472514860387 +"Q7KN94",-0.225151770132079,22.6381714937302,-3.18343063225588,0.0221134969831245,0.0781468495081604,-3.6188038149969 +"Q9W0R0",-0.282286588226519,16.6794102903246,-3.17491134453305,0.0223362642101424,0.0787672065592337,-3.6296652499389 +"Q9W086",0.227915463928083,16.8846685434886,3.16821010555118,0.0225132464628522,0.0792238293249735,-3.63821574719471 +"Q9VZG2",-0.232370556339919,22.141764026878,-3.16230862464359,0.0226703988174915,0.0795755064975091,-3.64575082605671 +"Q9W3N7",-0.552668658320099,17.272344596297,-3.16088102459937,0.0227085977774666,0.0795755064975091,-3.6475743095044 +"Q9V3Y7",-0.259890386023667,19.4647555010126,-3.15703812081661,0.0228117801712457,0.0797694954415889,-3.65248424372021 +"O18404",-0.218178466587361,22.9789653315121,-3.13917306708431,0.0232983503384698,0.0813005195911457,-3.67533581686206 +"Q9V3H2",0.291927689361376,18.4801986439359,3.12192376598943,0.023779112077183,0.0826188012826511,-3.69744019881647 +"Q9VG69",-0.240599795885064,20.0027671529459,-3.11861808904795,0.0238724979218234,0.0826188012826511,-3.70168081391694 +"Q05856",0.404217347924712,13.7706050344997,3.11693540017446,0.0239201904168089,0.0826188012826511,-3.70383996860536 +"Q9VGR1",-0.340647255826696,14.0539603627855,-3.11682225977888,0.0239234009503313,0.0826188012826511,-3.70398515894407 +"Q9VBV5",-0.271071579658404,17.1771525110661,-3.11556079937628,0.0239592292493886,0.0826188012826511,-3.70560407494384 +"Q9VWD0",-0.239416939511244,18.1044433259951,-3.11506521534148,0.0239733212354935,0.0826188012826511,-3.70624014826825 +"Q9VGL0",-0.26023025001976,12.8471318622586,-3.11030257314638,0.0241092174280855,0.0829158240619519,-3.71235456347313 +"Q9XTL2",-0.26288135797331,16.8613222716438,-3.10732686076273,0.024194559542942,0.0830381179375047,-3.71617638079853 +"Q9VXN3",-0.277164896249033,16.8988714630102,-3.10344056667049,0.0243065218595641,0.0832510851370697,-3.72116944056071 +"Q9VKU5",-0.525296169341821,13.6911270235862,-3.10036001853239,0.0243956794266909,0.0833852321387714,-3.72512869312162 +"Q9VSR5",0.251633744223145,20.3328044141026,3.09611723039374,0.0245190690827003,0.0836355976072476,-3.73058373555787 +"P17210",-0.237290167516402,20.8339288324428,-3.09237521638314,0.0246284697044547,0.0838150150213262,-3.73539686923144 +"Q9NCC3",-0.227266874350718,17.2652341386423,-3.09088575699091,0.0246721656927285,0.0838150150213262,-3.73731318053368 +"Q9W127",-0.306242306864636,18.570712970225,-3.08252177148774,0.0249191404761708,0.0844819640533596,-3.74807947796434 +"Q9VNX4",0.211258219965245,20.7656434392194,3.07017323774199,0.025288796822557,0.0855612841785497,-3.76399128673861 +"Q9V4S8",-0.238394165835052,17.0179603559027,-3.06701902147679,0.0253841904693295,0.0857101815846995,-3.76805882149539 +"Q7JWD3",-0.231947212697966,17.0927476072033,-3.04725227329001,0.0259911519322757,0.087582305905123,-3.79357802688454 +"Q9W236",-0.26746816153757,16.5146259706177,-3.04332897455971,0.026113522662931,0.0877519739157008,-3.79864896600444 +"Q9VY92",-0.213260595185798,21.3948902117891,-3.0404261382519,0.0262044748016391,0.0877519739157008,-3.80240218709782 +"P22979",0.325854428155775,19.5494563356438,3.03918024772612,0.0262436187138643,0.0877519739157008,-3.80401338607109 +"Q9W3M7",0.215813945827863,16.0287368890397,3.03755958025636,0.0262946343798431,0.0877519739157008,-3.8061095425956 +"A1Z6V5",-0.213923133567764,20.2024285224951,-3.03724503075896,0.0263045485358815,0.0877519739157008,-3.80651641627848 +"Q9V3Z2",0.249048365750243,16.1398768385335,3.03255065522135,0.0264530011099618,0.0880710695637051,-3.81259012395593 +"Q9VKU3",0.268211026800351,15.5590632675104,3.02684758549504,0.0266346003643923,0.0882821703354767,-3.81997261649503 +"Q9VD02",-0.248907571595431,18.2580776940031,-3.02577210469561,0.0266690005155725,0.0882821703354767,-3.82136525650123 +"Q7KN75",0.278723500611612,19.275864493709,3.02557881801072,0.026675188158921,0.0882821703354767,-3.82161555869115 +"A1Z968",-0.310417870592232,17.1152285885898,-3.02001021500183,0.0268541381114075,0.0886984205343124,-3.82882877789533 +"Q95SS8",0.304460690903793,15.6750599542988,3.01434138087681,0.0270376734260892,0.0891281408591241,-3.83617578136899 +"Q7K511",0.33471304084552,16.7554029875749,3.01076215601381,0.0271542690455964,0.089231410567949,-3.84081662539528 +"Q7JZN0",0.264706237954032,16.661933046987,3.00819202329458,0.0272383355962853,0.089231410567949,-3.84415004865271 +"Q9VG92",-0.314568154180284,16.3445806057808,-3.00590021009124,0.0273135412138238,0.089231410567949,-3.84712318102567 +"Q9VBP6",-0.225711218145786,23.2090779467998,-3.00420361198799,0.0273693627081028,0.089231410567949,-3.84932456594453 +"Q9U9Q2",-0.208046181687687,15.6227026506458,-3.00254203699121,0.0274241540725907,0.089231410567949,-3.85148084953057 +"Q9VSY0",-0.214626054967802,22.5786026180207,-3.00186524033059,0.0274465065464241,0.089231410567949,-3.85235924901329 +"Q9W2X6",-0.210291060275733,24.120168567448,-3.0016371772381,0.0274540432895857,0.089231410567949,-3.85265525971275 +"Q9VRP2",0.212620796020413,20.3985690807866,3.00033954221679,0.0274969694436006,0.089231410567949,-3.85433962465334 +"Q7K3N4",0.263517470281535,16.9484836791882,2.99575364055572,0.027649267511331,0.0895514139978642,-3.86029389596409 +"A1Z7X8",0.28917293562208,17.0796193948856,2.99196145491972,0.0277759101405164,0.0897872444077157,-3.86521955367711 +"Q9VCH5",-0.209511579792164,18.0621995056845,-2.98624432114359,0.0279680502845825,0.0902334775138947,-3.872648821894 +"Q9VWD5",0.40940797646199,14.5258322803832,2.97333019398293,0.0284074888565598,0.0913672916601887,-3.88944492535274 +"Q9VNI4",-0.284818819120821,16.4832424173434,-2.97270278572967,0.0284290313978645,0.0913672916601887,-3.89026144243213 +"Q27272",-0.264080883742196,15.5950862570004,-2.96244974350802,0.0287836436117705,0.092190910115018,-3.90361154152862 +"Q9VF39",-0.353084053222108,15.8515277466059,-2.96209953454917,0.0287958418284918,0.092190910115018,-3.90406775638985 +"P22812",0.204250479061672,11.4610842005538,2.94879094696768,0.0292636480380236,0.0931280042487571,-3.92141551195616 +"Q9VNW0",-0.367813860953014,14.7086488891816,-2.94665212809294,0.029339607525716,0.0931280042487571,-3.92420540909606 +"Q8IPG8",0.441043370278525,15.852884782874,2.94655857281599,0.0293429350696032,0.0931280042487571,-3.92432745579308 +"Q9VYY3",0.222653403020814,17.5031073404514,2.94255003188201,0.0294859010141673,0.0931280042487571,-3.92955772388929 +"A1Z877",0.219122942222885,20.0157304246365,2.94075201045865,0.0295502772830889,0.0931280042487571,-3.93190435785943 +"Q9W2D9",0.286502054814944,17.6081676036103,2.94030138857946,0.0295664355875697,0.0931280042487571,-3.93249253262255 +"A1Z7H7",0.202630729315306,17.8905348548947,2.9399975037526,0.0295773377220963,0.0931280042487571,-3.93288919202434 +"Q0E8C8",0.284795398051566,17.6847686338293,2.93988206347936,0.0295814804039751,0.0931280042487571,-3.93303987847662 +"Q9VH72",-0.589715135971897,18.8508539391685,-2.93961595125709,0.0295910325250847,0.0931280042487571,-3.9333872458908 +"A1ZA23",-0.21868465213538,18.4637496728986,-2.93431632699803,0.0297819725004086,0.0935524107922439,-3.94030678181241 +"Q9VKZ8",0.295602858951238,18.8236227506368,2.92999189956317,0.0299387829260699,0.0935791215408121,-3.94595544941076 +"Q9W5W8",0.234304973239855,20.6554813018144,2.92873705352603,0.0299844556487498,0.0935791215408121,-3.94759496297864 +"Q59E14",0.278617510167704,14.635002943878,2.928071862503,0.0300086977708216,0.0935791215408121,-3.94846413904006 +"Q9W4P5",0.235725825697763,19.6024245282969,2.92790215267672,0.0300148861057161,0.0935791215408121,-3.94868589962536 +"A1ZBA5",0.440916094997508,15.6884272978596,2.92528509137014,0.0301104933279987,0.0936815717748501,-3.95210604519111 +"Q9W392",0.207750759905011,20.0090524468018,2.923931507767,0.0301600743663636,0.0936815717748501,-3.95387530515461 +"Q9VHI1",0.239789825376587,14.2345687489208,2.91040771069043,0.0306604088856246,0.0950586654669551,-3.97156367714613 +"P35220",-0.287798307637587,19.341918264413,-2.90622157692044,0.0308171276617033,0.0952777645775219,-3.97704312220181 +"P17336",0.236675807247138,20.4998953653811,2.90343147656589,0.0309220716956878,0.0952777645775219,-3.98069632729737 +"Q9VJI9",-0.282333479577204,17.691927214437,-2.90296989888142,0.0309394708850321,0.0952777645775219,-3.98130077652088 +"O97064",0.205091270541486,16.4979061520553,2.90243727915735,0.0309595613914969,0.0952777645775219,-3.98199828714557 +"Q9VN73",0.244224890533854,18.3354413247915,2.89805318242353,0.0311254764930974,0.0955213502908977,-3.9877408444546 +"Q9VY42",0.216030961911263,15.2139071340858,2.89732191611917,0.0311532461380386,0.0955213502908977,-3.98869891151369 +"Q9VIB5",-0.444420561107084,14.1329459674591,-2.89221802628881,0.0313478253818661,0.0959416013522068,-3.99538742759894 +"Q9VFS4",-0.353590557807404,15.3806729324017,-2.88669552800171,0.0315598698860594,0.0964136684431265,-4.0026277883409 +"Q9VE50",-0.226783869227186,14.5804654965701,-2.88390193506352,0.0316677341478635,0.0965663264326075,-4.00629166198213 +"Q9VIH9",-0.370385230544226,19.1565886980672,-2.88187241013566,0.031746350846369,0.0966294036710648,-4.00895398049888 +"Q9VCE1",-0.413472815523384,13.7198694785312,-2.87888425307493,0.03186249225118,0.0968062606101426,-4.01287465332781 +"Q7JQR3",-0.2070726388095,19.0616140448601,-2.87198270514312,0.0321325247123565,0.0974491840367467,-4.02193371809888 +"Q7JRN6",-0.508275470415761,14.9077246557213,-2.85258788114068,0.032904923301592,0.0996105482160717,-4.04741934119708 +"Q8SX78",-0.25005182927636,16.0061259231621,-2.84809221838772,0.0330868582316646,0.0999624522536107,-4.05333260619252 +"Q9W3J1",0.197284194085347,15.6615714840378,2.84675888658164,0.0331410288346803,0.0999624522536107,-4.05508678697132 +"Q9VLG9",-0.199359784204738,15.7731030959657,-2.84303592254206,0.0332928012462278,0.100238975593336,-4.05998585557936 +"Q8MLP9",-0.355976171735689,14.9241300042311,-2.82995509566096,0.0338321366206563,0.101679286276135,-4.07721057276544 +"Q7KSE4",-0.255686210096913,13.8789516269294,-2.82591970333018,0.0340004477193015,0.102001343157905,-4.08252795349829 +"Q9V3E7",-0.245400217327365,18.7237896021058,-2.81296783580939,0.0345468826593681,0.103454578592147,-4.09960582064395 +"Q95SK3",-0.216176551637455,17.165398446687,-2.80702950666564,0.0348006292207195,0.104027687347957,-4.10744163208759 +"Q9VF70",-0.211673141776155,15.8501375263175,-2.8020920134513,0.0350131640063823,0.104375594773264,-4.11395953209627 +"Q9VY91",-0.452042389175926,16.812957804578,-2.80073194930201,0.0350719574140648,0.104375594773264,-4.11575536152551 +"A1Z847",-0.2869934223123,20.2293440365703,-2.79775061904456,0.0352012140177611,0.104375594773264,-4.11969256200783 +"Q7K1C3",-0.218980414831819,17.2240837502927,-2.7973522313747,0.0352185257095451,0.104375594773264,-4.12021874773873 +"Q9VVL5",0.226953685039209,17.295321398561,2.79709077958633,0.0352298920008079,0.104375594773264,-4.12056407881249 +"Q9VZZ6",0.217422177843765,18.4463518751677,2.79343768298872,0.0353891264694225,0.104661459132973,-4.12538988110456 +"Q7K2E1",0.197234214665102,17.3206742240266,2.78893485552287,0.0355864843300722,0.105058859933735,-4.13134002110591 +"Q9V3Z4",0.253036738145024,18.8651194002717,2.78491003533706,0.0357639107010057,0.105396118461621,-4.13666021147846 +"Q9VKV2",0.256535779051768,14.8642522868216,2.78081647883047,0.0359453601848394,0.105744022554342,-4.14207289777835 +"Q9VCR4",-0.35810870319486,14.8971178586841,-2.77581166866705,0.0361685706325444,0.106213337702613,-4.14869271514184 +"Q9VEX6",-0.209499519154114,20.753802463938,-2.76970979143416,0.0364427616761201,0.106830450748275,-4.15676690962215 +"Q9VKR0",0.253828994498347,13.2996356251988,2.75904498654863,0.0369274611929409,0.10806141275408,-4.17088752305932 +"Q9VD64",-0.244169564375744,15.7624196982127,-2.75259403370418,0.037224062817016,0.108738593307851,-4.17943409276465 +"Q9VDD1",-0.457708936841914,14.1856570244435,-2.75065854345398,0.0373135593368026,0.108809470233893,-4.18199910057246 +"Q9V4E0",0.228438678066588,18.1766517253849,2.7483645362722,0.037419937945617,0.108926310077747,-4.18503968837701 +"Q7JNE1",-0.192197881913504,17.8741439771375,-2.74691668829346,0.0374872485327505,0.108926310077747,-4.18695898960698 +"Q9V773",-0.216782900816094,15.4341884923349,-2.74557938447948,0.0375495373469452,0.108926310077747,-4.18873192485263 +"Q9VZI3",0.286502493392414,14.1994069127223,2.74022706571877,0.0377999704286885,0.109282109000416,-4.19582944578035 +"Q9VCE0",-0.337420911243383,15.8152286462931,-2.74015779390511,0.0378032235570983,0.109282109000416,-4.19592132209672 +"Q9VL01",-0.195025838756997,20.5377254661558,-2.73027019686283,0.0382707115042197,0.110442122472385,-4.2090399290083 +"Q24319",0.344514083059867,16.3038460746235,2.72548248561001,0.0384993384806986,0.110910011374448,-4.21539534736195 +"Q9VXA3",-0.211441870446869,17.8486844357113,-2.72360505452352,0.0385893973779423,0.110977784183462,-4.21788809821658 +"Q9VVK7",-0.194254032362725,18.2259165758482,-2.71133009101286,0.0391839071314193,0.112352391192766,-4.23419390980446 +"Q7JV09",-0.203718999443227,15.0741686492127,-2.71095780261738,0.03920209332985,0.112352391192766,-4.2346886594148 +"O15971",0.242504747637964,17.1444620580953,2.70267592374099,0.0396090479998703,0.113324000109406,-4.24569794358387 +"Q7K0S5",-0.195202673841003,18.3059173208063,-2.70065425926702,0.0397090856812475,0.113415676226577,-4.2483862964953 +"P53034",-0.30382482782629,15.8172129429591,-2.6971757358108,0.0398818574220904,0.113714424239396,-4.25301276883384 +"A1ZB79",-0.251652927737311,20.8161658857751,-2.689763206594,0.0402527601879194,0.114576116029777,-4.26287498195398 +"Q9VVT6",-0.184325956585962,20.4798963854224,-2.67694467516141,0.0409030535176593,0.115971750747349,-4.27994076538824 +"Q7JVG2",-0.219031291821958,14.8070729477159,-2.67594328731127,0.0409543337651133,0.115971750747349,-4.28127452941114 +"A1ZB69",-0.312430971236036,20.2906235364547,-2.67526671345837,0.0409890201280518,0.115971750747349,-4.28217571574134 +"P19107",0.186010807738722,24.104521879085,2.67463992108676,0.041021182818307,0.115971750747349,-4.28301062773103 +"Q27268",0.458007751946557,19.120444796227,2.6704625206912,0.0412362405223114,0.116382485941143,-4.28857591748753 +"Q9VVW8",-0.351486145086101,15.6950340253292,-2.66256157421097,0.0416463497487159,0.117040518271991,-4.29910576474395 +"Q9VAY3",0.258542327952552,13.937030503818,2.66182634260699,0.041684737766387,0.117040518271991,-4.3000858897106 +"Q9W1W4",0.183000662138308,17.3980811273764,2.66098302146297,0.04172881671929,0.117040518271991,-4.30121016079574 +"Q9VJ31",0.241008253596386,17.2108260092507,2.66057684432787,0.0417500649711239,0.117040518271991,-4.30175167510868 +"Q9W402",-0.191444969312506,21.2465009832006,-2.65904705757016,0.0418301979313543,0.117068406291106,-4.30379130210925 +"Q9VMT5",0.192625339856654,16.4266140020067,2.65636278273716,0.0419712091512631,0.117088944476417,-4.30737063361349 +"Q9VFN9",0.187944774403086,16.226006407242,2.65623507231983,0.0419779309333916,0.117088944476417,-4.30754094273849 +"Q9V9M7",0.200527230655954,18.2863382908697,2.6547775364185,0.0420547282981571,0.117107323541446,-4.30948474219312 +"M9NEW0",-0.199753418565479,18.3388309607909,-2.65074078685312,0.0422682217578405,0.117505656486797,-4.31486911508233 +"Q9VIU3",0.40405942994766,12.2624981947496,2.64763829160182,0.0424331047258904,0.117767751552055,-4.31900821887431 +"Q8MT58",0.186700305364802,21.6293292523857,2.63984636643333,0.0428502958401186,0.118341322784399,-4.32940691039117 +"Q9W3H4",-0.235423566397909,19.4119057554227,-2.63970912675266,0.0428576836339894,0.118341322784399,-4.32959010546581 +"Q9VV75",-0.197571427091798,23.9567159431158,-2.63850555252548,0.0429225328760949,0.118341322784399,-4.33119676480214 +"Q9VY24",-0.225482608604974,17.8122659518957,-2.63848648091331,0.0429235613216796,0.118341322784399,-4.33122222452426 +"Q9VJ68",-0.35361144989529,17.8239050794216,-2.62788910681905,0.0434991858589657,0.119680200845801,-4.34537352949614 +"Q9VY78",-0.229807572011399,18.710476524237,-2.62691187393892,0.043552686998442,0.119680200845801,-4.34667891544037 +"P54352",0.211891956509225,16.1294152063545,2.6214768384265,0.0438515469591203,0.120303257118113,-4.35394033055042 +"Q9W1B9",0.437771604506018,20.5754377797199,2.61544817100657,0.0441856522189972,0.121020801151539,-4.36199742309597 +"Q9XZ19",-0.199859241336977,16.2260135362842,-2.61146457626088,0.0444079338315275,0.121272466017222,-4.36732281268534 +"P52029",-0.299097521680538,18.1253472537085,-2.61078272528873,0.0444461018965365,0.121272466017222,-4.36823444723589 +"Q9VS11",-0.212514963086585,14.9499125515727,-2.60989846848814,0.0444956529991246,0.121272466017222,-4.36941674842933 +"P29829",0.232633402487572,21.2832051510121,2.60602954981458,0.044713160400843,0.121596053033222,-4.37459037337783 +"Q9W3B3",-0.22790082868981,15.6419814395111,-2.60519590617852,0.044760177795203,0.121596053033222,-4.37570528530039 +"O96824",-0.196524231345073,16.6166544017432,-2.60344982299477,0.0448588302753195,0.121607927689448,-4.3780406512475 +"Q6IHY5",-0.217494047338942,20.9482689663838,-2.60172528050532,0.0449564968753403,0.121607927689448,-4.38034741961039 +"Q9VFS8",-0.221738911032876,17.3071345226289,-2.60018070724496,0.0450441666879089,0.121607927689448,-4.38241363784556 +"P08182",-0.190450054852494,19.7428432301841,-2.59941494951572,0.0450876996315837,0.121607927689448,-4.38343807552469 +"A1Z7K8",-0.206981657189985,17.5414576820497,-2.59868777897236,0.0451290810789979,0.121607927689448,-4.38441092914197 +"Q9W385",-0.271601843368611,16.9270041362298,-2.59482777369278,0.0453494337404379,0.122001304536834,-4.38957570310877 +"Q7K2L7",-0.546075960524059,18.1836556590601,-2.59357239792761,0.0454213489912315,0.122001304536834,-4.39125564818787 +"Q9W4W8",0.233674457542332,17.2891416491979,2.5901371130335,0.0456187738624149,0.122334589714643,-4.39585330796399 +"A1Z6P3",-0.221727707291432,17.2913850333474,-2.58660119259399,0.0458229523041569,0.122684886746924,-4.40058650258086 +"Q9VDI5",0.312080059026044,16.7343018343497,2.57965779749858,0.046226774497819,0.123567724138401,-4.40988342696186 +"Q9VEA1",0.229311821516955,18.2540991314507,2.57814099331955,0.0463155017889316,0.123606811174301,-4.411914797834 +"Q4V5H1",0.213264795556485,14.9134158908161,2.57585697178748,0.0464494559580461,0.123766282009618,-4.41497394913658 +"Q9VEP9",-0.180453905309189,17.5796312779498,-2.56733307583885,0.0469530785682635,0.12490866834428,-4.42639363988866 +"Q9VKI8",-0.181910866408074,22.3459612353176,-2.5629083785078,0.0472168294608035,0.125363124819749,-4.43232338615354 +"Q9VVJ7",-0.205044790070037,18.1290382087131,-2.56194906355655,0.047274223927831,0.125363124819749,-4.43360917512441 +"Q9VH98",-0.254905045364104,17.0457548328241,-2.53742633368753,0.0487672560466091,0.129011394003345,-4.46649694155636 +"A1Z934",-0.176497259991347,19.3221255329442,-2.53682226547838,0.0488046700336396,0.129011394003345,-4.46730752607221 +"Q7JXC4",-0.202435527632364,21.6314185049361,-2.52507592809158,0.0495383851892704,0.130743712809657,-4.48307388427045 +"Q868Z9",-0.208648312435759,20.1892306843178,-2.52169820180884,0.0497515635237221,0.131098906726017,-4.48760905510589 +"Q8MLS2",0.185106184848213,17.4328370115041,2.51989412506267,0.0498658289129558,0.131192748622729,-4.49003159728208 +"A0A0B4KI23",-0.181716024208033,20.4937161492349,-2.51606584554341,0.0501092393906652,0.131461880828509,-4.49517287045377 +"Q9W5R5",-0.184442996530931,15.902348020039,-2.51435195402969,0.0502186268182632,0.131461880828509,-4.49747484132862 +"P14318",-0.186916249020349,21.9728084891477,-2.51433149180272,0.0502199343519817,0.131461880828509,-4.49750232563414 +"Q9VX69",-0.194838957171054,18.2786301646596,-2.51268505661464,0.0503252615903576,0.131461880828509,-4.49971384743691 +"Q9VWF0",-0.181871362538514,16.5142970802149,-2.51210860060753,0.0503621953533678,0.131461880828509,-4.50048818856353 +"Q9VRQ9",0.243698619660604,14.6608522374452,2.50442584112174,0.0508572286066442,0.132546652056066,-4.51080998368337 +"Q9VPF6",0.316446870771726,14.0402107791572,2.50094663398013,0.0510831294110675,0.13292770648621,-4.51548533183182 +"B7Z0Q1",0.243215776342378,17.8422694052379,2.49786098682307,0.0512843802688108,0.1332435300442,-4.51963234286273 +"P91941",-0.176370783696676,22.9956867161707,-2.49491894752711,0.0514770592182087,0.133536134954856,-4.52358680579449 +"Q03427",-0.172759914060123,21.7233060523574,-2.49336296964674,0.0515792773880182,0.133593532116792,-4.52567840987689 +"Q9VEJ0",-0.171063385679286,22.2576347232613,-2.48882350415516,0.0518787415380816,0.134110327856316,-4.53178122688423 +"Q9VAD4",0.21426398135806,13.2007883262356,2.48721832043521,0.0519850808529346,0.134110327856316,-4.53393946729808 +"Q8IPW2",-0.185133938165768,17.3018558442291,-2.48669178846251,0.0520200132632112,0.134110327856316,-4.5346474405 +"Q9VN88",-0.201540825382224,17.0823031854658,-2.4823200948641,0.0523110265496398,0.134652457229628,-4.54052612956094 +"Q9VNA5",0.214956416830749,17.3724337941629,2.47480452792335,0.0528154165493584,0.135741317109907,-4.55063458513302 +"P45888",0.222724404516413,17.2577238559123,2.45910040431644,0.0538862995871334,0.138013978996392,-4.57176508835629 +"Q09101",0.225704702705896,14.832714351769,2.45864817405531,0.0539174808355393,0.138013978996392,-4.57237374426717 +"Q9VRL2",-0.272376259697513,11.8072052149242,-2.45718743022477,0.0540183313403534,0.138013978996392,-4.57433981729926 +"Q7K738",-0.182027958162088,19.7524042893356,-2.45700916878845,0.0540306524488272,0.138013978996392,-4.57457975273624 +"Q9VRD9",-0.261113940009091,16.4120487281104,-2.44582337384194,0.0548098550741903,0.139757191210692,-4.58963823739006 +"Q9VU95",0.203002044652637,16.1900706583511,2.44362965006732,0.0549640781622692,0.139757191210692,-4.59259206678405 +"Q9VVH3",-0.210413625328545,19.8011879241019,-2.44362424257937,0.0549644588934137,0.139757191210692,-4.59259934815776 +"Q9VDH3",0.182318208611754,20.6348964108537,2.43472768684475,0.0555946921341499,0.140909924982231,-4.60458043930698 +"Q9NK57",-0.221499139465044,15.5055483338941,-2.43313488248224,0.0557083413770738,0.140909924982231,-4.60672581041514 +"Q9VG51",-0.181198167838222,19.1124328568916,-2.43298455306834,0.0557190804731662,0.140909924982231,-4.60692829623989 +"Q9GU68",0.219438721326469,22.2360171263819,2.43231719567026,0.055766781317502,0.140909924982231,-4.60782720191486 +"Q9W337",-0.295379053713921,17.8518692721521,-2.43129117001402,0.055840204084685,0.140909924982231,-4.60920925315095 +"Q9VVE2",-0.220351348181815,18.3155981882395,-2.42976698426755,0.055949466522297,0.140972371841679,-4.61126239617291 +"P16620",0.21893454637978,17.4916715424629,2.42582117582054,0.0562333895010233,0.141468846864665,-4.61657796665621 +"A1ZBD8",0.382252316351936,14.1931246980915,2.42436066082707,0.0563388724575182,0.141468846864665,-4.61854563388213 +"Q9VII5",0.183994371246403,17.5640775049922,2.42350251556402,0.0564009491396897,0.141468846864665,-4.61970179905955 +"Q9VX36",-0.168397014820318,22.2554333742896,-2.4210974599124,0.0565753168867324,0.14162699764604,-4.62294223126507 +"Q9VRJ5",-0.236616354512392,17.2026654987498,-2.4202923383113,0.0566338174040221,0.14162699764604,-4.62402705096075 +"P41375",-0.28771015214441,16.6520066289666,-2.41493644188361,0.0570246302759429,0.142390843263881,-4.63124415037358 +"Q9VI09",-0.199057104487377,20.1362811575381,-2.4110811838271,0.0573077284234814,0.142883843064824,-4.63643973397025 +"Q8IQ70",0.206033409448221,18.0434654194935,2.40343366504727,0.0578737549702528,0.143981276040302,-4.64674743882344 +"A8JNP2",-0.221463719351402,21.072087406805,-2.39984391620772,0.0581415059102909,0.143981276040302,-4.65158651602742 +"M9PHA0",-0.247921365516667,17.4091932742555,-2.39980794494907,0.0581441956100488,0.143981276040302,-4.65163500824341 +"Q9W1E8",-0.255165624788912,15.347920264093,-2.39962905472987,0.0581575738465184,0.143981276040302,-4.65187616755975 +"Q9VN91",0.251839409647037,19.6926820996064,2.39933616699841,0.0581794844431438,0.143981276040302,-4.65227100736892 +"P08985",-0.198688625510627,20.6138238443008,-2.39401592646334,0.0585790241191018,0.144666961272179,-4.65944363105556 +"Q9Y162",-0.191427329434845,20.1161893085175,-2.392380933878,0.0587023967133815,0.144666961272179,-4.66164805655756 +"P11046",0.198021320726848,21.0593111245853,2.39219100490484,0.0587167462717418,0.144666961272179,-4.66190413871452 +"Q9VAP3",0.214420093439694,16.3709535312295,2.38949089349645,0.0589211512900711,0.144956460695927,-4.6655448229818 +"Q08012",0.197011712693929,19.1751262361048,2.38662326380124,0.0591390698753741,0.145278304200477,-4.6694116032825 +"Q9W5B4",-0.165876285320149,18.6814014065074,-2.38129185889511,0.0595465065261083,0.146064077772866,-4.67660119004542 +"Q9VRD4",0.167430523834202,20.2730694005705,2.37538233936078,0.0600016257875891,0.146964334528192,-4.68457124948562 +"Q9VWW2",-0.36006957607581,15.1051102963751,-2.37194314361057,0.0602682005561999,0.147400818955633,-4.68921002904114 +"Q9W0N6",0.191833551524178,14.5516494982629,2.37060331861294,0.0603723929726358,0.147439460436832,-4.69101725896354 +"Q9VNC1",0.613326236943864,15.6308680054115,2.36123230600031,0.0611065249407576,0.149014157311672,-4.70365854787698 +"Q9W077",-0.163187956899694,20.8846820681003,-2.35142130905827,0.061885325435821,0.150693026024744,-4.71689536676875 +"Q24238",0.207991019021083,16.2815410875045,2.34947719886539,0.0620409003151343,0.150851635168577,-4.71951854838767 +"Q9VYT6",0.274528548969638,16.4417107147981,2.3482270035545,0.0621411654290383,0.150875493356093,-4.72120546982517 +"Q9V3W2",-0.16904238903447,21.5673060672551,-2.34656681130129,0.0622745787323019,0.150979647275406,-4.72344565465377 +"Q7K0S6",-0.16880220960847,17.2342507608298,-2.33920727462561,0.0628696724292075,0.152201180859098,-4.73337683774021 +"A8WH76",0.20402012514106,19.1262199703356,2.33769842407728,0.0629924238588455,0.152277337676166,-4.73541303629324 +"Q9VHN4",-0.313731127501129,14.5401696748879,-2.33613887746061,0.0631195674973483,0.152363876390126,-4.7375176864921 +"Q9VRZ7",-0.164545610645446,17.1598799584498,-2.32698307639181,0.0638715262947474,0.153956222340518,-4.74987439835535 +"Q0E8X7",-0.187417502072847,20.920781835852,-2.32143201321549,0.064332060884502,0.1546713219666,-4.75736667554976 +"Q9VCK6",0.174260764543929,16.7093106423892,2.32117275840516,0.0643536555424581,0.1546713219666,-4.75771660105246 +"Q9W2M4",-0.163951618172629,22.6378187790356,-2.31964136831904,0.0644813699675361,0.154688601205317,-4.75978358853395 +"P48148",0.278335317426293,20.684417565261,2.31852179530925,0.0645749100742628,0.154688601205317,-4.76129474394699 +"Q9VQT8",0.266608291525397,18.2270745851915,2.31775496436364,0.0646390617746438,0.154688601205317,-4.76232978981256 +"Q24583",-0.203405784891423,21.2577991867834,-2.315355266178,0.0648402537263445,0.154785936149901,-4.76556887121368 +"Q9VWU1",0.201454967985269,14.9836521757704,2.31505673298625,0.0648653293577825,0.154785936149901,-4.76597183148456 +"Q9W227",-0.172200703336799,21.8982295346046,-2.3107254617441,0.0652302995078335,0.155434485112952,-4.77181827867955 +"Q9VPU6",-0.192596941818655,15.2357618257377,-2.30840384580035,0.0654268245394626,0.155503098859211,-4.77495211644991 +"Q9VCC0",-0.174962806252402,17.5866237534169,-2.30818303596172,0.0654455488004592,0.155503098859211,-4.77525017935876 +"P20432",-0.176111537855636,23.5106244707612,-2.29918722734653,0.0662132293040147,0.157103366257605,-4.78739358504111 +"Q9VLT3",0.178258426597608,19.454590263225,2.29727664738662,0.0663774994091949,0.157269416213831,-4.78997273490245 +"Q9VEN9",-0.20900992022592,14.88436520934,-2.2920932333413,0.0668253442683602,0.157894177757308,-4.79697007291384 +"Q9Y136",0.352971552464599,15.2966035436443,2.29103590123231,0.0669170898364646,0.157894177757308,-4.79839742980099 +"Q9VIE7",-0.174502844099479,14.9109205421508,-2.29094285328059,0.0669251700685952,0.157894177757308,-4.79852304108141 +"Q8IRH5",-0.240544682714969,14.3381322070427,-2.28895725671146,0.0670978447382159,0.158077973196814,-4.80120352965065 +"Q9VBI3",-0.223366314907892,18.5203909062458,-2.28411963194794,0.0675205202983403,0.158835171094835,-4.8077342055482 +"Q9VIN9",0.255829172058846,16.4330397659529,2.28310310073498,0.0676096951302956,0.158835171094835,-4.80910650407077 +"Q9VEC8",-0.246075368441566,16.5143527851797,-2.27578671256638,0.0682552115711706,0.16012615035262,-4.81898352064992 +"M9PGG8",-0.196841596955803,18.5048512781779,-2.27337449211865,0.0684694659126551,0.160292173976711,-4.82223998174775 +"Q9VF27",-0.16922431543485,22.2457701699971,-2.27282717832369,0.0685181774852486,0.160292173976711,-4.82297884626517 +"Q7KN90",-0.20711742452148,17.1920491417584,-2.26967447233871,0.0687994866310778,0.160651319040001,-4.82723493774943 +"Q9VKC7",0.425294375594886,13.5784842606917,2.2689497513608,0.0688643244086334,0.160651319040001,-4.82821329414547 +"Q9VRP4",0.287231370732847,14.2332150095226,2.26603623797648,0.0691256370350367,0.161035701919611,-4.83214645548215 +"Q9VVN2",0.376582239162909,14.9426166931508,2.26347358054586,0.0693563479686026,0.161347822052481,-4.83560594903671 +"Q9V455",-0.190656324730305,19.2494162626273,-2.26106279824374,0.0695741288872953,0.161430904204298,-4.83886039355454 +"Q8MRM0",-0.219396837522297,18.4798834364162,-2.260935776465,0.0695856235748744,0.161430904204298,-4.83903186637782 +"Q9VJI5",0.299837360352695,17.5837581417561,2.25961837257924,0.0697049589025537,0.161483154790916,-4.84081028894073 +"Q9VXK7",0.177906073804845,18.0634543890306,2.25625608418963,0.0700105086145741,0.161822662845936,-4.84534915242169 +"Q86BM0",-0.187950953599334,17.3702078697905,-2.25531350501233,0.0700964196635969,0.161822662845936,-4.84662155954474 +"Q9V3Y0",-0.161247182802885,16.3869961224304,-2.25480780833691,0.0701425570968896,0.161822662845936,-4.84730420771458 +"Q4QQ70",-0.236072062416333,16.1958581542754,-2.25077724017904,0.0705114359521857,0.162320355657701,-4.85274507695747 +"Q9W1M9",-0.406517185346795,13.9977514622584,-2.25032543946702,0.0705529123811948,0.162320355657701,-4.85335495618559 +"Q9W265",-0.155700933239268,16.9656068393521,-2.24780391100064,0.0707848684412274,0.162629697741002,-4.8567587019983 +"Q9VUQ7",0.214781125676529,16.5143735453136,2.24419561863229,0.0711181971919403,0.163170774300078,-4.86162935017604 +"Q9VHM3",0.258787161003804,14.8775742963886,2.23318181498579,0.072145916641534,0.165301358458899,-4.87649551770284 +"Q24372",0.334453349264331,16.9221485284894,2.22620740641446,0.0728047996570624,0.166517420254108,-4.8859086563763 +"Q9W445",-0.153203520064205,16.3084111971358,-2.22545425899528,0.0728763290080928,0.166517420254108,-4.8869251156336 +"Q9VE75",-0.252374447212514,15.1985821766725,-2.22180898617802,0.0732235825250283,0.16708199131566,-4.89184471258447 +"Q23983",-0.188251596709271,22.4279970745953,-2.21784781974192,0.073602904841094,0.167532822860511,-4.89719039852492 +"Q9W1F2",0.386048917080998,13.7680671364542,2.21764858822155,0.0736220378637617,0.167532822860511,-4.8974592592886 +"O61491",0.171300312897717,20.931041578397,2.21349616097842,0.074022006458637,0.168213496965949,-4.90306275922685 +"Q9W1I8",-0.190941358049194,18.0213510696181,-2.20573053668561,0.0747761526924013,0.169547292255778,-4.91354124388768 +"Q9VR31",-0.163777027964272,17.2659062874214,-2.205361061553,0.0748122344725734,0.169547292255778,-4.914039762869 +"Q94516",-0.155369233923562,23.3383905136925,-2.2011729979728,0.0752225097780188,0.170245788751337,-4.91969036215091 +"Q9VFM0",-0.194807911462323,14.3625441981751,-2.19754634511074,0.0755796984399485,0.170822407856144,-4.92458319163561 +"Q9XZ63",-0.16650920542105,18.9193432667614,-2.19325910419458,0.0760042483952004,0.17154950787983,-4.93036685436813 +"Q7KLX3",0.175560072438518,19.1865348410354,2.19137004175162,0.0761921098440026,0.17158961477164,-4.93291513799735 +"A1Z6R7",-0.152167069001887,18.0910365393416,-2.19078847228913,0.0762500432694534,0.17158961477164,-4.93369963868337 +"Q9VVG0",0.164151029421078,18.1354295436218,2.18998024702018,0.0763306319907416,0.17158961477164,-4.93478986991375 +"Q9VBC1",-0.254638236807043,13.2591932747073,-2.18813672347213,0.0765147858952156,0.17163414761921,-4.93727657438812 +"Q9VIT0",-0.154459634801647,16.4955338914002,-2.1877223930098,0.0765562385064102,0.17163414761921,-4.93783544737943 +"Q7KND8",-0.203975129174594,15.398136057428,-2.18010519191497,0.0773225331784645,0.173119443411649,-4.9481091635627 +"A1Z9I0",-0.176938823881073,19.3219606749625,-2.17827360613577,0.0775079893358104,0.173176049006795,-4.95057928186568 +"Q9W1X5",0.15565326867452,19.4638114352131,2.17780551164627,0.0775554607962086,0.173176049006795,-4.95121054948026 +"Q7K519",0.26438670649663,15.7143877379058,2.17512020552549,0.0778283790581964,0.173553123354374,-4.95483180453102 +"Q9VXI1",-0.234392300533784,19.7739875471513,-2.17279378589434,0.0780656365051805,0.173849775287905,-4.95796891347796 +"Q9V3F8",-0.154780637113813,18.6299523643523,-2.16714247368015,0.0786451431680529,0.174780764959613,-4.96558885462278 +"Q8I725",0.169373508757733,18.9439256144342,2.16480685592099,0.0788859611548935,0.174780764959613,-4.96873778778959 +"O97062",-0.180972603478097,18.4318355249156,-2.16465331131884,0.0789018196824294,0.174780764959613,-4.96894479392861 +"Q8IR45",-0.217570162818445,14.8310995512476,-2.16390969886109,0.0789786693813655,0.174780764959613,-4.96994730826935 +"Q8SXG7",0.181004301550708,14.0097267250946,2.16362984120396,0.0790076119781462,0.174780764959613,-4.97032459862986 +"Q9VMU0",-0.159268015260761,21.2497895875607,-2.16236831490841,0.0791382157417721,0.174837806433478,-4.97202529427276 +"Q0KI81",-0.153855905197986,15.7169247657232,-2.15830528520557,0.079560393625028,0.175505396178296,-4.97750240324216 +"Q9VZZ5",-0.216270447033658,18.4399108884423,-2.15570891084193,0.0798314099050919,0.175505396178296,-4.98100211000864 +"Q7K568",0.251512956740047,16.2679314824978,2.15561665872277,0.0798410571810533,0.175505396178296,-4.98112645418126 +"Q9VZW1",-0.170482840450509,14.75418554168,-2.15535615531101,0.0798683059442051,0.175505396178296,-4.98147757815396 +"Q9VSD6",-0.253716887333054,16.2852769683469,-2.15441829194059,0.0799664874673293,0.175505396178296,-4.9827416732697 +"Q9VYF0",0.182764735625435,16.2540955533727,2.15149500633039,0.0802733269282912,0.175947318418383,-4.98668160747362 +"Q9VM69",-0.269708070445644,16.6725890842876,-2.14164069453825,0.0813167794974325,0.178000509451073,-4.99996064887097 +"Q9VTT2",-0.407214909842526,13.9101153058329,-2.13828988877514,0.0816748121942169,0.178405644152449,-5.00447511252706 +"Q9V931",-0.372130893248276,17.6977499626172,-2.13790750259474,0.0817157746597549,0.178405644152449,-5.00499026360673 +"Q8IP62",0.205371229146122,15.8019372427933,2.13593809896733,0.081927083907977,0.178633171187589,-5.00764335069552 +"Q24297",0.240190716189058,17.0982484589325,2.1300776174847,0.0825592737865374,0.179776590960763,-5.01553734561971 +"Q95RA9",-0.147812390459574,20.5089306256941,-2.12889859350615,0.0826870734783164,0.17982012850304,-5.0171252970903 +"O62602",0.303703103160506,14.5198987377266,2.12450372717545,0.0831652753448516,0.180624582389599,-5.02304391609897 +"Q9VXF9",-0.172568822045525,17.46007730074,-2.1234614156199,0.083279111322946,0.180636615977469,-5.0244474817787 +"Q9VH26",-0.194161079487589,18.5617779446106,-2.12005178641382,0.0836526308793899,0.181211153645224,-5.02903850283951 +"Q9W401",-0.14769594791364,24.3748076152655,-2.11758125862574,0.083924364968291,0.181563995806886,-5.03236469624886 +"Q9W403",0.156554097604392,15.4512236859729,2.11537696122137,0.0841675934102495,0.18185433394857,-5.03533220491884 +"Q5U126",-0.17984549473146,21.7903345174936,-2.11218122173867,0.0845215263423901,0.181898930795525,-5.03963401166993 +"Q9VJ19",0.147466369901089,19.1105976232276,2.11195127620772,0.0845470529143786,0.181898930795525,-5.03994352356024 +"Q9VCX3",0.329697833015402,12.8275476952514,2.11118381223395,0.084632308333641,0.181898930795525,-5.04097652845381 +"Q94522",-0.190143576742866,23.538718883224,-2.11080759605993,0.0846741338554061,0.181898930795525,-5.04148290392588 +"O61722",-0.148277256505697,18.8630900525722,-2.11027398349111,0.0847334947410809,0.181898930795525,-5.04220111800949 +"Q9VSL5",0.274577906588519,17.5574205455591,2.10755413060252,0.0850367350242275,0.182228278873725,-5.045861672293 +"P40304",0.184147050408402,18.7737856854734,2.10693953891926,0.0851054132150071,0.182228278873725,-5.04668877758067 +"Q9VYS5",-0.236662545098641,14.1544033022394,-2.10535886115497,0.0852823132512189,0.18237294679876,-5.0488159332977 +"Q24185",-0.170739116973596,18.7323755684775,-2.10047037157401,0.0858318315338339,0.183313053775205,-5.05539366625478 +"O44386",0.162051365181338,16.8976481683296,2.09583892257002,0.086355856983593,0.184196380369096,-5.06162436098619 +"Q8SWS3",-0.148834780188373,16.5596484271167,-2.09168569775324,0.0868286052275717,0.184486858802376,-5.06721069913553 +"Q9W0M4",0.154710329781665,17.7279083480905,2.09163878933016,0.0868339600125608,0.184486858802376,-5.0672737882942 +"Q9VW73",0.28496840477359,14.1864475151829,2.09036706356654,0.0869792635826237,0.184486858802376,-5.06898413969827 +"Q9VZV2",0.168903532535492,15.0388818525486,2.09012024735565,0.0870074933532537,0.184486858802376,-5.06931607364489 +"Q9VEP6",-0.154416253619445,18.5425937735435,-2.08881582488649,0.0871568458849494,0.184486858802376,-5.07107028529395 +"M9PFN0",-0.168459483528505,16.6702159098351,-2.08857182291016,0.0871848129794836,0.184486858802376,-5.07139841289928 +"Q8MSV2",0.166862423981541,18.3084430095374,2.08786164104491,0.0872662659442895,0.184486858802376,-5.07235342781604 +"Q9VXC1",-0.179713904881783,18.291207538133,-2.08228685982374,0.0879084092837623,0.185609147702931,-5.07984907902036 +"Q9VLU4",-0.186686422981726,16.9633370636939,-2.08062001895795,0.0881013602020695,0.185781376507019,-5.08208989706283 +"Q9VUN9",0.146336140270355,16.8518813800856,2.07842633478521,0.0883559685310417,0.186083024633558,-5.08503872240324 +"Q9VM12",0.151769202327813,18.879484631757,2.07540959117287,0.0887073535293083,0.186587472492921,-5.08909345355788 +"Q9W0Y1",-0.219152857680847,17.6095844622475,-2.06820675612807,0.0895522075293574,0.188127307504998,-5.09877231273787 +"Q9W3N9",-0.253609361646202,20.1894260688038,-2.06624307256802,0.0897839827474956,0.188376960028708,-5.10141045223505 +"Q500Y7",-0.173073863901028,20.0258912356196,-2.06172487888594,0.0903196351191578,0.189262752988386,-5.10747952906462 +"Q9W3K6",0.145725072285961,16.2495557109765,2.06014444907258,0.0905077837275802,0.189419050511423,-5.10960212661372 +"Q9VYT0",0.141883837571378,18.1636242323822,2.05883243140224,0.0906642868231551,0.189508810051407,-5.11136410561776 +"Q4V5I9",0.175573422307732,15.9856630638171,2.05717582412154,0.0908622948665216,0.189684991035492,-5.11358868611794 +"Q9VAI9",-0.151028959348601,22.1781504843498,-2.05582312101037,0.0910243107879354,0.189785687992845,-5.11540502914425 +"A1ZB71",-0.296486088499393,19.2214996056544,-2.05395102706352,0.091249029197763,0.190016704996091,-5.11791857704156 +"Q9VE08",-0.212971848869788,14.615129041602,-2.05150192229649,0.0915438777625876,0.190393002628424,-5.12120647532268 +"Q95RI2",-0.202599298719113,16.7449699351292,-2.04481707328208,0.0923537019694079,0.191718378977056,-5.13017865833033 +"Q9VQ88",-0.156311885391437,16.4593659563182,-2.04434625560208,0.0924110172047679,0.191718378977056,-5.13081045319601 +"Q9W314",-0.19263762162355,16.317944831518,-2.04262396768456,0.0926209946719862,0.191915303245805,-5.13312147056739 +"Q9VJZ1",0.307000629048758,15.559246770482,2.04122523610358,0.0927918881796168,0.192030855438711,-5.13499817031422 +"P13496",-0.149470168843251,18.2412722134407,-2.03539127637235,0.0935081919372328,0.193273437610043,-5.14282411439534 +"Q7JZK1",-0.221872998310705,21.4611086426482,-2.03298322281286,0.0938055220488534,0.193648033140455,-5.14605363929226 +"O46106",-0.228565567765273,17.0236741935348,-2.02860300482843,0.0943488698724864,0.194528943074546,-5.15192695703795 +"P35992",0.229364704686843,15.8951433912785,2.02161314314731,0.0952226774050039,0.196088180137712,-5.16129634760777 +"O76752",0.157147139867231,17.8413254620616,2.01630103882464,0.0958923329526875,0.197137890153196,-5.1684141899291 +"Q9V595",-0.143518160557122,18.4985504435708,-2.01569685411212,0.0959688050386063,0.197137890153196,-5.16922360733872 +"Q9W229",0.20846344247833,18.9974360705545,2.01173560051842,0.0964717447376195,0.197927269646186,-5.17452968519429 +"Q7JWQ7",-0.226177369532035,13.9906806610758,-2.00851713597657,0.0968823776711989,0.198385033109224,-5.17883982462864 +"Q7KK90",-0.164164452808578,21.0604397848244,-2.00812341313526,0.0969327350024087,0.198385033109224,-5.17936703403371 +"Q9VY05",0.21623589546406,18.0917451934899,2.0048830637389,0.0973482033705064,0.198756925909631,-5.18370547326084 +"Q9VR30",0.20407395978209,17.3416398458952,2.00484758209741,0.0973527628706048,0.198756925909631,-5.18375297388163 +"Q9VN50",0.162655817829489,17.8009544537851,1.99833551085844,0.0981933213407889,0.200227946205912,-5.1924690554251 +"Q9I7C6",0.257268018973466,15.4264399644963,1.99691951576196,0.0983770810561513,0.200303188394117,-5.19436379464044 +"Q7K1W5",-0.153628338359773,19.8945612473389,-1.99620153005357,0.098470392376005,0.200303188394117,-5.19532446039327 +"Q9VSU7",-0.229171181847745,14.7413632788802,-1.99058462642792,0.0992035315972562,0.201548709749359,-5.20283826488812 +"Q7KUT2",0.16691413052461,18.1828559343102,1.98793224123426,0.0995516809621222,0.202009980346496,-5.20638538417475 +"Q9VVM1",0.189270654127517,15.6319103319634,1.98535699378385,0.0998909078495272,0.202361763109417,-5.20982871515905 +"Q9VDT5",-0.182948363170965,19.0454615025646,-1.98477541294869,0.099967681536067,0.202361763109417,-5.21060625305094 +"Q8IPD8",-0.187548835340781,18.1013480699519,-1.98230358025141,0.1002946622623,0.202777571701232,-5.21391058327989 +"Q94529",-0.150627810107714,19.6171428784147,-1.97819680820328,0.10084034973395,0.20355988649787,-5.21939919472427 +"Q9VRP3",0.237917096601706,17.9613422897382,1.97755672562471,0.100925675140131,0.20355988649787,-5.22025450408291 +"Q9V6Y3",0.19721213501497,15.2521619390433,1.97589026362237,0.101148168870641,0.203762253232162,-5.22248112372696 +"Q9VVH5",-0.156142177083993,22.5038863794588,-1.97362332774355,0.101451642547943,0.204127068480058,-5.22550962015609 +"A1Z8Z7",0.159735343298085,18.9474645279338,1.96984268691217,0.101959836674278,0.204902418762284,-5.23055920549986 +"Q9VHA8",-0.13520270806179,18.5364447910098,-1.96623994795373,0.10244654880114,0.205632783875213,-5.2353698414296 +"Q7K188",-0.163284082217451,22.0791402397379,-1.96398681456756,0.102752146961279,0.205944969082205,-5.23837771609028 +"Q9I7X6",0.270667767754254,14.7764238693412,1.96327404455085,0.102849016334219,0.205944969082205,-5.23932913718399 +"Q9VU70",-0.306809581008508,14.8808182336541,-1.95962935729778,0.103345815303233,0.206691630606466,-5.24419332468653 +"P42207",0.20824025380573,16.0678489986899,1.95562600636148,0.103894338986479,0.207181454942744,-5.24953458367237 +"Q7KMP8",0.163636212073751,19.2132450762903,1.95559292819225,0.103898883637329,0.207181454942744,-5.24957870942418 +"Q9VYS2",-0.147756737959066,14.9049230510927,-1.95358026872944,0.104175789036068,0.207181454942744,-5.25226334629827 +"Q9VG97",-0.161276300737839,20.0913264015717,-1.95334833897256,0.104207746908587,0.207181454942744,-5.25257268393892 +"Q9VM11",-0.146602484971234,17.8066019211067,-1.95331911085107,0.104211774998179,0.207181454942744,-5.25261166670524 +"P07486",0.175181687210511,22.1737216376888,1.95012143146435,0.104653429567615,0.207811810141407,-5.25687599135789 +"Q9VK11",0.153524313533229,18.7338080736149,1.94303412857678,0.105639152210955,0.209519745407697,-5.26632343311975 +"C0HK95",0.142739459231631,19.943543010457,1.9396951481947,0.106106834828805,0.210151692961486,-5.27077240167102 +"A1Z7S3",0.140015736192119,20.0867539456031,1.93896235456033,0.106209758493125,0.210151692961486,-5.27174863318406 +"Q9I7J0",-0.167081857314134,20.9315803837817,-1.93412107613512,0.106892304511302,0.211251616024705,-5.27819668222984 +"Q9W3T2",-0.144725843438907,16.0907026500747,-1.92753521884303,0.107828013268457,0.212848669978445,-5.28696399697209 +"A1Z6L9",0.252883339671266,15.069957214574,1.92439987459594,0.108276413738781,0.213481156165824,-5.29113609279171 +"Q0E8V7",-0.228714070545326,19.7671189385446,-1.91942743653811,0.108991452444669,0.214600864080059,-5.29775035237746 +"Q9W483",0.319542409972165,15.6057408676047,1.91866415596977,0.109101638333267,0.214600864080059,-5.29876539363457 +"Q9VG00",-0.233195597873095,15.2217016489852,-1.91701204666497,0.10934052336196,0.214817423990282,-5.30096219374285 +"Q9VW00",-0.177212878784285,15.7478771441435,-1.9156510367854,0.109537717904778,0.214891076435492,-5.30277167148685 +"Q9W147",-0.14233549652492,13.7286147830677,-1.9143849779703,0.109721480735494,0.214891076435492,-5.30445470768456 +"Q9VTB4",-0.152101734588076,20.6217064366156,-1.91408885737663,0.109764506668489,0.214891076435492,-5.30484832747529 +"Q95RB1",-0.134051311069433,15.9524076317492,-1.91049247400896,0.110288431474411,0.215386031982217,-5.30962797579527 +"Q7JR49",-0.190667002915706,18.7831337857998,-1.91042666418377,0.110298042428889,0.215386031982217,-5.30971542314361 +"Q9U6M0",-0.18362965819933,16.2818001495055,-1.90969665887201,0.110404710638367,0.215386031982217,-5.31068540978915 +"Q9VBC9",-0.292074456848525,15.644559197982,-1.90732568480948,0.11075188247576,0.215746363123196,-5.31383535711728 +"P09180",0.141423681525364,20.4840054827618,1.90666990736355,0.110848101436798,0.215746363123196,-5.31470646304125 +"Q7PL91",-0.275865505253435,18.8293270539968,-1.90187943965702,0.111553570343566,0.216866381507073,-5.32106826091163 +"Q9VZJ8",0.234000444555134,14.8347236034588,1.89869537799207,0.112024998815829,0.217529334138303,-5.32529511269251 +"Q9VKG4",-0.201409357897866,15.998697372915,-1.89500958436273,0.112573245522585,0.218339736664735,-5.33018637934147 +"P00408",0.133494447726878,21.3839692618176,1.8902398798617,0.113286772528677,0.219468451309911,-5.33651342160038 +"Q9VIW6",0.321182535171735,15.0534004463836,1.88717866363146,0.113747137728545,0.220104670221825,-5.34057255608926 +"P20348",-0.298442412254193,17.3845790716561,-1.8827156212026,0.114421726608366,0.221153464638186,-5.34648824155105 +"Q9VQ35",0.257790012027858,12.5524480081491,1.87795631774352,0.115145572543447,0.222294924771377,-5.35279363288731 +"Q9W0C1",0.131127102642417,21.399878069056,1.87479183868407,0.115629431292791,0.222970972712574,-5.35698438549521 +"P09040",-0.148267616396465,16.773015442362,-1.87099092892287,0.116213329780879,0.223838145582571,-5.36201612519332 +"Q9VSY4",-0.132827835298862,20.4674232981799,-1.86772042240753,0.11671813998247,0.224476158261817,-5.36634407535599 +"A1ZAA9",0.15023598807835,16.6590671218877,1.86710272512592,0.116813732236965,0.224476158261817,-5.36716132052205 +"Q9VDV3",-0.165945805759634,17.4880310941662,-1.86576911956835,0.117020386118932,0.224614504080988,-5.36892556338972 +"Q7K3Z3",-0.141858198770088,19.9296225164818,-1.86369283629344,0.117342861990274,0.224781387669044,-5.37167179643065 +"Q9VC67",-0.177981035547129,14.889287473717,-1.86347432793023,0.117376851714471,0.224781387669044,-5.37196077435896 +"Q9VMQ5",0.1916604302499,13.4323705707952,1.85723989902602,0.118350850454483,0.22628672911508,-5.38020290715256 +"Q9V3U6",0.207149929256346,21.079224138063,1.85670854193878,0.118434241317425,0.22628672911508,-5.38090511728872 +"P02283",-0.150148638522381,21.4853738568567,-1.85529813461214,0.118655878308269,0.226450806656971,-5.38276882669666 +"Q9VW57",0.170496514273086,16.6186262833964,1.85066158507427,0.119387445591973,0.227586581997041,-5.38889347668663 +"Q9XYW6",0.153918761777367,16.7207538442552,1.84898279474355,0.119653453082712,0.227833287376672,-5.39111028323456 +"Q9VIX1",-0.305926886105503,17.2508223047043,-1.846256945079,0.120086646011244,0.228397406552742,-5.39470880484394 +"Q7K5J8",-0.139302209178648,18.350362391635,-1.84277585988555,0.12064216654928,0.229192635312299,-5.39930270830472 +"Q95R34",0.216225464220679,15.1299232523534,1.8381373768151,0.121386423722892,0.230344203378594,-5.40542111301869 +"Q9VHD3",0.133559518039066,15.6295031368771,1.8368853449986,0.121588108981205,0.230464733841647,-5.40707203850604 +"Q8SZA8",-0.18381237871224,18.0559253139635,-1.83553764321017,0.121805583372943,0.230614884297468,-5.40884884111023 +"Q9VSL4",-0.154264617420974,20.9077965126677,-1.83423590870376,0.122016012849401,0.230751371239004,-5.41056477094582 +"Q24090",0.140903360703328,15.998987184179,1.82921808957036,0.122830596317214,0.232028804821193,-5.41717669779205 +"Q9VIK0",0.208388962204623,12.770169784545,1.82653103316233,0.123269060390219,0.232593656935391,-5.42071575831155 +"Q9VQB4",-0.128320677376404,21.8713660719921,-1.82234047664591,0.123956010619125,0.233609124268066,-5.42623272861055 +"Q9VU75",0.146943494614771,18.1574719370969,1.82154199784854,0.124087340588433,0.233609124268066,-5.42728362311512 +"Q7JYH3",0.22895136656058,19.3629295550767,1.81833360715959,0.124616455601176,0.234340753035809,-5.43150520430875 +"M9PF61",-0.128565729896131,22.6946724266601,-1.81712794663164,0.124815875028951,0.23445144093276,-5.43309116911431 +"Q9W414",0.141341195119196,19.5061878261081,1.81592009149909,0.125015979553587,0.234563165236652,-5.43467978066286 +"Q9VFP1",0.416504402066369,15.451058499271,1.81505236040138,0.125159935228136,0.234569406697225,-5.43582090088957 +"Q9VE56",-0.150427363203629,17.4875823185572,-1.81167518287928,0.125721794967332,0.235357973070157,-5.44026090856834 +"Q9VA32",0.203518548550765,17.2527447601718,1.80593699124319,0.126682278595209,0.236890180153372,-5.44780058153186 +"Q9V3G3",0.164998706020587,15.1227168059637,1.80218632420112,0.1273140640464,0.237608055065203,-5.45272573787602 +"Q9VJ60",-0.170594123231062,16.501968724672,-1.80196715570541,0.127351079873076,0.237608055065203,-5.45301346270786 +"Q7K2W6",-0.182110902361529,16.4991097269742,-1.79803900430581,0.128016349397053,0.238582425468475,-5.45816894453718 +"Q9VXJ7",-0.204266205923025,14.8924034749349,-1.79520446825485,0.128498570934161,0.23921385749797,-5.46188745539616 +"Q7K3D4",0.134034117820931,18.6734437426708,1.7923905508909,0.128979087641377,0.239840711466909,-5.46557752827818 +"Q9W3X7",-0.130448837469977,21.6742024245658,-1.78873605448365,0.129605836543556,0.240737789927228,-5.47036782404066 +"Q9VB17",0.135406988896467,15.624206041069,1.78392888325143,0.130434921839124,0.241700672245016,-5.47666542005486 +"Q7KMQ0",-0.124031818042305,20.6671524291803,-1.78384805045449,0.130448908282918,0.241700672245016,-5.47677127898259 +"P49963",0.12857684184579,14.9728968715479,1.78321246094794,0.130558936266643,0.241700672245016,-5.47760360830874 +"Q9VXB0",0.122234562160344,20.3512597649052,1.77055733370367,0.13276913149558,0.245273782352239,-5.49416066196356 +"Q9VY41",0.287702092256815,16.5556220819086,1.76995111796978,0.132875940473781,0.245273782352239,-5.49495304924901 +"O77134",-0.141809633769007,21.7166685915744,-1.76964359654714,0.132930155423515,0.245273782352239,-5.49535498564908 +"Q9VVU5",0.263453407389184,15.7240888935946,1.76655677337546,0.133475577911322,0.245877164230128,-5.49938854170562 +"Q9VH76",-0.128540451158315,19.3849099091423,-1.76611032824901,0.133554646900387,0.245877164230128,-5.49997176398393 +"Q9VAN7",-0.167432479304459,23.6681463316468,-1.76529373454594,0.133699393259428,0.245877164230128,-5.50103843981466 +"M9NDE3",0.121798251898698,16.1927754118305,1.76181402374563,0.134317952548276,0.246742670540225,-5.50558239816749 +"Q8IMT3",-0.155525046280891,14.613338495345,-1.75907102492357,0.13480756619252,0.247369659415977,-5.50916270047586 +"Q9VQJ8",-0.195268452722006,15.3086829207946,-1.75720167485426,0.135142257565967,0.247711302879157,-5.51160184515263 +"Q9VZ67",0.140982089934871,15.127049580413,1.75566721003522,0.135417610126182,0.247855466882193,-5.51360352524862 +"Q9VXN4",0.171661778954165,14.9636484106899,1.75510799921308,0.135518097000336,0.247855466882193,-5.51433289190618 +"Q6NP72",0.160302037103403,18.7660211863609,1.75211824247595,0.136056601678728,0.248451008944017,-5.51823133717326 +"Q9V4Q8",-0.174956330685827,16.8983212128161,-1.75164730288695,0.136141620008892,0.248451008944017,-5.51884525251935 +"Q9VII1",-0.252336222635662,19.3022285412378,-1.74792664175101,0.136815172469706,0.249407330797235,-5.52369396622775 +"Q9VTB0",-0.163823435883373,16.9788702906166,-1.73626316100804,0.138948201730422,0.25286177975802,-5.53887583759972 +"Q9VG73",-0.122148735150574,18.1071065547514,-1.73590978995571,0.139013340550422,0.25286177975802,-5.53933537908855 +"Q9U915",-0.139823202571364,21.1382184893667,-1.72661052812046,0.140738478413533,0.255720895418054,-5.55141942370531 +"Q9W380",0.218720778246926,18.3852850804993,1.72380104486688,0.141263846714373,0.256396187507698,-5.55506672736567 +"Q9W1G7",0.118339898107251,18.8502223582225,1.7208145706976,0.141824446813872,0.257133888353847,-5.55894199248983 +"Q9Y171",0.15377668491266,15.0566687219689,1.71922180195916,0.142124332345255,0.257397813628539,-5.56100801064056 +"Q7K1H0",-0.157698044458936,16.3369888287106,-1.71746483489489,0.142455862716733,0.257478892291755,-5.56328639215316 +"O61443",0.197866682038388,16.4280011515135,1.71734857018758,0.142477828288543,0.257478892291755,-5.56343713760645 +"Q9VQD7",-0.148423736622902,20.9553337231913,-1.71275665304507,0.143348057199965,0.257925242598531,-5.56938858097292 +"Q9VLV5",-0.128522054506782,17.4557868325503,-1.71241448525392,0.143413113029881,0.257925242598531,-5.56983187359224 +"O96299",0.225615317959267,15.6856843929733,1.71168393101357,0.14355211010177,0.257925242598531,-5.57077825282784 +"Q9VNQ3",-0.125941999639709,15.0008630669198,-1.71163904292573,0.143560654972868,0.257925242598531,-5.57083639829798 +"Q9VBT1",0.17844900387351,16.3283078023547,1.71123598016335,0.143637404355031,0.257925242598531,-5.57135848339042 +"Q9VAN0",0.130388128833761,20.4507171825427,1.71115616016854,0.143652608137911,0.257925242598531,-5.57146186966285 +"Q9V3L7",0.200485558422926,17.7340272607584,1.71023716826589,0.143827768806576,0.257962062762762,-5.57265208835072 +"Q9VBT2",0.43990565159922,12.7727819659549,1.70817281013654,0.144222009032041,0.258081981231978,-5.57532504561029 +"Q9W0Q2",-0.125427905742436,15.5530924654996,-1.70648198278249,0.14454571136967,0.258081981231978,-5.57751366190645 +"Q961Q8",0.196659179148138,15.4099038860875,1.70620065647267,0.144599639954665,0.258081981231978,-5.57787775188609 +"Q6NMY2",0.121591068393315,20.2509996351368,1.70580499722638,0.144675519191755,0.258081981231978,-5.57838978133227 +"Q9W140",-0.626317121535672,13.8561814633941,-1.70562288648062,0.144710457500356,0.258081981231978,-5.5786254425109 +"Q9VVK5",0.148580325812006,15.7755624388845,1.70503666346435,0.14482298227406,0.258081981231978,-5.57938399771376 +"A8DRW0",0.126083731932809,21.5605638543316,1.70368934854523,0.145081926017842,0.258267505440512,-5.58112709845902 +"Q0KI98",0.211781936855589,16.6106645929025,1.70063375083904,0.14567088763052,0.258776061271544,-5.58507882881816 +"Q9VPX5",0.139655780136106,18.9062846340237,1.70059749218827,0.145677890607902,0.258776061271544,-5.58512570890538 +"P55830",-0.128348195716921,21.8891771792927,-1.69630675387283,0.14650895653795,0.259837429585466,-5.59067129945884 +"Q9VK18",-0.247222544615903,14.6409044989405,-1.69590534957111,0.146586943189403,0.259837429585466,-5.59118988751512 +"Q95083",0.120427031772902,19.8851374116518,1.69098901254928,0.147545445555832,0.261015873064375,-5.59753854553208 +"Q9W425",-0.316228727480954,13.9589024319192,-1.69089042722162,0.147564729196466,0.261015873064375,-5.59766579703131 +"Q9VJ80",0.171654925820675,16.4840493467445,1.68971938646897,0.147793979368455,0.261144446595957,-5.59917717948849 +"Q9Y125",-0.119811890463161,22.5926251599048,-1.68715502188727,0.148297223922923,0.261655730482766,-5.60248574486809 +"Q9VUH8",0.144130148117794,15.510509437477,1.68664723593733,0.148397074962048,0.261655730482766,-5.60314071740651 +"Q9V3G1",0.160058314335416,20.95791264958,1.68560293593301,0.148602634696416,0.261741493847541,-5.60448753292618 +"Q9W141",-0.135607974589909,21.8076198097296,-1.68132910736042,0.14944682498114,0.262621859550157,-5.6099968127322 +"Q9W4U2",-0.129029785816307,18.5463582898078,-1.68091559585728,0.149528754551209,0.262621859550157,-5.61052963663016 +"Q9VD00",-0.120776384606504,17.8327860806613,-1.6806832947036,0.149574800103507,0.262621859550157,-5.61082894739985 +"Q95RQ1",0.216593697973197,11.6290865943802,1.66992902400555,0.151721819541195,0.266111456356166,-5.62467164332133 +"Q7JV69",0.122419487259831,16.013784646666,1.66890635820968,0.151927561056288,0.266192407396942,-5.62598658517287 +"Q9VNX9",0.188166434608066,13.4042573120595,1.66012965618616,0.153704590854757,0.268639045070329,-5.63726139878171 +"Q9VH37",0.122997660825407,16.6681407237644,1.65985628621672,0.153760267229404,0.268639045070329,-5.63761228086713 +"Q9VC48",0.130133964537549,18.4516339150306,1.65962628035616,0.1538071271236,0.268639045070329,-5.63790748925831 +"Q7K9H6",-0.209298145322551,11.6271678955306,-1.65809341576524,0.154119781419155,0.26890355168112,-5.63987456619787 +"Q9W1H6",-0.173254537806372,17.0754066964024,-1.65618699792704,0.154509499315128,0.269301823257715,-5.64232021616574 +"Q7KSM5",0.118447137243667,18.9672817684318,1.65287209485271,0.155189450457521,0.270204596412469,-5.64657063095414 +"Q9VC31",-0.137468178359214,17.730927373861,-1.65126536364484,0.155520077971263,0.270497904125199,-5.6486298344293 +"Q9W3L4",-0.114154479943037,17.7238462900954,-1.64850153611589,0.15609042585467,0.270865140360228,-5.65217049529643 +"Q9VHE4",-0.117927274885446,17.9417478843909,-1.64775974013499,0.156243852854751,0.270865140360228,-5.65312046724098 +"Q9VCR9",-0.132582134133944,19.3561329606699,-1.64753884726489,0.156289569086518,0.270865140360228,-5.6534033246068 +"Q9VJ25",0.28495400837593,15.6569283245605,1.64709835267755,0.156380773481355,0.270865140360228,-5.65396734980931 +"Q7KMS3",-0.239236776566941,15.5654656627565,-1.64299107232114,0.157233700244501,0.272059970962477,-5.65922413229653 +"Q9VL70",-0.11663853533549,23.6238499831322,-1.63856975683817,0.158156932868056,0.273373848729447,-5.66487810939984 +"A0A6H2EGA2",-0.119758999189775,15.824203911527,-1.63174837321711,0.159591749029898,0.275487269701203,-5.67359156932669 +"P18053",-0.114025211968812,21.0304499305299,-1.63118911975535,0.159709945923899,0.275487269701203,-5.67430541759957 +"P05205",-0.153866964422043,18.2223118682341,-1.63022528283287,0.159913851413765,0.27555403322124,-5.67553549983028 +"Q9W074",0.163326395260594,13.5171007047823,1.62735880471609,0.160521776584492,0.276316123160921,-5.67919238271492 +"Q7K1M4",0.166692312149449,17.2052768305487,1.62537982212502,0.160942797676363,0.276755243839354,-5.68171580947706 +"Q9Y105",0.263309884703649,17.2427444559883,1.62184173543072,0.161698200830341,0.277767867131832,-5.68622472751488 +"Q7KJ08",0.154468286244056,14.5913268454723,1.61795880947728,0.162531211564941,0.278911585278109,-5.69116932844335 +"Q9VJI7",0.16578693504291,17.4977877119492,1.61587340416924,0.162980323117697,0.279394839630338,-5.69382328540278 +"O62621",-0.143753247715486,13.0339753612114,-1.61499386900773,0.163170101767184,0.279432987420598,-5.69494226562908 +"Q7K1U0",-0.151677981301916,16.5370408257303,-1.61413703246168,0.16335518981035,0.279463032414014,-5.69603216994699 +"Q9VFU7",0.214237217543573,14.9310785063994,1.61189281464735,0.163840940761805,0.280006853678986,-5.69888590873533 +"Q9VLW8",-0.236715560480688,13.9884132465168,-1.60937354788396,0.164387901123727,0.280654062512156,-5.70208779265361 +"A1Z7G2",0.125798763402297,19.6220207912212,1.60663792979912,0.16498384713458,0.28138349388597,-5.70556271639831 +"P16378",0.125210793199319,20.3712269360824,1.60503451249615,0.165334123499973,0.2814814064466,-5.70759851982232 +"Q9VX98",0.175946075880596,18.23170424003,1.60430908644948,0.165492834904128,0.2814814064466,-5.70851933904817 +"Q9VQR2",-0.118805393973592,21.3489628830531,-1.60323584975612,0.165727913463655,0.2814814064466,-5.70988138917283 +"Q9VC53",-0.151313489740676,17.8506984560738,-1.60258853070998,0.165869857275961,0.2814814064466,-5.71070275341641 +"Q9VXA9",0.214307352222844,14.19452660963,1.60241744487546,0.165907392644942,0.2814814064466,-5.71091982015035 +"Q9VME1",-0.181260063736346,16.6896214260901,-1.60175057521291,0.166053779342598,0.2814814064466,-5.71176584094321 +"Q95SH0",0.751931991915077,14.4565617698729,1.5974289349111,0.167005484346345,0.282807256740816,-5.7172455156868 +"Q9VVA7",0.148757634824698,17.620526724434,1.5937338377754,0.167823413843542,0.283904111857027,-5.72192667744669 +"R9PY51",-0.113171765548199,21.5174386253913,-1.5873082102385,0.169255030399924,0.286035856846072,-5.73005798782642 +"P48611",0.113179081217147,20.2007903213964,1.58071344021838,0.170736643071957,0.288247692959538,-5.73839126391531 +"Q9VB05",0.109278463694796,20.1574038729984,1.57878632644081,0.171171964744854,0.288690431945821,-5.74082406883122 +"Q9VA18",-0.124967010662825,21.5875559634199,-1.57760951064124,0.171438327564624,0.288847606442215,-5.74230916904549 +"Q9VEC2",-0.127753268191741,16.7431855931874,-1.57518974921165,0.171987282218524,0.289480107709888,-5.745361574514 +"Q9VRL1",-0.154811826092345,20.5139772880962,-1.57363152583111,0.172341685452921,0.289784204975275,-5.74732630149625 +"Q9VEB1",-0.127727334654111,25.1674105331523,-1.56735159869011,0.17377716659267,0.291903639352038,-5.75523738014972 +"Q9W2J4",-0.124098020689734,15.0024576763281,-1.56124430618006,0.175184261000137,0.293971174394596,-5.76291992146248 +"Q9VZX9",0.107110927784632,18.4884026021439,1.55796860835991,0.175943491672558,0.294697991226111,-5.76703597711782 +"Q9VB81",0.136248344972795,21.1411921793003,1.55785128638513,0.175970742962354,0.294697991226111,-5.76718333807971 +"Q9VIH3",-0.176459490121934,13.7321612879786,-1.55602991995541,0.176394328284952,0.295111072797694,-5.76947051859032 +"Q9VUX1",0.125803601120083,16.3891367315972,1.55141303580197,0.17747245901492,0.296343665842199,-5.77526371881113 +"Q8I0J3",0.164125446187574,15.1071611633945,1.55135349551897,0.177486404182468,0.296343665842199,-5.77533838723969 +"Q9VC66",-0.117299744828419,17.7514782485073,-1.54939591540158,0.17794548491127,0.296657584894607,-5.77779275800191 +"Q9W0B3",-0.142416355208219,19.1243531307896,-1.54903554531237,0.178030121390588,0.296657584894607,-5.77824445574342 +"Q9V3J4",0.145155997581069,16.7333875702245,1.54678050779862,0.178560619692101,0.297244624397629,-5.78107008701119 +"Q9VGR2",-0.140321829467668,15.6671850420752,-1.54552788754502,0.178855955783914,0.297389700887377,-5.78263899062634 +"P09208",0.233830066433216,12.7309037322507,1.54467296819142,0.179057793815614,0.297389700887377,-5.78370950019416 +"Q9VP55",0.123524701609803,17.0980039116686,1.54414460985236,0.179182643520272,0.297389700887377,-5.78437098625463 +"Q9VM58",0.170967305560694,16.455826647238,1.53937407466005,0.180313704143337,0.298969441859927,-5.79033965309274 +"Q9VHC7",-0.121792028619424,20.0069720576239,-1.53675726898709,0.180937040869627,0.299705048828737,-5.79361069747092 +"A1ZAL1",-0.203082122867464,17.4085338515618,-1.53267372548405,0.181913897453213,0.30102418745234,-5.79871093892338 +"Q9VP18",-0.124489757378068,17.0464769852427,-1.53041091273877,0.182457379683191,0.301189967568909,-5.8015348931032 +"Q9VDU7",-0.118764221389405,18.3605153261843,-1.52990593178551,0.182578878347411,0.301189967568909,-5.80216488221804 +"Q9V429",-0.10521708887681,22.3324316775865,-1.52949105965877,0.182678754830868,0.301189967568909,-5.80268239611552 +"Q9VSC5",-0.122902292276677,19.4487167800957,-1.52925187843168,0.182736359220465,0.301189967568909,-5.80298072758167 +"P48375",-0.108411965595849,22.0485131249612,-1.52838102143232,0.182946243528925,0.301238237123639,-5.80406679808707 +"O97418",-0.106102639671924,21.0512069989541,-1.52571978104088,0.183589059072251,0.301975066273633,-5.80738422456323 +"Q9Y0Y5",0.123113968706388,18.668308508995,1.52454195486377,0.183874250219747,0.301975066273633,-5.80885175412054 +"Q3YMU0",-0.106455137521774,23.1392301874066,-1.52428365111096,0.183936850919671,0.301975066273633,-5.80917353260958 +"P92177",-0.117481846635624,24.2092673056694,-1.52283698026295,0.184287833460312,0.302253791752017,-5.81097531200426 +"Q9VL16",-0.150005096217821,20.7872949537538,-1.52104739077801,0.184722900186061,0.302669742151621,-5.81320326316813 +"Q9VQI6",0.221947118514734,16.1729164070731,1.51772231611037,0.185533869714249,0.303700191053354,-5.81734010049732 +"A1Z9J3",-0.158602037076687,17.403679450182,-1.51381800434661,0.186490459356774,0.30496675118343,-5.82219305077887 +"Q8I941",-0.205127075807248,18.988849907775,-1.51146039284419,0.187070375153342,0.305615461073237,-5.82512110976052 +"P21914",-0.104625114169764,22.9145893001662,-1.50520815771057,0.188616626080349,0.307840051176148,-5.83287736799358 +"Q9W4C2",-0.161630386179841,15.8001107739493,-1.49903515864611,0.190155238393985,0.310047837381396,-5.84052272488838 +"A0A0B4KHJ9",-0.123547299846805,24.4732853622657,-1.49663261013754,0.190757298217904,0.310643834768679,-5.8434949030225 +"Q6NL44",0.339795731702527,15.3536025517739,1.49593241835054,0.19093310216067,0.310643834768679,-5.84436074378944 +"P40797",0.116852889168069,19.2766540022303,1.49534988863676,0.19107948109872,0.310643834768679,-5.84508096152971 +"Q9W0H3",0.10976963963731,16.5471680265264,1.49322247193881,0.191614969535848,0.311211070288018,-5.84771025385834 +"Q9VTM6",0.341957187572781,16.4323428536313,1.48412764607547,0.19392034903292,0.31464897099894,-5.85893341541468 +"Q9VCU0",0.184654025209566,17.3896319371459,1.47788280726992,0.195518537345191,0.316933838961885,-5.86662332524758 +"Q9V6U9",-0.120663389778784,21.9476002946809,-1.47180834210571,0.197085103673371,0.319163061094352,-5.87409052417066 +"Q2MGK7",-0.164633589791883,17.2149585494456,-1.46728499278676,0.198259362875988,0.320465656072966,-5.87964261885753 +"Q9VY28",0.109164525116181,15.141926342258,1.46722986314494,0.198273715268166,0.320465656072966,-5.8797102423757 +"Q9VNF5",-0.10615240369131,15.8993691276578,-1.4657298284958,0.198664610170731,0.320786611582555,-5.88154981518789 +"P54195",-0.17492351674592,18.538714356105,-1.46350324378724,0.199246181463216,0.321386154389834,-5.8842789319508 +"Q9VU92",0.187776199776295,17.8459626456293,1.46283412870167,0.199421264864195,0.321386154389834,-5.8850987213127 +"Q8IPP8",-0.107322968001547,19.1868794588288,-1.46174274780169,0.199707152176234,0.321536225704592,-5.88643552367853 +"A1Z9B5",-0.214854221190791,16.1110228313993,-1.45939686395739,0.200322968137129,0.322133344230316,-5.88930749980562 +"Q9W073",0.165289466012592,14.6458854863305,1.4588595305597,0.200464275366348,0.322133344230316,-5.88996506076935 +"P25007",-0.122801650408711,23.8539201557616,-1.45493915103492,0.20149810369723,0.323482999968219,-5.89475949594217 +"Q9VZ66",-0.103137840692565,17.0043078262997,-1.45381709159261,0.201794922707285,0.323573615886623,-5.89613070603311 +"Q9VFP6",-0.101059560769407,20.227369281598,-1.45325968741006,0.201942526461615,0.323573615886623,-5.89681171209937 +"Q9VGV9",-0.226195359599334,16.0631248550863,-1.44710631881762,0.203578752392542,0.325882302294396,-5.90432210110078 +"Q95SH2",-0.107389908609552,18.6561475484073,-1.44314201118715,0.20463949782947,0.327266234304464,-5.90915337729582 +"Q9VVL7",-0.129789900356819,23.5855669992421,-1.44101042367955,0.205212003635162,0.327867454083764,-5.91174875052117 +"Q9W257",0.168858946689543,17.3037329020548,1.43378293221211,0.207164407663741,0.330296180706672,-5.92053630555542 +"P55841",0.119503294966524,20.5649230725795,1.43346195308906,0.207251519081691,0.330296180706672,-5.92092611909557 +"Q7K127",0.106719941420632,18.7113260597022,1.43318687831232,0.207326199760123,0.330296180706672,-5.92126015349715 +"Q9Y128",0.192967695588127,14.2329236903816,1.42865277661927,0.208560818921829,0.331946036222911,-5.92676202265325 +"Q02748",0.105136107822791,19.4063896215988,1.42752642085574,0.208868589302788,0.332118977080124,-5.92812759495875 +"O61444",-0.177968946069875,16.4936489203527,-1.42447829862456,0.20970360841817,0.333097466927901,-5.93182068380001 +"Q9VL68",-0.101425283781133,20.7995250785543,-1.42382364315924,0.209883355959967,0.333097466927901,-5.93261340312499 +"Q9VMS1",-0.118250066136547,22.4239123738405,-1.42191598851687,0.210407960637987,0.333612622000155,-5.93492244745555 +"Q9VES8",-0.0974927937996739,18.1031001526059,-1.41987322538043,0.210971081511119,0.333721225616832,-5.93739349579165 +"Q9VQX3",-0.201739878027769,15.2195712858835,-1.41956250746847,0.211056859480874,0.333721225616832,-5.93776921952568 +"Q9U9P7",-0.130849696630859,16.7090316219333,-1.41949074740855,0.211076674475874,0.333721225616832,-5.9378559873974 +"P08928",-0.116330540161137,22.76272296859,-1.41708600538221,0.211741699747198,0.334015281552534,-5.9407625172203 +"Q95TK5",0.111167307846106,17.0982607896224,1.41677856154153,0.211826863748829,0.334015281552534,-5.94113395467661 +"Q9VIL2",-0.099900027039876,15.9698343445835,-1.41664666425126,0.211863410001547,0.334015281552534,-5.94129329493796 +"Q9VMQ9",0.10326506080726,22.1453752578592,1.41145133674443,0.213307635658806,0.335660662448117,-5.94756426173765 +"Q9VJH8",0.137498258511792,14.2474613829918,1.41144453059389,0.21330953369005,0.335660662448117,-5.94757247020975 +"Q9VR94",-0.107557907920615,15.9020284884115,-1.40718297258286,0.214501055975441,0.337217494219637,-5.95270854547758 +"Q9VCJ8",0.101503248103459,17.8948485096054,1.40107293297207,0.216220248526841,0.339600164352892,-5.9600600867909 +"Q9VZ49",0.131636080441435,19.0125581120868,1.40028575263114,0.216442670544161,0.339629703168073,-5.96100615065146 +"Q8SY96",0.116750799462622,18.7014827315782,1.39808661851643,0.217065177669542,0.340056393835151,-5.96364786192511 +"Q9VJJ0",-0.0983513519786392,19.7430925114931,-1.39788498319375,0.217122337790429,0.340056393835151,-5.96388998098533 +"Q9W329",-0.109786334729954,16.4661600592578,-1.39490195733003,0.217969612693197,0.340558477859413,-5.96747005021682 +"Q9VME3",0.174124405655393,15.7893749306167,1.39443853863971,0.218101514250987,0.340558477859413,-5.96802590408541 +"Q9W087",0.129515721072144,16.6837281954935,1.3942233114569,0.218162799008497,0.340558477859413,-5.96828403225101 +"Q9VFB2",0.192188260766288,16.4023953332211,1.39388346858224,0.218259600019012,0.340558477859413,-5.96869157811695 +"P56538",0.109912242624155,17.0569671530532,1.39295572436476,0.218524062580294,0.340652463910215,-5.96980391223798 +"O16158",0.112333730724703,21.422888667733,1.39223428754952,0.218729921148351,0.340655003245051,-5.97066865380802 +"Q9W3N6",0.129726515167281,16.1677397601397,1.38998972549314,0.219371549960628,0.341335583334261,-5.97335774272889 +"Q7JVI6",0.102149865346643,17.4263165845487,1.38580487195498,0.220572501473222,0.3428843732128,-5.97836600083135 +"Q7JPS2",-0.101218647852903,21.0284296720489,-1.3843192712592,0.221000299118135,0.343229514831516,-5.98014221117574 +"P36241",-0.131429226313998,19.6446609581225,-1.38067465232714,0.222053076819113,0.344543750822587,-5.98449600172649 +"Q7K2N0",-0.146198790962105,15.389951764084,-1.3731964696868,0.224227780156391,0.347594737268457,-5.99341236359029 +"Q9W1F7",0.10095874472843,20.3424354492402,1.37168606904798,0.224669401018209,0.347955952551878,-5.99521045774476 +"Q7K8X7",0.131061623766961,19.520304633138,1.36905338474264,0.225441086424838,0.348827209792792,-5.99834235389175 +"Q9Y0V3",-0.158550606246243,15.0805159672488,-1.36806514031535,0.225731390076822,0.34895269568873,-5.99951725037636 +"Q9VRY5",-0.106373423452771,16.8561398558749,-1.36666849281093,0.226142254161749,0.349022703851796,-6.0011769956426 +"Q9VR25",0.0975133850823333,17.0184542726808,1.36572086957884,0.226421418157172,0.349022703851796,-6.0023026690819 +"Q9VPL3",0.180113323582239,15.848513492344,1.36560910161665,0.226454365292996,0.349022703851796,-6.00243541266191 +"Q9VYU9",-0.194090146530868,17.7597698496078,-1.36506892431596,0.22661366203327,0.349022703851796,-6.00307689236465 +"Q7KTJ7",0.112100784978491,22.1172441977148,1.36336531152942,0.227116730608786,0.349474821637874,-6.00509919665363 +"Q9V3V0",0.0978107178673273,14.392732242943,1.36232593879289,0.227424158498854,0.349625342282109,-6.00633240786884 +"P14484",0.103289027255368,19.2781034743268,1.36109317243312,0.227789286626546,0.349864208188839,-6.00779449404456 +"Q7K3W2",0.0961853816100628,17.6094211705264,1.3600527172623,0.228097875658201,0.350015875435032,-6.00902799976015 +"Q6WV19",-0.298653652052618,13.2995848069839,-1.35926574398092,0.22833154046626,0.350052398435406,-6.00996068972683 +"Q9VK60",-0.134590270181977,21.3489906610345,-1.35386056191786,0.229942396183588,0.352047181855599,-6.01635965141671 +"Q9VKX2",-0.103571769448084,23.0769908472904,-1.3534846535361,0.230054813083096,0.352047181855599,-6.01680421388556 +"Q7KUC2",-0.124895822296406,19.2974317145751,-1.34461806460059,0.232721109939285,0.35550024260882,-6.0272727041688 +"Q9W503",0.0965071980298973,17.9226745141987,1.34456362206024,0.232737568902177,0.35550024260882,-6.02733687877381 +"Q9VVI2",-0.428768034582511,13.5131338914348,-1.34289618109637,0.233242184550011,0.355750179360684,-6.0293017712726 +"P81900",0.0990578514489506,22.5373190101825,1.34208429200114,0.233488249085144,0.355750179360684,-6.03025805808704 +"Q9VT75",0.104255302823363,15.6135994300393,1.34191022735061,0.23354103501196,0.355750179360684,-6.03046304381369 +"P92204",-0.0973136111989525,16.02488973978,-1.33841903582786,0.234602070685443,0.356638086407217,-6.03457164886089 +"Q9V535",0.116867677291179,18.7277303972345,1.33819715418786,0.234669653722916,0.356638086407217,-6.03483259156932 +"Q9VKA1",0.338636588486661,14.2255876982738,1.33788304462552,0.234765359037844,0.356638086407217,-6.03520196188429 +"O44434",-0.143263628150924,15.9866832388145,-1.33398264395321,0.23595674750116,0.358121796935336,-6.0397849770462 +"Q8T0N5",-0.104150237524856,18.4819835687245,-1.32899073783155,0.237489618593519,0.360120621649081,-6.04564082091621 +"Q9VP77",-0.164366582529299,15.2672005251287,-1.32735805834126,0.237992941753929,0.360556064346552,-6.04755368774161 +"O97422",0.138180992814972,15.3535182716091,1.3246272743734,0.238836969423253,0.361506411068953,-6.05075047604686 +"Q0E8U4",-0.162782000093115,16.1455734007129,-1.32162343806396,0.239768550070996,0.362587435646801,-6.05426309522478 +"Q9VRJ4",-0.0905280190843705,20.7296558902456,-1.31762169377323,0.241014765540227,0.364141874022734,-6.05893640245609 +"Q9VAA6",-0.117607152630274,16.4124016336104,-1.31638223308443,0.241401952752485,0.36439679383814,-6.06038241369814 +"Q9W3T9",-0.112384069698901,18.7156519924089,-1.31358057405921,0.242279235308544,0.365390383810716,-6.06364841459324 +"Q9VQ93",-0.152506875595932,16.6352828241249,-1.30444030845521,0.245161544637378,0.368866089735005,-6.07427890238269 +"Q9VYV3",0.0941919634791155,20.5568021971565,1.30402665151152,0.245292722533,0.368866089735005,-6.07475910298099 +"A1Z933",0.160445291371376,15.8888210121617,1.3035187528369,0.245453873357409,0.368866089735005,-6.07534859870888 +"Q9VJU8",0.175577265595274,15.7004020814988,1.30313653747633,0.24557520962577,0.368866089735005,-6.07579214152495 +"Q9VCU6",-0.108720727939197,15.5370571922044,-1.30277641024512,0.245689583750354,0.368866089735005,-6.0762099909424 +"Q9VDL1",-0.208314422862619,14.8516771046628,-1.30098641412574,0.246258793277086,0.36938818991563,-6.07828601083279 +"Q9VXG4",-0.105610658744766,19.8147592795588,-1.29924203156065,0.246814649439161,0.369889339860306,-6.08030771337751 +"Q9VJ43",0.103221949919245,20.2928691141657,1.29841680251164,0.247078009270621,0.369951633270553,-6.08126364862126 +"M9PEG1",-0.139160310412528,20.4134843012707,-1.29623910072671,0.247774215336412,0.370481805475387,-6.08378476393213 +"P02515",-0.101296279567496,17.4302958192795,-1.29592020131864,0.247876315893605,0.370481805475387,-6.08415376843355 +"P48609",0.0968963719104892,16.9543246017182,1.29374803574407,0.24857278322786,0.371190154363536,-6.08666596954313 +"Q9VK58",-0.399201681154659,12.6763917393266,-1.29071775852782,0.249547350772458,0.372312147664097,-6.09016695390019 +"Q9W1Y1",0.131401488069574,17.9243518901299,1.28990863424985,0.249808157738274,0.37236819223185,-6.09110104008007 +"Q9NHD5",0.132782132687352,16.6250624400128,1.28739476505573,0.250620033431103,0.372742438017346,-6.09400120294249 +"Q9VV60",-0.0920205941646799,19.9656317390744,-1.28728708615103,0.250654862502518,0.372742438017346,-6.09412536229863 +"Q8MKN0",0.190897420146591,16.5368274497159,1.28705599143495,0.250729625572819,0.372742438017346,-6.09439180814276 +"Q9VN95",0.101126602628948,17.9681023496242,1.28617110571195,0.251016087599862,0.372836005446634,-6.09541182558012 +"Q8MLW4",-0.135394080962485,18.6528871774056,-1.28443475719182,0.251579051670266,0.373031079328925,-6.09741226534146 +"Q9W4Z2",0.119607899408406,13.6653755955557,1.28438653468591,0.251594702784797,0.373031079328925,-6.09746780206349 +"Q9VSL2",-0.152578510262266,20.4308577132768,-1.28221580573725,0.252300146980502,0.373744800322804,-6.09996664531118 +"Q9VHL2",-0.0891024934030646,20.6378089972163,-1.27848694651726,0.253516122446382,0.375212859130937,-6.10425394209307 +"Q9VXE8",-0.138430873679454,16.332231423395,-1.26952321640603,0.256460825664117,0.379234625184173,-6.11453303190259 +"Q9VZ58",0.116668707933119,18.0979364555521,1.2674186755816,0.257156642578192,0.379821749215196,-6.11694081909513 +"Q9VWX8",-0.0913165272967618,20.5820988625476,-1.26694557598466,0.257313295331638,0.379821749215196,-6.11748179461044 +"Q9VVP9",-0.11946278811612,16.7507814113127,-1.26586450601511,0.257671581252828,0.380014321423269,-6.11871756106677 +"Q9VGE7",-0.264654555589974,13.8247559425961,-1.26143586332991,0.259143995734936,0.381848219863846,-6.12377401998601 +"O46098",-0.108770156634581,18.0302567258949,-1.25896823242523,0.259967694563226,0.382723843364044,-6.12658733593511 +"Q9VN44",-0.144544805416988,19.3287766217558,-1.25467030035817,0.261407957300375,0.384504826082033,-6.13148025646635 +"Q9VTJ4",-0.0918447576347514,15.6940501935268,-1.25142607034651,0.262499847405984,0.385766883291048,-6.13516760229287 +"Q9VRG8",-0.105039526675741,16.003614682037,-1.25036728219441,0.262857079456631,0.385766883291048,-6.13636988373319 +"P53997",-0.0891728413188613,17.4416833194493,-1.25006307065223,0.2629597999412,0.385766883291048,-6.13671522148995 +"Q9W197",0.0968216105482327,17.3078755891436,1.24060717626391,0.266170629648429,0.389797211808929,-6.14742655722122 +"Q9VV72",0.153908776753202,19.4393667581787,1.24059591297129,0.266174474970246,0.389797211808929,-6.14743928934471 +"Q9VAY2",-0.0888826113707353,21.1036455395921,-1.23928146449813,0.266623571968126,0.390112384248101,-6.14892471679797 +"Q9W1C8",0.432674532341641,16.2228315072773,1.23622644017299,0.267669967361693,0.391300180157147,-6.15237377786334 +"Q86BI3",-0.103369746789188,18.1643426440725,-1.23342935698138,0.268631219379667,0.392361535836501,-6.1555275065051 +"Q9V3W7",-0.135416199758751,17.853500252879,-1.23248276987795,0.268957220752722,0.392494001938356,-6.1565938941325 +"Q9VKQ2",-0.117453026669036,16.1022235438038,-1.23040715067863,0.269673288979386,0.393194970295118,-6.15893061579338 +"Q9VMH9",0.0921718401801108,20.0784131746263,1.22865806404617,0.270278022017556,0.393732524650903,-6.16089803051852 +"Q7JYZ9",-0.100807439770353,18.1890055077489,-1.22728759692674,0.270752691910369,0.394079834298862,-6.16243847702481 +"Q8IPX7",-0.113476019524731,15.0199618260781,-1.22528409781821,0.27144794862553,0.394747321976795,-6.16468874650199 +"Q8IMX8",-0.0883841029651222,17.2241123832193,-1.21729014786572,0.274237809864929,0.398457026876918,-6.17364681824299 +"Q9V405",0.104075773599366,20.2996943301181,1.21435306578425,0.275269203429549,0.399459819793607,-6.17692985107317 +"Q9VJ58",0.0895420304097101,17.212998074753,1.21396154416571,0.275406950097511,0.399459819793607,-6.17736715109167 +"Q9VUM1",-0.138222412203922,16.5951074904603,-1.21023969185862,0.276719432781564,0.400618626503897,-6.1815201969781 +"Q9W0H6",-0.0907483701445884,18.2062200041763,-1.20987256869863,0.276849194922311,0.400618626503897,-6.18192946183684 +"Q9W022",-0.084582275335098,21.2326593848023,-1.20965414234936,0.276926424675656,0.400618626503897,-6.18217292773239 +"Q5U1B0",-0.135059868392188,14.4952086922907,-1.20652126485035,0.27803622162719,0.40187557857379,-6.18566220012878 +"Q9VXI6",-0.088042446235292,22.0132278298614,-1.20057300222171,0.280154145136871,0.404586245963897,-6.19227294779072 +"P20351",-0.108233861378848,14.1720356805442,-1.1987982594796,0.280788802108828,0.405152008579173,-6.19424173430182 +"Q9VHT5",0.0944898223826236,15.5791972078325,1.1961716209887,0.281730423030529,0.406159330695697,-6.19715249437356 +"Q9VMR0",0.161067430365925,17.3327360683049,1.19537975800245,0.282014841411121,0.406218268975604,-6.19802929319634 +"Q9VWD9",-0.0838268762481711,19.4519642716992,-1.19362415386214,0.282646312874253,0.40677657452481,-6.19997201348278 +"Q9VN21",0.0876748283998054,22.0549799193733,1.1926483539483,0.282997834193512,0.406931368478257,-6.20105110521655 +"Q9VIM0",0.10490673606002,18.0374072595564,1.1890281221804,0.284305339196807,0.408372894435541,-6.20505009953767 +"Q9VDF4",-0.0849016340034581,18.6916380316979,-1.18824562277086,0.284588647087307,0.408372894435541,-6.2059135431151 +"Q7KW39",-0.0880470450432256,21.7623934179681,-1.18784216459323,0.284734817882814,0.408372894435541,-6.20635860766458 +"Q9VJJ1",-0.174146793942574,14.0265425456313,-1.18631200426292,0.28528978535321,0.408817321279343,-6.20804576869134 +"Q9VCW6",0.119050677179633,19.7048660896892,1.18497275737632,0.285776288900378,0.409162961275391,-6.2095213922611 +"Q9VVA6",-0.0949514445335033,19.2722660931967,-1.1842183092063,0.286050674557682,0.409204567034489,-6.21035224022438 +"Q95WY3",0.103193086551892,17.0936177854859,1.18045875936065,0.287421428321917,0.410813146907418,-6.21448791174124 +"Q9VH25",0.101829793592097,16.2306891712993,1.17973254710501,0.287686870786808,0.410840496979792,-6.21528589389868 +"Q8IH18",0.107481899940176,15.7450535710432,1.17900954852391,0.287951351511334,0.410866427990509,-6.2160800599558 +"Q9VJ86",0.0872003752352128,16.3544975077719,1.17434535006407,0.289662678109617,0.412834385325143,-6.22119652427403 +"Q9VGQ1",0.0852118776944195,22.5228005719786,1.17367894558279,0.289907910139849,0.412834385325143,-6.22192657611457 +"Q9VQF7",0.0868702749111741,18.9687259040817,1.17323037927855,0.290073081295604,0.412834385325143,-6.22241784733109 +"E1JIY8",-0.0873781672827398,16.3391911899527,-1.17164246982794,0.290658441420765,0.413314816956382,-6.22415604369545 +"Q9VWS1",-0.106982616102691,17.2034887420399,-1.16910265595671,0.291596848692504,0.414296033747101,-6.22693335558477 +"P48604",-0.0948873107090158,20.1353991867342,-1.16647695228136,0.292569764296014,0.415324567528298,-6.22980085006459 +"Q94533",-0.0860511152217249,15.1454131976412,-1.1641435495225,0.293436742223002,0.415708112679696,-6.23234592659872 +"Q9VQG4",-0.107608480760756,19.1501277623503,-1.16375714354571,0.293580527200064,0.415708112679696,-6.23276709393376 +"P42325",-0.107817749405136,20.1650823588155,-1.16308597585161,0.293830420087731,0.415708112679696,-6.23349844331 +"Q9VW14",-0.199045200732904,13.7362763197169,-1.16259042466036,0.294015045123659,0.415708112679696,-6.23403826854713 +"Q9VHJ7",0.240602778667096,14.870613268748,1.16239984597735,0.294086074917291,0.415708112679696,-6.23424583776224 +"A0A0B4KGY6",0.0883111089541373,21.8801711170427,1.15931966178122,0.295236147377875,0.416980435077303,-6.23759782275554 +"Q9VXQ5",0.079992959050827,20.3925344531584,1.15860736766985,0.29550265760351,0.417003750323734,-6.23837221757993 +"P25171",-0.127378584001653,16.8538556034079,-1.15338134710869,0.297464404436167,0.419417266778974,-6.24404517568288 +"Q8MRT7",0.143117371588458,15.4218956426,1.15055632168788,0.29852955658522,0.420563598297421,-6.24710541019822 +"Q9U6P7",0.0833133860467061,17.2205833309644,1.14789313430467,0.299536710659183,0.421626357282293,-6.24998620597459 +"Q9W3K9",0.0903372404749945,19.4456248937317,1.1429006247172,0.301432676071075,0.423937355553586,-6.25537581403025 +"Q9VMU2",-0.091028783085207,16.2547420195246,-1.14149015809489,0.301970191591988,0.424335534604412,-6.2568958967222 +"Q9VMV5",-0.0882269469112771,17.5575644483769,-1.14074558608999,0.302254274338484,0.424377213465144,-6.25769787586973 +"Q9V3V6",0.0838366368544747,21.596427350917,1.14004065073567,0.302523446596051,0.424397904896731,-6.25845687024398 +"Q7KY04",0.14182440455577,14.0217128929111,1.13771274646379,0.303413801387441,0.425289261104413,-6.2609612718327 +"Q9VJQ5",-0.133907144786933,14.4640869805546,-1.13514703480896,0.304397725039057,0.426193494747483,-6.26371790743973 +"Q9I7I3",-0.158615569543979,14.4795324590544,-1.13437707534495,0.304693531836413,0.426193494747483,-6.26454442352041 +"Q26377",0.103955259764911,16.9098456169831,1.13364997919295,0.304973098266035,0.426193494747483,-6.26532461412481 +"Q8SWZ6",-0.0826378151207727,14.0285815132415,-1.13336961910469,0.305080954873198,0.426193494747483,-6.26562536537949 +"O62530",-0.0904022149784822,15.5459134718368,-1.13245491978023,0.305433074678829,0.4263283418948,-6.26660627716747 +"A0A126GUP6",-0.0885715386961454,17.0540675882333,-1.1185546167889,0.310827196333021,0.433494785521303,-6.28145296928824 +"O97111",-0.171666520550481,14.7343455931841,-1.11580606460448,0.311903401521101,0.434632308886547,-6.2843752653584 +"O97454",-0.278203530892206,14.0063772899764,-1.11051780966636,0.313982993784467,0.436660104585085,-6.28998525779854 +"P23128",0.1953560992833,14.5275841692592,1.11017369480148,0.314118725128365,0.436660104585085,-6.29034973439311 +"P51140",0.0954800641636115,13.7450044586851,1.10964645283166,0.314326785491486,0.436660104585085,-6.29090803750936 +"A1ZB23",-0.117835082821131,15.9667472335143,-1.10944643640285,0.314405746766599,0.436660104585085,-6.29111979418307 +"Q9VNI8",-0.078485632572221,15.7186633797897,-1.10267880808804,0.317087407521156,0.440018132899574,-6.29827060295901 +"P02572",-0.0764694283929188,26.5552731734677,-1.09997006102067,0.318166183832782,0.441148125214531,-6.30112503693358 +"Q9VI64",-0.0888796694723162,21.0127217572154,-1.09859413701643,0.318715347829616,0.441542525066278,-6.30257327421471 +"Q9VKW5",0.13861953311042,16.8131787109875,1.09616153305179,0.319688226999122,0.442433702795635,-6.30513093447683 +"Q24492",0.151710911937224,15.1548936071068,1.09566000914269,0.319889116050081,0.442433702795635,-6.30565779669116 +"Q9VSA3",0.0833677344021986,21.7031816270284,1.09395519416509,0.320572792682549,0.442911305809865,-6.30744760574108 +"Q94524",0.12944312871274,15.9351072175642,1.0934752112054,0.320765502049351,0.442911305809865,-6.30795120087832 +"Q9VCY3",0.102754466310383,17.9376825111888,1.0863580713832,0.323634507883245,0.446503192017579,-6.31540202671889 +"Q9W0H8",-0.137284432394278,19.4479810493168,-1.08293030756825,0.325024002694592,0.448049616937669,-6.31897946653586 +"Q9W4Y1",-0.123652783250227,17.7361540472264,-1.07845720200231,0.326844809554293,0.450187565926144,-6.32363704001057 +"Q9W4W5",0.0965702106948605,17.4452826450156,1.0747617008079,0.328355562573635,0.451621231424811,-6.32747562748708 +"A1Z9E3",0.0802267626089943,21.8293893916446,1.07458684503838,0.328427190478594,0.451621231424811,-6.32765704401085 +"Q9V470",0.0884529581263749,20.0121082678207,1.07247492912191,0.329293353714262,0.452439303126351,-6.32984670246903 +"A1Z7H8",0.0772956226213033,14.6002734571606,1.07042387619083,0.330136391747033,0.45322428101568,-6.33197060352317 +"Q9VU45",-0.17669724091072,17.7830784547911,-1.06938405404404,0.330564478527585,0.453438774822378,-6.33304635644438 +"Q9VCA5",0.0860848416378115,13.9714876329682,1.0680050196157,0.331132934923817,0.453845304398461,-6.3344720022576 +"P36951",0.0731634039192599,20.3148555206027,1.06446186946123,0.332597228662881,0.455039430907885,-6.33812945663397 +"Q8SYQ4",-0.0906301551707891,21.0436782645414,-1.06404985253508,0.332767856368505,0.455039430907885,-6.33855425476268 +"Q9W436",-0.0962634394438222,14.4275640050275,-1.0639176869786,0.3328226053403,0.455039430907885,-6.33869049765833 +"Q9VVS6",0.109765924982247,16.5334635568198,1.06295764442852,0.333220524956096,0.455210348588671,-6.33967982840735 +"Q9W0C3",0.152124883140328,18.6582540256633,1.06186857406665,0.333672406210535,0.455454642847113,-6.34080142171247 +"Q9VQQ0",-0.185413709787774,18.3736038130937,-1.06109224354877,0.333994837179277,0.45552198562145,-6.3416004800661 +"Q9VLT8",0.121205066025562,14.0452076942431,1.06026162120392,0.334340105543078,0.455620339906744,-6.34245499918927 +"Q9VQV7",-0.0782077834081694,16.2545835421344,-1.05935157197715,0.334718732176561,0.45576395532286,-6.34339073074229 +"Q9W254",-0.0763690177298528,18.1934708961245,-1.05756237777075,0.33546417258584,0.455944516607412,-6.3452288923951 +"Q9VE94",0.141406458772032,14.6517876955054,1.05742434286127,0.335521740298822,0.455944516607412,-6.3453706210051 +"Q8T0Q4",-0.0855712425149768,20.035599223952,-1.05706562522396,0.335671382730157,0.455944516607412,-6.34573888124804 +"Q9VM50",0.163526375152403,13.5571322366179,1.05091442967599,0.338246089555457,0.459067923009359,-6.35204100769321 +"Q7JUN9",-0.138135261947577,13.3413556032836,-1.0456019662527,0.340482947126482,0.46172809415201,-6.35746441385834 +"Q9VXN1",0.123839925848445,13.7294344757392,1.04469377703654,0.340866576193103,0.461872826230785,-6.35838976015821 +"Q8I937",-0.21861219143522,14.0231566734159,-1.04094033216554,0.342455881692289,0.463649683979496,-6.36220848892427 +"Q9VA76",-0.120484525575211,15.2308558776207,-1.03263305942118,0.345995244915079,0.468052435829709,-6.37062788376514 +"Q9VN71",-0.0784828293651181,18.5642614797415,-1.0319934407018,0.346269008281691,0.468052435829709,-6.3712742776693 +"Q9V3W9",-0.0733612662184697,18.5209981092001,-1.03104834492293,0.346673846511139,0.468220223466057,-6.3722288963956 +"Q9VTV9",-0.0846929208639793,17.2427812282404,-1.02871664710298,0.347674316990335,0.469191553996666,-6.37458159551723 +"Q9VN25",0.10051766877484,14.7181430426355,1.02627424337018,0.348724841631386,0.470228808279024,-6.37704218437094 +"Q9VXP4",-0.0732548652984057,18.0125777565366,-1.02528960182162,0.349149094211717,0.470420588970229,-6.37803305120319 +"Q9VV47",-0.0707218118432031,20.178555219874,-1.02270590399423,0.350264353895024,0.47154232630904,-6.38063005565635 +"Q5LJT3",-0.0713861044561774,17.0089969389213,-1.01870822557914,0.351995736217211,0.473379419552892,-6.38463965575237 +"M9MSK4",0.0784413499452477,20.7402007008316,1.01824558304105,0.352196558552242,0.473379419552892,-6.38510299637954 +"Q9W289",-0.14468136667719,17.4805220610001,-1.01446860550035,0.353839577084362,0.475204842654361,-6.38888036768602 +"Q9VFF0",0.106627979930828,23.6390522512614,1.01069789676959,0.355486131729294,0.477032073792809,-6.39264201193182 +"Q9VJD4",-0.0698223559951181,20.8407516656364,-1.00970953558776,0.355918755330832,0.477228684800505,-6.39362642911427 +"Q9V4W1",-0.228160783342354,13.4756220408015,-1.00457218469126,0.358174406663915,0.479867397843703,-6.39873275002156 +"Q9XY35",0.087828334073631,19.1603415332553,1.00250518068257,0.359085250757584,0.480701603742898,-6.40078227144428 +"Q8SZ63",0.116112274432616,14.0993571494185,0.998537556550765,0.360838911344332,0.482661831693942,-6.40470826891783 +"A0A0B4KH34",-0.0878821350640138,23.3276309435036,-0.994281019569379,0.362728013356977,0.484691910470538,-6.40890830634833 +"Q9VD29",-0.113037775852497,20.7318189845536,-0.993567933711932,0.363045274055974,0.484691910470538,-6.40961072430111 +"Q9VA41",0.0821205001763445,17.755027550201,0.993156675899683,0.363228350172765,0.484691910470538,-6.41001567237821 +"Q9VXY3",0.0701899602096816,18.1140994074847,0.991964435074271,0.363759513440716,0.484844185511754,-6.41118897057121 +"Q9VLS5",-0.149972918252818,14.6088338784404,-0.991595936714804,0.363923813105945,0.484844185511754,-6.4115514182539 +"Q0E980",0.071263451445045,18.3673144008699,0.990580806614445,0.364376733114685,0.485060168264401,-6.41254940128245 +"Q7K549",0.0924752989743229,14.862050330999,0.989720305352977,0.364761020354817,0.485184515113106,-6.41339481672583 +"Q9XZ61",-0.0857765391398502,18.539216287032,-0.987633002005157,0.365694544322354,0.485362093950601,-6.41544342436227 +"Q9W3C4",0.354646779741007,14.6810247984171,0.987507279877282,0.365750833929014,0.485362093950601,-6.41556672060771 +"Q7YTY6",0.107573866493341,18.5240810318555,0.987470110173278,0.365767477275723,0.485362093950601,-6.4156031710277 +"Q9W2V2",0.0697863647461894,14.2849656422607,0.980475353131709,0.368910419050394,0.488850216950267,-6.42244568812842 +"Q7K4Z4",-0.0676770557191197,14.9415260208011,-0.979473840108695,0.369362207099322,0.488850216950267,-6.42342264671744 +"Q86BN8",-0.131203962755377,14.3269909199359,-0.979388992247199,0.369400502940377,0.488850216950267,-6.42350538251408 +"Q9VAC4",0.0692397445896233,19.406945929609,0.97901704203424,0.369568419409045,0.488850216950267,-6.42386801531622 +"O97477",0.0762273684258545,20.9346763656265,0.977407416753137,0.370295792467839,0.489424232833879,-6.42543621671445 +"P40417",0.0937991836877003,19.9034987657594,0.976587490033442,0.370666752244364,0.489526637168329,-6.42623435326126 +"Q9VH19",0.0766809007869611,14.0240136237448,0.975022376365337,0.371375688333817,0.490074879858233,-6.42775657939415 +"Q9V8M5",-0.0916479945204465,20.0372117539885,-0.973081580803435,0.372256309298787,0.490848635502274,-6.42964183155014 +"Q9W396",-0.0712468751660911,16.7689657063999,-0.971781423330099,0.372847184592504,0.491239418562636,-6.43090331509942 +"Q9VDI3",0.161809374339422,14.9753710722759,0.969731840631648,0.373780177456768,0.49207998105595,-6.43288954053768 +"P02299",-0.0714459488077637,21.9828310134775,-0.965531861374691,0.375697909781747,0.494214600564633,-6.43695052216345 +"Q9VBL3",0.161860539825112,14.4619030733747,0.964298088449295,0.376262753267437,0.494567590583203,-6.43814111606582 +"Q9VE12",-0.100821991516344,15.6574630073855,-0.962831161144013,0.376935223808147,0.495061380560622,-6.43955531386316 +"Q9VHX2",-0.0764820331033498,14.6836653628464,-0.960310310231479,0.378093081248869,0.496191392229043,-6.44198201620284 +"Q9VAF5",-0.0675618531551407,16.0437434337674,-0.958249533137191,0.3790417317248,0.497045289714597,-6.4439625000621 +"Q0KI15",-0.0681230740211465,15.5611594461355,-0.956888791659357,0.379669171609633,0.497308482688626,-6.44526857926809 +"P61851",-0.0681484793405005,23.6445731793455,-0.956521368127588,0.379838733180641,0.497308482688626,-6.44562101850452 +"Q9VKK1",0.138477475015215,14.5539558510938,0.954822097447894,0.380623712117311,0.497945373969941,-6.44724974599068 +"Q9VSL3",0.067470252388464,22.4598028773741,0.950907655297815,0.382436909842547,0.499925364903893,-6.45099388817416 +"P13677",-0.128397875108307,16.8777366109662,-0.94994714667209,0.382882873055857,0.500116391744063,-6.45191094418994 +"Q9VRG6",-0.0932037010167868,16.421045527411,-0.940757778548671,0.387170398302834,0.505320989334215,-6.4606512612659 +"O18335",-0.0651554840678124,21.7116960700685,-0.940084941513864,0.387485815702354,0.505337248312374,-6.46128883893194 +"Q8T9B6",-0.0846505747111088,19.5338162251594,-0.933092672660156,0.390775740029984,0.509229636226573,-6.4678953470462 +"Q9U1K7",0.131240118954395,17.3438662197876,0.929181772455525,0.392625437476464,0.511240616479892,-6.47157503809655 +"O97365",0.0661127891237712,18.0012798686783,0.927409400625944,0.393465963339131,0.511935434360117,-6.47323896414249 +"Q7JZV0",-0.0904375015389167,15.0291161330482,-0.921431529532884,0.396311324351808,0.515235611082476,-6.47883414586104 +"Q9V3F3",0.168930439992572,14.6130738649784,0.918592702704122,0.397668192574988,0.51659699783106,-6.48148206259536 +"Q9VAS1",0.142918558473712,12.9383148994806,0.916548269861138,0.398647615579006,0.517466321234071,-6.48338533491136 +"Q9W306",-0.0817888757592957,14.8771873084604,-0.914110109618319,0.399818124547505,0.518582139770792,-6.48565111816197 +"Q9VL93",-0.0674138607226933,15.3074892843514,-0.909303954627082,0.402133309319807,0.52092640566563,-6.49010459808246 +"Q9VNA3",-0.0699995980891082,18.6348230086263,-0.909062023236937,0.402250126197441,0.52092640566563,-6.4903283235881 +"Q9VPQ2",-0.0959665660500661,16.4311070532407,-0.907952349903867,0.402786271808779,0.521216060028738,-6.49135393404247 +"O17452",0.105154039000084,19.9549022415137,0.905570672010017,0.403938871016711,0.52230235415184,-6.49355209443079 +"Q9VF51",0.0831287447064923,17.6031936909497,0.902257833278825,0.405546358847569,0.523640045219541,-6.49660262986422 +"Q8ING0",0.158588520763793,14.6636453792654,0.9016432664769,0.405845109939861,0.523640045219541,-6.49716763448925 +"Q24050",-0.0951731475929183,16.6569514640471,-0.901468758297264,0.405929972351731,0.523640045219541,-6.4973280177959 +"Q8SZK9",-0.0618226413981127,22.1739168730301,-0.900853769589246,0.406229147790219,0.523640045219541,-6.49789304687697 +"Q9V420",-0.0619856837244921,17.4742753573553,-0.893997034940953,0.409576338294516,0.527546974729924,-6.50417353156739 +"Q8MKK0",-0.112435929592852,15.6912247437757,-0.891924946874913,0.410592031900123,0.528270841647827,-6.50606451130946 +"Q9VPZ5",-0.0689442416412902,18.4154094545034,-0.891558717622486,0.410771751569084,0.528270841647827,-6.50639839344474 +"Q95NU8",-0.0649966074190935,17.5452830449278,-0.888963951694509,0.412046817997179,0.529496158962406,-6.50876107041534 +"Q9VYT1",0.074562517705802,14.2814879338578,0.888328751771124,0.412359418760291,0.529496158962406,-6.50933867770588 +"Q9VL18",0.0658935390421114,20.7929701278283,0.886313556417559,0.413352364125198,0.53036287950833,-6.51116913170564 +"Q9V9X4",-0.0678180732257587,18.5825154974425,-0.878167127020427,0.417385072005907,0.535125518913031,-6.51853722355363 +"A1Z8D0",0.141080177822857,13.6089198675522,0.875917722009791,0.418503880769429,0.536147828819822,-6.52056277285142 +"Q8SY33",-0.0691981810329381,17.4755297630097,-0.87207591438292,0.420420014859179,0.538189243887269,-6.52401326498304 +"Q9VDC3",-0.0599837778351642,19.248848128258,-0.870002024793449,0.421457161907814,0.539103179495578,-6.52587118995025 +"Q9VQM2",-0.0708323603202814,20.1585539072097,-0.868710134738711,0.422104217272886,0.539517114491321,-6.52702687073925 +"Q9VS44",-0.084927849237344,15.0920236555752,-0.862831256023857,0.425058253644909,0.542869918552434,-6.53226959682195 +"A8E6W0",-0.0797999649781538,16.4210171800233,-0.862196215108754,0.42537828749882,0.542869918552434,-6.53283431482034 +"Q9VZG0",0.062628683510539,21.8468913939606,0.859610090896893,0.426683471392997,0.544119289207583,-6.53513081584772 +"Q24298",0.0606493632797616,19.4578005275762,0.858890329591047,0.427047264548918,0.544167178966841,-6.53576904303769 +"Q02910",-0.0726760847358108,16.2215342792238,-0.857249174518018,0.427877640532822,0.544809087334921,-6.53722277693412 +"Q95U34",-0.0636244345789194,19.4874496697684,-0.855925242253004,0.428548400095599,0.545246934675407,-6.5383939813073 +"Q4QPU3",0.194443944063716,14.6706544122113,0.853021817591572,0.430022176137455,0.546611278732166,-6.54095766445871 +"M9PDU4",-0.0914800103793709,22.5984270060111,-0.852522243620982,0.430276144469625,0.546611278732166,-6.5413981147916 +"Q9W3X8",-0.108096126713205,13.7861132217918,-0.85132128263069,0.430887139279558,0.546688236018682,-6.54245614253829 +"C0HK94",0.0696136334207971,18.3892397550976,0.851114858344419,0.430992224439189,0.546688236018682,-6.54263788496609 +"Q9VBS7",0.0639075530959445,19.6885683984174,0.83708221737023,0.438181116626593,0.555384576392976,-6.55491379396989 +"Q9VGK3",-0.0973079940236126,17.1238804753604,-0.835467506146916,0.439014050177191,0.556017794757445,-6.55631633916036 +"P14199",-0.0691658871435372,18.521536615673,-0.828297941377947,0.442726657410982,0.560294434416933,-6.56251869704275 +"E1JGR3",-0.0917875615069921,12.021942732833,-0.826454149865171,0.443685186589826,0.561004367618956,-6.56410709272678 +"Q9VHF9",0.0791372690410306,17.1573054402356,0.82592551510459,0.443960290921476,0.561004367618956,-6.56456199870896 +"Q9W125",0.118803603527105,21.4387002943501,0.824979904219648,0.444452707228759,0.561201450157131,-6.56537516422636 +"B7Z107",-0.0648675559872132,16.170950444921,-0.821916951629421,0.446050483042094,0.562792893883671,-6.56800416311839 +"Q9VKV9",0.118209402417795,15.6554302428651,0.821218140902336,0.446415609191215,0.562827842880534,-6.56860290701354 +"Q9VTF9",0.0778810727231765,17.4539230329762,0.819844647574071,0.447133898337143,0.563307660442866,-6.56977857161612 +"Q9VLP2",-0.137608792183784,19.4469018016198,-0.814998746711381,0.449674950313356,0.566081371413341,-6.5739142980074 +"Q9VXH4",0.0600657905330895,17.0916896443318,0.81326868274156,0.450584718260079,0.566798876363357,-6.57538620069685 +"P0DKM0",0.0709970927865591,17.0795570040669,0.812038932612145,0.451232214786718,0.567185632452333,-6.5764309659082 +"Q9V400",-0.0934839256899469,14.0546732409542,-0.811075943013854,0.451739731874044,0.567395988528544,-6.57724823792288 +"Q7JYZ0",0.152098119596657,16.9264633333431,0.802626957970126,0.456210498775651,0.572580219682307,-6.58438624762297 +"A1Z8H1",-0.0623109132564643,23.0822961859879,-0.798414519178442,0.458451544995221,0.574960283497765,-6.58792318810764 +"Q9VHG6",-0.0779678305997784,15.8185862199328,-0.796982716000109,0.459215097416487,0.575485185943426,-6.58912206096538 +"Q7KTP7",-0.0555900700476073,17.828732333647,-0.795809687904694,0.459841339361222,0.575837352893783,-6.59010299582728 +"Q9VM07",0.0561514892406318,16.9568447238228,0.789128798997651,0.463419880301656,0.579883241067638,-6.59566811491789 +"Q9W379",0.0815025275777863,16.2685883469135,0.784952031015882,0.465667335256043,0.582258707051784,-6.59912848800128 +"Q9VEK8",-0.0558472036087352,18.8669894419412,-0.783164201499458,0.466631739826739,0.5830275221206,-6.60060522540898 +"Q7PLI0",0.0774087506378933,17.8911343822824,0.777363473041737,0.469770716435737,0.586510145969169,-6.60537818252708 +"A1ZBM2",0.0802839320262727,18.6582769917847,0.774850620169138,0.471135205922033,0.587773764755386,-6.60743704507161 +"P04388",-0.0850131365051734,16.4798609553595,-0.77355293805545,0.471840963769532,0.5878541353247,-6.60849819837272 +"Q9VF23",0.103848148319774,15.1336659313656,0.773436202447076,0.471904488728881,0.5878541353247,-6.60859358702154 +"Q9Y114",-0.055527079670501,18.640211200564,-0.77209090427883,0.47263701225363,0.588327265999295,-6.60969204710259 +"Q9V3G7",0.0921225968375801,18.0239820641855,0.766951204993482,0.475443094081949,0.591346164249987,-6.61387462978327 +"Q9VQL1",-0.0535507699336577,20.063637180566,-0.766351442002561,0.475771314402567,0.591346164249987,-6.61436124826784 +"Q9VK69",0.0536837709992177,20.2714638813655,0.762694989667777,0.47777579745376,0.593395405921721,-6.61732131367317 +"Q9VHG4",-0.0647207305165907,18.3126137615455,-0.757475060517994,0.480647766274295,0.596518209929705,-6.62152737694185 +"A0AQH0",0.140640432401351,16.8119690007517,0.756147583011464,0.481380080881978,0.596710035848594,-6.62259331124265 +"Q9V4N3",0.0707209667689952,19.8126046190761,0.755898077706005,0.481517810702762,0.596710035848594,-6.62279349018231 +"Q9VYT3",0.0798291694481215,14.4151330208265,0.75481223553187,0.482117532502155,0.597009683900219,-6.6236640448456 +"Q9VV76",-0.116671348424239,16.3840444731396,-0.750021270622828,0.484769926183675,0.599848840411254,-6.62749305350263 +"Q8IMT6",0.141634309587937,16.0120730289302,0.746144252829428,0.486923843085278,0.601767017491777,-6.63057718616856 +"Q9VJD1",-0.0683046670528036,18.6041215990503,-0.745932548373402,0.487041650847661,0.601767017491777,-6.63074522240351 +"Q7KM15",0.0589661845716201,17.1819492574841,0.745087643912759,0.487512016310664,0.601902326577489,-6.6314154636943 +"Q9VDE2",-0.0892262785022737,19.573536982568,-0.743292516449898,0.488512435872906,0.602691377985212,-6.6328374476256 +"A8DYK6",0.0668131016290712,16.6312448000336,0.740350757784058,0.49015497579773,0.604270879253965,-6.63516169598836 +"Q9V9U7",0.0788401391209703,17.853869436518,0.733568583044401,0.49395650634359,0.608507719779253,-6.64049161789094 +"Q9W1X8",0.0512599823458224,16.0542096906193,0.732506960599641,0.494553416584831,0.60879343089557,-6.6413222964192 +"Q9VLP3",-0.0597825606514242,17.6391600551601,-0.730212695383235,0.495845105680569,0.609933360084948,-6.64311411317527 +"P29746",0.0650500576805229,21.2997939382624,0.727840553126157,0.497183097570691,0.611128523764121,-6.64496191776701 +"Q9VFV9",-0.0713988209724299,21.4255249497832,-0.726747074847085,0.49780070785017,0.611437099185629,-6.6458120364465 +"O15943",0.0527221085236889,20.3076864578096,0.724136274149797,0.499277465031308,0.612799714254762,-6.64783755231466 +"Q9VUW2",0.134674154711767,14.4818331449837,0.72066576894815,0.501245175332454,0.614762465040098,-6.650520781996 +"Q7JVK8",-0.0491634111650328,19.2046260831175,-0.713887597122685,0.505103633973979,0.618607778812771,-6.65573074705318 +"Q9VIS4",-0.0704047362256333,14.0746296187422,-0.713855104683438,0.505122179102515,0.618607778812771,-6.6557556242694 +"P08736",0.0534759327540257,24.3328038564678,0.712670583531986,0.505798565171483,0.6187988873428,-6.65666189231251 +"Q9VAQ4",-0.0787779787369729,15.987023045245,-0.712282693004033,0.50602019324675,0.6187988873428,-6.65695839434011 +"Q7JVH6",0.0496496820895622,19.0099962911379,0.710136018098324,0.507247933518771,0.619845826453706,-6.65859689312195 +"A0A0B4LFA6",0.0627300299597913,19.5563191120211,0.707087650889028,0.508994865147378,0.62152520868655,-6.66091660066801 +"O77430",0.0630608104874426,19.5552511597352,0.703468811866738,0.51107402811943,0.623393208775729,-6.66365968559813 +"Q9VW58",0.147588858947801,14.8636246742658,0.702573072658761,0.511589554053348,0.623393208775729,-6.66433685471061 +"Q9VMB3",0.0541704759303165,18.5651618620501,0.702475268085177,0.511645864996387,0.623393208775729,-6.66441075054235 +"Q7K3E2",-0.0496526368786121,20.5163685282797,-0.69681779773707,0.514910298851266,0.626540469272216,-6.66867067326476 +"Q6AWN0",0.0576108891868685,18.2488381260099,0.696696909998707,0.514980205858638,0.626540469272216,-6.66876138574394 +"Q9VZY0",0.0503163198297543,17.3402283513178,0.695325459655066,0.515773737124925,0.62704853755421,-6.66978958505621 +"Q9W3V3",0.146549315620986,13.2013784787417,0.692808850071074,0.517232008591409,0.628363430684975,-6.67167193629818 +"A1Z6X6",-0.0564005783899368,18.4789269266705,-0.686785305620903,0.520733652000175,0.631964038807833,-6.67615421851471 +"P05389",0.0559877930068922,20.4718849377141,0.686407910377165,0.520953569161133,0.631964038807833,-6.67643395870403 +"Q9VD58",-0.0472007103805829,22.7156251573644,-0.685099658669917,0.521716399404302,0.632429472533704,-6.67740268947342 +"Q9VTC3",0.0808342893013929,17.3005887199522,0.683429269438602,0.522691473420203,0.633151327280246,-6.67863732394438 +"Q8SXS0",-0.132051027140653,14.3897025580248,-0.67829408284479,0.525696698043403,0.636329529997385,-6.68241705047885 +"Q8SXC2",0.122653978011837,14.6088900757531,0.672716939715407,0.528973544378788,0.63983166934287,-6.6864949087109 +"Q9V436",-0.0485406782294433,19.1148552631608,-0.670001806839064,0.530573698725441,0.641302122807272,-6.68846986881714 +"Q9VA97",-0.104482576369648,18.5396197497991,-0.667711312021384,0.531926074612743,0.642471174840011,-6.69013070654969 +"Q9VL89",0.0520136075862503,16.8744377559418,0.664465682814268,0.533846271829184,0.644323864986309,-6.69247587570879 +"P80455",0.0647723523242405,20.561423264705,0.661887364791564,0.535374909886939,0.64570162667492,-6.69433197404453 +"Q9VP13",0.170484801405793,11.7611489921875,0.65741676913226,0.538032230023765,0.648437687629798,-6.69753578843059 +"Q9W4A0",-0.0539304394047129,17.1057253209007,-0.653849849286509,0.54015856597647,0.650160392772665,-6.70007875596511 +"Q9VPR1",0.0933970806492344,13.5948450681668,0.653711432945602,0.540241189678006,0.650160392772665,-6.70017720001547 +"B7YZT2",-0.0617054807089517,18.4491645709062,-0.652856485294695,0.540751708425959,0.650305587350036,-6.7007848600108 +"Q9VTZ6",0.0459020050203272,16.9296280998139,0.650648350660197,0.542071710706103,0.651275724655339,-6.70235117253314 +"Q7KNM2",-0.0661422174110378,19.7500902217697,-0.65020111626445,0.542339317473781,0.651275724655339,-6.70266786179623 +"Q9V434",0.0698792862864757,14.8518950912447,0.648960091873737,0.543082343860869,0.651698812633042,-6.70354566564008 +"Q9VNE2",-0.0632993376814355,18.9396271817808,-0.645758809035545,0.545002055506034,0.653532299485309,-6.70580339335678 +"Q7K0P0",-0.0465934088090183,15.3290981560385,-0.644667782857935,0.545657310208923,0.65384798378483,-6.70657066783264 +"Q9VWT3",0.0482386235432006,14.2196316583417,0.643196342565989,0.546541840049645,0.654437752478684,-6.70760371484593 +"Q9VU84",0.0622319447033632,18.4802291086257,0.639034972121292,0.549048363396825,0.656967482170662,-6.71051432620451 +"Q9VCB9",-0.0515725573263754,16.9779890941927,-0.637811615463933,0.549786629751979,0.657379282026022,-6.71136690557748 +"Q7JZF5",-0.0460911302313392,16.9185387510898,-0.633731618384164,0.552253400695461,0.659341855141402,-6.71420018976864 +"A1ZBK7",-0.057666549362704,17.5763504558789,-0.633074697450296,0.552651235202164,0.659341855141402,-6.71465491703529 +"A1Z7P1",0.152799295795232,14.6166976314731,0.632505561642619,0.552996054293096,0.659341855141402,-6.7150485507015 +"Q9VGU6",0.0525271442711244,18.5501554142258,0.632483957968772,0.553009145888982,0.659341855141402,-6.71506348653854 +"O61604",0.0445887776339902,20.9751918721907,0.630362671568022,0.55429558403643,0.660403595837689,-6.71652791361266 +"Q7K486",-0.0696459018736242,17.5514644374352,-0.628163891228851,0.555631024460449,0.661522161884389,-6.71804136686744 +"Q9VEY5",-0.0429775449767043,20.8535069240382,-0.625813504960653,0.55706079889862,0.662751364167545,-6.71965413147504 +"Q9W2N5",-0.0491293107469204,12.9109489505014,-0.624463299159099,0.557883201424467,0.663256721294377,-6.72057824319784 +"Q9VTW6",0.0660960645856932,16.2578702143866,0.622029335082498,0.559367652305683,0.664547894619572,-6.72223974913009 +"Q9W404",0.117649408337801,15.9523729503746,0.614050862217885,0.564251071867478,0.669872446886088,-6.7276467394661 +"Q9VAU6",0.0968644049325196,13.5429977755743,0.610438657730122,0.566470763285827,0.672029326572375,-6.73007480878396 +"Q9VAG3",0.0455827796370745,16.7528795099777,0.605929591252237,0.569249200038536,0.674845533521164,-6.73308825549285 +"Q9VSX2",-0.0448111768758359,17.7832433612432,-0.597498633177952,0.574466886103123,0.680547419048302,-6.73867046557721 +"Q9VUK8",0.0411677172987446,20.7667336011136,0.596032428573114,0.57537727737524,0.680844465506264,-6.73963427745742 +"O97479",-0.0502842418850946,18.0399829646779,-0.595780182371041,0.575533990625799,0.680844465506264,-6.73979988307415 +"Q9VBU0",0.0593862976071922,14.1680423004946,0.593061021816126,0.577224988961419,0.682360936631926,-6.74158118043801 +"Q7KQM6",-0.0525109374885169,15.1785556679596,-0.589480827112143,0.579456082273427,0.684513275660111,-6.74391564274702 +"Q9V406",-0.0665548559262366,17.0899232962355,-0.586553153794825,0.581284443566517,0.686187156312067,-6.74581541001125 +"Q7K159",-0.0517139915977882,14.5572123870877,-0.58321246299479,0.583375017403855,0.687683038169065,-6.74797303003458 +"Q9V4C8",0.0435025347004441,17.3381179634991,0.582195067575304,0.584012598326219,0.687683038169065,-6.74862797206115 +"Q7JXB9",0.0449447370832186,16.1063255595894,0.581275536488541,0.5845892123112,0.687683038169065,-6.74921904852673 +"Q9Y112",-0.0401255782142336,22.2390624848392,-0.580850968873059,0.58485556371267,0.687683038169065,-6.74949168384801 +"Q9V3P3",0.0449553693278482,19.3225771666069,0.580661106028009,0.58497469740592,0.687683038169065,-6.74961354715876 +"Q9VH39",-0.0528672065641551,18.1766331910692,-0.580580438575907,0.585025318442388,0.687683038169065,-6.74966531287507 +"Q9VVC8",-0.0536089260319788,16.8077317413639,-0.577610171666322,0.586891083249389,0.689390371028155,-6.75156697150574 +"Q9VI53",0.0419404580574554,16.4644484210351,0.574502629378026,0.588846907118556,0.691201014126497,-6.75354730718919 +"Q9VE52",-0.0472404380438967,15.9696368870858,-0.573617999395642,0.589404389887321,0.691368862399473,-6.75410932824589 +"O44226",-0.0399233859534043,20.2349506628935,-0.572441124414178,0.590146532005496,0.691752927185641,-6.75485583145763 +"Q9VMG0",0.168348679902619,14.6672198998262,0.570692296011773,0.591250382874154,0.692144443322974,-6.75596262651422 +"Q9VWA8",0.0970510272145848,14.5742747783781,0.570597186746876,0.591310450680599,0.692144443322974,-6.75602273320358 +"P41094",0.0417840272450611,21.0910128438506,0.563691024356972,0.595681873357606,0.696772345554339,-6.76036353646642 +"Q9VER6",-0.0717517937243297,14.8997805695186,-0.560858650511921,0.597480222825754,0.697883808943116,-6.76213023918762 +"Q9W1H5",0.0430662592199056,17.3206632088675,0.559985371429795,0.598035337538454,0.697883808943116,-6.76267335566374 +"Q9VD68",-0.040999867347578,14.737673902258,-0.559940301211921,0.598063995449928,0.697883808943116,-6.76270136567467 +"Q9VD30",-0.0492598239650306,21.3439994505474,-0.55956028115526,0.598305663542359,0.697883808943116,-6.76293745894678 +"Q8SX57",-0.0382381380844947,17.9100606318777,-0.555576164205254,0.600842766995125,0.70035341393981,-6.76540406967896 +"Q9VPB8",-0.0538407279595603,15.5980569524299,-0.552611644127816,0.602734680372037,0.701609268998696,-6.76722925290193 +"Q9W2D6",-0.0390350013120333,19.6780485499348,-0.552569751929303,0.602761440332812,0.701609268998696,-6.76725498256025 +"Q9W078",-0.0605123484921748,19.4795331001307,-0.549348684097175,0.604821078462896,0.703515731433829,-6.76922811156472 +"P43332",0.0526594016473219,17.279297398873,0.546784100336991,0.606463873072445,0.704758453965373,-6.77079173412137 +"Q9VLR3",-0.0920836967663412,16.8180177168826,-0.546362015366029,0.606734496339494,0.704758453965373,-6.7710484521943 +"Q9VLS4",-0.0462252530999798,20.6415081571789,-0.540527430275064,0.610482561120657,0.708618588691201,-6.77457895670189 +"Q9W0A8",0.0464023592717169,18.7181269368589,0.538116206373934,0.612035396015907,0.709927010121372,-6.77602807187629 +"Q9VS02",-0.0407188593058265,17.8607067953129,-0.537273714403579,0.612578498447105,0.710063193474476,-6.77653302941882 +"Q9V9U4",-0.0460159938493323,15.8532250932971,-0.535546635158266,0.613692704565577,0.710860716121793,-6.77756595547823 +"Q9VL00",-0.0650079382469393,16.0793133093368,-0.531055304542508,0.616595667058631,0.713397885863389,-6.78023812951271 +"Q9VG26",-0.0607953566730792,19.8020695137211,-0.530834693681528,0.61673846008094,0.713397885863389,-6.78036886349545 +"Q9VUV6",-0.0420436510801103,14.7274538578754,-0.52986231432045,0.617368068821383,0.713631281215569,-6.78094451311069 +"Q9VH07",0.0370055390935882,18.2349073985714,0.524710117248368,0.620710173800779,0.716522149957164,-6.78397875903433 +"Q9VKR4",-0.0412591503676616,19.3197390115252,-0.524682491512632,0.620728121515649,0.716522149957164,-6.78399495644797 +"Q9VC58",0.0453624542678988,13.0999373290857,0.522255992656203,0.622305698211161,0.717531912957316,-6.78541465067653 +"Q9VMF0",0.0564092770162183,13.9003983751395,0.521436215821864,0.622839182891936,0.717531912957316,-6.78589294309157 +"Q9W3G8",0.0892598457501563,15.5433620682293,0.521352908218266,0.622893411248318,0.717531912957316,-6.78594151030035 +"Q9W3T7",0.0375331874370488,17.4312483605666,0.511629333724982,0.629241087843767,0.724252788782091,-6.79156200515073 +"P20240",-0.0470636840639784,17.4374548199983,-0.510930012006243,0.62969899974643,0.724252788782091,-6.79196253934227 +"Q7JW03",-0.0597226401922022,17.1663078526652,-0.509976792172333,0.630323460786534,0.724252788782091,-6.79250769298171 +"Q9VNR6",0.0632337502430005,14.7795711350731,0.50976133203005,0.630464657860669,0.724252788782091,-6.79263078836499 +"Q8IQC6",-0.0702791646219687,16.049173581072,-0.507115036315109,0.63220027948118,0.725746776445016,-6.79413880451287 +"Q86PD3",0.0419597587139009,18.8600679808633,0.506123982154647,0.632850960087021,0.725994086262139,-6.79470173220684 +"D0UGE6",0.0429290098086721,15.3538873329552,0.495653885776449,0.6397476347279,0.733401412182912,-6.80058763809532 +"Q8T3X9",-0.05822822899923,18.3585092693131,-0.490644494279296,0.6430617649742,0.736661314288093,-6.80336406492255 +"Q9VGG5",0.0483892808589363,17.119710811391,0.490021552801486,0.643474541317597,0.736661314288093,-6.80370752640811 +"B7YZN4",0.11623190271975,15.5327639846098,0.488976250190157,0.644167505964993,0.736948833984643,-6.8042829626794 +"Q9VMY1",0.0603103358389578,15.4977823771855,0.484614544924323,0.647063355948788,0.739754405567223,-6.80667194066288 +"Q9V3N1",-0.0372354168370173,18.3593938724601,-0.483644683625764,0.647708220105601,0.739984459682289,-6.80720048728399 +"Q9VIQ8",0.0431799165835542,21.2676856815221,0.476352837934741,0.652567575061703,0.745025814649501,-6.81114324545417 +"Q9VS84",0.0403976735047387,17.5296576578627,0.475304474617155,0.653267801364041,0.74531511126896,-6.81170558405701 +"Q7KTW5",0.0313443518466698,21.5959661437104,0.452875570177568,0.668342796588623,0.761993017573358,-6.82346270955947 +"Q960W6",-0.104617791031673,13.8275071091676,-0.447020594624812,0.672307269280552,0.765989429754071,-6.82644535953494 +"Q9VD14",0.039879125825987,17.6936719519804,0.441119976031475,0.676314670118723,0.770029262633468,-6.82941481915446 +"Q9VFT4",-0.100137561232067,15.5703705785233,-0.435173851736008,0.680365071863696,0.774112510142323,-6.83237006329099 +"Q9VB68",0.046955455098562,15.4283090391869,0.432627194269076,0.682103497993357,0.775168715341575,-6.8336243380512 +"Q7K3W4",0.037700839813354,19.3194358958376,0.432411706470297,0.682250697474243,0.775168715341575,-6.83373015488379 +"P55828",0.0344548519148127,19.9823522442907,0.430715639066589,0.683409827694532,0.775168715341575,-6.83456130503012 +"Q9V9S0",0.0356459874685058,17.1446908110044,0.430460985341148,0.683583947647527,0.775168715341575,-6.83468583392611 +"Q9TVP3",-0.0343756366313883,23.1257060138579,-0.430412627988994,0.683617014548835,0.775168715341575,-6.83470947352318 +"P22769",0.0326732894730029,20.1830161938865,0.427235774095883,0.685791082485467,0.776876696998892,-6.8362570559679 +"Q9V3Y4",-0.0601327795267395,13.8744780234958,-0.426850781839541,0.686054780982835,0.776876696998892,-6.83644387520755 +"Q9VTP4",-0.0309690411024626,20.8440849490898,-0.423861001692673,0.688104305521143,0.778668915610086,-6.83788932419995 +"Q9VJC7",-0.0492811335180754,18.6835812533128,-0.422224625382224,0.689227322199806,0.779410965036797,-6.83867643090267 +"Q9VF82",-0.033376383379025,14.8509219679696,-0.42123565684785,0.689906466334276,0.779650396914344,-6.83915075022793 +"Q9VKF0",0.0445242204862257,16.0444807388335,0.420283734665538,0.690560476915196,0.779787844987858,-6.83960631890762 +"Q24400",-0.0360174087879344,21.2790683290672,-0.419697942095698,0.690963090462862,0.779787844987858,-6.83988618676722 +"Q9VSY8",-0.0380162494814229,18.101186636303,-0.414960354397938,0.694223388745569,0.78293753375768,-6.84213617892317 +"Q9VG76",-0.0474918894189145,15.8200706574022,-0.413034703814275,0.695550688380316,0.78390442447187,-6.84304387308762 +"Q9VIG0",0.0373876828562452,17.4793962716817,0.411732738411561,0.696448786677472,0.784386614569901,-6.84365533690036 +"Q9VMY9",-0.0366678274712378,14.7208694238904,-0.409284129498232,0.698139340896385,0.785760067891478,-6.84480041020126 +"Q9VFJ2",-0.0404599027803485,13.8173102233537,-0.407502317018304,0.69937075564461,0.786615253145792,-6.84562962949888 +"A1Z8Z3",-0.0392437831552392,20.0832760204004,-0.406637436027007,0.699968848129651,0.786757438463786,-6.84603090222489 +"Q9W415",-0.0576425695243081,16.7830788304289,-0.404381579010563,0.701529982649578,0.78732449721313,-6.84707376511889 +"Q9VGF7",-0.0302169433720501,20.1580601465096,-0.402907867710045,0.702550730230179,0.78732449721313,-6.84775210260918 +"Q8SXF2",-0.044508983854449,15.4813092941222,-0.402776854078939,0.70264150898737,0.78732449721313,-6.84781229436714 +"Q9VEP8",-0.0308325508039857,17.1469312620475,-0.402668434873028,0.702716636339486,0.78732449721313,-6.8478620916127 +"P92181",0.0330982938457431,16.522485025883,0.402499883144009,0.702833439058963,0.78732449721313,-6.84793948284734 +"Q9VSU6",-0.0460526193914674,21.6047855137806,-0.398290194273704,0.705753614999887,0.790065120684437,-6.84986248366003 +"Q9VLM8",-0.0289579238632811,16.5924668296422,-0.396509976674751,0.706990217273723,0.790918633408833,-6.85066996303086 +"A0A6H2EG56",0.0363423211535938,20.9130705088959,0.395824184580664,0.707466861469067,0.790921397406437,-6.85098011808133 +"O76454",-0.0340918850913425,17.828218017154,-0.393637274921041,0.708987818423951,0.792090878185634,-6.85196578403812 +"A1Z6S7",0.0307408046915967,17.5766443967129,0.391731663562082,0.710314368929891,0.793041745230963,-6.85282046459814 +"Q9U5L1",-0.0343417234201482,17.6807265878235,-0.389155486537251,0.712109534723185,0.794514183222925,-6.85396967327469 +"Q9V428",-0.0381017092711886,18.6989050493441,-0.38698072515312,0.713626598203707,0.795674576072048,-6.85493423772723 +"Q9VXM4",0.0303521601712653,20.1750060908287,0.382928803837039,0.716457051875047,0.797943538612397,-6.85671773810114 +"Q9W258",-0.0327667700990659,19.3634705502135,-0.382652085004746,0.71665053833442,0.797943538612397,-6.85683889121068 +"Q7JVM1",0.040095656298444,16.0681423180156,0.382014067209441,0.717096741235002,0.797943538612397,-6.85711791241608 +"Q7JQW6",-0.0301014196363578,15.8962752254491,-0.380356584119786,0.718256501998016,0.798701230221794,-6.85784071115968 +"Q9V998",0.0429708075420514,15.7570849007709,0.378160494094714,0.719794433180262,0.799878157591391,-6.85879380131293 +"Q9V3T8",-0.0381041083698985,15.7189647562247,-0.376393648037282,0.721032835002789,0.800720884676865,-6.85955680521296 +"Q7K1Q7",0.0316507773615822,16.4577795706928,0.374154659305438,0.722603534118683,0.801931267405165,-6.86051883379186 +"Q9VAY0",0.0640397135984507,14.1047974485129,0.367645582857067,0.727178409175939,0.806347815929774,-6.8632846453547 +"Q9VQ62",-0.0414330196540611,19.7365047730438,-0.367013384609329,0.727623425530932,0.806347815929774,-6.86355081949126 +"Q9W2K2",-0.085293685557625,15.7517860049611,-0.366431032885117,0.728033459706378,0.806347815929774,-6.86379562141935 +"Q9VDK7",-0.0305536463096985,17.8483948196951,-0.363697469697285,0.729959514246627,0.807944571840327,-6.86493978236367 +"Q9I7T7",0.0743505629626835,14.4441847634379,0.360684860829777,0.732084751514469,0.809399358766781,-6.86619129614442 +"A1Z7K6",-0.0378889925029284,15.5803972335255,-0.36045872887615,0.732244383920308,0.809399358766781,-6.86628483716708 +"Q9W0K9",-0.0397369356257542,14.1448177124673,-0.357700150225552,0.734192947009418,0.811015785173317,-6.86742144264865 +"Q07093",-0.0477434396516188,14.4060755453401,-0.356539558238662,0.735013415337566,0.81138476292724,-6.86789714943655 +"Q7K2D2",-0.0280705719741512,20.3822669432425,-0.348254759797376,0.740881634719646,0.817321803381197,-6.8712500906493 +"Q9VP78",-0.0262540421898727,14.96929174764,-0.346961890851514,0.741799172983176,0.817793139812252,-6.87176653667795 +"Q9VZ24",0.0465935983596424,22.0586471952292,0.33886708835702,0.747554785112921,0.823594043308027,-6.87495829356258 +"Q7PLT4",0.0344094501137775,15.7280467496831,0.333425931503505,0.751433929698971,0.827046581747201,-6.87706316373428 +"Q9W3C3",0.0276182577371191,16.3007936097589,0.333080847320267,0.751680226575994,0.827046581747201,-6.87719555533359 +"Q9V6B9",-0.0383884823010234,15.7294873781271,-0.330527543700511,0.753503615992357,0.828384873026576,-6.87817104359921 +"Q9W4X7",-0.0274750058525726,19.0952751261576,-0.329987047075043,0.753889830488215,0.828384873026576,-6.87837661614887 +"P48159",0.0243764720843238,19.7744638600398,0.328252339809966,0.755129914475993,0.828991551903544,-6.879034212977 +"Q0E8P5",-0.0330137507468145,17.7912010849742,-0.327339332733223,0.755782922721853,0.828991551903544,-6.87937898086723 +"Q95T12",-0.0259001373363894,15.9412136567592,-0.3271296246269,0.755932943912045,0.828991551903544,-6.87945804016181 +"Q9V597",-0.0424477963422625,19.8981804380983,-0.325750660910298,0.756919726146376,0.829528320113111,-6.8799766927569 +"Q8SXX1",-0.0231955276510689,19.9573339295408,-0.322437784986374,0.759292514297022,0.831582346584001,-6.88121411675394 +"Q9VB79",-0.028889465894828,17.6186317750181,-0.319201192897811,0.761613515626075,0.833576997417515,-6.88241129773983 +"Q9VVU2",-0.0243320758665533,19.9445743774246,-0.316948622449092,0.76323051224244,0.834547999611464,-6.88323763888618 +"A1ZA83",0.0322714477510377,17.0853464440579,0.316571516711226,0.763501347366363,0.834547999611464,-6.88337542710718 +"Q9XYZ9",0.0265951205903185,21.9538249904414,0.315358406494746,0.764372851170297,0.834953448429637,-6.88381760596359 +"Q9VMH2",0.0261865026029433,17.2865894828056,0.312638058580923,0.766328571245393,0.83654192201395,-6.88480322609468 +"Q9VZS3",-0.0257012361877855,18.4387864640311,-0.307053504742397,0.770349493096635,0.840381265196329,-6.88680078264082 +"Q9VJN0",-0.0247458569568941,17.4689535720176,-0.299543248918035,0.775769597045093,0.84563508607361,-6.88943233002699 +"Q8IP97",-0.0229548675489184,19.9894118664583,-0.298976156156996,0.77617944651001,0.84563508607361,-6.88962847855008 +"Q6IGN6",0.0678543394092195,16.849767108227,0.297195258852859,0.777467063697393,0.846485027576535,-6.8902421260179 +"Q7KUK9",-0.0346922632458089,18.4264443982534,-0.293377390149403,0.780230119134897,0.848939229430534,-6.89154570195812 +"Q9VF28",-0.0232632476383632,17.699155320239,-0.292352814596961,0.780972238582293,0.84919276007514,-6.89189275688987 +"Q9VMX3",0.0249493626108972,12.544537365945,0.289526957968661,0.783020402849458,0.850591341422144,-6.89284386550417 +"O76877",-0.0351539509453325,17.3164385426965,-0.289171249190572,0.783278357568593,0.850591341422144,-6.89296295343439 +"Q9VJ28",0.0203246276406546,19.0163430549334,0.287798095248937,0.784274438835467,0.851118909549485,-6.89342134126904 +"E1JJH5",-0.019904358870054,21.2565583488575,-0.285796631533435,0.785727117113766,0.852140982669546,-6.89408568360453 +"O76521",0.02321101368819,16.1466512794009,0.282886868619602,0.78784077682172,0.853878112890597,-6.89504349478153 +"Q9VZS1",0.0328156738867698,15.5758323061002,0.275795956522231,0.793000117055223,0.858911815096177,-6.89733776646282 +"P45594",0.0203305571780845,23.0920884978696,0.274081180995812,0.794249570031778,0.859706867497084,-6.89788408704882 +"Q9V9S8",-0.0194219625113163,19.8759735898704,-0.27298044698505,0.795051970506066,0.859783874966538,-6.89823303079101 +"Q8SYD0",0.029505729545992,15.3229012827065,0.272569472805487,0.795351630139909,0.859783874966538,-6.89836296366721 +"Q9VMC8",-0.0184356324097834,16.4112974902209,-0.267873440354735,0.798778492565862,0.862420095846573,-6.89983413101631 +"Q7JWD6",-0.0197267047250094,20.4942222718696,-0.267810619817373,0.798824369354289,0.862420095846573,-6.89985364271219 +"Q9VB10",0.0218991307971983,21.0094025272512,0.264440059522784,0.801287152934545,0.864307068488897,-6.9008939857001 +"Q9W259",0.0318322806618347,16.8820842107287,0.264000478172689,0.801608534144079,0.864307068488897,-6.90102871907171 +"P04359",-0.021614604589157,18.676925893055,-0.26236613604519,0.80280379641156,0.864697333162507,-6.90152773579247 +"Q8SY67",-0.0205530445928304,16.0242850453637,-0.262087963256487,0.80300729560475,0.864697333162507,-6.90161237009747 +"Q8IN51",0.0179649110942925,17.0104800134437,0.26117240297151,0.80367720257278,0.864860370252514,-6.90189031214929 +"A1Z729",0.0312746638043375,16.6377394815301,0.256412614601017,0.807162905777836,0.868051403505758,-6.90331998723273 +"O18373",0.0268907425120091,19.6319926563879,0.253912835365947,0.808995555161026,0.869461717789041,-6.90406055967581 +"Q9VJC0",0.0202909783529357,16.5608691648124,0.250214972317607,0.811709046585635,0.871816284420373,-6.90514308158282 +"Q9VAY6",-0.0238112833834574,15.2222479869448,-0.247556976125925,0.813661305474153,0.873350744871871,-6.90591160744207 +"Q9VEH2",0.0181396251163726,15.8396311542981,0.24561705073026,0.815087104165725,0.874318514307672,-6.9064674488161 +"Q9VEB3",-0.035270992921614,12.0157310351941,-0.243681164862287,0.816510728488266,0.874859961262157,-6.90701787086125 +"Q9VQ29",-0.0174805548361654,22.1221604200427,-0.243504257550963,0.816640863120611,0.874859961262157,-6.90706795776559 +"Q8SYQ8",0.0192485992388001,16.193657824737,0.242049361258153,0.81771134716616,0.87544449747956,-6.9074785259884 +"Q961D9",-0.0322006805931725,12.5341058871581,-0.235521576420834,0.822519773567283,0.880027570436323,-6.90929100977528 +"Q966T5",0.0171426588197576,16.4033589644662,0.23385650823969,0.823747677324299,0.88077636267752,-6.90974556076916 +"Q9VAV2",-0.0206871956028536,17.8155815568421,-0.229233334392301,0.827159967401919,0.883858312380783,-6.91099108238573 +"Q6IGW6",-0.0245024634534037,15.5924770166707,-0.225632195285945,0.829820858956425,0.88613392620955,-6.91194436427802 +"Q7JXF5",-0.0177548207183627,18.5427339439241,-0.222500241307489,0.832137136092172,0.888038863084928,-6.91276140378456 +"Q8SY69",-0.0165565111406885,19.0636298596809,-0.220704418050008,0.833466118094652,0.888888417507596,-6.91322482733108 +"Q9VL10",0.0171830308997976,16.5777803043257,0.218482048093727,0.835111618842378,0.890033001210216,-6.91379321822922 +"A8DZ14",-0.0173457562150752,19.5075506845447,-0.21734272624502,0.835955567362896,0.890033001210216,-6.9140824191541 +"Q9VVU1",0.015728017559443,22.3345633969135,0.217093632208054,0.836140115645329,0.890033001210216,-6.91414545031169 +"Q9VUW4",-0.0195073772769216,14.5508869134173,-0.207011509064809,0.843619449685536,0.897421710507318,-6.91663699471296 +"Q9VZ20",-0.0162016888999155,18.7740547571038,-0.204555227457862,0.845444438557176,0.898789881143002,-6.91722634755572 +"Q95029",0.0148691771189995,21.8571719077044,0.203551614466576,0.84619042276089,0.8990099523345,-6.91746515870276 +"Q9VSW4",-0.0409524297865911,15.7075361534223,-0.197767077042831,0.850493532858189,0.903006500832246,-6.91881904756565 +"Q9VSK4",0.0204997743434632,19.8427129904446,0.196740497249788,0.851257814894227,0.903243024964103,-6.91905530388173 +"P07668",0.0513473565066107,14.6805370424286,0.194618084217203,0.852838513183029,0.904344971385437,-6.91953991142627 +"Q9W2Y3",0.0200177648420201,16.3137262854518,0.192529061752951,0.854395094539954,0.90541996041464,-6.92001183423948 +"A1Z8D3",-0.0293573395276781,16.6951786077983,-0.190337425303881,0.856028928827354,0.905826272834164,-6.9205015391007 +"P38979",0.0134839154643878,22.0274244688937,0.190102236464575,0.856204306688431,0.905826272834164,-6.92055376172097 +"Q9W330",0.0136468943373167,20.7062851378416,0.189829502397957,0.856407693201125,0.905826272834164,-6.92061424132642 +"Q9VKJ4",0.0137224274333985,15.0805635982785,0.188230506180718,0.857600364848346,0.906512933185704,-6.92096710004434 +"Q9VB64",-0.0142022923220466,18.7893826977679,-0.187002860897109,0.858516337664824,0.906906428894824,-6.92123601204462 +"Q9VGJ9",0.0150557499038122,17.994079245559,0.185889877098426,0.859346973294971,0.907209336364564,-6.9214783068394 +"P25455",0.0131706677199954,15.7687761095754,0.18262823867855,0.861782342738068,0.909204900497848,-6.92218013615233 +"Q9VHK6",0.0176510434823882,18.1241323151873,0.179495853446254,0.864122813277414,0.91042230766579,-6.92284260297044 +"Q9V3Y2",-0.0188989261949573,17.8675376712395,-0.179084780932645,0.864430076156249,0.91042230766579,-6.92292870011954 +"Q9V3Q4",-0.0134474545330647,16.0730397149398,-0.178892642605816,0.864573702243772,0.91042230766579,-6.9229688756767 +"Q9VHI7",-0.0130371408481835,15.5543892334001,-0.17665304962002,0.866248257135155,0.91152507967184,-6.92343402442807 +"Q9VR89",-0.0179543272844143,13.9354745832332,-0.176030480091469,0.866713894699963,0.91152507967184,-6.9235622992937 +"Q9VW40",-0.0169147597241679,14.5528889329823,-0.173246732241528,0.8687966726868,0.913139792086693,-6.9241303891173 +"Q9VNF3",0.0117308008566965,19.1179741620225,0.164916939196241,0.875035964234405,0.91886116018403,-6.9257767753447 +"Q9V3Z9",0.0119653716593007,21.7971091261175,0.164508775500648,0.87534195655421,0.91886116018403,-6.92585538613602 +"Q9W136",-0.0143994324661669,18.3132820257617,-0.163246004606628,0.876288784439553,0.919276536129041,-6.92609736985504 +"Q9VUZ0",-0.0156610853992163,17.6367914883441,-0.161351289709542,0.877709876725771,0.919646584909732,-6.92645698922091 +"Q9W158",0.0185363213282788,17.0381263195493,0.161305505608148,0.877744222527754,0.919646584909732,-6.92646562766202 +"Q86BL4",0.023623258803207,15.0498974111806,0.155477207425023,0.882118846649887,0.923649865795362,-6.92754546576933 +"P20007",0.0138584447991494,14.3694305282305,0.153303327979014,0.883751732792512,0.924779103072716,-6.92793814957528 +"Q9VCF8",0.0125796973594596,17.0029777420387,0.149655693774389,0.886493053609698,0.926898959615038,-6.92858473352709 +"Q9VLM9",-0.013343161575909,18.4308576611134,-0.149129128125031,0.886888932581295,0.926898959615038,-6.92867679800115 +"Q9VE24",0.0107847635455176,15.9885986813258,0.146888844140932,0.888573616456869,0.927771428550665,-6.92906489072454 +"Q9VN93",0.0134334104326115,20.2743770301011,0.145875615021923,0.889335776085178,0.927771428550665,-6.92923850256809 +"Q9VD26",-0.0161482691134758,16.2289473048964,-0.145800352347188,0.889392394635799,0.927771428550665,-6.92925135089476 +"Q9V5C6",0.0111135385311023,20.651970776264,0.144478097018427,0.890387219316706,0.928228676137665,-6.92947600423452 +"Q9VSR8",0.0170373120187843,15.4089580177673,0.142489693373493,0.891883655870697,0.929207956272531,-6.92981001405669 +"Q9VGQ8",-0.0129688287073364,16.2277064267895,-0.139670396050671,0.894006265234253,0.930837984026676,-6.93027572184701 +"Q9VX02",-0.0105509887223914,17.2186948505143,-0.136063657280354,0.896723166071349,0.933084367440431,-6.93085803268347 +"Q9VG33",-0.011520647126428,20.0522580994508,-0.132624443325234,0.899315341959637,0.934686144483208,-6.9313992047646 +"Q6NLJ9",0.0144286988551006,15.3431269271155,0.132534369584816,0.899383250536899,0.934686144483208,-6.93141319324542 +"Q9Y0Y2",0.0101900092343108,19.3847553245426,0.131747739710899,0.899976348793172,0.934720143080331,-6.93153495584455 +"Q9VLP1",-0.0132221066453972,18.4726783373132,-0.129223333532947,0.901880173463618,0.936114579550289,-6.93192084497858 +"Q9VIH1",0.00936055604991104,15.7781808289236,0.128309728274687,0.902569366446108,0.936247327880664,-6.93205867342945 +"Q9VM33",-0.0286952784109804,13.7413941848019,-0.12367512859287,0.906067009844383,0.939291343953033,-6.93274288594941 +"Q8SZM2",-0.00935531930863576,21.3050992804785,-0.122709702560287,0.906795899727673,0.939463081208546,-6.9328822640307 +"Q7KTH8",0.00854273801588334,17.6436253810505,0.119435799148656,0.909268429670262,0.940934471565108,-6.93334682818249 +"Q9VK99",-0.0152216822347064,20.0651890153877,-0.119335302458003,0.909344345421435,0.940934471565108,-6.9333608909297 +"Q9VMX4",-0.0105145551690704,17.3044781231923,-0.116344319137251,0.911604239761259,0.942688079306745,-6.93377403575686 +"Q9VMQ7",-0.0222263604458934,15.8503656956651,-0.114912140879985,0.912686680212913,0.943024740305968,-6.93396816876949 +"Q9W499",-0.0133235074759206,16.6910072610247,-0.114417571438166,0.913060524936533,0.943024740305968,-6.93403465230981 +"P17704",0.00882880170255618,20.21122445347,0.113623062339373,0.913661146216028,0.943061133594266,-6.93414085845174 +"P49028",-0.0199407230955195,16.3600605042655,-0.108557444573163,0.917492067370837,0.946237329853916,-6.93480068540763 +"Q9VCD9",0.00949497960121803,18.7709470828286,0.107613172475304,0.91820646125425,0.946237329853916,-6.9349203703751 +"Q9VEW1",-0.0191680880888452,14.6537878408988,-0.107304258926128,0.91844019006804,0.946237329853916,-6.93495929867112 +"Q9VCI0",0.00926343202543123,14.829579276217,0.106179394999074,0.919291356972734,0.946529619401555,-6.93510010879717 +"Q7KTA1",0.0121319085260758,17.2794277046172,0.101079049416939,0.923152199826045,0.949918488161532,-6.9357200263095 +"Q9VMM6",-0.0125406365320337,18.4687887664505,-0.100107271494619,0.923888084000638,0.950089595630743,-6.93583469333016 +"Q9V3V9",0.00760416535690922,19.4792017697559,0.0984491364494369,0.925143911134039,0.950794851368809,-6.9360278004197 +"Q7JXF7",-0.00893774937990699,17.8719244387285,-0.0976624118571189,0.925739840453037,0.9508214617461,-6.93611829862997 +"Q95RG8",0.0371614087833425,13.0761395567755,0.0955313439634317,0.927354356040966,0.951893579000819,-6.9363598043993 +"A8Y535",-0.00691743933880673,22.1583763812357,-0.0946689830186584,0.928007799308586,0.951978480471538,-6.93645602341656 +"P23625",-0.00677661640373017,22.188158493846,-0.0926409838686704,0.929544738367566,0.952841818837005,-6.93667887276998 +"Q9VGF3",-0.00851493869686593,15.6372055629429,-0.0920510433422409,0.929991895123887,0.952841818837005,-6.93674279604325 +"Q9VW26",-0.00626314941890627,17.4215669932707,-0.0912078187584899,0.930631083280307,0.952911385458289,-6.93683345727182 +"P05812",0.00690545092993844,15.9810034566146,0.0882314316074621,0.932887731040457,0.954636033972688,-6.93714682066609 +"P53501",0.00619274422204441,24.4562035255354,0.0857562183569841,0.934764932641338,0.955970513578021,-6.9373995244391 +"Q7K0D8",-0.00689290457396652,17.3495771189746,-0.0842237310241634,0.935927408409267,0.956572865947707,-6.9375523878056 +"Q9VKY3",-0.00567463992090111,18.7597383027271,-0.0809518885275694,0.938409871339405,0.957968821801366,-6.93786954881072 +"Q95RN0",-0.00689964065613147,16.9411173905554,-0.0809097092708168,0.938441879390546,0.957968821801366,-6.93787355569212 +"Q9VXH7",0.00899829029219745,18.2139538389888,0.0712122124679731,0.945804198565057,0.964893824591141,-6.93873947129457 +"P38040",-0.0103220426075623,19.1019267085883,-0.0691899141010878,0.947340309807251,0.965870193617662,-6.93890616327311 +"Q9VGT8",0.00679251528265645,15.2217958534601,0.0648330096930963,0.950650613005904,0.968653159739675,-6.93924900073157 +"Q9VI10",0.00657123492057465,17.154336203016,0.0638383098454313,0.951406527418183,0.968831555392875,-6.93932415159305 +"Q7JZW2",-0.00465003946536058,20.4443924185681,-0.0629109003531213,0.952111356315926,0.968957743950558,-6.93939317350125 +"P22465",0.00416141947457405,22.6711683881597,0.0587784623406573,0.955252581356334,0.971561771769735,-6.93968846735804 +"Q9VC05",0.00556477709271341,14.7792729911753,0.0558070371265711,0.957511838628349,0.972932089325217,-6.9398884186827 +"Q9VF77",0.00522735294040899,15.7337777317123,0.055165747618125,0.957999487965154,0.972932089325217,-6.93993021299815 +"Q9VTZ5",0.00379601041240107,18.010780460703,0.0537925732263166,0.959043745646937,0.972932089325217,-6.94001808321408 +"Q7K0W4",0.0041473495193749,21.5206525519429,0.0526553924804212,0.959908606606656,0.972932089325217,-6.94008917730297 +"Q9VL66",-0.00367742955650563,15.7560824484169,-0.0525951347449624,0.959954436193648,0.972932089325217,-6.94009290215399 +"A1Z6G9",0.00714034416326825,14.2233912812438,0.0524042037449989,0.960099651696227,0.972932089325217,-6.94010467647596 +"Q59E04",0.00707490386002618,16.5601155179253,0.0496840302421809,0.962168705489176,0.974436794630204,-6.94026777774148 +"Q95RB2",0.00419599106114177,24.3094859018325,0.0477260978805567,0.963658179749318,0.975353060571519,-6.94037980041351 +"Q8IQW5",-0.00403056869964047,21.9174837001891,-0.0436642550335097,0.966748698013384,0.977887706662416,-6.94059784760983 +"Q9V564",0.00477504999753187,13.9902849656743,0.0411340972039955,0.968674141536563,0.979241495807871,-6.940723881094 +"Q9VPC2",0.00381534144476525,15.0282393828382,0.0391773340877054,0.970163396880525,0.98015296547348,-6.94081619809542 +"Q9W0M5",0.00316430501653464,13.368166666096,0.0377626659071322,0.971240158743486,0.980557860987331,-6.94088013972232 +"Q4V6M1",0.00410925477148893,18.2663150383526,0.0368407543983986,0.971941900201775,0.980557860987331,-6.94092054444517 +"Q9VK59",0.00302446811227952,18.8044521446568,0.0363338489665339,0.972327759036598,0.980557860987331,-6.94094233537666 +"Q95SN8",0.00178946860285834,17.6504666519128,0.0243059372917439,0.981485674284601,0.989195229430039,-6.94137085194412 +"Q9W0J9",0.00217285913802101,18.4736154832896,0.0229677846176103,0.982504753583341,0.989624353246988,-6.94140802065577 +"P45889",-0.0019172994607608,19.1389624655997,-0.0209330349679153,0.984054401528286,0.990587049939156,-6.94146050646264 +"P54397",0.00135860592369141,14.603068808572,0.0193247927766944,0.985279280803681,0.991221857889348,-6.94149854872523 +"Q9VXE5",-0.00206403402513367,14.6024075017392,-0.0176673377764384,0.98654168904407,0.9918936331076,-6.94153457511822 +"Q9W0X2",0.000979512234090762,15.8765653729447,0.01143656531848,0.991287743991144,0.996065034323631,-6.94164112984345 +"Q9VFM9",0.000829087914217652,17.2593376123686,0.0106500473015904,0.991886877341427,0.996067014693258,-6.94165133748661 +"P08120",0.000730356438268132,18.159197189412,0.00899289090716195,0.99314924202673,0.996734618351737,-6.94167046505102 +"Q7KMM4",0.00160584573659328,14.415264016666,0.00749961863191256,0.994286784661251,0.997276221776889,-6.94168493669279 +"Q9VGE4",0.00048372212533998,15.6279221071652,0.00603020502338524,0.995406167043218,0.997798970329379,-6.94169661903884 +"Q9VEA5",-0.000607859744409467,15.7106396471352,-0.00331002021261216,0.997478401438608,0.999275659819578,-6.94171154875256 +"Q9VHD2",0.000267151652536768,16.6659137837806,0.00237433342392222,0.998191212845686,0.999384927566607,-6.9417146741738 +"Q960X8",-0.000109607769235964,18.4860066094648,-0.00159386969237104,0.998785775931375,0.999384927566607,-6.94171649405876 +"Q95RF6",7.23185530357995e-05,17.2576979624461,0.000726218794384191,0.999446759861014,0.999446759861014,-6.9417176769562 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_significant.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_significant.csv new file mode 100644 index 0000000..c319c29 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_significant.csv @@ -0,0 +1,137 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VK00",1.28817191987328,17.6820803807813,17.7420459291497,5.62683188626478e-06,0.00938555558628965,4.71469290317418 +"Q9VG42",-1.68800430269279,16.826430119345,-13.9768375391246,1.97974866913844e-05,0.0121795232978165,3.67979477940418 +"P06002",0.991656870335397,17.1188018554686,13.2118987850754,2.6591296130529e-05,0.0121795232978165,3.41711274277574 +"Q9VLB7",0.856523261947761,21.1175591104814,12.4784208225503,3.58415186085451e-05,0.0121795232978165,3.14444693430441 +"P10676",-0.90509348653783,19.5398164839105,-12.1491448742158,4.12043661399531e-05,0.0121795232978165,3.01484140312249 +"Q9V4E7",1.53109509540269,15.5977887576696,12.0068810490974,4.38112348842321e-05,0.0121795232978165,2.95738487886804 +"Q7JUS9",0.786684971688071,20.4595086435732,11.4020050810959,5.73148765519174e-05,0.0123597500121717,2.70272668905953 +"Q9VV46",-0.791071958321552,23.8616343380966,-11.2234177131893,6.22046200929384e-05,0.0123597500121717,2.62418169484476 +"Q9VWV6",-0.835191016121545,23.7566045301018,-10.6174738040938,8.28900075639399e-05,0.0123597500121717,2.34544945566108 +"Q9VNB9",0.922128612146167,18.9158944640635,10.4653804287735,8.929518258813e-05,0.0123597500121717,2.27237572390567 +"Q9VC18",0.78867608254518,18.1973752546718,10.0811108098754,0.000108258877207109,0.0123597500121717,2.08185141570591 +"Q9VC06",0.791155050810262,16.2899873286257,10.0365190148683,0.000110753391934921,0.0123597500121717,2.05917789363927 +"Q8MZI3",0.685560484824752,17.8851008730005,9.74012064083796,0.00012916813245098,0.0123597500121717,1.90536760770921 +"Q9VAJ9",0.710008162248634,17.5559356927303,9.69963139228826,0.000131954250750054,0.0123597500121717,1.88392926486754 +"Q9VZ19",-0.736380248928079,20.0373105193243,-9.60003325313545,0.000139114233219094,0.0123597500121717,1.83074636257552 +"Q9VXP3",0.711770265113074,14.6109945882948,9.55263671639056,0.000142681575406932,0.0123597500121717,1.80521207474849 +"Q9VH64",-0.725779300658676,17.3868191671229,-9.50063212028289,0.000146720310519179,0.0123597500121717,1.77702593345026 +"Q9W299",0.709831405021967,14.6734930709973,9.37735426573112,0.000156843869901868,0.0123597500121717,1.7094936454998 +"Q7JYX5",0.750452449602834,14.9666296821357,9.37447354097829,0.000157090087556761,0.0123597500121717,1.70790339850174 +"Q9VM10",0.659635945991985,17.1031606799154,9.27646165828558,0.000165744683596829,0.0123597500121717,1.65346259970643 +"Q9W3J5",0.636462618334976,15.9059694112309,9.25385794091512,0.000167819484691494,0.0123597500121717,1.64081426573724 +"Q8MSI2",-0.694582900615643,24.0407255596989,-9.2387593960517,0.000169222407886519,0.0123597500121717,1.63234601056042 +"Q7JYW9",0.667945136280483,17.0061174835337,9.22589951226189,0.000170428207601887,0.0123597500121717,1.62512094085609 +"Q9V3A8",0.800478709335191,15.4973872981703,8.9931348675803,0.000194102657316226,0.0134901346834777,1.49234542279483 +"P50887",0.897294887655281,17.8947543124593,8.80715528027625,0.000215830887063684,0.0141435422671421,1.38346395548236 +"Q9W2N0",0.612972710618941,16.2741803189102,8.71120388468702,0.000228153899119065,0.0141435422671421,1.32629028852923 +"Q9W1R0",1.11761135309549,14.189236848001,8.70527395394059,0.000228942230942947,0.0141435422671421,1.32273419403743 +"Q8SZN1",-0.691648228714968,20.1793359453937,-8.59283996482153,0.000244512594885089,0.0145659645810117,1.254803316457 +"Q8SXD5",-0.677869024150201,20.5215821249939,-8.47061600632313,0.000262870468585869,0.0147520177349209,1.17985209491024 +"Q7K204",-0.797558994477686,14.7100948910997,-8.34244171097434,0.000283886597864106,0.0147520177349209,1.09998867469411 +"Q9VG81",0.801673791052764,15.3975745290774,8.2900817635335,0.000293035303254263,0.0147520177349209,1.0669853106355 +"Q9VLR5",-0.702309020776507,16.8017088675639,-8.28614525776976,0.000293736998531074,0.0147520177349209,1.06449508996038 +"Q9Y119",-0.593565498708525,17.3804463200574,-8.28139917704274,0.0002945856273889,0.0147520177349209,1.06149106008415 +"Q9VFN7",-0.628206209223027,18.7053425150496,-8.24766790669831,0.000300700601311337,0.0147520177349209,1.04008798761561 +"Q9VLB1",0.563153860976982,16.7903095509227,8.1008832184415,0.000329107141358863,0.0153138099726605,0.945859175869985 +"P21187",0.666840662975211,18.8980407821483,8.0940041049874,0.000330513884302026,0.0153138099726605,0.941399087235865 +"Q7KVQ0",0.582216554151678,15.6844034587783,7.97890730391496,0.000355130135515035,0.015712103287282,0.866181763774007 +"Q9VLC5",0.576710081962194,21.7437052205172,7.96632427679663,0.000357949595273811,0.015712103287282,0.857890056925529 +"Q0E8E8",0.548792110250005,21.6715961741816,7.83946205090453,0.00038789270528654,0.0159029348666755,0.773526887261515 +"Q9VW54",0.638694675046869,15.7766422391412,7.78772272576427,0.000400941471712226,0.0159029348666755,0.738715551741447 +"A8JTM7",0.598452923620229,17.6973076287244,7.78363208163052,0.000401994916641133,0.0159029348666755,0.735953164523426 +"Q9VA09",0.613689270492394,16.3721297526486,7.72533898345003,0.000417365145442619,0.0159029348666755,0.69642604317356 +"O16797",0.582538032711156,16.356744974654,7.6797669206752,0.000429862288329388,0.0159029348666755,0.665312320871085 +"Q9VKE2",-0.669917627118199,24.0464383389957,-7.67543089190937,0.000431074039181591,0.0159029348666755,0.662342179573806 +"O76902",0.543106816706796,17.3502696410743,7.60936657721285,0.00045004078553915,0.0159029348666755,0.616877149021277 +"Q9VXQ0",0.584403114600692,14.9977721643156,7.56073288672559,0.000464629584383337,0.0159029348666755,0.583152192728123 +"Q9VZU7",0.550679469498398,17.4479299596453,7.51124798293093,0.000480045655631066,0.0159029348666755,0.548612294790048 +"Q9VN13",0.548746883265764,16.9715403164879,7.49792488856643,0.000484298051351626,0.0159029348666755,0.539273944848105 +"Q9VHC3",0.552017024659307,17.1118789956367,7.45050903166697,0.000499794090172081,0.0159029348666755,0.505904420435621 +"P05031",0.625276965051032,13.5288593163993,7.43487793264926,0.00050502924774325,0.0159029348666755,0.494857400443176 +"Q9V3N7",0.570977693761243,20.5592276800659,7.39760613199479,0.000517773535783596,0.0159029348666755,0.468422705984467 +"Q7K148",0.772776200699315,16.7649931306122,7.3936613538072,0.000519144276530069,0.0159029348666755,0.465617173170302 +"A1ZB70",-0.67212749419121,16.091460068157,-7.35998883063118,0.000531019424709097,0.0159029348666755,0.441608692932995 +"O97125",0.645051173700988,18.4776223355456,7.35953092152923,0.000531183091815796,0.0159029348666755,0.441281455615459 +"Q9VNW6",0.584194166342453,21.430084303418,7.34216147581023,0.000537435153313272,0.0159029348666755,0.428853785782733 +"Q9VHR8",0.503540941260837,20.3773025133813,7.32705495801162,0.00054294281184917,0.0159029348666755,0.418021601127894 +"Q27377",-0.603591111628855,20.0464972136514,-7.32568479837292,0.000543445615947543,0.0159029348666755,0.417038034022911 +"Q9VBP9",0.625160959667275,13.9503468670817,7.22337895238494,0.000582576413503926,0.0162663872090841,0.343082544733416 +"Q7K569",0.615621045410272,20.5746295135057,7.21710601508786,0.000585081154604116,0.0162663872090841,0.338514606405241 +"Q7K485",0.50410263831931,20.5320215645358,7.18687599685592,0.000597329894500301,0.0162663872090841,0.316446738989238 +"Q9VA42",-0.610248074710533,20.4861880222198,-7.17327175648662,0.000602939853331016,0.0162663872090841,0.306486154990134 +"Q23970",-0.564999289792329,21.5056256186164,-7.16921197678649,0.000604625903455163,0.0162663872090841,0.303510156809913 +"Q9VV31",-1.279956390282,15.448233189036,-7.14375577967788,0.000615324618581257,0.0162914518062466,0.284812249602247 +"Q7K3V6",0.617632519775341,16.3047547646246,7.11200376913352,0.000628981236077384,0.0163928234652668,0.261399257849104 +"Q9VRR3",-0.505255364654861,19.6602473016134,-7.089479419243,0.000638884139232606,0.0163947499113844,0.244729108776181 +"A0A0B7P9G0",0.795208961756462,14.6400307120269,7.04481648176591,0.000659064754855284,0.0164673134598516,0.211522783383466 +"Q24253",0.814129531089883,18.8587225188593,7.02495907091968,0.000668275962105477,0.0164673134598516,0.196694009626253 +"Q24276",-0.62621541126374,18.6325144544839,-7.01844719018604,0.000671329325701384,0.0164673134598516,0.19182242480943 +"Q8IN43",-0.567787934797874,17.5794999863199,-6.98011522867334,0.000689636998450518,0.0166162719459873,0.16305801624541 +"Q7JX94",0.751854591195281,12.1583346568155,6.96281849184993,0.000698088775186044,0.0166162719459873,0.150029055454651 +"Q9U9Q4",0.512994114737246,17.9132432703622,6.94426942229491,0.000707287355015048,0.0166162719459873,0.136022439261956 +"Q9VV36",-0.504465845229706,23.0515862809457,-6.89979267026869,0.000729926742347966,0.0169099695310612,0.102292119430107 +"Q76NQ0",0.608987082919095,14.3533226360587,6.81601799426269,0.000774910824054196,0.0172786683075045,0.038196615929885 +"Q9VJ22",0.735671946912143,13.1460893571436,6.80919659811049,0.000778714211880981,0.0172786683075045,0.0329449898811598 +"Q9W253",0.528397369175527,15.1141014113238,6.78051860559199,0.000794944540280625,0.0172786683075045,0.0108123795120463 +"P19334",-0.970447534454291,15.1067120576629,-6.74033797934574,0.000818354194420175,0.0172786683075045,-0.0203453193361005 +"Q9VED8",0.508657562719726,16.4662762636363,6.69573502355761,0.000845289176814071,0.0176242793365734,-0.0551356712143667 +"P41093",0.69259045711264,18.7594629846971,6.6471984477181,0.000875783625141662,0.0178147205699548,-0.0932393973007448 +"Q9VXC9",0.776083773961876,18.9731406429193,6.56328829278294,0.000931585561163734,0.0179853546807608,-0.159722463445243 +"Q9VKC8",0.586363769231603,17.8001603114538,6.52874547869361,0.000955755673037929,0.0179853546807608,-0.187317779944965 +"Q9V521",-0.542381425274476,17.4726377405037,-6.50294414726894,0.000974287220331019,0.0179853546807608,-0.208016757164141 +"Q9Y156",0.524926616456304,16.2558217647329,6.50117932201771,0.000975570030755236,0.0179853546807608,-0.209435307176472 +"A1Z803",0.541148658957926,18.794287530799,6.45711442408838,0.00100824765290341,0.0179853546807608,-0.244968023127528 +"Q9VU68",0.511019938602743,19.3007325032976,6.45040567872023,0.00101333391250252,0.0179853546807608,-0.250397020287132 +"P83967",-0.69094074537233,18.1254160121154,-6.44543858583836,0.00101711901485612,0.0179853546807608,-0.254419888170726 +"Q9VMR6",-0.515011814392626,18.7938883845324,-6.44244111817639,0.00101941116884522,0.0179853546807608,-0.256848903917542 +"Q9W370",0.741498746191105,18.3792966430339,6.38196083069645,0.00106697261386792,0.0183475290714607,-0.306078278843333 +"A8DYP0",-0.648609529253608,14.9842133239202,-6.34555106244277,0.00109685195435014,0.0185572803930537,-0.33591717403189 +"Q9VQE0",0.525887808869383,17.1706269066232,6.34008501701512,0.00110142131829276,0.0185572803930537,-0.340409969678606 +"Q9VCT4",0.806802231372334,13.7784017314562,6.29309455350357,0.00114163192598166,0.0188716071738609,-0.379176610618631 +"Q9V3I0",0.777378990241379,16.4989890904841,6.26593827755846,0.00116564936438765,0.0188767295126078,-0.401697637351444 +"Q7K1Z5",-0.538763907634507,15.9668359821218,-6.16663596283857,0.00125862948328445,0.0193123769451428,-0.484790058115471 +"Q9W3E2",-0.769619371527856,17.5462040154144,-6.07428761631807,0.00135293116859937,0.0199707007895907,-0.563120245475546 +"Q8SXF0",0.54672256035218,16.4513236701199,6.06170886260905,0.0013664022336618,0.0199926221556832,-0.57386935537428 +"Q9VSA9",-0.542691104779969,22.2593429504025,-5.99517976434248,0.00144030034440672,0.0203594997836476,-0.631042819673472 +"O17444",0.780451224023953,15.4727866656756,5.97291217747568,0.00146606560325301,0.0204567638641104,-0.65030050269634 +"Q9VPX0",0.518022416197411,13.9874704888198,5.96413289377169,0.0014763709477235,0.0204567638641104,-0.657909935003141 +"P91927",-0.615830271954326,19.068993142096,-5.92250076722385,0.00152640139293387,0.0204567638641104,-0.694124766902006 +"Q9VBC7",0.607012534583188,16.2849163908827,5.87276105549603,0.00158878097871432,0.020703802128871,-0.737675920973817 +"Q9VNZ3",1.36584089097476,15.6575258697119,5.84754860744852,0.00162152950180473,0.0209667535582193,-0.759870250847696 +"Q95RQ8",1.38233682498443,14.5045553396304,5.7243203467541,0.00179332407965288,0.0215198889558346,-0.869510451776628 +"Q9V9A7",0.793062023866341,15.9475687893704,5.70296455959585,0.00182520116368459,0.0215613218475466,-0.888709707848768 +"A1ZA22",0.983243252043616,13.5513770042578,5.69549253541095,0.00183650940186617,0.0215613218475466,-0.895441155811755 +"Q9W199",0.624485501626932,15.7638548115903,5.63521956223328,0.00193076189451215,0.0223646586114324,-0.950006214991167 +"Q9VXR9",0.536257163016973,15.0837288585107,5.60803779155557,0.0019750965853404,0.0224451599243345,-0.974769510449899 +"Q9V3B6",-0.700209695927583,13.3550792107938,-5.58491236914613,0.00201374695190207,0.0225431537971319,-0.995914032064683 +"Q9VW90",-0.714347181186159,14.186314546599,-5.55832079761162,0.00205927950411862,0.0228870060369544,-1.0203152974467 +"Q6IGM9",-0.512846089439737,14.6391424139153,-5.54324338304633,0.00208562644941071,0.0228870060369544,-1.03419254350813 +"P45437",0.582330244205824,15.9674002931889,5.47713827997855,0.00220585280930299,0.0235633431678328,-1.09539431220651 +"A0A0B4K7J2",0.530069220671383,15.7287105897326,5.45081424743764,0.00225595154418539,0.0235633431678328,-1.11992935184432 +"Q0E8X8",0.619401655344003,20.1412183332089,5.44987352271179,0.00225776614300306,0.0235633431678328,-1.12080787790641 +"Q9VY87",0.65708667719678,17.7037458147184,5.44544308173412,0.00226633495334165,0.0235633431678328,-1.12494699886125 +"P54185",-0.559267674180784,17.4031535542525,-5.44523489122973,0.00226673853554988,0.0235633431678328,-1.12514156536954 +"Q9U1L2",-0.773765582235047,18.1581331934163,-5.44129109353312,0.00227439943046828,0.0235633431678328,-1.12882839020663 +"Q94915",-0.663903698488879,17.0419757308631,-5.37732628805277,0.0024029385449236,0.0242941111917279,-1.18892073836219 +"Q9VI75",-0.653377119238797,17.4144396295137,-5.36127850089555,0.0024364946084359,0.0244823675112716,-1.2040847097182 +"Q9VSC3",0.570284912875028,17.5588951996855,5.32294016726175,0.00251888004824075,0.0251315247749078,-1.24045496516066 +"Q94523",0.560654597187263,20.1667043059459,5.31050128066611,0.00254629957251764,0.0251315247749078,-1.25229889304559 +"Q9VXZ8",0.528948996517943,17.9026519090064,5.26464601709079,0.00265040716467343,0.0259831680100667,-1.29614628616236 +"Q24478",-0.690312665387623,17.1673149641727,-5.17648042461711,0.00286472745091527,0.0268447493714981,-1.38127728842029 +"Q9VFZ4",0.64676718726094,16.5058750255674,5.07416881315022,0.00313900464639876,0.0279789952657211,-1.48144631581926 +"O76742",0.500507267706858,18.060272242243,5.04487112382169,0.00322305085645646,0.0279789952657211,-1.51040631977091 +"Q9VLP0",-0.519480215720037,16.1646320223852,-4.86032375000473,0.00381628442745237,0.0301685422985334,-1.6956935110878 +"Q9VXK6",-0.522185152339269,17.6640771888621,-4.81057057795553,0.0039971441818216,0.0313015797900396,-1.74650335584126 +"A1Z7B8",0.520455457108223,17.07878055323,4.73061905832296,0.00430885678327162,0.0332739496041531,-1.82892608666087 +"Q9VVZ4",-0.593594878598479,15.7495328762336,-4.65896556321634,0.00461217108579599,0.0351283167630489,-1.90361099255205 +"Q9V784",-0.62526472444304,13.8911693665929,-4.65326851396373,0.00463732241468994,0.0351593353986492,-1.90958240044601 +"A1ZB73",-0.905837539313657,13.1726570468871,-4.61635774075658,0.00480414683853506,0.0358303745374505,-1.94839021232499 +"Q9GYU8",0.853066415216725,12.646840671817,4.54499325940335,0.00514662601716509,0.0371399130647534,-2.02401199760294 +"Q9VND8",1.05207843737585,18.888444757701,4.34240954478486,0.00628205854231313,0.0417469069664474,-2.24295872493521 +"Q9VD09",-0.641011597035835,14.5441256952304,-4.33064797411943,0.00635632857090538,0.0418970080664173,-2.25586625654229 +"Q9W309",-0.53036007213348,18.4294294470161,-4.22574274871977,0.00706509298080235,0.0438088293382094,-2.37195148659401 +"Q7KML2",-0.796739481984426,13.1486274776002,-4.16965446964388,0.00748084688655727,0.0453747367519183,-2.43472699347927 +"Q9VF89",0.611681149113217,14.1133823023029,4.07751959546285,0.00822585681034611,0.0478074186747642,-2.53892432845115 +"Q9VZD9",0.557188128700735,14.4866206666233,4.07216352841136,0.00827170155365388,0.0478976052815463,-2.54502288739882 +"P82890",-0.519974569057752,19.5910850130243,-4.05858347769506,0.00838924843469137,0.0478976052815463,-2.56050582976725 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_significant_fdr_only.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_significant_fdr_only.csv new file mode 100644 index 0000000..1cbe0a6 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/Limma_SFug_males_vs_Earth_males_significant_fdr_only.csv @@ -0,0 +1,297 @@ +"protein_id","logFC","AveExpr","t","P.Value","adj.P.Val","B" +"Q9VK00",1.28817191987328,17.6820803807813,17.7420459291497,5.62683188626478e-06,0.00938555558628965,4.71469290317418 +"Q9VG42",-1.68800430269279,16.826430119345,-13.9768375391246,1.97974866913844e-05,0.0121795232978165,3.67979477940418 +"P06002",0.991656870335397,17.1188018554686,13.2118987850754,2.6591296130529e-05,0.0121795232978165,3.41711274277574 +"Q9VLB7",0.856523261947761,21.1175591104814,12.4784208225503,3.58415186085451e-05,0.0121795232978165,3.14444693430441 +"P10676",-0.90509348653783,19.5398164839105,-12.1491448742158,4.12043661399531e-05,0.0121795232978165,3.01484140312249 +"Q9V4E7",1.53109509540269,15.5977887576696,12.0068810490974,4.38112348842321e-05,0.0121795232978165,2.95738487886804 +"Q7JUS9",0.786684971688071,20.4595086435732,11.4020050810959,5.73148765519174e-05,0.0123597500121717,2.70272668905953 +"Q9VV46",-0.791071958321552,23.8616343380966,-11.2234177131893,6.22046200929384e-05,0.0123597500121717,2.62418169484476 +"Q9VWV6",-0.835191016121545,23.7566045301018,-10.6174738040938,8.28900075639399e-05,0.0123597500121717,2.34544945566108 +"Q9VNB9",0.922128612146167,18.9158944640635,10.4653804287735,8.929518258813e-05,0.0123597500121717,2.27237572390567 +"Q9VC18",0.78867608254518,18.1973752546718,10.0811108098754,0.000108258877207109,0.0123597500121717,2.08185141570591 +"Q9VC06",0.791155050810262,16.2899873286257,10.0365190148683,0.000110753391934921,0.0123597500121717,2.05917789363927 +"Q8MZI3",0.685560484824752,17.8851008730005,9.74012064083796,0.00012916813245098,0.0123597500121717,1.90536760770921 +"Q9VAJ9",0.710008162248634,17.5559356927303,9.69963139228826,0.000131954250750054,0.0123597500121717,1.88392926486754 +"Q9VZ19",-0.736380248928079,20.0373105193243,-9.60003325313545,0.000139114233219094,0.0123597500121717,1.83074636257552 +"Q9VXP3",0.711770265113074,14.6109945882948,9.55263671639056,0.000142681575406932,0.0123597500121717,1.80521207474849 +"Q9VH64",-0.725779300658676,17.3868191671229,-9.50063212028289,0.000146720310519179,0.0123597500121717,1.77702593345026 +"Q9W299",0.709831405021967,14.6734930709973,9.37735426573112,0.000156843869901868,0.0123597500121717,1.7094936454998 +"Q7JYX5",0.750452449602834,14.9666296821357,9.37447354097829,0.000157090087556761,0.0123597500121717,1.70790339850174 +"Q9VM10",0.659635945991985,17.1031606799154,9.27646165828558,0.000165744683596829,0.0123597500121717,1.65346259970643 +"Q9W3J5",0.636462618334976,15.9059694112309,9.25385794091512,0.000167819484691494,0.0123597500121717,1.64081426573724 +"Q8MSI2",-0.694582900615643,24.0407255596989,-9.2387593960517,0.000169222407886519,0.0123597500121717,1.63234601056042 +"Q7JYW9",0.667945136280483,17.0061174835337,9.22589951226189,0.000170428207601887,0.0123597500121717,1.62512094085609 +"Q9V3A8",0.800478709335191,15.4973872981703,8.9931348675803,0.000194102657316226,0.0134901346834777,1.49234542279483 +"P50887",0.897294887655281,17.8947543124593,8.80715528027625,0.000215830887063684,0.0141435422671421,1.38346395548236 +"Q9W2N0",0.612972710618941,16.2741803189102,8.71120388468702,0.000228153899119065,0.0141435422671421,1.32629028852923 +"Q9W1R0",1.11761135309549,14.189236848001,8.70527395394059,0.000228942230942947,0.0141435422671421,1.32273419403743 +"Q8SZN1",-0.691648228714968,20.1793359453937,-8.59283996482153,0.000244512594885089,0.0145659645810117,1.254803316457 +"Q8SXD5",-0.677869024150201,20.5215821249939,-8.47061600632313,0.000262870468585869,0.0147520177349209,1.17985209491024 +"Q7K204",-0.797558994477686,14.7100948910997,-8.34244171097434,0.000283886597864106,0.0147520177349209,1.09998867469411 +"Q9VG81",0.801673791052764,15.3975745290774,8.2900817635335,0.000293035303254263,0.0147520177349209,1.0669853106355 +"Q9VLR5",-0.702309020776507,16.8017088675639,-8.28614525776976,0.000293736998531074,0.0147520177349209,1.06449508996038 +"Q9Y119",-0.593565498708525,17.3804463200574,-8.28139917704274,0.0002945856273889,0.0147520177349209,1.06149106008415 +"Q9VFN7",-0.628206209223027,18.7053425150496,-8.24766790669831,0.000300700601311337,0.0147520177349209,1.04008798761561 +"Q9VLB1",0.563153860976982,16.7903095509227,8.1008832184415,0.000329107141358863,0.0153138099726605,0.945859175869985 +"P21187",0.666840662975211,18.8980407821483,8.0940041049874,0.000330513884302026,0.0153138099726605,0.941399087235865 +"Q7KVQ0",0.582216554151678,15.6844034587783,7.97890730391496,0.000355130135515035,0.015712103287282,0.866181763774007 +"Q9VLC5",0.576710081962194,21.7437052205172,7.96632427679663,0.000357949595273811,0.015712103287282,0.857890056925529 +"Q0E8E8",0.548792110250005,21.6715961741816,7.83946205090453,0.00038789270528654,0.0159029348666755,0.773526887261515 +"Q9VW54",0.638694675046869,15.7766422391412,7.78772272576427,0.000400941471712226,0.0159029348666755,0.738715551741447 +"A8JTM7",0.598452923620229,17.6973076287244,7.78363208163052,0.000401994916641133,0.0159029348666755,0.735953164523426 +"Q9VA09",0.613689270492394,16.3721297526486,7.72533898345003,0.000417365145442619,0.0159029348666755,0.69642604317356 +"O16797",0.582538032711156,16.356744974654,7.6797669206752,0.000429862288329388,0.0159029348666755,0.665312320871085 +"Q9VKE2",-0.669917627118199,24.0464383389957,-7.67543089190937,0.000431074039181591,0.0159029348666755,0.662342179573806 +"O76902",0.543106816706796,17.3502696410743,7.60936657721285,0.00045004078553915,0.0159029348666755,0.616877149021277 +"Q9VXQ0",0.584403114600692,14.9977721643156,7.56073288672559,0.000464629584383337,0.0159029348666755,0.583152192728123 +"Q9VZU7",0.550679469498398,17.4479299596453,7.51124798293093,0.000480045655631066,0.0159029348666755,0.548612294790048 +"Q9VN13",0.548746883265764,16.9715403164879,7.49792488856643,0.000484298051351626,0.0159029348666755,0.539273944848105 +"Q9VHC3",0.552017024659307,17.1118789956367,7.45050903166697,0.000499794090172081,0.0159029348666755,0.505904420435621 +"P05031",0.625276965051032,13.5288593163993,7.43487793264926,0.00050502924774325,0.0159029348666755,0.494857400443176 +"Q9V3N7",0.570977693761243,20.5592276800659,7.39760613199479,0.000517773535783596,0.0159029348666755,0.468422705984467 +"Q7K148",0.772776200699315,16.7649931306122,7.3936613538072,0.000519144276530069,0.0159029348666755,0.465617173170302 +"A1ZB70",-0.67212749419121,16.091460068157,-7.35998883063118,0.000531019424709097,0.0159029348666755,0.441608692932995 +"O97125",0.645051173700988,18.4776223355456,7.35953092152923,0.000531183091815796,0.0159029348666755,0.441281455615459 +"Q9VNW6",0.584194166342453,21.430084303418,7.34216147581023,0.000537435153313272,0.0159029348666755,0.428853785782733 +"Q9VHR8",0.503540941260837,20.3773025133813,7.32705495801162,0.00054294281184917,0.0159029348666755,0.418021601127894 +"Q27377",-0.603591111628855,20.0464972136514,-7.32568479837292,0.000543445615947543,0.0159029348666755,0.417038034022911 +"Q9VBP9",0.625160959667275,13.9503468670817,7.22337895238494,0.000582576413503926,0.0162663872090841,0.343082544733416 +"Q7K569",0.615621045410272,20.5746295135057,7.21710601508786,0.000585081154604116,0.0162663872090841,0.338514606405241 +"Q7K485",0.50410263831931,20.5320215645358,7.18687599685592,0.000597329894500301,0.0162663872090841,0.316446738989238 +"Q9VA42",-0.610248074710533,20.4861880222198,-7.17327175648662,0.000602939853331016,0.0162663872090841,0.306486154990134 +"Q23970",-0.564999289792329,21.5056256186164,-7.16921197678649,0.000604625903455163,0.0162663872090841,0.303510156809913 +"Q9VV31",-1.279956390282,15.448233189036,-7.14375577967788,0.000615324618581257,0.0162914518062466,0.284812249602247 +"Q7K3V6",0.617632519775341,16.3047547646246,7.11200376913352,0.000628981236077384,0.0163928234652668,0.261399257849104 +"Q9VRR3",-0.505255364654861,19.6602473016134,-7.089479419243,0.000638884139232606,0.0163947499113844,0.244729108776181 +"A0A0B7P9G0",0.795208961756462,14.6400307120269,7.04481648176591,0.000659064754855284,0.0164673134598516,0.211522783383466 +"Q24253",0.814129531089883,18.8587225188593,7.02495907091968,0.000668275962105477,0.0164673134598516,0.196694009626253 +"Q24276",-0.62621541126374,18.6325144544839,-7.01844719018604,0.000671329325701384,0.0164673134598516,0.19182242480943 +"Q8IN43",-0.567787934797874,17.5794999863199,-6.98011522867334,0.000689636998450518,0.0166162719459873,0.16305801624541 +"Q7JX94",0.751854591195281,12.1583346568155,6.96281849184993,0.000698088775186044,0.0166162719459873,0.150029055454651 +"Q9U9Q4",0.512994114737246,17.9132432703622,6.94426942229491,0.000707287355015048,0.0166162719459873,0.136022439261956 +"Q9VV36",-0.504465845229706,23.0515862809457,-6.89979267026869,0.000729926742347966,0.0169099695310612,0.102292119430107 +"Q9VB22",-0.495335611738199,17.2275156698059,-6.83565450078408,0.000764082703933573,0.0172786683075045,0.0532867535316255 +"Q76NQ0",0.608987082919095,14.3533226360587,6.81601799426269,0.000774910824054196,0.0172786683075045,0.038196615929885 +"Q9VJ22",0.735671946912143,13.1460893571436,6.80919659811049,0.000778714211880981,0.0172786683075045,0.0329449898811598 +"Q9W253",0.528397369175527,15.1141014113238,6.78051860559199,0.000794944540280625,0.0172786683075045,0.0108123795120463 +"Q9VZF6",0.49690004591598,14.9823049050109,6.77327381641399,0.000799107036440556,0.0172786683075045,0.00520724723134336 +"Q9VVL8",-0.488337937794379,15.8804139041976,-6.75167421089144,0.000811669011139916,0.0172786683075045,-0.0115372152519706 +"P19334",-0.970447534454291,15.1067120576629,-6.74033797934574,0.000818354194420175,0.0172786683075045,-0.0203453193361005 +"Q9VED8",0.508657562719726,16.4662762636363,6.69573502355761,0.000845289176814071,0.0176242793365734,-0.0551356712143667 +"Q9VNE9",0.474348046051599,18.5905364884152,6.66220271691194,0.00086622165273676,0.0178147205699548,-0.0814328543673239 +"P41093",0.69259045711264,18.7594629846971,6.6471984477181,0.000875783625141662,0.0178147205699548,-0.0932393973007448 +"Q9VFC2",0.468775337996796,19.8237430298603,6.6039541408359,0.00090403944866569,0.0179853546807608,-0.127405455539674 +"Q9VXC9",0.776083773961876,18.9731406429193,6.56328829278294,0.000931585561163734,0.0179853546807608,-0.159722463445243 +"Q9VPL0",0.498857306649258,15.2393812875856,6.53386425922922,0.000952128218729538,0.0179853546807608,-0.18322012553509 +"Q9VKC8",0.586363769231603,17.8001603114538,6.52874547869361,0.000955755673037929,0.0179853546807608,-0.187317779944965 +"Q9V521",-0.542381425274476,17.4726377405037,-6.50294414726894,0.000974287220331019,0.0179853546807608,-0.208016757164141 +"Q9Y156",0.524926616456304,16.2558217647329,6.50117932201771,0.000975570030755236,0.0179853546807608,-0.209435307176472 +"Q9VKD3",0.466442211401098,18.7219737415614,6.48832934515936,0.000984970007688795,0.0179853546807608,-0.219774557413475 +"A1Z803",0.541148658957926,18.794287530799,6.45711442408838,0.00100824765290341,0.0179853546807608,-0.244968023127528 +"Q0KHZ6",-0.459067824264036,23.0325685661641,-6.45250813105886,0.00101173671816294,0.0179853546807608,-0.248695079036706 +"Q9VU68",0.511019938602743,19.3007325032976,6.45040567872023,0.00101333391250252,0.0179853546807608,-0.250397020287132 +"P83967",-0.69094074537233,18.1254160121154,-6.44543858583836,0.00101711901485612,0.0179853546807608,-0.254419888170726 +"Q9VMR6",-0.515011814392626,18.7938883845324,-6.44244111817639,0.00101941116884522,0.0179853546807608,-0.256848903917542 +"Q9VR79",0.462691723503127,20.2453672360576,6.43601472802215,0.00102434574021119,0.0179853546807608,-0.262060007744104 +"Q9W1H8",0.478181116752914,20.4632778462265,6.3894164399087,0.00106097187384185,0.0183475290714607,-0.299986998397481 +"Q9W370",0.741498746191105,18.3792966430339,6.38196083069645,0.00106697261386792,0.0183475290714607,-0.306078278843333 +"A8DYP0",-0.648609529253608,14.9842133239202,-6.34555106244277,0.00109685195435014,0.0185572803930537,-0.33591717403189 +"Q9VQE0",0.525887808869383,17.1706269066232,6.34008501701512,0.00110142131829276,0.0185572803930537,-0.340409969678606 +"Q9VCT4",0.806802231372334,13.7784017314562,6.29309455350357,0.00114163192598166,0.0188716071738609,-0.379176610618631 +"Q95RS6",0.461066273468333,17.2523165554986,6.29186682101893,0.00114270523055153,0.0188716071738609,-0.380192922744796 +"Q8IN49",0.48963115852905,16.8291429496466,6.27802488578712,0.00115488779812708,0.0188767295126078,-0.39166340929715 +"Q9V3I0",0.777378990241379,16.4989890904841,6.26593827755846,0.00116564936438765,0.0188767295126078,-0.401697637351444 +"X2JAU8",-0.42965699735737,21.8611046606766,-6.23424122873128,0.00119443099531008,0.0190476733803613,-0.428093833449739 +"O77410",0.453904514664417,14.1041645620288,6.22924352580535,0.00119904418761267,0.0190476733803613,-0.432266547624335 +"Q9VZW7",-0.458431485685081,13.5478152951851,-6.21618695158288,0.0012111944841926,0.0190591735814458,-0.443181752439442 +"Q7K5M6",-0.459380383398461,18.1579444008486,-6.20360640715822,0.00122303764845391,0.0190656710058048,-0.453718089201918 +"Q7K1Z5",-0.538763907634507,15.9668359821218,-6.16663596283857,0.00125862948328445,0.0193123769451428,-0.484790058115471 +"Q9VF86",0.493026429151691,17.6965012136778,6.16317792139177,0.00126201983634326,0.0193123769451428,-0.487704716494939 +"Q9VFQ9",0.433669094325381,19.0732417465249,6.14107515085536,0.00128394287552553,0.0194692428761508,-0.506368144724182 +"Q9VTZ4",0.443816716529756,18.256831769629,6.12903948655971,0.00129606699508389,0.0194760337639633,-0.5165556148767 +"Q8T3L6",-0.45756670759696,17.373703497617,-6.08493551201199,0.00134164860337659,0.0199707007895907,-0.554036160739716 +"Q9W3E2",-0.769619371527856,17.5462040154144,-6.07428761631807,0.00135293116859937,0.0199707007895907,-0.563120245475546 +"Q8SXF0",0.54672256035218,16.4513236701199,6.06170886260905,0.0013664022336618,0.0199926221556832,-0.57386935537428 +"P54385",0.421703275320439,21.2417728801204,6.03789424024245,0.0013923360567219,0.0201949264574968,-0.594272805537158 +"Q9VZJ2",-0.474320162456863,17.3276144596549,-6.02570517808764,0.00140583114315142,0.020214882299798,-0.604742730013207 +"Q9VHT3",-0.45761558101059,15.7976743886859,-6.00212608690088,0.00143237097084969,0.0203594997836476,-0.625047940376307 +"Q9VSA9",-0.542691104779969,22.2593429504025,-5.99517976434248,0.00144030034440672,0.0203594997836476,-0.631042819673472 +"O17444",0.780451224023953,15.4727866656756,5.97291217747568,0.00146606560325301,0.0204567638641104,-0.65030050269634 +"Q9VPX0",0.518022416197411,13.9874704888198,5.96413289377169,0.0014763709477235,0.0204567638641104,-0.657909935003141 +"Q9VJQ3",0.492657716437837,20.6056661046107,5.94174999744715,0.00150302798924517,0.0204567638641104,-0.677353515869497 +"Q0E9B6",0.446473502509733,19.0054492166142,5.9308906199575,0.00151616242481078,0.0204567638641104,-0.68680927553451 +"P91927",-0.615830271954326,19.068993142096,-5.92250076722385,0.00152640139293387,0.0204567638641104,-0.694124766902006 +"Q9W3R8",-0.448176066813499,17.2131941259583,-5.91845888432926,0.00153136278307266,0.0204567638641104,-0.697652201572707 +"Q9W3Y3",-0.440202278396008,18.1002728566207,-5.91119586590576,0.00154032529184768,0.0204567638641104,-0.703995915679089 +"P40796",-0.499586992635919,18.1216779886578,-5.90718957614904,0.00154529511203712,0.0204567638641104,-0.707497938288856 +"O77477",0.434280070241615,16.8423804941817,5.88313604753462,0.00157552854584474,0.0206927686178664,-0.728566155367776 +"Q9VBC7",0.607012534583188,16.2849163908827,5.87276105549603,0.00158878097871432,0.020703802128871,-0.737675920973817 +"Q9VNZ3",1.36584089097476,15.6575258697119,5.84754860744852,0.00162152950180473,0.0209667535582193,-0.759870250847696 +"Q7K2Q8",-0.414184218068115,16.113968383383,-5.82719820337577,0.00164853569573424,0.0210995854323936,-0.777843171343879 +"P18432",-0.420925477742838,23.509345467784,-5.82082410210565,0.00165710173359926,0.0210995854323936,-0.783483404030271 +"Q70PY2",-0.435306545060442,17.0408755435684,-5.79270524043805,0.00169551274752379,0.0212675970220858,-0.80842655501121 +"P23779",-0.429707488816153,21.0228579521025,-5.79249948323927,0.00169579760427903,0.0212675970220858,-0.808609445703544 +"Q9W3W4",0.436374900108468,15.9519780435895,5.7721649203141,0.00172422563088093,0.0214627488978313,-0.826710856394472 +"Q9W1X4",0.40751128430783,15.1840748025946,5.76281206451035,0.00173748666549739,0.02146761302259,-0.8350543557083 +"Q9VIE8",0.402857330885706,24.8116169777069,5.7435953560983,0.0017651067351657,0.0215198889558346,-0.852232458569476 +"P54192",-0.482320199999915,24.343072866011,-5.74013407435049,0.00177013563233623,0.0215198889558346,-0.855331599867823 +"Q9VIF2",0.432569792755331,17.4821344169203,5.72549979651324,0.00179158247237726,0.0215198889558346,-0.868451823390638 +"Q95RQ8",1.38233682498443,14.5045553396304,5.7243203467541,0.00179332407965288,0.0215198889558346,-0.869510451776628 +"Q9V9A7",0.793062023866341,15.9475687893704,5.70296455959585,0.00182520116368459,0.0215613218475466,-0.888709707848768 +"A1ZA22",0.983243252043616,13.5513770042578,5.69549253541095,0.00183650940186617,0.0215613218475466,-0.895441155811755 +"Q9VXZ0",-0.404427489151011,19.6551888945366,-5.69224380505854,0.0018414514166711,0.0215613218475466,-0.898370155032912 +"Q9V8Y2",0.409040679656758,19.9077905603241,5.68763910087659,0.00184848262841677,0.0215613218475466,-0.902524026449518 +"Q9W199",0.624485501626932,15.7638548115903,5.63521956223328,0.00193076189451215,0.0223646586114324,-0.950006214991167 +"Q5U117",0.442023660647472,14.4392160812436,5.61634134728689,0.00196142900365679,0.0224451599243345,-0.967194445119138 +"Q9VXR9",0.536257163016973,15.0837288585107,5.60803779155557,0.0019750965853404,0.0224451599243345,-0.974769510449899 +"Q9VPX6",0.441616599871246,21.5001685593248,5.60623373293136,0.00197808064081365,0.0224451599243345,-0.976416496251558 +"Q9VRJ6",-0.394687122412995,15.7110094773332,-5.594870939447,0.00199699625411354,0.0225066875125769,-0.986799842463518 +"Q9V3B6",-0.700209695927583,13.3550792107938,-5.58491236914613,0.00201374695190207,0.0225431537971319,-0.995914032064683 +"Q9VW90",-0.714347181186159,14.186314546599,-5.55832079761162,0.00205927950411862,0.0228870060369544,-1.0203152974467 +"Q9VK12",-0.38241560852779,22.2434509477663,-5.54806057384237,0.00207716641330359,0.0228870060369544,-1.0297555130248 +"Q6IGM9",-0.512846089439737,14.6391424139153,-5.54324338304633,0.00208562644941071,0.0228870060369544,-1.03419254350813 +"A1Z9A8",0.430091656215954,16.6663158619265,5.50498983964265,0.00215424487652526,0.0234854931636872,-1.06953722026986 +"P45437",0.582330244205824,15.9674002931889,5.47713827997855,0.00220585280930299,0.0235633431678328,-1.09539431220651 +"Q9W2L6",0.411141822390572,20.9713930199724,5.47437137247719,0.00221105759058313,0.0235633431678328,-1.09796878033928 +"A0A0B4K7J2",0.530069220671383,15.7287105897326,5.45081424743764,0.00225595154418539,0.0235633431678328,-1.11992935184432 +"Q0E8X8",0.619401655344003,20.1412183332089,5.44987352271179,0.00225776614300306,0.0235633431678328,-1.12080787790641 +"Q9VY87",0.65708667719678,17.7037458147184,5.44544308173412,0.00226633495334165,0.0235633431678328,-1.12494699886125 +"P54185",-0.559267674180784,17.4031535542525,-5.44523489122973,0.00226673853554988,0.0235633431678328,-1.12514156536954 +"Q7JVK6",0.42244685614812,17.3777589775837,5.44291966493901,0.00227123227238396,0.0235633431678328,-1.12730567894751 +"Q9U1L2",-0.773765582235047,18.1581331934163,-5.44129109353312,0.00227439943046828,0.0235633431678328,-1.12882839020663 +"Q7K012",0.448234768326111,15.6908193673085,5.42997881785976,0.00229654067935825,0.0236458632911701,-1.13941527529635 +"Q9W4I3",0.389799277174296,16.6199080762776,5.38196381667468,0.00239334130101689,0.0242941111917279,-1.18454519195028 +"Q94915",-0.663903698488879,17.0419757308631,-5.37732628805277,0.0024029385449236,0.0242941111917279,-1.18892073836219 +"Q9VGP7",0.485127503457393,16.0035484104972,5.37720292350319,0.00240319445241913,0.0242941111917279,-1.18903717405041 +"Q9VI75",-0.653377119238797,17.4144396295137,-5.36127850089555,0.0024364946084359,0.0244823675112716,-1.2040847097182 +"Q9VSC3",0.570284912875028,17.5588951996855,5.32294016726175,0.00251888004824075,0.0251315247749078,-1.24045496516066 +"Q9VW34",0.406160216128782,18.4569787737831,5.31166658887937,0.00254371622556077,0.0251315247749078,-1.2511884132071 +"Q94523",0.560654597187263,20.1667043059459,5.31050128066611,0.00254629957251764,0.0251315247749078,-1.25229889304559 +"Q9VXZ8",0.528948996517943,17.9026519090064,5.26464601709079,0.00265040716467343,0.0259831680100667,-1.29614628616236 +"Q9VWP2",-0.478303126097636,19.6302571595142,-5.25892337287483,0.00266374204419749,0.0259831680100667,-1.30163889474838 +"Q9I7K6",-0.377176943562787,16.2529429988261,-5.25019457461262,0.00268423159367069,0.0260308040595507,-1.3100256248763 +"Q7K860",-0.402846244698814,21.1062083624514,-5.23987256390461,0.00270869661924409,0.0260880225260768,-1.3199568790519 +"Q9Y143",-0.371179158077439,20.9695051462499,-5.23053217248875,0.00273105751155566,0.0260880225260768,-1.32895653292726 +"P36975",-0.485865403075671,22.2564429555298,-5.22804293369214,0.00273705272305961,0.0260880225260768,-1.33135702831115 +"Q9V3E3",0.3724195103598,14.9719015619136,5.21661082782513,0.00276478256947321,0.0262025984425075,-1.34239273911973 +"Q7KS11",-0.375363209794193,15.5714982634825,-5.19506924942608,0.00281792159230231,0.0265553289037303,-1.36323732793888 +"Q24478",-0.690312665387623,17.1673149641727,-5.17648042461711,0.00286472745091527,0.0268447493714981,-1.38127728842029 +"Q9VN86",0.356141126305193,15.2390406884196,5.16867725949928,0.0028846428204761,0.0268803587963918,-1.38886460622875 +"Q9VUY9",0.406658187491139,19.5861926428629,5.13634254810053,0.00296889136383295,0.0275117266381853,-1.42039688159506 +"Q9V3I2",0.410720534290618,17.4972082900006,5.12635792565898,0.00299547847016032,0.0275508450553861,-1.43016374583349 +"Q9VDC6",0.369506218923831,16.8764952883086,5.11642999793493,0.00302218768807143,0.0275508450553861,-1.43988923659267 +"Q9W461",-0.490895747477238,16.2355890938861,-5.1159870857387,0.00302338565501851,0.0275508450553861,-1.4403234451141 +"Q9VH81",0.454301276477802,14.4647539681161,5.11016577085826,0.00303918194855578,0.0275508450553861,-1.44603296807463 +"Q8SXQ1",0.357202709301067,18.6609688775964,5.09541287311563,0.00307964306667596,0.027688936832839,-1.46052424039129 +"Q86BS3",-0.363093657456957,18.9819521000826,-5.09253245741474,0.00308761525833816,0.027688936832839,-1.46335720863327 +"Q9VFZ4",0.64676718726094,16.5058750255674,5.07416881315022,0.00313900464639876,0.0279789952657211,-1.48144631581926 +"Q9VWL4",-0.348298273466586,15.9649369218611,-5.06186382963511,0.0031739919623418,0.0279789952657211,-1.49359442790388 +"Q9W0S7",0.383838644456864,17.6897011832026,5.05694578562149,0.00318810143742253,0.0279789952657211,-1.49845586441532 +"Q9W0Z5",-0.471388227605209,17.0764680684728,-5.05211253605529,0.00320203823314023,0.0279789952657211,-1.50323687510242 +"Q9VB46",0.437180600300847,15.24320325018,5.04490197749163,0.00322296099043205,0.0279789952657211,-1.510375756698 +"O76742",0.500507267706858,18.060272242243,5.04487112382169,0.00322305085645646,0.0279789952657211,-1.51040631977091 +"P54622",0.408191679515411,18.0382461495462,5.03996493408754,0.00323737774957085,0.0279789952657211,-1.51526804736786 +"Q9VHN6",0.39015901008454,15.0333996453499,5.00606806714246,0.00333839492496236,0.0287033130661712,-1.54895277336416 +"Q8IQG9",-0.351032614572645,20.3950332506714,-4.99840281455451,0.00336173978476806,0.0287558049281698,-1.5565931268698 +"Q9VPN5",-0.442072802783198,21.249684873457,-4.99153122841647,0.00338282771553813,0.0287803604746974,-1.56344964329289 +"Q7KV34",0.366914836373219,20.8604067458708,4.98625629507568,0.0033991193126591,0.0287803604746974,-1.56871766394255 +"Q9VU04",-0.400018273170335,16.7360491429863,-4.97855566405718,0.00342306544243816,0.0288367331211457,-1.57641547045928 +"M9NFC0",-0.347495217724362,19.6454712495762,-4.96910452774419,0.00345272142811151,0.0288663048302013,-1.58587494218519 +"Q8IM93",-0.343895286909611,19.153099607583,-4.95930071731278,0.00348379761536961,0.0288663048302013,-1.59570116000522 +"Q9VH66",0.381628339234654,16.8202944352942,4.95733450768776,0.00349006888550319,0.0288663048302013,-1.59767355224185 +"Q9VJZ5",-0.36976123150899,16.9749264744627,-4.9555413653756,0.00349579950581574,0.0288663048302013,-1.59947282516905 +"Q9NJH0",0.344792780214814,21.1253742731661,4.94942901703702,0.00351541536953243,0.0288852849082763,-1.60560960096585 +"Q9VND7",-0.346285501546578,13.9426834144648,-4.92642547226015,0.00359038506043704,0.0292584822706414,-1.62875407335349 +"Q9VA34",-0.453927042806644,14.4613863326473,-4.92354103179212,0.00359991502093531,0.0292584822706414,-1.6316616554985 +"Q9W1R3",-0.375237981180351,16.9562683290899,-4.91945718297088,0.00361345764253725,0.0292584822706414,-1.6357803564693 +"A1ZB68",-0.392571369743401,19.2955711740098,-4.88261054774835,0.00373833802420783,0.0301234194414428,-1.67305230766128 +"Q9VAM6",-0.348298793826313,22.0853770257018,-4.87356194450348,0.00376976156696961,0.0301685422985334,-1.68223595368488 +"Q9VLY7",0.446971232183744,15.4747184911005,4.8691048030978,0.00378535191414919,0.0301685422985334,-1.68676405911677 +"Q9V3W0",-0.490153246136913,20.8013246891132,-4.86402274401762,0.00380321883174736,0.0301685422985334,-1.69193061442455 +"Q9VLP0",-0.519480215720037,16.1646320223852,-4.86032375000473,0.00381628442745237,0.0301685422985334,-1.6956935110878 +"Q9W260",0.338922029380864,17.5079668548209,4.82437159600062,0.00394600475748862,0.0310468676202407,-1.73237238078964 +"Q9VXK6",-0.522185152339269,17.6640771888621,-4.81057057795553,0.0039971441818216,0.0313015797900396,-1.74650335584126 +"Q9VHB8",0.471874406253667,15.5136910544805,4.77325539065479,0.00413927957797053,0.0322631697946488,-1.78485285707935 +"P28668",0.393968408979402,15.4719412551214,4.73886178044544,0.0042754590445268,0.0331696078431196,-1.82038429722677 +"A1Z7B8",0.520455457108223,17.07878055323,4.73061905832296,0.00430885678327162,0.0332739496041531,-1.82892608666087 +"P29613",-0.360774334212106,23.8517562456229,-4.69407428450363,0.00446058891146164,0.0342869230613734,-1.86692003513236 +"Q9W1L1",0.405086360810426,14.8727235690497,4.66036722507186,0.00460600708075901,0.0351283167630489,-1.90214258416394 +"Q9VVZ4",-0.593594878598479,15.7495328762336,-4.65896556321634,0.00461217108579599,0.0351283167630489,-1.90361099255205 +"Q9V784",-0.62526472444304,13.8911693665929,-4.65326851396373,0.00463732241468994,0.0351593353986492,-1.90958240044601 +"Q7JZW0",0.359795800921766,19.7654602305439,4.62624753944086,0.00475878165348944,0.0358303745374505,-1.93797179672185 +"P40301",0.374284042153572,17.8445050305678,4.62377453515705,0.0047700791874745,0.0358303745374505,-1.94057558812397 +"A1ZB73",-0.905837539313657,13.1726570468871,-4.61635774075658,0.00480414683853506,0.0358303745374505,-1.94839021232499 +"P42281",-0.335750153331876,21.8387591728894,-4.61471008170388,0.00481175293548496,0.0358303745374505,-1.95012738805424 +"Q9VCR2",0.421871188510847,15.5047613649597,4.60630485241929,0.00485076991866617,0.0359603743303786,-1.95899571151497 +"Q95R98",0.474633822037783,16.396737422581,4.59161465355101,0.0049198373499342,0.036311011945532,-1.97452116752359 +"Q8SYJ2",-0.349412226007178,22.5213978040005,-4.56408827896777,0.00505231798088512,0.0371245215511735,-2.00370146373151 +"Q7KLW9",0.316878902313327,17.3158528468772,4.55378411459432,0.00510296033564895,0.0371399130647534,-2.01465460353451 +"Q9I7K0",-0.373641690584311,16.3363477807811,-4.55074400247292,0.00511801282873901,0.0371399130647534,-2.01788929841721 +"Q9GYU8",0.853066415216725,12.646840671817,4.54499325940335,0.00514662601716509,0.0371399130647534,-2.02401199760294 +"Q9VGZ3",-0.383592970300906,16.5098291857115,-4.54285140681191,0.00515732982063277,0.0371399130647534,-2.02629368209792 +"Q9I7Q5",-0.320443677647216,20.6723553981385,-4.53898516791237,0.00517671589128048,0.0371399130647534,-2.03041411403578 +"Q9VI04",0.407749857000578,16.2120633728558,4.53538518590747,0.00519484209815557,0.0371399130647534,-2.03425284815423 +"Q7K5M0",-0.456458371677021,16.510582959367,-4.5323313379634,0.00521027557383231,0.0371399130647534,-2.0375107897897 +"Q9VFR0",-0.344257891973172,15.0366531203132,-4.51590986908999,0.00529417339745514,0.0375773669232135,-2.05505432574876 +"O62619",0.335743570475636,22.1727304429308,4.50748722057102,0.0053378055690505,0.037726524106679,-2.06406859361739 +"O01666",0.315376048286915,22.7075744711007,4.49417643801899,0.00540760349108421,0.0380585764688965,-2.07833663855995 +"Q8I099",0.352800292004693,16.7592178343351,4.48878469176135,0.00543617364176888,0.0380988976238256,-2.08412391685651 +"Q9VJD0",0.366054369629328,16.1250154537557,4.4783225183413,0.00549210644200706,0.0383298474697396,-2.09536638731146 +"Q9VTY2",-0.382740569601477,20.7441611011349,-4.46768471734245,0.00554965565226898,0.0383886135394428,-2.10681492581149 +"Q9VF15",-0.316648444574444,20.7633203286198,-4.46569707682475,0.00556048502121256,0.0383886135394428,-2.1089559903431 +"P32392",0.320762163254425,17.5963223175051,4.46377011595959,0.00557100691372656,0.0383886135394428,-2.11103227487981 +"Q9W2E7",0.326219721634068,18.592559767179,4.45702753135872,0.0056080038510002,0.0383886135394428,-2.11830187735814 +"P13060",0.314948597259853,20.0334627293645,4.4556493644735,0.00561560054174103,0.0383886135394428,-2.11978863153217 +"Q9VJZ4",-0.308342412441675,21.241003550371,-4.44859607006959,0.0056546645924158,0.0384978797557124,-2.12740226753529 +"Q9VJZ6",-0.388963580583948,19.5815242690796,-4.44085060061373,0.00569792136582139,0.038634686334106,-2.13577194723488 +"Q9VGA0",-0.498869410831233,19.3391491340287,-4.42174095386985,0.00580627572932286,0.03920999156482,-2.156461441604 +"Q9VMW7",-0.331056273933093,19.3602766737396,-4.41578903254225,0.00584050461966992,0.0392821036516509,-2.16291700211419 +"Q01637",0.378009223091642,15.9532028019481,4.37001253155837,0.00611162224352566,0.0409405056313285,-2.2127511572808 +"P46415",0.408962450114725,17.974650479295,4.35331274139679,0.0062140943838865,0.0414604377292908,-2.23101250628369 +"Q9VND8",1.05207843737585,18.888444757701,4.34240954478486,0.00628205854231313,0.0417469069664474,-2.24295872493521 +"Q9VA37",-0.316647676972011,21.8094310744462,-4.33212347630436,0.00634695643577579,0.0418970080664173,-2.25424580602797 +"Q9VD09",-0.641011597035835,14.5441256952304,-4.33064797411943,0.00635632857090538,0.0418970080664173,-2.25586625654229 +"P12080",0.317381542717794,19.0508932878049,4.32693231010401,0.00638000002929855,0.0418970080664173,-2.25994844293159 +"Q9VMI3",0.335168707640516,20.181532493583,4.31603304063815,0.00645001996049606,0.0421907188004213,-2.27193530288817 +"P32748",0.398666493499539,17.3620686672349,4.3041397770426,0.00652743020381586,0.042394203951669,-2.28503655874574 +"P48596",0.30193857228085,21.8996024119208,4.30344871855877,0.00653196068080271,0.042394203951669,-2.28579848862956 +"Q9VLT7",0.30513195917197,18.0589103896504,4.29321126640108,0.00659949876504408,0.0426665268995873,-2.29709460609982 +"Q7K4T8",0.498764920082737,13.4516482270528,4.28034495231224,0.00668551485117709,0.0427794897716811,-2.31131473842467 +"O02195",0.354948613773104,18.7349133898261,4.27880903366443,0.00669586838783498,0.0427794897716811,-2.31301400410328 +"Q9W5W7",0.375106081065656,14.938507686121,4.27737207582475,0.00670557142974678,0.0427794897716811,-2.31460411947182 +"Q9VV39",0.332081178848266,17.5555961227036,4.2753046145344,0.00671956014399307,0.0427794897716811,-2.31689250864776 +"Q7JVZ8",-0.322886674659685,15.8895234831154,-4.2574954584801,0.00684144985902721,0.0432324067915209,-2.33663252550643 +"Q9U4G1",0.363167789503326,19.4877887334669,4.25311967219817,0.00687178402161223,0.0432324067915209,-2.34149035538713 +"Q7K1S1",0.485536965522556,16.5382745583633,4.24812814504696,0.00690657443318245,0.0432324067915209,-2.34703543054518 +"Q9VLS9",-0.40376772685379,18.8799738218444,-4.24584050755932,0.00692258622615372,0.0432324067915209,-2.34957806989476 +"Q9VAN1",-0.293686090819737,14.9268652611206,-4.24331151725415,0.00694033667978472,0.0432324067915209,-2.35238992291847 +"Q9VDV2",0.499311175555174,14.38115900239,4.24247576973531,0.00694621404084389,0.0432324067915209,-2.35331936823058 +"Q9W309",-0.53036007213348,18.4294294470161,-4.22574274871977,0.00706509298080235,0.0438088293382094,-2.37195148659401 +"Q9V396",0.339578128502179,20.933650956981,4.19876939730422,0.00726164807767122,0.0446972734309498,-2.40207891832183 +"Q9VTB3",-0.29013246159726,19.7412056696968,-4.19556009283602,0.00728544713348832,0.0446972734309498,-2.40567112500672 +"Q9VWP4",0.340102857599618,15.250905175965,4.19511376151384,0.00728876401272083,0.0446972734309498,-2.40617083668061 +"A1ZBJ2",0.288378936338038,19.2424742913823,4.1892731486126,0.00733232731774435,0.0446982390074586,-2.41271286880201 +"Q9VH77",0.425366181321657,15.5853889780669,4.1879127820834,0.00734251647964248,0.0446982390074586,-2.41423737837918 +"Q7KML2",-0.796739481984426,13.1486274776002,-4.16965446964388,0.00748084688655727,0.0453747367519183,-2.43472699347927 +"Q7JXW8",0.305448626805035,15.0241889320233,4.15714536194328,0.00757733596270178,0.0457934651658934,-2.44879516164203 +"Q9W266",-0.302747556283173,18.4809286195267,-4.15125737107161,0.007623243772528,0.0459045870490134,-2.45542554352217 +"Q9VPE2",0.368701732965391,20.8357748053177,4.11856080097524,0.0078840177846418,0.0471782766808555,-2.49234428306136 +"Q9VAY9",0.482431165542708,14.6453536009283,4.11766176206319,0.00789133045201359,0.0471782766808555,-2.49336180213561 +"Q9W4K0",0.330935586434734,19.7561542790396,4.11081757280567,0.00794725431985724,0.0473237238439128,-2.50111214273335 +"Q9VL69",0.38611153701178,15.9826887920585,4.10461440407962,0.00799833083823134,0.0473237238439128,-2.50814298926342 +"Q8MLS1",-0.411600470376399,18.3254876941117,-4.10281166372225,0.00801324456656508,0.0473237238439128,-2.51018740672877 +"Q9VSL6",-0.359300168616821,14.3098465396279,-4.10089385904631,0.00802914499270224,0.0473237238439128,-2.51236287811883 +"Q9VQ91",-0.395685640161096,14.9411591822559,-4.09094245183374,0.00811223101163096,0.0476450750964804,-2.52366064383749 +"Q9VN01",0.315470955674254,16.078694077108,4.08291610936874,0.00817995828694839,0.0478074186747642,-2.53278430451818 +"Q9VZG1",-0.309223321414954,17.7619111960429,-4.0791120031538,0.00821228260189404,0.0478074186747642,-2.53711204618382 +"Q9VF89",0.611681149113217,14.1133823023029,4.07751959546285,0.00822585681034611,0.0478074186747642,-2.53892432845115 +"Q9VZD9",0.557188128700735,14.4866206666233,4.07216352841136,0.00827170155365388,0.0478976052815463,-2.54502288739882 +"Q9VN14",0.303245725370466,19.3632557920993,4.06794327817902,0.00830802938062859,0.0478976052815463,-2.54983137176648 +"Q9VDC0",-0.281498782990163,17.5864045315306,-4.06088977120403,0.00836915211476514,0.0478976052815463,-2.55787431242769 +"P82890",-0.519974569057752,19.5910850130243,-4.05858347769506,0.00838924843469137,0.0478976052815463,-2.56050582976725 +"Q9V9V4",-0.316204135421149,18.5095215814852,-4.05672109879548,0.00840551672000003,0.0478976052815463,-2.56263144767452 +"A1ZBU8",-0.308561523141272,20.6530753729566,-4.05578948147348,0.00841366807403661,0.0478976052815463,-2.56369495089104 +"P35381",0.333359545217323,25.6616476396881,4.02648490170188,0.00867472534149842,0.0492157886721747,-2.59721818314521 +"A1ZBU5",-0.425753635388556,16.6733897631918,-4.02175852241844,0.0087176872679257,0.0492918724166104,-2.60263769323965 +"P12370",0.302683310777379,20.7436760529401,4.01462333280036,0.00878300417822965,0.0494934154367806,-2.61082596678982 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SF1g_females_vs_Earth_females.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SF1g_females_vs_Earth_females.csv new file mode 100644 index 0000000..db9041a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SF1g_females_vs_Earth_females.csv @@ -0,0 +1,7 @@ +"sample","SF1g_Female","Earth_Female","tmt_runTMTb","tmt_runTMTc" +"Earth_F1",0,1,0,0 +"Earth_F2",0,1,1,0 +"Earth_F3",0,1,0,1 +"SF1g_F1",1,0,0,0 +"SF1g_F2",1,0,1,0 +"SF1g_F3",1,0,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SF1g_males_vs_Earth_males.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SF1g_males_vs_Earth_males.csv new file mode 100644 index 0000000..b4f8320 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SF1g_males_vs_Earth_males.csv @@ -0,0 +1,7 @@ +"sample","SF1g_Male","Earth_Male","tmt_runTMTb","tmt_runTMTc" +"Earth_M1",0,1,0,0 +"Earth_M2",0,1,1,0 +"Earth_M3",0,1,0,1 +"SF1g_M1",1,0,0,0 +"SF1g_M2",1,0,1,0 +"SF1g_M3",1,0,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SFug_females_vs_Earth_females.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SFug_females_vs_Earth_females.csv new file mode 100644 index 0000000..2b7cacf --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SFug_females_vs_Earth_females.csv @@ -0,0 +1,7 @@ +"sample","SFug_Female","Earth_Female","tmt_runTMTb","tmt_runTMTc" +"Earth_F1",0,1,0,0 +"Earth_F2",0,1,1,0 +"Earth_F3",0,1,0,1 +"SFug_F1",1,0,0,0 +"SFug_F2",1,0,1,0 +"SFug_F3",1,0,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SFug_males_vs_Earth_males.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SFug_males_vs_Earth_males.csv new file mode 100644 index 0000000..d43e0a9 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/design_matrix_SFug_males_vs_Earth_males.csv @@ -0,0 +1,7 @@ +"sample","SFug_Male","Earth_Male","tmt_runTMTb","tmt_runTMTc" +"Earth_M1",0,1,0,0 +"Earth_M2",0,1,1,0 +"Earth_M3",0,1,0,1 +"SFug_M1",1,0,0,0 +"SFug_M2",1,0,1,0 +"SFug_M3",1,0,0,1 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SF1g_females_vs_Earth_females.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SF1g_females_vs_Earth_females.csv new file mode 100644 index 0000000..d885bc2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SF1g_females_vs_Earth_females.csv @@ -0,0 +1,7 @@ +"sample","condition","sex","tmt_run","group" +"Earth_F1","Earth","Female","TMTa","Earth_Female" +"Earth_F2","Earth","Female","TMTb","Earth_Female" +"Earth_F3","Earth","Female","TMTc","Earth_Female" +"SF1g_F1","SF1g","Female","TMTa","SF1g_Female" +"SF1g_F2","SF1g","Female","TMTb","SF1g_Female" +"SF1g_F3","SF1g","Female","TMTc","SF1g_Female" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SF1g_males_vs_Earth_males.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SF1g_males_vs_Earth_males.csv new file mode 100644 index 0000000..5db509c --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SF1g_males_vs_Earth_males.csv @@ -0,0 +1,7 @@ +"sample","condition","sex","tmt_run","group" +"Earth_M1","Earth","Male","TMTa","Earth_Male" +"Earth_M2","Earth","Male","TMTb","Earth_Male" +"Earth_M3","Earth","Male","TMTc","Earth_Male" +"SF1g_M1","SF1g","Male","TMTa","SF1g_Male" +"SF1g_M2","SF1g","Male","TMTb","SF1g_Male" +"SF1g_M3","SF1g","Male","TMTc","SF1g_Male" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SFug_females_vs_Earth_females.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SFug_females_vs_Earth_females.csv new file mode 100644 index 0000000..2124fab --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SFug_females_vs_Earth_females.csv @@ -0,0 +1,7 @@ +"sample","condition","sex","tmt_run","group" +"Earth_F1","Earth","Female","TMTa","Earth_Female" +"Earth_F2","Earth","Female","TMTb","Earth_Female" +"Earth_F3","Earth","Female","TMTc","Earth_Female" +"SFug_F1","SFug","Female","TMTa","SFug_Female" +"SFug_F2","SFug","Female","TMTb","SFug_Female" +"SFug_F3","SFug","Female","TMTc","SFug_Female" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SFug_males_vs_Earth_males.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SFug_males_vs_Earth_males.csv new file mode 100644 index 0000000..13b7ce2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/model_metadata_SFug_males_vs_Earth_males.csv @@ -0,0 +1,7 @@ +"sample","condition","sex","tmt_run","group" +"Earth_M1","Earth","Male","TMTa","Earth_Male" +"Earth_M2","Earth","Male","TMTb","Earth_Male" +"Earth_M3","Earth","Male","TMTc","Earth_Male" +"SFug_M1","SFug","Male","TMTa","SFug_Male" +"SFug_M2","SFug","Male","TMTb","SFug_Male" +"SFug_M3","SFug","Male","TMTc","SFug_Male" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/significant_counts_direction_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/significant_counts_direction_summary.csv new file mode 100644 index 0000000..dc36793 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/significant_counts_direction_summary.csv @@ -0,0 +1,5 @@ +"model","contrast","n_tested","n_significant_fdr05","n_significant_fdr05_lfc1","n_up_fdr05_lfc1","n_down_fdr05_lfc1" +"sex_stratified_condition_batch","SFug_females_vs_Earth_females",1668,159,107,69,38 +"sex_stratified_condition_batch","SFug_males_vs_Earth_males",1668,296,136,87,49 +"sex_stratified_condition_batch","SF1g_females_vs_Earth_females",1668,274,62,38,24 +"sex_stratified_condition_batch","SF1g_males_vs_Earth_males",1668,247,49,38,11 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/significant_counts_summary.csv new file mode 100644 index 0000000..605fe7b --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/significant_counts_summary.csv @@ -0,0 +1,5 @@ +"model","contrast","n_significant_fdr05","n_significant_fdr05_lfc1" +"sex_stratified_condition_batch","SFug_females_vs_Earth_females",159,107 +"sex_stratified_condition_batch","SFug_males_vs_Earth_males",296,136 +"sex_stratified_condition_batch","SF1g_females_vs_Earth_females",274,62 +"sex_stratified_condition_batch","SF1g_males_vs_Earth_males",247,49 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_significant_counts_summary.csv new file mode 100644 index 0000000..605fe7b --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_significant_counts_summary.csv @@ -0,0 +1,5 @@ +"model","contrast","n_significant_fdr05","n_significant_fdr05_lfc1" +"sex_stratified_condition_batch","SFug_females_vs_Earth_females",159,107 +"sex_stratified_condition_batch","SFug_males_vs_Earth_males",296,136 +"sex_stratified_condition_batch","SF1g_females_vs_Earth_females",274,62 +"sex_stratified_condition_batch","SF1g_males_vs_Earth_males",247,49 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sample_metadata_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sample_metadata_ms3fix.csv new file mode 100644 index 0000000..9cef400 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sample_metadata_ms3fix.csv @@ -0,0 +1,19 @@ +"sample","tmt_run","condition","sex" +"Earth_F1","TMTa","Earth","Female" +"Earth_F2","TMTb","Earth","Female" +"Earth_F3","TMTc","Earth","Female" +"Earth_M1","TMTa","Earth","Male" +"Earth_M2","TMTb","Earth","Male" +"Earth_M3","TMTc","Earth","Male" +"SF1g_F1","TMTa","SF1g","Female" +"SF1g_F2","TMTb","SF1g","Female" +"SF1g_F3","TMTc","SF1g","Female" +"SF1g_M1","TMTa","SF1g","Male" +"SF1g_M2","TMTb","SF1g","Male" +"SF1g_M3","TMTc","SF1g","Male" +"SFug_F1","TMTa","SFug","Female" +"SFug_F2","TMTb","SFug","Female" +"SFug_F3","TMTc","SFug","Female" +"SFug_M1","TMTa","SFug","Male" +"SFug_M2","TMTb","SFug","Male" +"SFug_M3","TMTc","SFug","Male" diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_direction_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_direction_summary.csv new file mode 100644 index 0000000..dc36793 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_direction_summary.csv @@ -0,0 +1,5 @@ +"model","contrast","n_tested","n_significant_fdr05","n_significant_fdr05_lfc1","n_up_fdr05_lfc1","n_down_fdr05_lfc1" +"sex_stratified_condition_batch","SFug_females_vs_Earth_females",1668,159,107,69,38 +"sex_stratified_condition_batch","SFug_males_vs_Earth_males",1668,296,136,87,49 +"sex_stratified_condition_batch","SF1g_females_vs_Earth_females",1668,274,62,38,24 +"sex_stratified_condition_batch","SF1g_males_vs_Earth_males",1668,247,49,38,11 diff --git a/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_summary.csv b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_summary.csv new file mode 100644 index 0000000..605fe7b --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_summary.csv @@ -0,0 +1,5 @@ +"model","contrast","n_significant_fdr05","n_significant_fdr05_lfc1" +"sex_stratified_condition_batch","SFug_females_vs_Earth_females",159,107 +"sex_stratified_condition_batch","SFug_males_vs_Earth_males",296,136 +"sex_stratified_condition_batch","SF1g_females_vs_Earth_females",274,62 +"sex_stratified_condition_batch","SF1g_males_vs_Earth_males",247,49 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F1_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F1_TMTa.txt new file mode 100644 index 0000000..5242531 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F1_TMTa.txt @@ -0,0 +1,4054 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 128C, Sample, n/a, Earth_F1 Abundances Count: F5: 128C, Sample, n/a, Earth_F1 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 19375.0708 4 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 48424.080200000004 10 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 1738785.98804 64 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 28477.238169999997 5 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 82417.12615 13 +A0A1F4 Protein eyes shut 9.56 22 68 0 557543.17139 59 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 10609.44816 5 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 183124.19004000002 19 +A1Z713 Intermembrane lipid transfer protein Vps13 0.27 1 1 1 1752.3462 1 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 2047.2188 1 +A1Z7T0 Serine/threonine-protein kinase N 1.34 2 3 0 489.56635 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 7833.34525 4 +A1Z877 Nidogen 24.81 29 66 29 672266.52448 61 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 13254.9774 2 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 1761.501 1 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 255896.58433 64 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 136418.796 10 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 50285.938599999994 5 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 193073.52541 37 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 11432.563 2 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 109499.36174000001 31 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 51600.06883999999 4 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 9630.94613 4 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 25432.23066 9 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 7472.63784 2 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 13736.1973 2 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 10458.4386 2 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 196632.2514 6 +A8DYP0 Protein Obscurin 2.11 10 12 10 54251.619959999996 9 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 337402.0915 9 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 1829499.66713 86 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 283821.18063 18 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 617710.82306 51 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 594263.42969 31 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 78962.169 4 +C0HL66 Histone H3.3A 52.94 8 63 0 98106.2521 5 +C0HLZ9 Baramicin A1 15.56 4 9 0 46344.860360000006 8 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 642936.13622 29 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 3898.31204 4 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 63278.97377 11 +M9NDE3 Protein bark beetle 3.91 13 19 13 52528.3967 16 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 5613743.55617 102 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 158968.7796 6 +O01367 Protein held out wings 21.48 8 10 0 45039.495800000004 9 +O01382 Caspase drICE 17.99 5 7 4 2529.22015 4 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 382830.10199999996 8 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 3912743.49124 105 +O02194 Presenilin homolog 5.73 3 5 0 6198.259 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 306601.4525 20 +O02649 Heat shock protein 60A 73.47 40 183 25 7735312.3944 154 +O15943 Neural-cadherin 14.89 49 91 2 604331.2744 77 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 60020.04765 10 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 39738.7958 3 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 28427.04322 6 +O18333 Ras-related protein Rab-2 18.31 5 10 5 46001.6782 9 +O18334 Ras-related protein Rab6 18.75 5 16 0 11391.814460000001 3 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 555187.33149 27 +O18388 Importin subunit beta 3.73 4 6 0 6594.57928 3 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 5985084.40295 109 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 329887.6251 30 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 70274.37418 11 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 44472.6352 3 +O44342 Protein windbeutel 19.46 5 10 0 45324.8994 8 +O44386 Integrin alpha-PS3 11.84 14 20 12 93074.76658 17 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 1685.736 1 +O46037 Vinculin 53.69 50 137 0 2449968.76455 121 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 34790.3376 4 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 108188.3848 6 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 119059.4261 9 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 235578.91632999998 21 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 4938.832399999999 3 +O61307 Teneurin-m 0.66 2 2 0 4925.8669 2 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 22025.684500000003 4 +O61491 Flotillin-1 48.83 23 81 23 1372282.47206 70 +O61722 PRL-1 phosphatase 44.32 7 23 7 440761.92504 13 +O62619 Pyruvate kinase 69.23 27 80 27 3356051.24289 64 +O62621 Coatomer subunit beta' 3.17 3 4 3 7115.96163 4 +O76206 Putative riboflavin kinase 49.02 7 15 0 511830.17535000003 12 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 243010.8724 7 +O76742 Ras-related protein Rab7 28.5 6 12 6 128687.63424999999 11 +O76878 RILP-like protein homolog 9.71 5 10 0 74579.98637 10 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 108439.7191 15 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 333257.89843999996 16 +O77051 Transcription factor E2F2 22.97 9 14 0 31768.4201 10 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 28210.2663 4 +O77277 Torsin-like protein 12.65 5 8 0 54788.0787 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 4996.411599999999 2 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 40772.24 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 82766.5115 23 +O96690 Protein PDF 23.53 1 1 1 3695.0527 1 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 3250408.51506 65 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 33936.04075 7 +O97125 Heat shock protein 68 24.09 13 89 6 130297.8076 20 +O97172 UPF0729 protein CG18508 29.29 3 8 0 83424.4088 7 +O97394 Protein sidekick 1.89 4 5 0 4406.403 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 28749.2866 5 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 1122324.80491 47 +P00334 Alcohol dehydrogenase 88.28 21 200 21 34116565.84939 149 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 2012086.5203 34 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 7076.5103899999995 6 +P02255 Histone H1 14.45 3 6 0 41796.746699999996 5 +P02283 Histone H2B 56.91 8 70 8 1697909.84525 55 +P02299 Histone H3 52.94 8 67 2 1927497.63558 55 +P02515 Heat shock protein 22 40.8 8 18 8 357399.39655 14 +P02516 Heat shock protein 23 84.41 16 83 0 3341431.8764199996 70 +P02517 Heat shock protein 26 57.69 10 30 0 909296.29419 24 +P02518 Heat shock protein 27 44.13 9 21 0 293763.39327 20 +P02572 Actin-42A 64.1 25 768 2 51543049.00599 615 +P02574 Actin, larval muscle 65.96 25 672 0 1303285.2311999998 22 +P02828 Heat shock protein 83 48.4 33 148 0 5100175.861 138 +P02843 Vitellogenin-1 70.84 32 265 0 29014166.15757 198 +P02844 Vitellogenin-2 59.28 26 187 0 16826827.123549998 132 +P04197 Myb protein 3.81 3 3 0 1531.1031 2 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 393240.21686 15 +P04388 Ras-like protein 2 13.02 2 10 2 57652.9781 9 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 19984.05646 6 +P05205 Heterochromatin protein 1 36.89 8 22 8 219000.5016 20 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 3020122.03735 31 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 893767.103 16 +P05552 Transcription factor Adf-1 7.63 2 5 0 47900.284999999996 5 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 51639.54802 11 +P05812 Heat shock protein 67B1 12.13 5 7 5 13648.90024 5 +P06002 Opsin Rh1 4.56 2 8 2 40876.6454 6 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 19316584.19721 137 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 3620.6553 1 +P06607 Vitellogenin-3 82.14 33 299 0 29050084.933280002 262 +P06742 Myosin light chain alkali 56.77 11 71 0 11702106.08564 46 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 4570.069 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 2192118.18382 40 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 11612554.94994 129 +P07665 Serendipity locus protein beta 8.43 4 5 0 2422.3175 2 +P07668 Choline O-acetyltransferase 7.63 5 6 5 17840.6767 4 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 29044274.32937 338 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 21766.54165 7 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 303470.32876 21 +P08144 Alpha-amylase A 18.22 8 15 0 157476.29895 12 +P08171 Esterase-6 13.24 9 22 0 189872.36704 22 +P08182 Casein kinase II subunit beta 38.72 8 38 2 754664.36545 31 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 1687036.66607 28 +P08645 Ras-related protein Rap1 25.54 5 15 0 190964.1263 15 +P08646 Ras-like protein 1 30.69 4 10 4 134834.16863 8 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 16156259.29001 173 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 125522.36827 13 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 6749401.776980001 114 +P08928 Lamin 67.36 50 193 49 4641419.47267 165 +P08985 Histone H2A.v 42.55 10 47 8 1031244.54873 31 +P09040 Drosulfakinins 21.99 3 3 3 55720.84299999999 3 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 817834.36723 49 +P09208 Insulin-like receptor 3.03 8 10 8 6925.138800000001 5 +P09491 Tropomyosin-2 76.76 34 245 2 91762.02055 6 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 115971.14692 13 +P10180 Homeobox protein cut 0.46 1 3 0 86891.74859999999 3 +P10379 Protein unzipped 20.29 8 28 0 436660.2853 26 +P10552 FMRFamide-related peptides 2.31 1 3 1 43493.284 2 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 748098.0019 75 +P10981 Actin-87E 76.33 30 777 0 1214418.27123 37 +P10987 Actin-5C 64.63 27 797 0 703418.15763 27 +P11046 Laminin subunit beta-1 21.09 39 84 39 1251606.85306 67 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 40964.98 1 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 26575480.96892 351 +P11584 Integrin beta-PS 18.32 17 45 0 312560.98239 37 +P12024 Chaoptin 30.95 35 88 0 2078996.33867 74 +P12080 Integrin alpha-PS2 11.53 17 39 17 217926.54926 33 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 1033541.8006900001 37 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 14327.66153 3 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 459348.02876 32 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 535003.53105 41 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 142112.34493 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 192357.41206 9 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 796049.42919 67 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 1561006.3472499999 82 +P13395 Spectrin alpha chain 65.3 140 542 0 14736691.05683 458 +P13469 DNA-binding protein modulo 4.06 2 2 0 8353.049 2 +P13496 Dynactin subunit 1 14.23 21 45 21 167391.11052 35 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 4605078.8913 124 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 81776.6358 13 +P13678 Protein kinase C 5.01 4 4 0 8509.009 2 +P14199 Protein ref(2)P 13.19 7 32 7 252656.52684 30 +P14318 Muscle-specific protein 20 80.43 16 103 16 3940007.0413100002 80 +P14484 Pupal cuticle protein 27.17 5 39 5 384682.79023 30 +P14599 Amyloid-beta-like protein 1.92 2 2 0 630.07666 1 +P15007 Enolase 78.0 40 271 1 38568032.95814 236 +P15215 Laminin subunit gamma-1 33.62 53 135 0 1805321.13963 119 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 2885.1697999999997 2 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 2300014.78688 80 +P15364 Protein amalgam 15.92 5 11 0 53262.66592 9 +P15372 Phosrestin-2 67.58 19 65 0 1383569.1676399999 60 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 156487.16816 7 +P16378 G protein alpha o subunit 29.1 11 46 7 696788.00295 42 +P16554 Protein numb 15.47 8 12 0 54957.42014 10 +P16568 Protein bicaudal D 23.4 19 27 0 218470.2044 26 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 51337.94216 11 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 3188.9885999999997 3 +P16914 Protein elav 30.23 13 43 0 582041.50496 36 +P17210 Kinesin heavy chain 34.56 34 100 34 937412.8221400001 86 +P17276 Protein henna 44.69 15 32 0 720464.04667 27 +P17336 Catalase 41.11 16 61 16 1023380.34771 45 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 844757.9277499999 29 +P17719 Dihydrofolate reductase 4.4 1 2 1 7877.9169999999995 2 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 1299783.22463 41 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 7859.812400000001 4 +P18431 Protein kinase shaggy 29.77 14 58 0 1675236.0736 49 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 9551824.25422 158 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 81942.69074 11 +P18824 Armadillo segment polarity protein 14.47 12 25 0 146345.57857 18 +P19107 Phosrestin-1 77.56 33 263 33 12737675.12235 239 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 123359.21571 28 +P19334 Transient receptor potential protein 4.39 6 9 4 88858.78646999999 7 +P19339 Protein sex-lethal 4.52 2 4 0 7778.595980000001 4 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 116927.6293 8 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 4923806.5396 40 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 22989.115299999998 3 +P20153 Protein ultraspiracle 5.91 4 7 0 24860.86623 6 +P20228 Glutamate decarboxylase 27.84 12 34 0 306128.8594 25 +P20232 Transcription elongation factor S-II 42.81 13 19 0 133388.3718 11 +P20240 Otefin 29.95 11 22 11 91068.5414 15 +P20241 Neuroglian 21.89 29 84 0 943755.64379 77 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 178366.064 6 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 7126.88566 4 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 36995.75744 4 +P20432 Glutathione S-transferase D1 52.15 12 101 9 12408809.46094 90 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 3403244.18964 59 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 13502247.94105 204 +P21187 Polyadenylate-binding protein 26.81 14 44 14 113588.34734 33 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 6120562.95699 97 +P22465 Annexin B10 65.42 20 129 20 4533651.60404 113 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 814064.9410400001 32 +P22813 Heat shock factor protein 7.09 5 6 0 17943.599570000002 5 +P22815 Protein bride of sevenless 1.34 1 1 1 3190.8838 1 +P22979 Heat shock protein 67B3 54.27 8 22 8 469304.41169 17 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 42735.7375 7 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 458457.55432 51 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 16195.186300000001 3 +P23625 G protein alpha q subunit 54.67 20 124 18 4837979.75706 105 +P23654 Neurotactin 8.87 7 17 0 91351.49192 14 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 82589.94227999999 10 +P23779 Cystatin-like protein 63.49 8 26 8 1715068.7423 22 +P24156 Prohibitin 1 73.91 17 62 0 1366853.23344 51 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 13643315.521610001 101 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 8287.935 2 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 387024.87861 37 +P25171 Regulator of chromosome condensation 10.42 5 9 5 57444.87494 9 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 3060.10686 2 +P25228 Ras-related protein Rab-3 30.45 6 18 0 139345.76976 5 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 36176.63466 10 +P25822 Maternal protein pumilio 3.39 5 8 0 26552.6458 7 +P25843 Profilin 88.89 7 27 0 1500842.7752399999 23 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 299826.376 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 88603.0936 9 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 599547.2461 27 +P26686 Serine-arginine protein 55 18.35 8 14 0 126914.6817 11 +P27716 Innexin inx1 11.33 5 7 0 39810.3465 6 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 88881.72038 17 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 33676.27457 7 +P29052 Transcription initiation factor IIB 13.65 5 13 0 57477.379 9 +P29310 14-3-3 protein zeta 69.35 18 328 0 14748991.18903 280 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 566383.9804 22 +P29413 Calreticulin 57.64 21 79 0 3948955.2301600003 71 +P29613 Triosephosphate isomerase 77.73 17 135 16 11713598.98498 113 +P29742 Clathrin heavy chain 8.76 16 22 0 60852.11012 14 +P29746 Protein bangles and beads 59.28 23 66 23 1159793.57152 59 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 2201118.55274 67 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 11571.287400000001 5 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 6948066.68443 137 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 6494317.99762 167 +P30432 Furin-like protease 2 2.44 4 6 0 8536.51215 4 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 885196.82614 41 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 1667837.24579 73 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 775101.1787500001 32 +P32234 Guanylate binding protein 128up 11.14 4 4 3 63445.164000000004 3 +P32392 Actin-related protein 3 16.99 7 15 7 85455.09966 12 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 38800.3313 13 +P33438 Glutactin 23.98 23 64 0 429569.96393 50 +P34082 Fasciclin-2 23.02 17 30 0 163643.7949 24 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 806658.07418 22 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 687880.0839 19 +P35220 Catenin alpha 24.1 22 60 12 418277.72481 53 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 34794833.22031 401 +P35415 Paramyosin, long form 75.2 85 589 0 28859022.66233 465 +P35416 Paramyosin, short form 62.19 47 347 0 1976079.75748 51 +P35421 Phosphoribosylformylglycinamidine synthase 0.59 1 2 1 1873.4717 1 +P35554 Flightin 46.7 7 14 0 96075.04329999999 6 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 34498.02022 9 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 2086684.80028 59 +P36188 Troponin I 46.1 16 73 0 3985110.51763 68 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 804446.7196 13 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 2540.88025 4 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 852309.5258 24 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 4001.265 1 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 3745313.29738 103 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 274955.63373 7 +P37236 Frequenin-1 56.15 9 52 0 204549.86729 10 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 8400.20294 3 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 328168.64284 17 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 2458860.49949 48 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 2323527.88686 55 +P39736 Puff-specific protein Bx42 12.61 6 12 0 14484.211000000001 6 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 256927.8875 4 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 231279.60812000002 16 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 41612.221 4 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 416016.28827 26 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 34332.30681 11 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 405903.33423 26 +P40427 Homeobox protein extradenticle 3.72 1 4 0 6131.1889 2 +P40792 Ras-related protein Rac1 22.4 4 22 0 165473.1636 19 +P40793 Cdc42 homolog 27.75 5 16 0 184677.23706 10 +P40796 La protein homolog 30.26 11 26 10 219155.58513 16 +P40797 Protein peanut 12.62 7 32 6 186601.74107000002 27 +P40945 ADP ribosylation factor 4 30.0 4 17 0 3843.4265 2 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 673147.87148 32 +P41043 Glutathione S-transferase S1 75.9 13 61 0 4765137.022770001 48 +P41044 Calbindin-32 75.48 25 116 0 5257709.07526 94 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 203389.90475 28 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 420993.75575 18 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 306216.9586 20 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 1818691.08862 54 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 1693563.32672 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 657765.7655099999 36 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 128048.53779999999 13 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 377372.23428000003 26 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 9518.67706 2 +P42207 Septin-1 12.74 5 19 4 31603.0173 5 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 4060633.2212000005 27 +P42325 Neurocalcin homolog 66.32 14 25 14 960931.20385 22 +P42787 Carboxypeptidase D 5.26 8 12 0 75134.1583 10 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 91548.86732 12 +P45437 Coatomer subunit beta 7.57 5 10 5 55267.110609999996 9 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 6919959.77807 93 +P45888 Actin-related protein 2 12.53 5 9 5 35210.9322 5 +P45889 Actin-related protein 1 24.47 13 20 13 454946.48907 17 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 28023.871 1 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 272686.1494 15 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 875205.38251 27 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 117061.93462 10 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 744614.36261 72 +P46824 Kinesin light chain 41.34 24 66 0 978991.1118000001 54 +P47947 Troponin C, isoform 1 20.78 3 33 0 2505119.4178 29 +P47948 Troponin C, isoform 2 27.74 4 7 0 592.0316 1 +P47949 Troponin C, isoform 3 51.61 7 20 0 1184042.5264 19 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 809805.32747 31 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 660841.97883 19 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 592681.0730099999 20 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 2795157.21149 29 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 146631.0807 4 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 1010.5168699999999 2 +P48554 Ras-related protein Rac2 26.56 5 20 0 16850.3566 4 +P48555 Ras-related protein Ral-a 43.28 8 20 1 434039.6251 19 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 68723.0638 5 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1257703.72474 53 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 181130.05746 17 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 933983.48868 53 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 1451602.01476 93 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 72053.08314 15 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 647200.38498 45 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 712171.67795 56 +P48607 Protein spaetzle 4.29 1 2 0 3689.3062 1 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 39213.856999999996 5 +P48610 Arginine kinase 1 75.28 38 429 0 36961113.728029996 361 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 637765.7801000001 21 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 724722.09198 47 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 45414.64563 12 +P49028 Protein mago nashi 46.26 6 12 6 257497.5492 8 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 82413.02530000001 9 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 319676.57061 8 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 7111.3843 2 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 25473.905039999998 6 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 3153.4867000000004 2 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 27354.96 2 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 14680.989 4 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 1021087.34222 29 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 109450.89917 16 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 14706.87828 6 +P51406 Bystin 5.96 3 4 3 2965.43752 3 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 110258.35789999999 10 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 33246.6217 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 400183.80383999995 26 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 21220.731200000002 7 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 1107.7577999999999 2 +P53034 Replication factor C subunit 2 16.31 6 9 6 27212.68211 9 +P53501 Actin-57B 77.13 31 817 3 10103070.33058 101 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 11855.6631 3 +P53777 Muscle LIM protein 1 56.52 5 52 0 553343.54059 35 +P53997 Protein SET 11.52 3 3 3 105406.652 3 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 151976.1614 5 +P54191 General odorant-binding protein 69a 13.51 2 10 2 107270.8006 10 +P54192 General odorant-binding protein 19d 71.33 11 165 11 15593227.94342 155 +P54193 General odorant-binding protein 83a 42.86 7 24 0 847368.08315 22 +P54195 General odorant-binding protein 28a 26.57 4 24 4 171160.2018 20 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 7022.0512 4 +P54352 Ethanolamine kinase 15.25 7 8 5 61603.8978 7 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 333718.0986 11 +P54357 Myosin-2 essential light chain 89.12 10 58 1 1252150.99914 48 +P54359 Septin-2 8.83 4 13 1 36976.23597 10 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 2483.42832 2 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 1581457.20745 83 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 9124.4221 2 +P54399 Protein disulfide-isomerase 67.14 31 156 0 8295639.09098 141 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 10560410.04266 159 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 98031.57519999999 9 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 146957.3135 20 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 380376.92209999997 11 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 2986672.506 78 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 984659.52336 27 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 1237258.8557 56 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 9547.2265 4 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 84268.49674 10 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 728532.6751999999 12 +P61849 Dromyosuppressin 28.0 2 2 0 181210.34600000002 2 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 11508880.18202 124 +P61855 Adipokinetic hormone 24.05 1 3 1 34949.3329 3 +P61857 Tubulin beta-2 chain 42.38 15 197 1 2199879.53 3 +P62152 Calmodulin 98.66 18 386 0 21612598.66498 303 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 1478146.06653 29 +P81829 Leucokinin 11.88 2 3 2 4679.9283 3 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 2646020.15666 59 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 1833628.9838 40 +P82804 Partner of Y14 and mago 7.73 1 2 1 706.7534 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 985232.99155 18 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 42714.4569 11 +P83967 Actin, indirect flight muscle 68.88 28 754 2 176076.766 3 +P84029 Cytochrome c-2 72.22 13 152 0 16699297.79371 137 +P84040 Histone H4 57.28 7 79 0 3762474.92168 73 +P84051 Histone H2A 37.1 7 32 0 1274673.756 11 +P84345 ATP synthase protein 8 18.87 1 1 1 84395.54 1 +P91664 Protein max 14.29 3 4 0 18392.079599999997 4 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 8625.679660000002 5 +P91891 Protein Mo25 24.78 10 27 0 493908.0012 27 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 135731.80457 18 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 335812.35459 34 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 2925503.05143 120 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 2864650.59223 45 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 917963.56372 35 +P92029 DnaJ-like protein 60 3.69 1 2 0 513.4809 1 +P92177 14-3-3 protein epsilon 77.86 25 246 23 14262863.13136 161 +P92204 Negative elongation factor E 9.64 3 7 3 23109.018500000002 5 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 8181.2907 2 +P98081 Protein disabled 4.99 10 17 0 21051.92832 12 +Q00174 Laminin subunit alpha 17.05 68 162 68 2159795.41393 137 +Q00963 Spectrin beta chain 23.88 59 161 1 5430.989799999999 2 +Q01603 Peroxidase 7.68 5 10 0 95579.47649999999 8 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 13510497.20456 201 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 27927.55037 7 +Q01819 Connectin 3.52 3 4 0 35835.041710000005 4 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 59328.881 2 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 293779.08233 29 +Q02910 Calphotin 3.94 3 9 3 109046.0117 8 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 36116.81548 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 1460.36084 2 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 318366.88516 26 +Q03427 Lamin-C 55.88 41 164 3 2361596.35997 125 +Q04047 Protein no-on-transient A 21.86 12 30 0 91012.43112 19 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 140457.16636 22 +Q04691 Fat-body protein 1 28.38 28 55 0 193339.14936 43 +Q05783 High mobility group protein D 24.11 3 11 0 46533.275200000004 7 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 30313643.22033 491 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 28283.98 1 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 3372482.18928 97 +Q06943 High mobility group protein Z 31.53 4 12 0 83290.0924 6 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 18245.23472 9 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 466925.6939 17 +Q07171 Gelsolin 24.44 18 56 0 774954.6605 47 +Q07327 Protein ROP 24.79 15 61 0 370957.69027 50 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 578112.45268 20 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 8058.78197 5 +Q08473 RNA-binding protein squid 38.08 8 17 0 685758.09805 15 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 27696.038399999998 5 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 17844.62024 5 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 51762.678799999994 7 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 27962.3762 6 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 164444.59853 21 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 2251.62922 2 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 11251.6118 4 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 188622.84741 20 +Q11002 Calpain-A 3.38 3 4 0 14958.03567 4 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 2568598.2567 57 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 3746684.85379 73 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 3794657.80204 83 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 4423566.7238799995 113 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 1507387.1551 53 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 3794687.04737 96 +Q24050 Elongator complex protein 5 26.34 6 9 6 40795.1668 9 +Q24114 Division abnormally delayed protein 9.11 6 13 0 220992.1429 12 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 271055.65526 12 +Q24134 Negative elongation factor D 2.42 2 2 0 20240.656 1 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 22561.053 1 +Q24185 Protein hook 24.45 18 32 18 262940.32192 27 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 1354978.47106 31 +Q24207 Protein boule 21.93 4 8 0 34165.96954 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 122019.03765 19 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 21430.05044 6 +Q24211 Protein stoned-A 45.41 30 66 0 1278741.57835 57 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 682948.24214 28 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 36902.68471 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 16904.22373 7 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 10669071.25526 146 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 316586.3109 26 +Q24292 Protein dachsous 1.48 5 5 0 3376.99914 3 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 132491.28697000002 3 +Q24298 DE-cadherin 12.94 19 36 19 279167.37439 31 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 37759.087100000004 5 +Q24318 Transcription factor Dp 18.2 7 10 1 25761.076419999998 7 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 10438.6468 3 +Q24322 Semaphorin-1A 5.78 5 6 0 988.26854 2 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 47198.659270000004 8 +Q24372 Lachesin 10.03 5 9 5 39120.56518 6 +Q24388 Larval serum protein 2 9.56 7 10 0 43301.1279 8 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 1876194.66958 88 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 4094996.1746099996 36 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 11065051.19619 175 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 137500.02002 31 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 74183.3397 10 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 31174.3682 7 +Q24509 Syntaxin-5 8.14 4 5 0 12225.965400000001 2 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 92741.02879 18 +Q24524 Protein singed 5.66 3 5 0 9941.966550000001 3 +Q24537 High mobility group protein DSP1 12.21 5 19 0 128800.5553 15 +Q24547 Syntaxin-1A 39.18 13 60 0 1982695.5091 56 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 11654838.88688 247 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 45989.133369999996 7 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 66979.55592 13 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 1084002.74106 44 +Q26377 Pro-corazonin 20.13 3 12 3 56446.39165 6 +Q26416 Adult cuticle protein 1 20.0 1 2 1 110604.78 1 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 46178.07206 14 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 314935.92809 12 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 42405.997 7 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 724720.20254 45 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 896806.35142 28 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 1343991.2556099999 37 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 171657.62285 9 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 109319.30497 21 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 3741.8977 2 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 59134.34085 9 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 87749.62402999999 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 13589.5182 4 +Q3KN41 Neurexin 1 4.46 8 11 0 32030.75557 9 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 15827.5615 5 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 61015.323 2 +Q4V645 Trissin 13.89 2 4 2 34120.637 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 17335.44864 5 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 40633.025200000004 4 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 11389.68335 5 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 349795.52411 14 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 11028.0386 4 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 8053.6232199999995 4 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 77463.0391 6 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 15094.042 2 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 264132.3829 9 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 502809.94532 15 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 30768.647100000002 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 135022.12084 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 803789.064 29 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 4796.263 1 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 40979.280660000004 8 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 48844.93805999999 6 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 134094.1743 12 +Q7JXF7 Protein seele 23.28 4 11 4 186532.2402 11 +Q7JYV2 Synaptogyrin 7.88 1 1 1 101840.77 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.98 1 1 0 750.9365 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 10500.77002 4 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 145838.96643 22 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 218568.95930000002 4 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 7281.4859400000005 3 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 44334.0643 8 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 54440.4917 6 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 673677.40582 42 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 13837.2348 2 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 93245.9253 11 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 80863.23392 22 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 13525.34438 7 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 255367.76794 22 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 49486.5141 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 4367448.73975 64 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 123023.70906 14 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 347841.25327 19 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 613285.30305 40 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 8284.7745 3 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 499086.27301 44 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 55978.45863 8 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 103744.30266 10 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 69123.65004 15 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 129542.476 9 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 8848951.39481 55 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 4488.8111 2 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 139288.47525000002 15 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 144080.86813 22 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 13550.491170000001 5 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 36315.9885 8 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 2148411.56723 53 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 2360.5142 1 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 57955.78916 8 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 104330.92289 18 +Q868Z9 Papilin 20.36 51 134 51 1009654.28137 101 +Q86B79 RING finger protein unkempt 1.34 1 2 0 406.13147 1 +Q86B87 Modifier of mdg4 7.54 5 9 0 83428.6211 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 33795.8678 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 16046.86533 3 +Q86NP2 Negative elongation factor A 8.87 10 18 0 99847.17236 15 +Q86P48 AT-rich binding protein 8.76 3 6 3 5868.011210000001 4 +Q86S05 Protein lingerer 2.69 3 7 0 8814.3415 2 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 34285.63044 12 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 557433.26228 32 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 40937.38745 13 +Q8IN41 Protein Turandot X 16.2 2 4 2 10510.9839 3 +Q8IN43 Protein Turandot C 48.84 5 12 5 343959.7499 10 +Q8IN44 Protein Turandot A 52.71 7 33 7 902032.54817 27 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 74675.7214 12 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 21723.2704 3 +Q8IPM8 Complexin 65.49 10 81 0 21166.4964 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 47024.006649999996 13 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 4812.23774 2 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 17195.65144 5 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 80488.287 4 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 196538.54715 15 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 63268.12187 7 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 683684.27951 22 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 34070.9928 4 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 23442.17 4 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 19373.887 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 5739.75395 3 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 156829.1358 12 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 1372062.2312 36 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 214861.04395999998 17 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 2247.9753 1 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 36830.6731 8 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 1428.08216 3 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 46619.849 4 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 174909.0799 12 +Q8MSS1 Protein lava lamp 23.79 65 113 0 359787.36923999997 83 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 10253.4538 3 +Q8MSV2 Protein alan shepard 8.98 7 17 7 117731.07868 13 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 1329.85435 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 6278.3781 3 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 47859.16554 10 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 793302.7501599999 25 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 73678.09161999999 15 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 224134.46779999998 15 +Q8SY33 Protein Gawky 8.6 11 32 11 107064.68517 24 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 5556175.99845 63 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 645601.91177 13 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 13905.81735 5 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 7750.5986 1 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 1541.69531 2 +Q8SZ63 Golgin-84 10.27 6 8 6 18243.47866 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 287529.9217 12 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 8155.73267 4 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 397489.56348 32 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 636684.73088 44 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 2596.9934 1 +Q8T390 Endophilin-A 53.66 19 86 0 3679461.87059 78 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 129154.81629999999 8 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 596224.07168 14 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 242240.36602999998 11 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 93653.42973999999 15 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 6379.426219999999 6 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 365219.65142 29 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 18255.321 4 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 3047737.66832 109 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 7086569.45824 83 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 7949309.62475 137 +Q94517 Histone deacetylase HDAC1 4.61 1 1 1 386.59473 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 885481.922 19 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 1020672.88101 26 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 10130377.70116 78 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 846539.93495 35 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 38662.8272 3 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 774684.2180900001 26 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 16578.858679999998 6 +Q94547 Regulator of gene activity 11.97 7 14 0 41300.062 8 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 40528.9464 5 +Q94901 RNA-binding protein lark 48.01 19 52 19 187339.02626 36 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 15420.4154 4 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 37433.59889 9 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 27138697.29823 350 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 858.9866 1 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 79981.75875 7 +Q95029 Cathepsin L1 35.58 15 83 2 2115194.11295 66 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 557405.37294 21 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 79874.0732 2 +Q95RA9 GILT-like protein 1 30.8 7 22 7 1274061.14199 19 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 5257.38138 4 +Q95RI5 Failed axon connections 59.09 26 146 0 5371406.94412 133 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 10897.848100000001 2 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 72821.8134 7 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 78312.66150999999 16 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 9868.4553 6 +Q95T12 Calcium channel flower 21.13 4 8 4 23460.8988 7 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 19449.26034 5 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 10598.32284 4 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 47274.12464 13 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 16553.4326 3 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 258072.7406 18 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 50231.78783 10 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 46261.8713 7 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 6356.5085 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 3882.9869 2 +Q967D7 Protein turtle 4.18 7 14 0 68449.47501 11 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 146235.22949 24 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 15468.70904 8 +Q9GQQ0 Protein spinster 1.98 1 7 1 20679.42816 5 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 2749039.71124 69 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 1285.69155 2 +Q9I7D3 Caprin homolog 9.37 8 18 0 30373.2235 10 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 44956.26014 7 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 43327.320999999996 2 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 17339.6067 3 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 10742.1522 3 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 344118.21548 34 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 9501.93638 7 +Q9I7U4 Titin 2.4 43 56 0 150032.07301 45 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 20258.352 4 +Q9NB04 Patj homolog 25.6 17 47 0 468824.04480000003 42 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 12047.51144 7 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 6067.77007 5 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 1806.4719 1 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 33998.9875 8 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 15992.25806 4 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 48517.21994 10 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 9922.5269 2 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 13452.6692 3 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 1628954.81174 62 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 40033.29176 3 +Q9TVM2 Exportin-1 1.88 2 2 0 10362.889 1 +Q9TVP3 J domain-containing protein 59.49 14 117 14 5446554.36081 102 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 210141.7179 14 +Q9U4G1 Protein borderless 16.97 10 26 10 342474.42703 22 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 80015.04329 12 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 91703.43001 15 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 687996.52151 17 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 8991.077 2 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 109523.91649999999 6 +Q9U915 Adenylate kinase 2 75.0 21 56 21 1792989.41411 52 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 51090.5372 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 151180.35025 14 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 119852.48745 15 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 43123.47159 9 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 14326.935 3 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 3099.3225 2 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 51537.20676 8 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 1310830.2121599999 30 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 18235.78634 7 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 1454206.5846 35 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 20835.512000000002 3 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 213797.23655 16 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 178693.2436 17 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 70183.27013 7 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 1926629.7825 53 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 56691.09314999999 8 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 208893.12069 31 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 24313.6643 5 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 152473.8362 21 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 12488901.955260001 128 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 45024.55506 11 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 28836.136599999998 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 4726.3623 2 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 99247.34285 11 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 20494.26046 8 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 865554.33869 31 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 36974.4743 8 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 137051.88886 12 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 312261.78740000003 8 +Q9V3Z2 Serine protease 7 13.55 5 15 4 49472.70795 11 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 67728.68733 17 +Q9V427 Innexin inx2 17.17 6 10 0 122276.6263 10 +Q9V429 Thioredoxin-2 66.98 6 56 6 4093850.8465400003 53 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 186647.60692 17 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 175249.29003 23 +Q9V447 Krueppel homolog 2 22.83 6 13 0 34897.1308 10 +Q9V496 Apolipophorins 33.18 114 349 0 8170787.01033 305 +Q9V498 Calsyntenin-1 1.74 2 2 0 1365.06113 2 +Q9V4A7 Plexin-B 1.46 3 4 0 8659.33237 3 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 4814.8447 1 +Q9V4C8 Host cell factor 7.33 11 19 11 93093.6649 14 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 8393.045 1 +Q9V4N3 Cytochrome b5 47.76 6 36 6 714922.2010700001 29 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 49461.8685 8 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 74633.53073 8 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 4484.01224 2 +Q9V521 Phenoloxidase 2 15.35 11 21 10 119608.95198 18 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 275456.85047 15 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 3001.65592 2 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 9172.96285 3 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 212765.1242 14 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 1304299.98446 24 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 926329.0085400001 27 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 22092.412 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 2172.53966 3 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 91937.17040999999 13 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 5461.4143 2 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 21452.4703 6 +Q9V6G5 Tafazzin 6.08 3 8 1 28929.88876 8 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 2013948.42927 61 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 31652.24153 4 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 28428.988599999997 3 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 34266.71517 7 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 28095.764299999995 6 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 1479849.60202 46 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 3370611.30576 96 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 471380.05582 36 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 39741.087700000004 5 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 46430.60634 8 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 3687.4458 3 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 944085.16439 30 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 2503126.56688 139 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 918655.73794 20 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 63080.67348 5 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 21562.10188 7 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 23427.01134 4 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 15274.64237 8 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 13735.372 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 3.07 1 1 1 340.42514 1 +Q9V9N4 Transcription factor Clamp 3.21 2 3 2 628.387 1 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 6695.7228 4 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 903029.35592 35 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 20037.37049 7 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 250385.3615 15 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 17614.84965 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 6978.3755 3 +Q9VA37 Protein dj-1beta 84.49 13 53 13 2182030.85614 40 +Q9VA70 Neutral ceramidase 2.41 2 3 0 7348.5056 2 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 2571057.30922 50 +Q9VAF5 Cadherin-99C 4.4 9 18 9 43313.66219 16 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 789653.7812300001 24 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 1280563.79108 17 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 3810043.70846 42 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 46820.697400000005 5 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 632162.21376 51 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 46195.9155 9 +Q9VAW5 La-related protein 1 3.41 5 8 0 18004.94884 7 +Q9VAY3 Mitoferrin 7.65 3 7 3 16760.3427 7 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 23844.89155 6 +Q9VB68 Serine protease grass 12.2 5 13 5 41887.222330000004 10 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 31193.5747 5 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 9217.725 1 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 18011.6393 6 +Q9VBV3 Protein takeout 9.64 3 11 0 131367.84894 11 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 83484.21075 12 +Q9VBZ5 YTH domain-containing family protein 5.86 4 4 4 1256.0585 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 6849.8145 1 +Q9VC57 Atlastin 4.62 3 6 0 34548.2429 5 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 14011.5186 3 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.65 2 3 0 329.01697 1 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 62826.0915 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 103903.01843 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 3845.7861 1 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 3353.87686 3 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 108750.77295 13 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 175286.67743 21 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 3408.2929 2 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 165845.70223 18 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 104398.00156 10 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 6848.3877 1 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 18644.266349999998 7 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 1278.29394 2 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 102142.12565 11 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 71326.1703 8 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 10034.30774 5 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 7991.930899999999 3 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 58800.51384 7 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 84943.7651 13 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 17993.0339 5 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 37321.09003 6 +Q9VDG5 Sodium/calcium exchanger Calx 1.05 1 1 1 340.06677 1 +Q9VDL1 Esterase CG5412 15.41 4 11 4 43876.783299999996 8 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 58620.61475 7 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 62752.4016 13 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 9195.47974 2 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 19999.1767 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 9617.596660000001 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 2829.691 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 3495354.5344 40 +Q9VER6 Modular serine protease 8.76 5 10 5 20574.20722 6 +Q9VET0 Neuropeptide F 30.39 4 12 0 92200.032 11 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 1089507.09734 61 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 42528.6177 6 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 529474.2850400001 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 92226.07283 12 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 2703370.10785 53 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 289047.33492 24 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 11807.598 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 32986.21823 5 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 328657.51871 28 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 24795.30195 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 4437.1843 3 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 10936.264 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 8780.2032 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 46283.2696 7 +Q9VFM9 Twinfilin 22.74 7 13 7 46906.971659999996 11 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 32895.827300000004 5 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 16155.5706 2 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 37542.9737 6 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 138189.0124 15 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 28837.849220000004 5 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 5313.08583 4 +Q9VG55 Protein hugin 5.76 1 3 1 846.7594 1 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 198950.585 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 1613.57304 2 +Q9VG76 Myc-binding protein 19.34 4 6 4 76448.6101 6 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 11663.04787 4 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 675224.4509 14 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 124243.224 4 +Q9VGG5 Cadherin-87A 5.72 11 18 11 51602.24843 12 +Q9VGP4 Importin-9 2.85 3 3 3 5176.665300000001 2 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 165402.12648 20 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 12190.545 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 20388.1976 4 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 2705.75095 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 1675256.71206 33 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 281866.2095 20 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 32377.015 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 3.64 2 3 2 373.12714 1 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 150600.35760000002 9 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 11180.473 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 129200.847 8 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 175428.0426 5 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 1327003.72455 18 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 3546.92931 4 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 8977.996 2 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 40894.0713 6 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 30429.36677 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 219711.8666 12 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 18320.39587 8 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 157623.7581 8 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 36958.27099999999 4 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 71467.64802 23 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 3350.66814 2 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 416562.28547 48 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 2359123.6386700002 40 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 13060.3558 4 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 732.5131 1 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 158965.90547 12 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 5990.1944 2 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 6889.7959 2 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 42806.7937 7 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 178557.3677 14 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 10260.137 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 336149.13 13 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 546183.95648 19 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 38448.6616 6 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 34418.5943 10 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 15619.338170000003 5 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 189514.59847 12 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 19657.7821 3 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 480.17685 1 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 146664.63046000001 18 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 59206.6217 7 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 164193.64105 20 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 216815.06127 16 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 16610.37576 3 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 1986.7979 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 3926.4248 1 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 2502.40363 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 24214.75484 4 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 219087.85330000002 11 +Q9VJL6 Glia maturation factor 5.8 1 3 1 2378.55955 3 +Q9VJQ5 Protein Dr1 8.2 2 4 2 3516.30213 2 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 191022.30826 12 +Q9VJY9 Protein Loquacious 11.61 5 9 0 29389.6127 4 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 8511.5545 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 216843.75441 25 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 2245.9512 1 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 968.797 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 80201.475 14 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 14484.72904 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 14914.282500000001 3 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 13570.1378 3 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 14853.0389 5 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 25979.321000000004 3 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 4364.3832999999995 2 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 1158106.69076 34 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 1107085.90791 71 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 23565.618000000002 2 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 61439.559980000005 7 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 121597.6747 11 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 183222.76466 16 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 164940.34 5 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 287050.2565 6 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 10443.8451 3 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 764202.76393 24 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 54256.2391 3 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 141649.37696 6 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 2968.3002 2 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 6487.02607 3 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 15813.33756 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 0.88 1 1 1 585.66925 1 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 23129.22745 8 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 22520.72399 9 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 180587.8196 7 +Q9VMD9 Tiggrin 12.16 31 55 0 230042.08259 41 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 2661.90684 3 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 195075.76861 15 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 4816.7632699999995 3 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 50875.734 3 +Q9VMR8 Protein Turandot M 30.53 3 5 0 410935.185 5 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 84239.69321 16 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 56771.7053 9 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 19860.98615 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 424025.66215 21 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 3252.44717 2 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 6446.05645 3 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 13522.72017 6 +Q9VMY9 Guanine deaminase 8.93 4 6 4 25097.256699999998 4 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 1706.96936 2 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 79038.76056 10 +Q9VN14 Contactin 17.77 24 48 24 314283.74738 36 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 14381.8574 4 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 33506.57542 9 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 125307.07954 9 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 442437.13069 36 +Q9VN93 Cathepsin F 23.62 16 36 13 948258.3515 30 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 155849.94775 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 468.4267 1 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 258357.70299999998 4 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 244399.91446 14 +Q9VNE2 Protein krasavietz 22.04 12 30 12 312894.92908 24 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 166290.3391 9 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 11120.1206 3 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 19587.811 5 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 86134.9 14 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 43687.138600000006 2 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 11537.1854 3 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 32821.1679 5 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 17797.572500000002 3 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 3535262.2754 41 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 805657.0751 21 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 44578.27382 9 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 22367.8426 7 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 74769.78916 6 +Q9VQC4 Glycerate kinase 13.14 9 14 0 103616.85118 12 +Q9VQF7 Bacchus 38.16 4 21 4 350567.92426 19 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 284250.57680000004 24 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 331586.49282 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 28109.2031 6 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 199851.68266 19 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 701.7704 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 5555.25695 3 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 16506.3624 2 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 26948.712900000002 3 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 91837.973 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 2847.4635 2 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 106978.59899999999 4 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 14095.558980000002 7 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 11051.03593 5 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 41865.086890000006 6 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 65062.67869 7 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 346747.80393999995 13 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 23451.3803 3 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 1503397.25359 72 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 73429.39889 11 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 1867.2993 1 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 33712.19047 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 22162.7934 6 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 2357195.58921 55 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 5480.208100000001 2 +Q9VSS1 Protein Pixie 5.56 4 4 4 24286.6356 3 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 53545.55704 10 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 33466.46749 8 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 763996.0958 48 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 138928.32634 17 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 3966.1208 1 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 16901.5704 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 20923.27 2 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 195159.5448 15 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 46533.58502 7 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 136327.7344 7 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 12056.7261 2 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 30267.47 3 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 103602.45275 11 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 940683.9535000001 31 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 67069.4469 11 +Q9VTZ5 Transferrin 2 17.95 16 27 16 138041.16112 19 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 112765.94714999999 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 276602.3486 2 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 7748650.95367 88 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 282769.09395999997 30 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 27182.73486 5 +Q9VU84 Drebrin-like protein 12.99 8 24 8 213472.03897999998 18 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 221660.9129 9 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 23767.22622 5 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 934867.83116 29 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 51429.01195 11 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 411671.42389000003 36 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 7494.8345 1 +Q9VV36 Retinin 31.94 8 155 8 4639562.01016 101 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 766320.98352 44 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 386841.05164 30 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 10771.724 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 10544.694950000001 4 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 498007.75576000003 31 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 38402.2021 6 +Q9VVE2 Protein rogdi 26.49 7 15 7 278319.15126 11 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 38989.73865 7 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 10720.0877 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 945285.16466 13 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 22151.1985 5 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 393555.69641 23 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 15495.9887 3 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 44455.4348 4 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 20296.77164 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 36920.09114 7 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 9655.22534 7 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 558536.46248 18 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 28217.00089 8 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 153881.64495 13 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 245266.75246 23 +Q9VWA1 Clathrin light chain 41.55 12 58 0 1758149.69527 51 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 24000.7215 6 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 27712.617299999998 3 +Q9VWE0 Cytokine receptor 0.78 1 2 1 800.3066 2 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 182893.80043 14 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 17079541.44671 166 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 828458.50993 21 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 55932.81629 18 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 8900.30951 5 +Q9VWU1 Serine protease persephone 8.88 4 6 4 43059.7035 5 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 10873.7586 2 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 21228.78554 4 +Q9VWX8 Frequenin-2 37.43 8 52 3 1207923.34144 38 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 12192.319 2 +Q9VX10 Sulfiredoxin 11.73 2 4 0 10011.7583 3 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 405618.3407 16 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 614137.3853 34 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 20892.42186 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 139481.41569999998 9 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 20388.31036 6 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 10215.310720000001 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 724457.57657 65 +Q9VXG4 Annexin B11 23.68 14 41 14 625613.68705 37 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 98783.3998 15 +Q9VXK0 Protein NipSnap 9.89 3 16 0 147693.18745 14 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 122355.18775 15 +Q9VXN2 Protein stunted 81.97 6 16 6 465765.3098 10 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 35443.721300000005 8 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 66740.0326 5 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 63223.24086 9 +Q9VXY0 Probable cytochrome P450 4s3 2.83 2 4 2 795.1424 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 917037.45801 21 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 25111.997440000003 5 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 4021.7370199999996 4 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 188923.6048 7 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 27704.268799999998 3 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 6937.9342 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 454032.7688 8 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 11701.0757 2 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 4918.1517 2 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 18029.7754 5 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 104457.9058 11 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 16594.631 2 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 7985.8913999999995 4 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 43711.5444 7 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 32104.9819 5 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 641717.4972 33 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 17105.1295 3 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 31858.918 1 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 197088.66843 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 88778.31084 11 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 781241.49868 28 +Q9VZ35 Protein Vago 5.0 1 1 1 404.6238 1 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 51412.0214 4 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 365329.8296 22 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 399104.36614 17 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 58110.0692 8 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 17132.2513 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 8953.488860000001 3 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 2791.6047 1 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 22456.204400000002 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 9337.6374 4 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 11386.6278 3 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 83154.80870000001 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 163401.0096 9 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 371710.27844 31 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 3162963.45886 67 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 238182.0208 16 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 15662.9472 2 +Q9W032 Protein ecdysoneless 5.12 4 4 4 1772.17959 3 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 860987.27902 47 +Q9W074 Protein HBS1 4.33 3 4 3 5331.404 3 +Q9W0A0 Protein draper 9.6 8 20 0 34099.42772 8 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 1201100.86064 28 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 11260.2733 2 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 19954.897940000003 8 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 80303.2336 9 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 1813.2812 1 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 235054.187 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 80671.10677 20 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 178558.11994 13 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 5.1 1 2 0 1215.13194 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 5636.1781599999995 4 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 2353990.1041699997 52 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 89918.00267 8 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 4274.4775 1 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 20521034.72819 94 +Q9W1G0 Probable transaldolase 48.04 12 51 12 2578925.04665 45 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 35462.1134 3 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 63574.448899999996 5 +Q9W1K5 Sestrin homolog 6.84 4 7 0 31830.07363 5 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 53321.425800000005 8 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 10065.04508 4 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 85356.09 11 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 50283.1015 9 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 135688.70266 11 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 2335755.89464 56 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 68435.2399 7 +Q9W266 Protein windpipe 20.68 10 31 10 225603.23514 24 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 484775.8277 20 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 58876.1017 6 +Q9W2E7 Protein Rae1 11.56 4 11 4 290380.9727 10 +Q9W2M2 Trehalase 29.36 16 47 0 472238.79178 38 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 19240.22192 3 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 2953.4097 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 46177.67288 10 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 28149.03924 6 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 3392532.67854 72 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 538354.29877 21 +Q9W358 Chaperone Ric-8 10.65 7 8 0 12175.0812 6 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 3052687.72794 72 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 30489.56836 7 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 382516.01995 9 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 49911.2425 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 14588.787 5 +Q9W3E2 Protein PIP82 19.83 23 56 23 175190.37967 41 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 32970.12396 14 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 27841.724339999997 6 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 47943.653600000005 7 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 111150.9259 6 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 151909.0331 5 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 3814.6602 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 8859.8273 2 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.84 2 2 2 660.65643 1 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 18677658.54964 181 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 26255.702400000002 4 +Q9W436 Neprilysin-1 4.24 4 4 4 21639.8325 4 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 60717.56685 9 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 79444.33138 13 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 1113183.43589 24 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 122827.78684 18 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 45917.7969 7 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 189282.44208 16 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 56689.6185 4 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 1277817.37598 161 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 24661.5556 2 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 126867.11669 23 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 246554.30964 8 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 5060.9212 2 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 128147.59700000001 13 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 2079.1588 2 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 1308094.79851 61 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 36619.7627 2 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 1799.5197 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 619144.36 3 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 523603.68235 27 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 48982.98486 7 +Q9XZ14 Protein gone early 4.44 4 4 1 9349.7692 2 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 62410.76495 7 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 339153.0904 21 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 347274.7365 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 323605.75873 31 +Q9XZL8 Protein sarah 34.25 7 12 0 103099.73756 9 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 2498.18288 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 6671.88812 5 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 31606.32403 5 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 1035437.73975 24 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 316341.8774 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 1563142.4578800001 17 +X2JAU8 Protein nervous wreck 29.3 30 114 30 2092647.54167 101 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 24911.301600000003 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 20315.5795 3 +A0A0B4JCR9 Uncharacterized protein, isoform D 5.04 2 2 0 752.23615 1 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 165259.09186000002 19 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 246167.182 6 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 34136.93529 11 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 4008.6429 3 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 2163402.12835 113 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 10663.67198 5 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 23295.00834 5 +A0A0B4JD47 Missing-in-metastasis, isoform E 4.61 4 4 0 502.25604 1 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 5516.839279999999 2 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 143574.44458 25 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 61116.50816 12 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 22162.48743 9 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 262400.7978 34 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 5172318.58297 163 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 17766.386570000002 6 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 23545.16972 4 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 261383.85426 33 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 47807.40044 8 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 21962.1017 5 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 52714.776249999995 10 +A0A0B4K709 Uncharacterized protein, isoform E 2.78 2 3 0 1756.69976 2 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 57082.22564 12 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 7334.441000000001 2 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 78089.00657 11 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 5186.679 2 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 4313705.72493 128 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 105533.74685 21 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 30519.63263 5 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 13551.42497 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 13366.71483 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 6331.311 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 2384198.9227 41 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 41718.2773 5 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 2.19 5 5 0 404.93732 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 668703.77689 49 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 7678.140219999999 5 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 178412.73979999998 26 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 31224.20855 7 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 27594.010349999997 10 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 15448.7273 3 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 114750.1318 14 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 189850.2941 9 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 241115.68342 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 20499.12396 9 +A0A0B4KEJ7 Coronin 17.01 9 17 0 85356.17429 13 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 15134.2054 5 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 2429.9006 1 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 6580.098099999999 3 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 22684.793 1 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 99201.00546 31 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 3659.65087 2 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 6187.923000000001 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 14553.916799999999 5 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 173270.43525 15 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 34140.208940000004 10 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 6529.2616 3 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 1138863.85884 36 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 34207.8732 5 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 2787563.16355 82 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 39004.3681 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 141210.7186 19 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 434534.72344000003 12 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 77878.1072 9 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 10432.91381 6 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 68664.26101 9 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 42101.304000000004 9 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 11109.6229 4 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 9901.17735 4 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 11588.41344 2 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 53002.9075 7 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 29780.90172 7 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 13303.081699999999 3 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 46003.938429999995 7 +A0A0B4KGF7 beta-mannosidase 2.65 3 4 0 442.96518 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 167125.56921 20 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 851126.907 21 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 375061.2627 43 +A0A0B4KGP4 Beaten path IV, isoform B 1.57 1 2 0 450.1065 1 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 28906.2836 3 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 1409.53253 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 141275.99461 12 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 545.65875 1 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 32035.41233 11 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 8321.1769 2 +A0A0B4KH34 Annexin 67.9 22 147 2 7267967.77112 129 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 7627.29 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 11306.81564 4 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 157135.7434 19 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 113937.38160000001 20 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 46001.85426 6 +A0A0B4KHF0 Ferritin 77.97 20 130 1 5728992.07428 107 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 13642795.19394 204 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 142798.93568999998 7 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 7715.95392 2 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 20603.5272 6 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 92424.87272 12 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 143412.49356 23 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 83533.49296 4 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 19274.207029999998 6 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 42022.5645 2 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 29189.11258 8 +A0A0B4KHW7 Uncharacterized protein, isoform P 2.81 1 1 0 2233.1924 1 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 1707.14494 2 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 1140941.36734 46 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 1211540.2823 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 10997.159 1 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 2320.5774 2 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 9051.2927 2 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 4901.5583 2 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 316968.76363999996 27 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 324355.58766 38 +A0A0B4LF95 glutaminase 7.29 4 9 0 50639.5167 7 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 495496.60424 34 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 128291.35537 17 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 52634.500250000005 9 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 15388.87803 6 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 2634.71522 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 621.2344 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 266382.2191 19 +A0A0B4LG34 Liprin-gamma, isoform E 2.4 3 3 0 668.5633 1 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 24391.69742 9 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 33583.47658 4 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 39518.20295 8 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 1334464.14444 56 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 201312.1674 12 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 12316.298499999999 4 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 443290.61868 27 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 51525.2233 9 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 2226161.09482 54 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 6032.34 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 38083.10132 7 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 427666.58792 51 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 8246.9529 2 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 10176.476999999999 4 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 29761.3356 3 +A0A0B4LHL1 Uncharacterized protein, isoform C 1.96 1 2 0 586.99744 1 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 72413.76143 12 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 3894.9207 1 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 15135.328730000001 5 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 13488.4118 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 2524.41496 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 108156.83674 23 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 7739.653 1 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 4950.9122 3 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 321005.31019 45 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 7506.07896 4 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 35146.9869 5 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 71416.2535 11 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 2609.41923 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 178693.05869 11 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 9232.68115 5 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 10455769.34243 119 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 116075.6798 12 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 48017.4457 4 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 5892.6193 2 +A0A1Z1CH25 AT27361p 7.62 4 4 3 6238.6672 2 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 230796.8881 10 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 2555.2403 2 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 5541016.23589 134 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 38044.47216 17 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 76997.89736 13 +A0A4P1SAA7 IP07559p 11.17 2 3 0 21097.6975 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 4869.71504 3 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 306049.71622 46 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 57438.95846 10 +A0A6H2EEJ8 Uncharacterized protein, isoform C 3.44 3 3 0 786.52496 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 15491.1188 3 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 2842.9492 3 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 5229553.03257 318 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 2309.89974 3 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 1172925.60404 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 13135.0521 4 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 8888.4289 3 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 16514.844 1 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 10901.2597 2 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 3303.3568000000005 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 20158.27508 6 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 5015625.9037 299 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 487335.19582 39 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 845480.0065 33 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 139431.76524 21 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 211676.69916 16 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 103611.8896 7 +A1Z6F6 FI18602p1 9.08 8 14 0 120258.47804 12 +A1Z6G9 FI18173p1 9.04 3 5 3 14014.23655 5 +A1Z6H4 RE52822p 6.86 4 9 0 22847.238680000002 6 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 19908.71141 12 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 5677.9644 1 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 94797.2262 8 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 196528.84824 19 +A1Z6R7 FI21445p1 33.57 9 21 9 71561.05121 16 +A1Z6V5 FI01422p 37.15 14 45 14 629768.92629 39 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 353105.2119 10 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 43145.186200000004 9 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 29351.968699999998 6 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 1909.96158 2 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 15339.3149 8 +A1Z7B8 GEO08456p1 12.66 2 6 2 43216.138 5 +A1Z7G2 MIP13653p 13.39 2 8 2 273658.29839999997 6 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 162907.75083 18 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 28277.3569 4 +A1Z7K6 FI20236p1 5.61 3 7 3 37092.48523 7 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 115654.12713000001 16 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 2769.20745 2 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 50007.92333 9 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 605704.5357799999 51 +A1Z7V9 FI20020p1 2.74 2 4 1 14306.59448 4 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 22116.357 1 +A1Z7X8 FI02944p 15.34 6 12 6 117648.0449 10 +A1Z803 FI02892p 31.76 12 29 12 268110.89255 24 +A1Z843 Nodal modulator 3 9.17 12 20 12 101003.513 18 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 788071.07184 30 +A1Z871 CAP, isoform B 10.27 19 36 0 75352.35203 5 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 2777905.12195 59 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 12650.21532 4 +A1Z8G0 Menage a trois, isoform A 20.17 12 26 0 633.3182 1 +A1Z8G7 FI09243p 16.53 2 4 2 5366.042960000001 2 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 5184804.85721 62 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 96083.01960000001 5 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 8206.6132 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 4892.2455 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 38315.341029999996 4 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 674194.4345 10 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 599406.94704 13 +A1Z933 GEO02273p1 22.09 2 3 2 19096.1702 3 +A1Z934 SD19268p 36.45 11 34 11 281321.37276 27 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 10242.966 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 128978.7943 27 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 45209.94098 8 +A1Z9B5 IP16508p 15.06 3 7 3 68847.1777 7 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 3242875.78722 55 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 413758.19463 23 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 155948.76167 43 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 192001.49940000003 8 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 47529.48844 12 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 369511.514 3 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 15957.71747 5 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 5988.4019 2 +A1ZA23 FI18007p1 26.91 10 31 10 208278.75108000002 27 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 8029.8844 2 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 60462.5233 6 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 127154.2418 12 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 9326.1316 3 +A1ZAH3 FI16515p1 3.28 2 4 0 2203.45786 3 +A1ZAK3 Protein DEK 5.4 3 5 0 13433.65848 4 +A1ZAL1 lysozyme 30.43 5 6 5 72473.3662 4 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 1557.9915 1 +A1ZAU4 RH39096p 50.95 16 45 0 2836659.23948 41 +A1ZB23 IP19117p 16.06 4 12 4 136787.23273 12 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 2238.66494 2 +A1ZB68 FI01423p 33.18 8 25 8 410287.81573 19 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 801272.42728 33 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 10651.85209 3 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 214773.87878 14 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 4215.12197 4 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 1246992.2271 36 +A1ZBA5 FI07234p 7.22 2 3 2 27456.316000000003 3 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 20220.218670000002 4 +A1ZBD8 Mucin-5AC 3.57 5 9 5 2947.24516 5 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 282887.01859 26 +A1ZBK7 Crammer 58.23 4 13 4 252186.9688 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 313.78894 1 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 190713.42797000002 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 151176.22904 19 +A1ZBU5 GNBP-like 3 27.63 3 9 3 130457.10195 8 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 41673.191 3 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 1337184.92194 38 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 4041.21465 3 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 292949.28133 42 +A1ZBX6 lysozyme 3.91 1 2 1 485.00558 1 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 2392.74082 2 +A2VEG3 IP16294p 3.06 3 5 0 9532.713329999999 4 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 65494.0251 9 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 433672.71131000004 38 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 31047.9566 9 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 281529.74873000005 21 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 1808284.27508 70 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 1648214.06245 114 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 2043144.17334 51 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 55746.088410000004 9 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 29850.6134 8 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 1306453.1299 12 +A8DYD1 Combgap, isoform L 13.26 10 20 0 129165.6795 14 +A8DYI6 Prohibitin 66.27 22 89 3 2277163.87466 71 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 210673.34675 22 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 46106.59728 15 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 45099.22232 10 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 14300.02648 5 +A8DZ06 Stolid, isoform J 10.24 13 34 0 281510.81653 27 +A8DZ14 FI17828p1 20.1 9 32 3 277763.41433 22 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 78343.33402 8 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 6027.992 1 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 147437.61767 33 +A8E6W0 IP19808p 25.25 5 9 5 66666.57467 9 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 27319.0535 3 +A8JNJ6 Karst, isoform E 1.54 8 8 0 6493.41674 3 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 7038.81286 3 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 40654.8313 7 +A8JNP2 arginine kinase 72.53 37 429 2 910181.29584 15 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 44707.70827 5 +A8JNS4 Starvin, isoform E 11.81 7 10 0 24725.302620000002 8 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 12479.6342 4 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 61836.869399999996 6 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 32261.90995 9 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 6820.9142 3 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 18031.0441 4 +A8JQW3 Pinin, isoform B 20.2 7 10 0 58294.7502 9 +A8JQY2 Uncharacterized protein, isoform C 1.38 1 1 0 901.15955 1 +A8JR01 Kramer, isoform I 3.4 9 12 0 14040.713029999999 7 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 63671.1611 6 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 60599.11798 14 +A8JR58 Hadley, isoform B 2.02 1 1 0 4130.0103 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 3105646.31648 95 +A8JRH3 FI20012p1 60.08 25 75 1 2492071.39816 65 +A8JTM7 Megalin, isoform A 4.53 24 37 24 116210.11366999999 26 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 61833.397679999995 11 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 8664.02043 3 +A8JUZ6 MIP03678p 7.28 3 4 0 36504.51119999999 4 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 16163.0892 8 +A8JV09 Coronin 1.67 2 2 0 5357.354020000001 2 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 658730.9200200001 25 +A8WH76 GEO10024p1 51.85 4 15 4 463115.7081 13 +A8Y4V5 FI20903p1 8.21 2 3 2 5964.661099999999 3 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 35072.092300000004 3 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 3833415.49173 17 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 3830.7666 1 +B7YZH1 FI20143p1 6.47 4 6 0 11467.16741 5 +B7YZN0 Syndecan 17.81 10 24 0 67820.96623 19 +B7YZN4 GH02741p3 49.23 4 6 4 16032.73654 6 +B7YZN8 GH02741p1 22.37 2 5 2 39518.7194 5 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 71336.9172 10 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 5383046.9431 58 +B7YZV2 Phosphodiesterase 6.31 7 15 0 23970.2428 11 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 135579.19848 22 +B7Z001 Fatty acid synthase 21.46 50 93 0 941303.15231 81 +B7Z002 Kismet, isoform C 0.6 2 2 0 1266.472 2 +B7Z005 Drongo, isoform I 9.14 5 11 0 28272.504800000002 7 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 3413.5272 2 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 4940.58718 4 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 13937.5231 3 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 4764.18719 4 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 69377.56477 6 +B7Z0C9 GH15104p1 41.05 4 6 4 30117.69526 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 7518197.70359 133 +B7Z0M0 FI17308p1 18.85 2 3 2 9041.143 2 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 4505.73712 4 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 99221.6695 16 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 76788.97325000001 12 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 12273.6672 6 +B7Z107 GH09380p1 52.17 5 7 5 35674.3873 6 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 23748.12404 6 +C0HDP4 MIP05618p 3.77 2 2 0 10496.943 2 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 1184076.64332 31 +C7LAG1 CoRest, isoform G 3.76 3 4 1 640.6728 1 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 682241.8682 56 +C9QP70 MIP12608p 15.85 2 3 2 35082.1947 3 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 709450.58205 27 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 286793.00084 18 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 22365.84813 9 +D0Z756 MIP14966p 32.93 13 33 0 1441993.00455 29 +D1YSG0 Bent, isoform F 6.65 59 74 0 344555.80062 62 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 119687.76046 11 +D3DMM0 MIP15702p 15.28 8 15 0 97364.8103 11 +D3DMM4 MIP15217p 30.28 24 95 0 1492740.29027 81 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 136757.2939 8 +D5SHT6 MIP21537p 4.99 3 4 0 20258.0564 3 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 22423.61046 3 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 26319.29434 7 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 264591.8611 31 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 104437.16179 12 +E1JGR3 GEO02620p1 24.62 3 5 3 5086.73513 3 +E1JGY6 Hulk, isoform F 13.33 23 31 1 576264.78314 28 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 112628.20101 18 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 19805.9572 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 5369.805 2 +E1JH90 Patronin, isoform F 1.38 2 2 0 1147.1201 2 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 451662.38955 70 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 49934.277799999996 6 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 7123.7334 1 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 32763.682 1 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 43974.3305 8 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 41490.4882 7 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 140532.11094 18 +E1JHP9 Galectin 4.06 2 4 0 13756.0472 4 +E1JHT6 Reticulon-like protein 18.12 11 35 0 792070.91023 30 +E1JHT9 Reticulon-like protein 24.77 6 24 0 5291.8768 2 +E1JI40 Vermiform, isoform I 13.51 7 15 0 149499.56329 14 +E1JI59 Schizo, isoform D 2.87 4 5 0 2421.1232600000003 2 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 61873.622299999995 6 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 22139.3114 3 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 46922.7625 4 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 37215.477 1 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 12906.6939 3 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 13832.93492 5 +E1JIY8 L antigen family member 3 20.72 3 8 3 55542.1514 7 +E1JJ33 Complexin, isoform U 65.73 9 79 1 4302347.30503 75 +E1JJ60 Uncharacterized protein, isoform M 28.44 5 18 1 468.9818 1 +E1JJA4 Dynamin 27.41 28 73 0 719383.87096 61 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 1499.1655 1 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 3913.3269 2 +E1JJG5 Phospholipase A2 13.81 3 3 1 3866.28665 2 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 1132312.94522 79 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 21016.7543 7 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 122342.6494 13 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 6753.236 1 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 446052.56156 55 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 5108.163 1 +E2QD54 Natalisin, isoform D 4.7 3 5 0 5511.30337 4 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 78700.42684 11 +E2QD98 Protein PALS1 7.62 16 28 0 190900.10353000002 23 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 54356.596659999996 13 +E8NH67 Asperous, isoform B 51.14 19 129 0 2042382.0668600001 96 +F0JAP7 LP18071p 23.14 6 10 0 6877.46402 6 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 28577.2689 8 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 2184261.73903 122 +H1UUB1 GEO12465p1 55.04 6 25 1 246369.63043 18 +H8F4T3 Regucalcin 32.35 6 11 0 346499.62435 11 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 35041.5402 5 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 4550.24245 3 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 617049.28272 25 +L0MPN7 Asator, isoform H 12.15 13 25 0 68258.01212 19 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 86198.61993 28 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 899.6938 1 +M9MRX0 Limpet, isoform J 26.49 29 95 0 1920344.75598 83 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 260530.27962000002 69 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 119291.85471 9 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 42120.67278 9 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 44254.511 2 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 939.61704 2 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 654531.54697 27 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 601591.13833 18 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 1183995.09 47 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 2987.5615000000003 2 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 15037.480599999999 5 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 62439.407479999994 9 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 272222.52865 15 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 54108.65668 18 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 158463.28053 21 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 63715.52572 16 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 11900.6763 4 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 56933.85294 12 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 18990346.08653 451 +M9NDB5 RNA-binding protein 6, isoform F 15.11 3 6 1 369.69104 1 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 23257.9342 4 +M9NDE0 pantothenate kinase 6.54 3 6 0 13157.061319999999 5 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 58930.13258 15 +M9NDS9 chitinase 2.56 12 16 0 36404.52164 12 +M9NDX8 Neurabin-1 4.11 8 9 0 16909.4583 4 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 18715.21828 9 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 37432.6463 7 +M9NEF2 Histone deacetylase 4.43 4 4 0 3660.84225 2 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 3906.3025000000002 2 +M9NEW0 LD39232p2 43.33 7 15 7 212834.57493 12 +M9NEX3 Cytochrome b5 57.55 6 20 0 1323996.5296 16 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 44668.4462 6 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 10850.2613 3 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 130931.00039999999 6 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 59421.83333 14 +M9NFC0 Troponin I 48.74 15 55 5 375304.9628 11 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 37037.241 2 +M9NFH3 Lasp, isoform D 27.3 8 30 1 19315.145 1 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 175109.06816999998 19 +M9NH07 Upheld, isoform N 48.73 30 148 0 8940580.47971 133 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 103026.28416 22 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 91812.91616000001 7 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 5194.3071 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 673146.33355 35 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 1637.4186 2 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 78125.12 2 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 19070.5487 3 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 2492789.20756 157 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 4362.1065 2 +M9PBM3 Cysteine protease 6.34 2 4 0 15320.2617 2 +M9PBN2 Apolipoprotein D 29.39 7 23 0 666365.05895 18 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 168635.38337999998 19 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 766.4435100000001 2 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 24900.2735 4 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 121273.74095 12 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 354818.7466 24 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 32876.03654 8 +M9PBW9 Rhea, isoform G 5.83 17 26 0 117814.46257 23 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 108273.2069 15 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 23101785.72357 151 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 7287.5489 2 +M9PC74 Reticulocalbin-3 17.11 6 19 0 184777.23353 17 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 46477.067839999996 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 24503.196600000003 4 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 6091.289430000001 8 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 54959.69744 17 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 134422.42933 21 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 22110.2797 5 +M9PCT7 Bunched, isoform O 18.75 4 11 1 2308.52686 2 +M9PCU0 FI21215p1 26.43 30 64 1 342.28366 1 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 125107.3743 11 +M9PD73 TEP1-F 20.6 32 69 0 1008520.60959 56 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 450747.68092 24 +M9PDB2 Varicose, isoform E 8.51 6 10 0 29548.45933 9 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 268603.64216 26 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 2267.4153 1 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 21920.71185 6 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 550.65906 1 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 16836.92812 6 +M9PDU4 Acyl carrier protein 18.23 4 33 2 3306040.57446 30 +M9PDV2 Tetraspanin 6.97 2 3 0 12048.17726 3 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 251194.1715 56 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 178363.6556 13 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 4094709.5595899997 45 +M9PE32 Fife, isoform D 12.79 17 34 1 89637.90967 27 +M9PE35 RabX6, isoform B 6.76 2 3 0 14537.012999999999 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 7.42 3 3 0 496.9606 1 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 9374.90198 7 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 29987.79798 10 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 21147.664300000004 4 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 12406.637900000002 3 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 67833.52573 6 +M9PEC1 IST1 homolog 16.75 7 17 0 132473.6196 15 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 171942.50935 20 +M9PEG1 Uncharacterized protein 36.6 17 48 17 1203790.11308 41 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 1845315.64289 290 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 20414.23713 6 +M9PEL3 Quemao, isoform C 38.04 11 22 0 149061.32261 17 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 68684.8717 10 +M9PET3 Simjang, isoform D 3.57 3 4 0 6590.6448 3 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 2825.8425700000003 2 +M9PF16 Spectrin beta chain 24.44 61 168 3 1537943.08639 147 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 365272.63224 33 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 13301.912069999998 4 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 19872.68403 7 +M9PFH7 Tartan, isoform B 5.99 5 7 0 32318.16024 6 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 2092.5071 2 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 44727.9879 8 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 6243.8149 4 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 43009.1391 4 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 5701.5969700000005 6 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 100223.82783 15 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 88912.45157 18 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 76053.73025 9 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 9847089.03569 205 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 11590.8599 5 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 41449.654500000004 5 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 145764.49408 9 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 10977.908500000001 3 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 124274.26055 23 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 29655.2871 7 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 221283.30295 28 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 262768.49628 31 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 53938.02087 14 +M9PHX2 Visgun, isoform E 8.78 2 4 1 21782.606399999997 3 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 6607.35718 4 +M9PI33 Inositol oxygenase 7.27 3 4 0 78401.143 3 +M9PI51 Dual specificity protein phosphatase 15 6.04 3 4 0 922.6834 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 6968.6939 2 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 4726.080599999999 2 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 20682.147 2 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 839.32465 1 +M9PJQ5 Troponin I 47.28 13 65 0 269345.91665 13 +O15971 LD39986p 26.96 6 30 3 73301.3955 6 +O16158 Calcium-binding protein 50.0 8 32 8 1732438.0193 27 +O17452 LD20793p 37.83 7 35 4 1174438.69943 26 +O18332 FI01544p 72.2 13 63 11 1059030.3033399999 43 +O18335 Rab11 53.27 13 69 13 2086309.44279 59 +O18336 Ras-related protein Rab-14 24.65 6 18 0 48795.61136 11 +O18338 LD44762p 27.05 6 31 0 9273.4646 2 +O44226 Elongin-B 91.53 9 34 9 539918.5703799999 27 +O44434 QKR58E-3 12.62 4 6 3 19523.8062 3 +O46052 EG:152A3.3 protein 18.87 6 8 3 62521.4795 6 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 459697.37444 46 +O46079 Protein KTI12 homolog 13.04 4 11 3 14620.384900000001 5 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 955.41354 2 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 26275.278 5 +O61604 Fimbrin 32.34 22 67 3 1039800.50131 58 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 73206.60097 14 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 17596.3064 8 +O76521 Importin subunit alpha 9.21 5 12 5 61129.09876 9 +O76752 Sepiapterin reductase 27.2 7 26 7 121896.46549999999 21 +O76877 EG:132E8.3 protein 10.62 2 5 2 36024.22844 5 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 1979348.49009 24 +O77259 EG:115C2.5 protein 9.0 2 2 0 20467.152000000002 2 +O77425 Ribokinase 8.88 3 7 3 26577.6578 5 +O77430 GEO01111p1 62.96 11 37 10 413602.02154 33 +O77434 EG:34F3.8 protein 28.91 5 19 1 63504.065650000004 11 +O77477 LD24471p 20.94 9 15 9 53045.3172 11 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 201640.85296 8 +O96692 small monomeric GTPase 12.09 2 6 0 18762.6528 3 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 83723.83056999999 13 +O96880 General transcription factor IIE subunit 1 2.33 1 1 1 531.8147 1 +O97059 Ccp84Ab 19.91 4 8 0 63854.70163 8 +O97062 Ccp84Ae 34.13 6 26 6 129773.68263 16 +O97064 Ccp84Ag 25.65 4 10 4 47606.801340000005 8 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 7297.639999999999 5 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 2439808.33096 32 +O97111 LD29223p 7.41 3 5 3 15923.56944 5 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 9401.958 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 22672.0029 2 +O97365 BM-40 31.58 9 14 9 179872.80349999998 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 1693702.95313 40 +O97428 Ciboulot, isoform A 13.95 2 4 0 19311.667 2 +O97454 Protein BUD31 homolog 13.89 2 3 2 3705.951 1 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 118406.71495000001 17 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 5589.9876 2 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 6775980.57661 72 +P92181 Cuticle protein DCP2 36.7 3 15 3 77007.12056 8 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 21456.57286 3 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 1665521.28632 71 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 98810.12205 11 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 48781.7944 7 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 7652.1201 2 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 1106155.01305 122 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 11121.023229999999 2 +Q0E8P5 FI05614p 9.28 5 12 5 329172.8291 10 +Q0E8S7 Homer, isoform E 37.66 18 48 3 797974.5646 42 +Q0E8U4 FI09636p 15.33 6 8 6 48251.562600000005 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 1139015.1965 22 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 28706.7836 5 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 733661.07208 38 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 492767.48116 21 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 185487.06568 20 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 2290.36626 3 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 508203.885 63 +Q0E9E6 RE33655p 1.32 1 2 1 2680.1732 2 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 178395.41115 15 +Q0E9G4 CG1600-PA 12.6 3 4 0 8973.0052 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 110114.73085 14 +Q0KHR7 Septin 18.74 8 17 0 172612.06167999998 17 +Q0KHX7 FI18193p1 6.31 8 11 0 48331.96975 11 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 5820811.89036 144 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 51549.120800000004 7 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 46366.15238 16 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 302898.84137 31 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 17109.919 7 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 53735.9482 6 +Q0KIB0 Sidestep III 2.61 4 5 4 8566.17496 2 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 7147.13351 5 +Q1RL12 IP16413p 60.25 16 101 1 62737.14 1 +Q24090 GH08712p 14.05 6 9 6 32407.075520000002 8 +Q24253 AP complex subunit beta 19.76 16 31 16 162607.3604 27 +Q26459 EN protein binding protein 13.32 8 16 0 59633.87949 13 +Q29QY7 IP15859p 9.86 1 1 0 9013.722 1 +Q2MGK7 GEO13330p1 26.77 4 11 4 117047.1308 10 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 2044.5963 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 14306.438 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 7095610.9662 123 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 14225.85825 6 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 248532.77174999999 10 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 4207.05514 4 +Q4QQ49 IP09595p 3.04 1 1 1 909.906 1 +Q4QQ70 IP09819p 16.08 7 13 7 87965.70862 10 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 48736.456340000004 5 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 29928.510499999997 5 +Q4V619 IP07950p 6.9 2 2 0 6910.445 1 +Q4V625 lysozyme 6.75 1 2 1 27842.479 1 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 155619.7648 11 +Q500Y7 GEO11443p1 89.47 4 15 4 1403525.6020300002 14 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 17820.375 5 +Q59E01 FI02065p 5.58 4 7 0 2478.19665 4 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 13881.3678 2 +Q5BIA9 RE10908p 2.72 2 2 2 16889.7918 2 +Q5LJT3 MIP01391p 17.0 3 3 3 110018.758 2 +Q5U124 alpha-glucosidase 16.51 11 24 0 423016.25182 22 +Q5U126 GEO11286p1 59.42 7 36 7 1664374.05139 33 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 29213.7088 6 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 35152.3915 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 515241.30144 17 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 31723.2923 3 +Q6IGN6 HDC05827 11.36 2 8 2 57895.2146 6 +Q6IGW6 GEO13367p1 44.23 2 4 2 52692.700899999996 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 1323088.5083 16 +Q6IL43 GEO11093p1 27.71 2 6 2 97017.06820000001 5 +Q6NL44 GH28815p 16.11 6 12 6 16155.27224 8 +Q6NLJ9 AT19138p 46.59 3 5 2 31531.29796 5 +Q6NMY2 RH54371p 32.42 5 16 5 207178.55397 8 +Q6NNV2 RE44043p 14.68 5 8 0 65275.32454 8 +Q6NNV7 RH03309p 29.55 5 15 1 675178.8616299999 12 +Q6NP69 GST-containing FLYWCH zinc-finger protein 2.68 2 2 1 400.48456 1 +Q6NP72 GEO09659p1 53.59 5 28 5 193889.02921 22 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 10526.12704 4 +Q76NR6 Regucalcin 77.74 24 100 0 7246748.67573 86 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 193695.03526 11 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 111905.03685 16 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 1465899.22313 24 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 9228.2152 4 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 336078.00039 23 +Q7JQX9 FI14001p1 4.65 4 4 0 4426.85372 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 4404891.3973199995 90 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 314032.77845 16 +Q7JRB2 RH09039p 4.52 1 3 1 789.23676 1 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 33440.7827 3 +Q7JRF1 RE48509p 3.41 1 1 0 2034.7784 1 +Q7JRH5 RE28271p 1.31 1 2 1 7974.6173 2 +Q7JRL9 GH25289p 67.12 10 56 1 2735055.00413 49 +Q7JRN6 GH06388p 11.21 3 10 3 21255.91678 8 +Q7JS69 FI04632p 45.02 10 65 1 381707.1528 14 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 15726.998 3 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 22355.4557 5 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 623327.01974 40 +Q7JV09 GH28348p 7.5 8 12 5 29379.196640000002 8 +Q7JV69 SD11922p 6.95 3 6 3 14732.213770000002 4 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 21488.74442 5 +Q7JVH6 LD24696p 27.01 8 20 7 306498.05625 15 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 145577.01449 13 +Q7JVK6 Translin 16.17 4 11 4 80677.42554 9 +Q7JVK8 GEO08987p1 52.05 8 31 8 271294.9794 25 +Q7JVM1 GH25962p 22.64 5 16 5 57656.009869999994 10 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 74852.9826 8 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 7144.769189999999 3 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 122278.1973 9 +Q7JW07 LD08826p 12.12 3 3 3 25712.597999999998 2 +Q7JW48 RE12410p 8.08 3 8 3 52633.22034 5 +Q7JW66 LD21545p 8.81 3 5 3 32398.0788 5 +Q7JWD6 Elongin-C 52.99 6 18 6 762561.9875 14 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 633560.30958 29 +Q7JWH5 RING-box protein 2 7.96 1 1 1 7472.088 1 +Q7JWQ7 RE01730p 9.74 4 7 4 10442.65536 5 +Q7JWR4 GH19585p 6.06 1 2 1 27785.6365 2 +Q7JWU9 AT07420p 22.49 7 8 7 33824.8194 5 +Q7JWX3 GH10112p 7.35 4 10 4 141747.19553 9 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 600109.14 2 +Q7JX94 Phospholipase A2 13.29 3 6 3 3456.78885 4 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 60195.92366 8 +Q7JXB9 Endonuclease 8.39 4 4 4 11595.698199999999 3 +Q7JXC4 CG6459 protein 33.46 6 46 6 2188899.41298 42 +Q7JXW8 Off-track2 11.09 5 9 4 27008.3428 8 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 107136.1881 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 264060.1756 7 +Q7JYW9 Phosphotransferase 18.72 9 13 9 44517.491760000004 12 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 13127.5991 2 +Q7JYZ0 lysozyme 11.18 2 6 2 56782.754100000006 5 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 90686.63750000001 8 +Q7JZB1 RE49860p 8.66 3 5 3 8988.5858 2 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 714735.45606 40 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 354.76993 1 +Q7JZE1 Peroxin 11 9.96 3 6 3 16449.49937 6 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 79704.1225 7 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 1930363.6501200001 42 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 57373.1614 11 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 7130.718400000001 2 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 573829.8482 22 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 985945.5464999999 27 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 29112.0368 6 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 6038243.04678 156 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 21082.9529 3 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 901950.58253 40 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 117734.34294 13 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 5182.73068 2 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 21811.42207 3 +Q7K0S1 LD39211p 3.43 2 3 2 7577.0692 3 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 196709.87741 21 +Q7K0S6 LD36817p 21.02 8 13 8 69188.10932999999 12 +Q7K0T7 LD33470p 1.5 2 2 0 1695.5621 1 +Q7K0W1 LD27406p 3.85 2 2 2 8746.035 1 +Q7K0W4 LD27203p 56.4 18 61 17 2358049.01312 43 +Q7K0X9 LD23667p 8.51 2 17 2 45828.30901 14 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 28714.895819999998 6 +Q7K127 Alpha-galactosidase 18.71 7 24 7 298579.484 18 +Q7K130 Dynactin subunit 4 4.67 3 4 3 13859.516500000002 3 +Q7K148 Proteasome subunit beta 21.28 6 13 6 107334.0357 12 +Q7K159 LD06557p 26.22 6 8 6 10820.45839 7 +Q7K180 LD02709p 17.73 8 12 8 23231.053079999998 10 +Q7K188 GEO05126p1 29.68 6 49 6 2330496.3463 44 +Q7K1C0 GH23780p 46.53 5 11 1 785803.4143 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 51605.112 8 +Q7K1C5 GH21176p 10.85 7 9 7 80992.75528 8 +Q7K1H0 GH09096p 16.67 6 8 6 43496.81086 8 +Q7K1M4 SD04017p 17.31 5 15 5 60080.05751 10 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 78112.7798 10 +Q7K1W5 LD35843p 23.4 10 26 10 514275.8801 24 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 24295.62995 6 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 539827.86334 22 +Q7K2E1 LD05247p 9.07 5 13 5 95580.94127000001 11 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 14247.4032 2 +Q7K2L7 GH27120p 17.59 3 5 3 132471.1597 4 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 45799.653399999996 8 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 6504.1676 3 +Q7K2P3 GH20817p 63.48 14 46 1 260736.25052 37 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 18426.1617 3 +Q7K2W6 tyrosinase 23.91 16 34 16 193947.25499 25 +Q7K332 GH17623p 6.28 2 11 1 31618.474550000003 9 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 254628.1906 18 +Q7K3E2 LD34147p 38.81 22 51 22 781314.08502 42 +Q7K3H0 LD28067p 2.93 6 10 0 53373.310900000004 6 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 783411.86297 41 +Q7K3N4 GH26015p 16.49 7 13 7 94581.6033 9 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 32054.8236 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 93024.05176999999 20 +Q7K3W4 GH08941p 24.88 8 21 8 356831.22268 20 +Q7K3Y9 Spondin-1 5.04 5 7 5 14609.808700000001 5 +Q7K3Z3 GH01724p 39.07 15 44 15 886747.37543 42 +Q7K485 Cathepsin D 25.51 7 29 7 960057.12166 25 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 20053.78003 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 4681.131 1 +Q7K4J7 LD36653p 4.06 1 1 1 4278.1074 1 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 11240.1047 2 +Q7K4T8 LD23856p 8.52 4 6 4 16360.48432 5 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 8147.0621 3 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 39823.688949999996 8 +Q7K519 GH16429p 6.75 3 3 3 15813.1533 2 +Q7K533 GH14572p 6.14 2 2 2 392.0002 1 +Q7K549 GH13040p 6.1 3 4 3 4228.7328 2 +Q7K561 GH11294p 1.75 1 1 1 434.25415 1 +Q7K568 GH10642p 13.82 5 11 5 95314.23 11 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 618582.75654 41 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 339529.92918 21 +Q7K5M6 GH04176p 19.59 6 16 6 207793.81505 15 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 325054.4543 20 +Q7K860 FI07231p 33.33 5 18 5 644368.31108 16 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 538175.5052 23 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 2096.30956 2 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 9264.5049 5 +Q7KK54 MIP07328p 2.21 2 3 2 16195.1777 3 +Q7KK90 GH14654p 47.77 7 29 7 1377381.31704 26 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 170127.068 20 +Q7KLE5 Amphiphysin 41.86 27 94 3 2306199.37067 83 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 117465.1358 13 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 244342.16565 14 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 88472.9118 4 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 5685.801299999999 2 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 215492.62865 13 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 1211496.98243 55 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 3.5 2 2 0 469.13177 1 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 16798.24254 4 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 7351.7544 1 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 269022.56062 42 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 5290890.29318 97 +Q7KND8 FI09619p 9.18 8 10 8 32580.5969 9 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 470614.69003 19 +Q7KRT4 GH07253p 2.47 1 1 0 2419.7573 1 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 15374.4175 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 20619.866439999998 6 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 52937.008 3 +Q7KSE4 GH05443p 5.39 4 5 4 18892.110200000003 5 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 207084.31175 14 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 1093058.19497 25 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 12609.1207 5 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 2067.726 1 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 282022.49914 29 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 955775.03445 30 +Q7KT58 GH08155p 7.03 4 6 4 21253.0173 5 +Q7KT70 FI18641p1 4.18 4 4 4 10118.910100000001 4 +Q7KTA1 HL01444p 20.43 10 22 10 170763.65794 19 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 125860.30715 25 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 3679089.14159 79 +Q7KTN9 FI01009p 4.26 3 3 0 10119.259 2 +Q7KTP7 LP22840p 61.88 10 18 10 168903.38412 17 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 2448876.86621 46 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 224189.41837 19 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 13898.7058 3 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 506345.50680000003 33 +Q7KUD4 phospholipase A2 3.95 4 6 0 21442.27044 4 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 132851.0413 22 +Q7KUT5 Protein MIX23 21.01 3 4 0 15818.9611 3 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 49244.4877 7 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 23881.93763 5 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 237528.31921000002 26 +Q7KV27 alanine transaminase 47.01 23 110 0 6597744.97875 99 +Q7KV34 Pinkman 39.06 24 47 24 1281617.69175 44 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 8898.401 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 809.47705 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 165659.08994 18 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 2584.2513999999996 2 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 3329273.54652 84 +Q7KY04 small monomeric GTPase 15.96 3 10 2 19727.9057 2 +Q7PL91 GEO11417p1 26.6 3 13 3 241881.68431 11 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 3096.1208 1 +Q7PLI0 P120 catenin 10.5 10 17 10 93651.63269 13 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 238498.21409999998 27 +Q7PLS1 LD01937p 11.46 5 8 0 27846.87416 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 19404.5772 4 +Q7YU88 SD08871p 5.67 6 8 0 9675.5092 3 +Q86B44 Glutathione synthetase 11.03 6 11 0 80663.92016 8 +Q86B74 WASp, isoform C 16.19 7 10 0 11988.75901 5 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 8003.744 1 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 8744.1864 2 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 114152.98586 22 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 143700.41674 16 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 507846.08803 37 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 343679.04976 23 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 1126843.0951999999 26 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 453767.86767 42 +Q86BS3 Chromator, isoform A 27.65 20 50 20 247212.50859 41 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 28425.35632 8 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 231028.43589999998 15 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 18868.973270000002 6 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 72306.4417 7 +Q8I0D4 RE20510p 20.9 17 39 0 1218023.34035 30 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 17295.0947 5 +Q8I0P9 acid phosphatase 1.76 1 2 0 6671.0738 2 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 111963.71235 19 +Q8I930 GH14147p 4.68 3 4 0 13165.8174 3 +Q8I941 GH16843p 28.83 7 29 7 265830.69616 25 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 9666.85894 4 +Q8IGY1 RE08101p 33.61 41 326 0 10715542.97593 151 +Q8IH23 GEO02102p1 43.7 5 11 5 51086.5265 9 +Q8IM93 FI18814p1 36.72 17 40 17 213138.4479 28 +Q8IMF4 RE24176p 10.11 5 7 0 19820.569939999998 5 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 522755.61485 25 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 21777.885000000002 3 +Q8IMQ8 RH29536p 33.72 10 31 0 427167.8155 27 +Q8IMT3 IP12392p 5.95 3 4 3 5440.88397 2 +Q8IMT6 FI01822p 6.64 3 6 3 45490.296930000004 6 +Q8IMU2 RE10237p 13.88 3 5 0 19989.99455 3 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 1347.99036 2 +Q8IMX4 FI04408p 6.6 2 7 0 24443.0102 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 101791.3431 10 +Q8IN49 MIP05539p 7.19 7 14 7 73063.18830000001 11 +Q8IN51 FI17609p1 21.17 3 9 3 55141.46145 7 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 3718.7054 2 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 33623.325300000004 4 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 27042.09159 6 +Q8INH5 Aminopeptidase 5.65 6 9 0 33794.7938 9 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 24575.1167 5 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 30693.071799999998 7 +Q8IP52 RE16941p 3.69 4 4 4 422.3553 1 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 6719.623 3 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 372798.52837 27 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 34454.3021 5 +Q8IP97 Peroxin-19 54.11 10 30 10 762191.77498 27 +Q8IPA5 RE15581p 6.07 2 2 0 13153.231 1 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 21957.85578 7 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 209580.51914 11 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 1899626.51732 100 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 51544.201199999996 11 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 2989.3318 1 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 278757.01211999997 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 610.8791 1 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 36246.6794 2 +Q8IPT9 SD05439p1 36.84 12 19 0 615387.65455 15 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 976478.61486 51 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 10674.218700000001 3 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 23160.47807 10 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 30449.44115 13 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 20295.6995 4 +Q8IQB7 MIP21654p 9.44 3 5 3 1497.25979 3 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 26545.3696 5 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 43825.167440000005 7 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 42021.19159 5 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 13836.6605 3 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 64184.1016 13 +Q8IQH0 FI12817p 5.22 8 11 0 40723.1723 10 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 109880.76611 12 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 8709.0078 4 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 204977.5896 27 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 34880.57777 3 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 24977.604 4 +Q8IQW5 RE23625p 79.17 16 78 4 3787321.94303 60 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 1826.9513 1 +Q8IR72 FI19011p1 10.06 1 3 1 13261.873 2 +Q8IR76 FAD synthase 12.59 4 7 0 27173.71544 7 +Q8IRD0 RH17559p 42.86 3 12 3 98033.25 10 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 3804828.5094500002 75 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 130895.23931 26 +Q8IRI5 Trio, isoform D 8.83 7 10 0 29573.591399999998 8 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 10231246.33645 155 +Q8MKJ5 GEO08105p1 19.47 2 3 2 653.73765 2 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 44416.58661 6 +Q8MLP9 GEO08457p1 16.96 2 5 2 13630.3842 5 +Q8MLQ0 FI14118p 21.05 2 3 2 45811.6236 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 129018.28283 11 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 37414.7943 5 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 986.37286 1 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 206375.1727 15 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 2610641.3035 72 +Q8MQP2 MIP16184p 7.0 2 5 0 43928.3727 4 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 25095.180249999998 3 +Q8MRM0 GH16740p 23.63 6 17 6 140414.38813 14 +Q8MRS5 AT03104p 3.18 3 3 0 3467.49386 2 +Q8MRT7 SD26038p 13.22 3 7 3 48868.857800000005 7 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 7543.2195 3 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 4250.805 1 +Q8MSI2 GH15296p 77.78 17 127 17 11948407.087340001 103 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 4779.85426 3 +Q8MST5 Tubulin beta chain 47.92 18 97 0 732499.03055 37 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 1768248.36091 56 +Q8MZ07 GEO07581p1 10.96 2 5 2 13807.9643 3 +Q8MZI3 RNA helicase 17.36 13 23 6 153645.07572 14 +Q8SWS2 RE29468p 39.05 5 14 0 237559.97353 10 +Q8SWS3 RE26528p 17.13 2 3 2 155955.71600000001 3 +Q8SWZ6 RH51312p 8.33 2 3 2 4415.32427 2 +Q8SX35 GEO07743p1 33.33 3 8 1 54511.8271 7 +Q8SX50 RE04530p 14.96 6 11 0 50154.33616 10 +Q8SX54 CLIP domain-containing serine protease 2.78 1 1 1 772.8597 1 +Q8SX57 LD44221p 42.41 8 19 8 190876.1716 17 +Q8SX78 LD05679p 19.7 8 11 8 29778.882 9 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 34076.28547 6 +Q8SXC2 FI04487p 7.56 4 4 4 9582.0197 3 +Q8SXD5 GH02216p 53.85 11 59 2 1521002.51901 47 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 54546.58427 8 +Q8SXF2 RH40246p 10.75 5 7 5 27271.74135 5 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 5189.757500000001 2 +Q8SXK0 RE18748p 10.55 3 3 3 3854.51204 3 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 174010.72193 28 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 20028.702 3 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 111988.11106 18 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 235719.56259000002 5 +Q8SXS0 RE40914p 11.92 4 6 4 10192.3061 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 455577.533 25 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 24182.01843 5 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 166342.49586999998 8 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 3013.50187 2 +Q8SY67 lysozyme 35.85 3 3 3 86055.611 3 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 385822.73592999997 10 +Q8SYC4 RE68566p 1.97 1 1 1 746.36786 1 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 2320775.8893399998 80 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 444236.5035 15 +Q8SYH8 RE57644p 19.78 5 13 1 109520.65542 9 +Q8SYJ2 GEO09626p1 61.45 8 53 8 4422499.4762 49 +Q8SYN0 RE52086p 9.56 4 5 4 10925.908300000001 3 +Q8SYQ4 RE42475p 52.03 10 68 10 1636743.34442 58 +Q8SYQ8 RE40412p 32.35 5 10 5 54022.739799999996 10 +Q8SZK5 RH26533p 10.93 3 5 3 28116.0281 5 +Q8SZK9 HL04814p 47.19 11 54 11 2252612.91956 47 +Q8SZM2 RH04334p 28.15 10 38 10 1523021.80376 33 +Q8SZN1 GEO08217p1 51.61 7 31 3 1146427.3703 28 +Q8T0I9 GH27479p 23.63 10 27 1 456911.04787 20 +Q8T0J5 GH26851p 29.62 9 33 0 576567.9164999999 29 +Q8T0N5 GH17516p 16.56 6 16 6 271809.63125 16 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 30771.9426 6 +Q8T0V2 GH02495p 21.25 10 23 0 136802.8295 19 +Q8T389 Endophilin B 56.35 18 77 0 6344.5044 1 +Q8T3W8 Venom allergen-1 20.61 6 10 0 33249.28404 7 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 413680.72625999997 36 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 1909007.6927200002 64 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 19010.743 2 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 8501.329 1 +Q94513 Boundary element associated factor 12.41 5 12 1 29993.19025 6 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 48970.66317 7 +Q95NU8 GH16255p 16.25 8 18 8 151249.34688 16 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 31337.4957 3 +Q95PE4 GEO07784p1 6.17 1 1 1 864.13257 1 +Q95R34 GH16463p 9.71 3 4 3 14982.587599999999 3 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 42618.86033 7 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 55543.40128 14 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 17769128.9051 138 +Q95RE4 LD37574p 44.32 15 30 1 59516.741780000004 23 +Q95RF6 LD34461p 43.27 5 7 5 51072.9717 5 +Q95RI2 LD28549p 27.78 9 14 9 70767.9441 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 38813.44356 8 +Q95RQ1 LD16414p 3.71 2 2 2 857.2365 1 +Q95RR6 LD15002p 64.6 17 77 0 65316.039 2 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 109461.5318 13 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 358084.6494 4 +Q95RY2 LD01461p 20.61 5 11 1 98110.57036000001 9 +Q95SH0 GH26463p 5.58 5 6 5 9847.88 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 357447.78195 29 +Q95SH7 GH26007p 7.94 2 3 2 2083.74643 2 +Q95SI7 GH23390p 75.09 17 43 17 1837156.38757 39 +Q95SN8 GH12395p 26.76 5 14 5 213801.9477 11 +Q95TK5 LD44914p 12.95 7 17 7 91640.12582 13 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 705462.2925099999 36 +Q95TP0 LD34582p 1.97 1 1 1 3290.8018 1 +Q95TZ7 GH19182p 79.35 28 155 0 3950638.24982 116 +Q95U15 GH14252p 82.05 32 274 0 2168206.0543 24 +Q95U34 GH11113p 20.41 10 36 10 344942.76423 30 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 66320.82 6 +Q960D4 SD06560p 22.09 14 22 0 195131.09666 19 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 6738335.4486 84 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 169578.50678 25 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 10996.367549999999 4 +Q961B9 LD24073p 8.37 4 4 4 11689.86694 2 +Q961C8 LD22649p 15.3 5 10 0 25713.22125 8 +Q961E7 phosphorylase kinase 10.74 5 5 1 23129.9862 4 +Q961K6 GH19047p 4.19 3 3 3 7620.90993 3 +Q961Q8 GH10454p 10.86 5 7 5 26164.3744 6 +Q961T9 GH07914p 35.88 6 11 6 119661.30632999999 10 +Q961X4 Combover, isoform B 10.01 8 13 0 82245.97424 10 +Q966T5 Paxillin, isoform D 37.06 7 18 2 66453.56964 7 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 37892.295939999996 9 +Q9I7I3 GH12831p 9.56 3 4 3 5958.89512 4 +Q9I7J0 GH21596p 73.37 11 57 11 2116673.5048100003 48 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 15316.7744 3 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 19633.77993 8 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 986511.32101 27 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 2278866.78906 18 +Q9NCC3 Sorting nexin 14.34 8 16 8 103146.03330000001 16 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 2.35 3 3 0 629.83295 1 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 89621.62151000001 7 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 79668.10859999999 11 +Q9U6P7 FI18813p1 14.35 7 9 7 56275.00326 9 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 944505.55 41 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 26737.913099999998 5 +Q9V393 Kurtz arrestin 10.0 5 9 5 108010.2227 7 +Q9V396 Carbonic anhydrase 46.67 12 54 12 1047561.15799 44 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 41558.84621 7 +Q9V3C8 DShc protein 3.42 2 3 2 6589.178 1 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 108085.29119999999 13 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 8059.6202 2 +Q9V3E7 LD24793p 42.48 12 35 12 429031.82905 30 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 17036.190899999998 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 268904.42710000003 13 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 1869.947 1 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 33054.8427 7 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 169451.824 6 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 800118.7713499999 47 +Q9V3N9 B6 5.73 4 6 4 35619.424699999996 4 +Q9V3P3 LD45860p 40.0 10 21 10 587019.0556 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 79114.7769 8 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 7774.039970000001 3 +Q9V3T8 LD32469p 14.36 4 5 4 48723.6923 5 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 1678887.1231 39 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 1026997.9618500001 40 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 1802405.67338 55 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 693926.31085 35 +Q9V3W2 GM23292p 61.08 12 86 12 2927535.8667200003 71 +Q9V3W7 LD40489p 41.18 10 24 10 240960.56936000002 17 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 191333.92401 27 +Q9V3Y4 LD43650p 6.65 2 4 2 4849.5054 1 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 460852.46488 29 +Q9V3Z4 GH11341p 22.31 12 31 12 171567.36351 25 +Q9V3Z9 HL02234p 46.21 14 53 14 2580154.08146 39 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 22380.832860000002 6 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 728916.05791 41 +Q9V406 Activator protein 4 9.03 7 16 7 55734.32754 10 +Q9V420 FI02878p 13.91 5 10 5 67037.87339 10 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 240023.40672 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 29024.753 3 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 189516.34170000002 9 +Q9V455 Importin subunit alpha 15.95 9 16 9 216087.5419 13 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 497854.733 34 +Q9V491 Plexin A, isoform A 1.03 2 2 0 674.092 1 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 1334744.23544 54 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1550442.28268 62 +Q9V4E0 Complex I-49kD 26.28 9 14 8 307937.62142000004 13 +Q9V4E7 Transporter 3.62 3 6 2 11378.48142 5 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 7441.9697 3 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 111039.62795 11 +Q9V9Q4 LD43819p 24.01 9 22 9 319496.99957 17 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 150104.1685 2 +Q9V9T5 GM14617p 15.04 10 14 1 21128.5395 8 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 1903.8015 2 +Q9V9U0 RE35358p 10.11 2 3 2 1654.67717 2 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 89698.27314 12 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 2893.64975 2 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 189464.46050000002 13 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 499030.05053999997 21 +Q9V9W4 GH08048p 3.6 2 2 2 545.3745 1 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 2057.0168000000003 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 40296.254400000005 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 2919355.05116 82 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 95090.10544 10 +Q9VA34 LP06141p 3.64 4 5 4 16941.6354 5 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 141999.26704 22 +Q9VA41 GEO08227p1 42.04 6 16 2 109335.58528 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 955714.34904 18 +Q9VA56 GH23271p 60.79 20 66 1 1928.8154 1 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 19997.6432 3 +Q9VA71 FI19924p1 6.19 3 3 3 10280.79695 3 +Q9VA76 IP18706p 11.33 4 8 4 23177.0458 5 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 6449.0854 2 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 306918.83432 19 +Q9VAA6 GEO12235p1 10.76 2 6 2 42876.80947 6 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 79485.29691 15 +Q9VAC1 GM14349p 63.31 21 113 21 7923228.82477 91 +Q9VAC4 GEO09167p1 23.08 3 12 3 317571.6563 10 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 30841.48603 10 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 6070.95158 3 +Q9VAD7 RH37294p 11.56 2 3 2 1721.84351 3 +Q9VAG3 trypsin 11.46 3 6 3 59986.90854 6 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 40568.34972 6 +Q9VAI9 GEO07291p1 62.25 9 62 5 3045361.04049 46 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 94186.02334 12 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 7339.84662 3 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 1396511.91188 62 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 16359014.53224 102 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 89433.65075 9 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 5346.433779999999 4 +Q9VAU6 LD27564p 2.62 2 2 2 11805.906299999999 2 +Q9VAV2 FI21480p1 16.09 13 25 13 111227.8609 21 +Q9VAY0 Neprilysin 7 5.58 4 4 4 8953.56619 4 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 1468382.94602 75 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 29099.5965 2 +Q9VAY9 GH07821p 4.83 2 2 2 17164.562 1 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 738232.30604 50 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 1418418.93871 50 +Q9VB17 IP11341p 10.12 4 7 4 25729.391200000002 5 +Q9VB22 LD33695p 13.07 8 14 8 203781.4389 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 86287.46594 17 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 301662.6252 9 +Q9VB66 CLIP domain-containing serine protease 7.35 3 3 2 824.5618 1 +Q9VB69 Malic enzyme 19.45 12 25 1 142408.13688 22 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 33362.4127 4 +Q9VB77 IP09938p 4.06 1 2 1 4229.6391 2 +Q9VB78 Eater 12.38 3 7 3 11318.216799999998 3 +Q9VB79 IP09473p 14.19 5 15 5 52500.46355 13 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 991013.65393 55 +Q9VB86 LP07342p 7.34 1 1 1 7708.3315 1 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 302679.8244 22 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 11649.902 7 +Q9VBC9 Beaten path VII 3.68 2 4 2 21501.2218 4 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 2934932.0017999997 57 +Q9VBI3 RH72336p 22.66 7 23 7 186672.96667 20 +Q9VBL3 GH01188p 8.54 5 6 5 14260.050940000001 6 +Q9VBN5 60S ribosomal protein L27 5.93 1 1 1 663.3988 1 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 26259.4815 3 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 6151981.88703 132 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 22692.0235 3 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 531580.5151 19 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 20266.9076 6 +Q9VBT2 IP11926p 4.57 2 2 2 742.4403 1 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 10090.26636 4 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 776552.6537 10 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 28341.430920000003 3 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 27145.851 3 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 1563926.62458 59 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 34672.8413 5 +Q9VC06 LD37516p 12.05 9 12 9 43415.05926 10 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 2842.4502 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 113471.67782 23 +Q9VC30 RE05274p 13.98 3 7 3 11348.4453 4 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 51217.22417 10 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 114211.43436 14 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 155786.52238 10 +Q9VC58 Syntaxin-18 6.08 3 3 3 1305.25056 2 +Q9VC66 AT25567p 25.62 12 25 12 128054.66866 24 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 18839.51901 6 +Q9VC87 RE57978p 7.51 3 5 3 5341.41306 2 +Q9VCB9 FI08802p 6.15 2 2 2 29499.76364 2 +Q9VCC9 LD23779p 2.55 3 5 3 5886.7346099999995 4 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 4865.3989 3 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 102127.8142 7 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 18429.7154 7 +Q9VCF8 LD23561p 10.51 4 8 4 56309.2979 8 +Q9VCI4 LD32918p 5.33 4 7 4 357.33612 1 +Q9VCI7 LD02979p 12.03 5 12 1 121538.7775 9 +Q9VCK6 LD34157p 14.88 7 11 7 30413.169540000003 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 44192.08222 8 +Q9VCR4 FI17836p1 3.66 3 5 3 15386.950949999999 4 +Q9VCR9 RH48101p 20.22 8 34 8 318791.66884 30 +Q9VCT4 Klingon 5.69 3 4 3 3020.0566 3 +Q9VCU0 GEO02312p1 33.33 4 15 4 42603.14974 12 +Q9VCU1 FI07649p 2.77 2 2 2 522.44635 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 29846.013000000003 4 +Q9VCW2 Cardinal 11.33 9 12 9 15994.106179999999 8 +Q9VCW6 GCS light chain 37.54 12 34 12 371425.30066 29 +Q9VCZ2 FI07970p 5.96 3 4 3 4793.6678600000005 3 +Q9VD00 FI07666p 15.11 4 16 4 140135.30117 14 +Q9VD01 LP12095p 8.52 2 4 2 69392.628 4 +Q9VD02 GH14779p 37.99 5 19 5 330058.64223 17 +Q9VD13 GH02671p 17.26 8 11 1 59147.2584 8 +Q9VD14 GH07286p 11.88 8 21 8 215272.43163 20 +Q9VD29 small monomeric GTPase 48.19 9 26 9 2353004.32927 23 +Q9VD30 GH05294p 74.19 12 43 12 2509858.76864 42 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 12405.512200000001 2 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 4314625.94999 89 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 34756.15398 4 +Q9VD68 GH19849p 4.3 2 3 2 15841.8957 3 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 48590.1658 5 +Q9VDC0 GH01837p 28.0 5 14 5 47346.51894 11 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 49699.1033 4 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 495808.74585 11 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 365672.75033 6 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 182278.98176 30 +Q9VDH3 GH08630p 66.23 13 38 13 1093995.5564599999 33 +Q9VDI1 LD46328p 53.04 22 79 0 1016310.04645 65 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 11195.3845 2 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 39218.9743 4 +Q9VDK2 GH15831p 5.72 4 6 3 18849.1059 5 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 142160.81485 25 +Q9VDK9 GH12359p 6.46 4 6 4 42849.0081 6 +Q9VDL5 GEO09602p1 13.43 1 2 1 12346.8369 2 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 309753.3547 19 +Q9VDQ3 Identity crisis 6.53 4 4 4 2301.4004999999997 2 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 171790.8917 18 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 323742.7156 15 +Q9VDU7 nicotinamidase 15.69 5 15 5 205438.591 14 +Q9VDV2 AT06125p 8.54 4 4 3 3888.26963 2 +Q9VDY8 MIP08680p 57.35 14 64 1 1306959.98309 58 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 856787.79726 73 +Q9VE08 GH10002p 8.92 2 3 2 6153.890829999999 2 +Q9VE12 LD27322p 14.81 5 12 5 42273.10368 10 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 20772.8217 6 +Q9VE31 GEO12059p1 16.22 2 3 2 1218.2161 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 48853.832800000004 7 +Q9VE56 FI17806p1 7.14 2 3 2 84727.3556 3 +Q9VE57 GEO10850p1 12.41 2 3 2 15126.2919 3 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 3978.4022 2 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 38534.3767 3 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 30012.5729 8 +Q9VE94 LD14127p 12.24 5 6 5 11148.1164 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 236039.7649 14 +Q9VEA7 FI01460p 28.09 1 3 1 10093.045900000001 2 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 29107952.79464 244 +Q9VEB7 AT04491p 5.94 3 3 3 19523.818 3 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 37092.43466 4 +Q9VEC6 LD29902p 8.94 10 24 0 511.25214 1 +Q9VEC8 RE23139p1 14.62 2 4 2 34793.135200000004 4 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 60283.816 10 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 16271.00662 2 +Q9VEG8 RE59232p 2.8 1 1 1 53025.723 1 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 23267.898 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 529200.76595 37 +Q9VEJ9 Curly Su 1.2 1 2 1 16950.9683 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 153382.62073999998 11 +Q9VEK8 GH07711p 34.05 12 33 12 252261.26954 28 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 114349.2395 19 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 5874.5686000000005 2 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 16764.65379 7 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 199688.93957 22 +Q9VEP8 GH11385p 13.2 10 14 10 64713.00505 11 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 87224.34156 17 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 30841.13636 7 +Q9VES8 RE28913p 27.34 8 16 8 38390.8481 11 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 57821.954 3 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 185530.0749 21 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 407.67267 1 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 13924.389299999999 3 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 102901.09514 20 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 26683.4623 3 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 1591321.04462 35 +Q9VEY9 GH15759p 2.33 1 1 1 934.0137 1 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 103702.4003 15 +Q9VF15 GEO09476p1 81.05 12 61 8 1765822.85063 52 +Q9VF23 arginine kinase 7.22 4 6 4 7115.847400000001 2 +Q9VF24 Crossveinless d 5.1 8 12 8 41908.8508 10 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 84209.4064 11 +Q9VF39 FI01459p 4.13 2 2 2 20060.566 1 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 140891.4176 20 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 34903.46618 7 +Q9VF77 FI16517p1 10.07 4 7 4 22833.07666 5 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 23324.366500000004 4 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 137615.83978 11 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 33774.359 2 +Q9VFC7 Mf5 protein 84.38 37 292 0 7199309.80095 199 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 2322.40203 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 7609370.12608 121 +Q9VFI3 GEO08281p1 21.15 1 1 1 9418.939 1 +Q9VFM0 GH19262p 4.96 3 5 3 4596.60801 4 +Q9VFN7 GEO07678p1 20.13 4 19 4 451075.1215 17 +Q9VFN9 GEO07882p1 15.32 2 6 2 29497.920940000004 5 +Q9VFP0 RH07106p 17.84 7 11 7 82600.3364 10 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 967225.30163 30 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 342191.86938 22 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 18170.30508 7 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 39325.6187 5 +Q9VFT4 AT27578p 10.58 6 11 6 18948.87633 9 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 23352.09265 5 +Q9VFV1 RE55542p 2.83 2 2 2 15519.5085 2 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 1732164.86485 56 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 64569.3395 10 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 14413.93 4 +Q9VG01 RE12073p 5.26 3 3 3 5993.38766 2 +Q9VG04 Protein MEMO1 10.85 4 6 4 4364.82844 4 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 4488.5986 1 +Q9VG23 GH22994p 65.12 12 32 1 1370023.21617 27 +Q9VG26 MIP06012p 38.03 8 22 8 524824.28838 17 +Q9VG28 Beaten path Vc 2.36 1 3 1 538.5031 1 +Q9VG31 Malic enzyme 16.64 15 41 0 376951.31865000003 38 +Q9VG33 Sulfurtransferase 73.64 6 14 6 949677.628 13 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 51184.00473 7 +Q9VG44 RE14195p 2.84 2 2 2 1398.8276999999998 2 +Q9VG51 Sorting nexin-3 55.69 9 28 9 191424.06546 26 +Q9VG62 Toys are us 1.44 1 1 1 2342.1257 1 +Q9VG69 LP03547p 32.01 11 35 11 582444.40264 34 +Q9VG81 RH49330p 11.83 6 15 6 62612.29081 12 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 104829.58859999999 5 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 476097.1976 17 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 7685.53226 2 +Q9VGA3 LD12305p 35.91 7 32 6 404517.45364 23 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 6741.76555 2 +Q9VGE4 FI04457p 9.25 11 16 11 51730.80822 11 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 12014.96234 8 +Q9VGF3 IP11040p 11.88 5 6 5 16189.1003 4 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 321808.24633 26 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 135074.702 10 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 132114.5576 8 +Q9VGL0 LD43047p 2.84 4 6 4 1916.22827 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 15532246.71865 207 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 36237.1708 7 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 3464811.57587 77 +Q9VGQ8 Arfaptin 6.76 3 4 3 29672.5708 3 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 5158.0448 2 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 6442.7229 2 +Q9VGS3 RH44771p 14.04 3 26 3 543887.3232399999 21 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 22253.742 2 +Q9VGT3 GM04645p 5.3 3 5 3 3107.45766 3 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 20594.38878 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 17900.838649999998 4 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 38655.19066 4 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 45143.83294 6 +Q9VGY2 Peptide deformylase 10.08 3 4 1 11936.7783 4 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 8563.928 1 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 143703.74744 21 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 49951.14984 6 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 192654.52646999998 16 +Q9VH37 IP06524p 14.29 3 4 3 29016.81696 4 +Q9VH63 Uncharacterized protein 3.0 2 2 2 2524.4386 2 +Q9VH64 LD29322p 10.03 4 5 4 79354.5267 4 +Q9VH66 FI18258p1 29.61 6 13 6 54179.82632 10 +Q9VH72 TA01656p1 52.94 7 23 7 548204.39766 18 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 566752.32236 39 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 25068.7503 10 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 50771.2516 7 +Q9VH85 GH14967p 3.41 3 3 3 5666.4946 1 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 164380.98914000002 6 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 162112.07973 9 +Q9VHA8 LD25575p 12.25 8 20 8 208149.5463 16 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 167696.20236 14 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 55712.88485 6 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 95812.24294 15 +Q9VHC7 FI21236p1 30.54 19 54 9 1172756.3741300001 39 +Q9VHC8 LD31448p 10.06 2 2 2 772.65393 1 +Q9VHE3 GH05665p 9.38 4 6 4 35046.725439999995 6 +Q9VHE4 omega-amidase 17.31 5 13 5 66409.03297 12 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 44821.5836 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 108934.17433000001 10 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 38538.479900000006 8 +Q9VHH8 Beag 6.82 4 8 4 26813.54984 7 +Q9VHI1 Hyrax 7.06 4 6 4 14609.91264 5 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 327397.5457 20 +Q9VHJ2 LD32381p 2.65 1 1 1 3339.2544 1 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 17190.5092 2 +Q9VHJ7 LD41978p 4.65 3 3 3 9591.076 1 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 760287.0419000001 43 +Q9VHM3 LD30467p 10.77 5 8 5 31117.59248 8 +Q9VHN4 GH14121p 9.77 3 5 3 9253.7097 3 +Q9VHN7 transketolase 22.36 14 33 2 709506.62196 24 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 9922.351560000001 2 +Q9VHT3 CG9617 protein 15.17 3 3 3 22175.9005 2 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 23974.5103 6 +Q9VHX2 GH08043p 9.4 4 7 4 25165.6653 5 +Q9VHX4 LD24679p 66.57 21 108 21 5250048.01218 94 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 26944.22399 6 +Q9VI09 GH14494p 49.01 6 27 6 1098682.22984 25 +Q9VI21 Dementin, isoform D 3.92 3 3 0 2813.37806 2 +Q9VI24 LD25151p 7.73 3 3 3 4421.7085 1 +Q9VI53 LD44267p 14.93 6 13 6 33736.70583 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 24266.86904 4 +Q9VI64 LD30995p 47.03 13 57 13 1296913.01045 49 +Q9VI80 Thawb 1.58 2 3 2 9158.58978 2 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 29145.80674 5 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 18487.87579 5 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 15088796.4571 265 +Q9VIF2 GM01519p 8.7 4 11 4 56945.1243 10 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 76671.2648 10 +Q9VIH1 CG9273 protein 16.67 5 12 5 22136.49305 10 +Q9VII5 GEO08323p1 25.79 4 13 4 114929.5211 9 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 5751.387 1 +Q9VIJ3 FI14214p 12.78 2 3 1 3162.91505 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 849.8078 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 3136.2554 2 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 64182.32151 16 +Q9VIL2 LD19544p 8.63 3 8 3 59193.194200000005 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 149746.11344999998 17 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 57542.35695 6 +Q9VIQ5 RH02620p 27.49 7 16 7 25002.62644 11 +Q9VIQ6 FI17342p1 14.79 3 8 3 75219.23348 8 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 1502773.56308 43 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 20372.1161 3 +Q9VIU3 FI23988p1 6.9 3 4 3 13336.160100000001 4 +Q9VIV6 GH04973p 4.56 2 2 2 339.75107 1 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 24862.0334 3 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 390.21704 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 82418.86170000001 2 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 174777.17064 12 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 332566.53916 10 +Q9VJ22 GH09876p 5.41 2 3 2 3480.24716 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 15558.937000000002 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 257713.02894 13 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 53843.221 9 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 749599.47378 39 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 60189.63747 10 +Q9VJ59 PRA1 family protein 5.31 1 1 1 309.37683 1 +Q9VJ60 GM16226p 12.15 3 7 3 42343.5873 7 +Q9VJ61 SD03870p 9.81 5 6 5 21705.59817 5 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 213492.00187 18 +Q9VJ80 LD42267p 6.89 9 15 9 48958.57225 13 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 50814.63817 12 +Q9VJA9 GH07373p 0.94 1 1 0 12872.994 1 +Q9VJC0 GEO08203p1 37.23 5 6 5 48307.9563 4 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 38865.9754 7 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 184014.49975 28 +Q9VJD4 LD24721p 33.84 12 37 12 1128029.59219 28 +Q9VJE3 LD24839p 14.6 7 7 7 32925.2005 6 +Q9VJH8 FI03416p 5.71 4 5 3 17251.57074 5 +Q9VJI5 Protein yellow 13.91 7 13 7 52573.64507 12 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 262279.6829 13 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 491405.89397 24 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 11485.48484 2 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 97915.9421 7 +Q9VJQ3 Protein yellow 22.83 9 30 8 743319.28033 29 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 41479.416900000004 4 +Q9VJU6 IP09831p 15.87 4 4 4 25538.1639 4 +Q9VJU8 GH23407p 8.48 4 9 4 32231.33817 6 +Q9VJX3 B4, isoform A 2.44 3 3 3 5167.16757 3 +Q9VJZ1 FI21342p1 8.24 5 6 5 12218.63482 5 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 2302451.74172 51 +Q9VJZ5 LD07294p 17.89 6 14 6 64074.8476 11 +Q9VJZ6 LD40224p 67.13 10 28 10 716239.82024 24 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 94481.65359999999 7 +Q9VK11 GH15921p 17.8 5 15 5 292831.2061 15 +Q9VK12 GH20621p 54.0 15 86 15 2727403.63006 69 +Q9VK18 LD36945p 10.11 5 7 5 11045.18795 6 +Q9VK19 FI07225p 7.72 2 2 2 4538.33 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 763.4093 1 +Q9VK31 LD35592p 3.65 2 2 2 3776.9091 2 +Q9VK39 FI09204p 45.28 4 21 4 155032.12442 15 +Q9VK43 LD10135p 8.24 3 3 3 1642.1736 1 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 2105.5172000000002 2 +Q9VK59 LD23647p 32.84 31 71 31 347995.2887 51 +Q9VK60 GH25425p 49.42 10 45 10 2394818.18352 37 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 858719.166 42 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 171584.89263000002 16 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 360892.1124 14 +Q9VK99 Atilla, isoform B 51.75 9 42 9 821129.16862 34 +Q9VKA1 FI02817p 15.58 3 7 3 5342.697 2 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 12351.464899999999 2 +Q9VKC8 FI03495p 11.04 7 13 7 187662.6362 11 +Q9VKD9 MIP16835p1 2.3 2 2 2 7995.3271 2 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 12577741.17548 385 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 51897.4006 8 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 44414.7159 7 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 4228.27877 2 +Q9VKI8 GH03305p 80.72 20 131 20 3612534.22855 110 +Q9VKJ4 Csl4 22.06 4 6 4 7817.3805 3 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 2174257.20569 51 +Q9VKM7 AT01533p 9.31 7 9 4 102190.20436999999 7 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 124935.51806 18 +Q9VKQ5 GEO07393p1 29.03 3 3 3 13357.0874 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 1337.86895 3 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 405816.05604 22 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 19682.578569999998 5 +Q9VKU5 LD37206p 7.02 2 3 2 2885.6472 1 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 821670.16101 37 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 20081.2872 4 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 17587.25724 5 +Q9VKW1 LD41958p 8.58 4 7 4 9944.557700000001 5 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 42942.3284 9 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 24.03 3 3 3 352.9474 1 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 7604027.16672 134 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 258067.80961999999 15 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 24800.061869999998 7 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 200449.05550000002 16 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 775205.53175 50 +Q9VL02 GH08677p 6.78 3 4 2 19616.4363 3 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 26501.723579999998 5 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 12490.6394 2 +Q9VL16 RE45833p 30.13 6 46 6 1216667.60904 40 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 5816.6987 2 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 2790.9429 1 +Q9VL57 RE10231p 3.23 2 2 0 440.25516 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 18446.722999999998 6 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 22672.326650000003 3 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 1320669.4643 43 +Q9VL70 HL08109p 78.89 30 118 30 6410947.6872 107 +Q9VL71 LD29830p 7.02 4 5 4 5919.221149999999 3 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 79796.45379999999 5 +Q9VL91 LD23102p 2.06 2 2 2 3488.3635000000004 2 +Q9VL93 GEO07195p1 13.64 2 4 2 60455.901000000005 4 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 74084.44593 7 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 1149166.92421 44 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 1693815.17723 62 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 19966.5194 5 +Q9VLI4 Raw, isoform A 2.53 3 3 0 4168.795 1 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 32760.879630000003 3 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 51818.03651 7 +Q9VLP0 IP04187p 20.32 5 7 5 36027.7053 5 +Q9VLP1 GEO08095p1 36.49 4 22 4 191229.76273000002 17 +Q9VLP2 GEO08076p1 38.78 8 25 8 266517.83547 17 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 46128.61 2 +Q9VLQ9 Sorting nexin 31.85 14 43 1 502553.91612 36 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 30031.86846 6 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 23461.1087 4 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 1466235.84142 23 +Q9VLS5 LD29542p 12.08 6 8 6 33337.756049999996 8 +Q9VLS7 LD21067p 0.89 2 3 0 3078.7955 2 +Q9VLT3 LD23292p 13.58 24 53 24 361438.37546999997 48 +Q9VLT7 IP17351p 16.35 2 5 2 175994.33899999998 3 +Q9VLU3 IP09231p 5.4 1 1 0 470.95886 1 +Q9VLV9 Proctolin 19.29 2 4 2 1568.6196 1 +Q9VLW8 LD06392p 6.75 2 2 2 16987.814 1 +Q9VLX6 HL01609p 18.95 5 9 0 47095.04126 7 +Q9VLY1 HL02931p 19.01 1 2 1 76335.41 1 +Q9VLY7 TEP1-F 4.02 7 7 7 11582.379359999999 6 +Q9VLY9 CD109 antigen 20.51 28 66 0 965573.53832 62 +Q9VM07 RE43931p 18.26 4 9 3 33374.2653 2 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 85631.0306 13 +Q9VM11 HL01515p 16.08 5 9 5 62090.861099999995 8 +Q9VM12 MIP26555p1 24.49 8 23 8 253581.4269 17 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 9956452.45783 229 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 4842622.64852 83 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 17771.1972 3 +Q9VM47 Menin 4.98 4 8 1 21616.61091 5 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 4970.658 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 40489.4397 8 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 45014.5807 3 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 301440.60349999997 10 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 42991.39726 7 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 3130120.73503 83 +Q9VMC3 LD35051p 8.64 4 4 4 19171.51408 4 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 35985.412 3 +Q9VMC7 LP11564p 6.96 4 5 1 4236.8754 3 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 42478.07268 16 +Q9VME1 FI01864p 16.46 8 16 8 108161.45258 15 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 20149.035 7 +Q9VMF0 FI04444p 3.77 2 2 2 12946.097699999998 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 88660.21353 13 +Q9VMH8 GEO07746p1 53.17 8 19 8 402466.90434 17 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 522663.91913 28 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 1212487.51783 39 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 2929340.9890699997 43 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 120528.1008 12 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 230158.99122 11 +Q9VMR9 acylphosphatase 6.93 1 1 1 844.0913 1 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 2461221.48431 54 +Q9VMT2 GEO07854p1 71.81 9 122 1 3441146.41633 101 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 669395.01826 28 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 72251.836 8 +Q9VMV5 Viking, isoform A 10.0 19 40 19 116662.7326 33 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 5944.19844 3 +Q9VMX4 AT19154p 13.15 3 7 3 117391.7356 6 +Q9VN01 GH23891p 8.61 5 10 5 27498.06179 8 +Q9VN02 GH14561p 29.6 7 15 7 90362.6161 12 +Q9VN21 LD30155p 49.91 26 129 26 2409571.37816 113 +Q9VN39 RE74585p 17.58 6 13 1 24990.83442 9 +Q9VN44 FI07923p 16.56 15 37 15 271746.80208 28 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 192451.677 11 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 136156.64457 13 +Q9VN86 AT14148p 14.19 6 10 6 33664.87827 8 +Q9VN88 LD45836p 35.98 7 17 7 84294.21449 14 +Q9VNA3 GH21273p 34.26 7 21 7 175176.4457 19 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 221109.18648 14 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 15381.0907 4 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 596.4356 1 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 56471.0928 7 +Q9VNF3 RE01652p 34.63 8 31 6 628251.7403000001 25 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 21087.734109999998 9 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 3884.1877 2 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 74650.86953 11 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 71396.132 2 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 51792.799999999996 8 +Q9VNI8 Hpr1 8.99 6 9 6 27688.62691 9 +Q9VNI9 IP18173p 7.05 1 2 1 8224.287 2 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 2006396.69334 66 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 9554.2602 2 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 32184.347710000002 9 +Q9VNW0 GEO11142p1 17.97 2 2 2 24944.862999999998 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 1178160.19432 76 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 1463562.70397 77 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 4632.8648 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 14802.22803 5 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 3083.2832 1 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 17334.88876 4 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 193001.99300000002 2 +Q9VP51 LD40450p 5.59 2 2 0 2527.2963 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 276473.31056 14 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 29735.44566 9 +Q9VP57 LD15904p 21.79 19 45 19 360450.14755 37 +Q9VP77 LD23875p 5.73 5 6 5 7173.29607 4 +Q9VP78 GH23156p 7.79 4 6 4 15180.2379 4 +Q9VP84 IP06402p 8.47 2 2 2 2763.4158 1 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 3085.6099000000004 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 690.84735 1 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 14996.2996 4 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 17918.37755 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 1754387.28056 46 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 68381.98032 10 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 5447.78154 3 +Q9VPH6 LP10922p 6.08 4 6 1 10320.75476 5 +Q9VPJ0 RE58433p 17.91 8 22 2 37154.1032 13 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 13161.958 3 +Q9VPK3 AT24407p 8.72 4 13 1 37765.18238 12 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 16032.616929999998 4 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 1629971.10937 81 +Q9VPP7 AT13539p 4.96 1 3 1 48859.504 2 +Q9VPR1 GH02075p 11.35 2 3 2 21160.04 1 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 16896.15096 4 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 59639.2072 9 +Q9VPU4 FI17537p1 5.33 2 4 2 10089.02594 3 +Q9VPU6 Galectin 5.06 2 3 2 18730.980199999998 3 +Q9VPX0 GH26159p 6.59 4 6 4 17862.06004 5 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 191310.7998 13 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 1720056.19834 63 +Q9VPY7 LD42035p 5.27 3 4 3 2610.9282 2 +Q9VPZ5 GH04232p 15.64 8 27 8 114519.10756 18 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 12025.4158 2 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 5709517.79974 114 +Q9VQ83 RE23541p 13.29 4 5 0 44578.4939 5 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 40425.8785 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1990607.47321 52 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 1599433.10983 32 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 186898.23027 6 +Q9VQE0 dynamin GTPase 20.27 14 22 14 70578.52433 17 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 6628.3358 2 +Q9VQI6 LD25952p 13.89 5 8 5 45832.70064 5 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 486440.5566 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 22727.7039 3 +Q9VQK7 LD45152p 1.2 1 1 1 436.4902 1 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 1859.3358 2 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 617363.1246 27 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 411.5507 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 921632.588 11 +Q9VQQ6 FI18122p1 19.21 10 17 0 151982.7059 16 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 2282715.12039 51 +Q9VQR5 IP10807p 2.5 1 2 1 3886.0957 1 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 44235.28986 8 +Q9VQT7 RH15675p 14.63 1 6 1 6723.0749 3 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 122806.96416 13 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 55730.19189 10 +Q9VQX3 HL05328p 6.13 2 3 2 14071.2907 3 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 1771.0565 1 +Q9VR03 AT19250p 3.98 2 2 2 4674.1646 1 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 88108.4473 8 +Q9VR30 RE58324p 11.81 5 10 5 63247.94684 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 65626.161 12 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 13150.876600000001 2 +Q9VR79 LD43683p 40.08 10 47 10 870002.49959 40 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 4664.124400000001 2 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 901880.20242 21 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 326027.56090000004 13 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 23301.2468 7 +Q9VRF7 GH09530p 10.57 3 5 0 14982.2903 4 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 75465.70625 7 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 17721.581299999998 6 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 1184507.05002 40 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 85762.43767 6 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 23617.276400000002 3 +Q9VRK9 Kinesin-like protein 4.43 3 4 2 965.46208 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 4489115.27087 126 +Q9VRL1 GEO06356p1 53.1 8 34 2 1001329.8009 25 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 20594.97856 5 +Q9VRM8 alkaline phosphatase 1.34 1 1 1 1564.0946 1 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 11297.399 1 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 901738.61669 55 +Q9VRP3 AT08565p 17.07 5 16 5 120485.46064 9 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 12329.6243 3 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 457887.90186 17 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 89681.07668 16 +Q9VRV8 Transportin-1 2.69 2 3 2 6080.3381 3 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 58593.4556 6 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 118480.2488 10 +Q9VS11 lysozyme 15.97 4 7 4 11042.0785 6 +Q9VS44 Uncharacterized protein 9.45 3 4 3 13679.658800000001 3 +Q9VS84 FI03225p 7.71 7 15 7 118115.56999 12 +Q9VSA9 CG7409 82.47 15 103 15 4230050.793 80 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 97287.33135 10 +Q9VSC5 GM09977p 50.76 17 41 17 740082.03036 37 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 76031.57466 14 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 211936.90447 16 +Q9VSH5 IP09562p 9.77 2 2 2 5811.979 1 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 18135.754500000003 3 +Q9VSI1 LD21269p 7.6 5 7 5 25370.00299 6 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 4214.496 1 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 432736.24196 21 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 739415.09024 30 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 1341888.62379 45 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 120117.06229999999 10 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 4375.07545 3 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 11637.7522 3 +Q9VSM8 TBC1 domain family member 13 2.48 1 1 1 2916.2786 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 215903.376 10 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 1468088.52135 58 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 82432.8209 7 +Q9VSR5 GM03767p 52.75 9 24 9 731451.3277 19 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 13805.11075 5 +Q9VST4 arginine kinase 4.64 2 4 2 5065.91034 3 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 2915122.1080899998 71 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 494640.7126 26 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 61581.871 4 +Q9VSW7 LD21662p 5.13 2 3 1 4410.9581 2 +Q9VSX2 IP01061p 30.5 6 17 6 278032.0972 10 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 5774551.71446 63 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 234800.67126 12 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 12692.41625 7 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 102135.33776 15 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 320799.1764 27 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 2492.12816 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 81398.55510000001 4 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 10661.241 4 +Q9VTA8 RE35371p 12.66 3 4 3 378.73285 1 +Q9VTB0 LD35289p 17.94 8 13 8 46485.83553 12 +Q9VTB3 Guanylate kinase 52.79 13 38 13 864356.35654 30 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 1035768.81784 36 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 23370.9833 5 +Q9VTC3 GH07049p 12.22 5 7 5 124791.71953999999 7 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 523.953 1 +Q9VTL0 FI19917p1 10.87 4 4 4 12412.4639 3 +Q9VTP1 IP06473p 3.53 1 2 1 3962.3204 2 +Q9VTT2 LD20590p 6.65 3 4 3 7874.80603 4 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 1153836.97496 31 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 353706.09739999997 13 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 91187.605 3 +Q9VTW1 RE15265p 7.1 3 5 0 10924.7706 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 2760.41364 2 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 1115194.75541 35 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 119806.10215 14 +Q9VU04 RE60105p 11.69 3 7 3 64088.41440000001 5 +Q9VU13 LD45603p 8.95 5 14 0 178536.6614 13 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 28735.342099999998 2 +Q9VU34 LD45758p 1.78 2 3 2 4106.845 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 3741810.53332 74 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 8167.8147 3 +Q9VU38 Adenosine kinase 24.64 6 14 0 409571.5504 14 +Q9VU45 LD27581p 14.79 4 24 4 48635.770860000004 17 +Q9VU53 Capricious, isoform A 1.85 1 2 0 3825.9107000000004 2 +Q9VU75 RH45712p 37.04 9 31 9 129310.22591000001 26 +Q9VU92 Uncharacterized protein 25.79 6 13 6 85645.98556 11 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 1943021.61758 83 +Q9VUE8 Big bang, isoform C 0.83 2 3 0 436.65988 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 39743.08834 12 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 624341.45926 32 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 5623.8062 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 49948.2866 6 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 141246.923 5 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 58809.6122 7 +Q9VUQ7 RE36966p 6.21 4 11 4 59140.0004 8 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 30708.872020000003 5 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 36359.4278 3 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 10740.97523 4 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 50590.43176 12 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 341229.3074 5 +Q9VV13 GEO08383p1 10.71 1 1 1 29585.367 1 +Q9VV31 Uncharacterized protein 19.35 2 7 2 17377.5337 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 88031.6118 13 +Q9VV40 Golgin 104 2.06 2 2 2 14612.9954 2 +Q9VV42 Fat body protein 2 79.5 24 224 0 19162011.30313 180 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 11236418.57924 199 +Q9VV47 Fat body protein 2 32.05 7 29 5 1164835.93336 25 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 460100.90493 51 +Q9VV75 AT02348p 82.73 30 207 30 14167310.76443 165 +Q9VV76 Syntaxin 8 8.62 2 3 2 15517.2222 2 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 86834.55107 10 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 96906.97989999999 12 +Q9VVB5 LD46723p 28.44 16 70 1 3734.72851 4 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 620943.23811 37 +Q9VVC8 LD23434p 8.08 5 10 5 49547.8904 7 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 163586.63111 26 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 4465112.10783 50 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 133975.13728999998 17 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 80606.4279 8 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 187141.60348 18 +Q9VVL5 FI11325p 21.52 7 10 7 90403.7746 9 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 9906989.05818 169 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 24434.9102 4 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 36246.49173 8 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 32890.52303 7 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 56930.3889 8 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 693822.54454 35 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1431828.86531 47 +Q9VVU2 GEO07453p1 29.53 6 31 5 484306.26632 30 +Q9VVV6 LD45843p 12.26 8 10 0 40354.762180000005 8 +Q9VVW7 Canopy b 12.22 3 8 3 22152.122479999998 8 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 12515.9843 4 +Q9VVY7 FI20154p1 12.22 16 28 0 113232.31431 25 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 76855.5467 6 +Q9VW00 GH28721p 6.1 2 3 2 5408.451999999999 3 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 2381.2806 2 +Q9VW17 RE58036p 29.67 5 15 0 22544.95962 11 +Q9VW19 Phenoloxidase-activating factor 2 3.43 1 2 1 1469.7992 2 +Q9VW34 FI03450p 11.65 7 12 7 128795.4887 12 +Q9VW40 LD31235p 9.3 3 4 3 15459.855899999999 3 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 8096.6479 3 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 41225.23705 6 +Q9VW57 Grasp65 7.17 4 7 4 39044.6195 4 +Q9VW58 LD33138p 14.87 3 4 3 35181.5812 3 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 581300.07917 30 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 1931791.11362 48 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 4873428.35491 108 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 25005.7689 5 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 31233.2632 3 +Q9VWD0 GH23568p 19.35 6 13 6 241916.65627 13 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 2643890.98833 81 +Q9VWD5 LD35087p 12.92 5 7 5 20760.138929999997 5 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 433682.61710000003 26 +Q9VWF0 LP01149p 34.31 9 18 9 82043.66356 14 +Q9VWG1 LD37169p 76.5 13 51 1 243517.30320000002 4 +Q9VWJ3 LD05272p 12.79 2 3 2 8982.0663 2 +Q9VWL4 GH07340p 9.39 5 11 5 44644.23627 10 +Q9VWP2 RH57257p 77.69 12 26 12 428958.39851 22 +Q9VWQ3 LD35981p 6.12 2 2 0 12028.717400000001 2 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 48723.5237 6 +Q9VWS1 Houki 9.33 2 3 2 57640.405739999995 3 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 302409.72968 33 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 34670.3886 5 +Q9VWU0 FI18411p1 2.23 1 2 1 3458.73538 2 +Q9VWV6 Transferrin 63.81 41 264 41 9768958.30666 221 +Q9VWW2 GH13094p 17.43 9 19 9 24695.17343 8 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 61797.517569999996 11 +Q9VX08 LD10434p 4.16 2 3 2 13356.7343 3 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 9925.526749999999 5 +Q9VX26 Chascon, isoform A 2.65 4 4 0 9462.21492 3 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 3897003.6275 83 +Q9VX69 FI01450p 6.57 3 29 2 166997.1888 7 +Q9VXA3 LP21163p 16.85 11 23 11 117165.67204 18 +Q9VXA9 RE04047p 8.03 2 3 2 6455.919 1 +Q9VXC1 MIP06432p1 36.87 6 12 3 162374.426 11 +Q9VXC9 trypsin 49.0 9 23 9 491740.673 22 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 37138.78577 7 +Q9VXF9 AT13091p 15.5 8 19 8 73747.88296999999 14 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 42943.27904 8 +Q9VXH4 RE16337p 51.96 3 7 3 70961.97786 6 +Q9VXH7 FI17510p1 22.59 6 21 6 407907.7319 18 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 312229.90344 22 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 2765358.9153299998 40 +Q9VXJ7 GH03748p1 11.25 12 13 12 25380.20955 10 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 124301.708 14 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 13934.2714 4 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 5645.668 1 +Q9VXM4 LD12946p 61.29 13 44 13 1025008.39626 41 +Q9VXN1 LD03728p 9.22 3 5 3 7639.4167 2 +Q9VXN3 LD07988p 17.42 8 15 8 89560.28246 13 +Q9VXP3 GH05406p 12.21 7 8 7 15871.177360000001 6 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 35929.1182 4 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 9885.980220000001 3 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 600846.85826 45 +Q9VXR9 FI03680p 10.91 4 5 4 21318.3626 5 +Q9VXV1 RH52220p 19.02 4 5 4 17905.4148 5 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 163757.21540000002 22 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 476997.97338000004 20 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 138350.8745 18 +Q9VY05 GH11762p 12.2 8 19 8 119548.3603 14 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 23129.4289 7 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 140533.8199 14 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 16545.65874 5 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 61850.7803 6 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 16552.169260000002 4 +Q9VY76 AMP deaminase 7.13 7 10 0 34971.8006 8 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 138354.51487 7 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 217790.48256 10 +Q9VY92 GEO07753p1 73.91 8 47 8 1135982.64102 39 +Q9VYA1 RE18811p 8.56 3 6 2 21208.1106 6 +Q9VYB2 LD19061p 2.83 2 2 2 3387.8176000000003 2 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 1948.2954 1 +Q9VYF0 GM09012p 14.93 4 10 4 22868.54556 8 +Q9VYG8 CG15717-PA 15.08 4 6 4 33894.5992 4 +Q9VYJ1 FI12805p 7.33 5 6 5 21744.5061 5 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 34003.95141 12 +Q9VYM0 CG2555-PA 14.21 3 6 1 6967.5360200000005 4 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 5295.2365 3 +Q9VYN1 protein kinase C 0.84 2 18 1 596252.3055199999 8 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 7503.632159999999 3 +Q9VYS2 GH09980p 7.06 6 7 6 46925.0914 6 +Q9VYT0 RE04130p 30.84 7 9 6 286499.3936 9 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 12089.70122 6 +Q9VYT3 FI23714p1 3.57 5 7 5 12152.307559999997 4 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 155903.38573 5 +Q9VYU9 RH17287p 45.02 7 14 7 126029.12304 14 +Q9VYV4 Amun, isoform A 4.91 3 5 3 15132.0261 4 +Q9VYV6 GEO09033p1 23.68 3 3 3 23701.523 3 +Q9VZ00 FI19420p1 19.19 18 25 0 81184.22048 15 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 674784.80028 21 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 237619.94068 32 +Q9VZ24 GEO11412p1 44.25 7 77 7 3903689.61915 67 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 525.4418 1 +Q9VZ34 RH72958p 2.64 2 5 2 10252.012700000001 4 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 4555.0615 1 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 139681.78538000002 15 +Q9VZ59 LP02042p 6.12 1 4 0 44316.3629 4 +Q9VZ66 SD22308p 35.37 5 12 5 62859.973399999995 9 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 16128.96047 8 +Q9VZ71 RE01453p 9.04 2 3 2 5964.0253999999995 2 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 17697.6377 5 +Q9VZE4 RE70333p 17.02 8 19 8 78098.08578 15 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 169684.749 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 6291.7978 3 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 431343.77139999997 14 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 2589697.85817 52 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 200600.1257 14 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 1949692.38354 46 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 14193.890319999999 7 +Q9VZI1 Transgelin 82.98 14 100 1 4123503.09409 78 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 33079.4911 6 +Q9VZJ2 GH27759p 16.59 7 14 7 77815.19046 11 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 14872.517 5 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 376750.01769999997 23 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 17021.5613 6 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 119985.92659999999 17 +Q9VZV2 Chitinase 7 7.7 7 9 7 30247.66933 6 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 5560.531639999999 4 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 30518.12905 6 +Q9VZX6 LD06441p 7.98 3 4 3 29762.877000000004 3 +Q9VZY0 LD45195p 17.62 5 10 5 73977.37969999999 5 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 8757.9182 2 +Q9VZZ5 GEO12033p1 28.67 4 10 4 218026.9598 7 +Q9VZZ6 CG16985 protein 32.21 4 10 4 136459.08669999999 3 +Q9W022 GEO01508p1 64.08 8 33 8 1256764.98041 30 +Q9W073 RH22148p 9.41 2 2 2 9947.996 1 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 879414.1424 16 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 372023.22352 17 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 38363.961670000004 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 31742.7871 5 +Q9W095 glycerol kinase 2.78 2 2 2 6536.1080999999995 2 +Q9W0A8 FI01658p 18.77 5 15 5 203346.74469999998 15 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 412595.5147 26 +Q9W0C3 GH11843p 61.22 12 26 12 394511.78105 19 +Q9W0D3 GH15728p 1.78 3 4 3 6472.67173 2 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 24379.176600000003 3 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 101347.5302 13 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 374232.53975 17 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 28503.9161 4 +Q9W0J9 GH07301p 41.93 10 20 9 359153.85302 17 +Q9W0K9 LD10220p 9.38 2 2 2 20246.54 1 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 15474.921129999999 4 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 124425.97522 15 +Q9W0M5 Protein DPCD 8.56 2 4 2 6870.70304 4 +Q9W0N6 LD27967p 16.52 5 9 5 22394.05384 8 +Q9W0P4 GEO05053p1 15.45 2 4 2 13517.3738 4 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 44411.36604 8 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 10096.785 1 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 55969.15993 14 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 10243.0455 3 +Q9W0U0 glycerol kinase 2.23 1 1 0 9474.36 1 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 105270.87962 13 +Q9W0X1 GH15894p 1.58 1 1 1 15197.605 1 +Q9W0X2 GEO07322p1 12.4 2 2 2 24680.1777 2 +Q9W0X3 LD24657p 8.75 3 9 1 48368.96474 8 +Q9W0Z5 LP09747p 10.07 6 23 6 53996.4088 17 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 3373899.75705 44 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 208745.1766 6 +Q9W136 Uncharacterized protein 39.13 6 15 6 198954.47024 12 +Q9W140 Regulatory protein zeste 6.4 3 5 3 3591.4408299999996 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 5161.86391 4 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 600.65594 1 +Q9W158 LD36772p 7.49 3 11 3 53387.4798 9 +Q9W199 GEO07594p1 14.84 3 3 3 6928.393 2 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 640172.11404 29 +Q9W1C8 LD24355p 16.3 6 14 6 23867.92888 10 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 51295.7824 6 +Q9W1F2 FI07217p 5.93 2 4 2 15001.24 2 +Q9W1F7 IP15825p 25.14 10 36 10 782219.85462 32 +Q9W1F8 GEO08248p1 18.05 3 10 3 88880.6265 8 +Q9W1G7 LD21576p 24.05 7 13 7 258657.863 8 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 48777.39336 7 +Q9W1H6 GH04238p 8.46 2 5 2 209113.96046 4 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 566896.84618 43 +Q9W1I8 LD03592p 30.28 8 21 8 91630.09853 15 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 20578.48188 6 +Q9W1L8 GH11818p 5.92 2 3 2 10638.38568 3 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 6157.7699 3 +Q9W1N3 Levy, isoform A 50.46 5 24 5 1079118.64242 24 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 5993.042 1 +Q9W1R0 RH49821p 6.07 3 5 3 10331.005799999999 5 +Q9W1R3 Golgin-245 14.24 21 27 21 119553.07007 22 +Q9W1V8 CG9893 protein 3.65 1 2 1 40263.394 2 +Q9W1W4 RE45066p 22.13 8 19 8 111188.91894999999 15 +Q9W1X5 GH04942p 13.03 18 41 3 256342.7846 31 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 1825852.3727199999 44 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 623100.8903 8 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 23980.5513 6 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 10218.0221 4 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 145371.00953 24 +Q9W257 RH13652p 6.99 2 7 2 170740.5956 6 +Q9W258 Babos, isoform A 27.55 6 28 6 392077.12844 23 +Q9W259 FI23916p1 14.71 5 10 5 124697.79984 7 +Q9W260 GH03113p 15.4 9 26 9 103609.04613 22 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 18862.0972 3 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 112666.36869 26 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 9861.6613 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 303804.4871 14 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 7392.64675 3 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 36281.958 2 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 50367.33665 10 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 18114.412 1 +Q9W2L6 RH02475p 28.13 18 55 18 1116105.6364 45 +Q9W2M0 LD23155p 23.8 18 32 18 136450.5643 25 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 4241513.60648 58 +Q9W2M9 FI16623p1 6.47 1 3 1 3961.12507 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 38295.93592 5 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 186780.2654 7 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 237221.647 11 +Q9W2V2 FI20035p1 3.86 3 3 3 30128.0205 2 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 11464224.28424 135 +Q9W2Y5 YLP motif-containing protein 1 1.06 2 3 1 996.7638900000001 2 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 189582.91305 18 +Q9W306 GEO08256p1 14.05 2 4 2 42075.886999999995 3 +Q9W308 GH05731p 27.17 4 9 4 112754.31826 9 +Q9W309 GEO08445p1 29.63 7 11 7 239008.7997 9 +Q9W314 GH14088p 9.57 4 9 4 42185.388979999996 9 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 52653.83114 11 +Q9W330 Phosphotransferase 24.4 11 31 3 1053834.0878 29 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 222416.632 5 +Q9W337 GH19985p 21.56 4 12 4 81072.40265 8 +Q9W350 C11.1, isoform A 2.12 3 3 3 5631.7466 3 +Q9W370 GEO12084p1 44.26 4 19 4 300375.258 15 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 39952.698249999994 6 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 26207.315160000002 9 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 611007.73893 38 +Q9W396 FI06908p 12.08 3 5 3 22754.3791 3 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 41599.2874 6 +Q9W3C3 LD10016p 17.41 8 12 8 50369.30587 9 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 23338.09563 5 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 43024.049100000004 8 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 51577.21206 7 +Q9W3H4 LD36273p 62.35 12 36 12 686362.3803 34 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 56374.6504 2 +Q9W3J6 FI06457p 12.29 4 4 4 3524.08025 2 +Q9W3K6 LD35927p 5.12 4 6 4 51825.74587 6 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 489222.84574 24 +Q9W3L4 GH20802p 12.56 6 12 6 39758.47487 9 +Q9W3M7 RNA helicase 9.1 8 19 8 47051.51465 11 +Q9W3M8 LD34211p 32.16 7 17 7 189075.62833 12 +Q9W3N1 RH59310p 7.17 2 3 2 6851.58923 3 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 73731.2866 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 482492.7169 28 +Q9W3Q0 FI07418p 18.35 4 11 3 9462.7608 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 82213.0185 5 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 50084.05957 9 +Q9W3T9 GM01152p 50.42 10 21 10 210720.36899000002 17 +Q9W3U9 CG14434-PA 36.9 6 15 0 52242.9957 12 +Q9W3V2 FI19713p1 4.82 4 5 4 21548.2104 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 2538.7773 1 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 41732.2474 6 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 1875260.22381 52 +Q9W3X8 RH42690p 13.47 5 10 5 9335.8465 5 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 172499.8113 10 +Q9W3Z4 GH18625p 2.43 1 3 1 4114.893 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 2752835.85099 48 +Q9W403 LD24968p 11.05 6 14 6 22698.51659 11 +Q9W404 GH10714p 10.34 5 10 4 21697.72969 7 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 10755.1515 2 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 506489.88358 35 +Q9W425 Rabconnectin-3A 0.7 3 3 3 13144.6947 3 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 1413198.58691 66 +Q9W461 LD23868p 10.93 5 10 5 36983.23946 9 +Q9W482 Lin-52, isoform A 19.11 3 3 3 10461.4246 3 +Q9W483 GH18971p 15.83 5 8 5 43761.9446 5 +Q9W486 LD13361p 5.65 3 4 1 11733.97173 4 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 98243.5655 10 +Q9W4A0 GH11193p 24.87 5 10 5 70953.7926 9 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 14364.114569999998 3 +Q9W4C2 lysozyme 18.42 4 5 4 60688.734300000004 5 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 41539.4733 9 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 21881.1229 4 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 436473.69064 19 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 5857.837939999999 3 +Q9W4N8 LD30122p 72.86 14 57 1 3119533.8800999997 45 +Q9W4U2 RH09070p 31.33 6 19 6 94612.20957 15 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 12058.8047 4 +Q9W4W5 RE47284p 13.77 5 10 5 105664.0308 10 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 124154.40078 27 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 61424.5269 11 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 13674.28262 7 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 7095.4079 4 +Q9W503 RH61816p 23.76 8 17 8 95813.612 14 +Q9W5B4 GH18858p 20.38 6 12 6 632535.2962 8 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 1203.06616 2 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 1644.815 1 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 19865.318020000002 8 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 32615.0706 8 +Q9W5W7 GH19483p 6.06 4 6 4 26752.7327 6 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 1010862.46494 42 +Q9W5X0 LD21953p 23.88 5 25 0 29367.794400000002 3 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 100158.341 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 64435.39937 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 2395614.80753 45 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 20559.476 3 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 166220.31829 19 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 210531.4794 17 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 2545667.86693 74 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 324249.22174 45 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 238733.86964 30 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 5223228.48292 121 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 10994.62306 5 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 29354.4467 6 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 2654161.33445 57 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 37953.8657 5 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 495309.07805 38 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 5291432.73886 73 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 2904.8545 2 +R9PY51 Uncharacterized protein 34.95 5 42 5 4824858.4727 24 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 3815126.35257 116 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 90520.9475 10 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 93769.34820000001 5 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 13301.05 1 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 37997.85407 7 +X2JB48 ADP/ATP translocase 66.22 21 145 1 4936923.93977 116 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 101537.90608 25 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 21867.62 6 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 9890113.37057 111 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 16244.896499999999 3 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 7441.818800000001 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 3209.79197 2 +P10674 Fasciclin-1 43.71 29 142 1 1803.8511 1 +Q08605 Transcription activator GAGA 6.37 3 3 0 9681.3663 2 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 7980.8125 2 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 8185.1983 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.72 3 3 3 785.16205 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 5459.856 1 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 5282.994299999999 3 +Q9VLL3 A-kinase anchor protein 200 22.18 13 38 1 2593.067 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 4435.39066 2 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 11653.5142 3 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 18343.636 2 +Q9W568 Protein halfway 5.56 3 4 0 1994.97433 3 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 9.68 2 2 1 2761.0125 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 7199.04766 2 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.08 3 5 0 691.312 1 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 27947.3944 3 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 1604.2741999999998 2 +A0A0B4KFE3 Toutatis, isoform F 0.29 1 1 0 654.2319 1 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 6564.6188 3 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 361342.75 1 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 11773.964 1 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 28011.475 3 +A1Z7M0 Space blanket 5.71 2 4 2 14689.421600000001 4 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 27901.6527 4 +B5RJS0 IP20241p 2.69 3 3 0 2221.292 1 +E1JJM0 FI20063p1 14.83 10 14 0 79249.6362 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 2462.27757 3 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 8509.76607 4 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 13737.170999999998 2 +Q0E8R1 FI07211p 29.47 10 55 0 5913.3506 2 +Q5U0V7 phosphoinositide 5-phosphatase 2.13 3 3 3 535.87134 1 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 93827.64191 17 +Q7JWH6 RE61424p 6.99 2 3 2 7361.8774 1 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 3341.2038700000003 3 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 78127.3836 5 +Q7K1W4 Epoxide hydrolase 4.06 2 2 2 696.4057 1 +Q7KVW1 RE73736p 4.94 3 4 0 18681.25 4 +Q7PLV6 FI02158p 1.7 2 2 2 2177.7244 1 +Q8I062 GH23305p 80.95 19 194 1 16959.3632 2 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 5425.7126 2 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 2.93 1 1 0 497.89734 1 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 3739.7867 2 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 8429.2511 3 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 4505.11167 2 +Q9VG79 Xaa-Pro dipeptidase 4.89 3 3 3 483.8208 1 +Q9VHX1 LD44032p 1.41 1 1 1 858.16437 1 +Q9VKC1 IP16805p 2.72 1 1 1 7584.9272 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 3759.4616 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 5677.0828 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 11677.14834 2 +Q9VTY1 LD40136p 5.69 2 3 2 1531.92501 3 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 2802.18283 2 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 2642.36744 2 +Q9W2N5 GH10162p 3.47 2 4 2 5564.0381099999995 4 +Q9W362 La-related protein 7 1.51 1 2 1 11930.041000000001 2 +Q9W525 LD08195p 3.8 2 4 1 3489.2684 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 13672.347740000001 4 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 1734.4905 1 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 7655.2466 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 12193.331 2 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 1215.00955 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 2764.96 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 1689.4332 1 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 4737.516 1 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 57087.537899999996 6 +E1JJ83 Os-C, isoform B 7.19 1 4 0 2030.34643 3 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 44505.76414 17 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 6193.203750000001 2 +O46231 FI18705p1 66.21 20 67 1 14289.276600000001 2 +Q6IDE2 GH07226p 2.0 1 1 1 7875.365 1 +Q7JVH0 Splicing factor YJU2 2.7 2 2 2 828.6775 1 +Q7JVK1 Large ribosomal subunit protein uL18m 6.45 1 1 1 456.88586 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 69007.182 2 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 2720.0447 2 +Q8IQ80 GH06117p 1.41 1 3 0 1627.1147 1 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 8678.49775 3 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 7880.1812 3 +Q9W5C1 RE02292p 1.13 1 1 1 2656.3738 1 +X2J8M7 Supervillin, isoform AD 4.69 15 20 0 916.33685 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 9702.9898 3 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 3009.9053 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 13443.475999999999 2 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 22101.44516 5 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 19485.95012 3 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 5051450.41209 123 +E1JH70 Kank, isoform E 1.18 1 1 0 1523.1527 1 +M9MRD4 Muscle-specific protein 300 kDa, isoform B 3.84 34 44 0 432.9134 1 +M9NFP1 Jim, isoform E 1.94 2 2 0 6684.57884 2 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 2653.1777 1 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 7055.668 1 +Q8IQH6 Nebulosa, isoform A 2.12 1 1 0 469.35562 1 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 3575.78707 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 60198.04575 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 1770.196 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 63218.3517 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 317098.5 2 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 9113.847600000001 3 +Q9VWE8 Actin-related protein 10, isoform A 2.65 1 1 1 430.10477 1 +Q9VZF0 LD44732p 3.61 1 1 1 2234.1895 1 +Q9W249 IP21806p 4.27 2 3 2 3614.7944 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 9503.08458 5 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 37862.4303 3 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 1882.3108 1 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 705.63666 1 +A0A6F7R657 Widerborst, isoform H 13.26 9 30 1 422.44916 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 89995.04400000001 3 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 12494.565 1 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 2773.4534 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 2447.4075 1 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 1068.4698 1 +Q8IPL4 Lethal (2) 05714, isoform B 3.32 1 1 0 905.65204 1 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 848.3322 1 +Q9VV37 GEO13385p1 10.1 1 7 1 187669.67374 4 +Q9VVX6 BET1 homolog 6.84 1 1 1 12820.373 1 +Q9W152 RH33060p 5.63 1 2 1 1154.6616199999999 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 4014.5413 1 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 4833.07307 2 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 4303.929 1 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 2692.8241 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 1 0 490.93353 1 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 1570.6714 1 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 23870.15 2 +Q9VB09 IP04131p 12.1 2 3 2 9176.96393 3 +Q9VHN8 LD37279p 1.54 1 1 1 11952.353 1 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 12966.002 1 +Q9W5E7 LP07417p 11.4 1 1 1 2323.7756 1 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 1641.984 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 92961.99829999999 7 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 4688.8804 2 +A1ZAU6 FI05912p 3.24 2 2 1 670.3676 1 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 18148.7772 2 +Q7K3Z8 GH01208p 2.35 1 2 1 5108.9915 2 +Q9VAN8 FI15955p1 6.08 2 2 2 5051.4873 1 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 9510.3986 2 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 19035.227 2 +Q9VV55 GH08429p 3.98 2 3 2 5626.5800500000005 3 +Q9W542 LD07342p 1.12 1 1 1 582.88763 1 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 3559.3718799999997 2 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 26584.877 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 12.08 7 16 1 2478.1039499999997 2 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 7600.3192 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 14054.5896 3 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 25271.276830000003 5 +A1Z840 Cdc2-related kinase 4.39 2 2 2 1136.39469 2 +Q9VXD7 GH04692p 5.61 2 3 2 1738.624 1 +Q9W3S4 LD46272p 5.26 2 3 2 3201.8116200000004 3 +A8JQX3 Nocturnin 3.58 2 2 2 2208.3145 2 +A8JNM1 Formin 3, isoform B 1.69 3 3 0 1753.0366 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 1605.16723 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 13814.61248 6 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 2865.9268 1 +O76857 BCL7-like 13.64 2 3 2 2320.9465299999997 2 +Q7JY89 RE35124p 25.0 2 5 2 4914.92649 4 +Q8IML5 V-type proton ATPase subunit a 8.28 8 17 0 828.2798 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 5338.530280000001 3 +A8JUP7 Serine protease Hayan 2.67 2 3 2 22289.321 3 +P07664 Serendipity locus protein delta 4.16 2 3 2 16115.949 3 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 8093.07504 3 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 3176.2393 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 48070.4544 7 +Q8IQU7 825-Oak 17.05 2 3 0 13532.144 2 +Q9VGM4 LD28119p 3.82 1 1 1 797.98785 1 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 101579.97937 28 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 4413.50585 2 +Q9V3J8 Protein will die slowly 3.88 1 2 0 6709.119 1 +Q7K0D3 CG12909 protein 6.76 2 3 2 11282.0835 3 +Q9VF73 FI17904p1 2.24 2 2 0 597.5513 1 +Q9VSK1 GH09510p 1.06 1 1 1 5694.7856 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 24082.148 1 +Q9V6Q2 Histone H3-like centromeric protein cid 8.89 2 3 2 795.0051 1 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 7032.2598 3 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 4700.0044 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 78970.59885 15 +Q29R09 LD28546p 3.02 1 1 1 653.12415 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 11852.925299999999 2 +Q8SXC0 GH10306p 2.86 1 2 1 7861.6393 2 +Q9VQT5 FI01556p 13.92 1 4 1 1162.71043 2 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 9135.3699 2 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 31301.6069 3 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 27350.998 1 +Q9VV29 GEO12576p1 9.68 1 1 0 458.9776 1 +P45884 Attacin-A 5.36 1 1 0 4693.8896 1 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 2188.7994 2 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 14162.686000000002 3 +Q9VV27 MIP11526p 7.63 1 1 1 13070.433 1 +O76324 Discs overgrown protein kinase 7.95 2 3 0 2607.60786 2 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 3324.153 1 +O18680 5-aminolevulinate synthase 3.34 2 2 2 2455.9016 1 +Q29QE1 GH15984p 0.57 1 2 0 7970.3772 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 2853.015 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 10818.6931 2 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 5307.429 1 +Q9VEQ0 Xylulose kinase 1.99 1 2 1 1936.7977 2 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 210599.8859 2 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 16669.0563 2 +Q9VKJ1 MPN domain-containing protein CG4751 0.71 1 1 1 313.96423 1 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 8333.2377 3 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 17883.8272 2 +E1JGY7 Hulk, isoform G 10.66 12 17 1 1315.84584 2 +Q2PDU0 GEO11169p1 9.84 1 2 1 12963.211800000001 2 +Q9VF46 GH25158p 7.34 2 7 2 30286.4133 7 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 31464.72 2 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 15301.2675 2 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 5418.01086 2 +Q7KST5 L-serine deaminase 5.06 2 2 0 527.1361 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.32 1 1 1 380.3045 1 +A8JNU1 adenylate cyclase 1.02 1 3 0 3933.5163599999996 3 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 771.3359 1 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 11278.5954 2 +Q7JW46 RE25483p 9.0 1 1 0 26439.502 1 +Q7K010 Tetraspanin 8.64 2 4 2 9779.7878 4 +Q9VUR4 FI11905p 19.75 6 14 1 8569.684 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 2466.7837 1 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 4231.864100000001 2 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 3457.2763999999997 3 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 25259.3066 3 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 4362.6815 2 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 2619.6584 1 +A8JNV2 Uncharacterized protein 10.71 1 3 1 12273.1527 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 3071.8306 1 +Q9VRX7 LD29573p 1.32 1 1 1 3509.261 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 18263.8875 2 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 7171.3745 2 +O46099 EG:8D8.2 protein 0.63 1 1 1 871.1194 1 +Q7JZZ3 RE03883p 6.99 2 3 2 20738.43507 3 +Q8SWU4 RE25571p 17.08 5 12 1 6838.71 3 +Q8SWX4 Aminopeptidase 2.39 2 2 2 2205.4795 1 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 27816.495499999997 2 +O16043 Anon1A4 9.84 2 3 2 4841.909100000001 3 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 4743.6387 1 +Q8SXW3 GV1, isoform B 13.33 2 5 0 32830.27393 5 +Q8IRN0 FI06485p 3.21 1 2 1 5133.3043 2 +Q9VHS6 Copper transport protein 6.32 2 3 2 1393.41784 2 +D8FT19 MIP22288p 4.05 2 3 0 11284.7792 3 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 6677.7316 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 4478.6577 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 555.2308 1 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 3.23 1 2 1 1694.1151 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 3245.2158 1 +Q9VT15 GH14734p 8.33 2 4 2 3993.9209 2 +A1A750 GEO11067p1 6.93 1 1 1 9166.88 1 +Q9VF83 LD33178p 4.33 2 4 2 10378.2899 4 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 39574.843 3 +Q9W590 Large subunit GTPase 1 homolog 1.49 1 1 0 1664.6869 1 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 2571.8618 1 +Q9VWA7 Golden goal 0.79 1 3 1 15922.811 1 +M9PCK0 Decima, isoform D 9.87 2 3 0 14646.2876 3 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 27595.334499999997 2 +Q9VPA9 LD24894p 1.45 1 2 1 5996.4169 2 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 12702.635 2 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 754.67676 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 8607.2013 2 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 11693.2917 3 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 2378.3123 1 +Q7KV26 Kinase 1.45 1 1 0 2407.8909 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 4660.6733 1 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 22465.61 1 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 551.9552 1 +Q7K4Y8 GH22690p 3.14 2 2 2 1338.94769 2 +Q9VCQ7 LD40758p 2.61 2 3 2 6010.88792 2 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 5880.729 2 +Q9VDL4 LP04613p 2.72 1 3 1 5034.12654 3 +Q9VS55 CTCF 2.2 2 3 2 2300.8684 1 +Q9W1Q4 Uncharacterized protein, isoform D 16.57 4 24 1 423.35428 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 10070.70253 4 +Q7K4X4 GH24095p 2.0 1 1 1 880.82245 1 +Q9VJ06 LD05576p 4.55 1 1 1 746.49536 1 +Q9VGE8 Tachykinins 2.42 1 2 0 14810.408 1 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 803.26337 1 +Q29QQ9 Ribosomal RNA-processing protein 42 3.38 1 1 1 1390.1376 1 +Q9VR90 Syntaxin 16 3.12 1 1 1 471.3036 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 2 1 1675.86353 2 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 13446.08498 3 +Q7YU81 Protein charlatan 0.66 1 2 0 7483.6059000000005 2 +Q9VHV3 FI02011p 1.5 1 1 1 5747.3135 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 2254.0073 1 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 3969.0548599999997 3 +Q7K8Y3 IP16419p 17.86 7 17 0 47352.00286 11 +Q8STG9 DSec61alpha 4.2 2 3 2 2341.9082 2 +Q8IGV3 RE23632p 6.34 2 2 2 517.6155 1 +P22812 Protein Tube 3.9 2 2 2 2713.39545 2 +Q9VJ45 UDP-glucuronosyltransferase 3.48 2 2 2 371.04208 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 1609.8583 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 18824.803 1 +Q9VZX8 AT02196p 2.89 1 1 1 845.0171 1 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 4821.0622 2 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 7281.7153 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 10623.4843 2 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 7436.511 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 2217.6123 2 +Q9W3F7 Mitoguardin 4.19 2 3 2 996.85513 2 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 4262.6626 1 +Q9W4F9 IP01388p 3.65 2 3 0 3127.654 1 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 3551.4087 1 +Q7KMJ6 RNA-binding protein spenito 1.13 1 1 1 993.5372 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 996.78385 2 +A1ZAX6 FI02012p 1.2 1 1 0 584.6437 1 +F0JAQ9 MIP27169p 5.85 2 3 0 581.1005 1 +P18289 Transcription factor Jra 3.11 1 1 0 8347.574 1 +Q9VMX1 KIF-binding protein 2.83 2 2 2 9545.079 1 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 8232.4223 3 +O18405 Surfeit locus protein 4 homolog 7.04 2 2 2 754.56146 1 +Q9VR55 LD29159p 8.71 1 3 1 6987.694799999999 2 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 2079.1638 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 4228.953 1 +Q9BLX1 PDGF- and VEGF-related factor 1, isoform B 7.64 2 2 0 2119.8914 2 +P54194 General odorant-binding protein 84a 4.57 1 1 1 562.2341 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 558.5684 1 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 17041.348149999998 6 +Q8IR92 Uncharacterized protein, isoform A 8.58 7 12 0 809.389 1 +Q7KVT8 Orion, isoform B 3.1 2 2 0 2623.3381 1 +Q9VV26 GEO12049p1 6.84 1 4 1 39496.8318 4 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 422.63553 1 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 538.5439 1 +A1Z971 Uncharacterized protein, isoform A 1.0 1 1 1 767.99805 1 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 18717.7272 4 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 4580.6255 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 3529.6265 1 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 3536.5596 3 +Q9VH09 Glycine cleavage system P protein 0.91 1 2 1 462.89645 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 7840.318 1 +A1ZAG3 Protein G12 8.33 1 2 1 3068.0981 1 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 8813.287 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 14466.0983 2 +Q7K1R6 LD46221p 7.98 2 3 2 1398.1412 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 40507.4876 5 +Q6IJE8 HDC15077 17.04 2 5 2 62481.0749 4 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 3 0 852.2857 2 +Q9VVI0 SD09427p 1.81 1 1 1 3656.4246 1 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 6630.81314 2 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 16753.6576 2 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 5970.846 1 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 907.75977 1 +Q9W494 Crossveinless 8.17 2 4 2 13273.0644 2 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 4272.9688 1 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 9982.8857 3 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 23211.477899999998 5 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 65.12 25 150 0 3815.4075999999995 2 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 2646.4187 1 +Q95NH6 Attacin-C 6.64 2 2 2 1984.5328 1 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 33656.133 1 +Q8MRQ1 GH06222p 1.49 1 1 0 1485.3264 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 1749.3864 1 +Q9VPR6 Kinase 2.59 1 1 1 2452.5518 1 +Q9VF80 Cysteine protease 2.69 2 2 2 4086.636 1 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 1753.88 1 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 9949.63726 3 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 14223.2313 3 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 1373.95215 2 +Q9W547 Large ribosomal subunit protein uL16m 3.29 1 1 1 393.26993 1 +E1JJS1 glutathione transferase 2.61 1 1 0 887.21985 1 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 3049.8554999999997 2 +Q9VAM2 Aminopeptidase 2.71 2 2 2 642.86615 1 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 594.4445 1 +Q9VC27 Nicastrin 1.15 1 1 0 9109.8 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 923.3029 1 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 16314.747 1 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 7457.6287999999995 3 +E1JIS4 Uncharacterized protein 13.33 2 2 2 1063.1815000000001 2 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 8932.979 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 2751.04984 2 +A1ZAI5 Putative fatty acyl-CoA reductase CG5065 4.16 2 2 0 878.60046 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 5421.0814 2 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 5920.863 1 +Q7JX82 GH21964p 6.85 2 3 2 780.39435 1 +Q7K490 SD03973p 4.07 2 2 2 2198.699 1 +Q7YTZ0 GH09436p 2.16 1 1 0 796.23425 1 +A0A0B4LG67 Uncharacterized protein, isoform E 4.2 2 3 0 374.06604 1 +O76876 Protein sex-lethal 3.71 2 3 0 13037.4871 3 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 90571.89 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 7111.7455 2 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 15384.92 1 +Q02936 Protein hedgehog 2.34 1 1 1 4202.2617 1 +Q6NN09 ATPase protein 9 5.07 1 11 1 224245.49056 10 +O76874 SD17974p 1.93 2 3 2 2047.8501 2 +Q9VEB2 LD28404p 8.58 2 2 2 22257.18 1 +A0A9F2H0X3 Sidestep II, isoform C 0.75 1 1 0 953.8367 1 +Q9VGL2 GM08392p 2.65 1 1 1 5717.9644 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.2 1 1 1 1540.3846 1 +Q9VB59 Filamin-A 8.86 2 2 2 678.12805 1 +P41964 Drosomycin 31.43 2 2 0 12609.5071 2 +Q9VAX9 MIP05919p 7.94 2 2 2 27021.678 1 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 1697.7003 1 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 562.14825 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 1929.2798 1 +Q58CJ5 GH01093p 2.34 2 2 0 9134.055 1 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 39189.797999999995 3 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 8720.1761 3 +Q9VK20 LD18447p 4.59 2 3 2 5035.1069 2 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 33585.0974 2 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 2229.5466 1 +Q9VX38 CG8326-PA 6.33 2 2 2 32425.34725 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 2469.9087 1 +Q0E985 RH74701p 13.33 1 1 1 5492.456 1 +Q9VCC2 RE50040p 4.86 2 2 2 12824.4522 2 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 725.4759 1 +P04657 Cytochrome c-1 17.14 2 11 0 14924.819 2 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 3091.762 1 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 5878.214450000001 3 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 13909.491569999998 2 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 3701.1453 1 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 4868.8243999999995 2 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 3061.456 1 +Q4U2G8 FXNA-like protease 1.8 2 3 0 3721.7063000000003 2 +Q9W123 Protein painting of fourth 3.64 2 3 0 773.58618 2 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 7100.5602 2 +Q9VGZ2 FI06805p 3.86 1 2 1 15126.4079 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 4061.9961999999996 2 +E1JHX0 MIP29328p 3.76 1 1 1 5411.174 1 +Q9V451 Mst85C, isoform A 4.96 1 2 1 5591.485900000001 2 +Q9VUX2 E3 ubiquitin-protein ligase mind-bomb 0.98 1 1 1 345.9294 1 +D6W4V3 MIP19557p 4.74 1 2 0 2257.0016 2 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 2875.0044 1 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 8559.0814 2 +Q9V9R3 adenylate cyclase 0.6 1 1 1 3273.9543 1 +Q9VX35 LD36501p 5.06 2 2 0 1355.09536 2 +Q9VUE5 LD17962p 1.45 2 3 1 10637.905999999999 3 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 637.6326 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 10078.7865 3 +Q7KJ73 Tetraspanin 3.95 1 1 1 767.9833 1 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 9079.97105 2 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 2329.0212 1 +Q8IRK0 GH04558p 1.52 1 1 1 15525.037 1 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 2184.6816 1 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 3726.9924 1 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 770.339 1 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 13779.287 1 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 16656.0285 2 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 1524.3611 1 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 3652.6333 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 2375.0825 1 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 2813.3499 1 +Q9W1H3 FI21285p1 3.25 1 1 1 2315.458 1 +Q9VV21 GEO07736p1 16.26 1 1 1 38570.51 1 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 1284.0479 1 +Q6II41 HDC19846 30.3 1 1 1 4312.0386 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 627.8205 1 +Q9W2F6 RE36793p 7.09 1 1 1 7928.566 1 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 329.72888 1 +Q9VPW8 Protein pinocchio 4.42 1 1 1 844.34406 1 +Q9VBZ9 Beta-1,4-galactosyltransferase 7 3.73 1 1 1 403.7014 1 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 2969.5033999999996 2 +Q9VDM7 Trimethyllysine dioxygenase, mitochondrial 2.2 1 1 1 354.77628 1 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 85420.42910000001 10 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 6831.707 1 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 2126.8983 3 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 9833.9948 2 +A8DYV9 GEO02589p1 10.53 1 2 1 13904.841799999998 2 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 1919.4681 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 12761.134 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 3469.9961700000003 2 +Q7K1H9 GH07575p 3.69 1 3 1 22678.2768 3 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 7805.57 2 +Q7JQN4 RNA helicase 1.66 1 1 1 1663.9066 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 962.68665 1 +B7Z0J4 COX assembly mitochondrial protein 13.75 1 1 1 796.1659 1 +Q9VEA6 Protein AAR2 homolog 3.17 1 1 1 946.8448 1 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 11836.5481 2 +Q9VGJ7 FI23918p1 1.01 1 1 1 2002.5189 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 4851.96937 3 +Q24306 Death-associated inhibitor of apoptosis 1 3.2 1 2 0 438.45956 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 12877.961 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 65020.07 2 +Q9VMM3 RE17389p 2.61 1 1 1 735.81854 1 +Q9W551 GEO02601p1 7.55 1 1 1 2989.162 1 +A1A753 IP17594p 10.11 1 1 1 7598.6147 1 +Q9VTG6 Ubiquitin carboxyl-terminal hydrolase MINDY 2.46 1 1 1 438.6455 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 6009.2373 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 13952.451799999999 2 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 2348.8442 2 +Q9W0E2 Protein phosphatase 3.74 1 2 1 425.37494 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 1599.9946 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 14633.6775 3 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 1640.5376 1 +Q9BMG9 Beaten path IIa 3.94 2 4 1 9152.4532 2 +Q95RU0 Protein cueball 1.55 1 1 1 4820.006 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 2352.0967 1 +Q7JY99 glycerol kinase 1.34 1 1 1 1002.0828 1 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 80273.2679 2 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 2333.0835 1 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 2616.3386 1 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 1001.88635 2 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 117841.1069 2 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 2809.585 1 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 8985.562300000001 2 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 3277.1125 1 +Q9VZR5 RE46159p 4.02 1 1 1 2443.174 1 +Q9VE49 LP06937p 1.3 1 1 1 2448.9343 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 886.85736 1 +Q9VQU0 BPTI/Kunitz inhibitor domain-containing protein 8.53 1 1 1 880.6138 1 +Q8T092 LD21421p 2.45 1 2 1 1455.90381 2 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 2734.3668 2 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 2828.863 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 1 562.7741 1 +Q7K4G8 LD40944p 1.7 1 1 1 1703.6879 1 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 5395.2734 1 +Q9VBA5 GM18993p 2.15 1 1 1 2152.2158 1 +Q9VKE7 GH09228p1 10.39 1 2 1 481.96414 1 +Q7KA66 Serpin 43Aa 2.56 1 2 1 6842.1215 2 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 4525.1603 2 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 6217.038 1 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 935.4865 1 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 4008.92 1 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 17285.928 1 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 1664.5682 1 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 4859.5305 2 +Q9VJM4 Beaten path Ic 2.25 1 1 1 3450.7166 1 +Q6NMT8 AT01712p 1.8 1 1 1 9781.067 1 +M9PHP7 Faulty attraction, isoform F 0.84 1 1 1 1465.7087 1 +Q9VWM9 Diedel 3, isoform A 9.92 1 1 1 344.4645 1 +Q9VX17 LD36024p 3.1 1 1 1 1644.4132 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 1827.8204 1 +A1ZB29 Thymidylate kinase 5.21 1 1 1 671.99854 1 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 8400.493 1 +P36192 Defensin 8.7 1 3 1 34790.92 3 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 1635.1841 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 6021.309499999999 2 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 4568.5122 2 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 161588.91 2 +Q9W440 Protein THEM6 5.7 1 1 0 351.11008 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 230825.038 3 +Q5BIL9 SD21168p 1.63 1 2 0 8278.5708 2 +A1Z6H0 Kune-kune 2.65 1 4 1 18339.998050000002 3 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 4158.7578699999995 3 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 4902.067 1 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 2482.8076 1 +Q9VG84 DNA ligase 1.12 1 1 1 451.1937 1 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 4517.708 1 +Q9VHJ4 GH04846p 2.25 1 1 1 2967.7854 1 +Q9W226 GEO07239p1 5.88 1 2 1 9778.3151 2 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 2221.9431999999997 2 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 1756.3767 1 +Q9I7U1 LD36721p 5.29 1 1 0 9031.202 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 2826.653 1 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 135463.329 2 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 17958.9345 2 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 595.2841 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 860.60516 1 +Q9V412 STING ER exit protein 4.45 1 1 0 549.4237 1 +Q8MRQ2 GH05923p 2.74 1 1 0 6563.017 1 +Q8SY53 GH11935p 2.73 1 2 1 3420.81126 2 +Q7JVN6 GH17672p 2.24 1 2 1 2423.3161 2 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 894.93384 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 5530.759 1 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 2162.97667 2 +Q9VGW5 GEO08194p1 5.8 1 1 1 1627.4769 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 1634.7897 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 609.05273 1 +Q9VJV8 DNA polymerase subunit gamma-2, mitochondrial 2.77 1 1 1 724.67206 1 +A0A0B4LHK8 Uncharacterized protein, isoform D 2.93 1 2 0 387.6108 1 +O77237 Protein pellino 1.65 1 1 0 2126.7642 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 12508.120200000001 2 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 1723.7172 1 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 10176.2847 2 +Q9VGG0 LD47774p 1.67 1 1 1 2495.8105 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 779.60803 1 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 37360.14 1 +Q8SWR2 Bicaudal D-related protein homolog 1.94 1 1 1 780.9768 1 +Q9W1H1 GH17155p 3.28 1 1 1 1607.1865 1 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 15216.131 1 +Q9VKX8 Defective proboscis extension response 19, isoform A 2.86 1 1 1 370.18057 1 +Q4V3U8 IP10038p 2.76 1 1 1 1737.4066 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 25504.371 2 +Q9VB21 Uncharacterized protein 0.6 1 1 1 860.46954 1 +Q4V6L7 IP04672p 6.72 1 1 1 699.00946 1 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 2131.7808 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 1867.9441 1 +A1A6X2 IP16893p 12.07 1 1 1 2053.8716 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 2353.5771 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 6850.200699999999 2 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 606.56256 1 +Q9VJ16 GH26014p 2.96 1 1 1 793.0014 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 2 0 960.92535 1 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 19382.889 1 +Q9V4I1 Cytochrome P450 9b2 2.18 1 1 1 419.19794 1 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 6999.3352 2 +Q9VX71 Uncharacterized protein 5.2 1 2 1 9133.98945 2 +Q6IKC0 HDC12925 14.29 1 1 1 1723.775 1 +Q8IQ51 trypsin 3.05 1 1 1 6208.1626 1 +Q9VHS0 FI07206p 2.49 1 1 1 466.66504 1 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 845.41626 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 4823.907 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 2 1 447.9015 1 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 1589.31861 2 +Q9W081 AT01075p 2.34 1 1 1 625.0925 1 +Q8SXX2 Angiotensin-converting enzyme 1.07 1 1 1 782.38245 1 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 1515.4309 1 +Q9W328 Protein LST8 homolog 2.56 1 2 1 3511.4035400000002 2 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 2373.05712 2 +Q6NR46 Serine palmitoyltransferase 1 1.5 1 1 1 453.35565 1 +Q9VD92 Protein archease-like 5.77 1 1 1 2539.7751 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 348.8071 1 +A0A6H2EJZ8 Headbutt, isoform E 1.1 1 1 0 786.963 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 31055.5273 3 +Q9VDB8 RH37844p 8.42 1 1 1 5403.221 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 40688.926 2 +Q8SZB7 RE07960p 3.12 1 2 1 19825.970500000003 2 +Q9VFX8 FI14740p 2.51 1 1 1 993.76117 1 +E1JH94 GEO02631p1 7.03 1 1 1 2021.5773 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 1615.374 1 +Q7JWF7 RH26557p 5.11 1 1 1 7454.1895 1 +Q9W2L2 LD27118p 0.67 1 1 1 1776.3074 1 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 38497.754 1 +Q9VFE6 RRP15-like protein 3.26 1 1 1 738.5667 1 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 716.9608 1 +Q9VJU2 Nimrod C3 3.12 1 2 1 9353.5452 2 +Q9W3Q2 SD08447p 1.26 1 1 1 4546.935 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 374.9032 1 +Q9VAQ3 GH18608p 2.19 1 2 1 2317.1904 1 +A1Z979 Salivary secreted peptide 6.25 1 2 0 8969.848639999998 2 +Q9VYC9 FI16963p1 4.12 1 1 1 681.6569 1 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 115284.2034 13 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 13351.94819 6 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 55898.65 12 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 10026.3027 6 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 19397.70846 4 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F2_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F2_TMTb.txt new file mode 100644 index 0000000..e78a459 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F2_TMTb.txt @@ -0,0 +1,3833 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 128C, Sample, n/a, Earth_F2 Abundances Count: F5: 128C, Sample, n/a, Earth_F2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 58252.629 5 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 53916.7492 7 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 2762132.6953 58 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 6004.0425 2 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 183389.2817 9 +A0A1F4 Protein eyes shut 12.13 24 45 0 791841.21155 38 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 5171.4927 1 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 229375.64479000002 16 +A1Z713 Intermembrane lipid transfer protein Vps13 0.39 1 1 1 680.5023 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 12718.4413 2 +A1Z877 Nidogen 18.37 23 35 23 730134.70975 33 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 46816.4481 3 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 52371.405 2 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 608691.72819 48 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 225763.3893 8 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 98687.9734 6 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 118547.3157 8 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 141719.11616 19 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 43129.563 3 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 9467.659 2 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 71296.336 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 6183.222 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 5591.151 1 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 13691.358 1 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 331295.6809 9 +A8DYP0 Protein Obscurin 1.38 6 8 6 76718.12523 7 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 511220.91349999997 12 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 3036645.1755 97 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 273159.57417 16 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 1382441.08695 39 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 1001197.78852 23 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 105630.747 3 +C0HL66 Histone H3.3A 52.21 6 31 0 25271.788 2 +C0HLZ9 Baramicin A1 12.45 3 4 0 101308.64600000001 4 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 500478.702 25 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 196591.8831 10 +M9NDE3 Protein bark beetle 2.08 7 7 7 61610.557 7 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 5920165.3038 68 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 81777.4506 8 +O01367 Protein held out wings 10.37 3 4 0 30113.1433 3 +O01382 Caspase drICE 12.68 4 4 4 11553.414299999999 2 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 299943.234 11 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 6947388.72321 96 +O02194 Presenilin homolog 5.73 3 3 0 14069.7962 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 209790.2605 9 +O02649 Heat shock protein 60A 65.1 34 143 23 8801051.3069 130 +O15943 Neural-cadherin 14.01 44 66 2 1343663.8221 65 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 99126.54669999999 9 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 18162.20295 4 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 49296.804000000004 5 +O18333 Ras-related protein Rab-2 24.41 6 11 6 264278.6806 11 +O18334 Ras-related protein Rab6 33.65 8 12 0 100859.42897000001 6 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 741329.4253 16 +O18388 Importin subunit beta 2.26 2 2 0 9287.9751 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 7655834.22245 116 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 732907.2445 26 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 377591.579 12 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 17645.4553 2 +O44342 Protein windbeutel 28.79 7 9 0 129812.0522 9 +O44386 Integrin alpha-PS3 6.1 8 8 8 138531.7137 8 +O46037 Vinculin 55.88 45 103 0 3277206.0165 92 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 32112.501399999997 4 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 265232.7934 10 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 95584.513 4 +O46339 Homeobox protein homothorax 4.72 2 2 2 3608.9155 1 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 421704.2955 11 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 19968.1053 3 +O61307 Teneurin-m 0.92 2 2 0 17973.5632 2 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 201964.4205 10 +O61491 Flotillin-1 45.77 19 45 19 1931454.5044 45 +O61722 PRL-1 phosphatase 55.11 7 19 7 869421.6867000001 16 +O62619 Pyruvate kinase 57.6 24 73 24 4450383.02042 63 +O62621 Coatomer subunit beta' 2.84 3 3 3 15984.654999999999 3 +O76206 Putative riboflavin kinase 55.56 6 17 0 598345.27091 14 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 286625.4418 6 +O76742 Ras-related protein Rab7 36.71 7 10 7 290155.1276 10 +O76878 RILP-like protein homolog 8.35 4 5 0 76728.39270000001 5 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 187116.9192 9 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 165394.0393 8 +O77051 Transcription factor E2F2 18.65 7 9 0 55883.6562 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 66936.7047 3 +O77277 Torsin-like protein 15.29 6 8 0 117049.165 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 44687.9238 4 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 106205.22 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 183225.2491 13 +O96690 Protein PDF 23.53 1 1 1 9388.727 1 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 4320962.43782 79 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 57139.327900000004 7 +O97125 Heat shock protein 68 35.28 20 66 13 323158.5303 21 +O97172 UPF0729 protein CG18508 21.21 3 5 0 63965.7831 4 +O97394 Protein sidekick 1.48 3 3 0 22606.593 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 61047.058 3 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 1663842.0455 39 +P00334 Alcohol dehydrogenase 85.16 20 241 20 21177961.98165 218 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 2925072.0360000003 17 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 3364.6674000000003 2 +P02255 Histone H1 14.45 3 3 0 42481.645000000004 3 +P02283 Histone H2B 54.47 8 74 8 2510515.32743 69 +P02299 Histone H3 52.21 6 34 2 5632979.5426 29 +P02515 Heat shock protein 22 32.76 6 14 6 354036.88198 14 +P02516 Heat shock protein 23 70.97 15 72 0 3906806.95265 70 +P02517 Heat shock protein 26 58.17 9 19 0 1163473.56133 19 +P02518 Heat shock protein 27 52.11 10 28 0 449625.2692 23 +P02572 Actin-42A 63.83 25 618 2 91192551.20444 531 +P02574 Actin, larval muscle 65.69 27 537 0 660738.7049 24 +P02828 Heat shock protein 83 59.27 42 143 0 9035121.057 131 +P02843 Vitellogenin-1 73.35 27 218 0 22905599.75066 172 +P02844 Vitellogenin-2 67.65 24 169 0 15989860.4706 129 +P04197 Myb protein 2.74 2 2 0 13988.2865 2 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 633448.866 8 +P04388 Ras-like protein 2 33.33 5 7 5 52475.456 6 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 6979.927 3 +P05205 Heterochromatin protein 1 32.52 7 16 7 138098.2837 15 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 2046820.2718999998 16 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 1789017.3435 18 +P05552 Transcription factor Adf-1 12.21 3 3 0 88548.52500000001 3 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 251796.693 8 +P05812 Heat shock protein 67B1 11.91 5 6 5 72341.4913 5 +P06002 Opsin Rh1 8.85 3 8 3 183145.90959999998 7 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 22844170.1102 164 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 29735.981699999997 2 +P06607 Vitellogenin-3 79.05 31 233 0 50820123.0294 215 +P06742 Myosin light chain alkali 41.94 6 120 0 13578575.907949999 103 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 2905.1577 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 6092906.7077 26 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 13254758.33078 101 +P07665 Serendipity locus protein beta 1.97 1 1 0 9081.57 1 +P07668 Choline O-acetyltransferase 9.71 6 7 6 37174.7104 7 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 41871174.45415 294 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 28056.3605 3 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 203431.60946 12 +P08144 Alpha-amylase A 23.48 10 15 0 373310.3104 14 +P08171 Esterase-6 20.22 12 20 0 682507.5562 19 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 83254.30799999999 3 +P08182 Casein kinase II subunit beta 32.77 7 18 2 746143.21876 16 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 3429116.2332 39 +P08645 Ras-related protein Rap1 40.22 6 12 0 154817.55732 12 +P08646 Ras-like protein 1 37.04 5 13 5 781242.544 12 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 17225140.5727 117 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 404001.2774 13 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 7821027.74093 68 +P08928 Lamin 66.88 49 174 48 6798402.26664 155 +P08985 Histone H2A.v 41.84 7 43 5 1531130.2351 23 +P09040 Drosulfakinins 17.73 3 4 3 221513.577 4 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 1701520.5322 47 +P09208 Insulin-like receptor 1.77 5 5 5 4108.7049 3 +P09491 Tropomyosin-2 64.44 27 221 1 293164.92 4 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 121849.4004 7 +P10180 Homeobox protein cut 0.69 1 1 0 1863.6909 1 +P10379 Protein unzipped 27.05 12 27 0 928679.597 24 +P10552 FMRFamide-related peptides 5.76 2 2 2 89302.645 2 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 1592690.8806999999 65 +P10981 Actin-87E 68.62 28 611 0 11114545.2381 26 +P10987 Actin-5C 64.36 27 636 0 1082107.7252 14 +P11046 Laminin subunit beta-1 22.87 37 67 37 1925100.41227 63 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 2673.7563 1 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 30083489.48686 299 +P11584 Integrin beta-PS 19.98 17 28 0 429432.9253 27 +P12024 Chaoptin 27.6 35 84 0 2493561.31957 74 +P12080 Integrin alpha-PS2 13.11 18 23 18 694268.0743 22 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 1393779.8076 35 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 168501.54856 9 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 395206.9091 14 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 1360331.2777 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 107039.4235 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 102881.6616 6 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 1262174.2698 37 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 2441615.05868 94 +P13395 Spectrin alpha chain 63.6 137 494 0 24333018.30298 453 +P13469 DNA-binding protein modulo 6.83 4 4 0 25977.2003 3 +P13496 Dynactin subunit 1 15.18 21 23 21 389954.35026 20 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 5916342.62016 124 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 275784.1614 15 +P13678 Protein kinase C 3.92 3 3 0 105300.147 3 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 12891.083 1 +P14199 Protein ref(2)P 22.37 11 19 11 365134.1385 16 +P14318 Muscle-specific protein 20 82.61 17 66 17 3914212.537 62 +P14484 Pupal cuticle protein 27.17 5 19 5 480508.2344 18 +P14599 Amyloid-beta-like protein 1.92 2 2 0 16639.46425 2 +P15007 Enolase 74.2 31 339 1 43306599.28164 296 +P15215 Laminin subunit gamma-1 39.35 55 99 0 2089039.8349000001 90 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 381309.8445 3 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 4479066.48446 61 +P15364 Protein amalgam 13.21 4 5 0 171035.072 4 +P15372 Phosrestin-2 60.16 20 59 0 2408598.6485 52 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 103009.21807 8 +P16378 G protein alpha o subunit 26.55 10 39 7 1130836.6826 37 +P16554 Protein numb 7.73 4 5 0 69012.296 5 +P16568 Protein bicaudal D 18.8 15 17 0 251654.3647 17 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 193243.14492999998 9 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 4744.59 1 +P16914 Protein elav 23.4 9 28 0 583790.03546 28 +P17210 Kinesin heavy chain 44.31 40 74 40 2508633.1058 70 +P17276 Protein henna 40.71 15 27 0 725388.8562 26 +P17336 Catalase 34.78 14 49 14 1111183.5986 40 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 1648140.9366 24 +P17719 Dihydrofolate reductase 19.78 3 4 3 53055.6812 4 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 1996342.5595 33 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 5287.6323 1 +P18431 Protein kinase shaggy 33.85 16 43 0 1825590.7213 39 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 14249986.56294 173 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 203955.42260000002 8 +P18824 Armadillo segment polarity protein 22.78 16 24 0 467681.64484 23 +P19107 Phosrestin-1 73.82 32 213 32 14211461.66978 198 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 497732.21103 20 +P19334 Transient receptor potential protein 2.51 4 4 3 70317.27666 4 +P19339 Protein sex-lethal 4.52 2 2 0 13817.8928 2 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 731282.665 14 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 3824441.20663 72 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 96130.1344 4 +P20153 Protein ultraspiracle 2.76 2 2 0 13058.6405 2 +P20228 Glutamate decarboxylase 18.04 8 26 0 638341.40282 25 +P20232 Transcription elongation factor S-II 31.63 7 8 0 272126.556 7 +P20240 Otefin 32.08 11 14 11 137874.37716 12 +P20241 Neuroglian 25.81 31 74 0 2198294.6564 71 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 86687.1039 5 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 9368.229299999999 2 +P20354 G protein alpha s subunit 39.74 13 26 1 2354.3508 1 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 3879.2114 1 +P20432 Glutathione S-transferase D1 55.5 13 79 9 9541082.47 64 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 4267982.4048999995 51 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 25562571.64198 163 +P21187 Polyadenylate-binding protein 38.01 18 35 18 540519.11826 34 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 8665758.43151 91 +P22465 Annexin B10 76.01 24 139 24 7024418.8299 120 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 1122055.7282 32 +P22813 Heat shock factor protein 2.75 2 2 0 3587.471 1 +P22815 Protein bride of sevenless 1.23 1 1 1 26692.04 1 +P22979 Heat shock protein 67B3 53.77 7 19 7 522161.174 16 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 8790.420399999999 2 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 328494.25667000003 26 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 32968.87 3 +P23625 G protein alpha q subunit 51.56 19 75 16 3404292.1012 64 +P23654 Neurotactin 12.41 10 13 0 199518.3525 13 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 283019.35846 13 +P23779 Cystatin-like protein 63.49 8 32 8 2446584.52091 29 +P24156 Prohibitin 1 68.48 17 53 0 1669284.19375 47 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 8775178.8328 94 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 36973.1604 3 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 548840.63277 22 +P25171 Regulator of chromosome condensation 6.03 4 4 4 158871.014 4 +P25228 Ras-related protein Rab-3 33.64 7 18 0 328404.0133 12 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 37257.1759 6 +P25822 Maternal protein pumilio 2.15 3 5 0 44099.4272 5 +P25843 Profilin 88.89 7 28 0 1182939.9592 26 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 289135.1965 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 213406.7 6 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 364580.27365 19 +P26686 Serine-arginine protein 55 9.31 4 7 0 217185.30299999999 7 +P27716 Innexin inx1 2.21 1 2 0 53525.461 2 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 175383.04634 11 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 39821.6462 4 +P29052 Transcription initiation factor IIB 16.51 6 8 0 213719.2383 8 +P29310 14-3-3 protein zeta 67.74 17 278 0 22826672.820749998 236 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 786042.5946 20 +P29413 Calreticulin 46.55 20 61 0 3625472.64572 57 +P29613 Triosephosphate isomerase 76.11 17 131 16 13418556.108000001 121 +P29742 Clathrin heavy chain 7.39 13 15 0 145503.01304 13 +P29746 Protein bangles and beads 61.76 24 46 24 1970322.7241 45 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 2590491.88369 55 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 76422.0138 7 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 9050313.86114 151 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 10605599.82874 150 +P30432 Furin-like protease 2 0.66 1 1 0 5565.3994 1 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 2665365.5637 28 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 2224511.61173 78 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 1394445.68182 28 +P32234 Guanylate binding protein 128up 16.3 6 8 5 123092.78407 7 +P32392 Actin-related protein 3 10.53 4 7 4 185785.353 7 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 162553.4053 12 +P33438 Glutactin 14.13 17 42 0 556477.96301 36 +P34082 Fasciclin-2 17.18 15 23 0 214456.68790000002 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 801862.7315999999 20 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 721373.2753 17 +P35220 Catenin alpha 24.86 22 44 14 907081.198 39 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 36903678.15071 358 +P35415 Paramyosin, long form 73.38 77 511 0 32451386.67304 442 +P35416 Paramyosin, short form 56.41 39 294 0 2127397.9177 39 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 7600.7712 2 +P35554 Flightin 49.45 8 18 0 958375.7792 17 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 79530.2929 6 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 1772160.6739 35 +P36188 Troponin I 47.58 17 65 0 6930424.5336299995 59 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 925694.172 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 17478.406 2 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 1474687.0971 30 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 5042.628 1 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 3832990.12896 86 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 125569.6486 4 +P37236 Frequenin-1 68.98 11 45 0 585231.883 8 +P37276 Dynein heavy chain, cytoplasmic 0.24 1 1 0 720.9818 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 492130.6037 9 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 3913362.5195400002 77 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 2028332.1905 37 +P39736 Puff-specific protein Bx42 6.4 3 4 0 33474.8695 3 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 186000.6488 7 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 502850.206 8 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 93677.018 3 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 1159719.24966 27 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 30388.04116 6 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 730438.2169 17 +P40427 Homeobox protein extradenticle 2.93 1 1 0 1912.617 1 +P40792 Ras-related protein Rac1 22.4 4 7 0 323128.74 7 +P40793 Cdc42 homolog 37.7 7 8 0 335691.2435 7 +P40796 La protein homolog 48.46 17 25 16 503014.19286 25 +P40797 Protein peanut 28.39 14 25 13 646356.3222 24 +P40945 ADP ribosylation factor 4 38.33 5 11 0 44151.1268 6 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 100186.7752 8 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 1088931.24507 34 +P41043 Glutathione S-transferase S1 76.71 15 62 0 5607852.87667 60 +P41044 Calbindin-32 77.74 26 146 0 6620400.18877 138 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 264215.4752 24 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 1721983.8335 16 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 380445.1592 17 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 2105930.96604 44 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 1775896.3763000001 43 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 1409762.2534999999 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 82681.5223 5 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 755949.77461 18 +P42207 Septin-1 10.8 4 11 3 69399.235 3 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 3011266.03669 35 +P42325 Neurocalcin homolog 42.63 8 22 8 871521.5024 19 +P42787 Carboxypeptidase D 8.68 10 14 0 163211.72086 13 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 129902.14970000001 6 +P45437 Coatomer subunit beta 4.67 3 4 3 49439.00524 3 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 5990997.3032599995 82 +P45888 Actin-related protein 2 15.79 5 7 5 83394.8931 7 +P45889 Actin-related protein 1 23.4 10 13 10 487311.3667 13 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 52929.260800000004 2 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 804368.76537 15 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 2030267.6808 32 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 324606.21129999997 10 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 1033598.69706 44 +P46824 Kinesin light chain 37.4 23 45 0 1418261.1838 40 +P47947 Troponin C, isoform 1 24.68 4 24 0 3141143.8721 24 +P47948 Troponin C, isoform 2 47.1 6 9 0 19322.8904 3 +P47949 Troponin C, isoform 3 63.23 9 25 0 1188910.94336 21 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 1504610.9926 20 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 1079064.23335 22 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 963780.8674 25 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 2708935.7801 28 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 378643.4106 5 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 22365.3194 2 +P48554 Ras-related protein Rac2 26.56 5 10 0 87093.419 5 +P48555 Ras-related protein Ral-a 49.75 8 21 1 875177.1895999999 21 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 70725.8945 4 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 3390350.6836800002 53 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 414941.6768 16 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 2012377.80291 34 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 2305769.09515 88 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 99414.21635 6 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 899405.65493 32 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 1638349.57559 40 +P48607 Protein spaetzle 3.99 1 1 0 7415.5654 1 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 337134.58 10 +P48610 Arginine kinase 1 75.84 36 446 0 57291624.3575 406 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 1171994.22085 21 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 540096.60942 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 73228.7444 6 +P49028 Protein mago nashi 30.61 4 6 4 30085.920700000002 3 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 350597.9015 8 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 1075195.846 9 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 7467.5146 1 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 27164.371 2 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 2742.8364 1 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 28347.0276 4 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 1655666.0207 28 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 138745.05366 10 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 10293.547 2 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 814760.2371 22 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 147558.07259999998 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 590463.32965 20 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 124320.76860000001 7 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 11072.299 1 +P53034 Replication factor C subunit 2 8.46 3 3 3 51041.922000000006 2 +P53501 Actin-57B 69.15 29 622 4 39062494.724 71 +P53777 Muscle LIM protein 1 31.52 3 14 0 671690.0164000001 10 +P53997 Protein SET 15.24 4 9 4 203647.33 9 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 195313.7587 5 +P54191 General odorant-binding protein 69a 13.51 2 6 2 104707.67139999999 5 +P54192 General odorant-binding protein 19d 69.33 10 107 10 20739965.53917 103 +P54193 General odorant-binding protein 83a 42.86 7 18 0 1251523.0941 16 +P54195 General odorant-binding protein 28a 40.56 4 13 4 662715.1926000001 12 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 14775.6908 3 +P54352 Ethanolamine kinase 6.76 3 3 2 23883.22572 3 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 394540.68473 17 +P54357 Myosin-2 essential light chain 89.12 10 40 1 2269940.18236 35 +P54359 Septin-2 17.66 7 10 1 195530.2265 10 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 27287.053 1 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 2620630.37233 73 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 51029.699 2 +P54399 Protein disulfide-isomerase 75.6 37 146 0 13325143.38817 128 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 15343010.4782 135 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 247439.43959999998 11 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 326066.33733 17 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 1180567.0766 14 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 4632189.6016 66 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 1819542.34437 31 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 2152368.7165 49 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 16167.615060000002 3 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 138811.3335 4 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 748678.01508 19 +P61849 Dromyosuppressin 10.0 2 3 0 62869.202000000005 3 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 11099868.876939999 91 +P61855 Adipokinetic hormone 37.97 2 3 2 67860.25899999999 3 +P61857 Tubulin beta-2 chain 44.39 15 202 2 955880.2472000001 3 +P62152 Calmodulin 99.33 19 359 0 32817395.72744 317 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 1338967.1954700002 30 +P81829 Leucokinin 6.25 1 1 1 13056.221 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 5177082.3619 88 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 2817881.26762 35 +P82295 Prominin-like protein 3.75 3 3 0 3993.3625 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 808818.4686 14 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 204888.31336 11 +P83967 Actin, indirect flight muscle 68.62 27 587 2 61478.8055 4 +P84029 Cytochrome c-2 70.37 11 82 0 10529195.2042 77 +P84040 Histone H4 59.22 9 102 0 8735926.171 93 +P84051 Histone H2A 37.1 5 48 0 2045864.74223 23 +P84345 ATP synthase protein 8 18.87 1 5 1 190860.2116 5 +P91891 Protein Mo25 34.22 13 23 0 789676.338 19 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 262735.4411 18 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 824358.6542999999 39 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 5699740.0343 91 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 1411439.155 32 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 829512.7874 20 +P92029 DnaJ-like protein 60 4.15 1 1 0 5743.0913 1 +P92177 14-3-3 protein epsilon 72.14 22 257 20 15382182.0666 177 +P92204 Negative elongation factor E 10.0 3 4 3 74450.60399999999 4 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 10293.776 1 +P98081 Protein disabled 5.35 9 11 0 49961.47236 10 +Q00174 Laminin subunit alpha 22.49 77 124 77 3365273.92706 116 +Q00963 Spectrin beta chain 23.88 58 119 2 12373.312 3 +Q01603 Peroxidase 8.41 6 6 0 82744.174 5 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 22270928.33484 221 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 51969.255300000004 4 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 8376.3962 2 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 779825.74068 28 +Q02910 Calphotin 3.36 2 4 2 33695.96555 3 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 44700.84185 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 17422.6023 3 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 1428553.68979 22 +Q03427 Lamin-C 59.74 41 127 3 2951858.0139 102 +Q04047 Protein no-on-transient A 13.43 8 10 0 97109.11124 9 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 220600.17763 20 +Q04691 Fat-body protein 1 24.68 26 37 0 513244.39729 33 +Q05783 High mobility group protein D 21.43 2 3 0 50896.4587 3 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 38799823.70632 512 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 2575.9143 1 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 6328536.2871 80 +Q06943 High mobility group protein Z 43.24 4 12 0 136825.813 10 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 32151.603560000003 4 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 324998.7121 17 +Q07171 Gelsolin 25.81 18 39 0 1240514.84456 36 +Q07327 Protein ROP 35.51 20 37 0 905947.69362 34 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 399663.2731 12 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 3656.9006 1 +Q08473 RNA-binding protein squid 42.44 9 32 0 1116251.48123 29 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 48035.7946 5 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 46877.3973 3 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 281056.24210000003 13 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 14579.936000000002 2 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 664692.4625 12 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 29997.781000000003 2 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 43086.984 3 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 205844.762 10 +Q11002 Calpain-A 7.73 7 8 0 125998.19638000001 8 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 2724228.842 27 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 4665284.61434 74 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 5777245.41599 84 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 5295312.74575 93 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 2639466.6284 38 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 3841015.80865 78 +Q24050 Elongator complex protein 5 29.39 7 10 6 107061.7427 7 +Q24114 Division abnormally delayed protein 8.63 5 10 0 191228.9565 10 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 519723.9947 15 +Q24134 Negative elongation factor D 2.42 1 1 0 3016.5967 1 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 77165.01699999999 5 +Q24185 Protein hook 20.47 13 18 13 427779.1324 18 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 1057286.3131 28 +Q24207 Protein boule 27.63 5 9 0 301199.14060000004 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 306519.84355 18 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 90770.415 6 +Q24211 Protein stoned-A 37.53 27 59 0 1336829.7028 52 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 893288.6708 16 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 72337.47439999999 5 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 95365.46250000001 5 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 15317847.00266 171 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 422666.0013 16 +Q24292 Protein dachsous 0.31 1 1 0 2122.8384 1 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 74350.7989 6 +Q24298 DE-cadherin 15.06 23 36 23 837119.9763 34 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 11601.85355 2 +Q24318 Transcription factor Dp 7.19 3 4 0 21854.3389 3 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 122957.6893 8 +Q24322 Semaphorin-1A 2.34 2 3 0 838.2403 1 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 132047.644 4 +Q24372 Lachesin 17.83 6 8 6 102045.3726 7 +Q24388 Larval serum protein 2 8.84 5 5 0 67714.9151 4 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 2763879.4535 63 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 5025418.81457 46 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 19877631.678799998 155 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 174060.63414 23 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 66693.90192999999 8 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 31895.379200000003 4 +Q24509 Syntaxin-5 4.28 2 2 0 13586.6664 2 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 137794.8057 8 +Q24524 Protein singed 5.86 3 3 0 39571.5965 3 +Q24537 High mobility group protein DSP1 13.99 6 14 0 273059.5194 14 +Q24547 Syntaxin-1A 29.21 12 41 0 1948359.3711 39 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 13662111.24274 248 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 15236.22237 3 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 213431.68496 15 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 3643159.2808 27 +Q26377 Pro-corazonin 40.26 5 12 5 134298.059 11 +Q26416 Adult cuticle protein 1 20.0 1 5 1 261049.6877 4 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 87111.2221 5 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 631782.0209 18 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 61430.8908 5 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 1802761.15067 39 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 910090.97 15 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 2047394.00684 50 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 237265.25427 11 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 279756.2757 12 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 2749.2595 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 495050.9138 12 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 382591.88300000003 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 13528.841199999999 3 +Q3KN41 Neurexin 1 1.96 4 4 0 62656.1734 4 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 19652.165999999997 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 76534.85404 3 +Q4V645 Trissin 16.67 2 3 2 64207.314 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 36932.8786 2 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 72523.605 3 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 41266.296800000004 6 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 407554.1021 15 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 51953.846399999995 5 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 12826.87 2 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 65750.9895 5 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 162625.4014 7 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 66556.053 4 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 507322.3662 8 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 295784.5669 12 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 34467.957 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 352555.7528 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 1195362.8306 29 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 1887.3976 1 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 462822.48646 19 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 81549.15177 6 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 431822.6036 15 +Q7JXF7 Protein seele 34.92 5 7 5 171308.2805 7 +Q7JYV2 Synaptogyrin 8.3 1 1 1 2967.3835 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 14923.043 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 79061.24650000001 3 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 142590.9852 11 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 400295.4841 14 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 18491.214 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 149616.9727 10 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 54192.3514 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 14667.050000000001 2 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 1251777.9186 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 24772.105 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 210017.0164 12 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 114846.9875 12 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 45372.052299999996 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 514967.40054 20 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 110258.7259 9 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 5332531.01176 72 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 127957.181 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 947832.2238 24 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 1595144.4275 34 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 18764.9383 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 1125414.87356 50 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 320661.26695 21 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 369304.167 15 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 27085.909000000003 5 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 22016.783 1 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 164950.1148 7 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 7871737.1376 62 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 3188.5723 1 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 229781.23489999998 8 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 308777.03724 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 67905.958 3 +Q7KVY7 Syntaxin-4 6.01 2 2 1 22163.688700000002 2 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 56639.2765 5 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 2749373.9546 47 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 480988.7132 18 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 142983.51266 6 +Q868Z9 Papilin 18.81 47 94 47 1436351.57525 90 +Q86B79 RING finger protein unkempt 3.17 2 2 0 37267.558000000005 2 +Q86B87 Modifier of mdg4 13.77 6 8 0 173561.58409999998 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 12169.226999999999 3 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 95888.714 4 +Q86NP2 Negative elongation factor A 9.51 9 11 0 114518.60089999999 10 +Q86P48 AT-rich binding protein 7.22 3 5 3 19339.741329999997 4 +Q86S05 Protein lingerer 2.91 3 4 0 2229.7138 3 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 61656.4343 6 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 966343.4249999999 22 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 28467.111500000003 4 +Q8IN41 Protein Turandot X 8.45 1 1 1 32908.086 1 +Q8IN43 Protein Turandot C 31.01 4 14 4 471265.9251 12 +Q8IN44 Protein Turandot A 58.14 9 20 9 960140.9511 18 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 95611.2007 6 +Q8IPM8 Complexin 66.2 10 69 0 43602.0977 3 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 219099.3975 15 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 87792.9587 7 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 2689.1655 1 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 154572.77369 12 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 218112.5685 7 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 118426.08660000001 7 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 2462074.9604 30 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 13879.1173 2 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 39602.51 1 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 2387.105 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 222975.86 4 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 47413.5943 4 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 2010713.1575 38 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 761422.4311 22 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 11476.96 1 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 2806.50506 2 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 32614.9065 4 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 203363.1485 6 +Q8MSS1 Protein lava lamp 17.06 45 52 0 628754.8600999999 51 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 25522.8384 2 +Q8MSV2 Protein alan shepard 12.54 6 13 6 243372.9266 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 8806.5051 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 16951.6727 2 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 20708.69877 3 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 1112851.7047 17 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 174296.0572 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 600567.8826 16 +Q8SY33 Protein Gawky 11.05 13 19 13 205204.5464 15 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 3771696.3632 55 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 243372.45527 17 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 98625.6835 6 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 23819.4675 4 +Q8SZ63 Golgin-84 5.23 3 3 3 13958.0918 3 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 139363.0184 7 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 27290.842 1 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 884346.61352 34 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 929998.91963 32 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 14600.816 1 +Q8T390 Endophilin-A 56.91 20 92 0 3542383.28321 74 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 215867.02800000002 6 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 1588711.6894 20 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 330090.3284 12 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 240910.6852 11 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 1790.1713 1 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 785617.6780000001 18 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 67898.6176 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 4728674.2134 95 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 6936042.9795 83 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 8865405.64283 110 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 5133.621999999999 2 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 1641910.2774 17 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 1794748.949 27 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 10152206.6879 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 1073086.14895 48 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 57262.9547 3 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 705825.57001 20 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 30487.269999999997 3 +Q94547 Regulator of gene activity 4.27 3 4 0 127509.74599999998 4 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 42043.879700000005 4 +Q94901 RNA-binding protein lark 53.69 20 40 20 565148.0052 37 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 1928.1702 1 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 210291.81449999998 7 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 35504703.85897 328 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 7500.917 1 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 88755.4266 6 +Q95029 Cathepsin L1 38.27 16 60 3 3681474.8152 52 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 836940.483 18 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 47942.712 2 +Q95RA9 GILT-like protein 1 46.4 9 28 9 1661672.5762 26 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 6712.7242 2 +Q95RI5 Failed axon connections 54.78 24 114 0 7117918.36213 107 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 2515.1504 1 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 151159.003 5 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 147154.7615 11 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 77276.8884 4 +Q95T12 Calcium channel flower 12.89 2 3 2 74393.428 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 36530.460699999996 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 2880.8875 1 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 107999.3284 9 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 15490.238159999999 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 482305.30857 20 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 61701.0925 8 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 137041.043 6 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 1553.9171 1 +Q967D7 Protein turtle 2.74 4 6 0 117920.7748 6 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 112358.38107 12 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 67128.129 4 +Q9GQQ0 Protein spinster 1.98 1 3 1 21468.2452 3 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 4375566.3633 56 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 12084.096000000001 2 +Q9I7D3 Caprin homolog 12.38 10 12 0 96325.3729 7 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 98914.4589 6 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 125394.323 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 29951.5485 2 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 156792.663 6 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 832003.946 29 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 28034.1446 2 +Q9I7U4 Titin 1.5 22 25 0 263126.17191000003 22 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 19801.5203 2 +Q9NB04 Patj homolog 31.46 20 37 0 968044.08464 33 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 8153.4918 4 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 30136.6747 5 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 50210.25 3 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 73603.51585 5 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 143205.3764 6 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 77728.815 5 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 10800.942 1 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 18283.15 2 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 2308716.423 48 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 60822.4416 7 +Q9TVM2 Exportin-1 1.79 2 2 0 16532.8401 2 +Q9TVP3 J domain-containing protein 79.49 16 82 16 5217539.7531 74 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 500040.65018999996 26 +Q9U4G1 Protein borderless 19.89 13 27 13 646416.41332 24 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 39041.9479 3 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 208844.887 11 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 736316.4868 17 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 6498.433 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 52371.31073 3 +Q9U915 Adenylate kinase 2 72.08 21 51 21 2176924.1582 46 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 92617.78 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 147720.2719 9 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 224071.569 10 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 157979.135 9 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 10060.722 1 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 13168.00645 3 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 79035.9482 4 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 1672806.25275 24 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 21854.2674 2 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 2110447.6116 27 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 85442.3205 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 264361.11199999996 6 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 207606.80359999998 6 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 256399.33444 13 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 1806526.42966 37 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 83958.3023 7 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 180123.2474 14 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 80455.7782 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 463539.51114 20 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 9321684.77584 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 262208.75454 15 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 9714.861 1 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 31434.900429999998 4 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 265516.78224000003 7 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 15311.019 2 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 1520267.1282 40 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 69072.156 3 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 218174.0098 8 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 665669.0272 11 +Q9V3Z2 Serine protease 7 15.35 5 6 4 68467.7684 6 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 121200.0024 11 +Q9V427 Innexin inx2 8.99 4 8 0 184212.69400000002 6 +Q9V429 Thioredoxin-2 68.87 7 37 7 3263994.597 36 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 475254.92120000004 16 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 871882.97385 24 +Q9V447 Krueppel homolog 2 12.68 3 3 0 32591.1166 3 +Q9V496 Apolipophorins 34.8 114 261 0 13305507.71241 237 +Q9V498 Calsyntenin-1 1.02 1 1 0 50545.625 1 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 23478.77636 2 +Q9V4C8 Host cell factor 4.93 8 11 8 145908.2665 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 8382.965 1 +Q9V4N3 Cytochrome b5 61.19 5 26 5 834983.0046000001 18 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 165916.066 5 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 234929.62 11 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 12032.0849 3 +Q9V521 Phenoloxidase 2 22.22 16 20 15 493126.23454 18 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 416502.1202 14 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 19666.2248 2 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 369483.92929999996 15 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 843679.91655 30 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 1334725.9233000001 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 2923.1648 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 28096.895 1 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 164210.299 8 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 19132.4064 2 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 82352.6602 5 +Q9V6G5 Tafazzin 5.82 3 3 0 34883.722 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 4117788.26109 69 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 27078.8364 3 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 25483.252 3 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 44587.5316 4 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 17199.3808 4 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 3702335.2125 64 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 5707178.1812 98 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 924414.7267 22 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 42246.754 2 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 65839.97263999999 4 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 697995.72953 29 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 2944998.93148 97 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 1182624.662 15 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 354780.4398 8 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 45152.7405 5 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 66103.89600000001 2 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 121455.6351 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 11918.092 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 25607.423 3 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 9939.228 1 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 21843.5554 4 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 818706.1933 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 129542.5141 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 555194.1616 11 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 2996.1424399999996 2 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 17738.078 1 +Q9VA37 Protein dj-1beta 72.73 12 59 12 3536211.93924 51 +Q9VA70 Neutral ceramidase 2.41 2 2 0 14814.6656 2 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 3818226.7637 44 +Q9VAF5 Cadherin-99C 5.92 10 11 10 58796.8057 9 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 935856.8266 23 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 1530881.9741 27 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 3909344.80798 72 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 1617182.72 45 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 90017.685 7 +Q9VAW5 La-related protein 1 4.06 5 5 0 51949.18627 5 +Q9VAY3 Mitoferrin 7.65 3 3 3 32281.906000000003 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 33153.6385 3 +Q9VB68 Serine protease grass 12.2 5 6 5 38914.49972 5 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 30512.228499999997 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 6649.9805 3 +Q9VBV3 Protein takeout 26.91 6 7 0 202935.2964 6 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 178375.5086 9 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 9590.8318 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 531.0936 1 +Q9VC57 Atlastin 5.91 3 4 0 46135.9041 4 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 20561.53314 3 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.6 2 2 0 2406.13542 2 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 426933.99199999997 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 165393.36119999998 8 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 23173.5975 3 +Q9VCE8 Actin maturation protease 9.74 1 2 0 4230.4629 2 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 391367.1556 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 272539.45728000003 15 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 125197.1617 4 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 253021.7415 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 436225.1343 12 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 55844.703 2 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 9008.369999999999 2 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 6719.793 2 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 411627.62330000004 10 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 438696.55490000005 18 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 53283.1129 5 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 101638.49350000001 4 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 123023.80507 14 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 32987.0692 3 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 6004.469 1 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 38670.508 2 +Q9VDL1 Esterase CG5412 9.68 2 3 2 7551.459719999999 3 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 12232.800500000001 2 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 200862.601 8 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 3280.737 1 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 41456.08494 4 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 14253.517 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 52165.2 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 6550.9537 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 3282131.555 49 +Q9VER6 Modular serine protease 3.18 2 3 2 22051.17596 3 +Q9VET0 Neuropeptide F 29.41 3 4 0 66718.2767 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 1838821.2463 43 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 138321.3772 5 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 7835.3937 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 131055.9969 8 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 5117501.38085 58 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 25830.3493 3 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 265075.1019 16 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 10326.144 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 49537.508 2 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 1105893.4366 29 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 104982.92790000001 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 14912.7822 3 +Q9VFJ0 Probable cytochrome P450 313a1 4.67 2 2 2 2700.7091 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 37602.455 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 56607.219 3 +Q9VFM9 Twinfilin 24.78 8 14 8 204138.98619999998 12 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 128886.2582 7 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 64295.644 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 14442.496 1 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 178661.02675 10 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 58100.765 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 5010.131 1 +Q9VG55 Protein hugin 18.32 2 2 2 10131.2138 2 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 345073.77867 10 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 5937.11 1 +Q9VG76 Myc-binding protein 11.05 2 2 2 28632.979 1 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 27147.3841 3 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 1541739.2396 22 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 207794.28900000002 6 +Q9VGG5 Cadherin-87A 5.16 9 12 9 207200.9459 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 19622.818 1 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 225667.564 8 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 8891.208 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 35478.7785 3 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 27051.432 1 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 3702724.0615999997 47 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 522499.6995 17 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 29642.219599999997 3 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 2241.5894 1 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 355260.096 14 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 9978.64 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 1131574.9628 11 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 627841.732 7 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 1587550.6668 19 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 2415.851 1 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 89114.90890000001 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 52571.2472 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 280182.194 10 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 50513.5939 8 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 255970.08000000002 6 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 18646.9326 4 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 157724.88052 18 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3999.0027 1 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 1616488.25679 52 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 4648363.2627 45 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 151535.243 6 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 30259.3616 3 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 5182.552 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 102063.6974 8 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 176303.23296 12 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 19518.605000000003 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 599147.15143 15 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 608571.6518999999 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 127204.32400000001 5 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 51113.57545 3 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 36338.15294 3 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 11899.8085 3 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 535557.223 11 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 394150.2123 14 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 187826.641 7 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 143795.9892 7 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 329936.66099999996 8 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 12935.091 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 2351.299 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 21179.7209 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 7861.1951 2 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 15047.583 1 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 132595.2999 10 +Q9VJL6 Glia maturation factor 10.87 2 3 2 205696.737 3 +Q9VJQ5 Protein Dr1 17.49 3 3 3 35039.442 3 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 524634.2711 14 +Q9VJY9 Protein Loquacious 12.69 5 5 0 106908.9037 5 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 10470.2914 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 282755.5992 13 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 4734.323 1 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 3930.9492 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 133053.11794999999 10 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 38391.88554 8 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 62318.041000000005 2 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 117514.1674 4 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 53616.653 2 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 11892.501 1 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 1862477.616 35 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 2284158.1867 58 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 30777.9881 3 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 84512.62229999999 5 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 111225.12954 9 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 196830.3727 8 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 100314.4913 6 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 743515.6368 18 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 19808.7416 3 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 583216.11616 13 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 239539.4607 8 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 175796.3481 9 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 4008.241 1 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 20331.4003 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 69206.6786 5 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 49679.0373 5 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 46513.9759 6 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 55659.15015 3 +Q9VMD6 Protein real-time 2.58 2 2 0 20257.269 2 +Q9VMD9 Tiggrin 11.33 29 34 0 435530.7183 32 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 51323.6584 5 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 387045.8233 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 17419.93534 3 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 60076.625779999995 4 +Q9VMR8 Protein Turandot M 33.59 3 5 0 700257.72 5 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 100955.4549 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 30502.5923 3 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 53085.379 5 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 803111.5719999999 12 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 44240.1045 3 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 53047.392 3 +Q9VMY9 Guanine deaminase 4.46 2 2 2 42669.096 2 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 30976.7707 4 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 97635.80249999999 6 +Q9VN14 Contactin 19.78 25 34 25 599946.93381 30 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 16017.4135 3 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 58727.27343 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 257502.01150000002 12 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 663393.2359 29 +Q9VN93 Cathepsin F 22.64 13 28 12 1141877.69364 25 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 210172.171 6 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 51486.852999999996 3 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 86243.9866 3 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 310153.28466 9 +Q9VNE2 Protein krasavietz 31.28 16 24 16 675641.8393 22 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 511676.742 12 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 10740.816 1 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 65002.4942 3 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 107034.89929999999 5 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 15949.183 4 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 72662.293 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 49722.3624 4 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 42865.498100000004 4 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 164321.2523 7 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 4518734.7097 27 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 972069.2479 12 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 180901.40970000002 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 28785.8629 4 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 111701.3179 5 +Q9VQC4 Glycerate kinase 12.94 8 8 0 135088.653 8 +Q9VQF7 Bacchus 40.79 6 16 6 206094.00335 13 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 76984.928 3 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 545589.6367 16 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 321789.8215 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 44133.0796 2 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 181686.1414 10 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 9007.811 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 8341.1849 2 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 29861.326 2 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 261877.076 5 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 39607.66527 8 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 5472.2947 2 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 290628.13399999996 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 14128.6602 2 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 81832.5 5 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 7027.9723 2 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 171215.86664 10 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 554502.8778 5 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 30751.401 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 2861202.91817 66 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 34956.1465 2 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 23496.542 2 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 83992.1553 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 49065.74 1 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 4651232.673359999 60 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 57795.3593 4 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 49687.7432 6 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 39319.8666 4 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 1846343.5403500001 52 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 233404.90039999998 7 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 11122.4573 3 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 12758.482 2 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 32994.132 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 38919.8045 2 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 439969.56 13 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 81994.7342 4 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 157722.1585 6 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 6785.0537 1 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 69664.485 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 18930.287 1 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 67379.89910000001 4 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 3228416.63532 45 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 120737.1126 6 +Q9VTZ5 Transferrin 2 22.59 16 21 16 289797.29248 20 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 133496.6948 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 69668.107 2 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 7690141.11976 102 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 767225.1047 27 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 21775.6049 3 +Q9VU84 Drebrin-like protein 26.18 11 14 11 217148.51374999998 13 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 56344.532999999996 5 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 2791.1514 1 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 1668355.1903 37 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 64154.725269999995 5 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 760365.7849 27 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 30936.807 1 +Q9VV36 Retinin 29.84 5 91 5 8942950.47596 75 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 1805.1576599999999 2 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 2441685.6428 36 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 559424.8264 25 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 9847.603 1 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 232158.9327 7 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 728375.8576 23 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 127914.06210000001 8 +Q9VVE2 Protein rogdi 30.97 7 12 7 270147.6203 10 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 220345.2896 18 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 28595.601000000002 3 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 1005705.94237 32 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 3846.1315 2 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 30912.7687 5 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 419159.3066 21 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 34040.8703 3 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 56264.45693 3 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 151684.507 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 43146.106 2 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 26678.11582 6 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 635267.97488 23 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 15252.8673 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 215918.6862 11 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 434172.20849999995 13 +Q9VWA1 Clathrin light chain 40.64 11 40 0 1548153.73968 37 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 11203.064830000001 2 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 30856.17246 2 +Q9VWE0 Cytokine receptor 1.56 2 2 2 31015.3833 2 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 568572.9595 12 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 20806160.86415 164 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 2747610.8221 24 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 82983.3013 10 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 76409.6093 4 +Q9VWU1 Serine protease persephone 7.61 3 3 3 37804.505699999994 3 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.84 3 3 3 1781.4258 1 +Q9VWX8 Frequenin-2 52.94 11 47 5 1130054.0892 41 +Q9VX10 Sulfiredoxin 4.32 1 1 0 23213.008 1 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 306897.2032 11 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 1245393.5093 23 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 40381.7814 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 396019.57259999996 8 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 27992.320699999997 5 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 8560.656 1 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 1470139.10728 55 +Q9VXG4 Annexin B11 23.68 13 31 13 1235139.8340999999 31 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 268584.5352 17 +Q9VXK0 Protein NipSnap 15.38 4 8 0 173438.139 6 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 447977.8986 14 +Q9VXN2 Protein stunted 49.18 3 9 3 220571.93639999998 6 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 14309.404 2 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 342783.4007 10 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 54482.3403 4 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 394.89355 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 1747798.43907 38 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 36909.2247 4 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 682758.51097 10 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 31772.144500000002 4 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 8357.727 1 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 151425.12 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 20848.12 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 33505.6117 3 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 91437.582 6 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 4506.137 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 2158.3074 1 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 5383.993 1 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 10241.402 1 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 1379593.58729 47 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 18263.366749999997 4 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 254123.346 11 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 255356.9787 8 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 1326146.2777 26 +Q9VZ35 Protein Vago 13.12 2 2 2 3605.4691000000003 2 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 378035.02999999997 3 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 441378.86970000004 14 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 833749.7557 22 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 60107.2518 7 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 74866.2389 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 17292.63205 4 +Q9VZE7 Choline transporter-like 1 1.74 1 1 0 1783.5392 1 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 13781.9738 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 5722.955 1 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 15116.271 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 25468.0527 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 648277.701 8 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 1037187.4330000001 18 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 2482844.18889 53 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 326212.79666 12 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 39095.585 2 +Q9W032 Protein ecdysoneless 1.9 1 1 1 11510.817 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 1669069.89082 49 +Q9W074 Protein HBS1 3.28 2 2 2 16470.660600000003 2 +Q9W0A0 Protein draper 4.95 4 5 0 28630.778000000002 4 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 3946256.99784 49 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 4677.8594 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 53609.16160000001 3 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 136835.36312999998 10 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 552684.501 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 233711.9586 13 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 206217.54726 18 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 15023.9514 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 994.1544 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 2163185.208 36 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 246743.1086 9 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 13910.1456 2 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 13764471.02416 71 +Q9W1G0 Probable transaldolase 44.71 16 52 16 3332619.0721 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 93060.887 2 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 53916.584 3 +Q9W1K5 Sestrin homolog 1.41 1 1 0 28169.336 1 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 24726.113 3 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 68877.08840000001 5 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 86992.33159999999 5 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 141487.935 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 266775.349 9 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 2582625.6871700003 53 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 103322.85973 6 +Q9W266 Protein windpipe 8.12 5 11 5 381789.059 11 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 633657.1304 12 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 244832.63079999998 10 +Q9W2E7 Protein Rae1 29.48 9 14 9 404285.0244 12 +Q9W2M2 Trehalase 33.56 19 38 0 718749.851 33 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 78981.538 5 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 10530.917 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 68364.8138 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 254908.7444 5 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 4709743.62853 70 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 503910.92563 13 +Q9W358 Chaperone Ric-8 12.22 7 7 0 87615.537 7 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 8361014.09605 80 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 99372.0701 6 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 433674.79799999995 5 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 173565.718 4 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 74911.233 4 +Q9W3E2 Protein PIP82 19.58 20 31 20 267951.10745 26 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 50387.133 5 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 59010.971000000005 4 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 79250.0977 6 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 239838.53500000003 3 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 97032.36616 6 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 1765.8534 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 6865.742 1 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 8722.501 1 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 19196718.75769 170 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 312390.43183 8 +Q9W436 Neprilysin-1 2.59 2 2 2 10253.112799999999 2 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 180311.652 5 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 24242.299 1 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 118043.29884 11 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 451371.5078 14 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 175719.2125 13 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 278707.424 14 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 588064.4679 16 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 73977.14826 6 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 2033284.38192 113 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 39685.133 1 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 424813.6966 16 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 469082.4564 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 47804.8413 3 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 388266.8163 10 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 35946.6611 4 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 1628333.4889 58 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 3253.0469 1 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 6471.326 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 493161.10111 10 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 1169761.6574 30 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 68821.5297 7 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 203289.46225 10 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 517999.7046 16 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 1156371.0955 14 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 1306036.9176 34 +Q9XZL8 Protein sarah 32.53 7 14 0 257188.86534000002 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 10007.255500000001 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 75862.1533 4 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 54616.6544 5 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 734923.70366 16 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 25118.14866 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 1032355.7539 23 +X2JAU8 Protein nervous wreck 28.19 30 88 30 3738230.82504 80 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 18301.672 1 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 85254.7121 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 48393.151 2 +A0A0B4JCR9 Uncharacterized protein, isoform D 3.12 1 1 0 607.4396 1 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 211244.8024 12 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 1193990.565 6 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 96407.3963 6 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.0 2 2 0 2141.7437 1 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 3638455.80682 100 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 15339.3167 2 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 3066.114 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 213426.8077 14 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 105347.7146 8 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 39137.424 4 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 306110.82126 20 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 7877511.02381 160 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 21330.2618 3 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 22887.502 2 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 355103.75414000003 25 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 156398.933 4 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 64297.479 3 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 77145.25110000001 8 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 30301.9386 4 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 116947.9623 6 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 5939.0077 3 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 134871.293 10 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 6269554.451 115 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 138890.6223 7 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 93632.7419 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 24889.147 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 30083.3556 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 9372.6014 2 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 2823456.89687 46 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 34146.9149 3 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 1656.0067 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 1306865.3015 53 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 17590.8444 5 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 658600.7942 23 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 34986.253 2 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 49466.72457 6 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 372284.16046 17 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 350079.07295 13 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 751879.58796 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 99831.6115 10 +A0A0B4KEJ7 Coronin 12.71 7 7 0 93667.5644 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 18255.2719 3 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 17481.62465 5 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 220380.7334 16 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 21399.053 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 50137.93 2 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 6107.694 1 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 438908.2742 25 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 698.7727 1 +A0A0B4KFA3 Uncharacterized protein, isoform F 0.88 1 1 0 359.00757 1 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 1586689.98074 45 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 6641.5753 2 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 4297513.115 78 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 65769.89931000001 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 721226.23947 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 667303.1550200001 12 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 184426.614 2 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 5268.845 1 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 87016.7832 8 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 78584.4715 7 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 5183.925 1 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 96585.15943 5 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 2171.482 1 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 69072.61009999999 7 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 4850.1212 2 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 80484.129 7 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 18282.491299999998 2 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 197999.55156999998 15 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 1070090.0770999999 22 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 739720.3449 28 +A0A0B4KGM5 Uncharacterized protein, isoform B 1.13 1 1 0 1683.4913 1 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 8264.0 1 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 19230.5465 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 607758.3492 22 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 9662.167300000001 2 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 77664.5058 8 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 14685.8309 2 +A0A0B4KH34 Annexin 55.56 21 164 3 14576504.21633 148 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 5164.207 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 5212.0337 1 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 329057.81566 17 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 260806.33952 17 +A0A0B4KHF0 Ferritin 75.42 20 121 1 13577064.75731 96 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 28154108.35084 216 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 284329.7509 7 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 7530.1055 1 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 18219.8296 2 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 194078.802 8 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 403022.43711 22 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 102774.30900000001 2 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 71802.69 7 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 55403.914 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 106348.344 6 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 6415.5454 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 1162068.18002 44 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 1836007.4057 23 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 128111.13500000001 3 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 43898.054000000004 2 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 14021.798999999999 2 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 4513.7011 2 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 921948.3385 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 684949.5479 31 +A0A0B4LF95 glutaminase 11.14 7 11 0 94595.8479 9 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 495300.46002 25 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 258179.77878 22 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 69189.4469 5 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 2152.757 1 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 24233.05344 2 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 18557.081700000002 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 1944.3225 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 164302.791 6 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 23976.940000000002 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 198715.4597 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 17103.4447 2 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 178924.7137 13 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 2610431.4121 46 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 317509.8869 10 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 9966.178 1 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 584480.8217 20 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 57195.1219 5 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 4676954.141 53 +A0A0B4LGT9 Uncharacterized protein, isoform B 4.92 1 1 0 1502.8613 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 125461.8174 8 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 864833.2826500001 36 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 106011.6225 4 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 88580.4647 6 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 4885.242 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 45110.4536 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 111603.79000000001 8 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 20760.201999999997 2 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 60791.004 3 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 39031.715000000004 3 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 5262.6006 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 132323.34794 15 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 17449.2365 3 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 5786.2314 1 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 316721.5629 21 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 25016.4526 4 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 35879.153 2 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 215797.9838 11 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 83963.767 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 228806.4769 12 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 49079.0106 7 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 10923378.82482 123 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 169196.1967 8 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 18498.415500000003 2 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 20382.684999999998 2 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 925941.56614 18 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 45845.4372 3 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 10127423.03671 132 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 97972.0987 13 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 152929.9401 11 +A0A4P1SAA7 IP07559p 6.8 1 1 0 12766.793 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 1018110.70328 48 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 109411.19099999999 7 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 7146.7437 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 10286101.10442 269 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 17128.777 2 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 1659505.4553 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 102832.7345 7 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 65038.646550000005 3 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 29542.531000000003 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 11716.399 1 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 6164046.54063 245 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 280737.52715 31 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 1104967.12179 28 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 420210.3905 15 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 124201.9716 6 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 113912.2573 8 +A1Z6F6 FI18602p1 9.88 9 10 0 190529.5001 9 +A1Z6G9 FI18173p1 10.5 3 3 3 27097.522800000002 3 +A1Z6H4 RE52822p 14.24 7 7 0 94143.2791 7 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 45175.21805 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 42617.825 2 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 137769.7818 6 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 156252.4374 11 +A1Z6R7 FI21445p1 40.71 9 20 9 451237.2017 18 +A1Z6V5 FI01422p 40.46 14 31 14 1537397.1108 28 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 463670.4798 13 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 146054.8766 8 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 32394.632 2 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 6978.015 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 21360.971940000003 3 +A1Z7B8 GEO08456p1 21.52 3 5 3 122811.2611 5 +A1Z7G2 MIP13653p 13.39 2 4 2 601448.118 4 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 258007.11437 16 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 39960.5036 3 +A1Z7K6 FI20236p1 6.38 3 4 3 72078.6606 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 303588.9165 11 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 46266.9289 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 87141.018 5 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 1532442.11515 43 +A1Z7V9 FI20020p1 10.04 5 5 0 144155.38853 5 +A1Z7X8 FI02944p 19.81 7 8 7 113685.2837 6 +A1Z803 FI02892p 29.12 12 18 12 497294.8271 18 +A1Z843 Nodal modulator 3 9.42 11 14 11 208130.36779999998 14 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 1077797.56003 26 +A1Z871 CAP, isoform B 13.38 20 35 0 94579.5699 4 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 2399198.22505 46 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 200101.49 4 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 25048.629 1 +A1Z8G7 FI09243p 9.92 1 2 1 2174.6853 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 8962090.329 42 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 138504.10766 11 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 19819.2 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 2877.3682 1 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 35804.4089 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 1022140.42224 19 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 393231.2944 12 +A1Z933 GEO02273p1 27.91 2 4 2 51426.6461 4 +A1Z934 SD19268p 48.83 13 30 13 759142.6662 24 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 24326.523 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 139536.75535 9 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 27717.9777 3 +A1Z9B5 IP16508p 19.88 3 4 3 61596.3403 4 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 3039527.8394 44 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 781289.9006 15 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 350994.67416 31 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 640392.422 11 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 17983.80079 7 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 210765.17930000002 4 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 1984.8958 1 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 17412.877 2 +A1ZA23 FI18007p1 33.64 10 24 10 305496.05548 23 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 131903.7672 6 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 57874.4987 6 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 26602.6054 3 +A1ZAH3 FI16515p1 1.93 1 1 0 1762.3889 1 +A1ZAK3 Protein DEK 4.05 3 3 0 78817.05 3 +A1ZAL1 lysozyme 30.43 5 7 5 288091.3235 7 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 8759.972 1 +A1ZAU4 RH39096p 52.14 16 49 0 3212862.80294 47 +A1ZB23 IP19117p 16.06 4 7 4 93265.836 5 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 9575.133 1 +A1ZB68 FI01423p 45.91 11 28 11 932465.16123 26 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 891382.909 23 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 156321.57555 7 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 910249.2997 16 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 19859.9424 2 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 68549.44805 3 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 1431554.1901 37 +A1ZBA5 FI07234p 7.22 2 2 2 35689.8245 2 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 22088.0141 4 +A1ZBD8 Mucin-5AC 2.99 4 4 4 20267.232269999997 3 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 7127.4156 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 764989.2142 37 +A1ZBK7 Crammer 31.65 3 11 3 135236.34914 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 13549.033 1 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 419997.9021 11 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 268526.789 11 +A1ZBU5 GNBP-like 3 28.29 3 10 3 170641.75123 9 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 21439.91 1 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 2003788.71286 43 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 16376.883 1 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 400376.81014 29 +A1ZBX6 lysozyme 9.5 2 2 2 7731.6026 2 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 6062.0347 1 +A2VEG3 IP16294p 1.06 1 1 0 3021.678 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 4661.0645 1 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 146801.2833 8 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 1366009.97505 31 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 50253.515329999995 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 210395.733 13 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 3205150.1669 67 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 3338860.0754 93 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 6256.841 1 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 2749022.9464 35 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 240635.7009 11 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 72338.018 2 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 832938.073 12 +A8DYD1 Combgap, isoform L 10.75 8 11 0 131802.3643 10 +A8DYI6 Prohibitin 65.98 22 79 1 3569932.59397 70 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 317833.729 16 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 155740.6986 8 +A8DYL2 Uncharacterized protein, isoform G 1.16 1 1 1 503.77054 1 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 1805.4642 1 +A8DZ06 Stolid, isoform J 12.46 14 21 0 399014.1273 16 +A8DZ14 FI17828p1 18.02 9 24 4 733388.09293 23 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 49032.827 4 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 373727.04359 35 +A8E6W0 IP19808p 19.7 4 5 4 132629.47340000002 5 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 100725.7861 6 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 24094.5471 2 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 48786.924 3 +A8JNP2 arginine kinase 73.07 36 447 2 2301969.0474 16 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 24380.844559999998 7 +A8JNS4 Starvin, isoform E 7.4 4 5 0 75345.2818 5 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 12192.2092 2 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 163019.50999999998 3 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 29019.0827 5 +A8JQT5 Moesin/ezrin/radixin homolog 1 1.31 4 6 3 2055.2272199999998 3 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 59265.6609 4 +A8JQW3 Pinin, isoform B 18.24 5 5 0 62373.6933 5 +A8JR01 Kramer, isoform I 1.49 2 2 0 550.0321 1 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 98725.265 2 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 206229.0943 12 +A8JR58 Hadley, isoform B 7.64 2 2 1 4050.8413 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 4411493.2443 66 +A8JRH3 FI20012p1 66.73 28 71 1 2388659.51729 65 +A8JTM7 Megalin, isoform A 2.81 14 18 14 199173.3172 15 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 77075.8324 7 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 25728.095 3 +A8JUZ6 MIP03678p 16.77 5 7 0 76341.53409999999 4 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 3000.8761000000004 2 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 593757.13163 28 +A8WH76 GEO10024p1 48.15 4 13 4 474220.78206 13 +A8Y4V5 FI20903p1 5.22 1 1 1 2461.0137 1 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 17379.846 1 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 5035587.729630001 13 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 14299.587 1 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 50980.73789999999 3 +B7YZH1 FI20143p1 7.21 4 4 0 18909.9294 4 +B7YZN0 Syndecan 12.55 6 8 0 178004.1189 7 +B7YZN4 GH02741p3 49.23 4 4 4 59808.081000000006 4 +B7YZN8 GH02741p1 10.53 1 1 1 54665.246 1 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 103661.9148 6 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 7011501.1605 86 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 8006.7570000000005 2 +B7YZV2 Phosphodiesterase 6.39 6 8 0 119365.3081 8 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 380624.22267 26 +B7Z001 Fatty acid synthase 20.0 44 74 0 1871613.2653 71 +B7Z005 Drongo, isoform I 6.42 3 3 0 25684.9786 3 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 2905.2195 1 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 6666.775 1 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 22334.4652 2 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 73397.36600000001 3 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 72263.2341 8 +B7Z0C9 GH15104p1 34.74 4 7 4 78730.208 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 11056195.1662 137 +B7Z0M0 FI17308p1 22.13 2 2 1 26798.646 1 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 5191.3643 2 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 264865.6996 11 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 225659.5293 14 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 24003.413 2 +B7Z107 GH09380p1 29.35 3 5 3 36788.223 3 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 3369.4893 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 41639.2309 3 +C0HDP4 MIP05618p 11.31 4 4 0 19276.0339 4 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 2137854.9439 36 +C7LAG1 CoRest, isoform G 2.31 2 2 1 23400.474 2 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 1831209.61695 53 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 827260.12976 29 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 234900.99466 8 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 78171.882 3 +D0Z756 MIP14966p 36.55 15 61 0 3103118.30124 57 +D1YSG0 Bent, isoform F 4.99 39 42 0 700577.1279 41 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 246030.74664 8 +D3DMM0 MIP15702p 29.31 12 28 0 1131595.355 28 +D3DMM4 MIP15217p 28.27 22 50 0 1907655.24089 46 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 237456.2465 6 +D5SHT6 MIP21537p 8.03 3 3 0 38874.9635 3 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 29387.9103 3 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 154805.9416 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 276815.6663 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 383858.1472 16 +E1JGR3 GEO02620p1 24.62 3 3 3 5093.87337 3 +E1JGY6 Hulk, isoform F 11.14 17 21 0 395157.2515 21 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 174013.9906 12 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 13110.467 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 6126.99008 2 +E1JH90 Patronin, isoform F 0.78 1 1 0 2278.3687 1 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 805189.1107 48 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 41287.55636 5 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 354307.78819999995 9 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 32163.216 3 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 59253.67 3 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 160129.1254 9 +E1JHP9 Galectin 6.21 3 3 0 27358.159200000002 3 +E1JHT6 Reticulon-like protein 38.71 18 38 0 1478161.4457 35 +E1JI40 Vermiform, isoform I 11.89 7 9 0 157586.7117 8 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 64383.0518 4 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 66456.7305 2 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 14054.668 1 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 76991.39364000001 3 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 10793.7759 2 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 6108.8096 1 +E1JIY8 L antigen family member 3 20.72 3 3 3 173433.062 3 +E1JJ33 Complexin, isoform U 66.43 10 72 2 1962555.05976 69 +E1JJA4 Dynamin 35.22 31 59 0 1433679.77175 58 +E1JJE4 protein-tyrosine-phosphatase 1.86 3 3 0 1668.6361 1 +E1JJG5 Phospholipase A2 2.93 1 1 1 7612.005 1 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 2270748.5705 65 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 44485.95336 6 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 151081.0677 9 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 16065.1474 2 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 870732.18848 42 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 14155.372500000001 2 +E2QD54 Natalisin, isoform D 5.61 3 3 0 28656.297550000003 3 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 196907.3689 18 +E2QD98 Protein PALS1 5.59 10 13 0 346585.538 11 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 111566.75550000001 6 +E8NH67 Asperous, isoform B 59.09 20 77 0 1762827.54577 64 +F0JAP7 LP18071p 13.97 4 5 0 42124.210699999996 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 62702.7605 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 2539563.99192 101 +H1UUB1 GEO12465p1 48.84 5 11 1 651301.5706 9 +H8F4T3 Regucalcin 45.75 9 15 0 674473.5146999999 15 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 124137.21930000001 5 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 69503.5445 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 1013759.8034 36 +L0MPN7 Asator, isoform H 7.38 8 8 0 93128.46575 7 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 78485.0065 9 +M9MRX0 Limpet, isoform J 27.3 27 63 0 2051541.72155 53 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 598595.5696 43 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 127409.72989999999 9 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 116738.36850000001 8 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 58545.4166 5 +M9MS70 Uncharacterized protein, isoform C 2.9 1 1 0 361.93 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 490065.83169 18 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 915465.841 13 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 1111587.3122 35 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 11849.338 1 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 1762.6088 1 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 162721.1579 7 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 167473.3229 10 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 101276.7156 10 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 244066.5167 15 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 175198.1725 14 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 168587.588 9 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 28816365.16475 384 +M9NDB5 RNA-binding protein 6, isoform F 36.89 6 15 1 334.10974 1 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3436.0574 1 +M9NDE0 pantothenate kinase 4.21 2 3 0 17135.0273 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 59338.52487 4 +M9NDS9 chitinase 0.67 3 4 0 34531.042 3 +M9NDX8 Neurabin-1 1.98 4 4 0 20390.0278 3 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 52900.73525 10 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 127570.21016 10 +M9NEF2 Histone deacetylase 2.33 1 1 0 837.896 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 12446.529 1 +M9NEW0 LD39232p2 58.67 9 12 9 280574.0325 12 +M9NEX3 Cytochrome b5 57.55 6 27 0 686235.1483 21 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 76636.8316 5 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 101605.5781 6 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 171902.30849999998 12 +M9NFC0 Troponin I 47.24 15 56 5 1489505.4185 14 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 74735.651 4 +M9NFH3 Lasp, isoform D 39.01 10 22 1 91879.6867 3 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 397616.0774 19 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 5632.043 1 +M9NH07 Upheld, isoform N 45.43 30 106 0 10469132.7572 95 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 210666.7576 13 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 126598.47469999999 6 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 725634.0532 33 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 4862.344 1 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 72029.7659 5 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 3748.1726 1 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 4032460.3734 120 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 0.34 1 1 0 2310.53 1 +M9PBM3 Cysteine protease 8.54 3 5 0 18478.2027 4 +M9PBN2 Apolipoprotein D 20.82 3 10 0 305785.9181 8 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 479119.88827 23 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 5963.940500000001 2 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 88739.23136 5 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 379614.7283 17 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 704703.83756 19 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 22126.29434 4 +M9PBW9 Rhea, isoform G 6.64 17 18 0 220133.7276 18 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 203482.068 10 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 26444086.96288 182 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 51586.24 2 +M9PC74 Reticulocalbin-3 23.01 10 15 0 385478.64716 14 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 5112.41725 2 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 31218.197999999997 2 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 14711.509 1 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 15654.247800000001 4 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 167232.02300000002 7 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 99129.32306 11 +M9PCI1 Uncharacterized protein, isoform B 2.85 2 2 0 3105.9263 2 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 39253.663400000005 3 +M9PCT7 Bunched, isoform O 16.15 3 5 1 9332.721 1 +M9PCU0 FI21215p1 30.84 38 66 1 27373.215 1 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 178539.65780000002 10 +M9PD73 TEP1-F 23.71 32 47 0 1457855.9604 44 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 720585.37 18 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 91920.23550000001 2 +M9PDB2 Varicose, isoform E 7.69 5 5 0 36185.071899999995 5 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 683545.84627 30 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 16533.918 1 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 43096.5573 5 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 46688.948300000004 2 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 89260.606 6 +M9PDU4 Acyl carrier protein 18.23 4 29 2 4322992.1395 27 +M9PDV2 Tetraspanin 12.89 3 3 0 15671.146 2 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 425978.36263 35 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 185983.41640000002 11 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 5007727.8397 58 +M9PE32 Fife, isoform D 12.56 14 19 0 154208.49592000002 16 +M9PE35 RabX6, isoform B 8.11 2 2 0 8347.865300000001 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 3839.2642 1 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 9570.54816 2 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 19967.381 5 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 22648.6563 2 +M9PEC1 IST1 homolog 21.0 7 10 0 192495.9436 9 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 276648.3847 11 +M9PEG1 Uncharacterized protein 27.38 16 49 16 1291841.9047 49 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 2670846.24132 196 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 76329.7894 6 +M9PEL3 Quemao, isoform C 23.62 7 9 0 114701.06863 8 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 87782.28898 4 +M9PET3 Simjang, isoform D 2.38 2 2 0 1485.1537 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 8095.755 1 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 5848.359 1 +M9PF16 Spectrin beta chain 24.44 59 123 3 3203911.54946 113 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 975582.04677 24 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 29116.778 2 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 62057.20020000001 7 +M9PFH7 Tartan, isoform B 2.53 2 3 0 12491.3548 2 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 27483.543960000003 3 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 12320.280200000001 2 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 50363.436 2 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 10877.59842 4 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 272603.9193 10 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 94159.2961 8 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 59475.6256 4 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 11366499.67008 183 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 90739.0482 5 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 53997.276699999995 4 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 555587.89938 10 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 8689.508 1 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 160084.3067 13 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 31072.120000000003 2 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 383694.5171 21 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 325608.76705 20 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 20972.3067 2 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 84276.1977 9 +M9PHX2 Visgun, isoform E 3.82 1 1 1 14050.608 1 +M9PI33 Inositol oxygenase 11.64 2 2 0 46716.768500000006 2 +M9PI51 Dual specificity protein phosphatase 15 2.24 1 1 0 502.29218 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 22046.1207 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 42140.2159 3 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 223494.354 4 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 26495.864999999998 2 +M9PJQ5 Troponin I 45.65 14 66 0 546436.7292000001 14 +O15971 LD39986p 30.39 7 26 4 135026.4148 7 +O16158 Calcium-binding protein 48.91 7 30 7 2165510.6962 26 +O17452 LD20793p 27.83 6 17 4 468843.6436 15 +O18332 FI01544p 60.98 11 51 9 1350059.92557 44 +O18335 Rab11 57.94 14 57 14 3343062.1911 56 +O18336 Ras-related protein Rab-14 39.07 8 16 1 250675.7405 13 +O18338 LD44762p 23.19 5 23 0 426.97656 1 +O44226 Elongin-B 97.46 10 30 10 1492937.2872000001 25 +O44434 QKR58E-3 24.92 7 8 5 124239.93400000001 6 +O46048 EG:133E12.4 protein 0.47 1 1 0 1661.5293 1 +O46052 EG:152A3.3 protein 12.67 4 5 1 24117.127099999998 4 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 1431094.01505 44 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 30834.416 1 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 198427.2904 8 +O61604 Fimbrin 37.34 25 48 3 1997035.4315 46 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 47727.9398 6 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 28599.630400000002 3 +O76521 Importin subunit alpha 5.52 3 5 3 65976.697 3 +O76752 Sepiapterin reductase 28.74 7 12 7 345465.854 11 +O76877 EG:132E8.3 protein 20.62 3 4 3 341293.99199999997 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 3183012.1793000004 25 +O77259 EG:115C2.5 protein 4.0 1 1 0 27851.48 1 +O77425 Ribokinase 3.29 1 1 1 12112.007 1 +O77430 GEO01111p1 71.6 13 21 12 829850.0429 18 +O77434 EG:34F3.8 protein 39.34 7 15 1 189801.62589999998 13 +O77477 LD24471p 28.57 10 11 10 138336.65159999998 10 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 32784.99 2 +O96692 small monomeric GTPase 21.98 4 7 1 106146.43415 7 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 130848.691 4 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 7872.5461 2 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 10588.244200000001 2 +O97059 Ccp84Ab 36.2 6 6 0 288625.8078 5 +O97062 Ccp84Ae 75.96 13 31 13 521110.70285 28 +O97064 Ccp84Ag 37.17 5 9 5 62726.0066 5 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 12698.512 1 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 1566122.0566999998 24 +O97111 LD29223p 11.97 4 4 4 48143.936 4 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 7648.645 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 48957.6691 2 +O97365 BM-40 24.01 7 7 7 263244.871 6 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 1638933.5279 35 +O97428 Ciboulot, isoform A 29.46 4 5 1 44290.0468 4 +O97454 Protein BUD31 homolog 19.44 3 3 3 30398.371000000003 2 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 365289.4082 19 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 4793.1255 1 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 9969865.91215 62 +P92181 Cuticle protein DCP2 37.61 4 8 4 103363.9792 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 28569.5294 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 2893011.8544 45 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 237387.2866 8 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 63708.99 3 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 1761898.61491 84 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 10141.833 1 +Q0E8P5 FI05614p 19.04 11 19 11 94691.15974 15 +Q0E8S7 Homer, isoform E 30.13 14 34 1 1697424.66 33 +Q0E8U4 FI09636p 20.0 6 7 6 151870.492 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 555664.7105 18 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 48164.7915 3 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 2929791.3137 42 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 797787.76704 19 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 430071.99555 21 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 6157.15014 3 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 994909.49382 54 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 564979.2705 19 +Q0E9G4 CG1600-PA 3.41 1 3 0 44318.979699999996 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 208374.03016 15 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 2947.3428 1 +Q0KHR7 Septin 15.46 9 14 0 347549.5684 13 +Q0KHX7 FI18193p1 6.03 7 7 0 82886.4506 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 7339208.9531000005 105 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 85935.783 4 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 136634.89127 14 +Q0KI39 FI16806p1 18.15 3 6 1 22860.0746 4 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 481700.5616 17 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 71004.1761 9 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 90262.8 4 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 8788.8579 2 +Q1RL12 IP16413p 54.97 15 74 2 106101.083 3 +Q24090 GH08712p 7.57 3 3 3 44324.49 3 +Q24253 AP complex subunit beta 20.2 15 23 15 652064.23383 22 +Q26459 EN protein binding protein 18.26 9 16 0 272293.9523 15 +Q29QY7 IP15859p 9.86 1 1 0 79823.29 1 +Q2MGK7 GEO13330p1 20.47 3 5 3 134598.032 5 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 5446.751 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 36766.012 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 8665579.27924 109 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 42044.6804 4 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 293897.67274 9 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 15750.444599999999 3 +Q4QQ49 IP09595p 2.7 1 1 1 21122.5 1 +Q4QQ70 IP09819p 18.42 6 7 6 61331.8211 6 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 21877.6333 3 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 16038.878 2 +Q4V619 IP07950p 6.9 2 3 0 37367.4756 3 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 260941.48849999998 5 +Q500Y7 GEO11443p1 87.72 4 40 4 943525.3549 38 +Q59E01 FI02065p 3.0 2 2 0 2470.09402 2 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 35199.2083 3 +Q5BIA9 RE10908p 2.48 1 1 1 1628.4998 1 +Q5LJT3 MIP01391p 10.93 2 5 2 100929.792 5 +Q5U124 alpha-glucosidase 17.62 10 18 0 372796.3588 17 +Q5U126 GEO11286p1 59.42 7 37 7 3237134.5294 36 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 256151.72394 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 58903.1685 6 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 864346.3496 29 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 69940.709 2 +Q6IGN6 HDC05827 42.05 4 5 4 109770.605 4 +Q6IGW6 GEO13367p1 44.23 2 4 2 60682.261 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 2072434.281 14 +Q6IIF2 GEO11103p1 7.14 1 1 1 14040.078 1 +Q6IL43 GEO11093p1 13.25 1 2 1 118595.26500000001 2 +Q6NL44 GH28815p 20.08 8 10 8 92131.521 10 +Q6NLJ9 AT19138p 38.64 2 2 2 28149.459 2 +Q6NMY2 RH54371p 21.43 5 27 5 1297869.2525 22 +Q6NNV2 RE44043p 5.81 2 2 0 151244.477 2 +Q6NNV7 RH03309p 36.84 7 23 1 1102771.7889 20 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 28772.546000000002 2 +Q6NP72 GEO09659p1 33.33 4 16 4 766971.1938 16 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 32438.8945 2 +Q76NR6 Regucalcin 83.07 23 133 0 10612006.76749 120 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 262175.13485 13 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 265287.289 13 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 1451489.3897000002 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 12471.9511 2 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 728639.6434000001 18 +Q7JQX9 FI14001p1 4.33 4 4 0 26838.4045 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 5945395.87656 97 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 264436.3139 7 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 28623.5252 3 +Q7JRF1 RE48509p 6.5 2 3 1 15677.544999999998 3 +Q7JRH5 RE28271p 1.31 1 1 1 16121.876 1 +Q7JRL9 GH25289p 67.12 10 52 1 3284668.0894 46 +Q7JRN6 GH06388p 6.73 2 2 2 17320.400999999998 2 +Q7JS69 FI04632p 35.69 10 68 1 881922.593 8 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 19080.6906 3 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 1383731.5444999998 24 +Q7JV09 GH28348p 4.84 5 5 2 26517.8098 5 +Q7JV69 SD11922p 11.76 4 9 4 151829.20006 8 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 12486.501 3 +Q7JVH6 LD24696p 47.27 12 27 11 416126.91523 18 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 100845.7735 8 +Q7JVK6 Translin 24.26 6 8 6 147647.257 8 +Q7JVK8 GEO08987p1 53.42 7 13 7 917558.2376 13 +Q7JVM1 GH25962p 22.64 5 6 5 51079.7492 4 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 160814.10124 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 152908.8666 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 70180.795 4 +Q7JW48 RE12410p 5.57 2 2 2 3522.873 1 +Q7JWD6 Elongin-C 46.15 5 17 5 1770400.5717 17 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 1317476.2813 28 +Q7JWH5 RING-box protein 2 27.43 2 3 2 44637.5855 3 +Q7JWQ7 RE01730p 5.34 2 3 2 15671.6352 3 +Q7JWU9 AT07420p 19.68 5 5 5 31603.6924 3 +Q7JWX3 GH10112p 22.48 7 11 7 241938.0783 11 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 117467.8733 5 +Q7JX94 Phospholipase A2 15.61 3 3 3 12197.2955 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 111284.7212 7 +Q7JXB9 Endonuclease 10.65 3 3 3 76895.1515 3 +Q7JXC4 CG6459 protein 33.46 6 38 6 2649838.4357000003 37 +Q7JXW8 Off-track2 4.39 2 2 2 15010.0023 2 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 102124.11480000001 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 661821.7949999999 8 +Q7JYW9 Phosphotransferase 19.38 9 13 9 230080.20494 13 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 37198.434499999996 5 +Q7JYZ0 lysozyme 39.13 4 9 4 291055.77453 9 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 282689.34655 17 +Q7JZB1 RE49860p 2.09 1 1 1 5854.4136 1 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 1568046.5822700001 29 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 3267.6922999999997 2 +Q7JZE1 Peroxin 11 6.22 2 2 2 61476.506 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 136180.14299999998 3 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 3823509.27596 33 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 203425.89333 13 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 740432.1095 23 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 1957182.036 17 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 28037.110999999997 4 +Q7K076 GEO08269p1 22.14 2 2 0 22685.924 1 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 12206026.31181 134 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 30368.766 1 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 1426428.4736300001 37 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 68199.22006 5 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 71293.659 3 +Q7K0S1 LD39211p 1.83 1 1 1 2860.9866 1 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 367951.9203 23 +Q7K0S6 LD36817p 19.03 8 9 8 192690.5295 9 +Q7K0W4 LD27203p 46.95 14 45 14 2800477.3355 43 +Q7K0X9 LD23667p 23.4 5 12 5 130928.4607 11 +Q7K127 Alpha-galactosidase 15.83 7 17 7 293518.93551 16 +Q7K148 Proteasome subunit beta 22.34 6 8 6 114183.05405 8 +Q7K159 LD06557p 22.47 5 6 5 78228.5126 6 +Q7K180 LD02709p 22.5 11 14 11 145555.62161 12 +Q7K188 GEO05126p1 30.97 6 40 6 3158868.70667 37 +Q7K1C0 GH23780p 50.5 6 11 1 136131.9147 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 137390.354 5 +Q7K1C5 GH21176p 9.19 6 7 6 301528.91699999996 6 +Q7K1H0 GH09096p 20.06 7 8 6 87709.2095 7 +Q7K1M4 SD04017p 16.99 5 12 5 132628.6436 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 129444.24100000001 5 +Q7K1W5 LD35843p 30.05 12 20 12 783966.0199 20 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 44502.728299999995 2 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 837309.4437 26 +Q7K2E1 LD05247p 18.9 10 15 10 265382.24935 12 +Q7K2L7 GH27120p 28.14 4 11 4 841966.8608 11 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 40319.350999999995 3 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 24463.097 2 +Q7K2P3 GH20817p 58.7 13 31 1 586913.4025 23 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 165186.36952 7 +Q7K2W6 tyrosinase 22.32 13 21 13 137824.61326 16 +Q7K332 GH17623p 23.43 6 10 5 228491.85564999998 9 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 267960.5317 12 +Q7K3E2 LD34147p 59.21 30 59 30 1767060.1506999999 55 +Q7K3H0 LD28067p 1.44 3 3 0 61380.807 3 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 1405113.75 35 +Q7K3N4 GH26015p 14.95 6 7 6 140287.96147 7 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 88383.5854 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 192439.233 11 +Q7K3W4 GH08941p 25.85 8 20 8 793279.33685 20 +Q7K3Y9 Spondin-1 1.26 1 1 1 429.7472 1 +Q7K3Z3 GH01724p 51.6 16 44 16 1053456.55103 40 +Q7K485 Cathepsin D 35.71 9 36 9 1091963.30294 30 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 67610.5955 4 +Q7K4J7 LD36653p 7.38 2 2 2 12464.7518 2 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 4109.8 1 +Q7K4T8 LD23856p 6.55 3 4 3 16619.7782 2 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 32713.5867 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 72443.9195 9 +Q7K519 GH16429p 17.66 5 8 5 65971.36515 7 +Q7K533 GH14572p 6.14 2 2 2 31491.513899999998 2 +Q7K549 GH13040p 18.08 8 8 8 62329.2201 8 +Q7K561 GH11294p 6.82 2 2 2 3084.9126 1 +Q7K568 GH10642p 8.33 3 3 3 33142.2334 3 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 1259356.20238 47 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 390282.7068 11 +Q7K5M6 GH04176p 20.95 6 11 6 227700.4189 10 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 412404.22594000003 23 +Q7K860 FI07231p 39.22 7 12 7 872285.562 11 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 318521.6899 13 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 2648.8930499999997 2 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 36571.208999999995 4 +Q7KK90 GH14654p 55.8 9 28 9 2168020.6418 24 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 368781.4924 17 +Q7KLE5 Amphiphysin 49.67 26 71 3 2985398.3884 62 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 97113.704 10 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 759206.6096999999 11 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 227126.727 7 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 48233.2434 3 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 564579.01 21 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 1754634.9435 53 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 86642.243 5 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 801992.5783 35 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 5296004.44301 102 +Q7KND8 FI09619p 3.7 3 3 3 72796.251 3 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 666438.2956000001 13 +Q7KRT4 GH07253p 4.94 2 2 0 7976.155000000001 2 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 28354.20522 4 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 50697.3783 6 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 357742.038 10 +Q7KSE4 GH05443p 2.78 2 2 2 19039.055 2 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 953923.7096 15 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 1801331.2618 23 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 30290.077 2 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 11534.5084 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 661275.7253 21 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 1707826.7999 43 +Q7KT58 GH08155p 3.52 2 3 2 34291.665 3 +Q7KT70 FI18641p1 2.93 3 3 3 18945.42 3 +Q7KTA1 HL01444p 17.1 7 10 7 187109.819 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 350246.2408 24 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 4179466.0176 62 +Q7KTN9 FI01009p 3.11 2 2 0 13171.0266 2 +Q7KTP7 LP22840p 31.49 5 7 5 245983.8795 7 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 2428731.71815 58 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 564252.951 16 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 764156.4961999999 24 +Q7KUD4 phospholipase A2 2.93 3 3 0 7425.642599999999 2 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 1945568.96074 14 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 56234.7995 3 +Q7KUT5 Protein MIX23 26.89 4 6 0 88917.30425 6 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 180916.069 6 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 44817.455 2 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 453180.1252 18 +Q7KV27 alanine transaminase 51.76 27 130 0 9212376.0831 121 +Q7KV34 Pinkman 38.9 26 40 26 1681051.8000999999 39 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 14998.377 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 9761.012 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 121424.149 15 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 37278.117 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 7902930.0229 83 +Q7KY04 small monomeric GTPase 21.13 4 7 3 14626.9015 2 +Q7PL91 GEO11417p1 19.15 3 8 3 742773.2788999999 7 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 13893.7525 2 +Q7PLI0 P120 catenin 15.62 12 15 12 249723.874 13 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 445560.931 14 +Q7PLS1 LD01937p 15.76 6 8 0 119739.1275 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 136093.8125 6 +Q7YU88 SD08871p 2.84 3 3 0 6252.298940000001 3 +Q86B44 Glutathione synthetase 13.17 8 13 0 214203.3684 10 +Q86B74 WASp, isoform C 12.55 5 5 0 55684.99393 5 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 65233.021100000005 4 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 16254.883 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 299894.0736 21 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 214627.556 9 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 341928.57279999997 16 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 680496.8151 15 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 1818216.9267 15 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 785248.6005000001 25 +Q86BS3 Chromator, isoform A 28.19 21 40 21 709609.72448 33 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 76047.70270000001 6 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 610778.58286 21 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 28949.109 3 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 114921.155 4 +Q8I0D4 RE20510p 28.36 21 42 0 1361035.4 39 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 38766.1616 3 +Q8I0P9 acid phosphatase 1.76 1 1 0 33329.816 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 556523.3375 18 +Q8I930 GH14147p 2.22 1 1 0 12981.132 1 +Q8I941 GH16843p 35.59 10 23 10 795830.8044 23 +Q8IGY1 RE08101p 30.52 35 241 0 24323801.4793 116 +Q8IH23 GEO02102p1 20.74 4 12 4 449911.98199999996 11 +Q8IM93 FI18814p1 37.97 17 28 17 543941.8595 25 +Q8IMF4 RE24176p 5.23 3 5 0 53261.3782 5 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 552084.2831 27 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 59813.120800000004 4 +Q8IMQ8 RH29536p 42.94 12 32 0 1112180.36024 31 +Q8IMT3 IP12392p 6.19 3 3 2 47013.556000000004 3 +Q8IMT6 FI01822p 8.29 4 5 4 63504.741 4 +Q8IMU2 RE10237p 6.53 2 2 0 38984.8431 2 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 20160.7488 2 +Q8IMX4 FI04408p 6.6 2 4 0 17021.3839 4 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 103104.879 5 +Q8IN49 MIP05539p 9.17 8 10 8 100166.3805 9 +Q8IN51 FI17609p1 37.59 7 17 7 214887.73004 17 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 105155.539 3 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 27355.917699999998 2 +Q8INH5 Aminopeptidase 7.53 7 8 0 68286.4111 8 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 23355.6008 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 6593.0166 1 +Q8IP52 RE16941p 2.66 3 3 3 17471.3873 3 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 110157.5527 8 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 452441.50126 21 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 66566.76969999999 2 +Q8IP97 Peroxin-19 52.05 11 27 11 620819.8403 23 +Q8IPA5 RE15581p 5.36 1 2 0 27959.928999999996 2 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 154321.959 2 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 261327.6577 10 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 2068874.3477100001 72 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 58701.1244 4 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 37751.409 3 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 653432.7965 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 14771.202 1 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 139397.6736 6 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 24692.245 2 +Q8IPT9 SD05439p1 43.49 11 21 0 674108.9077000001 15 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 1234224.6536 32 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 37976.5467 6 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 18120.900999999998 2 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 12621.691900000002 2 +Q8IQB7 MIP21654p 9.44 3 4 3 54419.741599999994 3 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 32251.2136 4 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 62677.064 3 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 33364.746 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 88190.29535 7 +Q8IQH0 FI12817p 5.37 8 8 1 52038.394199999995 7 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 111996.94700000001 7 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 5222.2056 2 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 390937.0756 23 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 70563.81 2 +Q8IQW5 RE23625p 73.96 13 69 3 3389066.05054 57 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 55873.0652 4 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 9260.3933 3 +Q8IR76 FAD synthase 17.35 5 5 0 45945.970499999996 4 +Q8IRD0 RH17559p 40.82 2 7 2 109520.054 6 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 6017876.4751 61 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 171461.5866 16 +Q8IRI5 Trio, isoform D 10.7 8 10 0 148307.0127 10 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 11258230.33701 140 +Q8MKJ5 GEO08105p1 13.27 1 1 1 3048.5815 1 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 21310.702 2 +Q8MLP9 GEO08457p1 33.93 4 5 4 52610.9107 5 +Q8MLQ0 FI14118p 21.05 2 4 2 106107.3146 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 575862.1725 14 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 213315.53282 13 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 557420.7864 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 3318322.20369 76 +Q8MQP2 MIP16184p 7.0 2 2 0 18410.053 2 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 9725.58 2 +Q8MRM0 GH16740p 35.44 8 18 8 625852.46853 18 +Q8MRT7 SD26038p 9.2 2 2 2 30211.623 2 +Q8MRW1 SD19278p 5.83 1 1 1 4651.218 1 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 14431.013299999999 3 +Q8MSI2 GH15296p 82.01 19 124 19 24416598.9799 109 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 19617.801 3 +Q8MST5 Tubulin beta chain 45.08 17 105 0 467078.3318 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 3020723.09976 62 +Q8MZ07 GEO07581p1 17.81 3 5 3 83908.106 5 +Q8MZI3 RNA helicase 18.34 13 16 3 127308.2445 12 +Q8SWS2 RE29468p 60.95 6 30 0 755039.9081 25 +Q8SWS3 RE26528p 20.44 2 4 2 54456.3025 4 +Q8SWZ6 RH51312p 8.33 2 2 2 33353.8967 2 +Q8SX06 GEO08318p1 16.67 2 3 2 54604.334 3 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 31572.43 3 +Q8SX35 GEO07743p1 26.53 3 4 0 44548.9531 4 +Q8SX50 RE04530p 17.3 6 7 0 99920.2158 6 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 59370.168 3 +Q8SX57 LD44221p 47.08 8 17 8 312344.00393 15 +Q8SX78 LD05679p 17.93 7 7 7 57686.9661 7 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 53666.7595 4 +Q8SXC2 FI04487p 9.11 5 5 5 67432.9483 5 +Q8SXD5 GH02216p 55.13 11 33 2 2450417.291 33 +Q8SXE1 RH69521p 2.6 1 2 1 6635.5338 2 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 75934.438 4 +Q8SXF2 RH40246p 7.01 3 4 3 74234.622 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 15328.4519 2 +Q8SXK0 RE18748p 2.91 1 1 1 7574.1875 1 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 342045.81263 21 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 4936.9795 1 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 394680.80037 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 12812.575840000001 4 +Q8SXS0 RE40914p 12.25 5 5 5 30308.15 3 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 1040564.79314 19 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 3292.5799399999996 2 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 76559.53 1 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 8862.78766 3 +Q8SY67 lysozyme 14.47 2 3 2 17508.3615 2 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 381905.187 6 +Q8SYC4 RE68566p 1.72 1 1 1 36702.168 1 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 2398665.5640000002 52 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 805846.874 18 +Q8SYH8 RE57644p 18.68 5 10 1 80708.7141 9 +Q8SYJ2 GEO09626p1 67.47 9 59 9 6629646.39322 57 +Q8SYN0 RE52086p 9.3 4 5 4 32283.07003 4 +Q8SYQ4 RE42475p 70.27 11 44 11 1955441.67847 39 +Q8SYQ8 RE40412p 19.85 3 3 3 63727.683 3 +Q8SZK5 RH26533p 10.29 3 3 3 49152.6985 3 +Q8SZK9 HL04814p 48.48 12 60 12 4127360.6574 55 +Q8SZM2 RH04334p 25.19 7 27 7 1858345.615 26 +Q8SZN1 GEO08217p1 51.61 7 29 3 1041258.7153 28 +Q8T0I9 GH27479p 16.47 7 12 1 385936.60585 10 +Q8T0J5 GH26851p 41.11 12 33 0 1568660.901 30 +Q8T0N5 GH17516p 19.21 6 9 6 396800.067 8 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 98608.9352 9 +Q8T0V2 GH02495p 19.91 8 13 0 160123.4975 10 +Q8T389 Endophilin B 40.74 15 54 0 5567.355 1 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 24394.2074 3 +Q8T3W8 Venom allergen-1 9.54 3 3 0 45822.949 3 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 5557.5527 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 910134.9039 34 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 2800521.4313 57 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 34896.746 3 +Q94513 Boundary element associated factor 18.79 5 10 1 168317.8907 9 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 85353.73697 7 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 18116.5703 2 +Q95NU8 GH16255p 13.57 8 12 8 170952.77498 11 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 4731.685 1 +Q95PE4 GEO07784p1 6.17 1 1 1 14994.935 1 +Q95R34 GH16463p 9.71 3 3 3 54012.136 3 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 83806.5365 3 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 81505.64850000001 5 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 20766882.24635 140 +Q95RC5 LD44506p 5.31 3 3 3 29167.288999999997 3 +Q95RE4 LD37574p 41.48 11 18 0 65747.11829 12 +Q95RF6 LD34461p 34.5 4 13 4 253135.07533 11 +Q95RI2 LD28549p 27.78 8 12 8 228276.9314 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 42249.7021 4 +Q95RQ1 LD16414p 3.32 2 2 2 11287.114 1 +Q95RR6 LD15002p 64.6 17 61 0 138233.43 2 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 107274.2138 7 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 565040.6 2 +Q95RY2 LD01461p 48.09 10 18 2 509530.0174 13 +Q95SH0 GH26463p 1.52 2 2 2 14688.0625 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 443624.0721 12 +Q95SH7 GH26007p 8.57 2 3 2 41185.542 3 +Q95SI7 GH23390p 65.87 15 59 15 2522760.96555 55 +Q95SN8 GH12395p 21.83 5 8 5 214777.70690000002 8 +Q95TK5 LD44914p 22.77 9 11 8 120528.1125 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 1113845.9607 31 +Q95TP0 LD34582p 3.1 1 1 1 9912.545 1 +Q95TZ7 GH19182p 78.36 26 115 0 5107653.2473 87 +Q95U15 GH14252p 75.64 27 227 0 5358785.98146 33 +Q95U34 GH11113p 22.45 11 21 11 665414.02374 19 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 231708.234 8 +Q960D4 SD06560p 25.8 16 21 1 390876.86907 20 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 8345051.23214 79 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 408855.5818 24 +Q961A8 LD25351p 1.59 1 1 0 1872.1348 1 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 96625.18 4 +Q961B9 LD24073p 6.28 3 4 3 43485.8471 4 +Q961C8 LD22649p 10.93 4 5 0 22901.43794 4 +Q961E7 phosphorylase kinase 7.16 4 5 1 29552.3327 3 +Q961Q8 GH10454p 6.42 3 3 3 44336.3924 2 +Q961T9 GH07914p 29.41 6 10 6 342241.008 10 +Q961X4 Combover, isoform B 11.74 9 14 0 142029.81235 14 +Q966T5 Paxillin, isoform D 28.93 7 18 3 156978.65279999998 4 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 91447.43296 5 +Q9I7I3 GH12831p 9.56 3 3 3 39115.7604 3 +Q9I7J0 GH21596p 69.23 11 41 11 2014823.9113 33 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 10719.771 1 +Q9I7L9 Uncharacterized protein, isoform A 4.28 1 1 0 1008.0956 1 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 873263.6193 19 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 1496538.83709 26 +Q9NCC3 Sorting nexin 9.03 5 7 5 116939.93000000001 7 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 141282.5209 4 +Q9NG60 Eukaryotic translation initiation factor 2D 3.37 1 1 1 1671.3258 1 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 310576.196 6 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 134276.84467 14 +Q9U6P7 FI18813p1 11.39 5 8 5 163585.21443 7 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 2369235.20313 57 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 45550.801999999996 4 +Q9V393 Kurtz arrestin 9.57 4 5 4 49363.0913 5 +Q9V396 Carbonic anhydrase 64.44 15 34 15 2006992.12307 33 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 55035.012 3 +Q9V3C8 DShc protein 1.71 1 1 1 13718.341 1 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 115129.6367 10 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 55376.01 3 +Q9V3E7 LD24793p 39.85 12 24 12 478837.80699 23 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 3334.994 1 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 502133.5199 13 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 3106.358 1 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 52853.352 2 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 265178.9695 13 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 1276551.13907 45 +Q9V3N9 B6 1.79 1 1 1 23954.25 1 +Q9V3P3 LD45860p 35.1 9 21 9 635194.8375 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 84772.7722 4 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 10182.969700000001 2 +Q9V3T8 LD32469p 14.36 3 3 3 36452.2057 3 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 1781478.8359 32 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 1070330.1624 30 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 2934443.29524 47 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 678859.15375 25 +Q9V3W2 GM23292p 61.68 14 52 14 2364671.31935 48 +Q9V3W7 LD40489p 47.45 11 20 11 151623.98268 14 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 424132.4966 24 +Q9V3Y4 LD43650p 8.23 2 3 2 9076.317 1 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 1346608.94642 32 +Q9V3Z4 GH11341p 27.89 14 24 14 535376.0761 19 +Q9V3Z9 HL02234p 42.6 15 43 15 3368680.16664 35 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 24689.2353 3 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 933062.5644 29 +Q9V406 Activator protein 4 9.35 6 8 6 157509.4167 8 +Q9V420 FI02878p 19.66 7 10 7 189860.90279999998 8 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 589972.7859 13 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 45078.265400000004 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 1087681.8377 21 +Q9V455 Importin subunit alpha 19.84 9 23 9 790358.0724000001 23 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 981648.00075 39 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 1501086.94292 59 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 2033069.90937 54 +Q9V4E0 Complex I-49kD 33.97 12 20 11 476662.7032 20 +Q9V4E7 Transporter 3.46 3 4 2 32622.0711 3 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 390032.6826 12 +Q9V9Q4 LD43819p 34.18 13 24 13 965089.00463 23 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 166660.0769 5 +Q9V9T5 GM14617p 2.44 2 2 0 13250.7666 2 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 20906.642 2 +Q9V9U0 RE35358p 10.11 2 3 2 94580.844 3 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 252345.942 9 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 4209.1074 1 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 498460.35544 16 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 1852216.5682 25 +Q9V9W4 GH08048p 1.69 1 1 1 3933.2441 1 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 60094.5557 5 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 44541.2736 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 2672277.8403000003 58 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 82972.6241 7 +Q9VA34 LP06141p 2.47 3 4 3 26148.287 4 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 236302.89909999998 15 +Q9VA41 GEO08227p1 52.87 7 17 3 113685.2888 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 1304176.2252 24 +Q9VA56 GH23271p 54.34 20 59 1 5966.974 1 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 49867.7673 4 +Q9VA71 FI19924p1 7.86 3 3 3 716.16657 2 +Q9VA76 IP18706p 16.71 5 7 5 44733.6727 6 +Q9VA81 GEO10172p1 13.57 2 3 2 41299.674999999996 3 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 15657.994100000002 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 430778.89495 13 +Q9VAA6 GEO12235p1 19.62 3 4 3 69553.2323 4 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 126810.73821 10 +Q9VAC1 GM14349p 62.05 20 122 20 7887392.13469 110 +Q9VAC4 GEO09167p1 55.77 8 20 8 914118.95 20 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 36415.234730000004 5 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 15094.149300000001 3 +Q9VAD7 RH37294p 5.2 1 1 1 1589.0157 1 +Q9VAG3 trypsin 24.11 5 8 5 174788.467 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 347872.1099 17 +Q9VAI9 GEO07291p1 62.25 9 53 5 3871018.33545 48 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 150070.60464 9 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 5364.7281299999995 3 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 1691981.49294 49 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 10704949.1911 96 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 70464.75 4 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 10638.430600000002 2 +Q9VAU6 LD27564p 2.99 2 2 2 13474.2087 2 +Q9VAV2 FI21480p1 13.07 11 15 11 298366.9622 15 +Q9VAY0 Neprilysin 7 3.91 3 3 3 26072.3108 3 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 2157253.3255000003 68 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 44318.244999999995 2 +Q9VAY9 GH07821p 8.65 3 3 3 11403.0606 3 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 1155711.15114 34 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 1677359.7807 44 +Q9VB17 IP11341p 10.74 3 3 3 51673.363000000005 3 +Q9VB22 LD33695p 18.39 9 13 9 109978.32858 13 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 456672.51822 20 +Q9VB51 GEO08385p1 13.33 1 1 1 8003.422 1 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 583247.13577 14 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 41580.216 2 +Q9VB69 Malic enzyme 29.5 16 20 2 322645.373 19 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 42932.5 3 +Q9VB77 IP09938p 7.01 2 5 2 55020.64596 5 +Q9VB79 IP09473p 17.65 6 14 6 268663.70769999997 13 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 1230949.1953 39 +Q9VB86 LP07342p 16.78 3 6 3 34560.2354 5 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 526736.593 21 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 2872.2771000000002 2 +Q9VBC9 Beaten path VII 7.74 3 3 3 51639.7396 3 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 4234271.3318 78 +Q9VBI3 RH72336p 22.66 7 16 7 441258.11386000004 15 +Q9VBL3 GH01188p 5.83 3 3 3 27267.284 3 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 71171.73700000001 2 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 5573.169 1 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 6735037.45102 89 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 67880.93299999999 3 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 1514909.29444 26 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 98504.25159999999 7 +Q9VBT2 IP11926p 4.33 2 2 2 19003.408799999997 2 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 21219.1004 2 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 2575330.439 11 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 134603.5063 4 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 29328.785 1 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 2761485.2616 44 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 29133.130400000002 4 +Q9VC06 LD37516p 15.62 11 15 11 79594.25476 13 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 16266.823 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 304215.6916 27 +Q9VC30 RE05274p 18.28 3 6 3 25764.1609 5 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 324134.3818 8 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 738978.0074 16 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 262276.3766 11 +Q9VC58 Syntaxin-18 4.05 2 2 2 28655.655 2 +Q9VC66 AT25567p 19.46 8 9 8 261542.935 9 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 97748.90786 10 +Q9VC87 RE57978p 2.84 1 1 1 6997.533 1 +Q9VCB9 FI08802p 15.16 4 4 4 147224.597 4 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 7400.4356 3 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 631205.4961999999 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 235067.65625 5 +Q9VCF8 LD23561p 22.64 7 9 7 192612.6937 9 +Q9VCI4 LD32918p 1.13 1 2 1 6197.6157 1 +Q9VCI7 LD02979p 17.15 6 9 1 140878.487 7 +Q9VCK6 LD34157p 18.02 7 8 7 81183.56763 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 38927.71170000001 4 +Q9VCR4 FI17836p1 5.18 4 6 4 46364.003339999996 6 +Q9VCR9 RH48101p 43.21 13 26 13 779197.80765 24 +Q9VCT4 Klingon 4.4 2 2 2 11656.4212 2 +Q9VCU0 GEO02312p1 14.17 2 7 2 262566.36439999996 7 +Q9VCU1 FI07649p 1.31 1 1 1 7890.189 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 38286.478 2 +Q9VCW2 Cardinal 4.82 4 4 4 78261.5765 4 +Q9VCW6 GCS light chain 33.33 11 27 11 1515267.59545 26 +Q9VCZ2 FI07970p 2.48 1 1 1 18243.09 1 +Q9VD00 FI07666p 34.53 8 15 8 517691.7116 12 +Q9VD01 LP12095p 4.55 1 1 1 72398.02 1 +Q9VD02 GH14779p 30.73 4 11 4 334972.4424 11 +Q9VD13 GH02671p 10.79 6 7 0 67571.4323 7 +Q9VD14 GH07286p 9.57 6 9 6 226306.064 9 +Q9VD29 small monomeric GTPase 49.74 9 33 9 1653150.5547 31 +Q9VD30 GH05294p 70.16 12 36 12 1856482.78045 33 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 26568.359 3 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 5836971.81568 90 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 48554.8003 5 +Q9VD68 GH19849p 6.84 3 3 3 37247.605 3 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 94481.072 2 +Q9VDC0 GH01837p 24.0 5 14 5 303144.5601 14 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 8624.49 1 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 96950.33 1 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 649312.359 15 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 1678114.95486 13 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 434869.32044 18 +Q9VDH3 GH08630p 55.7 12 33 12 1230514.598 30 +Q9VDI1 LD46328p 48.58 21 60 0 1758382.5451 53 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 51422.541 5 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 169061.1544 11 +Q9VDK2 GH15831p 1.18 1 1 0 7355.8813 1 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 245667.7368 20 +Q9VDK9 GH12359p 4.71 3 3 3 20614.89585 3 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 75005.29400000001 4 +Q9VDL5 GEO09602p1 13.43 1 1 1 19022.754 1 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 385826.0544 14 +Q9VDQ3 Identity crisis 6.14 3 3 3 30012.868599999998 3 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 794432.0739 22 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 8191.79 1 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 862569.2584 18 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 5034.649 1 +Q9VDU7 nicotinamidase 21.57 7 17 7 368125.2678 16 +Q9VDV2 AT06125p 6.34 3 3 2 43647.244999999995 2 +Q9VDY8 MIP08680p 65.44 17 56 1 2636032.03346 51 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 2073655.66995 49 +Q9VE08 GH10002p 10.8 2 2 2 79227.2238 2 +Q9VE12 LD27322p 8.02 3 3 3 65779.37700000001 3 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 84208.053 5 +Q9VE31 GEO12059p1 9.91 1 1 1 1829.8425 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 89601.803 6 +Q9VE56 FI17806p1 11.22 3 3 3 196599.778 3 +Q9VE57 GEO10850p1 5.52 1 2 1 38315.316 2 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 82009.0645 4 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 49511.739499999996 6 +Q9VE94 LD14127p 5.73 2 3 2 25030.35147 3 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 245978.6754 8 +Q9VEA7 FI01460p 8.99 1 3 1 141791.725 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 34570742.1796 254 +Q9VEB7 AT04491p 2.05 1 1 1 36097.453 1 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 136682.5056 6 +Q9VEC8 RE23139p1 26.92 4 5 4 140092.52399999998 5 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 38403.885 4 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 2976.94776 2 +Q9VEG8 RE59232p 13.2 3 5 3 90926.8915 5 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 74899.5648 2 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 955913.0281000001 25 +Q9VEJ9 Curly Su 4.52 3 3 3 26313.657 3 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 33064.0607 3 +Q9VEK8 GH07711p 35.28 12 21 12 787271.1913 21 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 198314.66382000002 15 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 14766.761 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 42346.4795 3 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 789827.2032999999 21 +Q9VEP8 GH11385p 13.77 10 12 10 251968.88499999998 12 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 210028.8339 12 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 102352.2602 5 +Q9VES8 RE28913p 26.26 8 9 8 401806.41130000004 9 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 31315.78 1 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 392188.47336 19 +Q9VEV6 Uncharacterized protein, isoform A 3.5 1 1 0 643.45435 1 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 34690.2007 3 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 15558.8525 2 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 168545.4061 17 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 21424.681 3 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 1884187.94815 43 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 138422.6313 9 +Q9VF15 GEO09476p1 65.36 10 39 7 1696263.6328 36 +Q9VF23 arginine kinase 3.28 2 2 2 58380.71000000001 2 +Q9VF24 Crossveinless d 5.17 8 10 8 108625.9996 8 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 351148.558 9 +Q9VF39 FI01459p 15.0 6 10 6 96915.9735 8 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 200990.2055 12 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 90751.00200000001 5 +Q9VF77 FI16517p1 13.42 5 6 5 94267.563 5 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 68799.38 3 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 88298.9905 5 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 173291.4016 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 47886.0605 4 +Q9VFC7 Mf5 protein 78.08 31 236 0 9423762.64135 155 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 10123141.90495 100 +Q9VFI3 GEO08281p1 45.19 3 10 3 124304.88799999999 7 +Q9VFM0 GH19262p 7.14 4 5 4 23792.421799999996 4 +Q9VFN7 GEO07678p1 19.5 3 9 3 394431.684 9 +Q9VFN9 GEO07882p1 41.94 6 7 6 113973.09649999999 7 +Q9VFP0 RH07106p 23.51 8 9 8 93786.12789999999 9 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 1070004.77936 23 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 472510.6719 15 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 17968.2056 3 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 21560.550000000003 2 +Q9VFT4 AT27578p 13.48 9 12 9 80562.5536 8 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 41573.724 3 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 1809937.2891000002 37 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 95169.3435 3 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 116147.2413 3 +Q9VG01 RE12073p 1.88 1 1 1 10183.307 1 +Q9VG04 Protein MEMO1 5.42 2 2 2 61564.706999999995 2 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 8575.0812 2 +Q9VG23 GH22994p 59.07 11 45 1 3079186.16312 43 +Q9VG26 MIP06012p 30.05 7 25 7 1025185.52948 23 +Q9VG31 Malic enzyme 16.91 13 17 0 561130.136 17 +Q9VG33 Sulfurtransferase 67.27 7 15 7 791859.7980999999 15 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 71459.8151 4 +Q9VG51 Sorting nexin-3 34.13 7 25 7 712782.953 19 +Q9VG62 Toys are us 6.19 3 3 3 44028.712 3 +Q9VG69 LP03547p 35.71 12 26 12 1002158.5959000001 23 +Q9VG81 RH49330p 15.78 7 8 7 35739.9837 7 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 163774.5726 4 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 584215.8753 16 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 6043.0654 1 +Q9VGA3 LD12305p 33.64 7 18 6 499219.4274 16 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 4010.393 1 +Q9VGE4 FI04457p 4.49 6 6 6 41259.2547 4 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 17453.96124 4 +Q9VGF3 IP11040p 9.86 4 5 4 91398.484 5 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 1369231.5314 29 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 372084.378 5 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 139675.318 10 +Q9VGL0 LD43047p 2.84 3 3 3 21022.2516 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 16155634.4195 156 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 57077.71862 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 4843943.744 59 +Q9VGQ8 Arfaptin 11.55 4 5 4 71076.47555 5 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 35495.1165 4 +Q9VGS3 RH44771p 14.04 4 12 4 497029.4695 10 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 3206.4944 1 +Q9VGT3 GM04645p 1.89 1 1 1 2933.8862 1 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 68041.361 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 60367.227 2 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 69390.955 2 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 71207.4546 5 +Q9VGY2 Peptide deformylase 14.71 4 4 3 44558.447 4 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 142615.15504 11 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 73665.414 5 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 249829.26103 10 +Q9VH37 IP06524p 14.29 3 4 3 124987.3067 4 +Q9VH64 LD29322p 26.91 9 14 9 346468.3656 14 +Q9VH66 FI18258p1 27.9 6 12 6 207888.14856 12 +Q9VH72 TA01656p1 37.25 6 14 6 334662.18026 13 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 514970.1414 22 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 32343.1113 4 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 6342.51692 2 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 251694.99599999998 10 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 150124.1043 5 +Q9VHA8 LD25575p 13.05 7 10 7 539511.1271 10 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 681106.4512 17 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 36382.9035 5 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 103482.35710000001 13 +Q9VHC7 FI21236p1 32.28 15 32 8 914855.1463 20 +Q9VHE3 GH05665p 6.25 2 2 2 13118.473999999998 2 +Q9VHE4 omega-amidase 20.85 7 15 7 340217.88659999997 15 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 304593.36 10 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 44800.4776 4 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 45330.14036 4 +Q9VHH8 Beag 6.46 4 4 4 34288.432 4 +Q9VHI1 Hyrax 6.32 3 3 3 19346.7442 3 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 828408.3803 17 +Q9VHJ2 LD32381p 2.65 1 2 1 42921.892 2 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 5824.464 1 +Q9VHJ7 LD41978p 3.96 3 4 3 44734.692 4 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 2128553.97256 42 +Q9VHM3 LD30467p 9.09 4 4 4 26157.429 3 +Q9VHN4 GH14121p 10.92 3 3 3 42798.631 3 +Q9VHN7 transketolase 35.46 19 30 1 806961.5074 25 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 3483.7075 1 +Q9VHR5 Veneno 3.27 2 2 2 995.5013 1 +Q9VHT3 CG9617 protein 23.6 5 7 5 155156.3335 7 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 52717.8534 6 +Q9VHX2 GH08043p 7.23 4 5 4 41248.1444 5 +Q9VHX4 LD24679p 68.09 21 107 21 9257126.30556 97 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 108706.79400000001 5 +Q9VI09 GH14494p 52.48 7 35 7 1353191.71015 33 +Q9VI21 Dementin, isoform D 3.92 3 3 0 21339.3183 3 +Q9VI24 LD25151p 3.61 1 1 1 6857.0215 1 +Q9VI53 LD44267p 9.24 4 6 4 155562.913 6 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 11163.626 1 +Q9VI64 LD30995p 48.16 14 49 14 2105531.7749 44 +Q9VI66 GH28833p 7.57 2 3 2 38836.295 3 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 14349.2875 2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 26575.2267 2 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 19467969.61825 272 +Q9VIF2 GM01519p 9.72 5 6 5 219549.04 6 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 163337.5407 8 +Q9VIH1 CG9273 protein 16.26 4 5 4 44131.3668 5 +Q9VII5 GEO08323p1 20.75 4 7 4 94353.3049 6 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 132189.91 2 +Q9VIJ3 FI14214p 17.78 3 4 1 11029.198400000001 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 2729.7163 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 12564.836800000001 4 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 112989.46377 11 +Q9VIL2 LD19544p 14.9 4 8 4 202031.49539999999 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 236909.88095000002 9 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 78782.688 3 +Q9VIQ5 RH02620p 40.64 8 10 8 202193.26385999998 8 +Q9VIQ6 FI17342p1 4.82 1 2 1 10656.4202 2 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 2059440.2580900001 46 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 16667.4705 4 +Q9VIU3 FI23988p1 4.24 2 2 2 1671.4523 1 +Q9VIV6 GH04973p 11.11 4 6 4 122774.3833 6 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 33303.6486 2 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 788.80286 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 234310.08130000002 7 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 350319.67222999997 11 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 678909.7077 24 +Q9VJ22 GH09876p 8.0 2 2 2 8476.352 1 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 96163.484 4 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 446526.278 10 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 105428.2721 7 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 1113210.687 37 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 197683.387 8 +Q9VJ59 PRA1 family protein 8.7 2 3 2 78144.0816 3 +Q9VJ60 GM16226p 10.28 3 5 3 116718.3438 5 +Q9VJ61 SD03870p 1.64 1 1 1 19992.191 1 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 213606.2374 10 +Q9VJ80 LD42267p 7.96 10 11 10 70840.03844 8 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 66086.29086000001 10 +Q9VJA9 GH07373p 4.86 3 3 0 28279.468 3 +Q9VJC0 GEO08203p1 37.96 5 6 5 89802.4155 5 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 76392.976 6 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 303625.8949 19 +Q9VJD4 LD24721p 32.33 11 29 11 1616529.7072 26 +Q9VJE3 LD24839p 7.67 4 5 4 43583.365 3 +Q9VJH8 FI03416p 2.58 2 2 2 51857.83 2 +Q9VJI5 Protein yellow 9.71 5 6 5 167834.6401 6 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 112895.256 6 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 911690.1089999999 13 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 17275.8585 2 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 268099.33 5 +Q9VJQ3 Protein yellow 25.11 11 28 10 1180670.4842 26 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 11592.06655 3 +Q9VJU6 IP09831p 3.17 1 1 1 15064.71 1 +Q9VJU8 GH23407p 10.27 5 6 5 65024.261360000004 5 +Q9VJZ1 FI21342p1 5.49 3 4 3 49426.3721 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 3615637.14065 34 +Q9VJZ5 LD07294p 26.58 8 10 8 160564.7216 8 +Q9VJZ6 LD40224p 67.13 11 30 11 717561.6318 21 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 405559.5324 12 +Q9VK11 GH15921p 27.51 7 18 7 435467.8209 16 +Q9VK12 GH20621p 62.0 17 84 17 6128426.0488 71 +Q9VK18 LD36945p 6.59 3 3 3 18196.6933 3 +Q9VK19 FI07225p 9.35 2 2 2 17367.25 2 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 32.06 14 22 1 636.2692 1 +Q9VK39 FI09204p 34.91 4 17 4 422363.1447 13 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 6705.62191 5 +Q9VK59 LD23647p 28.63 23 34 23 381401.3841 23 +Q9VK60 GH25425p 58.37 13 49 13 2817291.09645 45 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 876209.1221 38 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 195644.6011 8 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 280332.37919999997 9 +Q9VK99 Atilla, isoform B 51.75 7 32 7 823822.32282 25 +Q9VKA1 FI02817p 15.58 3 3 3 121092.0802 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 17092.085 2 +Q9VKC8 FI03495p 9.17 5 5 5 236728.9005 5 +Q9VKD9 MIP16835p1 1.35 1 1 1 651.3862 1 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 15647057.595280001 296 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 43108.1471 5 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 45799.1441 2 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 8967.561 1 +Q9VKI8 GH03305p 67.77 20 107 20 5938160.9119 100 +Q9VKJ4 Csl4 14.22 3 4 3 83200.4723 4 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 3112642.0718 67 +Q9VKM7 AT01533p 8.57 5 12 1 402992.629 11 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 12522.609 2 +Q9VKQ5 GEO07393p1 6.45 1 1 1 18491.38 1 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 28703.3726 5 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 470875.4414 12 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 18855.979 2 +Q9VKU5 LD37206p 10.09 2 2 2 22102.435 2 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 1461179.4308 37 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 34573.66 2 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 62207.83439999999 4 +Q9VKW1 LD41958p 2.21 1 1 1 5243.3623 1 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 164422.8693 10 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 8033324.729379999 131 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 269102.39389999997 7 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 35099.7474 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 520787.42654 22 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 2112928.0101 42 +Q9VL02 GH08677p 10.57 4 4 1 42122.3795 3 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 132151.7404 10 +Q9VL16 RE45833p 30.77 8 26 8 1695828.744 22 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 5612.301 1 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 24597.3864 2 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 3307.2224 1 +Q9VL57 RE10231p 4.75 3 3 2 43476.077000000005 3 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 99324.33099999999 3 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 180084.08299999998 7 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 2149528.9118 29 +Q9VL70 HL08109p 83.17 25 129 25 9281426.2025 118 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 178676.9095 7 +Q9VL91 LD23102p 1.8 1 1 1 3207.4487 1 +Q9VL93 GEO07195p1 13.64 2 2 2 36859.305 2 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 116661.10399999999 6 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 1816557.0729 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 2515109.7274 67 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 72604.43980000001 5 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 23314.928 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 810208.4323999999 19 +Q9VLP0 IP04187p 11.23 2 5 2 98489.7083 5 +Q9VLP1 GEO08095p1 37.84 6 14 6 369360.1234 13 +Q9VLP2 GEO08076p1 38.1 6 40 6 913028.9192 36 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 270373.3455 5 +Q9VLQ9 Sorting nexin 29.4 14 23 1 808671.25626 21 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 172033.886 4 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 987.9142 1 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 869704.1251000001 32 +Q9VLS5 LD29542p 10.69 5 6 5 37392.767 5 +Q9VLS7 LD21067p 1.88 4 4 0 48996.7306 4 +Q9VLT3 LD23292p 16.59 28 41 28 741011.52546 37 +Q9VLT7 IP17351p 26.92 4 7 4 325361.56169999996 5 +Q9VLU3 IP09231p 5.4 1 1 0 6732.1074 1 +Q9VLV9 Proctolin 20.71 2 4 2 78624.63220000001 4 +Q9VLW8 LD06392p 13.18 3 3 3 11358.9021 3 +Q9VLX6 HL01609p 6.32 2 2 0 62179.317 2 +Q9VLY1 HL02931p 19.01 1 7 1 204829.5259 7 +Q9VLY7 TEP1-F 3.68 6 7 6 62890.183000000005 7 +Q9VLY9 CD109 antigen 29.45 37 61 0 1756541.5566 56 +Q9VM07 RE43931p 27.85 5 11 4 95743.821 6 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 115407.3207 8 +Q9VM11 HL01515p 31.19 9 12 9 331414.0063 12 +Q9VM12 MIP26555p1 29.25 10 25 10 629443.3918 21 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 13354322.799519999 148 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 10156809.15068 77 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 11885.443 1 +Q9VM47 Menin 3.15 2 3 0 5830.9018 2 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 25272.515000000003 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 41064.0762 4 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 232970.4133 9 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 730631.78463 12 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 120371.6165 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 5667868.4087000005 59 +Q9VMC3 LD35051p 3.29 1 1 1 10100.909 1 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 11796.701000000001 2 +Q9VMC7 LP11564p 9.94 6 6 3 18837.2197 5 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 316376.8844 13 +Q9VME1 FI01864p 17.96 7 8 7 99657.15439999998 8 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 41767.4677 3 +Q9VMF0 FI04444p 4.48 2 2 2 16342.366000000002 2 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 25042.470500000003 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 210762.955 11 +Q9VMH8 GEO07746p1 37.3 6 12 6 453819.344 10 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 924636.96115 28 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 792368.97055 31 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 3513318.4568 35 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 101807.3805 5 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 739178.178 21 +Q9VMR9 acylphosphatase 6.93 1 1 1 76360.11 1 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 6036286.6616 36 +Q9VMT2 GEO07854p1 52.35 7 122 0 7506816.540560001 102 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 3345987.0184 39 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 102083.3381 9 +Q9VMV5 Viking, isoform A 8.2 13 20 13 204971.14727 17 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 16795.658 2 +Q9VMX4 AT19154p 19.52 6 13 6 252106.33323 10 +Q9VN01 GH23891p 16.39 8 12 8 108137.0632 11 +Q9VN02 GH14561p 32.74 7 14 7 246832.9448 13 +Q9VN21 LD30155p 55.05 28 100 28 3452803.30092 92 +Q9VN39 RE74585p 17.58 6 8 2 32262.2707 6 +Q9VN44 FI07923p 18.91 20 39 20 1425652.5744 37 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 486954.561 14 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 512484.1752 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 9743.609699999999 2 +Q9VN86 AT14148p 6.51 3 3 3 40360.05284 3 +Q9VN88 LD45836p 14.49 4 6 4 114472.687 6 +Q9VNA3 GH21273p 40.28 8 15 8 685874.3012 15 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 308677.6093 8 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 40107.97 3 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 9961.5154 2 +Q9VNF3 RE01652p 39.3 9 23 7 434963.0147 18 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 94510.5806 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 31685.865 2 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 144296.3372 12 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 129657.12 3 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 92130.6645 5 +Q9VNI8 Hpr1 10.7 8 9 8 64262.5552 8 +Q9VNI9 IP18173p 17.18 3 6 3 35342.35 6 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 3144049.088 70 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 70328.31928 6 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 14777.2168 5 +Q9VNV2 GEO05133p1 8.86 1 2 1 5203.3042000000005 2 +Q9VNW0 GEO11142p1 21.88 3 3 3 43152.9315 3 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 2708224.8305 62 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 2087621.96497 74 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 20308.797 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 75309.1817 7 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 30502.598 1 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 2543.014 1 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 158301.942 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 545176.3256 14 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 210822.2354 5 +Q9VP57 LD15904p 23.19 18 33 18 890893.95727 32 +Q9VP77 LD23875p 10.99 7 7 7 108772.5391 7 +Q9VP78 GH23156p 8.76 4 4 4 45631.284400000004 4 +Q9VP84 IP06402p 4.76 1 2 1 43554.644 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 3180.2427 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 24472.595540000002 5 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 131118.13150000002 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 65634.772 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 1595470.29986 42 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 82267.69554 6 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 18371.0454 3 +Q9VPH6 LP10922p 9.61 5 8 1 88508.7301 6 +Q9VPJ0 RE58433p 8.29 3 6 0 49018.140199999994 5 +Q9VPK3 AT24407p 19.37 8 11 1 222157.1994 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 25788.4533 6 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 2549379.27379 68 +Q9VPR1 GH02075p 11.35 2 2 2 28802.588 1 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 306418.83192 8 +Q9VPU4 FI17537p1 8.88 3 3 3 23449.2915 3 +Q9VPU6 Galectin 7.28 3 3 3 89816.727 3 +Q9VPX0 GH26159p 4.9 3 3 3 51227.777 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 528271.5609 13 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 2080006.5206 49 +Q9VPZ5 GH04232p 26.62 14 24 14 536370.5854 23 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 689.10486 1 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 6251337.39145 106 +Q9VQ83 RE23541p 7.28 2 2 0 14745.624 2 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 79704.3849 4 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 3851971.7278 49 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 1838773.8964 30 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 194597.0311 6 +Q9VQE0 dynamin GTPase 17.01 12 12 12 146691.0569 12 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 1973.4055 1 +Q9VQI6 LD25952p 12.35 4 6 4 79769.527 5 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 536229.02967 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 51090.081999999995 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 6787.398 1 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 1209254.36545 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 1107628.614 17 +Q9VQQ6 FI18122p1 15.72 8 13 0 505494.493 13 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 1895557.8581 38 +Q9VQR5 IP10807p 2.5 1 1 1 19313.197 1 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 72176.1891 5 +Q9VQT7 RH15675p 14.63 1 2 1 9401.5507 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 346092.8137 10 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 57639.1273 5 +Q9VQX3 HL05328p 13.09 6 7 6 104031.3115 7 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 114964.1811 9 +Q9VR30 RE58324p 19.51 8 10 8 202329.41887 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 190628.4641 10 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 6239.998 1 +Q9VR79 LD43683p 30.8 8 30 8 908021.6018000001 30 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 14753.348999999998 2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 1204900.4275 28 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 947684.58934 14 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 99273.4477 9 +Q9VRF7 GH09530p 13.92 4 7 0 182183.8055 7 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 65923.0773 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 93917.5843 12 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 1407725.66326 39 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 252763.083 4 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 141685.934 5 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 7086.4347 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 7919326.79334 80 +Q9VRL1 GEO06356p1 53.1 8 28 2 1021570.3586 21 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 5026.5805 2 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 4622.8296 1 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 146583.28399999999 3 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 1434498.9653 31 +Q9VRP3 AT08565p 23.69 6 12 6 213014.3034 8 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 5751.01084 2 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 960697.1306 27 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 168779.7217 8 +Q9VRV8 Transportin-1 3.02 2 2 2 13986.0176 2 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 148456.9655 5 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 418873.751 8 +Q9VS11 lysozyme 12.55 3 4 2 30196.6578 4 +Q9VS44 Uncharacterized protein 12.36 4 4 4 85468.175 4 +Q9VS84 FI03225p 7.34 7 8 7 153915.6583 7 +Q9VSA9 CG7409 80.52 14 73 14 5258505.36403 57 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 233233.3703 8 +Q9VSC5 GM09977p 55.29 11 26 11 578608.1963 24 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 92948.2548 8 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 170444.30479999998 9 +Q9VSH5 IP09562p 4.89 1 2 1 12900.86417 2 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 68702.86 2 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 7533.217 1 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 1018766.3505 24 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 1642530.2111 26 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 2188819.5998 33 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 270283.378 9 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 64840.675 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 40870.851800000004 3 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 6102.6559 3 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 640172.7128 15 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 1234975.0235 50 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 108894.589 6 +Q9VSR5 GM03767p 48.9 9 20 9 730859.937 18 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 50772.65414 6 +Q9VST4 arginine kinase 2.06 1 1 1 7583.6587 1 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 2679729.3456 38 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 497434.6418 20 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 45695.939 3 +Q9VSX2 IP01061p 30.5 6 12 6 217440.9366 8 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 6777576.67555 62 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 251713.092 8 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 319363.9235 20 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 28792.2134 2 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 541690.9418 19 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 7359.134 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 46947.81 1 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 106987.63944 6 +Q9VTA8 RE35371p 9.7 1 1 1 938.10126 1 +Q9VTB0 LD35289p 18.18 7 9 7 179463.3525 9 +Q9VTB3 Guanylate kinase 35.62 10 23 10 518956.42915 21 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 1323069.018 18 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 90951.7425 6 +Q9VTC3 GH07049p 7.78 3 3 3 175652.845 2 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 6990.839 1 +Q9VTL0 FI19917p1 2.48 1 2 1 9503.760699999999 2 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 2217.698 1 +Q9VTP1 IP06473p 8.24 2 2 2 15358.378400000001 2 +Q9VTT2 LD20590p 3.84 2 2 2 20719.046000000002 2 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 2294235.2092 33 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 398621.3933 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 171279.71980000002 7 +Q9VTW1 RE15265p 11.2 5 7 0 148434.767 7 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 46204.6996 3 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 1798025.829 42 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 235125.25633 15 +Q9VU04 RE60105p 6.49 2 2 2 111557.459 2 +Q9VU13 LD45603p 8.3 4 6 0 206457.5 5 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 60076.454 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 6605373.4935 58 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 21181.883 1 +Q9VU38 Adenosine kinase 29.28 6 13 0 93802.1616 12 +Q9VU45 LD27581p 20.42 5 16 5 500071.4189 14 +Q9VU53 Capricious, isoform A 3.7 2 2 0 13623.405999999999 2 +Q9VU75 RH45712p 40.33 9 32 9 397682.87579 29 +Q9VU92 Uncharacterized protein 35.71 7 12 7 341580.5349 11 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 2654275.22482 74 +Q9VUE8 Big bang, isoform C 0.53 1 1 0 433.32568 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 67947.4613 6 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 641790.8493 16 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 7570.28346 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 164894.139 8 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 173659.2754 5 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 218464.8631 9 +Q9VUQ7 RE36966p 11.91 6 10 6 172650.08296 10 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 19917.5345 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 129471.484 1 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 54999.766 2 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 50383.03 3 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 81949.9816 7 +Q9VUZ8 GEO07442p1 6.77 1 1 1 537.20386 1 +Q9VV13 GEO08383p1 20.71 2 4 2 280794.49429999996 3 +Q9VV31 Uncharacterized protein 19.35 2 7 2 162587.49 7 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 155943.9675 10 +Q9VV40 Golgin 104 1.42 1 1 1 2028.3933 1 +Q9VV42 Fat body protein 2 79.5 25 188 0 16415811.058939999 162 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 11702126.9394 146 +Q9VV47 Fat body protein 2 45.17 9 22 7 994234.73494 19 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 1562139.4838 45 +Q9VV75 AT02348p 79.09 28 196 28 15442390.06054 156 +Q9VV76 Syntaxin 8 11.64 3 4 3 182126.6185 4 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 72517.24375 7 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 279545.9029 11 +Q9VVB5 LD46723p 33.45 17 44 1 8419.380799999999 3 +Q9VVB7 FI02842p 48.97 15 44 1 13832.8322 3 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 73722.0397 3 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 757229.3941500001 31 +Q9VVC8 LD23434p 6.95 5 8 5 146655.4655 8 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 196635.1463 17 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 4770526.018300001 34 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 269773.9889 10 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 49717.103 2 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 377185.5623 14 +Q9VVL5 FI11325p 27.27 9 14 9 391107.0076 13 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 9988128.27802 180 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 130222.039 6 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 63966.7591 5 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 164356.1928 8 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 110437.667 3 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 2112519.2464 27 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 5750482.1042 48 +Q9VVU2 GEO07453p1 48.32 9 36 8 1650945.2576 34 +Q9VVV6 LD45843p 11.01 5 5 1 36372.5012 5 +Q9VVW7 Canopy b 16.74 4 6 4 177277.70200000002 6 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 7619.922 1 +Q9VVY7 FI20154p1 10.24 13 16 0 158030.4693 15 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 27933.20064 4 +Q9VW00 GH28721p 12.2 4 8 4 135085.11849999998 6 +Q9VW17 RE58036p 26.37 5 12 0 148851.6822 10 +Q9VW34 FI03450p 17.01 9 14 9 449999.48636 14 +Q9VW40 LD31235p 12.62 4 5 4 34801.85464 5 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 12031.069 1 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 56566.9628 3 +Q9VW57 Grasp65 8.04 4 6 4 92558.8924 5 +Q9VW58 LD33138p 11.15 3 5 3 10016.126719999998 2 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 953233.1955 21 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 2633195.0086 28 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 7014536.6196800005 125 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 10078.872 2 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 21612.2596 2 +Q9VWD0 GH23568p 26.43 8 13 8 261807.393 13 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 5820320.60996 82 +Q9VWD5 LD35087p 6.46 3 3 3 12806.77417 3 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 754485.78697 27 +Q9VWF0 LP01149p 9.8 3 5 3 99749.1 4 +Q9VWG1 LD37169p 72.68 11 62 1 201360.46540000002 6 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 14682.377 2 +Q9VWJ3 LD05272p 4.57 1 1 1 15222.093 1 +Q9VWL4 GH07340p 9.77 5 5 5 93337.0007 5 +Q9VWP2 RH57257p 64.88 12 25 12 1079190.51563 24 +Q9VWQ3 LD35981p 5.27 2 4 0 77939.93059999999 4 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 125137.48909999999 9 +Q9VWS1 Houki 29.33 6 7 6 132213.0186 6 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 758830.78706 21 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 14199.037400000001 2 +Q9VWU0 FI18411p1 2.63 1 2 1 3176.82847 2 +Q9VWV6 Transferrin 57.72 35 174 35 12064089.1445 155 +Q9VWW2 GH13094p 14.17 6 13 6 35409.1988 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 154289.5268 3 +Q9VX08 LD10434p 6.85 2 2 2 8478.68866 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 3871007.17117 85 +Q9VX69 FI01450p 8.27 4 13 3 352672.043 6 +Q9VXA3 LP21163p 16.69 10 15 10 215734.144 14 +Q9VXA9 RE04047p 10.58 3 3 3 17824.4562 3 +Q9VXC1 MIP06432p1 27.93 5 10 3 422335.85240000003 10 +Q9VXC9 trypsin 54.18 11 21 11 285725.2599 19 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 97241.4238 6 +Q9VXF9 AT13091p 15.94 7 13 7 231983.7225 13 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 194397.70160000003 4 +Q9VXH4 RE16337p 28.43 2 4 2 183039.19199999998 4 +Q9VXH7 FI17510p1 13.95 5 10 5 250417.0982 10 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 726368.9766 25 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 4320028.9367 56 +Q9VXJ7 GH03748p1 5.19 5 5 5 29412.4493 5 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 421168.9803 10 +Q9VXK9 Centrosomal protein 164, isoform A 1.77 2 2 2 765.6457 1 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 22302.029000000002 2 +Q9VXM4 LD12946p 62.9 15 37 15 797172.11199 33 +Q9VXN1 LD03728p 7.2 2 2 2 14604.987739999999 2 +Q9VXN3 LD07988p 25.25 9 14 9 148459.3204 12 +Q9VXP3 GH05406p 9.87 5 5 5 31882.87528 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 25407.685699999998 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 8934.4443 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 1640363.4736 43 +Q9VXR9 FI03680p 5.45 2 2 2 24631.3734 2 +Q9VXV1 RH52220p 4.39 1 1 1 12317.63 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 294106.0023 11 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 809079.7997 27 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 238499.2684 13 +Q9VY05 GH11762p 9.47 7 15 7 454831.1221 14 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 55422.326 4 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 206897.54054 9 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 17832.018 1 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 147834.18300000002 4 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 20858.856 2 +Q9VY76 AMP deaminase 9.21 8 10 0 67320.1623 8 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 133145.7192 10 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 154642.9744 5 +Q9VY92 GEO07753p1 73.91 8 32 8 2091983.6428 32 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 11694.526 2 +Q9VYF0 GM09012p 18.66 5 7 5 103990.778 7 +Q9VYG8 CG15717-PA 17.86 4 4 4 25412.9673 3 +Q9VYJ1 FI12805p 2.29 2 2 1 44051.4663 2 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 37305.503 6 +Q9VYM0 CG2555-PA 13.2 2 2 1 3999.0062 2 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 25821.8984 4 +Q9VYN1 protein kinase C 0.42 1 11 1 434571.9 9 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 22729.488 1 +Q9VYS2 GH09980p 4.78 4 4 4 21528.2265 4 +Q9VYT0 RE04130p 23.7 6 10 5 326926.10599999997 10 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 26128.624 2 +Q9VYT3 FI23714p1 4.8 6 7 6 31894.65266 7 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 73546.796 2 +Q9VYU9 RH17287p 36.65 6 11 6 195651.3509 10 +Q9VYV4 Amun, isoform A 12.0 4 4 4 49485.8689 4 +Q9VYV6 GEO09033p1 6.14 1 1 1 27667.566 1 +Q9VZ00 FI19420p1 3.92 4 7 1 30106.3891 5 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 1472564.2033 22 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 476939.4262 19 +Q9VZ24 GEO11412p1 43.36 6 33 6 2320275.5899 31 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 8586.296 1 +Q9VZ34 RH72958p 2.64 1 1 1 10797.439 1 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 333513.54339999997 14 +Q9VZ66 SD22308p 35.37 5 8 5 122318.40030000001 8 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 40365.131 3 +Q9VZ71 RE01453p 9.04 2 5 2 129116.65699999999 5 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 9154.619999999999 2 +Q9VZE4 RE70333p 19.57 9 13 9 203959.50530000002 13 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 143677.24 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 66457.067 5 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 698764.4583 22 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 1718459.77567 42 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 213641.1084 8 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 2908426.61299 47 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 34876.443 3 +Q9VZI1 Transgelin 74.47 11 82 1 2903135.1472 60 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 65222.2677 4 +Q9VZJ2 GH27759p 12.66 5 8 5 169365.1493 7 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 34194.5133 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 448096.2818 19 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 41262.36608 4 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 153917.41292 14 +Q9VZV2 Chitinase 7 3.75 4 5 4 21560.78611 5 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 215115.6766 5 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 12179.8519 3 +Q9VZX6 LD06441p 3.99 1 1 1 85181.76 1 +Q9VZY0 LD45195p 18.85 5 7 5 209752.123 6 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 42000.798689999996 5 +Q9VZZ5 GEO12033p1 21.68 3 7 3 387895.625 6 +Q9VZZ6 CG16985 protein 34.9 5 11 5 561803.143 11 +Q9W022 GEO01508p1 49.3 7 34 7 1785010.4145 34 +Q9W073 RH22148p 9.41 2 2 2 30046.989700000002 2 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 1399512.38 20 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 568098.961 11 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 112586.5912 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 149200.0982 6 +Q9W095 glycerol kinase 2.6 2 2 2 2517.1353 1 +Q9W0A8 FI01658p 14.08 4 10 4 648092.458 10 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 586046.6950000001 18 +Q9W0C3 GH11843p 46.94 12 16 12 196063.22745 14 +Q9W0D3 GH15728p 1.09 2 2 2 15381.99 1 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 48422.76 1 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 291438.7077 12 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 763122.218 18 +Q9W0J9 GH07301p 33.85 8 16 8 579459.1372 14 +Q9W0K9 LD10220p 11.61 2 3 2 14147.1823 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 223077.944 11 +Q9W0M5 Protein DPCD 9.91 2 2 2 7276.4671 2 +Q9W0N6 LD27967p 9.57 3 3 3 19302.0242 3 +Q9W0P4 GEO05053p1 15.45 3 3 3 29753.7171 3 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 78211.391 2 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 14869.781 1 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 93949.7915 8 +Q9W0U0 glycerol kinase 5.39 2 3 1 41026.563 3 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 171093.0725 7 +Q9W0X1 GH15894p 5.72 3 3 3 48844.637 3 +Q9W0X2 GEO07322p1 33.88 4 5 4 160352.4105 4 +Q9W0X3 LD24657p 12.55 3 6 1 174929.26 6 +Q9W0Z5 LP09747p 10.07 5 12 5 180607.6524 12 +Q9W114 IP05433p 22.5 2 3 2 19115.0423 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 1096938.9318 37 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 404275.7276 11 +Q9W136 Uncharacterized protein 33.82 6 17 6 270099.497 13 +Q9W140 Regulatory protein zeste 14.35 5 7 5 32551.53648 6 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 20045.47174 3 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 5018.9289 2 +Q9W158 LD36772p 6.51 2 3 2 123710.429 3 +Q9W199 GEO07594p1 10.97 2 3 2 83623.45 3 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 1059482.8181 17 +Q9W1C8 LD24355p 20.11 8 10 8 101520.18903000001 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 28564.694499999998 3 +Q9W1F2 FI07217p 5.93 2 2 2 9661.09482 2 +Q9W1F7 IP15825p 26.5 11 33 11 1383301.97921 30 +Q9W1F8 GEO08248p1 23.31 4 8 4 270193.7265 8 +Q9W1G7 LD21576p 31.62 10 17 10 836497.0133 17 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 276453.0295 9 +Q9W1H6 GH04238p 13.85 3 7 3 58683.045999999995 4 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 1382022.20945 39 +Q9W1I8 LD03592p 36.97 8 15 8 372152.46814 10 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 22445.9217 3 +Q9W1L8 GH11818p 5.92 2 2 2 5508.0154 2 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 32898.6123 4 +Q9W1N3 Levy, isoform A 32.11 4 16 4 1804965.18982 15 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 16619.768 1 +Q9W1R0 RH49821p 4.13 2 2 2 23468.819 2 +Q9W1R3 Golgin-245 5.17 7 8 7 125659.2472 8 +Q9W1V8 CG9893 protein 27.6 5 7 5 63567.528399999996 7 +Q9W1W4 RE45066p 15.81 5 7 5 145638.64 6 +Q9W1X5 GH04942p 16.93 24 31 4 762957.72633 30 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 4625670.4207 50 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 460872.75 6 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 184296.7328 8 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 33725.6041 5 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 336739.94539999997 21 +Q9W257 RH13652p 6.99 2 3 2 83131.458 3 +Q9W258 Babos, isoform A 30.1 6 17 6 603030.2674 15 +Q9W259 FI23916p1 18.69 7 10 7 145369.3054 8 +Q9W260 GH03113p 12.2 7 13 7 160188.9076 11 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 12465.7225 2 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 236569.47756 18 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 14232.1809 3 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 25650.0285 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 1162982.739 23 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 60936.92 2 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 208447.27683 12 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 63931.075 2 +Q9W2L6 RH02475p 36.23 21 49 21 1399488.37302 49 +Q9W2M0 LD23155p 16.85 11 18 11 333027.23853000003 18 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 6199823.0994 42 +Q9W2M9 FI16623p1 14.71 2 3 2 58956.674 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 42525.2584 3 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 334630.00659999996 6 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 189916.66960000002 5 +Q9W2V2 FI20035p1 10.07 5 5 5 39131.51730000001 4 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 20089162.96368 95 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 218715.98972 17 +Q9W2Z9 RE65233p 8.65 2 2 2 43856.034 2 +Q9W306 GEO08256p1 14.05 2 2 2 46641.566999999995 2 +Q9W308 GH05731p 16.18 2 3 2 86720.342 3 +Q9W309 GEO08445p1 38.27 7 10 7 359505.697 8 +Q9W314 GH14088p 9.07 4 4 3 104114.74900000001 4 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 117082.5215 8 +Q9W330 Phosphotransferase 44.18 19 34 3 1539030.38934 33 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 86376.55900000001 3 +Q9W337 GH19985p 44.5 8 13 8 214226.5552 11 +Q9W350 C11.1, isoform A 1.55 2 2 2 3163.8574 1 +Q9W370 GEO12084p1 38.52 4 8 4 262991.1822 7 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 6682.7866 1 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 4439.777 1 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 1002553.4306999999 27 +Q9W396 FI06908p 17.5 6 7 6 188075.817 6 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 27891.646 2 +Q9W3C3 LD10016p 19.53 9 11 9 141463.35195 9 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 35241.7785 4 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 57482.31084 6 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 66532.061 3 +Q9W3H4 LD36273p 52.23 11 23 11 791214.26754 20 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 62836.93316 5 +Q9W3J6 FI06457p 2.33 1 1 1 5747.915 1 +Q9W3K6 LD35927p 4.62 4 5 3 134313.388 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 578867.1254 14 +Q9W3L4 GH20802p 20.29 8 14 8 283946.2945 13 +Q9W3M7 RNA helicase 13.12 12 14 11 89404.71447 11 +Q9W3M8 LD34211p 38.19 8 9 8 341051.283 8 +Q9W3N1 RH59310p 3.12 1 1 1 21727.125 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 195977.088 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 1512379.8701 33 +Q9W3Q0 FI07418p 10.09 2 5 1 3100.806 1 +Q9W3Q1 GM14286p 5.68 2 2 2 5786.6042 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 275582.128 10 +Q9W3S3 LP10445p 16.22 2 3 2 4891.822 1 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 166520.3964 8 +Q9W3T9 GM01152p 31.93 8 17 8 470785.36401 17 +Q9W3U9 CG14434-PA 26.74 5 6 0 163820.45844000002 6 +Q9W3V2 FI19713p1 1.82 2 2 2 1676.7975 1 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 11659.33357 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 106040.871 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 4226340.6393 50 +Q9W3X8 RH42690p 11.42 4 5 4 17939.44004 4 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 362237.9226 11 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 2181326.43437 50 +Q9W403 LD24968p 14.47 6 7 6 50345.54814 7 +Q9W404 GH10714p 17.98 6 8 5 73956.1913 8 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 24423.252 2 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 872007.1214 26 +Q9W425 Rabconnectin-3A 0.99 3 3 3 31536.2947 2 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 2598494.9131 49 +Q9W461 LD23868p 11.54 6 8 6 129122.345 7 +Q9W483 GH18971p 8.49 3 6 3 39508.9457 3 +Q9W486 LD13361p 3.58 2 2 0 12603.2549 2 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 210876.5845 4 +Q9W4A0 GH11193p 31.98 6 10 6 255293.9428 9 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 20452.87693 4 +Q9W4C2 lysozyme 11.84 2 3 2 77304.075 3 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 105271.4012 8 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 15162.132 1 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 703567.75423 21 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 5537.5016 2 +Q9W4N8 LD30122p 50.93 10 48 0 3411230.8036 44 +Q9W4U2 RH09070p 45.38 8 22 8 784838.8835 19 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 6381.891 1 +Q9W4W5 RE47284p 13.77 5 6 5 169027.501 6 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 175081.00337 15 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 224250.3466 10 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 6014.478 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 51304.6253 5 +Q9W503 RH61816p 35.31 10 15 10 473156.73230000003 13 +Q9W5B4 GH18858p 27.59 8 18 8 232968.06547 14 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 11036.139 1 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 45362.657999999996 2 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 52436.5225 4 +Q9W5W7 GH19483p 5.32 3 3 3 35551.69457 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 1010156.5308 26 +Q9W5X0 LD21953p 19.4 4 21 0 95353.946 2 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 152684.1405 10 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 120839.0695 7 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 6502614.204539999 50 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 114447.646 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 491404.9531 20 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 412086.4066 15 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 5012680.89044 65 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 557114.24006 31 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 388101.02170000004 20 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 6740581.19459 68 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 57236.4923 4 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 41669.6794 6 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 2180237.014 33 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 28343.85496 4 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 1874462.9018 40 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 4460568.90144 79 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 7352.5137 1 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 46879.8018 6 +R9PY51 Uncharacterized protein 34.95 5 71 5 1745745.7119 28 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 4906372.4319 80 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 104447.5728 6 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 138045.615 7 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 60611.918999999994 2 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 72433.1465 5 +X2JB48 ADP/ATP translocase 67.56 22 106 1 5223830.2484 91 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 360190.82123999996 22 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 23122.627399999998 2 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 6120391.362 68 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 35044.469 2 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 24040.786 2 +P10674 Fasciclin-1 51.07 33 127 1 3122.587 1 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 4359.988 1 +Q08605 Transcription activator GAGA 2.24 1 1 0 21655.197 1 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 7132.998 1 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 13522.921599999998 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 8650.221 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 22102.277 1 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 16885.252 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 3322.493 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 28357.504500000003 3 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 9010.044 1 +Q9W568 Protein halfway 3.11 1 1 0 1669.7517 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 2395.2158 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 1.73 1 1 0 420.15817 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 39126.2209 3 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 30062.18 2 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 5999.334 1 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 6720.911 1 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 8901.4016 2 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 106473.121 2 +A1Z7M0 Space blanket 5.71 1 1 1 6406.226 1 +A1ZA97 Carboxylic ester hydrolase 1.79 1 1 1 971.68304 1 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 48279.992 3 +B5RJS0 IP20241p 0.73 1 1 0 956.67633 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 10349.318599999999 2 +E1JJM0 FI20063p1 16.38 9 12 0 137825.4137 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 3437.3188 1 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 12721.09 1 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 101348.68228000001 4 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 16960.193 1 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 4054.3447 1 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 284546.29250000004 8 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 117738.743 2 +Q7K1W4 Epoxide hydrolase 2.35 1 1 1 536.2182 1 +Q7PLV6 FI02158p 0.85 1 1 1 2230.5608 1 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 37358.037 3 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.96 2 2 1 494.868 1 +Q8MPN6 Serpin 4 17.68 6 7 0 3353.738 1 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 9778.785 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 16428.5 1 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 12099.188 1 +Q9VHX1 LD44032p 4.04 1 1 1 2171.2769 1 +Q9VKC1 IP16805p 3.89 1 1 1 10654.562 1 +Q9VM94 Homer, isoform B 43.32 14 33 1 8996.372 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 13610.887999999999 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 8065.423 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 154947.058 3 +Q9VTY1 LD40136p 2.4 1 2 1 23743.203 1 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 4899.6855 1 +Q9W2N5 GH10162p 3.47 2 2 2 877.71454 1 +Q9W362 La-related protein 7 1.85 1 1 1 4096.2593 1 +Q9W525 LD08195p 2.32 1 1 0 10731.987 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 20861.637 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 25597.19 1 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 85812.0062 5 +E1JJ83 Os-C, isoform B 7.19 1 1 0 4764.632 1 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 222943.55806 14 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 11725.65 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 10517.518 1 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 6743.92 1 +Q8IQ80 GH06117p 3.39 2 2 0 8913.2212 2 +Q9VHW5 LD38634p 4.76 1 1 1 1871.9136 1 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 22144.389 2 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 10737.495 1 +Q9W5C1 RE02292p 1.55 1 1 1 758.1736 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 7999.634 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 5090.9295 2 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 17556.613 1 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 5966566.77534 113 +E1JH70 Kank, isoform E 1.28 1 1 0 4065.7605 1 +M9NFP1 Jim, isoform E 0.85 1 1 0 7883.0776 1 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 6454.2143 2 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 3241.6077 1 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 7671.5197 2 +Q9VBS0 CHK domain ov2 2.2 1 1 1 1715.1904 1 +Q9VCH9 LD07883p 4.72 1 1 1 3954.1614 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 18529.9512 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 12843.2361 2 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 15949.103 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 81344.697 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 13639.64 1 +Q9VMY3 FI19613p1 1.5 1 1 1 11529.737 1 +Q9VS80 FI17864p1 2.6 1 2 1 5068.435 1 +Q9VZF0 LD44732p 3.61 1 1 1 7133.919 1 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 62580.20936 4 +Q9W249 IP21806p 2.24 1 1 1 1769.0321 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 9257.618 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 63971.95 3 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 40157.594 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 130657.16320000001 7 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 12405.229 1 +Q0KHQ1 GEO13361p1 11.11 1 1 1 1611.3468 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 26289.388 2 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 138968.185 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 2535.9475 1 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 12556.288 1 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 3792.7847 1 +Q9VV37 GEO13385p1 10.1 1 5 1 17067.426 2 +Q9VVX6 BET1 homolog 16.24 2 2 2 78758.25 2 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 12916.0205 1 +Q9W152 RH33060p 16.9 1 1 1 16805.559 1 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 11968.9339 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 46742.615000000005 2 +M9PDY5 Girdin, isoform C 0.94 1 1 0 8787.931 1 +Q9VAI3 FI06539p 10.08 1 2 1 22928.064 2 +Q9VB09 IP04131p 5.73 1 1 1 30039.512 1 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 77947.8313 3 +Q9VZN6 Lipase domain-containing protein 4.36 1 1 1 290.61038 1 +Q9W5E7 LP07417p 11.4 1 1 1 3267.991 1 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 9867.436 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 196616.5607 6 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 5416.795 1 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 12414.7528 2 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 21061.584 1 +A1Z872 CAP, isoform D 25.05 11 20 1 5214.0557 1 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 12977.655 1 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 15846.37 1 +Q7K3Z8 GH01208p 13.24 2 2 2 1795.1373 1 +Q9VAN8 FI15955p1 6.46 1 1 1 7550.0454 1 +Q9VLL4 FI23523p1 1.81 1 1 1 2977.0925 1 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 42079.859 2 +P08841 Tubulin beta-3 chain 23.13 10 131 0 8553.727 1 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 27398.164 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 3052.7766 1 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 10162.755 1 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 2139.853 1 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 18418.072 2 +Q9W3S4 LD46272p 3.11 1 1 1 4468.073 1 +A8JQX3 Nocturnin 1.71 1 1 1 4674.3135 1 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 61005.380000000005 2 +A8JNM1 Formin 3, isoform B 0.58 1 1 0 615.14984 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 1 0 820.1889 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 70162.3495 7 +Q7JY89 RE35124p 15.0 1 1 1 4279.271 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 50062.581000000006 3 +A8JUP7 Serine protease Hayan 1.1 1 1 1 10085.959 1 +P07664 Serendipity locus protein delta 2.54 1 1 1 35444.668 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 329519.793 4 +Q9VGM4 LD28119p 2.94 1 1 1 4578.7036 1 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 34146.1131 5 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 31335.252 2 +E1JJ37 Complexin, isoform W 65.47 9 67 1 8291.82 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 10989.474 1 +Q962I2 small monomeric GTPase 50.76 8 21 1 7246.5176 1 +Q9VF73 FI17904p1 0.98 1 1 0 5195.054 1 +Q9VSK1 GH09510p 2.72 2 2 2 2033.6255 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 69284.657 2 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 17837.574 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 98633.13990000001 7 +Q29R09 LD28546p 3.02 1 1 1 2038.6704 1 +Q6AWJ5 LP12324p 23.56 8 11 1 3128.8662 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 3697.6857 2 +Q9VQT5 FI01556p 13.92 1 3 1 94572.4835 3 +Q9W0A9 GM02612p 3.06 1 1 1 5782.5693 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 5863.4727 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 23039.65 1 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 11394.103 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 8809.126 1 +Q9VV29 GEO12576p1 9.68 1 2 0 27008.412 2 +P45884 Attacin-A 5.36 1 1 0 12018.703 1 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 1850.3251 1 +O61348 Bobby sox 3.51 2 2 2 2587.66286 2 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 2619.1567 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 19008.85 1 +Q9VV27 MIP11526p 7.63 1 1 1 25629.877 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 32661.372 2 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 10425.2771 2 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 51838.342000000004 2 +M9PE05 Encore, isoform H 0.6 1 1 0 3202.0007 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 22437.449999999997 2 +Q9VF46 GH25158p 4.13 1 2 1 21676.465 2 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 18610.362540000002 2 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 13043.098 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 39996.72 2 +A8JNU1 adenylate cyclase 1.78 2 3 0 10054.9503 3 +Q7KVR7 AP-1 complex subunit gamma 1.13 1 1 0 2150.3303 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 2092.528 1 +Q7K010 Tetraspanin 3.64 1 1 1 5496.5933 1 +Q9VUR4 FI11905p 18.81 5 8 1 7885.6045 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 565.84564 1 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 32563.604 1 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 5480.291300000001 2 +A8JNV2 Uncharacterized protein 10.71 1 2 1 9208.6234 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 11656.605599999999 2 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 17322.762 1 +Q8SWU4 RE25571p 17.3 6 13 1 18881.874499999998 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 84632.125 1 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2942.5317 1 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 1708.3087 1 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 11683.3464 2 +Q8SXW3 GV1, isoform B 4.44 1 1 0 22297.553 1 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 7257.0947 1 +Q8IRN0 FI06485p 3.21 1 1 1 2965.0105 1 +Q9VHS6 Copper transport protein 5.75 1 1 1 5162.768 1 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 8008.7915 1 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 933.15186 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 3595.873 1 +Q8ML92 Protein aveugle 7.55 1 1 1 7937.932 1 +Q9VT15 GH14734p 8.33 2 2 2 21025.52 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 5963.751 1 +A1A750 GEO11067p1 6.93 1 1 1 13172.972 1 +Q9VF83 LD33178p 2.73 1 1 1 6080.6455 1 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 43038.12 2 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 29419.654 1 +M9PCK0 Decima, isoform D 9.87 2 2 0 34676.701 2 +Q9VUQ8 DCN1-like protein 1 7.29 1 1 0 569.6754 1 +Q9VPA9 LD24894p 1.45 1 1 1 11243.56 1 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 6561.236 1 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 488.63275 1 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 6340.361 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 7280.8926 1 +Q02427 RNA-binding protein 1 14.58 2 4 1 47234.18 1 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 20890.9437 2 +Q7K4Y8 GH22690p 1.65 1 1 1 3138.223 1 +Q9VCQ7 LD40758p 1.61 1 1 1 887.312 1 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 6155.4604 1 +Q9VDL4 LP04613p 2.72 1 1 1 4337.61 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 28769.910000000003 3 +Q7K4X4 GH24095p 2.0 1 1 1 6135.6636 1 +Q9VJ06 LD05576p 7.07 2 2 2 8326.763299999999 2 +Q9VGE8 Tachykinins 6.57 2 2 0 20941.636 2 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 10214.118 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 564.33307 1 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 13201.566 1 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 6224.8335 2 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 15682.41 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 6982.828799999999 2 +Q9V3A6 Ero1-like protein 1.45 1 1 1 13723.237 1 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 25110.906 1 +Q0E8K5 AT10158p 4.1 1 1 0 610.1418 1 +Q7K8Y3 IP16419p 14.29 5 6 0 119709.22600000001 5 +Q8STG9 DSec61alpha 1.89 1 1 1 14234.409 1 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 11610.291000000001 2 +P22812 Protein Tube 3.9 2 3 2 3909.5858 3 +Q9VYX8 LD04844p 9.38 2 2 2 8229.149 1 +Q7JV39 GH01142p 5.05 1 2 1 10248.7137 2 +Q9VZX8 AT02196p 2.37 1 1 1 3288.5674 1 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 55109.740999999995 2 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 11034.753 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 2393.86 1 +Q9W3F7 Mitoguardin 4.19 2 2 2 4418.3364 2 +Q9W4F9 IP01388p 1.92 1 1 0 11106.357 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 4765.006 1 +F0JAQ9 MIP27169p 5.85 2 4 0 1779.82931 3 +P18289 Transcription factor Jra 3.11 1 1 0 10776.336 1 +Q9VJ77 FI24106p1 3.28 2 2 0 10123.701 1 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 13450.46196 2 +Q9VR55 LD29159p 8.71 1 1 1 22856.373 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 7413.806 1 +P54194 General odorant-binding protein 84a 11.43 2 2 2 2540.7324 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 14899.9283 2 +Q8IR92 Uncharacterized protein, isoform A 7.51 7 8 0 720.352 1 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 8231.1557 3 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 1682.8036 1 +Q9VV26 GEO12049p1 6.84 1 1 1 36426.785 1 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 5090.6035 1 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 2791.16864 2 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 1915.6703 1 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 12344.747 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 13058.558 1 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 6737.133 2 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 17195.256 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 23551.34 1 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 3685.685 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 25104.0787 3 +Q6IJE8 HDC15077 17.04 2 3 2 77903.8067 3 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 2298.4382 1 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 51035.4785 3 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 3132.9543 1 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 8534.148 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 10202.702 1 +Q9W494 Crossveinless 3.5 1 1 1 3276.9895 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 22919.942 2 +Q7KN04 Spondin-1 2.1 1 1 1 6249.215 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 6544.4766 1 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 6951.8164 1 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 15602.63365 4 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 4260.0063 1 +Q8MRQ1 GH06222p 1.49 1 1 0 7079.314 1 +Q9VPR6 Kinase 3.56 1 1 1 4757.317 1 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 3108.9763000000003 2 +E1JJS1 glutathione transferase 5.6 2 2 0 68661.967 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 4172.532 1 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 5554.519 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 15747.964 1 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 3487.1016 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 3143.7256 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 4302.538 1 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 2609.4233 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 4888.294 1 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 669.6186 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 21188.8787 2 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 3682.9128 1 +A1Z8N1 Trehalose transporter 1 1.05 1 1 1 1842.5339 1 +O76876 Protein sex-lethal 1.86 1 1 0 2343.2886 1 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 28037.814 1 +Q9VY55 FI09726p 8.08 1 1 1 2165.197 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 66554.055 1 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 2575.0337 1 +Q02936 Protein hedgehog 2.34 1 1 1 17274.328 1 +Q6NN09 ATPase protein 9 5.07 1 6 1 303416.898 4 +O76874 SD17974p 1.14 1 1 1 3121.474 1 +Q9W424 Splicing factor 3B subunit 4 2.59 1 1 1 1574.5002 1 +Q9VGL2 GM08392p 2.12 1 1 1 14322.842 1 +Q9VAX9 MIP05919p 3.7 1 1 1 9857.113 1 +Q9VBD8 RT02919p 4.37 1 1 0 482.84747 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 2067.777 1 +Q9VK20 LD18447p 2.81 1 1 1 13521.373 1 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 5535.9575 1 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 4949.3013 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 8123.985 1 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 6364.337 1 +Q9VBK9 Protein FAM98B 2.42 1 1 1 982.2944 1 +Q9VZC8 GEO12024p1 6.16 1 1 1 8294.046 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 1560.0199 1 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 11001.902 1 +Q9VM54 J domain-containing protein 3.9 1 1 1 955.2518 1 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 8575.662 1 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 3188.881 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 5619.9966 1 +Q4AB30 GUK-holder, isoform C 1.25 1 1 0 4882.5376 1 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 461.74493 1 +Q9W123 Protein painting of fourth 2.22 1 1 0 3726.7935 1 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 19791.172 1 +Q9VGZ2 FI06805p 3.86 1 1 1 8773.951 1 +Q7JWS8 AT17867p 10.26 2 2 2 18539.307 1 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 1629.3004 1 +E1JHX0 MIP29328p 3.76 1 1 1 18005.781 1 +Q9VGH2 Uncharacterized protein, isoform A 2.59 1 1 1 556.71124 1 +D6W4V3 MIP19557p 4.74 1 1 0 2486.0195 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 1658.4086 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 4118.989 1 +Q9V9R3 adenylate cyclase 0.6 1 1 1 7014.4277 1 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 12680.428 1 +P39205 Molybdenum cofactor synthesis protein cinnamon 2.16 1 1 1 1675.3282 1 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 14006.93 1 +M9PE65 Axotactin 0.55 1 1 1 1711.395 1 +Q8IRK0 GH04558p 3.9 1 1 1 3726.5999 1 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 8431.516 1 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 29327.888 2 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 3857.347 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 40502.31 1 +Q9VV21 GEO07736p1 16.26 1 2 1 35970.681599999996 2 +P07186 Chorion protein S19 14.45 1 2 1 2848.70125 2 +Q9VL29 GEO11246p1 12.93 1 1 1 5200.8237 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 2217.6855 1 +Q9W2F6 RE36793p 7.09 1 1 1 87589.3 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 3698.2205 1 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 38564.6908 4 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 7249.182 1 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 2864.7444 1 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 8287.075 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 33271.223 1 +Q9W513 GEO10196p1 12.86 1 1 1 130607.59 1 +A8DYV9 GEO02589p1 10.53 1 1 1 21084.395 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 10559.714 1 +O76513 Cyclin-H 3.7 1 1 1 6655.913 1 +Q8IPJ5 FI18525p1 3.83 1 1 1 743.9674 1 +Q9W0B6 LD14179p 1.48 1 1 1 2828.9592 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 1646.9626 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 24389.156 1 +Q05201 Protein phosphatase eya 2.22 1 1 0 5698.638 1 +Q9VIM8 RE22905p 1.6 1 1 1 7791.25 1 +Q7JRC9 RE73310p 1.89 1 1 1 2068.9558 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 3698.1448 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 5298.693 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 21949.887 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 54475.905 2 +A1A753 IP17594p 10.11 1 1 1 9358.29 1 +Q9VX56 LD03052p 5.94 1 1 1 825.8104 1 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 8205.989 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 6958.1396 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 766.2094 1 +Q7JY99 glycerol kinase 1.34 1 1 1 579.01556 1 +Q8MYV9 GEO12865p1 11.04 1 3 1 76076.37199999999 3 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 6967.832 1 +Q9W366 RE59932p 1.08 1 1 1 15157.428 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 2172.7046 1 +Q8T4F7 Protein enabled 0.82 1 1 0 4859.0312 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 256338.31699999998 2 +Q9VB08 E3 ubiquitin-protein ligase RING1 2.53 1 1 1 503.2905 1 +Q9VBQ5 LD38433p 1.91 1 1 1 3375.6958 1 +Q9VE49 LP06937p 1.86 1 1 1 943.7573 1 +Q9VH82 FI02086p 7.14 1 1 1 5884.0986 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 4247.364 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 5304.7856 1 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 1886.3098 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 3807.3806 1 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 5590.899 1 +Q9VPN3 GEO07775p1 12.0 1 1 1 7075.9307 1 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 2458.9138 1 +Q9VKE7 GH09228p1 10.39 1 1 1 2555.1875 1 +Q7KA66 Serpin 43Aa 2.56 1 1 1 3281.6458 1 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 17675.535 1 +A8JUR4 Kinesin associated protein 3, isoform H 1.59 1 1 0 492.18622 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 149476.644 3 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 19186.908 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 3641.2817 1 +Q9VEF0 LD33778p 3.49 1 1 1 2090.5466 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 11921.2705 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 5963.605 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 56089.984 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 249222.073 2 +Q5BIL9 SD21168p 1.63 1 1 0 14644.713 1 +Q9Y170 Sex-regulated protein janus-B 6.08 1 1 1 741.6344 1 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 8857.397 1 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 35890.8 1 +Q9VHJ4 GH04846p 2.25 1 1 1 6416.539 1 +Q9W226 GEO07239p1 5.88 1 1 1 3288.688 1 +Q9W0I9 FI01805p 3.22 1 1 1 3195.8787 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 7176.222 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 17036.38 1 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 357.86108 1 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 4289.613 1 +Q8SY53 GH11935p 2.73 1 1 1 2176.4697 1 +Q7JVN6 GH17672p 2.24 1 1 1 1691.6458 1 +P25159 Maternal effect protein staufen 0.68 1 1 0 2287.3708 1 +Q9VLE1 RH63449p 4.29 1 1 1 24729.736 1 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 2628.515 1 +Q24040 Protein big brother 5.16 1 1 0 742.3618 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 6175.5254 1 +F3YD72 SD23574p 20.45 1 1 1 2115.862 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 4480.987 1 +Q8STI6 RE53401p 4.27 1 1 1 745.7995 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 4003.1423 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 2428.592 1 +Q7K2B1 LD11371p 5.85 1 1 1 15482.9795 1 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 11475.123 1 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 13969.278 1 +Q9W168 GEO02361p1 9.23 1 1 1 5564.0933 1 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 8272.971 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 1 0 800.97974 1 +Q9VVX3 Frizzled-2 1.15 1 1 0 1000.6137 1 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 19108.654 1 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 13379.663 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 4928.775 1 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 3456.9753 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 19856.008 2 +A1A6X2 IP16893p 12.07 1 1 1 10168.755 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 26908.535 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 7454.671 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 3180.4897 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 30576.246 2 +Q9VL31 RIP-like protein 4.06 1 1 1 6871.803 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 8097.034 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 1 0 912.8672 1 +Q9VX71 Uncharacterized protein 5.2 1 1 1 60369.902 1 +Q8IQ51 trypsin 3.05 1 1 1 21627.512 1 +Q9VHS0 FI07206p 2.49 1 1 1 5475.508 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 16800.758 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 3578.0664 1 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 3045.405 1 +Q9VQY8 Vacuolar protein sorting-associated protein 53 homolog 0.9 1 1 1 667.58307 1 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 2160.287 1 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 6979.491 1 +Q9XZF0 Protein yippee 5.79 1 1 0 18775.121 1 +A8DYR5 Shaw-like, isoform C 1.17 1 1 0 646.22955 1 +Q9VD92 Protein archease-like 5.77 1 1 1 10909.4795 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 9010.092 1 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 2003.693 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 35390.926 1 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 1873.2397 1 +Q961D1 Cyclin-K 1.75 1 1 1 1890.0037 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 66111.75 1 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 835.89294 1 +Q9VKZ7 Nicalin 1.25 1 1 1 19528.12 1 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 50619.178 2 +Q8T0B1 Nuclear envelope phosphatase-regulatory subunit 1 homolog 8.4 1 1 1 1874.6003 1 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 30402.223 1 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 5209.6904 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 3415.249 1 +P54398 Fat body protein 2 3.52 1 1 0 26213.912 1 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 1891.4435 1 +Q9VJ98 GH05617p 2.44 1 1 1 3395.991 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 6019.1694 1 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 188504.43670000002 8 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 43444.9309 4 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 45324.3724 5 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 13625.2546 2 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 59915.143 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F3_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F3_TMTc.txt new file mode 100644 index 0000000..b6ef121 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_F3_TMTc.txt @@ -0,0 +1,4115 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 128C, Sample, n/a, Earth_F3 Abundances Count: F8: 128C, Sample, n/a, Earth_F3 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 256919.44090000002 7 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 155403.47123 9 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 9353958.86192 66 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 76325.47379999999 8 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 365880.62343 12 +A0A1F4 Protein eyes shut 12.91 28 65 0 2742138.302 59 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 13091.820240000001 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 276638.9036 15 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 24974.568 3 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 12879.3022 2 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 17071.7272 4 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 26265.134899999997 4 +A1Z877 Nidogen 21.48 28 49 28 2842790.8297 46 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 106301.8703 6 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 1185789.6467 61 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 735031.417 7 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 158328.23788 11 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 459883.65464 26 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 16125.36206 3 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 12249.44 1 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 226137.17373 19 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 53049.842 2 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 99277.7203 8 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 183191.52801 6 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 16544.176 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 84796.2374 4 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 15352.427000000001 2 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 1393610.7054 10 +A8DYP0 Protein Obscurin 1.87 8 8 8 74419.3021 8 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 589792.1598 10 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 10524155.54518 118 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 1258646.0528 23 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 3352745.40838 47 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1894789.2031 21 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 271286.666 8 +C0HL66 Histone H3.3A 55.15 7 37 0 33116.72788 5 +C0HLZ9 Baramicin A1 17.51 4 6 0 226614.02099999998 5 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 2969549.9306 38 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 24874.360370000002 3 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 194571.3174 12 +M9NDE3 Protein bark beetle 4.42 14 14 14 132174.18846 12 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 19083062.3887 69 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 175977.5607 10 +O01367 Protein held out wings 18.52 7 14 0 383300.9139 12 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 940966.9137 14 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 14395249.1591 127 +O02194 Presenilin homolog 5.73 2 2 0 16828.826 1 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 1008956.5096 18 +O02649 Heat shock protein 60A 76.27 44 168 28 27603479.199 151 +O15943 Neural-cadherin 17.05 53 82 2 2300781.8593 78 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 221449.43016 12 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 61710.5314 5 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 33110.5653 3 +O18333 Ras-related protein Rab-2 44.6 9 17 9 653731.25216 17 +O18334 Ras-related protein Rab6 33.17 8 22 0 146015.64057 8 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 1639861.9425000001 21 +O18388 Importin subunit beta 3.85 4 4 0 83598.3388 3 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 20565606.53115 121 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 1396975.733 37 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 813250.7548999999 14 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 17546.932 1 +O44342 Protein windbeutel 17.51 4 5 0 86133.7604 5 +O44386 Integrin alpha-PS3 7.26 8 10 6 177148.8052 8 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 499191.3288 5 +O46037 Vinculin 59.31 53 121 0 6296921.7137 109 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 10815.101 1 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 1294120.0815 17 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 322538.44299999997 10 +O46339 Homeobox protein homothorax 5.54 2 2 2 12579.0364 2 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 771573.83257 19 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 47370.774999999994 2 +O61307 Teneurin-m 2.01 4 4 0 108594.29999999999 2 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 213381.08299999998 10 +O61491 Flotillin-1 57.51 24 64 24 4472946.7549 59 +O61722 PRL-1 phosphatase 67.05 10 24 10 675743.3643 22 +O62619 Pyruvate kinase 69.79 30 93 30 11686224.5951 76 +O62621 Coatomer subunit beta' 2.08 2 2 2 10029.0516 2 +O76206 Putative riboflavin kinase 39.87 6 13 0 793016.441 9 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 613355.411 7 +O76742 Ras-related protein Rab7 37.68 8 13 8 565873.6847 12 +O76878 RILP-like protein homolog 18.96 7 9 0 119300.4543 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 291618.4468 10 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 516442.983 15 +O77051 Transcription factor E2F2 16.76 6 8 0 77390.0432 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 99647.3256 6 +O77277 Torsin-like protein 10.0 4 5 0 148634.8544 5 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 61089.4736 4 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 477969.4388 22 +O96690 Protein PDF 15.69 1 2 1 14501.055 1 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 8557138.494859999 94 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 212567.1807 8 +O97125 Heat shock protein 68 30.39 17 74 11 837308.65063 25 +O97172 UPF0729 protein CG18508 29.29 3 3 0 35202.264 2 +O97394 Protein sidekick 0.45 1 1 0 709.3839 1 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 82594.6 3 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 4812441.9987 43 +P00334 Alcohol dehydrogenase 88.28 23 232 23 120445323.65369 206 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 4685092.5109 22 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 14166.682499999999 3 +P02255 Histone H1 25.0 5 6 0 82854.4154 6 +P02283 Histone H2B 56.91 8 80 8 12521412.5167 71 +P02299 Histone H3 55.15 7 35 2 10085583.2685 29 +P02515 Heat shock protein 22 38.51 7 11 7 733068.7692999999 10 +P02516 Heat shock protein 23 84.95 16 72 0 7593471.17986 64 +P02517 Heat shock protein 26 48.08 8 23 0 2391863.3851 23 +P02518 Heat shock protein 27 55.87 11 23 0 1274436.12914 18 +P02572 Actin-42A 74.2 30 655 3 363606500.24217 585 +P02574 Actin, larval muscle 66.22 27 546 0 1875709.6829000001 19 +P02828 Heat shock protein 83 51.74 42 171 0 28687446.28203 164 +P02843 Vitellogenin-1 65.15 29 248 0 85416187.09624 185 +P02844 Vitellogenin-2 66.97 26 196 0 64219510.01699 153 +P04197 Myb protein 2.28 2 2 0 14117.824499999999 2 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 844847.233 8 +P04388 Ras-like protein 2 25.0 4 8 4 456342.869 7 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 12155.038700000001 2 +P05205 Heterochromatin protein 1 44.66 9 23 9 1020219.9382000001 19 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 4225484.2479 36 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 4094771.5337 12 +P05552 Transcription factor Adf-1 17.56 4 5 0 158162.965 4 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 475346.99345999997 10 +P05812 Heat shock protein 67B1 22.7 8 11 8 195509.2627 11 +P06002 Opsin Rh1 7.24 3 7 3 651577.8600999999 5 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 89349084.53344001 189 +P06607 Vitellogenin-3 80.0 35 270 0 144552715.94148 244 +P06742 Myosin light chain alkali 55.48 9 117 0 35620548.07646 101 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 8692.3 2 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 12681679.74143 34 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 41583114.52929 133 +P07665 Serendipity locus protein beta 5.9 3 4 0 95655.0514 4 +P07668 Choline O-acetyltransferase 14.7 8 8 8 90335.7023 8 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 193685519.50451002 332 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 153074.63415 8 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 761504.15205 22 +P08144 Alpha-amylase A 22.87 10 19 0 660174.7845 17 +P08171 Esterase-6 15.26 8 18 0 1030003.9245 17 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 96354.6493 5 +P08182 Casein kinase II subunit beta 38.72 8 19 2 1761851.31534 18 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 10459999.4834 45 +P08645 Ras-related protein Rap1 40.76 6 13 0 489887.74956 12 +P08646 Ras-like protein 1 38.62 7 19 7 1305923.7706 17 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 64461139.26195 156 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 898483.3586 12 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 18708520.06094 101 +P08928 Lamin 75.72 60 199 59 15183517.7234 176 +P08985 Histone H2A.v 42.55 10 39 8 5492926.56435 27 +P09040 Drosulfakinins 17.73 3 4 3 138528.4045 4 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 4016687.95243 47 +P09208 Insulin-like receptor 2.19 5 6 5 28286.5401 4 +P09491 Tropomyosin-2 82.39 40 292 3 1330389.761 10 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 189155.3349 8 +P10379 Protein unzipped 27.46 11 26 0 1284922.5887 24 +P10552 FMRFamide-related peptides 8.36 3 4 3 458455.395 4 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 4097481.34968 67 +P10981 Actin-87E 69.15 30 649 0 17599060.8128 27 +P10987 Actin-5C 74.2 31 679 0 4419992.8202 23 +P11046 Laminin subunit beta-1 29.14 47 83 47 4981562.6589 74 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 1651.1842 1 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 96381021.58669 338 +P11584 Integrin beta-PS 27.54 22 46 0 2203823.99143 42 +P12024 Chaoptin 34.98 42 110 0 7024689.4398 102 +P12080 Integrin alpha-PS2 12.39 17 21 17 1049075.98004 19 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 20086.939599999998 3 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 4399178.71117 49 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 66082.61723999999 4 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 787361.1435 15 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 46195.225000000006 3 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 5295855.6366 44 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 439682.67510000005 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 662157.0576 9 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 3198897.2854 39 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 5893702.36171 107 +P13395 Spectrin alpha chain 66.34 150 596 0 70375502.94391 548 +P13469 DNA-binding protein modulo 6.83 4 4 0 112952.58970000001 4 +P13496 Dynactin subunit 1 19.53 26 29 26 768689.95074 28 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 13358402.27834 134 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 467637.7062 12 +P13678 Protein kinase C 6.22 5 6 0 90460.8275 4 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 9617.32 1 +P14199 Protein ref(2)P 21.04 10 16 10 1083800.8204 15 +P14318 Muscle-specific protein 20 83.15 21 93 21 22467326.0344 86 +P14484 Pupal cuticle protein 27.17 5 23 5 1396447.9685 21 +P15007 Enolase 77.8 36 335 1 119592008.40353 302 +P15215 Laminin subunit gamma-1 38.87 56 107 0 7077969.569 102 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 40012.491 4 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 13079583.3333 59 +P15364 Protein amalgam 24.62 6 10 0 263845.895 9 +P15372 Phosrestin-2 69.78 24 97 0 5139531.1286 88 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 256202.25 4 +P16378 G protein alpha o subunit 26.27 11 43 8 5552132.320400001 39 +P16554 Protein numb 19.06 9 11 0 231585.4778 11 +P16568 Protein bicaudal D 20.59 17 19 0 543969.0773 18 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 437303.79600000003 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 7039.322 1 +P16914 Protein elav 34.58 12 38 0 1799022.6641 35 +P17210 Kinesin heavy chain 46.77 45 96 45 5188921.33219 87 +P17276 Protein henna 40.04 15 35 0 1939314.2822 33 +P17336 Catalase 44.47 19 65 19 3914699.2895299997 53 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 2807389.5435 28 +P17719 Dihydrofolate reductase 26.92 4 8 4 208418.1244 7 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 5604541.381999999 41 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 26260.734 2 +P18431 Protein kinase shaggy 43.77 19 57 0 3577500.16785 52 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 61226849.20553 229 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 254446.165 12 +P18824 Armadillo segment polarity protein 17.67 13 22 0 264619.9698 17 +P19107 Phosrestin-1 71.82 33 296 33 49007145.64886 279 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 1174617.5141 23 +P19334 Transient receptor potential protein 4.39 6 7 5 65482.1446 5 +P19339 Protein sex-lethal 5.65 2 2 0 44638.193 2 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 1411187.574 11 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 12624269.4309 60 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 77690.96399999999 3 +P20153 Protein ultraspiracle 1.57 1 1 0 21483.123 1 +P20228 Glutamate decarboxylase 20.78 11 32 0 1392351.7405 31 +P20232 Transcription elongation factor S-II 38.02 12 19 0 664368.53015 17 +P20240 Otefin 40.8 14 20 14 374763.57526 17 +P20241 Neuroglian 26.04 33 88 0 5218002.0354 82 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 917493.7655000001 10 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 53188.815 3 +P20354 G protein alpha s subunit 47.01 15 32 1 5128.2476 1 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 44219.11627 6 +P20432 Glutathione S-transferase D1 52.15 14 87 11 32204755.267 76 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 12767722.6188 66 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 57827768.89766 178 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1396807.5894 31 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 17831497.9709 109 +P22465 Annexin B10 76.01 24 137 24 24060294.6861 119 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 2521092.70706 26 +P22813 Heat shock factor protein 4.34 3 3 0 17156.735 2 +P22815 Protein bride of sevenless 2.01 2 3 2 58909.769499999995 3 +P22979 Heat shock protein 67B3 55.28 7 20 7 803226.8017000001 17 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 67473.598 6 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 1018589.00781 39 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 27789.466 2 +P23625 G protein alpha q subunit 57.51 21 85 18 11050295.3719 77 +P23654 Neurotactin 15.84 11 14 0 342993.2953 14 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 497172.33927 13 +P23779 Cystatin-like protein 57.94 7 40 7 5117853.5511 36 +P24156 Prohibitin 1 68.12 18 72 0 6095470.960270001 67 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 47786247.18699 123 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 297763.95999999996 2 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 55101.141599999995 4 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 1331541.8342 27 +P25171 Regulator of chromosome condensation 10.42 5 6 5 207256.133 5 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 9771.0453 2 +P25228 Ras-related protein Rab-3 37.73 7 22 0 398937.5023 9 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 189141.5724 9 +P25822 Maternal protein pumilio 3.13 5 6 0 114990.557 6 +P25843 Profilin 88.89 7 37 0 2616482.61964 34 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 3426341.0840000003 9 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 397745.9077 12 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 1147275.1087 21 +P26686 Serine-arginine protein 55 19.68 7 14 0 603483.5993 14 +P27716 Innexin inx1 2.49 1 1 0 2559.3645 1 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 426877.208 8 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 95908.4166 9 +P29052 Transcription initiation factor IIB 16.83 6 10 0 289816.88409999997 10 +P29310 14-3-3 protein zeta 68.55 19 282 0 76895108.84149 238 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 1035428.6888 15 +P29413 Calreticulin 58.13 22 67 0 12780223.48997 65 +P29613 Triosephosphate isomerase 78.54 20 145 19 61658373.64816 139 +P29742 Clathrin heavy chain 7.99 13 14 0 323533.57723 14 +P29746 Protein bangles and beads 63.12 27 57 27 5678085.4073 56 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 5666634.97397 68 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 219820.34633 7 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 26939684.38876 177 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 27873145.24199 165 +P30432 Furin-like protease 2 2.5 4 4 0 35049.137 3 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 8438.012 1 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 6512958.7845 37 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 4404230.676 83 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 2799732.7092 29 +P32234 Guanylate binding protein 128up 16.85 6 9 5 292561.49396 9 +P32392 Actin-related protein 3 26.56 9 16 9 424907.58759 16 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 568267.7393 18 +P33438 Glutactin 36.94 29 56 0 1505564.64875 48 +P34082 Fasciclin-2 26.8 21 34 0 1182080.21472 29 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 2257906.7982 23 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 2028815.5031 23 +P35220 Catenin alpha 26.39 24 38 14 1341068.005 36 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 127003664.99482 371 +P35415 Paramyosin, long form 75.2 91 521 0 106329053.26815 460 +P35416 Paramyosin, short form 60.0 45 292 0 10394279.9202 52 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 24017.6933 4 +P35554 Flightin 54.4 9 20 0 2129137.4829 19 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 98697.4192 7 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 5647939.4629 56 +P36188 Troponin I 57.99 21 83 0 21513904.3076 78 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 1801198.0538 16 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 22729.3966 4 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 3472814.8637 31 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 148014.244 2 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 13997304.02465 113 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 598184.2036 9 +P37236 Frequenin-1 71.66 12 40 0 1981867.6533 12 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 11099.747 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 1732810.4593000002 12 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 14970283.95157 72 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 8333990.9234 52 +P39736 Puff-specific protein Bx42 9.87 4 5 0 69392.2797 5 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 302131.7036 6 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 785272.6163 12 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 320424.044 6 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 2123905.06083 32 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 14105.68823 5 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1496346.0514 20 +P40427 Homeobox protein extradenticle 9.31 3 4 0 210883.16040000002 4 +P40792 Ras-related protein Rac1 34.38 6 13 0 1492749.5156 13 +P40793 Cdc42 homolog 24.61 4 8 0 521547.3651 7 +P40796 La protein homolog 40.51 13 18 12 815994.8536 16 +P40797 Protein peanut 38.4 19 35 18 1778999.7555 35 +P40945 ADP ribosylation factor 4 38.33 5 12 0 210827.5483 7 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 595398.5494 5 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1477972.5143 33 +P41043 Glutathione S-transferase S1 83.53 19 72 0 9681182.95054 67 +P41044 Calbindin-32 76.77 26 157 0 18630267.33151 147 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 1167737.266 25 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 2785914.293 21 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 886585.1224 14 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 5510677.6475 43 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 5172447.27689 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 4297332.067 40 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 271466.3213 7 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 1139176.2702 18 +P41900 General transcription factor IIF subunit 2 6.86 1 1 1 606.78784 1 +P42207 Septin-1 12.47 5 7 4 172111.9106 5 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 12318264.88854 47 +P42325 Neurocalcin homolog 61.05 12 34 12 2700455.3616 30 +P42787 Carboxypeptidase D 5.33 7 15 0 298717.9523 12 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 321475.903 5 +P45437 Coatomer subunit beta 8.61 5 8 5 102538.53343 6 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 22530104.49201 87 +P45888 Actin-related protein 2 28.82 9 17 9 964928.5149000001 15 +P45889 Actin-related protein 1 37.23 12 24 12 1138594.1393 22 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 24618.55 1 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 1208507.4514000001 17 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 3959372.8375 35 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 776416.432 10 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 3091796.16222 74 +P46824 Kinesin light chain 48.43 25 56 0 4863319.97071 52 +P47947 Troponin C, isoform 1 20.78 3 32 0 6436619.6637 31 +P47948 Troponin C, isoform 2 48.39 6 16 0 348939.8319 9 +P47949 Troponin C, isoform 3 62.58 8 28 0 2848433.7084 23 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 3671679.3664 30 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 3037851.6511 26 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 2751996.9111 36 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 15549107.20581 40 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 512594.4166 9 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 53923.4 3 +P48554 Ras-related protein Rac2 26.04 5 12 0 38566.484 1 +P48555 Ras-related protein Ral-a 58.21 10 29 1 3020887.9584 28 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 76391.1804 4 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 8879034.71396 59 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 930156.31693 15 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 2935248.8155400003 47 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 5921304.4921 103 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 361975.56200000003 12 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 4734761.23725 37 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 3794991.8604 46 +P48607 Protein spaetzle 9.2 3 4 0 6058.5718 2 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 219639.643 8 +P48610 Arginine kinase 1 76.69 46 489 0 195699730.60028 442 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 2579667.6641 34 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2669030.0308 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 664678.0380000001 8 +P49028 Protein mago nashi 11.56 2 7 2 94873.8203 5 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 482415.23250000004 7 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 64036.504 3 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 1354426.864 8 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 5511.878 1 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 147410.5142 7 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 8234.976999999999 2 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 24194.0386 2 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 92738.76895 5 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 3668533.2026 29 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 389347.1263 12 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 19843.1967 3 +P51406 Bystin 1.83 1 1 1 1801.7395 1 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 1460207.8998 25 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 175036.7445 13 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 1482784.7598 22 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 769316.8583 9 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 16261.913400000001 2 +P53034 Replication factor C subunit 2 20.24 6 6 6 177443.1 6 +P53501 Actin-57B 70.21 33 663 5 106272910.24838999 94 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 24709.054 2 +P53777 Muscle LIM protein 1 56.52 6 24 0 1725312.7205 17 +P53997 Protein SET 15.24 4 9 4 657761.6794 9 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 252686.96469999998 5 +P54191 General odorant-binding protein 69a 6.08 1 1 1 38569.457 1 +P54192 General odorant-binding protein 19d 71.33 13 119 13 51002141.53531 116 +P54193 General odorant-binding protein 83a 42.86 7 17 0 2885073.5919999997 13 +P54195 General odorant-binding protein 28a 40.56 4 17 4 874306.9331 15 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 84770.22225 5 +P54352 Ethanolamine kinase 13.9 6 7 4 302016.5831 6 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 1371182.16549 29 +P54357 Myosin-2 essential light chain 89.12 10 58 1 5888806.0344 49 +P54359 Septin-2 13.13 7 12 1 592709.0473 12 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 53050.988 2 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 7645802.442960001 92 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 124815.3596 4 +P54399 Protein disulfide-isomerase 76.81 40 203 0 29672294.82088 184 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 44326380.73066 165 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 554950.093 7 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 855379.0353 14 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 3760273.6216 14 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 10594961.9093 64 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 3468432.5216 27 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 4715634.2754999995 45 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 66342.8817 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 343950.64300000004 4 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 1832439.58006 22 +P61849 Dromyosuppressin 29.0 3 3 0 107562.9017 3 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 25119123.61481 112 +P61855 Adipokinetic hormone 37.97 2 4 2 73304.3784 4 +P61857 Tubulin beta-2 chain 36.55 15 179 2 3747108.341 3 +P62152 Calmodulin 99.33 19 482 0 129722387.12907 432 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 3233078.625 24 +P81829 Leucokinin 6.25 1 2 1 30511.607 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 17146905.3507 87 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 12129288.66969 39 +P82295 Prominin-like protein 0.99 1 1 0 1779416.1 1 +P82804 Partner of Y14 and mago 24.15 5 6 4 27102.7278 4 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 1912939.173 11 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 479875.9072 12 +P83967 Actin, indirect flight muscle 69.15 30 612 3 485186.8616 11 +P84029 Cytochrome c-2 76.85 13 103 0 51420765.37525 101 +P84040 Histone H4 60.19 11 107 0 17465946.33286 96 +P84051 Histone H2A 42.74 7 32 0 4602173.732799999 14 +P84345 ATP synthase protein 8 18.87 1 11 1 582736.6828 11 +P91664 Protein max 4.35 1 1 0 45020.184 1 +P91891 Protein Mo25 34.22 13 25 0 2688263.6229 22 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 615682.5161 23 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 3189970.96054 56 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 14544350.1603 110 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 5757930.6906 45 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 3182937.327 40 +P92029 DnaJ-like protein 60 5.53 1 1 0 11125.253 1 +P92177 14-3-3 protein epsilon 79.01 28 274 26 51235480.20236 206 +P92204 Negative elongation factor E 14.64 4 4 4 174191.878 4 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 52856.1616 4 +P98081 Protein disabled 6.16 12 15 0 113133.90664 12 +Q00174 Laminin subunit alpha 22.68 79 156 79 10049016.06786 144 +Q01603 Peroxidase 10.14 6 8 0 151459.2 7 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 57260290.09713 210 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 130810.0085 7 +Q01819 Connectin 2.64 2 2 0 50872.277 1 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 26392.15423 4 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 3853759.15666 31 +Q02910 Calphotin 6.83 4 15 4 322084.82964 13 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 206704.247 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 54743.1677 5 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 3233746.7496 27 +Q03427 Lamin-C 66.67 46 141 3 10797282.21214 125 +Q04047 Protein no-on-transient A 16.14 9 10 0 203582.7582 9 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 406369.9377 15 +Q04691 Fat-body protein 1 29.93 28 50 0 257578.39043 41 +Q05783 High mobility group protein D 21.43 2 7 0 177163.46004 5 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 132254010.43939 515 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 46802.6711 3 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 21367837.5637 104 +Q06943 High mobility group protein Z 21.62 3 10 0 149697.1369 10 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 48521.4527 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 1584532.2384 21 +Q07171 Gelsolin 22.06 16 44 0 4889835.9752 44 +Q07327 Protein ROP 24.29 15 40 0 1835232.73064 38 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 1695957.8611 26 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 3486.0086 2 +Q08473 RNA-binding protein squid 43.31 10 27 0 3591195.4282 24 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 279436.0491 8 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 19328.348899999997 3 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 804651.7637 16 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 135076.40899999999 7 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1590245.036 14 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 21129.74366 5 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 12520.676 1 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 299332.013 11 +Q11002 Calpain-A 7.37 6 7 0 256649.2266 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 5668098.11684 32 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 15204128.0638 84 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 12375427.01482 83 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 14021885.97346 105 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 8279350.329 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 13257317.82425 89 +Q24050 Elongator complex protein 5 27.48 6 10 6 387842.9998 9 +Q24114 Division abnormally delayed protein 20.93 10 15 0 522963.6176 14 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 1349505.4807 21 +Q24134 Negative elongation factor D 4.84 2 2 0 43680.43459999999 2 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 15444.718 4 +Q24185 Protein hook 28.28 21 32 21 1208874.1064 32 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1926670.1595400001 32 +Q24207 Protein boule 36.4 6 12 0 408485.3994 10 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 347507.50037 19 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 36650.7083 7 +Q24211 Protein stoned-A 42.71 35 65 0 3718671.7108 61 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 9073616.00554 28 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 236431.3193 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 94883.0646 4 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 56995362.17539 172 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 1759093.3275 26 +Q24292 Protein dachsous 0.54 2 2 0 41447.796 2 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 241488.252 2 +Q24298 DE-cadherin 21.57 29 50 29 2064169.0892999999 47 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 62793.2537 5 +Q24318 Transcription factor Dp 16.18 7 8 0 109794.8805 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 657648.039 8 +Q24322 Semaphorin-1A 4.67 4 5 0 34933.0438 5 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 446743.477 4 +Q24372 Lachesin 27.58 9 17 9 799389.0453 16 +Q24388 Larval serum protein 2 12.27 8 11 0 483157.8386 9 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 11714021.86436 74 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 16256974.60833 60 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 85729566.6556 180 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 547834.6854000001 22 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 431382.49117 10 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 88354.635 8 +Q24509 Syntaxin-5 4.93 2 3 0 33998.626000000004 3 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 757696.89994 14 +Q24524 Protein singed 10.35 5 5 0 38926.423299999995 4 +Q24537 High mobility group protein DSP1 22.9 8 15 0 1029389.9469 14 +Q24547 Syntaxin-1A 43.64 15 53 0 8196447.7982 50 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 53419952.42426 254 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 151956.029 6 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 486975.3726 8 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 6783573.95825 30 +Q26377 Pro-corazonin 44.81 5 17 5 353218.70176 15 +Q26416 Adult cuticle protein 1 20.0 1 3 1 559396.63 2 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 798839.23656 12 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 846681.2739799999 17 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 111907.17850000001 4 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 4515259.97726 50 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 2473654.4729 14 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 5534695.0143 49 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 632569.5301 10 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 253407.46110000001 11 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 1061532.4732300001 19 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 882373.0462 15 +Q3KN41 Neurexin 1 3.37 5 5 0 40122.6413 5 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 5962.0136 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 174645.94060000003 5 +Q4V645 Trissin 7.41 1 1 1 37880.707 1 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 182637.6668 5 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 51551.1923 2 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 774140.0486 17 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 23032.47657 4 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 18309.3394 3 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 174621.24659999998 7 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 201731.7781 6 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 354418.7249 6 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 1500074.74685 11 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 920413.5983 13 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 107227.6201 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 880413.0253999999 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 1404753.7166 27 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 40127.273 2 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 380918.1752 11 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 173776.6606 8 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 1276541.9893 17 +Q7JXF7 Protein seele 39.15 6 16 6 733681.7111000001 15 +Q7JYV2 Synaptogyrin 8.3 1 2 1 5787.124449999999 2 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 49449.479999999996 5 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 114596.61146 4 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 281607.001 14 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 270914.93363 10 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 420334.50669999997 11 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 245691.372 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 7225.222 1 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 3921120.6155 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 84122.7863 3 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 654769.7355 11 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 639413.80136 21 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 68712.1265 4 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 1835554.5846 22 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 69258.6835 5 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 17888642.8721 72 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 221887.82594999997 7 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 4161010.7664 27 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 3326059.4592 36 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 31483.5771 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 2415787.97037 66 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 463447.7897 15 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 612963.97588 14 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 37175.2717 8 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 86848.25200000001 2 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 712333.6342999999 11 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 29279256.998660002 77 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 10910.472099999999 2 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 362866.8057 9 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 555194.454 16 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 159235.5421 4 +Q7KVY7 Syntaxin-4 14.11 4 6 1 84621.4128 6 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 60773.645000000004 6 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 7035464.165 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 2284.7817 1 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 2667288.45625 28 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 943712.4867 19 +Q868Z9 Papilin 23.81 59 118 59 4766332.23289 110 +Q86B79 RING finger protein unkempt 6.18 3 3 0 72235.754 3 +Q86B87 Modifier of mdg4 5.74 3 6 0 128241.14540000001 5 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 104330.995 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 8798.7485 2 +Q86NP2 Negative elongation factor A 11.99 11 18 0 227570.99827 14 +Q86P48 AT-rich binding protein 5.15 1 2 1 3490.3042 1 +Q86S05 Protein lingerer 5.96 6 8 0 13556.5265 7 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 112249.016 5 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 2804457.6524 35 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 142900.2468 9 +Q8IN41 Protein Turandot X 16.2 2 4 2 46043.0863 4 +Q8IN43 Protein Turandot C 48.84 5 12 5 2053372.151 12 +Q8IN44 Protein Turandot A 64.34 9 34 9 4240927.6668 30 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 219197.6936 10 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 3271.0216499999997 2 +Q8IPM8 Complexin 71.13 11 97 0 24708.1877 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 459631.067 17 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 282008.7465 6 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 51390.575000000004 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 148479.21156 9 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 455692.989 9 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 634451.4920000001 6 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 5508207.71497 43 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 88687.9402 4 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 28265.2799 4 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 24002.3665 3 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 799306.1321000002 5 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 191656.7483 6 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 4539631.116789999 45 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 1508721.7996 19 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 33676.335 2 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 81454.55309999999 7 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 19984.464200000002 3 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 506460.26570000005 10 +Q8MSS1 Protein lava lamp 22.63 60 78 0 986225.57101 72 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 100419.375 3 +Q8MSV2 Protein alan shepard 16.78 8 21 8 954292.868 18 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 30006.203 1 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 41932.301699999996 7 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1887938.22883 19 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 945489.5824 30 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1975964.778 18 +Q8SY33 Protein Gawky 14.09 15 25 15 318362.2678 22 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 10339482.5984 53 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 991928.84477 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 140596.429 5 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 5545.312 2 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 14177.447199999999 2 +Q8SZ63 Golgin-84 13.57 7 7 7 33113.9997 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 787410.254 14 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 2156361.0595 41 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 3325311.0623999997 55 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 7669.5605 1 +Q8T390 Endophilin-A 62.33 23 114 0 10037032.81708 100 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 349447.676 7 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 2044064.9835 19 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 873153.8265 19 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 573624.0114999999 14 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 9867.4652 3 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 2178075.6579 23 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 47426.998999999996 4 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 14055473.0582 119 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 26588897.43924 90 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 35817900.46281 140 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 6705.133 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 5018652.319730001 36 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 4567894.3891 24 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 26294855.114240002 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 3740414.0135 57 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 115265.91 5 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1827490.9202 38 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 7879.9057 4 +Q94547 Regulator of gene activity 10.77 6 9 0 296558.6774 8 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 105640.94722 6 +Q94901 RNA-binding protein lark 44.03 16 37 16 846967.7842999999 33 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 48448.776399999995 3 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 415868.9677 8 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 182337424.1762 329 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 2290.5632 1 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 100396.4983 4 +Q95029 Cathepsin L1 36.39 19 81 3 10370415.95926 73 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 2539829.2222 26 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 70329.526 3 +Q95RA9 GILT-like protein 1 40.0 8 30 8 3049689.2722 27 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 35848.0623 4 +Q95RI5 Failed axon connections 63.16 27 130 0 17050827.67901 123 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 52561.131299999994 3 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 272687.262 5 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 18509.9842 2 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 578279.4711 18 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 99390.762 3 +Q95T12 Calcium channel flower 12.89 2 3 2 190014.0355 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 8878.2757 2 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 31093.5683 3 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 88884.6191 7 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 38283.703 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 567110.8199 22 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 50707.6849 7 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 321151.998 7 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 36681.516 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 23186.600000000002 3 +Q967D7 Protein turtle 4.51 7 9 0 156744.46545 8 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 294180.05527 16 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 329083.2925 7 +Q9GQQ0 Protein spinster 1.98 1 3 1 33275.669 2 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 12869048.18514 50 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 26936.8535 4 +Q9I7D3 Caprin homolog 15.09 10 12 0 94739.96698999999 9 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 220613.7814 7 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 197371.7954 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 198900.87247 5 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 468646.44075 12 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1583732.82853 30 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 58059.4214 5 +Q9I7U4 Titin 3.75 33 36 0 691959.53148 30 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 107198.09800000001 3 +Q9NB04 Patj homolog 33.87 24 53 0 1693883.5972 48 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 17846.153100000003 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 75805.859 2 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 17128.219 2 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 276667.8367 7 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 447166.9114 5 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 68116.2841 8 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 66064.109 2 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 2065.105 1 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 4417321.35974 61 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 103880.59229999999 6 +Q9TVM2 Exportin-1 0.85 1 1 0 4581.401 1 +Q9TVP3 J domain-containing protein 85.64 19 103 19 25091727.66762 96 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 2404168.1742000002 17 +Q9U4G1 Protein borderless 18.5 13 29 13 1399178.6377 27 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 304545.5809 9 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 769690.24625 16 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 1959915.3324 20 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 7159.341 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 124744.52620000001 6 +Q9U915 Adenylate kinase 2 75.83 22 60 22 5094091.0941 53 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 380415.101 7 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 625551.8814 13 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 547336.09639 18 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 878483.5022 15 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 17261.9875 2 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 4561.74 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 137158.94 5 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 3988382.66947 36 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 51178.962 2 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 4519821.719500001 26 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 26107.9666 6 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 460770.886 8 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 1394078.96097 18 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 487681.75659999996 13 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 4254887.68515 48 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 339020.2407 8 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 609631.5651 21 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 104504.9974 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 1106392.0842 26 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 41655995.77 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 206250.9048 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 38139.791 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 31332.1079 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 538326.24395 13 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 28842.747 3 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 9382177.37334 56 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 424105.19019999995 7 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 885772.7182 10 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1208587.1039 9 +Q9V3Z2 Serine protease 7 15.86 5 6 4 173325.2348 6 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 149635.2414 8 +Q9V427 Innexin inx2 18.26 7 11 0 714407.1048 10 +Q9V429 Thioredoxin-2 65.09 6 47 6 18673702.0411 47 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 1106505.7945 13 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 1574335.457 23 +Q9V447 Krueppel homolog 2 17.03 4 4 0 63014.1174 4 +Q9V496 Apolipophorins 38.44 126 319 0 36214646.93449 287 +Q9V498 Calsyntenin-1 2.97 3 3 0 25614.7746 3 +Q9V4A7 Plexin-B 0.54 1 1 0 701.5324 1 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 26679.004999999997 2 +Q9V4C8 Host cell factor 7.0 10 13 10 359704.4854 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 56377.0063 4 +Q9V4N3 Cytochrome b5 44.03 5 20 5 1362747.3507 15 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 296251.6057 9 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 385584.2474 8 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 65364.481049999995 7 +Q9V521 Phenoloxidase 2 28.36 22 33 21 1148511.4949 30 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 640830.3881999999 17 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 47110.737 6 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 1044303.5471999999 20 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 2958678.0006 27 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 4425457.4175 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 21691.936 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 36546.55145 4 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 596641.747 15 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 11785.3955 1 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 230844.6047 8 +Q9V6G5 Tafazzin 8.2 4 4 2 38854.87747 4 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 11817853.84134 77 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 43320.79708 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 72535.303 2 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 157224.3774 7 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 70818.4892 3 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 6877795.969099999 65 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 25883958.25915 115 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 1762546.6386 24 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 152618.964 7 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 285213.775 3 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 3334.8318 1 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 1213140.43753 40 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 11477197.41866 149 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 1483579.943 17 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 989756.5452999999 12 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 91287.1 4 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 185783.53 5 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 208104.935 8 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 74449.022 4 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 20498.266 2 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 32273.1618 4 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1730855.5279 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 172069.8908 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 1616532.0387 16 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 47021.1076 6 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 38900.782100000004 4 +Q9VA37 Protein dj-1beta 83.96 12 76 12 14191431.01392 69 +Q9VA70 Neutral ceramidase 3.98 3 3 0 45881.33786 3 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 15075758.43496 51 +Q9VAF5 Cadherin-99C 6.33 10 10 10 111626.9775 10 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 3017587.6303000003 18 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 5904076.21 18 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 14109805.32111 62 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 83287.4933 4 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 3280452.6673999997 31 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 346203.3087 6 +Q9VAW5 La-related protein 1 5.5 7 8 0 38017.99686 7 +Q9VAY3 Mitoferrin 5.8 2 2 2 8843.668 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 80857.69600000001 3 +Q9VB68 Serine protease grass 9.28 4 4 4 101913.5864 3 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 274929.4892 8 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 94715.7555 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 35295.0596 5 +Q9VBV3 Protein takeout 33.33 6 7 0 436136.39 7 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 402547.68237 13 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 23686.223 1 +Q9VC57 Atlastin 3.14 2 2 0 66418.207 2 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 40166.9403 4 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 3748.9307 1 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1709502.846 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 594810.7469 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 94816.698 3 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 55169.777 2 +Q9VCE8 Actin maturation protease 16.48 2 4 1 11544.1522 2 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 600992.8791 10 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 638806.26064 19 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 74518.4335 3 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 435990.50669999997 11 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 669466.8544000001 14 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 63244.3222 2 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 23677.2997 4 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 33046.3296 3 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 450569.344 11 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1532455.58071 21 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 55466.609000000004 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 4647.229 1 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 112895.78899999999 5 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 264288.8218 11 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 44451.7843 3 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 249193.77899999998 2 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 23075.19 1 +Q9VDL1 Esterase CG5412 18.28 5 11 5 136833.5139 11 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 75962.5415 6 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 1033135.5768 9 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 61821.805 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 437043.4316 10 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 28593.074699999997 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 17739185.0883 56 +Q9VER6 Modular serine protease 10.51 7 8 7 180203.1697 7 +Q9VET0 Neuropeptide F 29.41 3 4 0 60745.838 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 5105015.2642 55 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 151996.654 9 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 42897.507999999994 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 166898.6048 9 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 16196875.30398 77 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 34075.0251 2 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 1389103.9813 18 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 86951.15 3 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 485580.58 4 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 3223724.4436 38 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 182009.0642 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 60933.793 1 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 17291.13065 4 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 11917.67068 3 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 253908.20190000001 5 +Q9VFM9 Twinfilin 30.03 10 13 10 426341.80085 12 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 68606.35826000001 6 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 183856.18799 7 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 18072.9894 4 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 367481.43090000004 13 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 14061.7385 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 3323.09885 2 +Q9VG55 Protein hugin 14.66 2 3 2 80825.60029999999 3 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 423784.662 12 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 8765.36484 2 +Q9VG76 Myc-binding protein 15.47 3 3 3 121136.426 2 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 42121.418000000005 3 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 1730972.4067 17 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 104370.0767 5 +Q9VGG5 Cadherin-87A 8.35 12 13 12 262118.75006 13 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 54983.3125 2 +Q9VGP4 Importin-9 3.63 3 3 3 48555.176999999996 3 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 581496.8333 14 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 279616.5697 6 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 8128.2723000000005 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 9795794.3347 38 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 495191.00800000003 9 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 21632.4556 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 11998.438900000001 3 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 804631.1704 16 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 56285.234000000004 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 965418.7889 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 594428.639 4 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 7682588.7650999995 22 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 10537.3187 2 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 32379.9797 4 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 304990.90663 9 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 117576.414 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 825458.7409999999 11 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 116223.95496 11 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 732674.496 10 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 66409.834 4 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 417833.96498 14 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 4452.5396 1 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 2712692.21766 57 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 7783041.4889 44 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 56583.990999999995 3 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 103270.0315 7 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 164662.29499999998 9 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 97641.424 5 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 193795.386 5 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 337207.0518 17 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 30191.8366 4 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 2523079.276 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 2090974.0563 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 56005.4995 5 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 131215.7159 5 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 697451.3555 11 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 24302.0923 4 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 478664.8 15 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 10501.551 1 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 7222.9508000000005 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1532711.6436 16 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 512193.0135 9 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 742960.997 9 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 1455683.9474 9 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 165986.81 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 19277.135000000002 2 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 45421.8292 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 122173.604 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 18790.847 2 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 695587.1111999999 15 +Q9VJL6 Glia maturation factor 23.91 3 4 3 102977.204 3 +Q9VJQ5 Protein Dr1 26.78 4 4 4 78305.019 3 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 1424901.994 14 +Q9VJY9 Protein Loquacious 8.17 4 6 0 284870.0907 6 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 9824.674200000001 4 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 952943.0599999999 17 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 8357.0296 2 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 47902.8947 3 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 314500.26399999997 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 37901.52266 8 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 26002.164 1 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 123163.69900000001 7 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 7941.3403 1 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 306166.86699999997 5 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 38746.5357 4 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 5681389.65371 68 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 4519440.10237 71 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 435468.254 5 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 126886.32930000001 8 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 263974.0401 14 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 318194.711 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 297642.33215000003 8 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 1418483.5163999998 12 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 35505.93273 4 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 1900320.8081 23 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 674902.8175 7 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 379900.5336 6 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 20218.477 1 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 45998.291 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 62714.5143 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 9444.804759999999 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 119039.94238 6 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 91943.1443 10 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 88075.406 2 +Q9VMD6 Protein real-time 1.52 1 1 0 1994.7462 1 +Q9VMD9 Tiggrin 19.93 46 58 0 1686278.54017 57 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 361607.6162 9 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 1039536.6166999999 17 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 18725.8578 3 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 126170.5536 2 +Q9VMR8 Protein Turandot M 41.98 4 7 0 2140937.901 7 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 92372.85115999999 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 50771.3336 2 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 269302.47314 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 2295146.324 21 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 24810.595 2 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 162267.3204 9 +Q9VMY9 Guanine deaminase 8.04 4 4 4 56532.3853 3 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 18284.2713 2 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 206539.2076 7 +Q9VN14 Contactin 19.93 25 44 25 1355216.55623 39 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 41565.9128 2 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 30719.1692 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 510062.4894 7 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 1818160.778 25 +Q9VN93 Cathepsin F 34.85 22 48 19 3082784.3505 41 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 676316.58395 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 121503.856 4 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 203245.5891 8 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 670653.2058 11 +Q9VNE2 Protein krasavietz 19.91 11 23 11 1244594.8378 20 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 973410.4224 12 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 12918.0625 1 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 23806.996 1 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 389504.01560000004 12 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 84222.254 6 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 167811.53369999997 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 173719.1416 7 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 114271.6355 5 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 339265.06366 12 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 9560952.0651 49 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 1438897.9627 17 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 195514.6545 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 168258.285 8 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 298358.116 4 +Q9VQC4 Glycerate kinase 15.61 8 9 0 130264.9054 9 +Q9VQF7 Bacchus 40.79 6 15 6 1010675.8757000001 14 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 85465.64799999999 3 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 1631187.4 20 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 628540.0779 12 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 73054.11660000001 7 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 474967.7765 12 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 3349.538 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 53270.352470000005 5 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 14239.387 3 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 133789.52 4 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 225679.97056 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 25119.6746 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 77305.4699 4 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 32814.946599999996 4 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 103954.8595 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 627474.6108 6 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 363184.967 7 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 68052.717 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 8902787.6346 89 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 337510.899 10 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 45036.0633 3 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 114773.6283 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 21697.6049 2 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 15654591.01524 61 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 91878.3191 3 +Q9VSS1 Protein Pixie 1.15 1 1 1 21571.09 1 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 163502.1536 9 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 24148.8574 2 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 3023768.10628 52 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 267696.4437 5 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 28930.47 1 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 33411.313 2 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 44137.6601 3 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 14317.423 2 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1235400.885 18 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 233921.90589999998 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 307740.7104 8 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 88950.2305 3 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 276312.13899999997 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 160544.766 6 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 76877.5046 5 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 4885953.2404 44 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 459439.417 11 +Q9VTZ5 Transferrin 2 24.42 20 23 20 766964.2591 20 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 422526.84849999996 11 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 35737.977 1 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 38616822.61398 112 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 2160110.32605 36 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 76617.8212 5 +Q9VU84 Drebrin-like protein 33.33 15 28 15 1111365.9797 26 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 222001.81960000002 7 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 134292.5314 5 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 4986552.7584999995 46 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 317406.1829 10 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 2460264.7709 39 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 813.0858 1 +Q9VV36 Retinin 29.84 5 103 5 78349531.39742 85 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 4525305.90451 44 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 1992996.6731 27 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 103685.47510000001 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 329583.517 6 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 1324040.518 25 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 128446.36989999999 7 +Q9VVE2 Protein rogdi 33.96 9 14 9 996232.02344 14 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 904106.316 12 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 93007.1979 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 2021332.4672 29 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 60368.998530000004 8 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 18983.9958 3 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 2178716.71434 36 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 52660.29808 5 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 75626.047 4 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 281039.567 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 160208.25699999998 4 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 66221.38286 7 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 2503056.89391 21 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 9608.7723 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 286868.797 10 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 1022587.7989 20 +Q9VWA1 Clathrin light chain 43.84 14 43 0 4488776.33377 38 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 64126.168000000005 2 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 70514.9361 4 +Q9VWE0 Cytokine receptor 3.28 4 4 4 11283.0478 3 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 4800.5884 1 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 995805.5505 11 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 60570349.31585 202 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 8028011.81475 27 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 217614.1708 15 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 72579.7314 6 +Q9VWU1 Serine protease persephone 6.85 2 2 2 29461.400999999998 2 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 570300.08847 3 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 2735.7195 1 +Q9VWX8 Frequenin-2 54.01 10 42 4 4304678.5539 41 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 28032.386 2 +Q9VX10 Sulfiredoxin 11.73 2 3 0 66136.17275 3 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 437309.51225 13 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 3437231.8505 27 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 11364.328 1 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 394095.1927 10 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 38680.12845 4 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 30149.1074 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 4095454.88835 53 +Q9VXG4 Annexin B11 22.31 13 30 13 2930142.7285 28 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 546151.8131 17 +Q9VXK0 Protein NipSnap 15.38 4 6 0 429990.0997 6 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 544584.49305 14 +Q9VXN2 Protein stunted 55.74 4 15 4 1148118.648 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 66100.7855 5 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 1194705.7879 19 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 496808.566 7 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 11734.7519 3 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 5293448.6078 32 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 64694.38455 5 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 7516.2516 2 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 1436135.496 11 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 126221.634 3 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 15483.8014 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 1153693.7188 12 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 2464.7488 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 38766.64 2 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 6055.5356 1 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 1115534.33685 11 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 15885.055 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 42936.0011 4 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 179857.15689999997 4 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 39905.880999999994 2 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 4505023.3978 57 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 89087.871 4 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 106196.55829999999 2 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 1022583.9968 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 419058.167 10 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 5285006.20954 33 +Q9VZ35 Protein Vago 20.62 2 2 2 17142.617 2 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 507448.2321 7 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 908740.11283 24 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 2082431.6332 23 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 173541.80497 10 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 213695.528 3 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 35371.4507 3 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 20684.67 1 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 54090.056899999996 6 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 14144.8306 2 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 13763.459 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 133848.142 2 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 601822.4108 9 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 3158372.7188999997 32 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 5142994.08089 68 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 987908.1408 18 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 60975.03 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 4871990.3477 57 +Q9W074 Protein HBS1 4.63 3 3 3 42040.882 3 +Q9W0A0 Protein draper 6.21 5 7 0 34574.126019999996 6 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 5027468.6292 36 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 6891.8066 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 60005.04653 6 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 253820.0676 13 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 865255.4940000001 17 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 1100999.7974 20 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 378976.3973 11 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 50095.1924 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 9339.523 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 20231379.8429 41 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 370429.6075 7 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 37374.630900000004 5 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 116222386.7278 90 +Q9W1G0 Probable transaldolase 56.5 17 62 17 11681472.9702 59 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 11995.001 1 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 1208719.042 6 +Q9W1K5 Sestrin homolog 1.41 1 1 0 36775.594 1 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 151131.51799999998 3 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 642047.8472 7 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 68872.2261 8 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 67885.131 5 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 82074.0526 7 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 448443.2733 6 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 6958159.47115 50 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 366416.145 10 +Q9W266 Protein windpipe 13.44 10 18 10 1006762.5926 18 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 2871674.7406 23 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 961937.2303 13 +Q9W2E7 Protein Rae1 17.63 6 8 6 312409.75399999996 8 +Q9W2M2 Trehalase 40.94 22 40 0 1255068.2244 37 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 313866.997 6 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 53801.4662 2 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 35471.817899999995 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 263942.9011 7 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 8691622.06926 73 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 1107937.01487 15 +Q9W358 Chaperone Ric-8 8.55 6 6 0 95587.1767 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 17298270.7448 97 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 380244.1749 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 369193.842 6 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 307934.22969999997 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 139006.673 4 +Q9W3E2 Protein PIP82 26.03 29 40 29 763676.88663 34 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 203200.033 11 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 62018.606250000004 3 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 122954.86064999999 9 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 327133.667 4 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 217277.38650000002 8 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 11089.491600000001 3 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 21800.308 2 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 84894638.48717 183 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 203484.02603 5 +Q9W436 Neprilysin-1 7.54 6 7 6 56836.5869 6 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 163584.514 8 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 3124.74715 2 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 216372.4556 5 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 1511167.7999 18 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 549648.31404 24 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 475587.822 11 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 2268677.1932 23 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 124119.37663 7 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 5506742.95458 151 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 107814.384 4 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 2006443.5898 25 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 348676.1803 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 47680.5223 3 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 844066.73224 15 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 8301.205 1 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 4127746.3169299997 67 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 2526.1768 1 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 9541.313 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 1456564.3422 10 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 2390793.9795 29 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 107452.936 5 +Q9XZ14 Protein gone early 8.19 5 6 0 42782.8388 5 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 204950.72830000002 12 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 1424280.428 16 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 3978468.1739600003 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 4926440.1204 35 +Q9XZL8 Protein sarah 31.16 7 13 0 499551.37615 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 20528.087300000003 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 63434.0904 2 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 44093.1359 6 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 1403109.5033 20 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 488145.1214 4 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 3109214.0133 16 +X2JAU8 Protein nervous wreck 40.0 41 115 41 11953801.78348 102 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 32871.945 1 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 468930.1962 16 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 37461.86 1 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 520593.5622 15 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 155096.697 5 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 381191.1561 14 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 16747.4344 2 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 9252442.752460001 117 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 43203.0946 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 2297.9932 1 +A0A0B4JD47 Missing-in-metastasis, isoform E 2.46 1 1 0 563.3358 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 524753.88165 29 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 333590.9877 14 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 57967.223 5 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 948542.5986 21 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 28431924.35329 170 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 91067.7717 7 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 82764.0628 7 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 1213074.1212 37 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 620097.0267 14 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 79658.0983 4 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 238707.23541999998 12 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 96781.2206 6 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 181464.25175999998 8 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 32056.31537 4 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 379332.22105 18 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 4245.038 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 12247850.16472 127 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 560399.7763 15 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 158453.7895 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 29768.316300000002 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 35883.04664 6 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 2180.8792 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 8453017.63655 42 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 67911.1395 6 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 4448.3926599999995 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 3777131.9326400002 67 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 71878.6642 5 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 1245485.96205 28 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 136557.4211 5 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 225400.0796 9 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 77791.6695 3 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 539503.29102 15 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 1338698.9303 19 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 2393612.3972 45 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 116113.5678 6 +A0A0B4KEJ7 Coronin 14.21 7 8 0 122867.0673 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 30719.5412 3 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 25454.0894 3 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 105148.86400000002 4 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 473943.5831 26 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 5800.877 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 30057.5282 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 46018.8037 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 475717.9385 21 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 117433.54860000001 8 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 65021.062529999996 3 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2801937.14835 44 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 64083.1577 4 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 12920057.24824 94 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 487915.8659 14 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 1114846.5626 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 1225794.8446399998 16 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 463282.794 6 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 10705.777900000001 2 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 209905.6813 10 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 148665.3664 8 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 47879.951 2 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 2392.7944 1 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 13189.3523 2 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 45137.5243 2 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 301106.91368 8 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 63905.9347 3 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 85347.1374 6 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 10467.149 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 133106.2177 7 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 57307.293 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 427534.5851 18 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 2434957.29154 23 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 3187667.5686 42 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 3666.7284 2 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 18709.475 2 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 12067.7917 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 51348.18 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 2468965.1905 39 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 35039.962700000004 3 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 12316.4797 3 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 94471.0385 5 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 107831.1582 6 +A0A0B4KH34 Annexin 57.41 23 123 4 21373792.79786 116 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 11948.3413 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 14827.7515 2 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 1003254.81223 15 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 553892.9167000001 25 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 141230.187 4 +A0A0B4KHF0 Ferritin 77.97 21 133 1 35673555.02175 103 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 105072417.83123 278 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 267727.64047 10 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 6200.7363 1 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 64711.773 5 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 852566.2493 16 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 1064310.71145 28 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 395529.3 3 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 217099.90420000002 9 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 42639.3951 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 302704.65645 6 +A0A0B4KHZ0 Without children, isoform E 0.53 1 1 0 385.019 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 3907906.4791 41 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 3435375.4763 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 95712.291 5 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 17438.58 1 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 61600.0169 7 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 6067.77153 3 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 24066.593500000003 4 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 1997292.7257 27 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 1381676.7674 31 +A0A0B4LF95 glutaminase 18.84 10 11 0 284296.6125 11 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 1937695.9796 21 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 456820.65729999996 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 113641.188 4 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 23822.4244 3 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 96581.4656 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 30480.471999999998 3 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 30700.343 3 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 561361.4774 9 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 55519.084930000005 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 531855.24092 14 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 47955.141 2 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 279881.0014 11 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 4582185.2614 47 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 823281.0745 10 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 54434.954 3 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 827153.37018 22 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 85567.8698 8 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 11968913.68336 59 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 111387.4583 3 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 139754.46649999998 9 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 1872557.14716 38 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 45017.28353 7 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 345464.9001 7 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 23483.725 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 15855.69133 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 166092.70059999998 9 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 38524.945 1 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 16606.096 1 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 20089.068 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 9644.57 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 326082.4227 18 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 21474.062599999997 2 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 48234.4004 3 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 420795.4284 29 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 191146.85950000002 9 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 116074.5442 6 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 529487.14745 12 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 9151.948499999999 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 1052909.9318 15 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 79103.775 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 44824966.21227 162 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 460196.13930000004 9 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 59697.2333 3 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 5401.5728 1 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 7320244.437 17 +A0A4D6K4X9 Axundead, isoform F 3.44 2 2 0 598.70917 1 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 24392926.02454 131 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 242537.77683 19 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 137910.9527 9 +A0A4P1SAA7 IP07559p 11.17 2 3 1 51700.8275 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 698.7727199999999 2 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 2094013.99238 64 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 427974.7975 16 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 2646.3765 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 19692.25 1 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 18947.936 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 23227145.63944 294 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 6817.8364 1 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 7292919.8062 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 227869.497 8 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 36640.1657 6 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 36476.6897 2 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 73846.2672 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 16446.552 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 146654.46860999998 8 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 22069814.65016 312 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1584283.4849 40 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 2712212.9088 35 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 1707762.0013000001 23 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 83851.8271 10 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 203005.34240000002 11 +A1Z6F6 FI18602p1 16.42 12 15 0 536297.83893 12 +A1Z6G9 FI18173p1 7.0 2 2 2 23704.5289 2 +A1Z6H4 RE52822p 16.12 8 11 0 380692.9325 10 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 67769.9323 8 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 11949.2866 2 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 493365.3725 9 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 1041957.1792199999 33 +A1Z6R7 FI21445p1 51.79 12 20 12 715758.69124 19 +A1Z6V5 FI01422p 44.02 15 36 15 2068518.3838 30 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 740504.7702 10 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 293730.1044 11 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 67886.219 3 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 24665.5927 3 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 11813.09785 3 +A1Z7B8 GEO08456p1 21.52 3 10 3 353820.08794 10 +A1Z7G2 MIP13653p 13.39 2 8 2 3603105.3370000003 8 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 439796.79980000004 12 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 45235.8213 4 +A1Z7K6 FI20236p1 10.06 4 4 4 64830.750700000004 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 499645.1283 10 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 172268.0132 4 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 279247.9325 8 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 2106546.88757 41 +A1Z7V9 FI20020p1 6.93 4 6 1 87642.389 5 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 25262.8387 3 +A1Z7X8 FI02944p 18.53 7 7 7 150921.79559999998 6 +A1Z803 FI02892p 32.35 12 17 12 497556.0213 17 +A1Z843 Nodal modulator 3 13.26 15 17 15 408051.6088 16 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 3050104.55794 38 +A1Z871 CAP, isoform B 14.53 25 34 0 565786.8124 6 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 8702184.643 49 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 430455.3491 7 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 328665.259 3 +A1Z8G7 FI09243p 16.53 2 4 2 5227.0293 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 30757206.93234 48 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 508111.06287 17 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 67596.6494 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 54077.838299999996 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 3431825.9346000003 19 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 495618.33363 16 +A1Z933 GEO02273p1 25.58 2 4 2 385900.18799999997 4 +A1Z934 SD19268p 39.46 11 28 11 1716588.7207 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 93261.23 4 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 361604.26489 23 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 24198.6571 4 +A1Z9B5 IP16508p 15.06 3 3 3 87089.4678 3 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 8500466.9994 49 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 2376077.0839 22 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 442624.77465 43 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 591570.817 9 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 111382.54426 7 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 878792.0973499999 7 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 10142.1737 2 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 14957.4097 2 +A1ZA23 FI18007p1 29.23 9 23 9 820689.60036 22 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 1583.1897 1 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 432350.0631 9 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 148875.9076 6 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 76624.324 4 +A1ZAH3 FI16515p1 4.82 2 2 0 1562.6493 1 +A1ZAK3 Protein DEK 4.05 3 4 0 56838.652 3 +A1ZAL1 lysozyme 30.43 5 7 5 329199.067 7 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 1606.9241 1 +A1ZAU4 RH39096p 50.48 18 44 0 6938098.67466 42 +A1ZB23 IP19117p 10.88 2 2 2 36440.4903 2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 12861.652 1 +A1ZB68 FI01423p 47.27 11 25 11 1371633.53866 24 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 8345761.12557 27 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 527759.2660000001 5 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 2530905.6813 22 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 132450.062 3 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 30576.807099999998 4 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 5883524.2681 39 +A1ZBA5 FI07234p 4.64 2 2 2 132032.35199999998 2 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 110447.306 6 +A1ZBD8 Mucin-5AC 6.1 7 9 7 97588.2395 7 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 10207.2204 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 1844433.35175 47 +A1ZBK7 Crammer 27.85 2 11 2 496896.121 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 61058.0798 3 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 978033.4076 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 644856.1039 14 +A1ZBU5 GNBP-like 3 41.45 4 4 4 132405.796 4 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 98134.9638 4 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 5378164.01305 52 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 13777.346 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 1369299.01149 45 +A1ZBX6 lysozyme 14.53 3 4 3 81357.6431 4 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 3190.6472000000003 2 +A2VEG3 IP16294p 1.06 1 1 0 3976.881 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 4714.428 1 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 271184.933 5 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 1370584.8787 28 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 68674.10683 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 1944149.0652 19 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 8424786.7931 71 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 6870314.7061 97 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 12562.6824 2 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 12614692.14075 37 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 462376.042 11 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 183056.88277 10 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 2875890.4984 14 +A8DYD1 Combgap, isoform L 11.11 9 11 0 158920.8335 11 +A8DYI6 Prohibitin 69.53 23 83 3 9782541.1319 75 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 888010.2794 27 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 163934.0644 9 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 2589.9966 1 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 92533.9032 5 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 15794.3227 3 +A8DZ06 Stolid, isoform J 11.43 13 22 0 666555.79756 17 +A8DZ14 FI17828p1 24.09 13 28 7 2694029.6912 25 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 48840.8395 4 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 29880.576 2 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 858054.1979 39 +A8E6W0 IP19808p 28.28 5 8 5 147535.6061 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 369597.30299999996 3 +A8JNJ6 Karst, isoform E 2.12 9 9 0 57673.336370000005 8 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 14980.55745 4 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 74503.729 3 +A8JNP2 arginine kinase 73.87 45 492 2 9516786.401999999 21 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 245089.7599 13 +A8JNS4 Starvin, isoform E 10.08 5 6 0 75991.6981 5 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 32464.3163 4 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 212537.948 7 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 75631.3047 6 +A8JQT5 Moesin/ezrin/radixin homolog 1 0.7 2 2 2 928.37225 1 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 22025.4402 2 +A8JQW3 Pinin, isoform B 17.26 5 5 0 45356.3705 5 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 107175.40400000001 2 +A8JR01 Kramer, isoform I 1.39 5 5 0 24904.786 4 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 146998.711 3 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 308007.1384 8 +A8JR58 Hadley, isoform B 11.24 3 3 2 33777.826909999996 3 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 13268991.55443 83 +A8JRH3 FI20012p1 71.29 30 91 1 7946982.084799999 83 +A8JTM7 Megalin, isoform A 4.74 23 27 23 311362.8665 25 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 109112.424 7 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 18572.50098 4 +A8JUZ6 MIP03678p 13.29 4 5 0 394641.316 5 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 8951.266 1 +A8JV09 Coronin 0.64 1 1 0 13697.956 1 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1751932.84427 36 +A8WH76 GEO10024p1 51.85 5 19 5 992892.29438 15 +A8Y4V5 FI20903p1 8.21 2 2 2 30860.7458 2 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 5587.6212 2 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 8368803.14026 20 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 79134.7855 3 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 16795.678 1 +B7YZH1 FI20143p1 5.74 3 3 0 31402.451999999997 3 +B7YZN0 Syndecan 13.56 7 9 0 189248.37244 7 +B7YZN4 GH02741p3 38.46 3 3 3 187230.90899999999 3 +B7YZN8 GH02741p1 10.53 1 1 1 54016.773 1 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 74904.8266 8 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 15449446.9422 84 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 13383.7887 3 +B7YZV2 Phosphodiesterase 10.49 9 10 0 212391.2333 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 923835.05239 31 +B7Z001 Fatty acid synthase 18.78 43 71 0 5913835.0748 68 +B7Z002 Kismet, isoform C 1.2 4 4 1 9652.9795 1 +B7Z005 Drongo, isoform I 13.62 6 7 0 34177.16333 5 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 17150.0169 3 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 71457.1225 7 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 52956.729999999996 3 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 117322.85459999999 7 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 47647.4837 4 +B7Z0C9 GH15104p1 23.16 3 5 3 197667.62199999997 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 35928884.492 130 +B7Z0M0 FI17308p1 21.31 2 2 1 6318.9375 1 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 33979.226 2 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 428077.56320000003 9 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 557647.1964499999 20 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 74597.15625 6 +B7Z107 GH09380p1 43.48 4 7 4 642904.7994 7 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 33983.98 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 39555.0448 4 +C0HDP4 MIP05618p 5.36 2 2 0 30791.975000000002 2 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 3685455.1998 44 +C7LAG1 CoRest, isoform G 6.67 5 5 1 22608.8716 4 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 3694304.36814 68 +C9QP70 MIP12608p 25.61 4 4 4 49500.242 3 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 2272514.0870000003 24 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 175640.6904 10 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 89420.69808 6 +D0Z756 MIP14966p 31.93 16 55 0 5379331.0859 52 +D1YSG0 Bent, isoform F 4.91 37 40 0 917055.2191 38 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 731551.70483 13 +D3DMM0 MIP15702p 23.27 9 24 0 1899466.291 23 +D3DMM4 MIP15217p 36.68 27 74 0 8730586.12758 66 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 440417.44564 10 +D5SHT6 MIP21537p 7.48 3 3 0 17761.742 2 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 10973.2422 2 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 365509.9557 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 524849.96396 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 496363.59577 20 +E1JGR3 GEO02620p1 24.62 3 4 3 7060.84886 3 +E1JGY6 Hulk, isoform F 16.85 27 41 0 1974661.7888 40 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 572744.1222 16 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 27298.21 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 5531.0073999999995 2 +E1JH90 Patronin, isoform F 2.57 4 4 0 64392.1662 4 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 1532646.1999 53 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 93727.9832 8 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 13614.726999999999 2 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 347782.56700000004 4 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 173132.90600000002 5 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 215591.9623 7 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 156697.4824 9 +E1JHP9 Galectin 5.97 2 2 0 35284.592000000004 2 +E1JHT6 Reticulon-like protein 32.13 17 35 0 3996685.982 33 +E1JHT9 Reticulon-like protein 36.04 8 13 0 3208.276 1 +E1JI40 Vermiform, isoform I 19.64 10 13 0 393320.88300000003 11 +E1JI59 Schizo, isoform D 3.03 2 2 0 3668.3887 1 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 324677.1436 6 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 16093.9 1 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 294367.893 5 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 5392.769 1 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 131586.8907 3 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 47478.9926 4 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 8167.7086 3 +E1JIY8 L antigen family member 3 20.72 3 5 3 179104.037 5 +E1JJ33 Complexin, isoform U 71.33 11 97 2 13702364.28261 90 +E1JJA4 Dynamin 38.05 35 64 0 2208128.92686 58 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 16092.5933 2 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 1955.5332 1 +E1JJG5 Phospholipase A2 7.53 2 2 1 40657.6106 2 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 7946538.9882 95 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 76663.1953 7 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 509108.46749999997 10 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 60934.2854 4 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 1785543.5479000001 52 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 66258.7734 4 +E2QD54 Natalisin, isoform D 5.61 3 3 0 53389.871999999996 3 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 451368.37997 15 +E2QD98 Protein PALS1 8.22 17 22 0 368578.0959 20 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 222770.42200000002 12 +E8NH67 Asperous, isoform B 58.41 20 78 0 5936339.9194 61 +F0JAP7 LP18071p 19.65 5 5 0 72536.59599999999 4 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 142765.86898 8 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 9069842.52511 122 +H1UUB1 GEO12465p1 49.61 5 18 1 1173491.8486000001 17 +H8F4T3 Regucalcin 46.08 10 21 0 863944.16025 21 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 163971.3287 4 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 60347.361 7 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 3405792.6296 36 +L0MPN7 Asator, isoform H 11.57 11 14 0 108393.639 12 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 208376.30447 19 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 3459.0254999999997 2 +M9MRX0 Limpet, isoform J 28.01 28 72 0 7814752.88373 66 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 1442034.57955 60 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 245663.06829999998 13 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 204628.9449 8 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 148386.588 3 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 10183.449 3 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 1169185.8189 22 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 2860561.7877 16 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 4637518.706619999 58 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 25407.999649999998 4 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 64846.751000000004 3 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 611292.4295 10 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 1419203.21177 30 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 197937.9354 18 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 350010.145 13 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 121725.5428 9 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 8780.809870000001 3 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 229876.83416 9 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 73906767.72512 421 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 12806.2202 2 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3828.3801 1 +M9NDE0 pantothenate kinase 5.37 3 3 0 49099.832 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 38447.67185 6 +M9NDS9 chitinase 0.98 4 4 0 52344.08239999999 3 +M9NDX8 Neurabin-1 3.12 6 6 0 16975.3011 3 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 152866.2494 7 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 83320.42236 10 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 24408.4846 4 +M9NEF2 Histone deacetylase 3.95 3 4 0 5948.814 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 8307.363 1 +M9NEW0 LD39232p2 63.33 10 18 10 1093753.20046 18 +M9NEX3 Cytochrome b5 63.21 7 22 0 3901830.9159 21 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 202889.03399999999 3 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 18208.549 2 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 123791.17236 6 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 153994.2091 8 +M9NFC0 Troponin I 50.75 16 66 5 3688754.5263 15 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 846923.294 4 +M9NFH3 Lasp, isoform D 36.88 10 31 1 573084.6805 3 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 898046.6882 38 +M9NGY7 Hyperkinetic, isoform I 6.36 2 3 1 406.8938 1 +M9NH07 Upheld, isoform N 53.05 36 130 0 24875308.1422 120 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 401105.42137 20 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 314432.36289999995 10 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 24857.901599999997 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 1733377.28126 49 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 1815.907 1 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 158044.622 4 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 30998.286 2 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 13779232.14524 188 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 61145.295999999995 2 +M9PBM3 Cysteine protease 8.54 3 4 0 152067.942 4 +M9PBN2 Apolipoprotein D 24.08 6 18 0 958844.7731 17 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 815136.3934000001 20 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 37657.35 1 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 48263.943 2 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 701471.18612 23 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 1564090.13504 22 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 99367.33589999999 6 +M9PBW9 Rhea, isoform G 8.06 23 26 0 377545.55486 24 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 523281.5514 16 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 81332541.55482 187 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 1635.37406 2 +M9PC74 Reticulocalbin-3 24.48 10 18 0 1508698.0688 18 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 10071.773 1 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 97945.9466 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 10081.725 1 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 81145.4538 6 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 223519.9702 12 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 252743.39250000002 23 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 54585.1008 5 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 100972.43400000001 6 +M9PCT7 Bunched, isoform O 19.79 4 11 1 61434.9956 3 +M9PCU0 FI21215p1 31.45 40 59 2 205172.341 3 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 267619.11600000004 11 +M9PD73 TEP1-F 26.63 37 63 0 4101646.8667 63 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 1406910.3275 20 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 3535.5003 2 +M9PDB2 Varicose, isoform E 8.51 6 6 0 94487.4462 6 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 2368568.27754 26 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 28207.284 2 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 154846.9808 13 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 162670.3785 9 +M9PDU4 Acyl carrier protein 19.34 5 38 3 29047684.7383 38 +M9PDV2 Tetraspanin 12.89 3 5 0 98608.6721 5 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 962789.02897 44 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 360791.51450000005 12 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 14859945.53425 58 +M9PE32 Fife, isoform D 14.76 16 27 1 327748.55905 23 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 4022.5715 2 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 12559.62234 6 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 104324.51527 12 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 69153.5163 4 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 6671.1888 2 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 38067.26064 7 +M9PEC1 IST1 homolog 22.5 9 19 0 837165.6328 18 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 452615.0102 12 +M9PEG1 Uncharacterized protein 34.58 16 38 16 3875042.5744 38 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 6365006.60447 227 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 79683.5888 6 +M9PEL3 Quemao, isoform C 30.67 10 17 0 682342.27816 15 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 124459.6174 8 +M9PET3 Simjang, isoform D 4.11 3 3 0 3429.18185 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 33333.568 4 +M9PF16 Spectrin beta chain 29.64 75 147 5 6599967.0168 135 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 2595472.26555 35 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 18094.6912 3 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 43793.0073 7 +M9PFH7 Tartan, isoform B 3.73 3 3 0 8887.5292 2 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 12816.926099999999 2 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 108646.28623999999 6 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 8021.22617 2 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 77281.07 1 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 14730.832900000001 3 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 770822.93977 22 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 263147.27024 15 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 190222.4654 9 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 36816777.31002 185 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 221739.9526 5 +M9PGC4 Shaggy, isoform P 19.72 18 54 0 1635.6761 1 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 92859.6885 3 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 1082759.435 13 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 549640.06554 24 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 58115.789000000004 2 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 689147.66136 25 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 1366659.2781 25 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 124423.394 3 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 215862.6705 14 +M9PHX2 Visgun, isoform E 8.78 2 5 1 49684.8548 5 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 28495.867 1 +M9PI33 Inositol oxygenase 6.91 2 4 0 216478.379 3 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 6787.4042 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 39181.924699999996 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 3636.7622 1 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 38611.236000000004 2 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 149530.895 4 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 11726.863 1 +M9PJQ5 Troponin I 49.46 15 70 0 1697138.3743 14 +O15971 LD39986p 23.53 5 25 2 610023.7760000001 4 +O16158 Calcium-binding protein 52.72 8 47 8 5985494.26038 39 +O17452 LD20793p 27.83 6 24 4 1929701.5869 21 +O18332 FI01544p 60.98 11 59 9 3801634.90074 44 +O18335 Rab11 64.49 14 53 14 7725672.014839999 47 +O18336 Ras-related protein Rab-14 36.28 8 18 1 1031650.4400000001 15 +O18338 LD44762p 33.33 7 28 1 21262.304 2 +O44226 Elongin-B 97.46 10 37 10 3151295.07675 32 +O44434 QKR58E-3 22.08 7 9 6 111266.1123 7 +O46052 EG:152A3.3 protein 22.91 6 6 1 116099.6042 6 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 2006694.5613199999 46 +O46079 Protein KTI12 homolog 7.69 3 3 2 974.4336 1 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 108984.0728 6 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 182697.5159 5 +O61604 Fimbrin 32.5 22 57 2 4571705.10593 56 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 108199.85250000001 7 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 44109.96095 5 +O76521 Importin subunit alpha 7.0 4 6 4 90434.677 6 +O76752 Sepiapterin reductase 36.02 9 16 9 682282.2614 14 +O76877 EG:132E8.3 protein 20.62 3 8 3 803923.9205 8 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 12099106.6783 25 +O77259 EG:115C2.5 protein 4.5 1 1 0 3922.547 1 +O77425 Ribokinase 19.41 5 5 5 85198.168 4 +O77430 GEO01111p1 83.95 15 32 13 2042069.4390800002 28 +O77434 EG:34F3.8 protein 34.6 6 12 1 468006.62179999996 7 +O77477 LD24471p 22.41 8 11 8 232288.47925 10 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 22899.328 1 +O96692 small monomeric GTPase 27.47 5 6 2 481580.981 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 292077.89268 7 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 2292.7139 1 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 37182.7086 3 +O97059 Ccp84Ab 44.8 7 12 0 602096.9625 12 +O97062 Ccp84Ae 70.19 12 29 12 1452036.8688 26 +O97064 Ccp84Ag 39.27 6 11 6 434645.462 10 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 74817.41 2 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 4275227.201359999 32 +O97111 LD29223p 11.68 4 6 4 35430.8367 5 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 2764.7527 1 +O97365 BM-40 26.32 10 12 10 572448.44045 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 5540105.809 28 +O97428 Ciboulot, isoform A 37.21 4 6 1 196085.03949999998 6 +O97454 Protein BUD31 homolog 21.53 4 5 4 68325.19954 5 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 264530.82 11 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 20206443.76446 134 +P92181 Cuticle protein DCP2 37.61 3 10 3 169373.21422 8 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 50134.888 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 8386793.3795 77 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 687220.5904000001 9 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 206842.537 6 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 4910.506 1 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 4910208.47842 108 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 18664.68 1 +Q0E8P5 FI05614p 22.24 11 21 11 571825.02836 18 +Q0E8S7 Homer, isoform E 45.76 21 61 4 6324971.2572 54 +Q0E8U4 FI09636p 17.67 5 6 5 143731.99670000002 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 2029635.4236 23 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 158921.963 5 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 7339840.67675 53 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 1785258.95854 18 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 781418.96445 25 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 36333.879799999995 3 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 1939947.76876 57 +Q0E9E6 RE33655p 5.43 3 3 1 47058.6348 3 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 1066321.21735 19 +Q0E9G4 CG1600-PA 14.96 4 7 0 166994.1275 7 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 565439.5741 15 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 4808.4062 1 +Q0KHR7 Septin 13.58 6 8 0 139821.3036 7 +Q0KHX7 FI18193p1 7.31 9 9 0 38170.0139 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 31645873.9384 129 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 45581.3485 4 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 433488.1185 12 +Q0KI39 FI16806p1 18.15 3 5 1 4767.9253 1 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 1100862.9075 24 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 173498.1435 12 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 328942.475 7 +Q0KIB0 Sidestep III 0.95 1 1 1 6742.6675 1 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 117677.23999999999 5 +Q1RL12 IP16413p 55.9 15 82 2 423840.5944 4 +Q24090 GH08712p 12.43 5 7 5 133167.2637 6 +Q24253 AP complex subunit beta 20.63 16 21 16 815663.3361 21 +Q26459 EN protein binding protein 26.32 12 22 0 454420.95887000003 22 +Q29QY7 IP15859p 22.54 3 5 1 651554.7634 5 +Q2MGK7 GEO13330p1 48.03 7 9 7 337167.2695 9 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 18010.0372 2 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 59173.582 1 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 20860064.67419 153 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 116117.81565 6 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 1185874.43704 16 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 119279.75319999999 5 +Q4QQ49 IP09595p 7.43 2 3 2 7050.50668 3 +Q4QQ70 IP09819p 23.98 7 9 7 104186.0146 7 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 7714.6567 1 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 82945.9316 5 +Q4V619 IP07950p 27.16 5 6 1 46599.914600000004 5 +Q4V625 lysozyme 13.5 2 4 2 95858.45 4 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 1096602.4359 16 +Q500Y7 GEO11443p1 54.39 4 28 4 2449761.3714 25 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 12890.652 2 +Q59E01 FI02065p 7.44 5 6 0 31625.545 4 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 31970.38954 5 +Q5BIA9 RE10908p 0.99 1 1 1 22632.951 1 +Q5LJT3 MIP01391p 25.1 4 10 4 435644.26430000004 10 +Q5U124 alpha-glucosidase 20.95 11 16 0 818071.7779 14 +Q5U126 GEO11286p1 59.42 7 33 7 7089529.4366999995 31 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 277278.57447 11 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 36918.0297 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 2408782.9274999998 27 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 56370.8064 3 +Q6IGN6 HDC05827 50.0 4 7 4 321837.825 7 +Q6IGW6 GEO13367p1 44.23 2 5 2 73976.22963 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 5845967.1110000005 19 +Q6IIF2 GEO11103p1 24.29 3 4 3 14825.2427 3 +Q6IL43 GEO11093p1 27.71 2 4 2 417154.30100000004 4 +Q6NL44 GH28815p 13.18 6 6 6 54561.984300000004 5 +Q6NLJ9 AT19138p 53.41 5 6 5 112378.96350000001 4 +Q6NMY2 RH54371p 36.81 6 28 6 3126154.6858 18 +Q6NNV2 RE44043p 5.5 2 2 0 202106.67500000002 2 +Q6NNV7 RH03309p 47.37 7 19 1 1690453.5671 17 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 96302.4003 5 +Q6NP72 GEO09659p1 33.33 4 18 4 887032.6048 18 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 67994.213 3 +Q76NR6 Regucalcin 81.19 23 173 0 32424563.15315 160 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 570456.8337 11 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 32639.23465 4 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 597155.5970000001 13 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 4316769.12476 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 8463.22026 2 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 1808928.3617999998 28 +Q7JQX9 FI14001p1 7.6 5 5 1 60566.160800000005 5 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 24941186.88815 110 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 955225.0141 16 +Q7JRB2 RH09039p 4.52 1 1 1 745.92194 1 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 108988.7656 3 +Q7JRF1 RE48509p 8.67 2 3 1 26811.866100000003 3 +Q7JRH5 RE28271p 5.61 3 3 3 31414.519 2 +Q7JRL9 GH25289p 70.78 13 48 1 8345569.0271000005 47 +Q7JRN6 GH06388p 11.21 3 8 3 111389.0707 6 +Q7JS69 FI04632p 40.84 11 75 1 1777495.2190999999 14 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 14740.9588 3 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 26873.54293 2 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 3809060.3676 33 +Q7JV09 GH28348p 6.55 7 8 3 106787.3023 8 +Q7JV69 SD11922p 10.96 4 6 4 356513.2637 6 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 102710.03899999999 4 +Q7JVH6 LD24696p 37.3 11 25 10 1374900.7085 15 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 445059.90270000004 10 +Q7JVK6 Translin 22.13 5 11 5 455016.8247 10 +Q7JVK8 GEO08987p1 71.92 10 16 10 1159367.7874 15 +Q7JVM1 GH25962p 11.79 3 6 3 77269.986 4 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 274022.9697 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 586751.075 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 698106.7055 9 +Q7JW07 LD08826p 5.63 1 1 1 2858.9531 1 +Q7JW48 RE12410p 2.23 1 2 1 24243.477 1 +Q7JW66 LD21545p 4.83 2 2 2 58752.301 2 +Q7JWD6 Elongin-C 63.25 7 34 7 4106069.24538 31 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 2735589.6002 39 +Q7JWH5 RING-box protein 2 19.47 1 1 1 16327.488 1 +Q7JWQ7 RE01730p 14.62 5 8 5 136029.57749999998 8 +Q7JWR4 GH19585p 9.09 1 1 1 40966.82 1 +Q7JWU9 AT07420p 30.12 8 10 8 186563.3266 8 +Q7JWX3 GH10112p 35.92 11 23 11 701564.7371 21 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 953672.9175 9 +Q7JX94 Phospholipase A2 15.61 3 4 3 4395.7846 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 330062.44878 13 +Q7JXB9 Endonuclease 16.77 5 5 5 740516.296 5 +Q7JXC4 CG6459 protein 35.74 7 44 7 12060033.6692 43 +Q7JXW8 Off-track2 12.24 5 5 5 93977.51000000001 4 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 567370.32554 12 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 1928854.4710000004 7 +Q7JYW9 Phosphotransferase 22.25 10 12 10 408599.4492 11 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 36561.7269 3 +Q7JYZ0 lysozyme 39.13 4 10 4 221111.4749 10 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 1194769.1745 19 +Q7JZB1 RE49860p 3.58 1 1 1 21487.605 1 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 3187602.99116 29 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 8109.37074 3 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 273386.953 4 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 7265918.97875 35 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 320638.69233 19 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 8849.7082 2 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 2147333.16386 29 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 3090662.12624 32 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 126388.89303 8 +Q7K076 GEO08269p1 34.35 3 4 0 136437.7558 4 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 36501293.98759 167 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 13213.175 1 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 2041800.7179 31 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 223258.11198 13 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 2122.6323 1 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 78938.90669999999 4 +Q7K0S1 LD39211p 3.66 2 2 2 42466.7675 2 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 725054.46783 25 +Q7K0S6 LD36817p 27.56 10 14 10 510304.669 14 +Q7K0T7 LD33470p 2.07 2 3 0 9375.575 1 +Q7K0W1 LD27406p 3.67 2 2 2 26421.46 2 +Q7K0W4 LD27203p 57.93 19 64 18 12887168.2092 60 +Q7K0X9 LD23667p 28.72 6 13 6 327185.48653 12 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 154333.8826 3 +Q7K127 Alpha-galactosidase 35.97 13 22 13 743347.714 22 +Q7K130 Dynactin subunit 4 13.04 5 6 5 35531.5544 4 +Q7K148 Proteasome subunit beta 17.73 5 7 5 125904.87759999999 7 +Q7K159 LD06557p 13.11 4 5 4 45683.368 5 +Q7K180 LD02709p 23.18 10 13 10 299519.2843 12 +Q7K188 GEO05126p1 32.9 7 45 7 17975216.8093 40 +Q7K1C0 GH23780p 50.5 7 12 1 879123.8672 11 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 467645.73500000004 10 +Q7K1C5 GH21176p 6.62 4 5 4 434259.3035 5 +Q7K1H0 GH09096p 20.37 6 7 6 239622.64500000002 7 +Q7K1M4 SD04017p 24.68 8 15 8 472668.81327000004 15 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 87356.166 4 +Q7K1W5 LD35843p 35.11 14 28 14 2753261.4495 27 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 76880.77373 8 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 1689957.0768 27 +Q7K2E1 LD05247p 11.72 7 10 7 161039.4539 8 +Q7K2K2 FI04612p 7.06 2 3 1 38532.297399999996 2 +Q7K2L7 GH27120p 17.59 3 12 3 746205.1403 10 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 99737.1227 6 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 84770.6433 4 +Q7K2P3 GH20817p 63.91 15 37 1 1122919.185 33 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 261140.45442 6 +Q7K2W6 tyrosinase 26.81 17 23 17 244416.59518 19 +Q7K332 GH17623p 30.96 8 10 7 299358.6543 9 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 839991.5833 16 +Q7K3E2 LD34147p 66.97 33 68 33 7451744.8385 63 +Q7K3H0 LD28067p 2.56 5 7 0 72734.467 4 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 2544401.18825 37 +Q7K3N4 GH26015p 15.98 7 11 7 256319.9246 10 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 168029.95560000002 8 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 376913.094 16 +Q7K3W4 GH08941p 26.81 8 27 8 1785901.68598 27 +Q7K3Y9 Spondin-1 4.58 3 3 3 3697.2946 2 +Q7K3Z3 GH01724p 56.76 18 53 18 1936934.1229 48 +Q7K485 Cathepsin D 28.83 8 27 8 2970116.37655 26 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 150243.3237 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 21213.4348 2 +Q7K4J7 LD36653p 7.38 2 3 2 65791.796 3 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 50234.1857 4 +Q7K4T8 LD23856p 6.99 3 4 3 9261.760999999999 3 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 3291.8233 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 214302.033 9 +Q7K519 GH16429p 23.9 7 8 7 131097.56710000001 8 +Q7K533 GH14572p 5.48 2 2 2 26956.2463 2 +Q7K549 GH13040p 21.35 8 10 8 97975.15100000001 10 +Q7K568 GH10642p 21.49 6 8 6 107782.3555 5 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 3462009.09062 62 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 460192.6668 15 +Q7K5M6 GH04176p 37.5 9 17 9 1357681.36226 16 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 1118019.6586 23 +Q7K860 FI07231p 39.22 6 19 6 5383303.53 19 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 2365104.84537 17 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 17827.8429 3 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 43874.842300000004 5 +Q7KK54 MIP07328p 10.52 7 7 7 114418.21525000001 7 +Q7KK90 GH14654p 50.0 8 36 8 6688350.09 26 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 1333180.1538 24 +Q7KLE5 Amphiphysin 37.04 23 65 2 5983424.6358199995 61 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 331532.1556 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 2646070.879 12 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 219475.257 5 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 87871.7307 5 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 2219183.0206 22 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 3923017.3928 66 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 16404.945200000002 2 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 169553.122 7 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 11053.419 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 2243678.46993 37 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 16956966.40548 101 +Q7KND8 FI09619p 6.03 4 5 4 64533.4295 4 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 2241978.1069 16 +Q7KRT4 GH07253p 2.47 1 1 0 6341.524 1 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 55019.321899999995 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 215066.434 6 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 968721.5599999999 12 +Q7KSE4 GH05443p 2.78 2 2 2 12264.4302 2 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 920113.1976 17 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 4486990.56444 33 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 39025.1923 3 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 28198.367059999997 5 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1809372.36932 27 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 5077419.12733 48 +Q7KT58 GH08155p 4.4 1 1 1 5123.7183 1 +Q7KT70 FI18641p1 0.94 1 1 1 3621.0098 1 +Q7KTA1 HL01444p 20.67 8 10 8 185637.9086 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 548413.312 25 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 9259033.00495 77 +Q7KTN9 FI01009p 3.11 2 2 0 22028.546 2 +Q7KTP7 LP22840p 45.86 7 12 7 521457.32503 12 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 8855836.2487 83 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 1285692.1846 31 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 3375.7827 1 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 1510903.4570000002 20 +Q7KUD4 phospholipase A2 6.43 6 7 0 84160.05053 7 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 219856.2905 14 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 6074.4018 2 +Q7KUT5 Protein MIX23 26.89 3 3 0 69202.3363 3 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 350545.8092 6 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 78137.95670000001 6 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 612916.19532 32 +Q7KV27 alanine transaminase 54.93 32 121 0 24007978.8541 115 +Q7KV34 Pinkman 57.32 33 64 33 4975200.8579 62 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 61253.394700000004 4 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 1011393.4632000001 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 74997.6613 4 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 22423027.6346 83 +Q7KY04 small monomeric GTPase 23.47 5 14 4 18368.1335 2 +Q7PL91 GEO11417p1 30.85 5 12 5 1538296.9053 11 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 11100.4536 3 +Q7PLI0 P120 catenin 17.03 14 17 14 568015.98895 15 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 924971.8509 26 +Q7PLS1 LD01937p 14.61 5 6 0 203896.35350000003 4 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 84361.0067 4 +Q7YU88 SD08871p 4.1 3 3 0 4705.85893 2 +Q86B44 Glutathione synthetase 19.4 8 9 0 129832.83184000001 8 +Q86B74 WASp, isoform C 10.53 4 4 0 76450.285 4 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 28022.646999999997 2 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 11170.221 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 669654.3905 16 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 425333.4605 14 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 1080000.3773 27 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1726271.4854000001 22 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 3259933.234 21 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 1501137.8246 36 +Q86BS3 Chromator, isoform A 35.53 26 44 26 1354492.1053 40 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 19837.217099999998 3 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 1335272.5107 25 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 117335.408 4 +Q8I077 BcDNA.LD22910 1.76 2 2 2 14188.0066 2 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 262695.11590000003 7 +Q8I0D4 RE20510p 21.32 17 37 0 4947285.7843 35 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 68515.1982 5 +Q8I0P9 acid phosphatase 9.67 4 4 0 111036.981 3 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 2287389.6004 23 +Q8I930 GH14147p 3.57 3 4 0 35258.9876 4 +Q8I941 GH16843p 32.88 8 25 8 1445542.8296 24 +Q8IG84 SD21996p 13.42 14 125 0 463.92023 1 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 31146.351 2 +Q8IGY1 RE08101p 33.19 42 295 0 40596988.70564 160 +Q8IH23 GEO02102p1 67.41 6 14 6 1779987.9139 14 +Q8IM93 FI18814p1 35.27 16 37 16 2315066.4774 30 +Q8IMF4 RE24176p 6.68 3 3 0 38357.936 3 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 1883218.96683 35 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 34986.985 3 +Q8IMQ8 RH29536p 46.4 14 49 0 7647730.0922799995 47 +Q8IMT3 IP12392p 10.71 4 5 4 113099.901 4 +Q8IMT6 FI01822p 10.66 5 6 5 163722.19 6 +Q8IMU2 RE10237p 19.18 4 5 0 193025.985 5 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 56866.2771 4 +Q8IMX4 FI04408p 10.85 4 6 0 91840.6679 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 425092.69309 11 +Q8IN49 MIP05539p 11.03 10 11 10 208482.23189999998 9 +Q8IN51 FI17609p1 37.59 7 14 7 849758.458 14 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 102903.817 2 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 147770.8605 4 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 47123.8113 4 +Q8INH5 Aminopeptidase 7.53 7 11 0 283796.8528 11 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 45704.9903 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 47679.255000000005 2 +Q8IP52 RE16941p 0.86 1 1 1 14903.913 1 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 282407.8018 7 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 1167537.6572999998 17 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 49202.262 5 +Q8IP97 Peroxin-19 35.62 9 32 9 3662992.0087 28 +Q8IPA5 RE15581p 10.0 3 3 0 93317.141 3 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 41472.5957 3 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 1973013.0970000003 14 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 8171909.00643 98 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 109303.8665 8 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 31162.92 1 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 29058.826569999997 3 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 1175231.3465 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 78296.4114 4 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 172010.19 6 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 966.67145 1 +Q8IPT9 SD05439p1 39.06 11 32 0 1922796.43065 27 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 4917765.1602 49 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 13455.1311 2 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 30110.0979 4 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 81541.711 7 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 10179.87 1 +Q8IQB7 MIP21654p 9.44 3 3 3 203214.97000000003 3 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 311039.5955 12 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 155006.56399999998 5 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 121140.23099999999 3 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 36177.277 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 203727.6676 8 +Q8IQH0 FI12817p 4.98 8 9 1 167486.7257 8 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 343496.2728 9 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 792428.7799 23 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 20249.403 2 +Q8IQU1 LD36620p 19.62 9 13 1 100213.14540000001 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 78591.63 2 +Q8IQW5 RE23625p 70.83 13 77 3 10279796.07779 66 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 94547.76343 6 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 42524.7097 3 +Q8IR72 FI19011p1 10.06 1 1 1 13725.326 1 +Q8IR76 FAD synthase 16.33 4 4 0 63629.6986 4 +Q8IRD0 RH17559p 42.86 3 8 3 612028.464 8 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 25008099.31843 70 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 563420.4873 18 +Q8IRI5 Trio, isoform D 15.92 12 15 2 213484.40350000001 13 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 30008460.73394 131 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 68888.043 2 +Q8MLP9 GEO08457p1 33.04 4 5 4 100105.458 4 +Q8MLQ0 FI14118p 11.84 1 1 1 4857.6387 1 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 1322363.1583 12 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 726673.5113 16 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 44481.8939 3 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 968214.6495 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 9046849.18289 99 +Q8MQP2 MIP16184p 2.67 1 1 0 52571.5 1 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 16947.49 2 +Q8MRM0 GH16740p 27.0 6 9 6 1283983.3968 9 +Q8MRS5 AT03104p 0.71 1 1 0 9310.94 1 +Q8MRT7 SD26038p 13.79 3 4 3 102437.02599999998 4 +Q8MRW1 SD19278p 14.08 2 4 2 245024.583 4 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 14656.517100000001 5 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 11635.488 1 +Q8MSI2 GH15296p 85.19 22 138 22 67687300.86845 123 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 59893.7951 6 +Q8MST5 Tubulin beta chain 40.7 17 120 0 1337497.06864 28 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 8163067.4793 70 +Q8MZ07 GEO07581p1 6.16 1 1 1 44221.637 1 +Q8MZI3 RNA helicase 14.91 11 20 5 444241.4056 10 +Q8SWS2 RE29468p 77.51 8 32 0 1554014.82105 26 +Q8SWS3 RE26528p 17.13 2 6 2 262192.52666000003 5 +Q8SWZ6 RH51312p 15.35 3 7 3 42991.436 6 +Q8SX06 GEO08318p1 15.43 2 2 2 12770.2454 2 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 18236.025 1 +Q8SX35 GEO07743p1 55.78 5 9 1 268352.85250000004 7 +Q8SX50 RE04530p 17.6 6 7 0 169881.671 7 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 15777.3845 2 +Q8SX57 LD44221p 38.91 7 17 7 602955.9075 17 +Q8SX78 LD05679p 21.72 9 9 9 217346.032 9 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 109591.07647 6 +Q8SXC2 FI04487p 9.56 5 5 5 45450.013699999996 5 +Q8SXD5 GH02216p 57.69 13 41 2 6990103.0223 39 +Q8SXE1 RH69521p 4.68 2 2 2 47078.1066 2 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 97617.4364 6 +Q8SXF2 RH40246p 8.18 4 4 4 134209.08500000002 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 67960.694 2 +Q8SXK0 RE18748p 6.55 2 2 2 35955.126000000004 2 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 817949.66116 22 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 39581.79804 8 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 1022615.068 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 2291.1028 1 +Q8SXS0 RE40914p 16.23 5 6 5 79827.086 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 2711634.4806 30 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 29822.887600000002 4 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 362304.36 7 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 4880.6978 1 +Q8SY67 lysozyme 14.47 2 6 2 505907.2476 6 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 1394964.583 7 +Q8SYC4 RE68566p 3.93 2 2 2 66721.40299999999 2 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 5581588.14026 71 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 3009394.698 25 +Q8SYH8 RE57644p 19.05 5 10 0 302547.59765999997 10 +Q8SYJ2 GEO09626p1 67.47 10 68 10 16655047.6489 65 +Q8SYQ4 RE42475p 69.59 10 50 10 5614790.1521 47 +Q8SYQ8 RE40412p 27.94 4 9 4 178683.5902 9 +Q8SZK5 RH26533p 16.4 3 4 3 275044.92000000004 3 +Q8SZK9 HL04814p 59.31 15 64 15 10240632.07136 62 +Q8SZM2 RH04334p 28.15 9 35 9 7697396.6667 33 +Q8SZN1 GEO08217p1 73.39 10 27 5 3465246.5809 27 +Q8T0I9 GH27479p 28.88 11 16 1 671958.6185999999 14 +Q8T0J5 GH26851p 40.42 12 39 0 6906638.228800001 39 +Q8T0N5 GH17516p 19.54 8 15 8 902814.9526 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 72988.8299 5 +Q8T0V2 GH02495p 25.5 11 20 0 465298.0665 15 +Q8T389 Endophilin B 43.12 16 71 0 11681.8947 2 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 42933.041 5 +Q8T3W8 Venom allergen-1 12.6 4 6 0 120301.42300000001 5 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 10968.885 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 1901737.7462 31 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 6338182.4367 75 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 14685.632 2 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 14383.505 1 +Q94513 Boundary element associated factor 18.79 5 8 1 96947.00749999999 7 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 39823.663 2 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 74049.702 3 +Q95NU8 GH16255p 14.82 7 11 7 296313.2774 10 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 34338.65 4 +Q95PE4 GEO07784p1 5.56 1 1 1 10362.358 1 +Q95R34 GH16463p 12.62 4 5 4 151051.36330000003 4 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 162804.67773 5 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 79659.58598 8 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 45759648.89702 161 +Q95RC5 LD44506p 4.95 3 3 3 24694.486100000002 3 +Q95RE4 LD37574p 51.42 13 23 0 103692.3514 18 +Q95RF6 LD34461p 34.5 4 12 4 373151.7881 12 +Q95RI2 LD28549p 31.37 9 11 9 263593.3209 11 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 124346.1338 5 +Q95RP1 LD18295p 10.71 2 2 2 37987.569599999995 2 +Q95RQ1 LD16414p 3.32 2 2 2 10348.0404 2 +Q95RR6 LD15002p 64.6 18 79 0 98819.38 2 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 334582.5024 8 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 1254169.38234 8 +Q95RY2 LD01461p 45.04 9 18 2 560348.55424 15 +Q95SH0 GH26463p 2.44 2 2 2 27051.3163 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 860150.2792999999 23 +Q95SH7 GH26007p 3.49 1 2 1 268729.95 2 +Q95SI7 GH23390p 75.09 18 61 18 6499182.73523 57 +Q95SN8 GH12395p 15.49 4 7 4 326299.9268 6 +Q95TK5 LD44914p 21.21 9 14 8 431305.008 12 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 2892223.74076 31 +Q95TP0 LD34582p 4.51 2 2 2 17134.7 1 +Q95TZ7 GH19182p 85.32 28 147 0 25278148.81892 120 +Q95U15 GH14252p 83.65 34 259 0 8004429.1261 29 +Q95U34 GH11113p 30.82 13 27 13 2023358.1489 26 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 449874.309 9 +Q960D4 SD06560p 20.91 13 13 0 656064.8075 13 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 34122777.557000004 96 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 1182933.8091 25 +Q961A8 LD25351p 2.07 1 1 0 5863.289 1 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 122349.6754 3 +Q961B9 LD24073p 3.72 2 2 2 55512.741 2 +Q961C8 LD22649p 9.84 4 4 0 77085.6575 4 +Q961E7 phosphorylase kinase 7.88 4 5 0 87170.864 3 +Q961K6 GH19047p 3.18 2 2 2 3617.2573 1 +Q961Q8 GH10454p 8.89 4 5 4 73055.8425 5 +Q961T9 GH07914p 32.94 6 12 6 863144.7531 12 +Q961X4 Combover, isoform B 17.43 11 13 0 110945.01877 12 +Q966T5 Paxillin, isoform D 28.93 7 20 4 160410.9926 6 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 123220.00455 7 +Q9I7H8 LD37276p 14.29 4 5 4 62648.3983 4 +Q9I7I3 GH12831p 12.97 4 4 4 82271.683 4 +Q9I7J0 GH21596p 72.19 11 40 11 5491989.27475 36 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 63226.719 2 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 97691.7181 5 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 1352756.10755 24 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 4961271.71906 25 +Q9NCC3 Sorting nexin 15.58 8 10 8 501451.3374 10 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 23734.66315 2 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 9925.9642 2 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 617401.5474 8 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 284806.3919 14 +Q9U6P7 FI18813p1 10.55 5 7 5 335764.559 7 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 3070881.7302 60 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 173259.3917 7 +Q9V393 Kurtz arrestin 5.32 2 3 2 44284.0856 2 +Q9V396 Carbonic anhydrase 58.15 15 45 15 2825612.57622 42 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 46253.51499999999 3 +Q9V3C8 DShc protein 5.62 2 2 2 33246.174 2 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 410071.01828 16 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 101840.917 5 +Q9V3E7 LD24793p 42.86 14 26 14 687049.95178 23 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 34590.8492 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 598007.0251 14 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 365987.418 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 374468.33780000004 9 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 2608875.5764 56 +Q9V3N9 B6 4.48 3 3 3 124701.35269999999 3 +Q9V3P3 LD45860p 39.18 10 21 10 1300553.0633 21 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 58243.172399999996 4 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 35854.678 2 +Q9V3T8 LD32469p 18.46 4 6 4 122373.43100000001 4 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 5264995.8547 36 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 3798937.8411 54 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 7506216.8269 63 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 1458871.58794 33 +Q9V3W2 GM23292p 66.47 16 60 16 7106362.43253 53 +Q9V3W7 LD40489p 52.16 11 26 11 712052.1426 22 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 1076110.84163 33 +Q9V3Y4 LD43650p 20.57 5 8 5 268246.52 7 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 2748237.408 31 +Q9V3Z4 GH11341p 30.28 14 31 14 1285885.1485000001 24 +Q9V3Z9 HL02234p 42.6 17 39 17 5194909.7349000005 37 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 54348.523799999995 5 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 3329944.76898 48 +Q9V406 Activator protein 4 13.31 7 11 7 584078.3414500001 11 +Q9V420 FI02878p 15.83 8 12 8 572696.0852 10 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 1077873.81346 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 65236.8426 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 1195577.0838 17 +Q9V455 Importin subunit alpha 22.37 11 25 11 2689234.9599 24 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 2789948.48094 42 +Q9V491 Plexin A, isoform A 1.44 3 3 0 33172.773 3 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 4283045.05171 71 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 7776984.5353999995 69 +Q9V4E0 Complex I-49kD 31.41 12 19 11 802935.6129000001 19 +Q9V4E7 Transporter 9.12 6 7 3 268045.4464 7 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 12350.4067 3 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 1153770.21682 12 +Q9V9Q4 LD43819p 30.23 12 26 12 1263053.1127 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 203508.329 8 +Q9V9T5 GM14617p 13.75 10 10 0 90952.5219 9 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 31385.120000000003 2 +Q9V9U0 RE35358p 4.79 1 2 1 91977.37700000001 2 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 687756.5104 12 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 4237.7 1 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 1414153.1833 17 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 2771001.6976 24 +Q9V9W4 GH08048p 1.69 1 1 1 4030.5955 1 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 34073.413 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 224704.44640000002 6 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 6090006.5594 83 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 485424.1953 13 +Q9VA34 LP06141p 1.88 2 2 2 35653.33 2 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 454274.1892 20 +Q9VA41 GEO08227p1 52.87 7 18 3 376733.6945 12 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 5239379.9503 24 +Q9VA56 GH23271p 63.77 23 81 2 96807.23133000001 5 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 49214.16 1 +Q9VA71 FI19924p1 4.52 1 2 1 6147.4973 2 +Q9VA76 IP18706p 16.43 6 8 6 61219.359 4 +Q9VA81 GEO10172p1 29.29 5 5 5 118135.17169999999 5 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 161010.2264 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 798073.8895 13 +Q9VAA6 GEO12235p1 19.62 3 7 3 283837.022 7 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 533336.2206 18 +Q9VAC1 GM14349p 45.49 17 130 17 22618596.55814 121 +Q9VAC4 GEO09167p1 63.46 7 16 7 1341346.0482 15 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 81077.39086 8 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 15344.0425 2 +Q9VAD7 RH37294p 18.5 3 3 3 26031.2153 3 +Q9VAG3 trypsin 17.0 4 7 4 150763.941 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 965559.0427 13 +Q9VAI9 GEO07291p1 62.25 8 60 5 7569186.55443 54 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 410356.23117 15 +Q9VAL5 protein-tyrosine-phosphatase 0.86 1 1 0 337.5744 1 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 3076367.50785 65 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 37085384.42364 126 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 117734.909 6 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 17297.807 1 +Q9VAU6 LD27564p 2.99 2 2 2 13152.8818 2 +Q9VAV2 FI21480p1 16.52 13 16 13 509047.9703 15 +Q9VAY0 Neprilysin 7 5.16 4 4 4 40367.0111 4 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 6410747.99095 76 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 65758.808 3 +Q9VAY9 GH07821p 7.89 3 3 3 39256.2203 3 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 2985029.05315 46 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 4908386.0217 45 +Q9VB17 IP11341p 7.98 3 3 3 139176.77 1 +Q9VB22 LD33695p 14.29 8 11 8 353401.3543 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 682848.05866 21 +Q9VB51 GEO08385p1 42.96 3 3 3 56880.574 2 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 947583.1283 24 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 45667.2445 4 +Q9VB69 Malic enzyme 20.75 12 16 1 426624.73939999996 16 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 11481.8634 2 +Q9VB77 IP09938p 12.18 4 4 4 172443.495 4 +Q9VB78 Eater 6.52 1 1 1 407.24927 1 +Q9VB79 IP09473p 24.22 8 17 8 917462.4994999999 15 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 6787070.9847 53 +Q9VB86 LP07342p 10.14 2 3 1 22013.7612 3 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 1833353.6695 29 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 33803.078199999996 3 +Q9VBC9 Beaten path VII 13.15 4 4 4 164762.90399999998 4 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 15714423.10824 85 +Q9VBI3 RH72336p 28.52 9 21 9 1484806.8125 19 +Q9VBL3 GH01188p 13.79 7 7 7 87954.16810000001 6 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 970720.464 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 35220.138 2 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 31294464.8283 133 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 28274.705 1 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 1639774.9866 24 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 357597.9242 8 +Q9VBT2 IP11926p 9.86 4 4 4 21641.346199999996 3 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 44470.941 3 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 4675874.281 8 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 406477.259 9 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 5540036.1110000005 44 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 67430.1752 7 +Q9VC06 LD37516p 15.21 10 15 10 127821.58324 15 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 13277.5193 2 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 502044.16106 21 +Q9VC30 RE05274p 8.06 1 2 1 4810.4818000000005 2 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 700567.9915 15 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 609474.275 14 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 645880.615 10 +Q9VC58 Syntaxin-18 8.86 4 4 4 36761.5161 4 +Q9VC66 AT25567p 28.82 13 18 13 492900.84589999996 18 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 68610.6235 4 +Q9VC87 RE57978p 10.75 4 4 4 11149.4117 2 +Q9VCB9 FI08802p 26.23 6 12 6 996606.7860999999 12 +Q9VCD8 Structural maintenance of chromosomes protein 0.89 1 1 1 505.3074 1 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 1275252.0494000001 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 130002.17623999999 4 +Q9VCF8 LD23561p 23.45 8 11 8 321126.64875 11 +Q9VCI4 LD32918p 3.55 3 3 3 55522.407400000004 3 +Q9VCI7 LD02979p 17.37 7 12 0 368698.115 11 +Q9VCK6 LD34157p 20.89 8 10 8 176611.59695 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 79571.225 4 +Q9VCR4 FI17836p1 7.58 6 7 6 138769.1893 7 +Q9VCR9 RH48101p 39.61 11 25 11 1877844.2963 22 +Q9VCT4 Klingon 6.06 3 4 3 24589.357 4 +Q9VCU0 GEO02312p1 34.17 4 8 4 642571.8906 8 +Q9VCU1 FI07649p 1.31 1 1 1 28142.826 1 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 90782.17300000001 2 +Q9VCW2 Cardinal 5.3 5 6 5 82632.41219999999 6 +Q9VCW6 GCS light chain 36.14 13 31 13 3093191.0877 27 +Q9VCZ2 FI07970p 2.48 1 1 1 59847.277 1 +Q9VD00 FI07666p 23.74 6 12 6 382466.8732 12 +Q9VD01 LP12095p 18.75 3 3 3 240442.15000000002 2 +Q9VD02 GH14779p 30.73 4 10 4 581369.64815 10 +Q9VD13 GH02671p 14.64 8 9 0 197196.8038 8 +Q9VD14 GH07286p 17.02 9 13 9 199848.5903 12 +Q9VD29 small monomeric GTPase 54.92 10 33 10 2800155.5291999998 28 +Q9VD30 GH05294p 79.44 14 60 14 8612673.279550001 47 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 19624.822 1 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 21021400.6518 79 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 159707.144 6 +Q9VD68 GH19849p 6.84 3 3 3 50957.549 3 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 32708.15 1 +Q9VDC0 GH01837p 24.0 5 14 5 685438.8426 12 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 13688.887600000002 2 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 9997.3636 2 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 1339168.608 13 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 1468662.4927 15 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 1327407.4331 25 +Q9VDH3 GH08630p 58.77 13 36 13 2650673.91918 34 +Q9VDI1 LD46328p 56.88 24 81 1 4557824.18966 72 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 115564.331 3 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 193555.5526 13 +Q9VDK2 GH15831p 3.87 3 3 2 61229.4597 3 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 621332.31395 27 +Q9VDK9 GH12359p 4.89 3 4 3 149631.268 4 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 113049.557 4 +Q9VDL5 GEO09602p1 52.24 3 3 3 61997.77984 3 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 553702.1556299999 9 +Q9VDQ3 Identity crisis 8.06 4 4 4 43060.172 4 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 1211536.5485999999 20 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 18139.7803 2 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 1010333.1219 18 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 58999.15386 5 +Q9VDU7 nicotinamidase 31.37 11 16 11 698100.3910000001 16 +Q9VDV2 AT06125p 8.26 4 4 3 66890.33 3 +Q9VDY8 MIP08680p 74.26 18 75 2 6260070.4212 66 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 4712238.711 46 +Q9VE08 GH10002p 13.62 3 3 3 41025.267 3 +Q9VE12 LD27322p 19.44 7 8 7 87350.37816 6 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 92961.75935000001 5 +Q9VE31 GEO12059p1 18.92 2 2 2 6837.8741 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 94942.01814 7 +Q9VE56 FI17806p1 18.88 4 7 4 532720.4951 5 +Q9VE57 GEO10850p1 6.9 1 2 1 33912.721600000004 2 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 13175.778 2 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 104344.187 2 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 119447.7377 9 +Q9VE94 LD14127p 8.85 3 4 3 123353.6376 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 668877.834 13 +Q9VEA7 FI01460p 44.94 3 5 3 703992.1983 5 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 99241617.40284 265 +Q9VEB7 AT04491p 12.1 4 4 4 45542.922 4 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 324641.803 9 +Q9VEC6 LD29902p 14.83 12 17 0 3336.85924 2 +Q9VEC8 RE23139p1 26.15 3 3 3 290005.35900000005 3 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 112263.8504 6 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 44973.117 3 +Q9VEG8 RE59232p 10.8 2 2 2 74759.025 2 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 293634.4525 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 1490867.2089 28 +Q9VEJ9 Curly Su 2.39 2 2 2 13767.7078 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 134547.17745 7 +Q9VEK8 GH07711p 39.88 11 22 11 890208.7760999999 21 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 656977.9994699999 17 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 14952.123 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 39644.3038 5 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 858538.3485000001 23 +Q9VEP8 GH11385p 21.38 13 18 13 379750.4275 17 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 587418.33074 20 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 241586.7482 8 +Q9VES8 RE28913p 29.5 9 16 9 1469252.7195000001 16 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 164710.673 3 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 878020.5041 19 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 12600.7187 2 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 21877.507299999997 2 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 155135.8813 5 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 765988.8986 29 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 19371.082 1 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 3651126.6796 32 +Q9VEY9 GH15759p 3.1 1 1 1 985.28503 1 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 375553.3747 11 +Q9VF15 GEO09476p1 81.05 12 39 8 5201539.196 38 +Q9VF23 arginine kinase 12.25 6 7 6 107138.8245 7 +Q9VF24 Crossveinless d 3.88 6 7 6 95891.4885 7 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 535446.55994 17 +Q9VF39 FI01459p 13.04 5 7 5 389641.68525000004 7 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 474826.6863 14 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 144984.16259999998 7 +Q9VF77 FI16517p1 10.74 4 5 4 100114.47985 5 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 27631.648999999998 2 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 57461.384900000005 3 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 296420.5366 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 73182.8975 5 +Q9VFC7 Mf5 protein 84.93 39 273 0 24560203.610630002 178 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 79806.6638 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 31025597.32536 129 +Q9VFI3 GEO08281p1 45.19 3 10 3 309739.8913 6 +Q9VFM0 GH19262p 7.14 4 5 4 94516.9788 5 +Q9VFN7 GEO07678p1 27.67 5 18 5 918748.9965 18 +Q9VFN9 GEO07882p1 54.84 7 9 7 123923.1695 8 +Q9VFP0 RH07106p 18.65 6 7 6 196869.1536 6 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 3286884.21433 38 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 1048373.5591 22 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 5086.0137 1 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 162316.5577 5 +Q9VFT4 AT27578p 16.09 9 13 9 133391.0318 10 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 37703.234 2 +Q9VFV1 RE55542p 9.81 5 7 5 71913.9121 7 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 10738151.89906 47 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 93675.1961 4 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 65598.42 5 +Q9VG01 RE12073p 1.88 1 1 1 14342.82 1 +Q9VG04 Protein MEMO1 2.71 1 1 1 18002.701 1 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 40304.974 3 +Q9VG23 GH22994p 69.3 12 69 1 11336144.32824 62 +Q9VG26 MIP06012p 45.07 9 28 9 1568100.2025 21 +Q9VG28 Beaten path Vc 5.39 2 2 2 35731.12 2 +Q9VG31 Malic enzyme 19.79 16 26 0 1643323.8497000001 24 +Q9VG33 Sulfurtransferase 85.45 8 22 8 2154805.3068999997 20 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 50462.99444 6 +Q9VG44 RE14195p 2.98 2 2 2 9496.506 1 +Q9VG51 Sorting nexin-3 51.5 8 25 8 2089376.8683 19 +Q9VG62 Toys are us 2.89 2 2 2 32609.356 2 +Q9VG69 LP03547p 42.59 16 39 16 3387016.9846 36 +Q9VG81 RH49330p 11.14 5 6 5 69095.9528 6 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 128603.91503999999 5 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 2154675.5031 22 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 107054.872 4 +Q9VGA3 LD12305p 36.82 8 23 7 2045867.6834 19 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 25739.696 2 +Q9VGE4 FI04457p 6.96 8 8 8 143374.707 7 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 35092.98408 4 +Q9VGF3 IP11040p 18.84 6 7 6 162944.6339 7 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 4208089.9695 40 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 578272.283 6 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 274914.31116 16 +Q9VGL0 LD43047p 2.61 3 3 3 20768.8123 3 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 100257315.75798 184 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 110391.5162 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 16843320.2976 68 +Q9VGQ8 Arfaptin 25.35 9 11 9 349124.179 10 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 42244.9304 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 47824.484599999996 4 +Q9VGS3 RH44771p 23.39 4 22 4 1438536.5056 19 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 32637.31 2 +Q9VGT3 GM04645p 3.98 2 2 2 8999.7023 2 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 61297.82428 8 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 57370.938 1 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 233274.265 5 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 480802.8977 10 +Q9VGY2 Peptide deformylase 5.88 2 3 1 37782.5122 3 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 195388.85369999998 6 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 257072.20482 15 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 148401.0431 7 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 760135.2339999999 15 +Q9VH37 IP06524p 27.09 5 7 5 561278.363 7 +Q9VH64 LD29322p 19.0 7 8 7 793108.0769999999 8 +Q9VH66 FI18258p1 24.89 5 9 5 135427.1627 9 +Q9VH72 TA01656p1 37.25 6 10 6 820251.781 10 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1799470.19434 45 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 172567.527 7 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 28619.536200000002 3 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 143456.28506 10 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 327472.89670000004 6 +Q9VHA8 LD25575p 15.06 10 12 10 874672.1806 12 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 1293615.8231 19 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 38507.6043 4 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 350752.5422 21 +Q9VHC7 FI21236p1 34.65 17 32 9 1418636.3222 26 +Q9VHC8 LD31448p 10.06 2 2 2 1830.8564 1 +Q9VHE3 GH05665p 1.79 1 1 1 28915.643 1 +Q9VHE4 omega-amidase 20.85 7 16 7 1058326.7415 16 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 332896.76560000004 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 484420.38 6 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 129213.886 4 +Q9VHH8 Beag 1.26 1 1 1 6699.9907 1 +Q9VHI1 Hyrax 8.36 4 4 4 31005.61047 4 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 2126843.434 21 +Q9VHJ2 LD32381p 9.12 3 3 3 132077.00029999999 3 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 3700.5542 1 +Q9VHJ7 LD41978p 4.48 3 3 3 67954.4356 3 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 4627229.9715599995 47 +Q9VHM3 LD30467p 8.85 4 4 4 36801.9248 3 +Q9VHN4 GH14121p 12.64 3 4 3 53195.5493 4 +Q9VHN7 transketolase 30.51 16 25 2 1139043.7701 22 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 25456.881999999998 2 +Q9VHR5 Veneno 2.96 2 2 2 3556.355 1 +Q9VHT3 CG9617 protein 20.79 4 5 4 136349.5772 5 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 99561.647 5 +Q9VHX2 GH08043p 4.58 2 2 2 61250.301 2 +Q9VHX4 LD24679p 77.51 23 101 23 17982822.451700002 91 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 426766.73470000003 11 +Q9VI09 GH14494p 52.48 7 29 7 2661404.7087 28 +Q9VI21 Dementin, isoform D 2.98 2 2 0 10135.5402 2 +Q9VI24 LD25151p 4.38 1 1 1 5787.8296 1 +Q9VI53 LD44267p 19.43 7 13 7 154253.899 12 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 88345.61290000001 4 +Q9VI64 LD30995p 46.46 14 42 14 4051262.60616 39 +Q9VI66 GH28833p 15.54 4 6 4 167215.36549999999 6 +Q9VI80 Thawb 2.46 2 4 2 22736.524699999998 4 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 88257.9339 6 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 124245.655 5 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 68234966.41077 306 +Q9VIF2 GM01519p 11.13 6 8 6 435186.365 7 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 575106.75866 12 +Q9VIH1 CG9273 protein 29.27 6 7 6 190059.052 7 +Q9VII5 GEO08323p1 20.13 3 8 3 453074.10076 8 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 259075.05670000002 2 +Q9VIJ3 FI14214p 45.0 7 10 2 136723.27774000002 7 +Q9VIJ5 GEO05038p1 20.15 2 3 2 30492.686299999998 3 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 13777.3766 2 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 244409.894 15 +Q9VIL2 LD19544p 23.14 4 5 4 55340.473000000005 4 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 793220.292 12 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 169638.303 5 +Q9VIQ5 RH02620p 29.08 5 7 5 404154.6526 6 +Q9VIQ6 FI17342p1 17.68 4 5 4 64735.43357 5 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 11434124.5336 61 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 25952.120300000002 3 +Q9VIU3 FI23988p1 3.98 2 2 2 17596.411 2 +Q9VIV6 GH04973p 8.83 3 3 3 185057.15399999998 3 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 57728.381 2 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 5236.43197 2 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 716234.84558 5 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 939397.01016 16 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 1341255.0956 20 +Q9VJ22 GH09876p 5.41 2 2 2 21964.1314 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 154010.09470000002 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 1241402.32603 19 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 230318.6661 9 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 2223120.0667 29 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 311364.9775 13 +Q9VJ59 PRA1 family protein 5.31 1 2 1 81183.133 2 +Q9VJ60 GM16226p 17.29 3 4 3 251894.783 4 +Q9VJ61 SD03870p 4.67 2 2 2 9019.741699999999 2 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 559885.088 15 +Q9VJ80 LD42267p 8.46 10 12 10 227334.0734 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 276024.31078 13 +Q9VJA9 GH07373p 7.69 5 6 0 59680.5982 6 +Q9VJC0 GEO08203p1 37.96 5 8 5 343391.7661 8 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 145071.273 5 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 1500237.6175 22 +Q9VJD4 LD24721p 34.44 12 41 12 5289232.8024 35 +Q9VJE3 LD24839p 11.63 6 8 6 95884.8137 7 +Q9VJH8 FI03416p 3.13 2 2 2 12635.6299 2 +Q9VJI5 Protein yellow 16.56 8 9 8 662189.4598 9 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 200076.7823 5 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 2036626.0877 21 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 37909.414 1 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 801067.746 10 +Q9VJQ3 Protein yellow 38.13 15 33 14 3353386.67444 31 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 22943.557 3 +Q9VJU6 IP09831p 7.3 2 3 2 101001.14300000001 2 +Q9VJU8 GH23407p 10.27 5 6 5 96028.24173000001 5 +Q9VJZ1 FI21342p1 11.57 6 7 6 155183.5086 7 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 5058080.058999999 40 +Q9VJZ5 LD07294p 26.58 8 14 8 408805.2566 12 +Q9VJZ6 LD40224p 76.39 13 40 13 2984704.61055 36 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 689346.4054 13 +Q9VK11 GH15921p 22.65 6 13 6 1082990.6572999998 13 +Q9VK12 GH20621p 64.8 18 93 18 18871680.3879 85 +Q9VK18 LD36945p 17.14 9 10 9 92522.2899 7 +Q9VK19 FI07225p 7.72 1 1 1 12103.817 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 3066.75355 2 +Q9VK31 LD35592p 5.19 2 2 2 4168.923 1 +Q9VK39 FI09204p 52.83 5 23 5 956927.235 18 +Q9VK43 LD10135p 7.71 3 3 3 28803.587999999996 3 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 232751.21450000003 5 +Q9VK59 LD23647p 33.58 28 46 28 797167.0762 36 +Q9VK60 GH25425p 52.14 13 50 13 5496577.2943 45 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 4454616.3619 46 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 446145.2665 13 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 278382.79600000003 10 +Q9VK99 Atilla, isoform B 51.75 8 30 8 1754888.19515 26 +Q9VKA1 FI02817p 16.23 4 6 4 54672.8674 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 20876.9237 3 +Q9VKC8 FI03495p 14.26 8 10 8 292275.89078 10 +Q9VKD9 MIP16835p1 1.35 1 1 1 2991.198 1 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 43308756.50941 399 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 142870.263 6 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 234442.667 2 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 108676.03 1 +Q9VKI8 GH03305p 65.36 19 134 19 12449242.223 126 +Q9VKJ4 Csl4 18.14 3 4 3 104608.305 3 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 13590871.1982 59 +Q9VKM7 AT01533p 7.09 4 10 0 490248.9457 10 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 249548.89740000002 15 +Q9VKQ5 GEO07393p1 16.94 2 4 2 326355.80500000005 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 35188.108 3 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 807560.962 21 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 293720.1778 9 +Q9VKU5 LD37206p 14.04 4 4 4 80221.741 2 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 3052092.4892 38 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 76915.5348 5 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 134143.1703 7 +Q9VKW1 LD41958p 1.96 1 1 1 5658.0493 1 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 625273.1296 16 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 28422.6871 2 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 22251784.39032 156 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1399144.973 12 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 214569.2654 14 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 1089063.87647 30 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 4154126.9785599997 45 +Q9VL02 GH08677p 19.51 7 7 2 111989.2449 7 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 451785.0013 12 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 97177.29440000001 5 +Q9VL16 RE45833p 30.77 7 30 7 4394250.2248 27 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 6236.3857 1 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 30306.418999999998 3 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 5911.696 1 +Q9VL57 RE10231p 2.85 1 1 0 1539.6132 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 121882.795 2 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 957400.64616 10 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 3010313.9738000003 32 +Q9VL70 HL08109p 80.9 30 111 30 29491674.2095 104 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 181019.35316 5 +Q9VL91 LD23102p 1.8 1 1 1 2483.6343 1 +Q9VL93 GEO07195p1 29.09 3 5 3 49444.3678 3 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 201733.19 8 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 3300265.67577 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 7335626.7274899995 82 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 140224.88456 8 +Q9VLI4 Raw, isoform A 4.85 4 5 1 63263.87729999999 3 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 82292.875 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 1386888.1172 16 +Q9VLP0 IP04187p 32.09 5 7 5 239013.7742 5 +Q9VLP1 GEO08095p1 37.84 6 18 6 921981.5958 14 +Q9VLP2 GEO08076p1 38.78 6 46 6 1928120.4168 39 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 748621.657 6 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1640349.7961 29 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 440731.21300000005 2 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 6254940.67502 43 +Q9VLS5 LD29542p 6.53 3 4 3 21952.61514 4 +Q9VLS7 LD21067p 4.91 7 8 0 101671.5071 6 +Q9VLT3 LD23292p 15.23 26 42 26 1496219.87154 39 +Q9VLT7 IP17351p 24.04 4 7 4 721720.985 7 +Q9VLU3 IP09231p 8.63 2 3 0 54508.9105 2 +Q9VLV9 Proctolin 46.43 5 7 5 54224.3069 5 +Q9VLW8 LD06392p 5.79 2 2 2 87058.74799999999 2 +Q9VLX6 HL01609p 16.49 4 4 0 136591.80796 4 +Q9VLY1 HL02931p 19.01 1 9 1 1984880.851 7 +Q9VLY7 TEP1-F 7.49 10 10 10 111685.2356 9 +Q9VLY9 CD109 antigen 28.88 39 63 2 4183724.636 59 +Q9VM07 RE43931p 27.85 5 10 4 462881.6912 8 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 324735.4885 12 +Q9VM11 HL01515p 30.55 11 14 11 507945.71596 14 +Q9VM12 MIP26555p1 25.85 8 19 8 885545.809 15 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 35398799.03116 185 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 28983273.6973 116 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 48730.283 3 +Q9VM47 Menin 4.19 3 3 2 32470.981 3 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 13235.64744 4 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 380877.1001 11 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 384106.53160000005 5 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 819405.9826 8 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 177572.32559999998 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 24107264.31739 84 +Q9VMC3 LD35051p 17.28 5 6 5 32686.49226 5 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 46522.695 1 +Q9VMC7 LP11564p 13.92 9 10 3 69460.179 8 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 576310.3941500001 16 +Q9VME1 FI01864p 11.22 6 8 6 215987.5485 8 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 252282.862 7 +Q9VMF0 FI04444p 5.9 3 3 3 23557.6963 3 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 100899.3795 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 637701.3716 11 +Q9VMH8 GEO07746p1 38.1 6 19 6 767999.5487 16 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 3076506.8376 29 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 1902965.1565 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 12636028.00293 48 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 446938.1348 8 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 1415999.6303 15 +Q9VMR9 acylphosphatase 14.85 2 2 2 96425.474 2 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 19614685.9723 59 +Q9VMT2 GEO07854p1 60.4 9 123 1 25182962.88702 111 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 9401870.614 40 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 134011.8998 12 +Q9VMV5 Viking, isoform A 9.07 15 21 15 645322.8185 19 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 3378.9424 2 +Q9VMX4 AT19154p 29.08 7 13 7 362708.0557 11 +Q9VN01 GH23891p 11.66 7 7 7 112137.7431 7 +Q9VN02 GH14561p 39.46 10 16 10 395707.8845 13 +Q9VN21 LD30155p 57.06 30 110 30 12867181.64048 105 +Q9VN39 RE74585p 24.47 9 13 4 79859.20790000001 10 +Q9VN44 FI07923p 23.17 21 40 21 2554724.5583 39 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 1113533.35938 12 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 892242.4536 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 7681.5063 1 +Q9VN86 AT14148p 9.07 4 4 4 86264.06850000001 4 +Q9VN88 LD45836p 33.18 6 9 6 438041.7391 9 +Q9VNA3 GH21273p 34.26 7 14 7 949993.1027 13 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 1064590.33792 13 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 201077.7686 6 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 36895.683899999996 3 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 10649.2538 2 +Q9VNF3 RE01652p 45.91 11 35 8 1349786.2942 29 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 182268.45684 7 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 134162.1989 8 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 222815.0044 9 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 281381.53 1 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 323713.1865 7 +Q9VNI8 Hpr1 10.84 8 8 8 159939.7924 8 +Q9VNI9 IP18173p 25.11 4 7 4 258861.5675 7 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 11154297.92508 86 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 106665.2626 6 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 67347.8616 8 +Q9VNV2 GEO05133p1 15.82 2 3 2 141504.912 3 +Q9VNW0 GEO11142p1 17.97 2 2 2 53516.823000000004 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 5493607.4922400005 77 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 5519806.1004 95 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 40144.19500000001 3 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 34665.4103 4 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 6321.8486 1 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 2765.2391000000002 2 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 170069.081 4 +Q9VP51 LD40450p 2.79 1 1 0 567.06586 1 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 306548.71259999997 7 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 564887.4349 8 +Q9VP57 LD15904p 25.8 20 45 20 1386992.3018 41 +Q9VP77 LD23875p 10.53 6 6 6 200867.28029999998 6 +Q9VP78 GH23156p 11.92 4 5 4 62310.6665 5 +Q9VP84 IP06402p 10.05 2 2 2 42903.84 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 10240.4335 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 80046.33899999999 4 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 89948.977 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 52561.471 2 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 1893038.6573 38 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 59267.4554 5 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 33901.2713 3 +Q9VPH6 LP10922p 8.04 4 5 0 80355.89379999999 4 +Q9VPJ0 RE58433p 16.84 6 7 2 352464.7451 7 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 68183.991 2 +Q9VPK3 AT24407p 12.35 5 7 1 316619.6167 7 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 88005.683 4 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 9227247.8592 83 +Q9VPP7 AT13539p 22.7 4 4 4 129530.908 4 +Q9VPR1 GH02075p 15.14 2 5 2 8935.507 1 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 1648.6259 1 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 1101018.2477000002 10 +Q9VPU4 FI17537p1 5.33 2 2 2 5122.859600000001 2 +Q9VPU6 Galectin 5.06 2 2 2 66450.101 2 +Q9VPX0 GH26159p 6.97 4 4 4 29152.172 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 1274499.321 13 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 7528087.22295 71 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 8002.8944 3 +Q9VPY7 LD42035p 2.2 1 1 1 4492.638 1 +Q9VPZ5 GH04232p 25.41 14 33 14 1254523.13194 33 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 11816.0053 2 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 17058059.1276 106 +Q9VQ83 RE23541p 7.91 3 3 0 33573.3634 2 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 245494.83370000002 6 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 8752869.892 56 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 6631145.300000001 24 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 331930.37820000004 13 +Q9VQE0 dynamin GTPase 20.82 15 21 15 383612.7021 19 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 86186.6824 7 +Q9VQI6 LD25952p 19.75 7 9 7 152343.10820000002 8 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 1406753.0190400002 24 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 81892.8305 3 +Q9VQK7 LD45152p 6.68 5 5 5 44955.164600000004 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 6418.556 1 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 3445339.1568 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 2666476.7692 18 +Q9VQQ6 FI18122p1 35.15 14 21 1 928285.21523 21 +Q9VQR0 FI04421p 4.49 2 3 2 118824.56099999999 3 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 8031282.2958 58 +Q9VQR5 IP10807p 19.06 4 6 4 105932.6562 5 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 298512.94014 12 +Q9VQT7 RH15675p 14.63 1 2 1 13280.791700000002 2 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 1122258.0385999999 13 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 242887.48445000002 8 +Q9VQX3 HL05328p 18.38 6 6 6 221095.066 6 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 16361.530700000001 4 +Q9VR03 AT19250p 4.57 2 2 2 5400.716 1 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 267960.9922 10 +Q9VR30 RE58324p 25.27 9 9 9 383394.572 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 585571.3225 10 +Q9VR62 GM14138p 5.53 3 3 3 21814.4035 2 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 33253.234300000004 2 +Q9VR79 LD43683p 35.86 11 30 11 1890041.1096 28 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 10604.406299999999 2 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 4057347.8421 31 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 1571151.9383 11 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 95596.7403 8 +Q9VRF7 GH09530p 19.59 5 13 0 694757.16975 11 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 160905.4328 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 403232.4425 14 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 4283214.37937 37 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 339902.3263 12 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 92528.98000000001 2 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 6538.5376 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 21419492.0383 95 +Q9VRL1 GEO06356p1 53.1 8 42 2 4464132.3361 34 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 3788.8162 1 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 25203.8328 2 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 169840.245 4 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 3390870.3364 44 +Q9VRP3 AT08565p 27.53 8 17 8 832573.8622 14 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 166001.03493 8 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 2915317.7036 26 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 337077.011 7 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 371977.84400000004 8 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 602549.6422 14 +Q9VS11 lysozyme 16.35 4 4 4 90408.3597 3 +Q9VS44 Uncharacterized protein 9.82 3 3 3 70818.88574 3 +Q9VS84 FI03225p 11.14 10 13 10 550685.7856 13 +Q9VSA9 CG7409 79.87 15 73 15 17205852.1412 60 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 380782.43299999996 11 +Q9VSC5 GM09977p 60.12 14 32 14 1269512.61894 27 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 276336.437 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 554264.6109 8 +Q9VSH5 IP09562p 4.89 1 1 1 12920.532 1 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 197295.414 3 +Q9VSI1 LD21269p 7.99 5 5 5 78195.2015 4 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 24281.6725 3 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 2341777.8499 25 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 4924739.0284 28 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 5505311.1601 35 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 260003.58329999997 8 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 103849.449 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 30663.642499999998 4 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 4000.9617 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 2500160.6622 18 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 5943560.80634 61 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 135362.78399999999 5 +Q9VSR5 GM03767p 52.2 8 27 8 3249178.8986 24 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 187457.7598 9 +Q9VST4 arginine kinase 6.96 3 3 3 13815.2381 3 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 8095500.460700001 45 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 1694881.4165 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 122137.538 3 +Q9VSW7 LD21662p 3.33 1 1 1 9653.354 1 +Q9VSX2 IP01061p 40.0 9 17 9 863944.92825 11 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 22218208.393969998 54 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 622628.63547 13 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 7577.2757 2 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 658662.3572 16 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 13852.557 2 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 1797155.3361 26 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 32682.467600000004 2 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 36600.53 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 75053.178 2 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 131824.386 5 +Q9VTA8 RE35371p 7.59 2 2 2 10675.066 1 +Q9VTB0 LD35289p 21.62 8 11 8 475551.13276 11 +Q9VTB3 Guanylate kinase 51.07 13 30 13 2551428.37838 29 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 5084531.48956 34 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 120122.3814 5 +Q9VTC3 GH07049p 9.72 4 5 4 267083.018 5 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 51020.6161 3 +Q9VTL0 FI19917p1 7.45 3 3 3 205514.772 3 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 85172.4094 3 +Q9VTT2 LD20590p 7.93 4 4 4 72549.3003 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 4979505.2141 30 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 680638.9926 9 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 348798.185 6 +Q9VTW1 RE15265p 11.2 5 5 0 401364.093 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 157866.1904 7 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 8734785.4221 55 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 610556.647 19 +Q9VU04 RE60105p 13.85 4 5 4 230949.716 5 +Q9VU13 LD45603p 9.17 4 12 0 633852.7041 12 +Q9VU34 LD45758p 0.89 1 1 1 2209.713 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 22689152.8429 70 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 105037.4715 4 +Q9VU38 Adenosine kinase 35.94 8 13 0 136816.6553 12 +Q9VU45 LD27581p 21.48 5 15 5 927580.12414 14 +Q9VU53 Capricious, isoform A 5.0 3 3 1 33634.84 2 +Q9VU75 RH45712p 61.73 12 38 12 1032038.1216 33 +Q9VU92 Uncharacterized protein 29.76 7 16 7 320006.26986 14 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 9993929.98221 91 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 48312.4847 5 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 3196390.535 31 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 2599.6577 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 133129.7363 5 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 468466.523 4 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 115545.95079999999 8 +Q9VUQ7 RE36966p 10.4 6 11 6 173397.429 11 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 86106.3569 5 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 3973.62046 3 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 31347.999000000003 2 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 244462.2351 9 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 562746.941 5 +Q9VUZ8 GEO07442p1 22.56 2 2 2 3082.615 1 +Q9VV13 GEO08383p1 10.71 1 5 1 511230.29370000004 5 +Q9VV31 Uncharacterized protein 19.35 2 5 2 580056.483 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 448778.9054 12 +Q9VV40 Golgin 104 1.42 1 1 1 1831.4088 1 +Q9VV42 Fat body protein 2 83.09 26 202 0 56462095.31609 174 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 47588150.75006 219 +Q9VV47 Fat body protein 2 45.17 9 18 7 2504019.438 17 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 3465164.85606 47 +Q9VV75 AT02348p 82.05 29 251 29 38206621.46825 198 +Q9VV76 Syntaxin 8 37.07 6 10 6 323392.9379 9 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 125207.1142 9 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 247739.55800000002 9 +Q9VVB5 LD46723p 30.59 16 56 1 14290.8091 3 +Q9VVB7 FI02842p 43.95 14 57 1 9998.2595 3 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 338146.4069 7 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 3363868.1467999998 46 +Q9VVC8 LD23434p 15.41 8 9 8 190125.7202 7 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 796558.9911 25 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 21684456.0836 31 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 1183094.8294 12 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 129916.47889999999 4 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 601980.8611999999 12 +Q9VVL5 FI11325p 14.55 5 7 5 151696.9798 7 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 26839232.83424 155 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 111597.8457 4 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 75532.11499999999 3 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 326030.4843 11 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 241265.18795 10 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 3962742.7456 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 12001305.70928 60 +Q9VVU2 GEO07453p1 48.32 9 29 8 2720805.602 28 +Q9VVV6 LD45843p 6.76 5 5 0 66366.27764 5 +Q9VVW7 Canopy b 16.74 4 9 4 436981.447 9 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 19516.872 2 +Q9VVY7 FI20154p1 10.79 14 19 0 439728.61 18 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 181105.84474 11 +Q9VVZ6 GEO09638p1 25.95 2 3 0 12336.528 2 +Q9VW00 GH28721p 11.46 4 10 4 495631.7892 9 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 18031.61203 3 +Q9VW17 RE58036p 47.25 6 16 1 414033.19442 15 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 18268.8779 3 +Q9VW34 FI03450p 19.96 11 20 11 805121.70453 18 +Q9VW40 LD31235p 9.3 3 3 3 60186.775 3 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 24291.6236 2 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 81449.799 8 +Q9VW57 Grasp65 12.61 6 9 6 279317.137 9 +Q9VW58 LD33138p 35.32 6 11 6 138353.7842 11 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 1933011.04836 30 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 6753931.611 58 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 13035408.99088 121 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 35093.9701 4 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 164708.212 5 +Q9VWD0 GH23568p 16.89 6 14 6 876729.38774 12 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 22031263.90856 89 +Q9VWD5 LD35087p 13.54 5 5 5 56126.0812 5 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1748534.88408 39 +Q9VWF0 LP01149p 36.93 9 17 9 174745.0753 13 +Q9VWG1 LD37169p 71.04 12 73 2 635580.9465 12 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 28344.993000000002 2 +Q9VWJ3 LD05272p 8.22 1 2 1 40705.594 1 +Q9VWL4 GH07340p 13.41 7 9 7 290015.68940000003 9 +Q9VWP2 RH57257p 57.02 12 25 12 3069718.6980999997 24 +Q9VWQ3 LD35981p 6.96 3 3 0 153181.69199999998 3 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 124925.31864 8 +Q9VWS1 Houki 20.44 5 8 5 585215.4976 8 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1502767.45186 29 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 39317.5063 5 +Q9VWU0 FI18411p1 5.87 2 2 2 34199.263 2 +Q9VWV6 Transferrin 70.05 43 231 43 38742164.40708 212 +Q9VWW2 GH13094p 20.52 10 18 10 116553.24189 13 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 21951.492 2 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 468491.07070000004 8 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 35929.027 3 +Q9VX26 Chascon, isoform A 1.62 2 2 0 20103.472999999998 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 13987185.3265 77 +Q9VX69 FI01450p 18.0 6 23 5 1252930.2438 11 +Q9VXA3 LP21163p 17.0 12 21 12 634663.9535 20 +Q9VXA9 RE04047p 6.57 2 3 2 104988.531 3 +Q9VXC1 MIP06432p1 31.28 5 11 3 963603.9708 10 +Q9VXC9 trypsin 52.99 10 17 10 976743.3692 15 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 236850.78850000002 4 +Q9VXF9 AT13091p 26.2 10 17 10 607886.00266 17 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 195002.0755 7 +Q9VXG9 GH25683p 9.78 2 5 2 47274.545 2 +Q9VXH4 RE16337p 28.43 2 3 2 289846.669 3 +Q9VXH7 FI17510p1 10.63 3 5 3 439884.835 5 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 2225566.5416 33 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 13714147.5755 44 +Q9VXJ7 GH03748p1 9.2 9 11 9 74161.63934 8 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 563633.2980000001 13 +Q9VXM4 LD12946p 62.9 13 34 13 2231857.17957 31 +Q9VXN1 LD03728p 12.68 4 4 4 42663.522399999994 3 +Q9VXN3 LD07988p 29.8 10 15 10 327819.62529999996 15 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 21199.7996 2 +Q9VXP3 GH05406p 8.26 5 5 5 16965.19986 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 25018.588 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 18728.0764 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 2987200.1011 49 +Q9VXR9 FI03680p 15.76 6 6 6 165518.8617 6 +Q9VXV1 RH52220p 4.39 1 1 1 14745.574 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 418570.2124 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 3087184.4296999997 27 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 338846.00995 14 +Q9VY05 GH11762p 12.84 8 13 8 1058271.1389000001 11 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 139351.4381 8 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 293264.17230000003 7 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 744.1163 1 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 9424.931 1 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 234797.8444 5 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 189824.9656 5 +Q9VY76 AMP deaminase 10.25 8 10 0 115635.66386 9 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 587191.52363 11 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 208169.36959999998 9 +Q9VY92 GEO07753p1 73.91 8 44 8 9264590.5958 43 +Q9VYA1 RE18811p 3.87 1 1 1 5118.2236 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 30205.681 2 +Q9VYF0 GM09012p 16.04 4 6 4 178922.4333 5 +Q9VYG8 CG15717-PA 10.71 3 5 3 73898.8066 4 +Q9VYJ1 FI12805p 5.04 4 4 4 75582.9987 4 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 150598.93219999998 3 +Q9VYM0 CG2555-PA 13.2 2 3 1 9827.4492 3 +Q9VYN1 protein kinase C 0.84 2 14 1 7045364.0963 12 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 4070.205 1 +Q9VYS2 GH09980p 9.97 8 11 8 81051.0691 9 +Q9VYT0 RE04130p 37.34 9 17 8 616938.1243 17 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 38901.9068 4 +Q9VYT3 FI23714p1 5.58 7 7 7 45147.924600000006 6 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 106941.23500000002 6 +Q9VYU9 RH17287p 56.97 9 18 9 965908.2529 17 +Q9VYV4 Amun, isoform A 8.0 3 5 3 245698.4595 5 +Q9VYV6 GEO09033p1 28.07 3 3 3 36194.034 2 +Q9VZ00 FI19420p1 18.03 16 21 0 363465.06769 19 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 4075047.228 33 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 896579.4046 15 +Q9VZ24 GEO11412p1 46.9 8 47 8 10187620.20375 47 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 58609.61 3 +Q9VZ34 RH72958p 4.69 2 3 2 36966.356999999996 3 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 86402.056 3 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 601020.7444000001 9 +Q9VZ66 SD22308p 42.86 5 9 5 568297.03883 8 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 88807.2301 6 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 71295.9973 3 +Q9VZE4 RE70333p 20.43 10 14 10 568945.59775 13 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 834314.179 8 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 71196.3948 3 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 1420308.65115 33 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 7107748.9147 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 612068.3907999999 10 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 8384797.51081 44 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 37427.551 3 +Q9VZI1 Transgelin 68.09 12 84 1 13409760.90535 71 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 65957.195 3 +Q9VZJ2 GH27759p 14.19 6 10 6 722586.2705999999 9 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 43378.6576 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 405215.37234 24 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 49976.52710000001 5 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 149530.73625 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 346380.2132 10 +Q9VZV2 Chitinase 7 4.64 5 6 5 82531.6115 6 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 47638.34983 5 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 28271.08034 5 +Q9VZX6 LD06441p 21.78 7 9 7 439555.7191 9 +Q9VZY0 LD45195p 11.48 3 4 3 287756.463 4 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 10883.5824 2 +Q9VZZ5 GEO12033p1 34.27 6 8 6 1111884.183 8 +Q9VZZ6 CG16985 protein 38.26 5 11 5 892998.6883 11 +Q9W022 GEO01508p1 62.68 8 41 8 11136465.6871 40 +Q9W073 RH22148p 19.41 3 3 3 69158.538 3 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 8440345.01656 23 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 2578017.124 14 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 381557.50276 11 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 456683.4068 6 +Q9W0A8 FI01658p 25.63 7 26 7 1570676.0891 26 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 1625348.8961 24 +Q9W0C3 GH11843p 38.78 11 19 11 712158.3473 18 +Q9W0D3 GH15728p 1.29 2 2 2 5039.7276600000005 2 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 63899.758 1 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 64281.0356 4 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 1356083.7477 21 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 2165991.0746 27 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 107177.7948 5 +Q9W0J9 GH07301p 34.47 8 12 7 453569.23232 11 +Q9W0K9 LD10220p 23.21 4 4 4 38024.675599999995 4 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 22893.815199999997 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 827281.6064 14 +Q9W0M5 Protein DPCD 14.41 3 3 3 21699.2796 3 +Q9W0N6 LD27967p 9.57 3 3 3 43038.9821 3 +Q9W0P4 GEO05053p1 8.13 1 1 1 43170.523 1 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 42603.3664 4 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 42195.883 1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 439814.0638 19 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 58582.4733 4 +Q9W0U0 glycerol kinase 3.9 2 2 0 29217.16 2 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 458845.9175 11 +Q9W0X1 GH15894p 6.31 3 3 3 110770.829 3 +Q9W0X2 GEO07322p1 28.1 3 4 3 248659.862 3 +Q9W0X3 LD24657p 22.81 4 4 1 188987.9471 4 +Q9W0Z5 LP09747p 22.95 9 13 9 388027.0752 11 +Q9W114 IP05433p 28.33 3 4 3 63783.359500000006 4 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 7221938.6664700005 53 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 1584682.7235 17 +Q9W136 Uncharacterized protein 19.81 4 18 4 716507.4389 15 +Q9W140 Regulatory protein zeste 3.53 2 3 2 65304.084 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 46022.4461 5 +Q9W158 LD36772p 14.33 5 7 5 366320.831 6 +Q9W199 GEO07594p1 21.29 4 5 4 284348.637 5 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 5952069.8205 31 +Q9W1C8 LD24355p 19.02 8 8 8 137753.7273 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 112200.22099999999 5 +Q9W1F2 FI07217p 5.93 2 3 2 12909.1567 2 +Q9W1F7 IP15825p 34.97 12 28 12 3024932.83557 26 +Q9W1F8 GEO08248p1 23.31 4 8 4 662523.063 7 +Q9W1G7 LD21576p 34.32 13 22 13 986962.4122 20 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 366884.2044 11 +Q9W1H6 GH04238p 13.85 3 9 3 451453.7544 9 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 4257225.14704 45 +Q9W1I8 LD03592p 39.08 9 25 9 802174.9863 19 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 46202.6049 6 +Q9W1L8 GH11818p 2.66 1 1 1 20546.809 1 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 88625.69125 6 +Q9W1N3 Levy, isoform A 23.85 3 17 3 3765196.265 16 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 4885.8843 1 +Q9W1R0 RH49821p 4.13 2 2 2 16290.509000000002 2 +Q9W1R3 Golgin-245 12.09 17 20 17 389265.15544 19 +Q9W1V8 CG9893 protein 39.58 8 16 8 619383.6664 16 +Q9W1W4 RE45066p 18.58 6 11 6 386642.7496 10 +Q9W1X5 GH04942p 20.82 28 39 4 2078754.4912 37 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 16634365.60263 71 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 1180204.8758 15 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 333982.167 12 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 117272.4481 8 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 721093.5638 23 +Q9W257 RH13652p 6.99 2 4 2 188573.31 4 +Q9W258 Babos, isoform A 33.67 7 13 7 1463007.6985 13 +Q9W259 FI23916p1 8.95 4 5 4 155286.1506 5 +Q9W260 GH03113p 15.4 8 12 8 305927.1141 12 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 162343.549 5 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 424399.1796 25 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 21372.666400000002 3 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 63140.5403 4 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 1759418.95 18 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 25132.363 2 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 68837.292 3 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 529086.5533 11 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 162707.5007 4 +Q9W2L6 RH02475p 33.73 20 58 20 4856819.3321 54 +Q9W2M0 LD23155p 22.1 15 17 15 513081.0666 15 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 20311300.49344 52 +Q9W2M9 FI16623p1 14.71 2 2 2 342266.85030000005 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 2897.678 2 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 479605.74399999995 5 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 788310.21 11 +Q9W2V2 FI20035p1 5.6 3 3 3 11949.8449 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 46197826.14538 89 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 770603.70564 20 +Q9W2Z9 RE65233p 4.81 1 2 1 66668.32800000001 2 +Q9W306 GEO08256p1 25.62 3 4 3 11958.762299999999 3 +Q9W308 GH05731p 16.18 2 5 2 733929.28 5 +Q9W309 GEO08445p1 33.95 7 11 7 1256029.041 11 +Q9W314 GH14088p 9.82 4 5 4 210240.73 5 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 206573.717 8 +Q9W330 Phosphotransferase 29.76 15 32 2 4308167.973 31 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 90278.01550000001 2 +Q9W337 GH19985p 44.95 7 14 7 1253943.13817 14 +Q9W370 GEO12084p1 38.52 4 10 4 386786.52150000003 9 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 18216.6025 2 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 24693.3165 2 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 2166810.6633 35 +Q9W396 FI06908p 14.17 4 7 4 353593.1557 6 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 260624.31600000002 5 +Q9W3C3 LD10016p 12.94 6 8 6 187099.7269 6 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 83189.717 3 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 476436.36352 12 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 127259.364 3 +Q9W3H4 LD36273p 66.8 13 29 13 2216707.98506 25 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 134290.815 7 +Q9W3J6 FI06457p 8.64 3 4 3 43113.94307 3 +Q9W3K6 LD35927p 4.99 4 5 4 130937.2534 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 736637.8587 24 +Q9W3L4 GH20802p 35.02 10 23 10 1067414.23147 22 +Q9W3M7 RNA helicase 14.07 10 15 9 74450.251 9 +Q9W3M8 LD34211p 47.74 8 17 8 1043110.3537999999 17 +Q9W3N1 RH59310p 7.17 2 2 2 10942.344860000001 2 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 578401.0136 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 3276394.88933 38 +Q9W3Q0 FI07418p 23.39 5 14 4 26930.73586 3 +Q9W3Q1 GM14286p 8.84 3 3 3 20265.5886 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 591554.2879 12 +Q9W3S3 LP10445p 15.68 2 3 2 11975.4194 3 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 170641.5135 6 +Q9W3T9 GM01152p 45.38 9 16 9 967416.799 16 +Q9W3U9 CG14434-PA 32.62 6 13 0 261431.75 9 +Q9W3V2 FI19713p1 4.82 4 4 4 36949.840299999996 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 19574.376 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 70356.3988 4 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 8458640.9478 57 +Q9W3X8 RH42690p 10.73 4 5 4 28159.40367 4 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 1073081.5225 20 +Q9W3Z4 GH18625p 3.75 1 1 1 4665.8306 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 4751503.69397 51 +Q9W403 LD24968p 9.21 5 7 5 85025.7213 7 +Q9W404 GH10714p 31.03 9 12 8 305557.77650000004 10 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 54783.1007 3 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 1165297.5027 24 +Q9W425 Rabconnectin-3A 1.34 5 5 5 33126.72618 4 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 5835043.3806 60 +Q9W461 LD23868p 18.22 7 8 7 209662.3007 8 +Q9W482 Lin-52, isoform A 33.12 4 11 4 189994.9187 8 +Q9W483 GH18971p 5.79 2 3 2 58586.8653 3 +Q9W486 LD13361p 5.27 3 3 0 40418.3395 3 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 166355.418 4 +Q9W4A0 GH11193p 19.8 4 5 4 292890.815 5 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 78457.8273 8 +Q9W4C2 lysozyme 17.11 3 3 3 141109.894 3 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 179571.45888 9 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 39245.856 4 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 2725766.52454 29 +Q9W4N8 LD30122p 55.76 15 77 0 10537097.43642 71 +Q9W4U2 RH09070p 41.37 8 24 8 1720239.40318 22 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 12234.9981 2 +Q9W4W5 RE47284p 11.15 4 4 4 239348.248 4 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 361980.5602 20 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 720457.529 13 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 25674.388 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 10805.0375 3 +Q9W503 RH61816p 38.61 11 14 11 521964.935 14 +Q9W5B4 GH18858p 31.97 10 21 10 1398516.6496000001 18 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 37143.265 2 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 16871.899 3 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 103850.87 5 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 181797.972 6 +Q9W5W7 GH19483p 2.57 2 3 2 29113.196 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 6364086.1095 38 +Q9W5X0 LD21953p 26.87 6 25 1 148933.919 4 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 268063.1762 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 179790.7123 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 6663891.75181 46 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 214032.57614 7 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 936198.7829999999 17 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 900738.8025 15 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 13793074.61213 98 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 623898.0313 23 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 837694.2292000001 20 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 18201859.43546 93 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 21648.61932 4 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 50650.6546 7 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 3026725.5896 37 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 272794.2588 13 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 3930952.82754 42 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 13049362.28177 78 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 3156.229 1 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 207793.7286 4 +R9PY51 Uncharacterized protein 34.95 6 48 6 8914586.80786 28 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 13748111.73285 106 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 378045.69899999996 12 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 470470.2745 10 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 198329.9372 2 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 321948.534 6 +X2JB48 ADP/ATP translocase 56.86 20 109 1 14606382.450199999 100 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 1024063.7106 30 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 102964.359 6 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 34448829.6152 111 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 30361.514 1 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 21289.429 2 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 21737.199 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 14474.856 1 +P10674 Fasciclin-1 49.69 30 164 1 2130.7034 1 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 5502.4956 1 +Q08605 Transcription activator GAGA 1.2 1 1 0 27159.8 1 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 10125.034 1 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 3115.0132 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 66891.3374 3 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 70137.79699999999 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 10491.906 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 8795.464 1 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 30575.300000000003 2 +Q9W568 Protein halfway 3.11 1 1 0 1886.6636 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 5100.747 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 8222.506 1 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 92341.5184 6 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 2967.784 1 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 33481.637 1 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 74498.766 1 +A1Z7M0 Space blanket 2.86 1 1 1 26144.354 1 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 53555.1975 2 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 276584.347 6 +B5RJS0 IP20241p 1.96 2 2 0 857.25073 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 13736.393 1 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 19591.480000000003 2 +E1JJM0 FI20063p1 22.76 13 20 0 484772.5634 18 +E2QCF1 ATP-citrate synthase 11.14 11 15 1 686.0683 1 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 15889.35 1 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 21893.94 1 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 11366.755 1 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 17540.1207 2 +Q0E8R1 FI07211p 34.57 13 35 0 142182.663 2 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 235936.0258 10 +Q7JWH6 RE61424p 5.65 2 2 2 9440.508 1 +Q7JXA2 LOBE 5.52 2 2 2 5935.967 1 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 187954.00300000003 3 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 3649.6414 1 +Q7KVW1 RE73736p 2.8 2 2 0 40808.479 2 +Q7PLV6 FI02158p 0.85 1 2 1 4164.9019 2 +Q8I062 GH23305p 83.33 21 152 1 84969.63 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 43334.4844 2 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 10731.133 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 10304.982 1 +Q8MPN6 Serpin 4 27.18 9 11 0 17695.23 1 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 34145.5368 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 2137.684 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 8545.32834 3 +Q9VKC1 IP16805p 4.28 1 1 1 19182.98 1 +Q9VM94 Homer, isoform B 49.62 17 57 1 36419.293 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 64101.8 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 156883.1509 4 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 62928.676 1 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 23518.126 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 518359.055 4 +Q9VTY1 LD40136p 5.69 2 2 2 38983.725699999995 2 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 2600.792 1 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 16763.183 2 +Q9W2N5 GH10162p 3.47 2 2 2 60363.7577 2 +Q9W362 La-related protein 7 1.85 1 1 1 1004.4187 1 +Q9W525 LD08195p 3.8 2 2 1 42700.159 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 21664.0677 2 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 48166.006 2 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 20489.0904 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 15044.73 1 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 40221.293600000005 2 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 9928.4675 2 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 92418.662 4 +E1JJ83 Os-C, isoform B 16.34 2 2 1 7750.8476 2 +M9MRG5 Taiman, isoform F 0.94 2 2 0 31481.87 2 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 381989.12088 17 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 10259.322 1 +O46231 FI18705p1 65.94 22 77 1 97363.445 1 +Q6IDE2 GH07226p 2.0 1 1 1 13380.038 1 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 7978.505 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 13293.368299999998 2 +Q7K527 Tetraspanin 4.61 1 1 1 7919.8696 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 393803.0 1 +Q8IQ80 GH06117p 2.97 2 2 0 255503.9444 2 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 106914.865 3 +Q9VHW5 LD38634p 17.32 2 3 2 22428.0385 3 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 79972.52769999999 2 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 27268.648 1 +Q9VVG5 RH19679p 14.44 1 3 1 1883894.501 3 +P09956 Regulatory protein zeste 2.96 2 2 0 3387.948 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 31059.271 1 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 12926.456 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 15227.737 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 59526.78 1 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 16557.518 1 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 63211.055 1 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 14566330.274290001 142 +C1C3E7 MIP09364p 61.25 22 85 1 3229.5627 1 +E1JH70 Kank, isoform E 2.57 2 2 0 5228.566 2 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 4154.9604 2 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 30406.164 1 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 2342.696 1 +Q8IRM1 Uncharacterized protein, isoform E 20.86 4 7 1 770.0391 1 +Q9VBS0 CHK domain ov2 4.89 2 2 2 29765.199 2 +Q9VCH9 LD07883p 8.66 2 2 2 68168.1781 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 15063.6495 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 38003.96976 2 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 13921.928 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 98993.0116 4 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 335489.69 2 +Q9VMY3 FI19613p1 1.5 1 1 1 8221.92 1 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 12954.147 2 +Q9VS80 FI17864p1 2.34 1 1 1 7262.0645 1 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 1915.94 1 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 15804.064 1 +Q9VZF0 LD44732p 7.73 2 2 2 22714.4464 2 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 40453.84 1 +Q9VFR1 Protein Abitram 14.95 2 2 2 3559.4551 2 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 16042.303 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 1320101.16 4 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 65448.883 1 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 10090.37 1 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 4194.447 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 118281.5285 5 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 11273.874 2 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 20630.48 1 +Q0KHQ1 GEO13361p1 24.44 2 2 2 131391.5907 2 +Q4QPR8 GEO10187p1 9.76 1 2 1 86415.713 2 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 9909.301169999999 2 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 45094.3257 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 8306.8494 2 +Q9VLL5 Alpha-N-acetylglucosaminidase 1.29 1 1 1 1533.96 1 +Q9VV37 GEO13385p1 10.1 1 6 1 198229.86200000002 3 +Q9VVX6 BET1 homolog 9.4 1 1 1 72948.11 1 +Q9W152 RH33060p 16.9 1 1 1 4029.5344 1 +P48613 Protein tipE 3.98 2 2 2 16877.975700000003 2 +Q9VGW1 Cadherin-86C 1.24 2 2 0 10724.391 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 178455.1442 3 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 32967.695 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 286381.60599999997 4 +O76895 Arginase 7.69 2 2 2 11139.259 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 65058.191000000006 2 +Q9VAI3 FI06539p 10.08 1 1 1 13035.1455 1 +Q9VB09 IP04131p 12.1 2 2 2 78512.70499999999 2 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 210773.80700000003 2 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 55718.082 2 +Q9W1X6 GH06673p 8.33 2 2 2 37161.104 2 +Q9W5E7 LP07417p 11.4 1 2 1 20883.499 2 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 40556.422099999996 4 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 2661.6443 1 +A1ZAU6 FI05912p 1.83 1 1 0 4599.694 1 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 156478.828 3 +Q7K3Z8 GH01208p 2.35 1 2 1 21699.186 2 +Q9VAN8 FI15955p1 6.46 1 1 1 18189.088 1 +Q9VLL4 FI23523p1 4.52 2 2 2 19672.8015 2 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 18976.281 1 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 40252.0846 4 +Q9W542 LD07342p 1.62 1 1 1 12566.9 1 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 2198.9553 1 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 60938.539 2 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 1814.1959 1 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 28279.209 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 32682.637 2 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 29591.81 2 +A1Z840 Cdc2-related kinase 4.13 2 3 2 74647.38 1 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 13097.809 1 +Q9W3S4 LD46272p 3.11 1 1 1 4250.1704 1 +A8JQX3 Nocturnin 1.87 1 1 1 6168.2554 1 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 18390.963 1 +Q9VUL1 CTP synthase 1.59 1 1 0 19152.396 1 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 1782.2455 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 6032.137 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 247447.61792000002 11 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.94 1 1 0 511.884 1 +O76857 BCL7-like 13.64 2 2 2 39094.303 2 +Q7JY89 RE35124p 15.0 1 1 1 2568.2407 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 113796.775 2 +A8JUP7 Serine protease Hayan 2.2 2 3 2 29403.746 2 +P07664 Serendipity locus protein delta 4.16 2 2 2 32940.469 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 93255.137 2 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 7044.4712 2 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 1761.8516 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 1034298.1505999999 4 +Q8IQU7 825-Oak 26.36 2 3 0 16285.8495 2 +Q9VGM4 LD28119p 6.76 2 2 2 4395.2097 2 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 104761.48958 12 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 19509.775 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 12154.598 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 15186.546 1 +Q962I2 small monomeric GTPase 59.39 10 28 1 291253.54 2 +Q9VSK1 GH09510p 2.72 2 2 2 781.0406 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 255247.763 2 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 4660.3171 2 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 472086.0534 14 +Q29R09 LD28546p 5.79 2 2 2 4402.7861 2 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 3469.77757 2 +Q8SXC0 GH10306p 6.03 2 2 2 32490.33576 2 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 3.7 2 2 2 522.7665 1 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 4841.5794000000005 2 +Q9W0A9 GM02612p 3.06 1 1 1 3463.8833 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 15867.833 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 165710.3646 4 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 31806.982 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 8677.505 1 +Q9VV29 GEO12576p1 9.68 1 2 0 163314.033 2 +P45884 Attacin-A 5.36 1 2 0 69951.677 2 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 774.9066 1 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 4940.0215 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 50639.973 1 +Q9VV27 MIP11526p 15.25 2 2 2 99437.772 2 +O76324 Discs overgrown protein kinase 2.27 1 1 0 2123.4136 1 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 12927.556 1 +Q9VFL9 FI07901p 6.08 2 2 2 7355.16 2 +A0A0B4JCW7 TBC1 domain family member 30 0.66 2 2 0 323.0231 1 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 29016.0397 2 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 140792.9064 3 +Q9VEQ0 Xylulose kinase 1.99 1 1 1 762.0604 1 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 20872.63 1 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 47387.844 1 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 5069.872 1 +Q2PDU0 GEO11169p1 9.84 1 1 1 11425.095 1 +Q9VF46 GH25158p 7.34 2 3 2 72920.818 3 +Q9VSD8 IP10160p 6.67 2 2 2 12571.895400000001 2 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 29803.088 1 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 27889.873 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 71464.473 2 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 4527.466 1 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 14675.841 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 839.15564 1 +A8JNU1 adenylate cyclase 1.02 1 1 0 9871.705 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 16733.87 1 +Q7JW46 RE25483p 17.0 1 1 1 1929.0979 1 +Q7K010 Tetraspanin 5.0 1 2 1 17639.195 2 +Q9VUR4 FI11905p 11.6 4 9 1 19232.582 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 11998.296999999999 2 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 2639.9404 1 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 6963.726 1 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 53583.705 2 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 67563.1464 3 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 776.35 1 +A8JNV2 Uncharacterized protein 10.71 1 2 1 27345.273999999998 2 +Q9VRX7 LD29573p 1.32 1 1 1 8945.787 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 52934.957 1 +O46099 EG:8D8.2 protein 0.78 1 1 1 1766.0432 1 +Q8SWU4 RE25571p 17.3 6 12 1 24179.502 1 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 25923.317000000003 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 77670.881 2 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2674.2444 1 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 20496.99 1 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 34206.977 1 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 1997.234 1 +Q8IRD6 Dro4 protein 33.8 2 2 2 86624.87700000001 2 +Q8SXW3 GV1, isoform B 4.44 1 2 0 50501.879 2 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 26920.538 2 +Q7JWE2 GH09427p 3.96 1 1 1 8563.072 1 +Q8IRN0 FI06485p 10.84 2 2 2 18204.617 2 +Q9VHS6 Copper transport protein 5.75 1 1 1 961.3872 1 +D8FT19 MIP22288p 2.35 1 1 0 3318.817 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 23910.869 2 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 5.24 1 1 1 638.45557 1 +Q8ML92 Protein aveugle 7.55 1 1 1 28422.71 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 3.59 1 1 0 797.98834 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 5705.4067 1 +Q9VT15 GH14734p 2.78 1 2 1 28091.556 2 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 22033.1591 2 +A1A750 GEO11067p1 18.81 2 2 2 67532.1444 2 +Q9VF83 LD33178p 2.73 1 1 1 9624.309 1 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 5200.8574 1 +Q9NHV9 Protein vav 3.66 3 3 0 10016.262 1 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 9540.6045 1 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 671.829 1 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 96663.14199999999 3 +M9PCK0 Decima, isoform D 4.29 1 1 0 11086.103 1 +Q9VPA9 LD24894p 0.92 1 1 1 11646.935 1 +Q9VSS4 IP05455p 10.32 1 1 1 26939.5 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 71836.518 2 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 9580.327 1 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 3829.7182000000003 2 +Q7KV26 Kinase 2.6 1 1 1 3067.0469 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 4029.7297 1 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 6661.983 1 +Q02427 RNA-binding protein 1 29.86 4 5 1 319966.5 1 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 9868.682 1 +Q9VCQ7 LD40758p 1.61 1 1 1 394.95395 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 13356.6734 2 +Q9VDL4 LP04613p 2.72 1 2 1 9914.394 2 +Q9VQ52 GH27779p 3.93 2 2 1 43675.697329999995 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 103161.883 2 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 10691.6115 2 +Q9VGE8 Tachykinins 6.57 2 4 0 40041.6349 4 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 46766.015999999996 2 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 47112.232 2 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 23982.0305 2 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 3113.3943 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 12727.157 2 +Q7YU81 Protein charlatan 1.48 2 2 0 11236.59 2 +Q9VHV3 FI02011p 3.75 2 2 2 20704.283 2 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 4463.388 1 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 15330.2806 2 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 7496.4478 1 +Q9V3A6 Ero1-like protein 2.28 1 1 1 2757.2026 1 +Q9VIQ4 GH03980p 10.75 2 2 2 53128.47350000001 2 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 231665.25 2 +Q7K8Y3 IP16419p 26.28 9 11 0 875611.1463 10 +Q8STG9 DSec61alpha 1.89 1 1 1 25869.457 1 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 49988.4848 3 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 15977.661 1 +P22812 Protein Tube 3.9 2 2 2 2444.3806699999996 2 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 58126.6 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 35014.085999999996 2 +Q7JV39 GH01142p 5.05 1 1 1 14636.88 1 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 20480.5275 2 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 48993.65 1 +Q27367 Protein croquemort 4.48 2 2 2 26098.531 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 2799.948 1 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 2469.6506 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 2799.9492 1 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 14848.0137 2 +Q9W4F9 IP01388p 3.65 2 2 0 21494.561999999998 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 2311.1367 1 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 6197.8833 1 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 2989.186 1 +F0JAQ9 MIP27169p 2.34 1 1 0 1938.6317 1 +P18289 Transcription factor Jra 3.81 1 1 0 4131.5117 1 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 31759.684 1 +Q9VJ77 FI24106p1 2.07 1 1 0 863.4272 1 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 28114.049 1 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 6316.819 1 +Q9VR55 LD29159p 8.71 1 4 1 61642.7743 3 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 11213.804 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 115600.2726 5 +P54194 General odorant-binding protein 84a 6.86 1 1 1 16802.188 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 7805.9194 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 51332.038499999995 2 +Q8IR92 Uncharacterized protein, isoform A 6.03 6 6 0 625.2892 1 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 2816.4922 1 +Q7KVT8 Orion, isoform B 1.7 1 1 0 313.61 1 +Q9VV26 GEO12049p1 6.84 1 2 1 223011.074 2 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 380.7012 1 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 2531.2397 1 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 14019.254 1 +Q9VX14 RH64870p 8.82 2 2 1 11108.571800000002 2 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 40803.9877 2 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 18601.5374 2 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 9514.416 1 +A1ZAG3 Protein G12 2.9 1 1 1 56106.08 1 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 7429.9575 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 27462.641600000003 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 46150.875799999994 4 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 2218.6467 1 +Q0E8W6 Small integral membrane protein 14 40.0 2 2 2 994.4179 1 +Q6IJE8 HDC15077 11.85 1 1 1 77592.67 1 +Q9VVI0 SD09427p 1.63 1 1 1 3446.0828 1 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 41084.7074 2 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 13292.525 2 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 26157.344 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 68564.125 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 7897.94 1 +Q9W494 Crossveinless 8.17 2 2 2 36073.547 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 62126.4804 3 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 8397.1472 2 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 47087.962 2 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 19469.402 1 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 11349.308 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 97487.164 1 +Q95NH6 Attacin-C 2.9 1 1 1 35865.15 1 +Q8ST83 Polycomb protein PHO 2.31 1 2 1 536.25977 1 +Q86B83 LD12611p 5.44 2 2 2 12260.971099999999 2 +Q8MRQ1 GH06222p 3.62 2 2 0 18345.664 1 +Q4V6X9 IP01247p 3.24 1 1 1 3582.1353 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 2329.853 1 +Q9VPR6 Kinase 2.59 1 1 1 8421.617 1 +Q9VF80 Cysteine protease 1.65 1 1 1 460.77676 1 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 15806.409 1 +Q9V4B8 RE68558p 1.2 1 1 1 15609.893 1 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 6.02 1 1 1 358.27707 1 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 16141.084 1 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 6557.436159999999 2 +Q8I0J1 RE43539p 2.51 1 1 0 15024.29 1 +Q9VC27 Nicastrin 1.29 1 1 0 18466.281 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 7630.374 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 22231.158 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 10556.007 1 +Q9W0I2 RE15268p 11.17 1 1 1 9033.982 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 9384.847 1 +Q961R9 GH09241p 1.8 1 1 1 35715.05 1 +Q9VCC7 FI03681p 1.71 1 1 1 813.2303 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 5762.3203 1 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 780.91315 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 16342.44595 2 +Q9VFR4 GH09754p 6.64 1 1 1 57038.535 1 +Q7K490 SD03973p 2.65 1 1 1 6194.456 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 34136.418699999995 2 +A1Z8N1 Trehalose transporter 1 2.1 1 1 1 300.6965 1 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 12355.917 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 115834.75100000002 3 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 18469.3783 2 +Q6NN09 ATPase protein 9 5.07 1 6 1 1473255.516 6 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 5276.655 1 +O76874 SD17974p 1.14 1 1 1 5676.8584 1 +Q9VEB2 LD28404p 3.0 1 1 1 23012.396 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.64 1 1 1 743.955 1 +P41964 Drosomycin 17.14 1 1 0 6684.898 1 +Q9VL21 LD11652p 6.22 1 1 1 12707.033 1 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 4097.3228 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 589.7173 1 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 157345.954 2 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 3462.5515 1 +Q9VK20 LD18447p 1.79 1 1 1 13511.641 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 14019.702 1 +Q9VA48 Serpin 100A 2.77 2 2 2 12688.6946 2 +Q9VP25 Carboxylic ester hydrolase 2.33 1 1 1 332.53726 1 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 5122.115 1 +Q9VBK9 Protein FAM98B 3.08 1 1 1 56037.86 1 +Q9VZC8 GEO12024p1 6.85 1 1 1 562.39594 1 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 27783.6274 2 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 16557.35 1 +Q0E985 RH74701p 15.0 1 1 1 4019.167 1 +Q9VCC2 RE50040p 4.86 2 2 2 83499.64 2 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 19529.158 1 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 7687.105 1 +Q7K172 CAAX prenyl protease 3.33 1 1 1 12135.68 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 47224.332 1 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 10755.751 1 +M9PH32 Protein meiotic P26 1.99 1 1 0 592.3478 1 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 71913.67 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 18473.266 1 +E1JHX0 MIP29328p 3.76 1 1 1 4555.092 1 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 12966.302 1 +F9VMG5 GEO02462p1 41.07 2 2 2 35083.904 2 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 32549.3163 2 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 25121.855 1 +Q9V9R3 adenylate cyclase 1.29 2 2 2 15761.0478 2 +Q9VS39 FI19525p1 5.88 2 2 2 25098.059699999998 2 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 13976.8955 1 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 12078.6045 1 +Q9VUE5 LD17962p 0.77 1 1 0 136222.31 1 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 3632.5117 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 13627.802 2 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 20070.6296 2 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 1540.4913 1 +M9PE65 Axotactin 0.69 1 1 1 3989.0737 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 5362.361 1 +Q8IRK0 GH04558p 5.41 2 2 2 105843.08780000001 2 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 10303.422 1 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 21841.023 1 +Q5BI50 Cullin-4A 1.34 1 1 1 5422.656 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 755.2992 1 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 1945.0208 1 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 2540.6587 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 134921.95 1 +P07186 Chorion protein S19 14.45 1 1 1 3277.6987 1 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 7944.213 1 +Q9VJK9 GEO06505p1 9.52 1 1 1 2758.8125 1 +E1JHN0 FI16804p1 13.08 1 1 1 355.34393 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 1992.63 1 +Q9VL29 GEO11246p1 12.93 1 1 1 13889.111 1 +Q9VWF2 Supporter of activation of yellow protein 0.9 1 1 0 305.02783 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 619.3305 1 +Q9W2F6 RE36793p 14.17 2 2 2 32166.417 2 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 5027.357 1 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 53481.016 1 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 7923.2046 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 6013.0319 2 +Q7JR99 RE31204p 5.59 1 1 1 8219.83 1 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 2756.1082 1 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 180753.88530000002 6 +B7YZZ0 GH19557p 12.64 1 1 1 18341.084 1 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 8580.1145 2 +A1Z8D4 AT13868p 4.47 1 1 0 3253.7715 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 74372.65 1 +A8DYV9 GEO02589p1 10.53 1 2 1 38042.093 2 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 5981.1675 1 +Q9W1I6 U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein 13.4 1 1 1 394.65546 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 214217.36 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 5523.47 1 +Q7K1H9 GH07575p 3.69 1 1 1 3795.7607 1 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 4590.4604 1 +O76513 Cyclin-H 3.7 1 1 1 11646.668 1 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 2134.383 1 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 8567.105 1 +Q9W0U6 Sulfatase-modifying factor enzyme-like domain-containing protein 4.46 1 1 1 413.52023 1 +Q9V449 Met75Ca 23.53 1 1 1 5135.439 1 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 2665.1294 1 +Q03445 Glutamate receptor 1 1.92 1 1 1 2712.0103 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 6244.861 1 +Q9W0B6 LD14179p 1.48 1 1 1 5713.3223 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 3030.5427 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 236349.52 1 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 7349.772 1 +Q9VT01 FI06792p 3.5 1 1 1 8743.036 1 +Q9VIM8 RE22905p 2.85 2 2 2 4144.6733 1 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 3905.8433 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 18500.371000000003 2 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 5147.3154 1 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 181183.25 1 +Q9VMM3 RE17389p 2.61 1 1 1 1688.8379 1 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 13722.676 1 +Q9W551 GEO02601p1 8.49 1 1 1 2503.5256 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 11852.158 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 4072.837 1 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 3373.8042 1 +Q9W0E2 Protein phosphatase 3.74 1 1 1 337.1376 1 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 7393.4185 1 +Q9VB20 Distracted, isoform B 0.68 1 1 1 1504.4635 1 +Q9VA94 GH07782p 2.82 1 1 1 623.96375 1 +Q9VX56 LD03052p 5.94 1 1 1 32855.477 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 9309.591 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 40266.801400000004 2 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 3941.219 1 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 6910.3677 1 +Q7JY99 glycerol kinase 1.34 1 1 1 2637.2456 1 +Q9VP08 IP11255p 2.36 1 1 1 2529.0686 1 +Q8MYV9 GEO12865p1 11.04 1 2 1 93030.512 2 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 14226.116 1 +Q9V6L9 F-box/SPRY domain-containing protein 1 4.31 1 1 1 944.3055 1 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 5210.3623 1 +Q8IN94 Trithorax group protein osa 0.29 1 1 0 666.93317 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 36362.844 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 182988.939 2 +Q7JWV7 Tetraspanin 4.85 1 1 1 3942.5386 1 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 7887.8467 1 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 2614.324 1 +Q8IRE5 RH23915p 21.54 1 1 1 1509.731 1 +Q9VWL7 Rho GTPase activating protein at 18B, isoform C 0.76 1 1 0 2301.4077 1 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 12166.777 1 +Q9VBQ5 LD38433p 1.91 1 1 1 39851.598 1 +Q9VZR5 RE46159p 11.06 2 2 2 32805.203 2 +Q9VPB7 FI17508p1 1.3 1 1 1 4718.493 1 +Q8T092 LD21421p 2.45 1 1 1 668.6255 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 18937.086 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 2586.2695 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 24179.764 1 +Q7K4G8 LD40944p 1.7 1 1 1 4201.011 1 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 6980.9966 1 +Q9VHW4 FI21225p1 0.74 1 1 1 2292.2954 1 +Q9VKE7 GH09228p1 10.39 1 1 1 911.67773 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 7831.6533 1 +Q9VMI5 CG9135 protein 1.44 1 1 1 4708.264 1 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 30184.08 1 +Q9VVJ6 Keren 4.61 1 1 1 12594.762 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 255774.156 3 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 1570.8906 1 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 261024.2 1 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 38486.86 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 10760.323 1 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 1722.2941 1 +E1JH07 LD18062p1 8.0 1 1 1 45310.055 1 +Q9VWG2 FI07430p 2.75 1 1 1 3356.9126 1 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 6698.5293 1 +Q9Y113 Negative elongation factor B 1.35 1 1 1 6147.9165 1 +P36192 Defensin 8.7 1 1 1 4328.404 1 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 7311.347 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 7402.946 1 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 15443.872 1 +Q9VAK8 Protein Diedel 8.7 1 1 1 9465.007 1 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 7562.6904 1 +A0A0B4KFX0 Uncharacterized protein, isoform A 21.54 1 1 1 1010.95856 1 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 3238.5564 1 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 5248.68 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 84750.18 1 +Q0E908 Hillarin 0.86 1 1 1 2552.8027 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 586801.734 2 +Q9VPH4 FI03293p 2.31 1 1 1 3772.9763 1 +Q5BIL9 SD21168p 1.63 1 1 0 35025.49 1 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 7519.917 1 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 6260.017 1 +A1Z6H0 Kune-kune 2.65 1 1 1 19606.361 1 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 981.13495 1 +M9MS77 Uncharacterized protein 7.56 1 1 1 16450.836 1 +Q9VHJ4 GH04846p 2.25 1 1 1 4395.427 1 +Q9W226 GEO07239p1 5.88 1 1 1 5895.7866 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 8734.912 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 5083.997 1 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 4865.5327 1 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 13118.929 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 35026.023 1 +Q9V412 STING ER exit protein 4.45 1 1 0 4872.1113 1 +Q8MRQ2 GH05923p 2.74 1 1 0 7955.0854 1 +Q9VE99 GEO12060p1 16.67 1 1 1 4087.6765 1 +Q6XPX3 Phospholipase A2 4.3 1 2 1 19421.627 2 +Q8SYR5 GEO07715p1 7.1 1 1 1 13113.405 1 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 3921.4001 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 7518.9785 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 5658.8926 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 3990.4756 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 9584.624 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 3948.8625 1 +Q7PL72 LD05675p 5.85 1 1 0 5162.9697 1 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 6741.4897 1 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 5999.333 1 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 9257.282 1 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 6249.6523 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 19250.56 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 1944.9012 1 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 4043.0605 1 +Q2MGN0 FI01014p 2.5 1 1 0 2470.1328 1 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 5891.35276 2 +A1A6X2 IP16893p 12.07 1 1 1 19768.406 1 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 15694.387 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 1934.6799 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 52806.68 2 +Q7JXE1 Bunker gear 4.75 1 1 1 952.47406 1 +Q9VKZ9 FI06463p 5.39 1 1 1 16748.111 1 +Q7K105 LD20892p 1.3 1 1 1 12887.843 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 27881.184 1 +Q9W081 AT01075p 2.34 1 1 1 2476.4814 1 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 19728.44 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 21927.395 1 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 8266.065 1 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 503.59216 1 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 6863.5503 1 +Q9W009 GH12037p 3.17 1 1 1 7764.937 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 46039.316 1 +Q0E906 GEO11031p1 11.69 1 1 1 23227.693 1 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 3345.3445 1 +Q9VBT7 GH13495p 1.9 1 1 1 6556.031 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 72377.97 1 +Q9Y1A7 LD25378p 2.0 1 1 1 10432.428 1 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 946.0033 1 +Q7JR91 GH12715p 3.19 1 1 0 5959.4097 1 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 1654.1742 1 +B7YZH7 GM12693p 21.43 1 1 0 623.7724 1 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 792.9508 1 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 1922.7305 1 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 3716.4924 1 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 209714.98 1 +Q9VUB4 GATOR complex protein NPRL3 1.97 1 1 0 967.7918 1 +Q9VJU2 Nimrod C3 3.12 1 1 1 10151.274 1 +Q9W3Q2 SD08447p 1.26 1 1 1 19314.035 1 +A1Z979 Salivary secreted peptide 6.25 1 1 0 24867.904 1 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 5938.8735 1 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 335039.27125 13 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 252487.803 3 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 73295.28236 6 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 57204.0328 5 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 53594.2382 2 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M1_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M1_TMTa.txt new file mode 100644 index 0000000..fd99fc5 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M1_TMTa.txt @@ -0,0 +1,3967 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 129N, Sample, n/a, Earth_M1 Abundances Count: F5: 129N, Sample, n/a, Earth_M1 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 11193.3741 3 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 27649.84938 10 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 1642414.18964 64 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 16088.39964 5 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 56593.05945 12 +A0A1F4 Protein eyes shut 9.56 22 68 0 429810.59929 54 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 4730.2039 3 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 120511.08577 17 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 655.0238 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 5291.9177 3 +A1Z877 Nidogen 24.81 29 66 29 520940.85447 59 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 6572.6809 2 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 454.79745 1 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 176569.36842 59 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 108142.74595 10 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 41065.61354 5 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 144886.36554 33 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 5447.849099999999 2 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 150995.36496 33 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 39210.0741 3 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 6753.5244999999995 3 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 14863.67251 7 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 7533.0274 2 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 10971.5317 2 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 8936.7158 2 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 122360.69230000001 6 +A8DYP0 Protein Obscurin 2.11 10 12 10 22901.17164 7 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 197777.6228 9 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 1312811.60409 80 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 192548.63622 17 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 387114.62357 49 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 419048.7321 29 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 49633.0787 4 +C0HL66 Histone H3.3A 52.94 8 63 0 65596.543 3 +C0HLZ9 Baramicin A1 15.56 4 9 0 33017.26415 8 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 468201.50430000003 30 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 4756.46566 3 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 45719.3554 11 +M9NDE3 Protein bark beetle 3.91 13 19 13 47225.62274 13 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 3873683.1895399997 98 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 108064.7007 6 +O01367 Protein held out wings 21.48 8 10 0 31332.78655 8 +O01382 Caspase drICE 17.99 5 7 4 3107.07448 4 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 332161.0345 8 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 2836571.07277 99 +O02194 Presenilin homolog 5.73 3 5 0 4559.7945 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 252989.31083 20 +O02649 Heat shock protein 60A 73.47 40 183 25 6522463.11107 152 +O15943 Neural-cadherin 14.89 49 91 2 563476.62466 76 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 31891.85274 8 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 37803.33094 3 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 14677.767100000001 5 +O18333 Ras-related protein Rab-2 18.31 5 10 5 34011.02288 9 +O18334 Ras-related protein Rab6 18.75 5 16 0 5817.51296 2 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 402441.79579 27 +O18388 Importin subunit beta 3.73 4 6 0 2217.76574 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 4238706.89982 104 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 250096.47109 29 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 38764.41204 11 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 55446.9619 3 +O44342 Protein windbeutel 19.46 5 10 0 30318.0894 8 +O44386 Integrin alpha-PS3 11.84 14 20 12 65809.01391 16 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 1271.3789 1 +O46037 Vinculin 53.69 50 137 0 1866159.33546 115 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 23485.2439 4 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 78245.2702 6 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 95980.26203 8 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 170950.8376 19 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 2373.3313 1 +O61307 Teneurin-m 0.66 2 2 0 2807.34617 2 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 12291.769100000001 2 +O61491 Flotillin-1 48.83 23 81 23 995211.44264 68 +O61722 PRL-1 phosphatase 44.32 7 23 7 330714.76514 13 +O62619 Pyruvate kinase 69.23 27 80 27 2049187.17588 61 +O62621 Coatomer subunit beta' 3.17 3 4 3 5629.72793 4 +O76206 Putative riboflavin kinase 49.02 7 15 0 325883.38595 12 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 118704.82220000001 6 +O76742 Ras-related protein Rab7 28.5 6 12 6 77672.0634 10 +O76878 RILP-like protein homolog 9.71 5 10 0 53366.78805 10 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 76939.28739 15 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 229428.79615 15 +O77051 Transcription factor E2F2 22.97 9 14 0 22660.13706 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 19177.33105 5 +O77277 Torsin-like protein 12.65 5 8 0 42927.91112 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 2376.8306000000002 2 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 28379.908 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 58234.16097 21 +O96690 Protein PDF 23.53 1 1 1 3266.184 1 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 2052429.57795 58 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 27089.29704 6 +O97125 Heat shock protein 68 24.09 13 89 6 106564.54188 20 +O97172 UPF0729 protein CG18508 29.29 3 8 0 36373.1799 7 +O97394 Protein sidekick 1.89 4 5 0 2488.9058 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 21435.9128 5 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 867717.04296 42 +P00334 Alcohol dehydrogenase 88.28 21 200 21 29010315.60734 142 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 1497735.5363500002 34 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 3711.12925 3 +P02255 Histone H1 14.45 3 6 0 26862.817499999997 5 +P02283 Histone H2B 56.91 8 70 8 1106377.0292 57 +P02299 Histone H3 52.94 8 67 2 1427105.7316 53 +P02515 Heat shock protein 22 40.8 8 18 8 132976.69088 14 +P02516 Heat shock protein 23 84.41 16 83 0 3058658.90171 71 +P02517 Heat shock protein 26 57.69 10 30 0 831425.48534 21 +P02518 Heat shock protein 27 44.13 9 21 0 272268.79526 20 +P02572 Actin-42A 64.1 25 768 2 40581530.7113 573 +P02574 Actin, larval muscle 65.96 25 672 0 1835393.5233999998 21 +P02828 Heat shock protein 83 48.4 33 148 0 3511349.18327 128 +P02843 Vitellogenin-1 70.84 32 265 0 1518762.87894 127 +P02844 Vitellogenin-2 59.28 26 187 0 915888.02529 81 +P04197 Myb protein 3.81 3 3 0 723.7806 1 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 214877.11363 15 +P04388 Ras-like protein 2 13.02 2 10 2 46789.21054 8 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 8695.2012 5 +P05205 Heterochromatin protein 1 36.89 8 22 8 211520.63495 19 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 2197752.7893 30 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 537577.5244 16 +P05552 Transcription factor Adf-1 7.63 2 5 0 23685.27136 5 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 23406.04475 10 +P05812 Heat shock protein 67B1 12.13 5 7 5 14758.5643 5 +P06002 Opsin Rh1 4.56 2 8 2 20481.0658 6 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 15741920.49448 123 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 3287.9448 1 +P06607 Vitellogenin-3 82.14 33 299 0 1106924.46933 147 +P06742 Myosin light chain alkali 56.77 11 71 0 7179068.29103 41 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 4630.921 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 1689651.9667 41 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 7799174.68957 125 +P07665 Serendipity locus protein beta 8.43 4 5 0 2202.39772 2 +P07668 Choline O-acetyltransferase 7.63 5 6 5 9245.355500000001 3 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 19220263.74635 321 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 14842.89697 7 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 243463.12396 22 +P08144 Alpha-amylase A 18.22 8 15 0 249600.61070000002 13 +P08171 Esterase-6 13.24 9 22 0 111794.73259999999 20 +P08182 Casein kinase II subunit beta 38.72 8 38 2 617812.66605 32 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 1148258.57781 23 +P08645 Ras-related protein Rap1 25.54 5 15 0 124125.2444 15 +P08646 Ras-like protein 1 30.69 4 10 4 94294.89814 8 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 10514193.71171 169 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 53837.50534 10 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 3840043.0999900005 111 +P08928 Lamin 67.36 50 193 49 3865139.27145 162 +P08985 Histone H2A.v 42.55 10 47 8 812553.97537 30 +P09040 Drosulfakinins 21.99 3 3 3 54065.498999999996 3 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 532543.00798 45 +P09208 Insulin-like receptor 3.03 8 10 8 5529.93373 6 +P09491 Tropomyosin-2 76.76 34 245 2 84445.5174 5 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 108283.39091999999 13 +P10180 Homeobox protein cut 0.46 1 3 0 58366.2554 3 +P10379 Protein unzipped 20.29 8 28 0 413738.60395 26 +P10552 FMRFamide-related peptides 2.31 1 3 1 48104.152 2 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 402909.63061 69 +P10981 Actin-87E 76.33 30 777 0 1249136.31507 34 +P10987 Actin-5C 64.63 27 797 0 807501.63963 27 +P11046 Laminin subunit beta-1 21.09 39 84 39 994547.22494 65 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 32549.443 1 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 20448886.08874 336 +P11584 Integrin beta-PS 18.32 17 45 0 234710.95327 34 +P12024 Chaoptin 30.95 35 88 0 1315097.19952 69 +P12080 Integrin alpha-PS2 11.53 17 39 17 178907.10525 33 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 593857.82495 35 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 7610.9693 2 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 308250.29574 30 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 423842.74029 35 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 79659.0909 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 89536.89786000001 8 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 452263.7693 67 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 1277366.6971 81 +P13395 Spectrin alpha chain 65.3 140 542 0 10920264.10706 449 +P13469 DNA-binding protein modulo 4.06 2 2 0 4925.1216 1 +P13496 Dynactin subunit 1 14.23 21 45 21 125845.14422 31 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 2476467.14759 111 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 38829.99134 13 +P13678 Protein kinase C 5.01 4 4 0 4711.0271 2 +P14199 Protein ref(2)P 13.19 7 32 7 200876.06193 29 +P14318 Muscle-specific protein 20 80.43 16 103 16 2133973.2656 73 +P14484 Pupal cuticle protein 27.17 5 39 5 323691.97738 30 +P14599 Amyloid-beta-like protein 1.92 2 2 0 358.1722 1 +P15007 Enolase 78.0 40 271 1 25166058.73699 226 +P15215 Laminin subunit gamma-1 33.62 53 135 0 1428363.41655 117 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 1267.27718 2 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 1518018.13089 77 +P15364 Protein amalgam 15.92 5 11 0 46282.354900000006 9 +P15372 Phosrestin-2 67.58 19 65 0 1072310.03584 58 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 108530.4249 7 +P16378 G protein alpha o subunit 29.1 11 46 7 514591.39265 41 +P16554 Protein numb 15.47 8 12 0 48817.06465 10 +P16568 Protein bicaudal D 23.4 19 27 0 176638.40668 26 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 50802.9533 11 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 2295.76921 4 +P16914 Protein elav 30.23 13 43 0 543089.94833 36 +P17210 Kinesin heavy chain 34.56 34 100 34 721801.27816 80 +P17276 Protein henna 44.69 15 32 0 546625.41277 26 +P17336 Catalase 41.11 16 61 16 821310.0711 41 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 534552.78183 28 +P17719 Dihydrofolate reductase 4.4 1 2 1 5495.2276999999995 2 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 994233.35856 41 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 6159.30995 4 +P18431 Protein kinase shaggy 29.77 14 58 0 1186041.81152 50 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 5875657.263 149 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 55289.5212 10 +P18824 Armadillo segment polarity protein 14.47 12 25 0 105606.74998000001 16 +P19107 Phosrestin-1 77.56 33 263 33 8432729.68437 234 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 113992.57432 25 +P19334 Transient receptor potential protein 4.39 6 9 4 51341.28757 8 +P19339 Protein sex-lethal 4.52 2 4 0 5322.5086599999995 3 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 82927.64787 8 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 2707308.75219 39 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 8524.8824 3 +P20153 Protein ultraspiracle 5.91 4 7 0 19175.9919 5 +P20228 Glutamate decarboxylase 27.84 12 34 0 164469.69459 21 +P20232 Transcription elongation factor S-II 42.81 13 19 0 68774.80596 10 +P20240 Otefin 29.95 11 22 11 99027.86411000001 17 +P20241 Neuroglian 21.89 29 84 0 800098.20809 74 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 137754.85545 6 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 8368.9136 3 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 26338.004 3 +P20432 Glutathione S-transferase D1 52.15 12 101 9 8752029.8793 87 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 3601000.79761 58 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 12959958.8508 201 +P21187 Polyadenylate-binding protein 26.81 14 44 14 90263.38796000001 33 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 4541233.0930200005 94 +P22465 Annexin B10 65.42 20 129 20 2757811.36487 109 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 654378.4171 30 +P22813 Heat shock factor protein 7.09 5 6 0 15960.8296 5 +P22815 Protein bride of sevenless 1.34 1 1 1 4061.67 1 +P22979 Heat shock protein 67B3 54.27 8 22 8 491399.28442 19 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 20767.6765 7 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 353464.8798 47 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 12574.923789999999 3 +P23625 G protein alpha q subunit 54.67 20 124 18 3373990.67586 98 +P23654 Neurotactin 8.87 7 17 0 67484.78709 14 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 71999.42814999999 9 +P23779 Cystatin-like protein 63.49 8 26 8 1328827.66615 21 +P24156 Prohibitin 1 73.91 17 62 0 1066950.97886 49 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 10420053.05745 99 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 4900.3225 2 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 299776.21341 36 +P25171 Regulator of chromosome condensation 10.42 5 9 5 44615.89246 9 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 2824.0947 1 +P25228 Ras-related protein Rab-3 30.45 6 18 0 85683.5584 5 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 26710.45808 11 +P25822 Maternal protein pumilio 3.39 5 8 0 21707.0193 6 +P25843 Profilin 88.89 7 27 0 1014785.31452 22 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 180873.6154 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 55242.0399 9 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 432249.60567 27 +P26686 Serine-arginine protein 55 18.35 8 14 0 92626.3936 11 +P27716 Innexin inx1 11.33 5 7 0 21046.718 6 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 75019.60994 16 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 18502.6188 6 +P29052 Transcription initiation factor IIB 13.65 5 13 0 38772.63236 9 +P29310 14-3-3 protein zeta 69.35 18 328 0 11018593.669710001 263 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 360975.35302 20 +P29413 Calreticulin 57.64 21 79 0 3046752.18113 72 +P29613 Triosephosphate isomerase 77.73 17 135 16 8493280.88131 110 +P29742 Clathrin heavy chain 8.76 16 22 0 31632.1431 11 +P29746 Protein bangles and beads 59.28 23 66 23 1131369.44626 60 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 1341226.07985 65 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 9536.5088 5 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 5068162.0445 125 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 5226882.16468 165 +P30432 Furin-like protease 2 2.44 4 6 0 7087.3003 4 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 599253.74078 39 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 1188934.79486 64 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 494175.5395 30 +P32234 Guanylate binding protein 128up 11.14 4 4 3 52840.198599999996 3 +P32392 Actin-related protein 3 16.99 7 15 7 68159.5057 11 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 30353.4533 13 +P33438 Glutactin 23.98 23 64 0 292218.92956 45 +P34082 Fasciclin-2 23.02 17 30 0 131189.47052 23 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 653593.854 21 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 413148.58915 18 +P35220 Catenin alpha 24.1 22 60 12 325558.57103 50 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 27188476.91466 384 +P35415 Paramyosin, long form 75.2 85 589 0 18132057.99231 434 +P35416 Paramyosin, short form 62.19 47 347 0 1269169.23377 49 +P35421 Phosphoribosylformylglycinamidine synthase 0.59 1 2 1 417.11902 1 +P35554 Flightin 46.7 7 14 0 134038.8732 9 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 24979.020360000002 8 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 1608782.49191 57 +P36188 Troponin I 46.1 16 73 0 2233712.81507 66 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 514181.4774 13 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 589.2914 1 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 608310.89467 24 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 3605.486 1 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 3259410.14688 100 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 199645.4024 7 +P37236 Frequenin-1 56.15 9 52 0 145286.4312 8 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 1633.0458 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 282426.82479 17 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 1642468.87296 47 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 1537640.96114 52 +P39736 Puff-specific protein Bx42 12.61 6 12 0 13885.88126 7 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 158280.9271 4 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 171594.85199 14 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 33676.7409 4 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 316309.66322 23 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 17472.33033 8 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 281943.32365 24 +P40427 Homeobox protein extradenticle 3.72 1 4 0 3828.2108000000003 2 +P40792 Ras-related protein Rac1 22.4 4 22 0 112296.50802 19 +P40793 Cdc42 homolog 27.75 5 16 0 134453.1667 10 +P40796 La protein homolog 30.26 11 26 10 135618.97374 14 +P40797 Protein peanut 12.62 7 32 6 145866.4113 25 +P40945 ADP ribosylation factor 4 30.0 4 17 0 2339.05 1 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 428766.42154999997 28 +P41043 Glutathione S-transferase S1 75.9 13 61 0 5424880.51656 47 +P41044 Calbindin-32 75.48 25 116 0 3998088.04974 81 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 142754.37992 23 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 188497.18819 14 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 179741.56285 18 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 1170158.86995 52 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 994379.66472 39 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 447918.15791 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 97188.17044 13 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 236948.32364000002 24 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 6433.75473 2 +P42207 Septin-1 12.74 5 19 4 24506.38864 5 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 2737422.06575 27 +P42325 Neurocalcin homolog 66.32 14 25 14 765848.79333 22 +P42787 Carboxypeptidase D 5.26 8 12 0 47516.040199999996 10 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 82653.62568 10 +P45437 Coatomer subunit beta 7.57 5 10 5 32198.6185 8 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 5123227.38348 92 +P45888 Actin-related protein 2 12.53 5 9 5 31839.35744 6 +P45889 Actin-related protein 1 24.47 13 20 13 355049.99334 18 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 18526.7 1 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 166686.1278 11 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 533514.8213000001 27 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 67030.33777 9 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 502652.67146 71 +P46824 Kinesin light chain 41.34 24 66 0 736646.28435 56 +P47947 Troponin C, isoform 1 20.78 3 33 0 1436152.29916 29 +P47948 Troponin C, isoform 2 27.74 4 7 0 363.64838 1 +P47949 Troponin C, isoform 3 51.61 7 20 0 748936.421 20 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 651919.3407299999 29 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 421548.36838 17 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 359821.61544 19 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 2383562.0616 26 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 100302.10800000001 3 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 1264.12883 2 +P48554 Ras-related protein Rac2 26.56 5 20 0 9921.8449 4 +P48555 Ras-related protein Ral-a 43.28 8 20 1 312246.40796000004 18 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 38727.49124 4 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1073383.65136 52 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 134643.55958 17 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 746114.58207 50 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 968817.11638 86 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 52709.50819 14 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 484146.35043 43 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 582341.09861 57 +P48607 Protein spaetzle 4.29 1 2 0 3687.163 1 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 27840.1538 5 +P48610 Arginine kinase 1 75.28 38 429 0 24678228.67313 341 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 454148.32814 20 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 645220.71299 46 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 40585.53549 12 +P49028 Protein mago nashi 46.26 6 12 6 228596.2807 8 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 55786.15487 9 +P49455 Tropomyosin-1, isoforms 33/34 42.08 34 310 1 765.2443 1 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 192037.34405 8 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 4218.07314 2 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 21322.40284 6 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 816.431 2 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 4791.6815 2 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 9292.29595 4 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 732582.4702 27 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 104511.02270999999 14 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 13592.32657 6 +P51406 Bystin 5.96 3 4 3 970.31491 2 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 64789.6538 9 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 22463.97796 7 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 286195.65385 25 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 19350.46456 6 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 974.5926 2 +P53034 Replication factor C subunit 2 16.31 6 9 6 26954.832990000003 9 +P53501 Actin-57B 77.13 31 817 3 5627861.84607 95 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 5482.7405 3 +P53777 Muscle LIM protein 1 56.52 5 52 0 357490.44173 32 +P53997 Protein SET 11.52 3 3 3 52785.2093 3 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 132494.4883 6 +P54191 General odorant-binding protein 69a 13.51 2 10 2 87246.5157 10 +P54192 General odorant-binding protein 19d 71.33 11 165 11 13235956.74942 150 +P54193 General odorant-binding protein 83a 42.86 7 24 0 664521.47034 23 +P54195 General odorant-binding protein 28a 26.57 4 24 4 128672.76697 20 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 3952.4996 3 +P54352 Ethanolamine kinase 15.25 7 8 5 40089.96125 7 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 307311.8893 11 +P54357 Myosin-2 essential light chain 89.12 10 58 1 851202.1705199999 48 +P54359 Septin-2 8.83 4 13 1 31247.3377 9 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 630.72156 1 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 931315.95133 71 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 4380.3745 2 +P54399 Protein disulfide-isomerase 67.14 31 156 0 5750804.1658 135 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 8190121.277 153 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 93754.52500000001 8 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 119573.46775 21 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 319466.6374 11 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 1932187.37158 72 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 695310.67525 27 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 798653.11635 52 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 3995.9793799999998 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 67059.79367 10 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 389152.86072 12 +P61849 Dromyosuppressin 28.0 2 2 0 91461.106 2 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 8449881.8616 120 +P61855 Adipokinetic hormone 24.05 1 3 1 31638.0034 3 +P61857 Tubulin beta-2 chain 42.38 15 197 1 2238021.193 3 +P62152 Calmodulin 98.66 18 386 0 16622955.2486 296 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 999994.55063 26 +P81829 Leucokinin 11.88 2 3 2 1844.52476 2 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 2061691.93613 59 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 940664.25113 38 +P82804 Partner of Y14 and mago 7.73 1 2 1 565.26306 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 784902.66385 18 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 29640.88239 10 +P83967 Actin, indirect flight muscle 68.88 28 754 2 286615.825 3 +P84029 Cytochrome c-2 72.22 13 152 0 12451804.90722 130 +P84040 Histone H4 57.28 7 79 0 2499412.63123 64 +P84051 Histone H2A 37.1 7 32 0 876490.7377 11 +P84345 ATP synthase protein 8 18.87 1 1 1 41312.44 1 +P91664 Protein max 14.29 3 4 0 16040.096 4 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 7201.2886 4 +P91891 Protein Mo25 24.78 10 27 0 345324.38952 24 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 74056.88573 15 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 213936.94561 30 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 2196952.83552 114 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 1499914.9800200001 43 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 580024.02716 34 +P92029 DnaJ-like protein 60 3.69 1 2 0 532.5563 1 +P92177 14-3-3 protein epsilon 77.86 25 246 23 10220825.18797 150 +P92204 Negative elongation factor E 9.64 3 7 3 21133.2492 5 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 5733.1069 2 +P98081 Protein disabled 4.99 10 17 0 14563.25912 11 +Q00174 Laminin subunit alpha 17.05 68 162 68 1750677.906 133 +Q00963 Spectrin beta chain 23.88 59 161 1 1728.4315 1 +Q01603 Peroxidase 7.68 5 10 0 70933.9852 8 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 8325194.9021 184 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 22704.36965 7 +Q01819 Connectin 3.52 3 4 0 29337.1603 2 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 41439.593 2 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 174733.09746 27 +Q02910 Calphotin 3.94 3 9 3 62149.16278 7 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 30954.178389999997 6 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 667.3151 1 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 236300.85391 24 +Q03427 Lamin-C 55.88 41 164 3 1819508.85278 118 +Q04047 Protein no-on-transient A 21.86 12 30 0 78706.84485 17 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 101523.6497 20 +Q04691 Fat-body protein 1 28.38 28 55 0 244079.13908 49 +Q05783 High mobility group protein D 24.11 3 11 0 44359.55606 8 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 21611576.96983 461 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 18177.488 2 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 2284934.28536 90 +Q06943 High mobility group protein Z 31.53 4 12 0 84960.2055 6 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 11378.85925 7 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 280617.6842 15 +Q07171 Gelsolin 24.44 18 56 0 563692.93015 48 +Q07327 Protein ROP 24.79 15 61 0 176338.93583 44 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 336582.11811000004 20 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 7645.20269 5 +Q08473 RNA-binding protein squid 38.08 8 17 0 463736.7365 15 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 20124.93442 5 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 15149.18977 4 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 40548.58666 7 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 12761.50166 6 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 112043.2907 19 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 2286.40963 2 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 7596.13544 4 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 146408.76515 18 +Q11002 Calpain-A 3.38 3 4 0 7121.2832 3 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 2309728.0566000002 58 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 2924824.9612499997 72 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 2585697.90813 79 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 3074728.12772 108 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 1180843.06429 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 2916802.72065 93 +Q24050 Elongator complex protein 5 26.34 6 9 6 29538.6311 7 +Q24114 Division abnormally delayed protein 9.11 6 13 0 189858.02447 13 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 181759.18105 12 +Q24134 Negative elongation factor D 2.42 2 2 0 14703.536 1 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 22462.525 1 +Q24185 Protein hook 24.45 18 32 18 223526.5707 26 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 652527.40156 28 +Q24207 Protein boule 21.93 4 8 0 33111.7729 5 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 106689.62728 18 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 16888.68306 6 +Q24211 Protein stoned-A 45.41 30 66 0 1062074.3366699999 55 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 487254.73209 25 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 26292.212639999998 7 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 11534.46187 7 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 8303858.42328 140 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 240193.86044 26 +Q24292 Protein dachsous 1.48 5 5 0 3544.22105 4 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 104381.27100000001 2 +Q24298 DE-cadherin 12.94 19 36 19 207307.4016 32 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 33147.438980000006 5 +Q24318 Transcription factor Dp 18.2 7 10 1 15480.84485 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 7118.6753 2 +Q24322 Semaphorin-1A 5.78 5 6 0 890.4767 1 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 41859.64288 7 +Q24372 Lachesin 10.03 5 9 5 25743.6201 5 +Q24388 Larval serum protein 2 9.56 7 10 0 22953.115980000002 8 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 1136059.10274 85 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 3218300.57041 37 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 7444481.93832 165 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 96768.41837 30 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 72425.03684999999 11 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 18736.5699 5 +Q24509 Syntaxin-5 8.14 4 5 0 6742.946 2 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 61703.152109999995 17 +Q24524 Protein singed 5.66 3 5 0 5822.0164 2 +Q24537 High mobility group protein DSP1 12.21 5 19 0 101821.1262 15 +Q24547 Syntaxin-1A 39.18 13 60 0 1574344.5902 54 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 9503601.9467 241 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 32265.86259 6 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 50223.18597 13 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 783048.10877 42 +Q26377 Pro-corazonin 20.13 3 12 3 44608.16865 5 +Q26416 Adult cuticle protein 1 20.0 1 2 1 84670.8 1 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 41649.41804 14 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 237413.3037 11 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 27792.525050000004 6 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 460519.88384 42 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 826258.03817 26 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 1119111.68409 34 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 103236.06210000001 8 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 72757.14683 21 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 1850.81489 3 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 45821.69951 9 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 67352.0704 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 9284.7122 4 +Q3KN41 Neurexin 1 4.46 8 11 0 20301.8249 7 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 11609.1168 5 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 37279.75 1 +Q4V645 Trissin 13.89 2 4 2 11475.46215 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 11711.616750000001 4 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 38046.6555 4 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 8140.5191 5 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 185128.3639 14 +Q6NN40 Alpha N-terminal protein methyltransferase 1 7.61 2 2 0 798.64246 1 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 7530.8352 3 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 8361.40947 4 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 70329.8273 6 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 11905.5748 2 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 187813.8125 9 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 331103.2052 11 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 18673.35998 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 104665.22149000001 13 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 584579.5558 29 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 2434.3972 1 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 23431.10291 8 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 30888.20886 6 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 107848.88470000001 11 +Q7JXF7 Protein seele 23.28 4 11 4 149098.4465 9 +Q7JYV2 Synaptogyrin 7.88 1 1 1 46974.0 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 7077.84476 4 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 122554.78297 23 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 173285.859 4 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 4109.837680000001 3 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 26515.36403 7 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 44302.53543 5 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 529136.31385 40 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 12282.601400000001 2 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 60012.9188 10 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 68866.84635 20 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 11456.33223 7 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 206067.9373 20 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 32431.34268 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 3261544.40192 62 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 81747.97946 13 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 254260.5558 18 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 447529.7791 40 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 4346.60965 3 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 366753.26509 44 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 35531.85854 7 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 95681.16907 10 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 50973.86877 15 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 81291.83262999999 9 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 6927177.88955 51 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 2724.3149000000003 2 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 118468.5457 15 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 115015.0863 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 9153.8351 4 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 24975.446210000002 7 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 1930663.93328 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 985.02234 1 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 38261.52875 8 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 84944.85816 16 +Q868Z9 Papilin 20.36 51 134 51 616117.63468 98 +Q86B87 Modifier of mdg4 7.54 5 9 0 80772.66847 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 26173.24581 6 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 11287.5787 3 +Q86NP2 Negative elongation factor A 8.87 10 18 0 72687.16874 14 +Q86P48 AT-rich binding protein 8.76 3 6 3 1863.59647 3 +Q86S05 Protein lingerer 2.69 3 7 0 9195.47688 3 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 23055.60701 11 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 452027.85000000003 27 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 38645.28767 13 +Q8IN41 Protein Turandot X 16.2 2 4 2 7981.8818 3 +Q8IN43 Protein Turandot C 48.84 5 12 5 86857.56475 8 +Q8IN44 Protein Turandot A 52.71 7 33 7 472806.40648 24 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 54921.11852 13 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 10846.89245 3 +Q8IPM8 Complexin 65.49 10 81 0 23662.96417 5 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 44779.35903 15 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 2203.9854 1 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 13470.1862 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 59771.2022 4 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 156142.1015 15 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 45462.118 6 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 432221.02925 20 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 25585.452599999997 4 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 19871.9964 4 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 16510.014 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 1819.6885 1 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 90208.9384 12 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 958603.82816 33 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 151526.40336999999 16 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 831.3102 1 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 27852.66788 6 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 2288.1499400000002 5 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 38136.3156 3 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 138564.75254000002 12 +Q8MSS1 Protein lava lamp 23.79 65 113 0 243087.08441 78 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 6469.49696 3 +Q8MSV2 Protein alan shepard 8.98 7 17 7 106503.46126 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 401.76025 1 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 3892.8719 3 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 32413.73619 10 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 567071.5517000001 24 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 61825.19334 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 175522.6319 15 +Q8SY33 Protein Gawky 8.6 11 32 11 92020.97348 25 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 3008305.97598 60 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 410429.8901 12 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 7130.35066 3 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 5136.991 1 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 1887.0692 1 +Q8SZ63 Golgin-84 10.27 6 8 6 14594.62357 4 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 250994.00263 11 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 7689.174300000001 3 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 283848.21616 30 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 549137.29137 38 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 824.9264 1 +Q8T390 Endophilin-A 53.66 19 86 0 3132368.2966899998 74 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 109645.4565 8 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 383733.94809 14 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 151222.4409 11 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 88343.68393 15 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 4848.92232 6 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 298190.509 27 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 9820.534899999999 2 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 2654694.8539899997 106 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 5025342.1925 81 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 5444176.71051 125 +Q94517 Histone deacetylase HDAC1 4.61 1 1 1 515.7602 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 644876.80704 20 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 803461.32874 25 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 8168398.74666 78 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 449572.21809 35 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 28940.711900000002 3 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 560681.64334 27 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 15126.566350000001 5 +Q94547 Regulator of gene activity 11.97 7 14 0 28812.8521 8 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 35430.2268 5 +Q94901 RNA-binding protein lark 48.01 19 52 19 177107.64998 34 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 11293.90987 4 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 33234.2632 7 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 21889443.1533 336 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 835.38525 1 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 58851.80898 7 +Q95029 Cathepsin L1 35.58 15 83 2 1756426.26255 66 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 366275.69795 21 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 44311.8577 2 +Q95RA9 GILT-like protein 1 30.8 7 22 7 904328.2398 18 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 2794.2382 2 +Q95RI5 Failed axon connections 59.09 26 146 0 4399032.33478 128 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 3141.0977 1 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 48300.52643 8 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 57344.06455 15 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 9415.63616 5 +Q95T12 Calcium channel flower 21.13 4 8 4 16323.668189999999 6 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 10798.56815 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 8107.025100000001 4 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 39122.85565 12 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 8765.4094 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 209759.00455 18 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 37903.02782 10 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 39275.126200000006 6 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 8620.446 3 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 2526.728 2 +Q967D7 Protein turtle 4.18 7 14 0 52511.998680000004 10 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 118616.2391 23 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 12055.4607 7 +Q9GQQ0 Protein spinster 1.98 1 7 1 17512.267050000002 5 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 2003578.79622 67 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 393.15826 1 +Q9I7D3 Caprin homolog 9.37 8 18 0 22014.60366 9 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 36587.876449999996 6 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 32774.678 2 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 10444.8614 3 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 8692.7792 3 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 209052.80217 32 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 6522.657270000001 6 +Q9I7U4 Titin 2.4 43 56 0 68696.35747 36 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 13016.237 5 +Q9NB04 Patj homolog 25.6 17 47 0 383807.87649 39 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 5530.35978 4 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 6500.3695 4 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 573.1266 1 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 25450.4075 7 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 11987.47645 5 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 39343.8016 11 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 12676.1485 2 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 10515.9248 2 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 1002228.68411 57 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 26190.944 2 +Q9TVM2 Exportin-1 1.88 2 2 0 5296.3013 1 +Q9TVP3 J domain-containing protein 59.49 14 117 14 4890381.40545 96 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 132788.07312 14 +Q9U4G1 Protein borderless 16.97 10 26 10 281207.68719 21 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 53046.764599999995 10 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 63920.82477 13 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 639393.32076 16 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 5007.2563 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 86758.7271 7 +Q9U915 Adenylate kinase 2 75.0 21 56 21 1377453.79905 50 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 35693.166 2 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 119435.27123 14 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 84109.13894 13 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 34274.243 8 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 11491.9925 3 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 949.39856 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 40405.5701 8 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 781408.7858 30 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 13046.45677 7 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 1045064.85101 33 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 19154.7585 3 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 170977.76641 16 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 117732.30765999999 16 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 46165.0206 8 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 1236376.47185 53 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 42883.92371 8 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 128529.29224 30 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 16725.00501 5 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 120248.34227 20 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 8747931.336959999 113 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 28575.66485 10 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 17640.035499999998 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 4540.7602 2 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 60301.59599 11 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 17743.58395 7 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 701835.16968 31 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 28894.3221 7 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 92691.74486 12 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 191058.76522 8 +Q9V3Z2 Serine protease 7 13.55 5 15 4 34882.31354 11 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 33220.39245 16 +Q9V427 Innexin inx2 17.17 6 10 0 69355.8082 10 +Q9V429 Thioredoxin-2 66.98 6 56 6 2995803.95094 52 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 136174.47639999999 16 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 148406.57613 22 +Q9V447 Krueppel homolog 2 22.83 6 13 0 21179.3661 10 +Q9V496 Apolipophorins 33.18 114 349 0 5970427.24728 291 +Q9V498 Calsyntenin-1 1.74 2 2 0 988.79358 2 +Q9V4A7 Plexin-B 1.46 3 4 0 4343.5509 2 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 2502.1606 1 +Q9V4C8 Host cell factor 7.33 11 19 11 79762.51571 15 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 7085.6665 1 +Q9V4N3 Cytochrome b5 47.76 6 36 6 601213.99894 28 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 42913.2592 8 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 34133.52052 6 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 3758.0108499999997 2 +Q9V521 Phenoloxidase 2 15.35 11 21 10 56388.56028 17 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 248218.69496000002 15 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 1310.7895800000001 2 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 5468.3521 2 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 171736.4871 14 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 699003.57125 23 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 706124.6007899999 25 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 18350.861 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 3087.8161 2 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 64165.61887 10 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 4659.7604200000005 3 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 12086.9817 5 +Q9V6G5 Tafazzin 6.08 3 8 1 19040.05716 8 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 1427268.82413 59 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 28976.35705 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 21414.34167 4 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 24086.11565 6 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 13490.08061 6 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 972845.13386 37 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 2130045.29742 90 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 283498.3398 33 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 34396.725 5 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 31039.42291 8 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 3856.996 2 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 985468.8518 29 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 1996768.5541100001 132 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 561709.18898 19 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 49476.9355 4 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 13718.437569999998 6 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 14051.62005 4 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 13814.40435 8 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 9673.655 1 +Q9V9N4 Transcription factor Clamp 3.21 2 3 2 504.06433 1 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 3201.01723 3 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 675154.7072 34 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 13148.4007 5 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 147089.97147 15 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 14046.20032 5 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 4853.81586 3 +Q9VA37 Protein dj-1beta 84.49 13 53 13 1565294.85628 37 +Q9VA70 Neutral ceramidase 2.41 2 3 0 5244.3784 2 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 1748637.76514 48 +Q9VAF5 Cadherin-99C 4.4 9 18 9 42138.14439 14 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 2260080.10302 29 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 384043.67178000003 16 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 2852565.20756 42 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 34822.40603 5 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 444068.5646 45 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 23414.48043 9 +Q9VAW5 La-related protein 1 3.41 5 8 0 11089.94227 6 +Q9VAY3 Mitoferrin 7.65 3 7 3 11950.397140000001 7 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 18144.35502 4 +Q9VB68 Serine protease grass 12.2 5 13 5 26869.959 8 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 25329.7982 5 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 4687.31 1 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 11454.88715 6 +Q9VBV3 Protein takeout 9.64 3 11 0 102387.57042 11 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 71795.25901000001 11 +Q9VBZ5 YTH domain-containing family protein 5.86 4 4 4 531.9559 1 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 6250.141 1 +Q9VC57 Atlastin 4.62 3 6 0 24596.11375 5 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 7048.5293 3 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 41430.78753 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 90404.62306 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 2570.9973 1 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 3089.0333 2 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 61115.372540000004 13 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 141502.07017 21 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 2469.2288 2 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 130051.21916000001 19 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 77781.54326 10 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 6791.8438 1 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 18719.15852 8 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 1355.46173 2 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 73254.73165 11 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 56748.43919 8 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 10718.08584 5 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 3183.82296 3 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 49392.05682 7 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 53017.78881 11 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 11050.25172 4 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 32148.27191 5 +Q9VDL1 Esterase CG5412 15.41 4 11 4 34453.64437 8 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 17156.475609999998 7 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 42598.98745 13 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 6462.83905 2 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 10026.5427 3 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 5.44 1 2 0 465.18106 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 6767.703280000001 3 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 911.57385 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 2737848.09461 36 +Q9VER6 Modular serine protease 8.76 5 10 5 12350.87416 6 +Q9VET0 Neuropeptide F 30.39 4 12 0 129991.68258 11 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 795858.2883 58 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 36008.94175 6 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 335779.89886 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 66028.1147 12 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 1928864.66187 51 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 234088.64737999998 23 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 3581.42 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 23417.7264 4 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 195535.7369 25 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 15078.24783 7 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 3088.80317 2 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 5808.1129 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 6278.06754 3 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 37724.256499999996 6 +Q9VFM9 Twinfilin 22.74 7 13 7 38984.54135 10 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 17691.92915 5 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 6095.771 2 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 29118.4484 6 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 104646.71424 14 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 21847.1395 3 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 3228.72898 4 +Q9VG55 Protein hugin 5.76 1 3 1 623.4001 1 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 138192.7055 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 1265.9220599999999 2 +Q9VG76 Myc-binding protein 19.34 4 6 4 62074.232560000004 6 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 6360.8527 2 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 530251.3035 14 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 73250.2224 4 +Q9VGG5 Cadherin-87A 5.72 11 18 11 43613.73214 11 +Q9VGP4 Importin-9 2.85 3 3 3 3034.8681500000002 2 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 117575.78889 21 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 9438.138 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 13714.4254 4 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 1590.03776 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 1106801.05113 31 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 206997.90257 19 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 16823.4574 2 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 96705.51905999999 9 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 9835.568 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 58773.901000000005 8 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 105224.37049999999 5 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 936320.3581000001 17 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 2530.37096 3 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 7035.6345 2 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 35946.248 6 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 23038.6939 4 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 171980.89448 13 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 17892.61148 8 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 133316.4382 8 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 22689.547599999998 4 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 59323.66741 21 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 816.89966 2 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 330784.34836 45 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 1310669.84149 37 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 9477.4114 2 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 565.39 1 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 108522.17474999999 12 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 6108.6082 2 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 4234.8926 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 33059.0918 7 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 164317.3304 13 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 8228.412 1 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 240760.43365 14 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 351205.419 17 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 31024.273779999996 6 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 28747.82075 9 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 14372.12308 5 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 136811.88976 12 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 10383.1966 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 110909.7917 17 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 33547.26836 7 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 123974.10764 20 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 170830.5357 15 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 10023.174869999999 3 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 2394.4204 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 1862.2272 1 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 1912.9237 1 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 17639.02432 4 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 147077.3921 11 +Q9VJL6 Glia maturation factor 5.8 1 3 1 1164.18396 2 +Q9VJQ5 Protein Dr1 8.2 2 4 2 3964.4939999999997 2 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 114978.82656 12 +Q9VJY9 Protein Loquacious 11.61 5 9 0 20317.0295 5 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 4687.7518 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 169390.59832999998 23 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 1706.1443 1 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 634.1985 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 59263.00833 14 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 9199.88736 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 13301.633699999998 3 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 7991.90905 3 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 7700.2516 2 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 23137.6524 3 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 2553.61674 2 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 796607.8833 32 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 955860.01931 71 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 21048.281000000003 2 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 29906.00175 6 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 65091.66588 11 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 151577.87874000001 15 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 117239.4955 5 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 196084.6507 6 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 7230.92165 3 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 573286.1947700001 24 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 27341.74608 3 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 97567.178 5 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 2050.4128 1 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 4304.35817 3 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 15081.58172 5 +Q9VM71 5'-3' exoribonuclease 2 homolog 0.88 1 1 1 557.64166 1 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 11277.50443 8 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 16173.23755 7 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 129519.71085 9 +Q9VMD9 Tiggrin 12.16 31 55 0 127588.89703 37 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 680.7639 1 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 157693.19797 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 3266.49067 2 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 35636.8934 3 +Q9VMR8 Protein Turandot M 30.53 3 5 0 126956.9822 5 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 58395.50635 17 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 32616.25203 9 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 10851.847600000001 8 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 322690.7367 21 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 2042.3462 1 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 2386.078 2 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 9210.07735 6 +Q9VMY9 Guanine deaminase 8.93 4 6 4 15243.804160000002 4 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 3402.8747 2 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 62298.5609 10 +Q9VN14 Contactin 17.77 24 48 24 249955.33687 31 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 5726.06299 4 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 22361.39668 9 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 76456.75502 8 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 331343.42442 34 +Q9VN93 Cathepsin F 23.62 16 36 13 680170.51098 29 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 104487.47978000001 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 413.85468 1 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 191725.872 4 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 179593.40013000002 13 +Q9VNE2 Protein krasavietz 22.04 12 30 12 203013.46526 22 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 100104.5215 9 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 8736.01086 3 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 15000.20542 5 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 34813.34139 13 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 44094.265 2 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 11993.965800000002 3 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 28244.2776 5 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 14908.679800000002 3 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 2402465.57339 40 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 559746.8092 20 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 35987.757659999996 9 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 13728.43394 6 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 39484.37826 5 +Q9VQC4 Glycerate kinase 13.14 9 14 0 83792.1051 13 +Q9VQF7 Bacchus 38.16 4 21 4 368253.3838 18 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 230153.70777 22 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 242516.40497 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 20750.4872 5 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 136221.00566 19 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 668.3336 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 1399.4822 2 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 11294.5075 2 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 15070.39816 3 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 63268.33459 11 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 589.6276 1 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 80126.095 4 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 9841.54182 6 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 6630.86807 5 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 33635.15545 4 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 40765.1555 5 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 211914.54612 13 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 25064.714200000002 3 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 1271983.48699 72 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 61300.9678 9 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 1013.7644 1 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 20938.33371 7 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 16973.74559 6 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 1968917.08364 51 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 4765.855 1 +Q9VSS1 Protein Pixie 5.56 4 4 4 19185.745799999997 3 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 32488.73002 10 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 23678.9142 7 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 635562.29275 46 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 104128.0736 18 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 934.81085 1 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 12343.426 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 17170.078999999998 2 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 143708.7358 14 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 34561.92952 5 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 105064.02405 7 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 8381.0081 2 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 17726.150999999998 3 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 78546.16799999999 9 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 628102.43264 30 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 47090.8707 10 +Q9VTZ5 Transferrin 2 17.95 16 27 16 104393.57046 18 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 64540.3088 7 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 119682.80924 2 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 5215241.06541 82 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 172785.74738000002 29 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 21538.161939999998 5 +Q9VU84 Drebrin-like protein 12.99 8 24 8 186539.05518 18 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 39153.55851 9 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 16290.567850000001 4 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 722734.80619 28 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 39789.685450000004 10 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 241615.93897000002 32 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 4193.7197 1 +Q9VV36 Retinin 31.94 8 155 8 2923629.75264 92 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 621295.60304 45 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 261670.34079 29 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 9066.989300000001 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 8974.865 4 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 387522.20142 31 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 32738.065820000003 6 +Q9VVE2 Protein rogdi 26.49 7 15 7 183818.75950000001 10 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 30875.14934 6 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 7783.39962 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 584510.77572 11 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 12495.88753 5 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 326362.69175 19 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 12701.04634 3 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 26238.14754 4 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 14028.7019 5 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 32454.40717 7 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 5903.40903 5 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 263975.77355 15 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 17089.63396 7 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 108711.77274 12 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 171120.6036 22 +Q9VWA1 Clathrin light chain 41.55 12 58 0 1464143.2249999999 50 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 19357.26565 7 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 16415.8188 3 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 123056.4614 14 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 12568462.87343 159 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 593444.82323 19 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 46248.16564 16 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 9285.66416 4 +Q9VWU1 Serine protease persephone 8.88 4 6 4 36042.334800000004 5 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 6307.0232 2 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 15960.657200000001 3 +Q9VWX8 Frequenin-2 37.43 8 52 3 843152.52196 38 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 9747.4157 2 +Q9VX10 Sulfiredoxin 11.73 2 4 0 9601.5163 3 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 259794.38559999998 15 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 467580.64596000005 34 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 14757.3603 2 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 102735.06225 9 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 14799.07297 6 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 8527.482 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 669575.39595 61 +Q9VXG4 Annexin B11 23.68 14 41 14 391914.36661 37 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 93851.49423 16 +Q9VXK0 Protein NipSnap 9.89 3 16 0 104475.78566000001 13 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 78195.77467 13 +Q9VXN2 Protein stunted 81.97 6 16 6 353238.90280000004 10 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 28416.1635 8 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 51837.72896 5 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 57491.39768 7 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 530661.90635 19 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 19308.0956 6 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 4238.19532 4 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 118907.971 6 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 18416.3317 3 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 5980.0809 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 314142.9158 8 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 6411.0134 2 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 4189.358 2 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 14223.313 5 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 69830.75761 12 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 13374.744499999999 2 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 3990.0161799999996 3 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 34054.797099999996 6 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 21612.857200000002 5 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 521335.71314 32 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 13739.9743 3 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 30400.064 1 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 160224.711 16 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 65717.74263000001 10 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 602240.52465 28 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 28826.1888 4 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 320398.62690000003 22 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 278316.0515 16 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 37478.673259999996 8 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 12999.04255 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 5474.95033 3 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 928.02826 1 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 14702.42514 3 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 4645.01968 3 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 8880.9578 3 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 56362.3321 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 118193.29797 10 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 254493.86525 28 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 2498370.03576 64 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 173264.80730000001 16 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 12512.6958 2 +Q9W032 Protein ecdysoneless 5.12 4 4 4 982.7069700000001 2 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 752335.17833 46 +Q9W074 Protein HBS1 4.33 3 4 3 4360.14117 3 +Q9W0A0 Protein draper 9.6 8 20 0 29207.97345 9 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 878372.38207 28 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 6436.9974999999995 2 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 13263.210640000001 9 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 36049.85003 9 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 1988.7687 1 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 167833.07176999998 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 48190.51766 16 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 114625.03532 11 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 1591.1096 3 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 1677233.79587 50 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 56075.71817 7 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 640.189 1 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 16012668.41247 92 +Q9W1G0 Probable transaldolase 48.04 12 51 12 1584077.10784 45 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 24576.648 3 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 43819.254400000005 5 +Q9W1K5 Sestrin homolog 6.84 4 7 0 18373.187400000003 6 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 42142.6886 8 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 6978.39345 2 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 56109.30484 11 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 49801.1228 9 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 103774.14356 11 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 1502688.8792700002 54 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 58206.616429999995 8 +Q9W266 Protein windpipe 20.68 10 31 10 178685.57251 24 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 389755.82256 17 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 33743.956269999995 6 +Q9W2E7 Protein Rae1 11.56 4 11 4 245371.38178999998 10 +Q9W2M2 Trehalase 29.36 16 47 0 297176.52835 36 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 12902.4535 2 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 2018.6482 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 38960.68676 9 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 12755.075350000001 6 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 2251759.3906 69 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 378438.76262 20 +Q9W358 Chaperone Ric-8 10.65 7 8 0 8619.2975 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 1895333.4422 65 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 19919.98444 7 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 287377.181 9 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 43127.2322 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 12902.46163 6 +Q9W3E2 Protein PIP82 19.83 23 56 23 122544.61304 35 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 21399.33607 11 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 18459.108539999997 6 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 32872.7766 6 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 87619.5997 5 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 77258.3227 5 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 1787.5378 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 7437.204030000001 2 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.84 2 2 2 294.9593 1 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 11672205.66746 171 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 22588.039299999997 4 +Q9W436 Neprilysin-1 4.24 4 4 4 14047.815700000001 4 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 35569.00993 7 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 78801.7878 12 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 749995.5434 23 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 95242.90235 17 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 27698.37524 7 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 150775.59984 16 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 41806.8085 4 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 928333.80113 153 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 18073.396 2 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 104375.59156 21 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 129843.12950000001 9 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 3476.50602 3 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 89050.1331 13 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 511.71915 1 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 508778.91713 53 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 31640.057050000003 3 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 580.82935 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 353181.998 3 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 403457.83794 27 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 30845.271099999998 7 +Q9XZ14 Protein gone early 4.44 4 4 1 3372.4793600000003 2 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 48936.7872 5 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 258128.0684 21 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 250314.29147 19 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 261334.50024999998 27 +Q9XZL8 Protein sarah 34.25 7 12 0 98518.88435000001 9 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 1715.7698 1 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 3864.91037 5 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 23312.31946 5 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 558071.97935 22 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 175481.43673999998 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 1133532.6932 16 +X2JAU8 Protein nervous wreck 29.3 30 114 30 1878340.69098 101 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 10897.33382 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 17059.89775 3 +A0A0B4JCR9 Uncharacterized protein, isoform D 5.04 2 2 0 523.84875 1 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 93259.16791 21 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 220467.67859999998 6 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 30680.150039999997 11 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 2664.7144 2 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 1664796.05704 112 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 6714.83717 5 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 15468.67152 5 +A0A0B4JD47 Missing-in-metastasis, isoform E 4.61 4 4 0 436.97046 1 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 3836.969 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 116092.42995 22 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 45801.4354 9 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 15669.297180000001 8 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 198414.11759 34 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 4062227.61828 149 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 16661.04016 5 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 18231.520800000002 3 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 186200.52886 34 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 37817.74045 7 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 13664.22816 5 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 45233.21258 11 +A0A0B4K709 Uncharacterized protein, isoform E 2.78 2 3 0 647.94556 1 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 45200.08464 13 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 4102.664 1 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 66943.22847 11 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 3436.4605 3 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 3398979.44219 128 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 102891.71489999999 20 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 23451.652500000004 4 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 12333.99035 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 10165.978299999999 2 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 2914.9512 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 2263562.17876 39 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 27110.035 5 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 590611.64316 46 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 7264.993570000001 6 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 120319.70716 25 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 25924.8548 7 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 17973.39798 8 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 13182.71804 3 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 96754.74790999999 16 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 159394.54275000002 9 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 174351.51266 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 12384.37274 7 +A0A0B4KEJ7 Coronin 17.01 9 17 0 57250.50497 12 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 11768.3375 5 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 1685.2821 1 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 3095.36044 3 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 20117.74 1 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 78634.96896 28 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 627.87915 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 6301.72947 2 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 9913.6326 3 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 97405.93436 13 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 28517.65197 10 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 3894.62894 3 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 786357.80605 37 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 23532.26845 4 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 2148297.08219 77 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 27250.285150000003 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 141698.2258 18 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 364015.3268 14 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 58385.5108 9 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 8448.47585 4 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 42187.96931 9 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 36116.38028 10 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 9591.70203 4 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 5947.49636 4 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 2973.627 1 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 53169.759999999995 7 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 24373.031 7 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 9599.114 3 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 37207.953199999996 7 +A0A0B4KGF7 beta-mannosidase 2.65 3 4 0 391.70444 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 137054.85160999998 18 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 656515.2008 21 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 330920.43448 43 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 20742.038 3 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 1591.4119 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 89801.23275 11 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 455.4249 1 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 24137.24181 10 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 7154.8176 2 +A0A0B4KH34 Annexin 67.9 22 147 2 4736799.59475 120 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 8293.680400000001 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 8159.91035 4 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 140828.89668 20 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 78518.58254 19 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 47854.34173 5 +A0A0B4KHF0 Ferritin 77.97 20 130 1 4813195.51887 97 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 8866699.22058 189 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 110494.3078 7 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 5462.3223 1 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 15877.457629999999 6 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 78127.11538 12 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 108877.58999 19 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 96691.8853 3 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 12666.2108 5 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 32756.6447 2 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 17058.281000000003 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 2.81 1 1 0 764.4848 1 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 933.1131 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 596907.96372 42 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 842596.99865 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 8405.995 1 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 1761.6719 1 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 6281.3673 2 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 3861.5735000000004 2 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 263855.39071999997 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 235568.8855 38 +A0A0B4LF95 glutaminase 7.29 4 9 0 30428.525100000003 7 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 473875.29595 32 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 101163.68827 16 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 37744.59048 8 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 11759.78942 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 2030.45244 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 2022.20172 2 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 65510.4001 14 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 23024.36458 8 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 20991.2022 3 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 27354.52868 8 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 659404.01711 56 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 98825.48120000001 13 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 5662.8835 4 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 291354.22414 28 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 30516.48865 7 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 1551421.06023 50 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 7039.026 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 30804.05374 7 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 387537.57685 48 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 5433.575599999999 2 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 6648.2606 5 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 23949.489700000002 3 +A0A0B4LHL1 Uncharacterized protein, isoform C 1.96 1 2 0 836.7033100000001 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 63069.61155 12 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 2326.2798 1 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 9606.91055 5 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 6869.134099999999 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 2398.4062 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 87042.9515 23 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 7416.9214 1 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 2314.6819 2 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 229393.85124 44 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 5515.29284 4 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 27077.5345 5 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 62032.473900000005 10 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 1923.18113 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 98081.42348 11 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 4598.43526 4 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 8181368.4166 114 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 55246.0668 14 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 55137.570999999996 4 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 5775.3198 3 +A0A1Z1CH25 AT27361p 7.62 4 4 3 3476.9437000000003 2 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 188592.13915 10 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 1125.89166 2 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 4710581.15739 132 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 22567.6049 14 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 40937.95975 13 +A0A4P1SAA7 IP07559p 11.17 2 3 0 20123.8457 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 1922.4016299999998 3 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 225354.31986 45 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 47091.25297 9 +A0A6H2EEJ8 Uncharacterized protein, isoform C 3.44 3 3 0 442.62558 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 11995.3902 2 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 2691.0354 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 4321093.9401899995 303 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 2190.076 1 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 852601.26114 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 9973.4141 3 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 2892.5374 1 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 11778.475 1 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 6749.3983 3 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 1256.3577 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 18244.54086 6 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 3731905.7920399997 296 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 437353.0934 40 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 787902.48374 34 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 184002.47814 21 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 160826.37191 15 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 68055.7258 7 +A1Z6F6 FI18602p1 9.08 8 14 0 108517.78383 12 +A1Z6G9 FI18173p1 9.04 3 5 3 10958.3685 5 +A1Z6H4 RE52822p 6.86 4 9 0 24899.586850000003 6 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 13206.87115 10 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 3445.0056 1 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 75482.58078 11 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 157714.29647 18 +A1Z6R7 FI21445p1 33.57 9 21 9 58409.15938 16 +A1Z6V5 FI01422p 37.15 14 45 14 540519.86641 36 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 228478.8635 9 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 25091.56985 9 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 25003.8318 6 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 1302.1173 2 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 6660.79097 8 +A1Z7B8 GEO08456p1 12.66 2 6 2 33840.8281 5 +A1Z7G2 MIP13653p 13.39 2 8 2 222794.7255 6 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 114361.91455 18 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 15890.25614 4 +A1Z7K6 FI20236p1 5.61 3 7 3 28007.411 7 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 73405.3659 15 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 2499.0165 2 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 42907.77495 8 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 407033.54602 50 +A1Z7V9 FI20020p1 2.74 2 4 1 7735.24495 4 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 16581.371 1 +A1Z7X8 FI02944p 15.34 6 12 6 99186.21844 10 +A1Z803 FI02892p 31.76 12 29 12 213854.2225 22 +A1Z843 Nodal modulator 3 9.17 12 20 12 80993.05155999999 18 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 655590.44087 30 +A1Z871 CAP, isoform B 10.27 19 36 0 63562.8634 5 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 1864669.78583 53 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 12204.4802 4 +A1Z8G7 FI09243p 16.53 2 4 2 3000.16718 2 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 3548138.34669 60 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 45327.3479 4 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 3539.2689 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 2433.4995 2 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 31513.34186 3 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 496153.10384999996 9 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 501778.41124 13 +A1Z933 GEO02273p1 22.09 2 3 2 10476.0744 3 +A1Z934 SD19268p 36.45 11 34 11 224035.94036 27 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 8092.444 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 93041.37108 23 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 26635.01828 7 +A1Z9B5 IP16508p 15.06 3 7 3 60078.60769999999 7 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 2348680.91354 53 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 269235.31814 21 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 78819.93025 32 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 131258.03974 9 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 26138.33456 7 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 304836.53099999996 3 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 12584.68402 5 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 4405.0037 2 +A1ZA23 FI18007p1 26.91 10 31 10 183419.02130999998 28 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 5248.83605 2 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 47937.64891999999 6 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 102015.70939999999 12 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 13626.809799999999 3 +A1ZAH3 FI16515p1 3.28 2 4 0 1563.93032 3 +A1ZAK3 Protein DEK 5.4 3 5 0 10091.4922 3 +A1ZAL1 lysozyme 30.43 5 6 5 58951.0997 4 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 1291.47937 2 +A1ZAU4 RH39096p 50.95 16 45 0 2151194.66904 41 +A1ZB23 IP19117p 16.06 4 12 4 96591.2681 11 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 2535.43734 2 +A1ZB68 FI01423p 33.18 8 25 8 279526.90729 18 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 473904.42962 27 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 7632.4614 1 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 136587.4133 11 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 1240.5819000000001 2 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 916349.1431 35 +A1ZBA5 FI07234p 7.22 2 3 2 22080.1579 3 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 13839.693 3 +A1ZBD8 Mucin-5AC 3.57 5 9 5 2078.4955 4 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 181630.12683 25 +A1ZBK7 Crammer 58.23 4 13 4 191130.48557 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 445.30984 1 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 157525.50885 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 232291.80654 20 +A1ZBU5 GNBP-like 3 27.63 3 9 3 98214.11954 9 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 19805.4045 3 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 933526.42139 35 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 1359.15397 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 227268.10155 40 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 952.7651 1 +A2VEG3 IP16294p 3.06 3 5 0 9121.02194 4 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 34808.24963 8 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 362816.4041 39 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 27305.06392 7 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 228028.51393000002 21 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 1295555.88804 68 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 1203621.4909 114 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 1266743.53442 47 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 48262.592359999995 7 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 23651.43736 7 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 954122.2863 12 +A8DYD1 Combgap, isoform L 13.26 10 20 0 80936.95706 14 +A8DYI6 Prohibitin 66.27 22 89 3 1596565.89462 67 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 171452.29078 23 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 34672.617119999995 14 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 39758.55682 11 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 12062.50619 5 +A8DZ06 Stolid, isoform J 10.24 13 34 0 266931.55975 25 +A8DZ14 FI17828p1 20.1 9 32 3 213714.11003 22 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 59715.68785 8 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 4008.8738 1 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 107799.84846000001 32 +A8E6W0 IP19808p 25.25 5 9 5 37527.90636 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 13264.582170000001 4 +A8JNJ6 Karst, isoform E 1.54 8 8 0 3133.749 2 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 6354.6273 3 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 32728.0091 6 +A8JNP2 arginine kinase 72.53 37 429 2 556104.88066 14 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 32596.6369 4 +A8JNS4 Starvin, isoform E 11.81 7 10 0 16993.7402 7 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 8093.6810000000005 4 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 42632.2005 6 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 31383.49758 9 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 6508.718440000001 2 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 15835.391 5 +A8JQW3 Pinin, isoform B 20.2 7 10 0 44419.6488 8 +A8JR01 Kramer, isoform I 3.4 9 12 0 11495.83047 6 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 50477.5082 6 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 51685.42904 14 +A8JR58 Hadley, isoform B 2.02 1 1 0 2248.091 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 2345979.58706 88 +A8JRH3 FI20012p1 60.08 25 75 1 1812256.0242100002 61 +A8JTM7 Megalin, isoform A 4.53 24 37 24 96634.81655 24 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 43945.1642 9 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 5315.98278 3 +A8JUZ6 MIP03678p 7.28 3 4 0 30498.5674 4 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 11889.43525 6 +A8JV09 Coronin 1.67 2 2 0 3165.0767 1 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 467574.03398 27 +A8WH76 GEO10024p1 51.85 4 15 4 368874.6341 13 +A8Y4V5 FI20903p1 8.21 2 3 2 3161.6420000000003 3 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 26939.77463 4 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 2837108.15657 17 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 2839.1526 1 +B7YZH1 FI20143p1 6.47 4 6 0 6090.9182 4 +B7YZN0 Syndecan 17.81 10 24 0 52389.398369999995 18 +B7YZN4 GH02741p3 49.23 4 6 4 10719.677899999999 6 +B7YZN8 GH02741p1 22.37 2 5 2 26077.273400000002 5 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 41039.1063 12 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 3762845.58491 56 +B7YZV2 Phosphodiesterase 6.31 7 15 0 21145.03669 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 131364.53717999998 23 +B7Z001 Fatty acid synthase 21.46 50 93 0 424533.77944 70 +B7Z002 Kismet, isoform C 0.6 2 2 0 826.1026 1 +B7Z005 Drongo, isoform I 9.14 5 11 0 21577.2604 7 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 1433.84915 2 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 2171.95871 3 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 10101.8613 3 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 3603.0849 3 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 51111.31242 5 +B7Z0C9 GH15104p1 41.05 4 6 4 24854.14216 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 5462414.101650001 133 +B7Z0M0 FI17308p1 18.85 2 3 2 8519.6734 2 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 3936.2171000000003 3 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 71706.25953 15 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 65080.7721 12 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 9596.532150000001 6 +B7Z107 GH09380p1 52.17 5 7 5 25968.460199999998 6 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 5655.40565 3 +C0HDP4 MIP05618p 3.77 2 2 0 7586.9886 2 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 874837.31571 32 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 453186.61497 54 +C9QP70 MIP12608p 15.85 2 3 2 16267.460899999998 3 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 390392.31439 26 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 235180.10216 17 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 18388.99409 8 +D0Z756 MIP14966p 32.93 13 33 0 1264443.39923 28 +D1YSG0 Bent, isoform F 6.65 59 74 0 151590.6896 55 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 89145.21832 11 +D3DMM0 MIP15702p 15.28 8 15 0 74905.55003 12 +D3DMM4 MIP15217p 30.28 24 95 0 975485.58935 78 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 115668.75266 8 +D5SHT6 MIP21537p 4.99 3 4 0 7712.881 3 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 15683.504860000001 3 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 19418.09466 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 203408.15000999998 30 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 59838.81009 11 +E1JGR3 GEO02620p1 24.62 3 5 3 3323.268 2 +E1JGY6 Hulk, isoform F 13.33 23 31 1 355394.19433 27 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 83379.89555 15 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 11551.08 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 988.6678 1 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 357187.7611 68 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 29896.33673 6 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 6816.824 1 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 7457.2554 1 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 31168.9933 8 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 33503.2025 7 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 118370.57953 17 +E1JHP9 Galectin 4.06 2 4 0 5620.4405 3 +E1JHT6 Reticulon-like protein 18.12 11 35 0 560644.44635 28 +E1JHT9 Reticulon-like protein 24.77 6 24 0 4885.8206 2 +E1JI40 Vermiform, isoform I 13.51 7 15 0 123833.51743 14 +E1JI59 Schizo, isoform D 2.87 4 5 0 959.2088000000001 2 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 42628.68945 6 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 14453.3975 3 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 29423.2658 4 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 21584.533 1 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 10456.6066 3 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 8917.40363 5 +E1JIY8 L antigen family member 3 20.72 3 8 3 44809.0656 6 +E1JJ33 Complexin, isoform U 65.73 9 79 1 3730500.18763 72 +E1JJA4 Dynamin 27.41 28 73 0 411609.08791 58 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 1786.3706 1 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 1691.6886 2 +E1JJG5 Phospholipase A2 13.81 3 3 1 3171.83332 2 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 909380.07154 78 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 11921.01 8 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 92311.38057000001 13 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 3793.9932 1 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 363457.72648 53 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 3052.737 1 +E2QD54 Natalisin, isoform D 4.7 3 5 0 4530.1879 4 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 52382.957460000005 7 +E2QD98 Protein PALS1 7.62 16 28 0 144816.63496999998 22 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 27113.7621 13 +E8NH67 Asperous, isoform B 51.14 19 129 0 1683774.81825 95 +F0JAP7 LP18071p 23.14 6 10 0 5459.5201799999995 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 27179.12724 6 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 1502490.23529 116 +H1UUB1 GEO12465p1 55.04 6 25 1 203892.9234 19 +H8F4T3 Regucalcin 32.35 6 11 0 230631.7425 10 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 26050.6035 4 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 3000.5460000000003 3 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 430371.73224 25 +L0MPN7 Asator, isoform H 12.15 13 25 0 66722.68914 16 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 45980.99376 22 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 1649.4609 1 +M9MRX0 Limpet, isoform J 26.49 29 95 0 1297855.94297 77 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 157386.23695 61 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 81702.93122 8 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 33817.056749999996 10 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 30881.79 2 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 667.9331 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 392808.68331 25 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 390878.92471 17 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 910591.45426 47 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 2671.16784 2 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 9590.28716 5 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 61767.40589 9 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 191607.26155 14 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 45198.5892 16 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 127114.3296 18 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 52398.026 13 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 6440.4662 2 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 37661.2362 8 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 10109938.41302 430 +M9NDB5 RNA-binding protein 6, isoform F 15.11 3 6 1 649.0695 1 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 18167.11266 5 +M9NDE0 pantothenate kinase 6.54 3 6 0 10982.28242 5 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 46032.39515 14 +M9NDS9 chitinase 2.56 12 16 0 22255.6458 10 +M9NDX8 Neurabin-1 4.11 8 9 0 14066.0128 4 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 19805.81882 7 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 30954.0181 7 +M9NEF2 Histone deacetylase 4.43 4 4 0 3308.42 1 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 2248.7212 2 +M9NEW0 LD39232p2 43.33 7 15 7 142048.18054 11 +M9NEX3 Cytochrome b5 57.55 6 20 0 825237.9238 15 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 30624.473159999998 6 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 7308.261 3 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 74340.46513 6 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 48989.740040000004 12 +M9NFC0 Troponin I 48.74 15 55 5 249319.2231 11 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 27352.01 2 +M9NFH3 Lasp, isoform D 27.3 8 30 1 12507.071 1 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 112437.71733 19 +M9NH07 Upheld, isoform N 48.73 30 148 0 5859974.31324 133 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 72473.58046 21 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 64833.9495 7 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 4566.343699999999 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 593642.02342 37 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 980.50515 2 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 66257.48 2 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 17628.2595 3 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 1966025.90838 148 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 2586.0361 1 +M9PBM3 Cysteine protease 6.34 2 4 0 18420.1747 2 +M9PBN2 Apolipoprotein D 29.39 7 23 0 447633.87312999996 17 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 122688.46045 19 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 518.1563 1 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 17007.42718 4 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 94497.35614 12 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 263389.99942 23 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 7057.69723 7 +M9PBW9 Rhea, isoform G 5.83 17 26 0 59144.366649999996 17 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 108390.12642 15 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 13492877.95329 141 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 5264.10747 2 +M9PC74 Reticulocalbin-3 17.11 6 19 0 139964.10171000002 17 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 37822.5109 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 13908.0216 3 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 5715.49601 7 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 40802.283899999995 16 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 84452.42596000001 21 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 13758.67846 5 +M9PCT7 Bunched, isoform O 18.75 4 11 1 691.40015 1 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 98716.4173 10 +M9PD73 TEP1-F 20.6 32 69 0 702029.9757 53 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 353577.38662 23 +M9PDB2 Varicose, isoform E 8.51 6 10 0 20784.83182 9 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 209318.75707 25 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 2126.3115 1 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 15330.88375 6 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 516.32605 1 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 11586.488959999999 6 +M9PDU4 Acyl carrier protein 18.23 4 33 2 2633193.93117 30 +M9PDV2 Tetraspanin 6.97 2 3 0 8568.3903 2 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 220102.56347 51 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 191314.17312 13 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 3020937.40709 45 +M9PE32 Fife, isoform D 12.79 17 34 1 79278.29689 25 +M9PE35 RabX6, isoform B 6.76 2 3 0 12376.0608 2 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 7991.0961800000005 5 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 19283.91761 8 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 17443.5488 4 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 8723.19145 3 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 48834.212999999996 5 +M9PEC1 IST1 homolog 16.75 7 17 0 93021.14335 14 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 155396.85746 20 +M9PEG1 Uncharacterized protein 36.6 17 48 17 898828.00309 41 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 1390456.92365 275 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 14863.2182 5 +M9PEL3 Quemao, isoform C 38.04 11 22 0 109706.80145 16 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 49594.0149 10 +M9PET3 Simjang, isoform D 3.57 3 4 0 4369.8216 3 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 2678.63373 2 +M9PF16 Spectrin beta chain 24.44 61 168 3 779959.26612 128 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 308284.37549 30 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 7922.7071000000005 4 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 12998.38537 7 +M9PFH7 Tartan, isoform B 5.99 5 7 0 24796.336180000002 6 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 2052.8552 2 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 32098.463450000003 8 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 5361.90419 3 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 32103.391349999998 4 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 3975.34186 5 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 70355.92940000001 14 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 75144.47666 16 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 64554.86456 9 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 5694547.64485 202 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 6784.89968 4 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 29584.6742 5 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 119900.61525999999 9 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 8179.6762 3 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 97474.97076 23 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 20570.565450000002 7 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 193711.54528000002 29 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 199538.04141 29 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 49716.73725 14 +M9PHX2 Visgun, isoform E 8.78 2 4 1 18164.19674 4 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 3744.4807299999998 4 +M9PI33 Inositol oxygenase 7.27 3 4 0 60766.781 3 +M9PI51 Dual specificity protein phosphatase 15 6.04 3 4 0 326.3187 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 6138.545029999999 2 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 3270.4143400000003 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 11809.5547 2 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 2071.6145 1 +M9PJQ5 Troponin I 47.28 13 65 0 167837.8886 12 +O15971 LD39986p 26.96 6 30 3 39913.806599999996 6 +O16158 Calcium-binding protein 50.0 8 32 8 1409957.50606 23 +O17452 LD20793p 37.83 7 35 4 907064.79829 26 +O18332 FI01544p 72.2 13 63 11 801663.15922 42 +O18335 Rab11 53.27 13 69 13 1639165.32923 59 +O18336 Ras-related protein Rab-14 24.65 6 18 0 40614.3499 11 +O18338 LD44762p 27.05 6 31 0 4603.5032 2 +O44226 Elongin-B 91.53 9 34 9 447474.41159 25 +O44434 QKR58E-3 12.62 4 6 3 17923.6977 3 +O46052 EG:152A3.3 protein 18.87 6 8 3 47302.9561 6 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 329175.47151 43 +O46079 Protein KTI12 homolog 13.04 4 11 3 7851.014139999999 5 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 1734.2564 3 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 29885.99395 5 +O61604 Fimbrin 32.34 22 67 3 876509.12339 57 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 45330.98536 12 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 9365.053609999999 8 +O76521 Importin subunit alpha 9.21 5 12 5 56875.49785 9 +O76752 Sepiapterin reductase 27.2 7 26 7 76499.84956 20 +O76877 EG:132E8.3 protein 10.62 2 5 2 23790.9551 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 1577789.6279000002 24 +O77259 EG:115C2.5 protein 9.0 2 2 0 14461.886999999999 2 +O77425 Ribokinase 8.88 3 7 3 19741.286350000002 6 +O77430 GEO01111p1 62.96 11 37 10 298188.3454 31 +O77434 EG:34F3.8 protein 28.91 5 19 1 67120.4104 9 +O77477 LD24471p 20.94 9 15 9 42660.80715 11 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 161012.4051 7 +O96692 small monomeric GTPase 12.09 2 6 0 11611.3149 3 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 56333.25509 13 +O97059 Ccp84Ab 19.91 4 8 0 55731.2748 7 +O97062 Ccp84Ae 34.13 6 26 6 102956.41341 15 +O97064 Ccp84Ag 25.65 4 10 4 31838.48697 6 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 2009.8132 1 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 1728662.7887199998 32 +O97111 LD29223p 7.41 3 5 3 11152.964609999999 5 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 5958.56132 2 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 22642.176 2 +O97365 BM-40 31.58 9 14 9 142883.1685 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 1331133.86293 38 +O97428 Ciboulot, isoform A 13.95 2 4 0 18695.906000000003 2 +O97454 Protein BUD31 homolog 13.89 2 3 2 2624.4472299999998 2 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 118627.40391 20 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 2563.5757 2 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 4607335.85531 73 +P92181 Cuticle protein DCP2 36.7 3 15 3 56344.55293 8 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 15875.96291 3 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 1026155.1508899999 66 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 71337.38646 11 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 28333.500920000002 8 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 7380.598 2 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 762928.78315 114 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 7679.46942 2 +Q0E8P5 FI05614p 9.28 5 12 5 224430.47043000002 10 +Q0E8S7 Homer, isoform E 37.66 18 48 3 606461.64568 42 +Q0E8U4 FI09636p 15.33 6 8 6 29789.35844 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 1013208.6119100001 22 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 22630.0757 5 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 533329.1441 37 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 452038.95653 21 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 141425.36424 19 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 2934.28847 4 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 292265.89346 57 +Q0E9E6 RE33655p 1.32 1 2 1 2650.4456 2 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 80821.50683999999 14 +Q0E9G4 CG1600-PA 12.6 3 4 0 4323.1155 2 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 71653.7194 12 +Q0KHR7 Septin 18.74 8 17 0 155558.84261 17 +Q0KHX7 FI18193p1 6.31 8 11 0 34662.36512 8 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 4791270.50101 139 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 40161.76045 7 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 26902.44587 15 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 248260.30836 27 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 15759.16885 8 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 33885.77932 6 +Q0KIB0 Sidestep III 2.61 4 5 4 6439.4365 1 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 4442.22766 4 +Q1RL12 IP16413p 60.25 16 101 1 51711.227 1 +Q24090 GH08712p 14.05 6 9 6 32224.174899999998 8 +Q24253 AP complex subunit beta 19.76 16 31 16 94865.40439 26 +Q26459 EN protein binding protein 13.32 8 16 0 35288.96522 10 +Q29QY7 IP15859p 9.86 1 1 0 6692.0396 1 +Q2MGK7 GEO13330p1 26.77 4 11 4 82534.66679999999 10 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 3668.9521 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 10196.2853 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 5433218.02606 120 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 12703.34714 5 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 195013.83140999998 10 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 8168.42516 4 +Q4QQ49 IP09595p 3.04 1 1 1 2369.2625 1 +Q4QQ70 IP09819p 16.08 7 13 7 72713.33932 10 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 24294.6671 5 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 21114.28135 6 +Q4V619 IP07950p 6.9 2 2 0 3429.4521 1 +Q4V625 lysozyme 6.75 1 2 1 16540.176 1 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 112093.1783 11 +Q500Y7 GEO11443p1 89.47 4 15 4 789031.9703 13 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 12103.38443 4 +Q59E01 FI02065p 5.58 4 7 0 3317.45005 4 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 7943.555 2 +Q5BIA9 RE10908p 2.72 2 2 2 13758.70525 2 +Q5LJT3 MIP01391p 17.0 3 3 3 87998.92199999999 2 +Q5U124 alpha-glucosidase 16.51 11 24 0 252331.1154 19 +Q5U126 GEO11286p1 59.42 7 36 7 1704726.7138899998 32 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 20584.4235 5 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 17876.4467 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 363561.51615 18 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 23897.33 3 +Q6IGN6 HDC05827 11.36 2 8 2 47385.8695 6 +Q6IGW6 GEO13367p1 44.23 2 4 2 28975.7005 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 1009400.887 16 +Q6IL43 GEO11093p1 27.71 2 6 2 56660.6878 5 +Q6NL44 GH28815p 16.11 6 12 6 8682.51937 8 +Q6NLJ9 AT19138p 46.59 3 5 2 21432.6747 4 +Q6NMY2 RH54371p 32.42 5 16 5 239766.24835 8 +Q6NNV2 RE44043p 14.68 5 8 0 49161.14245000001 8 +Q6NNV7 RH03309p 29.55 5 15 1 310906.65817 12 +Q6NP72 GEO09659p1 53.59 5 28 5 144301.50046 21 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 3894.3855 2 +Q76NR6 Regucalcin 77.74 24 100 0 4630713.7361 81 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 161412.49858 12 +Q7JMZ0 small monomeric GTPase 9.09 2 3 2 380.8659 1 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 93265.41554999999 16 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 1423816.26092 25 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 6878.1343 3 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 237496.71317 21 +Q7JQX9 FI14001p1 4.65 4 4 0 1125.5118499999999 2 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 3529997.72015 86 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 289194.099 16 +Q7JRB2 RH09039p 4.52 1 3 1 680.95483 1 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 23372.07363 3 +Q7JRF1 RE48509p 3.41 1 1 0 1865.9943 1 +Q7JRH5 RE28271p 1.31 1 2 1 4313.3296 1 +Q7JRL9 GH25289p 67.12 10 56 1 2077118.793 51 +Q7JRN6 GH06388p 11.21 3 10 3 21408.01804 8 +Q7JS69 FI04632p 45.02 10 65 1 418433.6106 14 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 5126.50904 3 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 16559.9833 5 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 377117.27018 37 +Q7JV09 GH28348p 7.5 8 12 5 23859.77985 6 +Q7JV69 SD11922p 6.95 3 6 3 7833.54666 4 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 24598.8287 4 +Q7JVH6 LD24696p 27.01 8 20 7 223663.39565000002 13 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 113302.97653 13 +Q7JVK6 Translin 16.17 4 11 4 53630.79165 9 +Q7JVK8 GEO08987p1 52.05 8 31 8 236313.49373 25 +Q7JVM1 GH25962p 22.64 5 16 5 64146.1467 12 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 43858.42934 9 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 3655.05467 3 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 94523.3269 9 +Q7JW07 LD08826p 12.12 3 3 3 15197.0087 2 +Q7JW48 RE12410p 8.08 3 8 3 56413.181 4 +Q7JW66 LD21545p 8.81 3 5 3 26184.7421 5 +Q7JWD6 Elongin-C 52.99 6 18 6 550505.43258 14 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 565761.51917 28 +Q7JWH5 RING-box protein 2 7.96 1 1 1 8203.301 1 +Q7JWQ7 RE01730p 9.74 4 7 4 5588.38404 5 +Q7JWR4 GH19585p 6.06 1 2 1 14139.186399999999 2 +Q7JWU9 AT07420p 22.49 7 8 7 29714.2226 5 +Q7JWX3 GH10112p 7.35 4 10 4 90342.68602 9 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 295235.56399999995 2 +Q7JX94 Phospholipase A2 13.29 3 6 3 1660.96422 3 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 51763.80704 9 +Q7JXB9 Endonuclease 8.39 4 4 4 8382.26511 3 +Q7JXC4 CG6459 protein 33.46 6 46 6 1496436.20474 39 +Q7JXW8 Off-track2 11.09 5 9 4 25318.95265 8 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 65582.58 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 178992.5467 6 +Q7JYW9 Phosphotransferase 18.72 9 13 9 22743.43237 11 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 11168.659599999999 2 +Q7JYZ0 lysozyme 11.18 2 6 2 26820.4366 5 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 67210.4735 8 +Q7JZB1 RE49860p 8.66 3 5 3 6886.4362 3 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 512952.0672 37 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 477.565 1 +Q7JZE1 Peroxin 11 9.96 3 6 3 9805.5584 5 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 52749.610199999996 7 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 1203870.67942 41 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 31149.64736 10 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 4892.39754 2 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 414777.88437 22 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 659707.1319 26 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 23239.9416 6 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 5895020.96065 151 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 13325.60845 3 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 739436.18287 38 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 74354.73751 12 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 2856.7503 2 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 14965.2182 2 +Q7K0S1 LD39211p 3.43 2 3 2 4450.30083 3 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 161190.73629 21 +Q7K0S6 LD36817p 21.02 8 13 8 49212.89704 11 +Q7K0T7 LD33470p 1.5 2 2 0 941.9077 1 +Q7K0W1 LD27406p 3.85 2 2 2 4414.0853 2 +Q7K0W4 LD27203p 56.4 18 61 17 1393953.67712 40 +Q7K0X9 LD23667p 8.51 2 17 2 41278.9303 14 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 22384.8625 6 +Q7K127 Alpha-galactosidase 18.71 7 24 7 306682.69276999997 19 +Q7K130 Dynactin subunit 4 4.67 3 4 3 9241.059 2 +Q7K148 Proteasome subunit beta 21.28 6 13 6 60953.68234 12 +Q7K159 LD06557p 26.22 6 8 6 6680.45321 6 +Q7K180 LD02709p 17.73 8 12 8 13346.41945 7 +Q7K188 GEO05126p1 29.68 6 49 6 1773994.98536 43 +Q7K1C0 GH23780p 46.53 5 11 1 481797.8628 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 54833.596999999994 9 +Q7K1C5 GH21176p 10.85 7 9 7 58967.377810000005 8 +Q7K1H0 GH09096p 16.67 6 8 6 32261.032799999997 8 +Q7K1M4 SD04017p 17.31 5 15 5 47043.86324 10 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 51143.8762 10 +Q7K1W5 LD35843p 23.4 10 26 10 450091.71974 23 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 15475.490749999999 5 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 338061.51825 19 +Q7K2E1 LD05247p 9.07 5 13 5 78155.31245 11 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 14220.398799999999 2 +Q7K2L7 GH27120p 17.59 3 5 3 89288.47877 4 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 35072.8984 8 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 4624.8267 3 +Q7K2P3 GH20817p 63.48 14 46 1 196810.97209 35 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 13503.7333 3 +Q7K2W6 tyrosinase 23.91 16 34 16 93145.24238 22 +Q7K332 GH17623p 6.28 2 11 1 19657.15016 8 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 230731.6203 16 +Q7K3E2 LD34147p 38.81 22 51 22 485225.11327 39 +Q7K3H0 LD28067p 2.93 6 10 0 40006.99802 7 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 632618.84806 40 +Q7K3N4 GH26015p 16.49 7 13 7 59751.94374 8 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 19057.0689 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 83220.85508 19 +Q7K3W4 GH08941p 24.88 8 21 8 219239.38095999998 18 +Q7K3Y9 Spondin-1 5.04 5 7 5 10967.18887 4 +Q7K3Z3 GH01724p 39.07 15 44 15 701737.92415 39 +Q7K485 Cathepsin D 25.51 7 29 7 676848.871 23 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 18621.128839999998 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 4782.101 1 +Q7K4J7 LD36653p 4.06 1 1 1 2105.4846 1 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 4028.5355 2 +Q7K4T8 LD23856p 8.52 4 6 4 9380.0668 5 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 4384.7257 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 40365.1469 8 +Q7K519 GH16429p 6.75 3 3 3 14129.192 2 +Q7K549 GH13040p 6.1 3 4 3 4922.39865 3 +Q7K568 GH10642p 13.82 5 11 5 81741.14455 10 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 446591.2852 40 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 281964.6463 20 +Q7K5M6 GH04176p 19.59 6 16 6 153632.20111999998 12 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 228629.2121 20 +Q7K860 FI07231p 33.33 5 18 5 945849.9921 15 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 395603.7356 23 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 2071.7952 1 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 6338.55857 5 +Q7KK54 MIP07328p 2.21 2 3 2 15255.2052 3 +Q7KK90 GH14654p 47.77 7 29 7 997299.8866 25 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 114521.87428999999 20 +Q7KLE5 Amphiphysin 41.86 27 94 3 1835674.73229 78 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 88254.81707 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 136820.93983 10 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 71329.39970000001 4 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 4973.56 2 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 148301.77317 13 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 895264.6528 48 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 11237.0872 4 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 4189.279 1 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 170545.80719 33 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 4070259.81929 92 +Q7KND8 FI09619p 9.18 8 10 8 22729.2419 8 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 397067.3393 19 +Q7KRT4 GH07253p 2.47 1 1 0 1941.1362 1 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 9360.6782 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 16510.6092 6 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 35168.358 3 +Q7KSE4 GH05443p 5.39 4 5 4 14618.999170000001 4 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 157335.13644 14 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 716386.2813 24 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 9143.315170000002 5 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 811.20154 1 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 214856.05258 29 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 622432.25158 27 +Q7KT58 GH08155p 7.03 4 6 4 12441.636 5 +Q7KT70 FI18641p1 4.18 4 4 4 5651.89556 4 +Q7KTA1 HL01444p 20.43 10 22 10 144021.33234 17 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 87111.98163 23 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 2794163.8737999997 76 +Q7KTN9 FI01009p 4.26 3 3 0 8068.8060000000005 2 +Q7KTP7 LP22840p 61.88 10 18 10 120545.98896 17 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 1826683.92613 45 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 161394.16968 19 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 10218.46 3 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 330953.50583 35 +Q7KUD4 phospholipase A2 3.95 4 6 0 12784.223600000001 5 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 97613.28530999999 22 +Q7KUT5 Protein MIX23 21.01 3 4 0 9863.20323 3 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 34051.23155 5 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 13386.399949999999 4 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 155034.93497 24 +Q7KV27 alanine transaminase 47.01 23 110 0 4858754.16997 94 +Q7KV34 Pinkman 39.06 24 47 24 809037.58225 42 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 8774.96456 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 637.6455 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 92790.29874 15 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 959.80164 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 2567543.85019 78 +Q7KY04 small monomeric GTPase 15.96 3 10 2 14956.034 2 +Q7PL91 GEO11417p1 26.6 3 13 3 144058.8929 10 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 4205.8936 1 +Q7PLI0 P120 catenin 10.5 10 17 10 81896.00553 12 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 195076.4649 29 +Q7PLS1 LD01937p 11.46 5 8 0 17777.45415 7 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 10498.88104 4 +Q7YU88 SD08871p 5.67 6 8 0 7304.58804 3 +Q86B44 Glutathione synthetase 11.03 6 11 0 40718.5576 8 +Q86B74 WASp, isoform C 16.19 7 10 0 9243.6647 4 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 5674.4927 1 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 5866.308349999999 2 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 104870.12092 22 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 95094.06046 15 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 448513.48952 37 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 276281.37983 23 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 676277.70221 26 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 316589.10255 41 +Q86BS3 Chromator, isoform A 27.65 20 50 20 208300.21704 40 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 15642.74024 5 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 161415.25717 15 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 17533.6334 5 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 44012.154800000004 7 +Q8I0D4 RE20510p 20.9 17 39 0 657274.1592199999 28 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 15131.361710000001 5 +Q8I0P9 acid phosphatase 1.76 1 2 0 2688.1497 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 98273.94551 18 +Q8I930 GH14147p 4.68 3 4 0 6977.11655 2 +Q8I941 GH16843p 28.83 7 29 7 177571.74618000002 25 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 10125.455399999999 4 +Q8IGY1 RE08101p 33.61 41 326 0 6649775.53931 146 +Q8IH23 GEO02102p1 43.7 5 11 5 42474.0068 9 +Q8IM93 FI18814p1 36.72 17 40 17 213079.42837 27 +Q8IMF4 RE24176p 10.11 5 7 0 13379.16895 4 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 364586.64475 25 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 17113.7222 3 +Q8IMQ8 RH29536p 33.72 10 31 0 390809.86343 26 +Q8IMT3 IP12392p 5.95 3 4 3 4066.2036 2 +Q8IMT6 FI01822p 6.64 3 6 3 25985.396050000003 5 +Q8IMU2 RE10237p 13.88 3 5 0 13553.339930000002 3 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 1445.5528 2 +Q8IMX4 FI04408p 6.6 2 7 0 21343.0572 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 85482.40909999999 11 +Q8IN49 MIP05539p 7.19 7 14 7 54645.41336 11 +Q8IN51 FI17609p1 21.17 3 9 3 29366.78514 5 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 1832.1097 1 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 22384.308200000003 4 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 13817.670399999999 4 +Q8INH5 Aminopeptidase 5.65 6 9 0 14049.868079999998 9 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 14653.98607 5 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 20528.40726 7 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 4082.93464 3 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 283712.81052 27 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 19382.25744 5 +Q8IP97 Peroxin-19 54.11 10 30 10 610360.4716 25 +Q8IPA5 RE15581p 6.07 2 2 0 9925.451 1 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 18578.081570000002 8 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 111682.93735000001 9 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 1376606.53196 97 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 32167.49056 11 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 1948.2745 1 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 263670.35625 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 657.0189 1 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 36770.84383 3 +Q8IPT9 SD05439p1 36.84 12 19 0 353034.6274 15 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 748634.25383 48 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 9006.359199999999 3 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 20782.03323 10 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 27943.126239999998 12 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 18043.221299999997 4 +Q8IQB7 MIP21654p 9.44 3 5 3 714.3824 2 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 17385.23846 4 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 40241.185699999995 6 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 42242.13576 5 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 11198.6173 3 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 45159.81089 12 +Q8IQH0 FI12817p 5.22 8 11 0 22567.09693 9 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 83241.53726 12 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 4075.0375999999997 2 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 99199.34078 24 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 29444.92775 3 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 17697.0279 4 +Q8IQW5 RE23625p 79.17 16 78 4 2431809.54366 57 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 2811.1438 1 +Q8IR72 FI19011p1 10.06 1 3 1 8553.131300000001 2 +Q8IR76 FAD synthase 12.59 4 7 0 19547.81664 6 +Q8IRD0 RH17559p 42.86 3 12 3 78436.5714 10 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 2719900.82619 72 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 97362.67842 25 +Q8IRI5 Trio, isoform D 8.83 7 10 0 23215.99839 8 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 6516798.1411500005 145 +Q8MKJ5 GEO08105p1 19.47 2 3 2 1203.33024 2 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 42408.713749999995 5 +Q8MLP9 GEO08457p1 16.96 2 5 2 7680.2258 5 +Q8MLQ0 FI14118p 21.05 2 3 2 39184.6015 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 81089.33813 11 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 30586.7516 5 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 721.5688 1 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 144488.7944 15 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 1905190.4447 73 +Q8MQP2 MIP16184p 7.0 2 5 0 33316.0025 4 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 12827.765159999999 3 +Q8MRM0 GH16740p 23.63 6 17 6 97652.4534 14 +Q8MRS5 AT03104p 3.18 3 3 0 2155.975 1 +Q8MRT7 SD26038p 13.22 3 7 3 35632.87474 7 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 4561.8364 2 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 2409.2947 1 +Q8MSI2 GH15296p 77.78 17 127 17 8149829.72054 102 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 2036.3427399999998 2 +Q8MST5 Tubulin beta chain 47.92 18 97 0 533795.53843 35 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 1308114.67489 53 +Q8MZ07 GEO07581p1 10.96 2 5 2 7167.4293 3 +Q8MZI3 RNA helicase 17.36 13 23 6 92754.85730999999 16 +Q8SWS2 RE29468p 39.05 5 14 0 213218.3486 10 +Q8SWS3 RE26528p 17.13 2 3 2 101895.099 3 +Q8SWZ6 RH51312p 8.33 2 3 2 3367.3484 1 +Q8SX35 GEO07743p1 33.33 3 8 1 49552.33994 7 +Q8SX50 RE04530p 14.96 6 11 0 28345.99174 9 +Q8SX57 LD44221p 42.41 8 19 8 128973.0357 17 +Q8SX78 LD05679p 19.7 8 11 8 26321.4248 8 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 26209.5016 5 +Q8SXC2 FI04487p 7.56 4 4 4 6416.51472 3 +Q8SXD5 GH02216p 53.85 11 59 2 810321.08337 46 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 48755.593 7 +Q8SXF2 RH40246p 10.75 5 7 5 14920.06534 5 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 4985.1031 2 +Q8SXK0 RE18748p 10.55 3 3 3 2607.0959000000003 2 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 124082.98336 25 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 18445.2903 3 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 97512.41494 18 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 195156.49370000002 3 +Q8SXS0 RE40914p 11.92 4 6 4 4929.67655 4 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 337803.99116000003 23 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 15049.3321 4 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 143479.5933 7 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 703.32153 1 +Q8SY67 lysozyme 35.85 3 3 3 55565.267700000004 3 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 291742.59294 10 +Q8SYC4 RE68566p 1.97 1 1 1 715.5758 1 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 1897440.26512 80 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 279058.20568 16 +Q8SYH8 RE57644p 19.78 5 13 1 72968.3471 8 +Q8SYJ2 GEO09626p1 61.45 8 53 8 3162543.69483 47 +Q8SYN0 RE52086p 9.56 4 5 4 9935.342939999999 4 +Q8SYQ4 RE42475p 52.03 10 68 10 1136616.19867 53 +Q8SYQ8 RE40412p 32.35 5 10 5 44732.879550000005 10 +Q8SZK5 RH26533p 10.93 3 5 3 18733.544579999998 5 +Q8SZK9 HL04814p 47.19 11 54 11 2047463.75656 47 +Q8SZM2 RH04334p 28.15 10 38 10 1209644.21065 32 +Q8SZN1 GEO08217p1 51.61 7 31 3 961312.55865 28 +Q8T0I9 GH27479p 23.63 10 27 1 277885.65454 18 +Q8T0J5 GH26851p 29.62 9 33 0 496213.85994 30 +Q8T0N5 GH17516p 16.56 6 16 6 171878.10016 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 21978.3014 6 +Q8T0V2 GH02495p 21.25 10 23 0 111109.93247 19 +Q8T389 Endophilin B 56.35 18 77 0 6296.5767 1 +Q8T3V6 Large ribosomal subunit protein uL29m 6.27 2 2 2 390.18298 1 +Q8T3W8 Venom allergen-1 20.61 6 10 0 39655.31721 8 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 298360.94021000003 33 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 1397275.2609599999 64 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 18011.3998 2 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 6052.093 1 +Q94513 Boundary element associated factor 12.41 5 12 1 28329.35668 7 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 28924.71294 5 +Q95NU8 GH16255p 16.25 8 18 8 128220.25334 14 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 21050.4986 3 +Q95PE4 GEO07784p1 6.17 1 1 1 991.5283 1 +Q95R34 GH16463p 9.71 3 4 3 6784.8333 2 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 31378.11746 4 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 46355.3413 16 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 12837153.05063 131 +Q95RE4 LD37574p 44.32 15 30 1 45154.82371 23 +Q95RF6 LD34461p 43.27 5 7 5 43140.3202 6 +Q95RI2 LD28549p 27.78 9 14 9 39348.73903 9 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 35825.262200000005 7 +Q95RQ1 LD16414p 3.71 2 2 2 397.0119 1 +Q95RR6 LD15002p 64.6 17 77 0 51513.05 2 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 75444.6726 12 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 224741.663 4 +Q95RY2 LD01461p 20.61 5 11 1 77981.803 9 +Q95SH0 GH26463p 5.58 5 6 5 8272.237 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 242841.70356 28 +Q95SH7 GH26007p 7.94 2 3 2 461.93552 1 +Q95SI7 GH23390p 75.09 17 43 17 1316964.04016 39 +Q95SN8 GH12395p 26.76 5 14 5 170506.4691 11 +Q95TK5 LD44914p 12.95 7 17 7 63433.0875 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 478757.05123 31 +Q95TP0 LD34582p 1.97 1 1 1 3454.5144 1 +Q95TZ7 GH19182p 79.35 28 155 0 2530362.51115 110 +Q95U15 GH14252p 82.05 32 274 0 1571882.4205 24 +Q95U34 GH11113p 20.41 10 36 10 273878.19078 27 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 42900.0365 6 +Q960D4 SD06560p 22.09 14 22 0 134090.7916 18 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 5598545.0122 77 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 123559.67486 24 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 7882.03797 4 +Q961B9 LD24073p 8.37 4 4 4 8186.4688 1 +Q961C8 LD22649p 15.3 5 10 0 19444.06335 8 +Q961E7 phosphorylase kinase 10.74 5 5 1 18072.726 3 +Q961K6 GH19047p 4.19 3 3 3 6556.6929 3 +Q961Q8 GH10454p 10.86 5 7 5 21204.84988 6 +Q961T9 GH07914p 35.88 6 11 6 59876.310600000004 10 +Q961X4 Combover, isoform B 10.01 8 13 0 49619.22244 9 +Q966T5 Paxillin, isoform D 37.06 7 18 2 40451.81366 7 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 21025.4726 6 +Q9I7I3 GH12831p 9.56 3 4 3 5417.4486 3 +Q9I7J0 GH21596p 73.37 11 57 11 1325092.89682 41 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 14269.078 3 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 10196.13229 8 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 680345.76864 27 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 1567678.74331 18 +Q9NCC3 Sorting nexin 14.34 8 16 8 75844.70357 15 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 2.35 3 3 0 399.69168 1 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 49732.11413 6 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 125377.9114 13 +Q9U6P7 FI18813p1 14.35 7 9 7 48470.33255 9 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 763451.74414 41 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 21020.75362 5 +Q9V393 Kurtz arrestin 10.0 5 9 5 65287.8237 7 +Q9V396 Carbonic anhydrase 46.67 12 54 12 935042.14738 43 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 28565.83593 7 +Q9V3C8 DShc protein 3.42 2 3 2 5624.694 1 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 82719.0563 12 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 4533.7639 2 +Q9V3E7 LD24793p 42.48 12 35 12 387608.57316 28 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 16475.78383 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 235081.0145 13 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 619.5489 1 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 22340.64546 7 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 108151.144 6 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 654467.11113 44 +Q9V3N9 B6 5.73 4 6 4 26016.1125 5 +Q9V3P3 LD45860p 40.0 10 21 10 432314.11814000004 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 74012.2633 8 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 8320.8318 2 +Q9V3T8 LD32469p 14.36 4 5 4 45896.1608 5 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 1258000.1903000001 37 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 727966.47053 39 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 1370146.8221 52 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 474270.39018 34 +Q9V3W2 GM23292p 61.08 12 86 12 2302692.18043 71 +Q9V3W7 LD40489p 41.18 10 24 10 152251.94549 13 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 143347.67174 27 +Q9V3Y4 LD43650p 6.65 2 4 2 3045.7668 1 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 188812.66519 29 +Q9V3Z4 GH11341p 22.31 12 31 12 128158.90732 24 +Q9V3Z9 HL02234p 46.21 14 53 14 2254943.5744 36 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 9327.39047 5 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 594711.18353 40 +Q9V406 Activator protein 4 9.03 7 16 7 37059.45778 11 +Q9V420 FI02878p 13.91 5 10 5 51576.97247 10 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 162954.53964 17 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 18985.8614 3 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 158752.02920000002 7 +Q9V455 Importin subunit alpha 15.95 9 16 9 170840.79333000001 12 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 380978.37708 33 +Q9V491 Plexin A, isoform A 1.03 2 2 0 548.8343 1 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 865691.40374 51 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1294707.8937 63 +Q9V4E0 Complex I-49kD 26.28 9 14 8 103982.83241999999 11 +Q9V4E7 Transporter 3.62 3 6 2 6056.13187 5 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 5882.36006 3 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 78953.88646 10 +Q9V9Q4 LD43819p 24.01 9 22 9 259422.08445 16 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 93422.26317 4 +Q9V9T5 GM14617p 15.04 10 14 1 12182.0504 6 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 2233.2736999999997 2 +Q9V9U0 RE35358p 10.11 2 3 2 458.55685 1 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 61641.63321 11 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 2684.6895 2 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 119574.5575 12 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 343553.20438 19 +Q9V9W4 GH08048p 3.6 2 2 2 788.752 1 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 1611.4048 1 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 36827.4448 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 2418080.79924 82 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 90823.52 10 +Q9VA34 LP06141p 3.64 4 5 4 15775.649549999998 5 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 116471.45544 22 +Q9VA41 GEO08227p1 42.04 6 16 2 110937.94209999999 6 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 776427.35697 16 +Q9VA56 GH23271p 60.79 20 66 1 849.4702 1 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 17197.9628 3 +Q9VA71 FI19924p1 6.19 3 3 3 8272.9471 3 +Q9VA76 IP18706p 11.33 4 8 4 16268.47234 5 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 4876.6489 2 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 195306.44026 16 +Q9VAA6 GEO12235p1 10.76 2 6 2 36914.542 5 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 68071.84364 14 +Q9VAC1 GM14349p 63.31 21 113 21 5267555.09729 86 +Q9VAC4 GEO09167p1 23.08 3 12 3 258163.2253 10 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 24735.34458 10 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 4122.5589 2 +Q9VAD7 RH37294p 11.56 2 3 2 634.7386 1 +Q9VAG3 trypsin 11.46 3 6 3 44679.6927 5 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 24975.704 5 +Q9VAI9 GEO07291p1 62.25 9 62 5 2793193.33927 42 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 61465.1014 12 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 2663.10455 2 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 1038594.86584 55 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 11188316.42269 100 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 53986.86865999999 8 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 2910.12061 4 +Q9VAU6 LD27564p 2.62 2 2 2 8438.4473 2 +Q9VAV2 FI21480p1 16.09 13 25 13 91381.06378 20 +Q9VAY0 Neprilysin 7 5.58 4 4 4 7096.71367 4 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 1096842.81236 73 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 21635.1867 2 +Q9VAY9 GH07821p 4.83 2 2 2 16302.991 1 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 508860.39423 49 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 1068304.1337 48 +Q9VB17 IP11341p 10.12 4 7 4 19452.6226 5 +Q9VB22 LD33695p 13.07 8 14 8 174278.47377 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 62183.54738 16 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 182167.33497 9 +Q9VB66 CLIP domain-containing serine protease 7.35 3 3 2 394.70538 1 +Q9VB69 Malic enzyme 19.45 12 25 1 78110.98204 19 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 30157.7509 4 +Q9VB77 IP09938p 4.06 1 2 1 2510.0637 2 +Q9VB78 Eater 12.38 3 7 3 5971.6862 2 +Q9VB79 IP09473p 14.19 5 15 5 34948.8207 11 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 1041228.5913000001 56 +Q9VB86 LP07342p 7.34 1 1 1 8133.1694 1 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 244411.04037 24 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 10804.72703 8 +Q9VBC9 Beaten path VII 3.68 2 4 2 18882.2991 4 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 2216448.85302 52 +Q9VBI3 RH72336p 22.66 7 23 7 115140.96132 18 +Q9VBL3 GH01188p 8.54 5 6 5 4931.6081 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 17370.413 3 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 5093433.83738 129 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 18675.858699999997 3 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 317240.9383 19 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 12997.4242 6 +Q9VBT2 IP11926p 4.57 2 2 2 497.62558 1 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 6573.7542300000005 3 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 491034.69365 11 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 11733.8589 2 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 15194.309940000001 3 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 1323772.21172 58 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 21488.137319999998 5 +Q9VC06 LD37516p 12.05 9 12 9 28217.601749999998 9 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 2476.3174 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 83916.14476 19 +Q9VC30 RE05274p 13.98 3 7 3 7155.024359999999 2 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 42882.95887 11 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 95049.4736 14 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 113747.02266 10 +Q9VC58 Syntaxin-18 6.08 3 3 3 1071.06866 2 +Q9VC66 AT25567p 25.62 12 25 12 108857.38246 24 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 10869.9182 4 +Q9VC87 RE57978p 7.51 3 5 3 7028.7317 2 +Q9VCB9 FI08802p 6.15 2 2 2 20408.04245 2 +Q9VCC9 LD23779p 2.55 3 5 3 1387.47962 2 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 2404.81774 3 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 122743.85247 8 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 11928.205399999999 6 +Q9VCF8 LD23561p 10.51 4 8 4 44363.45816 8 +Q9VCI4 LD32918p 5.33 4 7 4 336.26068 1 +Q9VCI7 LD02979p 12.03 5 12 1 110392.52954 9 +Q9VCK6 LD34157p 14.88 7 11 7 32482.00667 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 29690.7232 6 +Q9VCR4 FI17836p1 3.66 3 5 3 9337.1484 3 +Q9VCR9 RH48101p 20.22 8 34 8 263647.76394 29 +Q9VCT4 Klingon 5.69 3 4 3 2596.2819 2 +Q9VCU0 GEO02312p1 33.33 4 15 4 40391.65096 11 +Q9VCU1 FI07649p 2.77 2 2 2 349.14987 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 30771.0018 4 +Q9VCW2 Cardinal 11.33 9 12 9 9267.325359999999 6 +Q9VCW6 GCS light chain 37.54 12 34 12 210731.61949 27 +Q9VCZ2 FI07970p 5.96 3 4 3 4149.0314 3 +Q9VD00 FI07666p 15.11 4 16 4 97535.25624 13 +Q9VD01 LP12095p 8.52 2 4 2 19989.5903 4 +Q9VD02 GH14779p 37.99 5 19 5 247539.54402 17 +Q9VD13 GH02671p 17.26 8 11 1 50325.303700000004 7 +Q9VD14 GH07286p 11.88 8 21 8 171238.29166 21 +Q9VD29 small monomeric GTPase 48.19 9 26 9 1442677.12118 21 +Q9VD30 GH05294p 74.19 12 43 12 1407963.61186 39 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 10603.4524 2 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 3097738.56506 82 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 25778.85354 4 +Q9VD68 GH19849p 4.3 2 3 2 13825.31534 3 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 36316.442500000005 5 +Q9VDC0 GH01837p 28.0 5 14 5 41557.18441 12 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 30536.4866 4 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 327810.0882 10 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 250018.79723999999 4 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 147522.91689 27 +Q9VDH3 GH08630p 66.23 13 38 13 852752.50476 30 +Q9VDI1 LD46328p 53.04 22 79 0 718878.40392 61 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 6047.29666 2 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 28163.3498 4 +Q9VDK2 GH15831p 5.72 4 6 3 20398.3577 5 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 112037.62826 26 +Q9VDK9 GH12359p 6.46 4 6 4 28894.544439999998 5 +Q9VDL5 GEO09602p1 13.43 1 2 1 11393.43966 2 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 257822.30215 20 +Q9VDQ3 Identity crisis 6.53 4 4 4 1078.73456 2 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 147443.10751 20 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 200657.28674 14 +Q9VDU7 nicotinamidase 15.69 5 15 5 184962.6263 14 +Q9VDV2 AT06125p 8.54 4 4 3 2985.122 2 +Q9VDY8 MIP08680p 57.35 14 64 1 947315.98497 54 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 676134.21767 71 +Q9VE08 GH10002p 8.92 2 3 2 6221.6051 3 +Q9VE12 LD27322p 14.81 5 12 5 33575.07571 9 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 22734.51165 6 +Q9VE31 GEO12059p1 16.22 2 3 2 406.79315 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 37402.0945 7 +Q9VE56 FI17806p1 7.14 2 3 2 59691.4222 3 +Q9VE57 GEO10850p1 12.41 2 3 2 12340.453300000001 3 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 1556.61886 2 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 20109.56 3 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 30164.61808 10 +Q9VE94 LD14127p 12.24 5 6 5 8075.461499999999 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 171867.83614 14 +Q9VEA7 FI01460p 28.09 1 3 1 6348.2073 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 21918652.147549998 240 +Q9VEB7 AT04491p 5.94 3 3 3 15087.62671 3 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 32259.74966 4 +Q9VEC8 RE23139p1 14.62 2 4 2 25768.806699999997 4 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 65319.8762 9 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 12186.7577 2 +Q9VEG8 RE59232p 2.8 1 1 1 41329.727 1 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 14868.27528 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 722252.90563 34 +Q9VEJ9 Curly Su 1.2 1 2 1 12686.6156 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 147108.09673000002 11 +Q9VEK8 GH07711p 34.05 12 33 12 191942.75947 27 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 85089.69852 17 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 2720.3073 2 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 16772.71543 7 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 135605.47414 23 +Q9VEP8 GH11385p 13.2 10 14 10 42364.14126 9 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 80765.4975 18 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 20656.79174 6 +Q9VES8 RE28913p 27.34 8 16 8 32055.66705 11 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 40806.5997 3 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 146039.78599 21 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 390.10422 1 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 8586.5438 3 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 101981.73279 21 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 19969.5367 3 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 1166274.97126 34 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 88057.07967 15 +Q9VF15 GEO09476p1 81.05 12 61 8 1163361.56874 45 +Q9VF23 arginine kinase 7.22 4 6 4 4985.63935 2 +Q9VF24 Crossveinless d 5.1 8 12 8 31346.794579999998 9 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 56687.36174 11 +Q9VF39 FI01459p 4.13 2 2 2 9379.483 1 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 93516.35992 21 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 23676.8109 6 +Q9VF77 FI16517p1 10.07 4 7 4 15528.53096 4 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 14869.622959999999 4 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 109636.0156 11 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 18404.3204 2 +Q9VFC7 Mf5 protein 84.38 37 292 0 4777492.927680001 189 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 2459.5580999999997 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 6634155.2300700005 120 +Q9VFI3 GEO08281p1 21.15 1 1 1 5184.015 1 +Q9VFM0 GH19262p 4.96 3 5 3 5227.12968 4 +Q9VFN7 GEO07678p1 20.13 4 19 4 360708.36474 18 +Q9VFN9 GEO07882p1 15.32 2 6 2 27061.55417 4 +Q9VFP0 RH07106p 17.84 7 11 7 67774.2546 10 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 679453.4748600001 29 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 244339.30087 21 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 9077.89337 6 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 32749.578200000004 6 +Q9VFT4 AT27578p 10.58 6 11 6 12830.64304 8 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 14320.3381 4 +Q9VFV1 RE55542p 2.83 2 2 2 12203.452399999998 2 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 1275461.75696 54 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 49063.86614 10 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 10458.6895 4 +Q9VG01 RE12073p 5.26 3 3 3 3752.7316 2 +Q9VG04 Protein MEMO1 10.85 4 6 4 5253.70186 4 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 2995.9377 1 +Q9VG23 GH22994p 65.12 12 32 1 917382.06534 25 +Q9VG26 MIP06012p 38.03 8 22 8 459224.4324 17 +Q9VG28 Beaten path Vc 2.36 1 3 1 1498.0953 1 +Q9VG31 Malic enzyme 16.64 15 41 0 212167.75355 37 +Q9VG33 Sulfurtransferase 73.64 6 14 6 721614.35936 14 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 151627.4483 7 +Q9VG51 Sorting nexin-3 55.69 9 28 9 149140.0709 23 +Q9VG62 Toys are us 1.44 1 1 1 1905.5094 1 +Q9VG69 LP03547p 32.01 11 35 11 452306.48686 33 +Q9VG81 RH49330p 11.83 6 15 6 22030.9611 7 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 71433.30565 5 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 326441.60184 17 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 6199.0224 2 +Q9VGA3 LD12305p 35.91 7 32 6 292241.73485999997 23 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 3131.48506 2 +Q9VGE4 FI04457p 9.25 11 16 11 30825.31263 10 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 8918.671 6 +Q9VGF3 IP11040p 11.88 5 6 5 9948.07947 3 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 256418.9082 25 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 100049.57579999999 10 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 96029.33200000001 9 +Q9VGL0 LD43047p 2.84 4 6 4 1647.3794 2 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 11715159.180920001 204 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 26040.8867 7 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 2687090.37314 73 +Q9VGQ8 Arfaptin 6.76 3 4 3 18163.1806 3 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 3236.102 2 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 5354.3299799999995 4 +Q9VGS3 RH44771p 14.04 3 26 3 303440.16971 21 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 11528.838 2 +Q9VGT3 GM04645p 5.3 3 5 3 2394.38445 2 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 15310.4955 3 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 13483.8439 4 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 24993.7873 4 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 30263.7463 5 +Q9VGY2 Peptide deformylase 10.08 3 4 1 7877.213400000001 4 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 4772.4224 1 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 87303.26380999999 17 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 35868.48883 8 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 231426.65117 19 +Q9VH37 IP06524p 14.29 3 4 3 24234.351499999997 3 +Q9VH63 Uncharacterized protein 3.0 2 2 2 2161.0557 2 +Q9VH64 LD29322p 10.03 4 5 4 57152.960100000004 4 +Q9VH66 FI18258p1 29.61 6 13 6 35387.71257 8 +Q9VH72 TA01656p1 52.94 7 23 7 900073.9927999999 16 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 450242.51376 40 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 19075.3308 8 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 37511.8046 7 +Q9VH85 GH14967p 3.41 3 3 3 3351.2695 1 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 116519.7365 6 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 91627.42749999999 8 +Q9VHA8 LD25575p 12.25 8 20 8 159360.19665 15 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 109693.98573 14 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 38552.315310000005 6 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 62644.64059 13 +Q9VHC7 FI21236p1 30.54 19 54 9 972006.13042 38 +Q9VHC8 LD31448p 10.06 2 2 2 731.5358 1 +Q9VHE3 GH05665p 9.38 4 6 4 26309.67521 6 +Q9VHE4 omega-amidase 17.31 5 13 5 51624.30274 12 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 24625.44287 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 98087.70206 9 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 30344.647100000002 8 +Q9VHH8 Beag 6.82 4 8 4 27276.408239999997 8 +Q9VHI1 Hyrax 7.06 4 6 4 9186.2956 4 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 246203.3262 20 +Q9VHJ2 LD32381p 2.65 1 1 1 3759.8098 1 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 14172.8443 2 +Q9VHJ7 LD41978p 4.65 3 3 3 8347.046 1 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 561949.17165 40 +Q9VHM3 LD30467p 10.77 5 8 5 25255.96904 7 +Q9VHN4 GH14121p 9.77 3 5 3 8890.47444 4 +Q9VHN7 transketolase 22.36 14 33 2 423719.99075 24 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 7942.626270000001 2 +Q9VHT3 CG9617 protein 15.17 3 3 3 13724.98416 3 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 20925.579680000003 6 +Q9VHX2 GH08043p 9.4 4 7 4 10045.34747 5 +Q9VHX4 LD24679p 66.57 21 108 21 3755412.57193 91 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 15529.468400000002 4 +Q9VI09 GH14494p 49.01 6 27 6 723321.73647 23 +Q9VI21 Dementin, isoform D 3.92 3 3 0 995.3323 2 +Q9VI24 LD25151p 7.73 3 3 3 3779.35736 2 +Q9VI53 LD44267p 14.93 6 13 6 31398.97969 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 18195.5373 4 +Q9VI64 LD30995p 47.03 13 57 13 1056303.50285 50 +Q9VI80 Thawb 1.58 2 3 2 6876.15396 2 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 14827.74541 5 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 12859.74418 4 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 11954922.77253 247 +Q9VIF2 GM01519p 8.7 4 11 4 44193.293730000005 10 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 53857.358400000005 9 +Q9VIH1 CG9273 protein 16.67 5 12 5 19752.1747 9 +Q9VII5 GEO08323p1 25.79 4 13 4 95254.7862 10 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 4252.6113 1 +Q9VIJ3 FI14214p 12.78 2 3 1 1494.0548 1 +Q9VIJ5 GEO05038p1 9.7 1 1 1 450.3406 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 1349.0801999999999 2 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 54520.95553 16 +Q9VIL2 LD19544p 8.63 3 8 3 53022.7567 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 127747.63620000001 16 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 44192.30016 6 +Q9VIQ5 RH02620p 27.49 7 16 7 22980.03097 8 +Q9VIQ6 FI17342p1 14.79 3 8 3 49368.4427 7 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 1009437.02482 41 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 15741.2264 3 +Q9VIU3 FI23988p1 6.9 3 4 3 8298.632669999999 4 +Q9VIV6 GH04973p 4.56 2 2 2 756.6364 1 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 15460.3929 3 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 858.2532 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 55807.875400000004 2 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 121748.73735 12 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 218486.67449 10 +Q9VJ22 GH09876p 5.41 2 3 2 1266.71036 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 8562.0672 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 250394.2153 12 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 41086.40442 9 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 631864.6836 38 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 47465.57503 12 +Q9VJ60 GM16226p 12.15 3 7 3 39812.174900000005 7 +Q9VJ61 SD03870p 9.81 5 6 5 16028.2745 5 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 147501.09225000002 15 +Q9VJ80 LD42267p 6.89 9 15 9 44145.14407 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 38069.65937 11 +Q9VJA9 GH07373p 0.94 1 1 0 2550.0413 1 +Q9VJC0 GEO08203p1 37.23 5 6 5 35979.1797 4 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 30261.678 6 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 153407.69957 26 +Q9VJD4 LD24721p 33.84 12 37 12 862617.05726 25 +Q9VJE3 LD24839p 14.6 7 7 7 28859.3311 6 +Q9VJH8 FI03416p 5.71 4 5 3 11711.6093 5 +Q9VJI5 Protein yellow 13.91 7 13 7 39214.26373 12 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 214437.0468 13 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 390206.973 24 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 8937.68245 2 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 59678.76583999999 6 +Q9VJQ3 Protein yellow 22.83 9 30 8 555189.3455 29 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 30753.43 3 +Q9VJU6 IP09831p 15.87 4 4 4 19643.171000000002 3 +Q9VJU8 GH23407p 8.48 4 9 4 23579.466949999998 4 +Q9VJX3 B4, isoform A 2.44 3 3 3 4939.1615 2 +Q9VJZ1 FI21342p1 8.24 5 6 5 9867.97194 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 1497747.4348600002 50 +Q9VJZ5 LD07294p 17.89 6 14 6 48657.30965 11 +Q9VJZ6 LD40224p 67.13 10 28 10 447192.23743 24 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 44769.6247 6 +Q9VK11 GH15921p 17.8 5 15 5 182305.00136 15 +Q9VK12 GH20621p 54.0 15 86 15 2092097.30935 65 +Q9VK18 LD36945p 10.11 5 7 5 11614.511 6 +Q9VK19 FI07225p 7.72 2 2 2 2205.376 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 644.56824 1 +Q9VK31 LD35592p 3.65 2 2 2 2859.5461999999998 2 +Q9VK39 FI09204p 45.28 4 21 4 114026.45141 16 +Q9VK43 LD10135p 8.24 3 3 3 900.991 2 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 440.39417 1 +Q9VK59 LD23647p 32.84 31 71 31 289332.49289 46 +Q9VK60 GH25425p 49.42 10 45 10 1706164.91013 36 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 614285.53545 42 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 104939.468 14 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 213366.69697 14 +Q9VK99 Atilla, isoform B 51.75 9 42 9 792195.42565 33 +Q9VKA1 FI02817p 15.58 3 7 3 826.3481 1 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 5730.6855 2 +Q9VKC8 FI03495p 11.04 7 13 7 121779.7613 10 +Q9VKD9 MIP16835p1 2.3 2 2 2 5720.6325 2 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 12429893.403339999 377 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 43520.5009 7 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 35211.95511 7 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 2125.6792 1 +Q9VKI8 GH03305p 80.72 20 131 20 2589255.41963 97 +Q9VKJ4 Csl4 22.06 4 6 4 5901.166 1 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 1382108.71807 47 +Q9VKM7 AT01533p 9.31 7 9 4 68028.62531999999 6 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 113736.62872000001 18 +Q9VKQ5 GEO07393p1 29.03 3 3 3 7147.439700000001 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 885.11499 2 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 379758.6266 22 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 16356.34787 4 +Q9VKU5 LD37206p 7.02 2 3 2 2387.1538 1 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 626798.02813 34 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 11930.69296 4 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 12407.10484 5 +Q9VKW1 LD41958p 8.58 4 7 4 4590.31977 4 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 25917.2686 10 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 24.03 3 3 3 538.0175 1 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 5405140.15786 130 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 202118.00312 15 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 21248.042569999998 7 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 135018.91234 16 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 551219.56036 48 +Q9VL02 GH08677p 6.78 3 4 2 14275.44383 4 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 18552.61693 4 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 7273.039500000001 2 +Q9VL16 RE45833p 30.13 6 46 6 868158.0658 38 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 4219.036700000001 2 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 2273.5334 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 14034.45285 6 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 19272.49875 4 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 1044797.12309 44 +Q9VL70 HL08109p 78.89 30 118 30 6329187.88942 101 +Q9VL71 LD29830p 7.02 4 5 4 4392.43429 4 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 56694.37177 5 +Q9VL91 LD23102p 2.06 2 2 2 3212.0542 2 +Q9VL93 GEO07195p1 13.64 2 4 2 54135.937000000005 4 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 44909.1724 7 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 783119.59087 44 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 1260035.77954 60 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 18236.68728 5 +Q9VLI4 Raw, isoform A 2.53 3 3 0 2401.3508 1 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 26871.356 2 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 38705.423890000005 7 +Q9VLP0 IP04187p 20.32 5 7 5 34368.675579999996 5 +Q9VLP1 GEO08095p1 36.49 4 22 4 156166.64363 16 +Q9VLP2 GEO08076p1 38.78 8 25 8 232403.1404 15 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 40313.854 2 +Q9VLQ9 Sorting nexin 31.85 14 43 1 376561.89588 33 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 24084.69047 6 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 20951.4673 4 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 1073114.1234 21 +Q9VLS5 LD29542p 12.08 6 8 6 21623.2656 7 +Q9VLS7 LD21067p 0.89 2 3 0 1688.37844 2 +Q9VLT3 LD23292p 13.58 24 53 24 269145.25581 46 +Q9VLT7 IP17351p 16.35 2 5 2 128493.223 3 +Q9VLV9 Proctolin 19.29 2 4 2 798.7522 1 +Q9VLW8 LD06392p 6.75 2 2 2 12314.911 1 +Q9VLX6 HL01609p 18.95 5 9 0 46218.3272 7 +Q9VLY1 HL02931p 19.01 1 2 1 61527.168 1 +Q9VLY7 TEP1-F 4.02 7 7 7 9206.80833 6 +Q9VLY9 CD109 antigen 20.51 28 66 0 663261.14109 60 +Q9VM07 RE43931p 18.26 4 9 3 36150.5497 3 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 54027.35216 10 +Q9VM11 HL01515p 16.08 5 9 5 57741.32906 8 +Q9VM12 MIP26555p1 24.49 8 23 8 181893.51114 16 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 6790594.2732 220 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 2932557.20891 71 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 11764.1523 3 +Q9VM47 Menin 4.98 4 8 1 12448.05935 4 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 5180.082200000001 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 33386.33278 9 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 28885.8524 3 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 184926.6331 10 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 25543.59968 7 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 2844765.66356 84 +Q9VMC3 LD35051p 8.64 4 4 4 13219.6482 3 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 25606.363999999998 3 +Q9VMC7 LP11564p 6.96 4 5 1 4047.2221999999997 3 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 39430.75557 14 +Q9VME1 FI01864p 16.46 8 16 8 86372.1374 12 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 14224.6217 6 +Q9VMF0 FI04444p 3.77 2 2 2 8449.583999999999 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 27457.43506 12 +Q9VMH8 GEO07746p1 53.17 8 19 8 305183.3316 16 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 393621.39387 27 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 938346.17525 38 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 2489525.91746 41 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 84658.33884 12 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 165150.26309999998 11 +Q9VMR9 acylphosphatase 6.93 1 1 1 424.35623 1 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 1739942.4116 52 +Q9VMT2 GEO07854p1 71.81 9 122 1 1875746.40665 92 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 578785.23497 27 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 49777.72203 8 +Q9VMV5 Viking, isoform A 10.0 19 40 19 79989.69929 31 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 3223.71793 3 +Q9VMX4 AT19154p 13.15 3 7 3 76071.9948 6 +Q9VN01 GH23891p 8.61 5 10 5 16912.68999 7 +Q9VN02 GH14561p 29.6 7 15 7 68665.29430000001 12 +Q9VN21 LD30155p 49.91 26 129 26 1690546.15257 107 +Q9VN39 RE74585p 17.58 6 13 1 21061.8305 7 +Q9VN44 FI07923p 16.56 15 37 15 143091.78703 23 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 143955.3246 10 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 89529.05585 12 +Q9VN86 AT14148p 14.19 6 10 6 18309.30673 6 +Q9VN88 LD45836p 35.98 7 17 7 75723.81906000001 13 +Q9VNA3 GH21273p 34.26 7 21 7 129673.55373 20 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 146206.51757999999 13 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 8891.28515 4 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 370.48743 1 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 55555.244 7 +Q9VNF3 RE01652p 34.63 8 31 6 416487.9849 25 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 14129.1901 8 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 3216.8496999999998 2 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 64918.6024 10 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 73229.222 2 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 39457.8195 7 +Q9VNI8 Hpr1 8.99 6 9 6 16821.12443 8 +Q9VNI9 IP18173p 7.05 1 2 1 7435.603 2 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 1730388.83062 65 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 5300.292399999999 2 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 19916.88624 9 +Q9VNW0 GEO11142p1 17.97 2 2 2 15773.9242 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 1016596.61125 75 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 799605.58071 69 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 3063.14804 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 13922.12587 5 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 3286.0862 1 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 8057.12311 5 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 126007.536 2 +Q9VP51 LD40450p 5.59 2 2 0 1163.5522099999998 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 211885.51825 14 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 22233.02104 8 +Q9VP57 LD15904p 21.79 19 45 19 342500.01613 36 +Q9VP77 LD23875p 5.73 5 6 5 4819.89532 4 +Q9VP78 GH23156p 7.79 4 6 4 12005.86688 5 +Q9VP84 IP06402p 8.47 2 2 2 427.05615 1 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 2552.85298 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 655.17065 1 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 12135.19483 5 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 11526.4332 3 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 1455608.39668 48 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 45523.19583 8 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 5072.01966 3 +Q9VPH6 LP10922p 6.08 4 6 1 7910.7559 4 +Q9VPJ0 RE58433p 17.91 8 22 2 27784.993840000003 13 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 4517.678080000001 2 +Q9VPK3 AT24407p 8.72 4 13 1 23781.13876 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 16189.97255 5 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 1173739.47844 82 +Q9VPP7 AT13539p 4.96 1 3 1 35148.978 2 +Q9VPR1 GH02075p 11.35 2 3 2 10286.759 1 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 10796.25346 4 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 42571.02005 8 +Q9VPU4 FI17537p1 5.33 2 4 2 6806.2644 2 +Q9VPU6 Galectin 5.06 2 3 2 14388.974999999999 3 +Q9VPX0 GH26159p 6.59 4 6 4 7455.7752 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 145665.40417 13 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 1298907.94094 63 +Q9VPY7 LD42035p 5.27 3 4 3 2120.83308 2 +Q9VPZ5 GH04232p 15.64 8 27 8 82228.45492 17 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 12523.681 1 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 4930882.50114 109 +Q9VQ83 RE23541p 13.29 4 5 0 29738.720800000003 5 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 34482.38116 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1629634.91456 53 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 1106042.7218 31 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 124906.8172 7 +Q9VQE0 dynamin GTPase 20.27 14 22 14 45216.70888 15 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 6012.91187 2 +Q9VQI6 LD25952p 13.89 5 8 5 30376.68014 5 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 347531.20745 20 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 15787.0142 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 683.91815 1 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 444403.40026 25 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 410.37296 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 624028.791 11 +Q9VQQ6 FI18122p1 19.21 10 17 0 119118.1207 16 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 1611797.04738 51 +Q9VQR5 IP10807p 2.5 1 2 1 3595.187 1 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 34736.2989 8 +Q9VQT7 RH15675p 14.63 1 6 1 9601.1503 3 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 77583.5395 11 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 45650.96347 10 +Q9VQX3 HL05328p 6.13 2 3 2 6722.3024399999995 3 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 1437.4613 1 +Q9VR03 AT19250p 3.98 2 2 2 2257.9746 1 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 69932.80290000001 7 +Q9VR30 RE58324p 11.81 5 10 5 42157.72576 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 45823.176 12 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 9107.59074 2 +Q9VR79 LD43683p 40.08 10 47 10 774898.86816 40 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 2307.5821 2 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 551717.07684 20 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 185891.81852 14 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 32541.519999999997 7 +Q9VRF7 GH09530p 10.57 3 5 0 14793.2542 4 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 55584.61567 7 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 9803.36694 4 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 890308.29066 37 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 73317.81032 6 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 16784.081720000002 3 +Q9VRK9 Kinesin-like protein 4.43 3 4 2 361.91522 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 3050654.1271 122 +Q9VRL1 GEO06356p1 53.1 8 34 2 823414.4283 24 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 16097.0727 4 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 5541.8735 1 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 609951.63281 52 +Q9VRP3 AT08565p 17.07 5 16 5 85726.98964 8 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 6856.473199999999 3 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 354107.6842 17 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 64847.98319 17 +Q9VRV8 Transportin-1 2.69 2 3 2 2707.51968 3 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 39766.209160000006 6 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 66665.98384 11 +Q9VS11 lysozyme 15.97 4 7 4 12024.655279999999 6 +Q9VS44 Uncharacterized protein 9.45 3 4 3 9737.2695 3 +Q9VS84 FI03225p 7.71 7 15 7 84744.3868 12 +Q9VSA9 CG7409 82.47 15 103 15 3274571.54389 76 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 59483.5818 10 +Q9VSC5 GM09977p 50.76 17 41 17 587411.10473 38 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 44430.1737 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 186460.76015999998 15 +Q9VSH5 IP09562p 9.77 2 2 2 6243.6113 1 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 18444.765 3 +Q9VSI1 LD21269p 7.6 5 7 5 19847.75518 7 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 2466.7366 1 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 333162.29994 16 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 504888.8359 28 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 950616.334 41 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 76765.74596 10 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 1833.14551 2 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 9812.012200000001 3 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 148266.8384 9 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 1355738.00899 58 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 45360.8635 7 +Q9VSR5 GM03767p 52.75 9 24 9 606581.8169099999 18 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 11628.630400000002 2 +Q9VST4 arginine kinase 4.64 2 4 2 3512.1171000000004 2 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 2037992.40323 67 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 281858.6754 21 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 39194.9397 4 +Q9VSW7 LD21662p 5.13 2 3 1 2943.08975 3 +Q9VSX2 IP01061p 30.5 6 17 6 134814.7252 10 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 3679881.11003 59 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 149063.32916 11 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 9303.4683 6 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 98942.1001 14 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 218360.07163 27 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 1031.4649 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 78409.35383 4 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 8856.5979 4 +Q9VTA8 RE35371p 12.66 3 4 3 1294.334 2 +Q9VTB0 LD35289p 17.94 8 13 8 34079.03432 12 +Q9VTB3 Guanylate kinase 52.79 13 38 13 623262.93652 31 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 810047.6766 35 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 22635.88885 6 +Q9VTC3 GH07049p 12.22 5 7 5 124954.16647 7 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 501.74762 1 +Q9VTL0 FI19917p1 10.87 4 4 4 8642.04276 3 +Q9VTP1 IP06473p 3.53 1 2 1 4108.4495 2 +Q9VTT2 LD20590p 6.65 3 4 3 5753.29122 4 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 857115.1990499999 31 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 253572.1249 13 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 70828.7054 3 +Q9VTW1 RE15265p 7.1 3 5 0 9173.6733 3 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 3002.22286 2 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 632143.34247 33 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 109812.41172999999 12 +Q9VU04 RE60105p 11.69 3 7 3 74742.71958 7 +Q9VU13 LD45603p 8.95 5 14 0 91550.87789 14 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 18715.18676 2 +Q9VU34 LD45758p 1.78 2 3 2 2206.5780799999998 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 3137748.99946 71 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 5565.4272 3 +Q9VU38 Adenosine kinase 24.64 6 14 0 258215.4209 14 +Q9VU45 LD27581p 14.79 4 24 4 40094.51221 17 +Q9VU53 Capricious, isoform A 1.85 1 2 0 3736.7747 2 +Q9VU75 RH45712p 37.04 9 31 9 88677.32209 24 +Q9VU92 Uncharacterized protein 25.79 6 13 6 90481.70956 11 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 1537473.34164 79 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 28309.775520000003 11 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 475850.91285 32 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 3677.2072 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 46584.976 6 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 96978.98449999999 5 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 52416.5827 6 +Q9VUQ7 RE36966p 6.21 4 11 4 29502.848299999998 8 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 21671.902830000003 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 28139.1424 3 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 7657.005709999999 3 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 48361.31402 12 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 239029.72379999998 5 +Q9VV13 GEO08383p1 10.71 1 1 1 37914.387 1 +Q9VV31 Uncharacterized protein 19.35 2 7 2 8994.88826 4 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 66134.89575 13 +Q9VV40 Golgin 104 2.06 2 2 2 10526.85494 2 +Q9VV42 Fat body protein 2 79.5 24 224 0 14765841.52018 175 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 11220384.991700001 195 +Q9VV47 Fat body protein 2 32.05 7 29 5 820950.9621 25 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 316102.45110999997 47 +Q9VV75 AT02348p 82.73 30 207 30 10454534.39933 161 +Q9VV76 Syntaxin 8 8.62 2 3 2 13079.712 2 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 57553.96275 8 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 78986.7253 11 +Q9VVB5 LD46723p 28.44 16 70 1 3668.7271 4 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 543284.74675 38 +Q9VVC8 LD23434p 8.08 5 10 5 47251.9713 7 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 137601.30475 25 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 2952599.21926 50 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 104773.04976000001 17 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 43894.686069999996 8 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 155744.64575999998 18 +Q9VVL5 FI11325p 21.52 7 10 7 63246.361899999996 9 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 8851496.92212 167 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 22568.791100000002 5 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 33439.23352 8 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 25831.5674 7 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 42725.11314 8 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 542603.70109 34 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1363846.00318 47 +Q9VVU2 GEO07453p1 29.53 6 31 5 308565.92875 26 +Q9VVV6 LD45843p 12.26 8 10 0 17387.84503 4 +Q9VVW7 Canopy b 12.22 3 8 3 17200.992 7 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 12398.3802 4 +Q9VVY7 FI20154p1 12.22 16 28 0 90766.79134 23 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 67012.2595 7 +Q9VW00 GH28721p 6.1 2 3 2 3272.55376 2 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 2285.3912 2 +Q9VW17 RE58036p 29.67 5 15 0 15660.50944 10 +Q9VW34 FI03450p 11.65 7 12 7 92277.6142 11 +Q9VW40 LD31235p 9.3 3 4 3 8327.6822 3 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 8115.24357 4 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 26839.3147 5 +Q9VW57 Grasp65 7.17 4 7 4 31019.274800000003 5 +Q9VW58 LD33138p 14.87 3 4 3 20389.52525 3 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 337194.46731 30 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 1486003.20647 47 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 3751804.71241 102 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 15475.12263 5 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 13682.589800000002 3 +Q9VWD0 GH23568p 19.35 6 13 6 149632.58876 12 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 2226494.52784 80 +Q9VWD5 LD35087p 12.92 5 7 5 14997.12789 4 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 327051.46768 26 +Q9VWF0 LP01149p 34.31 9 18 9 61912.426419999996 12 +Q9VWG1 LD37169p 76.5 13 51 1 152844.1736 4 +Q9VWJ3 LD05272p 12.79 2 3 2 5749.950699999999 2 +Q9VWL4 GH07340p 9.39 5 11 5 25246.80158 10 +Q9VWP2 RH57257p 77.69 12 26 12 292091.74453 22 +Q9VWQ3 LD35981p 6.12 2 2 0 7512.023 2 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 34819.65987 8 +Q9VWS1 Houki 9.33 2 3 2 48395.707630000004 3 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 225770.59527 31 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 17444.556500000002 5 +Q9VWU0 FI18411p1 2.23 1 2 1 937.88116 1 +Q9VWV6 Transferrin 63.81 41 264 41 10191566.01285 216 +Q9VWW2 GH13094p 17.43 9 19 9 22855.88453 8 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 46025.80392 11 +Q9VX08 LD10434p 4.16 2 3 2 14333.2759 3 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 9198.17151 5 +Q9VX26 Chascon, isoform A 2.65 4 4 0 5817.41917 3 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 2919478.16403 79 +Q9VX69 FI01450p 6.57 3 29 2 137958.4222 7 +Q9VXA3 LP21163p 16.85 11 23 11 105870.60928 18 +Q9VXA9 RE04047p 8.03 2 3 2 3510.934 1 +Q9VXC1 MIP06432p1 36.87 6 12 3 115263.5748 10 +Q9VXC9 trypsin 49.0 9 23 9 329771.17296 22 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 31890.887629999997 6 +Q9VXF9 AT13091p 15.5 8 19 8 59079.41618 14 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 30986.0273 7 +Q9VXG9 GH25683p 5.43 1 1 1 1409.7307 1 +Q9VXH4 RE16337p 51.96 3 7 3 45074.244900000005 5 +Q9VXH7 FI17510p1 22.59 6 21 6 248730.94903999998 17 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 275198.71641 22 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 1839049.71363 39 +Q9VXJ7 GH03748p1 11.25 12 13 12 17229.85397 9 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 87793.23976 11 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 13547.47936 4 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 3274.7112 1 +Q9VXM4 LD12946p 61.29 13 44 13 815177.20394 39 +Q9VXN1 LD03728p 9.22 3 5 3 3604.3325 2 +Q9VXN3 LD07988p 17.42 8 15 8 60203.147639999996 13 +Q9VXP3 GH05406p 12.21 7 8 7 12687.6085 5 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 30367.4985 4 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 9880.45251 4 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 508866.34312 41 +Q9VXR9 FI03680p 10.91 4 5 4 11086.6568 5 +Q9VXV1 RH52220p 19.02 4 5 4 7996.27934 5 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 137529.10437 19 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 308580.54524999997 17 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 120330.75323 17 +Q9VY05 GH11762p 12.2 8 19 8 69109.56367 13 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 17640.1353 8 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 137594.1538 14 +Q9VY27 Nucleoside diphosphate kinase 18.54 3 3 3 775.45416 1 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 12343.2349 5 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 45039.7583 6 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 13495.6802 3 +Q9VY76 AMP deaminase 7.13 7 10 0 20037.9562 7 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 88143.1631 6 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 86093.7078 8 +Q9VY92 GEO07753p1 73.91 8 47 8 1101839.20233 34 +Q9VYA1 RE18811p 8.56 3 6 2 18573.775999999998 6 +Q9VYB2 LD19061p 2.83 2 2 2 2710.0904600000003 2 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 819.9715 1 +Q9VYF0 GM09012p 14.93 4 10 4 17931.91546 7 +Q9VYG8 CG15717-PA 15.08 4 6 4 20645.752 4 +Q9VYJ1 FI12805p 7.33 5 6 5 11227.5779 4 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 21923.66117 9 +Q9VYM0 CG2555-PA 14.21 3 6 1 4684.71793 3 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 3055.8473400000003 3 +Q9VYN1 protein kinase C 0.84 2 18 1 548194.82704 7 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 4348.37176 2 +Q9VYS2 GH09980p 7.06 6 7 6 23513.99207 6 +Q9VYT0 RE04130p 30.84 7 9 6 166501.2889 9 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 10065.56024 5 +Q9VYT3 FI23714p1 3.57 5 7 5 8213.55948 4 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 99646.01826000001 5 +Q9VYU9 RH17287p 45.02 7 14 7 115782.15392 13 +Q9VYV4 Amun, isoform A 4.91 3 5 3 13481.789499999999 4 +Q9VYV6 GEO09033p1 23.68 3 3 3 18849.79913 3 +Q9VZ00 FI19420p1 19.19 18 25 0 68728.36688 12 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 468148.89169 21 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 203475.69186 29 +Q9VZ24 GEO11412p1 44.25 7 77 7 3346077.1216 65 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 335.0895 1 +Q9VZ34 RH72958p 2.64 2 5 2 8521.40946 3 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 2554.173 1 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 95197.43154 15 +Q9VZ59 LP02042p 6.12 1 4 0 28938.45622 4 +Q9VZ66 SD22308p 35.37 5 12 5 47200.14892 8 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 13398.75748 8 +Q9VZ71 RE01453p 9.04 2 3 2 3376.3625 1 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 15902.626 5 +Q9VZE4 RE70333p 17.02 8 19 8 72992.34897 15 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 122255.66200000001 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 4425.3623 3 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 314368.24795 13 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 2529651.27928 51 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 159025.84286 13 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 2546392.8626 44 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 7809.9912699999995 7 +Q9VZI1 Transgelin 82.98 14 100 1 3108101.3153 73 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 30257.230499999998 6 +Q9VZJ2 GH27759p 16.59 7 14 7 61533.278600000005 10 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 9770.097609999999 6 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 291157.6327 23 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 13239.266380000001 7 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 81003.6847 16 +Q9VZV2 Chitinase 7 7.7 7 9 7 26220.687700000002 6 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 4384.9435300000005 3 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 14642.2441 5 +Q9VZX6 LD06441p 7.98 3 4 3 21861.1403 3 +Q9VZY0 LD45195p 17.62 5 10 5 64175.8147 5 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 6252.09346 3 +Q9VZZ5 GEO12033p1 28.67 4 10 4 129637.72260000001 7 +Q9VZZ6 CG16985 protein 32.21 4 10 4 95012.6947 3 +Q9W022 GEO01508p1 64.08 8 33 8 954750.38122 30 +Q9W073 RH22148p 9.41 2 2 2 7761.801640000001 2 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 752430.16542 15 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 261489.74875 15 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 28450.11434 6 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 20936.26755 4 +Q9W095 glycerol kinase 2.78 2 2 2 4260.96714 2 +Q9W0A8 FI01658p 18.77 5 15 5 122402.56844 15 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 288970.28566 24 +Q9W0C3 GH11843p 61.22 12 26 12 321434.29032000003 19 +Q9W0D3 GH15728p 1.78 3 4 3 4429.8798 2 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 19456.3181 3 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 93573.72467 14 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 272128.17487 18 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 18735.00768 4 +Q9W0J9 GH07301p 41.93 10 20 9 237863.30225 14 +Q9W0K9 LD10220p 9.38 2 2 2 12518.738 1 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 12259.9048 4 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 79028.45874 15 +Q9W0M5 Protein DPCD 8.56 2 4 2 5594.3587 4 +Q9W0N6 LD27967p 16.52 5 9 5 15863.64588 8 +Q9W0P4 GEO05053p1 15.45 2 4 2 14169.08306 4 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 33079.60391 9 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 7843.318 1 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 47088.3712 12 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 10545.5305 2 +Q9W0U0 glycerol kinase 2.23 1 1 0 5367.8755 1 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 57860.22601 12 +Q9W0X1 GH15894p 1.58 1 1 1 9360.223 1 +Q9W0X2 GEO07322p1 12.4 2 2 2 13526.89803 2 +Q9W0X3 LD24657p 8.75 3 9 1 28934.47516 7 +Q9W0Z5 LP09747p 10.07 6 23 6 45835.70657 17 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 2873502.30498 43 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 157236.97 6 +Q9W136 Uncharacterized protein 39.13 6 15 6 165887.35276 10 +Q9W140 Regulatory protein zeste 6.4 3 5 3 3325.71976 2 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 3481.1377 3 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 354.22046 1 +Q9W158 LD36772p 7.49 3 11 3 40233.20083 9 +Q9W199 GEO07594p1 14.84 3 3 3 3552.4043 2 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 438819.30435 27 +Q9W1C8 LD24355p 16.3 6 14 6 20618.4742 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 36641.93083 5 +Q9W1F2 FI07217p 5.93 2 4 2 19135.971999999998 2 +Q9W1F7 IP15825p 25.14 10 36 10 511964.18172 31 +Q9W1F8 GEO08248p1 18.05 3 10 3 73056.8552 8 +Q9W1G7 LD21576p 24.05 7 13 7 179590.6324 8 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 41569.3935 7 +Q9W1H6 GH04238p 8.46 2 5 2 136564.6862 4 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 347502.948 41 +Q9W1I8 LD03592p 30.28 8 21 8 74028.45476000001 15 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 15146.1298 6 +Q9W1L8 GH11818p 5.92 2 3 2 12106.233 1 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 4027.0867 4 +Q9W1N3 Levy, isoform A 50.46 5 24 5 823143.01338 21 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 5696.917 1 +Q9W1R0 RH49821p 6.07 3 5 3 10119.058229999999 5 +Q9W1R3 Golgin-245 14.24 21 27 21 85167.26352 23 +Q9W1V8 CG9893 protein 3.65 1 2 1 38141.638 2 +Q9W1W4 RE45066p 22.13 8 19 8 91118.92565 15 +Q9W1X5 GH04942p 13.03 18 41 3 209666.53396 31 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 1211980.76352 39 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 355607.45369999995 8 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 18350.5617 5 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 6951.363359999999 3 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 120895.26063 23 +Q9W257 RH13652p 6.99 2 7 2 156821.327 6 +Q9W258 Babos, isoform A 27.55 6 28 6 291283.9204 20 +Q9W259 FI23916p1 14.71 5 10 5 91875.3082 6 +Q9W260 GH03113p 15.4 9 26 9 83674.06745 23 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 26761.8097 3 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 93553.32168 26 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 7884.42207 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 187957.19514 14 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 6829.7426 2 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 20573.0898 2 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 32247.02664 7 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 11299.48 1 +Q9W2L6 RH02475p 28.13 18 55 18 776472.68375 43 +Q9W2M0 LD23155p 23.8 18 32 18 94625.9071 26 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 3160932.41558 58 +Q9W2M9 FI16623p1 6.47 1 3 1 1515.6415200000001 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 26989.020220000002 5 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 132393.37997 7 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 208246.27529999998 11 +Q9W2V2 FI20035p1 3.86 3 3 3 19445.792500000003 2 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 8471442.346649999 129 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 107876.00228 17 +Q9W306 GEO08256p1 14.05 2 4 2 46656.35323 4 +Q9W308 GH05731p 27.17 4 9 4 80191.16584 8 +Q9W309 GEO08445p1 29.63 7 11 7 181489.33995 9 +Q9W314 GH14088p 9.57 4 9 4 30286.66446 7 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 34720.1919 10 +Q9W330 Phosphotransferase 24.4 11 31 3 780141.6626 29 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 127495.073 5 +Q9W337 GH19985p 21.56 4 12 4 57324.532849999996 9 +Q9W350 C11.1, isoform A 2.12 3 3 3 2693.779 3 +Q9W370 GEO12084p1 44.26 4 19 4 218640.20869 15 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 23685.59062 6 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 10050.09218 8 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 453174.67055000004 37 +Q9W396 FI06908p 12.08 3 5 3 19321.741 3 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 29434.1816 5 +Q9W3C3 LD10016p 17.41 8 12 8 30559.64525 8 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 10759.8419 4 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 27878.5641 8 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 25881.10814 7 +Q9W3H4 LD36273p 62.35 12 36 12 416430.13538 34 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 14711.492999999999 2 +Q9W3J6 FI06457p 12.29 4 4 4 4147.33625 2 +Q9W3K6 LD35927p 5.12 4 6 4 34941.053439999996 6 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 425514.93777 24 +Q9W3L4 GH20802p 12.56 6 12 6 31949.92267 7 +Q9W3M7 RNA helicase 9.1 8 19 8 32949.77325 11 +Q9W3M8 LD34211p 32.16 7 17 7 154432.6248 11 +Q9W3N1 RH59310p 7.17 2 3 2 3183.35612 3 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 94629.0078 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 408619.63711 26 +Q9W3Q0 FI07418p 18.35 4 11 3 9955.752700000001 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 54171.432 5 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 26954.92328 8 +Q9W3T9 GM01152p 50.42 10 21 10 158645.24476 16 +Q9W3U9 CG14434-PA 36.9 6 15 0 39557.86913 11 +Q9W3V2 FI19713p1 4.82 4 5 4 20054.58774 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 4177.809 1 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 28884.86448 6 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 1423227.25496 50 +Q9W3X8 RH42690p 13.47 5 10 5 6166.7494 5 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 113433.2365 10 +Q9W3Z4 GH18625p 2.43 1 3 1 3525.4897 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 1999141.3017 48 +Q9W403 LD24968p 11.05 6 14 6 18401.16517 11 +Q9W404 GH10714p 10.34 5 10 4 12664.068 5 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 12702.0609 3 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 368244.43274 36 +Q9W425 Rabconnectin-3A 0.7 3 3 3 7616.291499999999 3 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 1229131.95302 64 +Q9W461 LD23868p 10.93 5 10 5 28133.76918 7 +Q9W482 Lin-52, isoform A 19.11 3 3 3 10472.0597 3 +Q9W483 GH18971p 15.83 5 8 5 32965.49691 6 +Q9W486 LD13361p 5.65 3 4 1 9413.16403 4 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 53549.9049 10 +Q9W4A0 GH11193p 24.87 5 10 5 42167.51104 9 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 11648.92752 3 +Q9W4C2 lysozyme 18.42 4 5 4 38630.8558 5 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 37107.16985 9 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 19800.47546 4 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 317311.90268 17 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 4303.4901 4 +Q9W4N8 LD30122p 72.86 14 57 1 1851925.4264200001 43 +Q9W4U2 RH09070p 31.33 6 19 6 79314.08621000001 14 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 9925.206600000001 4 +Q9W4W5 RE47284p 13.77 5 10 5 95492.70684 10 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 75785.55251 21 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 50347.28016 11 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 7984.4099400000005 4 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 3801.86276 3 +Q9W503 RH61816p 23.76 8 17 8 68290.82591 13 +Q9W5B4 GH18858p 20.38 6 12 6 390115.73835 8 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 1846.3531 3 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 876.5212 1 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 13775.5203 8 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 30112.218269999998 7 +Q9W5W7 GH19483p 6.06 4 6 4 23206.057699999998 6 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 723114.32476 41 +Q9W5X0 LD21953p 23.88 5 25 0 19210.719 3 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 69732.0355 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 52023.93568 11 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 1670262.35509 41 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 19178.71044 3 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 128300.47904 18 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 169678.2505 16 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 1998789.56422 72 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 253265.77833 39 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 103711.52905 23 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 3397588.1482800003 112 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 9497.5936 6 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 20326.2702 6 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 1969051.53415 56 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 36296.875400000004 5 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 297020.26317 35 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 4107945.79718 69 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 3325.6477999999997 2 +R9PY51 Uncharacterized protein 34.95 5 42 5 2915893.8075 24 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 2567291.98045 113 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 72272.09685 10 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 49441.02364 5 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 9039.636 1 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 23091.6161 6 +X2JB48 ADP/ATP translocase 66.22 21 145 1 2541983.94382 104 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 77171.79023 24 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 17895.24801 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 7702605.73399 114 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 12278.6121 3 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 5495.1402 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 3762.4372 2 +P10674 Fasciclin-1 43.71 29 142 1 628.8503 1 +Q08605 Transcription activator GAGA 6.37 3 3 0 7529.6365 2 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 5050.5203 2 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 3302.47435 2 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 5456.4883 1 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 3193.3785 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 2781.453 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 7633.12978 3 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 18372.584 2 +Q9W568 Protein halfway 5.56 3 4 0 1023.12624 2 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 9.68 2 2 1 668.00464 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 5953.2153 1 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 27899.3481 3 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 1025.3965600000001 2 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 2479.5383 2 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 44805.914 1 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 17553.334 1 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 24282.9797 3 +A1Z7M0 Space blanket 5.71 2 4 2 10683.2024 4 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 30131.7283 4 +B5RJS0 IP20241p 2.69 3 3 0 2704.0408 1 +E1JJM0 FI20063p1 14.83 10 14 0 61530.3862 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 2925.18214 3 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 9316.1823 4 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 10613.3127 2 +Q0E8R1 FI07211p 29.47 10 55 0 7401.4971000000005 2 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 61108.9994 17 +Q7JWH6 RE61424p 6.99 2 3 2 6071.353 1 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 2888.94353 3 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 43827.43954000001 5 +Q7K1W4 Epoxide hydrolase 4.06 2 2 2 376.97412 1 +Q7KVW1 RE73736p 4.94 3 4 0 11499.5111 4 +Q7PLV6 FI02158p 1.7 2 2 2 1745.9958 1 +Q8I062 GH23305p 80.95 19 194 1 13901.034599999999 2 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 5500.347 1 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 2505.98488 2 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 3647.2418 2 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 9543.679 1 +Q9VG79 Xaa-Pro dipeptidase 4.89 3 3 3 518.41754 1 +Q9VHX1 LD44032p 1.41 1 1 1 477.86853 1 +Q9VKC1 IP16805p 2.72 1 1 1 13192.58 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 380.1465 1 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 3933.0661899999996 3 +Q9VTE1 Immediate early response 3-interacting protein 1 16.25 1 1 1 429.9315 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 5936.575940000001 2 +Q9VTY1 LD40136p 5.69 2 3 2 1438.7164 1 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 972.75977 1 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 1596.9941 1 +Q9W2N5 GH10162p 3.47 2 4 2 3354.8084 2 +Q9W362 La-related protein 7 1.51 1 2 1 8238.1736 2 +Q9W525 LD08195p 3.8 2 4 1 3700.2522 1 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 10337.942340000001 3 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 807.29315 1 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 5474.919 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 11671.48094 2 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 1074.22824 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 2273.0215 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 757.8999 1 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 2948.6306 1 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 47714.9283 6 +E1JJ83 Os-C, isoform B 7.19 1 4 0 2988.29087 3 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 58807.73635 20 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 5006.925899999999 2 +O46231 FI18705p1 66.21 20 67 1 12489.6133 2 +Q6IDE2 GH07226p 2.0 1 1 1 9153.174 1 +Q7JVH0 Splicing factor YJU2 2.7 2 2 2 378.11197 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 40356.727000000006 2 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 1416.92864 2 +Q8IQ80 GH06117p 1.41 1 3 0 1539.4893 1 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 7130.816180000001 2 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 3825.08585 3 +Q9W5C1 RE02292p 1.13 1 1 1 931.75543 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 4203.321 2 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 2064.357 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 10394.400099999999 2 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 15682.6241 3 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 15518.9983 3 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 3757089.87165 120 +E1JH70 Kank, isoform E 1.18 1 1 0 565.37225 1 +M9MRD4 Muscle-specific protein 300 kDa, isoform B 3.84 34 44 0 544.9939 1 +M9NFP1 Jim, isoform E 1.94 2 2 0 6387.3357 2 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 2299.2854 1 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 5925.5684 1 +Q8IQH6 Nebulosa, isoform A 2.12 1 1 0 452.3665 1 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 975.9571 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 55806.703030000004 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 874.3335 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 35384.6955 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 228273.714 2 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 7555.4722 3 +Q9VWE8 Actin-related protein 10, isoform A 2.65 1 1 1 501.7389 1 +Q9VZF0 LD44732p 3.61 1 1 1 939.37286 1 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 498.3703 1 +Q9W249 IP21806p 4.27 2 3 2 2285.513 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 5458.5111400000005 4 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 17743.4193 2 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 1999.0155 1 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 506.7078 1 +A0A6F7R657 Widerborst, isoform H 13.26 9 30 1 827.2907 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 63123.0878 3 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 8100.544 1 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 2308.1555 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 2046.1082 1 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 450.34302 1 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 788.90845 1 +Q9VV37 GEO13385p1 10.1 1 7 1 171417.50089999998 4 +Q9VVX6 BET1 homolog 6.84 1 1 1 6732.288 1 +Q9W152 RH33060p 5.63 1 2 1 751.6573 1 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 3041.4038 1 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 2142.2354 1 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 3045.2698 1 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 946.34863 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 1 0 349.7364 1 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 716.8406 1 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 20586.078 2 +Q9VB09 IP04131p 12.1 2 3 2 5409.4379 2 +Q9VHN8 LD37279p 1.54 1 1 1 6887.731 1 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 6832.592 1 +Q9W5E7 LP07417p 11.4 1 1 1 1922.894 1 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 459.65485 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 55114.5441 7 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 3982.5134500000004 2 +A1ZAU6 FI05912p 3.24 2 2 1 516.10693 1 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 9889.2536 2 +Q7K3Z8 GH01208p 2.35 1 2 1 4324.37302 2 +Q9VAN8 FI15955p1 6.08 2 2 2 4109.0386 1 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 6196.2954 2 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 13478.001699999999 2 +Q9VV55 GH08429p 3.98 2 3 2 4240.8042 2 +Q9W542 LD07342p 1.12 1 1 1 482.9908 1 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 2217.3031 2 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 19364.717 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 12.08 7 16 1 599.3528 1 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 8166.729 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 13984.2531 3 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 24521.548029999998 5 +A1Z840 Cdc2-related kinase 4.39 2 2 2 950.74454 2 +Q9VXD7 GH04692p 5.61 2 3 2 507.70114 1 +Q9W3S4 LD46272p 5.26 2 3 2 3322.8718 3 +A8JQX3 Nocturnin 3.58 2 2 2 678.7181 1 +A8JNM1 Formin 3, isoform B 1.69 3 3 0 400.2293 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 1260.25345 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 5439.12407 3 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 2725.1719 1 +O76857 BCL7-like 13.64 2 3 2 2601.2772999999997 2 +Q7JY89 RE35124p 25.0 2 5 2 4572.4214 2 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 5472.71974 4 +A8JUP7 Serine protease Hayan 2.67 2 3 2 11795.091 3 +P07664 Serendipity locus protein delta 4.16 2 3 2 15396.8505 3 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 5502.9091 3 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 2435.9094 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 20161.7184 7 +Q8IQU7 825-Oak 17.05 2 3 0 12484.9928 2 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 60944.02615 20 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 2225.66414 2 +Q9V3J8 Protein will die slowly 3.88 1 2 0 3994.018 1 +Q7K0D3 CG12909 protein 6.76 2 3 2 7593.8725 3 +Q9VSK1 GH09510p 1.06 1 1 1 5669.5166 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 14214.326 1 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 4810.911 2 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 4793.0283 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 61410.049 13 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 3561.8886300000004 2 +Q8SXC0 GH10306p 2.86 1 2 1 5633.161099999999 2 +Q9VQT5 FI01556p 13.92 1 4 1 1875.191 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 4687.4541 2 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 24781.225 3 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 18467.72 1 +P45884 Attacin-A 5.36 1 1 0 4385.4272 1 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 1914.87684 3 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 7697.3082 3 +Q9VV27 MIP11526p 7.63 1 1 1 8122.26 1 +O76324 Discs overgrown protein kinase 7.95 2 3 0 2759.68816 2 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 3051.851 1 +O18680 5-aminolevulinate synthase 3.34 2 2 2 1591.4711 1 +Q29QE1 GH15984p 0.57 1 2 0 6051.3678 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 2073.2603 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 4821.1798 2 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 1790.0278 1 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 235614.37269999998 2 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 9964.312199999998 2 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 5479.3246 3 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 12184.6713 2 +E1JGY7 Hulk, isoform G 10.66 12 17 1 296.24207 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 8908.8559 2 +Q9VF46 GH25158p 7.34 2 7 2 16207.3757 6 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 15377.9375 2 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 12788.1888 2 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 2595.83035 2 +Q7KST5 L-serine deaminase 5.06 2 2 0 346.80377 1 +A8JNU1 adenylate cyclase 1.02 1 3 0 4135.5226999999995 2 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 861.24835 1 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 10231.007 2 +Q7JW46 RE25483p 9.0 1 1 0 16584.617 1 +Q7K010 Tetraspanin 8.64 2 4 2 8094.31897 4 +Q9VUR4 FI11905p 19.75 6 14 1 3494.4294 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 2265.418 1 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 817.22644 1 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 2841.0703 1 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 6243.38205 3 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 1823.2332 1 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 4291.4624 1 +A8JNV2 Uncharacterized protein 10.71 1 3 1 9245.6077 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 2058.7427 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 12257.130000000001 2 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 3992.5632 2 +O46099 EG:8D8.2 protein 0.63 1 1 1 917.2657 1 +Q7JZZ3 RE03883p 6.99 2 3 2 10645.8015 3 +Q8SWU4 RE25571p 17.08 5 12 1 4600.405 1 +Q8SWX4 Aminopeptidase 2.39 2 2 2 547.9728 1 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 19500.1305 2 +O16043 Anon1A4 9.84 2 3 2 3487.3459000000003 2 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 3294.4714 1 +Q8SXW3 GV1, isoform B 13.33 2 5 0 21008.4162 4 +Q8IRN0 FI06485p 3.21 1 2 1 4957.227999999999 2 +Q9VHS6 Copper transport protein 6.32 2 3 2 1272.17292 2 +D8FT19 MIP22288p 4.05 2 3 0 6912.171829999999 3 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 5672.1086000000005 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 3379.2104 1 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 3.23 1 2 1 1926.5653 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 3028.606 1 +Q9VT15 GH14734p 8.33 2 4 2 2693.677 2 +A1A750 GEO11067p1 6.93 1 1 1 7645.946 1 +Q9VF83 LD33178p 4.33 2 4 2 8251.73642 4 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 34002.5178 3 +Q9W590 Large subunit GTPase 1 homolog 1.49 1 1 0 733.42535 1 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 2197.843 1 +Q9VWA7 Golden goal 0.79 1 3 1 11301.471 1 +M9PCK0 Decima, isoform D 9.87 2 3 0 9264.57445 2 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 19335.9762 2 +Q9VPA9 LD24894p 1.45 1 2 1 4957.7835 2 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 5459.9116 1 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 843.2047 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 4959.6974 2 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 7099.8949 3 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 2150.857 2 +Q7KV26 Kinase 1.45 1 1 0 4135.055 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 3779.1292 1 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 21109.535 1 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 522.0764 1 +Q7K4Y8 GH22690p 3.14 2 2 2 447.73508 1 +Q9VCQ7 LD40758p 2.61 2 3 2 2220.062 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 3370.1833 1 +Q9VDL4 LP04613p 2.72 1 3 1 3654.31323 3 +Q9VS55 CTCF 2.2 2 3 2 2278.6514 1 +Q9W1Q4 Uncharacterized protein, isoform D 16.57 4 24 1 348.40097 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 5027.44103 4 +Q9VJ06 LD05576p 4.55 1 1 1 408.4415 1 +Q9VGE8 Tachykinins 2.42 1 2 0 9544.778 1 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 524.9639 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 2 1 733.8017 2 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 7138.4982 2 +Q7YU81 Protein charlatan 0.66 1 2 0 6905.49766 2 +Q9VHV3 FI02011p 1.5 1 1 1 3295.436 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 557.71277 1 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 2333.7057 2 +Q7K8Y3 IP16419p 17.86 7 17 0 26417.12732 12 +Q8STG9 DSec61alpha 4.2 2 3 2 427.3845 1 +P22812 Protein Tube 3.9 2 2 2 3070.79 1 +Q9VJ45 UDP-glucuronosyltransferase 3.48 2 2 2 474.52737 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 916.93317 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 10734.567 1 +Q9VZX8 AT02196p 2.89 1 1 1 995.0263 1 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 4320.2914 2 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 4745.5415 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 7124.531800000001 2 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 3794.121 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 732.4615 1 +Q9W3F7 Mitoguardin 4.19 2 3 2 722.09753 1 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 4154.102 1 +Q9W4F9 IP01388p 3.65 2 3 0 3309.59827 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 3807.0913 1 +Q7KMJ6 RNA-binding protein spenito 1.13 1 1 1 600.2659 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 4022.002 2 +A1ZAX6 FI02012p 1.2 1 1 0 669.05304 1 +F0JAQ9 MIP27169p 5.85 2 3 0 900.5744 1 +P18289 Transcription factor Jra 3.11 1 1 0 8011.177 1 +Q9VMX1 KIF-binding protein 2.83 2 2 2 5305.9883 1 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 4381.67667 2 +Q9VR55 LD29159p 8.71 1 3 1 3945.2973 2 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 609.62476 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 2256.661 1 +Q9BLX1 PDGF- and VEGF-related factor 1, isoform B 7.64 2 2 0 890.57212 2 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 704.4638 1 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 5931.357959999999 5 +Q8IR92 Uncharacterized protein, isoform A 8.58 7 12 0 450.92508 1 +Q7KVT8 Orion, isoform B 3.1 2 2 0 929.0508 1 +Q9VV26 GEO12049p1 6.84 1 4 1 43135.967000000004 4 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 396.0809 1 +A1Z971 Uncharacterized protein, isoform A 1.0 1 1 1 957.0456 1 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 14625.9468 4 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 3617.8933 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 1224.84427 2 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 1179.30294 2 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 5653.8574 1 +A1ZAG3 Protein G12 8.33 1 2 1 1966.7977 2 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 7413.129 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 8277.537 1 +Q7K1R6 LD46221p 7.98 2 3 2 554.5825 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 24846.831 5 +Q6IJE8 HDC15077 17.04 2 5 2 36506.2579 4 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 3 0 835.3568 1 +Q9VVI0 SD09427p 1.81 1 1 1 2549.2708 1 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 7920.728099999999 2 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 11237.045300000002 2 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 4770.18 1 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 841.96783 1 +Q9W494 Crossveinless 8.17 2 4 2 10385.372 2 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 2068.036 1 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 3871.8013 2 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 16163.3539 4 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 65.12 25 150 0 498.771 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 3050.1128 1 +Q95NH6 Attacin-C 6.64 2 2 2 1967.735 1 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 24364.504 1 +Q8MRQ1 GH06222p 1.49 1 1 0 878.63654 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 1970.404 1 +Q9VPR6 Kinase 2.59 1 1 1 952.4288 1 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 1216.6792 1 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 3054.60987 2 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 11455.7726 3 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 1180.8398499999998 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 512.7717 1 +Q9VAM2 Aminopeptidase 2.71 2 2 2 387.5329 1 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 473.14975 1 +Q9VC27 Nicastrin 1.15 1 1 0 4327.1523 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 913.3917 1 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 4772.181 1 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 2965.69228 3 +E1JIS4 Uncharacterized protein 13.33 2 2 2 508.11502 1 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 8022.0317 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 1258.7377999999999 2 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 2960.4545000000003 2 +Q7JX82 GH21964p 6.85 2 3 2 712.4337 1 +Q7K490 SD03973p 4.07 2 2 2 2698.7036 1 +A0A0B4LG67 Uncharacterized protein, isoform E 4.2 2 3 0 1445.03096 2 +O76876 Protein sex-lethal 3.71 2 3 0 7703.171259999999 3 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 62456.008 1 +M9PGK1 Glycosyltransferase family 92 protein 3.52 2 2 0 448.50574 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 4121.8553 2 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 14070.848 1 +Q02936 Protein hedgehog 2.34 1 1 1 4771.915 1 +Q6NN09 ATPase protein 9 5.07 1 11 1 179765.31478 10 +O76874 SD17974p 1.93 2 3 2 515.22565 1 +Q9VEB2 LD28404p 8.58 2 2 2 20157.994 1 +Q9VGL2 GM08392p 2.65 1 1 1 4267.6763 1 +P41964 Drosomycin 31.43 2 2 0 10357.6463 2 +Q9VAX9 MIP05919p 7.94 2 2 2 19353.783 1 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 458.2139 1 +Q9VL21 LD11652p 4.15 1 1 1 406.55612 1 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 631.0877 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 1641.3322 1 +Q58CJ5 GH01093p 2.34 2 2 0 4945.83 1 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 28213.994899999998 3 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 4813.13975 3 +Q9VK20 LD18447p 4.59 2 3 2 5964.8938 2 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 23108.5693 2 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 2526.964 1 +Q9VX38 CG8326-PA 6.33 2 2 2 18326.18925 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 1827.0192 1 +Q9V426 LD07162p 5.51 2 3 2 451.33157 1 +Q0E985 RH74701p 13.33 1 1 1 4398.9116 1 +Q9VCC2 RE50040p 4.86 2 2 2 10935.495299999999 2 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 412.75134 1 +P04657 Cytochrome c-1 17.14 2 11 0 9153.141 2 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 659.26575 1 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 5045.0776000000005 2 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 10133.57 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 832.51825 1 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 4013.7666 2 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 1624.9103 1 +Q4U2G8 FXNA-like protease 1.8 2 3 0 756.05524 1 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 3746.5574699999997 2 +Q9VGZ2 FI06805p 3.86 1 2 1 10522.0357 2 +Q7JY80 M-spondin, isoform A 2.0 1 1 1 428.53806 1 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 1016.9119499999999 2 +E1JHX0 MIP29328p 3.76 1 1 1 3157.436 1 +Q9V451 Mst85C, isoform A 4.96 1 2 1 4416.76026 2 +D6W4V3 MIP19557p 4.74 1 2 0 2352.62023 2 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 2941.9182 1 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 4359.1211 2 +Q9V9R3 adenylate cyclase 0.6 1 1 1 2594.2166 1 +Q9VX35 LD36501p 5.06 2 2 0 2721.0777 2 +Q9VUE5 LD17962p 1.45 2 3 1 6807.8240000000005 2 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 961.3535 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 5331.17167 3 +Q7KJ73 Tetraspanin 3.95 1 1 1 816.14624 1 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 10318.223059999998 2 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 2742.3357 1 +Q8IRK0 GH04558p 1.52 1 1 1 13740.452 1 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 2388.782 1 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 2731.9807 1 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 502.65915 1 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 13441.445 1 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 14584.413 2 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 718.6725 1 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 2272.6995 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 810.23926 1 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 2304.6936 1 +Q9W1H3 FI21285p1 3.25 1 1 1 1870.7877 1 +Q9VV21 GEO07736p1 16.26 1 1 1 30806.414 1 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 2202.1404 1 +Q6II41 HDC19846 30.3 1 1 1 1616.5316 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 777.2886 1 +Q9W2F6 RE36793p 7.09 1 1 1 5072.032 1 +Q9VPW8 Protein pinocchio 4.42 1 1 1 482.57562 1 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 1249.90993 2 +Q9VDM7 Trimethyllysine dioxygenase, mitochondrial 2.2 1 1 1 533.67163 1 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 59209.92588 10 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 6031.7705 1 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 1584.39207 3 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 9881.9037 2 +A8DYV9 GEO02589p1 10.53 1 2 1 10353.6028 2 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 759.0413 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 10192.646 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 3491.1888 2 +Q7K1H9 GH07575p 3.69 1 3 1 10278.79314 3 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 5956.4508 2 +Q7JQN4 RNA helicase 1.66 1 1 1 485.98865 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 512.26843 1 +B7Z0J4 COX assembly mitochondrial protein 13.75 1 1 1 658.0475 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 2 1 317.485 1 +Q9VEA6 Protein AAR2 homolog 3.17 1 1 1 398.9806 1 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 9614.0475 2 +Q9VGJ7 FI23918p1 1.01 1 1 1 403.5471 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 4490.1181 3 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 316.54224 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 14748.94 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 54868.0012 2 +Q9W551 GEO02601p1 7.55 1 1 1 3185.6838 1 +A1A753 IP17594p 10.11 1 1 1 6769.5244 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 3490.315 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 9371.0683 2 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 2996.7683 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 811.2093 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 13045.677500000002 3 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 1633.6019 1 +Q9BMG9 Beaten path IIa 3.94 2 4 1 6137.180899999999 2 +Q95RU0 Protein cueball 1.55 1 1 1 3475.6885 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 530.88654 1 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 65819.70164 2 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 894.64264 1 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 1883.2306 1 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 471.51605 1 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 106299.15347 2 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 1040.78246 2 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 5574.1678 2 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 1778.9856 1 +Q9VZR5 RE46159p 4.02 1 1 1 2381.664 1 +Q9VE49 LP06937p 1.3 1 1 1 2168.4998 1 +Q9VQU0 BPTI/Kunitz inhibitor domain-containing protein 8.53 1 1 1 486.35782 1 +Q8T092 LD21421p 2.45 1 2 1 928.9295 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 2485.0715 2 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 2820.129 1 +Q7K4G8 LD40944p 1.7 1 1 1 639.9372 1 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 3886.9124 1 +Q9VBA5 GM18993p 2.15 1 1 1 982.2435 1 +Q9VKE7 GH09228p1 10.39 1 2 1 570.4471 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 460.00018 1 +Q7KA66 Serpin 43Aa 2.56 1 2 1 5528.443 2 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 2958.5659 2 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 4919.555 1 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 1908.3911 1 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 3180.3457 1 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 9966.162 1 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 984.4835 1 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 2731.0652 1 +Q9VJM4 Beaten path Ic 2.25 1 1 1 2875.015 1 +Q6NMT8 AT01712p 1.8 1 1 1 973.5388 1 +Q9VX17 LD36024p 3.1 1 1 1 762.90576 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 690.90265 1 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 4530.0957 1 +P36192 Defensin 8.7 1 3 1 26842.9104 3 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 665.3285 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 5716.7436 2 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 2595.7161 2 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 102886.294 2 +Q9W440 Protein THEM6 5.7 1 1 0 359.43323 1 +Q0E908 Hillarin 0.86 1 1 1 476.42947 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 202367.899 3 +Q5BIL9 SD21168p 1.63 1 2 0 7907.222 2 +A1Z6H0 Kune-kune 2.65 1 4 1 14554.6481 3 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 3856.5163000000002 2 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 4960.0578000000005 2 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 1311.6083899999999 2 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 2819.0457 1 +Q9VHJ4 GH04846p 2.25 1 1 1 2416.3357 1 +Q9W226 GEO07239p1 5.88 1 2 1 2983.8457000000003 2 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 2818.6271699999998 2 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 703.1366 1 +Q9I7U1 LD36721p 5.29 1 1 0 6730.043 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 2605.5452 1 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 92193.541 2 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 17870.917429999998 2 +Q9V412 STING ER exit protein 4.45 1 1 0 461.1153 1 +Q8MRQ2 GH05923p 2.74 1 1 0 6304.299 1 +Q8SY53 GH11935p 2.73 1 2 1 1925.67596 2 +Q7JVN6 GH17672p 2.24 1 2 1 1489.9443 2 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 860.7718 1 +Q9VDZ9 FI04548p 5.49 1 1 1 414.86588 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 4049.158 1 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 888.37305 2 +Q9VGW5 GEO08194p1 5.8 1 1 1 1896.2764 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 510.01666 1 +A0A0B4LHK8 Uncharacterized protein, isoform D 2.93 1 2 0 364.9511 1 +O77237 Protein pellino 1.65 1 1 0 1571.225 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 14183.892800000001 2 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 545.9463 1 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 5711.7014 2 +Q9VGG0 LD47774p 1.67 1 1 1 514.64636 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 597.22107 1 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 23451.408 1 +Q8SWR2 Bicaudal D-related protein homolog 1.94 1 1 1 561.7511 1 +Q9W1H1 GH17155p 3.28 1 1 1 656.93713 1 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 7619.061 1 +Q9VKX8 Defective proboscis extension response 19, isoform A 2.86 1 1 1 359.5412 1 +Q4V3U8 IP10038p 2.76 1 1 1 607.02625 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 13772.293 2 +Q9VB21 Uncharacterized protein 0.6 1 1 1 525.88385 1 +Q4V6L7 IP04672p 6.72 1 1 1 599.95087 1 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 1764.5221 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 1509.7737 1 +A1A6X2 IP16893p 12.07 1 1 1 1801.6013 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 400.32883 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 4269.87715 2 +Q9VJ16 GH26014p 2.96 1 1 1 434.04514 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 2 0 904.5469 1 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 9757.552 1 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 4039.72 2 +Q9VSF4 Probable deoxyhypusine synthase 2.72 1 1 1 389.53345 1 +Q9VX71 Uncharacterized protein 5.2 1 2 1 9074.288400000001 2 +Q6IKC0 HDC12925 14.29 1 1 1 1862.8926 1 +Q8IQ51 trypsin 3.05 1 1 1 2162.8594 1 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 949.7791 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 884.8125 1 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 1827.9785 1 +Q9VEM0 RE41712p 5.62 1 1 1 539.15375 1 +Q9VJ08 LD29741p 1.48 1 1 1 656.9399 1 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 599.2091 1 +Q9W328 Protein LST8 homolog 2.56 1 2 1 2894.7243 2 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 569.9324 1 +Q9VD92 Protein archease-like 5.77 1 1 1 1702.1583 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 367.48932 1 +A0A6H2EJZ8 Headbutt, isoform E 1.1 1 1 0 865.2078 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 25365.73273 2 +Q9VDB8 RH37844p 8.42 1 1 1 3280.2354 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 25703.205 2 +Q8SZB7 RE07960p 3.12 1 2 1 17341.146500000003 2 +Q9VFX8 FI14740p 2.51 1 1 1 436.9037 1 +E1JH94 GEO02631p1 7.03 1 1 1 496.1172 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 1738.9088 1 +Q7JWF7 RH26557p 5.11 1 1 1 4445.894 1 +Q9W2L2 LD27118p 0.67 1 1 1 1824.6362 1 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 35557.484 1 +Q9VFE6 RRP15-like protein 3.26 1 1 1 457.9239 1 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 840.97174 1 +Q9VJU2 Nimrod C3 3.12 1 2 1 8123.7863 2 +Q9W3Q2 SD08447p 1.26 1 1 1 3390.364 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 463.14523 1 +Q9VAQ3 GH18608p 2.19 1 2 1 1891.4982 1 +A1Z979 Salivary secreted peptide 6.25 1 2 0 4588.7515 1 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 56809.042760000004 12 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 9677.4308 5 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 40435.43084 11 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 5395.66855 4 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 23267.0737 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M2_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M2_TMTb.txt new file mode 100644 index 0000000..2c9c278 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M2_TMTb.txt @@ -0,0 +1,3832 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 129N, Sample, n/a, Earth_M2 Abundances Count: F5: 129N, Sample, n/a, Earth_M2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 62151.093 5 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 35494.92096 7 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 3204159.31586 59 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 6628.0578000000005 2 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 167730.67369999998 9 +A0A1F4 Protein eyes shut 12.13 24 45 0 773265.7154 37 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 3455.0479 1 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 233060.87995 14 +A1Z713 Intermembrane lipid transfer protein Vps13 0.39 1 1 1 844.632 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 20970.6953 2 +A1Z877 Nidogen 18.37 23 35 23 748272.0623 33 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 32731.1369 3 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 49523.8066 2 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 575165.00171 48 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 243791.5199 8 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 110116.38440000001 6 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 114923.3683 8 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 197145.50523 19 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 41796.4634 3 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 8991.8193 2 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 60321.810300000005 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 6798.5464 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 4198.7515 1 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 9200.681 1 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 329227.054 8 +A8DYP0 Protein Obscurin 1.38 6 8 6 56960.787 6 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 373841.3837 12 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 2434180.82667 97 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 225594.55502 16 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 1002093.08786 38 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 1009716.8756 23 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 73391.083 3 +C0HL66 Histone H3.3A 52.21 6 31 0 18800.018 2 +C0HLZ9 Baramicin A1 12.45 3 4 0 81725.84700000001 4 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 530954.5775 25 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 189204.0346 10 +M9NDE3 Protein bark beetle 2.08 7 7 7 63632.7448 7 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 5691293.10434 68 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 78402.3413 8 +O01367 Protein held out wings 10.37 3 4 0 28251.1613 3 +O01382 Caspase drICE 12.68 4 4 4 7639.3809 2 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 351180.26 11 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 6477667.31352 94 +O02194 Presenilin homolog 5.73 3 3 0 11777.73923 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 227816.2694 9 +O02649 Heat shock protein 60A 65.1 34 143 23 10191517.40757 130 +O15943 Neural-cadherin 14.01 44 66 2 1579551.6739 65 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 71495.7321 9 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 19635.19026 4 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 43181.2341 5 +O18333 Ras-related protein Rab-2 24.41 6 11 6 231426.8782 11 +O18334 Ras-related protein Rab6 33.65 8 12 0 93737.62830000001 6 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 806796.1024 16 +O18388 Importin subunit beta 2.26 2 2 0 7649.91 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 8421894.3211 116 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 752342.4052 26 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 316607.6643 12 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 12302.166 2 +O44342 Protein windbeutel 28.79 7 9 0 121370.9621 9 +O44386 Integrin alpha-PS3 6.1 8 8 8 138967.6697 8 +O46037 Vinculin 55.88 45 103 0 2954189.03242 93 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 28452.8963 4 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 264590.1075 10 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 103166.6218 4 +O46339 Homeobox protein homothorax 4.72 2 2 2 3931.173 1 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 373089.0053 11 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 18400.7243 3 +O61307 Teneurin-m 0.92 2 2 0 31791.71 1 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 212711.6523 10 +O61491 Flotillin-1 45.77 19 45 19 1824981.9949999999 45 +O61722 PRL-1 phosphatase 55.11 7 19 7 661911.8407000001 16 +O62619 Pyruvate kinase 57.6 24 73 24 4067888.6088 61 +O62621 Coatomer subunit beta' 2.84 3 3 3 13349.0754 3 +O76206 Putative riboflavin kinase 55.56 6 17 0 578756.1094 13 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 232369.9773 6 +O76742 Ras-related protein Rab7 36.71 7 10 7 288812.5747 10 +O76878 RILP-like protein homolog 8.35 4 5 0 91554.9037 5 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 155731.9166 9 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 163452.5271 8 +O77051 Transcription factor E2F2 18.65 7 9 0 51791.0849 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 74989.4905 4 +O77277 Torsin-like protein 15.29 6 8 0 120046.17936 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 34222.0211 4 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 126996.805 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 161101.1403 13 +O96690 Protein PDF 23.53 1 1 1 9550.819 1 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 4037168.88417 79 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 62026.496499999994 7 +O97125 Heat shock protein 68 35.28 20 66 13 339347.4569 21 +O97172 UPF0729 protein CG18508 21.21 3 5 0 56166.221300000005 4 +O97394 Protein sidekick 1.48 3 3 0 15844.755400000002 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 48123.206000000006 3 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 1872842.8574 39 +P00334 Alcohol dehydrogenase 85.16 20 241 20 22267705.33183 219 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 2758989.19 17 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 2885.3393499999997 2 +P02255 Histone H1 14.45 3 3 0 37391.2264 3 +P02283 Histone H2B 54.47 8 74 8 2376861.59242 69 +P02299 Histone H3 52.21 6 34 2 5682605.4071 29 +P02515 Heat shock protein 22 32.76 6 14 6 178229.17190000002 13 +P02516 Heat shock protein 23 70.97 15 72 0 4559341.2829 70 +P02517 Heat shock protein 26 58.17 9 19 0 1519798.51034 18 +P02518 Heat shock protein 27 52.11 10 28 0 565534.98245 23 +P02572 Actin-42A 63.83 25 618 2 86738179.14815 534 +P02574 Actin, larval muscle 65.69 27 537 0 978645.7132 24 +P02828 Heat shock protein 83 59.27 42 143 0 8867207.49253 131 +P02843 Vitellogenin-1 73.35 27 218 0 1489011.35167 139 +P02844 Vitellogenin-2 67.65 24 169 0 1186884.44759 100 +P04197 Myb protein 2.74 2 2 0 11075.060300000001 2 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 535893.138 8 +P04388 Ras-like protein 2 33.33 5 7 5 45975.37568 7 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 8510.5985 3 +P05205 Heterochromatin protein 1 32.52 7 16 7 152977.9668 15 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 2125532.2789000003 16 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 1663313.9653999999 18 +P05552 Transcription factor Adf-1 12.21 3 3 0 82569.905 3 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 187478.08839999998 8 +P05812 Heat shock protein 67B1 11.91 5 6 5 86710.4386 5 +P06002 Opsin Rh1 8.85 3 8 3 131833.4528 7 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 25911640.7182 164 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 21683.826999999997 2 +P06607 Vitellogenin-3 79.05 31 233 0 2230492.43196 181 +P06742 Myosin light chain alkali 41.94 6 120 0 11273473.42964 103 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 3057.245 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 5495896.1747 26 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 11470281.20565 102 +P07665 Serendipity locus protein beta 1.97 1 1 0 10797.374 1 +P07668 Choline O-acetyltransferase 9.71 6 7 6 31008.7796 7 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 40322691.95657 292 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 31507.5311 3 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 210933.69476 12 +P08144 Alpha-amylase A 23.48 10 15 0 914148.2139999999 14 +P08171 Esterase-6 20.22 12 20 0 728866.40615 19 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 90929.682 3 +P08182 Casein kinase II subunit beta 32.77 7 18 2 829267.0682999999 16 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 3246118.8821 39 +P08645 Ras-related protein Rap1 40.22 6 12 0 169483.39581 12 +P08646 Ras-like protein 1 37.04 5 13 5 891786.431 12 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 15645983.91815 117 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 218698.54734 13 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 7267812.5124 68 +P08928 Lamin 66.88 49 174 48 7260920.91606 154 +P08985 Histone H2A.v 41.84 7 43 5 1333328.2487 23 +P09040 Drosulfakinins 17.73 3 4 3 206041.454 4 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 1528546.86713 47 +P09208 Insulin-like receptor 1.77 5 5 5 2347.4750000000004 2 +P09491 Tropomyosin-2 64.44 27 221 1 287964.403 4 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 124569.94799999999 7 +P10180 Homeobox protein cut 0.69 1 1 0 1556.5883 1 +P10379 Protein unzipped 27.05 12 27 0 1051649.917 24 +P10552 FMRFamide-related peptides 5.76 2 2 2 98864.76 2 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 1147614.24381 64 +P10981 Actin-87E 68.62 28 611 0 17326046.3117 26 +P10987 Actin-5C 64.36 27 636 0 1035597.7527000001 14 +P11046 Laminin subunit beta-1 22.87 37 67 37 1926557.73575 62 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 2121.3154 1 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 30876805.6314 299 +P11584 Integrin beta-PS 19.98 17 28 0 469392.90936 27 +P12024 Chaoptin 27.6 35 84 0 2300378.58786 74 +P12080 Integrin alpha-PS2 13.11 18 23 18 706041.9283 22 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 1418948.6741 34 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 126770.902 8 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 338327.16994 14 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 1519351.6844 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 102489.71568000001 9 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 104873.6464 6 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 973380.10847 37 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 2547391.6625 92 +P13395 Spectrin alpha chain 63.6 137 494 0 24750176.92893 452 +P13469 DNA-binding protein modulo 6.83 4 4 0 21435.4015 3 +P13496 Dynactin subunit 1 15.18 21 23 21 399568.6853 20 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 3991434.42203 126 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 161085.42326 15 +P13678 Protein kinase C 3.92 3 3 0 89900.007 3 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 15146.849 1 +P14199 Protein ref(2)P 22.37 11 19 11 327289.8104 17 +P14318 Muscle-specific protein 20 82.61 17 66 17 2785815.77217 62 +P14484 Pupal cuticle protein 27.17 5 19 5 512336.6913 18 +P14599 Amyloid-beta-like protein 1.92 2 2 0 13495.931 1 +P15007 Enolase 74.2 31 339 1 37853943.83234 298 +P15215 Laminin subunit gamma-1 39.35 55 99 0 2135145.6864 89 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 329841.8594 3 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 4776850.00525 60 +P15364 Protein amalgam 13.21 4 5 0 219260.263 4 +P15372 Phosrestin-2 60.16 20 59 0 2393892.0799 52 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 82494.0896 8 +P16378 G protein alpha o subunit 26.55 10 39 7 946691.98173 38 +P16554 Protein numb 7.73 4 5 0 67357.0188 5 +P16568 Protein bicaudal D 18.8 15 17 0 252299.5655 17 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 219062.2194 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 4566.0312 1 +P16914 Protein elav 23.4 9 28 0 706733.977 27 +P17210 Kinesin heavy chain 44.31 40 74 40 2509631.0088 70 +P17276 Protein henna 40.71 15 27 0 845185.0321 26 +P17336 Catalase 34.78 14 49 14 1052273.12465 40 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 1477390.1965 24 +P17719 Dihydrofolate reductase 19.78 3 4 3 50213.7243 4 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 2049149.2638 33 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 4395.1616 1 +P18431 Protein kinase shaggy 33.85 16 43 0 2241029.88907 39 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 11427193.21227 172 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 243540.322 8 +P18824 Armadillo segment polarity protein 22.78 16 24 0 478985.73035 24 +P19107 Phosrestin-1 73.82 32 213 32 13600587.815919999 198 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 494634.6223 19 +P19334 Transient receptor potential protein 2.51 4 4 3 44905.911 3 +P19339 Protein sex-lethal 4.52 2 2 0 9065.082 2 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 713631.0685 14 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 3342096.68613 70 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 46103.0535 4 +P20153 Protein ultraspiracle 2.76 2 2 0 13059.9875 2 +P20228 Glutamate decarboxylase 18.04 8 26 0 484588.83957999997 25 +P20232 Transcription elongation factor S-II 31.63 7 8 0 308571.2439 7 +P20240 Otefin 32.08 11 14 11 161308.4334 12 +P20241 Neuroglian 25.81 31 74 0 2251686.9663 71 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 71344.95962 5 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 12413.7655 2 +P20354 G protein alpha s subunit 39.74 13 26 1 2901.5322 1 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 2813.749 1 +P20432 Glutathione S-transferase D1 55.5 13 79 9 8244902.2295 64 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 4993330.5265 51 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 32479894.8318 163 +P21187 Polyadenylate-binding protein 38.01 18 35 18 556635.60531 34 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 7772864.92666 91 +P22465 Annexin B10 76.01 24 139 24 6042614.49345 121 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 1067991.4904 32 +P22813 Heat shock factor protein 2.75 2 2 0 4314.35787 2 +P22815 Protein bride of sevenless 1.23 1 1 1 23093.926 1 +P22979 Heat shock protein 67B3 53.77 7 19 7 733604.04667 17 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 8480.1335 2 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 346530.82779 27 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 34419.802200000006 3 +P23625 G protein alpha q subunit 51.56 19 75 16 3202718.582 64 +P23654 Neurotactin 12.41 10 13 0 184643.7133 13 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 256037.7275 13 +P23779 Cystatin-like protein 63.49 8 32 8 2607713.39724 28 +P24156 Prohibitin 1 68.48 17 53 0 1734531.9355 47 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 8611990.7197 94 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 34573.26 3 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 592294.7348 21 +P25171 Regulator of chromosome condensation 6.03 4 4 4 163737.204 4 +P25228 Ras-related protein Rab-3 33.64 7 18 0 332910.23764 12 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 36087.3998 6 +P25822 Maternal protein pumilio 2.15 3 5 0 43598.9036 5 +P25843 Profilin 88.89 7 28 0 1262701.2664 26 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 311646.92459999997 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 181888.655 6 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 293392.9889 19 +P26686 Serine-arginine protein 55 9.31 4 7 0 201555.869 7 +P27716 Innexin inx1 2.21 1 2 0 37923.320999999996 2 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 125205.3785 11 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 41406.047450000005 4 +P29052 Transcription initiation factor IIB 16.51 6 8 0 239490.93660000002 8 +P29310 14-3-3 protein zeta 67.74 17 278 0 24137261.128399998 236 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 765524.0854 20 +P29413 Calreticulin 46.55 20 61 0 3344774.04468 57 +P29613 Triosephosphate isomerase 76.11 17 131 16 12340876.55364 122 +P29742 Clathrin heavy chain 7.39 13 15 0 118534.2744 13 +P29746 Protein bangles and beads 61.76 24 46 24 2431283.209 45 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 2171049.46821 55 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 78793.689 7 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 9242417.995 150 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 10968806.48456 151 +P30432 Furin-like protease 2 0.66 1 1 0 6152.985 1 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 2585008.14 28 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 2067202.83131 78 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 1321911.3509499999 27 +P32234 Guanylate binding protein 128up 16.3 6 8 5 116558.6255 8 +P32392 Actin-related protein 3 10.53 4 7 4 201362.13499999998 7 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 168836.5481 12 +P33438 Glutactin 14.13 17 42 0 466022.90028 36 +P34082 Fasciclin-2 17.18 15 23 0 229960.2713 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 892551.422 20 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 686851.252 17 +P35220 Catenin alpha 24.86 22 44 14 928139.4265 39 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 36314418.88523 354 +P35415 Paramyosin, long form 73.38 77 511 0 25081607.28154 441 +P35416 Paramyosin, short form 56.41 39 294 0 1959806.3801 39 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 6332.8338 2 +P35554 Flightin 49.45 8 18 0 2488345.4599 18 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 79669.759 6 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 1866574.8976 35 +P36188 Troponin I 47.58 17 65 0 5402173.63896 60 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 837184.015 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 12784.9886 2 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 1255612.50575 30 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 5668.267 1 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 4689699.0704 86 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 176267.4187 4 +P37236 Frequenin-1 68.98 11 45 0 529646.049 8 +P37276 Dynein heavy chain, cytoplasmic 0.24 1 1 0 935.2399 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 453387.306 9 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 3800265.85053 76 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 1674283.3662999999 37 +P39736 Puff-specific protein Bx42 6.4 3 4 0 32621.6096 4 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 208383.3547 7 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 584629.36 8 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 117890.552 3 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 1264221.14826 27 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 31678.860099999998 5 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 753197.403 17 +P40427 Homeobox protein extradenticle 2.93 1 1 0 992.16754 1 +P40792 Ras-related protein Rac1 22.4 4 7 0 338986.638 7 +P40793 Cdc42 homolog 37.7 7 8 0 326243.4922 7 +P40796 La protein homolog 48.46 17 25 16 449975.04773 24 +P40797 Protein peanut 28.39 14 25 13 827408.7063 25 +P40945 ADP ribosylation factor 4 38.33 5 11 0 48500.603839999996 6 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 83679.6923 8 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 1049796.85246 34 +P41043 Glutathione S-transferase S1 76.71 15 62 0 8813648.3554 60 +P41044 Calbindin-32 77.74 26 146 0 7149576.84438 138 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 251852.7866 24 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 1229398.7297 16 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 319130.8121 16 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 1922713.0029 43 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 1563780.3959 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 1282505.5943 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 65104.404599999994 5 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 728737.29262 18 +P42207 Septin-1 10.8 4 11 3 72345.2976 3 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 3100595.11688 33 +P42325 Neurocalcin homolog 42.63 8 22 8 897364.423 19 +P42787 Carboxypeptidase D 8.68 10 14 0 151414.84499 13 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 133107.192 6 +P45437 Coatomer subunit beta 4.67 3 4 3 50598.18374 3 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 6047608.2298 82 +P45888 Actin-related protein 2 15.79 5 7 5 99472.36720000001 7 +P45889 Actin-related protein 1 23.4 10 13 10 487008.24929999997 13 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 41620.161 2 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 855011.06115 15 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 1884375.293 32 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 270257.2626 10 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 907507.63844 44 +P46824 Kinesin light chain 37.4 23 45 0 1370167.4364 41 +P47947 Troponin C, isoform 1 24.68 4 24 0 2473485.2106 24 +P47948 Troponin C, isoform 2 47.1 6 9 0 17926.3442 3 +P47949 Troponin C, isoform 3 63.23 9 25 0 1078494.1251 20 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 1469924.1269999999 20 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 1058418.67812 22 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 906668.44155 25 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 2904597.7149 28 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 471661.16299999994 5 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 21817.3754 2 +P48554 Ras-related protein Rac2 26.56 5 10 0 89035.80900000001 5 +P48555 Ras-related protein Ral-a 49.75 8 21 1 910473.90093 21 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 76393.1114 4 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 4023603.3297 52 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 453454.8495 16 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 1989577.9097 33 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 1969130.52429 87 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 99485.4985 5 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 874308.88512 32 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 1500283.85635 40 +P48607 Protein spaetzle 3.99 1 1 0 7070.0444 1 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 341426.2723 10 +P48610 Arginine kinase 1 75.84 36 446 0 51669308.15058 405 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 1368209.4936600002 21 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 606422.21977 39 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 80791.7849 6 +P49028 Protein mago nashi 30.61 4 6 4 34679.0316 3 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 343400.373 8 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 895256.1046999999 9 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 10441.975 1 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 23698.6054 2 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 4102.3584 1 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 32034.3105 4 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 1545752.32275 28 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 137006.69030000002 10 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 9937.6695 2 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 569443.4889 22 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 132203.7682 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 641517.03142 20 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 141970.6547 7 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 12736.452 1 +P53034 Replication factor C subunit 2 8.46 3 3 3 61141.877 2 +P53501 Actin-57B 69.15 29 622 4 30164603.38776 71 +P53777 Muscle LIM protein 1 31.52 3 14 0 533352.0229999999 10 +P53997 Protein SET 15.24 4 9 4 190768.713 9 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 273183.1766 5 +P54191 General odorant-binding protein 69a 13.51 2 6 2 141916.2835 5 +P54192 General odorant-binding protein 19d 69.33 10 107 10 25829967.2087 103 +P54193 General odorant-binding protein 83a 42.86 7 18 0 1638175.7966 16 +P54195 General odorant-binding protein 28a 40.56 4 13 4 654495.1998 12 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 15082.04605 3 +P54352 Ethanolamine kinase 6.76 3 3 2 28894.070099999997 3 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 432190.201 18 +P54357 Myosin-2 essential light chain 89.12 10 40 1 2250468.5233 35 +P54359 Septin-2 17.66 7 10 1 245239.521 10 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 19944.404 1 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 2031324.4493 73 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 41366.779 2 +P54399 Protein disulfide-isomerase 75.6 37 146 0 12464648.71495 129 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 16467428.94685 137 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 287809.472 10 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 314316.86539 18 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 1103493.7897 14 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 4264325.2558699995 67 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 1602029.28755 29 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 1933241.24956 48 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 10729.337360000001 3 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 130940.61499999999 4 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 740168.02906 19 +P61849 Dromyosuppressin 10.0 2 3 0 57123.7905 3 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 11639737.93833 91 +P61855 Adipokinetic hormone 37.97 2 3 2 63327.352 3 +P61857 Tubulin beta-2 chain 44.39 15 202 2 1149522.4577000001 3 +P62152 Calmodulin 99.33 19 359 0 36887703.38466 318 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 1250996.25532 30 +P81829 Leucokinin 6.25 1 1 1 13250.855 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 6120678.14145 88 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 2178823.0091 34 +P82295 Prominin-like protein 3.75 3 3 0 3021.1497 1 +P82804 Partner of Y14 and mago 7.73 1 1 1 355.652 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 726776.031 14 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 197134.83543 11 +P83967 Actin, indirect flight muscle 68.62 27 587 2 183215.8927 4 +P84029 Cytochrome c-2 70.37 11 82 0 9661401.3769 77 +P84040 Histone H4 59.22 9 102 0 7976623.5108 93 +P84051 Histone H2A 37.1 5 48 0 1739844.0730299999 23 +P84345 ATP synthase protein 8 18.87 1 5 1 192509.579 5 +P91891 Protein Mo25 34.22 13 23 0 716041.292 19 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 192010.96812 18 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 650291.2716 39 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 5397813.8543 91 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 1635892.16518 32 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 759955.0070999999 20 +P92029 DnaJ-like protein 60 4.15 1 1 0 5665.822 1 +P92177 14-3-3 protein epsilon 72.14 22 257 20 16450796.22086 177 +P92204 Negative elongation factor E 10.0 3 4 3 85250.523 4 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 7035.7354 1 +P98081 Protein disabled 5.35 9 11 0 39242.922289999995 9 +Q00174 Laminin subunit alpha 22.49 77 124 77 3513573.78099 116 +Q00963 Spectrin beta chain 23.88 58 119 2 5905.10423 3 +Q01603 Peroxidase 8.41 6 6 0 60888.9386 5 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 19387746.30171 220 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 61719.3341 4 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 5768.5168 2 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 641250.87674 28 +Q02910 Calphotin 3.36 2 4 2 30041.32397 4 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 41360.9201 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 14257.2914 4 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 1319018.2585 20 +Q03427 Lamin-C 59.74 41 127 3 2962933.8471 99 +Q04047 Protein no-on-transient A 13.43 8 10 0 102115.19377 10 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 236709.6792 20 +Q04691 Fat-body protein 1 24.68 26 37 0 661097.1769 35 +Q05783 High mobility group protein D 21.43 2 3 0 54305.7344 3 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 38887590.56899 507 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 2189.9575 1 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 5805367.513 80 +Q06943 High mobility group protein Z 43.24 4 12 0 139479.44635 10 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 25295.6234 3 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 221031.21923000002 18 +Q07171 Gelsolin 25.81 18 39 0 1412186.1961 37 +Q07327 Protein ROP 35.51 20 37 0 830290.75201 34 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 363876.98152 13 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 2561.0115 1 +Q08473 RNA-binding protein squid 42.44 9 32 0 1260417.29068 28 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 52518.1183 5 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 59320.335 3 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 244352.41036 13 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 10870.525099999999 2 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 591502.41 12 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 30451.753 2 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 52064.45 3 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 204865.5384 10 +Q11002 Calpain-A 7.73 7 8 0 85729.481 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 3359174.9335 27 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 5151973.0344 73 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 5401464.1933 83 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 5459613.94984 95 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 2519217.7393 37 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 4219337.3829 77 +Q24050 Elongator complex protein 5 29.39 7 10 6 112810.35250000001 7 +Q24114 Division abnormally delayed protein 8.63 5 10 0 205754.17359999998 10 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 581596.79053 15 +Q24134 Negative elongation factor D 2.42 1 1 0 4515.568 1 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 84599.4998 5 +Q24185 Protein hook 20.47 13 18 13 428171.6652 18 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 807442.9517 28 +Q24207 Protein boule 27.63 5 9 0 348802.32889999996 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 267743.38544 18 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 86515.446 6 +Q24211 Protein stoned-A 37.53 27 59 0 1392807.03056 53 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 1079142.7146 16 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 76950.742 5 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 75970.2185 5 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 15112694.82511 169 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 384493.5335 15 +Q24292 Protein dachsous 0.31 1 1 0 2177.4607 1 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 78371.5908 6 +Q24298 DE-cadherin 15.06 23 36 23 924112.7832 34 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 12120.793730000001 2 +Q24318 Transcription factor Dp 7.19 3 4 0 20609.2357 3 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 107189.14480000001 8 +Q24322 Semaphorin-1A 2.34 2 3 0 3677.6159599999996 3 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 121041.93100000001 4 +Q24372 Lachesin 17.83 6 8 6 74178.8124 7 +Q24388 Larval serum protein 2 8.84 5 5 0 52808.8985 4 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 2098324.19144 63 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 5346330.4291 46 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 18117010.8104 154 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 163891.6695 21 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 96541.29680000001 8 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 31029.2074 4 +Q24509 Syntaxin-5 4.28 2 2 0 14103.366000000002 2 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 153934.7764 8 +Q24524 Protein singed 5.86 3 3 0 30234.292699999998 3 +Q24537 High mobility group protein DSP1 13.99 6 14 0 267445.3932 14 +Q24547 Syntaxin-1A 29.21 12 41 0 2113344.3793 39 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 15047263.42455 248 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 17357.9994 3 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 239982.05255999998 15 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 3916390.3327 27 +Q26377 Pro-corazonin 40.26 5 12 5 131291.1173 11 +Q26416 Adult cuticle protein 1 20.0 1 5 1 254519.31399999998 4 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 100181.6164 5 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 610565.4187 18 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 58897.273 5 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 1573171.67524 40 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 1223629.4045 15 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 2211904.2575 50 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 180377.27693 11 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 246601.1152 12 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 1861.3466 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 549976.54296 12 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 416662.50200000004 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 14940.2299 3 +Q3KN41 Neurexin 1 1.96 4 4 0 58036.492560000006 4 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 19747.582000000002 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 51608.3447 2 +Q4V645 Trissin 16.67 2 3 2 70130.612 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 34525.2674 2 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 93048.032 3 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 23116.95318 7 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 301395.08655 15 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 58385.2809 5 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 12863.63984 2 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 57882.9459 5 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 218904.9478 7 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 67023.184 4 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 476643.342 8 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 331145.32466 12 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 37562.0882 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 331480.24545 16 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 1167735.9016 29 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 1707.0259 1 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 453521.1407 19 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 64593.5745 5 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 469120.33650000003 15 +Q7JXF7 Protein seele 34.92 5 7 5 147836.5919 7 +Q7JYV2 Synaptogyrin 8.3 1 1 1 1705.1991 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 14587.853 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 77307.869 3 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 144511.39310000002 11 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 403321.7313 14 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 14396.851999999999 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 120318.625 10 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 44939.30374 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 18126.1933 2 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 1310831.68155 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 27768.848 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 208566.6658 12 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 123376.7528 12 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 45844.866200000004 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 447778.47696 20 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 104529.28227 9 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 5308256.39386 72 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 95882.3338 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 932470.2805 24 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 1648258.90595 34 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 14694.9098 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 1035237.56836 50 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 305908.86114 22 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 402112.0152 15 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 30469.36463 5 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 26566.197 1 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 188065.73979999998 7 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 8572782.9209 61 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 2040.7548 1 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 226826.5166 8 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 338513.12945999997 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 75805.497 3 +Q7KVY7 Syntaxin-4 6.01 2 2 1 24921.3325 2 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 69119.97750000001 5 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 3391092.39764 47 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.94 2 2 2 2173.9077 1 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 491822.1386 18 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 162498.60576 6 +Q868Z9 Papilin 18.81 47 94 47 1082627.2065 89 +Q86B79 RING finger protein unkempt 3.17 2 2 0 22507.981 2 +Q86B87 Modifier of mdg4 13.77 6 8 0 167742.1587 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 14904.1276 3 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 119573.85199999998 4 +Q86NP2 Negative elongation factor A 9.51 9 11 0 116284.8306 10 +Q86P48 AT-rich binding protein 7.22 3 5 3 23052.389300000003 4 +Q86S05 Protein lingerer 2.91 3 4 0 1710.32777 3 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 53918.941 6 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 1059544.7613 22 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 26370.1505 4 +Q8IN41 Protein Turandot X 8.45 1 1 1 26501.178 1 +Q8IN43 Protein Turandot C 31.01 4 14 4 246961.5987 11 +Q8IN44 Protein Turandot A 58.14 9 20 9 793680.1104 18 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 87664.4921 6 +Q8IPM8 Complexin 66.2 10 69 0 44727.996 3 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 244138.8589 15 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 86914.56557 7 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 1811.3734 1 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 169142.9224 11 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 247762.662 7 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 128997.0036 7 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 2203191.10582 29 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 13857.5293 2 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 32310.52 1 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 2442.678 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 155826.80250000002 4 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 45926.9552 4 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 2120165.5621 38 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 785769.9602 22 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 10977.038 1 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 4375.025299999999 3 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 28540.0173 4 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 199101.00566 6 +Q8MSS1 Protein lava lamp 17.06 45 52 0 606959.0564 51 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 21780.023 2 +Q8MSV2 Protein alan shepard 12.54 6 13 6 233381.0093 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 7688.1043 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 15438.1778 2 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 22037.815150000002 3 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 1033711.0895 17 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 205119.4147 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 534216.2087 16 +Q8SY33 Protein Gawky 11.05 13 19 13 232321.7664 15 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 2604960.9838 55 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 224781.60124999998 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 92632.9618 6 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 24607.69134 4 +Q8SZ63 Golgin-84 5.23 3 3 3 13096.9476 3 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 158634.8382 7 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 33177.332 1 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 909425.54266 34 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 879203.1148 32 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 15127.344 1 +Q8T390 Endophilin-A 56.91 20 92 0 3815501.0538500003 73 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 218806.82640000002 6 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 1341068.6080999998 20 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 339074.3807 12 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 249832.6969 11 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 426.7161 1 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 780861.14 18 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 74778.76699999999 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 4999419.40985 95 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 6671763.69436 85 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 8865754.4126 110 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 6654.395 2 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 1725687.0074 17 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 2036085.6397000002 28 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 11223509.06282 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 814169.22574 49 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 69593.42510000001 3 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 697775.25038 20 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 30022.9919 3 +Q94547 Regulator of gene activity 4.27 3 4 0 126662.13799999999 4 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 39126.9986 4 +Q94901 RNA-binding protein lark 53.69 20 40 20 684080.04215 38 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 2309.7256 1 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 293571.75 7 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 37645352.14065 328 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 7927.777 1 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 94391.5024 6 +Q95029 Cathepsin L1 38.27 16 60 3 3583440.4357600003 52 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 933333.9425 18 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 43903.3883 2 +Q95RA9 GILT-like protein 1 46.4 9 28 9 1611241.33333 26 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 7622.923900000001 2 +Q95RI5 Failed axon connections 54.78 24 114 0 7704888.0623699995 106 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 1898.3762 1 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 166978.3637 5 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 143337.0568 11 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 94899.513 4 +Q95T12 Calcium channel flower 12.89 2 3 2 81985.3947 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 33378.1391 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 1790.7393 1 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 104374.8408 9 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 13994.864 1 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 506736.0152 20 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 62432.52147 9 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 131022.902 6 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 717.86896 1 +Q967D7 Protein turtle 2.74 4 6 0 117269.7031 6 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 102392.33774 11 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 63576.509300000005 4 +Q9GQQ0 Protein spinster 1.98 1 3 1 24562.4673 3 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 4135854.379 56 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 11317.368 2 +Q9I7D3 Caprin homolog 12.38 10 12 0 90036.5013 7 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 110040.4317 6 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 156855.3687 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 28756.6258 2 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 181196.43320000003 6 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 714009.60096 29 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 28768.1607 3 +Q9I7U4 Titin 1.5 22 25 0 159283.9799 20 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 15045.132 1 +Q9NB04 Patj homolog 31.46 20 37 0 949703.84913 33 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 6218.8347 4 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 29715.2401 5 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 55235.547099999996 3 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 71374.449 3 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 159093.05207 8 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 48738.7574 5 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 14154.698 1 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 20569.448099999998 2 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 2225348.7874 49 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 54864.0086 7 +Q9TVM2 Exportin-1 1.79 2 2 0 16974.4204 2 +Q9TVP3 J domain-containing protein 79.49 16 82 16 6453839.69967 75 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 442210.19455 26 +Q9U4G1 Protein borderless 19.89 13 27 13 730347.2479000001 24 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 33405.938 3 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 216987.856 11 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 884881.1296 17 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 4820.4194 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 55765.2955 3 +Q9U915 Adenylate kinase 2 72.08 21 51 21 2127112.0366 46 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 102455.309 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 143227.1019 9 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 248114.38126999998 10 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 147686.9126 9 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 12608.312 1 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 9987.68016 3 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 82259.9702 4 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 1616782.4374000002 24 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 22107.5257 2 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 1898572.5705 27 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 89982.7983 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 264297.586 6 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 215070.61043 6 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 216462.4189 13 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 1716646.44664 37 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 83442.7795 7 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 186689.526 14 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 79193.1468 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 416072.1754 20 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 8317720.29767 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 250536.2218 15 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 9283.726 1 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 37910.17 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 217224.10685 7 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 18159.8036 2 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 1560563.4101 40 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 75896.31599999999 3 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 209351.5195 8 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 622406.6448 11 +Q9V3Z2 Serine protease 7 15.35 5 6 4 62150.373999999996 6 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 98373.3486 11 +Q9V427 Innexin inx2 8.99 4 8 0 158423.7237 6 +Q9V429 Thioredoxin-2 68.87 7 37 7 3431216.1947999997 36 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 462488.8367 16 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 768523.85645 23 +Q9V447 Krueppel homolog 2 12.68 3 3 0 33362.8506 3 +Q9V496 Apolipophorins 34.8 114 261 0 13885250.42371 237 +Q9V498 Calsyntenin-1 1.02 1 1 0 54401.78 1 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 20153.14 1 +Q9V4C8 Host cell factor 4.93 8 11 8 171498.9005 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 6021.0347 1 +Q9V4N3 Cytochrome b5 61.19 5 26 5 1026094.2228999999 18 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 183645.6733 5 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 240314.03699999998 11 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 8751.41105 3 +Q9V521 Phenoloxidase 2 22.22 16 20 15 331043.66185 18 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 448070.3308 14 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 21044.2597 2 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 366645.5394 15 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 628923.16802 30 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 1451259.6883999999 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 2361.7568 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 27509.455 1 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 180688.1873 9 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 16893.0633 2 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 75017.3449 5 +Q9V6G5 Tafazzin 5.82 3 3 0 30719.326 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 4497186.8886 69 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 25040.509 3 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 29594.688000000002 3 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 39054.439 4 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 10013.42557 4 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 3807126.36972 64 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 5735719.95733 98 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 877364.2509999999 21 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 49143.1402 2 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 58748.86206 4 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 965300.6689 30 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 3051132.09514 98 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 1120484.8152 15 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 367685.6121 8 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 44342.04656999999 5 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 62065.16 2 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 49425.7921 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 9898.204 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 31624.537 3 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 8717.618 1 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 15785.4421 4 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 821237.4483 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 119263.4379 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 441845.64519999997 11 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 1048.4232200000001 2 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 17768.086 1 +Q9VA37 Protein dj-1beta 72.73 12 59 12 3486373.4123 50 +Q9VA70 Neutral ceramidase 2.41 2 2 0 17444.861 2 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 3809203.68467 43 +Q9VAF5 Cadherin-99C 5.92 10 11 10 71255.06184000001 10 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 3714734.5013 23 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 646846.95887 28 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 3990609.8776000002 72 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 1727467.5724 44 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 67745.872 7 +Q9VAW5 La-related protein 1 4.06 5 5 0 46279.1425 4 +Q9VAY3 Mitoferrin 7.65 3 3 3 26837.429200000002 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 34726.8213 3 +Q9VB68 Serine protease grass 12.2 5 6 5 32492.4673 4 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 33617.8626 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 7117.2047 2 +Q9VBV3 Protein takeout 26.91 6 7 0 200949.22553 7 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 174738.9415 9 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 11045.5833 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 468.31653 1 +Q9VC57 Atlastin 5.91 3 4 0 42289.8165 4 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 13975.59 2 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.6 2 2 0 1047.472 2 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 372098.1666 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 185031.8079 8 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 22214.1343 3 +Q9VCE8 Actin maturation protease 9.74 1 2 0 5576.774 2 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 377323.2482 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 310223.7438 14 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 131648.9253 4 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 253920.2586 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 408567.78223 12 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 48867.342000000004 2 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 8949.7285 2 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 6967.4231 2 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 455606.1065 10 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 471016.7659 19 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 45216.261099999996 5 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 88675.6486 4 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 107092.35496 13 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 29531.870199999998 3 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 3691.4326 1 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 30976.862999999998 2 +Q9VDL1 Esterase CG5412 9.68 2 3 2 8433.9004 3 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 10076.869 2 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 198995.8772 8 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 4337.494 1 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 35739.11906 4 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 13709.607 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 57284.231 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 4884.0146 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 3339656.80855 50 +Q9VER6 Modular serine protease 3.18 2 3 2 17916.147 2 +Q9VET0 Neuropeptide F 29.41 3 4 0 128225.27126000001 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 1914352.61926 43 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 127120.3238 5 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 22763.654200000004 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 120094.44144 8 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 5058625.1221199995 59 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 24041.0226 3 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 314414.1781 16 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 11249.134 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 56977.342 2 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 1024402.2833 29 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 84488.1065 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 12367.99247 3 +Q9VFJ0 Probable cytochrome P450 313a1 4.67 2 2 2 2690.68166 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 36049.695 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 45530.286 3 +Q9VFM9 Twinfilin 24.78 8 14 8 244305.2249 12 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 85267.5822 7 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 61301.175 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 13108.722 1 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 159561.27331 10 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 61276.528 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 5879.6343 1 +Q9VG55 Protein hugin 18.32 2 2 2 11879.2526 2 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 385546.64 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 8289.098 1 +Q9VG76 Myc-binding protein 11.05 2 2 2 27461.955 1 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 21525.217 3 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 1693283.1857 23 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 175336.51069999998 6 +Q9VGG5 Cadherin-87A 5.16 9 12 9 252937.9329 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 17340.451 1 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 210869.893 8 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 9497.32 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 46964.793399999995 3 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 28397.701 1 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 2979500.95938 47 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 554767.3804 17 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 34854.092300000004 3 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 1977.2318 1 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 391125.916 14 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 9147.621 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 534187.8014 11 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 548272.42 7 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 1614119.6119 19 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 2425.201 1 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 98426.5211 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 48275.7368 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 273460.253 10 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 58944.5366 7 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 221390.2883 6 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 16566.0441 4 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 163122.3954 15 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 4037.2268 1 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 1804227.00267 51 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 4627205.9307200005 45 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 167987.4316 6 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 28907.190000000002 3 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 4614.0522 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 98528.563 8 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 196292.58725 12 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 18488.317000000003 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 622570.3577 15 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 548925.3981999999 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 132406.0955 5 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 51936.3186 3 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 46173.6509 3 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 8701.693 3 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 584339.57687 12 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 458504.656 14 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 177978.6905 7 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 141516.2689 7 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 316337.091 8 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 11222.496 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 2609.0815 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 21815.263 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 5161.495800000001 2 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 15124.659 1 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 132353.9749 10 +Q9VJL6 Glia maturation factor 10.87 2 3 2 83762.234 3 +Q9VJQ5 Protein Dr1 17.49 3 3 3 37480.8646 3 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 474715.16 14 +Q9VJY9 Protein Loquacious 12.69 5 5 0 107224.0632 5 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 12922.1401 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 308083.8794 13 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 4984.09 1 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 2237.0952 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 137699.4218 10 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 35812.335 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 58574.153 2 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 114457.64700000001 4 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 50999.616 2 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 9065.518 1 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 1591679.7189 36 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 2234381.7328 58 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 35085.3893 3 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 78937.1533 5 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 98596.6458 10 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 217186.7079 8 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 87862.341 6 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 711492.6064 18 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 20691.2814 3 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 651292.70184 13 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 217786.4873 8 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 174381.0222 9 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 3435.087 1 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 17171.86937 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 68735.5179 5 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 35025.1397 5 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 39653.984500000006 6 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 60038.231 3 +Q9VMD6 Protein real-time 2.58 2 2 0 14371.9957 2 +Q9VMD9 Tiggrin 11.33 29 34 0 319374.68048 31 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 52998.2744 5 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 364141.39 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 18278.574950000002 3 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 51536.03885 4 +Q9VMR8 Protein Turandot M 33.59 3 5 0 241119.197 5 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 112768.4063 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 28333.168999999998 3 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 45984.1772 5 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 732576.673 12 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 50457.91499999999 3 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 62256.78600000001 3 +Q9VMY9 Guanine deaminase 4.46 2 2 2 39811.572 2 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 31655.1447 4 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 97905.15427 6 +Q9VN14 Contactin 19.78 25 34 25 644023.06512 31 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 14448.2339 3 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 53355.57273000001 4 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 240608.55103 12 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 745614.4346 29 +Q9VN93 Cathepsin F 22.64 13 28 12 1115111.09308 25 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 216264.462 6 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 53050.818 3 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 108778.0907 3 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 331787.6091 9 +Q9VNE2 Protein krasavietz 31.28 16 24 16 613910.131 22 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 446705.87 12 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 11560.74 1 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 68592.4546 3 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 62221.7835 4 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 14132.4328 4 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 77405.156 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 49501.4244 4 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 44164.651099999995 4 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 156965.7801 7 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 4396350.28385 27 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 994809.2923000001 12 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 163041.22 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 25141.14117 5 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 112656.9648 5 +Q9VQC4 Glycerate kinase 12.94 8 8 0 136350.397 8 +Q9VQF7 Bacchus 40.79 6 16 6 278503.5342 13 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 89294.725 3 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 566895.4546 16 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 340457.0498 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 36388.1765 2 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 201555.35619999998 10 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 6093.294 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 7598.5704 2 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 28367.709000000003 2 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 178133.102 5 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 44843.777050000004 8 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 5097.97224 2 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 297064.45999999996 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 12646.817500000001 2 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 77969.5512 5 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 6834.6061 2 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 193655.08443 11 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 393211.85900000005 4 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 37030.316000000006 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 3276189.80107 68 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 37005.19 2 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 14871.932 2 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 76471.83785 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 47633.15 1 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 5236403.58215 61 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 62757.2286 4 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 56266.111000000004 6 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 39860.522 4 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 1916492.5284 51 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 278332.8955 7 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 10775.4539 3 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 11832.8413 2 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 32526.3545 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 42333.096300000005 2 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 454428.8617 13 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 92309.46892 4 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 159829.8583 6 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 5661.2446 1 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 69226.401 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 19381.92 1 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 63515.8705 4 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 2812141.05594 45 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 135548.51906999998 6 +Q9VTZ5 Transferrin 2 22.59 16 21 16 282659.154 18 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 119586.04819999999 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 63219.217000000004 2 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 7165188.79475 101 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 604288.72203 26 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 18440.6364 3 +Q9VU84 Drebrin-like protein 26.18 11 14 11 239354.6999 12 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 50216.5115 5 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 3663.4194 1 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 1728371.86562 37 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 69168.97967 5 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 679339.8281 27 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 33638.78 1 +Q9VV36 Retinin 29.84 5 91 5 7872953.10054 76 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 2024.0111 2 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 2962627.3706 36 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 579528.96653 25 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 9621.205 1 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 273992.5994 7 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 632073.692 23 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 129449.9166 8 +Q9VVE2 Protein rogdi 30.97 7 12 7 259692.60167 11 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 289208.702 18 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 24351.8972 3 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 933682.68426 32 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 3551.6423999999997 2 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 26423.61947 5 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 423341.50630999997 21 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 32529.062700000002 3 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 51118.06464 3 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 169928.114 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 45018.69 2 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 22376.560559999998 6 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 624885.0179 23 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 18633.317199999998 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 215579.638 11 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 432467.03729999997 13 +Q9VWA1 Clathrin light chain 40.64 11 40 0 1567342.58176 37 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 11186.381 2 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 27464.4999 2 +Q9VWE0 Cytokine receptor 1.56 2 2 2 20515.5361 2 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 456177.463 12 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 20461537.11148 165 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 2927589.5990999998 22 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 76310.73133 10 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 78413.97200000001 4 +Q9VWU1 Serine protease persephone 7.61 3 3 3 35861.9574 3 +Q9VWX8 Frequenin-2 52.94 11 47 5 1280878.6016 41 +Q9VX10 Sulfiredoxin 4.32 1 1 0 27360.463 1 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 289053.35229999997 11 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 1343032.0356 23 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 30398.7571 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 404219.1636 8 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 27643.08163 5 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 7278.872 1 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 1593120.9171799999 56 +Q9VXG4 Annexin B11 23.68 13 31 13 952858.87038 31 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 290533.5551 17 +Q9VXK0 Protein NipSnap 15.38 4 8 0 167424.62589999998 7 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 430594.0232 14 +Q9VXN2 Protein stunted 49.18 3 9 3 227145.69028 7 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 16558.1795 2 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 349383.63300000003 10 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 58876.313 4 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 789.2163 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 1340258.90674 39 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 43123.1688 4 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 665679.9517 9 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 24665.7676 4 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 4726.271 1 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 147619.0898 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 21881.625 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 37175.2422 3 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 74235.6809 6 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 4402.1333 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 1854.8665 1 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 7544.1284 1 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 9883.021 1 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 1531350.94997 47 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 22356.3973 4 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 200716.3843 11 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 230136.3527 8 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 1396602.1643 26 +Q9VZ35 Protein Vago 13.12 2 2 2 2568.9692 2 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 315384.811 3 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 448972.6683 14 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 822662.6154 22 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 63912.38740000001 7 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 62561.7825 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 14077.212660000001 4 +Q9VZE7 Choline transporter-like 1 1.74 1 1 0 816.20135 1 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 9523.1746 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 6108.3633 1 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 15065.769 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 31617.676 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 617512.7326 8 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 929025.53 18 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 2627163.37326 53 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 328476.4822 12 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 17532.4297 2 +Q9W032 Protein ecdysoneless 1.9 1 1 1 11158.882 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 1918577.42047 49 +Q9W074 Protein HBS1 3.28 2 2 2 11801.0964 2 +Q9W0A0 Protein draper 4.95 4 5 0 26575.10456 4 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 4281894.81517 50 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 4001.5938 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 53378.819500000005 3 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 129304.63799999999 9 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 532776.179 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 171546.0293 13 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 230464.17106999998 18 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 13983.368300000002 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 1744.7178 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 2005258.842 36 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 224608.98551 9 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 15610.0854 2 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 13717341.27 71 +Q9W1G0 Probable transaldolase 44.71 16 52 16 2898350.43682 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 82028.813 2 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 51016.797 3 +Q9W1K5 Sestrin homolog 1.41 1 1 0 22277.16 1 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 22424.4136 3 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 74235.0005 5 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 84706.4027 5 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 143361.243 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 303107.685 9 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 2263315.64107 50 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 121487.0735 6 +Q9W266 Protein windpipe 8.12 5 11 5 440892.723 11 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 627482.01 11 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 206863.0544 10 +Q9W2E7 Protein Rae1 29.48 9 14 9 509981.2843 12 +Q9W2M2 Trehalase 33.56 19 38 0 690897.3794 33 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 78195.211 5 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 9348.375 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 67017.5848 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 194660.86137 5 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 4338243.07852 71 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 518714.26822 11 +Q9W358 Chaperone Ric-8 12.22 7 7 0 88259.5597 7 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 6456421.5824 79 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 84987.266 6 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 346291.113 5 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 191025.7455 4 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 107715.833 4 +Q9W3E2 Protein PIP82 19.58 20 31 20 238890.44786 24 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 38612.7981 5 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 48232.3327 4 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 86510.872 6 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 224386.59999999998 3 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 79962.19634 6 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 2434.429 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 7174.0703 1 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 6905.9355 1 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 16283559.38518 169 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 310382.03655 7 +Q9W436 Neprilysin-1 2.59 2 2 2 15833.95 2 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 156092.291 5 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 28810.635 1 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 120800.01733999999 11 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 435623.52999999997 14 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 184428.25968 13 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 290778.3734 14 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 580570.43682 16 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 73578.634 5 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 1696099.44608 109 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 35994.754 1 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 424016.7614 16 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 406655.0344 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 53661.94899999999 3 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 383575.69200000004 10 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 35341.67096 4 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 1104338.6104 60 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 3328.8813 1 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 7657.7983 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 395220.12857 11 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 1168834.6609 30 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 66904.0102 7 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 210273.5361 10 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 492991.8875 16 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 1202885.581 14 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 1482814.89216 34 +Q9XZL8 Protein sarah 32.53 7 14 0 268890.932 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 9199.734400000001 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 77939.5038 5 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 50666.951140000005 5 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 643057.81453 16 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 37107.389899999995 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 1007804.7653 23 +X2JAU8 Protein nervous wreck 28.19 30 88 30 4079929.8519 79 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 15470.567 1 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 74505.6832 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 47340.733 2 +A0A0B4JCR9 Uncharacterized protein, isoform D 3.12 1 1 0 510.649 1 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 188387.2482 13 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 1165916.268 6 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 115797.019 6 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.0 2 2 0 766.8197 1 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 3554382.41605 101 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 10962.8745 2 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 4332.4614 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 224322.4309 14 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 113180.37846 9 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 36747.7193 4 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 298282.95565 20 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 8000087.0936900005 161 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 20137.60826 3 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 23663.7764 2 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 360921.61558 25 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 207798.075 4 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 71617.861 3 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 75747.658 8 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 26066.771099999998 4 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 139124.98129999998 6 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 6323.8369999999995 2 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 147168.3504 10 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 6556997.36435 116 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 148172.49099999998 7 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 94384.0753 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 29436.346299999997 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 31911.644500000002 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 18786.0397 2 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 3242801.45628 47 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 39680.408299999996 3 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 695.69495 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 1365023.1623499999 53 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 14732.9332 4 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 541329.5232599999 23 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 36343.934 2 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 41475.8457 6 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 411254.84427999996 17 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 363275.05657 13 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 727707.3523 43 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 71328.6899 10 +A0A0B4KEJ7 Coronin 12.71 7 7 0 83559.212 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 20024.3453 3 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 13762.84385 5 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 217228.61254 17 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 22078.191 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 51207.134999999995 2 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 10090.494040000001 2 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 361318.69116 24 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 327.46542 1 +A0A0B4KFA3 Uncharacterized protein, isoform F 0.88 1 1 0 525.1593 1 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 1560940.182 44 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 7120.55 2 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 4565575.3714 78 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 52420.18827 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 720415.8846 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 709953.44716 11 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 122489.93 2 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 4062.1882 1 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 68823.6189 8 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 83201.1432 7 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 5448.411400000001 2 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 116433.9803 5 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 2804.633 1 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 77650.19930000001 7 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 4432.2981 2 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 93058.37640000001 7 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 16814.2667 2 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 214154.5271 15 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 1186935.46486 22 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 855372.9294 28 +A0A0B4KGM5 Uncharacterized protein, isoform B 1.13 1 1 0 730.9848 1 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 11260.992470000001 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 20868.426 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 496988.4014 22 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 11627.5886 2 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 87040.0994 8 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 13445.017 2 +A0A0B4KH34 Annexin 55.56 21 164 3 13613033.23834 148 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 4772.0938 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 4439.186 1 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 385871.90756 17 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 260989.46063 17 +A0A0B4KHF0 Ferritin 75.42 20 121 1 14447500.178 94 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 23376714.38441 213 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 307427.79656000005 7 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 14677.098 1 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 18363.0513 2 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 223578.2323 8 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 351760.65562 22 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 141868.25 2 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 77500.4015 7 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 44574.6466 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 108520.617 6 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 5941.3403 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 865705.36086 43 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 1665356.8869 23 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 131097.43300000002 3 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 37156.596 2 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 15216.8274 2 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 4119.9613 2 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 884268.949 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 625604.9038 31 +A0A0B4LF95 glutaminase 11.14 7 11 0 85570.34530000002 9 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 537439.2707 25 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 226135.6918 21 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 72067.0714 5 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 2576.4006 1 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 27223.225659999996 2 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 12367.606899999999 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 1765.7181 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 44305.8056 6 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 23820.251 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 197168.8811 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 16388.608399999997 2 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 181856.4765 13 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 1718562.9008 46 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 208193.0505 10 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 9895.475 1 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 635895.57513 20 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 51800.9615 5 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 4181793.2808 53 +A0A0B4LGT9 Uncharacterized protein, isoform B 4.92 1 1 0 1960.6172 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 148224.6711 8 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 959897.7809 36 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 107944.516 4 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 83748.2669 6 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 3906.3984 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 41729.148 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 102856.7083 8 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 19578.907 2 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 69510.886 3 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 35025.9115 3 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 3964.4294 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 144927.72296 12 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 17605.0878 3 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 5829.3354 1 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 308734.16990000004 21 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 23557.4358 4 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 39924.581 2 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 208878.7968 11 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 91048.47300000001 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 132122.0346 12 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 43542.4913 7 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 11532742.3818 123 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 143539.752 8 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 21006.822399999997 2 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 16312.2794 2 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 988749.35928 18 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 52020.8575 3 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 11768128.93046 133 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 89463.16917 13 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 101372.7078 10 +A0A4P1SAA7 IP07559p 6.8 1 1 0 14576.338 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 924608.58958 47 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 111290.69039999999 7 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 7862.334 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 11373739.17713 268 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 14488.3907 2 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 1689017.92925 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 103403.403 7 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 35010.44552 3 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 22670.2084 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.56 2 2 0 440.99557 1 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 9882.945 1 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 5893714.73821 243 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 311296.34895 31 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 1243153.72095 28 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 547352.2276999999 15 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 138326.7652 6 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 113758.7015 8 +A1Z6F6 FI18602p1 9.88 9 10 0 176698.0534 9 +A1Z6G9 FI18173p1 10.5 3 3 3 23037.339 2 +A1Z6H4 RE52822p 14.24 7 7 0 104654.8658 7 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 41669.5206 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 44967.074 2 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 140803.71787 6 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 166387.02873999998 11 +A1Z6R7 FI21445p1 40.71 9 20 9 538849.0823 18 +A1Z6V5 FI01422p 40.46 14 31 14 1787405.1425 28 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 389166.1438 13 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 133166.0554 8 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 27493.224000000002 2 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 7377.9033 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 17648.041100000002 3 +A1Z7B8 GEO08456p1 21.52 3 5 3 143399.5292 5 +A1Z7G2 MIP13653p 13.39 2 4 2 663454.6900000001 4 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 256703.6428 16 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 33071.0411 3 +A1Z7K6 FI20236p1 6.38 3 4 3 88436.138 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 284882.7488 11 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 38248.316699999996 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 91306.4967 5 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 1483930.62998 42 +A1Z7V9 FI20020p1 10.04 5 5 0 101564.96699999999 4 +A1Z7X8 FI02944p 19.81 7 8 7 117812.408 6 +A1Z803 FI02892p 29.12 12 18 12 569919.0054 18 +A1Z843 Nodal modulator 3 9.42 11 14 11 183552.11447 14 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 1286150.6648 26 +A1Z871 CAP, isoform B 13.38 20 35 0 92234.7813 4 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 2294694.82665 46 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 186016.263 4 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 34638.027 1 +A1Z8G7 FI09243p 9.92 1 2 1 1770.5948 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 8115603.17217 42 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 113644.7857 10 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 9883.6787 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 1615.6957 1 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 40424.1712 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 993177.2107299999 19 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 445070.1103 12 +A1Z933 GEO02273p1 27.91 2 4 2 59451.4871 4 +A1Z934 SD19268p 48.83 13 30 13 921502.37052 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 20998.156 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 128204.89022999999 8 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 17800.54568 3 +A1Z9B5 IP16508p 19.88 3 4 3 68591.495 4 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 2857564.4159 44 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 659404.0096 15 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 266826.92899 31 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 462071.2271 11 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 16525.14823 6 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 206548.8627 4 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 4204.287 1 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 13211.7405 2 +A1ZA23 FI18007p1 33.64 10 24 10 369696.93431 24 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 131741.8583 6 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 58593.9645 6 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 25146.959000000003 3 +A1ZAH3 FI16515p1 1.93 1 1 0 477.88135 1 +A1ZAK3 Protein DEK 4.05 3 3 0 69474.467 3 +A1ZAL1 lysozyme 30.43 5 7 5 362715.3855 7 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 7397.8765 1 +A1ZAU4 RH39096p 52.14 16 49 0 3436718.42704 47 +A1ZB23 IP19117p 16.06 4 7 4 106312.777 5 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 9340.748 1 +A1ZB68 FI01423p 45.91 11 28 11 1006855.0025 26 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 817754.04383 23 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 176864.09617 7 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 925076.2652 16 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 22514.197999999997 2 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 65081.4475 3 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 1596629.6966 37 +A1ZBA5 FI07234p 7.22 2 2 2 39372.597 2 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 19882.324399999998 4 +A1ZBD8 Mucin-5AC 2.99 4 4 4 20412.4492 2 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 4397.2314400000005 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 706894.2027 37 +A1ZBK7 Crammer 31.65 3 11 3 116158.26148 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 21302.746 1 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 468817.31620000006 11 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 564789.327 11 +A1ZBU5 GNBP-like 3 28.29 3 10 3 180887.3707 9 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 20349.238 1 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 1659993.74 42 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 17957.783 1 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 431514.0281 29 +A1ZBX6 lysozyme 9.5 2 2 2 7079.748299999999 2 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 6052.304 1 +A2VEG3 IP16294p 1.06 1 1 0 2264.688 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 4829.37 1 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 90547.21095000001 8 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 1524089.15113 32 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 60061.84524 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 255737.71476 14 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 3161118.3079999997 67 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 3341541.80581 92 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 7203.3413 1 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 2470735.4149 35 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 267665.6824 11 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 67705.563 2 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 794221.6246 12 +A8DYD1 Combgap, isoform L 10.75 8 11 0 135964.2297 9 +A8DYI6 Prohibitin 65.98 22 79 1 3680148.66247 72 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 294975.5897 16 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 168804.6628 8 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 844.4084 1 +A8DZ06 Stolid, isoform J 12.46 14 21 0 416210.4488 16 +A8DZ14 FI17828p1 18.02 9 24 4 782960.93648 23 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 43508.308000000005 4 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 320085.88154000003 35 +A8E6W0 IP19808p 19.7 4 5 4 140573.7126 5 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 61580.17413 6 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 23901.292 3 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 52130.3355 3 +A8JNP2 arginine kinase 73.07 36 447 2 2513247.819 16 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 19126.76785 7 +A8JNS4 Starvin, isoform E 7.4 4 5 0 67992.52350000001 5 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 11754.4786 2 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 176772.639 3 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 27413.6371 5 +A8JQT5 Moesin/ezrin/radixin homolog 1 1.31 4 6 3 1316.95884 2 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 60274.0322 4 +A8JQW3 Pinin, isoform B 18.24 5 5 0 60127.24666 5 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 90914.92199999999 2 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 229832.5844 12 +A8JR58 Hadley, isoform B 7.64 2 2 1 2848.62057 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 4113316.1182 66 +A8JRH3 FI20012p1 66.73 28 71 1 2324409.80296 65 +A8JTM7 Megalin, isoform A 2.81 14 18 14 176809.6588 15 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 81017.3292 7 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 27068.048600000002 3 +A8JUZ6 MIP03678p 16.77 5 7 0 96464.74729999999 4 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 5691.25405 3 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 630532.16243 27 +A8WH76 GEO10024p1 48.15 4 13 4 513595.70128000004 13 +A8Y4V5 FI20903p1 5.22 1 1 1 3953.151 1 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 22748.873 1 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 5273911.336399999 12 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 15142.206 1 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 46722.462 3 +B7YZH1 FI20143p1 7.21 4 4 0 20863.95698 4 +B7YZN0 Syndecan 12.55 6 8 0 170162.93 7 +B7YZN4 GH02741p3 49.23 4 4 4 56120.388 4 +B7YZN8 GH02741p1 10.53 1 1 1 53860.375 1 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 85975.1106 5 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 6665739.87045 88 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 11425.6404 2 +B7YZV2 Phosphodiesterase 6.39 6 8 0 124779.1424 8 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 468617.97473 25 +B7Z001 Fatty acid synthase 20.0 44 74 0 1187839.05784 71 +B7Z005 Drongo, isoform I 6.42 3 3 0 27825.6596 3 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 2648.1003 1 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 6831.4185 1 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 20433.8553 2 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 65811.103 3 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 66254.6746 8 +B7Z0C9 GH15104p1 34.74 4 7 4 76802.7693 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 12111708.6992 138 +B7Z0M0 FI17308p1 22.13 2 2 1 25061.77 1 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 5294.7149 2 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 295648.11340000003 11 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 275563.9661 14 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 21896.886 2 +B7Z107 GH09380p1 29.35 3 5 3 34781.112 3 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 5317.8325 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 41061.8153 3 +C0HDP4 MIP05618p 11.31 4 4 0 14232.6709 4 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 2139362.8152 37 +C7LAG1 CoRest, isoform G 2.31 2 2 1 22231.453 2 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 1668163.23869 52 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 667842.21303 29 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 287833.0031 8 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 72112.5885 3 +D0Z756 MIP14966p 36.55 15 61 0 3429599.72005 58 +D1YSG0 Bent, isoform F 4.99 39 42 0 450903.21074 40 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 288351.3405 8 +D3DMM0 MIP15702p 29.31 12 28 0 1032888.3662 28 +D3DMM4 MIP15217p 28.27 22 50 0 1660904.22881 46 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 214244.7632 6 +D5SHT6 MIP21537p 8.03 3 3 0 28180.867 3 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 28649.002699999997 3 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 164501.6858 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 282177.9968 20 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 331737.14905 16 +E1JGR3 GEO02620p1 24.62 3 3 3 4584.5042 2 +E1JGY6 Hulk, isoform F 11.14 17 21 0 359253.7696 21 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 191782.0665 12 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 11813.242 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 6163.866 2 +E1JH90 Patronin, isoform F 0.78 1 1 0 1872.7142 1 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 903489.17253 50 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 30570.7396 4 +E1JHJ2 Uncharacterized protein, isoform C 2.11 1 1 0 293.88474 1 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 202757.7984 9 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 32563.8453 3 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 45333.355 3 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 187365.204 9 +E1JHP9 Galectin 6.21 3 3 0 26248.743300000002 3 +E1JHT6 Reticulon-like protein 38.71 18 38 0 1416533.1217 36 +E1JI40 Vermiform, isoform I 11.89 7 9 0 167485.3592 7 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 59980.9847 4 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 68948.40699999999 2 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 13261.876 1 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 55139.405459999994 3 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 10681.706 2 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 6535.735 1 +E1JIY8 L antigen family member 3 20.72 3 3 3 84303.839 3 +E1JJ33 Complexin, isoform U 66.43 10 72 2 2349863.1522 71 +E1JJA4 Dynamin 35.22 31 59 0 1089034.10365 58 +E1JJE4 protein-tyrosine-phosphatase 1.86 3 3 0 617.46967 1 +E1JJG5 Phospholipase A2 2.93 1 1 1 5072.003 1 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 2423200.4318 66 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 40899.6861 5 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 143221.1998 9 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 16716.0415 2 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 899510.10121 43 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 13969.036100000001 2 +E2QD54 Natalisin, isoform D 5.61 3 3 0 30776.8036 3 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 187370.7588 18 +E2QD98 Protein PALS1 5.59 10 13 0 280881.3711 11 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 80439.3483 6 +E8NH67 Asperous, isoform B 59.09 20 77 0 1791090.26194 63 +F0JAP7 LP18071p 13.97 4 5 0 35444.4551 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 57544.34534 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 2281899.38553 101 +H1UUB1 GEO12465p1 48.84 5 11 1 644977.3968999999 9 +H8F4T3 Regucalcin 45.75 9 15 0 819300.7641 15 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 115550.39229999999 5 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 77409.4713 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 1035671.1489 36 +L0MPN7 Asator, isoform H 7.38 8 8 0 103426.6306 7 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 58889.977399999996 10 +M9MRX0 Limpet, isoform J 27.3 27 63 0 1832494.6120200001 54 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 447933.02719 43 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 114067.8086 9 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 112071.5484 8 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 55128.8167 5 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 464540.64113 17 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 764830.158 13 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 1245855.02284 35 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 11122.906 1 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 2982.1504 1 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 160851.2516 7 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 177444.6631 10 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 108533.31569999999 10 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 253887.8976 15 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 180207.0674 14 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 182306.55299999999 9 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 19417639.26917 383 +M9NDB5 RNA-binding protein 6, isoform F 36.89 6 15 1 1965.0464 1 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3470.4238 1 +M9NDE0 pantothenate kinase 4.21 2 3 0 15506.23877 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 58813.1443 4 +M9NDS9 chitinase 0.67 3 4 0 40351.537000000004 3 +M9NDX8 Neurabin-1 1.98 4 4 0 19118.9126 3 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 45582.82495 10 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 121096.10339999999 10 +M9NEF2 Histone deacetylase 2.33 1 1 0 683.94214 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 11294.1045 1 +M9NEW0 LD39232p2 58.67 9 12 9 307539.55703 12 +M9NEX3 Cytochrome b5 57.55 6 27 0 640773.93524 21 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 82026.0889 5 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 102800.5003 6 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 143666.0018 11 +M9NFC0 Troponin I 47.24 15 56 5 1292347.042 14 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 87392.5876 4 +M9NFH3 Lasp, isoform D 39.01 10 22 1 95596.8516 3 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 347990.57944 19 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 5122.3906 1 +M9NH07 Upheld, isoform N 45.43 30 106 0 9136375.8682 95 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 198534.60652 14 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 137142.7808 6 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 875569.43004 33 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 6422.0117 1 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 60397.6034 5 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 2836.8145 1 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 4706841.55184 121 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 0.34 1 1 0 1667.6827 1 +M9PBM3 Cysteine protease 8.54 3 5 0 16170.062600000001 4 +M9PBN2 Apolipoprotein D 20.82 3 10 0 305264.4567 8 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 507957.4019 22 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 4845.1602 2 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 88096.02299999999 5 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 378954.32184 18 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 747787.839 19 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 18803.8176 4 +M9PBW9 Rhea, isoform G 6.64 17 18 0 159163.1581 18 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 251297.8767 10 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 21863818.09163 178 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 45613.622 2 +M9PC74 Reticulocalbin-3 23.01 10 15 0 459369.7598 14 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 3661.78385 2 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 31988.451999999997 2 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 11902.667 1 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 18255.202100000002 3 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 102820.5347 7 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 90740.56625999999 10 +M9PCI1 Uncharacterized protein, isoform B 2.85 2 2 0 2394.62835 2 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 39154.244999999995 3 +M9PCT7 Bunched, isoform O 16.15 3 5 1 8224.691 1 +M9PCU0 FI21215p1 30.84 38 66 1 20945.803 1 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 166078.88546 10 +M9PD73 TEP1-F 23.71 32 47 0 1404548.3226 44 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 749314.8252 17 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 10434.4751 2 +M9PDB2 Varicose, isoform E 7.69 5 5 0 28354.47815 5 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 649958.53902 30 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 17139.453 1 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 45318.878 5 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 45498.872 2 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 93534.59340000001 6 +M9PDU4 Acyl carrier protein 18.23 4 29 2 4231120.5709999995 27 +M9PDV2 Tetraspanin 12.89 3 3 0 11073.833999999999 2 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 389229.75848 35 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 228667.29150000002 11 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 5353885.82405 58 +M9PE32 Fife, isoform D 12.56 14 19 0 171293.07976 16 +M9PE35 RabX6, isoform B 8.11 2 2 0 10422.7676 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 2201.04 1 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 11194.240300000001 2 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 18167.80284 5 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 20649.755599999997 2 +M9PEC1 IST1 homolog 21.0 7 10 0 181852.9884 9 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 273705.7623 11 +M9PEG1 Uncharacterized protein 27.38 16 49 16 1206144.40886 49 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 2656221.47305 196 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 88294.762 6 +M9PEL3 Quemao, isoform C 23.62 7 9 0 97742.3579 8 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 86935.90894000001 5 +M9PET3 Simjang, isoform D 2.38 2 2 0 1168.3066399999998 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 9116.774 1 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 6201.6064 1 +M9PF16 Spectrin beta chain 24.44 59 123 3 2293678.68262 109 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 937326.5004 23 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 28116.36 2 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 69435.01879999999 7 +M9PFH7 Tartan, isoform B 2.53 2 3 0 11787.7539 2 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 22171.879 2 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 11969.5555 2 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 44817.415 2 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 10562.11654 4 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 263904.2157 10 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 105884.886 8 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 64045.402 4 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 9135424.21876 182 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 87637.5413 5 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 48246.1593 4 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 561121.0115 10 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 7281.2896 1 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 168594.2797 13 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 27288.439 2 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 427565.3166 21 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 364802.9275 20 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 23289.355499999998 2 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 95498.2516 9 +M9PHX2 Visgun, isoform E 3.82 1 1 1 15980.714 1 +M9PI33 Inositol oxygenase 11.64 2 2 0 40630.461 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 27378.2596 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 46712.490900000004 3 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 280908.80700000003 4 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 20401.573 2 +M9PJQ5 Troponin I 45.65 14 66 0 466445.8594 14 +O15971 LD39986p 30.39 7 26 4 117959.1318 7 +O16158 Calcium-binding protein 48.91 7 30 7 2356036.3772299998 26 +O17452 LD20793p 27.83 6 17 4 501465.26560000004 15 +O18332 FI01544p 60.98 11 51 9 1320166.55095 43 +O18335 Rab11 57.94 14 57 14 3359524.1982 56 +O18336 Ras-related protein Rab-14 39.07 8 16 1 282345.0559 13 +O18338 LD44762p 23.19 5 23 0 581.3231 1 +O44226 Elongin-B 97.46 10 30 10 1528574.1342 25 +O44434 QKR58E-3 24.92 7 8 5 158135.0174 6 +O46048 EG:133E12.4 protein 0.47 1 1 0 416.19373 1 +O46052 EG:152A3.3 protein 12.67 4 5 1 26293.2777 4 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 1331071.66736 44 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 23073.209 1 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 209643.1772 8 +O61604 Fimbrin 37.34 25 48 3 2158324.5764 46 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 36164.408599999995 7 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 29214.621 3 +O76521 Importin subunit alpha 5.52 3 5 3 65077.6443 4 +O76752 Sepiapterin reductase 28.74 7 12 7 297728.5145 11 +O76877 EG:132E8.3 protein 20.62 3 4 3 263794.886 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 2999998.2083 25 +O77259 EG:115C2.5 protein 4.0 1 1 0 27495.436 1 +O77425 Ribokinase 3.29 1 1 1 11932.042 1 +O77430 GEO01111p1 71.6 13 21 12 765382.052 18 +O77434 EG:34F3.8 protein 39.34 7 15 1 160522.9213 13 +O77477 LD24471p 28.57 10 11 10 113007.66660000001 9 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 31825.183 2 +O96692 small monomeric GTPase 21.98 4 7 1 109718.6204 7 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 87701.4326 4 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 5863.492 2 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 11502.9395 2 +O97059 Ccp84Ab 36.2 6 6 0 270836.145 5 +O97062 Ccp84Ae 75.96 13 31 13 459216.97739 28 +O97064 Ccp84Ag 37.17 5 9 5 62522.006400000006 5 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 12547.659 1 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 1493919.5928 24 +O97111 LD29223p 11.97 4 4 4 45804.396 4 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 6457.643 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 49915.243500000004 2 +O97365 BM-40 24.01 7 7 7 237665.853 6 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 1622039.58586 37 +O97428 Ciboulot, isoform A 29.46 4 5 1 48864.9296 4 +O97454 Protein BUD31 homolog 19.44 3 3 3 33259.8796 2 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 579608.6826 20 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 4673.0205 1 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 9400454.41274 60 +P92181 Cuticle protein DCP2 37.61 4 8 4 96797.7589 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 26566.926199999998 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 2687378.1251 45 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 290782.552 8 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 56173.969600000004 3 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 1602527.22257 83 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 10266.861 1 +Q0E8P5 FI05614p 19.04 11 19 11 103385.01329999999 14 +Q0E8S7 Homer, isoform E 30.13 14 34 1 1750257.51754 33 +Q0E8U4 FI09636p 20.0 6 7 6 134720.5324 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 532654.8559 18 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 53654.4935 3 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 2533626.9355 42 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 975074.74804 19 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 422897.55151 21 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 5132.074140000001 3 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 801545.04276 53 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 468194.02964 18 +Q0E9G4 CG1600-PA 3.41 1 3 0 45261.5424 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 196498.4285 15 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 3002.829 1 +Q0KHR7 Septin 15.46 9 14 0 417642.238 13 +Q0KHX7 FI18193p1 6.03 7 7 0 81552.6274 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 7767308.912 105 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 75803.282 4 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 129679.34246 14 +Q0KI39 FI16806p1 18.15 3 6 1 24596.449200000003 4 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 482879.8613 17 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 73351.7197 9 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 91232.431 4 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 5472.655400000001 2 +Q1RL12 IP16413p 54.97 15 74 2 119372.90900000001 3 +Q24090 GH08712p 7.57 3 3 3 55595.837 3 +Q24253 AP complex subunit beta 20.2 15 23 15 639066.7753 21 +Q26459 EN protein binding protein 18.26 9 16 0 250917.1805 15 +Q29QY7 IP15859p 9.86 1 1 0 73808.77 1 +Q2MGK7 GEO13330p1 20.47 3 5 3 142806.11800000002 5 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 7450.7183 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 41433.698000000004 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 8989490.00429 109 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 50132.39492 5 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 328526.0438 9 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 19546.4272 3 +Q4QQ49 IP09595p 2.7 1 1 1 18575.568 1 +Q4QQ70 IP09819p 18.42 6 7 6 73077.58559999999 6 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 16725.128 3 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 16224.149 2 +Q4V619 IP07950p 6.9 2 3 0 30230.9084 3 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 271475.70129999996 5 +Q500Y7 GEO11443p1 87.72 4 40 4 902441.5030499999 39 +Q59E01 FI02065p 3.0 2 2 0 2807.40567 2 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 45990.509600000005 3 +Q5BIA9 RE10908p 2.48 1 1 1 1434.9454 1 +Q5LJT3 MIP01391p 10.93 2 5 2 86244.204 5 +Q5U124 alpha-glucosidase 17.62 10 18 0 371393.3223 17 +Q5U126 GEO11286p1 59.42 7 37 7 4078256.8155 36 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 243981.4317 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 31711.27523 6 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 870724.97443 29 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 24385.315000000002 2 +Q6IGN6 HDC05827 42.05 4 5 4 113928.771 4 +Q6IGW6 GEO13367p1 44.23 2 4 2 63149.5803 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 1988010.368 14 +Q6IIF2 GEO11103p1 7.14 1 1 1 12120.4375 1 +Q6IL43 GEO11093p1 13.25 1 2 1 92758.526 2 +Q6NL44 GH28815p 20.08 8 10 8 99465.80677 10 +Q6NLJ9 AT19138p 38.64 2 2 2 33139.666 2 +Q6NMY2 RH54371p 21.43 5 27 5 1690165.1848 22 +Q6NNV2 RE44043p 5.81 2 2 0 167960.99599999998 2 +Q6NNV7 RH03309p 36.84 7 23 1 697164.70346 19 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 33490.484 2 +Q6NP72 GEO09659p1 33.33 4 16 4 731519.2440000001 16 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 25000.679 2 +Q76NR6 Regucalcin 83.07 23 133 0 9800892.10197 118 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 242897.85749999998 12 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 310786.2818 13 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 1755811.39845 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 10231.601 1 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 631080.3728 18 +Q7JQX9 FI14001p1 4.33 4 4 0 25700.009 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 6772210.50814 97 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 348216.61579999997 7 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 24281.1244 3 +Q7JRF1 RE48509p 6.5 2 3 1 17522.811999999998 3 +Q7JRH5 RE28271p 1.31 1 1 1 14263.027 1 +Q7JRL9 GH25289p 67.12 10 52 1 3767090.807 46 +Q7JRN6 GH06388p 6.73 2 2 2 18036.043 2 +Q7JS69 FI04632p 35.69 10 68 1 789161.157 8 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 19020.9579 3 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 1143296.8605 24 +Q7JV09 GH28348p 4.84 5 5 2 23548.800799999997 5 +Q7JV69 SD11922p 11.76 4 9 4 112624.61554 8 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 13375.5803 3 +Q7JVH6 LD24696p 47.27 12 27 11 455833.54446 17 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 98184.2868 8 +Q7JVK6 Translin 24.26 6 8 6 138940.338 8 +Q7JVK8 GEO08987p1 53.42 7 13 7 947358.6293 13 +Q7JVM1 GH25962p 22.64 5 6 5 58907.58316 4 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 150072.38950000002 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 166593.322 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 71475.4256 4 +Q7JW48 RE12410p 5.57 2 2 2 2062.338 1 +Q7JWD6 Elongin-C 46.15 5 17 5 1637242.1787999999 17 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 1541271.9387 28 +Q7JWH5 RING-box protein 2 27.43 2 3 2 46221.056 3 +Q7JWQ7 RE01730p 5.34 2 3 2 11900.562399999999 3 +Q7JWU9 AT07420p 19.68 5 5 5 37922.729 3 +Q7JWX3 GH10112p 22.48 7 11 7 200104.24726 11 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 120778.44399999999 5 +Q7JX94 Phospholipase A2 15.61 3 3 3 6891.67382 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 97521.151 7 +Q7JXB9 Endonuclease 10.65 3 3 3 68783.05 3 +Q7JXC4 CG6459 protein 33.46 6 38 6 2672577.6061 37 +Q7JXW8 Off-track2 4.39 2 2 2 11919.177 2 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 103656.2319 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 774691.605 8 +Q7JYW9 Phosphotransferase 19.38 9 13 9 165989.33060000002 13 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 32091.380100000002 5 +Q7JYZ0 lysozyme 39.13 4 9 4 282570.0598 8 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 332531.5112 16 +Q7JZB1 RE49860p 2.09 1 1 1 3540.118 1 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 1515202.08935 29 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 4091.0188 2 +Q7JZE1 Peroxin 11 6.22 2 2 2 55246.157999999996 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 141513.15 3 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 3855289.2941 32 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 131923.13035 13 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 643848.9759 23 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 1842717.844 17 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 33280.9889 4 +Q7K076 GEO08269p1 22.14 2 2 0 23310.203 1 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 17430415.75768 135 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 30136.684 1 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 1415307.72838 37 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 62296.6969 4 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 69481.595 3 +Q7K0S1 LD39211p 1.83 1 1 1 2803.2588 1 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 392306.97903 20 +Q7K0S6 LD36817p 19.03 8 9 8 192084.3951 9 +Q7K0W4 LD27203p 46.95 14 45 14 2305912.97605 44 +Q7K0X9 LD23667p 23.4 5 12 5 132335.21360000002 11 +Q7K127 Alpha-galactosidase 15.83 7 17 7 264634.56669999997 14 +Q7K148 Proteasome subunit beta 22.34 6 8 6 106623.79656 8 +Q7K159 LD06557p 22.47 5 6 5 62524.621999999996 6 +Q7K180 LD02709p 22.5 11 14 11 158992.76538 13 +Q7K188 GEO05126p1 30.97 6 40 6 3045922.57453 38 +Q7K1C0 GH23780p 50.5 6 11 1 142429.6715 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 147347.352 5 +Q7K1C5 GH21176p 9.19 6 7 6 334712.5097 6 +Q7K1H0 GH09096p 20.06 7 8 6 99418.9988 7 +Q7K1M4 SD04017p 16.99 5 12 5 147601.7841 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 143259.032 5 +Q7K1W5 LD35843p 30.05 12 20 12 861839.8909 20 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 48268.8384 2 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 804063.86111 25 +Q7K2E1 LD05247p 18.9 10 15 10 289646.5236 12 +Q7K2L7 GH27120p 28.14 4 11 4 803865.419 11 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 39952.1768 3 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 25425.818 2 +Q7K2P3 GH20817p 58.7 13 31 1 626428.5449 23 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 167691.50912 8 +Q7K2W6 tyrosinase 22.32 13 21 13 84337.48642 15 +Q7K332 GH17623p 23.43 6 10 5 252355.8607 9 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 300459.4 12 +Q7K3E2 LD34147p 59.21 30 59 30 1477707.73624 56 +Q7K3H0 LD28067p 1.44 3 3 0 54304.514 3 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 1448845.794 35 +Q7K3N4 GH26015p 14.95 6 7 6 120606.9846 6 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 89445.69499999999 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 222860.5865 11 +Q7K3W4 GH08941p 25.85 8 20 8 799666.82813 20 +Q7K3Y9 Spondin-1 1.26 1 1 1 480.38452 1 +Q7K3Z3 GH01724p 51.6 16 44 16 1000982.06304 39 +Q7K485 Cathepsin D 35.71 9 36 9 1112042.8826 29 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 72449.99059999999 4 +Q7K4J7 LD36653p 7.38 2 2 2 12736.9582 2 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 2541.12 1 +Q7K4T8 LD23856p 6.55 3 4 3 12831.8046 2 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 22105.084499999997 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 90244.4991 9 +Q7K519 GH16429p 17.66 5 8 5 60633.473999999995 7 +Q7K533 GH14572p 6.14 2 2 2 21188.950399999998 2 +Q7K549 GH13040p 18.08 8 8 8 65647.4146 8 +Q7K561 GH11294p 6.82 2 2 2 897.01953 1 +Q7K568 GH10642p 8.33 3 3 3 43203.954 3 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 1286721.75736 47 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 421331.52275 12 +Q7K5M6 GH04176p 20.95 6 11 6 212629.5499 10 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 435153.6174 24 +Q7K860 FI07231p 39.22 7 12 7 2009365.443 11 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 359043.49944 12 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 1466.7719 2 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 43966.1864 4 +Q7KK90 GH14654p 55.8 9 28 9 1970406.6316 24 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 369378.5397 17 +Q7KLE5 Amphiphysin 49.67 26 71 3 2893006.74309 62 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 98697.40030000001 9 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 611853.7302999999 11 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 216398.91 7 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 31895.572419999997 4 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 557715.3975 21 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 1713100.2354 53 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 91964.8114 5 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 731614.64884 35 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 5469176.01232 103 +Q7KND8 FI09619p 3.7 3 3 3 74930.035 3 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 772014.245 13 +Q7KRT4 GH07253p 4.94 2 2 0 8017.2362 2 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 33108.86496 4 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 54261.34925 6 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 395915.0287 10 +Q7KSE4 GH05443p 2.78 2 2 2 24071.048000000003 2 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 903974.9598000001 15 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 1840786.0777 23 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 34007.415 2 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 14129.999 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 673901.2286 20 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 1502972.43959 43 +Q7KT58 GH08155p 3.52 2 3 2 34379.607 3 +Q7KT70 FI18641p1 2.93 3 3 3 17693.88707 3 +Q7KTA1 HL01444p 17.1 7 10 7 180122.9938 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 366088.09914 24 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 3908934.4066 62 +Q7KTN9 FI01009p 3.11 2 2 0 14453.5164 2 +Q7KTP7 LP22840p 31.49 5 7 5 228623.8663 7 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 2363417.40913 57 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 634869.6404 16 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 675148.57104 24 +Q7KUD4 phospholipase A2 2.93 3 3 0 4059.5004 2 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 2055037.9743000001 14 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 62795.816 3 +Q7KUT5 Protein MIX23 26.89 4 6 0 71360.3428 6 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 133451.3445 6 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 36736.997 2 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 437587.389 16 +Q7KV27 alanine transaminase 51.76 27 130 0 10360847.9691 120 +Q7KV34 Pinkman 38.9 26 40 26 1431829.3817 39 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 17861.438000000002 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 9461.463 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 105721.63124 14 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 30890.807 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 8121553.8357 82 +Q7KY04 small monomeric GTPase 21.13 4 7 3 17055.6286 2 +Q7PL91 GEO11417p1 19.15 3 8 3 746538.6182 7 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 12352.700700000001 2 +Q7PLI0 P120 catenin 15.62 12 15 12 285833.51605 13 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 524305.427 14 +Q7PLS1 LD01937p 15.76 6 8 0 182152.038 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 152282.143 6 +Q7YU88 SD08871p 2.84 3 3 0 3836.4837 2 +Q86B44 Glutathione synthetase 13.17 8 13 0 188697.7124 10 +Q86B74 WASp, isoform C 12.55 5 5 0 71374.3692 5 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 71612.4471 4 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 13386.516 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 372456.5803 21 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 191774.6829 9 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 354731.49079999997 16 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 736380.1671 15 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 1785008.1948000002 15 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 765577.6975 24 +Q86BS3 Chromator, isoform A 28.19 21 40 21 761507.35516 31 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 69186.633 6 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 560056.986 20 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 29160.155700000003 3 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 101835.445 4 +Q8I0D4 RE20510p 28.36 21 42 0 1211286.4649 39 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 44106.347 3 +Q8I0P9 acid phosphatase 1.76 1 1 0 31341.232 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 593490.4487000001 18 +Q8I930 GH14147p 2.22 1 1 0 6395.887 1 +Q8I941 GH16843p 35.59 10 23 10 742323.0342999999 23 +Q8IGY1 RE08101p 30.52 35 241 0 18949802.8783 116 +Q8IH23 GEO02102p1 20.74 4 12 4 493316.1558 11 +Q8IM93 FI18814p1 37.97 17 28 17 612924.9716 25 +Q8IMF4 RE24176p 5.23 3 5 0 41325.4528 5 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 589392.57284 27 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 53661.66546 4 +Q8IMQ8 RH29536p 42.94 12 32 0 1353717.2592 31 +Q8IMT3 IP12392p 6.19 3 3 2 50329.979999999996 3 +Q8IMT6 FI01822p 8.29 4 5 4 54922.316 4 +Q8IMU2 RE10237p 6.53 2 2 0 35330.203799999996 2 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 18246.123 2 +Q8IMX4 FI04408p 6.6 2 4 0 19388.4481 4 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 115121.88514 5 +Q8IN49 MIP05539p 9.17 8 10 8 98638.84116 9 +Q8IN51 FI17609p1 37.59 7 17 7 161537.5783 17 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 76996.98 3 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 26625.8837 2 +Q8INH5 Aminopeptidase 7.53 7 8 0 60684.9208 8 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 24492.5864 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 4648.7373 1 +Q8IP52 RE16941p 2.66 3 3 3 20297.732 3 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 135098.5194 8 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 505809.06534000003 22 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 59371.060000000005 2 +Q8IP97 Peroxin-19 52.05 11 27 11 576789.4736 24 +Q8IPA5 RE15581p 5.36 1 2 0 35831.951 2 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 107447.497 2 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 197051.3182 9 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 2114808.2888 71 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 42837.407699999996 4 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 31319.022 3 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 771948.9839999999 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 9115.8 1 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 143910.372 6 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 23541.503 2 +Q8IPT9 SD05439p1 43.49 11 21 0 609608.0910499999 15 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 1257790.8537 32 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 42463.0853 5 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 23035.501200000002 2 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 14872.6993 2 +Q8IQB7 MIP21654p 9.44 3 4 3 52235.2145 3 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 26849.7736 3 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 51556.8995 3 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 39959.44 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 87570.2032 7 +Q8IQH0 FI12817p 5.37 8 8 1 48858.67427 7 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 119881.714 6 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 5304.9187 2 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 266376.7569 23 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 54765.344 2 +Q8IQW5 RE23625p 73.96 13 69 3 3118040.11729 57 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 44781.2549 4 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 7977.27864 3 +Q8IR76 FAD synthase 17.35 5 5 0 38468.3661 4 +Q8IRD0 RH17559p 40.82 2 7 2 113976.04460000001 6 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 5344160.888 60 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 161728.0972 17 +Q8IRI5 Trio, isoform D 10.7 8 10 0 157589.8244 10 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 9164337.56827 138 +Q8MKJ5 GEO08105p1 13.27 1 1 1 2424.4673 1 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 19121.744 2 +Q8MLP9 GEO08457p1 33.93 4 5 4 54524.2031 5 +Q8MLQ0 FI14118p 21.05 2 4 2 116638.925 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 584708.172 14 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 222519.01405 13 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 572566.30896 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 3445376.97201 74 +Q8MQP2 MIP16184p 7.0 2 2 0 19241.1834 2 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 8044.6768999999995 2 +Q8MRM0 GH16740p 35.44 8 18 8 572169.664 18 +Q8MRT7 SD26038p 9.2 2 2 2 22557.813000000002 2 +Q8MRW1 SD19278p 5.83 1 1 1 5618.9956 1 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 13083.1377 3 +Q8MSI2 GH15296p 82.01 19 124 19 23584958.7315 109 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 19273.011100000003 3 +Q8MST5 Tubulin beta chain 45.08 17 105 0 454361.82853 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 2996821.9048 61 +Q8MZ07 GEO07581p1 17.81 3 5 3 75732.8544 5 +Q8MZI3 RNA helicase 18.34 13 16 3 155483.9065 11 +Q8SWS2 RE29468p 60.95 6 30 0 877646.6826000001 25 +Q8SWS3 RE26528p 20.44 2 4 2 54048.348 4 +Q8SWZ6 RH51312p 8.33 2 2 2 36551.3254 2 +Q8SX06 GEO08318p1 16.67 2 3 2 67739.328 3 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 27281.4807 3 +Q8SX35 GEO07743p1 26.53 3 4 0 43066.469099999995 4 +Q8SX50 RE04530p 17.3 6 7 0 106211.83230000001 6 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 52061.451 3 +Q8SX57 LD44221p 47.08 8 17 8 275600.68866 15 +Q8SX78 LD05679p 17.93 7 7 7 69635.5332 7 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 63970.67 4 +Q8SXC2 FI04487p 9.11 5 5 5 57719.0236 5 +Q8SXD5 GH02216p 55.13 11 33 2 1832371.49018 33 +Q8SXE1 RH69521p 2.6 1 2 1 4625.4195 2 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 77103.131 4 +Q8SXF2 RH40246p 7.01 3 4 3 65907.4 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 15879.841499999999 2 +Q8SXK0 RE18748p 2.91 1 1 1 9493.717 1 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 322585.22683 21 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 4356.7974 1 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 447270.00253 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 10212.03125 4 +Q8SXS0 RE40914p 12.25 5 5 5 30629.1136 3 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 1159310.5398 19 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 3557.84684 2 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 84382.664 1 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 7809.780699999999 3 +Q8SY67 lysozyme 14.47 2 3 2 14552.955999999998 2 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 383409.599 6 +Q8SYC4 RE68566p 1.72 1 1 1 37480.88 1 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 2702966.69945 53 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 729959.36303 18 +Q8SYH8 RE57644p 18.68 5 10 1 83783.81698 9 +Q8SYJ2 GEO09626p1 67.47 9 59 9 6807700.250600001 56 +Q8SYN0 RE52086p 9.3 4 5 4 43408.99308 5 +Q8SYQ4 RE42475p 70.27 11 44 11 2009942.68422 39 +Q8SYQ8 RE40412p 19.85 3 3 3 60556.844 3 +Q8SZK5 RH26533p 10.29 3 3 3 42792.482950000005 3 +Q8SZK9 HL04814p 48.48 12 60 12 5060476.6001 55 +Q8SZM2 RH04334p 25.19 7 27 7 1886176.394 26 +Q8SZN1 GEO08217p1 51.61 7 29 3 1060034.8831 28 +Q8T0I9 GH27479p 16.47 7 12 1 330792.8882 10 +Q8T0J5 GH26851p 41.11 12 33 0 1715251.44 30 +Q8T0N5 GH17516p 19.21 6 9 6 383714.541 8 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 99582.8052 9 +Q8T0V2 GH02495p 19.91 8 13 0 196347.12099999998 10 +Q8T389 Endophilin B 40.74 15 54 0 5862.069 1 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 23453.7364 3 +Q8T3W8 Venom allergen-1 9.54 3 3 0 57628.487 3 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 8504.083 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 889708.35203 34 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 2816114.5223 58 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 35684.005 3 +Q94513 Boundary element associated factor 18.79 5 10 1 175075.8366 9 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 74704.5669 6 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 13461.5607 2 +Q95NU8 GH16255p 13.57 8 12 8 200162.12267 12 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 6153.269 1 +Q95PE4 GEO07784p1 6.17 1 1 1 20520.248 1 +Q95R34 GH16463p 9.71 3 3 3 48594.43834 3 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 76704.389 3 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 85352.2384 5 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 19392895.515780002 139 +Q95RC5 LD44506p 5.31 3 3 3 30957.036 3 +Q95RE4 LD37574p 41.48 11 18 0 53150.2586 12 +Q95RF6 LD34461p 34.5 4 13 4 252209.613 11 +Q95RI2 LD28549p 27.78 8 12 8 191921.585 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 56727.2 4 +Q95RQ1 LD16414p 3.32 2 2 2 8703.118 1 +Q95RR6 LD15002p 64.6 17 61 0 160861.57 2 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 110834.8904 7 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 519020.58999999997 2 +Q95RY2 LD01461p 48.09 10 18 2 559247.4031 13 +Q95SH0 GH26463p 1.52 2 2 2 16410.85 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 420131.9698 12 +Q95SH7 GH26007p 8.57 2 3 2 37461.827 3 +Q95SI7 GH23390p 65.87 15 59 15 2462998.31825 55 +Q95SN8 GH12395p 21.83 5 8 5 196191.0018 8 +Q95TK5 LD44914p 22.77 9 11 8 114475.3569 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 1046571.1175 31 +Q95TP0 LD34582p 3.1 1 1 1 10631.006 1 +Q95TZ7 GH19182p 78.36 26 115 0 3882982.66697 87 +Q95U15 GH14252p 75.64 27 227 0 4509896.11146 32 +Q95U34 GH11113p 22.45 11 21 11 748996.18195 19 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 166940.799 8 +Q960D4 SD06560p 25.8 16 21 1 347172.05285 20 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 8648974.03415 81 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 348744.02606 24 +Q961A8 LD25351p 1.59 1 1 0 631.60846 1 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 94857.369 4 +Q961B9 LD24073p 6.28 3 4 3 52714.5143 4 +Q961C8 LD22649p 10.93 4 5 0 17346.4213 3 +Q961E7 phosphorylase kinase 7.16 4 5 1 24312.410200000002 3 +Q961Q8 GH10454p 6.42 3 3 3 43066.062399999995 2 +Q961T9 GH07914p 29.41 6 10 6 250039.8179 10 +Q961X4 Combover, isoform B 11.74 9 14 0 106069.8168 13 +Q966T5 Paxillin, isoform D 28.93 7 18 3 131365.436 4 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 90561.94603 5 +Q9I7I3 GH12831p 9.56 3 3 3 41434.1443 3 +Q9I7J0 GH21596p 69.23 11 41 11 1695434.4697 32 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 8619.983 1 +Q9I7L9 Uncharacterized protein, isoform A 4.28 1 1 0 986.8936 1 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 1012760.60725 19 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 1259272.38031 26 +Q9NCC3 Sorting nexin 9.03 5 7 5 140453.254 7 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 110461.2306 4 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 236406.915 6 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 391243.6158 14 +Q9U6P7 FI18813p1 11.39 5 8 5 187797.2128 7 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 2419093.651 58 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 48274.436 4 +Q9V393 Kurtz arrestin 9.57 4 5 4 55679.417 5 +Q9V396 Carbonic anhydrase 64.44 15 34 15 2161015.3523999997 33 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 45064.961 3 +Q9V3C8 DShc protein 1.71 1 1 1 14193.992 1 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 130696.2894 10 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 55140.373 3 +Q9V3E7 LD24793p 39.85 12 24 12 455832.61117 22 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 3522.4219 1 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 543688.00695 13 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 2634.6382 1 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 43755.197 2 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 251333.92919999998 13 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 1312407.4196000001 44 +Q9V3N9 B6 1.79 1 1 1 33964.613 1 +Q9V3P3 LD45860p 35.1 9 21 9 620724.86473 20 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 80427.8873 4 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 10353.39297 2 +Q9V3T8 LD32469p 14.36 3 3 3 34280.8424 3 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 1618047.2666 32 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 1119200.47 30 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 2969094.77561 48 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 663322.7465 25 +Q9V3W2 GM23292p 61.68 14 52 14 2393450.7304599998 48 +Q9V3W7 LD40489p 47.45 11 20 11 143357.3446 13 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 453516.35105 24 +Q9V3Y4 LD43650p 8.23 2 3 2 7430.5176 1 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 1286793.89997 32 +Q9V3Z4 GH11341p 27.89 14 24 14 563856.9892 19 +Q9V3Z9 HL02234p 42.6 15 43 15 3790055.9407099998 37 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 17650.6185 3 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 987184.7917 29 +Q9V406 Activator protein 4 9.35 6 8 6 144254.3106 8 +Q9V420 FI02878p 19.66 7 10 7 235542.3658 8 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 537050.0057 13 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 28210.47993 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 1085765.7209 21 +Q9V455 Importin subunit alpha 19.84 9 23 9 790244.5662 23 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 1085269.69783 39 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 1279543.32341 55 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 2341765.73693 54 +Q9V4E0 Complex I-49kD 33.97 12 20 11 386428.43086 20 +Q9V4E7 Transporter 3.46 3 4 2 22079.564 3 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 361590.3036 12 +Q9V9Q4 LD43819p 34.18 13 24 13 1005143.8621599999 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 171404.862 5 +Q9V9T5 GM14617p 2.44 2 2 0 10388.570500000002 2 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 21856.434 2 +Q9V9U0 RE35358p 10.11 2 3 2 76230.496 3 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 269137.6542 10 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 3749.789 1 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 490170.03333 16 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 1691545.1402 25 +Q9V9W4 GH08048p 1.69 1 1 1 2691.0903 1 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 48877.395 5 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 42772.9158 8 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 2604119.25655 59 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 70915.4586 7 +Q9VA34 LP06141p 2.47 3 4 3 28398.866599999998 4 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 238024.4504 15 +Q9VA41 GEO08227p1 52.87 7 17 3 162213.6972 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 1451269.6072 24 +Q9VA56 GH23271p 54.34 20 59 1 5351.9165 1 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 56880.9618 4 +Q9VA71 FI19924p1 7.86 3 3 3 804.2223 1 +Q9VA76 IP18706p 16.71 5 7 5 51602.0866 6 +Q9VA81 GEO10172p1 13.57 2 3 2 41308.981 3 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 18441.1782 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 423296.5098 13 +Q9VAA6 GEO12235p1 19.62 3 4 3 71540.4335 4 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 122401.86347 10 +Q9VAC1 GM14349p 62.05 20 122 20 7357061.22697 110 +Q9VAC4 GEO09167p1 55.77 8 20 8 1005362.0615 20 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 38550.4503 5 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 14512.5141 3 +Q9VAD7 RH37294p 5.2 1 1 1 536.67554 1 +Q9VAG3 trypsin 24.11 5 8 5 192545.0945 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 306437.08277 17 +Q9VAI9 GEO07291p1 62.25 9 53 5 5176164.5525 48 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 158128.41997 9 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 6579.5919 3 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 1719350.54314 49 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 9116405.74726 97 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 63808.9167 4 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 9456.478 2 +Q9VAU6 LD27564p 2.99 2 2 2 12295.6705 2 +Q9VAV2 FI21480p1 13.07 11 15 11 289183.4605 15 +Q9VAY0 Neprilysin 7 3.91 3 3 3 20474.9687 3 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 2115571.3622 68 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 44822.273 2 +Q9VAY9 GH07821p 8.65 3 3 3 16080.562100000001 3 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 1138521.4639 33 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 1798610.40524 44 +Q9VB17 IP11341p 10.74 3 3 3 54436.293399999995 3 +Q9VB22 LD33695p 18.39 9 13 9 119782.927 12 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 441515.1811 19 +Q9VB51 GEO08385p1 13.33 1 1 1 2487.7532 1 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 593896.7494 14 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 34764.165 2 +Q9VB69 Malic enzyme 29.5 16 20 2 232055.47204 19 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 43139.618 3 +Q9VB77 IP09938p 7.01 2 5 2 48496.308 5 +Q9VB79 IP09473p 17.65 6 14 6 283021.679 13 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 1543137.8759 38 +Q9VB86 LP07342p 16.78 3 6 3 45921.093 5 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 689253.8671 21 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 3513.9678999999996 2 +Q9VBC9 Beaten path VII 7.74 3 3 3 50767.69244 3 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 4353613.45871 78 +Q9VBI3 RH72336p 22.66 7 16 7 440161.65394 15 +Q9VBL3 GH01188p 5.83 3 3 3 29751.099299999998 3 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 71231.00200000001 2 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 7664.5083 1 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 7600528.8754 87 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 80836.526 3 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 1322889.45006 26 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 103669.1728 7 +Q9VBT2 IP11926p 4.33 2 2 2 18501.3868 2 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 22283.628 2 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 2680291.34 11 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 96084.552 4 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 26262.834 1 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 3022964.2493 44 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 21247.0327 3 +Q9VC06 LD37516p 15.62 11 15 11 78016.97075000001 13 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 15345.961 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 312692.1882 27 +Q9VC30 RE05274p 18.28 3 6 3 21164.39476 6 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 371775.1365 8 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 700691.66 16 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 241191.48739999998 11 +Q9VC58 Syntaxin-18 4.05 2 2 2 21324.4565 2 +Q9VC66 AT25567p 19.46 8 9 8 251217.473 9 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 64302.99865 7 +Q9VC87 RE57978p 2.84 1 1 1 10212.385 1 +Q9VCB9 FI08802p 15.16 4 4 4 134761.53900000002 4 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 7483.83458 3 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 658572.9786 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 204660.33510000003 5 +Q9VCF8 LD23561p 22.64 7 9 7 181261.35843999998 9 +Q9VCI4 LD32918p 1.13 1 2 1 6158.744 1 +Q9VCI7 LD02979p 17.15 6 9 1 145012.055 7 +Q9VCK6 LD34157p 18.02 7 8 7 123020.6685 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 31965.3145 4 +Q9VCR4 FI17836p1 5.18 4 6 4 43422.161949999994 5 +Q9VCR9 RH48101p 43.21 13 26 13 829854.39146 24 +Q9VCT4 Klingon 4.4 2 2 2 17575.927 2 +Q9VCU0 GEO02312p1 14.17 2 7 2 191399.0969 7 +Q9VCU1 FI07649p 1.31 1 1 1 6286.7866 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 47440.471 2 +Q9VCW2 Cardinal 4.82 4 4 4 67797.61820000001 4 +Q9VCW6 GCS light chain 33.33 11 27 11 1246255.34506 26 +Q9VCZ2 FI07970p 2.48 1 1 1 15396.727 1 +Q9VD00 FI07666p 34.53 8 15 8 504377.10493000003 12 +Q9VD01 LP12095p 4.55 1 1 1 29582.621 1 +Q9VD02 GH14779p 30.73 4 11 4 331911.225 11 +Q9VD13 GH02671p 10.79 6 7 0 61954.282900000006 7 +Q9VD14 GH07286p 9.57 6 9 6 235048.0825 9 +Q9VD29 small monomeric GTPase 49.74 9 33 9 1625859.79446 31 +Q9VD30 GH05294p 70.16 12 36 12 1603151.0562 32 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 28093.8103 3 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 5974858.84524 89 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 55202.73648 5 +Q9VD68 GH19849p 6.84 3 3 3 38007.875 3 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 94723.59 2 +Q9VDC0 GH01837p 24.0 5 14 5 356503.7234 14 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 7911.3745 1 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 28692.584 1 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 671673.3534 15 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 1629311.8881 13 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 452633.0261 18 +Q9VDH3 GH08630p 55.7 12 33 12 1408181.5625 30 +Q9VDI1 LD46328p 48.58 21 60 0 1688502.6095999999 53 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 49890.7208 5 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 166165.49048 11 +Q9VDK2 GH15831p 1.18 1 1 0 8084.3657 1 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 232268.57633 21 +Q9VDK9 GH12359p 4.71 3 3 3 18352.0394 2 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 66326.385 4 +Q9VDL5 GEO09602p1 13.43 1 1 1 16089.518 1 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 435692.10114 14 +Q9VDQ3 Identity crisis 6.14 3 3 3 31957.0 3 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 901382.4772699999 22 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 6659.0386 1 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 828270.7306 18 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 3065.1162 1 +Q9VDU7 nicotinamidase 21.57 7 17 7 379075.9352 16 +Q9VDV2 AT06125p 6.34 3 3 2 45466.437999999995 2 +Q9VDY8 MIP08680p 65.44 17 56 1 2832341.51076 52 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 2156968.8507499998 49 +Q9VE08 GH10002p 10.8 2 2 2 80016.81899999999 2 +Q9VE12 LD27322p 8.02 3 3 3 62361.282400000004 3 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 111403.465 5 +Q9VE31 GEO12059p1 9.91 1 1 1 933.1494 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 88110.836 6 +Q9VE56 FI17806p1 11.22 3 3 3 237554.09500000003 3 +Q9VE57 GEO10850p1 5.52 1 2 1 33691.477 2 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 54209.685 4 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 53983.2198 6 +Q9VE94 LD14127p 5.73 2 3 2 22929.977 2 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 225359.1046 8 +Q9VEA7 FI01460p 8.99 1 3 1 147276.139 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 32490190.90073 254 +Q9VEB7 AT04491p 2.05 1 1 1 42319.855 1 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 145859.2593 6 +Q9VEC8 RE23139p1 26.92 4 5 4 151077.8285 5 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 47690.542499999996 4 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 1071.52494 2 +Q9VEG8 RE59232p 13.2 3 5 3 84482.171 5 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 65759.94267 2 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 1512139.952 25 +Q9VEJ9 Curly Su 4.52 3 3 3 22689.1497 3 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 43228.3917 3 +Q9VEK8 GH07711p 35.28 12 21 12 807478.6469 21 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 209968.38548 14 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 17599.5 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 48134.781 3 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 635532.9988000001 21 +Q9VEP8 GH11385p 13.77 10 12 10 248583.9253 12 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 222815.21360000002 12 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 95176.2987 5 +Q9VES8 RE28913p 26.26 8 9 8 511575.81399999995 9 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 29603.426 1 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 395130.44434 19 +Q9VEV6 Uncharacterized protein, isoform A 3.5 1 1 0 436.13464 1 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 32977.4353 3 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 21102.5698 2 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 204290.5898 17 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 23696.3668 3 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 1801406.4633 43 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 142718.0245 9 +Q9VF15 GEO09476p1 65.36 10 39 7 1616957.6366 36 +Q9VF23 arginine kinase 3.28 2 2 2 77224.818 2 +Q9VF24 Crossveinless d 5.17 8 10 8 101502.6657 8 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 329194.88800000004 10 +Q9VF39 FI01459p 15.0 6 10 6 97218.8857 8 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 194585.299 12 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 85922.8134 5 +Q9VF77 FI16517p1 13.42 5 6 5 97282.636 5 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 74135.015 3 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 75255.308 5 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 178020.79739999998 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 50516.209500000004 4 +Q9VFC7 Mf5 protein 78.08 31 236 0 7844455.95698 153 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 10883861.84497 103 +Q9VFI3 GEO08281p1 45.19 3 10 3 134804.214 7 +Q9VFM0 GH19262p 7.14 4 5 4 24604.4048 4 +Q9VFN7 GEO07678p1 19.5 3 9 3 461892.07700000005 9 +Q9VFN9 GEO07882p1 41.94 6 7 6 121032.37204 7 +Q9VFP0 RH07106p 23.51 8 9 8 84473.39140000001 9 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 1054889.1422899999 22 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 493908.2024 15 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 16378.7157 3 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 22574.7608 2 +Q9VFT4 AT27578p 13.48 9 12 9 88828.46414 9 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 42107.024 3 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 1885135.479 38 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 91066.428 3 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 109381.881 3 +Q9VG01 RE12073p 1.88 1 1 1 10020.35 1 +Q9VG04 Protein MEMO1 5.42 2 2 2 75596.973 2 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 7244.561600000001 2 +Q9VG23 GH22994p 59.07 11 45 1 3074283.37379 43 +Q9VG26 MIP06012p 30.05 7 25 7 1160307.33645 22 +Q9VG31 Malic enzyme 16.91 13 17 0 420267.0198 17 +Q9VG33 Sulfurtransferase 67.27 7 15 7 844787.6947 15 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 327106.81200000003 4 +Q9VG51 Sorting nexin-3 34.13 7 25 7 793166.1965999999 19 +Q9VG62 Toys are us 6.19 3 3 3 41974.643 3 +Q9VG69 LP03547p 35.71 12 26 12 1121653.1564 23 +Q9VG81 RH49330p 15.78 7 8 7 27254.228560000003 7 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 145093.5452 4 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 606508.4085 16 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 4113.554 1 +Q9VGA3 LD12305p 33.64 7 18 6 539626.2706 16 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 4671.2163 1 +Q9VGE4 FI04457p 4.49 6 6 6 37082.3372 4 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 17945.8684 3 +Q9VGF3 IP11040p 9.86 4 5 4 100460.962 5 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 1475427.4179 29 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 349164.167 5 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 132963.0223 10 +Q9VGL0 LD43047p 2.84 3 3 3 17561.658030000002 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 16019666.9799 156 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 57972.874639999995 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 4841552.8739 59 +Q9VGQ8 Arfaptin 11.55 4 5 4 83470.20368 5 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 30291.5177 4 +Q9VGS3 RH44771p 14.04 4 12 4 475619.4373 10 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 2387.066 1 +Q9VGT3 GM04645p 1.89 1 1 1 3114.3442 1 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 67749.7775 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 73106.695 2 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 72341.363 2 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 72117.8627 5 +Q9VGY2 Peptide deformylase 14.71 4 4 3 49409.147 4 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 97804.573 11 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 80688.6735 5 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 292164.13386 9 +Q9VH37 IP06524p 14.29 3 4 3 107785.67319999999 4 +Q9VH64 LD29322p 26.91 9 14 9 301998.4344 14 +Q9VH66 FI18258p1 27.9 6 12 6 224558.40593 12 +Q9VH72 TA01656p1 37.25 6 14 6 288206.8281 12 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 523217.0425 22 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 29234.685900000004 4 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 7202.0344000000005 2 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 239955.09594000003 10 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 96990.98019999999 5 +Q9VHA8 LD25575p 13.05 7 10 7 530697.7087 10 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 631793.648 17 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 41840.7076 5 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 93875.6416 13 +Q9VHC7 FI21236p1 32.28 15 32 8 964089.43008 21 +Q9VHE3 GH05665p 6.25 2 2 2 13137.759 2 +Q9VHE4 omega-amidase 20.85 7 15 7 362730.7327 15 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 243470.6714 10 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 63067.1078 4 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 49494.15858 4 +Q9VHH8 Beag 6.46 4 4 4 32559.8915 4 +Q9VHI1 Hyrax 6.32 3 3 3 23925.2162 3 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 849246.93974 17 +Q9VHJ2 LD32381p 2.65 1 2 1 59193.865 2 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 7430.0903 1 +Q9VHJ7 LD41978p 3.96 3 4 3 29053.1865 4 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 2037411.9654299999 42 +Q9VHM3 LD30467p 9.09 4 4 4 23352.7483 3 +Q9VHN4 GH14121p 10.92 3 3 3 39024.008 3 +Q9VHN7 transketolase 35.46 19 30 1 593665.7208 25 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 3817.5227 1 +Q9VHR5 Veneno 3.27 2 2 2 868.16986 1 +Q9VHT3 CG9617 protein 23.6 5 7 5 169140.18660000002 7 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 52579.5116 6 +Q9VHX2 GH08043p 7.23 4 5 4 39584.7212 5 +Q9VHX4 LD24679p 68.09 21 107 21 8974124.6142 97 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 79567.289 5 +Q9VI09 GH14494p 52.48 7 35 7 1278973.14184 33 +Q9VI21 Dementin, isoform D 3.92 3 3 0 15041.7868 3 +Q9VI24 LD25151p 3.61 1 1 1 8454.093 1 +Q9VI53 LD44267p 9.24 4 6 4 158380.263 6 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 12702.112 1 +Q9VI64 LD30995p 48.16 14 49 14 2375003.6498 44 +Q9VI66 GH28833p 7.57 2 3 2 32348.1969 3 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 9826.672999999999 2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 28355.85385 2 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 21658482.02242 273 +Q9VIF2 GM01519p 9.72 5 6 5 216944.36700000003 6 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 188329.9434 8 +Q9VIH1 CG9273 protein 16.26 4 5 4 51673.47964 5 +Q9VII5 GEO08323p1 20.75 4 7 4 120931.2178 7 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 122746.93400000001 2 +Q9VIJ3 FI14214p 17.78 3 4 1 13600.179 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 2921.028 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 14349.5059 4 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 119932.8757 10 +Q9VIL2 LD19544p 14.9 4 8 4 125758.5949 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 215857.04859999998 9 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 87120.29 3 +Q9VIQ5 RH02620p 40.64 8 10 8 191351.28667 8 +Q9VIQ6 FI17342p1 4.82 1 2 1 10679.583 2 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 1828978.4915 47 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 17668.6474 4 +Q9VIU3 FI23988p1 4.24 2 2 2 632.1265 1 +Q9VIV6 GH04973p 11.11 4 6 4 150486.5208 6 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 30945.3704 2 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 842.5661 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 204008.95899999997 7 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 188187.7613 11 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 643934.3378 24 +Q9VJ22 GH09876p 8.0 2 2 2 11255.01036 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 78966.75 4 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 503052.6983 10 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 116658.73300000001 7 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 1285246.285 37 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 229033.704 8 +Q9VJ59 PRA1 family protein 8.7 2 3 2 71310.1795 3 +Q9VJ60 GM16226p 10.28 3 5 3 122371.2489 5 +Q9VJ61 SD03870p 1.64 1 1 1 19272.402 1 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 225829.5616 10 +Q9VJ80 LD42267p 7.96 10 11 10 79405.3496 8 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 62199.26995 10 +Q9VJA9 GH07373p 4.86 3 3 0 30484.2614 3 +Q9VJC0 GEO08203p1 37.96 5 6 5 85960.6273 5 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 69568.3533 6 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 315059.3298 19 +Q9VJD4 LD24721p 32.33 11 29 11 1721747.1831 26 +Q9VJE3 LD24839p 7.67 4 5 4 43688.904950000004 4 +Q9VJH8 FI03416p 2.58 2 2 2 45514.403 2 +Q9VJI5 Protein yellow 9.71 5 6 5 201168.1183 6 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 109928.5411 6 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 1019092.86 13 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 21048.0595 2 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 211977.471 5 +Q9VJQ3 Protein yellow 25.11 11 28 10 1336450.8594 26 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 14934.367600000001 3 +Q9VJU6 IP09831p 3.17 1 1 1 12626.372 1 +Q9VJU8 GH23407p 10.27 5 6 5 62644.619660000004 5 +Q9VJZ1 FI21342p1 5.49 3 4 3 58414.465599999996 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 3304635.25025 34 +Q9VJZ5 LD07294p 26.58 8 10 8 174817.704 8 +Q9VJZ6 LD40224p 67.13 11 30 11 707243.67558 22 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 188365.2187 12 +Q9VK11 GH15921p 27.51 7 18 7 470765.36786 17 +Q9VK12 GH20621p 62.0 17 84 17 5867622.8244 71 +Q9VK18 LD36945p 6.59 3 3 3 19101.638899999998 3 +Q9VK19 FI07225p 9.35 2 2 2 16578.6724 2 +Q9VK39 FI09204p 34.91 4 17 4 411123.5893 13 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 5379.7114 4 +Q9VK59 LD23647p 28.63 23 34 23 442465.36945 24 +Q9VK60 GH25425p 58.37 13 49 13 2651218.27006 45 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 803664.1830699999 38 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 176016.049 8 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 263412.668 9 +Q9VK99 Atilla, isoform B 51.75 7 32 7 859964.9394 24 +Q9VKA1 FI02817p 15.58 3 3 3 120370.25718 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 14306.846399999999 2 +Q9VKC8 FI03495p 9.17 5 5 5 202327.524 5 +Q9VKD9 MIP16835p1 1.35 1 1 1 1659.9938 1 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 18805486.13152 300 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 53258.12584 5 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 46901.4594 2 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 8559.413 1 +Q9VKI8 GH03305p 67.77 20 107 20 6229333.544199999 99 +Q9VKJ4 Csl4 14.22 3 4 3 80092.116 4 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 3147605.13393 66 +Q9VKM7 AT01533p 8.57 5 12 1 400239.0906 11 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 16392.8995 2 +Q9VKQ5 GEO07393p1 6.45 1 1 1 15933.985 1 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 34673.092000000004 5 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 667226.7184 12 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 19326.540399999998 2 +Q9VKU5 LD37206p 10.09 2 2 2 23428.7012 2 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 1483458.4392 37 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 32554.858 2 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 82511.562 4 +Q9VKW1 LD41958p 2.21 1 1 1 4371.214 1 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 123965.03700000001 10 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 8025968.07453 131 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 311178.0245 7 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 40199.99236 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 516409.94545999996 22 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 2207437.7057 42 +Q9VL02 GH08677p 10.57 4 4 1 44764.5717 3 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 144008.7456 10 +Q9VL16 RE45833p 30.77 8 26 8 1746800.365 22 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 3783.2852 1 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 25999.082300000002 2 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 2219.5278 1 +Q9VL57 RE10231p 4.75 3 3 2 41877.814 3 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 107497.316 3 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 190507.2588 7 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 2385174.67 29 +Q9VL70 HL08109p 83.17 25 129 25 11676635.9884 119 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 175125.251 7 +Q9VL91 LD23102p 1.8 1 1 1 593.0473 1 +Q9VL93 GEO07195p1 13.64 2 2 2 33420.407 2 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 113730.174 6 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 1899216.81885 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 2692066.8349 67 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 81302.1692 5 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 26467.041 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 850631.6065 19 +Q9VLP0 IP04187p 11.23 2 5 2 99520.0877 5 +Q9VLP1 GEO08095p1 37.84 6 14 6 375503.15479999996 13 +Q9VLP2 GEO08076p1 38.1 6 40 6 953496.8669 36 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 324296.8227 5 +Q9VLQ9 Sorting nexin 29.4 14 23 1 829710.52496 22 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 162253.6314 4 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 693.6509 1 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 865501.7876 32 +Q9VLS5 LD29542p 10.69 5 6 5 40816.4395 5 +Q9VLS7 LD21067p 1.88 4 4 0 52124.4065 4 +Q9VLT3 LD23292p 16.59 28 41 28 788510.5704 37 +Q9VLT7 IP17351p 26.92 4 7 4 241658.87867 6 +Q9VLU3 IP09231p 5.4 1 1 0 7821.3745 1 +Q9VLV9 Proctolin 20.71 2 4 2 98752.01869999999 4 +Q9VLW8 LD06392p 13.18 3 3 3 6851.3621 3 +Q9VLX6 HL01609p 6.32 2 2 0 65073.886 2 +Q9VLY1 HL02931p 19.01 1 7 1 225350.5053 7 +Q9VLY7 TEP1-F 3.68 6 7 6 59727.2904 7 +Q9VLY9 CD109 antigen 29.45 37 61 0 1621993.32262 58 +Q9VM07 RE43931p 27.85 5 11 4 118773.53929999999 7 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 103859.193 8 +Q9VM11 HL01515p 31.19 9 12 9 423713.6772 12 +Q9VM12 MIP26555p1 29.25 10 25 10 646722.62264 21 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 13084740.3737 149 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 8383115.12414 76 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 11209.075 1 +Q9VM47 Menin 3.15 2 3 0 5880.896 2 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 21443.1613 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 42871.091100000005 4 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 201380.105 9 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 607949.49677 12 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 131170.9627 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 6240916.8617 58 +Q9VMC3 LD35051p 3.29 1 1 1 10812.276 1 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 9588.201000000001 2 +Q9VMC7 LP11564p 9.94 6 6 3 19087.1987 4 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 471224.868 13 +Q9VME1 FI01864p 17.96 7 8 7 90730.4134 7 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 39348.0755 3 +Q9VMF0 FI04444p 4.48 2 2 2 17906.29 2 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 27408.541999999998 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 241863.9956 11 +Q9VMH8 GEO07746p1 37.3 6 12 6 474507.06 10 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 1060734.84079 27 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 763042.84394 31 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 3477441.5402699998 35 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 100845.456 4 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 780823.2961 21 +Q9VMR9 acylphosphatase 6.93 1 1 1 48217.39 1 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 5835540.021 36 +Q9VMT2 GEO07854p1 52.35 7 122 0 6106691.792 102 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 3760273.7907000002 39 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 92470.7946 9 +Q9VMV5 Viking, isoform A 8.2 13 20 13 174774.30968 17 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 14510.2814 2 +Q9VMX4 AT19154p 19.52 6 13 6 212081.7573 10 +Q9VN01 GH23891p 16.39 8 12 8 117136.79748 12 +Q9VN02 GH14561p 32.74 7 14 7 209138.2657 13 +Q9VN21 LD30155p 55.05 28 100 28 3586997.9812600003 91 +Q9VN39 RE74585p 17.58 6 8 2 34646.0882 6 +Q9VN44 FI07923p 18.91 20 39 20 1207612.6516 37 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 429756.4081 14 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 471541.2496 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 9902.7798 2 +Q9VN86 AT14148p 6.51 3 3 3 35557.199199999995 2 +Q9VN88 LD45836p 14.49 4 6 4 124861.74 6 +Q9VNA3 GH21273p 40.28 8 15 8 693967.2293 15 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 305580.7055 8 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 39476.501000000004 3 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 10889.6996 2 +Q9VNF3 RE01652p 39.3 9 23 7 439243.0427 18 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 106591.0186 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 25366.4067 2 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 157932.13224 12 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 158592.816 3 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 91813.38484 6 +Q9VNI8 Hpr1 10.7 8 9 8 67157.61249999999 8 +Q9VNI9 IP18173p 17.18 3 6 3 34399.9042 6 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 3443215.46562 73 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 79276.7897 6 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 17208.498 5 +Q9VNV2 GEO05133p1 8.86 1 2 1 6805.0563 2 +Q9VNW0 GEO11142p1 21.88 3 3 3 36961.9767 3 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 2280080.24099 62 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 1535563.10904 74 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 18357.2797 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 64821.159360000005 7 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 33179.15 1 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 2095.1707 1 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 174160.974 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 587780.84 14 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 207140.0535 5 +Q9VP57 LD15904p 23.19 18 33 18 1048175.3179200001 32 +Q9VP77 LD23875p 10.99 7 7 7 101124.5103 7 +Q9VP78 GH23156p 8.76 4 4 4 48095.4034 4 +Q9VP84 IP06402p 4.76 1 2 1 40844.315 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 2871.874 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 30936.3142 5 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 121945.4823 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 67276.439 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 1588003.35044 40 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 73055.1989 6 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 16712.304 3 +Q9VPH6 LP10922p 9.61 5 8 1 79377.59795000001 7 +Q9VPJ0 RE58433p 8.29 3 6 0 55430.85186 6 +Q9VPK3 AT24407p 19.37 8 11 1 217113.33299999998 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 24509.4106 6 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 2677444.85537 67 +Q9VPR1 GH02075p 11.35 2 2 2 24884.543 1 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 367730.60586 8 +Q9VPU4 FI17537p1 8.88 3 3 3 20784.1844 3 +Q9VPU6 Galectin 7.28 3 3 3 79029.426 3 +Q9VPX0 GH26159p 4.9 3 3 3 32474.714 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 527689.9548 13 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 1969558.8806 49 +Q9VPZ5 GH04232p 26.62 14 24 14 529836.01073 23 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 1489.9994 1 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 7312973.15873 107 +Q9VQ83 RE23541p 7.28 2 2 0 17691.2843 2 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 88604.19429999999 4 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 4325940.74244 49 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 1718803.833 30 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 173496.06266999998 6 +Q9VQE0 dynamin GTPase 17.01 12 12 12 133079.4198 11 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 2226.5493 1 +Q9VQI6 LD25952p 12.35 4 6 4 76591.982 5 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 587717.66536 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 58862.944 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 6630.905 1 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 1150348.37117 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 1088574.7670500001 19 +Q9VQQ6 FI18122p1 15.72 8 13 0 510335.921 13 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 1846529.5400999999 38 +Q9VQR5 IP10807p 2.5 1 1 1 20071.258 1 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 56927.4235 4 +Q9VQT7 RH15675p 14.63 1 2 1 7385.4572 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 357373.5912 10 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 62767.03968 6 +Q9VQX3 HL05328p 13.09 6 7 6 83081.99829999999 7 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 130859.9936 9 +Q9VR30 RE58324p 19.51 8 10 8 218480.92044000002 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 185503.53720000002 10 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 9719.762 1 +Q9VR79 LD43683p 30.8 8 30 8 870713.531 30 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 15844.0785 2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 1092874.02284 28 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 896021.3571 14 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 167815.3215 10 +Q9VRF7 GH09530p 13.92 4 7 0 215456.5378 7 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 81242.566 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 98264.8495 12 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 1542480.47935 39 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 238761.91100000002 4 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 152200.7957 5 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 7376.3916 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 7501641.84514 81 +Q9VRL1 GEO06356p1 53.1 8 28 2 1132817.8983 21 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 3522.5318700000003 2 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 1710.99 1 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 48620.143 3 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 1257189.3875 31 +Q9VRP3 AT08565p 23.69 6 12 6 217816.098 9 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 6092.33494 2 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 1043443.3234999999 27 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 126584.3903 8 +Q9VRV8 Transportin-1 3.02 2 2 2 12615.5715 2 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 153308.9706 5 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 401838.538 8 +Q9VS11 lysozyme 12.55 3 4 2 36396.475600000005 4 +Q9VS44 Uncharacterized protein 12.36 4 4 4 80255.4216 4 +Q9VS84 FI03225p 7.34 7 8 7 147160.63559999998 7 +Q9VSA9 CG7409 80.52 14 73 14 5099709.87199 57 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 216500.193 8 +Q9VSC5 GM09977p 55.29 11 26 11 609137.3414 24 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 75684.2467 8 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 163352.87777 9 +Q9VSH5 IP09562p 4.89 1 2 1 12141.197 1 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 80291.424 2 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 9412.702 1 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 1019275.0621 24 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 1576546.3823 26 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 1949458.3284 33 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 277118.3827 9 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 65971.0313 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 55404.785299999996 3 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 4552.19094 3 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 499587.5678 15 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 1471276.32376 51 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 90372.6143 6 +Q9VSR5 GM03767p 48.9 9 20 9 894388.4514 19 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 46834.029 6 +Q9VST4 arginine kinase 2.06 1 1 1 6333.066 1 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 2570756.9558 38 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 345310.72474 20 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 44195.752 3 +Q9VSX2 IP01061p 30.5 6 12 6 156481.1973 8 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 5745989.5542 61 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 251197.948 8 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 411459.1447 20 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 43959.133 2 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 592565.4271 20 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 11067.608 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 42984.38 1 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 109336.1685 6 +Q9VTA8 RE35371p 9.7 1 1 1 703.42365 1 +Q9VTB0 LD35289p 18.18 7 9 7 180948.4745 9 +Q9VTB3 Guanylate kinase 35.62 10 23 10 621499.05694 21 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 1321162.165 18 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 109415.0023 6 +Q9VTC3 GH07049p 7.78 3 3 3 157795.66999999998 2 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 7972.018 1 +Q9VTL0 FI19917p1 2.48 1 2 1 10945.98 2 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 1955.0422 1 +Q9VTP1 IP06473p 8.24 2 2 2 13421.429 2 +Q9VTT2 LD20590p 3.84 2 2 2 19475.163 2 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 2307424.012 33 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 431057.5504 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 168704.0208 7 +Q9VTW1 RE15265p 11.2 5 7 0 123971.6045 7 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 51607.5795 3 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 1770202.4381 41 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 270783.6988 14 +Q9VU04 RE60105p 6.49 2 2 2 112132.56700000001 2 +Q9VU13 LD45603p 8.3 4 6 0 209696.9963 5 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 60173.367 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 7210901.9879 58 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 23673.6 1 +Q9VU38 Adenosine kinase 29.28 6 13 0 90449.2893 13 +Q9VU45 LD27581p 20.42 5 16 5 437553.07266 14 +Q9VU53 Capricious, isoform A 3.7 2 2 0 15292.1616 2 +Q9VU75 RH45712p 40.33 9 32 9 326224.03492 29 +Q9VU92 Uncharacterized protein 35.71 7 12 7 384319.17960000003 11 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 2618359.2198 73 +Q9VUE8 Big bang, isoform C 0.53 1 1 0 644.394 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 70881.4609 6 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 712111.18 15 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 8233.88843 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 171456.449 8 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 187999.19 5 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 221018.5002 9 +Q9VUQ7 RE36966p 11.91 6 10 6 158456.65446 10 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 15572.2889 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 87269.33 1 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 63636.912000000004 2 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 50061.89688 4 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 82736.4178 7 +Q9VV13 GEO08383p1 20.71 2 4 2 317701.95262 4 +Q9VV31 Uncharacterized protein 19.35 2 7 2 121791.6266 7 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 174522.8381 10 +Q9VV40 Golgin 104 1.42 1 1 1 1676.7324 1 +Q9VV42 Fat body protein 2 79.5 25 188 0 18629660.7789 162 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 14559116.3074 144 +Q9VV47 Fat body protein 2 45.17 9 22 7 1023012.9134 18 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 1394239.5293 45 +Q9VV75 AT02348p 79.09 28 196 28 15111987.97756 155 +Q9VV76 Syntaxin 8 11.64 3 4 3 198177.0835 4 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 65772.9263 8 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 303327.9016 11 +Q9VVB5 LD46723p 33.45 17 44 1 5645.462100000001 3 +Q9VVB7 FI02842p 48.97 15 44 1 11216.8081 3 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 113563.38799999999 3 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 739009.66048 33 +Q9VVC8 LD23434p 6.95 5 8 5 168330.7507 8 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 200430.31784 17 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 4542363.244200001 34 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 274245.27316 10 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 33460.823000000004 2 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 379134.52317 15 +Q9VVL5 FI11325p 27.27 9 14 9 345955.88 13 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 10263683.6598 181 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 147262.1466 6 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 57773.602 5 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 170166.4254 8 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 90955.145 3 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 2083662.7775 26 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 7909702.9084 48 +Q9VVU2 GEO07453p1 48.32 9 36 8 1511216.9226 34 +Q9VVV6 LD45843p 11.01 5 5 1 26412.371 5 +Q9VVW7 Canopy b 16.74 4 6 4 198064.05430000002 6 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 10486.467 1 +Q9VVY7 FI20154p1 10.24 13 16 0 167673.25554 15 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 31177.320349999998 5 +Q9VW00 GH28721p 12.2 4 8 4 129783.4375 6 +Q9VW17 RE58036p 26.37 5 12 0 145997.35629999998 10 +Q9VW34 FI03450p 17.01 9 14 9 478546.80665000004 14 +Q9VW40 LD31235p 12.62 4 5 4 33166.5739 5 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 14910.205 1 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 51794.5 2 +Q9VW57 Grasp65 8.04 4 6 4 99502.351 5 +Q9VW58 LD33138p 11.15 3 5 3 8370.286 1 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 896171.898 21 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 3020975.4487 28 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 7945300.07545 125 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 9530.874 2 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 11198.822 1 +Q9VWD0 GH23568p 26.43 8 13 8 231174.2589 13 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 6117632.99381 83 +Q9VWD5 LD35087p 6.46 3 3 3 10828.8227 2 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 796158.06736 27 +Q9VWF0 LP01149p 9.8 3 5 3 90874.524 4 +Q9VWG1 LD37169p 72.68 11 62 1 182911.1383 6 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 18302.9628 2 +Q9VWJ3 LD05272p 4.57 1 1 1 12571.256 1 +Q9VWL4 GH07340p 9.77 5 5 5 73060.4728 5 +Q9VWP2 RH57257p 64.88 12 25 12 1115374.44028 24 +Q9VWQ3 LD35981p 5.27 2 4 0 82121.81 4 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 127158.8122 9 +Q9VWS1 Houki 29.33 6 7 6 155084.4863 6 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 738715.4861 21 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 11533.4516 2 +Q9VWU0 FI18411p1 2.63 1 2 1 3996.7607 2 +Q9VWV6 Transferrin 57.72 35 174 35 15167873.7108 155 +Q9VWW2 GH13094p 14.17 6 13 6 26665.773230000003 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 153135.22639999999 3 +Q9VX08 LD10434p 6.85 2 2 2 9491.9777 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 4005497.90317 85 +Q9VX69 FI01450p 8.27 4 13 3 310367.434 6 +Q9VXA3 LP21163p 16.69 10 15 10 233296.7889 14 +Q9VXA9 RE04047p 10.58 3 3 3 16220.261600000002 3 +Q9VXC1 MIP06432p1 27.93 5 10 3 416072.0677 10 +Q9VXC9 trypsin 54.18 11 21 11 233153.54284 20 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 89179.50540000001 6 +Q9VXF9 AT13091p 15.94 7 13 7 229512.59235 13 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 193236.14556 5 +Q9VXH4 RE16337p 28.43 2 4 2 199880.831 4 +Q9VXH7 FI17510p1 13.95 5 10 5 281495.9889 10 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 1095859.0111 25 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 3992065.327 56 +Q9VXJ7 GH03748p1 5.19 5 5 5 35366.245839999996 5 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 416386.2931 10 +Q9VXK9 Centrosomal protein 164, isoform A 1.77 2 2 2 462.5365 1 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 25682.609 2 +Q9VXM4 LD12946p 62.9 15 37 15 948702.4585 32 +Q9VXN1 LD03728p 7.2 2 2 2 14206.5324 2 +Q9VXN3 LD07988p 25.25 9 14 9 145623.27053 12 +Q9VXP3 GH05406p 9.87 5 5 5 34141.586670000004 5 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 28159.44 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 12491.025399999999 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 1662244.879 43 +Q9VXR9 FI03680p 5.45 2 2 2 18474.4093 2 +Q9VXV1 RH52220p 4.39 1 1 1 10657.007 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 337346.3116 11 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 873184.3392 27 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 246989.2397 13 +Q9VY05 GH11762p 9.47 7 15 7 366550.2095 14 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 60429.244 4 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 283262.94704 9 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 28323.117 1 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 83081.7833 4 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 19284.6275 2 +Q9VY76 AMP deaminase 9.21 8 10 0 44859.5437 8 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 104225.4482 10 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 135933.055 5 +Q9VY92 GEO07753p1 73.91 8 32 8 2621070.822 32 +Q9VYA1 RE18811p 3.87 1 2 1 941.9637 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 9825.0563 2 +Q9VYF0 GM09012p 18.66 5 7 5 116610.2049 7 +Q9VYG8 CG15717-PA 17.86 4 4 4 20478.1159 3 +Q9VYJ1 FI12805p 2.29 2 2 1 35754.2535 2 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 34427.541 6 +Q9VYM0 CG2555-PA 13.2 2 2 1 2770.15444 2 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 29226.1311 4 +Q9VYN1 protein kinase C 0.42 1 11 1 403927.039 9 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 15302.039 1 +Q9VYS2 GH09980p 4.78 4 4 4 22202.5557 4 +Q9VYT0 RE04130p 23.7 6 10 5 278468.553 10 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 22006.6907 2 +Q9VYT3 FI23714p1 4.8 6 7 6 28117.928829999997 6 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 62163.471 2 +Q9VYU9 RH17287p 36.65 6 11 6 155956.83610000001 10 +Q9VYV4 Amun, isoform A 12.0 4 4 4 55277.7668 4 +Q9VYV6 GEO09033p1 6.14 1 1 1 30660.107 1 +Q9VZ00 FI19420p1 3.92 4 7 1 34778.1267 5 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 1499730.224 22 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 518990.05445 19 +Q9VZ24 GEO11412p1 43.36 6 33 6 2448612.5218 31 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 10284.649 1 +Q9VZ34 RH72958p 2.64 1 1 1 8770.239 1 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 373424.087 13 +Q9VZ66 SD22308p 35.37 5 8 5 122489.47435 8 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 37939.297 3 +Q9VZ71 RE01453p 9.04 2 5 2 112242.8768 5 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 6274.2764 2 +Q9VZE4 RE70333p 19.57 9 13 9 197800.476 13 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 144154.724 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 67748.2884 5 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 628075.88015 23 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 2376639.03234 41 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 183362.965 8 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 4122556.03472 47 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 28638.674 3 +Q9VZI1 Transgelin 74.47 11 82 1 2746786.3654 60 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 67079.6017 4 +Q9VZJ2 GH27759p 12.66 5 8 5 173462.16097 8 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 35127.578 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 475618.6704 19 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 51214.689 3 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 131975.26187 14 +Q9VZV2 Chitinase 7 3.75 4 5 4 22131.980499999998 4 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 134457.4082 5 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 11878.2943 3 +Q9VZX6 LD06441p 3.99 1 1 1 104140.34 1 +Q9VZY0 LD45195p 18.85 5 7 5 236931.354 6 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 39277.8928 5 +Q9VZZ5 GEO12033p1 21.68 3 7 3 420209.13200000004 6 +Q9VZZ6 CG16985 protein 34.9 5 11 5 579883.9963 11 +Q9W022 GEO01508p1 49.3 7 34 7 1857700.025 34 +Q9W073 RH22148p 9.41 2 2 2 29143.90887 2 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 1584850.247 20 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 665322.4675 11 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 132105.4156 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 162073.87086 6 +Q9W095 glycerol kinase 2.6 2 2 2 1970.0665 1 +Q9W0A8 FI01658p 14.08 4 10 4 520722.5295 10 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 530329.7706 18 +Q9W0C3 GH11843p 46.94 12 16 12 228064.5199 14 +Q9W0D3 GH15728p 1.09 2 2 2 13429.485 1 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 52086.85 1 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 297778.2985 12 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 834217.565 18 +Q9W0J9 GH07301p 33.85 8 16 8 522715.4883 14 +Q9W0K9 LD10220p 11.61 2 3 2 16872.24562 3 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 202773.14 11 +Q9W0M5 Protein DPCD 9.91 2 2 2 10635.445 2 +Q9W0N6 LD27967p 9.57 3 3 3 18988.2866 3 +Q9W0P4 GEO05053p1 15.45 3 3 3 31228.2509 3 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 89774.41 2 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 15559.243 1 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 88620.47243 9 +Q9W0U0 glycerol kinase 5.39 2 3 1 31694.087 3 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 155234.3948 7 +Q9W0X1 GH15894p 5.72 3 3 3 46529.5796 3 +Q9W0X2 GEO07322p1 33.88 4 5 4 95476.671 4 +Q9W0X3 LD24657p 12.55 3 6 1 173250.45799999998 6 +Q9W0Z5 LP09747p 10.07 5 12 5 218754.4402 12 +Q9W114 IP05433p 22.5 2 3 2 27446.3163 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 1100022.9184 37 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 386387.27499999997 11 +Q9W136 Uncharacterized protein 33.82 6 17 6 289935.6132 13 +Q9W140 Regulatory protein zeste 14.35 5 7 5 34652.43455 6 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 22352.75925 4 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 4952.8178 2 +Q9W158 LD36772p 6.51 2 3 2 158151.99599999998 3 +Q9W199 GEO07594p1 10.97 2 3 2 95388.36499999999 3 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 1138249.6664 17 +Q9W1C8 LD24355p 20.11 8 10 8 100076.7522 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 25970.178200000002 3 +Q9W1F2 FI07217p 5.93 2 2 2 8243.17 1 +Q9W1F7 IP15825p 26.5 11 33 11 1422585.202 30 +Q9W1F8 GEO08248p1 23.31 4 8 4 295997.94550000003 8 +Q9W1G7 LD21576p 31.62 10 17 10 720588.2827 17 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 278264.2898 9 +Q9W1H6 GH04238p 13.85 3 7 3 59827.391299999996 4 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 1385194.846 39 +Q9W1I8 LD03592p 36.97 8 15 8 401243.4659 11 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 24267.6814 3 +Q9W1L8 GH11818p 5.92 2 2 2 4862.444100000001 2 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 24424.11606 4 +Q9W1N3 Levy, isoform A 32.11 4 16 4 1823374.10006 15 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 13777.195 1 +Q9W1R0 RH49821p 4.13 2 2 2 18275.3387 2 +Q9W1R3 Golgin-245 5.17 7 8 7 119288.9204 8 +Q9W1V8 CG9893 protein 27.6 5 7 5 64031.1362 7 +Q9W1W4 RE45066p 15.81 5 7 5 141004.6203 6 +Q9W1X5 GH04942p 16.93 24 31 4 767216.3095 29 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 4360818.8135 50 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 353403.67000000004 6 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 199590.20309999998 8 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 37427.19293 5 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 347369.5268 21 +Q9W257 RH13652p 6.99 2 3 2 87923.924 3 +Q9W258 Babos, isoform A 30.1 6 17 6 740367.9058999999 15 +Q9W259 FI23916p1 18.69 7 10 7 147176.31033 9 +Q9W260 GH03113p 12.2 7 13 7 158620.5235 11 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 25280.28 2 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 222568.04936 18 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 12301.9853 3 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 22198.103 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 1218661.6044 23 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 39775.216 2 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 191228.28175 11 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 67372.049 2 +Q9W2L6 RH02475p 36.23 21 49 21 1515726.519 48 +Q9W2M0 LD23155p 16.85 11 18 11 338645.45517 18 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 6131689.5596 42 +Q9W2M9 FI16623p1 14.71 2 3 2 51962.695999999996 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 52865.735 3 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 321098.5535 6 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 214417.277 5 +Q9W2V2 FI20035p1 10.07 5 5 5 40384.6288 4 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 21770528.01509 96 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 230199.17425 19 +Q9W2Z9 RE65233p 8.65 2 2 2 33490.788 2 +Q9W306 GEO08256p1 14.05 2 2 2 49482.509999999995 2 +Q9W308 GH05731p 16.18 2 3 2 112784.428 3 +Q9W309 GEO08445p1 38.27 7 10 7 336550.123 8 +Q9W314 GH14088p 9.07 4 4 3 121533.998 4 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 124472.44330000001 8 +Q9W330 Phosphotransferase 44.18 19 34 3 1609219.3864 32 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 72478.0 3 +Q9W337 GH19985p 44.5 8 13 8 255418.80675 12 +Q9W350 C11.1, isoform A 1.55 2 2 2 2689.2175 1 +Q9W370 GEO12084p1 38.52 4 8 4 252759.06723000002 7 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 6694.915 1 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 3360.2812 1 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 1073167.8821 27 +Q9W396 FI06908p 17.5 6 7 6 214499.59399999998 6 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 27913.048 2 +Q9W3C3 LD10016p 19.53 9 11 9 131593.52728 9 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 24620.6643 4 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 51008.184 6 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 46009.161 3 +Q9W3H4 LD36273p 52.23 11 23 11 677894.88635 20 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 62147.6457 5 +Q9W3J6 FI06457p 2.33 1 1 1 6837.7007 1 +Q9W3K6 LD35927p 4.62 4 5 3 131920.83060000002 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 817465.12144 15 +Q9W3L4 GH20802p 20.29 8 14 8 314948.26255 13 +Q9W3M7 RNA helicase 13.12 12 14 11 102851.99656 11 +Q9W3M8 LD34211p 38.19 8 9 8 358300.8313 8 +Q9W3N1 RH59310p 3.12 1 1 1 15839.186 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 154342.718 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 1754267.54895 33 +Q9W3Q0 FI07418p 10.09 2 5 1 2123.8562 1 +Q9W3Q1 GM14286p 5.68 2 2 2 4075.5191400000003 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 231835.96110000001 10 +Q9W3S3 LP10445p 16.22 2 3 2 4398.428 1 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 122617.7821 8 +Q9W3T9 GM01152p 31.93 8 17 8 542690.41836 17 +Q9W3U9 CG14434-PA 26.74 5 6 0 175202.52886 6 +Q9W3V2 FI19713p1 1.82 2 2 2 552.0548 1 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 10985.8246 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 90418.657 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 4132513.7015 50 +Q9W3X8 RH42690p 11.42 4 5 4 17948.4745 4 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 350262.2401 11 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 2272889.81402 50 +Q9W403 LD24968p 14.47 6 7 6 53686.3575 7 +Q9W404 GH10714p 17.98 6 8 5 69115.8023 8 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 22804.902000000002 2 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 875993.52 27 +Q9W425 Rabconnectin-3A 0.99 3 3 3 26584.334199999998 2 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 3030560.7332 49 +Q9W461 LD23868p 11.54 6 8 6 132082.5857 7 +Q9W483 GH18971p 8.49 3 6 3 37608.937999999995 3 +Q9W486 LD13361p 3.58 2 2 0 16169.509 2 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 175150.243 4 +Q9W4A0 GH11193p 31.98 6 10 6 268897.3471 9 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 14886.9441 3 +Q9W4C2 lysozyme 11.84 2 3 2 60738.518000000004 3 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 104153.7797 8 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 19903.246 1 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 676576.33998 20 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 3437.5370700000003 2 +Q9W4N8 LD30122p 50.93 10 48 0 3370431.2923 44 +Q9W4U2 RH09070p 45.38 8 22 8 709325.0366 19 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 7173.467 1 +Q9W4W5 RE47284p 13.77 5 6 5 214919.832 6 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 149197.9894 12 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 318285.564 10 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 7166.248970000001 3 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 54179.51143 5 +Q9W503 RH61816p 35.31 10 15 10 433102.8362 12 +Q9W5B4 GH18858p 27.59 8 18 8 196424.02954000002 13 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 14818.86 1 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 42683.9478 2 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 54048.2518 4 +Q9W5W7 GH19483p 5.32 3 3 3 35884.56444 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 967555.0137 26 +Q9W5X0 LD21953p 19.4 4 21 0 93532.904 2 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 162198.6352 10 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 122463.9359 7 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 6289758.27527 51 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 124702.14799999999 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 503216.90150000004 20 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 389066.6978 15 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 5017783.4144 66 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 537955.6909 30 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 221741.75865 20 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 6040332.13477 67 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 45634.0046 4 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 43565.3483 6 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 2229856.98922 34 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 31119.71 4 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 1682132.0688 40 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 4647351.47079 80 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 7216.6704 1 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 52535.0103 6 +R9PY51 Uncharacterized protein 34.95 5 71 5 1698325.4428 27 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 4924103.65692 81 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 114755.674 6 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 150035.46600000001 7 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 73728.198 2 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 69280.101 5 +X2JB48 ADP/ATP translocase 67.56 22 106 1 3781889.5467 91 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 303403.62183 22 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 26673.4308 2 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 6086361.8688 68 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 33031.184 2 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 25969.0913 2 +P10674 Fasciclin-1 51.07 33 127 1 2377.8323 1 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 648.92004 1 +Q08605 Transcription activator GAGA 2.24 1 1 0 23077.684 1 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 6055.243 1 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 11943.365 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 8911.534 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 18851.887 1 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 16203.14 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 2457.9355 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 29659.9375 3 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 11151.368 1 +Q9W568 Protein halfway 3.11 1 1 0 926.8044 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 2528.0903 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 42451.8109 3 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 29474.98 2 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 4711.076 1 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 5346.972 1 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 5843.02575 2 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 99938.217 2 +A1Z7M0 Space blanket 5.71 1 1 1 5218.1333 1 +A1ZA97 Carboxylic ester hydrolase 1.79 1 1 1 744.5026 1 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 64464.055 3 +B5RJS0 IP20241p 0.73 1 1 0 1724.2151 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 10998.096699999998 2 +E1JJM0 FI20063p1 16.38 9 12 0 128776.6238 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 5404.3545 1 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 12013.546 1 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 86208.47720000001 3 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 23165.955 1 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 3904.5625 1 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 180670.7545 8 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 107753.606 2 +Q7K1W4 Epoxide hydrolase 2.35 1 1 1 974.9236 1 +Q7PLV6 FI02158p 0.85 1 1 1 1672.7174 1 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 28133.086300000003 3 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.96 2 2 1 698.64435 1 +Q8MPN6 Serpin 4 17.68 6 7 0 2683.9277 1 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 15117.223 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 18269.533 1 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 9514.503 1 +Q9VHX1 LD44032p 4.04 1 1 1 2706.176 1 +Q9VKC1 IP16805p 3.89 1 1 1 13293.973 1 +Q9VM94 Homer, isoform B 43.32 14 33 1 7019.099 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 10466.498 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 4834.1439 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 136083.18 3 +Q9VTY1 LD40136p 2.4 1 2 1 21889.502 1 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 3736.5835 1 +Q9W2N5 GH10162p 3.47 2 2 2 2188.4783 1 +Q9W362 La-related protein 7 1.85 1 1 1 4147.5063 1 +Q9W525 LD08195p 2.32 1 1 0 11071.124 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 23693.26 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 9119.706 1 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 94763.02130000001 5 +E1JJ83 Os-C, isoform B 7.19 1 1 0 6168.374 1 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 258748.86508000002 15 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 10396.47 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 9678.457 1 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 7463.9565 1 +Q8IQ80 GH06117p 3.39 2 2 0 3861.68937 2 +Q9VHW5 LD38634p 4.76 1 1 1 2167.4995 1 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 22335.3188 2 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 10793.254 1 +Q9W5C1 RE02292p 1.55 1 1 1 423.0455 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 5361.9785 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 5882.2463 2 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 24925.344 1 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 6297418.921 114 +E1JH70 Kank, isoform E 1.28 1 1 0 4394.383 1 +M9NFP1 Jim, isoform E 0.85 1 1 0 10211.898 1 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 7340.127 2 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 2186.6616 1 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 6223.2543000000005 2 +Q9VBS0 CHK domain ov2 2.2 1 1 1 958.0846 1 +Q9VCH9 LD07883p 4.72 1 1 1 3968.2922 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 19499.93773 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 12640.137499999999 2 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 13399.481 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 59420.5736 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 12400.99 1 +Q9VMY3 FI19613p1 1.5 1 1 1 9602.589 1 +Q9VS80 FI17864p1 2.6 1 2 1 3152.5713 1 +Q9VZF0 LD44732p 3.61 1 1 1 5848.5215 1 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 55350.6195 4 +Q9W249 IP21806p 2.24 1 1 1 947.61816 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 9097.3545 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 69212.849 3 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 44380.098 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 136597.30153 7 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 13022.973 1 +Q0KHQ1 GEO13361p1 11.11 1 1 1 1728.0963 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 27207.466 2 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 129115.89300000001 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 3115.4836 1 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 13121.165 1 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 2027.717 1 +Q9VV37 GEO13385p1 10.1 1 5 1 14247.383 2 +Q9VVX6 BET1 homolog 16.24 2 2 2 80682.457 2 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 14867.095 1 +Q9W152 RH33060p 16.9 1 1 1 5786.642 1 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 11848.5673 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 41421.58 2 +M9PDY5 Girdin, isoform C 0.94 1 1 0 7162.7686 1 +Q9VAI3 FI06539p 10.08 1 2 1 26176.36 2 +Q9VB09 IP04131p 5.73 1 1 1 21675.457 1 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 58847.06 3 +Q9VZN6 Lipase domain-containing protein 4.36 1 1 1 882.7948 1 +Q9W5E7 LP07417p 11.4 1 1 1 3210.414 1 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 10872.006 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 187807.47079999998 6 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 3118.0142 1 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 14438.506 2 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 17643.818 1 +A1Z872 CAP, isoform D 25.05 11 20 1 5329.4575 1 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 17370.871 1 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 14316.114 1 +Q7K3Z8 GH01208p 13.24 2 2 2 1978.4772 1 +Q9VAN8 FI15955p1 6.46 1 1 1 8436.592 1 +Q9VLL4 FI23523p1 1.81 1 1 1 4078.4512 1 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 44174.051 2 +P08841 Tubulin beta-3 chain 23.13 10 131 0 6763.7134 1 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 32530.676 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 2727.7239 1 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 9642.568 1 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 1930.3864 1 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 17395.056500000002 2 +Q9W3S4 LD46272p 3.11 1 1 1 4476.1777 1 +A8JQX3 Nocturnin 1.71 1 1 1 4719.5 1 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 49339.773 2 +A8JNM1 Formin 3, isoform B 0.58 1 1 0 425.4091 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 1 0 676.82513 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 74708.76075 7 +Q7JY89 RE35124p 15.0 1 1 1 3617.9812 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 60181.028000000006 3 +A8JUP7 Serine protease Hayan 1.1 1 1 1 8379.082 1 +P07664 Serendipity locus protein delta 2.54 1 1 1 29933.166 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 338018.713 4 +Q9VGM4 LD28119p 2.94 1 1 1 2986.5938 1 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 26956.527680000003 5 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 22644.679 2 +E1JJ37 Complexin, isoform W 65.47 9 67 1 9796.3125 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 6845.9854 1 +Q962I2 small monomeric GTPase 50.76 8 21 1 7342.002 1 +Q9VF73 FI17904p1 0.98 1 1 0 4155.518 1 +Q9VSK1 GH09510p 2.72 2 2 2 1596.0189 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 73419.56 2 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 13456.151 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 101628.4006 7 +Q29R09 LD28546p 3.02 1 1 1 1906.0972 1 +Q6AWJ5 LP12324p 23.56 8 11 1 1956.1997 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1650.9019 1 +Q9VQT5 FI01556p 13.92 1 3 1 117075.9525 3 +Q9W0A9 GM02612p 3.06 1 1 1 6217.789 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 4413.472 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 18545.824 1 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 12480.742 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 15689.734 1 +Q9VV29 GEO12576p1 9.68 1 2 0 22469.718999999997 2 +P45884 Attacin-A 5.36 1 1 0 13498.204 1 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 2032.4467 1 +O61348 Bobby sox 3.51 2 2 2 1765.0732 1 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 3585.5703 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 19280.787 1 +Q9VV27 MIP11526p 7.63 1 1 1 21486.344 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 27329.534 2 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 8986.2122 2 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 59571.144 2 +M9PE05 Encore, isoform H 0.6 1 1 0 2983.493 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 18139.8937 2 +Q9VF46 GH25158p 4.13 1 2 1 17946.488 2 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 15437.5123 2 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 10930.67 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 34228.008 2 +A8JNU1 adenylate cyclase 1.78 2 3 0 12485.575 3 +Q7KVR7 AP-1 complex subunit gamma 1.13 1 1 0 1887.8434 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 2687.003 1 +Q7K010 Tetraspanin 3.64 1 1 1 4885.8477 1 +Q9VUR4 FI11905p 18.81 5 8 1 9918.996 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 277.79138 1 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 11170.983 1 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 5015.0791 2 +A8JNV2 Uncharacterized protein 10.71 1 2 1 8113.6044999999995 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 8426.0893 2 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 13428.391 1 +Q8SWU4 RE25571p 17.3 6 13 1 11997.0498 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 66574.73 1 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2778.6536 1 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 2021.7139 1 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 9623.9146 2 +Q8SXW3 GV1, isoform B 4.44 1 1 0 21049.084 1 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 8213.192 1 +Q8IRN0 FI06485p 3.21 1 1 1 2870.682 1 +Q9VHS6 Copper transport protein 5.75 1 1 1 4025.3237 1 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 10553.4844 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 2051.519 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 4238.389 1 +Q8ML92 Protein aveugle 7.55 1 1 1 8064.9585 1 +Q9VT15 GH14734p 8.33 2 2 2 21894.231 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 8199.946 1 +A1A750 GEO11067p1 6.93 1 1 1 10149.031 1 +Q9VF83 LD33178p 2.73 1 1 1 5516.6475 1 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 40121.252400000005 2 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 29923.3 1 +M9PCK0 Decima, isoform D 9.87 2 2 0 27231.403 2 +Q9VUQ8 DCN1-like protein 1 7.29 1 1 0 595.1013 1 +Q9VPA9 LD24894p 1.45 1 1 1 10114.562 1 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 5783.641 1 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 808.3039 1 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 4213.9014 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 10368.859 1 +Q02427 RNA-binding protein 1 14.58 2 4 1 40888.004 1 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 20157.701 2 +Q7K4Y8 GH22690p 1.65 1 1 1 4091.3223 1 +Q9VCQ7 LD40758p 1.61 1 1 1 1727.0521 1 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 8430.46 1 +Q9VDL4 LP04613p 2.72 1 1 1 3664.6082 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 30110.7139 3 +Q7K4X4 GH24095p 2.0 1 1 1 3645.1443 1 +Q9VJ06 LD05576p 7.07 2 2 2 7742.3799 2 +Q9VGE8 Tachykinins 6.57 2 2 0 23369.037699999997 2 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 11683.558 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 370.50098 1 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 14289.723 1 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 5486.4077 1 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 15171.531 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 6549.4372 2 +Q9V3A6 Ero1-like protein 1.45 1 1 1 13299.684 1 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 26750.361 1 +Q0E8K5 AT10158p 4.1 1 1 0 860.6931 1 +Q7K8Y3 IP16419p 14.29 5 6 0 100675.322 5 +Q8STG9 DSec61alpha 1.89 1 1 1 13825.394 1 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 11530.98 2 +P22812 Protein Tube 3.9 2 3 2 2279.61497 3 +Q9VYX8 LD04844p 9.38 2 2 2 6707.294 1 +Q7JV39 GH01142p 5.05 1 2 1 10458.1211 2 +Q9VZX8 AT02196p 2.37 1 1 1 2724.002 1 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 55750.218 2 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 11182.553 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 1982.093 1 +Q9W3F7 Mitoguardin 4.19 2 2 2 4120.8607 2 +Q9W4F9 IP01388p 1.92 1 1 0 12883.608 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 8504.565 1 +F0JAQ9 MIP27169p 5.85 2 4 0 1552.9389 2 +P18289 Transcription factor Jra 3.11 1 1 0 12425.338 1 +Q9VJ77 FI24106p1 3.28 2 2 0 10102.7041 2 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 6272.621 1 +Q9VR55 LD29159p 8.71 1 1 1 11159.603 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 6305.266 1 +P54194 General odorant-binding protein 84a 11.43 2 2 2 3384.4072 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 14922.7264 2 +Q8IR92 Uncharacterized protein, isoform A 7.51 7 8 0 628.31586 1 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 8789.4839 3 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 2608.9211 1 +Q9VV26 GEO12049p1 6.84 1 1 1 79164.52 1 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 4590.4976 1 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 3610.7372 2 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 3095.7021 1 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 11840.377 1 +Q8MKL1 UPF0598 protein CG30010 7.78 1 1 0 439.8111 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 14280.877 1 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 5107.2979 2 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 18181.027 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 29294.559 1 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 3984.2744 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 24560.1934 3 +Q6IJE8 HDC15077 17.04 2 3 2 63552.57399999999 3 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 1714.7076 1 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 48280.635599999994 3 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 4668.226 1 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 6270.08 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 11964.196 1 +Q9W494 Crossveinless 3.5 1 1 1 3237.7188 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 26012.623 2 +Q7KN04 Spondin-1 2.1 1 1 1 4712.073 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 4170.116 1 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 8819.819 1 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 14352.9299 4 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 2222.2927 1 +Q8MRQ1 GH06222p 1.49 1 1 0 5754.3345 1 +Q9VPR6 Kinase 3.56 1 1 1 4001.687 1 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 3314.6767 2 +E1JJS1 glutathione transferase 5.6 2 2 0 64600.981 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 4112.415 1 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 6198.1914 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 3566.1409 1 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 3713.8284 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 3556.9038 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 2816.5925 1 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 1711.3096 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 4642.3857 1 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 1867.884 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 24969.128 2 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 3597.718 1 +A1Z8N1 Trehalose transporter 1 1.05 1 1 1 431.25528 1 +O76876 Protein sex-lethal 1.86 1 1 0 2757.3782 1 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 28220.236 1 +Q9VY55 FI09726p 8.08 1 1 1 1784.2708 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 74235.33 1 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 3387.278 1 +Q02936 Protein hedgehog 2.34 1 1 1 18918.348 1 +Q6NN09 ATPase protein 9 5.07 1 6 1 187167.94400000002 4 +O76874 SD17974p 1.14 1 1 1 2874.4875 1 +Q9W424 Splicing factor 3B subunit 4 2.59 1 1 1 1684.1969 1 +Q9VGL2 GM08392p 2.12 1 1 1 14754.326 1 +Q9VAX9 MIP05919p 3.7 1 1 1 7910.1396 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 1533.3341 1 +Q9VK20 LD18447p 2.81 1 1 1 13838.35 1 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 5561.2236 1 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 4843.3926 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 5387.3125 1 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 4556.319 1 +Q9VBK9 Protein FAM98B 2.42 1 1 1 380.29208 1 +Q9VZC8 GEO12024p1 6.16 1 1 1 8430.149 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 702.1969 1 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 10058.025 1 +Q9VM54 J domain-containing protein 3.9 1 1 1 827.39655 1 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 7298.4854 1 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 2295.438 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 8839.098 1 +Q4AB30 GUK-holder, isoform C 1.25 1 1 0 2168.047 1 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 627.4866 1 +Q9W123 Protein painting of fourth 2.22 1 1 0 3802.7224 1 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 17841.102 1 +Q9VGZ2 FI06805p 3.86 1 1 1 9369.659 1 +Q7JWS8 AT17867p 10.26 2 2 2 27548.877 1 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 1668.1862 1 +E1JHX0 MIP29328p 3.76 1 1 1 62663.04 1 +Q9VGH2 Uncharacterized protein, isoform A 2.59 1 1 1 462.8051 1 +D6W4V3 MIP19557p 4.74 1 1 0 2330.8218 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 890.19226 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 4294.0923 1 +Q9V9R3 adenylate cyclase 0.6 1 1 1 4500.835 1 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 4354.3096 1 +P39205 Molybdenum cofactor synthesis protein cinnamon 2.16 1 1 1 2289.792 1 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 12752.342 1 +M9PE65 Axotactin 0.55 1 1 1 420.48465 1 +Q8IRK0 GH04558p 3.9 1 1 1 3889.6577 1 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 9495.738 1 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 34818.549 2 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 3360.677 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 35426.168 1 +Q9VV21 GEO07736p1 16.26 1 2 1 58324.419 2 +P07186 Chorion protein S19 14.45 1 2 1 2153.29938 2 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 347.61414 1 +Q9VL29 GEO11246p1 12.93 1 1 1 5379.9346 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 2130.3152 1 +Q9W2F6 RE36793p 7.09 1 1 1 66433.16 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 2927.0574 1 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 44217.6697 4 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 7467.1743 1 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 2885.0105 1 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 9816.235 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 35835.395 1 +Q9W513 GEO10196p1 12.86 1 1 1 87880.83 1 +A8DYV9 GEO02589p1 10.53 1 1 1 17818.191 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 7760.388 1 +O76513 Cyclin-H 3.7 1 1 1 5321.227 1 +Q8IPJ5 FI18525p1 3.83 1 1 1 1608.5912 1 +Q9W0B6 LD14179p 1.48 1 1 1 2035.5798 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 436.74533 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 7427.1685 1 +Q05201 Protein phosphatase eya 2.22 1 1 0 6161.138 1 +Q9VIM8 RE22905p 1.6 1 1 1 6903.903 1 +Q7JRC9 RE73310p 1.89 1 1 1 2525.4883 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 3219.7678 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 5423.152 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 22817.686 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 51682.797000000006 2 +A1A753 IP17594p 10.11 1 1 1 11103.346 1 +Q9VX56 LD03052p 5.94 1 1 1 650.9327 1 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 6812.1123 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 6768.8604 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 699.5693 1 +Q7JY99 glycerol kinase 1.34 1 1 1 372.03012 1 +Q8MYV9 GEO12865p1 11.04 1 3 1 72394.90400000001 3 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 5177.7886 1 +Q9W366 RE59932p 1.08 1 1 1 21377.89 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 2037.8516 1 +Q8T4F7 Protein enabled 0.82 1 1 0 5139.143 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 197346.08299999998 2 +Q9VB08 E3 ubiquitin-protein ligase RING1 2.53 1 1 1 1454.4077 1 +Q9VBQ5 LD38433p 1.91 1 1 1 4319.829 1 +Q9VE49 LP06937p 1.86 1 1 1 856.97485 1 +Q9VH82 FI02086p 7.14 1 1 1 8416.077 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 4743.5923 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 4651.3354 1 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 2714.885 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 4443.674 1 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 8227.509 1 +Q9VPN3 GEO07775p1 12.0 1 1 1 7060.5005 1 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 960.85913 1 +Q9VKE7 GH09228p1 10.39 1 1 1 1687.1711 1 +Q7KA66 Serpin 43Aa 2.56 1 1 1 1882.8589 1 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 14321.98 1 +A8JUR4 Kinesin associated protein 3, isoform H 1.59 1 1 0 706.3819 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 182385.843 3 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 23463.117 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 3340.673 1 +Q9VEF0 LD33778p 3.49 1 1 1 684.32153 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 10390.608 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 4789.474 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 55009.57 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 291624.04 2 +Q5BIL9 SD21168p 1.63 1 1 0 13287.213 1 +Q9Y170 Sex-regulated protein janus-B 6.08 1 1 1 610.0427 1 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 7055.9414 1 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 34352.45 1 +Q9VHJ4 GH04846p 2.25 1 1 1 6001.44 1 +Q9W226 GEO07239p1 5.88 1 1 1 3181.9656 1 +Q9W0I9 FI01805p 3.22 1 1 1 3775.8608 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 5970.268 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 12162.866 1 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 505.9131 1 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 3274.4973 1 +Q8SY53 GH11935p 2.73 1 1 1 760.7111 1 +Q7JVN6 GH17672p 2.24 1 1 1 871.3576 1 +P25159 Maternal effect protein staufen 0.68 1 1 0 2069.8657 1 +Q9VLE1 RH63449p 4.29 1 1 1 19307.557 1 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 2066.4136 1 +Q24040 Protein big brother 5.16 1 1 0 978.1934 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 6167.9917 1 +F3YD72 SD23574p 20.45 1 1 1 1830.6962 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 5051.5796 1 +Q8STI6 RE53401p 4.27 1 1 1 467.3404 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 3416.952 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 2092.6797 1 +Q7K2B1 LD11371p 5.85 1 1 1 15792.772 1 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 8374.054 1 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 8976.95 1 +Q9W168 GEO02361p1 9.23 1 1 1 12388.333 1 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 8766.676 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 1 0 524.8612 1 +Q9VVX3 Frizzled-2 1.15 1 1 0 921.3929 1 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 21880.514 1 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 10474.746 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 5228.277 1 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 2329.9934 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 21855.771 2 +A1A6X2 IP16893p 12.07 1 1 1 7830.7534 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 22072.148 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 3641.466 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 2991.9187 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 31110.723 2 +Q7JXE1 Bunker gear 4.75 1 1 1 902.1042 1 +Q9VL31 RIP-like protein 4.06 1 1 1 8506.819 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 8647.989 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 1 0 1601.2817 1 +Q9VX71 Uncharacterized protein 5.2 1 1 1 48880.445 1 +Q8IQ51 trypsin 3.05 1 1 1 13692.08 1 +Q9VHS0 FI07206p 2.49 1 1 1 6992.6567 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 14873.8545 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 1923.3655 1 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 1989.6326 1 +Q9VQY8 Vacuolar protein sorting-associated protein 53 homolog 0.9 1 1 1 675.55115 1 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 930.6748 1 +Q8SYC5 RE68347p 2.26 1 1 0 556.93646 1 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 9178.37 1 +Q9XZF0 Protein yippee 5.79 1 1 0 12869.669 1 +A8DYR5 Shaw-like, isoform C 1.17 1 1 0 388.96262 1 +Q9VD92 Protein archease-like 5.77 1 1 1 14126.227 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 7895.103 1 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 1760.3455 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 25179.451 1 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 1691.2123 1 +Q961D1 Cyclin-K 1.75 1 1 1 2272.6616 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 55238.2 1 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 1891.713 1 +Q9VKZ7 Nicalin 1.25 1 1 1 18104.676 1 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 39363.122 2 +Q8T0B1 Nuclear envelope phosphatase-regulatory subunit 1 homolog 8.4 1 1 1 848.51385 1 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 22750.898 1 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 4789.6636 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 1927.1866 1 +P54398 Fat body protein 2 3.52 1 1 0 37489.844 1 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 1830.3135 1 +Q9VJ98 GH05617p 2.44 1 1 1 4018.1965 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 5457.9917 1 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 127717.2329 8 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 37407.0201 4 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 42267.229 5 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 13490.978799999999 2 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 52971.307 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M3_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M3_TMTc.txt new file mode 100644 index 0000000..0a2c7f5 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/Earth_M3_TMTc.txt @@ -0,0 +1,4110 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 129N, Sample, n/a, Earth_M3 Abundances Count: F8: 129N, Sample, n/a, Earth_M3 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 290206.8639 7 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 112382.54996 9 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 11917580.68525 67 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 81600.50672 9 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 347907.21045 12 +A0A1F4 Protein eyes shut 12.91 28 65 0 2795343.60599 58 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 14487.3912 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 307897.17863000004 15 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 16241.0513 3 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 17157.2774 2 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 13343.678 4 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 23035.6454 4 +A1Z877 Nidogen 21.48 28 49 28 2908778.7675 46 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 89210.2151 6 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 1142420.41813 61 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 746781.9380000001 7 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 190164.3435 10 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 483242.32415 26 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 16025.264299999999 3 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 12563.057 1 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 315820.8023 19 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 40844.6385 2 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 96326.8273 8 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 178877.70403 7 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 19233.238 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 94075.842 4 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 12928.532 2 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 1391766.2796 10 +A8DYP0 Protein Obscurin 1.87 8 8 8 61235.094 8 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 790220.9502999999 10 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 8981024.86366 118 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 1035927.4487 23 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 2723389.38325 47 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1785577.47655 21 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 201035.8186 8 +C0HL66 Histone H3.3A 55.15 7 37 0 59850.4148 5 +C0HLZ9 Baramicin A1 17.51 4 6 0 215204.6104 5 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 3214699.4905 39 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 24698.3111 3 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 180365.5496 12 +M9NDE3 Protein bark beetle 4.42 14 14 14 147284.47139999998 12 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 19388654.781 69 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 190653.6982 10 +O01367 Protein held out wings 18.52 7 14 0 406192.64673 13 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 1093723.7431 13 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 15061298.17593 127 +O02194 Presenilin homolog 5.73 2 2 0 13514.72127 2 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 1190816.546 18 +O02649 Heat shock protein 60A 76.27 44 168 28 30856984.85382 151 +O15943 Neural-cadherin 17.05 53 82 2 2779388.75314 78 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 169078.1587 12 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 67266.8909 5 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 37601.2923 3 +O18333 Ras-related protein Rab-2 44.6 9 17 9 651297.64305 17 +O18334 Ras-related protein Rab6 33.17 8 22 0 164809.0475 8 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 1920185.8014 21 +O18388 Importin subunit beta 3.85 4 4 0 89126.82844000001 4 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 23738094.43192 122 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 1633940.549 37 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 710661.5809000001 14 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 14256.161 1 +O44342 Protein windbeutel 17.51 4 5 0 78306.5637 5 +O44386 Integrin alpha-PS3 7.26 8 10 6 201006.79323 8 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 652711.3403 5 +O46037 Vinculin 59.31 53 121 0 6151577.02559 109 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 11560.509 1 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 1240276.8007999999 17 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 362146.7803 10 +O46339 Homeobox protein homothorax 5.54 2 2 2 12703.8295 2 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 743274.69978 18 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 49763.24800000001 2 +O61307 Teneurin-m 2.01 4 4 0 115630.655 2 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 255079.6397 10 +O61491 Flotillin-1 57.51 24 64 24 4401369.8779 59 +O61722 PRL-1 phosphatase 67.05 10 24 10 690658.74816 22 +O62619 Pyruvate kinase 69.79 30 93 30 10688451.41522 77 +O62621 Coatomer subunit beta' 2.08 2 2 2 10893.570969999999 2 +O76206 Putative riboflavin kinase 39.87 6 13 0 879082.584 9 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 565878.269 6 +O76742 Ras-related protein Rab7 37.68 8 13 8 646635.5804000001 12 +O76878 RILP-like protein homolog 18.96 7 9 0 119613.0082 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 264594.1295 10 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 534730.4007 15 +O77051 Transcription factor E2F2 16.76 6 8 0 90934.4683 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 120378.4874 6 +O77277 Torsin-like protein 10.0 4 5 0 185635.617 5 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 50047.8723 4 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 401409.24865 22 +O96690 Protein PDF 15.69 1 2 1 23278.477 1 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 8253388.304570001 93 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 259539.6813 8 +O97125 Heat shock protein 68 30.39 17 74 11 822094.1283 26 +O97172 UPF0729 protein CG18508 29.29 3 3 0 37387.731 2 +O97394 Protein sidekick 0.45 1 1 0 394.09702 1 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 73651.37299999999 3 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 5471350.9782 43 +P00334 Alcohol dehydrogenase 88.28 23 232 23 145751287.24747 204 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 5160388.6572 22 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 13021.16533 3 +P02255 Histone H1 25.0 5 6 0 78373.253 6 +P02283 Histone H2B 56.91 8 80 8 13446694.7924 72 +P02299 Histone H3 55.15 7 35 2 11303941.2091 29 +P02515 Heat shock protein 22 38.51 7 11 7 308746.626 10 +P02516 Heat shock protein 23 84.95 16 72 0 9108766.30955 65 +P02517 Heat shock protein 26 48.08 8 23 0 3073875.4107 23 +P02518 Heat shock protein 27 55.87 11 23 0 1811404.3069499999 18 +P02572 Actin-42A 74.2 30 655 3 352606446.23499 585 +P02574 Actin, larval muscle 66.22 27 546 0 3596036.947 19 +P02828 Heat shock protein 83 51.74 42 171 0 30049220.52203 164 +P02843 Vitellogenin-1 65.15 29 248 0 2663603.90727 136 +P02844 Vitellogenin-2 66.97 26 196 0 2052488.22733 109 +P04197 Myb protein 2.28 2 2 0 14097.243999999999 2 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 781504.2675 8 +P04388 Ras-like protein 2 25.0 4 8 4 463439.34900000005 7 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 13917.378700000001 2 +P05205 Heterochromatin protein 1 44.66 9 23 9 1239871.6284999999 19 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 4934129.0922 36 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 3879315.8721 12 +P05552 Transcription factor Adf-1 17.56 4 5 0 165096.1 4 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 328928.01702 10 +P05812 Heat shock protein 67B1 22.7 8 11 8 250909.0292 11 +P06002 Opsin Rh1 7.24 3 7 3 455132.8714 5 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 106450570.34555 187 +P06607 Vitellogenin-3 80.0 35 270 0 3886875.43007 193 +P06742 Myosin light chain alkali 55.48 9 117 0 28482939.0697 98 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 8063.6949 2 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 11361240.09103 34 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 34417597.60693 132 +P07665 Serendipity locus protein beta 5.9 3 4 0 108798.358 4 +P07668 Choline O-acetyltransferase 14.7 8 8 8 71562.8466 8 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 182479790.06031 330 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 104406.57165 8 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 583409.9568 22 +P08144 Alpha-amylase A 22.87 10 19 0 1598298.7622 17 +P08171 Esterase-6 15.26 8 18 0 1155030.315 17 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 104950.1767 5 +P08182 Casein kinase II subunit beta 38.72 8 19 2 1920907.37702 18 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 9758503.25626 45 +P08645 Ras-related protein Rap1 40.76 6 13 0 465503.84319 12 +P08646 Ras-like protein 1 38.62 7 19 7 1540999.5445 17 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 64846135.327139996 156 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 515734.6375 12 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 17631712.62461 101 +P08928 Lamin 75.72 60 199 59 17324348.57792 175 +P08985 Histone H2A.v 42.55 10 39 8 5604835.3395 27 +P09040 Drosulfakinins 17.73 3 4 3 175834.02665999997 4 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 3998570.91766 47 +P09208 Insulin-like receptor 2.19 5 6 5 22670.32639 5 +P09491 Tropomyosin-2 82.39 40 292 3 1735252.622 10 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 218691.5325 8 +P10379 Protein unzipped 27.46 11 26 0 1492227.7118 24 +P10552 FMRFamide-related peptides 8.36 3 4 3 528520.9269999999 4 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 2933568.6327 65 +P10981 Actin-87E 69.15 30 649 0 27331052.18104 31 +P10987 Actin-5C 74.2 31 679 0 4621758.055 23 +P11046 Laminin subunit beta-1 29.14 47 83 47 5298191.041999999 74 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 783.2584 1 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 100896395.98614 340 +P11584 Integrin beta-PS 27.54 22 46 0 2569334.96335 42 +P12024 Chaoptin 34.98 42 110 0 7802480.70784 101 +P12080 Integrin alpha-PS2 12.39 17 21 17 1089923.1999000001 18 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 25371.25415 3 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 5605044.73645 50 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 64715.16843 4 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 718779.2276999999 15 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 55052.142 3 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 5510028.4984 44 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 471135.5699 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 600186.54366 9 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 2418959.7382 39 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 6447362.43993 109 +P13395 Spectrin alpha chain 66.34 150 596 0 74227282.06198 547 +P13469 DNA-binding protein modulo 6.83 4 4 0 104668.9769 4 +P13496 Dynactin subunit 1 19.53 26 29 26 826168.06295 28 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 9260542.91094 134 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 381375.9042 12 +P13678 Protein kinase C 6.22 5 6 0 83585.539 4 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 13108.722 1 +P14199 Protein ref(2)P 21.04 10 16 10 1041069.2246000001 15 +P14318 Muscle-specific protein 20 83.15 21 93 21 17028680.13455 86 +P14484 Pupal cuticle protein 27.17 5 23 5 1663531.751 21 +P15007 Enolase 77.8 36 335 1 118938359.50231 302 +P15215 Laminin subunit gamma-1 38.87 56 107 0 7437916.5439 102 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 33128.3832 4 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 14718333.1131 59 +P15364 Protein amalgam 24.62 6 10 0 328111.0151 9 +P15372 Phosrestin-2 69.78 24 97 0 6122023.2655299995 88 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 224956.813 4 +P16378 G protein alpha o subunit 26.27 11 43 8 5374505.788 39 +P16554 Protein numb 19.06 9 11 0 243213.0195 11 +P16568 Protein bicaudal D 20.59 17 19 0 584298.2337999999 18 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 535458.782 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 7659.961 1 +P16914 Protein elav 34.58 12 38 0 2237158.1008 35 +P17210 Kinesin heavy chain 46.77 45 96 45 5514798.95723 87 +P17276 Protein henna 40.04 15 35 0 2640842.4221 32 +P17336 Catalase 44.47 19 65 19 3525673.44944 52 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 2682743.19092 28 +P17719 Dihydrofolate reductase 26.92 4 8 4 195532.26770000003 7 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 6491005.1863 41 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 22036.273 2 +P18431 Protein kinase shaggy 43.77 19 57 0 4491558.12104 52 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 46948685.92626 228 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 285276.8327 12 +P18824 Armadillo segment polarity protein 17.67 13 22 0 333711.9866 17 +P19107 Phosrestin-1 71.82 33 296 33 50411828.61511 279 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 1388554.3724 23 +P19334 Transient receptor potential protein 4.39 6 7 5 62462.950549999994 5 +P19339 Protein sex-lethal 5.65 2 2 0 25567.576 2 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 1335803.9473 11 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 12019740.04176 60 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 28420.8888 3 +P20153 Protein ultraspiracle 1.57 1 1 0 29770.527 1 +P20228 Glutamate decarboxylase 20.78 11 32 0 1085338.5705000001 30 +P20232 Transcription elongation factor S-II 38.02 12 19 0 687892.6065 17 +P20240 Otefin 40.8 14 20 14 439458.7851 17 +P20241 Neuroglian 26.04 33 88 0 5946287.93167 83 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 831032.0660999999 11 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 80971.77100000001 3 +P20354 G protein alpha s subunit 47.01 15 32 1 7117.53175 2 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 63831.6843 6 +P20432 Glutathione S-transferase D1 52.15 14 87 11 33957500.1317 76 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 16370514.6044 66 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 78970934.7204 179 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1386542.531 31 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 18660458.4908 109 +P22465 Annexin B10 76.01 24 137 24 21278191.4245 119 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 2788859.9756 26 +P22813 Heat shock factor protein 4.34 3 3 0 18609.5433 2 +P22815 Protein bride of sevenless 2.01 2 3 2 56846.25259999999 3 +P22979 Heat shock protein 67B3 55.28 7 20 7 1067530.9454 18 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 72967.9155 6 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 1077998.1997 37 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 32977.716 2 +P23625 G protein alpha q subunit 57.51 21 85 18 12156234.0235 77 +P23654 Neurotactin 15.84 11 14 0 373434.2433 14 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 538107.132 12 +P23779 Cystatin-like protein 57.94 7 40 7 5215956.8799 36 +P24156 Prohibitin 1 68.12 18 72 0 6733375.55117 68 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 52748683.78922 123 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 329403.5 2 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 56955.2817 4 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 1458223.6442 27 +P25171 Regulator of chromosome condensation 10.42 5 6 5 310394.35000000003 5 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 9483.7031 2 +P25228 Ras-related protein Rab-3 37.73 7 22 0 395059.81210000004 9 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 212867.2487 9 +P25822 Maternal protein pumilio 3.13 5 6 0 120923.0557 6 +P25843 Profilin 88.89 7 37 0 2821365.6776 34 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 3800120.438 9 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 376397.03719999996 12 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 996691.416 21 +P26686 Serine-arginine protein 55 19.68 7 14 0 592036.2327 14 +P27716 Innexin inx1 2.49 1 1 0 3168.546 1 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 626568.2408 8 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 97235.564 9 +P29052 Transcription initiation factor IIB 16.83 6 10 0 321678.1446 10 +P29310 14-3-3 protein zeta 68.55 19 282 0 84079895.59293 241 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 1228218.0531 15 +P29413 Calreticulin 58.13 22 67 0 12843312.20389 65 +P29613 Triosephosphate isomerase 78.54 20 145 19 57579089.51287 139 +P29742 Clathrin heavy chain 7.99 13 14 0 266171.47868 13 +P29746 Protein bangles and beads 63.12 27 57 27 6987395.1733 56 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 5357115.486740001 68 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 257522.8409 7 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 28228763.32716 175 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 30549251.2219 166 +P30432 Furin-like protease 2 2.5 4 4 0 35717.297 3 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 7933.688 1 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 7096625.598 37 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 4210827.02444 83 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 2882606.9119 29 +P32234 Guanylate binding protein 128up 16.85 6 9 5 277722.1443 9 +P32392 Actin-related protein 3 26.56 9 16 9 485522.23307 16 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 736720.2006 18 +P33438 Glutactin 36.94 29 56 0 1396391.97875 47 +P34082 Fasciclin-2 26.8 21 34 0 1241432.07916 29 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 2302583.8989999997 22 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 2138923.1961 23 +P35220 Catenin alpha 26.39 24 38 14 1565671.1298 36 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 128021964.52956 367 +P35415 Paramyosin, long form 75.2 91 521 0 85277691.55458 460 +P35416 Paramyosin, short form 60.0 45 292 0 8807714.3453 52 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 18333.56 4 +P35554 Flightin 54.4 9 20 0 6477812.18414 20 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 107097.6176 7 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 6708749.53142 56 +P36188 Troponin I 57.99 21 83 0 17411523.2575 78 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 1753081.7364500002 16 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 14789.028 4 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 3218266.1535 31 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 169190.6183 2 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 16299524.34795 113 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 606075.9116 9 +P37236 Frequenin-1 71.66 12 40 0 2291594.259 12 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 8479.628 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 1680892.5309 12 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 14751788.19222 73 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 8034639.1718999995 52 +P39736 Puff-specific protein Bx42 9.87 4 5 0 68888.806 4 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 320175.4874 6 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 885884.3387 12 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 389399.77 6 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 2557743.09057 32 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 8384.9614 5 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1539983.4228 20 +P40427 Homeobox protein extradenticle 9.31 3 4 0 222360.205 4 +P40792 Ras-related protein Rac1 34.38 6 13 0 1701012.299 13 +P40793 Cdc42 homolog 24.61 4 8 0 699022.1971999999 7 +P40796 La protein homolog 40.51 13 18 12 763970.9741 16 +P40797 Protein peanut 38.4 19 35 18 2247027.8016 35 +P40945 ADP ribosylation factor 4 38.33 5 12 0 269777.977 7 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 728482.92 5 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1574660.8521 33 +P41043 Glutathione S-transferase S1 83.53 19 72 0 18437109.5453 67 +P41044 Calbindin-32 76.77 26 157 0 21893832.19575 145 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 1200867.9972 25 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 2751244.0736000002 21 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 886388.956 14 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 5669614.0449 43 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 4841501.7096299995 41 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 4302883.3452 41 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 278250.6306 7 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 1341259.044 18 +P41900 General transcription factor IIF subunit 2 6.86 1 1 1 334.22653 1 +P42207 Septin-1 12.47 5 7 4 175981.777 5 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 10536155.58931 47 +P42325 Neurocalcin homolog 61.05 12 34 12 3161941.079 31 +P42787 Carboxypeptidase D 5.33 7 15 0 371043.43080000003 12 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 414007.24700000003 5 +P45437 Coatomer subunit beta 8.61 5 8 5 105329.77309999999 6 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 27003781.58456 87 +P45888 Actin-related protein 2 28.82 9 17 9 1152185.4542 15 +P45889 Actin-related protein 1 37.23 12 24 12 1332726.9159 22 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 32265.975 1 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 1431881.3075 17 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 3822427.2714 35 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 737061.033 10 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 2868835.39667 72 +P46824 Kinesin light chain 48.43 25 56 0 4782701.44847 52 +P47947 Troponin C, isoform 1 20.78 3 32 0 5906520.833 31 +P47948 Troponin C, isoform 2 48.39 6 16 0 322345.6028 9 +P47949 Troponin C, isoform 3 62.58 8 28 0 2381030.908 23 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 4469078.4353 30 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 3182926.0039999997 26 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 2576760.3533 36 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 15773562.9678 40 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 639901.1716 10 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 51811.437 3 +P48554 Ras-related protein Rac2 26.04 5 12 0 66543.95 1 +P48555 Ras-related protein Ral-a 58.21 10 29 1 3027694.1023 28 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 72330.2216 4 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 12108782.06546 59 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 784544.97435 15 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 3125763.8266 47 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 5867284.30297 105 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 419926.0314 12 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 4761881.8531 37 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 4090954.16242 46 +P48607 Protein spaetzle 9.2 3 4 0 4860.169 2 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 232830.7543 8 +P48610 Arginine kinase 1 76.69 46 489 0 188856820.60863 440 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 2993454.47626 34 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2672376.06329 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 798655.28516 8 +P49028 Protein mago nashi 11.56 2 7 2 91611.92940000001 5 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 431797.4426 7 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 167452.00400000002 3 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 1434975.972 8 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 5514.2188 1 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 159090.8999 7 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 11144.059099999999 2 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 22460.2763 2 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 116819.6638 5 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 3937827.23746 29 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 475325.11893 12 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 20733.9104 3 +P51406 Bystin 1.83 1 1 1 1865.6565 1 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 1033738.15764 25 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 150175.99539999999 13 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 1434518.18857 22 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 954058.274 9 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 17442.1134 2 +P53034 Replication factor C subunit 2 20.24 6 6 6 191450.235 6 +P53501 Actin-57B 70.21 33 663 5 85312640.31030001 94 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 25851.422 2 +P53777 Muscle LIM protein 1 56.52 6 24 0 1397891.954 17 +P53997 Protein SET 15.24 4 9 4 734757.1736999999 9 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 307601.48099999997 5 +P54191 General odorant-binding protein 69a 6.08 1 1 1 59666.156 1 +P54192 General odorant-binding protein 19d 71.33 13 119 13 55640839.75532 116 +P54193 General odorant-binding protein 83a 42.86 7 17 0 3829652.719 13 +P54195 General odorant-binding protein 28a 40.56 4 17 4 940186.8029499999 15 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 80959.9041 4 +P54352 Ethanolamine kinase 13.9 6 7 4 304973.1921 6 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 1547405.8592 29 +P54357 Myosin-2 essential light chain 89.12 10 58 1 5510934.5412 49 +P54359 Septin-2 13.13 7 12 1 727061.7225 12 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 54984.632 2 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 6214921.33845 93 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 101509.35269999999 4 +P54399 Protein disulfide-isomerase 76.81 40 203 0 30344460.87339 184 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 47340786.04421 166 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 565245.347 7 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 1070312.1631999998 14 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 3635845.97 14 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 9715163.10512 64 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 3537227.262 27 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 4667647.384 45 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 44063.9694 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 307819.94200000004 4 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 2474024.4792 22 +P61849 Dromyosuppressin 29.0 3 3 0 130433.382 3 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 29420750.2943 111 +P61855 Adipokinetic hormone 37.97 2 4 2 82201.6731 4 +P61857 Tubulin beta-2 chain 36.55 15 179 2 3996042.736 3 +P62152 Calmodulin 99.33 19 482 0 145044889.64963 432 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 3309874.9153 24 +P81829 Leucokinin 6.25 1 2 1 39662.816 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 19274039.86598 87 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 9613236.27718 39 +P82295 Prominin-like protein 0.99 1 1 0 1919109.9 1 +P82804 Partner of Y14 and mago 24.15 5 6 4 22499.1234 5 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 1772495.311 11 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 513484.0097 12 +P83967 Actin, indirect flight muscle 69.15 30 612 3 1091699.7845 12 +P84029 Cytochrome c-2 76.85 13 103 0 49351059.20883 101 +P84040 Histone H4 60.19 11 107 0 19074412.55192 95 +P84051 Histone H2A 42.74 7 32 0 4661006.0876 14 +P84345 ATP synthase protein 8 18.87 1 11 1 428268.56429999997 11 +P91664 Protein max 4.35 1 1 0 50277.918 1 +P91891 Protein Mo25 34.22 13 25 0 2923661.1613 22 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 470976.95489999995 23 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 2711401.20155 56 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 15401663.83865 110 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 6643796.213500001 45 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 3557585.476 40 +P92029 DnaJ-like protein 60 5.53 1 1 0 8695.39 1 +P92177 14-3-3 protein epsilon 79.01 28 274 26 58616593.47145 207 +P92204 Negative elongation factor E 14.64 4 4 4 217604.774 4 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 39510.004929999996 4 +P98081 Protein disabled 6.16 12 15 0 101792.94382 12 +Q00174 Laminin subunit alpha 22.68 79 156 79 10814840.3998 143 +Q01603 Peroxidase 10.14 6 8 0 166075.1652 7 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 51386668.78939 210 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 147037.98770000003 7 +Q01819 Connectin 2.64 2 2 0 66250.36 1 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 22644.049 2 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 3208740.61662 32 +Q02910 Calphotin 6.83 4 15 4 308065.20573 13 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 219367.86407 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 40234.2549 5 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 3085245.886 27 +Q03427 Lamin-C 66.67 46 141 3 11013638.39541 125 +Q04047 Protein no-on-transient A 16.14 9 10 0 247443.58070000002 9 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 436585.2872 16 +Q04691 Fat-body protein 1 29.93 28 50 0 885620.5498 47 +Q05783 High mobility group protein D 21.43 2 7 0 245228.6608 4 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 135340160.78792 516 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 53809.97464 3 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 21633186.8714 104 +Q06943 High mobility group protein Z 21.62 3 10 0 172591.77060000002 10 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 44651.0397 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 1204988.1468 22 +Q07171 Gelsolin 22.06 16 44 0 5424192.3621 43 +Q07327 Protein ROP 24.29 15 40 0 1607966.9539 38 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 1649509.50537 26 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 4504.3272 2 +Q08473 RNA-binding protein squid 43.31 10 27 0 3372996.6911 24 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 243385.87140000003 8 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 26134.3051 3 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 839138.83874 16 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 121885.35070000001 7 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1652644.7774 14 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 18424.42238 5 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 8206.474 1 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 356352.787 11 +Q11002 Calpain-A 7.37 6 7 0 159971.0479 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 7317154.273 32 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 17335175.3506 85 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 13902139.62779 82 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 15475265.37274 107 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 8811020.8896 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 14590552.1369 89 +Q24050 Elongator complex protein 5 27.48 6 10 6 436960.46280000004 9 +Q24114 Division abnormally delayed protein 20.93 10 15 0 595394.93996 14 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 1497833.0568 21 +Q24134 Negative elongation factor D 4.84 2 2 0 43144.378 2 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 17888.402299999998 4 +Q24185 Protein hook 28.28 21 32 21 1232154.67976 32 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1804475.15397 33 +Q24207 Protein boule 36.4 6 12 0 510769.1892 11 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 382246.7753 19 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 34020.7142 7 +Q24211 Protein stoned-A 42.71 35 65 0 4227372.00366 61 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 10712870.59052 28 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 240555.5545 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 95500.38339999999 4 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 56445543.01486 171 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 1665888.5859 26 +Q24292 Protein dachsous 0.54 2 2 0 40187.319 2 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 314416.92350000003 2 +Q24298 DE-cadherin 21.57 29 50 29 2187332.8693999997 47 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 72121.0722 5 +Q24318 Transcription factor Dp 16.18 7 8 0 110364.9825 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 579652.4990000001 8 +Q24322 Semaphorin-1A 4.67 4 5 0 38409.9573 5 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 570829.519 4 +Q24372 Lachesin 27.58 9 17 9 846700.4449 16 +Q24388 Larval serum protein 2 12.27 8 11 0 390016.6387 9 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 8578299.28805 74 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 16464138.48447 61 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 90856603.0583 181 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 492648.8494 23 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 611946.27316 10 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 85255.9457 8 +Q24509 Syntaxin-5 4.93 2 3 0 36242.079 3 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 880802.89075 15 +Q24524 Protein singed 10.35 5 5 0 28604.469 4 +Q24537 High mobility group protein DSP1 22.9 8 15 0 1024653.069 14 +Q24547 Syntaxin-1A 43.64 15 53 0 8590597.57749 51 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 58305191.36568 254 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 173641.269 6 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 583015.9734 8 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 7592340.41402 31 +Q26377 Pro-corazonin 44.81 5 17 5 341984.86756000004 15 +Q26416 Adult cuticle protein 1 20.0 1 3 1 408718.11 2 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 463012.057 12 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 948263.99675 16 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 116535.8997 4 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 4485872.63383 51 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 2812361.3486 14 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 6080883.7373 49 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 607246.8062 10 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 255101.9694 11 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 1080510.24013 19 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 1001653.3797 15 +Q3KN41 Neurexin 1 3.37 5 5 0 35471.1334 5 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 6315.0237 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 141414.99899999998 4 +Q4V645 Trissin 7.41 1 1 1 38238.098 1 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 302369.486 5 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 43969.871 2 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 609837.0166 17 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 27623.0104 4 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 17248.46786 4 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 179522.13296000002 7 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 299294.3067 6 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 350624.7201 6 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 1494612.81776 11 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 1097727.35394 14 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 130926.8918 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 913097.39433 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 1526474.8089 27 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 35704.54 2 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 390943.1369 11 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 164655.8904 8 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 1340195.0373 17 +Q7JXF7 Protein seele 39.15 6 16 6 755489.9853 15 +Q7JYV2 Synaptogyrin 8.3 1 2 1 2510.479 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 48843.246 5 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 89699.476 3 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 316664.78584 14 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 308249.8203 9 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 377202.01475000003 12 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 276177.71900000004 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 5009.85106 2 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 4529799.09533 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 85348.4902 3 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 727779.06704 11 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 666113.9755000001 21 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 76070.09227 4 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 1613582.4993 23 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 72705.4917 5 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 19560526.4872 72 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 199491.37749 8 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 4197344.0774 27 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 3620642.9315 36 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 32077.7708 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 2455266.13152 66 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 457894.5076 16 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 738470.2403 13 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 41453.74362 8 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 100408.12000000001 2 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 927976.7865 11 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 31454597.15327 76 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 10693.478 2 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 378546.067 9 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 680061.9026 16 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 137301.3069 4 +Q7KVY7 Syntaxin-4 14.11 4 6 1 75526.092 6 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 85588.80268 7 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 9007585.4493 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 2191.467 1 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 3042669.583 28 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 1025989.79174 19 +Q868Z9 Papilin 23.81 59 118 59 3804177.07609 103 +Q86B79 RING finger protein unkempt 6.18 3 3 0 78479.4458 3 +Q86B87 Modifier of mdg4 5.74 3 6 0 144506.94743 6 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 116688.801 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 8809.7838 2 +Q86NP2 Negative elongation factor A 11.99 11 18 0 220030.4279 14 +Q86P48 AT-rich binding protein 5.15 1 2 1 4139.592 1 +Q86S05 Protein lingerer 5.96 6 8 0 16157.898 7 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 114885.476 5 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 3040744.2661 35 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 173750.58299999998 9 +Q8IN41 Protein Turandot X 16.2 2 4 2 48991.460699999996 4 +Q8IN43 Protein Turandot C 48.84 5 12 5 755625.4324 12 +Q8IN44 Protein Turandot A 64.34 9 34 9 3731300.4155 30 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 187691.1405 10 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 1417.4915999999998 2 +Q8IPM8 Complexin 71.13 11 97 0 36970.3255 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 559115.3715 17 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 257417.85379999998 6 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 53075.795600000005 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 172867.31261 10 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 491786.5275 9 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 802075.1000000001 6 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 4740196.9068 42 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 104671.0864 4 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 21236.9987 4 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 23435.5584 3 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 701471.9128 5 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 203333.392 6 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 4815262.0162 44 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 1709608.8229999999 19 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 27563.803 2 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 84928.4746 7 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 19693.48846 4 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 530126.6544 10 +Q8MSS1 Protein lava lamp 22.63 60 78 0 945054.5850900001 71 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 81050.745 3 +Q8MSV2 Protein alan shepard 16.78 8 21 8 1383212.44475 18 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 23111.25 1 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 40449.9029 7 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1979817.0196999998 19 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 1029542.1072 30 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1913636.9223000002 18 +Q8SY33 Protein Gawky 14.09 15 25 15 363693.91645 22 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 6858982.8127 53 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 888993.3883 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 120835.876 5 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 5388.118 2 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 16322.917 2 +Q8SZ63 Golgin-84 13.57 7 7 7 29964.990599999997 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 735455.0995 14 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 2286880.03605 41 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 3359812.84526 56 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 9066.408 1 +Q8T390 Endophilin-A 62.33 23 114 0 11780125.9993 99 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 392707.75629999995 7 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 2213014.7489 19 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 940288.7359 19 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 649407.86525 14 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 10489.9595 3 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 2451579.5753 23 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 43709.8687 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 16051855.47676 118 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 27347503.1833 90 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 34727477.25677 140 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 4324.9966 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 5610679.66437 34 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 6002163.4551 24 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 28752281.329099998 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 2972833.0765 55 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 127580.23 5 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1858340.59245 38 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 6351.6216 4 +Q94547 Regulator of gene activity 10.77 6 9 0 348863.0984 8 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 110972.59578 6 +Q94901 RNA-binding protein lark 44.03 16 37 16 1103281.31427 33 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 51013.9406 3 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 600349.8136 8 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 204706958.61514 328 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 3077.0798 1 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 91430.2487 4 +Q95029 Cathepsin L1 36.39 19 81 3 10252901.4185 74 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 2801184.3479999998 26 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 64382.431 3 +Q95RA9 GILT-like protein 1 40.0 8 30 8 3178078.1466 27 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 34758.0413 4 +Q95RI5 Failed axon connections 63.16 27 130 0 18858315.0186 121 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 57163.089 3 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 297401.314 5 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 15820.7834 2 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 578300.5646 18 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 139588.11669999998 3 +Q95T12 Calcium channel flower 12.89 2 3 2 228538.216 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 8701.86155 2 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 31882.6086 3 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 94847.0636 7 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 33372.454 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 556633.27902 21 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 63328.80754 7 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 385887.419 7 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 41610.0113 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 26165.179699999997 3 +Q967D7 Protein turtle 4.51 7 9 0 207690.5461 8 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 270523.28015 16 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 413683.5979 7 +Q9GQQ0 Protein spinster 1.98 1 3 1 33958.156 2 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 13840897.5977 49 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 29122.209300000002 4 +Q9I7D3 Caprin homolog 15.09 10 12 0 84419.29924000001 9 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 235807.191 7 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 194245.7151 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 189560.1727 5 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 534966.22785 10 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1285866.77338 29 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 65298.9635 5 +Q9I7U4 Titin 3.75 33 36 0 351735.78833 30 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 101806.20299999998 3 +Q9NB04 Patj homolog 33.87 24 53 0 1741290.21874 47 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 14200.640599999999 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 85570.159 2 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 21082.623 2 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 237813.88377000001 7 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 563708.9528 5 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 68193.5291 8 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 95298.26999999999 2 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 2991.941 1 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 4482880.89141 61 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 105427.51155000001 6 +Q9TVM2 Exportin-1 0.85 1 1 0 4162.822 1 +Q9TVP3 J domain-containing protein 85.64 19 103 19 30092129.0318 96 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 2264402.51023 17 +Q9U4G1 Protein borderless 18.5 13 29 13 1585549.0568 26 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 294737.6744 9 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 828334.7785 16 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 1947313.9794 19 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 4510.216 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 151235.0938 5 +Q9U915 Adenylate kinase 2 75.83 22 60 22 5800697.73165 53 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 460475.33900000004 7 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 616543.8682 13 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 638084.10477 17 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 1062842.07845 15 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 19650.0032 2 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 2590.0796 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 110868.07949999999 5 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 3914912.0535 36 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 54707.519 2 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 4310569.5479 26 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 26526.846700000002 6 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 455135.309 8 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 1704040.2232 17 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 494181.26920000004 13 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 4180308.0027 47 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 371543.5113 8 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 752447.9468 21 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 132221.691 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 944591.3899 25 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 39827812.2972 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 222625.76485 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 33555.7584 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 27133.846500000003 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 438403.64336 13 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 33346.3946 3 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 11086007.44523 56 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 405683.50179999997 7 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 859216.0138000001 10 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1279654.0459999999 9 +Q9V3Z2 Serine protease 7 15.86 5 6 4 160225.7602 6 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 121781.4944 8 +Q9V427 Innexin inx2 18.26 7 11 0 681437.754 9 +Q9V429 Thioredoxin-2 65.09 6 47 6 19109187.4583 47 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 1140253.5973 13 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 1530188.392 23 +Q9V447 Krueppel homolog 2 17.03 4 4 0 62268.6237 4 +Q9V496 Apolipophorins 38.44 126 319 0 41708944.76822 289 +Q9V498 Calsyntenin-1 2.97 3 3 0 29288.904199999997 3 +Q9V4A7 Plexin-B 0.54 1 1 0 2416.6394 1 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 29983.41 2 +Q9V4C8 Host cell factor 7.0 10 13 10 379897.7046 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 69860.92 4 +Q9V4N3 Cytochrome b5 44.03 5 20 5 1405761.506 15 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 331603.1097 9 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 436434.74199999997 8 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 68081.24900000001 7 +Q9V521 Phenoloxidase 2 28.36 22 33 21 677153.3568 30 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 778698.17203 17 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 44538.547699999996 6 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 1119556.432 20 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 2651150.8474 27 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 5157516.5426 31 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 24414.918 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 24881.04724 4 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 614869.98135 14 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 12803.39 1 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 220016.9568 8 +Q9V6G5 Tafazzin 8.2 4 4 2 45228.2281 4 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 13969928.833549999 76 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 62089.7963 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 91319.887 2 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 138158.6986 7 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 59446.9436 3 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 7799068.0796 65 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 28408872.9342 115 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 1527975.8224 24 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 187335.1679 7 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 247551.49500000002 3 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 2452.787 1 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 1721789.67137 40 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 11850710.51963 149 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 1181422.624 17 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 929617.2312 12 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 88884.054 4 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 222612.799 5 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 193713.5706 8 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 63495.6197 4 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 24030.1922 2 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 28674.884869999998 4 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1959690.4388000001 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 165863.0947 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 1193842.9938 16 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 39597.3767 5 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 53825.7186 4 +Q9VA37 Protein dj-1beta 83.96 12 76 12 15114275.39179 69 +Q9VA70 Neutral ceramidase 3.98 3 3 0 56144.651000000005 3 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 14396895.37884 51 +Q9VAF5 Cadherin-99C 6.33 10 10 10 131655.45424 10 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 14609239.577 18 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 2770889.7925 18 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 13291640.3853 62 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 77518.01886000001 4 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 4004966.8822 31 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 367054.6617 6 +Q9VAW5 La-related protein 1 5.5 7 8 0 33165.9272 5 +Q9VAY3 Mitoferrin 5.8 2 2 2 10988.1206 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 70246.9523 3 +Q9VB68 Serine protease grass 9.28 4 4 4 111780.11163 4 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 380117.8518 8 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 89344.24179999999 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 30353.78597 5 +Q9VBV3 Protein takeout 33.33 6 7 0 503348.18600000005 7 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 411073.1541 12 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 22048.521 1 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 4.63 2 2 2 527.167 1 +Q9VC57 Atlastin 3.14 2 2 0 100042.432 2 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 45980.25720000001 4 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 3457.8408 1 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1679093.2916 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 653674.0179999999 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 106428.8946 3 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 65746.972 2 +Q9VCE8 Actin maturation protease 16.48 2 4 1 12609.960200000001 2 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 600195.8667499999 10 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 694146.23624 20 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 89871.47899999999 3 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 471526.24815 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 703420.8802 14 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 56690.765400000004 2 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 32924.5776 4 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 34477.89275 3 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 509341.53883000003 11 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1456158.6023 20 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 65483.648 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 5426.0493 1 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 125750.8848 5 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 249718.0265 12 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 38139.243 3 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 243472.123 2 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 18787.814 1 +Q9VDL1 Esterase CG5412 18.28 5 11 5 132016.96 11 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 70925.249 6 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 1040977.1474 9 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 62089.736000000004 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 475722.83 10 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 19752.1633 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 19691403.68865 56 +Q9VER6 Modular serine protease 10.51 7 8 7 166241.3114 7 +Q9VET0 Neuropeptide F 29.41 3 4 0 99302.582 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 5392491.4177 55 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 211638.78095 10 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 41548.8636 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 168109.243 9 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 17968358.97966 77 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 32167.296700000003 2 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 1662092.6594 18 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 87423.135 3 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 476742.356 4 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 2929204.9713 37 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 163210.5215 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 62583.676 1 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 18404.6459 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 16565.636029999998 4 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 205008.7212 5 +Q9VFM9 Twinfilin 30.03 10 13 10 484195.98368 12 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 46187.673200000005 5 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 173711.39062999998 7 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 16689.858 4 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 384469.8557 13 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 13643.490699999998 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 2559.7607 1 +Q9VG55 Protein hugin 14.66 2 3 2 89380.8996 3 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 573368.2739 12 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 8519.0676 2 +Q9VG76 Myc-binding protein 15.47 3 3 3 142633.321 2 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 36664.969 3 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 2194749.3555 17 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 84734.4724 5 +Q9VGG5 Cadherin-87A 8.35 12 13 12 297603.70437 13 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 56939.9944 2 +Q9VGP4 Importin-9 3.63 3 3 3 49623.1605 3 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 634774.0037 14 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 302516.6407 6 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 9737.8925 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 9057287.8888 38 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 557389.814 9 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 23619.103000000003 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 11250.319 3 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 892847.7887 16 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 56704.102 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 1046211.4670000001 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 550739.255 4 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 8191902.7741 22 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 13974.7536 2 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 41146.591799999995 4 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 379677.9637 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 121848.7117 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 938170.7614 11 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 128011.24450000002 10 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 927262.613 10 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 79935.727 4 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 505085.87510999996 16 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3962.0264 1 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 2997968.5601 57 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 9257786.170529999 44 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 58406.65 3 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 100137.5703 7 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 202132.46600000001 9 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 91832.379 5 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 184205.112 5 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 389708.7801 17 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 23781.9608 4 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 2339328.7654 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 2177770.4179000002 15 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 61911.7743 5 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 133111.72137 5 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 834012.7775 11 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 24036.9635 4 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 514062.4697 15 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 9234.758 1 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 5877.6202 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1728591.9159 16 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 543947.589 9 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 697558.1945 9 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 1737746.97226 9 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 209090.3 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 14739.479 2 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 51182.7574 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 109903.29199999999 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 19945.626 2 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 781802.8992 15 +Q9VJL6 Glia maturation factor 23.91 3 4 3 117062.296 3 +Q9VJQ5 Protein Dr1 26.78 4 4 4 106715.47769999999 3 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 1442967.1697 14 +Q9VJY9 Protein Loquacious 8.17 4 6 0 373457.13300000003 6 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 10532.5187 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 1140100.7418999998 17 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 8492.86 2 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 63296.798 3 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 339367.868 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 43713.9415 8 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 26915.96 1 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 133097.3154 7 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 7354.9565 1 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 359754.6724 5 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 46756.077600000004 4 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 5279178.8899 68 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 5444723.12426 71 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 390035.01999999996 5 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 82087.2997 8 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 185209.7271 14 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 328674.6925 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 359079.65040000004 7 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 1463915.449 12 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 34023.8894 4 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 2109792.62996 23 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 508559.237 7 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 466517.00883 7 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 23963.49 1 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 42787.7164 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 68543.4807 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 11745.7305 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 117515.62873 6 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 82731.1113 10 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 103734.07699999999 2 +Q9VMD6 Protein real-time 1.52 1 1 0 2208.1143 1 +Q9VMD9 Tiggrin 19.93 46 58 0 1344309.48764 55 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 489204.6823 9 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 1007052.2126 17 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 22151.6647 3 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 137343.065 2 +Q9VMR8 Protein Turandot M 41.98 4 7 0 716193.55 7 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 101542.2887 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 54623.556000000004 2 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 295770.45900000003 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 2174780.8047 21 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 26018.155 2 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 193935.4341 9 +Q9VMY9 Guanine deaminase 8.04 4 4 4 40287.6975 3 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 16255.313199999999 2 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 235096.34923000002 7 +Q9VN14 Contactin 19.93 25 44 25 1661748.3586 39 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 56145.133 2 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 17667.7382 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 653402.917 7 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 2265952.7383 25 +Q9VN93 Cathepsin F 34.85 22 48 19 3170168.34786 42 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 802772.75257 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 121060.39000000001 4 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 223911.2656 8 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 767800.0799 11 +Q9VNE2 Protein krasavietz 19.91 11 23 11 1302074.4235 20 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 1004050.4264 12 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 11134.947 1 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 15237.334 1 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 238526.4093 12 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 84517.4405 6 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 217603.0143 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 192806.47759999998 7 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 163218.9723 5 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 389337.68197000003 12 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 10963351.7454 48 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 1493874.2482 16 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 239109.9855 10 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 162676.5055 9 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 332139.75662999996 5 +Q9VQC4 Glycerate kinase 15.61 8 9 0 129443.34509999999 9 +Q9VQF7 Bacchus 40.79 6 15 6 1437998.3522599998 15 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 104938.851 3 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 2017684.9379 20 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 687751.264 11 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 80947.307 7 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 492347.815 12 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 1810.134 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 70420.98125 5 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 14615.4743 3 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 114321.187 4 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 225628.0302 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 24251.7335 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 93781.9752 4 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 31185.352100000004 4 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 114207.581 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 564135.4116 5 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 344630.918 7 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 93363.163 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 10469574.08747 89 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 368904.457 10 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 27826.016200000002 3 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 143448.56949999998 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 21302.4286 2 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 20748881.44472 61 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 140378.4879 3 +Q9VSS1 Protein Pixie 1.15 1 1 1 20460.605 1 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 162635.85220000002 9 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 33022.318 2 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 3433482.5064499998 52 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 324950.0299 5 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 15066.431 1 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 32028.945 2 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 44816.4435 3 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 17397.489999999998 2 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1343068.3800000001 18 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 242551.77690000003 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 379904.791 8 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 80792.265 3 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 337667.72000000003 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 161076.936 6 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 116131.3278 5 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 4661204.6012 44 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 520785.999 11 +Q9VTZ5 Transferrin 2 24.42 20 23 20 743356.22163 21 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 287227.47815 13 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 38612.67 1 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 34094228.97257 112 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 1812560.24373 36 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 113690.2068 5 +Q9VU84 Drebrin-like protein 33.33 15 28 15 1227132.7563 26 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 205724.174 7 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 141068.4456 5 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 5206206.0519 46 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 333767.6966 10 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 2326768.52543 39 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 916.6115 1 +Q9VV36 Retinin 29.84 5 103 5 57661222.59844 85 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 5871630.94532 45 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 2413609.1585 27 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 106120.6995 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 346454.117 6 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 1367405.3630000001 25 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 113843.40710000001 7 +Q9VVE2 Protein rogdi 33.96 9 14 9 1093393.4561 14 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 1106160.5509000001 13 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 74473.1386 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 2078599.57513 29 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 67192.28848 8 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 13197.0231 3 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 2104395.3705 35 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 61068.65114 5 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 107465.3578 4 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 322826.816 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 176013.849 4 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 54291.986560000005 6 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 2508850.2037 21 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 11731.4357 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 277764.78065 10 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 1165584.48771 20 +Q9VWA1 Clathrin light chain 43.84 14 43 0 5054230.57606 38 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 72436.182 2 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 85426.35615 4 +Q9VWE0 Cytokine receptor 3.28 4 4 4 11461.6259 3 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 4876.846 1 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 802517.0278 11 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 60881740.40304 200 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 7844664.6781 26 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 287009.2143 14 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 68329.1146 6 +Q9VWU1 Serine protease persephone 6.85 2 2 2 25505.033 2 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 512439.3114 3 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 2942.604 1 +Q9VWX8 Frequenin-2 54.01 10 42 4 4707650.1463 41 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 25513.296000000002 2 +Q9VX10 Sulfiredoxin 11.73 2 3 0 82482.80470000001 3 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 386641.0818 12 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 4012163.62 28 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 16401.68 1 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 464172.9961 10 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 45065.3747 4 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 35761.864 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 4901832.85474 53 +Q9VXG4 Annexin B11 22.31 13 30 13 2802047.9804 28 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 701907.6549 17 +Q9VXK0 Protein NipSnap 15.38 4 6 0 393746.7036 6 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 547370.6403 14 +Q9VXN2 Protein stunted 55.74 4 15 4 1083227.561 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 69323.326 5 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 1317035.20404 19 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 684863.329 7 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 13844.0696 3 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 3387901.3226 32 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 60567.3064 5 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 7204.18184 3 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 1513666.27816 11 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 113127.5573 3 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 11477.0856 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 1184315.8333 12 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 3278.802 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 38351.4883 2 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 6748.03 1 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 888344.8077 10 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 20053.31 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 42228.1832 4 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 167428.5758 4 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 43389.383 2 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 4982132.6269000005 57 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 94455.72899999999 4 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 157037.752 2 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 887328.62663 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 401942.878 10 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 5544721.68163 33 +Q9VZ35 Protein Vago 20.62 2 2 2 11754.902999999998 2 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 530229.4824399999 7 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 1072003.69316 24 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 2226473.3001 23 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 139137.41363 11 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 232944.81500000003 3 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 35560.6208 3 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 23105.164 1 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 42190.45956 6 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 15732.962 2 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 16218.869 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 135434.914 2 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 754646.545 9 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 3058616.3784 32 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 5589855.08102 67 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 934556.1008 18 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 63773.836 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 5797881.1584600005 57 +Q9W074 Protein HBS1 4.63 3 3 3 31574.9556 3 +Q9W0A0 Protein draper 6.21 5 7 0 47755.2353 6 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 5874742.34836 36 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 9353.993 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 74521.2447 6 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 200899.9805 13 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 965316.58507 17 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 916677.7175 20 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 454575.1558 10 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 53158.236 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 7821.2173 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 20239974.8275 41 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 366552.3025 7 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 24334.772100000002 5 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 116152732.57630001 90 +Q9W1G0 Probable transaldolase 56.5 17 62 17 11501536.1961 59 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 6502.745 1 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 1491877.113 6 +Q9W1K5 Sestrin homolog 1.41 1 1 0 35074.598 1 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 221236.44900000002 3 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 567655.5042 6 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 77919.0855 7 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 75123.7564 5 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 88765.80189999999 7 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 510240.609 6 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 6741501.9842 50 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 416639.093 10 +Q9W266 Protein windpipe 13.44 10 18 10 1017930.052 18 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 3004534.5805 23 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 1013904.2142 13 +Q9W2E7 Protein Rae1 17.63 6 8 6 420308.37427000003 8 +Q9W2M2 Trehalase 40.94 22 40 0 1357733.9917 37 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 311798.5275 6 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 60977.878399999994 2 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 40338.1128 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 254816.17429999998 7 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 9009092.20414 73 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 946185.9965 15 +Q9W358 Chaperone Ric-8 8.55 6 6 0 102400.2427 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 13849947.2437 96 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 319173.5558 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 384065.36649999995 6 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 372297.9918 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 194071.50400000002 4 +Q9W3E2 Protein PIP82 26.03 29 40 29 637262.53007 34 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 172768.4744 11 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 46966.5307 3 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 146526.87196000002 10 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 322797.378 4 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 217966.6502 8 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 11477.1836 3 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 14679.132699999998 2 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 75497403.15245 184 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 259634.13090000002 5 +Q9W436 Neprilysin-1 7.54 6 7 6 63546.5343 6 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 134948.6644 8 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 2518.4129300000004 2 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 252552.46600000001 5 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 1444238.2353 18 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 636688.2917000001 24 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 509860.68799999997 11 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 2468691.4407 23 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 137463.28480000002 6 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 4982895.08037 149 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 133174.79 4 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 1951599.1883 25 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 326366.3983 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 52085.453499999996 3 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 766184.97213 15 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 6268.0645 1 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 2913959.9811 66 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 3104.1675 1 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 10703.166 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 1572216.158 10 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 2619544.0185 29 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 109186.78640000001 5 +Q9XZ14 Protein gone early 8.19 5 6 0 45274.14400000001 5 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 223214.3944 12 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 1361057.1856 16 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 3689095.247 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 5443008.8361 35 +Q9XZL8 Protein sarah 31.16 7 13 0 521092.93289999996 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 21390.6855 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 87202.0337 2 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 49637.1896 6 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 1057141.9929 20 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 520768.6262 4 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 3159319.622 16 +X2JAU8 Protein nervous wreck 40.0 41 115 41 13477988.2039 103 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 34101.04 1 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 405221.8726 16 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 46994.254 1 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 440861.6433 15 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 141676.536 5 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 431490.8483 14 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 14137.956 2 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 9976367.64565 119 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 25418.447 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 1999.7708 1 +A0A0B4JD47 Missing-in-metastasis, isoform E 2.46 1 1 0 694.52325 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 590931.2999 29 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 339768.79435 14 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 53174.1444 5 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 871636.0199 21 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 26831809.56308 169 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 74060.2836 7 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 112613.807 7 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 1150954.7146 37 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 774389.39777 14 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 83870.1927 4 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 291492.0217 12 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 101245.13859999999 6 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 216398.1439 8 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 31351.6468 4 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 443327.25946 17 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 5560.9673 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 13737939.39985 127 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 738251.2590000001 15 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 164077.0097 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 33693.1375 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 43021.7321 6 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 2272.992 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 10050576.77865 42 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 84681.8315 6 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 3771.27802 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 4025877.26615 66 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 98024.3732 5 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 1139944.0768 28 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 171665.31102 5 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 273687.31549999997 10 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 83368.4844 3 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 668363.2631 15 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 1316630.9008 19 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 2476988.482 45 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 113796.3943 6 +A0A0B4KEJ7 Coronin 14.21 7 8 0 116908.19893 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 35464.6752 3 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 15986.506300000001 3 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 118676.7665 4 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 487509.502 26 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 5307.798 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 42731.3585 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 50334.011 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 371821.5401 21 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 138266.8314 8 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 67654.65368 3 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2959318.6861 43 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 83545.795 4 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 15407950.6195 94 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 340070.27975 13 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 1129971.3023 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 1628413.3185 15 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 460788.1546 6 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 11593.401 2 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 234616.02276999998 10 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 147543.5356 8 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 49379.115 2 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 2982.706 1 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 12264.408 2 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 33198.069 2 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 401051.79079999996 8 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 52083.0055 3 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 99840.8844 6 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 12941.752 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 152622.9323 7 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 51293.375 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 502072.4783 18 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 2765098.9499 23 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 4339991.8205 42 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 4480.9288 2 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 20686.739999999998 2 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 11400.5123 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 52696.656 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 2308618.54066 38 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 35122.941 3 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 9576.0184 3 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 114966.45689999999 5 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 141491.2035 6 +A0A0B4KH34 Annexin 57.41 23 123 4 23696865.75584 115 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 16706.9327 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 12985.8468 2 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 1148600.4653 15 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 549574.2896 25 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 126162.531 4 +A0A0B4KHF0 Ferritin 77.97 21 133 1 38508748.29306 107 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 82855035.08322 279 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 317031.08603 10 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 6174.0723 1 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 58994.539300000004 5 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 930989.43 16 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 1009905.2482 28 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 451052.07999999996 3 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 221531.79020000002 9 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 38917.9042 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 356015.985 6 +A0A0B4KHZ0 Without children, isoform E 0.53 1 1 0 584.0125 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 3112667.8952 40 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 3312020.3419000003 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 102527.2445 5 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 18036.633 1 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 69124.418 7 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 6645.5473 3 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 23705.29445 4 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 2509746.303 27 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 1271881.5271 31 +A0A0B4LF95 glutaminase 18.84 10 11 0 281404.04099999997 10 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 2015085.4001 21 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 432122.03380000003 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 117898.1957 4 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 19385.5 3 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 126719.87376 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 22774.2915 3 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 32325.591 3 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 96586.7502 9 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 69611.5276 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 594991.04347 14 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 37379.705 2 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 306548.9776 11 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 3003688.92054 47 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 516786.90666999994 10 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 49109.979999999996 3 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 1077748.19158 22 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 77354.9042 8 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 12874942.67675 59 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 87076.421 3 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 167008.331 9 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 2273152.76985 38 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 55695.795849999995 7 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 295559.6459 7 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 33910.273 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 14068.02585 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 143723.761 9 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 39697.246 1 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 17478.76 1 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 25238.286 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 10664.1 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 346990.0369 18 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 24735.432699999998 2 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 61182.027 3 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 441266.04116 29 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 182412.461 9 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 149751.3534 6 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 541816.71924 12 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 10276.14202 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 894213.7908000001 15 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 71499.4179 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 50667568.40868 162 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 328648.6205 9 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 92826.30799999999 3 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 6211.9546 1 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 8996088.6449 17 +A0A4D6K4X9 Axundead, isoform F 3.44 2 2 0 477.19012 1 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 27002395.85986 131 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 216626.4299 19 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 107727.488 9 +A0A4P1SAA7 IP07559p 11.17 2 3 1 65012.2473 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 767.14023 2 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 1899076.92065 65 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 491245.9643 16 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 2727.1348 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 24977.271 1 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 14964.3489 2 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 27195192.37747 294 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 8003.4976 1 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 6153067.0756 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 256349.571 8 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 28619.94758 6 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 43024.939 2 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 68432.1741 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 17954.2496 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 117388.56638 8 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 21602767.64087 314 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1983001.5051499999 41 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 3270126.4017 35 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 2281404.17703 24 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 95844.5176 10 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 203166.4948 11 +A1Z6F6 FI18602p1 16.42 12 15 0 636410.69617 12 +A1Z6G9 FI18173p1 7.0 2 2 2 32887.2057 2 +A1Z6H4 RE52822p 16.12 8 11 0 465404.4297 10 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 67947.2137 8 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 11316.1667 2 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 584554.5309 9 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 1069605.62024 33 +A1Z6R7 FI21445p1 51.79 12 20 12 968471.07846 19 +A1Z6V5 FI01422p 44.02 15 36 15 2714371.6571 30 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 695208.1717000001 10 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 367122.6828 11 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 85108.19099999999 3 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 27075.3584 3 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 7456.8944 2 +A1Z7B8 GEO08456p1 21.52 3 10 3 380330.0335 10 +A1Z7G2 MIP13653p 13.39 2 8 2 3727574.4140000003 8 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 473199.86490000004 12 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 32160.49593 4 +A1Z7K6 FI20236p1 10.06 4 4 4 59044.125 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 492122.0747 10 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 169102.984 4 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 308767.74286 9 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 2362522.6894 41 +A1Z7V9 FI20020p1 6.93 4 6 1 61951.8263 5 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 19941.4585 3 +A1Z7X8 FI02944p 18.53 7 7 7 201235.2764 6 +A1Z803 FI02892p 32.35 12 17 12 524981.0249 17 +A1Z843 Nodal modulator 3 13.26 15 17 15 426236.23 16 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 3548797.69104 39 +A1Z871 CAP, isoform B 14.53 25 34 0 577003.2943 6 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 7702481.43592 50 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 648484.0273 7 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 397084.801 3 +A1Z8G7 FI09243p 16.53 2 4 2 5077.7495 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 31024408.6672 48 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 416549.6813 17 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 14684.2612 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 54784.414659999995 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 3464019.1249 19 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 585723.89485 16 +A1Z933 GEO02273p1 25.58 2 4 2 362810.108 4 +A1Z934 SD19268p 39.46 11 28 11 1958827.7865 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 99049.454 4 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 395975.03875 22 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 17737.5656 4 +A1Z9B5 IP16508p 15.06 3 3 3 128591.008 3 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 8479199.4778 49 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 2278124.3177 22 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 349405.01868 42 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 603794.6610000001 9 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 65107.54817 9 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 894274.8733 7 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 8914.548999999999 2 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 12780.930199999999 2 +A1ZA23 FI18007p1 29.23 9 23 9 1045629.1574 22 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 4119.2173 1 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 492174.0642 9 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 189566.807 6 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 74143.92 4 +A1ZAH3 FI16515p1 4.82 2 2 0 841.8488 1 +A1ZAK3 Protein DEK 4.05 3 4 0 57687.004 3 +A1ZAL1 lysozyme 30.43 5 7 5 363583.874 7 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 1712.9966 1 +A1ZAU4 RH39096p 50.48 18 44 0 7613740.43736 42 +A1ZB23 IP19117p 10.88 2 2 2 34559.496999999996 2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 10607.759 1 +A1ZB68 FI01423p 47.27 11 25 11 1702183.5403 24 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 9005731.8929 27 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 606281.5549999999 5 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 2941218.7217 22 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 138215.71882 3 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 29868.45145 4 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 6679376.7268 39 +A1ZBA5 FI07234p 4.64 2 2 2 128008.07499999998 2 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 107237.637 6 +A1ZBD8 Mucin-5AC 6.1 7 9 7 124369.5741 7 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 8025.5329 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 1645973.1702 47 +A1ZBK7 Crammer 27.85 2 11 2 426752.5824 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 70741.2486 3 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 1054365.5593 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 1264144.994 14 +A1ZBU5 GNBP-like 3 41.45 4 4 4 119597.815 4 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 81276.0566 4 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 4766278.56283 51 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 22408.07 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 1554798.95185 43 +A1ZBX6 lysozyme 14.53 3 4 3 46404.5099 4 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 2991.4091 2 +A2VEG3 IP16294p 1.06 1 1 0 2391.5635 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 7299.958 1 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 288286.396 5 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 1807204.7692 29 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 88076.30369999999 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 2592648.6726 19 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 8530792.7645 72 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 7748476.4161600005 98 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 17083.8094 2 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 9912419.61005 37 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 567306.9171 11 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 200062.1829 10 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 2843140.0912 14 +A8DYD1 Combgap, isoform L 11.11 9 11 0 174858.9619 11 +A8DYI6 Prohibitin 69.53 23 83 3 10858286.88568 76 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 1027529.66564 27 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 199274.8511 9 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 3310.9413600000003 2 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 104300.3598 5 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 14979.118299999998 3 +A8DZ06 Stolid, isoform J 11.43 13 22 0 672168.1487 17 +A8DZ14 FI17828p1 24.09 13 28 7 3011817.03723 26 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 58728.0382 4 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 44242.861999999994 2 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 901595.45782 39 +A8E6W0 IP19808p 28.28 5 8 5 166307.8433 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 241746.55200000003 3 +A8JNJ6 Karst, isoform E 2.12 9 9 0 56462.26645 8 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 13295.5721 3 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 104271.883 3 +A8JNP2 arginine kinase 73.87 45 492 2 11537118.560899999 21 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 261785.74547999998 14 +A8JNS4 Starvin, isoform E 10.08 5 6 0 73089.03600000001 5 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 29420.2876 4 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 201125.1997 7 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 87937.1062 6 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 24918.3901 2 +A8JQW3 Pinin, isoform B 17.26 5 5 0 53528.050899999995 5 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 128734.258 2 +A8JR01 Kramer, isoform I 1.39 5 5 0 20243.143500000002 3 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 149947.848 3 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 368011.2804 8 +A8JR58 Hadley, isoform B 11.24 3 3 2 29113.9675 3 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 13195005.0107 81 +A8JRH3 FI20012p1 71.29 30 91 1 7931834.41506 85 +A8JTM7 Megalin, isoform A 4.74 23 27 23 360481.9852 25 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 114702.20300000001 7 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 18640.027 3 +A8JUZ6 MIP03678p 13.29 4 5 0 495950.73900000006 5 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 6884.749 1 +A8JV09 Coronin 0.64 1 1 0 12626.455 1 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1769237.2741 37 +A8WH76 GEO10024p1 51.85 5 19 5 956244.84325 13 +A8Y4V5 FI20903p1 8.21 2 2 2 28759.9347 2 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 4277.38418 3 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 8253167.6264 20 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 99897.264 3 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 17424.064 1 +B7YZH1 FI20143p1 5.74 3 3 0 31747.906499999997 3 +B7YZN0 Syndecan 13.56 7 9 0 224794.64854999998 7 +B7YZN4 GH02741p3 38.46 3 3 3 187564.187 3 +B7YZN8 GH02741p1 10.53 1 1 1 56621.887 1 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 67365.9068 8 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 16986526.29313 85 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 13501.05802 3 +B7YZV2 Phosphodiesterase 10.49 9 10 0 229260.23249999998 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 1315059.91423 32 +B7Z001 Fatty acid synthase 18.78 43 71 0 3728688.4239000003 67 +B7Z002 Kismet, isoform C 1.2 4 4 1 9499.437 1 +B7Z005 Drongo, isoform I 13.62 6 7 0 39244.503639999995 5 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 19974.833 3 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 76320.1041 7 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 55337.7985 3 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 117454.07579999999 7 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 43657.39895 4 +B7Z0C9 GH15104p1 23.16 3 5 3 240381.90399999998 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 41878805.7928 129 +B7Z0M0 FI17308p1 21.31 2 2 1 5547.6055 1 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 43684.389 2 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 502648.29000000004 9 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 671687.02382 19 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 81259.10672000001 6 +B7Z107 GH09380p1 43.48 4 7 4 568583.6117 7 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 46212.812 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 45260.754700000005 4 +C0HDP4 MIP05618p 5.36 2 2 0 41167.006 2 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 3740068.0209 45 +C7LAG1 CoRest, isoform G 6.67 5 5 1 20069.786 4 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 4142009.1262600003 68 +C9QP70 MIP12608p 25.61 4 4 4 24991.341500000002 3 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 1915597.2535 24 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 226579.02464 10 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 63306.91930000001 5 +D0Z756 MIP14966p 31.93 16 55 0 6487610.07105 53 +D1YSG0 Bent, isoform F 4.91 37 40 0 462111.51977 38 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 774679.3981999999 13 +D3DMM0 MIP15702p 23.27 9 24 0 1682220.581 23 +D3DMM4 MIP15217p 36.68 27 74 0 7819627.9949 66 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 440730.36947 10 +D5SHT6 MIP21537p 7.48 3 3 0 16208.482399999999 2 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 10899.2868 2 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 352101.1495 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 596532.0912 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 553964.4726 20 +E1JGR3 GEO02620p1 24.62 3 4 3 6204.0974 3 +E1JGY6 Hulk, isoform F 16.85 27 41 0 1813019.6502 40 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 539817.2116 16 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 30353.328 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 8226.1568 2 +E1JH90 Patronin, isoform F 2.57 4 4 0 82449.5154 4 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 1776431.32 54 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 86157.7633 8 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 13748.92173 2 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 190047.796 4 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 207719.174 5 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 197179.1856 7 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 179327.5111 9 +E1JHP9 Galectin 5.97 2 2 0 34521.081999999995 2 +E1JHT6 Reticulon-like protein 32.13 17 35 0 3723339.9825 33 +E1JHT9 Reticulon-like protein 36.04 8 13 0 3337.5408 1 +E1JI40 Vermiform, isoform I 19.64 10 13 0 509312.5388 11 +E1JI59 Schizo, isoform D 3.03 2 2 0 4539.4014 1 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 329737.31539999996 6 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 14330.7952 2 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 350545.522 5 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 5582.728 1 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 121356.55970000001 5 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 59096.521 4 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 9094.618 3 +E1JIY8 L antigen family member 3 20.72 3 5 3 197462.03 5 +E1JJ33 Complexin, isoform U 71.33 11 97 2 15763596.723140001 94 +E1JJA4 Dynamin 38.05 35 64 0 1728547.4681 58 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 18556.624 2 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 1596.9114 1 +E1JJG5 Phospholipase A2 7.53 2 2 1 39152.988 2 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 8708344.10632 95 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 82932.5789 7 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 476167.48829999997 10 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 57569.955599999994 4 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 1844253.43995 51 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 60395.770099999994 4 +E2QD54 Natalisin, isoform D 5.61 3 3 0 56584.562 3 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 375291.76036 15 +E2QD98 Protein PALS1 8.22 17 22 0 367174.718 20 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 146887.45859999998 12 +E8NH67 Asperous, isoform B 58.41 20 78 0 6292486.54207 64 +F0JAP7 LP18071p 19.65 5 5 0 59632.2064 4 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 155093.44150000002 8 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 8639990.34178 122 +H1UUB1 GEO12465p1 49.61 5 18 1 1203481.0227 17 +H8F4T3 Regucalcin 46.08 10 21 0 1179538.92506 21 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 124978.5274 4 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 53048.0296 7 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 3971713.9863 37 +L0MPN7 Asator, isoform H 11.57 11 14 0 113558.2461 12 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 157730.04394 17 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 4263.6402 2 +M9MRX0 Limpet, isoform J 28.01 28 72 0 7173861.4773699995 67 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 1064383.17314 58 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 232171.5994 13 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 264849.337 8 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 156922.6 3 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 14214.1791 3 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 1149058.5532 22 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 2583657.987 16 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 5218601.3041 58 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 28739.702999999998 4 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 58008.33 3 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 502678.5394 10 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 1321112.02554 30 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 201417.37167 18 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 408353.8969 13 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 133147.2993 9 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 11937.18727 2 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 225850.6256 8 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 53150855.92499 418 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 14070.548499999999 2 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3290.5212 1 +M9NDE0 pantothenate kinase 5.37 3 3 0 53136.138999999996 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 46522.90814 7 +M9NDS9 chitinase 0.98 4 4 0 54840.319 3 +M9NDX8 Neurabin-1 3.12 6 6 0 13412.581600000001 3 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 145789.7505 7 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 125834.9152 10 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 13910.1378 3 +M9NEF2 Histone deacetylase 3.95 3 4 0 8119.109 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 8204.357 1 +M9NEW0 LD39232p2 63.33 10 18 10 1227352.61255 18 +M9NEX3 Cytochrome b5 63.21 7 22 0 3977226.04445 21 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 235672.03399999999 3 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 22547.013 2 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 186235.3193 5 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 148990.55172 9 +M9NFC0 Troponin I 50.75 16 66 5 2936969.577 15 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 969147.4 4 +M9NFH3 Lasp, isoform D 36.88 10 31 1 577505.7295 3 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 839126.4261 38 +M9NGY7 Hyperkinetic, isoform I 6.36 2 3 1 578.5212 1 +M9NH07 Upheld, isoform N 53.05 36 130 0 21732996.2575 120 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 434046.65306 20 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 355432.246 10 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 29208.71 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 2155975.70857 50 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 2020.1676 1 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 122793.22600000001 4 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 24331.242 2 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 16017596.7499 186 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 92877.799 2 +M9PBM3 Cysteine protease 8.54 3 4 0 133848.157 4 +M9PBN2 Apolipoprotein D 24.08 6 18 0 1089673.6561999999 17 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 866749.82882 20 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 11283.166 1 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 60500.525 2 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 723560.0557 21 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 1743581.27228 22 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 93013.22399999999 6 +M9PBW9 Rhea, isoform G 8.06 23 26 0 258346.99936 23 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 634643.0168 16 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 72330033.47447 188 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 2492.0953600000003 2 +M9PC74 Reticulocalbin-3 24.48 10 18 0 1428724.60015 18 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 12056.755 1 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 111765.1231 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 6258.0967 1 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 84176.339 6 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 221356.2113 12 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 217101.91631 23 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 59882.9124 5 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 121235.042 6 +M9PCT7 Bunched, isoform O 19.79 4 11 1 56870.97890000001 3 +M9PCU0 FI21215p1 31.45 40 59 2 201363.007 3 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 321198.6049 11 +M9PD73 TEP1-F 26.63 37 63 0 4073215.0272000004 63 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 1560713.9394 20 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 3574.4022999999997 2 +M9PDB2 Varicose, isoform E 8.51 6 6 0 72661.86869999999 6 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 2272652.6431 26 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 25186.277000000002 2 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 153987.33620999998 14 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 178443.261 9 +M9PDU4 Acyl carrier protein 19.34 5 38 3 30219012.916 38 +M9PDV2 Tetraspanin 12.89 3 5 0 82137.21979999999 5 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 901301.27952 44 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 434417.6189 12 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 15819865.0007 58 +M9PE32 Fife, isoform D 14.76 16 27 1 400672.18767 24 +M9PE35 RabX6, isoform B 5.86 1 1 0 497.68335 1 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 2156.87363 2 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 12403.08662 5 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 84768.57777999999 12 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 87016.371 4 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 9032.0943 2 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 35299.33278 6 +M9PEC1 IST1 homolog 22.5 9 19 0 786032.6371 18 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 544648.3604 12 +M9PEG1 Uncharacterized protein 34.58 16 38 16 3471137.7721 38 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 6170502.12124 227 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 101861.1091 6 +M9PEL3 Quemao, isoform C 30.67 10 17 0 873231.2794 15 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 143054.1562 8 +M9PET3 Simjang, isoform D 4.11 3 3 0 3886.8373199999996 3 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 62224.4576 4 +M9PF16 Spectrin beta chain 29.64 75 147 5 4701897.93617 136 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 2725674.4682 35 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 20439.5197 3 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 46841.63417 7 +M9PFH7 Tartan, isoform B 3.73 3 3 0 8395.795 2 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 14525.393250000001 2 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 109123.78524999999 6 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 9643.880200000001 2 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 83079.11 1 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 11078.23704 3 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 768990.9736 22 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 323493.974 15 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 238120.13999999998 9 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 33141337.21239 186 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 222114.58140000002 5 +M9PGC4 Shaggy, isoform P 19.72 18 54 0 866.6639 1 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 81938.049 3 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 1122133.8953 13 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 496329.92799 26 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 63929.17199999999 2 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 836033.40456 26 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 1706173.7435 25 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 117207.575 3 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 254842.1531 14 +M9PHX2 Visgun, isoform E 8.78 2 5 1 43926.0274 5 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 35313.605 1 +M9PI33 Inositol oxygenase 6.91 2 4 0 266623.18200000003 3 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 6674.9483 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 43908.9704 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 3060.0237 1 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 41656.136 2 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 211660.412 4 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 11249.248 1 +M9PJQ5 Troponin I 49.46 15 70 0 1530283.733 14 +O15971 LD39986p 23.53 5 25 2 599956.425 4 +O16158 Calcium-binding protein 52.72 8 47 8 7115120.4829 39 +O17452 LD20793p 27.83 6 24 4 2472909.37915 22 +O18332 FI01544p 60.98 11 59 9 4134868.3797600004 45 +O18335 Rab11 64.49 14 53 14 9410946.2915 47 +O18336 Ras-related protein Rab-14 36.28 8 18 1 1221936.3157 15 +O18338 LD44762p 33.33 7 28 1 20712.7325 2 +O44226 Elongin-B 97.46 10 37 10 3423346.24828 34 +O44434 QKR58E-3 22.08 7 9 6 134004.179 7 +O46052 EG:152A3.3 protein 22.91 6 6 1 98300.2653 6 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 1983403.1362700001 46 +O46079 Protein KTI12 homolog 7.69 3 3 2 705.5811 1 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 96489.3722 6 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 180360.85259999998 5 +O61604 Fimbrin 32.5 22 57 2 5284163.8166000005 56 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 87694.8018 7 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 41300.77527 5 +O76521 Importin subunit alpha 7.0 4 6 4 120370.8174 6 +O76752 Sepiapterin reductase 36.02 9 16 9 577262.432 14 +O76877 EG:132E8.3 protein 20.62 3 8 3 858969.9493999999 8 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 11980285.1771 25 +O77259 EG:115C2.5 protein 4.5 1 1 0 3219.6282 1 +O77425 Ribokinase 19.41 5 5 5 97508.3414 5 +O77430 GEO01111p1 83.95 15 32 13 2242869.40409 29 +O77434 EG:34F3.8 protein 34.6 6 12 1 363331.89226 7 +O77477 LD24471p 22.41 8 11 8 256114.72639999999 10 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 27010.893 1 +O96692 small monomeric GTPase 27.47 5 6 2 533996.015 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 301152.74052 7 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 1713.9467 1 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 39368.3519 3 +O97059 Ccp84Ab 44.8 7 12 0 513106.6757 12 +O97062 Ccp84Ae 70.19 12 29 12 1349414.34704 26 +O97064 Ccp84Ag 39.27 6 11 6 384572.7304 10 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 62989.721699999995 2 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 4155174.8281 32 +O97111 LD29223p 11.68 4 6 4 56637.3089 5 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 2880.353 1 +O97365 BM-40 26.32 10 12 10 593564.143 11 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 6342476.0585 28 +O97428 Ciboulot, isoform A 37.21 4 6 1 218486.89359999998 6 +O97454 Protein BUD31 homolog 21.53 4 5 4 81473.9468 4 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 358596.82885 12 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 19396044.8857 139 +P92181 Cuticle protein DCP2 37.61 3 10 3 176649.2996 8 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 49772.020000000004 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 9131730.2387 77 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 898924.5231000001 9 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 222912.335 6 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 3542.4436299999998 2 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 4400069.34914 106 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 14696.885 1 +Q0E8P5 FI05614p 22.24 11 21 11 622178.00056 18 +Q0E8S7 Homer, isoform E 45.76 21 61 4 7115708.61505 54 +Q0E8U4 FI09636p 17.67 5 6 5 134397.849 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 1995785.6729 23 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 171377.135 5 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 8408826.696560001 53 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 2202560.57444 18 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 717613.15143 25 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 42925.2008 3 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 1574115.08314 57 +Q0E9E6 RE33655p 5.43 3 3 1 45145.083 3 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 865111.7192 20 +Q0E9G4 CG1600-PA 14.96 4 7 0 142605.7643 7 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 580410.647 14 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 5654.749 1 +Q0KHR7 Septin 13.58 6 8 0 196329.24300000002 7 +Q0KHX7 FI18193p1 7.31 9 9 0 41042.8768 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 32700071.28226 129 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 47627.5276 4 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 440450.52729999996 12 +Q0KI39 FI16806p1 18.15 3 5 1 4864.222 1 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 1261564.0449 24 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 189579.87 12 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 310892.04199999996 7 +Q0KIB0 Sidestep III 0.95 1 1 1 8873.297 1 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 87258.429 5 +Q1RL12 IP16413p 55.9 15 82 2 435328.65280000004 4 +Q24090 GH08712p 12.43 5 7 5 161864.6037 6 +Q24253 AP complex subunit beta 20.63 16 21 16 908544.721 21 +Q26459 EN protein binding protein 26.32 12 22 0 450985.7328 21 +Q29QY7 IP15859p 22.54 3 5 1 744392.3595 5 +Q2MGK7 GEO13330p1 48.03 7 9 7 423742.6793 9 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 21327.718500000003 2 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 59708.035 1 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 21556702.9678 152 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 122053.1556 5 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 1505794.8479 16 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 108477.48524000001 5 +Q4QQ49 IP09595p 7.43 2 3 2 7613.6203000000005 2 +Q4QQ70 IP09819p 23.98 7 9 7 121618.1536 7 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 7020.964 1 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 82142.0089 5 +Q4V619 IP07950p 27.16 5 6 1 54770.5846 5 +Q4V625 lysozyme 13.5 2 4 2 111429.608 4 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 1225895.3539 16 +Q500Y7 GEO11443p1 54.39 4 28 4 2445208.6153 25 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 10259.732899999999 2 +Q59E01 FI02065p 7.44 5 6 0 31683.9955 4 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 40333.00924 5 +Q5BIA9 RE10908p 0.99 1 1 1 25533.871 1 +Q5LJT3 MIP01391p 25.1 4 10 4 389196.4891 10 +Q5U124 alpha-glucosidase 20.95 11 16 0 797871.9795 14 +Q5U126 GEO11286p1 59.42 7 33 7 9890308.0974 31 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 294365.71900000004 11 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 29882.1836 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 2289305.05155 26 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 58078.100600000005 3 +Q6IGN6 HDC05827 50.0 4 7 4 339953.25 7 +Q6IGW6 GEO13367p1 44.23 2 5 2 80824.04017000001 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 6185795.7667000005 19 +Q6IIF2 GEO11103p1 24.29 3 4 3 12554.11594 4 +Q6IL43 GEO11093p1 27.71 2 4 2 325300.70900000003 4 +Q6NL44 GH28815p 13.18 6 6 6 71346.9035 5 +Q6NLJ9 AT19138p 53.41 5 6 5 119054.83050000001 4 +Q6NMY2 RH54371p 36.81 6 28 6 5050685.556 18 +Q6NNV2 RE44043p 5.5 2 2 0 249974.91 2 +Q6NNV7 RH03309p 47.37 7 19 1 1259791.00797 17 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 79819.89499999999 5 +Q6NP72 GEO09659p1 33.33 4 18 4 849219.7265 18 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 59750.5165 3 +Q76NR6 Regucalcin 81.19 23 173 0 28837835.56444 160 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 580192.0553 11 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 36766.9835 4 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 698322.46063 14 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 5197983.611140001 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 6700.6889200000005 2 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 1620349.7886 27 +Q7JQX9 FI14001p1 7.6 5 5 1 65314.544499999996 5 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 29798604.99904 110 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 1287663.9741999998 16 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 102743.874 3 +Q7JRF1 RE48509p 8.67 2 3 1 32194.1999 3 +Q7JRH5 RE28271p 5.61 3 3 3 28105.66393 3 +Q7JRL9 GH25289p 70.78 13 48 1 9652036.1126 47 +Q7JRN6 GH06388p 11.21 3 8 3 152496.66749999998 6 +Q7JS69 FI04632p 40.84 11 75 1 2224459.354 14 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 15817.2275 3 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 27427.422 2 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 3667879.5233 33 +Q7JV09 GH28348p 6.55 7 8 3 107929.9347 8 +Q7JV69 SD11922p 10.96 4 6 4 345512.95530000003 6 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 107457.9475 4 +Q7JVH6 LD24696p 37.3 11 25 10 1638371.306 15 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 527974.2509999999 10 +Q7JVK6 Translin 22.13 5 11 5 510705.81132 10 +Q7JVK8 GEO08987p1 71.92 10 16 10 1239361.0948 15 +Q7JVM1 GH25962p 11.79 3 6 3 98403.5026 4 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 266192.5559 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 614199.629 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 599072.6447000001 9 +Q7JW07 LD08826p 5.63 1 1 1 2407.1865 1 +Q7JW48 RE12410p 2.23 1 2 1 42037.277 1 +Q7JW66 LD21545p 4.83 2 2 2 54729.706 2 +Q7JWD6 Elongin-C 63.25 7 34 7 4361713.1464 29 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 3599811.5676 39 +Q7JWH5 RING-box protein 2 19.47 1 1 1 19965.764 1 +Q7JWQ7 RE01730p 14.62 5 8 5 98063.44529999999 8 +Q7JWR4 GH19585p 9.09 1 1 1 49391.95 1 +Q7JWU9 AT07420p 30.12 8 10 8 177215.5708 8 +Q7JWX3 GH10112p 35.92 11 23 11 630123.1897 21 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 823076.0053 9 +Q7JX94 Phospholipase A2 15.61 3 4 3 4560.06937 3 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 328032.5418 13 +Q7JXB9 Endonuclease 16.77 5 5 5 694657.503 5 +Q7JXC4 CG6459 protein 35.74 7 44 7 12648397.5266 43 +Q7JXW8 Off-track2 12.24 5 5 5 106664.232 4 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 501416.37936 12 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 2082655.923 7 +Q7JYW9 Phosphotransferase 22.25 10 12 10 360569.2242 10 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 50164.945640000005 3 +Q7JYZ0 lysozyme 39.13 4 10 4 260213.0663 10 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 1585072.5544 19 +Q7JZB1 RE49860p 3.58 1 1 1 26166.71 1 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 3038693.8628 29 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 9225.9875 3 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 319334.147 4 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 7804749.240420001 38 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 246266.11836000002 19 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 7680.5044 2 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 2179827.16393 29 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 2870205.89287 32 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 143501.71755 8 +Q7K076 GEO08269p1 34.35 3 4 0 146315.87102 4 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 51753138.02535 166 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 14017.051 1 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 2419170.7214 31 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 210772.86103 11 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 1737.2963 1 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 84159.16 4 +Q7K0S1 LD39211p 3.66 2 2 2 54351.72 2 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 788063.8714000001 25 +Q7K0S6 LD36817p 27.56 10 14 10 552353.919 14 +Q7K0T7 LD33470p 2.07 2 3 0 8254.124039999999 2 +Q7K0W1 LD27406p 3.67 2 2 2 27822.733 2 +Q7K0W4 LD27203p 57.93 19 64 18 10083693.57153 60 +Q7K0X9 LD23667p 28.72 6 13 6 326878.5809 12 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 171676.0174 3 +Q7K127 Alpha-galactosidase 35.97 13 22 13 1042272.6118 22 +Q7K130 Dynactin subunit 4 13.04 5 6 5 24375.3939 4 +Q7K148 Proteasome subunit beta 17.73 5 7 5 113758.266 7 +Q7K159 LD06557p 13.11 4 5 4 42304.729300000006 5 +Q7K180 LD02709p 23.18 10 13 10 316983.1228 12 +Q7K188 GEO05126p1 32.9 7 45 7 22803801.2721 40 +Q7K1C0 GH23780p 50.5 7 12 1 934193.5648 11 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 666615.804 10 +Q7K1C5 GH21176p 6.62 4 5 4 514150.17819999997 5 +Q7K1H0 GH09096p 20.37 6 7 6 249064.064 7 +Q7K1M4 SD04017p 24.68 8 15 8 499500.3071 14 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 84893.367 4 +Q7K1W5 LD35843p 35.11 14 28 14 3347482.5637 27 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 70602.2678 8 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 1841458.703 27 +Q7K2E1 LD05247p 11.72 7 10 7 188681.54690000002 8 +Q7K2K2 FI04612p 7.06 2 3 1 35060.342000000004 2 +Q7K2L7 GH27120p 17.59 3 12 3 775477.6619 10 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 78611.0373 6 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 90171.952 4 +Q7K2P3 GH20817p 63.91 15 37 1 1232174.45376 33 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 289659.38802 5 +Q7K2W6 tyrosinase 26.81 17 23 17 146122.0214 18 +Q7K332 GH17623p 30.96 8 10 7 328638.15129999997 9 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 1096173.6773 16 +Q7K3E2 LD34147p 66.97 33 68 33 5922604.04437 63 +Q7K3H0 LD28067p 2.56 5 7 0 83940.35399999999 4 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 2749095.99274 37 +Q7K3N4 GH26015p 15.98 7 11 7 255139.3659 10 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 195716.3924 8 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 466321.06309999997 16 +Q7K3W4 GH08941p 26.81 8 27 8 1835834.65546 27 +Q7K3Y9 Spondin-1 4.58 3 3 3 6040.9313999999995 2 +Q7K3Z3 GH01724p 56.76 18 53 18 1964236.0363999999 48 +Q7K485 Cathepsin D 28.83 8 27 8 3277343.672 26 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 170189.5693 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 21145.8343 2 +Q7K4J7 LD36653p 7.38 2 3 2 63619.374 3 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 39118.8474 4 +Q7K4T8 LD23856p 6.99 3 4 3 8311.7748 3 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 2975.4284 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 313728.257 9 +Q7K519 GH16429p 23.9 7 8 7 164723.30995 8 +Q7K533 GH14572p 5.48 2 2 2 19645.9913 2 +Q7K549 GH13040p 21.35 8 10 8 88721.2105 10 +Q7K568 GH10642p 21.49 6 8 6 128041.6 5 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 4176989.52904 61 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 434115.90976 15 +Q7K5M6 GH04176p 37.5 9 17 9 1475965.3705199999 16 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 1128603.2039 23 +Q7K860 FI07231p 39.22 6 19 6 10998287.634 19 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 3122481.6358000003 18 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 15457.8442 2 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 54934.0442 5 +Q7KK54 MIP07328p 10.52 7 7 7 113335.5021 7 +Q7KK90 GH14654p 50.0 8 36 8 7545984.6243 26 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 1247947.51887 24 +Q7KLE5 Amphiphysin 37.04 23 65 2 6106882.56883 61 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 428679.0366 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 2526903.5733 12 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 239433.7634 5 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 78444.0618 5 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 2737385.3103 22 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 4093243.94743 66 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 22446.105600000003 2 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 169131.28854 7 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 14098.101999999999 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 1833816.03296 37 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 18876706.05614 102 +Q7KND8 FI09619p 6.03 4 5 4 69860.742 4 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 2864059.2768 16 +Q7KRT4 GH07253p 2.47 1 1 0 9386.181 1 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 60279.9295 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 227598.2054 6 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 1019539.8866999999 12 +Q7KSE4 GH05443p 2.78 2 2 2 15149.529 2 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 1000439.3743 17 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 5256283.053 33 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 34190.498 3 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 36580.6531 6 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1965558.4670000002 26 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 4264212.18217 48 +Q7KT58 GH08155p 4.4 1 1 1 7722.4663 1 +Q7KT70 FI18641p1 0.94 1 1 1 3157.1177 1 +Q7KTA1 HL01444p 20.67 8 10 8 183186.761 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 581973.1844 25 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 9171301.1641 77 +Q7KTN9 FI01009p 3.11 2 2 0 18015.0474 2 +Q7KTP7 LP22840p 45.86 7 12 7 579787.67172 12 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 8535744.26 83 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 1363949.8630000001 31 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 3460.592 1 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 1629458.2948999999 20 +Q7KUD4 phospholipase A2 6.43 6 7 0 73516.94499999999 7 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 270125.7006 14 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 4293.7342 2 +Q7KUT5 Protein MIX23 26.89 3 3 0 61733.6845 3 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 346248.1402 6 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 73754.3254 6 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 552829.2046899999 32 +Q7KV27 alanine transaminase 54.93 32 121 0 29908657.04634 115 +Q7KV34 Pinkman 57.32 33 64 33 4861646.02945 62 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 78133.0 4 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 838962.0948999999 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 62303.0666 4 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 24199047.64553 82 +Q7KY04 small monomeric GTPase 23.47 5 14 4 18602.009000000002 2 +Q7PL91 GEO11417p1 30.85 5 12 5 1496389.99128 11 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 11575.78706 3 +Q7PLI0 P120 catenin 17.03 14 17 14 676809.1872 15 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 908152.5476 26 +Q7PLS1 LD01937p 14.61 5 6 0 251336.9075 5 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 115336.61839999999 4 +Q7YU88 SD08871p 4.1 3 3 0 4959.27894 3 +Q86B44 Glutathione synthetase 19.4 8 9 0 131463.5783 8 +Q86B74 WASp, isoform C 10.53 4 4 0 86786.2175 4 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 28399.749000000003 2 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 11383.004 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 863927.925 16 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 387502.92209999997 14 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 1269452.53675 26 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1974564.1272 22 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 3187861.0436 21 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 1648126.2248 36 +Q86BS3 Chromator, isoform A 35.53 26 44 26 1525793.34953 40 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 19685.5184 3 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 1363671.6 25 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 148713.26499999998 4 +Q8I077 BcDNA.LD22910 1.76 2 2 2 14621.3886 2 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 252225.0043 7 +Q8I0D4 RE20510p 21.32 17 37 0 4469476.0076 34 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 66388.3155 5 +Q8I0P9 acid phosphatase 9.67 4 4 0 117552.943 3 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 2204099.3051 23 +Q8I930 GH14147p 3.57 3 4 0 16492.0425 4 +Q8I941 GH16843p 32.88 8 25 8 1580493.6419 24 +Q8IG84 SD21996p 13.42 14 125 0 522.0893 1 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 45854.611999999994 2 +Q8IGY1 RE08101p 33.19 42 295 0 34279660.2274 159 +Q8IH23 GEO02102p1 67.41 6 14 6 1682828.4605 14 +Q8IM93 FI18814p1 35.27 16 37 16 2593005.43897 31 +Q8IMF4 RE24176p 6.68 3 3 0 26340.4003 3 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 2185889.74933 35 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 30978.9965 3 +Q8IMQ8 RH29536p 46.4 14 49 0 9548104.38066 47 +Q8IMT3 IP12392p 10.71 4 5 4 108084.497 4 +Q8IMT6 FI01822p 10.66 5 6 5 208633.18 6 +Q8IMU2 RE10237p 19.18 4 5 0 173254.044 5 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 54133.3117 4 +Q8IMX4 FI04408p 10.85 4 6 0 95678.8756 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 477844.93 10 +Q8IN49 MIP05539p 11.03 10 11 10 210388.7271 9 +Q8IN51 FI17609p1 37.59 7 14 7 569159.6639 14 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 122439.095 2 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 176552.597 4 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 48159.8338 4 +Q8INH5 Aminopeptidase 7.53 7 11 0 268774.0324 11 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 42618.8542 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 52360.441 2 +Q8IP52 RE16941p 0.86 1 1 1 14416.024 1 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 326299.6751 7 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 1209608.25105 18 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 39316.4924 5 +Q8IP97 Peroxin-19 35.62 9 32 9 3921894.3062 28 +Q8IPA5 RE15581p 10.0 3 3 0 107194.38200000001 3 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 40464.272 3 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 1468111.4977000002 14 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 9264190.748230001 98 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 113674.03700000001 8 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 29260.215 1 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 26395.0348 3 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 1395679.9925000002 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 77163.7804 4 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 194959.83179999999 6 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 2193.4402 1 +Q8IPT9 SD05439p1 39.06 11 32 0 1903221.30154 28 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 5063852.2484 49 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 14215.87863 2 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 26663.654799999997 4 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 86214.1683 7 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 10868.726 1 +Q8IQB7 MIP21654p 9.44 3 3 3 200823.82410000003 3 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 297881.96544 12 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 193242.1566 5 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 177091.76799999998 3 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 39052.605 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 198563.6893 9 +Q8IQH0 FI12817p 4.98 8 9 1 167851.5853 8 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 369897.8433 9 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 638325.96894 23 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 23401.025 2 +Q8IQU1 LD36620p 19.62 9 13 1 137298.947 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 76196.9157 2 +Q8IQW5 RE23625p 70.83 13 77 3 9839357.38292 67 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 85432.7623 5 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 62878.0718 3 +Q8IR72 FI19011p1 10.06 1 1 1 11592.893 1 +Q8IR76 FAD synthase 16.33 4 4 0 49921.6186 4 +Q8IRD0 RH17559p 42.86 3 8 3 700900.9316 8 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 23107885.784250002 70 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 525122.6381 20 +Q8IRI5 Trio, isoform D 15.92 12 15 2 291305.37445 13 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 26118174.95927 131 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 69529.50200000001 2 +Q8MLP9 GEO08457p1 33.04 4 5 4 124178.23726000001 5 +Q8MLQ0 FI14118p 11.84 1 1 1 5932.1855 1 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 1370913.9472999999 12 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 802453.26247 16 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 36380.2337 3 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 1164680.0766 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 9296660.41878 98 +Q8MQP2 MIP16184p 2.67 1 1 0 94596.586 1 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 11593.52 2 +Q8MRM0 GH16740p 27.0 6 9 6 1313259.4196 9 +Q8MRS5 AT03104p 0.71 1 1 0 8451.629 1 +Q8MRT7 SD26038p 13.79 3 4 3 108405.2 4 +Q8MRW1 SD19278p 14.08 2 4 2 246080.5645 4 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 14191.0957 5 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 16348.81 1 +Q8MSI2 GH15296p 85.19 22 138 22 65809491.03005 122 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 68438.9105 6 +Q8MST5 Tubulin beta chain 40.7 17 120 0 1348454.88004 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 8572709.89507 70 +Q8MZ07 GEO07581p1 6.16 1 1 1 42822.08 1 +Q8MZI3 RNA helicase 14.91 11 20 5 576450.9778 10 +Q8SWS2 RE29468p 77.51 8 32 0 1656650.2608 25 +Q8SWS3 RE26528p 17.13 2 6 2 228352.75530000002 5 +Q8SWZ6 RH51312p 15.35 3 7 3 49380.9461 5 +Q8SX06 GEO08318p1 15.43 2 2 2 13632.352 2 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 16574.523 1 +Q8SX35 GEO07743p1 55.78 5 9 1 310403.55350000004 8 +Q8SX50 RE04530p 17.6 6 7 0 194462.076 7 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 18208.5635 2 +Q8SX57 LD44221p 38.91 7 17 7 522848.79264 17 +Q8SX78 LD05679p 21.72 9 9 9 241110.828 9 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 119931.30825999999 6 +Q8SXC2 FI04487p 9.56 5 5 5 44315.9552 5 +Q8SXD5 GH02216p 57.69 13 41 2 5555850.119 38 +Q8SXE1 RH69521p 4.68 2 2 2 50259.466 2 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 129580.51729999999 6 +Q8SXF2 RH40246p 8.18 4 4 4 121862.52500000001 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 56127.694 2 +Q8SXK0 RE18748p 6.55 2 2 2 45263.75199999999 2 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 930328.79669 22 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 48266.042499999996 8 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 1346183.9882 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 3398.1165 1 +Q8SXS0 RE40914p 16.23 5 6 5 89799.199 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 3298939.3904 30 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 37035.3056 4 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 342872.659 7 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 4570.597 1 +Q8SY67 lysozyme 14.47 2 6 2 447050.31850000005 6 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 1788471.19 7 +Q8SYC4 RE68566p 3.93 2 2 2 86132.14 2 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 6540208.06931 72 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 2737469.4783 25 +Q8SYH8 RE57644p 19.05 5 10 0 319085.7889 10 +Q8SYJ2 GEO09626p1 67.47 10 68 10 17421490.6037 65 +Q8SYQ4 RE42475p 69.59 10 50 10 5807093.96562 48 +Q8SYQ8 RE40412p 27.94 4 9 4 182107.511 9 +Q8SZK5 RH26533p 16.4 3 4 3 232126.501 3 +Q8SZK9 HL04814p 59.31 15 64 15 13033118.4541 62 +Q8SZM2 RH04334p 28.15 9 35 9 9202459.3927 33 +Q8SZN1 GEO08217p1 73.39 10 27 5 4030687.2037 27 +Q8T0I9 GH27479p 28.88 11 16 1 651202.0668 14 +Q8T0J5 GH26851p 40.42 12 39 0 8606776.4957 39 +Q8T0N5 GH17516p 19.54 8 15 8 991261.847 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 60331.7734 5 +Q8T0V2 GH02495p 25.5 11 20 0 632837.266 15 +Q8T389 Endophilin B 43.12 16 71 0 10892.8514 2 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 56414.5923 5 +Q8T3W8 Venom allergen-1 12.6 4 6 0 168178.87338 6 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 12482.774 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 2057239.29676 31 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 6645242.3804 75 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 19801.025999999998 2 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 9281.76 1 +Q94513 Boundary element associated factor 18.79 5 8 1 107198.0252 7 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 28798.506999999998 2 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 64546.058 3 +Q95NU8 GH16255p 14.82 7 11 7 348715.5166 10 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 32516.2019 4 +Q95PE4 GEO07784p1 5.56 1 1 1 11414.063 1 +Q95R34 GH16463p 12.62 4 5 4 133459.9805 4 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 194733.8096 6 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 88542.85489999999 8 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 42968033.92469 163 +Q95RC5 LD44506p 4.95 3 3 3 28782.801700000004 3 +Q95RE4 LD37574p 51.42 13 23 0 102870.84345 19 +Q95RF6 LD34461p 34.5 4 12 4 422730.05610000005 12 +Q95RI2 LD28549p 31.37 9 11 9 258897.0067 11 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 138526.9565 5 +Q95RP1 LD18295p 10.71 2 2 2 34951.4838 2 +Q95RQ1 LD16414p 3.32 2 2 2 8755.518 2 +Q95RR6 LD15002p 64.6 18 79 0 115850.84 2 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 336809.75 8 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 1166861.00734 8 +Q95RY2 LD01461p 45.04 9 18 2 597855.0096400001 15 +Q95SH0 GH26463p 2.44 2 2 2 45782.9944 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 923543.7692 23 +Q95SH7 GH26007p 3.49 1 2 1 275707.924 2 +Q95SI7 GH23390p 75.09 18 61 18 6570002.22616 56 +Q95SN8 GH12395p 15.49 4 7 4 310615.88550000003 6 +Q95TK5 LD44914p 21.21 9 14 8 405070.1813 12 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 2809938.33245 30 +Q95TP0 LD34582p 4.51 2 2 2 13771.735 1 +Q95TZ7 GH19182p 85.32 28 147 0 19174034.68954 119 +Q95U15 GH14252p 83.65 34 259 0 5686341.4734000005 30 +Q95U34 GH11113p 30.82 13 27 13 2472344.6611 26 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 410151.3387 9 +Q960D4 SD06560p 20.91 13 13 0 630558.5497 13 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 32500917.07363 97 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 966917.66931 25 +Q961A8 LD25351p 2.07 1 1 0 5144.155 1 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 133773.9208 3 +Q961B9 LD24073p 3.72 2 2 2 82349.338 2 +Q961C8 LD22649p 9.84 4 4 0 90469.06999999999 4 +Q961E7 phosphorylase kinase 7.88 4 5 0 88851.204 3 +Q961K6 GH19047p 3.18 2 2 2 3503.0886 1 +Q961Q8 GH10454p 8.89 4 5 4 88028.3895 5 +Q961T9 GH07914p 32.94 6 12 6 639422.5928 12 +Q961X4 Combover, isoform B 17.43 11 13 0 95692.3539 12 +Q966T5 Paxillin, isoform D 28.93 7 20 4 143890.1608 6 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 121913.93301000001 7 +Q9I7H8 LD37276p 14.29 4 5 4 59413.97 4 +Q9I7I3 GH12831p 12.97 4 4 4 74851.592 4 +Q9I7J0 GH21596p 72.19 11 40 11 5064259.27932 35 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 57802.797000000006 2 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 95663.8112 5 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 1681951.21288 25 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 3942872.2848 24 +Q9NCC3 Sorting nexin 15.58 8 10 8 555537.4813999999 10 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 29824.149400000002 2 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 8506.0541 2 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 408320.8172 8 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 1363464.1061 15 +Q9U6P7 FI18813p1 10.55 5 7 5 428981.3264 7 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 3266682.5701 59 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 187824.0703 7 +Q9V393 Kurtz arrestin 5.32 2 3 2 43835.751000000004 2 +Q9V396 Carbonic anhydrase 58.15 15 45 15 3339213.93174 43 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 39981.3917 3 +Q9V3C8 DShc protein 5.62 2 2 2 40757.998799999994 2 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 480247.43675 15 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 107717.1398 5 +Q9V3E7 LD24793p 42.86 14 26 14 708553.91874 23 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 28681.411500000002 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 733401.2487 14 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 432907.2926 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 369916.2892 9 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 2834987.93669 57 +Q9V3N9 B6 4.48 3 3 3 151168.8355 3 +Q9V3P3 LD45860p 39.18 10 21 10 1198186.03 21 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 66717.833 4 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 38485.561 2 +Q9V3T8 LD32469p 18.46 4 6 4 124019.4552 4 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 5149018.31636 36 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 4220523.3879 54 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 8585545.99319 63 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 1471580.36325 32 +Q9V3W2 GM23292p 66.47 16 60 16 7758645.2146 53 +Q9V3W7 LD40489p 52.16 11 26 11 837477.24794 22 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 1056244.4154 33 +Q9V3Y4 LD43650p 20.57 5 8 5 190393.3677 7 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 2441932.34466 31 +Q9V3Z4 GH11341p 30.28 14 31 14 1384265.4657 24 +Q9V3Z9 HL02234p 42.6 17 39 17 6684435.2379 37 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 39422.5688 5 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 3928694.858 48 +Q9V406 Activator protein 4 13.31 7 11 7 650500.3554 10 +Q9V420 FI02878p 15.83 8 12 8 633571.7959 10 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 1094994.6955 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 53660.556599999996 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 1334726.8427 17 +Q9V455 Importin subunit alpha 22.37 11 25 11 2613287.7296 24 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 3117832.79745 42 +Q9V491 Plexin A, isoform A 1.44 3 3 0 32689.509 3 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 3426662.37867 72 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 10008474.0059 70 +Q9V4E0 Complex I-49kD 31.41 12 19 11 610188.0904 19 +Q9V4E7 Transporter 9.12 6 7 3 221858.8575 7 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 13538.8842 3 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 1110614.8831 11 +Q9V9Q4 LD43819p 30.23 12 26 12 1305750.9988 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 218835.7844 8 +Q9V9T5 GM14617p 13.75 10 10 0 93081.1728 9 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 27089.205 2 +Q9V9U0 RE35358p 4.79 1 2 1 154173.73599999998 2 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 882454.25405 12 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 4404.576 1 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 1472489.9618 17 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 2547104.0535 24 +Q9V9W4 GH08048p 1.69 1 1 1 4596.9404 1 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 41388.995 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 244643.072 6 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 6765502.6358 83 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 572045.80088 13 +Q9VA34 LP06141p 1.88 2 2 2 49097.617 2 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 472672.57876 22 +Q9VA41 GEO08227p1 52.87 7 18 3 660131.0302 12 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 6339780.5236 24 +Q9VA56 GH23271p 63.77 23 81 2 93476.44060000002 5 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 57668.914 1 +Q9VA71 FI19924p1 4.52 1 2 1 6994.0416000000005 2 +Q9VA76 IP18706p 16.43 6 8 6 91766.467 4 +Q9VA81 GEO10172p1 29.29 5 5 5 118165.6875 5 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 191457.65 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 891778.4387 13 +Q9VAA6 GEO12235p1 19.62 3 7 3 339399.8581 7 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 492932.06830000004 18 +Q9VAC1 GM14349p 45.49 17 130 17 22806985.83594 122 +Q9VAC4 GEO09167p1 63.46 7 16 7 1439570.12458 16 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 73035.93208 10 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 13340.562 2 +Q9VAD7 RH37294p 18.5 3 3 3 31637.291400000002 3 +Q9VAG3 trypsin 17.0 4 7 4 178491.2094 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 982406.7613 13 +Q9VAI9 GEO07291p1 62.25 8 60 5 10338343.33604 54 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 420570.2951 15 +Q9VAL5 protein-tyrosine-phosphatase 0.86 1 1 0 1694.8262 1 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 2989330.2871 65 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 33035361.9854 126 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 103181.39660000001 6 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 18095.857 1 +Q9VAU6 LD27564p 2.99 2 2 2 17708.3016 2 +Q9VAV2 FI21480p1 16.52 13 16 13 567383.25 15 +Q9VAY0 Neprilysin 7 5.16 4 4 4 42083.726299999995 4 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 6464739.88702 78 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 70569.964 3 +Q9VAY9 GH07821p 7.89 3 3 3 46462.127 3 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 2945523.95369 46 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 5719501.75596 45 +Q9VB17 IP11341p 7.98 3 3 3 126334.31 1 +Q9VB22 LD33695p 14.29 8 11 8 346350.03990000003 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 759342.23775 23 +Q9VB51 GEO08385p1 42.96 3 3 3 64637.651999999995 2 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 1042869.20034 24 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 41410.803 4 +Q9VB69 Malic enzyme 20.75 12 16 1 309789.36683 16 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 10706.782500000001 2 +Q9VB77 IP09938p 12.18 4 4 4 181294.078 4 +Q9VB79 IP09473p 24.22 8 17 8 1015051.6773 15 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 7987731.7198 53 +Q9VB86 LP07342p 10.14 2 3 1 44501.551999999996 3 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 2517942.4823000003 29 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 38648.5425 3 +Q9VBC9 Beaten path VII 13.15 4 4 4 227067.212 4 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 15922009.63223 86 +Q9VBI3 RH72336p 28.52 9 21 9 1581579.9627999999 19 +Q9VBL3 GH01188p 13.79 7 7 7 79108.23993 7 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 1071466.527 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 40727.715 2 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 35599863.84823 133 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 34056.887 1 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 1607960.925 24 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 410497.649 8 +Q9VBT2 IP11926p 9.86 4 4 4 28115.0516 3 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 47842.262 3 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 4604813.942 8 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 359038.8773 9 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 6173036.1197 44 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 57869.97036 7 +Q9VC06 LD37516p 15.21 10 15 10 122700.91084 15 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 11060.3848 2 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 544845.6167 21 +Q9VC30 RE05274p 8.06 1 2 1 4818.8572 2 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 890468.9089999999 15 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 722338.5342999999 14 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 673445.0555 10 +Q9VC58 Syntaxin-18 8.86 4 4 4 33756.61016 4 +Q9VC66 AT25567p 28.82 13 18 13 530557.7184 18 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 57507.236300000004 4 +Q9VC87 RE57978p 10.75 4 4 4 13896.65594 3 +Q9VCB9 FI08802p 26.23 6 12 6 986388.9560000001 12 +Q9VCD8 Structural maintenance of chromosomes protein 0.89 1 1 1 732.96716 1 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 1310561.6069699998 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 133286.85308 4 +Q9VCF8 LD23561p 23.45 8 11 8 332425.04369 11 +Q9VCI4 LD32918p 3.55 3 3 3 54329.5126 3 +Q9VCI7 LD02979p 17.37 7 12 0 460498.522 11 +Q9VCK6 LD34157p 20.89 8 10 8 307032.9252 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 81632.977 4 +Q9VCR4 FI17836p1 7.58 6 7 6 121522.84534 7 +Q9VCR9 RH48101p 39.61 11 25 11 1895250.90894 22 +Q9VCT4 Klingon 6.06 3 4 3 31395.7368 4 +Q9VCU0 GEO02312p1 34.17 4 8 4 646066.561 8 +Q9VCU1 FI07649p 1.31 1 1 1 15440.868 1 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 98544.692 2 +Q9VCW2 Cardinal 5.3 5 6 5 84884.9223 6 +Q9VCW6 GCS light chain 36.14 13 31 13 2509976.9402 27 +Q9VCZ2 FI07970p 2.48 1 1 1 47853.07 1 +Q9VD00 FI07666p 23.74 6 12 6 350526.9991 11 +Q9VD01 LP12095p 18.75 3 3 3 74311.717 2 +Q9VD02 GH14779p 30.73 4 10 4 580641.42675 10 +Q9VD13 GH02671p 14.64 8 9 0 194479.4485 8 +Q9VD14 GH07286p 17.02 9 13 9 271459.6046 12 +Q9VD29 small monomeric GTPase 54.92 10 33 10 3026809.6565 27 +Q9VD30 GH05294p 79.44 14 60 14 10513008.8865 45 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 21190.91 1 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 22166265.7228 79 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 185945.3521 6 +Q9VD68 GH19849p 6.84 3 3 3 48401.403999999995 3 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 49126.13 1 +Q9VDC0 GH01837p 24.0 5 14 5 824123.78227 13 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 14673.928399999999 2 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 10446.015329999998 2 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 1397149.9567 13 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 1529234.9319 15 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 1484077.9747 25 +Q9VDH3 GH08630p 58.77 13 36 13 3555160.20368 34 +Q9VDI1 LD46328p 56.88 24 81 1 4461042.3078 72 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 111914.22899999999 3 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 239285.89856 13 +Q9VDK2 GH15831p 3.87 3 3 2 64180.9743 3 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 623219.0675 26 +Q9VDK9 GH12359p 4.89 3 4 3 162806.771 4 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 118990.474 4 +Q9VDL5 GEO09602p1 52.24 3 3 3 86467.1064 3 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 645230.2017 9 +Q9VDQ3 Identity crisis 8.06 4 4 4 44009.6426 4 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 1351533.767 20 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 16767.922599999998 2 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 1377981.00806 18 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 35063.2881 5 +Q9VDU7 nicotinamidase 31.37 11 16 11 735375.311 16 +Q9VDV2 AT06125p 8.26 4 4 3 50900.187 3 +Q9VDY8 MIP08680p 74.26 18 75 2 7630740.17071 65 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 5310262.8426 46 +Q9VE08 GH10002p 13.62 3 3 3 47345.674499999994 3 +Q9VE12 LD27322p 19.44 7 8 7 87531.63380000001 6 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 128281.098 4 +Q9VE31 GEO12059p1 18.92 2 2 2 3757.0873 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 100670.58189999999 7 +Q9VE56 FI17806p1 18.88 4 7 4 611786.6625 5 +Q9VE57 GEO10850p1 6.9 1 2 1 41092.339 2 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 11276.926000000001 2 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 75793.192 2 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 134461.9012 9 +Q9VE94 LD14127p 8.85 3 4 3 95035.746 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 742973.2326 13 +Q9VEA7 FI01460p 44.94 3 5 3 764672.4355 5 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 102575405.4072 267 +Q9VEB7 AT04491p 12.1 4 4 4 52344.03719999999 4 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 382980.638 9 +Q9VEC6 LD29902p 14.83 12 17 0 2291.57647 2 +Q9VEC8 RE23139p1 26.15 3 3 3 325270.63899999997 3 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 167822.21407 7 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 52755.857 3 +Q9VEG8 RE59232p 10.8 2 2 2 84897.69900000001 2 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 241915.4157 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 2747686.1681 28 +Q9VEJ9 Curly Su 2.39 2 2 2 11261.556400000001 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 155405.3446 7 +Q9VEK8 GH07711p 39.88 11 22 11 893303.7379 21 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 660340.50564 17 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 16933.977 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 50896.9279 5 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 906641.3947 23 +Q9VEP8 GH11385p 21.38 13 18 13 358227.47194 17 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 602271.1217 19 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 245852.26009999998 8 +Q9VES8 RE28913p 29.5 9 16 9 1800618.0745 16 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 196252.545 3 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 951910.3636 19 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 12923.915 2 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 25064.088 2 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 115244.2435 5 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 909824.30934 29 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 28728.195 1 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 4046546.1993 32 +Q9VEY9 GH15759p 3.1 1 1 1 1768.4047 1 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 319631.77509999997 11 +Q9VF15 GEO09476p1 81.05 12 39 8 4979800.3477 37 +Q9VF23 arginine kinase 12.25 6 7 6 129451.21979999999 7 +Q9VF24 Crossveinless d 3.88 6 7 6 99864.3641 7 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 632389.2832 18 +Q9VF39 FI01459p 13.04 5 7 5 391122.2638 6 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 475581.2847 14 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 150911.4831 7 +Q9VF77 FI16517p1 10.74 4 5 4 127337.4955 5 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 28967.682999999997 2 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 54520.884 3 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 351541.1448 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 80393.7103 5 +Q9VFC7 Mf5 protein 84.93 39 273 0 17113794.5093 178 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 78412.25110000001 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 33034945.2595 130 +Q9VFI3 GEO08281p1 45.19 3 10 3 372252.1726 6 +Q9VFM0 GH19262p 7.14 4 5 4 106355.98154 5 +Q9VFN7 GEO07678p1 27.67 5 18 5 1076638.5271 18 +Q9VFN9 GEO07882p1 54.84 7 9 7 135176.34375 8 +Q9VFP0 RH07106p 18.65 6 7 6 227892.29750000002 6 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 3426874.54201 38 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 1058981.2730999999 22 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 5753.6895 1 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 181312.8245 5 +Q9VFT4 AT27578p 16.09 9 13 9 134066.9871 9 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 48362.816999999995 2 +Q9VFV1 RE55542p 9.81 5 7 5 82208.5542 7 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 11964775.0164 47 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 110054.1407 4 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 74283.607 5 +Q9VG01 RE12073p 1.88 1 1 1 11645.575 1 +Q9VG04 Protein MEMO1 2.71 1 1 1 9604.863 1 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 53162.452059999996 3 +Q9VG23 GH22994p 69.3 12 69 1 10709638.7586 61 +Q9VG26 MIP06012p 45.07 9 28 9 1825581.791 21 +Q9VG28 Beaten path Vc 5.39 2 2 2 38643.668 2 +Q9VG31 Malic enzyme 19.79 16 26 0 1242111.969 24 +Q9VG33 Sulfurtransferase 85.45 8 22 8 2550585.3933 20 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 218783.6398 6 +Q9VG44 RE14195p 2.98 2 2 2 9469.375 1 +Q9VG51 Sorting nexin-3 51.5 8 25 8 2221274.892 19 +Q9VG62 Toys are us 2.89 2 2 2 31921.013300000002 2 +Q9VG69 LP03547p 42.59 16 39 16 3508697.0379 36 +Q9VG81 RH49330p 11.14 5 6 5 69565.30743 6 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 92172.97286 5 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 2958746.8989999997 22 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 109158.798 4 +Q9VGA3 LD12305p 36.82 8 23 7 2117387.159 19 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 30266.339 2 +Q9VGE4 FI04457p 6.96 8 8 8 135705.2667 7 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 30036.5199 4 +Q9VGF3 IP11040p 18.84 6 7 6 159722.1208 7 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 5221738.5715 40 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 599407.0599999999 6 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 301785.41244 16 +Q9VGL0 LD43047p 2.61 3 3 3 21651.303499999998 3 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 103608674.39736 184 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 135574.7434 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 18402200.5835 68 +Q9VGQ8 Arfaptin 25.35 9 11 9 361145.9239 11 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 35487.057 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 51663.6766 4 +Q9VGS3 RH44771p 23.39 4 22 4 1541476.803 19 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 29473.204 2 +Q9VGT3 GM04645p 3.98 2 2 2 6508.5455 2 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 63847.7376 8 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 59858.613 1 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 268436.086 5 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 458207.7515 10 +Q9VGY2 Peptide deformylase 5.88 2 3 1 36894.9191 3 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 151728.29750000002 6 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 169499.0402 14 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 168945.0196 7 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 1253379.7426 15 +Q9VH37 IP06524p 27.09 5 7 5 454754.623 7 +Q9VH63 Uncharacterized protein 2.65 1 1 1 315.18314 1 +Q9VH64 LD29322p 19.0 7 8 7 741362.1798 8 +Q9VH66 FI18258p1 24.89 5 9 5 156753.56605 9 +Q9VH72 TA01656p1 37.25 6 10 6 899111.4639999999 10 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1860920.1809 44 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 163691.4693 7 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 31887.5237 3 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 138010.1882 10 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 221567.1515 6 +Q9VHA8 LD25575p 15.06 10 12 10 894118.728 12 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 1486805.4721 19 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 46451.778 4 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 325353.11950000003 20 +Q9VHC7 FI21236p1 34.65 17 32 9 1693563.5232 26 +Q9VHC8 LD31448p 10.06 2 2 2 2414.076 1 +Q9VHE3 GH05665p 1.79 1 1 1 30613.998 1 +Q9VHE4 omega-amidase 20.85 7 16 7 1151630.516 16 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 306919.701 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 555808.896 6 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 166590.48735 5 +Q9VHH8 Beag 1.26 1 1 1 5290.06 1 +Q9VHI1 Hyrax 8.36 4 4 4 30355.9767 4 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 2316442.17186 22 +Q9VHJ2 LD32381p 9.12 3 3 3 192513.1926 3 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 8113.989 1 +Q9VHJ7 LD41978p 4.48 3 3 3 103172.77709999999 3 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 4974550.62316 47 +Q9VHM3 LD30467p 8.85 4 4 4 42235.990359999996 3 +Q9VHN4 GH14121p 12.64 3 4 3 64554.21822 4 +Q9VHN7 transketolase 30.51 16 25 2 803780.92055 21 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 32868.578 2 +Q9VHR5 Veneno 2.96 2 2 2 2985.6008 1 +Q9VHT3 CG9617 protein 20.79 4 5 4 153130.54369999998 5 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 115537.64199999999 5 +Q9VHX2 GH08043p 4.58 2 2 2 59313.548 2 +Q9VHX4 LD24679p 77.51 23 101 23 17881836.3296 91 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 276955.6534 11 +Q9VI09 GH14494p 52.48 7 29 7 2432547.7692 28 +Q9VI21 Dementin, isoform D 2.98 2 2 0 10363.721000000001 2 +Q9VI24 LD25151p 4.38 1 1 1 5792.957 1 +Q9VI53 LD44267p 19.43 7 13 7 170139.1074 12 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 95245.26440000001 4 +Q9VI64 LD30995p 46.46 14 42 14 4949444.1096 38 +Q9VI66 GH28833p 15.54 4 6 4 157254.2299 6 +Q9VI80 Thawb 2.46 2 4 2 22841.9196 4 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 75498.0198 6 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 114887.3769 5 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 77542194.92421 306 +Q9VIF2 GM01519p 11.13 6 8 6 487975.1635 7 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 691686.4786 12 +Q9VIH1 CG9273 protein 29.27 6 7 6 205814.391 7 +Q9VII5 GEO08323p1 20.13 3 8 3 623627.5235 8 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 248480.3643 2 +Q9VIJ3 FI14214p 45.0 7 10 2 130813.80219999999 7 +Q9VIJ5 GEO05038p1 20.15 2 3 2 31847.259299999998 3 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 16935.550300000003 2 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 301744.4803 16 +Q9VIL2 LD19544p 23.14 4 5 4 52575.5118 4 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 756841.9476000001 12 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 164820.242 5 +Q9VIQ5 RH02620p 29.08 5 7 5 373445.52174 7 +Q9VIQ6 FI17342p1 17.68 4 5 4 64736.994099999996 5 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 9961990.08808 61 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 23748.1981 3 +Q9VIU3 FI23988p1 3.98 2 2 2 17724.683 2 +Q9VIV6 GH04973p 8.83 3 3 3 282182.09760000004 3 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 70336.71 2 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 4012.5452 2 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 547429.6284 5 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 653585.7267 16 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 1321997.3291 20 +Q9VJ22 GH09876p 5.41 2 2 2 29042.622000000003 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 181287.94900000002 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 1385317.24343 19 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 279782.75016 9 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 2802620.2794 29 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 351287.4865 13 +Q9VJ59 PRA1 family protein 5.31 1 2 1 98667.094 2 +Q9VJ60 GM16226p 17.29 3 4 3 234196.91 4 +Q9VJ61 SD03870p 4.67 2 2 2 12312.194 2 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 647408.7056 15 +Q9VJ80 LD42267p 8.46 10 12 10 219694.3215 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 271220.73960000003 13 +Q9VJA9 GH07373p 7.69 5 6 0 66870.2801 6 +Q9VJC0 GEO08203p1 37.96 5 8 5 341918.8357 8 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 141651.3394 5 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 1679937.6284699999 22 +Q9VJD4 LD24721p 34.44 12 41 12 5732078.978300001 35 +Q9VJE3 LD24839p 11.63 6 8 6 117470.86235 8 +Q9VJH8 FI03416p 3.13 2 2 2 14298.9353 2 +Q9VJI5 Protein yellow 16.56 8 9 8 841024.3245 9 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 270580.5739 5 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 2250023.633 21 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 35387.277 1 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 578882.3876 10 +Q9VJQ3 Protein yellow 38.13 15 33 14 3921178.68749 31 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 24829.7273 3 +Q9VJU6 IP09831p 7.3 2 3 2 75363.38500000001 2 +Q9VJU8 GH23407p 10.27 5 6 5 101776.3242 5 +Q9VJZ1 FI21342p1 11.57 6 7 6 169619.8596 7 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 5066450.1558 40 +Q9VJZ5 LD07294p 26.58 8 14 8 441167.224 12 +Q9VJZ6 LD40224p 76.39 13 40 13 2734930.7860499998 36 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 345417.1821 13 +Q9VK11 GH15921p 22.65 6 13 6 983745.9933000001 13 +Q9VK12 GH20621p 64.8 18 93 18 17740653.7629 85 +Q9VK18 LD36945p 17.14 9 10 9 116158.88519999999 8 +Q9VK19 FI07225p 7.72 1 1 1 9828.557 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 2350.41825 2 +Q9VK31 LD35592p 5.19 2 2 2 4985.3647 1 +Q9VK39 FI09204p 52.83 5 23 5 869813.8904 18 +Q9VK43 LD10135p 7.71 3 3 3 31333.3637 3 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 213871.36613 5 +Q9VK59 LD23647p 33.58 28 46 28 893234.73714 39 +Q9VK60 GH25425p 52.14 13 50 13 5792480.48394 47 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 4642666.7951 45 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 409454.7842 13 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 235510.1825 10 +Q9VK99 Atilla, isoform B 51.75 8 30 8 2353577.69108 26 +Q9VKA1 FI02817p 16.23 4 6 4 59351.542499999996 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 17146.331599999998 3 +Q9VKC8 FI03495p 14.26 8 10 8 313500.32149999996 9 +Q9VKD9 MIP16835p1 1.35 1 1 1 4478.056 1 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 53375493.11004 394 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 152020.7519 6 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 250500.193 2 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 27506.262 1 +Q9VKI8 GH03305p 65.36 19 134 19 13565516.71809 127 +Q9VKJ4 Csl4 18.14 3 4 3 103706.629 3 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 14052262.1323 59 +Q9VKM7 AT01533p 7.09 4 10 0 460683.6977 10 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 252174.39930000002 15 +Q9VKQ5 GEO07393p1 16.94 2 4 2 322320.722 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 30634.4054 3 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 1379775.2741999999 21 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 321910.2282 9 +Q9VKU5 LD37206p 14.04 4 4 4 85349.96299999999 2 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 3552212.0258 38 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 62529.1503 5 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 141957.74229999998 7 +Q9VKW1 LD41958p 1.96 1 1 1 5204.5137 1 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 491825.6033 16 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 21378.36715 2 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 21259861.67262 157 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1671763.7889999999 12 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 263304.0909 14 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 1259076.8775 30 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 4243863.15475 45 +Q9VL02 GH08677p 19.51 7 7 2 112962.3346 7 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 411290.1015 12 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 109084.7483 5 +Q9VL16 RE45833p 30.77 7 30 7 5459934.1506 27 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 7584.8687 1 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 43964.241 3 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 3596.9172 1 +Q9VL57 RE10231p 2.85 1 1 0 1587.9841 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 134800.388 2 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 1049250.57845 10 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 3240308.2583000003 32 +Q9VL70 HL08109p 80.9 30 111 30 39442313.00106 105 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 197809.34785000002 5 +Q9VL91 LD23102p 1.8 1 1 1 2526.2651 1 +Q9VL93 GEO07195p1 29.09 3 5 3 47255.115 3 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 189733.218 8 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 3885010.4457099997 56 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 8378011.73409 81 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 174169.6188 8 +Q9VLI4 Raw, isoform A 4.85 4 5 1 60797.8754 3 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 82271.71 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 1624510.6475 16 +Q9VLP0 IP04187p 32.09 5 7 5 237734.92799999999 5 +Q9VLP1 GEO08095p1 37.84 6 18 6 994840.55827 14 +Q9VLP2 GEO08076p1 38.78 6 46 6 2271818.1629000003 39 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 1130585.2210000001 6 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1752605.03131 29 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 519166.755 2 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 5910109.9771 41 +Q9VLS5 LD29542p 6.53 3 4 3 24688.8695 3 +Q9VLS7 LD21067p 4.91 7 8 0 95649.48816 6 +Q9VLT3 LD23292p 15.23 26 42 26 1735624.3344100001 40 +Q9VLT7 IP17351p 24.04 4 7 4 570755.20326 7 +Q9VLU3 IP09231p 8.63 2 3 0 46077.3055 2 +Q9VLV9 Proctolin 46.43 5 7 5 79973.38680000001 5 +Q9VLW8 LD06392p 5.79 2 2 2 77780.3317 2 +Q9VLX6 HL01609p 16.49 4 4 0 148960.1867 4 +Q9VLY1 HL02931p 19.01 1 9 1 2047716.995 7 +Q9VLY7 TEP1-F 7.49 10 10 10 128943.61235 9 +Q9VLY9 CD109 antigen 28.88 39 63 2 4115772.487 60 +Q9VM07 RE43931p 27.85 5 10 4 540567.9871 8 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 299408.65520000004 12 +Q9VM11 HL01515p 30.55 11 14 11 685633.8234 14 +Q9VM12 MIP26555p1 25.85 8 19 8 973425.26 15 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 38866521.41674 185 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 26550581.4717 116 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 43686.384000000005 3 +Q9VM47 Menin 4.19 3 3 2 40378.574 3 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 15893.3172 4 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 507732.59949999995 11 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 310036.7753 5 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 586379.7571 8 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 180276.33800000002 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 24212793.4673 84 +Q9VMC3 LD35051p 17.28 5 6 5 34334.2055 5 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 56772.152 1 +Q9VMC7 LP11564p 13.92 9 10 3 75783.67356 8 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 805460.2905 16 +Q9VME1 FI01864p 11.22 6 8 6 217488.7703 8 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 323665.29549999995 7 +Q9VMF0 FI04444p 5.9 3 3 3 26632.112699999998 3 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 132118.8295 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 715768.283 11 +Q9VMH8 GEO07746p1 38.1 6 19 6 804547.0484 16 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 3530249.4581 29 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 1981441.0929999999 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 12381102.32745 48 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 532664.1224 8 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 1486573.8082 15 +Q9VMR9 acylphosphatase 14.85 2 2 2 52727.850600000005 2 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 23718543.4167 59 +Q9VMT2 GEO07854p1 60.4 9 123 1 18864434.69202 111 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 10049615.49 40 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 136471.0174 12 +Q9VMV5 Viking, isoform A 9.07 15 21 15 672787.0664 18 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 5306.2801 2 +Q9VMX4 AT19154p 29.08 7 13 7 317694.7677 11 +Q9VN01 GH23891p 11.66 7 7 7 144085.6715 7 +Q9VN02 GH14561p 39.46 10 16 10 420638.5435 13 +Q9VN21 LD30155p 57.06 30 110 30 14886141.63629 104 +Q9VN39 RE74585p 24.47 9 13 4 91392.29804 10 +Q9VN44 FI07923p 23.17 21 40 21 2295333.7081999998 39 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 1220903.3551399999 12 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 794847.3304999999 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 6263.632 1 +Q9VN86 AT14148p 9.07 4 4 4 73327.9 4 +Q9VN88 LD45836p 33.18 6 9 6 416570.1957 9 +Q9VNA3 GH21273p 34.26 7 14 7 963460.35648 14 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 1241004.84216 13 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 235112.409 6 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 34448.9136 3 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 11053.9495 2 +Q9VNF3 RE01652p 45.91 11 35 8 1188892.44594 29 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 202358.1855 7 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 134704.66422 8 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 312616.42569999996 9 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 231836.83 1 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 341116.621 7 +Q9VNI8 Hpr1 10.84 8 8 8 180021.0777 8 +Q9VNI9 IP18173p 25.11 4 7 4 278416.773 7 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 11759586.15148 85 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 114279.8395 6 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 72645.82826000001 8 +Q9VNV2 GEO05133p1 15.82 2 3 2 148949.973 3 +Q9VNW0 GEO11142p1 17.97 2 2 2 57686.684 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 6337288.18332 77 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 4427983.48126 95 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 22265.6535 3 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 44202.359 4 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 9509.371 1 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 2477.39426 2 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 153764.82799999998 4 +Q9VP51 LD40450p 2.79 1 1 0 570.6117 1 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 350681.33030000003 7 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 630195.317 8 +Q9VP57 LD15904p 25.8 20 45 20 1534529.7907 40 +Q9VP77 LD23875p 10.53 6 6 6 178399.9454 6 +Q9VP78 GH23156p 11.92 4 5 4 70214.2166 5 +Q9VP84 IP06402p 10.05 2 2 2 48873.013 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 11514.747599999999 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 92515.7324 4 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 104233.337 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 57282.387 2 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 2310445.42174 39 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 44645.990399999995 5 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 48512.3992 3 +Q9VPH6 LP10922p 8.04 4 5 0 69967.3686 3 +Q9VPJ0 RE58433p 16.84 6 7 2 375206.5149 7 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 47462.19838 3 +Q9VPK3 AT24407p 12.35 5 7 1 339502.3168 7 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 103788.31 4 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 9336818.12766 83 +Q9VPP7 AT13539p 22.7 4 4 4 149569.725 4 +Q9VPR1 GH02075p 15.14 2 5 2 8023.4067 1 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 757.5131 1 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 1263385.4928 10 +Q9VPU4 FI17537p1 5.33 2 2 2 5613.4021 2 +Q9VPU6 Galectin 5.06 2 2 2 73768.41100000001 2 +Q9VPX0 GH26159p 6.97 4 4 4 12341.9439 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 1595051.699 13 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 7704199.9329 71 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 5714.73826 3 +Q9VPY7 LD42035p 2.2 1 1 1 4020.9102 1 +Q9VPZ5 GH04232p 25.41 14 33 14 1259598.6711600001 33 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 10611.492839999999 2 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 20535793.06835 106 +Q9VQ83 RE23541p 7.91 3 3 0 31348.7707 2 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 336743.8128 6 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 10941611.3789 56 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 6166964.4117 24 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 343400.4652 13 +Q9VQE0 dynamin GTPase 20.82 15 21 15 369176.8882 19 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 81935.0246 7 +Q9VQI6 LD25952p 19.75 7 9 7 164487.4602 8 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 1653041.6927 25 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 105344.148 3 +Q9VQK7 LD45152p 6.68 5 5 5 39573.537899999996 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 5005.2764 1 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 3253423.1914 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 3036731.45265 18 +Q9VQQ6 FI18122p1 35.15 14 21 1 821552.00688 21 +Q9VQR0 FI04421p 4.49 2 3 2 94443.474 3 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 8659877.15136 58 +Q9VQR5 IP10807p 19.06 4 6 4 102002.1194 5 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 300290.46025 12 +Q9VQT7 RH15675p 14.63 1 2 1 10201.8662 2 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 943848.9803 13 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 216254.24229 8 +Q9VQX3 HL05328p 18.38 6 6 6 146604.061 6 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 19281.4686 4 +Q9VR03 AT19250p 4.57 2 2 2 5212.7446 1 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 276161.77424 10 +Q9VR30 RE58324p 25.27 9 9 9 480959.24700000003 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 652633.3905999999 10 +Q9VR62 GM14138p 5.53 3 3 3 25690.917 2 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 38762.7933 2 +Q9VR79 LD43683p 35.86 11 30 11 2102998.6921 28 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 10576.877499999999 2 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 3388551.3827400003 32 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 1677915.8772999998 11 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 190402.7859 9 +Q9VRF7 GH09530p 19.59 5 13 0 700354.1725999999 10 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 197020.9044 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 392477.9904 14 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 5027586.1202 37 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 299717.9612 12 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 108849.838 2 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 10552.555 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 19662835.839080002 96 +Q9VRL1 GEO06356p1 53.1 8 42 2 5053482.2338 34 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 4124.0386 1 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 9309.817430000001 2 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 70179.69099999999 4 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 3300172.7794 44 +Q9VRP3 AT08565p 27.53 8 17 8 830924.8563 14 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 151585.38503 8 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 3111791.0307 26 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 402967.561 7 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 365633.683 8 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 627692.12984 14 +Q9VS11 lysozyme 16.35 4 4 4 107992.629 3 +Q9VS44 Uncharacterized protein 9.82 3 3 3 71176.91225 3 +Q9VS84 FI03225p 11.14 10 13 10 622593.0247 13 +Q9VSA9 CG7409 79.87 15 73 15 15923454.53042 60 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 369305.8177 10 +Q9VSC5 GM09977p 60.12 14 32 14 1390837.6047 27 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 235739.929 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 613105.371 8 +Q9VSH5 IP09562p 4.89 1 1 1 12875.66 1 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 219136.73 3 +Q9VSI1 LD21269p 7.99 5 5 5 72997.6443 4 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 27739.624000000003 3 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 2864495.4303 25 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 4970427.3246 28 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 5765771.6896 35 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 303112.2757 8 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 120241.467 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 25118.9247 4 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 3312.2112 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 2030928.769 18 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 7126373.1929 62 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 143236.166 5 +Q9VSR5 GM03767p 52.2 8 27 8 3906695.6182 24 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 177560.366 9 +Q9VST4 arginine kinase 6.96 3 3 3 15095.866899999999 3 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 7764161.87118 46 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 1236462.2929 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 110324.825 3 +Q9VSW7 LD21662p 3.33 1 1 1 9407.158 1 +Q9VSX2 IP01061p 40.0 9 17 9 681389.7224 11 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 17366917.00652 54 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 738367.82635 13 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 4470.208 2 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 860023.083 16 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 17918.2444 2 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 2140696.5185000002 26 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 44686.631 2 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 25957.754999999997 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 73291.519 2 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 139581.17070000002 5 +Q9VTA8 RE35371p 7.59 2 2 2 15210.799 1 +Q9VTB0 LD35289p 21.62 8 11 8 495293.883 10 +Q9VTB3 Guanylate kinase 51.07 13 30 13 2808523.2288 28 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 5495004.5405 34 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 151896.5145 6 +Q9VTC3 GH07049p 9.72 4 5 4 234494.29 5 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 57029.4845 3 +Q9VTL0 FI19917p1 7.45 3 3 3 194187.215 3 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 101988.254 3 +Q9VTT2 LD20590p 7.93 4 4 4 59424.450500000006 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 5167854.7935999995 30 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 739991.5659 9 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 407549.11699999997 6 +Q9VTW1 RE15265p 11.2 5 5 0 362234.771 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 163847.44939999998 7 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 8616435.7016 55 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 778712.7883 19 +Q9VU04 RE60105p 13.85 4 5 4 281171.4457 5 +Q9VU13 LD45603p 9.17 4 12 0 570972.994 12 +Q9VU34 LD45758p 0.89 1 1 1 2868.3516 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 25763243.17693 70 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 92123.988 4 +Q9VU38 Adenosine kinase 35.94 8 13 0 119784.99443 12 +Q9VU45 LD27581p 21.48 5 15 5 939460.6604 14 +Q9VU53 Capricious, isoform A 5.0 3 3 1 33910.6523 2 +Q9VU75 RH45712p 61.73 12 38 12 886427.15274 33 +Q9VU92 Uncharacterized protein 29.76 7 16 7 369793.58310000005 14 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 11497260.84431 91 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 52155.85884 5 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 3653830.1550000003 31 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 2558.715 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 167638.4305 5 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 550388.182 4 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 146647.9093 8 +Q9VUQ7 RE36966p 10.4 6 11 6 167759.4741 11 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 73857.6243 5 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 5067.33598 3 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 34612.005600000004 2 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 273862.9814 9 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 520023.51499999996 5 +Q9VUZ8 GEO07442p1 22.56 2 2 2 4230.87855 2 +Q9VV13 GEO08383p1 10.71 1 5 1 920013.282 5 +Q9VV31 Uncharacterized protein 19.35 2 5 2 368927.759 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 524251.3197 12 +Q9VV40 Golgin 104 1.42 1 1 1 1655.0459 1 +Q9VV42 Fat body protein 2 83.09 26 202 0 65305569.8633 174 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 58987918.93883 218 +Q9VV47 Fat body protein 2 45.17 9 18 7 2560260.1306 17 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 3203648.87787 47 +Q9VV75 AT02348p 82.05 29 251 29 40100944.29636 200 +Q9VV76 Syntaxin 8 37.07 6 10 6 325659.1155 9 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 130806.28184 8 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 349763.488 9 +Q9VVB5 LD46723p 30.59 16 56 1 15775.9148 3 +Q9VVB7 FI02842p 43.95 14 57 1 8294.58714 3 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 417343.5379 7 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 3771641.27812 47 +Q9VVC8 LD23434p 15.41 8 9 8 239884.97064 8 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 872388.55738 23 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 22057249.683900002 31 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 1212952.3015 12 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 123079.2235 4 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 713911.9482 12 +Q9VVL5 FI11325p 14.55 5 7 5 179549.174 7 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 30038177.87413 154 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 131166.91927 4 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 66533.8023 3 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 412915.39060000004 11 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 234213.97354 10 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 4005049.51755 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 16128392.555300001 60 +Q9VVU2 GEO07453p1 48.32 9 29 8 2701184.4846 28 +Q9VVV6 LD45843p 6.76 5 5 0 46233.9198 4 +Q9VVW7 Canopy b 16.74 4 9 4 512138.5095 9 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 34504.494 2 +Q9VVY7 FI20154p1 10.79 14 19 0 481938.02435 18 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 177321.77825 9 +Q9VVZ6 GEO09638p1 25.95 2 3 0 9156.933799999999 2 +Q9VW00 GH28721p 11.46 4 10 4 563695.57196 10 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 18944.9588 3 +Q9VW17 RE58036p 47.25 6 16 1 430709.46998 15 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 15747.393 2 +Q9VW34 FI03450p 19.96 11 20 11 826770.4912 16 +Q9VW40 LD31235p 9.3 3 3 3 61152.188 3 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 26298.2156 2 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 78296.3457 8 +Q9VW57 Grasp65 12.61 6 9 6 330478.50430000003 9 +Q9VW58 LD33138p 35.32 6 11 6 159155.7323 11 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 2137265.8046 30 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 8058305.4884 58 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 17033718.468200002 121 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 39048.7866 4 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 106209.4124 5 +Q9VWD0 GH23568p 16.89 6 14 6 992148.35277 13 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 23097310.5577 89 +Q9VWD5 LD35087p 13.54 5 5 5 63110.3518 5 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1847594.43358 39 +Q9VWF0 LP01149p 36.93 9 17 9 210515.4712 13 +Q9VWG1 LD37169p 71.04 12 73 2 526627.0793999999 12 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 24747.77 2 +Q9VWJ3 LD05272p 8.22 1 2 1 46497.992 1 +Q9VWL4 GH07340p 13.41 7 9 7 243575.2844 9 +Q9VWP2 RH57257p 57.02 12 25 12 3224189.33885 24 +Q9VWQ3 LD35981p 6.96 3 3 0 135051.592 3 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 144536.4076 8 +Q9VWS1 Houki 20.44 5 8 5 611952.1518 8 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1572169.622 29 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 39230.9314 5 +Q9VWU0 FI18411p1 5.87 2 2 2 29721.852 2 +Q9VWV6 Transferrin 70.05 43 231 43 52457862.619669996 212 +Q9VWW2 GH13094p 20.52 10 18 10 124844.56835 12 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 26328.567000000003 2 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 608422.1389 8 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 37314.496 3 +Q9VX26 Chascon, isoform A 1.62 2 2 0 12064.7807 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 15283898.4587 77 +Q9VX69 FI01450p 18.0 6 23 5 1099248.01816 11 +Q9VXA3 LP21163p 17.0 12 21 12 792960.6949700001 20 +Q9VXA9 RE04047p 6.57 2 3 2 110673.76999999999 3 +Q9VXC1 MIP06432p1 31.28 5 11 3 991717.6826000001 10 +Q9VXC9 trypsin 52.99 10 17 10 945489.0263999999 15 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 272602.75372000004 5 +Q9VXF9 AT13091p 26.2 10 17 10 618286.8026 17 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 218950.99225 7 +Q9VXG9 GH25683p 9.78 2 5 2 43529.50344 3 +Q9VXH4 RE16337p 28.43 2 3 2 339623.61199999996 3 +Q9VXH7 FI17510p1 10.63 3 5 3 475409.8045 5 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 3644383.8958 33 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 13532797.7148 44 +Q9VXJ7 GH03748p1 9.2 9 11 9 68233.98538 8 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 558633.0764 13 +Q9VXM4 LD12946p 62.9 13 34 13 2484595.52651 30 +Q9VXN1 LD03728p 12.68 4 4 4 51408.512240000004 4 +Q9VXN3 LD07988p 29.8 10 15 10 331887.83389999997 15 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 20200.6676 2 +Q9VXP3 GH05406p 8.26 5 5 5 20625.798880000002 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 26660.523 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 27801.135 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 3391342.4673 49 +Q9VXR9 FI03680p 15.76 6 6 6 139921.7615 6 +Q9VXV1 RH52220p 4.39 1 1 1 14213.531 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 547003.9839 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 3802274.2301999996 27 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 341427.4375 14 +Q9VY05 GH11762p 12.84 8 13 8 821586.0837999999 11 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 183679.06259999998 8 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 472713.0504 7 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 1899.9261 1 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 15072.228 1 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 211683.055 5 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 201380.7163 5 +Q9VY76 AMP deaminase 10.25 8 10 0 72069.3585 8 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 639289.8368 11 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 249415.337 9 +Q9VY92 GEO07753p1 73.91 8 44 8 10831999.595800001 43 +Q9VYA1 RE18811p 3.87 1 1 1 7083.583 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 25256.5387 2 +Q9VYF0 GM09012p 16.04 4 6 4 225679.6595 5 +Q9VYG8 CG15717-PA 10.71 3 5 3 69308.49650000001 4 +Q9VYJ1 FI12805p 5.04 4 4 4 69841.2157 4 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 150289.2045 3 +Q9VYM0 CG2555-PA 13.2 2 3 1 10048.7615 3 +Q9VYN1 protein kinase C 0.84 2 14 1 5135396.2917 12 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 6168.4077 1 +Q9VYS2 GH09980p 9.97 8 11 8 77078.058 10 +Q9VYT0 RE04130p 37.34 9 17 8 563144.5514 17 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 39430.644700000004 4 +Q9VYT3 FI23714p1 5.58 7 7 7 49662.2641 6 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 102298.3645 6 +Q9VYU9 RH17287p 56.97 9 18 9 885434.10103 17 +Q9VYV4 Amun, isoform A 8.0 3 5 3 241439.6582 5 +Q9VYV6 GEO09033p1 28.07 3 3 3 37505.3 2 +Q9VZ00 FI19420p1 18.03 16 21 0 366498.6687 19 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 4561453.4161 33 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 1037051.04 15 +Q9VZ24 GEO11412p1 46.9 8 47 8 11586339.2323 47 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 63780.559 3 +Q9VZ34 RH72958p 4.69 2 3 2 42457.849 3 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 89677.6855 3 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 657731.7113000001 9 +Q9VZ66 SD22308p 42.86 5 9 5 522919.7079 7 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 93052.0446 6 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 81187.535 3 +Q9VZE4 RE70333p 20.43 10 14 10 692402.3907 13 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 829586.5957000001 8 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 80640.0104 3 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 1175416.80529 33 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 9997771.6967 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 620791.2926 10 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 14366043.37176 44 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 36188.758 3 +Q9VZI1 Transgelin 68.09 12 84 1 13103829.25526 71 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 72388.419 3 +Q9VZJ2 GH27759p 14.19 6 10 6 816105.2265000001 9 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 68127.1933 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 473130.60919 24 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 40481.327000000005 5 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 198500.02164000002 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 360483.7124 10 +Q9VZV2 Chitinase 7 4.64 5 6 5 65915.3424 6 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 51072.659439999996 5 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 19008.2074 4 +Q9VZX6 LD06441p 21.78 7 9 7 459536.216 9 +Q9VZY0 LD45195p 11.48 3 4 3 340848.588 4 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 12794.632160000001 2 +Q9VZZ5 GEO12033p1 34.27 6 8 6 1235525.5635 8 +Q9VZZ6 CG16985 protein 38.26 5 11 5 788696.4881 11 +Q9W022 GEO01508p1 62.68 8 41 8 11011005.3825 40 +Q9W073 RH22148p 19.41 3 3 3 74960.7442 3 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 8619398.95387 23 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 2858278.093 14 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 444566.7011 11 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 359161.4095 6 +Q9W0A8 FI01658p 25.63 7 26 7 1433168.8445 26 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 1688168.656 24 +Q9W0C3 GH11843p 38.78 11 19 11 985679.6338000001 17 +Q9W0D3 GH15728p 1.29 2 2 2 4088.87224 2 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 73058.19 1 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 66825.277 4 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 1303999.3415 22 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 2221827.52993 28 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 119821.694 5 +Q9W0J9 GH07301p 34.47 8 12 7 462655.6019 11 +Q9W0K9 LD10220p 23.21 4 4 4 35049.191999999995 4 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 24360.4689 3 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 649732.1954 14 +Q9W0M5 Protein DPCD 14.41 3 3 3 23663.9654 3 +Q9W0N6 LD27967p 9.57 3 3 3 45017.0247 3 +Q9W0P4 GEO05053p1 8.13 1 1 1 30766.357 1 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 50960.795 4 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 54502.24 1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 444129.6742 19 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 65180.9808 4 +Q9W0U0 glycerol kinase 3.9 2 2 0 21430.887 2 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 389372.4269 11 +Q9W0X1 GH15894p 6.31 3 3 3 118216.4376 3 +Q9W0X2 GEO07322p1 28.1 3 4 3 201322.713 3 +Q9W0X3 LD24657p 22.81 4 4 1 227671.5356 4 +Q9W0Z5 LP09747p 22.95 9 13 9 513767.39266 10 +Q9W114 IP05433p 28.33 3 4 3 69984.6584 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 7675643.443349999 53 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 1596702.6206999999 17 +Q9W136 Uncharacterized protein 19.81 4 18 4 871811.5316999999 15 +Q9W140 Regulatory protein zeste 3.53 2 3 2 64853.71399999999 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 44540.169799999996 5 +Q9W158 LD36772p 14.33 5 7 5 449176.444 6 +Q9W199 GEO07594p1 21.29 4 5 4 317370.163 5 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 5791245.2707 31 +Q9W1C8 LD24355p 19.02 8 8 8 165267.426 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 118791.2265 5 +Q9W1F2 FI07217p 5.93 2 3 2 13769.615 2 +Q9W1F7 IP15825p 34.97 12 28 12 3472494.5476 26 +Q9W1F8 GEO08248p1 23.31 4 8 4 796548.9400000001 7 +Q9W1G7 LD21576p 34.32 13 22 13 862055.7108 20 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 433437.44499999995 11 +Q9W1H6 GH04238p 13.85 3 9 3 461433.65616 9 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 4563399.0963 45 +Q9W1I8 LD03592p 39.08 9 25 9 924283.5065599999 19 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 57624.623340000006 6 +Q9W1L8 GH11818p 2.66 1 1 1 23310.668 1 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 81163.5318 6 +Q9W1N3 Levy, isoform A 23.85 3 17 3 3652962.148 16 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 5453.9097 1 +Q9W1R0 RH49821p 4.13 2 2 2 13179.323 2 +Q9W1R3 Golgin-245 12.09 17 20 17 357345.80460000003 19 +Q9W1V8 CG9893 protein 39.58 8 16 8 660842.16212 16 +Q9W1W4 RE45066p 18.58 6 11 6 396321.32070000004 10 +Q9W1X5 GH04942p 20.82 28 39 4 2389667.7212 36 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 16153337.7198 72 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 1097784.7619999999 15 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 353714.5511 12 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 118295.7928 8 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 830075.65937 23 +Q9W257 RH13652p 6.99 2 4 2 308004.593 4 +Q9W258 Babos, isoform A 33.67 7 13 7 1759883.9300000002 13 +Q9W259 FI23916p1 8.95 4 5 4 150701.6833 5 +Q9W260 GH03113p 15.4 8 12 8 409987.2447 12 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 245167.929 5 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 408115.8222 25 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 23001.182 3 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 58250.4212 4 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 1661367.285 18 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 28593.010599999998 2 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 58769.51 3 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 415253.8564 13 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 288212.4765 4 +Q9W2L6 RH02475p 33.73 20 58 20 5756472.13195 54 +Q9W2M0 LD23155p 22.1 15 17 15 475824.65434999997 15 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 20329266.3903 52 +Q9W2M9 FI16623p1 14.71 2 2 2 339167.30179999996 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 2687.4781 2 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 611104.05 5 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 630007.228 11 +Q9W2V2 FI20035p1 5.6 3 3 3 11258.2879 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 48900183.80436 87 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 708275.3314 19 +Q9W2Z9 RE65233p 4.81 1 2 1 78904.66 2 +Q9W306 GEO08256p1 25.62 3 4 3 15362.1158 4 +Q9W308 GH05731p 16.18 2 5 2 918633.92 5 +Q9W309 GEO08445p1 33.95 7 11 7 1494542.532 11 +Q9W314 GH14088p 9.82 4 5 4 216315.467 5 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 230050.8717 8 +Q9W330 Phosphotransferase 29.76 15 32 2 4700946.167 31 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 86389.9504 2 +Q9W337 GH19985p 44.95 7 14 7 1469324.0958 14 +Q9W370 GEO12084p1 38.52 4 10 4 396638.8775 9 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 16418.5337 2 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 20489.871 2 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 2326642.2549 35 +Q9W396 FI06908p 14.17 4 7 4 432572.7694 6 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 246508.63199999998 5 +Q9W3C3 LD10016p 12.94 6 8 6 151952.7932 6 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 56555.786 3 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 437715.4632 11 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 99630.18 3 +Q9W3H4 LD36273p 66.8 13 29 13 1835667.2579 25 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 148288.06832 7 +Q9W3J6 FI06457p 8.64 3 4 3 41159.31194 3 +Q9W3K6 LD35927p 4.99 4 5 4 105399.61170000001 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 1138859.42857 24 +Q9W3L4 GH20802p 35.02 10 23 10 1356906.2251 21 +Q9W3M7 RNA helicase 14.07 10 15 9 84207.86845000001 8 +Q9W3M8 LD34211p 47.74 8 17 8 1103743.0411 17 +Q9W3N1 RH59310p 7.17 2 2 2 6333.1494 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 576788.0118 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 3710790.84366 38 +Q9W3Q0 FI07418p 23.39 5 14 4 32278.2056 3 +Q9W3Q1 GM14286p 8.84 3 3 3 19033.996359999997 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 532074.225 11 +Q9W3S3 LP10445p 15.68 2 3 2 7051.4136 3 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 142885.4245 6 +Q9W3T9 GM01152p 45.38 9 16 9 1245030.0323 16 +Q9W3U9 CG14434-PA 32.62 6 13 0 302441.78103 9 +Q9W3V2 FI19713p1 4.82 4 4 4 35854.0486 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 18681.647 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 74058.16926 4 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 8723042.958 57 +Q9W3X8 RH42690p 10.73 4 5 4 34058.3168 4 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 1055129.7245500002 20 +Q9W3Z4 GH18625p 3.75 1 1 1 4990.435 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 4943382.7036 51 +Q9W403 LD24968p 9.21 5 7 5 92450.3083 7 +Q9W404 GH10714p 31.03 9 12 8 308045.13114 10 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 72774.513 3 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 1320931.3605 24 +Q9W425 Rabconnectin-3A 1.34 5 5 5 33111.7604 4 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 7428295.5288 60 +Q9W461 LD23868p 18.22 7 8 7 246187.1249 8 +Q9W482 Lin-52, isoform A 33.12 4 11 4 225632.13220000002 8 +Q9W483 GH18971p 5.79 2 3 2 85746.823 3 +Q9W486 LD13361p 5.27 3 3 0 47029.074 3 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 153042.9197 4 +Q9W4A0 GH11193p 19.8 4 5 4 312811.548 5 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 71122.1382 8 +Q9W4C2 lysozyme 17.11 3 3 3 111939.34 3 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 210673.0572 8 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 48742.0288 4 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 2740601.43737 28 +Q9W4N8 LD30122p 55.76 15 77 0 10610010.28136 70 +Q9W4U2 RH09070p 41.37 8 24 8 1363296.05525 22 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 10666.292300000001 2 +Q9W4W5 RE47284p 11.15 4 4 4 299431.821 4 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 340624.15760000004 19 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 882823.4060000001 13 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 25154.564 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 11234.79053 3 +Q9W503 RH61816p 38.61 11 14 11 560722.468 14 +Q9W5B4 GH18858p 31.97 10 21 10 1377189.42615 18 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 39826.737 2 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 19279.65025 3 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 105701.3877 5 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 204402.373 6 +Q9W5W7 GH19483p 2.57 2 3 2 30087.1283 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 6033560.7311 38 +Q9W5X0 LD21953p 26.87 6 25 1 180479.83000000002 4 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 234424.09250000003 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 201426.8203 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 7419077.5045 46 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 277061.2222 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 1118981.8907 17 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 1151901.118 15 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 15073432.19207 98 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 633918.05556 24 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 478570.0442 19 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 16693236.49843 92 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 16106.026699999999 3 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 60966.0698 7 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 3466712.7986 37 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 293770.78143 13 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 4285659.57885 42 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 14551582.41006 77 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 3055.7476 1 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 230749.44956 4 +R9PY51 Uncharacterized protein 34.95 6 48 6 7344981.6557 27 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 16242988.37198 107 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 450517.05253 12 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 515132.6995 10 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 188080.4227 2 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 384357.047 6 +X2JB48 ADP/ATP translocase 56.86 20 109 1 11815979.871240001 101 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 1073371.3807 31 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 139669.8072 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 40210876.9134 111 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 27603.309 1 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 23416.802 2 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 52388.478 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 11092.61 1 +P10674 Fasciclin-1 49.69 30 164 1 2046.7401 1 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 5093.364 1 +Q08605 Transcription activator GAGA 1.2 1 1 0 34060.395 1 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 11734.686 1 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 2309.0552 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 94589.6902 3 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 79863.006 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 10301.734 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 7448.914 1 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 37585.897 2 +Q9W568 Protein halfway 3.11 1 1 0 2453.9626 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 5006.3667 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 7485.0537 1 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 103285.06180000001 6 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 1755.456 1 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 36875.137 1 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 81737.4 1 +A1Z7M0 Space blanket 2.86 1 1 1 37501.426 1 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 53925.996199999994 2 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 323486.1266 6 +B5RJS0 IP20241p 1.96 2 2 0 751.4898 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 15175.077 1 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 19361.449999999997 2 +E1JJM0 FI20063p1 22.76 13 20 0 532553.0403 18 +E2QCF1 ATP-citrate synthase 11.14 11 15 1 365.14816 1 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 15580.0205 1 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 21172.346 1 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 8145.7983 1 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 15716.2794 2 +Q0E8R1 FI07211p 34.57 13 35 0 154346.013 2 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 174422.6268 10 +Q7JWH6 RE61424p 5.65 2 2 2 8832.227 1 +Q7JXA2 LOBE 5.52 2 2 2 4804.9067 1 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 178594.7386 3 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 3888.9272 1 +Q7KVW1 RE73736p 2.8 2 2 0 33792.151 2 +Q7PLV6 FI02158p 0.85 1 2 1 3468.6152 2 +Q8I062 GH23305p 83.33 21 152 1 32251.81 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 44738.3657 2 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 7996.9873 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 9130.41266 2 +Q8MPN6 Serpin 4 27.18 9 11 0 15242.255 1 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 35846.3857 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 2021.6418 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 17307.50286 3 +Q9VKC1 IP16805p 4.28 1 1 1 22292.389 1 +Q9VM94 Homer, isoform B 49.62 17 57 1 42538.29 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 76277.2 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 157634.5367 4 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 73736.875 1 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 20785.326800000003 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 664608.4404999999 4 +Q9VTY1 LD40136p 5.69 2 2 2 47910.372 2 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 2997.528 1 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 19968.032 2 +Q9W2N5 GH10162p 3.47 2 2 2 78215.9778 2 +Q9W362 La-related protein 7 1.85 1 1 1 1003.38196 1 +Q9W525 LD08195p 3.8 2 2 1 45299.208 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 21064.7947 2 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 46715.728 2 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 20621.4696 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 19770.785 1 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 51573.432 2 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 12983.1369 2 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 99244.8766 4 +E1JJ83 Os-C, isoform B 16.34 2 2 1 12416.63076 2 +M9MRG5 Taiman, isoform F 0.94 2 2 0 35736.141 2 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 397560.99543 17 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 11199.705 1 +O46231 FI18705p1 65.94 22 77 1 119577.39 1 +Q6IDE2 GH07226p 2.0 1 1 1 12086.776 1 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 10051.624 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 16717.588 2 +Q7K527 Tetraspanin 4.61 1 1 1 7606.171 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 278075.1 1 +Q8IQ80 GH06117p 2.97 2 2 0 151927.33179999999 2 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 123459.163 3 +Q9VHW5 LD38634p 17.32 2 3 2 20526.983500000002 3 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 88289.8738 2 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 37878.215 1 +Q9VVG5 RH19679p 14.44 1 3 1 1385366.5483000001 3 +P09956 Regulatory protein zeste 2.96 2 2 0 4143.1533 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 8943.99 1 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 12872.722 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 18523.014 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 58805.31 1 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 14093.597 1 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 75737.59 1 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 16961206.20914 142 +C1C3E7 MIP09364p 61.25 22 85 1 3029.2905 1 +E1JH70 Kank, isoform E 2.57 2 2 0 5971.12987 2 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 5383.781800000001 2 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 26701.28 1 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 3771.8806 1 +Q9VBS0 CHK domain ov2 4.89 2 2 2 31239.659 2 +Q9VCH9 LD07883p 8.66 2 2 2 36820.46 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 18416.8905 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 55228.66592 2 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 16889.922 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 103319.3677 4 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 288581.0 2 +Q9VMY3 FI19613p1 1.5 1 1 1 5232.178 1 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 14109.5387 2 +Q9VS80 FI17864p1 2.34 1 1 1 4440.1714 1 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 2319.308 1 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 10917.218 1 +Q9VZF0 LD44732p 7.73 2 2 2 20124.532 2 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 41269.05 1 +Q9VFR1 Protein Abitram 14.95 2 2 2 4243.6239 2 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 18068.195 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 1388259.636 4 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 56551.15 1 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 8764.29 1 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 6381.521 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 125672.1318 5 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 11680.6681 2 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 12658.309 1 +Q0KHQ1 GEO13361p1 24.44 2 2 2 125365.1066 2 +Q4QPR8 GEO10187p1 9.76 1 2 1 102615.102 2 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 10391.9466 2 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 44047.7674 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 8530.4188 2 +Q9VV37 GEO13385p1 10.1 1 6 1 174194.76200000002 3 +Q9VVX6 BET1 homolog 9.4 1 1 1 61082.273 1 +Q9W152 RH33060p 16.9 1 1 1 3415.351 1 +P48613 Protein tipE 3.98 2 2 2 13565.037 2 +Q9VGW1 Cadherin-86C 1.24 2 2 0 11425.616999999998 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 215615.628 3 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 23211.053 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 248435.11520000003 4 +O76895 Arginase 7.69 2 2 2 5311.874900000001 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 64692.432 2 +Q9VAI3 FI06539p 10.08 1 1 1 14614.172 1 +Q9VB09 IP04131p 12.1 2 2 2 67948.541 2 +Q9VHN8 LD37279p 3.43 1 1 1 478.77582 1 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 156510.13499999998 2 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 76126.891 2 +Q9W1X6 GH06673p 8.33 2 2 2 31435.022 2 +Q9W5E7 LP07417p 11.4 1 2 1 16103.259000000002 2 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 38623.457599999994 4 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 1865.3702 1 +A1ZAU6 FI05912p 1.83 1 1 0 5406.06 1 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 155847.22 3 +Q7K3Z8 GH01208p 2.35 1 2 1 23108.790999999997 2 +Q9VAN8 FI15955p1 6.46 1 1 1 21576.254 1 +Q9VLL4 FI23523p1 4.52 2 2 2 22336.167 2 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 17536.498 1 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 46275.8243 4 +Q9W542 LD07342p 1.62 1 1 1 7347.7676 1 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 3295.1914 1 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 67969.435 2 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 1555.811 1 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 35442.4217 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 41240.400499999996 2 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 39528.422 2 +A1Z840 Cdc2-related kinase 4.13 2 3 2 54715.297 1 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 10886.739 1 +Q9W3S4 LD46272p 3.11 1 1 1 5239.9004 1 +A8JQX3 Nocturnin 1.87 1 1 1 5909.55 1 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 18399.77 1 +Q9VUL1 CTP synthase 1.59 1 1 0 19974.225 1 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 1645.8479 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 912.023 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 266192.6476 11 +O76857 BCL7-like 13.64 2 2 2 42874.057 2 +Q7JY89 RE35124p 15.0 1 1 1 3540.29 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 148823.521 2 +A8JUP7 Serine protease Hayan 2.2 2 3 2 35586.548 2 +P07664 Serendipity locus protein delta 4.16 2 2 2 35784.848 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 96381.08499999999 2 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 5919.320900000001 2 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 807.8946 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 1045258.431 4 +Q8IQU7 825-Oak 26.36 2 3 0 12649.0746 2 +Q9VGM4 LD28119p 6.76 2 2 2 3431.54163 2 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 65389.0557 12 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 26707.047 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 7784.9785 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 9630.912 1 +Q962I2 small monomeric GTPase 59.39 10 28 1 301178.29500000004 2 +Q9VSK1 GH09510p 2.72 2 2 2 1571.0255 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 288818.387 2 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 6150.8562 2 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 548765.70366 14 +Q29R09 LD28546p 5.79 2 2 2 4854.4637 2 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1759.7275 1 +Q8SXC0 GH10306p 6.03 2 2 2 37999.434 1 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 2594.4672 2 +Q9W0A9 GM02612p 3.06 1 1 1 3042.5137 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 11683.133 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 169973.7588 4 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 36423.22 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 9270.165 1 +Q9VV29 GEO12576p1 9.68 1 2 0 97547.815 2 +P45884 Attacin-A 5.36 1 2 0 73759.32800000001 2 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 1796.4442 1 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 3505.3093 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 44944.883 1 +Q9VV27 MIP11526p 15.25 2 2 2 86289.72200000001 2 +O76324 Discs overgrown protein kinase 2.27 1 1 0 2227.232 1 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 11277.79 1 +Q9VFL9 FI07901p 6.08 2 2 2 3907.5138 2 +A0A0B4JCW7 TBC1 domain family member 30 0.66 2 2 0 366.407 1 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 27458.1375 2 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 94235.61540000001 3 +Q9VEQ0 Xylulose kinase 1.99 1 1 1 422.23843 1 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 25472.791 1 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 45997.93 1 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 6572.416 1 +Q2PDU0 GEO11169p1 9.84 1 1 1 12091.556 1 +Q9VF46 GH25158p 7.34 2 3 2 61233.7144 3 +Q9VSD8 IP10160p 6.67 2 2 2 12052.657599999999 2 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 30388.373 1 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 32683.59 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 70470.287 2 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 5037.882 1 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 12931.924 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 852.37463 1 +A8JNU1 adenylate cyclase 1.02 1 1 0 8698.917 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 27018.498 1 +Q7JW46 RE25483p 17.0 1 1 1 852.9374 1 +Q7K010 Tetraspanin 5.0 1 2 1 18495.767 2 +Q9VUR4 FI11905p 11.6 4 9 1 24098.53 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 12468.5223 2 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 5119.2456 1 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 6791.4795 1 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 18277.281000000003 2 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 64290.7183 3 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 2104.5596 1 +A8JNV2 Uncharacterized protein 10.71 1 2 1 21111.535 2 +Q9VRX7 LD29573p 1.32 1 1 1 6399.5693 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 56466.125 1 +O46099 EG:8D8.2 protein 0.78 1 1 1 2152.836 1 +Q8SWU4 RE25571p 17.3 6 12 1 43480.027 1 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 26151.17 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 75944.889 2 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2672.0752 1 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 18638.693 1 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 38084.723 1 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 1692.5498 1 +Q8IRD6 Dro4 protein 33.8 2 2 2 62511.481 2 +Q8SXW3 GV1, isoform B 4.44 1 2 0 52328.25200000001 2 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 24084.171000000002 2 +Q7JWE2 GH09427p 3.96 1 1 1 3215.1758 1 +Q8IRN0 FI06485p 10.84 2 2 2 15774.271 2 +Q9VHS6 Copper transport protein 5.75 1 1 1 614.9548 1 +D8FT19 MIP22288p 2.35 1 1 0 4579.7085 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 27623.245 2 +Q8ML92 Protein aveugle 7.55 1 1 1 42454.914 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 3.59 1 1 0 591.34784 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 5130.402 1 +Q9VT15 GH14734p 2.78 1 2 1 39405.619 2 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 18862.5673 2 +A1A750 GEO11067p1 18.81 2 2 2 72776.3103 2 +Q9VF83 LD33178p 2.73 1 1 1 6843.1377 1 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 6743.354 1 +Q9NHV9 Protein vav 3.66 3 3 0 8598.403 1 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 8345.72 1 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 1757.8865 1 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 108701.637 3 +M9PCK0 Decima, isoform D 4.29 1 1 0 15267.601 1 +Q9VPA9 LD24894p 0.92 1 1 1 12594.289 1 +Q9VSS4 IP05455p 10.32 1 1 1 25707.025 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 68413.388 2 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 11562.409 1 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 4168.7970000000005 2 +Q7KV26 Kinase 2.6 1 1 1 3703.4346 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 4380.621 1 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 8894.498 1 +Q02427 RNA-binding protein 1 29.86 4 5 1 317445.44 1 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 8153.796 1 +Q9VCQ7 LD40758p 1.61 1 1 1 990.1548 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 14233.368999999999 2 +Q9VDL4 LP04613p 2.72 1 2 1 5984.9101 2 +Q9VQ52 GH27779p 3.93 2 2 1 39971.6663 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 105716.342 2 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 10969.9535 2 +Q9VGE8 Tachykinins 6.57 2 4 0 59019.217000000004 4 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 50967.363 2 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 41953.990000000005 2 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 21668.167699999998 2 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 3921.7363 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 14518.923999999999 2 +Q7YU81 Protein charlatan 1.48 2 2 0 12212.728 2 +Q9VHV3 FI02011p 3.75 2 2 2 18349.7205 2 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 6181.7017 1 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 14610.463600000001 2 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 8723.5 1 +Q9V3A6 Ero1-like protein 2.28 1 1 1 3410.9243 1 +Q9VIQ4 GH03980p 10.75 2 2 2 71219.90950000001 2 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 221215.34999999998 2 +Q7K8Y3 IP16419p 26.28 9 11 0 810288.57228 10 +Q8STG9 DSec61alpha 1.89 1 1 1 22252.863 1 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 68451.8015 3 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 13328.472 1 +P22812 Protein Tube 3.9 2 2 2 3090.5833 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 36314.324 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 40519.916 2 +Q7JV39 GH01142p 5.05 1 1 1 11313.051 1 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 21047.913 2 +Q8T088 WD repeat-containing protein 55 homolog 2.41 1 1 1 639.91675 1 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 55768.28 1 +Q27367 Protein croquemort 4.48 2 2 2 22546.527 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 6290.7266 1 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 2079.789 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 3918.7976 1 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 20500.182699999998 2 +Q9W4F9 IP01388p 3.65 2 2 0 25938.309999999998 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 2399.1492 1 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 4188.2603 1 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 1482.6453 1 +F0JAQ9 MIP27169p 2.34 1 1 0 2316.597 1 +P18289 Transcription factor Jra 3.81 1 1 0 3777.7493 1 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 32192.059 1 +Q9VJ77 FI24106p1 2.07 1 1 0 1755.2109 1 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 33076.02 1 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 4914.949 1 +Q9VR55 LD29159p 8.71 1 4 1 82460.2355 3 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 12972.895 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 108526.3153 5 +P54194 General odorant-binding protein 84a 6.86 1 1 1 17555.697 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 7406.831 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 40282.8486 2 +Q8IR92 Uncharacterized protein, isoform A 6.03 6 6 0 709.28516 1 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 5909.664 1 +Q9VV26 GEO12049p1 6.84 1 2 1 296178.79000000004 2 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 718.52515 1 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 3005.9644 1 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 14510.206 1 +Q9VX14 RH64870p 8.82 2 2 1 6968.9113 2 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 38599.795 2 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 24088.488999999998 2 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 12411.219 1 +A1ZAG3 Protein G12 2.9 1 1 1 105846.67 1 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 8593.747 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 16160.0252 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 46860.8324 4 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 2639.5237 1 +Q0E8W6 Small integral membrane protein 14 40.0 2 2 2 472.26868 1 +Q6IJE8 HDC15077 11.85 1 1 1 58928.47 1 +Q9VVI0 SD09427p 1.63 1 1 1 3935.356 1 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 46711.223999999995 2 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 14544.9727 2 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 33787.582 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 75788.9 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 8770.701 1 +Q9W494 Crossveinless 8.17 2 2 2 40996.797 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 73014.4712 3 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 6426.294099999999 2 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 51075.816 2 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 25344.074 1 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 9222.658 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 111944.63 1 +Q95NH6 Attacin-C 2.9 1 1 1 5004.6035 1 +Q86B83 LD12611p 5.44 2 2 2 13754.443 2 +Q8MRQ1 GH06222p 3.62 2 2 0 16122.198 1 +Q4V6X9 IP01247p 3.24 1 1 1 3577.3782 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 2306.6787 1 +Q9VPR6 Kinase 2.59 1 1 1 9728.434 1 +Q9VF80 Cysteine protease 1.65 1 1 1 695.23596 1 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 17911.43 1 +Q9V4B8 RE68558p 1.2 1 1 1 12926.897 1 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 6.02 1 1 1 367.30484 1 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 16246.494 1 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 7609.715950000001 2 +Q8I0J1 RE43539p 2.51 1 1 0 16908.193 1 +Q9VC27 Nicastrin 1.29 1 1 0 12144.282 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 9573.597 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 5387.216 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 2170.9216 1 +Q9W0I2 RE15268p 11.17 1 1 1 12366.95 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 10303.114 1 +Q961R9 GH09241p 1.8 1 1 1 34816.098 1 +Q9VCC7 FI03681p 1.71 1 1 1 848.7183 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 8322.369 1 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 492.7421 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 16766.2472 2 +Q9VFR4 GH09754p 6.64 1 1 1 73393.46 1 +Q7JX82 GH21964p 4.17 1 1 1 452.4269 1 +Q7K490 SD03973p 2.65 1 1 1 6464.5166 1 +Q9VP69 ADP-ribose glycohydrolase OARD1 17.65 1 1 1 629.1094 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 34031.163 2 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 12369.059 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 130095.76250000001 3 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 20965.47 2 +Q6NN09 ATPase protein 9 5.07 1 6 1 2424577.4695 6 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 7799.4546 1 +O76874 SD17974p 1.14 1 1 1 5207.2705 1 +Q9VEB2 LD28404p 3.0 1 1 1 23347.08 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.64 1 1 1 720.4856 1 +P41964 Drosomycin 17.14 1 1 0 4858.8433 1 +Q9VL21 LD11652p 6.22 1 1 1 15521.84 1 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 4308.3647 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 426.1502 1 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 172722.63 2 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 4084.7097 1 +Q9VK20 LD18447p 1.79 1 1 1 15943.506 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 10198.877 1 +Q9VA48 Serpin 100A 2.77 2 2 2 12517.0164 2 +Q9VP25 Carboxylic ester hydrolase 2.33 1 1 1 471.93774 1 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 4100.748 1 +Q9VBK9 Protein FAM98B 3.08 1 1 1 50821.457 1 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 24711.1006 2 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 16931.52 1 +Q0E985 RH74701p 15.0 1 1 1 5403.8325 1 +Q9VCC2 RE50040p 4.86 2 2 2 79919.95199999999 2 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 18224.99 1 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 8727.871 1 +Q7K172 CAAX prenyl protease 3.33 1 1 1 12981.077 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 57013.78 1 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 11904.318 1 +M9PH32 Protein meiotic P26 1.99 1 1 0 455.16605 1 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 60014.76 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 19829.203 1 +E1JHX0 MIP29328p 3.76 1 1 1 3867.1199 1 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 13495.264 1 +A0A126GV08 Uncharacterized protein, isoform G 5.3 2 2 0 727.7063 1 +F9VMG5 GEO02462p1 41.07 2 2 2 41292.104 2 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 28376.375999999997 2 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 19193.203 1 +Q9V9R3 adenylate cyclase 1.29 2 2 2 13574.3144 2 +Q9VS39 FI19525p1 5.88 2 2 2 20790.6261 2 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 14209.367 1 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 8860.553 1 +Q9VUE5 LD17962p 0.77 1 1 0 121877.29 1 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 3729.1821 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 15673.2945 2 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 17953.9905 2 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 716.7643 1 +M9PE65 Axotactin 0.69 1 1 1 4410.1987 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 5301.562 1 +Q8IRK0 GH04558p 5.41 2 2 2 140585.9578 2 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 10020.536 1 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 22308.32 1 +Q5BI50 Cullin-4A 1.34 1 1 1 8488.04 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 576.4141 1 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 2248.7966 1 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 4407.454 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 116014.31 1 +P07186 Chorion protein S19 14.45 1 1 1 3311.8215 1 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 12127.68 1 +Q9VJK9 GEO06505p1 9.52 1 1 1 2673.483 1 +E1JHN0 FI16804p1 13.08 1 1 1 350.16983 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 3493.7893 1 +Q9VL29 GEO11246p1 12.93 1 1 1 9474.446 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 653.5471 1 +Q9W2F6 RE36793p 14.17 2 2 2 24072.951 2 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 5305.089 1 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 71093.98 1 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 9587.318 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 8884.9452 2 +Q7JR99 RE31204p 5.59 1 1 1 6090.4727 1 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 4254.835 1 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 161550.7927 6 +B7YZZ0 GH19557p 12.64 1 1 1 19905.398 1 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 11651.0221 2 +A1Z8D4 AT13868p 4.47 1 1 0 2411.6165 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 113841.586 1 +A8DYV9 GEO02589p1 10.53 1 2 1 31061.55 2 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 5222.8057 1 +Q9W1I6 U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein 13.4 1 1 1 384.84116 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 206913.84 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 5648.101 1 +Q7K1H9 GH07575p 3.69 1 1 1 3059.8315 1 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 4129.1562 1 +O76513 Cyclin-H 3.7 1 1 1 9911.678 1 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 1901.5345 1 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 6363.544 1 +Q9V449 Met75Ca 23.53 1 1 1 15097.57 1 +Q9VLA6 Brickwall, isoform A 3.22 1 1 1 506.86584 1 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 1875.1283 1 +Q03445 Glutamate receptor 1 1.92 1 1 1 1848.9662 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 5846.974 1 +Q9W0B6 LD14179p 1.48 1 1 1 5890.3237 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 4914.2324 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 63371.19 1 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 6293.217 1 +Q9VT01 FI06792p 3.5 1 1 1 1649.772 1 +Q9VIM8 RE22905p 2.85 2 2 2 4298.2515 1 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 3040.9148 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 25967.73796 2 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 4738.643 1 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 254934.08 1 +Q9VMM3 RE17389p 2.61 1 1 1 2722.5942 1 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 8458.13 1 +Q9W551 GEO02601p1 8.49 1 1 1 2198.9023 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 8818.085 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 4490.365 1 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 4664.2646 1 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 4234.6523 1 +Q9VB20 Distracted, isoform B 0.68 1 1 1 688.61237 1 +Q9VA94 GH07782p 2.82 1 1 1 383.46567 1 +Q9VX56 LD03052p 5.94 1 1 1 29069.064 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 8985.572 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 41660.156500000005 2 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 3185.3447 1 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 5659.7124 1 +Q7JY99 glycerol kinase 1.34 1 1 1 2467.6162 1 +Q9VP08 IP11255p 2.36 1 1 1 2281.1338 1 +Q8MYV9 GEO12865p1 11.04 1 2 1 89846.204 2 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 14458.724 1 +Q9V6L9 F-box/SPRY domain-containing protein 1 4.31 1 1 1 478.39096 1 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 7076.577 1 +Q8IN94 Trithorax group protein osa 0.29 1 1 0 513.29364 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 36081.043 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 260201.988 2 +Q7JWV7 Tetraspanin 4.85 1 1 1 2158.0166 1 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 10882.219 1 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 3315.1138 1 +Q8IRE5 RH23915p 21.54 1 1 1 1993.2133 1 +Q9VJ12 Acinus, isoform A 1.49 1 1 1 348.9752 1 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 11607.998 1 +Q9VBQ5 LD38433p 1.91 1 1 1 12558.857 1 +Q9VZR5 RE46159p 11.06 2 2 2 38815.238399999995 2 +Q9VPB7 FI17508p1 1.3 1 1 1 4819.386 1 +P52485 Ubiquitin-conjugating enzyme E2-24 kDa 8.62 1 1 0 359.51892 1 +Q8T092 LD21421p 2.45 1 1 1 488.1369 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 17080.918 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 2953.3367 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 26193.285 1 +Q7K4G8 LD40944p 1.7 1 1 1 4104.282 1 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 6980.6885 1 +Q9VHW4 FI21225p1 0.74 1 1 1 2397.9434 1 +Q9VKE7 GH09228p1 10.39 1 1 1 961.5662 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 8039.4927 1 +Q9VMI5 CG9135 protein 1.44 1 1 1 5681.3496 1 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 37120.83 1 +Q9VVJ6 Keren 4.61 1 1 1 14621.632 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 280788.253 3 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 1855.9537 1 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 282856.9 1 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 49525.035 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 10477.2705 1 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 1840.8466 1 +E1JH07 LD18062p1 8.0 1 1 1 49610.99 1 +Q9VWG2 FI07430p 2.75 1 1 1 4781.102 1 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 6783.849 1 +Q9Y113 Negative elongation factor B 1.35 1 1 1 7048.9653 1 +P36192 Defensin 8.7 1 1 1 4402.824 1 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 5818.9575 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 8604.529 1 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 10239.923 1 +Q9VAK8 Protein Diedel 8.7 1 1 1 3452.0698 1 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 5943.4727 1 +A0A0B4KFX0 Uncharacterized protein, isoform A 21.54 1 1 1 749.3882 1 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 1990.962 1 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 4468.993 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 72671.195 1 +Q0E908 Hillarin 0.86 1 1 1 909.5832 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 680206.718 2 +Q9VPH4 FI03293p 2.31 1 1 1 3946.6926 1 +Q5BIL9 SD21168p 1.63 1 1 0 33263.676 1 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 5152.8594 1 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 5663.8647 1 +A1Z6H0 Kune-kune 2.65 1 1 1 16229.63 1 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 1844.8591 1 +M9MS77 Uncharacterized protein 7.56 1 1 1 2710.488 1 +Q9VHJ4 GH04846p 2.25 1 1 1 3386.3518 1 +Q9W226 GEO07239p1 5.88 1 1 1 5696.523 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 10308.448 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 6974.047 1 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 5653.761 1 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 12508.742 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 27354.98 1 +Q9V412 STING ER exit protein 4.45 1 1 0 4736.109 1 +Q8MRQ2 GH05923p 2.74 1 1 0 9647.01 1 +Q9VE99 GEO12060p1 16.67 1 1 1 5091.0073 1 +Q6XPX3 Phospholipase A2 4.3 1 2 1 26060.966 2 +Q8SYR5 GEO07715p1 7.1 1 1 1 14151.214 1 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 4194.463 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 6892.403 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 4131.658 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 3651.4216 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 10686.058 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 4211.0283 1 +Q7PL72 LD05675p 5.85 1 1 0 4725.7407 1 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 9385.485 1 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 4626.85 1 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 8514.918 1 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 5940.4 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 17807.053 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 2681.1868 1 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 4694.488 1 +Q2MGN0 FI01014p 2.5 1 1 0 1815.1761 1 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 5160.7861 2 +A1A6X2 IP16893p 12.07 1 1 1 28149.04 1 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 11966.734 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 2356.1204 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 52140.565 2 +Q7JXE1 Bunker gear 4.75 1 1 1 743.9182 1 +Q9VKZ9 FI06463p 5.39 1 1 1 7883.122 1 +Q7K105 LD20892p 1.3 1 1 1 14247.181 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 25276.164 1 +Q9W081 AT01075p 2.34 1 1 1 3089.1528 1 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 28700.21 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 25172.367 1 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 7600.2725 1 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 413.5788 1 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 10062.794 1 +Q9W009 GH12037p 3.17 1 1 1 7415.415 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 56271.227 1 +Q0E906 GEO11031p1 11.69 1 1 1 16893.977 1 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 3021.2778 1 +Q9VBT7 GH13495p 1.9 1 1 1 3027.5273 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 77724.4 1 +Q9Y1A7 LD25378p 2.0 1 1 1 11118.404 1 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 1870.3074 1 +Q7JR91 GH12715p 3.19 1 1 0 6262.234 1 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 1398.3256 1 +B7YZH7 GM12693p 21.43 1 1 0 1463.2676 1 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 875.81177 1 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 3730.7642 1 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 3428.9546 1 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 244340.25 1 +Q9VUB4 GATOR complex protein NPRL3 1.97 1 1 0 540.1778 1 +Q9VJU2 Nimrod C3 3.12 1 1 1 9539.8 1 +Q9W3Q2 SD08447p 1.26 1 1 1 21501.12 1 +A1Z979 Salivary secreted peptide 6.25 1 1 0 27202.434 1 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 6114.724 1 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 302340.66802 13 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 193119.275 3 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 68523.1836 6 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 56811.7278 5 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 74976.563 2 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F1_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F1_TMTa.txt new file mode 100644 index 0000000..88d7fe2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F1_TMTa.txt @@ -0,0 +1,4048 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 127C, Sample, n/a, SF1g_F1 Abundances Count: F5: 127C, Sample, n/a, SF1g_F1 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 22819.5652 4 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 45079.5423 9 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 2110835.42617 63 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 31734.4535 5 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 79302.85926 13 +A0A1F4 Protein eyes shut 9.56 22 68 0 645088.3622999999 58 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 12113.5199 3 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 178922.76128 18 +A1Z713 Intermembrane lipid transfer protein Vps13 0.27 1 1 1 914.77026 1 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 751.34375 1 +A1Z7T0 Serine/threonine-protein kinase N 1.34 2 3 0 2176.0796 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 8040.6734 3 +A1Z877 Nidogen 24.81 29 66 29 786093.8338 64 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 12876.645 2 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 1902.5934 1 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 244311.7652 64 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 117158.28177999999 10 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 91854.62156999999 5 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 207960.14054 37 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 13074.899399999998 2 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 168409.58286 36 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 65023.0406 4 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 12764.774350000002 4 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 22004.43185 9 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 10629.0114 2 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 16503.328 2 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 8755.383100000001 2 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 180702.2903 6 +A8DYP0 Protein Obscurin 2.11 10 12 10 48783.66865 8 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 289610.1287 9 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 1831141.205 87 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 289263.1701 19 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 577565.86654 53 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 648396.73708 32 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 97734.92300000001 4 +C0HL66 Histone H3.3A 52.94 8 63 0 69790.09300000001 3 +C0HLZ9 Baramicin A1 15.56 4 9 0 48988.936 8 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 594619.01443 29 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 5308.5118999999995 4 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 82904.36224 12 +M9NDE3 Protein bark beetle 3.91 13 19 13 67232.00695 14 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 5211167.39873 102 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 139759.4327 6 +O01367 Protein held out wings 21.48 8 10 0 53023.5671 8 +O01382 Caspase drICE 17.99 5 7 4 6672.5466 5 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 410712.39126999996 9 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 4576142.67336 107 +O02194 Presenilin homolog 5.73 3 5 0 8493.2244 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 434113.3913 20 +O02649 Heat shock protein 60A 73.47 40 183 25 7382413.8148799995 153 +O15943 Neural-cadherin 14.89 49 91 2 704360.6313199999 77 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 105691.74546 12 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 66205.4129 3 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 32284.371 5 +O18333 Ras-related protein Rab-2 18.31 5 10 5 49885.89145 9 +O18334 Ras-related protein Rab6 18.75 5 16 0 10806.2578 3 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 625028.74121 27 +O18388 Importin subunit beta 3.73 4 6 0 7645.1007 3 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 6011608.49979 105 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 412762.85052 31 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 81895.83124999999 11 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 51086.5712 3 +O44342 Protein windbeutel 19.46 5 10 0 50765.29586 8 +O44386 Integrin alpha-PS3 11.84 14 20 12 101435.59733 17 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 1812.5074 1 +O46037 Vinculin 53.69 50 137 0 2636559.50991 120 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 47796.6864 4 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 106802.23033 7 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 116371.62697 9 +O46339 Homeobox protein homothorax 6.16 3 3 3 536.3158 1 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 465513.56513999996 21 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 4534.1019400000005 3 +O61307 Teneurin-m 0.66 2 2 0 4092.7992 2 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 33592.2794 4 +O61491 Flotillin-1 48.83 23 81 23 1594696.6325700001 74 +O61722 PRL-1 phosphatase 44.32 7 23 7 486856.7413 14 +O62619 Pyruvate kinase 69.23 27 80 27 3407349.97464 64 +O62621 Coatomer subunit beta' 3.17 3 4 3 9422.476 4 +O76206 Putative riboflavin kinase 49.02 7 15 0 435127.16644 12 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 206229.10640000002 7 +O76742 Ras-related protein Rab7 28.5 6 12 6 133754.9629 11 +O76878 RILP-like protein homolog 9.71 5 10 0 71118.17988 10 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 112756.6281 15 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 322709.16504 16 +O77051 Transcription factor E2F2 22.97 9 14 0 29683.3744 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 26942.3528 4 +O77277 Torsin-like protein 12.65 5 8 0 73785.2049 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 6212.0783 2 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 40534.203 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 121642.31526 23 +O96690 Protein PDF 23.53 1 1 1 4217.302 1 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 3141367.89655 60 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 40343.758460000005 7 +O97125 Heat shock protein 68 24.09 13 89 6 207907.65244 21 +O97172 UPF0729 protein CG18508 29.29 3 8 0 50951.258200000004 7 +O97394 Protein sidekick 1.89 4 5 0 5122.0372 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 29553.30845 5 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 1393617.03703 49 +P00334 Alcohol dehydrogenase 88.28 21 200 21 33542228.53168 154 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 2154855.77402 34 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 5962.85206 5 +P02255 Histone H1 14.45 3 6 0 47050.7108 5 +P02283 Histone H2B 56.91 8 70 8 1735507.69664 55 +P02299 Histone H3 52.94 8 67 2 2227287.4386 55 +P02515 Heat shock protein 22 40.8 8 18 8 311562.4828 15 +P02516 Heat shock protein 23 84.41 16 83 0 5641085.63224 72 +P02517 Heat shock protein 26 57.69 10 30 0 1737794.19779 22 +P02518 Heat shock protein 27 44.13 9 21 0 523027.16275 20 +P02572 Actin-42A 64.1 25 768 2 60072644.65896 614 +P02574 Actin, larval muscle 65.96 25 672 0 1892364.3421 22 +P02828 Heat shock protein 83 48.4 33 148 0 5170706.66447 136 +P02843 Vitellogenin-1 70.84 32 265 0 26596405.84901 194 +P02844 Vitellogenin-2 59.28 26 187 0 16132709.01671 129 +P04197 Myb protein 3.81 3 3 0 2149.98416 2 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 370017.39757000003 15 +P04388 Ras-like protein 2 13.02 2 10 2 68946.34656 9 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 15628.43273 7 +P05205 Heterochromatin protein 1 36.89 8 22 8 249466.31114 20 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 2584177.7569999998 31 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 967460.3896999999 16 +P05552 Transcription factor Adf-1 7.63 2 5 0 48312.9207 5 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 57291.20076 12 +P05812 Heat shock protein 67B1 12.13 5 7 5 17708.8382 5 +P06002 Opsin Rh1 4.56 2 8 2 27287.761840000003 6 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 25699669.65777 139 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 8069.7407 1 +P06607 Vitellogenin-3 82.14 33 299 0 30633467.16524 265 +P06742 Myosin light chain alkali 56.77 11 71 0 10462994.555300001 47 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 6100.174 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 2381028.4729 40 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 12635521.67994 128 +P07665 Serendipity locus protein beta 8.43 4 5 0 3274.4175 2 +P07668 Choline O-acetyltransferase 7.63 5 6 5 14470.84315 4 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 26860793.6068 336 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 25416.362100000002 7 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 349979.86495 22 +P08144 Alpha-amylase A 18.22 8 15 0 227007.84636000003 12 +P08171 Esterase-6 13.24 9 22 0 209230.03566999998 22 +P08182 Casein kinase II subunit beta 38.72 8 38 2 760661.98124 31 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 1860257.4866 27 +P08645 Ras-related protein Rap1 25.54 5 15 0 194188.09167 15 +P08646 Ras-like protein 1 30.69 4 10 4 155227.14944 9 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 17230092.79109 175 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 115882.08391 12 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 6495179.30145 112 +P08928 Lamin 67.36 50 193 49 5121644.57895 168 +P08985 Histone H2A.v 42.55 10 47 8 1033394.1916799999 31 +P09040 Drosulfakinins 21.99 3 3 3 36440.118 3 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 1119065.95748 51 +P09208 Insulin-like receptor 3.03 8 10 8 10633.89778 7 +P09491 Tropomyosin-2 76.76 34 245 2 99212.66616000001 6 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 144857.0023 13 +P10180 Homeobox protein cut 0.46 1 3 0 93038.94 3 +P10379 Protein unzipped 20.29 8 28 0 516743.9374 25 +P10552 FMRFamide-related peptides 2.31 1 3 1 42624.464 2 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 464448.50303 70 +P10981 Actin-87E 76.33 30 777 0 1594303.89605 35 +P10987 Actin-5C 64.63 27 797 0 928083.81153 27 +P11046 Laminin subunit beta-1 21.09 39 84 39 1371446.94055 68 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 37428.047 1 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 26658507.00606 345 +P11584 Integrin beta-PS 18.32 17 45 0 373602.87648 38 +P12024 Chaoptin 30.95 35 88 0 2066316.93186 71 +P12080 Integrin alpha-PS2 11.53 17 39 17 307702.75028 34 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 1220460.45435 40 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 16203.5261 3 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 478792.38420000003 33 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 586767.32526 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 155620.32246 11 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 193966.45745 8 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 902532.51553 69 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 2056421.54693 89 +P13395 Spectrin alpha chain 65.3 140 542 0 15932115.62246 469 +P13469 DNA-binding protein modulo 4.06 2 2 0 9356.50145 2 +P13496 Dynactin subunit 1 14.23 21 45 21 188732.60953 35 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 2389818.41608 117 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 51939.85177 12 +P13678 Protein kinase C 5.01 4 4 0 6275.49728 3 +P14199 Protein ref(2)P 13.19 7 32 7 271099.7234 29 +P14318 Muscle-specific protein 20 80.43 16 103 16 3414830.58176 78 +P14484 Pupal cuticle protein 27.17 5 39 5 492675.90383 29 +P14599 Amyloid-beta-like protein 1.92 2 2 0 596.66156 1 +P15007 Enolase 78.0 40 271 1 34399444.10776 231 +P15215 Laminin subunit gamma-1 33.62 53 135 0 2219734.62357 121 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 2292.2421999999997 2 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 2577773.0061 82 +P15364 Protein amalgam 15.92 5 11 0 51564.5873 10 +P15372 Phosrestin-2 67.58 19 65 0 1464704.56932 60 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 167578.49885 7 +P16378 G protein alpha o subunit 29.1 11 46 7 762106.39295 44 +P16554 Protein numb 15.47 8 12 0 74810.8824 10 +P16568 Protein bicaudal D 23.4 19 27 0 212086.43475000001 26 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 61792.769759999996 11 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 4801.13578 5 +P16914 Protein elav 30.23 13 43 0 646016.35832 37 +P17210 Kinesin heavy chain 34.56 34 100 34 982214.71885 84 +P17276 Protein henna 44.69 15 32 0 1002245.4036699999 29 +P17336 Catalase 41.11 16 61 16 1718436.30681 47 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 889367.9314 29 +P17719 Dihydrofolate reductase 4.4 1 2 1 10256.034599999999 2 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 1451965.25096 45 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 10083.0852 4 +P18431 Protein kinase shaggy 29.77 14 58 0 1694297.81282 50 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 8793811.74846 157 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 114650.25924 11 +P18824 Armadillo segment polarity protein 14.47 12 25 0 168173.98425 16 +P19107 Phosrestin-1 77.56 33 263 33 12297884.16413 236 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 196877.69731 29 +P19334 Transient receptor potential protein 4.39 6 9 4 44368.693 7 +P19339 Protein sex-lethal 4.52 2 4 0 7935.561000000001 3 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 114491.0688 8 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 5218089.57706 41 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 31172.9287 3 +P20153 Protein ultraspiracle 5.91 4 7 0 28170.5522 5 +P20228 Glutamate decarboxylase 27.84 12 34 0 283598.367 25 +P20232 Transcription elongation factor S-II 42.81 13 19 0 93093.88176 12 +P20240 Otefin 29.95 11 22 11 147696.84583 18 +P20241 Neuroglian 21.89 29 84 0 1049484.4554 76 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 162432.7321 6 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 8303.27704 4 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 32634.5936 3 +P20432 Glutathione S-transferase D1 52.15 12 101 9 12025826.53116 90 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 4155553.9967400003 60 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 17324177.84708 204 +P21187 Polyadenylate-binding protein 26.81 14 44 14 206775.84418 38 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 6222624.53631 97 +P22465 Annexin B10 65.42 20 129 20 4102465.68362 114 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 859834.83207 32 +P22813 Heat shock factor protein 7.09 5 6 0 20740.5029 5 +P22815 Protein bride of sevenless 1.34 1 1 1 3602.9834 1 +P22979 Heat shock protein 67B3 54.27 8 22 8 748310.67245 19 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 47055.8079 7 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 494558.54882 51 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 19629.8742 3 +P23625 G protein alpha q subunit 54.67 20 124 18 5026857.13189 102 +P23654 Neurotactin 8.87 7 17 0 89653.0065 14 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 123095.1259 10 +P23779 Cystatin-like protein 63.49 8 26 8 1400315.00695 22 +P24156 Prohibitin 1 73.91 17 62 0 1738232.11184 52 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 13438752.69241 102 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 7773.0876 2 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 603386.147 37 +P25171 Regulator of chromosome condensation 10.42 5 9 5 74177.0777 9 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 2933.8084 2 +P25228 Ras-related protein Rab-3 30.45 6 18 0 117274.46305 5 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 41212.66867 11 +P25822 Maternal protein pumilio 3.39 5 8 0 28872.39901 6 +P25843 Profilin 88.89 7 27 0 1244664.75305 24 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 283505.44299999997 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 114829.9597 9 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 714921.54856 28 +P26686 Serine-arginine protein 55 18.35 8 14 0 119861.92540000001 11 +P27716 Innexin inx1 11.33 5 7 0 34741.1023 6 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 111248.87511 19 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 42789.41625 7 +P29052 Transcription initiation factor IIB 13.65 5 13 0 53160.445329999995 9 +P29310 14-3-3 protein zeta 69.35 18 328 0 14095441.61949 278 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 749092.16665 22 +P29413 Calreticulin 57.64 21 79 0 3633215.23166 72 +P29613 Triosephosphate isomerase 77.73 17 135 16 9957551.50647 112 +P29742 Clathrin heavy chain 8.76 16 22 0 42942.97923 13 +P29746 Protein bangles and beads 59.28 23 66 23 1488655.58886 61 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 2114054.97434 65 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 12182.158300000001 5 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 7400038.80707 135 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 6559444.166540001 168 +P30432 Furin-like protease 2 2.44 4 6 0 11730.5164 5 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 1153427.7298 44 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 2081978.02627 77 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 1024464.39622 33 +P32234 Guanylate binding protein 128up 11.14 4 4 3 89939.18802 4 +P32392 Actin-related protein 3 16.99 7 15 7 139353.06895000002 14 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 47051.65965 13 +P33438 Glutactin 23.98 23 64 0 393351.34214 46 +P34082 Fasciclin-2 23.02 17 30 0 180587.56689000002 24 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 857938.41091 23 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 662497.87632 18 +P35220 Catenin alpha 24.1 22 60 12 403170.9284 51 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 45891146.79361 403 +P35415 Paramyosin, long form 75.2 85 589 0 27550841.52419 459 +P35416 Paramyosin, short form 62.19 47 347 0 2101962.40826 48 +P35421 Phosphoribosylformylglycinamidine synthase 0.59 1 2 1 931.0144 1 +P35554 Flightin 46.7 7 14 0 137649.37876 8 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 36166.007900000004 9 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 2440246.50009 59 +P36188 Troponin I 46.1 16 73 0 4139852.14353 68 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 801402.9328000001 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 1787.5333 1 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 1062119.7177 24 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 2979.976 1 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 3769431.5052 102 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 231505.0633 7 +P37236 Frequenin-1 56.15 9 52 0 206030.04324 9 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 2722.7282699999996 2 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 312313.15344 16 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 2892607.21853 49 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 2753795.86387 56 +P39736 Puff-specific protein Bx42 12.61 6 12 0 15673.59892 8 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 280409.3088 4 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 291678.92246 15 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 64509.5405 4 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 434919.92691000004 24 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 45220.68105 9 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 377822.21083 26 +P40427 Homeobox protein extradenticle 3.72 1 4 0 5569.08213 3 +P40792 Ras-related protein Rac1 22.4 4 22 0 163033.2311 19 +P40793 Cdc42 homolog 27.75 5 16 0 208598.8003 10 +P40796 La protein homolog 30.26 11 26 10 256484.00372 20 +P40797 Protein peanut 12.62 7 32 6 210304.57217 27 +P40945 ADP ribosylation factor 4 30.0 4 17 0 4220.1045 1 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 986839.44586 31 +P41043 Glutathione S-transferase S1 75.9 13 61 0 6247515.05055 50 +P41044 Calbindin-32 75.48 25 116 0 5055974.09697 92 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 211576.031 27 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 426434.4614 16 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 520685.8471 19 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 2119650.38778 54 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 1889991.3739 43 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 720706.70276 36 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 138003.46968 12 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 443019.06894 26 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 13274.1058 2 +P42207 Septin-1 12.74 5 19 4 35741.177599999995 5 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 3182468.6263 27 +P42325 Neurocalcin homolog 66.32 14 25 14 915195.01133 22 +P42787 Carboxypeptidase D 5.26 8 12 0 99546.53076 10 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 115098.09502 11 +P45437 Coatomer subunit beta 7.57 5 10 5 76874.16954999999 9 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 6795475.24323 91 +P45888 Actin-related protein 2 12.53 5 9 5 47146.778600000005 5 +P45889 Actin-related protein 1 24.47 13 20 13 570707.74333 18 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 45134.777 1 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 418780.49435 14 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 1146242.2926399999 28 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 133322.46804 10 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 770243.6307 68 +P46824 Kinesin light chain 41.34 24 66 0 945512.55959 55 +P47947 Troponin C, isoform 1 20.78 3 33 0 1824123.34092 30 +P47948 Troponin C, isoform 2 27.74 4 7 0 431.06836 1 +P47949 Troponin C, isoform 3 51.61 7 20 0 965162.3837 19 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 991436.21789 31 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 798797.14651 20 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 615689.6989000001 22 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 2491620.54817 28 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 140105.7459 4 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 983.13968 2 +P48554 Ras-related protein Rac2 26.56 5 20 0 20811.2163 4 +P48555 Ras-related protein Ral-a 43.28 8 20 1 414859.97722 19 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 66922.83293 4 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1826904.33784 54 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 206628.9126 17 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 1110905.77211 54 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 1867057.04446 93 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 81214.72394 13 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 643018.6421 45 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 866226.32842 58 +P48607 Protein spaetzle 4.29 1 2 0 4975.9844 1 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 48580.52805 5 +P48610 Arginine kinase 1 75.28 38 429 0 33505185.85674 360 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 644643.2360500001 21 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 738299.42663 47 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 66457.78563 13 +P49028 Protein mago nashi 46.26 6 12 6 262688.38942 9 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 102172.92480000001 9 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 394977.10104 8 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 7039.8253 2 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 26027.80016 6 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 454.8639 1 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 8193.3108 2 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 13936.84856 4 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 1158795.56008 29 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 189696.65287 17 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 16574.698 5 +P51406 Bystin 5.96 3 4 3 2855.78225 3 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 91257.45715 10 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 31504.10109 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 396676.9679 26 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 25397.96705 7 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 1792.627 1 +P53034 Replication factor C subunit 2 16.31 6 9 6 33261.6893 9 +P53501 Actin-57B 77.13 31 817 3 10737062.65231 99 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 8509.8064 3 +P53777 Muscle LIM protein 1 56.52 5 52 0 584561.54083 35 +P53997 Protein SET 11.52 3 3 3 41158.4964 3 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 192717.922 6 +P54191 General odorant-binding protein 69a 13.51 2 10 2 126413.908 10 +P54192 General odorant-binding protein 19d 71.33 11 165 11 17103642.19064 154 +P54193 General odorant-binding protein 83a 42.86 7 24 0 1075677.20325 22 +P54195 General odorant-binding protein 28a 26.57 4 24 4 289535.38062999997 20 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 5974.2561000000005 3 +P54352 Ethanolamine kinase 15.25 7 8 5 63371.282349999994 7 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 315118.4475 12 +P54357 Myosin-2 essential light chain 89.12 10 58 1 1239326.24565 49 +P54359 Septin-2 8.83 4 13 1 48208.95409 11 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 1747.8184 1 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 2091391.62619 86 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 10261.0577 2 +P54399 Protein disulfide-isomerase 67.14 31 156 0 8690505.18943 142 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 10256561.6252 159 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 143159.8812 8 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 164564.98511 22 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 432757.33226 12 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 3180512.11952 77 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 1159832.58651 29 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 1500910.74052 56 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 8782.201000000001 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 102068.07376 10 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 715300.3791499999 12 +P61849 Dromyosuppressin 28.0 2 2 0 146872.99599999998 2 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 10414886.97993 122 +P61855 Adipokinetic hormone 24.05 1 3 1 35210.5872 3 +P61857 Tubulin beta-2 chain 42.38 15 197 1 3211452.69 3 +P62152 Calmodulin 98.66 18 386 0 21591413.99709 296 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 1430784.25363 29 +P81829 Leucokinin 11.88 2 3 2 3047.6853499999997 3 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 2720476.3521 58 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 1447920.6106 40 +P82804 Partner of Y14 and mago 7.73 1 2 1 540.5084 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 789809.84735 19 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 47755.36458 14 +P83967 Actin, indirect flight muscle 68.88 28 754 2 197516.5693 3 +P84029 Cytochrome c-2 72.22 13 152 0 14055412.87387 134 +P84040 Histone H4 57.28 7 79 0 3985377.28343 71 +P84051 Histone H2A 37.1 7 32 0 1050526.574 11 +P84345 ATP synthase protein 8 18.87 1 1 1 68478.98 1 +P91664 Protein max 14.29 3 4 0 12950.705999999998 4 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 9504.33295 5 +P91891 Protein Mo25 24.78 10 27 0 514833.69408 26 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 114229.18724 16 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 317498.22832 33 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 3352041.10078 119 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 2521610.92268 46 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 1118741.83703 35 +P92029 DnaJ-like protein 60 3.69 1 2 0 1190.7215 2 +P92177 14-3-3 protein epsilon 77.86 25 246 23 12248521.46963 157 +P92204 Negative elongation factor E 9.64 3 7 3 21817.7317 5 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 7808.94517 3 +P98081 Protein disabled 4.99 10 17 0 15709.65213 11 +Q00174 Laminin subunit alpha 17.05 68 162 68 3069104.19426 144 +Q00963 Spectrin beta chain 23.88 59 161 1 3148.2465 2 +Q01603 Peroxidase 7.68 5 10 0 135799.60414 10 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 11796182.6969 197 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 43637.2549 7 +Q01819 Connectin 3.52 3 4 0 49086.71076 4 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 77931.438 2 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 298411.29408 27 +Q02910 Calphotin 3.94 3 9 3 86460.45185 8 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 42762.0076 10 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 1403.83385 2 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 398585.5382 24 +Q03427 Lamin-C 55.88 41 164 3 2474992.07079 126 +Q04047 Protein no-on-transient A 21.86 12 30 0 110504.92299 18 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 161027.26312000002 25 +Q04691 Fat-body protein 1 28.38 28 55 0 243587.85804 44 +Q05783 High mobility group protein D 24.11 3 11 0 51982.534230000005 8 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 28233217.68081 487 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 31705.262899999998 2 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 3972554.90088 95 +Q06943 High mobility group protein Z 31.53 4 12 0 92152.95503 9 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 20715.217650000002 7 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 756582.5993 17 +Q07171 Gelsolin 24.44 18 56 0 764520.38784 48 +Q07327 Protein ROP 24.79 15 61 0 341006.88768 46 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 535540.6820200001 20 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 11227.56754 6 +Q08473 RNA-binding protein squid 38.08 8 17 0 710572.8687 15 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 31711.62175 5 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 20642.795700000002 5 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 60957.7449 7 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 26403.80845 6 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 228612.91798 20 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 3474.6087500000003 2 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 11566.53075 4 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 234165.03486 20 +Q11002 Calpain-A 3.38 3 4 0 9672.277600000001 3 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 2616325.43481 57 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 3330484.0415 73 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 3481713.92324 82 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 4208081.5254 114 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 1665350.36793 52 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 4950395.33945 98 +Q24050 Elongator complex protein 5 26.34 6 9 6 42655.0527 8 +Q24114 Division abnormally delayed protein 9.11 6 13 0 238868.01570000002 13 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 273460.3363 12 +Q24134 Negative elongation factor D 2.42 2 2 0 22474.45 1 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 31208.98 1 +Q24185 Protein hook 24.45 18 32 18 289341.8327 25 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 1021394.8659 30 +Q24207 Protein boule 21.93 4 8 0 49234.10587 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 165712.57508 19 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 23228.9199 5 +Q24211 Protein stoned-A 45.41 30 66 0 1075452.18709 54 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 711897.71185 28 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 45979.852100000004 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 23071.40507 8 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 10404852.25174 143 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 252698.28746 24 +Q24292 Protein dachsous 1.48 5 5 0 3031.06721 3 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 174189.9849 3 +Q24298 DE-cadherin 12.94 19 36 19 281281.84166 30 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 42491.413160000004 5 +Q24318 Transcription factor Dp 18.2 7 10 1 23317.17526 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 12647.91 3 +Q24322 Semaphorin-1A 5.78 5 6 0 1682.1344 3 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 53623.41124 8 +Q24372 Lachesin 10.03 5 9 5 38564.12784 6 +Q24388 Larval serum protein 2 9.56 7 10 0 46202.7517 8 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 2153277.32013 93 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 3698128.94952 36 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 11057048.5817 172 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 134185.32826 36 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 112370.99853 13 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 30644.0641 6 +Q24509 Syntaxin-5 8.14 4 5 0 14182.874 2 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 92465.63724 17 +Q24524 Protein singed 5.66 3 5 0 9321.69645 3 +Q24537 High mobility group protein DSP1 12.21 5 19 0 138840.23739999998 15 +Q24547 Syntaxin-1A 39.18 13 60 0 1876835.3357 54 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 16912115.53593 256 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 49912.18333 7 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 92161.44766 15 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 1043291.58078 42 +Q26377 Pro-corazonin 20.13 3 12 3 49017.76231 6 +Q26416 Adult cuticle protein 1 20.0 1 2 1 108662.98 1 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 53941.73655 12 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 370024.98654 10 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 54149.92105 7 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 1042672.77942 44 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 959759.93665 29 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 1521558.19337 36 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 182190.20853 8 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 162336.26085 22 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 4035.6095 2 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 63079.835399999996 9 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 104927.4815 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 14703.213199999998 4 +Q3KN41 Neurexin 1 4.46 8 11 0 35429.84342 10 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 14252.3086 5 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 46784.164 1 +Q4V645 Trissin 13.89 2 4 2 18181.838600000003 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 16691.57604 4 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 47808.35 4 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 12694.67786 5 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 329797.3804 14 +Q6NN40 Alpha N-terminal protein methyltransferase 1 7.61 2 2 0 877.9802 1 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 12593.2963 3 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 7329.1365 4 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 144237.4306 6 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 17174.9179 3 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 262126.19170000002 9 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 562372.21959 15 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 37007.7668 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 142825.37048 17 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 972904.5572 29 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 3272.9133 1 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 34188.34569 9 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 49263.6964 7 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 150428.9459 10 +Q7JXF7 Protein seele 23.28 4 11 4 201567.4495 11 +Q7JYV2 Synaptogyrin 7.88 1 1 1 80720.98 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.98 1 1 0 728.11127 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 10633.422 4 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 170353.49757 22 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 214290.0857 4 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 6243.08502 3 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 46347.7368 7 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 58499.26935 5 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 433.4529 1 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 733311.9513300001 40 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 14517.13165 2 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 109739.05808 11 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 97247.53318 22 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 20977.43424 7 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 272965.80498 21 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 70211.4301 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 5284678.81205 63 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 98213.03803 14 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 363198.26284 19 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 713762.96782 39 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 6812.6641 3 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 802105.42784 47 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 56799.710380000004 10 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 133080.79200000002 10 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 79171.93495 16 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 139372.8915 9 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 12796602.55119 56 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 4215.834699999999 2 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 169678.4671 15 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 220146.51 22 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 21237.7228 5 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 34972.32069 10 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 2589254.59316 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 4407.47792 2 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 65990.62776999999 8 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 113077.07016 19 +Q868Z9 Papilin 20.36 51 134 51 1022885.98757 99 +Q86B79 RING finger protein unkempt 1.34 1 2 0 464.14255 1 +Q86B87 Modifier of mdg4 7.54 5 9 0 99930.5512 9 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 38085.504199999996 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 17063.28245 3 +Q86NP2 Negative elongation factor A 8.87 10 18 0 104991.86481 16 +Q86P48 AT-rich binding protein 8.76 3 6 3 3442.9806 2 +Q86S05 Protein lingerer 2.69 3 7 0 13044.35038 3 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 45676.48873 11 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 570320.4395 30 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 53184.719619999996 16 +Q8IN41 Protein Turandot X 16.2 2 4 2 8348.0115 3 +Q8IN43 Protein Turandot C 48.84 5 12 5 197934.35768 11 +Q8IN44 Protein Turandot A 52.71 7 33 7 675612.9891 25 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 95251.39096 17 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 13701.475699999999 3 +Q8IPM8 Complexin 65.49 10 81 0 35288.90345 5 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 54445.37238 15 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 5354.0874 3 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 16585.49524 5 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 82331.4745 5 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 235664.7969 15 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 67393.53877 7 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 545438.6237 22 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 38622.5013 4 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 25325.7794 4 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 19721.559 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 3149.7440100000003 3 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 168355.3998 12 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 1642618.77612 35 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 213764.6034 17 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 3207.5957 1 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 26477.9425 8 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 2514.54547 4 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 67369.38419 4 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 193405.0106 12 +Q8MSS1 Protein lava lamp 23.79 65 113 0 339481.13009 83 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 9146.1409 3 +Q8MSV2 Protein alan shepard 8.98 7 17 7 163591.04869999998 13 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 1261.13489 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 4782.84654 2 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 50937.28508 12 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 862589.99655 25 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 61823.09956 13 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 266280.1765 15 +Q8SY33 Protein Gawky 8.6 11 32 11 116960.94628999999 25 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 4690092.82146 67 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 605106.09582 14 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 14692.88207 5 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 7537.429 1 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 2443.33212 2 +Q8SZ63 Golgin-84 10.27 6 8 6 19802.266 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 274179.16686 12 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 11563.02395 4 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 500277.37753 32 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 673985.76185 42 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 3827.7725 2 +Q8T390 Endophilin-A 53.66 19 86 0 3506793.08332 76 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 146609.047 8 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 715368.53345 14 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 200907.13569999998 11 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 104092.6326 15 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 5139.85521 7 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 370000.22355 29 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 17511.8024 3 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 4061344.2977 112 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 6257890.58858 85 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 7369343.64 133 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 972841.5236099999 20 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 875699.3711999999 25 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 9508473.412969999 78 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 996107.1057 35 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 34670.71944 3 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 737865.96392 28 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 19290.36569 6 +Q94547 Regulator of gene activity 11.97 7 14 0 43182.4622 8 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 42066.895449999996 5 +Q94901 RNA-binding protein lark 48.01 19 52 19 258578.20199 39 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 14227.33653 4 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 33012.429509999994 9 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 27523097.35769 349 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 2250.136 1 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 121594.60103 8 +Q95029 Cathepsin L1 35.58 15 83 2 2269313.77093 68 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 591453.7265 21 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 73217.34615 3 +Q95RA9 GILT-like protein 1 30.8 7 22 7 1181152.9584000001 19 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 9318.00515 4 +Q95RI5 Failed axon connections 59.09 26 146 0 5801995.2686600005 134 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 6712.919 1 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 70773.1317 8 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 84828.36822 15 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 14569.943 6 +Q95T12 Calcium channel flower 21.13 4 8 4 25863.77967 7 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 21422.943919999998 6 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 14983.22245 4 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 47688.05542 12 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 22742.49346 4 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 255760.5116 19 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 56098.34719 11 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 44869.71225 7 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 5187.3034 2 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 1447.7909 2 +Q967D7 Protein turtle 4.18 7 14 0 74615.6897 10 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 134107.92888 23 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 24159.8062 8 +Q9GQQ0 Protein spinster 1.98 1 7 1 26906.567 6 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 3098822.83226 68 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 835.34054 2 +Q9I7D3 Caprin homolog 9.37 8 18 0 36339.41061 12 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 50377.49008 6 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 31880.644999999997 2 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 16074.7415 3 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 9087.121500000001 3 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 389609.08035 33 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 14102.64905 6 +Q9I7U4 Titin 2.4 43 56 0 132695.42327 44 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 24018.327299999997 4 +Q9NB04 Patj homolog 25.6 17 47 0 450249.7759 42 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 13465.18495 8 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 15120.52906 5 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 2332.421 1 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 44545.40143 8 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 20471.87314 4 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 50751.93556 10 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 8695.4189 2 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 11883.835219999999 4 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 2064386.27667 61 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 35075.07342 3 +Q9TVM2 Exportin-1 1.88 2 2 0 11547.932799999999 2 +Q9TVP3 J domain-containing protein 59.49 14 117 14 5337455.78134 103 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 219929.7725 14 +Q9U4G1 Protein borderless 16.97 10 26 10 348987.3077 22 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 100884.67850000001 12 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 94415.08194 15 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 709278.50387 16 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 7955.422100000001 2 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 120759.6555 6 +Q9U915 Adenylate kinase 2 75.0 21 56 21 1680891.89962 52 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 46289.35 2 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 200612.0572 14 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 151078.47915 15 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 50813.8334 8 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 11443.7231 3 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 2148.77 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 74182.97034 8 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 1226990.7007 30 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 24468.5468 7 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 2109433.568 34 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 23493.1524 3 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 253727.44245 16 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 192550.83259 19 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 76593.37306 7 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 2059531.4666 54 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 55456.88109 8 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 193382.97992 30 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 28085.9302 5 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 183614.6617 22 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 13114537.59806 129 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 48686.6604 11 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 39076.1762 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 7144.91456 2 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 119334.7707 12 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 27963.279039999998 7 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 857385.8271 31 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 38548.20126 8 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 143293.12387 13 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 335440.45540000004 8 +Q9V3Z2 Serine protease 7 13.55 5 15 4 58696.54215 11 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 77563.34721 18 +Q9V427 Innexin inx2 17.17 6 10 0 100838.4356 10 +Q9V429 Thioredoxin-2 66.98 6 56 6 4194268.39446 54 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 209436.58363 16 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 213080.20624 23 +Q9V447 Krueppel homolog 2 22.83 6 13 0 34946.07105 11 +Q9V496 Apolipophorins 33.18 114 349 0 12565919.52801 314 +Q9V498 Calsyntenin-1 1.74 2 2 0 1745.1968299999999 2 +Q9V4A7 Plexin-B 1.46 3 4 0 8508.73414 3 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 4867.9224 1 +Q9V4C8 Host cell factor 7.33 11 19 11 99211.0355 14 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 10643.49 1 +Q9V4N3 Cytochrome b5 47.76 6 36 6 738894.67915 30 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 59814.00393 8 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 61464.11719999999 6 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 4636.2625 2 +Q9V521 Phenoloxidase 2 15.35 11 21 10 97214.76454999999 17 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 276560.13899999997 15 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 2056.2551 1 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 10461.7461 3 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 231329.8086 15 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 1113263.43734 23 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 1070826.26763 28 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 14230.601 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 4003.0897 2 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 89020.88485 11 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 4632.9069 2 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 26151.464959999998 6 +Q9V6G5 Tafazzin 6.08 3 8 1 33220.42080000001 8 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 2149654.0096 61 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 55108.52975 6 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 32318.0873 3 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 33133.08967 8 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 19994.3956 6 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 1577809.51315 44 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 3024841.80865 94 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 544372.73873 34 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 44288.0299 5 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 41526.31016 8 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 4415.53556 3 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 930844.01397 31 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 2775917.38725 140 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 984097.81537 21 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 52809.19308 5 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 20431.7369 7 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 30877.832300000002 4 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 31425.31457 11 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 15814.029 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 3.07 1 1 1 415.95227 1 +Q9V9N4 Transcription factor Clamp 3.21 2 3 2 636.39716 1 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 7750.0770999999995 3 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 1021535.54516 35 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 23128.6515 7 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 248473.58593 17 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 16422.08686 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 9622.363 3 +Q9VA37 Protein dj-1beta 84.49 13 53 13 1713790.22678 37 +Q9VA70 Neutral ceramidase 2.41 2 3 0 8603.1034 2 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 3134321.27561 50 +Q9VAF5 Cadherin-99C 4.4 9 18 9 49935.61661 16 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 715582.03048 23 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 772346.3678 16 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 3298676.08174 42 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 50532.441900000005 5 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 773625.62871 50 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 35401.886230000004 9 +Q9VAW5 La-related protein 1 3.41 5 8 0 13906.392969999999 7 +Q9VAY3 Mitoferrin 7.65 3 7 3 19006.2494 7 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 29030.20295 6 +Q9VB68 Serine protease grass 12.2 5 13 5 44720.0534 8 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 41975.732500000006 5 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 10058.105 1 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 21925.823229999998 6 +Q9VBV3 Protein takeout 9.64 3 11 0 163950.59055000002 11 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 85279.09784 12 +Q9VBZ5 YTH domain-containing family protein 5.86 4 4 4 1144.1133300000001 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 10185.894 2 +Q9VC57 Atlastin 4.62 3 6 0 59375.4213 5 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 16294.2715 3 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 75657.5776 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 91495.38729 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 3994.186 1 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 3369.66204 2 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 109850.03700000001 13 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 189847.23434999998 21 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 4269.5522 2 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 213747.61299 18 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 154843.5962 10 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 8116.049 1 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 22296.83624 8 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 3938.0545 3 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 101505.425 9 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 84590.8882 8 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 11977.66576 5 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 6339.384050000001 3 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 73442.2244 7 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 74913.24833999999 12 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 17671.5891 5 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 37036.09786 6 +Q9VDL1 Esterase CG5412 15.41 4 11 4 49754.8342 8 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 25165.80807 7 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 67107.36643000001 13 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 14633.344 2 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 13824.885600000001 3 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 5.44 1 2 0 488.53668 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 10635.0785 3 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 2347.4282 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 3332004.50937 40 +Q9VER6 Modular serine protease 8.76 5 10 5 22245.430360000002 6 +Q9VET0 Neuropeptide F 30.39 4 12 0 88363.85289000001 10 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 1209142.23501 62 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 46422.3876 6 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 481947.76982 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 91105.5671 13 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 2638617.99413 53 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 339616.21312 24 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 10457.929 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 41300.193 4 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 393737.30473 32 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 24162.36657 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 5014.0435 3 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 4518.028539999999 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 11474.38813 4 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 43263.35454 7 +Q9VFM9 Twinfilin 22.74 7 13 7 45317.05034 10 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 44045.3111 5 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 24568.29056 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 36678.4445 6 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 130976.00439 15 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 35493.69084 4 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 6346.58044 4 +Q9VG55 Protein hugin 5.76 1 3 1 741.31714 1 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 211487.78167 10 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 2471.8049 2 +Q9VG76 Myc-binding protein 19.34 4 6 4 83360.37789999999 6 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 14376.0597 3 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 713012.0986 14 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 136955.014 4 +Q9VGG5 Cadherin-87A 5.72 11 18 11 55280.77534 12 +Q9VGP4 Importin-9 2.85 3 3 3 5974.9457 2 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 193558.85748 21 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 14272.437 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 22432.8496 4 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 3279.3437599999997 3 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 1734967.88975 31 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 321355.53896 19 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 34420.771 2 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 158551.49049999999 9 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 12443.529250000001 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 137448.7655 8 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 168205.7674 5 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 1254231.08912 18 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 5981.826429999999 3 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 7451.0464600000005 2 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 50488.8021 6 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 36550.7015 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 283192.7833 12 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 24663.85576 9 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 182812.34354 8 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 39603.5176 4 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 131424.7717 27 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 1638.8118 3 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 720353.63765 49 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 1988416.37168 39 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 13776.35137 4 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 471.10483 1 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 212660.31392000002 13 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 7964.2 2 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 9043.3567 2 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 52908.567800000004 7 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 166814.63640000002 14 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 9141.667 1 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 253498.28151 13 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 475058.18775 17 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 43182.1279 5 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 38633.3624 9 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 15899.8856 4 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 198587.32894 12 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 16755.6809 3 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 152857.90106 17 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 60270.462980000004 7 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 164544.10627 20 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 202101.69383 16 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 12900.9751 3 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 2414.0945 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 3049.3596 1 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 775.25885 1 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 24082.77264 4 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 138895.9505 11 +Q9VJL6 Glia maturation factor 5.8 1 3 1 3482.65882 3 +Q9VJQ5 Protein Dr1 8.2 2 4 2 5071.489729999999 2 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 248151.2366 12 +Q9VJY9 Protein Loquacious 11.61 5 9 0 30812.6031 4 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 6434.29198 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 300502.97524 27 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 1951.2598 1 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 1784.1316 2 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 85681.37448 15 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 12563.51553 6 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 19369.264600000002 3 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 18406.0115 3 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 14036.19234 5 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 25815.617000000002 3 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 3680.37 1 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 1328314.6896 33 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 1182010.21414 70 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 36775.426 2 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 59171.955279999995 9 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 144783.02145 12 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 183162.59535999998 16 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 130136.42719999999 5 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 264179.6966 7 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 9560.62643 3 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 878752.55336 25 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 52871.9242 3 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 151339.8812 5 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 5522.95866 3 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 8353.5488 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 14392.59646 5 +Q9VM71 5'-3' exoribonuclease 2 homolog 0.88 1 1 1 1940.0197 1 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 32156.1297 8 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 21928.056170000003 10 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 191092.7372 8 +Q9VMD9 Tiggrin 12.16 31 55 0 267088.19005 42 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 1510.5199 2 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 172364.0172 15 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 6668.641680000001 3 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 58659.635 3 +Q9VMR8 Protein Turandot M 30.53 3 5 0 197624.38270000002 5 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 98766.71421 16 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 59321.4587 9 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 16287.0957 8 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 399094.98838 22 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 5127.46 1 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 6257.6813 3 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 17132.50655 7 +Q9VMY9 Guanine deaminase 8.93 4 6 4 38053.7759 4 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 5621.310739999999 3 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 122565.9708 10 +Q9VN14 Contactin 17.77 24 48 24 395823.24809999997 37 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 14849.0655 4 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 44675.999639999995 10 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 131050.0589 9 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 482843.80775 37 +Q9VN93 Cathepsin F 23.62 16 36 13 992081.6481300001 32 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 173797.97515 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 837.4738 1 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 294212.587 4 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 242534.0526 14 +Q9VNE2 Protein krasavietz 22.04 12 30 12 352588.1702 22 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 274352.6537 10 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 10962.613449999999 4 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 23131.7951 5 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 54251.0669 12 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 51903.709299999995 2 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 17826.5946 3 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 50905.9757 7 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 22357.8716 3 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 3673535.83586 41 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 677503.8603 21 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 60285.78404 9 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 17301.68504 7 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 74662.19753 6 +Q9VQC4 Glycerate kinase 13.14 9 14 0 106817.3231 13 +Q9VQF7 Bacchus 38.16 4 21 4 462649.01193 19 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 354482.88190000004 24 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 299771.0354 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 51438.339100000005 6 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 238580.12615 19 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 2304.3655 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 7052.166800000001 3 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 17906.72596 2 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 42160.0449 3 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 101666.53276 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 2029.8055200000001 2 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 127915.18043000001 5 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 17694.97015 7 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 12946.390640000001 5 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 32847.82619 6 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 69754.54143 7 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 520959.6089 13 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 31681.53 3 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 1993085.77311 73 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 78925.1326 9 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 2273.902 1 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 34250.01049 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 24994.6974 6 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 3001558.5167300003 56 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 5204.89495 2 +Q9VSS1 Protein Pixie 5.56 4 4 4 26176.048799999997 3 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 72162.46691999999 12 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 33994.91136 8 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 786949.32213 48 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 172349.97242 18 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 3182.728 1 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 15443.058500000001 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 24473.892 2 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 248862.40216 15 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 54066.572060000006 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 163866.2095 6 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 10149.0564 2 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 28971.017 3 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 78034.1222 9 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 1022404.2951699999 31 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 68605.99021999999 12 +Q9VTZ5 Transferrin 2 17.95 16 27 16 154605.0365 19 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 127969.27891 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 264936.108 2 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 6359089.31121 85 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 287805.0514 29 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 20355.1527 5 +Q9VU84 Drebrin-like protein 12.99 8 24 8 252271.32552 20 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 111082.2487 10 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 30160.5625 6 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 1150875.5643 29 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 64697.02244 11 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 538905.49856 36 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 7308.334 1 +Q9VV36 Retinin 31.94 8 155 8 3276032.99625 91 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 726257.75835 43 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 428962.65356 30 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 10559.2831 3 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 7385.16495 4 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 484520.38214 30 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 37602.85737 6 +Q9VVE2 Protein rogdi 26.49 7 15 7 259738.12896 11 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 38217.219 7 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 11002.81324 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 967012.5399300001 13 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 23639.75024 6 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 435498.52412 21 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 17935.75905 3 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 46843.10653999999 4 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 25064.95674 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 40279.22984 7 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 11998.077220000001 6 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 365062.11137 16 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 28233.61402 8 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 176412.4533 12 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 249581.90089 23 +Q9VWA1 Clathrin light chain 41.55 12 58 0 1838924.8418999999 51 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 25493.7424 6 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 25935.012300000002 3 +Q9VWE0 Cytokine receptor 0.78 1 2 1 1753.1338999999998 2 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 224042.31780000002 14 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 16207386.343319999 165 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 808015.813 19 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 75407.29115 19 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 14479.004799999999 4 +Q9VWU1 Serine protease persephone 8.88 4 6 4 54661.6155 5 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 8606.2883 2 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 15975.582099999998 3 +Q9VWX8 Frequenin-2 37.43 8 52 3 1214956.97859 38 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 11602.5085 2 +Q9VX10 Sulfiredoxin 11.73 2 4 0 12257.2768 3 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 404291.252 16 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 640052.8243 34 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 34827.3888 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 152862.79080000002 9 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 25579.262000000002 5 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 12300.669670000001 3 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 811467.39727 66 +Q9VXG4 Annexin B11 23.68 14 41 14 666924.09 38 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 141891.66999999998 16 +Q9VXK0 Protein NipSnap 9.89 3 16 0 178991.04313 13 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 109455.29389999999 12 +Q9VXN2 Protein stunted 81.97 6 16 6 317135.22829999996 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 51568.1933 9 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 70574.5704 5 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 77322.60956 7 +Q9VXY0 Probable cytochrome P450 4s3 2.83 2 4 2 561.3729 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 735612.7059 22 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 30276.5221 5 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 4531.19865 4 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 160404.67940000002 7 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 39893.4645 3 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 8561.3582 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 478570.13665 9 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 15704.6929 2 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 8263.299500000001 2 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 20054.8283 5 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 96633.07433999999 12 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 24015.456599999998 2 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 8123.646200000001 3 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 47937.347499999996 7 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 35728.3942 5 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 718638.09156 34 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 19628.736399999998 3 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 35805.24 1 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 246039.05836999998 17 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 107072.01933 12 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 899870.31802 29 +Q9VZ35 Protein Vago 5.0 1 1 1 746.2142 1 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 32305.111899999996 4 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 472322.31437 22 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 362458.83971 17 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 59538.223 8 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 26755.6517 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 9456.31198 4 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 3219.263 1 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 26581.93066 3 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 9180.885479999999 4 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 18325.5554 3 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 74742.9253 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 158208.2632 9 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 476692.96096 30 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 2882323.72108 66 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 239753.6667 16 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 28620.2438 2 +Q9W032 Protein ecdysoneless 5.12 4 4 4 2196.10354 2 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 889630.06796 47 +Q9W074 Protein HBS1 4.33 3 4 3 6445.18104 3 +Q9W0A0 Protein draper 9.6 8 20 0 43103.54904 12 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 1105766.9249 28 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 8508.1699 2 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 21247.0457 8 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 65677.61363 9 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 2865.6506 1 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 313759.59278 12 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 113697.99208 19 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 188271.30503000002 13 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 3251.03555 3 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 2561823.35772 50 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 99167.94473 8 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 3030.2144 1 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 17541450.53234 93 +Q9W1G0 Probable transaldolase 48.04 12 51 12 2410423.1024 45 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 39648.909 3 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 62078.2001 5 +Q9W1K5 Sestrin homolog 6.84 4 7 0 39270.26104 5 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 70776.5961 8 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 9859.88315 4 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 105635.5244 11 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 51516.0355 9 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 131176.2938 11 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 2687903.6868 56 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 94272.8555 9 +Q9W266 Protein windpipe 20.68 10 31 10 194678.32218 24 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 523898.50952 20 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 69170.24799999999 6 +Q9W2E7 Protein Rae1 11.56 4 11 4 438908.04904 10 +Q9W2M2 Trehalase 29.36 16 47 0 519578.52757 39 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 18891.8653 2 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 1869.2877 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 48599.41405 10 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 21303.956599999998 5 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 3188930.9705499997 70 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 614020.26196 23 +Q9W358 Chaperone Ric-8 10.65 7 8 0 13397.2549 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 2448927.16088 69 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 33350.66204 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 439824.71666000003 9 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 45271.0543 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 22096.62278 7 +Q9W3E2 Protein PIP82 19.83 23 56 23 129098.29895 34 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 52973.90821 15 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 32771.8908 6 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 52118.757 7 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 119192.215 5 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 171344.3019 5 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 3492.347 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 9440.91855 2 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 18280161.35587 182 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 37791.989799999996 3 +Q9W436 Neprilysin-1 4.24 4 4 4 23747.869599999998 4 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 59501.89011 9 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 93771.65815999999 13 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 1087697.81587 24 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 131531.46884 18 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 54502.625499999995 7 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 246185.15727 18 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 63233.661 4 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 1174311.00963 158 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 28086.6768 2 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 135718.62953 22 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 227743.85761 9 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 5912.5875 2 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 193597.57877 13 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 4186.7669 2 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 962414.03362 59 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 36603.570700000004 2 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 1627.8987 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 560664.425 3 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 506935.39818 27 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 59475.876899999996 7 +Q9XZ14 Protein gone early 4.44 4 4 1 11811.98 1 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 70984.82094 7 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 352913.8952 21 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 351407.59656 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 361727.99354 31 +Q9XZL8 Protein sarah 34.25 7 12 0 100895.50471 9 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 3086.1328 1 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 7227.06116 6 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 33535.4918 5 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 933385.24044 24 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 329282.3453 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 1341586.2893 16 +X2JAU8 Protein nervous wreck 29.3 30 114 30 1798055.173 100 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 12135.61575 7 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 23858.446239999997 3 +A0A0B4JCR9 Uncharacterized protein, isoform D 5.04 2 2 0 993.12987 2 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 192633.93554 22 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 257769.65899999999 6 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 40404.70987 10 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 2793.2495 3 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 2892829.61717 118 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 11131.41783 5 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 23002.4216 4 +A0A0B4JD47 Missing-in-metastasis, isoform E 4.61 4 4 0 472.37415 1 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 8946.93687 2 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 223776.13348000002 25 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 63501.9421 10 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 23381.26659 9 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 280474.03441 35 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 5253420.13635 161 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 22282.69005 6 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 30730.443300000003 4 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 262038.76495 33 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 54982.72586 8 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 27699.34176 5 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 72405.74976 12 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 82599.3655 12 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 6648.99036 2 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 93323.075 12 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 7009.08782 3 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 4837060.86849 130 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 150620.98628 21 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 26430.616500000004 4 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 16302.22993 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 18475.34318 3 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 6352.801 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 2355664.26598 41 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 60808.6976 5 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 2.19 5 5 0 761.25423 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 661882.90159 49 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 9908.51547 8 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 191712.28068 28 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 36171.31628 9 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 32451.20243 12 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 14931.2133 4 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 174470.7723 14 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 174352.515 9 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 268210.24924000003 46 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 20635.5274 8 +A0A0B4KEJ7 Coronin 17.01 9 17 0 90153.40254000001 14 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 17548.377099999998 5 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 2730.2646 1 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 8350.2451 3 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 24735.102 1 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 134256.74258 31 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 2917.1142 2 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 9558.19756 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 12707.384269999999 5 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 197335.97796 14 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 41877.518800000005 10 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 5821.2403300000005 4 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 1238881.08677 36 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 37428.6207 6 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 2819983.7653300003 81 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 35245.01314 11 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 177618.1711 18 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 444132.74275000003 12 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 98470.74811999999 10 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 11011.7059 6 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 82208.63776 9 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 40193.2537 9 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 10791.4187 4 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 13544.3678 4 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 5192.924400000001 2 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 82855.94427 8 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 34765.20156 8 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 13669.5407 3 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 42395.7546 7 +A0A0B4KGF7 beta-mannosidase 2.65 3 4 0 1680.363 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 220711.96006 20 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 843468.79482 21 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 484635.98289 44 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 40149.9962 3 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 1649.013 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 151402.93778 11 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 669.9483 1 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 36798.41661 10 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 10289.363 2 +A0A0B4KH34 Annexin 67.9 22 147 2 7882693.76377 127 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 11628.502 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 11979.46285 4 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 261896.7107 22 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 106913.8167 17 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 46271.2412 5 +A0A0B4KHF0 Ferritin 77.97 20 130 1 8271337.43439 106 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 13560019.04992 202 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 150694.966 8 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 9328.77215 2 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 22692.78923 6 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 108028.62006 12 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 136228.11428 20 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 110425.3933 4 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 16707.850300000002 5 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 26687.0019 2 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 32529.676850000003 7 +A0A0B4KHW7 Uncharacterized protein, isoform P 2.81 1 1 0 959.5469 1 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 1829.6893 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 1496366.10527 47 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 1146411.88565 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 13997.563 1 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 2627.73375 2 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 3.7 1 1 0 509.56314 1 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 6691.8452 2 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 6309.2818 2 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 335096.66588 25 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 380827.28898 37 +A0A0B4LF95 glutaminase 7.29 4 9 0 70673.2015 7 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 603195.87477 33 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 174170.57091 17 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 47081.4377 8 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 19120.25057 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 4248.81924 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 2014.1926 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 239027.42106 19 +A0A0B4LG34 Liprin-gamma, isoform E 2.4 3 3 0 411.0491 1 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 28999.05665 8 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 36580.70985 4 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 41565.06647 9 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 822187.77879 55 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 129310.19514 12 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 12552.3991 4 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 474577.46624 28 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 41834.41691 9 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 2479884.90045 50 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 7578.211 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 37298.77605 7 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 540815.0418 51 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 3559.4298 2 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 8703.4518 3 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 32075.0811 3 +A0A0B4LHL1 Uncharacterized protein, isoform C 1.96 1 2 0 773.6438 1 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 79439.68334 13 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 5080.513 1 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 17495.741739999998 5 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 13136.0433 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 3166.267 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 138312.57168 25 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 12247.718 1 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 4353.3952 2 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 305339.92191 44 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 9382.6953 3 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 33184.5433 5 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 89116.30354 11 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 400.25568 1 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 188351.883 14 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 13407.16307 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 10276786.89303 119 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 100579.10944 13 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 49230.6682 4 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 6813.3957 3 +A0A1Z1CH25 AT27361p 7.62 4 4 3 8619.35212 3 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 215073.59167 11 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 2385.0738 2 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 5088136.16405 134 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 30964.299329999998 16 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 110071.56210000001 13 +A0A4P1SAA7 IP07559p 11.17 2 3 0 15194.5396 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 2586.02017 3 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 280801.0166 48 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 65403.73117 9 +A0A6H2EEJ8 Uncharacterized protein, isoform C 3.44 3 3 0 457.81403 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 17188.3186 3 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 2935.87145 3 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 6559249.36283 320 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 3766.8773600000004 2 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 1227091.2255 22 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 14422.43508 4 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 5944.233749999999 2 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 18003.184 1 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 13801.1308 3 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 3274.5608 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 25684.995600000002 6 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 4734110.3860599995 300 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 682395.5532900001 40 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 976002.2933199999 35 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 178307.29336 20 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 248179.29461 16 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 105893.0695 7 +A1Z6F6 FI18602p1 9.08 8 14 0 140956.88476000002 12 +A1Z6G9 FI18173p1 9.04 3 5 3 17154.3658 5 +A1Z6H4 RE52822p 6.86 4 9 0 24301.26224 6 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 25804.23255 12 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 4807.1797 1 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 96184.70062 10 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 217143.90072 19 +A1Z6R7 FI21445p1 33.57 9 21 9 62759.93196 16 +A1Z6V5 FI01422p 37.15 14 45 14 679035.27169 40 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 343552.79746000003 10 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 47262.5643 9 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 28748.788800000002 6 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 1476.5658 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 9162.09388 7 +A1Z7B8 GEO08456p1 12.66 2 6 2 54840.4633 5 +A1Z7G2 MIP13653p 13.39 2 8 2 318058.24600000004 5 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 194922.53606 17 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 28860.1525 5 +A1Z7K6 FI20236p1 5.61 3 7 3 43195.478 7 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 109222.4077 15 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 4645.0505 2 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 56654.456600000005 9 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 628972.51722 55 +A1Z7V9 FI20020p1 2.74 2 4 1 15875.57404 4 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 17185.488 1 +A1Z7X8 FI02944p 15.34 6 12 6 158737.2499 10 +A1Z803 FI02892p 31.76 12 29 12 430269.21326 26 +A1Z843 Nodal modulator 3 9.17 12 20 12 131394.8438 17 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 694533.82098 30 +A1Z871 CAP, isoform B 10.27 19 36 0 89947.98024 6 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 3407042.43829 57 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 19046.8163 4 +A1Z8G7 FI09243p 16.53 2 4 2 2803.7635400000004 2 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 5328265.27905 62 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 57323.22637 5 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 7046.9895 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 4968.10847 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 41280.53798 3 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 652127.5025000001 10 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 702711.43575 13 +A1Z933 GEO02273p1 22.09 2 3 2 14878.717499999999 3 +A1Z934 SD19268p 36.45 11 34 11 324291.79024 26 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 10997.695 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 145974.92853 26 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 38383.6558 7 +A1Z9B5 IP16508p 15.06 3 7 3 50120.206999999995 7 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 3436332.32007 56 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 363663.8415 22 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 170541.06419 41 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 211201.3035 8 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 58297.471560000005 12 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 409393.152 3 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 16591.506699999998 4 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 8050.00826 2 +A1ZA23 FI18007p1 26.91 10 31 10 234140.67117 27 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 4732.8517600000005 2 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 70045.7621 7 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 139977.4309 12 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 10660.8316 3 +A1ZAH3 FI16515p1 3.28 2 4 0 3576.68416 3 +A1ZAK3 Protein DEK 5.4 3 5 0 14928.1524 4 +A1ZAL1 lysozyme 30.43 5 6 5 57761.1182 4 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 711.9509 1 +A1ZAU4 RH39096p 50.95 16 45 0 2756966.6316 40 +A1ZB23 IP19117p 16.06 4 12 4 108912.29964 10 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 1709.1704100000002 2 +A1ZB68 FI01423p 33.18 8 25 8 345225.68105 19 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 801807.348 32 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 9667.48328 2 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 212001.93818 14 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 3775.97274 4 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 1226053.20606 36 +A1ZBA5 FI07234p 7.22 2 3 2 34613.569 3 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 22490.70433 4 +A1ZBD8 Mucin-5AC 3.57 5 9 5 4312.41398 6 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 319029.51436 27 +A1ZBK7 Crammer 58.23 4 13 4 241596.5108 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 704.89453 1 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 215075.26514 12 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 161415.02972 21 +A1ZBU5 GNBP-like 3 27.63 3 9 3 102974.2978 8 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 33233.793699999995 3 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 1463893.22348 38 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 4101.00853 3 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 302116.08011 43 +A1ZBX6 lysozyme 3.91 1 2 1 660.6334 1 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 1204.8597399999999 2 +A2VEG3 IP16294p 3.06 3 5 0 10385.509399999999 4 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 97908.82876 9 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 465381.31978 37 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 37521.71791 7 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 314848.48656 23 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 1823842.742 68 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 2374561.87283 119 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 1713101.03858 51 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 79836.65589 9 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 33490.85654 8 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 1312990.9849 12 +A8DYD1 Combgap, isoform L 13.26 10 20 0 126147.21418 14 +A8DYI6 Prohibitin 66.27 22 89 3 2697522.61112 70 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 216017.76859 24 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 52971.177990000004 16 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 41685.70384 10 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 15776.290070000001 5 +A8DZ06 Stolid, isoform J 10.24 13 34 0 285174.41324 27 +A8DZ14 FI17828p1 20.1 9 32 3 281288.16468 23 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 98812.526 7 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 6568.3164 1 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 189456.25021 36 +A8E6W0 IP19808p 25.25 5 9 5 64458.8282 9 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 18215.9678 4 +A8JNJ6 Karst, isoform E 1.54 8 8 0 7624.3929 2 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 7951.17587 3 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 43344.546200000004 6 +A8JNP2 arginine kinase 72.53 37 429 2 921613.62121 16 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 25223.69498 5 +A8JNS4 Starvin, isoform E 11.81 7 10 0 26654.03225 8 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 13931.18044 4 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 68829.36869999999 6 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 37975.244060000005 9 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 7416.096410000001 3 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 22312.2573 5 +A8JQW3 Pinin, isoform B 20.2 7 10 0 65636.4715 9 +A8JQY2 Uncharacterized protein, isoform C 1.38 1 1 0 2170.042 1 +A8JR01 Kramer, isoform I 3.4 9 12 0 16623.14702 8 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 86827.7855 6 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 59896.50078 14 +A8JR58 Hadley, isoform B 2.02 1 1 0 5884.4404 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 3262886.46343 92 +A8JRH3 FI20012p1 60.08 25 75 1 2398096.74829 65 +A8JTM7 Megalin, isoform A 4.53 24 37 24 160198.67145 27 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 70835.32176 10 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 8024.30174 3 +A8JUZ6 MIP03678p 7.28 3 4 0 33689.8029 4 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 14050.07332 6 +A8JV09 Coronin 1.67 2 2 0 4091.9216 1 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 601884.80453 25 +A8WH76 GEO10024p1 51.85 4 15 4 509725.4473 13 +A8Y4V5 FI20903p1 8.21 2 3 2 3324.45934 2 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 32836.1581 3 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 3336840.27548 18 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 3761.1816 1 +B7YZH1 FI20143p1 6.47 4 6 0 10519.04545 5 +B7YZN0 Syndecan 17.81 10 24 0 72124.49877 20 +B7YZN4 GH02741p3 49.23 4 6 4 15895.9008 6 +B7YZN8 GH02741p1 22.37 2 5 2 28251.9145 5 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 64997.44105 12 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 4848069.84011 58 +B7YZV2 Phosphodiesterase 6.31 7 15 0 27847.28341 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 166501.38594 22 +B7Z001 Fatty acid synthase 21.46 50 93 0 844637.1124399999 77 +B7Z002 Kismet, isoform C 0.6 2 2 0 1173.74604 2 +B7Z005 Drongo, isoform I 9.14 5 11 0 27427.19717 7 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 3827.63835 2 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 5298.0643 4 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 13093.0798 3 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 7892.085440000001 4 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 71877.18936 5 +B7Z0C9 GH15104p1 41.05 4 6 4 31815.470260000002 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 8574134.61944 137 +B7Z0M0 FI17308p1 18.85 2 3 2 14656.9157 2 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 4717.13797 3 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 83064.59469 17 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 102123.72236 12 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 14309.31914 6 +B7Z107 GH09380p1 52.17 5 7 5 24824.46155 6 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 10308.404989999999 5 +C0HDP4 MIP05618p 3.77 2 2 0 15309.1295 2 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 1155248.87547 32 +C7LAG1 CoRest, isoform G 3.76 3 4 1 521.72046 1 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 902827.7518600001 57 +C9QP70 MIP12608p 15.85 2 3 2 38476.9973 3 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 747939.19184 28 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 302259.92532 17 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 20437.92247 8 +D0Z756 MIP14966p 32.93 13 33 0 1540224.19896 28 +D1YSG0 Bent, isoform F 6.65 59 74 0 385405.15443 61 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 135838.97095 12 +D3DMM0 MIP15702p 15.28 8 15 0 113524.6525 12 +D3DMM4 MIP15217p 30.28 24 95 0 1490953.61356 80 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 135894.22384000002 8 +D5SHT6 MIP21537p 4.99 3 4 0 29623.999300000003 4 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 24645.908799999997 3 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 24659.99813 7 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 314040.24038 31 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 93028.60202 12 +E1JGR3 GEO02620p1 24.62 3 5 3 5494.9475 2 +E1JGY6 Hulk, isoform F 13.33 23 31 1 564966.4333500001 28 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 109131.27927 17 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 22268.001500000002 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 2247.2903 1 +E1JH90 Patronin, isoform F 1.38 2 2 0 361.799 1 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 590314.94793 73 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 44792.4891 6 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 7282.63 1 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 21395.129 1 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 52891.959 8 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 46217.87965 7 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 126530.64814 18 +E1JHP9 Galectin 4.06 2 4 0 11862.532360000001 3 +E1JHT6 Reticulon-like protein 18.12 11 35 0 957757.07595 30 +E1JHT9 Reticulon-like protein 24.77 6 24 0 6358.1312 2 +E1JI40 Vermiform, isoform I 13.51 7 15 0 211749.9812 15 +E1JI59 Schizo, isoform D 2.87 4 5 0 2999.79087 3 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 48888.458900000005 6 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 21510.487139999997 3 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 48597.7768 4 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 26392.629 1 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 16861.6759 3 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 13553.760900000001 4 +E1JIY8 L antigen family member 3 20.72 3 8 3 64267.7561 6 +E1JJ33 Complexin, isoform U 65.73 9 79 1 4134225.1163500003 72 +E1JJ60 Uncharacterized protein, isoform M 28.44 5 18 1 453.63098 1 +E1JJA4 Dynamin 27.41 28 73 0 617757.04425 64 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 888.676 1 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 3550.0128999999997 2 +E1JJG5 Phospholipase A2 13.81 3 3 1 3883.3532 2 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 1305680.13823 84 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 18642.42493 7 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 141786.8083 13 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 8255.593 1 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 555051.61262 57 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 4237.8296 1 +E2QD54 Natalisin, isoform D 4.7 3 5 0 5472.4086 4 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 94092.25016 12 +E2QD98 Protein PALS1 7.62 16 28 0 208173.62484 24 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 36401.32392 13 +E8NH67 Asperous, isoform B 51.14 19 129 0 1922316.38269 95 +F0JAP7 LP18071p 23.14 6 10 0 7652.2818 6 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 28331.6677 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 3034719.66899 129 +H1UUB1 GEO12465p1 55.04 6 25 1 284018.62267 20 +H8F4T3 Regucalcin 32.35 6 11 0 320715.98243000003 11 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 29042.0614 4 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 3550.1281 3 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 827195.83125 27 +L0MPN7 Asator, isoform H 12.15 13 25 0 108110.64018 21 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 85630.52348 27 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 2464.007 1 +M9MRX0 Limpet, isoform J 26.49 29 95 0 1966552.90524 81 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 212712.46753999998 66 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 157614.97663 9 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 36379.25377 11 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 44099.469000000005 2 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 2075.9424 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 716297.56453 25 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 796675.2191199999 19 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 1018331.39727 49 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 3255.93401 3 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 20699.98544 6 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 71903.25704 9 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 296685.40147 15 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 62922.57166 17 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 160781.36355 21 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 76742.81299 16 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 10035.426200000002 3 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 47466.45314 11 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 13106377.41456 444 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 22035.175300000003 5 +M9NDE0 pantothenate kinase 6.54 3 6 0 15543.08516 5 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 67609.6165 12 +M9NDS9 chitinase 2.56 12 16 0 54000.30130000001 15 +M9NDX8 Neurabin-1 4.11 8 9 0 15716.50285 5 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 23952.56639 10 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 58086.368 7 +M9NEF2 Histone deacetylase 4.43 4 4 0 7089.436000000001 2 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 4040.2861 2 +M9NEW0 LD39232p2 43.33 7 15 7 204324.85455 12 +M9NEX3 Cytochrome b5 57.55 6 20 0 1160559.43686 16 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 48778.63386 6 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 12954.584340000001 3 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 96629.51618 8 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 47396.52624 12 +M9NFC0 Troponin I 48.74 15 55 5 429094.0344 11 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 39702.282999999996 2 +M9NFH3 Lasp, isoform D 27.3 8 30 1 15545.608 1 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 170739.40967 19 +M9NH07 Upheld, isoform N 48.73 30 148 0 8163750.82356 134 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 101581.57617 24 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 98355.4841 6 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 7340.2508 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 666654.52879 38 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 2742.4244 2 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 101284.293 2 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 21951.2416 3 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 2238183.45758 153 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 4465.57194 2 +M9PBM3 Cysteine protease 6.34 2 4 0 20255.3697 2 +M9PBN2 Apolipoprotein D 29.39 7 23 0 844203.93861 20 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 182198.67477 18 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 1154.3454 2 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 28996.825599999996 4 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 103923.30877999999 13 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 402121.81777 24 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 10214.37586 7 +M9PBW9 Rhea, isoform G 5.83 17 26 0 126446.75601 22 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 148662.95187 15 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 19335195.47091 150 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 8453.1489 2 +M9PC74 Reticulocalbin-3 17.11 6 19 0 185463.65124 18 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 64340.0663 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 21508.2193 3 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 7047.61722 9 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 58945.57139 16 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 145662.15385 22 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 25585.9006 6 +M9PCT7 Bunched, isoform O 18.75 4 11 1 1615.8674 1 +M9PCU0 FI21215p1 26.43 30 64 1 299.95856 1 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 148756.8836 11 +M9PD73 TEP1-F 20.6 32 69 0 1128647.27862 58 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 473183.01213 24 +M9PDB2 Varicose, isoform E 8.51 6 10 0 34051.48685 9 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 271472.54209 26 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 1988.8734 1 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 20147.757999999998 6 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 934.42535 1 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 22197.6653 6 +M9PDU4 Acyl carrier protein 18.23 4 33 2 3458923.97921 31 +M9PDV2 Tetraspanin 6.97 2 3 0 7743.3153999999995 3 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 302300.54192 55 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 145083.6393 12 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 4801931.26877 44 +M9PE32 Fife, isoform D 12.79 17 34 1 88140.79819 27 +M9PE35 RabX6, isoform B 6.76 2 3 0 13881.163 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 7.42 3 3 0 947.98584 1 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 8149.6721 4 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 27167.2109 9 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 21502.791 4 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 12288.1972 3 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 69591.8441 5 +M9PEC1 IST1 homolog 16.75 7 17 0 127100.02034 14 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 176666.31966 20 +M9PEG1 Uncharacterized protein 36.6 17 48 17 974416.6669899999 43 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 2158793.33553 303 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 22923.68502 7 +M9PEL3 Quemao, isoform C 38.04 11 22 0 157894.84482 18 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 61698.25265 11 +M9PET3 Simjang, isoform D 3.57 3 4 0 5782.1597 3 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 3232.62386 2 +M9PF16 Spectrin beta chain 24.44 61 168 3 1510289.53383 145 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 385276.38538 32 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 15070.36668 5 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 16128.0799 7 +M9PFH7 Tartan, isoform B 5.99 5 7 0 30669.536200000002 6 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 883.6631 1 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 45827.1867 9 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 6021.20946 4 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 52942.3154 4 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 4571.46615 5 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 132140.3013 14 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 117380.58613 18 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 99203.28913 9 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 11569651.00369 204 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 16627.0046 5 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 49350.249599999996 5 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 146657.83869 10 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 11437.2485 3 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 132769.5865 25 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 30488.600100000003 7 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 224068.16590000002 29 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 325371.87866 30 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 64001.000909999995 14 +M9PHX2 Visgun, isoform E 8.78 2 4 1 20387.59494 3 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 6205.906300000001 4 +M9PI33 Inositol oxygenase 7.27 3 4 0 82062.854 3 +M9PI51 Dual specificity protein phosphatase 15 6.04 3 4 0 349.50714 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 6809.223870000001 2 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 6675.1986 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 21645.7235 2 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 930.0519 1 +M9PJQ5 Troponin I 47.28 13 65 0 233642.99109999998 14 +O15971 LD39986p 26.96 6 30 3 67165.81049999999 6 +O16158 Calcium-binding protein 50.0 8 32 8 1684751.2710600002 27 +O17452 LD20793p 37.83 7 35 4 1316657.52943 25 +O18332 FI01544p 72.2 13 63 11 1121595.06264 46 +O18335 Rab11 53.27 13 69 13 2109556.45671 61 +O18336 Ras-related protein Rab-14 24.65 6 18 0 64396.173500000004 12 +O18338 LD44762p 27.05 6 31 0 13472.138299999999 2 +O44226 Elongin-B 91.53 9 34 9 575960.24445 26 +O44434 QKR58E-3 12.62 4 6 3 20152.3985 3 +O46052 EG:152A3.3 protein 18.87 6 8 3 60152.016 6 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 503225.00984 45 +O46079 Protein KTI12 homolog 13.04 4 11 3 18372.9696 6 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 1546.3736600000002 2 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 32165.35775 6 +O61604 Fimbrin 32.34 22 67 3 1241234.17945 60 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 68829.4927 14 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 16099.5194 9 +O76521 Importin subunit alpha 9.21 5 12 5 71044.24875 10 +O76752 Sepiapterin reductase 27.2 7 26 7 136149.277 18 +O76877 EG:132E8.3 protein 10.62 2 5 2 35957.7031 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 2058312.5352 24 +O77259 EG:115C2.5 protein 9.0 2 2 0 19434.231 2 +O77425 Ribokinase 8.88 3 7 3 25176.65868 6 +O77430 GEO01111p1 62.96 11 37 10 436562.45582000003 35 +O77434 EG:34F3.8 protein 28.91 5 19 1 69463.97474 11 +O77477 LD24471p 20.94 9 15 9 72846.63718 12 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 214916.87176 8 +O96692 small monomeric GTPase 12.09 2 6 0 19429.1012 3 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 89078.93134 13 +O96880 General transcription factor IIE subunit 1 2.33 1 1 1 554.28516 1 +O97059 Ccp84Ab 19.91 4 8 0 66280.14362 8 +O97062 Ccp84Ae 34.13 6 26 6 137825.36889 15 +O97064 Ccp84Ag 25.65 4 10 4 54467.49197 8 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 6736.96205 4 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 2284488.54948 32 +O97111 LD29223p 7.41 3 5 3 18762.61726 5 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 8230.254 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 29090.794 2 +O97365 BM-40 31.58 9 14 9 230288.50900000002 13 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 1747674.52196 40 +O97428 Ciboulot, isoform A 13.95 2 4 0 21614.474700000002 2 +O97454 Protein BUD31 homolog 13.89 2 3 2 3178.6382 1 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 136140.03456 17 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 4803.3878 2 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 6530714.91913 75 +P92181 Cuticle protein DCP2 36.7 3 15 3 89495.02655 8 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 33617.45374 3 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 1648683.59123 71 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 123330.30019 12 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 59887.46235 9 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 7857.824699999999 2 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 1202800.6475799999 120 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 8904.82625 2 +Q0E8P5 FI05614p 9.28 5 12 5 312315.27982 10 +Q0E8S7 Homer, isoform E 37.66 18 48 3 780989.66943 43 +Q0E8U4 FI09636p 15.33 6 8 6 41925.5656 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 1025216.92062 22 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 37230.57587 6 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 931611.67795 38 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 497161.11893 22 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 225933.64479000002 22 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 3764.584 4 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 480264.64727 64 +Q0E9E6 RE33655p 1.32 1 2 1 4420.249 2 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 181387.6877 12 +Q0E9G4 CG1600-PA 12.6 3 4 0 6146.084 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 162635.48584 14 +Q0KHR7 Septin 18.74 8 17 0 217407.17557 17 +Q0KHX7 FI18193p1 6.31 8 11 0 47480.830350000004 10 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 5791911.70804 144 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 51128.0035 7 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 41346.50013 16 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 288666.4867 28 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 15007.39092 6 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 55314.7753 6 +Q0KIB0 Sidestep III 2.61 4 5 4 11120.0221 2 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 6826.312199999999 5 +Q1RL12 IP16413p 60.25 16 101 1 79533.77 1 +Q24090 GH08712p 14.05 6 9 6 35164.1774 8 +Q24253 AP complex subunit beta 19.76 16 31 16 219955.93828 29 +Q26459 EN protein binding protein 13.32 8 16 0 53663.77686 13 +Q29QY7 IP15859p 9.86 1 1 0 10942.886 1 +Q2MGK7 GEO13330p1 26.77 4 11 4 102558.9059 10 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 3077.8684 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 11445.5693 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 7505103.3567699995 121 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 13518.43274 5 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 426956.5712 11 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 8256.4327 5 +Q4QQ49 IP09595p 3.04 1 1 1 2236.6252 1 +Q4QQ70 IP09819p 16.08 7 13 7 98565.29952999999 9 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 39428.2589 5 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 31621.0109 5 +Q4V619 IP07950p 6.9 2 2 0 6744.89 1 +Q4V625 lysozyme 6.75 1 2 1 24460.777 1 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 166842.05039 11 +Q500Y7 GEO11443p1 89.47 4 15 4 1242844.87753 14 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 23458.037 5 +Q59E01 FI02065p 5.58 4 7 0 5542.04802 4 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 15236.4017 2 +Q5BIA9 RE10908p 2.72 2 2 2 21438.65297 2 +Q5LJT3 MIP01391p 17.0 3 3 3 111446.64199999999 2 +Q5U124 alpha-glucosidase 16.51 11 24 0 507855.648 21 +Q5U126 GEO11286p1 59.42 7 36 7 1717397.16216 32 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 44181.05395 6 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 35892.825 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 501511.08654 18 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 32344.7102 3 +Q6IGN6 HDC05827 11.36 2 8 2 62996.111300000004 6 +Q6IGW6 GEO13367p1 44.23 2 4 2 44290.663 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 1353198.215 16 +Q6IL43 GEO11093p1 27.71 2 6 2 77858.7972 5 +Q6NL44 GH28815p 16.11 6 12 6 16661.624499999998 7 +Q6NLJ9 AT19138p 46.59 3 5 2 31796.40582 5 +Q6NMY2 RH54371p 32.42 5 16 5 281530.3172 8 +Q6NNV2 RE44043p 14.68 5 8 0 85834.20405 7 +Q6NNV7 RH03309p 29.55 5 15 1 691905.7237 12 +Q6NP69 GST-containing FLYWCH zinc-finger protein 2.68 2 2 1 584.5289 1 +Q6NP72 GEO09659p1 53.59 5 28 5 183375.15685 21 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 9340.5631 3 +Q76NR6 Regucalcin 77.74 24 100 0 5941809.85499 86 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 206140.45245 11 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 121882.08386 16 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 1168886.30916 24 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 8918.7353 4 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 327547.05478 22 +Q7JQX9 FI14001p1 4.65 4 4 0 2199.97963 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 4150172.55529 89 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 358653.46742 16 +Q7JRB2 RH09039p 4.52 1 3 1 765.4213 1 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 37670.71237 3 +Q7JRF1 RE48509p 3.41 1 1 0 2277.698 1 +Q7JRH5 RE28271p 1.31 1 2 1 7402.2816 2 +Q7JRL9 GH25289p 67.12 10 56 1 2532307.28587 49 +Q7JRN6 GH06388p 11.21 3 10 3 20691.15043 8 +Q7JS69 FI04632p 45.02 10 65 1 453882.84695000004 15 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 7652.3959 3 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 25015.372 6 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 790660.15789 38 +Q7JV09 GH28348p 7.5 8 12 5 37446.04696 8 +Q7JV69 SD11922p 6.95 3 6 3 15498.42508 5 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 31724.181 6 +Q7JVH6 LD24696p 27.01 8 20 7 335243.26247 14 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 195440.7538 13 +Q7JVK6 Translin 16.17 4 11 4 86229.72026 10 +Q7JVK8 GEO08987p1 52.05 8 31 8 309416.31714 25 +Q7JVM1 GH25962p 22.64 5 16 5 66821.45257 11 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 93461.02990000001 9 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 7642.30093 4 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 157586.1752 9 +Q7JW07 LD08826p 12.12 3 3 3 25366.913999999997 2 +Q7JW48 RE12410p 8.08 3 8 3 70732.67229999999 5 +Q7JW66 LD21545p 8.81 3 5 3 35145.8056 5 +Q7JWD6 Elongin-C 52.99 6 18 6 797801.08318 13 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 1052691.072 28 +Q7JWH5 RING-box protein 2 7.96 1 1 1 8302.689 1 +Q7JWQ7 RE01730p 9.74 4 7 4 10069.743999999999 5 +Q7JWR4 GH19585p 6.06 1 2 1 19521.844 2 +Q7JWU9 AT07420p 22.49 7 8 7 30530.8059 6 +Q7JWX3 GH10112p 7.35 4 10 4 187819.293 9 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 653568.11 2 +Q7JX94 Phospholipase A2 13.29 3 6 3 6600.19194 4 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 123419.1632 9 +Q7JXB9 Endonuclease 8.39 4 4 4 14816.30246 3 +Q7JXC4 CG6459 protein 33.46 6 46 6 1991199.81711 43 +Q7JXW8 Off-track2 11.09 5 9 4 29238.222999999998 8 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 148340.5154 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 261324.8541 7 +Q7JYW9 Phosphotransferase 18.72 9 13 9 68102.84303 13 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 19732.4516 2 +Q7JYZ0 lysozyme 11.18 2 6 2 46889.1878 5 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 87775.7894 8 +Q7JZB1 RE49860p 8.66 3 5 3 12114.125259999999 3 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 710481.0236600001 39 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 507.6375 1 +Q7JZE1 Peroxin 11 9.96 3 6 3 19367.925 6 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 84105.08439999999 7 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 2011598.23204 41 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 56574.0276 11 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 7982.4302 2 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 769117.69046 24 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 1102711.1195 27 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 33301.394720000004 7 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 6282923.34045 156 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 22030.7519 3 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 959261.9582400001 41 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 138680.68768 13 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 4371.033 1 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 21451.1057 3 +Q7K0S1 LD39211p 3.43 2 3 2 8619.6728 3 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 239113.46583 25 +Q7K0S6 LD36817p 21.02 8 13 8 94829.56998 12 +Q7K0W1 LD27406p 3.85 2 2 2 12408.537600000001 2 +Q7K0W4 LD27203p 56.4 18 61 17 3008457.98089 44 +Q7K0X9 LD23667p 8.51 2 17 2 48868.11154 14 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 28994.530899999998 5 +Q7K127 Alpha-galactosidase 18.71 7 24 7 384188.54245 20 +Q7K130 Dynactin subunit 4 4.67 3 4 3 18756.0987 3 +Q7K148 Proteasome subunit beta 21.28 6 13 6 143640.4021 12 +Q7K159 LD06557p 26.22 6 8 6 10811.48614 7 +Q7K180 LD02709p 17.73 8 12 8 22524.61029 8 +Q7K188 GEO05126p1 29.68 6 49 6 2153585.0473 42 +Q7K1C0 GH23780p 46.53 5 11 1 668634.4788 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 56491.46497 9 +Q7K1C5 GH21176p 10.85 7 9 7 82612.6277 8 +Q7K1H0 GH09096p 16.67 6 8 6 47620.3562 7 +Q7K1M4 SD04017p 17.31 5 15 5 71280.41432 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 104266.165 10 +Q7K1W5 LD35843p 23.4 10 26 10 520357.6807 24 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 20345.910620000002 5 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 566496.5977599999 23 +Q7K2E1 LD05247p 9.07 5 13 5 165574.10884 12 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 8349.86384 2 +Q7K2L7 GH27120p 17.59 3 5 3 107997.9414 4 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 45851.5083 8 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 5296.2942 3 +Q7K2P3 GH20817p 63.48 14 46 1 263499.3445 36 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 15655.3258 3 +Q7K2W6 tyrosinase 23.91 16 34 16 201344.13820000002 26 +Q7K332 GH17623p 6.28 2 11 1 30237.715969999997 9 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 332646.41225 19 +Q7K3E2 LD34147p 38.81 22 51 22 714646.93432 41 +Q7K3H0 LD28067p 2.93 6 10 0 55103.15176 7 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 990072.73083 41 +Q7K3N4 GH26015p 16.49 7 13 7 123774.2323 8 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 38320.446299999996 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 124523.07926999999 21 +Q7K3W4 GH08941p 24.88 8 21 8 331331.42127000005 18 +Q7K3Y9 Spondin-1 5.04 5 7 5 17962.6839 4 +Q7K3Z3 GH01724p 39.07 15 44 15 882436.95721 40 +Q7K485 Cathepsin D 25.51 7 29 7 1217560.23469 25 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 25329.0532 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 6329.9 1 +Q7K4J7 LD36653p 4.06 1 1 1 4092.4844 1 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 14855.0357 2 +Q7K4T8 LD23856p 8.52 4 6 4 20222.3495 5 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 12269.467 3 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 62381.86413 8 +Q7K519 GH16429p 6.75 3 3 3 22200.898 2 +Q7K549 GH13040p 6.1 3 4 3 5945.98575 3 +Q7K561 GH11294p 1.75 1 1 1 527.8752 1 +Q7K568 GH10642p 13.82 5 11 5 100571.18122 10 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 919056.67739 41 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 308764.0458 21 +Q7K5M6 GH04176p 19.59 6 16 6 194181.19015 15 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 396471.5276 20 +Q7K860 FI07231p 33.33 5 18 5 811415.6402799999 15 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 681051.7298 23 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 3005.39336 2 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 11326.30696 6 +Q7KK54 MIP07328p 2.21 2 3 2 19797.9368 3 +Q7KK90 GH14654p 47.77 7 29 7 1361064.96037 26 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 223672.2869 21 +Q7KLE5 Amphiphysin 41.86 27 94 3 2387342.59921 80 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 131782.67271 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 258844.76093000002 14 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 78809.957 4 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 6486.5568 2 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 257856.4179 14 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 1404953.27624 55 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 3.5 2 2 0 379.2077 1 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 16398.80148 4 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 8297.53 1 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 354727.33993 38 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 5360449.83302 95 +Q7KND8 FI09619p 9.18 8 10 8 36587.51605 9 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 494350.7522 18 +Q7KRT4 GH07253p 2.47 1 1 0 1866.1708 1 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 17190.8848 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 22816.598100000003 6 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 50455.7343 3 +Q7KSE4 GH05443p 5.39 4 5 4 24305.60406 5 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 240137.25436 14 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 1267358.73404 26 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 16931.2958 5 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 2127.645 1 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 330772.86865 29 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 890409.52606 29 +Q7KT58 GH08155p 7.03 4 6 4 17292.222 5 +Q7KT70 FI18641p1 4.18 4 4 4 15715.0272 4 +Q7KTA1 HL01444p 20.43 10 22 10 143691.84133 18 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 172543.4738 25 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 3627582.90196 79 +Q7KTN9 FI01009p 4.26 3 3 0 7642.52482 3 +Q7KTP7 LP22840p 61.88 10 18 10 169357.6419 17 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 2735713.2192 47 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 221467.15475000002 19 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 14211.6005 3 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 471793.25416 35 +Q7KUD4 phospholipase A2 3.95 4 6 0 20560.9182 5 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 167381.51712 26 +Q7KUT5 Protein MIX23 21.01 3 4 0 16722.2556 4 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 45098.06638 7 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 27653.95445 5 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 259980.63486 25 +Q7KV27 alanine transaminase 47.01 23 110 0 7290999.86779 98 +Q7KV34 Pinkman 39.06 24 47 24 1574321.6483 44 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 11808.4777 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 877.4652 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 125595.99983 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 2037.61968 2 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 4175158.38895 83 +Q7KY04 small monomeric GTPase 15.96 3 10 2 24297.0557 2 +Q7PL91 GEO11417p1 26.6 3 13 3 198842.94986 10 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 5294.245 1 +Q7PLI0 P120 catenin 10.5 10 17 10 107419.7202 14 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 260648.94624 27 +Q7PLS1 LD01937p 11.46 5 8 0 34165.84506 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 23581.3704 4 +Q7YU88 SD08871p 5.67 6 8 0 10939.23378 6 +Q86B44 Glutathione synthetase 11.03 6 11 0 76664.72063 8 +Q86B74 WASp, isoform C 16.19 7 10 0 12705.9791 4 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 11267.882 1 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 10693.4057 2 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 133712.41537 22 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 146531.06904 15 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 610696.19045 37 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 412830.9731 23 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 902472.8073 26 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 458015.89797 43 +Q86BS3 Chromator, isoform A 27.65 20 50 20 269816.45765 41 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 25766.4764 5 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 248019.3186 15 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 24330.3859 6 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 83648.07740000001 7 +Q8I0D4 RE20510p 20.9 17 39 0 964872.44975 29 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 18446.4871 5 +Q8I0P9 acid phosphatase 1.76 1 2 0 7639.00126 2 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 146695.89512 19 +Q8I930 GH14147p 4.68 3 4 0 8441.09522 3 +Q8I941 GH16843p 28.83 7 29 7 266475.4098 25 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 13103.8973 4 +Q8IGY1 RE08101p 33.61 41 326 0 11953013.04047 150 +Q8IH23 GEO02102p1 43.7 5 11 5 63842.4195 9 +Q8IM93 FI18814p1 36.72 17 40 17 195475.75514 27 +Q8IMF4 RE24176p 10.11 5 7 0 21338.507700000002 5 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 527473.8176 24 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 25531.4264 3 +Q8IMQ8 RH29536p 33.72 10 31 0 489322.76341 28 +Q8IMT3 IP12392p 5.95 3 4 3 6538.79 2 +Q8IMT6 FI01822p 6.64 3 6 3 59125.796160000005 6 +Q8IMU2 RE10237p 13.88 3 5 0 26677.7791 4 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 2846.1472 2 +Q8IMX4 FI04408p 6.6 2 7 0 32333.7756 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 116506.41593 12 +Q8IN49 MIP05539p 7.19 7 14 7 110818.6965 11 +Q8IN51 FI17609p1 21.17 3 9 3 41747.21936 6 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 2568.1582000000003 2 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 35980.2195 4 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 21534.409200000002 5 +Q8INH5 Aminopeptidase 5.65 6 9 0 31097.7981 8 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 22042.7631 5 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 38122.3537 7 +Q8IP52 RE16941p 3.69 4 4 4 447.04636 1 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 8475.5616 3 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 451152.94156 27 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 38453.4324 6 +Q8IP97 Peroxin-19 54.11 10 30 10 809821.9745 26 +Q8IPA5 RE15581p 6.07 2 2 0 15835.723 1 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 27356.926369999997 8 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 207497.37860000003 11 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 3281984.81484 105 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 57734.4015 11 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 3124.658 1 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 281261.04037 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 961.1536 1 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 44474.78426 3 +Q8IPT9 SD05439p1 36.84 12 19 0 578687.7469 15 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 1076303.23574 48 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 12849.482899999999 3 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 35125.08148 12 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 31023.8863 12 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 21720.233 4 +Q8IQB7 MIP21654p 9.44 3 5 3 1668.99308 3 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 28219.5924 4 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 47936.61425 8 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 60400.64694 5 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 17159.9507 3 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 67236.15592 15 +Q8IQH0 FI12817p 5.22 8 11 0 43435.70714 9 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 110895.64491 12 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 8409.600699999999 3 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 103556.21724 26 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 47313.7915 3 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 27039.3109 4 +Q8IQW5 RE23625p 79.17 16 78 4 3577125.6173 61 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 2138.5488 1 +Q8IR72 FI19011p1 10.06 1 3 1 11451.275239999999 3 +Q8IR76 FAD synthase 12.59 4 7 0 29733.4076 6 +Q8IRD0 RH17559p 42.86 3 12 3 140993.865 10 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 4180114.35474 73 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 203619.67627 27 +Q8IRI5 Trio, isoform D 8.83 7 10 0 36227.0061 8 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 9486673.52158 152 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 43676.1946 5 +Q8MLP9 GEO08457p1 16.96 2 5 2 11728.6783 5 +Q8MLQ0 FI14118p 21.05 2 3 2 60934.6483 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 130175.91063999999 11 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 43363.320999999996 5 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 2235.1284 1 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 203603.11163 15 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 2601515.93292 74 +Q8MQP2 MIP16184p 7.0 2 5 0 53680.576 4 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 31307.860800000002 2 +Q8MRM0 GH16740p 23.63 6 17 6 145458.7746 14 +Q8MRS5 AT03104p 3.18 3 3 0 3485.6665 1 +Q8MRT7 SD26038p 13.22 3 7 3 57309.47966 7 +Q8MRW1 SD19278p 5.83 1 1 1 355.63745 1 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 7078.697 2 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 7026.25415 2 +Q8MSI2 GH15296p 77.78 17 127 17 6950626.83755 103 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 7357.5747 3 +Q8MST5 Tubulin beta chain 47.92 18 97 0 1149888.17818 39 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 2220159.44108 57 +Q8MZ07 GEO07581p1 10.96 2 5 2 17763.93272 3 +Q8MZI3 RNA helicase 17.36 13 23 6 152733.32520999998 14 +Q8SWS2 RE29468p 39.05 5 14 0 206410.2959 10 +Q8SWS3 RE26528p 17.13 2 3 2 127502.627 3 +Q8SWZ6 RH51312p 8.33 2 3 2 3586.4497 2 +Q8SX35 GEO07743p1 33.33 3 8 1 64667.554299999996 7 +Q8SX50 RE04530p 14.96 6 11 0 42593.5484 9 +Q8SX54 CLIP domain-containing serine protease 2.78 1 1 1 419.37076 1 +Q8SX57 LD44221p 42.41 8 19 8 199131.4841 17 +Q8SX78 LD05679p 19.7 8 11 8 32945.628020000004 8 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 29147.95626 6 +Q8SXC2 FI04487p 7.56 4 4 4 12236.966339999999 3 +Q8SXD5 GH02216p 53.85 11 59 2 1333570.47639 47 +Q8SXE1 RH69521p 6.23 3 3 3 961.0378 1 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 81387.3926 7 +Q8SXF2 RH40246p 10.75 5 7 5 24139.01286 5 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 8001.1366 2 +Q8SXK0 RE18748p 10.55 3 3 3 4052.02104 3 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 201800.97035000002 31 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 20964.9146 3 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 161646.18095 18 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 243762.38092 5 +Q8SXS0 RE40914p 11.92 4 6 4 11026.8542 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 455539.94934 26 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 23077.9439 5 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 183772.38102 9 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 941.70746 1 +Q8SY67 lysozyme 35.85 3 3 3 77540.491 3 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 376416.3771 10 +Q8SYC4 RE68566p 1.97 1 1 1 2131.9478 1 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 2184017.94584 78 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 412814.98299 17 +Q8SYH8 RE57644p 19.78 5 13 1 99892.7773 8 +Q8SYJ2 GEO09626p1 61.45 8 53 8 4108384.67842 48 +Q8SYN0 RE52086p 9.56 4 5 4 9140.395840000001 3 +Q8SYQ4 RE42475p 52.03 10 68 10 1409201.91526 60 +Q8SYQ8 RE40412p 32.35 5 10 5 43807.4163 10 +Q8SZK5 RH26533p 10.93 3 5 3 22372.322 5 +Q8SZK9 HL04814p 47.19 11 54 11 2821773.0316500003 46 +Q8SZM2 RH04334p 28.15 10 38 10 1739388.87291 33 +Q8SZN1 GEO08217p1 51.61 7 31 3 987228.6214000001 28 +Q8T0I9 GH27479p 23.63 10 27 1 422930.4199 19 +Q8T0J5 GH26851p 29.62 9 33 0 657033.21658 29 +Q8T0N5 GH17516p 16.56 6 16 6 312731.7095 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 45498.3229 6 +Q8T0V2 GH02495p 21.25 10 23 0 139225.39115 19 +Q8T389 Endophilin B 56.35 18 77 0 8844.241 1 +Q8T3V6 Large ribosomal subunit protein uL29m 6.27 2 2 2 449.9242 1 +Q8T3W8 Venom allergen-1 20.61 6 10 0 27768.12949 7 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 476799.9628 39 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 1981631.80518 66 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 25236.555 2 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 10730.73 1 +Q94513 Boundary element associated factor 12.41 5 12 1 33376.97453000001 7 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 47293.4608 7 +Q95NU8 GH16255p 16.25 8 18 8 120830.98013 16 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 32966.6079 3 +Q95PE4 GEO07784p1 6.17 1 1 1 1655.2534 1 +Q95R34 GH16463p 9.71 3 4 3 18746.416 2 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 50248.34574 6 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 56230.7286 16 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 16843556.11038 136 +Q95RE4 LD37574p 44.32 15 30 1 51846.46522 25 +Q95RF6 LD34461p 43.27 5 7 5 84781.83396 7 +Q95RI2 LD28549p 27.78 9 14 9 52564.13809 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 42327.53287 8 +Q95RQ1 LD16414p 3.71 2 2 2 1899.2346 1 +Q95RR6 LD15002p 64.6 17 77 0 69892.569 2 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 120036.736 13 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 319824.129 4 +Q95RY2 LD01461p 20.61 5 11 1 104942.40325 10 +Q95SH0 GH26463p 5.58 5 6 5 10163.226999999999 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 400868.84765999997 30 +Q95SH7 GH26007p 7.94 2 3 2 664.5388 1 +Q95SI7 GH23390p 75.09 17 43 17 1733121.17493 39 +Q95SN8 GH12395p 26.76 5 14 5 234793.40480000002 11 +Q95TK5 LD44914p 12.95 7 17 7 105305.07285 13 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 602584.12892 32 +Q95TP0 LD34582p 1.97 1 1 1 4929.735 1 +Q95TZ7 GH19182p 79.35 28 155 0 3782102.29477 118 +Q95U15 GH14252p 82.05 32 274 0 2099853.38876 24 +Q95U34 GH11113p 20.41 10 36 10 366056.2114 30 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 86542.84286 6 +Q960D4 SD06560p 22.09 14 22 0 203352.44640000002 19 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 6224096.39265 80 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 169148.28327 24 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 14911.953259999998 4 +Q961B9 LD24073p 8.37 4 4 4 11218.489 1 +Q961C8 LD22649p 15.3 5 10 0 24047.8859 7 +Q961E7 phosphorylase kinase 10.74 5 5 1 27928.7751 4 +Q961K6 GH19047p 4.19 3 3 3 7812.073899999999 3 +Q961Q8 GH10454p 10.86 5 7 5 39564.04478 6 +Q961T9 GH07914p 35.88 6 11 6 135577.61680000002 9 +Q961X4 Combover, isoform B 10.01 8 13 0 74463.2024 10 +Q966T5 Paxillin, isoform D 37.06 7 18 2 71393.82796 7 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 46884.346730000005 11 +Q9I7I3 GH12831p 9.56 3 4 3 7787.610360000001 4 +Q9I7J0 GH21596p 73.37 11 57 11 1861368.70612 46 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 21197.027000000002 3 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 22212.087 6 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 1074231.39783 26 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 1544274.13396 18 +Q9NCC3 Sorting nexin 14.34 8 16 8 124823.85800000001 15 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 2.35 3 3 0 344.58453 1 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 94866.3025 7 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 89377.65139 13 +Q9U6P7 FI18813p1 14.35 7 9 7 56997.17665 9 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 904604.56125 42 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 26519.12794 5 +Q9V393 Kurtz arrestin 10.0 5 9 5 123075.43657 7 +Q9V396 Carbonic anhydrase 46.67 12 54 12 1323437.73076 47 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 54173.4522 8 +Q9V3C8 DShc protein 3.42 2 3 2 6291.9307 1 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 136553.16075 14 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 9429.3867 2 +Q9V3E7 LD24793p 42.48 12 35 12 472258.67587 31 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 19100.9539 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 265429.7578 13 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 1984.4474 1 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 36357.93237 7 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 155373.3029 6 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 1179904.03683 49 +Q9V3N9 B6 5.73 4 6 4 43376.176100000004 4 +Q9V3P3 LD45860p 40.0 10 21 10 696826.1788 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 85173.4724 8 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 10601.157299999999 2 +Q9V3T8 LD32469p 14.36 4 5 4 53217.2154 5 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 1694858.79749 40 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 971127.9372 40 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 2032864.74346 54 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 716175.95771 35 +Q9V3W2 GM23292p 61.08 12 86 12 3290360.12965 74 +Q9V3W7 LD40489p 41.18 10 24 10 245511.01994 17 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 213122.07052 31 +Q9V3Y4 LD43650p 6.65 2 4 2 4546.7505 1 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 270128.00844999996 29 +Q9V3Z4 GH11341p 22.31 12 31 12 173671.1641 25 +Q9V3Z9 HL02234p 46.21 14 53 14 3153652.89402 38 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 19091.7292 6 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 795369.70633 40 +Q9V406 Activator protein 4 9.03 7 16 7 57815.6611 11 +Q9V420 FI02878p 13.91 5 10 5 82325.47564 10 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 253921.5935 17 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 27551.9476 4 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 214648.93882 9 +Q9V455 Importin subunit alpha 15.95 9 16 9 350432.54380000004 13 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 545596.6960400001 33 +Q9V491 Plexin A, isoform A 1.03 2 2 0 1373.00976 2 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 1401922.10504 52 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1672956.88491 63 +Q9V4E0 Complex I-49kD 26.28 9 14 8 185769.68615 12 +Q9V4E7 Transporter 3.62 3 6 2 7231.82453 4 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 8206.1636 3 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 140836.96024000001 11 +Q9V9Q4 LD43819p 24.01 9 22 9 316235.02226 16 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 141991.7585 3 +Q9V9T5 GM14617p 15.04 10 14 1 28124.035799999998 8 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 3228.7299999999996 2 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 106987.05523 12 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 5048.7176 2 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 201982.19 13 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 687623.2297799999 22 +Q9V9W4 GH08048p 3.6 2 2 2 1653.116 1 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 3698.6829000000002 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 70175.9438 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 3356717.3187 82 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 132068.59108 10 +Q9VA34 LP06141p 3.64 4 5 4 20199.415399999998 5 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 187146.18326 23 +Q9VA41 GEO08227p1 42.04 6 16 2 138210.1138 7 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 745487.4326 17 +Q9VA56 GH23271p 60.79 20 66 1 2703.6519 1 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 24217.9294 3 +Q9VA71 FI19924p1 6.19 3 3 3 13759.2997 2 +Q9VA76 IP18706p 11.33 4 8 4 28734.747799999997 6 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 7651.8313 2 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 312971.62656999996 18 +Q9VAA6 GEO12235p1 10.76 2 6 2 36216.9788 6 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 90076.49570999999 16 +Q9VAC1 GM14349p 63.31 21 113 21 10862191.23885 91 +Q9VAC4 GEO09167p1 23.08 3 12 3 383973.9353 10 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 32858.49948 11 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 6644.31416 2 +Q9VAD7 RH37294p 11.56 2 3 2 1995.41798 3 +Q9VAG3 trypsin 11.46 3 6 3 74250.2503 5 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 37305.06923 6 +Q9VAI9 GEO07291p1 62.25 9 62 5 2846727.76698 42 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 130331.3986 13 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 7334.2205 3 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 1411471.63829 62 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 14660563.64586 99 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 78186.6557 9 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 6668.292939999999 4 +Q9VAU6 LD27564p 2.62 2 2 2 11533.375 2 +Q9VAV2 FI21480p1 16.09 13 25 13 135619.85467 22 +Q9VAY0 Neprilysin 7 5.58 4 4 4 8914.93525 4 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 1622053.45446 78 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 29730.706 2 +Q9VAY9 GH07821p 4.83 2 2 2 27962.305 1 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 843034.00377 49 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 1560637.01715 50 +Q9VB17 IP11341p 10.12 4 7 4 28990.3437 5 +Q9VB22 LD33695p 13.07 8 14 8 193090.32755 11 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 90329.05462 19 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 252578.44689999998 9 +Q9VB66 CLIP domain-containing serine protease 7.35 3 3 2 879.7704 1 +Q9VB69 Malic enzyme 19.45 12 25 1 108049.63895000001 19 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 35207.51760000001 4 +Q9VB77 IP09938p 4.06 1 2 1 4325.7572 2 +Q9VB78 Eater 12.38 3 7 3 7748.13215 3 +Q9VB79 IP09473p 14.19 5 15 5 54498.66823 11 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 1217871.28041 55 +Q9VB86 LP07342p 7.34 1 1 1 8134.3203 1 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 432771.52934 22 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 15106.581279999999 8 +Q9VBC9 Beaten path VII 3.68 2 4 2 22733.706 4 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 2778204.00286 55 +Q9VBI3 RH72336p 22.66 7 23 7 208402.78936999998 20 +Q9VBL3 GH01188p 8.54 5 6 5 8628.211879999999 6 +Q9VBN5 60S ribosomal protein L27 5.93 1 1 1 508.723 1 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 22529.639 3 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 5833411.47035 131 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 21730.584 3 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 634967.4519 19 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 24921.4015 6 +Q9VBT2 IP11926p 4.57 2 2 2 1993.3569 1 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 10993.0017 4 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 849162.43894 10 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 29161.24626 3 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 26457.408900000002 3 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 1594712.77483 59 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 29439.8355 5 +Q9VC06 LD37516p 12.05 9 12 9 72253.3645 10 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 2760.734 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 184969.93914 24 +Q9VC30 RE05274p 13.98 3 7 3 13700.61272 4 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 63940.66039999999 10 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 148509.67609999998 14 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 151800.5041 10 +Q9VC58 Syntaxin-18 6.08 3 3 3 2340.2433 2 +Q9VC66 AT25567p 25.62 12 25 12 145048.26404 24 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 23161.73733 6 +Q9VC87 RE57978p 7.51 3 5 3 13950.4589 3 +Q9VCB9 FI08802p 6.15 2 2 2 32123.983 2 +Q9VCC9 LD23779p 2.55 3 5 3 5601.13106 3 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 8854.4931 3 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 95152.29624 8 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 17473.2848 7 +Q9VCF8 LD23561p 10.51 4 8 4 53841.519909999995 8 +Q9VCI4 LD32918p 5.33 4 7 4 1571.83543 3 +Q9VCI7 LD02979p 12.03 5 12 1 166690.47449999998 9 +Q9VCK6 LD34157p 14.88 7 11 7 43811.73173 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 46225.90995 7 +Q9VCR4 FI17836p1 3.66 3 5 3 13083.954600000001 3 +Q9VCR9 RH48101p 20.22 8 34 8 352466.34225 31 +Q9VCT4 Klingon 5.69 3 4 3 4380.3155 3 +Q9VCU0 GEO02312p1 33.33 4 15 4 50204.404 12 +Q9VCU1 FI07649p 2.77 2 2 2 507.74387 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 34012.159400000004 4 +Q9VCW2 Cardinal 11.33 9 12 9 20980.18853 9 +Q9VCW6 GCS light chain 37.54 12 34 12 393660.12015 29 +Q9VCZ2 FI07970p 5.96 3 4 3 6214.4464 3 +Q9VD00 FI07666p 15.11 4 16 4 156109.15 13 +Q9VD01 LP12095p 8.52 2 4 2 41180.5 4 +Q9VD02 GH14779p 37.99 5 19 5 282769.3159 17 +Q9VD13 GH02671p 17.26 8 11 1 55331.5551 7 +Q9VD14 GH07286p 11.88 8 21 8 244570.29048 21 +Q9VD29 small monomeric GTPase 48.19 9 26 9 2021895.0071 23 +Q9VD30 GH05294p 74.19 12 43 12 2187396.88086 41 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 11206.1794 2 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 4588052.10713 89 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 29334.038 3 +Q9VD68 GH19849p 4.3 2 3 2 21597.6881 3 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 51907.32965 5 +Q9VDC0 GH01837p 28.0 5 14 5 52453.53972 11 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 50526.2933 4 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 503717.757 10 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 336759.25896 5 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 217368.42123 30 +Q9VDH3 GH08630p 66.23 13 38 13 1338832.54033 31 +Q9VDI1 LD46328p 53.04 22 79 0 950989.38045 60 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 10262.4325 2 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 49700.70733 6 +Q9VDK2 GH15831p 5.72 4 6 3 23558.9368 5 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 174978.36834000002 23 +Q9VDK9 GH12359p 6.46 4 6 4 52081.2381 6 +Q9VDL5 GEO09602p1 13.43 1 2 1 14314.7257 2 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 396579.9262 20 +Q9VDQ3 Identity crisis 6.53 4 4 4 2028.4277 1 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 257220.20577 20 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 348713.21020000003 15 +Q9VDU7 nicotinamidase 15.69 5 15 5 236652.66536 14 +Q9VDV2 AT06125p 8.54 4 4 3 6570.09734 2 +Q9VDY8 MIP08680p 57.35 14 64 1 1238406.9383399999 53 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 941949.96139 73 +Q9VE08 GH10002p 8.92 2 3 2 8212.691429999999 3 +Q9VE12 LD27322p 14.81 5 12 5 44398.78276 9 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 29490.557979999998 6 +Q9VE31 GEO12059p1 16.22 2 3 2 1169.67666 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 62232.2232 7 +Q9VE56 FI17806p1 7.14 2 3 2 92555.556 3 +Q9VE57 GEO10850p1 12.41 2 3 2 14096.435300000001 3 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 1494.3128000000002 2 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 30434.0634 3 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 46871.0399 10 +Q9VE94 LD14127p 12.24 5 6 5 13564.286 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 258810.4672 14 +Q9VEA7 FI01460p 28.09 1 3 1 11887.4387 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 27135867.96955 244 +Q9VEB7 AT04491p 5.94 3 3 3 26468.5326 3 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 41588.33724 5 +Q9VEC6 LD29902p 8.94 10 24 0 352.8469 1 +Q9VEC8 RE23139p1 14.62 2 4 2 33839.4 4 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 109770.9431 10 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 15068.02464 2 +Q9VEG8 RE59232p 2.8 1 1 1 55623.29 1 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 22504.478600000002 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 655204.05116 37 +Q9VEJ9 Curly Su 1.2 1 2 1 18895.1367 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 214714.66095999998 13 +Q9VEK8 GH07711p 34.05 12 33 12 293403.35674 28 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 107156.55930000001 18 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 5941.020699999999 2 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 27390.32606 7 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 233866.19806999998 23 +Q9VEP8 GH11385p 13.2 10 14 10 81976.57211 12 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 109940.88362000001 17 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 30614.363230000003 7 +Q9VES8 RE28913p 27.34 8 16 8 41489.517810000005 12 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 56833.422 3 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 174250.62024 21 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 850.6028 1 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 9053.1031 2 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 163264.73046 23 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 37793.744699999996 3 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 1660889.14441 34 +Q9VEY9 GH15759p 2.33 1 1 1 645.4581 1 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 113723.77823 15 +Q9VF15 GEO09476p1 81.05 12 61 8 1579563.81929 50 +Q9VF23 arginine kinase 7.22 4 6 4 11010.650300000001 2 +Q9VF24 Crossveinless d 5.1 8 12 8 58080.91227 10 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 101809.45195 11 +Q9VF39 FI01459p 4.13 2 2 2 16054.941 1 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 180994.2188 21 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 35048.1155 7 +Q9VF77 FI16517p1 10.07 4 7 4 26558.39722 5 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 26175.14525 4 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 158865.7606 12 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 38733.838 2 +Q9VFC7 Mf5 protein 84.38 37 292 0 7396643.50947 200 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 2544.1354 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 10280014.01216 121 +Q9VFI3 GEO08281p1 21.15 1 1 1 7461.103 1 +Q9VFM0 GH19262p 4.96 3 5 3 7246.18973 4 +Q9VFN7 GEO07678p1 20.13 4 19 4 376228.08775 15 +Q9VFN9 GEO07882p1 15.32 2 6 2 31737.28578 5 +Q9VFP0 RH07106p 17.84 7 11 7 81731.56539999999 10 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 854802.66235 29 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 490504.77845 22 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 21774.2618 8 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 34965.65242 5 +Q9VFT4 AT27578p 10.58 6 11 6 22297.8501 8 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 24036.39888 6 +Q9VFV1 RE55542p 2.83 2 2 2 22881.938000000002 2 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 1617127.28767 53 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 109167.1326 10 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 16832.8465 4 +Q9VG01 RE12073p 5.26 3 3 3 4985.6085 2 +Q9VG04 Protein MEMO1 10.85 4 6 4 8054.2378100000005 5 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 5297.0757 1 +Q9VG23 GH22994p 65.12 12 32 1 1283233.2979000001 27 +Q9VG26 MIP06012p 38.03 8 22 8 559450.80688 19 +Q9VG28 Beaten path Vc 2.36 1 3 1 735.91455 1 +Q9VG31 Malic enzyme 16.64 15 41 0 482377.91956 37 +Q9VG33 Sulfurtransferase 73.64 6 14 6 814342.9733 13 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 36974.798500000004 7 +Q9VG44 RE14195p 2.84 2 2 2 1253.5938 2 +Q9VG51 Sorting nexin-3 55.69 9 28 9 195996.65656 24 +Q9VG62 Toys are us 1.44 1 1 1 2171.1296 1 +Q9VG69 LP03547p 32.01 11 35 11 554725.05037 32 +Q9VG81 RH49330p 11.83 6 15 6 62767.41713 10 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 104679.89199999999 5 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 379702.6635 15 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 8604.4882 2 +Q9VGA3 LD12305p 35.91 7 32 6 460214.48960000003 23 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 5806.9502 2 +Q9VGE4 FI04457p 9.25 11 16 11 53096.17135 13 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 14685.152699999999 7 +Q9VGF3 IP11040p 11.88 5 6 5 15467.8109 4 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 347289.52296000003 26 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 140561.3112 10 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 127257.7455 9 +Q9VGL0 LD43047p 2.84 4 6 4 1924.2055 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 16281594.40077 208 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 41663.2339 7 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 4011138.51652 76 +Q9VGQ8 Arfaptin 6.76 3 4 3 33020.63515 4 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 5076.8465 2 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 7931.15502 5 +Q9VGS3 RH44771p 14.04 3 26 3 597033.35185 21 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 17958.251 2 +Q9VGT3 GM04645p 5.3 3 5 3 3562.8833 2 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 21690.493039999998 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 18153.26035 4 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 40083.1859 4 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 62998.8686 6 +Q9VGY2 Peptide deformylase 10.08 3 4 1 14342.0485 4 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 6306.124 1 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 153766.23578000002 20 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 60692.1632 7 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 215701.03879999998 16 +Q9VH37 IP06524p 14.29 3 4 3 35502.2336 4 +Q9VH63 Uncharacterized protein 3.0 2 2 2 3624.4941 1 +Q9VH64 LD29322p 10.03 4 5 4 72195.4222 4 +Q9VH66 FI18258p1 29.61 6 13 6 58435.31877 11 +Q9VH72 TA01656p1 52.94 7 23 7 401192.89252 19 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 528118.30288 39 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 27607.1082 10 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 78163.72080000001 7 +Q9VH85 GH14967p 3.41 3 3 3 5567.2014500000005 2 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 157126.6043 6 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 170594.39604 9 +Q9VHA8 LD25575p 12.25 8 20 8 242282.4606 15 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 162985.61713 14 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 69417.97275 6 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 147274.12924 15 +Q9VHC7 FI21236p1 30.54 19 54 9 1187176.72121 39 +Q9VHC8 LD31448p 10.06 2 2 2 606.8968 1 +Q9VHE3 GH05665p 9.38 4 6 4 45776.94035 6 +Q9VHE4 omega-amidase 17.31 5 13 5 72840.9164 11 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 60980.9088 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 131018.06906 10 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 42195.6564 8 +Q9VHH8 Beag 6.82 4 8 4 30233.1924 7 +Q9VHI1 Hyrax 7.06 4 6 4 14956.916580000001 5 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 426500.3214 20 +Q9VHJ2 LD32381p 2.65 1 1 1 5776.6123 1 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 22179.213 2 +Q9VHJ7 LD41978p 4.65 3 3 3 11176.335 1 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 812467.27888 42 +Q9VHM3 LD30467p 10.77 5 8 5 30712.51138 7 +Q9VHN4 GH14121p 9.77 3 5 3 9525.6821 4 +Q9VHN7 transketolase 22.36 14 33 2 760619.6582599999 26 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 13296.171 2 +Q9VHT3 CG9617 protein 15.17 3 3 3 16852.6349 2 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 36674.5723 6 +Q9VHX2 GH08043p 9.4 4 7 4 13449.44176 4 +Q9VHX4 LD24679p 66.57 21 108 21 4936227.95758 94 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 30538.36966 6 +Q9VI09 GH14494p 49.01 6 27 6 1022843.79295 25 +Q9VI21 Dementin, isoform D 3.92 3 3 0 2332.51996 2 +Q9VI24 LD25151p 7.73 3 3 3 4292.8997 2 +Q9VI53 LD44267p 14.93 6 13 6 41885.542050000004 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 26499.026 3 +Q9VI64 LD30995p 47.03 13 57 13 1160960.71934 49 +Q9VI80 Thawb 1.58 2 3 2 14102.7524 2 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 29098.7232 5 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 18328.682 4 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 24854013.35029 274 +Q9VIF2 GM01519p 8.7 4 11 4 75184.9621 10 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 73522.0591 11 +Q9VIH1 CG9273 protein 16.67 5 12 5 25745.67789 10 +Q9VII5 GEO08323p1 25.79 4 13 4 131427.1237 10 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 5229.6216 1 +Q9VIJ3 FI14214p 12.78 2 3 1 2079.06428 2 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 3545.804 2 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 65702.51676 16 +Q9VIL2 LD19544p 8.63 3 8 3 68507.3831 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 193813.36000000002 17 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 79308.0286 6 +Q9VIQ5 RH02620p 27.49 7 16 7 25554.01487 10 +Q9VIQ6 FI17342p1 14.79 3 8 3 72632.4708 7 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 1434605.62507 41 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 24744.8526 3 +Q9VIU3 FI23988p1 6.9 3 4 3 11104.7699 4 +Q9VIV6 GH04973p 4.56 2 2 2 732.63007 1 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 24877.9918 3 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 1662.8458 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 61960.007000000005 2 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 174638.05405 11 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 298892.75114 10 +Q9VJ22 GH09876p 5.41 2 3 2 4933.9176 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 20351.552900000002 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 357319.54374 13 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 62463.129160000004 9 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 949688.85763 38 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 68467.29374 13 +Q9VJ60 GM16226p 12.15 3 7 3 51274.720199999996 7 +Q9VJ61 SD03870p 9.81 5 6 5 26973.9942 5 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 212541.33876 16 +Q9VJ80 LD42267p 6.89 9 15 9 70137.31135999999 13 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 69878.28494 12 +Q9VJA9 GH07373p 0.94 1 1 0 7137.696 1 +Q9VJC0 GEO08203p1 37.23 5 6 5 52306.526399999995 4 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 43264.4879 7 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 190480.81848000002 26 +Q9VJD4 LD24721p 33.84 12 37 12 1137984.5026 26 +Q9VJE3 LD24839p 14.6 7 7 7 31345.5969 6 +Q9VJH8 FI03416p 5.71 4 5 3 28237.9894 5 +Q9VJI5 Protein yellow 13.91 7 13 7 74365.92582 12 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 279092.928 13 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 504029.8441 24 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 11664.0342 2 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 99718.92899999999 7 +Q9VJQ3 Protein yellow 22.83 9 30 8 922770.6387 30 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 50944.8213 4 +Q9VJU6 IP09831p 15.87 4 4 4 26651.462 2 +Q9VJU8 GH23407p 8.48 4 9 4 36018.957460000005 5 +Q9VJX3 B4, isoform A 2.44 3 3 3 6334.937449999999 3 +Q9VJZ1 FI21342p1 8.24 5 6 5 17213.859 6 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 2100907.93702 51 +Q9VJZ5 LD07294p 17.89 6 14 6 61867.68776 11 +Q9VJZ6 LD40224p 67.13 10 28 10 596136.4002 23 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 102551.7265 7 +Q9VK11 GH15921p 17.8 5 15 5 278409.0949 15 +Q9VK12 GH20621p 54.0 15 86 15 2735458.29141 66 +Q9VK18 LD36945p 10.11 5 7 5 13028.1438 5 +Q9VK19 FI07225p 7.72 2 2 2 1920.7834 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 734.105 1 +Q9VK31 LD35592p 3.65 2 2 2 3544.8306 2 +Q9VK39 FI09204p 45.28 4 21 4 141560.24187 15 +Q9VK43 LD10135p 8.24 3 3 3 1010.76495 1 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 1394.93335 3 +Q9VK59 LD23647p 32.84 31 71 31 417225.00141 50 +Q9VK60 GH25425p 49.42 10 45 10 2267641.23928 38 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 938886.4954 45 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 185414.88876 16 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 362771.44783 14 +Q9VK99 Atilla, isoform B 51.75 9 42 9 1009508.53976 34 +Q9VKA1 FI02817p 15.58 3 7 3 4398.1205 2 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 12749.563699999999 2 +Q9VKC8 FI03495p 11.04 7 13 7 217530.57723999998 11 +Q9VKD9 MIP16835p1 2.3 2 2 2 7188.0862 2 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 14097026.64178 383 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 57530.39765 8 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 39187.219860000005 7 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 4842.937 1 +Q9VKI8 GH03305p 80.72 20 131 20 3691968.26203 107 +Q9VKJ4 Csl4 22.06 4 6 4 8943.94449 3 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 2277544.97263 55 +Q9VKM7 AT01533p 9.31 7 9 4 106151.08561 8 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 123762.21011 17 +Q9VKQ5 GEO07393p1 29.03 3 3 3 16226.399000000001 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 5714.479 1 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 468095.58 21 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 26667.820399999997 5 +Q9VKU5 LD37206p 7.02 2 3 2 4086.0183 1 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 793264.51173 35 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 20997.90303 4 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 19874.54665 5 +Q9VKW1 LD41958p 8.58 4 7 4 11267.90242 5 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 53033.64194 10 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 24.03 3 3 3 931.66064 1 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 7429857.9773200005 137 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 318493.5965 15 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 26840.195209999998 9 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 199071.20386 17 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 724304.48098 49 +Q9VL02 GH08677p 6.78 3 4 2 30105.4484 4 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 36839.5573 5 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 13916.7552 3 +Q9VL16 RE45833p 30.13 6 46 6 1220551.5055200001 40 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 6185.6777 2 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 4020.5593 1 +Q9VL50 Translocation protein SEC62 2.41 1 1 0 499.75198 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 22638.71995 6 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 24596.97693 4 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 1414484.51746 43 +Q9VL70 HL08109p 78.89 30 118 30 7216031.30864 107 +Q9VL71 LD29830p 7.02 4 5 4 4656.61464 3 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 83283.687 5 +Q9VL91 LD23102p 2.06 2 2 2 3519.6764999999996 2 +Q9VL93 GEO07195p1 13.64 2 4 2 76888.7757 4 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 74764.5374 7 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 1622150.5886000001 46 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 2696109.94587 62 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 21561.923899999998 5 +Q9VLI4 Raw, isoform A 2.53 3 3 0 6500.8633 1 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 31411.356 2 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 60701.516480000006 9 +Q9VLP0 IP04187p 20.32 5 7 5 34348.05245 5 +Q9VLP1 GEO08095p1 36.49 4 22 4 192777.9921 15 +Q9VLP2 GEO08076p1 38.78 8 25 8 241975.18367 16 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 51925.19 2 +Q9VLQ9 Sorting nexin 31.85 14 43 1 513498.47195 37 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 34219.9395 6 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 29613.7399 4 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 1220009.6798 22 +Q9VLS5 LD29542p 12.08 6 8 6 33162.1262 8 +Q9VLS7 LD21067p 0.89 2 3 0 3237.22325 2 +Q9VLT3 LD23292p 13.58 24 53 24 422819.09248 47 +Q9VLT7 IP17351p 16.35 2 5 2 183089.27130000002 3 +Q9VLU3 IP09231p 5.4 1 1 0 646.087 1 +Q9VLV9 Proctolin 19.29 2 4 2 522.56195 1 +Q9VLW8 LD06392p 6.75 2 2 2 18277.44 1 +Q9VLX6 HL01609p 18.95 5 9 0 45031.28664 7 +Q9VLY1 HL02931p 19.01 1 2 1 87967.26 1 +Q9VLY7 TEP1-F 4.02 7 7 7 15790.84766 6 +Q9VLY9 CD109 antigen 20.51 28 66 0 1136315.4488899999 59 +Q9VM07 RE43931p 18.26 4 9 3 61327.631499999996 3 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 93034.51438000001 10 +Q9VM11 HL01515p 16.08 5 9 5 79581.7592 8 +Q9VM12 MIP26555p1 24.49 8 23 8 339417.53826 17 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 11386241.49596 230 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 4341708.41171 79 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 25248.9928 3 +Q9VM47 Menin 4.98 4 8 1 22070.69552 4 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 6648.4051 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 48976.89558 9 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 55307.314 3 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 337572.0191 10 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 42614.0848 7 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 3150021.76217 85 +Q9VMC3 LD35051p 8.64 4 4 4 12909.1824 3 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 50301.884 3 +Q9VMC7 LP11564p 6.96 4 5 1 2538.73516 2 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 55866.58605 15 +Q9VME1 FI01864p 16.46 8 16 8 88864.61826999999 14 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 25425.05065 7 +Q9VMF0 FI04444p 3.77 2 2 2 10626.7893 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 41582.79458 13 +Q9VMH8 GEO07746p1 53.17 8 19 8 493853.55718 17 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 609308.65191 26 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 1497786.99777 40 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 3360820.7586999997 43 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 147704.44863 13 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 214912.2288 11 +Q9VMR9 acylphosphatase 6.93 1 1 1 360.7693 1 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 2503546.40578 54 +Q9VMT2 GEO07854p1 71.81 9 122 1 3511114.88915 100 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 648938.61528 29 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 69245.4153 8 +Q9VMV5 Viking, isoform A 10.0 19 40 19 131281.10932 33 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 5847.8634999999995 3 +Q9VMX4 AT19154p 13.15 3 7 3 116664.8492 6 +Q9VN01 GH23891p 8.61 5 10 5 27440.24484 8 +Q9VN02 GH14561p 29.6 7 15 7 81130.32297 13 +Q9VN21 LD30155p 49.91 26 129 26 2835527.45064 115 +Q9VN39 RE74585p 17.58 6 13 1 30470.8252 8 +Q9VN44 FI07923p 16.56 15 37 15 267691.51833 30 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 255518.3586 11 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 165645.8816 14 +Q9VN86 AT14148p 14.19 6 10 6 35676.7871 6 +Q9VN88 LD45836p 35.98 7 17 7 76630.31726 13 +Q9VNA3 GH21273p 34.26 7 21 7 181539.3654 19 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 422594.664 13 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 18446.0451 4 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 359.6508 1 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 70876.4413 7 +Q9VNF3 RE01652p 34.63 8 31 6 629130.3206 27 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 24222.2428 8 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 3110.4552999999996 2 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 92058.25597 11 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 78968.67199999999 2 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 43358.6365 8 +Q9VNI8 Hpr1 8.99 6 9 6 27512.08201 9 +Q9VNI9 IP18173p 7.05 1 2 1 9875.9186 2 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 3080322.4715 70 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 8987.730500000001 3 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 22262.72212 9 +Q9VNW0 GEO11142p1 17.97 2 2 2 14939.222 1 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 2379068.6790899998 81 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 1391994.6799 75 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 4669.7381000000005 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 24949.35766 5 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 5129.7651399999995 2 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 18832.9757 5 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 218207.562 2 +Q9VP51 LD40450p 5.59 2 2 0 3479.3342000000002 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 251159.42667000002 13 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 45360.7961 8 +Q9VP57 LD15904p 21.79 19 45 19 458643.67995 36 +Q9VP77 LD23875p 5.73 5 6 5 7898.42075 4 +Q9VP78 GH23156p 7.79 4 6 4 15546.3383 5 +Q9VP84 IP06402p 8.47 2 2 2 1742.9591 1 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 3672.2587 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 919.2946 1 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 17372.226 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 14629.2515 3 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 2436680.35795 49 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 62522.05836 9 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 6786.3159 3 +Q9VPH6 LP10922p 6.08 4 6 1 18352.70225 5 +Q9VPJ0 RE58433p 17.91 8 22 2 38834.15399 13 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 16502.1363 3 +Q9VPK3 AT24407p 8.72 4 13 1 47467.85379 12 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 25076.5864 5 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 1602775.5818 85 +Q9VPP7 AT13539p 4.96 1 3 1 54667.044 2 +Q9VPR1 GH02075p 11.35 2 3 2 21061.111 1 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 19708.82677 5 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 52280.837 9 +Q9VPU4 FI17537p1 5.33 2 4 2 8973.16472 3 +Q9VPU6 Galectin 5.06 2 3 2 22882.8865 3 +Q9VPX0 GH26159p 6.59 4 6 4 25440.44947 5 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 206731.6203 13 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 2002643.74256 60 +Q9VPY7 LD42035p 5.27 3 4 3 3756.51244 3 +Q9VPZ5 GH04232p 15.64 8 27 8 120559.8005 18 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 18308.6098 2 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 4804470.70005 113 +Q9VQ83 RE23541p 13.29 4 5 0 47332.8514 5 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 42077.0656 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1940278.7553 54 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 1489426.60947 32 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 138861.5957 7 +Q9VQE0 dynamin GTPase 20.27 14 22 14 117843.46031000001 17 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 6259.4098 2 +Q9VQI6 LD25952p 13.89 5 8 5 50233.1289 5 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 462990.60344 19 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 24620.7898 4 +Q9VQK7 LD45152p 1.2 1 1 1 600.5655 1 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 2309.0208 1 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 678057.0192 26 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 631.6401 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 876934.3427 11 +Q9VQQ6 FI18122p1 19.21 10 17 0 180059.3222 16 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 2127289.38358 51 +Q9VQR5 IP10807p 2.5 1 2 1 4862.2935 1 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 50385.736 8 +Q9VQT7 RH15675p 14.63 1 6 1 4370.0208 3 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 97849.0366 13 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 66488.58877 10 +Q9VQX3 HL05328p 6.13 2 3 2 11445.7422 3 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 3700.7253 1 +Q9VR03 AT19250p 3.98 2 2 2 4298.262 1 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 98483.7985 8 +Q9VR30 RE58324p 11.81 5 10 5 82591.35934 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 66240.63756 12 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 19086.02116 2 +Q9VR79 LD43683p 40.08 10 47 10 1266345.74975 40 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 3444.5012 2 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 895295.4141 20 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 328239.47365 13 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 25639.503940000002 6 +Q9VRF7 GH09530p 10.57 3 5 0 14547.25587 4 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 78094.4161 7 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 22756.01502 6 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 1178996.32567 37 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 97312.29766 6 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 23400.03048 3 +Q9VRK9 Kinesin-like protein 4.43 3 4 2 1377.98776 3 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 4298405.06732 123 +Q9VRL1 GEO06356p1 53.1 8 34 2 1082434.12123 25 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 22670.94913 5 +Q9VRM8 alkaline phosphatase 1.34 1 1 1 642.8688 1 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 11813.36 1 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 1068231.85281 58 +Q9VRP3 AT08565p 17.07 5 16 5 138810.14148 9 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 19901.7587 3 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 462115.77095 19 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 104709.58916 17 +Q9VRV8 Transportin-1 2.69 2 3 2 7072.064130000001 3 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 60750.41269999999 6 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 110833.3014 11 +Q9VS11 lysozyme 15.97 4 7 4 14658.73838 5 +Q9VS44 Uncharacterized protein 9.45 3 4 3 15535.876800000002 3 +Q9VS84 FI03225p 7.71 7 15 7 133720.32456 12 +Q9VSA9 CG7409 82.47 15 103 15 4021834.83543 81 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 115735.76740000001 10 +Q9VSC5 GM09977p 50.76 17 41 17 793148.26957 36 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 76349.9105 14 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 215911.4465 15 +Q9VSH5 IP09562p 9.77 2 2 2 3039.7769 1 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 23449.730199999998 3 +Q9VSI1 LD21269p 7.6 5 7 5 41389.774699999994 6 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 3699.424 1 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 399766.74606 18 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 726246.85625 32 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 1207063.38494 43 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 145222.5246 10 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 4767.60826 3 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 17915.4605 3 +Q9VSM8 TBC1 domain family member 13 2.48 1 1 1 3358.3596 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 182730.69634 10 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 1563379.60689 61 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 91501.67694 8 +Q9VSR5 GM03767p 52.75 9 24 9 1036625.65587 19 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 13512.51922 3 +Q9VST4 arginine kinase 4.64 2 4 2 6274.8639 3 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 2797595.26027 71 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 551389.5658 26 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 61961.832 4 +Q9VSW7 LD21662p 5.13 2 3 1 6441.343699999999 2 +Q9VSX2 IP01061p 30.5 6 17 6 252877.10207999998 12 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 5156400.0593799995 62 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 231027.09245 12 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 13494.4105 7 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 139366.819 15 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 397386.58089 28 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 1069.1287000000002 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 78371.58283 4 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 16828.34198 5 +Q9VTA8 RE35371p 12.66 3 4 3 482.5602 1 +Q9VTB0 LD35289p 17.94 8 13 8 52049.4231 12 +Q9VTB3 Guanylate kinase 52.79 13 38 13 823471.59392 32 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 983430.1956 36 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 24766.26198 6 +Q9VTC3 GH07049p 12.22 5 7 5 113454.3178 6 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 1648.9528 1 +Q9VTL0 FI19917p1 10.87 4 4 4 11780.85757 3 +Q9VTP1 IP06473p 3.53 1 2 1 6795.0484 2 +Q9VTT2 LD20590p 6.65 3 4 3 8091.709569999999 4 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 1093697.41964 31 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 398626.9943 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 104592.78600000001 3 +Q9VTW1 RE15265p 7.1 3 5 0 16015.36274 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 3598.91373 3 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 818199.67154 33 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 191813.35395 14 +Q9VU04 RE60105p 11.69 3 7 3 68211.20939999999 6 +Q9VU13 LD45603p 8.95 5 14 0 136144.3225 13 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 51435.1198 2 +Q9VU34 LD45758p 1.78 2 3 2 2681.5173800000002 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 3642226.88423 74 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 8784.9778 3 +Q9VU38 Adenosine kinase 24.64 6 14 0 434721.8597 14 +Q9VU45 LD27581p 14.79 4 24 4 62588.20702 16 +Q9VU53 Capricious, isoform A 1.85 1 2 0 4071.8795 2 +Q9VU75 RH45712p 37.04 9 31 9 149061.40503999998 25 +Q9VU92 Uncharacterized protein 25.79 6 13 6 113770.3988 11 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 2071826.33573 81 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 46945.73098 13 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 765110.0060599999 32 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 6342.3426 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 57813.4416 6 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 152390.331 5 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 77528.82592 7 +Q9VUQ7 RE36966p 6.21 4 11 4 54852.3093 8 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 29934.846 4 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 35179.21602 5 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 12183.96183 4 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 74659.01598000001 11 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 258010.59399999998 5 +Q9VV13 GEO08383p1 10.71 1 1 1 33506.457 1 +Q9VV31 Uncharacterized protein 19.35 2 7 2 8561.07833 4 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 115740.11306999999 14 +Q9VV40 Golgin 104 2.06 2 2 2 13162.7071 2 +Q9VV42 Fat body protein 2 79.5 24 224 0 16657604.77619 176 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 13601465.04801 199 +Q9VV47 Fat body protein 2 32.05 7 29 5 1158376.53976 24 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 558282.80712 51 +Q9VV75 AT02348p 82.73 30 207 30 13857635.52076 162 +Q9VV76 Syntaxin 8 8.62 2 3 2 17317.7604 2 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 90570.85949 8 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 116461.85935999999 12 +Q9VVB5 LD46723p 28.44 16 70 1 4030.51102 4 +Q9VVC2 Uncharacterized protein 4.04 1 2 1 332.2809 1 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 792831.13442 42 +Q9VVC8 LD23434p 8.08 5 10 5 51151.94025 8 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 200120.83325 26 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 4661213.06601 50 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 145907.20514 17 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 74217.4847 8 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 216401.3483 18 +Q9VVL5 FI11325p 21.52 7 10 7 95366.0459 9 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 9337631.81053 170 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 26943.18864 5 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 44296.7533 8 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 43478.0029 6 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 61278.74166 8 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 673768.54545 36 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1713401.1853399999 48 +Q9VVU2 GEO07453p1 29.53 6 31 5 596017.8957999999 30 +Q9VVV6 LD45843p 12.26 8 10 0 28092.23031 7 +Q9VVW7 Canopy b 12.22 3 8 3 20970.4989 7 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 10529.1547 5 +Q9VVY7 FI20154p1 12.22 16 28 0 125376.56101 23 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 72363.5479 6 +Q9VW00 GH28721p 6.1 2 3 2 5202.5196000000005 2 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 3795.91055 2 +Q9VW17 RE58036p 29.67 5 15 0 19123.05826 11 +Q9VW19 Phenoloxidase-activating factor 2 3.43 1 2 1 1429.5206899999998 2 +Q9VW34 FI03450p 11.65 7 12 7 164891.0804 12 +Q9VW40 LD31235p 9.3 3 4 3 14615.597300000001 3 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 10830.34384 4 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 69692.24184999999 6 +Q9VW57 Grasp65 7.17 4 7 4 52885.0703 5 +Q9VW58 LD33138p 14.87 3 4 3 26904.1198 3 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 522023.42693 30 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 1704447.89417 48 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 6574411.83476 110 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 30848.33583 5 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 41854.0449 3 +Q9VWD0 GH23568p 19.35 6 13 6 216484.50828 13 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 2513724.87273 82 +Q9VWD5 LD35087p 12.92 5 7 5 25125.0845 5 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 438145.15778999997 26 +Q9VWF0 LP01149p 34.31 9 18 9 80672.00473 13 +Q9VWG1 LD37169p 76.5 13 51 1 217116.3051 4 +Q9VWJ3 LD05272p 12.79 2 3 2 9546.6849 2 +Q9VWL4 GH07340p 9.39 5 11 5 45337.60875 10 +Q9VWP2 RH57257p 77.69 12 26 12 359462.65674999997 22 +Q9VWQ3 LD35981p 6.12 2 2 0 8852.191 2 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 103842.91741 9 +Q9VWS1 Houki 9.33 2 3 2 66497.3569 3 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 362021.2979 33 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 34644.4401 5 +Q9VWU0 FI18411p1 2.23 1 2 1 2977.18497 2 +Q9VWV6 Transferrin 63.81 41 264 41 8476729.357 217 +Q9VWW2 GH13094p 17.43 9 19 9 23726.357659999998 6 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 71483.4934 9 +Q9VX08 LD10434p 4.16 2 3 2 13131.285 3 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 12879.50264 5 +Q9VX26 Chascon, isoform A 2.65 4 4 0 10750.51115 3 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 3720200.60875 83 +Q9VX69 FI01450p 6.57 3 29 2 141243.7898 7 +Q9VXA3 LP21163p 16.85 11 23 11 135309.72019999998 18 +Q9VXA9 RE04047p 8.03 2 3 2 7290.025 1 +Q9VXC1 MIP06432p1 36.87 6 12 3 155193.87983 11 +Q9VXC9 trypsin 49.0 9 23 9 666191.5114 22 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 35811.0619 5 +Q9VXF9 AT13091p 15.5 8 19 8 84924.0728 14 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 46946.05375 8 +Q9VXH4 RE16337p 51.96 3 7 3 65623.90281 6 +Q9VXH7 FI17510p1 22.59 6 21 6 359265.2885 18 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 296171.7791 21 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 2611808.83661 39 +Q9VXJ7 GH03748p1 11.25 12 13 12 26056.02808 9 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 131749.56232 14 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 16286.01143 5 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 6880.376 1 +Q9VXM4 LD12946p 61.29 13 44 13 1154822.6882 41 +Q9VXN1 LD03728p 9.22 3 5 3 5494.433300000001 3 +Q9VXN3 LD07988p 17.42 8 15 8 81751.51370000001 13 +Q9VXP1 RING-type E3 ubiquitin transferase 4.69 1 1 0 727.3501 1 +Q9VXP3 GH05406p 12.21 7 8 7 25516.266819999997 6 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 65627.3273 4 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 14901.98334 4 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 734677.37294 45 +Q9VXR9 FI03680p 10.91 4 5 4 25459.3197 5 +Q9VXV1 RH52220p 19.02 4 5 4 19102.799 5 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 217778.6109 19 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 426414.58721 19 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 219942.56117 18 +Q9VY05 GH11762p 12.2 8 19 8 147325.98197 14 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 14970.7161 7 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 187553.7424 15 +Q9VY27 Nucleoside diphosphate kinase 18.54 3 3 3 462.33035 1 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 16801.6387 5 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 67392.5056 6 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 18306.32833 4 +Q9VY76 AMP deaminase 7.13 7 10 0 32946.32615 8 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 133340.24604 7 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 101966.47994 9 +Q9VY92 GEO07753p1 73.91 8 47 8 1248756.54885 39 +Q9VYA1 RE18811p 8.56 3 6 2 27138.526100000003 6 +Q9VYB2 LD19061p 2.83 2 2 2 1428.8850699999998 2 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 1687.5278 1 +Q9VYF0 GM09012p 14.93 4 10 4 28880.04192 8 +Q9VYG8 CG15717-PA 15.08 4 6 4 42593.02934 4 +Q9VYJ1 FI12805p 7.33 5 6 5 20581.5305 4 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 40412.44182 12 +Q9VYM0 CG2555-PA 14.21 3 6 1 5301.8315 3 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 2386.1752 3 +Q9VYN1 protein kinase C 0.84 2 18 1 638739.24974 7 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 7632.144400000001 3 +Q9VYS2 GH09980p 7.06 6 7 6 31765.397230000002 6 +Q9VYT0 RE04130p 30.84 7 9 6 302266.865 9 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 12127.85844 6 +Q9VYT3 FI23714p1 3.57 5 7 5 11593.95361 6 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 129734.82400000001 5 +Q9VYU9 RH17287p 45.02 7 14 7 150620.1558 14 +Q9VYV4 Amun, isoform A 4.91 3 5 3 16198.35466 4 +Q9VYV6 GEO09033p1 23.68 3 3 3 23160.815199999997 3 +Q9VZ00 FI19420p1 19.19 18 25 0 96801.2525 12 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 858886.65288 22 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 276444.91610000003 32 +Q9VZ24 GEO11412p1 44.25 7 77 7 3458736.95457 66 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 557.0215 1 +Q9VZ34 RH72958p 2.64 2 5 2 10851.26586 4 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 3477.4026 1 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 172534.5908 15 +Q9VZ59 LP02042p 6.12 1 4 0 39677.8581 4 +Q9VZ66 SD22308p 35.37 5 12 5 73705.8999 9 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 16516.76758 8 +Q9VZ71 RE01453p 9.04 2 3 2 6732.2652 2 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 30215.97562 6 +Q9VZE4 RE70333p 17.02 8 19 8 96141.04119999999 18 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 173980.225 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 11479.4221 3 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 427942.9328 13 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 2955590.39843 56 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 186108.35397999999 13 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 2386839.82166 43 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 18758.710499999997 7 +Q9VZI1 Transgelin 82.98 14 100 1 3844700.6866599997 75 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 45213.4209 6 +Q9VZJ2 GH27759p 16.59 7 14 7 81052.10317 11 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 22751.8841 6 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 433862.322 24 +Q9VZL3 very-long-chain enoyl-CoA reductase 3.64 1 1 1 456.3922 1 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 15805.086070000001 6 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 170309.9149 17 +Q9VZV2 Chitinase 7 7.7 7 9 7 36143.191100000004 7 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 7031.517 2 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 27807.17454 5 +Q9VZX6 LD06441p 7.98 3 4 3 40753.9662 3 +Q9VZY0 LD45195p 17.62 5 10 5 70957.61114000001 5 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 8828.71224 3 +Q9VZZ5 GEO12033p1 28.67 4 10 4 206781.04695 7 +Q9VZZ6 CG16985 protein 32.21 4 10 4 147882.5013 3 +Q9W022 GEO01508p1 64.08 8 33 8 1094864.3651 30 +Q9W073 RH22148p 9.41 2 2 2 10714.04607 2 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 969261.53147 17 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 399835.48383 15 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 44503.86821 9 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 37510.49134 5 +Q9W095 glycerol kinase 2.78 2 2 2 5546.3946 2 +Q9W0A8 FI01658p 18.77 5 15 5 254612.43000000002 15 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 422395.93711 27 +Q9W0C3 GH11843p 61.22 12 26 12 351333.13254 18 +Q9W0D3 GH15728p 1.78 3 4 3 7964.6121 2 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 23968.1192 3 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 110850.60651 15 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 429076.73863 18 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 27233.148999999998 3 +Q9W0J9 GH07301p 41.93 10 20 9 355818.8032 16 +Q9W0K9 LD10220p 9.38 2 2 2 26786.346 1 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 20339.1725 3 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 162680.99653 15 +Q9W0M5 Protein DPCD 8.56 2 4 2 9074.623739999999 4 +Q9W0N6 LD27967p 16.52 5 9 5 19905.7885 8 +Q9W0P4 GEO05053p1 15.45 2 4 2 16101.72998 4 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 45345.135949999996 8 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 8847.759 1 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 62236.01929 15 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 15325.3685 2 +Q9W0U0 glycerol kinase 2.23 1 1 0 10316.46 1 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 128110.31977 13 +Q9W0X1 GH15894p 1.58 1 1 1 15105.315 1 +Q9W0X2 GEO07322p1 12.4 2 2 2 25410.1393 2 +Q9W0X3 LD24657p 8.75 3 9 1 52551.612 7 +Q9W0Z5 LP09747p 10.07 6 23 6 47989.18245 17 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 3615512.01125 44 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 182862.53280000002 6 +Q9W136 Uncharacterized protein 39.13 6 15 6 195571.66096 11 +Q9W140 Regulatory protein zeste 6.4 3 5 3 2719.0651 2 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 4893.1155 3 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 976.26135 1 +Q9W158 LD36772p 7.49 3 11 3 65794.96885 9 +Q9W199 GEO07594p1 14.84 3 3 3 9188.8511 2 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 817513.7467299999 28 +Q9W1C8 LD24355p 16.3 6 14 6 29784.89992 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 56926.4715 5 +Q9W1F2 FI07217p 5.93 2 4 2 22993.8789 3 +Q9W1F7 IP15825p 25.14 10 36 10 821255.0651400001 32 +Q9W1F8 GEO08248p1 18.05 3 10 3 80866.11685 8 +Q9W1G7 LD21576p 24.05 7 13 7 295747.72 8 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 58828.22385000001 7 +Q9W1H6 GH04238p 8.46 2 5 2 207627.8889 4 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 790107.97748 45 +Q9W1I8 LD03592p 30.28 8 21 8 93072.61406 14 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 24112.4551 6 +Q9W1L8 GH11818p 5.92 2 3 2 10976.63765 3 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 8679.7344 4 +Q9W1N3 Levy, isoform A 50.46 5 24 5 998720.76725 22 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 6541.068 1 +Q9W1R0 RH49821p 6.07 3 5 3 14017.31936 5 +Q9W1R3 Golgin-245 14.24 21 27 21 107057.64716 23 +Q9W1V8 CG9893 protein 3.65 1 2 1 49378.986999999994 2 +Q9W1W4 RE45066p 22.13 8 19 8 117869.53549 15 +Q9W1X5 GH04942p 13.03 18 41 3 308000.86185 31 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 1830949.2336799998 45 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 681769.3604 8 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 23444.1425 6 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 14249.39296 5 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 162175.79839 25 +Q9W257 RH13652p 6.99 2 7 2 146314.6786 6 +Q9W258 Babos, isoform A 27.55 6 28 6 459636.30593 23 +Q9W259 FI23916p1 14.71 5 10 5 139288.70083000002 7 +Q9W260 GH03113p 15.4 9 26 9 118012.03236 23 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 23447.4433 3 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 120441.60773 26 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 13915.44575 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 241453.30761 15 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 10031.09168 3 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 37194.682 2 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 51526.83557 9 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 15733.146 1 +Q9W2L6 RH02475p 28.13 18 55 18 1062844.85688 45 +Q9W2M0 LD23155p 23.8 18 32 18 136305.46412 28 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 4088834.8917799997 58 +Q9W2M9 FI16623p1 6.47 1 3 1 3225.0419 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 43409.20593 5 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 272635.6361 7 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 219195.4242 11 +Q9W2V2 FI20035p1 3.86 3 3 3 31773.212 2 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 11864368.89195 133 +Q9W2Y5 YLP motif-containing protein 1 1.06 2 3 1 5724.7555 2 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 183706.66217 17 +Q9W306 GEO08256p1 14.05 2 4 2 46587.6761 4 +Q9W308 GH05731p 27.17 4 9 4 106768.34404 8 +Q9W309 GEO08445p1 29.63 7 11 7 204462.04275 9 +Q9W314 GH14088p 9.57 4 9 4 39880.2286 7 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 45994.124899999995 11 +Q9W330 Phosphotransferase 24.4 11 31 3 1030796.7321499999 29 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 229820.663 5 +Q9W337 GH19985p 21.56 4 12 4 72628.91935 8 +Q9W350 C11.1, isoform A 2.12 3 3 3 3950.5148 3 +Q9W370 GEO12084p1 44.26 4 19 4 479382.80253000004 16 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 46505.395130000004 6 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 25910.1261 9 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 732802.04015 39 +Q9W396 FI06908p 12.08 3 5 3 26938.4138 3 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 42836.74105 6 +Q9W3C3 LD10016p 17.41 8 12 8 46019.18344 9 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 19309.4765 5 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 52235.1079 7 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 53958.504 5 +Q9W3H4 LD36273p 62.35 12 36 12 633602.0001300001 34 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 21137.106 2 +Q9W3J6 FI06457p 12.29 4 4 4 5886.21876 3 +Q9W3K6 LD35927p 5.12 4 6 4 55910.54342 6 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 603263.62975 24 +Q9W3L4 GH20802p 12.56 6 12 6 35917.98227 9 +Q9W3M7 RNA helicase 9.1 8 19 8 52301.29531 11 +Q9W3M8 LD34211p 32.16 7 17 7 234698.34003999998 12 +Q9W3N1 RH59310p 7.17 2 3 2 7650.92893 3 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 84359.4829 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 571221.68659 28 +Q9W3Q0 FI07418p 18.35 4 11 3 12592.1204 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 77611.49100000001 5 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 48337.38557 10 +Q9W3T9 GM01152p 50.42 10 21 10 209686.16977 17 +Q9W3U9 CG14434-PA 36.9 6 15 0 62277.64005 12 +Q9W3V2 FI19713p1 4.82 4 5 4 9111.470809999999 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 3329.1594 1 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 53277.60194 6 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 1790578.40352 52 +Q9W3X8 RH42690p 13.47 5 10 5 10799.07211 7 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 143891.4014 10 +Q9W3Z4 GH18625p 2.43 1 3 1 5522.1597 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 2482433.01584 48 +Q9W403 LD24968p 11.05 6 14 6 18009.40068 10 +Q9W404 GH10714p 10.34 5 10 4 23501.48084 7 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 11890.0916 3 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 632323.77996 36 +Q9W425 Rabconnectin-3A 0.7 3 3 3 9151.1173 3 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 1703087.58746 66 +Q9W461 LD23868p 10.93 5 10 5 36856.5657 8 +Q9W482 Lin-52, isoform A 19.11 3 3 3 11831.9819 3 +Q9W483 GH18971p 15.83 5 8 5 49208.36494 6 +Q9W486 LD13361p 5.65 3 4 1 12060.771 4 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 106557.1207 10 +Q9W4A0 GH11193p 24.87 5 10 5 70816.4316 8 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 15049.912540000001 4 +Q9W4C2 lysozyme 18.42 4 5 4 67464.993 5 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 52535.5922 10 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 20847.94442 4 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 499986.3053 18 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 5062.12768 2 +Q9W4N8 LD30122p 72.86 14 57 1 2705225.02994 45 +Q9W4U2 RH09070p 31.33 6 19 6 95175.40057 12 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 11387.9506 4 +Q9W4W5 RE47284p 13.77 5 10 5 118736.52025 10 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 160546.69125 29 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 57049.88606 11 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 13020.6748 4 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 10206.0427 5 +Q9W503 RH61816p 23.76 8 17 8 112947.20506 14 +Q9W5B4 GH18858p 20.38 6 12 6 544828.17836 8 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 2433.66528 2 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 422.191 1 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 25065.6903 6 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 38359.80004 9 +Q9W5W7 GH19483p 6.06 4 6 4 45217.9734 6 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 1163991.0111 42 +Q9W5X0 LD21953p 23.88 5 25 0 35487.8315 3 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 97588.4108 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 67906.09223000001 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 2462478.46902 40 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 18243.2403 3 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 198764.20092 19 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 254895.92506 16 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 2775780.32769 74 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 335124.49599 47 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 195962.4583 30 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 5101304.61342 117 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 12658.9631 6 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 31815.50673 7 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 2356147.49106 56 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 52169.592300000004 5 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 472956.57493999996 37 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 5610500.07114 74 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 7741.98393 4 +R9PY51 Uncharacterized protein 34.95 5 42 5 3712449.5711999997 24 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 3097016.78755 113 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 117883.22304 11 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 69587.40737 6 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 15130.353 1 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 37472.5367 7 +X2JB48 ADP/ATP translocase 66.22 21 145 1 4754557.59977 115 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 104494.75503 24 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 21989.6337 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 9952407.98295 111 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 21048.8002 3 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 9402.185150000001 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 3623.5854 1 +P10674 Fasciclin-1 43.71 29 142 1 2296.6086 1 +P32865 G protein-coupled receptor kinase 1 2.57 2 2 0 613.70306 1 +Q08605 Transcription activator GAGA 6.37 3 3 0 9565.427599999999 2 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 8998.4367 2 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 10129.16743 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.72 3 3 3 1057.407 2 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 8300.87 1 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 6188.4113 2 +Q9VLL3 A-kinase anchor protein 200 22.18 13 38 1 2835.2942 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 3784.78584 2 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 11076.542000000001 2 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 24855.7202 3 +Q9W568 Protein halfway 5.56 3 4 0 967.0812 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 9.68 2 2 1 1722.4323 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 9256.5133 2 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.08 3 5 0 807.86566 1 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 28099.5474 3 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 1447.3686 2 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 4935.0219 3 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 188801.97 1 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 15607.049 1 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 26012.794400000002 3 +A1Z7M0 Space blanket 5.71 2 4 2 11159.2649 4 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 40442.766059999994 5 +B5RJS0 IP20241p 2.69 3 3 0 3179.8103 1 +E1JJM0 FI20063p1 14.83 10 14 0 94958.2622 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 3981.1794 3 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 11792.715830000001 4 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 13068.855 2 +Q0E8R1 FI07211p 29.47 10 55 0 5081.1798 2 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 96844.47775 17 +Q7JWH6 RE61424p 6.99 2 3 2 7052.918 1 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 1951.4074600000001 3 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 79337.5722 5 +Q7K1W4 Epoxide hydrolase 4.06 2 2 2 347.58682 1 +Q7KVW1 RE73736p 4.94 3 4 0 19340.9337 4 +Q7PLV6 FI02158p 1.7 2 2 2 2186.3647 2 +Q8I062 GH23305p 80.95 19 194 1 19559.6236 2 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 7163.786300000001 2 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 2.93 1 1 0 514.814 1 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 5076.85284 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 8703.1579 2 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 6333.83713 2 +Q9VG79 Xaa-Pro dipeptidase 4.89 3 3 3 928.3899 1 +Q9VHX1 LD44032p 1.41 1 1 1 632.99866 1 +Q9VKC1 IP16805p 2.72 1 1 1 11294.989 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 4015.46683 3 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 6324.2725 3 +Q9VTE1 Immediate early response 3-interacting protein 1 16.25 1 1 1 577.3153 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 10013.8709 2 +Q9VTY1 LD40136p 5.69 2 3 2 1413.63167 2 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 1562.0957 1 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 1561.0847 1 +Q9W2N5 GH10162p 3.47 2 4 2 7259.487999999999 4 +Q9W362 La-related protein 7 1.51 1 2 1 13657.5406 2 +Q9W525 LD08195p 3.8 2 4 1 3729.6378 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 10148.36345 4 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 1782.8977 1 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 7457.0215 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 16236.877700000001 2 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 2715.4224999999997 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 3872.2786 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 2159.0298 1 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 4608.1997 1 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 60894.5179 6 +E1JJ83 Os-C, isoform B 7.19 1 4 0 2219.43646 4 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 64642.20065 21 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 4698.5349 2 +O46231 FI18705p1 66.21 20 67 1 18014.161999999997 2 +Q6IDE2 GH07226p 2.0 1 1 1 8751.511 1 +Q7JVH0 Splicing factor YJU2 2.7 2 2 2 710.564 1 +Q7K527 Tetraspanin 6.91 2 2 2 559.1935 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 53130.849 2 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 3152.92213 2 +Q8IQ80 GH06117p 1.41 1 3 0 1614.2196 1 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 10949.61764 3 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 10064.44396 3 +Q9W5C1 RE02292p 1.13 1 1 1 3218.8694 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 9481.6343 2 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 3317.3064 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 15421.001400000001 2 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 27272.01678 5 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 19632.103 2 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 6022179.25356 122 +E1JH70 Kank, isoform E 1.18 1 1 0 1755.3397 1 +M9MRD4 Muscle-specific protein 300 kDa, isoform B 3.84 34 44 0 308.59088 1 +M9NFP1 Jim, isoform E 1.94 2 2 0 6284.0002 2 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 2521.377 1 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 7722.861 1 +Q8IQH6 Nebulosa, isoform A 2.12 1 1 0 695.3452 1 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 3560.85725 3 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 68295.5557 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 2842.2886 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 56729.39 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 255857.41999999998 2 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 8236.484 3 +Q9VZF0 LD44732p 3.61 1 1 1 1816.6998 1 +Q9W249 IP21806p 4.27 2 3 2 3439.9575 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 9710.27476 5 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 32195.387140000003 3 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 949.40356 1 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 2620.1926 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 117924.0248 3 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 12068.858 1 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 3320.9512 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 2283.124 1 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 3263.175 1 +Q8IPL4 Lethal (2) 05714, isoform B 3.32 1 1 0 1905.9962 1 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 813.57275 1 +Q9VV37 GEO13385p1 10.1 1 7 1 220895.57129999998 4 +Q9VVX6 BET1 homolog 6.84 1 1 1 12342.418 1 +Q9W152 RH33060p 5.63 1 2 1 1232.1395 2 +P48613 Protein tipE 3.54 1 1 1 402.95322 1 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 4671.0513 1 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 5457.42215 2 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 5816.2915 1 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 2198.7976 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 1 0 376.50272 1 +M9PDY5 Girdin, isoform C 0.65 1 1 0 517.9527 1 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 1872.5728 1 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 28971.6515 2 +Q9VB09 IP04131p 12.1 2 3 2 10542.936 2 +Q9VHN8 LD37279p 1.54 1 1 1 12466.943 1 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 10114.719 1 +Q9VV18 Cuticle protein 16.5 8.24 1 1 1 378.15048 1 +Q9W1X6 GH06673p 2.78 1 1 1 335.76556 1 +Q9W5E7 LP07417p 11.4 1 1 1 3086.9124 1 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 2419.218 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 117883.41672000001 8 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 3690.3213 1 +A1ZAU6 FI05912p 3.24 2 2 1 735.76086 1 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 16580.9904 2 +Q7K3Z8 GH01208p 2.35 1 2 1 6118.8498 2 +Q9VAN8 FI15955p1 6.08 2 2 2 4841.536 1 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 9526.9205 2 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 16478.268 2 +Q9VV55 GH08429p 3.98 2 3 2 5610.986360000001 3 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 3262.36353 2 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 30434.445 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 12.08 7 16 1 882.2593 1 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 12248.3999 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 13157.3459 3 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 36040.557199999996 6 +A1Z840 Cdc2-related kinase 4.39 2 2 2 751.3138 2 +Q9VXD7 GH04692p 5.61 2 3 2 863.05817 1 +Q9W3S4 LD46272p 5.26 2 3 2 5061.1705 3 +A8JQX3 Nocturnin 3.58 2 2 2 1688.1003 1 +A8JNM1 Formin 3, isoform B 1.69 3 3 0 1999.2496 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 1773.4004300000001 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 8735.2812 5 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 3413.8757 1 +O76857 BCL7-like 13.64 2 3 2 2672.78967 2 +Q7JY89 RE35124p 25.0 2 5 2 3500.4388000000004 2 +Q8IML5 V-type proton ATPase subunit a 8.28 8 17 0 443.7622 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 5468.7292 2 +A8JUP7 Serine protease Hayan 2.67 2 3 2 13390.5121 3 +P07664 Serendipity locus protein delta 4.16 2 3 2 21796.9767 3 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 5794.106400000001 3 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 1627.6046 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 36658.92 7 +Q8IQU7 825-Oak 17.05 2 3 0 18905.7953 2 +Q9VGM4 LD28119p 3.82 1 1 1 823.3577 1 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 96745.30887 28 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 3712.456 1 +Q9V3J8 Protein will die slowly 3.88 1 2 0 7875.225 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 373.19415 1 +Q7K0D3 CG12909 protein 6.76 2 3 2 12074.730029999999 3 +Q9VSK1 GH09510p 1.06 1 1 1 7248.5283 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 19590.416 1 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 6615.0838 3 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 6943.87 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 78931.17204 14 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 9256.496299999999 2 +Q8SXC0 GH10306p 2.86 1 2 1 10657.393 2 +Q9VQT5 FI01556p 13.92 1 4 1 1069.8005600000001 2 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 9766.307700000001 3 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 32639.4634 3 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 27793.535 1 +P45884 Attacin-A 5.36 1 1 0 14586.883 1 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 2446.51945 2 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 12303.873199999998 3 +Q9VV27 MIP11526p 7.63 1 1 1 18029.797 1 +O76324 Discs overgrown protein kinase 7.95 2 3 0 4027.98135 2 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 4425.792 1 +O18680 5-aminolevulinate synthase 3.34 2 2 2 2949.9543 1 +Q29QE1 GH15984p 0.57 1 2 0 10874.7853 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 2423.337 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 8884.0753 2 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 3770.6575 1 +Q9VEQ0 Xylulose kinase 1.99 1 2 1 2599.5305 2 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 247944.7084 2 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 17718.3952 2 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 8455.6241 3 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 20093.4445 2 +E1JGY7 Hulk, isoform G 10.66 12 17 1 874.5868 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 12001.2928 2 +Q9VF46 GH25158p 7.34 2 7 2 34025.9969 7 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 21852.427 2 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 13528.1708 2 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 8423.0612 2 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.32 1 1 1 493.74536 1 +A8JNU1 adenylate cyclase 1.02 1 3 0 3491.22636 2 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 1784.532 1 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 13603.7621 2 +Q7JW46 RE25483p 9.0 1 1 0 29256.486 1 +Q7K010 Tetraspanin 8.64 2 4 2 10538.36636 4 +Q9VUR4 FI11905p 19.75 6 14 1 3557.0764 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 857.2302 1 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 3667.0155 2 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 4579.163930000001 3 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 27250.8969 3 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 3780.0457499999998 2 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 2365.796 1 +A8JNV2 Uncharacterized protein 10.71 1 3 1 9925.593700000001 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 2385.511 1 +Q9VRX7 LD29573p 1.32 1 1 1 728.62354 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 19106.4484 2 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 5933.5794 2 +O46099 EG:8D8.2 protein 0.63 1 1 1 1984.5106 1 +Q7JZZ3 RE03883p 6.99 2 3 2 32099.8785 3 +Q8SWU4 RE25571p 17.08 5 12 1 6904.588 1 +Q8SWX4 Aminopeptidase 2.39 2 2 2 447.17395 1 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 33046.574 2 +O16043 Anon1A4 9.84 2 3 2 4220.99138 3 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 3917.0583 1 +Q8SXW3 GV1, isoform B 13.33 2 5 0 36509.85836 5 +Q8IRN0 FI06485p 3.21 1 2 1 7041.492 2 +Q9VHS6 Copper transport protein 6.32 2 3 2 2216.99634 3 +D8FT19 MIP22288p 4.05 2 3 0 13639.2998 3 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 7428.5707 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 4195.318 1 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 3.23 1 2 1 1764.4154 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 5215.271 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 750.01636 1 +Q9VT15 GH14734p 8.33 2 4 2 5719.5650000000005 2 +A1A750 GEO11067p1 6.93 1 1 1 11482.491 1 +Q9VF83 LD33178p 4.33 2 4 2 10461.1814 3 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 48110.5524 3 +Q9W590 Large subunit GTPase 1 homolog 1.49 1 1 0 1489.3286 1 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 2821.6978 1 +Q9VWA7 Golden goal 0.79 1 3 1 15315.628 1 +M9PCK0 Decima, isoform D 9.87 2 3 0 12207.872299999999 3 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 32577.7818 2 +Q9VPA9 LD24894p 1.45 1 2 1 5707.447099999999 2 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 12377.0692 2 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 865.35223 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 8297.3072 2 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 10948.60414 3 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 2277.7126 1 +Q7KV26 Kinase 1.45 1 1 0 3139.9722 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 5560.8887 1 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 27888.205 1 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 810.98303 1 +Q7K4Y8 GH22690p 3.14 2 2 2 1130.8303999999998 2 +Q9VCQ7 LD40758p 2.61 2 3 2 8529.0513 2 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 4727.28854 2 +Q9VDL4 LP04613p 2.72 1 3 1 7982.9624 3 +Q9VS55 CTCF 2.2 2 3 2 2978.91835 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 10314.081 4 +Q7K4X4 GH24095p 2.0 1 1 1 324.90054 1 +Q9VJ06 LD05576p 4.55 1 1 1 906.4475 1 +Q9VGE8 Tachykinins 2.42 1 2 0 14788.493 1 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 601.9701 1 +Q29QQ9 Ribosomal RNA-processing protein 42 3.38 1 1 1 1762.0701 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 2 1 350.5531 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 10334.281200000001 2 +Q7YU81 Protein charlatan 0.66 1 2 0 6605.14918 2 +Q9VHV3 FI02011p 1.5 1 1 1 7055.0806 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 1980.9436 1 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 3897.04292 3 +Q7K8Y3 IP16419p 17.86 7 17 0 50919.69984 11 +Q8STG9 DSec61alpha 4.2 2 3 2 2845.81295 2 +Q8IGV3 RE23632p 6.34 2 2 2 878.60565 1 +P22812 Protein Tube 3.9 2 2 2 3366.6377 1 +Q9VJ45 UDP-glucuronosyltransferase 3.48 2 2 2 433.8029 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 1571.5944 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 22833.545 1 +Q9VZX8 AT02196p 2.89 1 1 1 919.2772 1 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 4407.2173 1 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 5218.501 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 15515.705999999998 2 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 6530.1826 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 3226.6256000000003 2 +Q9W3F7 Mitoguardin 4.19 2 3 2 1496.1248500000002 2 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 5825.883 1 +Q9W4F9 IP01388p 3.65 2 3 0 2957.35787 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 3984.1885 1 +Q7KMJ6 RNA-binding protein spenito 1.13 1 1 1 824.3186 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 1010.87093 2 +A1ZAX6 FI02012p 1.2 1 1 0 764.92896 1 +F0JAQ9 MIP27169p 5.85 2 3 0 1632.0514 1 +P18289 Transcription factor Jra 3.11 1 1 0 11918.095 1 +Q9VMX1 KIF-binding protein 2.83 2 2 2 12678.4661 2 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 9442.8682 2 +O18405 Surfeit locus protein 4 homolog 7.04 2 2 2 854.57434 1 +Q9VR55 LD29159p 8.71 1 3 1 9959.85785 3 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 1713.8785 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 3690.2896 1 +Q9BLX1 PDGF- and VEGF-related factor 1, isoform B 7.64 2 2 0 1546.4198 1 +P54194 General odorant-binding protein 84a 4.57 1 1 1 737.8489 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 739.9072 1 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 14202.48406 6 +Q8IR92 Uncharacterized protein, isoform A 8.58 7 12 0 816.6837 1 +Q7KVT8 Orion, isoform B 3.1 2 2 0 1799.2164 1 +Q9VV26 GEO12049p1 6.84 1 4 1 51873.5664 4 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 426.25656 1 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 632.2355 1 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 30921.5109 4 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 7083.5254 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 2187.369 1 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 3020.76782 3 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 8303.008 1 +A1ZAG3 Protein G12 8.33 1 2 1 2526.3746 2 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 10305.411 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 14067.76414 2 +Q7K1R6 LD46221p 7.98 2 3 2 825.02167 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 41461.212499999994 5 +Q6IJE8 HDC15077 17.04 2 5 2 50574.75974 4 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 3 0 1578.508 1 +Q9VVI0 SD09427p 1.81 1 1 1 4629.2666 1 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 9867.86795 2 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 15294.0069 2 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 7831.9805 1 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 1786.4886 1 +Q9W494 Crossveinless 8.17 2 4 2 17822.9384 2 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 2500.4692 1 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 9693.0386 2 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 29047.276599999997 5 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 65.12 25 150 0 1279.88788 2 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 4143.3396 2 +Q95NH6 Attacin-C 6.64 2 2 2 10838.629 1 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 32036.934 1 +Q8MRQ1 GH06222p 1.49 1 1 0 870.3663 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 869.4111 1 +Q9VPR6 Kinase 2.59 1 1 1 2666.728 1 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 1859.469 1 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 7441.37274 3 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 15287.1242 3 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 989.15546 1 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 1.94 1 1 1 324.621 1 +Q9W547 Large ribosomal subunit protein uL16m 3.29 1 1 1 852.908 1 +E1JJS1 glutathione transferase 2.61 1 1 0 773.2648 1 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 3841.58 2 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 3.9 1 1 1 476.0212 1 +Q9VAM2 Aminopeptidase 2.71 2 2 2 793.4371 1 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 707.9087 1 +Q9VC27 Nicastrin 1.15 1 1 0 7213.2915 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 2144.0286 1 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 7475.1733 1 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 4365.65627 3 +E1JIS4 Uncharacterized protein 13.33 2 2 2 1575.9459 1 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 7770.8135 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 3251.0480000000002 2 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 2 0 541.3137 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 7750.270869999999 2 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 801.18317 1 +Q7JX82 GH21964p 6.85 2 3 2 745.1392 1 +Q7K490 SD03973p 4.07 2 2 2 3132.5046 1 +Q7YTZ0 GH09436p 2.16 1 1 0 822.99817 1 +A0A0B4LG67 Uncharacterized protein, isoform E 4.2 2 3 0 1169.5372399999999 2 +O76876 Protein sex-lethal 3.71 2 3 0 13646.6031 3 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 94327.11 1 +M9PGK1 Glycosyltransferase family 92 protein 3.52 2 2 0 612.8308 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 5305.4956999999995 2 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 13574.083 1 +Q02936 Protein hedgehog 2.34 1 1 1 4702.1104 1 +Q6NN09 ATPase protein 9 5.07 1 11 1 393455.9136 10 +O76874 SD17974p 1.93 2 3 2 2706.2857 2 +Q9VEB2 LD28404p 8.58 2 2 2 25041.97 1 +A0A9F2H0X3 Sidestep II, isoform C 0.75 1 1 0 563.72314 1 +Q9VGL2 GM08392p 2.65 1 1 1 4695.184 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.2 1 1 1 397.3799 1 +Q9VB59 Filamin-A 8.86 2 2 2 347.01532 1 +P41964 Drosomycin 31.43 2 2 0 13666.830969999999 2 +Q9VAX9 MIP05919p 7.94 2 2 2 28366.771 1 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 944.43115 1 +Q9VL21 LD11652p 4.15 1 1 1 437.06003 1 +Q9VBD8 RT02919p 4.37 1 2 0 480.29022 1 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 1602.43684 2 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 2100.22 1 +Q58CJ5 GH01093p 2.34 2 2 0 9212.06185 2 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 48147.306 3 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 7024.0321 3 +Q9VK20 LD18447p 4.59 2 3 2 6118.19905 2 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 38366.0593 2 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 1788.2281 1 +Q9VX38 CG8326-PA 6.33 2 2 2 27682.58115 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 2368.3 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 2 1 561.4304 1 +Q0E985 RH74701p 13.33 1 1 1 4410.794 1 +Q9VCC2 RE50040p 4.86 2 2 2 15252.151600000001 2 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 507.08115 1 +P04657 Cytochrome c-1 17.14 2 11 0 11489.7245 2 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 3326.52 1 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 7138.512699999999 2 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 12977.965269999999 2 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 2626.614 1 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 4913.1336 2 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 2743.301 1 +Q4U2G8 FXNA-like protease 1.8 2 3 0 1428.7866 2 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 7771.521699999999 2 +Q9VGZ2 FI06805p 3.86 1 2 1 15425.2405 2 +Q7JY80 M-spondin, isoform A 2.0 1 1 1 433.714 1 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 11654.7718 2 +E1JHX0 MIP29328p 3.76 1 1 1 3811.8953 1 +Q9V451 Mst85C, isoform A 4.96 1 2 1 5627.5858 2 +Q9VUX2 E3 ubiquitin-protein ligase mind-bomb 0.98 1 1 1 489.53165 1 +D6W4V3 MIP19557p 4.74 1 2 0 2516.1097 2 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 2472.5723 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 511.23773 1 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 8744.2398 2 +Q9V9R3 adenylate cyclase 0.6 1 1 1 3359.9392 1 +Q9VX35 LD36501p 5.06 2 2 0 3071.4336399999997 2 +Q9VUE5 LD17962p 1.45 2 3 1 9369.0937 2 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 1645.1185 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 10784.864399999999 3 +Q7KJ73 Tetraspanin 3.95 1 1 1 2072.33 1 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 12408.56025 2 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 3608.3687 1 +Q8IRK0 GH04558p 1.52 1 1 1 22495.754 1 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 4382.213 1 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 4108.471 1 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 750.1113 1 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 12464.311 1 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 19366.557 2 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 1790.3687 1 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 3562.7417 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 2865.94 1 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 2193.1868 1 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 369.14447 1 +Q9W1H3 FI21285p1 3.25 1 1 1 2184.728 1 +Q9VV21 GEO07736p1 16.26 1 1 1 36822.746 1 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 2122.0195 1 +Q6II41 HDC19846 30.3 1 1 1 2889.6487 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 994.6608 1 +Q9W2F6 RE36793p 7.09 1 1 1 8769.867 1 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 495.8784 1 +Q9VPW8 Protein pinocchio 4.42 1 1 1 891.2067 1 +Q9VBZ9 Beta-1,4-galactosyltransferase 7 3.73 1 1 1 344.1541 1 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 1461.34256 2 +Q9VDM7 Trimethyllysine dioxygenase, mitochondrial 2.2 1 1 1 661.6833 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 766.60444 2 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 72910.81235000001 10 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 9778.542 1 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 1244.0472 2 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 14613.6676 2 +A8DYV9 GEO02589p1 10.53 1 2 1 9669.7328 2 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 2545.444 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 11459.04 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 4697.22436 2 +Q7K1H9 GH07575p 3.69 1 3 1 29346.3294 3 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 10850.252 2 +Q7JQN4 RNA helicase 1.66 1 1 1 1571.2131 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 1770.4844 1 +B7Z0J4 COX assembly mitochondrial protein 13.75 1 1 1 603.8176 1 +Q9VEA6 Protein AAR2 homolog 3.17 1 1 1 2035.8131 1 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 12866.488360000001 2 +Q9VGJ7 FI23918p1 1.01 1 1 1 1703.6335 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 8459.9171 3 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 333.9217 1 +Q24306 Death-associated inhibitor of apoptosis 1 3.2 1 2 0 1301.65797 2 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 19317.621 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 75987.4274 2 +Q9VMM3 RE17389p 2.61 1 1 1 570.3044 1 +Q9W551 GEO02601p1 7.55 1 1 1 3187.6042 1 +A1A753 IP17594p 10.11 1 1 1 5658.488 1 +Q9VTG6 Ubiquitin carboxyl-terminal hydrolase MINDY 2.46 1 1 1 456.40155 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 3457.2078 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 14286.7494 2 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 1973.3643 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 2418.3933 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 14769.8226 3 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 2289.1985 1 +Q9VUV9 U5 small nuclear ribonucleoprotein 200 kDa helicase 0.47 1 1 1 423.52518 1 +Q9BMG9 Beaten path IIa 3.94 2 4 1 9757.3825 2 +Q95RU0 Protein cueball 1.55 1 1 1 4697.8647 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 2358.411 1 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 93544.402 2 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 2197.5159 1 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 2609.3943 1 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 2890.8676 2 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 138153.8117 2 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 2248.0042 1 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 12476.5581 2 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 3063.6194 1 +Q9VZR5 RE46159p 4.02 1 1 1 2166.3757 1 +Q9VE49 LP06937p 1.3 1 1 1 1896.582 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 756.6002 1 +Q9VQU0 BPTI/Kunitz inhibitor domain-containing protein 8.53 1 1 1 689.22546 1 +Q8T092 LD21421p 2.45 1 2 1 496.57565 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 1398.4013599999998 2 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 4327.5576 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 1 794.0345 1 +Q7K4G8 LD40944p 1.7 1 1 1 1956.0719 1 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 5678.1743 1 +Q9VBA5 GM18993p 2.15 1 1 1 1906.0306 1 +Q9VKE7 GH09228p1 10.39 1 2 1 593.19946 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 426.13193 1 +Q7KA66 Serpin 43Aa 2.56 1 2 1 6401.277099999999 2 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 4224.4548 2 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 7558.5073 1 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 668.00366 1 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 3039.4766 1 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 16784.676 1 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 2316.554 1 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 2475.3574 2 +Q9VJM4 Beaten path Ic 2.25 1 1 1 3043.7456 1 +Q6NMT8 AT01712p 1.8 1 1 1 2087.2375 1 +M9PHP7 Faulty attraction, isoform F 0.84 1 1 1 698.20355 1 +Q9VX17 LD36024p 3.1 1 1 1 2662.9714 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 3120.2593 1 +A1ZB29 Thymidylate kinase 5.21 1 1 1 668.44556 1 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 8358.898 1 +P36192 Defensin 8.7 1 3 1 34006.258 3 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 987.9239 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 5341.592500000001 2 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 2438.0690999999997 2 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 175477.527 2 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 264698.498 3 +Q5BIL9 SD21168p 1.63 1 2 0 11686.0265 2 +O61345 Protein penguin 1.76 1 1 1 779.85016 1 +A1Z6H0 Kune-kune 2.65 1 4 1 23321.212 3 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 3709.45265 2 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 7903.6147 2 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 1928.9192 1 +Q9VG84 DNA ligase 1.12 1 1 1 628.1679 1 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 4899.4365 1 +Q9VHJ4 GH04846p 2.25 1 1 1 3478.2754 1 +Q9W226 GEO07239p1 5.88 1 2 1 4201.4235 2 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 1762.3748799999998 2 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 741.4521 1 +Q9I7U1 LD36721p 5.29 1 1 0 7402.7725 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 2646.93 1 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 149303.11 2 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 17602.074999999997 2 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 708.7033 1 +Q9V412 STING ER exit protein 4.45 1 1 0 674.69025 1 +Q8MRQ2 GH05923p 2.74 1 1 0 5293.301 1 +Q8SY53 GH11935p 2.73 1 2 1 1838.893 1 +Q7JVN6 GH17672p 2.24 1 2 1 3269.3491 2 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 821.0648 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 8219.337 1 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 1129.9223 2 +Q9VGW5 GEO08194p1 5.8 1 1 1 2617.9983 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 331.46957 1 +Q9VJV8 DNA polymerase subunit gamma-2, mitochondrial 2.77 1 1 1 523.4942 1 +O77237 Protein pellino 1.65 1 1 0 3139.5962 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 16076.6402 2 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 770.5177 1 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 13379.218400000002 2 +Q9V9X7 polyribonucleotide nucleotidyltransferase 1.3 1 1 1 539.55066 1 +Q9VGG0 LD47774p 1.67 1 1 1 3181.3552 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 718.8358 1 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 28470.729 1 +Q9W1H1 GH17155p 3.28 1 1 1 2058.0093 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 2 0 642.79297 1 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 16781.715 1 +Q9VKX8 Defective proboscis extension response 19, isoform A 2.86 1 1 1 414.00638 1 +Q4V3U8 IP10038p 2.76 1 1 1 370.5545 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 17719.5984 2 +Q9VB21 Uncharacterized protein 0.6 1 1 1 735.2753 1 +Q4V6L7 IP04672p 6.72 1 1 1 861.751 1 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 574.0699 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 965.68695 1 +A1A6X2 IP16893p 12.07 1 1 1 2006.775 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 863.47296 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 7423.4459 2 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 736.75134 1 +Q9VJ16 GH26014p 2.96 1 1 1 756.28107 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 2 0 524.1237 1 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 13109.323 1 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 5523.5235 2 +Q9VSF4 Probable deoxyhypusine synthase 2.72 1 1 1 719.30884 1 +Q9VX71 Uncharacterized protein 5.2 1 2 1 12033.288400000001 2 +Q6IKC0 HDC12925 14.29 1 1 1 2593.876 1 +Q8IQ51 trypsin 3.05 1 1 1 7458.3403 1 +Q9VHS0 FI07206p 2.49 1 1 1 1715.3168 1 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 694.96436 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 2824.4263 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 2 1 2605.8864 2 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 790.4569 1 +Q9VEM0 RE41712p 5.62 1 1 1 933.71704 1 +Q9W081 AT01075p 2.34 1 1 1 836.9844 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 332.54337 1 +Q8SXX2 Angiotensin-converting enzyme 1.07 1 1 1 468.43628 1 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 746.5183 1 +Q9W328 Protein LST8 homolog 2.56 1 2 1 5424.566 2 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 1193.07414 2 +Q6NR46 Serine palmitoyltransferase 1 1.5 1 1 1 664.77435 1 +Q9VD92 Protein archease-like 5.77 1 1 1 2599.1143 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 1473.4421 1 +A0A6H2EJZ8 Headbutt, isoform E 1.1 1 1 0 563.321 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 39176.0994 3 +Q9VDB8 RH37844p 8.42 1 1 1 6250.875 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 36710.262 2 +M9PIC9 Spc105-related, isoform B 0.41 1 1 0 437.47507 1 +Q8SZB7 RE07960p 3.12 1 2 1 19541.759 2 +Q9VFX8 FI14740p 2.51 1 1 1 1656.4236 1 +E1JH94 GEO02631p1 7.03 1 1 1 1752.945 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 1938.3802 1 +Q7JWF7 RH26557p 5.11 1 1 1 7363.21 1 +Q9W2L2 LD27118p 0.67 1 1 1 1539.6743 1 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 42346.785 1 +Q9VFE6 RRP15-like protein 3.26 1 1 1 360.34183 1 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 1649.7264 1 +Q9VJU2 Nimrod C3 3.12 1 2 1 10248.8875 2 +Q9W3Q2 SD08447p 1.26 1 1 1 3981.6853 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 435.91675 1 +Q9VAQ3 GH18608p 2.19 1 2 1 2414.4626 1 +A1Z979 Salivary secreted peptide 6.25 1 2 0 6761.4653 1 +Q9VYC9 FI16963p1 4.12 1 1 1 459.2104 1 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 98320.3163 13 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 17346.31083 6 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 60470.13806 12 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 6021.56508 5 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 27459.5202 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F2_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F2_TMTb.txt new file mode 100644 index 0000000..a37a9ed --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F2_TMTb.txt @@ -0,0 +1,3835 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 127C, Sample, n/a, SF1g_F2 Abundances Count: F5: 127C, Sample, n/a, SF1g_F2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 71428.2855 5 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 43081.0594 7 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 3166251.0570300003 59 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 8861.9659 2 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 185864.541 9 +A0A1F4 Protein eyes shut 12.13 24 45 0 841937.7483 38 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 5781.3105 1 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 254135.51526 16 +A1Z713 Intermembrane lipid transfer protein Vps13 0.39 1 1 1 596.9481 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 11927.8491 2 +A1Z877 Nidogen 18.37 23 35 23 861272.2794 33 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 41808.602 3 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 65484.151 2 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 613943.87115 47 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 252024.0062 8 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 159460.722 6 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 114356.2375 8 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 167584.26009999998 18 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 54879.5363 3 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 13751.765 2 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 70185.3784 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 8346.064 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 7123.8696 1 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 12420.4795 1 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 404153.2624 9 +A8DYP0 Protein Obscurin 1.38 6 8 6 53076.0836 6 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 368514.40270000004 12 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 2576081.18779 95 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 300845.1052 16 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 1054239.24964 39 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 1219172.4594999999 23 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 114987.49900000001 3 +C0HL66 Histone H3.3A 52.21 6 31 0 26495.150999999998 2 +C0HLZ9 Baramicin A1 12.45 3 4 0 97794.49299999999 4 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 513719.23180999997 25 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 265536.169 10 +M9NDE3 Protein bark beetle 2.08 7 7 7 77330.3782 7 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 6084885.3705 68 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 93359.9252 8 +O01367 Protein held out wings 10.37 3 4 0 29242.2992 3 +O01382 Caspase drICE 12.68 4 4 4 15541.1916 2 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 368604.8064 11 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 8296361.11635 93 +O02194 Presenilin homolog 5.73 3 3 0 17311.0186 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 306340.196 9 +O02649 Heat shock protein 60A 65.1 34 143 23 9273334.75513 130 +O15943 Neural-cadherin 14.01 44 66 2 1497518.0122 65 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 184353.0025 9 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 21074.20062 4 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 55287.9127 5 +O18333 Ras-related protein Rab-2 24.41 6 11 6 261469.6303 11 +O18334 Ras-related protein Rab6 33.65 8 12 0 103001.8998 6 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 907297.7927999999 16 +O18388 Importin subunit beta 2.26 2 2 0 7872.263500000001 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 8589710.6732 116 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 1035110.7659 26 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 461232.8735 12 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 19904.288 2 +O44342 Protein windbeutel 28.79 7 9 0 152681.5397 9 +O44386 Integrin alpha-PS3 6.1 8 8 8 147408.9907 8 +O46037 Vinculin 55.88 45 103 0 3455121.5833 94 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 45051.764800000004 4 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 268939.632 10 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 109859.8934 4 +O46339 Homeobox protein homothorax 4.72 2 2 2 3215.6445 1 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 700085.7613 11 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 24604.1155 3 +O61307 Teneurin-m 0.92 2 2 0 26251.184 1 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 298964.0307 10 +O61491 Flotillin-1 45.77 19 45 19 2187933.4464000002 45 +O61722 PRL-1 phosphatase 55.11 7 19 7 897964.2594000001 16 +O62619 Pyruvate kinase 57.6 24 73 24 5631362.38257 63 +O62621 Coatomer subunit beta' 2.84 3 3 3 15090.7172 3 +O76206 Putative riboflavin kinase 55.56 6 17 0 523545.4187 12 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 293379.8882 6 +O76742 Ras-related protein Rab7 36.71 7 10 7 370150.844 10 +O76878 RILP-like protein homolog 8.35 4 5 0 76795.14 5 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 208927.6296 9 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 171792.2967 8 +O77051 Transcription factor E2F2 18.65 7 9 0 53537.2033 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 69678.32406 4 +O77277 Torsin-like protein 15.29 6 8 0 144513.3973 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 55819.802500000005 4 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 127784.57 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 267373.9321 14 +O96690 Protein PDF 23.53 1 1 1 3430.4465 1 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 4733319.81478 79 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 67274.972 7 +O97125 Heat shock protein 68 35.28 20 66 13 482905.0972 21 +O97172 UPF0729 protein CG18508 21.21 3 5 0 61031.9666 4 +O97394 Protein sidekick 1.48 3 3 0 20055.289 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 73577.798 3 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 2277227.2205 39 +P00334 Alcohol dehydrogenase 85.16 20 241 20 21833979.64288 216 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 3204703.6951 17 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 3970.6987 2 +P02255 Histone H1 14.45 3 3 0 56053.727 3 +P02283 Histone H2B 54.47 8 74 8 2387137.4863 68 +P02299 Histone H3 52.21 6 34 2 6559404.3270000005 29 +P02515 Heat shock protein 22 32.76 6 14 6 330041.479 13 +P02516 Heat shock protein 23 70.97 15 72 0 7005851.73906 70 +P02517 Heat shock protein 26 58.17 9 19 0 2478409.86541 19 +P02518 Heat shock protein 27 52.11 10 28 0 847968.1544400001 25 +P02572 Actin-42A 63.83 25 618 2 102011191.02785 532 +P02574 Actin, larval muscle 65.69 27 537 0 941570.4696600001 24 +P02828 Heat shock protein 83 59.27 42 143 0 9388016.89004 131 +P02843 Vitellogenin-1 73.35 27 218 0 21581503.26004 171 +P02844 Vitellogenin-2 67.65 24 169 0 15877903.70807 129 +P04197 Myb protein 2.74 2 2 0 15650.512999999999 2 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 711662.025 8 +P04388 Ras-like protein 2 33.33 5 7 5 61719.2298 6 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 9405.233199999999 3 +P05205 Heterochromatin protein 1 32.52 7 16 7 142541.13689999998 15 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 2300055.42266 16 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 1997246.425 18 +P05552 Transcription factor Adf-1 12.21 3 3 0 90802.397 3 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 361788.0703 8 +P05812 Heat shock protein 67B1 11.91 5 6 5 77077.465 5 +P06002 Opsin Rh1 8.85 3 8 3 127758.10716 8 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 34199219.02445 165 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 34868.315 2 +P06607 Vitellogenin-3 79.05 31 233 0 48017104.68233 215 +P06742 Myosin light chain alkali 41.94 6 120 0 13819139.79955 104 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 4011.825 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 6048911.65 26 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 13643310.8316 102 +P07665 Serendipity locus protein beta 1.97 1 1 0 9950.655 1 +P07668 Choline O-acetyltransferase 9.71 6 7 6 31039.511599999998 7 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 41429309.42235 292 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 39392.4233 3 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 271504.925 12 +P08144 Alpha-amylase A 23.48 10 15 0 545187.5235 14 +P08171 Esterase-6 20.22 12 20 0 772220.3592000001 19 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 126189.75826 4 +P08182 Casein kinase II subunit beta 32.77 7 18 2 773131.9013 16 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 4145534.3143 39 +P08645 Ras-related protein Rap1 40.22 6 12 0 197065.26509 12 +P08646 Ras-like protein 1 37.04 5 13 5 1149213.226 12 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 19329089.9969 116 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 390637.1324 13 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 8362205.7256 69 +P08928 Lamin 66.88 49 174 48 7669513.85025 155 +P08985 Histone H2A.v 41.84 7 43 5 1399125.39632 23 +P09040 Drosulfakinins 17.73 3 4 3 187400.956 4 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 2436382.75516 47 +P09208 Insulin-like receptor 1.77 5 5 5 3750.4346000000005 3 +P09491 Tropomyosin-2 64.44 27 221 1 245219.428 4 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 120912.4171 7 +P10180 Homeobox protein cut 0.69 1 1 0 1760.4264 1 +P10379 Protein unzipped 27.05 12 27 0 1111056.6202 24 +P10552 FMRFamide-related peptides 5.76 2 2 2 89585.51699999999 2 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 941324.65191 62 +P10981 Actin-87E 68.62 28 611 0 15524804.1484 26 +P10987 Actin-5C 64.36 27 636 0 1134039.4231 14 +P11046 Laminin subunit beta-1 22.87 37 67 37 2479346.22602 63 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 2484.1213 1 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 31111396.30874 298 +P11584 Integrin beta-PS 19.98 17 28 0 542110.0845 26 +P12024 Chaoptin 27.6 35 84 0 2648258.3027 74 +P12080 Integrin alpha-PS2 13.11 18 23 18 934687.351 22 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 1888176.0459999999 34 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 181156.2226 9 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 425893.4364 14 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 1626517.4229000001 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 151687.8728 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 116573.84909999999 6 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 1573812.0591 37 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 3197075.13232 93 +P13395 Spectrin alpha chain 63.6 137 494 0 27413239.20067 453 +P13469 DNA-binding protein modulo 6.83 4 4 0 26394.1572 3 +P13496 Dynactin subunit 1 15.18 21 23 21 423507.10219 20 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 3385763.30434 123 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 180291.94236 15 +P13678 Protein kinase C 3.92 3 3 0 93916.746 3 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 13951.189 1 +P14199 Protein ref(2)P 22.37 11 19 11 373425.0546 16 +P14318 Muscle-specific protein 20 82.61 17 66 17 3476745.8387 62 +P14484 Pupal cuticle protein 27.17 5 19 5 514601.5014 18 +P14599 Amyloid-beta-like protein 1.92 2 2 0 13855.8565 2 +P15007 Enolase 74.2 31 339 1 35470825.89033 299 +P15215 Laminin subunit gamma-1 39.35 55 99 0 2681192.3339 90 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 417792.859 3 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 4564876.53844 60 +P15364 Protein amalgam 13.21 4 5 0 212909.402 4 +P15372 Phosrestin-2 60.16 20 59 0 2742098.03558 51 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 115742.1645 8 +P16378 G protein alpha o subunit 26.55 10 39 7 1154458.99128 38 +P16554 Protein numb 7.73 4 5 0 80712.6433 5 +P16568 Protein bicaudal D 18.8 15 17 0 251643.6562 17 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 231976.2464 9 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 6484.202 1 +P16914 Protein elav 23.4 9 28 0 645580.36964 27 +P17210 Kinesin heavy chain 44.31 40 74 40 2660435.51255 70 +P17276 Protein henna 40.71 15 27 0 1339942.9976 26 +P17336 Catalase 34.78 14 49 14 1840170.8054 40 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 2090948.0030999999 24 +P17719 Dihydrofolate reductase 19.78 3 4 3 73631.8592 4 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 2402955.154 33 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 7874.099 1 +P18431 Protein kinase shaggy 33.85 16 43 0 2067470.94107 39 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 14128783.95853 173 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 292786.0035 8 +P18824 Armadillo segment polarity protein 22.78 16 24 0 557525.8175 24 +P19107 Phosrestin-1 73.82 32 213 32 14732390.58927 198 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 811488.6181000001 20 +P19334 Transient receptor potential protein 2.51 4 4 3 26688.176 3 +P19339 Protein sex-lethal 4.52 2 2 0 17164.055 2 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 679150.0706 14 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 4413495.4259 73 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 161190.5934 4 +P20153 Protein ultraspiracle 2.76 2 2 0 15582.4991 2 +P20228 Glutamate decarboxylase 18.04 8 26 0 638388.93867 24 +P20232 Transcription elongation factor S-II 31.63 7 8 0 290488.0168 7 +P20240 Otefin 32.08 11 14 11 156126.65446 12 +P20241 Neuroglian 25.81 31 74 0 2253051.10973 71 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 79362.5467 4 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 12864.4102 2 +P20354 G protein alpha s subunit 39.74 13 26 1 3335.0996 1 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 3884.9678 1 +P20432 Glutathione S-transferase D1 55.5 13 79 9 9684948.4486 64 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 4954685.49416 51 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 34966645.36254 163 +P21187 Polyadenylate-binding protein 38.01 18 35 18 886650.37234 34 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 7973365.78194 90 +P22465 Annexin B10 76.01 24 139 24 7211414.2307 121 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 1223517.2025 32 +P22813 Heat shock factor protein 2.75 2 2 0 3513.96035 2 +P22815 Protein bride of sevenless 1.23 1 1 1 29510.518 1 +P22979 Heat shock protein 67B3 53.77 7 19 7 906746.0363 17 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 11843.3002 2 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 377182.19172 27 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 54447.7023 3 +P23625 G protein alpha q subunit 51.56 19 75 16 3595087.74736 65 +P23654 Neurotactin 12.41 10 13 0 173390.8362 13 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 342409.1164 13 +P23779 Cystatin-like protein 63.49 8 32 8 2195503.83469 29 +P24156 Prohibitin 1 68.48 17 53 0 2395984.65266 47 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 8912730.791 94 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 51773.898 3 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 808879.5055000001 21 +P25171 Regulator of chromosome condensation 6.03 4 4 4 189582.52300000002 4 +P25228 Ras-related protein Rab-3 33.64 7 18 0 324767.8152 12 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 36854.7738 6 +P25822 Maternal protein pumilio 2.15 3 5 0 47881.701 5 +P25843 Profilin 88.89 7 28 0 1268404.357 26 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 331764.1128 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 243818.827 6 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 490949.6359 19 +P26686 Serine-arginine protein 55 9.31 4 7 0 193488.562 7 +P27716 Innexin inx1 2.21 1 2 0 50270.357800000005 2 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 119475.27708 11 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 52428.613999999994 4 +P29052 Transcription initiation factor IIB 16.51 6 8 0 234098.4845 8 +P29310 14-3-3 protein zeta 67.74 17 278 0 22633869.86563 235 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 1203372.124 20 +P29413 Calreticulin 46.55 20 61 0 3704983.48222 55 +P29613 Triosephosphate isomerase 76.11 17 131 16 10671039.11916 120 +P29742 Clathrin heavy chain 7.39 13 15 0 110635.00053 13 +P29746 Protein bangles and beads 61.76 24 46 24 2273511.6967 45 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 2838078.42416 55 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 78884.2947 7 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 9730270.69312 151 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 10767355.21983 150 +P30432 Furin-like protease 2 0.66 1 1 0 6133.572 1 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 3951047.1678 28 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 3354003.49966 81 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 2052393.35672 28 +P32234 Guanylate binding protein 128up 16.3 6 8 5 125581.27776 8 +P32392 Actin-related protein 3 10.53 4 7 4 252075.97499999998 7 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 232631.64969999998 12 +P33438 Glutactin 14.13 17 42 0 566185.83931 36 +P34082 Fasciclin-2 17.18 15 23 0 252966.7042 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 886022.278 20 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 736589.9222 17 +P35220 Catenin alpha 24.86 22 44 14 958906.0386 39 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 48429757.95969 353 +P35415 Paramyosin, long form 73.38 77 511 0 30893304.77608 443 +P35416 Paramyosin, short form 56.41 39 294 0 2375628.3594 39 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 9292.6695 2 +P35554 Flightin 49.45 8 18 0 1563366.42528 18 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 94776.613 6 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 2157736.8028 35 +P36188 Troponin I 47.58 17 65 0 6922713.72552 60 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 1179924.489 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 19601.452269999998 3 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 1582402.79486 30 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 4570.8867 1 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 3888045.68456 86 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 144721.97449999998 4 +P37236 Frequenin-1 68.98 11 45 0 533136.4569999999 8 +P37276 Dynein heavy chain, cytoplasmic 0.24 1 1 0 442.0227 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 478047.5755 9 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 4791773.95869 80 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 2163753.3421 37 +P39736 Puff-specific protein Bx42 6.4 3 4 0 37801.13546 4 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 286885.2705 7 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 660485.137 8 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 101538.54000000001 3 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 1374821.19717 27 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 44974.33525 6 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 778264.3316 17 +P40427 Homeobox protein extradenticle 2.93 1 1 0 534.8799 1 +P40792 Ras-related protein Rac1 22.4 4 7 0 430124.75399999996 7 +P40793 Cdc42 homolog 37.7 7 8 0 348591.12930000003 7 +P40796 La protein homolog 48.46 17 25 16 539065.81095 24 +P40797 Protein peanut 28.39 14 25 13 800794.0567600001 25 +P40945 ADP ribosylation factor 4 38.33 5 11 0 68483.40100000001 6 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 126779.55780000001 8 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 1555349.49343 35 +P41043 Glutathione S-transferase S1 76.71 15 62 0 6986483.6172 60 +P41044 Calbindin-32 77.74 26 146 0 6492636.40491 136 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 270268.25320000004 24 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 2062384.2887 16 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 630663.3452099999 17 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 2495050.8207 44 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 2283203.507 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 1650988.7346 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 76288.10673 6 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 985079.8446 18 +P42207 Septin-1 10.8 4 11 3 83682.117 3 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 2416733.3946 33 +P42325 Neurocalcin homolog 42.63 8 22 8 837328.3699 19 +P42787 Carboxypeptidase D 8.68 10 14 0 190491.3078 12 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 132875.9418 6 +P45437 Coatomer subunit beta 4.67 3 4 3 82103.12284 4 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 6190307.06465 82 +P45888 Actin-related protein 2 15.79 5 7 5 113681.7827 7 +P45889 Actin-related protein 1 23.4 10 13 10 578811.2303 13 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 61334.4613 2 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 1238571.0986 15 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 2826173.1955 32 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 360631.421 10 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 1161659.5758 44 +P46824 Kinesin light chain 37.4 23 45 0 1429837.69782 41 +P47947 Troponin C, isoform 1 24.68 4 24 0 2260961.8405999998 24 +P47948 Troponin C, isoform 2 47.1 6 9 0 14339.8831 3 +P47949 Troponin C, isoform 3 63.23 9 25 0 1153129.21275 21 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 1837234.0253 20 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 1586004.499 22 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 1138530.5644 24 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 2469505.1896 28 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 493727.7406 5 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 28402.293 2 +P48554 Ras-related protein Rac2 26.56 5 10 0 110543.145 5 +P48555 Ras-related protein Ral-a 49.75 8 21 1 941411.0313 21 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 105636.93400000001 4 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 4987428.0422 52 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 494766.903 16 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 2013288.1198 33 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 3071607.47419 88 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 114968.25 5 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 897427.0477 32 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 1816966.49454 40 +P48607 Protein spaetzle 3.99 1 1 0 9260.953 1 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 445127.016 10 +P48610 Arginine kinase 1 75.84 36 446 0 52963783.32476 407 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 1782966.3221 21 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 624159.0654600001 39 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 98073.8098 6 +P49028 Protein mago nashi 30.61 4 6 4 45058.7178 3 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 425783.896 8 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 1331455.9708 9 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 14585.576 1 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 23958.454 2 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 4201.4253 1 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 35498.8001 4 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 2122654.23726 28 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 180856.3671 10 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 10747.3505 2 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 679722.7638000001 22 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 133652.5918 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 676870.6025 20 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 143559.707 7 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 13641.273 1 +P53034 Replication factor C subunit 2 8.46 3 3 3 58716.588 2 +P53501 Actin-57B 69.15 29 622 4 44575041.24016 71 +P53777 Muscle LIM protein 1 31.52 3 14 0 630025.4225999999 10 +P53997 Protein SET 15.24 4 9 4 210795.765 9 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 253379.246 5 +P54191 General odorant-binding protein 69a 13.51 2 6 2 128943.171 5 +P54192 General odorant-binding protein 19d 69.33 10 107 10 20087849.5858 103 +P54193 General odorant-binding protein 83a 42.86 7 18 0 1816633.3717 16 +P54195 General odorant-binding protein 28a 40.56 4 13 4 699658.9063500001 12 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 14316.8672 2 +P54352 Ethanolamine kinase 6.76 3 3 2 37392.1885 3 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 440666.18643 18 +P54357 Myosin-2 essential light chain 89.12 10 40 1 2241166.4193 35 +P54359 Septin-2 17.66 7 10 1 251092.2286 10 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 31465.797 1 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 3752472.6625 73 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 54577.706 2 +P54399 Protein disulfide-isomerase 75.6 37 146 0 14228270.17074 129 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 15713116.8698 135 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 342294.5696 11 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 407896.8584 18 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 1425033.383 14 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 5070924.6112 67 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 2381356.58992 31 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 2785176.37587 48 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 10788.9058 2 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 173125.123 4 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 1125457.6378 18 +P61849 Dromyosuppressin 10.0 2 3 0 58214.809 3 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 11362521.8211 93 +P61855 Adipokinetic hormone 37.97 2 3 2 65559.069 3 +P61857 Tubulin beta-2 chain 44.39 15 202 2 1531402.9829999998 3 +P62152 Calmodulin 99.33 19 359 0 31785032.1728 317 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 1470216.1905 30 +P81829 Leucokinin 6.25 1 1 1 12590.678 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 6497693.45004 88 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 2606431.102 34 +P82295 Prominin-like protein 3.75 3 3 0 4261.425 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 778400.443 14 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 213289.94774 12 +P83967 Actin, indirect flight muscle 68.62 27 587 2 94438.118 4 +P84029 Cytochrome c-2 70.37 11 82 0 8702130.62344 77 +P84040 Histone H4 59.22 9 102 0 9903711.8775 93 +P84051 Histone H2A 37.1 5 48 0 1848890.5020400002 23 +P84345 ATP synthase protein 8 18.87 1 5 1 161916.9817 5 +P91891 Protein Mo25 34.22 13 23 0 775335.0120999999 19 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 232487.6623 19 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 676654.2454 39 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 6154839.7829 91 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 2206752.2819 32 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 1195247.1729000001 20 +P92029 DnaJ-like protein 60 4.15 1 1 0 7161.176 1 +P92177 14-3-3 protein epsilon 72.14 22 257 20 16150383.803159999 176 +P92204 Negative elongation factor E 10.0 3 4 3 96730.728 4 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 11073.387 1 +P98081 Protein disabled 5.35 9 11 0 52196.29263 8 +Q00174 Laminin subunit alpha 22.49 77 124 77 4702333.3852 116 +Q00963 Spectrin beta chain 23.88 58 119 2 10490.913700000001 3 +Q01603 Peroxidase 8.41 6 6 0 102436.07 5 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 20567160.10464 221 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 82136.2071 4 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 7086.4231 2 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 850017.6467 28 +Q02910 Calphotin 3.36 2 4 2 30077.3913 4 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 51109.01 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 21264.83377 4 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 1792596.9044499998 22 +Q03427 Lamin-C 59.74 41 127 3 3151165.76426 102 +Q04047 Protein no-on-transient A 13.43 8 10 0 111026.77174 10 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 244019.0067 20 +Q04691 Fat-body protein 1 24.68 26 37 0 611613.26394 35 +Q05783 High mobility group protein D 21.43 2 3 0 46505.4006 3 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 40418130.99851 511 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 2528.2192 1 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 7954569.2577 80 +Q06943 High mobility group protein Z 43.24 4 12 0 101144.7049 9 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 30621.35306 4 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 431090.006 18 +Q07171 Gelsolin 25.81 18 39 0 1349113.79766 35 +Q07327 Protein ROP 35.51 20 37 0 1040146.5785999999 34 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 467345.391 12 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 3678.5107 1 +Q08473 RNA-binding protein squid 42.44 9 32 0 1505720.81555 26 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 59113.0763 5 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 58238.058699999994 3 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 334598.0105 13 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 17460.066 2 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 1017767.184 12 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 32980.266 2 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 45773.082 3 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 246009.28699999998 10 +Q11002 Calpain-A 7.73 7 8 0 96277.538 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 3089127.554 27 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 4762538.60855 74 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 5758521.6364 83 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 5397163.99086 94 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 2928717.6545 38 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 5252482.8274 78 +Q24050 Elongator complex protein 5 29.39 7 10 6 113130.928 7 +Q24114 Division abnormally delayed protein 8.63 5 10 0 226059.479 10 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 564976.6478 14 +Q24134 Negative elongation factor D 2.42 1 1 0 4613.046 1 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 83639.2842 5 +Q24185 Protein hook 20.47 13 18 13 404890.03599999996 18 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 984903.2681 28 +Q24207 Protein boule 27.63 5 9 0 304238.632 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 445002.58869999996 18 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 97699.77189999999 6 +Q24211 Protein stoned-A 37.53 27 59 0 1073013.87849 53 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 1164027.152 16 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 97652.39050000001 5 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 104136.26640000001 5 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 14609416.44719 170 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 354711.3037 16 +Q24292 Protein dachsous 0.31 1 1 0 3517.6052 1 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 88826.7013 6 +Q24298 DE-cadherin 15.06 23 36 23 891638.5516 34 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 10856.9892 2 +Q24318 Transcription factor Dp 7.19 3 4 0 22531.030400000003 3 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 122972.92 8 +Q24322 Semaphorin-1A 2.34 2 3 0 2103.37966 2 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 132241.842 4 +Q24372 Lachesin 17.83 6 8 6 99188.4657 7 +Q24388 Larval serum protein 2 8.84 5 5 0 74378.465 4 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 2963383.63484 63 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 4145884.5578900003 46 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 19832486.39724 155 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 182269.25438 22 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 99470.51685999999 8 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 30447.75956 4 +Q24509 Syntaxin-5 4.28 2 2 0 13439.3123 2 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 147605.60715 8 +Q24524 Protein singed 5.86 3 3 0 38583.0227 3 +Q24537 High mobility group protein DSP1 13.99 6 14 0 273466.7209 14 +Q24547 Syntaxin-1A 29.21 12 41 0 1863964.981 39 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 21419253.63111 249 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 17470.8402 3 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 246136.47823 15 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 3463344.9205 27 +Q26377 Pro-corazonin 40.26 5 12 5 126221.69519999999 11 +Q26416 Adult cuticle protein 1 20.0 1 5 1 216480.14 4 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 106608.5311 5 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 772649.9091 18 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 60810.224 5 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 2573087.20366 40 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 1139350.1935 15 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 2393599.57686 50 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 260879.0451 11 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 468291.892 12 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 2146.1987 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 622970.90904 12 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 469624.744 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 13548.2455 3 +Q3KN41 Neurexin 1 1.96 4 4 0 57006.4142 4 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 20112.842 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 74697.0109 3 +Q4V645 Trissin 16.67 2 3 2 60042.615999999995 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 44643.555 2 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 87069.685 3 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 44088.5136 6 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 453704.91795000003 15 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 51548.29084 5 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 16574.22 2 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 55347.58809999999 5 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 284664.74799999996 7 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 68040.306 4 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 589655.3557000001 8 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 330687.00314 13 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 47668.1473 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 352658.4719 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 1357450.6183 30 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 2206.5776 1 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 480687.82707999996 19 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 58444.06239 6 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 532641.714 15 +Q7JXF7 Protein seele 34.92 5 7 5 170235.013 7 +Q7JYV2 Synaptogyrin 8.3 1 1 1 3447.3237 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 18830.967 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 76404.858 3 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 169709.9277 11 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 378760.85885 14 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 19557.354 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 165003.73061 11 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 40337.97967 5 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 18846.7296 2 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 1336945.4682 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 31326.434 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 253858.7371 12 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 115416.5514 12 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 50931.7177 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 460452.63096 20 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 170517.1877 9 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 7029358.45746 72 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 118214.5808 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 944173.5253 24 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 1985457.1617 34 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 16235.8596 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 1945965.43089 51 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 345691.95366 22 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 369602.1839 15 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 36002.3493 5 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 28135.938 1 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 180675.7816 7 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 12220705.81623 62 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 2584.1763 1 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 233356.71740000002 8 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 459968.5016 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 110619.306 3 +Q7KVY7 Syntaxin-4 6.01 2 2 1 20641.4297 2 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 67088.698 5 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 3377936.18766 47 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.94 2 2 2 2483.6582 1 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 523265.0852 18 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 167894.27899999998 6 +Q868Z9 Papilin 18.81 47 94 47 1445387.63692 88 +Q86B79 RING finger protein unkempt 3.17 2 2 0 48149.175 2 +Q86B87 Modifier of mdg4 13.77 6 8 0 182877.71857 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 14100.8374 3 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 105706.03300000001 4 +Q86NP2 Negative elongation factor A 9.51 9 11 0 131743.11000000002 10 +Q86P48 AT-rich binding protein 7.22 3 5 3 21711.1763 4 +Q86S05 Protein lingerer 2.91 3 4 0 2824.56586 3 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 77561.09 6 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 1010616.2535999999 22 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 31688.6007 4 +Q8IN41 Protein Turandot X 8.45 1 1 1 33218.316 1 +Q8IN43 Protein Turandot C 31.01 4 14 4 284788.4731 12 +Q8IN44 Protein Turandot A 58.14 9 20 9 749714.997 18 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 113172.3322 6 +Q8IPM8 Complexin 66.2 10 69 0 40504.882 3 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 218088.78468 15 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 97537.92527 7 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 2991.896 1 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 180536.17148 12 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 285496.018 7 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 113068.8045 7 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 2314493.90927 30 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 13546.6096 2 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 37260.01 1 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 3929.6997 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 204576.41700000002 4 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 66470.84634 4 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 2568261.9755 38 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 816564.7701 22 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 15554.1455 1 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 1860.9795600000002 2 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 39082.8382 4 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 186074.5963 6 +Q8MSS1 Protein lava lamp 17.06 45 52 0 589659.3608799999 51 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 25095.644 2 +Q8MSV2 Protein alan shepard 12.54 6 13 6 227542.2604 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 10210.367400000001 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 18378.663800000002 2 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 25192.9287 3 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 1338850.9545 17 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 193692.4933 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 673560.3731 16 +Q8SY33 Protein Gawky 11.05 13 19 13 235916.6982 15 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 3647676.1772 55 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 294064.13653 17 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 113907.6663 6 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 48828.960960000004 4 +Q8SZ63 Golgin-84 5.23 3 3 3 12194.4928 3 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 155658.3297 7 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 35040.055 1 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 1021132.48884 34 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 914689.7214 32 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 22188.717 1 +Q8T390 Endophilin-A 56.91 20 92 0 3404754.42428 74 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 224653.5863 6 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 1707868.1847 20 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 348063.047 12 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 248991.2925 11 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 559.1819 1 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 777374.4184 18 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 84795.7078 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 6573019.51358 95 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 6355000.2458 83 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 9361238.31963 111 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 7615.254 2 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 2087590.5036 17 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 1748715.7482 28 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 10332804.85878 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 1326567.0438 49 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 52447.0448 3 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 789824.76145 21 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 28950.484300000004 3 +Q94547 Regulator of gene activity 4.27 3 4 0 148310.148 4 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 46150.0413 4 +Q94901 RNA-binding protein lark 53.69 20 40 20 787144.5935000001 38 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 1973.9485 1 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 215146.916 7 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 36962093.91915 327 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 7153.6665 1 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 146712.36450000003 6 +Q95029 Cathepsin L1 38.27 16 60 3 4016940.67665 52 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 1043315.4547 18 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 46103.326 2 +Q95RA9 GILT-like protein 1 46.4 9 28 9 1711378.1963 26 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 10544.5069 2 +Q95RI5 Failed axon connections 54.78 24 114 0 7352894.41578 105 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 3445.6733 1 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 161022.91059999997 5 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 166499.0906 11 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 108146.6715 4 +Q95T12 Calcium channel flower 12.89 2 3 2 87924.7325 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 36695.4773 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 3267.0889 1 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 104535.35669999999 9 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 17286.031 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 555205.7116 20 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 76273.5262 8 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 126853.116 6 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 876.5924 1 +Q967D7 Protein turtle 2.74 4 6 0 121440.43839999998 6 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 132638.57614 11 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 74465.419 4 +Q9GQQ0 Protein spinster 1.98 1 3 1 26044.7231 3 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 5266084.756 56 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 14869.8027 2 +Q9I7D3 Caprin homolog 12.38 10 12 0 100079.9465 7 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 92753.5043 6 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 111777.52429999999 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 33721.022000000004 2 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 156510.041 6 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 1097039.7811 30 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 30846.5471 3 +Q9I7U4 Titin 1.5 22 25 0 215675.66397 21 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 23554.74966 2 +Q9NB04 Patj homolog 31.46 20 37 0 956481.6319500001 33 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 8288.2602 4 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 47108.3918 5 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 53628.6405 3 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 85582.45754 4 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 165614.00508 8 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 60431.2704 5 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 7907.3003 1 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 15774.3608 2 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 2982661.8985 49 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 62534.2711 7 +Q9TVM2 Exportin-1 1.79 2 2 0 22877.4416 2 +Q9TVP3 J domain-containing protein 79.49 16 82 16 5488742.34697 75 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 593803.00492 28 +Q9U4G1 Protein borderless 19.89 13 27 13 806544.04315 24 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 49390.844 3 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 236443.6654 11 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 796405.3994999999 16 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 33648.56 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 59424.8688 3 +Q9U915 Adenylate kinase 2 72.08 21 51 21 2160826.0054 46 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 97678.834 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 222262.14250000002 9 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 277659.66723 10 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 152879.8318 9 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 9207.69 1 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 14417.3364 3 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 102342.92240000001 4 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 1809238.6487 24 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 26315.884000000002 2 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 2877175.1851 27 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 102731.1019 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 362589.33 6 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 263085.06494 6 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 299396.45854 13 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 2070597.6733000001 37 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 76789.10800000001 7 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 207101.2209 14 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 101127.35119999999 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 466696.95563 20 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 8994047.69273 119 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 316175.029 15 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 10738.819 1 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 53382.376000000004 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 337140.9175 7 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 19460.184 2 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 1573809.2395 40 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 63560.444 3 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 224784.4867 8 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 837768.7604 11 +Q9V3Z2 Serine protease 7 15.35 5 6 4 82266.4703 6 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 148469.05680000002 11 +Q9V427 Innexin inx2 8.99 4 8 0 178005.073 6 +Q9V429 Thioredoxin-2 68.87 7 37 7 3412852.1779 36 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 514391.62384 18 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 919338.82778 24 +Q9V447 Krueppel homolog 2 12.68 3 3 0 38633.8103 3 +Q9V496 Apolipophorins 34.8 114 261 0 20695351.84507 236 +Q9V498 Calsyntenin-1 1.02 1 1 0 57552.03 1 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 20956.028720000002 2 +Q9V4C8 Host cell factor 4.93 8 11 8 166250.477 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 7323.505 1 +Q9V4N3 Cytochrome b5 61.19 5 26 5 1168932.5626 19 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 201715.03399999999 5 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 247058.687 11 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 13804.0922 3 +Q9V521 Phenoloxidase 2 22.22 16 20 15 363231.47939 19 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 455654.3961 14 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 24247.536799999998 2 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 406713.00606 15 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 978612.7172000001 29 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 1708358.09525 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 2212.626 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 37009.79 1 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 194492.84360000002 8 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 19293.3825 2 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 92350.2636 5 +Q9V6G5 Tafazzin 5.82 3 3 0 39154.823000000004 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 4280174.27367 69 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 37940.444 3 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 39829.274 3 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 45579.4051 4 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 14337.662699999999 4 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 3828594.966 63 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 5877864.5696 98 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 1139681.56703 22 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 44712.647999999994 2 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 66563.70920000001 4 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 832408.1866 31 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 3155639.4579 98 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 1452029.1044 15 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 381543.44990000007 8 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 49820.2115 5 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 66138.201 2 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 84003.7238 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 17785.646 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 37226.5274 3 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 9338.643 1 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 18429.0457 4 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 1144379.9725 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 147813.3829 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 619551.9873 11 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 1557.43793 2 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 22088.76 1 +Q9VA37 Protein dj-1beta 72.73 12 59 12 3320906.3599 53 +Q9VA70 Neutral ceramidase 2.41 2 2 0 12642.909500000002 2 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 4891478.6029 43 +Q9VAF5 Cadherin-99C 5.92 10 11 10 73914.6474 10 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 1036530.59267 23 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 1044821.0991 27 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 3740391.41847 73 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 2114673.12221 45 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 90834.742 7 +Q9VAW5 La-related protein 1 4.06 5 5 0 54062.61307 4 +Q9VAY3 Mitoferrin 7.65 3 3 3 33874.1837 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 49037.587 3 +Q9VB68 Serine protease grass 12.2 5 6 5 41203.7384 4 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 36863.861300000004 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 11404.5912 2 +Q9VBV3 Protein takeout 26.91 6 7 0 263749.15599999996 6 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 173864.17276 9 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 10032.116 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 1302.74125 2 +Q9VC57 Atlastin 5.91 3 4 0 57076.1717 4 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 21322.731 2 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.6 2 2 0 1303.10255 2 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 453963.25840000005 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 177215.3227 8 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 25363.2873 3 +Q9VCE8 Actin maturation protease 9.74 1 2 0 4823.1077000000005 2 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 400283.1517 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 296776.8524 14 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 153371.8161 4 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 299390.085 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 493066.2545 12 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 72896.332 2 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 11522.537199999999 2 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 10486.306 2 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 492919.257 10 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 512495.01671999996 19 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 46579.2618 5 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 96390.26499999998 4 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 168941.9726 13 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 30157.320999999996 3 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 2426.9172 1 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 25376.395 2 +Q9VDL1 Esterase CG5412 9.68 2 3 2 7416.726540000001 3 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 13849.071 2 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 198980.957 8 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 3275.3906 1 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 39680.23083 4 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 13941.714 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 53456.922999999995 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 6991.3023 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 3506462.6639 50 +Q9VER6 Modular serine protease 3.18 2 3 2 24898.2441 3 +Q9VET0 Neuropeptide F 29.41 3 4 0 61723.56999999999 2 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 2026921.62134 43 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 144504.3046 5 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 11693.555199999999 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 135832.79525999998 8 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 5376510.69158 59 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 21709.766 3 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 321278.32899999997 16 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 16060.2705 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 71254.162 2 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 1515817.9413 29 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 115543.4601 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 16874.66884 3 +Q9VFJ0 Probable cytochrome P450 313a1 4.67 2 2 2 1245.4594 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 44204.929000000004 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 50279.051999999996 3 +Q9VFM9 Twinfilin 24.78 8 14 8 222639.4829 12 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 166820.2089 7 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 68951.111 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 18641.809 1 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 137410.1387 10 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 79933.511 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 6770.0244 1 +Q9VG55 Protein hugin 18.32 2 2 2 9133.145 2 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 397137.01934999996 10 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 9344.518 1 +Q9VG76 Myc-binding protein 11.05 2 2 2 29055.598 1 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 23334.1554 3 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 1859683.4501 23 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 228305.46899999998 6 +Q9VGG5 Cadherin-87A 5.16 9 12 9 243945.85739999998 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 25705.686 1 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 241809.723 8 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 4775.738 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 41119.915 3 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 33719.062 1 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 4093836.39312 47 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 640032.7168 17 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 24785.799 3 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 3961.252 1 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 427145.6605 14 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 9601.118 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 1111508.4215 11 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 700288.4609999999 7 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 1640526.9356 19 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 2370.0544 1 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 101389.671 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 59975.2688 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 478167.4235 10 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 53870.60739999999 8 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 234892.98739999998 6 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 22809.0337 4 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 263684.09518 18 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3720.2188 1 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 2792441.62256 51 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 4436061.233 45 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 188112.80599999998 6 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 29910.8292 3 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 5180.0435 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 118060.8342 8 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 170345.81650000002 12 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 20197.824 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 624350.7677 14 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 586121.2211 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 171208.776 5 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 54249.399900000004 3 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 43084.61722 3 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 10249.0537 3 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 590456.11758 12 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 432631.1171 14 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 224166.2775 7 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 128322.86240000001 7 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 303953.792 8 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 13621.864 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 4004.7854 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 26237.7843 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 7850.020699999999 2 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 15341.616 1 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 137412.0256 10 +Q9VJL6 Glia maturation factor 10.87 2 3 2 103095.057 3 +Q9VJQ5 Protein Dr1 17.49 3 3 3 44664.494 3 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 754344.574 14 +Q9VJY9 Protein Loquacious 12.69 5 5 0 113863.0147 5 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 11138.337 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 466565.998 13 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 6182.72 1 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 3028.5547 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 147262.9805 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 35666.3445 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 62337.490000000005 2 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 145914.2063 4 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 52157.240999999995 2 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 7564.744 1 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 1888382.11333 37 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 2348984.2799 58 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 34152.9922 3 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 111474.527 5 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 131146.47125 10 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 179971.2557 8 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 75544.2446 6 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 749078.9206 18 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 17384.5657 3 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 749553.1436600001 13 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 272948.9593 8 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 193153.1225 9 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 4840.277 1 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 24397.1995 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 67465.0348 5 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 59641.7978 5 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 43431.3017 6 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 55651.11093 3 +Q9VMD6 Protein real-time 2.58 2 2 0 16350.0907 2 +Q9VMD9 Tiggrin 11.33 29 34 0 462916.60657 32 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 52511.414600000004 5 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 386779.3876 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 27835.277700000002 3 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 71370.66451999999 4 +Q9VMR8 Protein Turandot M 33.59 3 5 0 331417.03500000003 5 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 146320.8506 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 40771.425 3 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 41902.2288 5 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 749130.727 12 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 75637.92240000001 3 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 68607.226 3 +Q9VMY9 Guanine deaminase 4.46 2 2 2 48380.159 2 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 37369.6811 4 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 141261.64190000002 6 +Q9VN14 Contactin 19.78 25 34 25 793863.4772 30 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 18406.6958 3 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 82521.86323999999 4 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 351486.47010000004 12 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 790585.9266 29 +Q9VN93 Cathepsin F 22.64 13 28 12 1267798.7006 25 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 206784.5 6 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 54558.32 3 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 142254.5453 3 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 253672.5465 9 +Q9VNE2 Protein krasavietz 31.28 16 24 16 735715.1606 22 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 905656.5179999999 12 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 14158.152 1 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 69204.007 3 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 137855.11178 5 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 16621.742459999998 4 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 67833.549 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 78719.8675 4 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 59086.9208 4 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 195318.2551 7 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 5430304.3806 27 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 1039583.8337000001 12 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 226017.867 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 25441.47313 5 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 107244.1435 5 +Q9VQC4 Glycerate kinase 12.94 8 8 0 130413.744 8 +Q9VQF7 Bacchus 40.79 6 16 6 254561.30377 13 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 68594.954 3 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 650520.8881999999 16 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 314034.6485 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 58771.078 2 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 189266.3143 10 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 10647.868 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 11989.075 2 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 28473.915 2 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 289495.75 5 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 39882.44516 8 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 4957.9117 2 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 336702.305 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 12101.442700000001 2 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 106258.19475 5 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 9450.566200000001 2 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 184810.17746 10 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 476677.12100000004 4 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 35314.728 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 4027044.0053999997 67 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 39722.175 2 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 16052.545999999998 2 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 85706.8642 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 50034.207 1 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 5931726.43085 61 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 53718.9339 4 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 85079.3668 6 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 39799.3439 4 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 1992443.70916 50 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 318689.3276 7 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 15253.417000000001 3 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 10078.6664 2 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 36191.433 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 42581.7057 2 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 512098.1431 13 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 94160.05200000001 4 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 168810.587 6 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 9196.185 1 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 67058.002 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 26440.29 1 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 68459.9693 4 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 3920661.0152000003 46 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 134299.5184 6 +Q9VTZ5 Transferrin 2 22.59 16 21 16 351630.20425999997 20 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 165813.33179999999 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 101376.60500000001 2 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 7528120.605 100 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 766958.2572999999 27 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 11968.396700000001 3 +Q9VU84 Drebrin-like protein 26.18 11 14 11 241259.76136 13 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 109514.6896 5 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 4700.238 1 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 1946101.30956 37 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 88504.92347000001 5 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 1102764.28186 27 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 38766.17 1 +Q9VV36 Retinin 29.84 5 91 5 6534352.53258 75 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 3380.3889400000003 2 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 2602571.6184 35 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 705473.74676 25 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 10695.875 1 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 185185.9021 7 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 614927.683 23 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 124032.4819 8 +Q9VVE2 Protein rogdi 30.97 7 12 7 285009.84841 12 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 303889.041 18 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 39281.2236 3 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 1070424.37964 32 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 4377.3177 2 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 26730.7723 5 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 379021.21517 21 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 40906.141 3 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 52712.077750000004 3 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 188097.777 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 49764.537000000004 2 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 30148.91265 6 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 629140.09807 22 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 20480.4635 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 277836.1431 11 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 486590.302 13 +Q9VWA1 Clathrin light chain 40.64 11 40 0 1494646.4557 37 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 12677.3943 2 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 33259.2563 2 +Q9VWE0 Cytokine receptor 1.56 2 2 2 119849.109 2 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 652480.493 12 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 20666294.63536 164 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 2898046.7963 23 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 106462.5804 10 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 97301.824 4 +Q9VWU1 Serine protease persephone 7.61 3 3 3 36410.2864 3 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.84 3 3 3 443.43185 1 +Q9VWX8 Frequenin-2 52.94 11 47 5 1223552.2039 41 +Q9VX10 Sulfiredoxin 4.32 1 1 0 26845.889 1 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 331581.3914 11 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 1379102.50896 23 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 59761.3284 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 426239.8447 8 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 36469.448599999996 5 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 7557.0083 1 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 1629061.76589 54 +Q9VXG4 Annexin B11 23.68 13 31 13 1337906.06006 31 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 395901.3996 17 +Q9VXK0 Protein NipSnap 15.38 4 8 0 219852.0117 6 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 453631.5933 14 +Q9VXN2 Protein stunted 49.18 3 9 3 233440.232 6 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 18334.0255 2 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 331649.98360000004 10 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 67528.247 4 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 1689.9833 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 2126710.40283 39 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 55750.772619999996 4 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 770233.229 9 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 33249.91023 4 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 9800.767 1 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 144767.5662 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 20484.836 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 42262.8972 3 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 84569.1444 6 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 4147.121 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 3255.1565 1 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 8006.808 1 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 13584.866 1 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 1674170.00619 47 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 19128.29954 4 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 262842.0299 11 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 286005.35052 9 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 1665734.8909 26 +Q9VZ35 Protein Vago 13.12 2 2 2 4887.773300000001 2 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 260491.894 3 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 486089.4752 14 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 935604.8268 22 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 60849.8195 7 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 81400.0855 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 16816.823539999998 4 +Q9VZE7 Choline transporter-like 1 1.74 1 1 0 918.8809 1 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 15492.280499999999 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 8502.678 1 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 23020.252 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 25775.604399999997 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 781869.1728000001 8 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 1234309.095 18 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 2613873.5963500002 53 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 334120.39173 13 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 21109.280700000003 2 +Q9W032 Protein ecdysoneless 1.9 1 1 1 12016.4 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 1846769.02832 49 +Q9W074 Protein HBS1 3.28 2 2 2 14104.0505 2 +Q9W0A0 Protein draper 4.95 4 5 0 36948.97 4 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 4183241.38962 51 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 4501.1943 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 62855.579 3 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 171929.0476 9 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 904489.831 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 325047.3682 13 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 279581.42212 19 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 17578.2161 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 2322.8584 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 2346022.8013 36 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 259549.69426 9 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 15137.008600000001 2 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 11255226.483 70 +Q9W1G0 Probable transaldolase 44.71 16 52 16 3439445.3155 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 90867.536 2 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 53319.907 3 +Q9W1K5 Sestrin homolog 1.41 1 1 0 32694.611 1 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 33671.5039 3 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 106093.0925 5 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 105509.611 5 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 141947.0645 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 334221.612 9 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 2992364.50468 50 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 147293.305 6 +Q9W266 Protein windpipe 8.12 5 11 5 358205.0892 11 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 629192.2936 12 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 258311.20049999998 10 +Q9W2E7 Protein Rae1 29.48 9 14 9 609966.8386 12 +Q9W2M2 Trehalase 33.56 19 38 0 975227.0084 32 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 92985.25899999999 5 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 13066.2705 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 61869.966199999995 5 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 242522.05875 5 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 5138685.122479999 69 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 585481.2944 12 +Q9W358 Chaperone Ric-8 12.22 7 7 0 94817.883 7 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 6645189.34935 80 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 105666.79770000001 6 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 425020.20300000004 5 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 158282.4525 4 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 103895.59700000001 4 +Q9W3E2 Protein PIP82 19.58 20 31 20 214182.85172 26 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 74101.6573 5 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 61141.3542 4 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 100914.1768 6 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 238488.78499999997 3 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 106323.55473 6 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 812.4605 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 8243.862 1 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 8309.447 1 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 19585492.47233 170 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 310585.61426 8 +Q9W436 Neprilysin-1 2.59 2 2 2 12312.6879 2 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 198379.119 5 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 36008.555 1 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 120829.59353 11 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 505717.5413 14 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 195495.32390000002 13 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 357468.641 14 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 626948.83317 16 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 86505.44260000001 5 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 1808263.83122 112 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 40090.523 1 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 502989.7516 16 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 501121.1977 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 53086.922999999995 3 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 603619.3022 10 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 47677.9225 4 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 1326683.13264 59 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 3484.0444 1 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 7682.483 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 567558.30276 11 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 1068630.65967 30 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 82097.77620000001 7 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 229894.8743 10 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 527881.1365 16 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 1195832.24 14 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 1655524.38756 34 +Q9XZL8 Protein sarah 32.53 7 14 0 273316.5514 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 10331.3232 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 87892.4423 5 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 63374.026 4 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 764509.4605 16 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 48486.2186 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 1045753.1514 23 +X2JAU8 Protein nervous wreck 28.19 30 88 30 3188338.75437 79 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 18439.533 1 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 66500.1239 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 49415.162 2 +A0A0B4JCR9 Uncharacterized protein, isoform D 3.12 1 1 0 563.66833 1 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 242817.2253 13 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 1036368.874 6 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 108356.27829999999 6 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.0 2 2 0 1662.7883 1 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 4788960.19924 101 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 13811.990600000001 2 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 4381.8794 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 224439.19133 14 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 88997.23956 9 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 45072.5184 4 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 318126.01894 20 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 7500954.94584 159 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 19427.45837 3 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 27520.470999999998 2 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 373257.17747 24 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 191327.771 4 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 107427.83350000001 3 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 87440.4828 8 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 35975.8461 4 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 181327.39354 7 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 9797.792 3 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 158374.6213 10 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 6956421.11964 114 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 180320.56650000002 7 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 104513.132 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 27941.6536 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 39001.5074 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 8049.228999999999 2 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 2700913.04444 47 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 53361.375499999995 3 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 994.2588 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 1177266.9296 53 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 13565.7116 3 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 617644.5099000001 23 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 35002.968 2 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 45189.19678 6 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 607903.41925 17 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 350792.0475 12 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 871661.6567 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 84072.6914 10 +A0A0B4KEJ7 Coronin 12.71 7 7 0 113625.3738 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 18705.958 3 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 17041.69283 5 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 293689.9165 18 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 24881.95 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 60122.41 2 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 7265.897 1 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 506658.3033 25 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 683.3462 1 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 1746984.2153 44 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 7910.531000000001 2 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 4265284.79248 79 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 61229.2062 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 807451.29 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 651505.4191 12 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 202951.11000000002 2 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 5590.278 1 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 76184.72037 8 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 93791.5858 7 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 6753.395 1 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 4.45 1 1 0 369.16827 1 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 153482.3443 5 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 2955.8696 1 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 77696.9224 7 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 3611.5053 2 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 91926.67480000001 7 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 17429.243000000002 2 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 257052.4605 15 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 1101020.4456 22 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 1011953.8965 28 +A0A0B4KGM5 Uncharacterized protein, isoform B 1.13 1 1 0 610.63416 1 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 11882.088600000001 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 24333.497 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 602918.97707 23 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 12037.004 2 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 85657.5797 8 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 17194.9089 2 +A0A0B4KH34 Annexin 55.56 21 164 3 16637992.60626 147 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 7603.394 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 5786.0977 1 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 461003.43439999997 17 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 299101.6586 17 +A0A0B4KHF0 Ferritin 75.42 20 121 1 21767871.05515 95 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 26468822.440589998 215 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 295878.05163 7 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 9956.75525 2 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 20263.8305 2 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 206980.4351 8 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 407977.8892 22 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 152354.265 2 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 66143.136 7 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 57909.0534 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 145134.92 6 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 7866.857 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 1856406.2961 44 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 1601746.67987 23 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 145957.797 3 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 49545.657999999996 2 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 14422.1466 2 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 6738.373299999999 2 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 930651.6926 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 774544.4479 31 +A0A0B4LF95 glutaminase 11.14 7 11 0 151876.4081 9 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 586555.36843 25 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 348949.404 22 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 61376.2666 5 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 3004.6287 1 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 22082.84476 2 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 19386.925 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 3451.9636 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 168442.68 6 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 28650.636 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 229469.731 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 19483.5534 2 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 195299.6745 13 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 1791345.6554999999 46 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 176798.0225 10 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 13412.559 1 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 767941.48997 20 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 39375.7771 5 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 4043508.1585 53 +A0A0B4LGT9 Uncharacterized protein, isoform B 4.92 1 1 0 2216.8418 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 145426.4631 8 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 1066669.3269 36 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 97377.6382 4 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 98202.6612 6 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 6800.2344 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 50615.305 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 117380.46579999999 8 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 25285.184 2 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 64277.844 3 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 40341.854 3 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 5639.7896 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 168207.97884 13 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 18813.4718 3 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 6627.773 1 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 313110.0308 23 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 31268.6832 4 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 27571.42 2 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 275335.33005 11 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 102064.32459999999 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 239712.06089999998 12 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 71339.6056 7 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 11178465.36095 123 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 193122.6332 8 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 18640.078 2 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 17504.4675 2 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 865035.4179 16 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 54686.8516 3 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 9753629.11409 131 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 95509.98939999999 13 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 176713.4476 11 +A0A4P1SAA7 IP07559p 6.8 1 1 0 13787.027 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 939546.0612 46 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 126765.503 7 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 7566.4907 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 13390743.74618 269 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 14305.926 2 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 1752791.73158 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 97310.55470000001 7 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 57464.5093 3 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 26450.399 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 11467.296 1 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 5512586.5046500005 246 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 321422.06791 30 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 1178441.80357 28 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 452595.9534 16 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 145898.5103 6 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 141263.809 8 +A1Z6F6 FI18602p1 9.88 9 10 0 212180.58039999998 9 +A1Z6G9 FI18173p1 10.5 3 3 3 28437.88805 3 +A1Z6H4 RE52822p 14.24 7 7 0 107090.9463 7 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 65631.5701 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 52432.698000000004 2 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 130838.79060000001 5 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 157008.38776 11 +A1Z6R7 FI21445p1 40.71 9 20 9 479954.18580000004 18 +A1Z6V5 FI01422p 40.46 14 31 14 1758487.4883 27 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 511415.9207 13 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 170781.2174 8 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 34015.344 2 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 6170.4033 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 14340.3315 3 +A1Z7B8 GEO08456p1 21.52 3 5 3 177361.7694 5 +A1Z7G2 MIP13653p 13.39 2 4 2 656866.311 4 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 323308.94214 17 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 36782.073000000004 3 +A1Z7K6 FI20236p1 6.38 3 4 3 83574.181 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 295289.0552 11 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 36257.033599999995 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 93140.5108 5 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 1646196.58132 42 +A1Z7V9 FI20020p1 10.04 5 5 0 149419.038 4 +A1Z7X8 FI02944p 19.81 7 8 7 144554.0305 6 +A1Z803 FI02892p 29.12 12 18 12 867645.485 18 +A1Z843 Nodal modulator 3 9.42 11 14 11 228628.5226 14 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 980882.1985 26 +A1Z871 CAP, isoform B 13.38 20 35 0 111525.2605 4 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 3269681.1835000003 47 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 139885.61000000002 4 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 29671.365 1 +A1Z8G7 FI09243p 9.92 1 2 1 707.613 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 9107385.8085 41 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 100136.28525 11 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 23275.159 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 1884.6321 1 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 33875.36104 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 880837.36286 18 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 489194.6764 12 +A1Z933 GEO02273p1 27.91 2 4 2 49336.8077 4 +A1Z934 SD19268p 48.83 13 30 13 895127.13152 24 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 24640.012 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 144409.88882 9 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 27346.6608 3 +A1Z9B5 IP16508p 19.88 3 4 3 51009.722 4 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 3223882.2947 44 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 819889.3413999999 15 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 334960.00762 31 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 648922.1123 11 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 19910.6764 6 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 208915.695 4 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 3776.0066 1 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 20872.041400000002 2 +A1ZA23 FI18007p1 33.64 10 24 10 350422.68857 24 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 145601.8835 6 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 67541.6966 6 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 30176.547400000003 3 +A1ZAH3 FI16515p1 1.93 1 1 0 1744.3577 1 +A1ZAK3 Protein DEK 4.05 3 3 0 68020.151 3 +A1ZAL1 lysozyme 30.43 5 7 5 264445.6514 7 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 11102.252 1 +A1ZAU4 RH39096p 52.14 16 49 0 3410164.54066 46 +A1ZB23 IP19117p 16.06 4 7 4 87509.481 5 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 10093.585 1 +A1ZB68 FI01423p 45.91 11 28 11 973554.98186 26 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 1097370.02912 24 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 143880.10772 7 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 869473.5835 16 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 20245.273 2 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 61389.30736 3 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 1479516.3764 37 +A1ZBA5 FI07234p 7.22 2 2 2 57835.392 2 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 24411.7163 4 +A1ZBD8 Mucin-5AC 2.99 4 4 4 21894.9955 2 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 9781.5177 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 1011893.63933 38 +A1ZBK7 Crammer 31.65 3 11 3 113740.79311 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 18705.77 1 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 535193.7404 11 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 310806.5915 11 +A1ZBU5 GNBP-like 3 28.29 3 10 3 171723.4662 9 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 18431.725 1 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 2005074.1716 43 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 15536.46 1 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 429624.04474 30 +A1ZBX6 lysozyme 9.5 2 2 2 10816.622299999999 2 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 6036.509 1 +A2VEG3 IP16294p 1.06 1 1 0 2151.6091 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 3535.9778 1 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 181559.428 8 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 1450341.40785 32 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 62498.21473 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 254500.75225000002 14 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 3412795.2674000002 67 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 5145640.73175 94 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 7636.831 1 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 2476671.63395 35 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 298958.443 11 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 83483.16200000001 2 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 740744.5273 12 +A8DYD1 Combgap, isoform L 10.75 8 11 0 147264.2213 9 +A8DYI6 Prohibitin 65.98 22 79 1 4332912.25543 72 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 317668.4015 17 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 185127.4056 8 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 2054.2954 1 +A8DZ06 Stolid, isoform J 12.46 14 21 0 414161.6154 16 +A8DZ14 FI17828p1 18.02 9 24 4 868726.2311099999 23 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 64556.605 4 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 468174.77305 34 +A8E6W0 IP19808p 19.7 4 5 4 130973.70800000001 5 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 85104.6307 6 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 24723.20537 2 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 50825.107 3 +A8JNP2 arginine kinase 73.07 36 447 2 2685411.6177 16 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 16110.75327 7 +A8JNS4 Starvin, isoform E 7.4 4 5 0 75197.9372 5 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 12591.5728 2 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 180371.271 3 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 38320.4872 5 +A8JQT5 Moesin/ezrin/radixin homolog 1 1.31 4 6 3 714.57327 2 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 54855.4373 4 +A8JQW3 Pinin, isoform B 18.24 5 5 0 72559.19295 5 +A8JR01 Kramer, isoform I 1.49 2 2 0 638.0321 1 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 119531.62700000001 2 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 219755.5384 12 +A8JR58 Hadley, isoform B 7.64 2 2 1 5619.1417 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 4441718.8413 66 +A8JRH3 FI20012p1 66.73 28 71 1 2350116.48006 65 +A8JTM7 Megalin, isoform A 2.81 14 18 14 243733.804 15 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 94669.90096 7 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 31063.2013 3 +A8JUZ6 MIP03678p 16.77 5 7 0 88361.09419999999 4 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 3228.0643 2 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 606797.51375 28 +A8WH76 GEO10024p1 48.15 4 13 4 524355.7965 12 +A8Y4V5 FI20903p1 5.22 1 1 1 2228.8342 1 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 21001.982 1 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 4861105.6214000005 12 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 15536.4375 1 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 62797.6905 3 +B7YZH1 FI20143p1 7.21 4 4 0 19639.3293 3 +B7YZN0 Syndecan 12.55 6 8 0 197043.38940000001 7 +B7YZN4 GH02741p3 49.23 4 4 4 72939.049 4 +B7YZN8 GH02741p1 10.53 1 1 1 38139.0 1 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 88339.9951 6 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 6852758.11801 88 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 10438.3263 2 +B7YZV2 Phosphodiesterase 6.39 6 8 0 150096.7077 8 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 453134.41322 26 +B7Z001 Fatty acid synthase 20.0 44 74 0 1985087.83384 71 +B7Z005 Drongo, isoform I 6.42 3 3 0 23155.880299999997 3 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 3070.3826 1 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 7380.197 1 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 25548.1474 2 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 98167.2416 4 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 75155.8317 8 +B7Z0C9 GH15104p1 34.74 4 7 4 70406.5826 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 12751765.1335 138 +B7Z0M0 FI17308p1 22.13 2 2 1 24923.045 1 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 5934.7827 2 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 271609.53373 11 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 277009.6274 14 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 28161.839 2 +B7Z107 GH09380p1 29.35 3 5 3 29252.7125 3 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 5851.167 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 48310.586200000005 3 +C0HDP4 MIP05618p 11.31 4 4 0 15816.880000000001 4 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 2305036.14086 36 +C7LAG1 CoRest, isoform G 2.31 2 2 1 28995.169 2 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 2278973.7461 52 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 1012151.11497 29 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 215002.5249 8 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 67982.445 3 +D0Z756 MIP14966p 36.55 15 61 0 3323437.826 58 +D1YSG0 Bent, isoform F 4.99 39 42 0 776039.1414 40 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 304537.83953 8 +D3DMM0 MIP15702p 29.31 12 28 0 1244241.7745 28 +D3DMM4 MIP15217p 28.27 22 50 0 1810862.50224 45 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 189132.4315 6 +D5SHT6 MIP21537p 8.03 3 3 0 54033.85 3 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 30566.0176 3 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 170199.26 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 336091.3539 20 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 424962.4954 16 +E1JGR3 GEO02620p1 24.62 3 3 3 5151.86134 2 +E1JGY6 Hulk, isoform F 11.14 17 21 0 453650.1705 21 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 195346.3249 12 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 17599.908 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 7543.63605 2 +E1JH90 Patronin, isoform F 0.78 1 1 0 2221.334 1 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 1088104.48258 50 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 40625.92974 5 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 384683.74549999996 9 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 46346.7747 3 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 52031.957 3 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 174662.7727 9 +E1JHP9 Galectin 6.21 3 3 0 24434.413099999998 3 +E1JHT6 Reticulon-like protein 38.71 18 38 0 1642806.80645 35 +E1JI40 Vermiform, isoform I 11.89 7 9 0 237616.1674 7 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 63054.83809999999 4 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 56069.897 2 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 15820.211 1 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 52944.4727 3 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 13275.7224 2 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 6880.335 1 +E1JIY8 L antigen family member 3 20.72 3 3 3 92926.11499999999 3 +E1JJ33 Complexin, isoform U 66.43 10 72 2 1826602.29591 70 +E1JJA4 Dynamin 35.22 31 59 0 1197107.33732 58 +E1JJE4 protein-tyrosine-phosphatase 1.86 3 3 0 866.5705 1 +E1JJG5 Phospholipase A2 2.93 1 1 1 5390.4155 1 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 2610461.9896 67 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 40694.3316 5 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 147913.7886 9 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 19616.7508 2 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 1036892.76325 43 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 21527.441 2 +E2QD54 Natalisin, isoform D 5.61 3 3 0 29763.9956 3 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 262008.2996 18 +E2QD98 Protein PALS1 5.59 10 13 0 305757.25800000003 11 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 82039.9967 6 +E8NH67 Asperous, isoform B 59.09 20 77 0 1521952.15078 63 +F0JAP7 LP18071p 13.97 4 5 0 44718.7999 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 69840.4364 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 3569060.3057899997 105 +H1UUB1 GEO12465p1 48.84 5 11 1 703583.2017999999 9 +H8F4T3 Regucalcin 45.75 9 15 0 747300.90025 15 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 125095.234 5 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 77952.00154 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 1619086.3565 36 +L0MPN7 Asator, isoform H 7.38 8 8 0 123225.79235 7 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 78586.8982 10 +M9MRX0 Limpet, isoform J 27.3 27 63 0 2337960.66835 55 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 480204.17961 43 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 111887.15437999999 9 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 109573.20169999999 8 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 58702.5093 5 +M9MS70 Uncharacterized protein, isoform C 2.9 1 1 0 446.95657 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 593736.34996 17 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 1124693.951 13 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 1124594.80465 35 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 11276.646 1 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 3145.8108 1 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 191694.532 7 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 196625.6266 11 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 124951.91100000001 10 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 264517.2242 15 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 195762.4888 14 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 160645.6466 9 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 20628763.55956 385 +M9NDB5 RNA-binding protein 6, isoform F 36.89 6 15 1 844.6787 1 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 2943.4397 1 +M9NDE0 pantothenate kinase 4.21 2 3 0 20978.9332 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 58327.617 4 +M9NDS9 chitinase 0.67 3 4 0 53058.232 3 +M9NDX8 Neurabin-1 1.98 4 4 0 14404.520900000001 3 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 59263.396980000005 10 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 180296.3232 10 +M9NEF2 Histone deacetylase 2.33 1 1 0 1954.9031 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 10027.839 1 +M9NEW0 LD39232p2 58.67 9 12 9 319135.83885 12 +M9NEX3 Cytochrome b5 57.55 6 27 0 607521.4403400001 21 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 95701.3451 4 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 119633.1979 6 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 144070.212 11 +M9NFC0 Troponin I 47.24 15 56 5 1751473.6554 14 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 62007.4714 4 +M9NFH3 Lasp, isoform D 39.01 10 22 1 83725.8271 3 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 403525.711 18 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 6851.702 1 +M9NH07 Upheld, isoform N 45.43 30 106 0 9931110.4197 95 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 211924.30195 13 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 133269.4674 6 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 743925.02116 32 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 7185.8984 1 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 66550.3933 5 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 2639.0762 1 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 3640825.7564 119 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 0.34 1 1 0 807.6331 1 +M9PBM3 Cysteine protease 8.54 3 5 0 19164.4178 4 +M9PBN2 Apolipoprotein D 20.82 3 10 0 351638.61697 9 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 536867.745 23 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 4317.3979 2 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 79885.4624 5 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 370409.69056 18 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 774835.60546 19 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 21713.78886 4 +M9PBW9 Rhea, isoform G 6.64 17 18 0 248673.7709 18 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 236196.5315 10 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 25688616.1543 183 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 46158.581000000006 2 +M9PC74 Reticulocalbin-3 23.01 10 15 0 416682.4371 14 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 6594.7519 2 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 35304.919 2 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 12729.79112 2 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 16169.86778 4 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 110172.0087 7 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 122003.09289999999 11 +M9PCI1 Uncharacterized protein, isoform B 2.85 2 2 0 3315.70463 2 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 51320.0423 3 +M9PCT7 Bunched, isoform O 16.15 3 5 1 10364.949 1 +M9PCU0 FI21215p1 30.84 38 66 1 21689.375 1 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 188348.50590000002 10 +M9PD73 TEP1-F 23.71 32 47 0 1764287.1682199999 44 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 827826.66703 18 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 11923.8223 2 +M9PDB2 Varicose, isoform E 7.69 5 5 0 39820.174 5 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 696028.8486 30 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 12119.985 1 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 46207.4047 5 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 51473.4645 2 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 116280.6345 6 +M9PDU4 Acyl carrier protein 18.23 4 29 2 4147074.713 27 +M9PDV2 Tetraspanin 12.89 3 3 0 15398.472 2 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 459070.03736 36 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 159420.8495 11 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 7016480.5794 58 +M9PE32 Fife, isoform D 12.56 14 19 0 146257.91572 16 +M9PE35 RabX6, isoform B 8.11 2 2 0 10992.2366 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 2889.6562 1 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 12099.984499999999 2 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 19122.07756 5 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 18682.1578 2 +M9PEC1 IST1 homolog 21.0 7 10 0 188014.20260000002 9 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 276548.5943 11 +M9PEG1 Uncharacterized protein 27.38 16 49 16 988813.29965 49 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 3206742.0728700003 193 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 107138.1434 6 +M9PEL3 Quemao, isoform C 23.62 7 9 0 107710.16690000001 8 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 85798.73006 4 +M9PET3 Simjang, isoform D 2.38 2 2 0 843.9133 1 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 9745.658 1 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 5274.7124 1 +M9PF16 Spectrin beta chain 24.44 59 123 3 3379392.07187 113 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 1000067.1452 24 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 33257.56 2 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 61592.0146 7 +M9PFH7 Tartan, isoform B 2.53 2 3 0 15739.835 2 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 24109.645 2 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 11204.6052 2 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 62589.852 2 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 8179.114149999999 4 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 374460.2436 10 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 116869.8118 8 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 65724.1316 4 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 14285005.65944 182 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 92192.77504 5 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 59738.999 4 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 569291.6891 10 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 7192.3174 1 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 156203.68146 12 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 35750.881 2 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 364873.0025 20 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 444339.8177 21 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 22574.279 2 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 99854.8126 9 +M9PHX2 Visgun, isoform E 3.82 1 1 1 14562.793 1 +M9PI33 Inositol oxygenase 11.64 2 2 0 39072.6255 2 +M9PI51 Dual specificity protein phosphatase 15 2.24 1 1 0 455.78622 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 27457.4605 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 50838.0304 3 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 273655.579 4 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 21738.8 2 +M9PJQ5 Troponin I 45.65 14 66 0 550397.6839 14 +O15971 LD39986p 30.39 7 26 4 131322.74190000002 7 +O16158 Calcium-binding protein 48.91 7 30 7 2389991.2476 26 +O17452 LD20793p 27.83 6 17 4 492823.4076 15 +O18332 FI01544p 60.98 11 51 9 1507913.9211000002 43 +O18335 Rab11 57.94 14 57 14 3473691.9032 56 +O18336 Ras-related protein Rab-14 39.07 8 16 1 287637.008 13 +O18338 LD44762p 23.19 5 23 0 558.5505 1 +O44226 Elongin-B 97.46 10 30 10 1608227.7691 25 +O44434 QKR58E-3 24.92 7 8 5 135236.2277 6 +O46048 EG:133E12.4 protein 0.47 1 1 0 808.06024 1 +O46052 EG:152A3.3 protein 12.67 4 5 1 30691.1383 4 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 1539898.60296 45 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 19984.973 1 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 208598.87437 8 +O61604 Fimbrin 37.34 25 48 3 2549613.4901 46 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 47771.672900000005 7 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 36271.057 3 +O76521 Importin subunit alpha 5.52 3 5 3 80303.9579 4 +O76752 Sepiapterin reductase 28.74 7 12 7 354725.64 11 +O76877 EG:132E8.3 protein 20.62 3 4 3 300302.872 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 2863567.92673 26 +O77259 EG:115C2.5 protein 4.0 1 1 0 30971.373 1 +O77425 Ribokinase 3.29 1 1 1 9944.496 1 +O77430 GEO01111p1 71.6 13 21 12 871149.002 18 +O77434 EG:34F3.8 protein 39.34 7 15 1 198489.1002 13 +O77477 LD24471p 28.57 10 11 10 152470.05468 10 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 37224.306 2 +O96692 small monomeric GTPase 21.98 4 7 1 106791.6084 7 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 115246.711 4 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 10594.404999999999 2 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 12313.9292 2 +O97059 Ccp84Ab 36.2 6 6 0 254381.8102 5 +O97062 Ccp84Ae 75.96 13 31 13 519932.52589 28 +O97064 Ccp84Ag 37.17 5 9 5 66683.126 5 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 28282.686 1 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 1660933.6984 24 +O97111 LD29223p 11.97 4 4 4 45811.193999999996 4 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 6277.97 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 49400.4774 2 +O97365 BM-40 24.01 7 7 7 254709.821 6 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 1488947.43166 36 +O97428 Ciboulot, isoform A 29.46 4 5 1 38183.121 4 +O97454 Protein BUD31 homolog 19.44 3 3 3 41344.0958 2 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 428101.64135 19 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 3194.081 1 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 10069243.87201 65 +P92181 Cuticle protein DCP2 37.61 4 8 4 93796.6903 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 40394.960999999996 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 3067985.5537 45 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 315718.2014 8 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 81146.688 3 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 1953619.98325 86 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 7114.84 1 +Q0E8P5 FI05614p 19.04 11 19 11 95516.19906 15 +Q0E8S7 Homer, isoform E 30.13 14 34 1 1659804.56146 33 +Q0E8U4 FI09636p 20.0 6 7 6 157469.08899999998 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 555177.36746 18 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 52235.15440000001 3 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 2626698.44423 42 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 680919.83036 19 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 453138.4033 21 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 4822.00347 3 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 1074757.83641 53 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 684901.56667 18 +Q0E9G4 CG1600-PA 3.41 1 3 0 66345.953 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 336924.851 15 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 4245.1025 1 +Q0KHR7 Septin 15.46 9 14 0 388073.6357 13 +Q0KHX7 FI18193p1 6.03 7 7 0 84874.4371 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 7563198.964 105 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 83424.69900000001 4 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 148347.88293 14 +Q0KI39 FI16806p1 18.15 3 6 1 25528.1962 4 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 488117.4587 17 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 74059.3551 9 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 109995.61600000001 4 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 11954.1045 2 +Q1RL12 IP16413p 54.97 15 74 2 132497.8255 3 +Q24090 GH08712p 7.57 3 3 3 56496.348 3 +Q24253 AP complex subunit beta 20.2 15 23 15 1006069.7800500001 22 +Q26459 EN protein binding protein 18.26 9 16 0 271057.03152 15 +Q29QY7 IP15859p 9.86 1 1 0 98953.8 1 +Q2MGK7 GEO13330p1 20.47 3 5 3 124656.12 5 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 12464.472 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 37168.229 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 9240485.9529 110 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 48713.83597 5 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 506600.67097000004 10 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 21359.145 3 +Q4QQ49 IP09595p 2.7 1 1 1 19305.168 1 +Q4QQ70 IP09819p 18.42 6 7 6 63027.2473 5 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 19014.803 3 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 21408.355 2 +Q4V619 IP07950p 6.9 2 3 0 30210.705 3 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 286635.7635 5 +Q500Y7 GEO11443p1 87.72 4 40 4 916555.5881599999 38 +Q59E01 FI02065p 3.0 2 2 0 2263.7347 2 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 51934.1946 3 +Q5BIA9 RE10908p 2.48 1 1 1 2541.789 1 +Q5LJT3 MIP01391p 10.93 2 5 2 124529.43890000001 5 +Q5U124 alpha-glucosidase 17.62 10 18 0 499482.498 17 +Q5U126 GEO11286p1 59.42 7 37 7 3370486.0669 36 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 355420.49576 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 57545.2376 6 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 869659.1891000001 29 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 21187.349000000002 2 +Q6IGN6 HDC05827 42.05 4 5 4 113332.897 4 +Q6IGW6 GEO13367p1 44.23 2 4 2 79134.16403 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 1940330.5486 14 +Q6IIF2 GEO11103p1 7.14 1 1 1 14938.328 1 +Q6IL43 GEO11093p1 13.25 1 2 1 116825.016 2 +Q6NL44 GH28815p 20.08 8 10 8 114776.06596 10 +Q6NLJ9 AT19138p 38.64 2 2 2 25885.680999999997 2 +Q6NMY2 RH54371p 21.43 5 27 5 1595568.8479000002 22 +Q6NNV2 RE44043p 5.81 2 2 0 188209.915 2 +Q6NNV7 RH03309p 36.84 7 23 1 1206890.8753 20 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 51337.238 2 +Q6NP72 GEO09659p1 33.33 4 16 4 938213.8957 16 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 40079.823000000004 2 +Q76NR6 Regucalcin 83.07 23 133 0 9393198.79641 120 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 269134.40606 13 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 288802.1292 13 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 1214282.30124 26 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 14409.91188 2 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 746515.0696 18 +Q7JQX9 FI14001p1 4.33 4 4 0 26542.719530000002 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 6112344.17122 97 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 262052.9332 7 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 31403.5822 3 +Q7JRF1 RE48509p 6.5 2 3 1 18351.4837 3 +Q7JRH5 RE28271p 1.31 1 1 1 17121.568 1 +Q7JRL9 GH25289p 67.12 10 52 1 3068577.5532 46 +Q7JRN6 GH06388p 6.73 2 2 2 15291.0824 2 +Q7JS69 FI04632p 35.69 10 68 1 1007094.863 8 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 20191.7975 3 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 1726634.5123 24 +Q7JV09 GH28348p 4.84 5 5 2 25033.42755 5 +Q7JV69 SD11922p 11.76 4 9 4 142370.27141000002 8 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 17602.4426 3 +Q7JVH6 LD24696p 47.27 12 27 11 508437.90491 18 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 141208.5096 8 +Q7JVK6 Translin 24.26 6 8 6 181411.2773 8 +Q7JVK8 GEO08987p1 53.42 7 13 7 942382.578 13 +Q7JVM1 GH25962p 22.64 5 6 5 45100.7826 4 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 218069.8832 8 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 178574.2226 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 75592.7444 4 +Q7JW48 RE12410p 5.57 2 2 2 4601.515 1 +Q7JWD6 Elongin-C 46.15 5 17 5 1714622.9634 17 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 2096428.5910999998 28 +Q7JWH5 RING-box protein 2 27.43 2 3 2 38400.176 3 +Q7JWQ7 RE01730p 5.34 2 3 2 18673.836499999998 3 +Q7JWU9 AT07420p 19.68 5 5 5 32413.266 3 +Q7JWX3 GH10112p 22.48 7 11 7 305449.5382 11 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 166501.5584 5 +Q7JX94 Phospholipase A2 15.61 3 3 3 14742.2253 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 177028.0055 7 +Q7JXB9 Endonuclease 10.65 3 3 3 68605.837 3 +Q7JXC4 CG6459 protein 33.46 6 38 6 2650480.7713 37 +Q7JXW8 Off-track2 4.39 2 2 2 12267.0115 2 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 183010.046 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 728573.87 8 +Q7JYW9 Phosphotransferase 19.38 9 13 9 347318.8957 13 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 44520.7408 5 +Q7JYZ0 lysozyme 39.13 4 9 4 292531.53083 9 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 313554.07866 17 +Q7JZB1 RE49860p 2.09 1 1 1 5461.572 1 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 1546756.45904 29 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 3587.1452 2 +Q7JZE1 Peroxin 11 6.22 2 2 2 65708.248 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 159287.58500000002 3 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 4125661.2383999997 32 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 177558.95746 13 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 786078.31955 23 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 2258386.287 17 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 41932.8358 5 +Q7K076 GEO08269p1 22.14 2 2 0 25230.14 1 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 14408721.28118 135 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 35912.55 1 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 1620362.20545 37 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 95048.62823999999 5 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 79912.533 3 +Q7K0S1 LD39211p 1.83 1 1 1 3122.1694 1 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 392566.2253 21 +Q7K0S6 LD36817p 19.03 8 9 8 295531.7544 9 +Q7K0W4 LD27203p 46.95 14 45 14 3172883.5984 44 +Q7K0X9 LD23667p 23.4 5 12 5 140612.3109 11 +Q7K127 Alpha-galactosidase 15.83 7 17 7 226314.08817 15 +Q7K148 Proteasome subunit beta 22.34 6 8 6 176888.3843 8 +Q7K159 LD06557p 22.47 5 6 5 91499.1237 6 +Q7K180 LD02709p 22.5 11 14 11 156839.43201 13 +Q7K188 GEO05126p1 30.97 6 40 6 2859162.8986 38 +Q7K1C0 GH23780p 50.5 6 11 1 143472.011 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 140320.876 5 +Q7K1C5 GH21176p 9.19 6 7 6 320916.468 6 +Q7K1H0 GH09096p 20.06 7 8 6 92061.6833 7 +Q7K1M4 SD04017p 16.99 5 12 5 174214.5196 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 223235.89250000002 5 +Q7K1W5 LD35843p 30.05 12 20 12 810788.8966 20 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 38456.706 2 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 1000562.84886 26 +Q7K2E1 LD05247p 18.9 10 15 10 387848.5285 12 +Q7K2L7 GH27120p 28.14 4 11 4 773019.7911 11 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 37667.134999999995 3 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 22277.733 2 +Q7K2P3 GH20817p 58.7 13 31 1 653736.0523 23 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 153613.48605 7 +Q7K2W6 tyrosinase 22.32 13 21 13 156507.26826 16 +Q7K332 GH17623p 23.43 6 10 5 328399.08934 9 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 289791.7974 12 +Q7K3E2 LD34147p 59.21 30 59 30 1775788.00447 56 +Q7K3H0 LD28067p 1.44 3 3 0 55615.53999999999 3 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 1730418.352 35 +Q7K3N4 GH26015p 14.95 6 7 6 191464.2976 7 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 116896.4993 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 274593.468 11 +Q7K3W4 GH08941p 25.85 8 20 8 901478.4489999999 19 +Q7K3Y9 Spondin-1 1.26 1 1 1 931.5648 1 +Q7K3Z3 GH01724p 51.6 16 44 16 1013228.4714 40 +Q7K485 Cathepsin D 35.71 9 36 9 1702475.00684 31 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 77763.204 4 +Q7K4J7 LD36653p 7.38 2 2 2 13425.8701 2 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 4742.7056 1 +Q7K4T8 LD23856p 6.55 3 4 3 24587.1025 2 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 29529.199399999998 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 118159.0467 9 +Q7K519 GH16429p 17.66 5 8 5 77849.97174000001 7 +Q7K533 GH14572p 6.14 2 2 2 28518.7022 2 +Q7K549 GH13040p 18.08 8 8 8 77767.9022 8 +Q7K561 GH11294p 6.82 2 2 2 2019.4215 1 +Q7K568 GH10642p 8.33 3 3 3 33952.2518 3 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 2281894.4359 47 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 314253.04944 12 +Q7K5M6 GH04176p 20.95 6 11 6 225924.1692 10 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 544096.1641 24 +Q7K860 FI07231p 39.22 7 12 7 1248500.771 11 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 398549.44139 14 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 3157.1838 2 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 45103.43795 4 +Q7KK90 GH14654p 55.8 9 28 9 2220480.8682 24 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 508817.6409 17 +Q7KLE5 Amphiphysin 49.67 26 71 3 2891681.73259 63 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 116269.84153 10 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 884386.2437 11 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 194172.405 7 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 42240.2881 4 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 709203.9955 21 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 2069759.23224 53 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 90500.45229999999 5 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 1005674.1685799999 36 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 5308919.96819 101 +Q7KND8 FI09619p 3.7 3 3 3 88240.384 3 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 784418.4265 13 +Q7KRT4 GH07253p 4.94 2 2 0 11694.4004 2 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 42513.27846 4 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 46463.66016 6 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 379668.2428 10 +Q7KSE4 GH05443p 2.78 2 2 2 24462.0396 2 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 1011710.1895 15 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 2283647.3081 23 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 35209.323000000004 2 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 11404.901 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 707704.3812 21 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 1626826.50603 43 +Q7KT58 GH08155p 3.52 2 3 2 40469.153 3 +Q7KT70 FI18641p1 2.93 3 3 3 35106.247 3 +Q7KTA1 HL01444p 17.1 7 10 7 176313.265 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 495282.5046 24 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 4297986.629 62 +Q7KTN9 FI01009p 3.11 2 2 0 11935.176 2 +Q7KTP7 LP22840p 31.49 5 7 5 255656.5381 7 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 2333369.85804 57 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 625756.5881 16 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 830110.04276 24 +Q7KUD4 phospholipase A2 2.93 3 3 0 4901.9374 2 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 1645422.1238 14 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 66547.42199999999 3 +Q7KUT5 Protein MIX23 26.89 4 6 0 87979.73860000001 6 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 151393.6105 6 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 49997.584 2 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 533144.7479000001 16 +Q7KV27 alanine transaminase 51.76 27 130 0 10933263.4016 120 +Q7KV34 Pinkman 38.9 26 40 26 2013477.4582 40 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 21255.648999999998 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 10491.812 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 102903.21999 15 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 50298.543 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 9771037.4859 83 +Q7KY04 small monomeric GTPase 21.13 4 7 3 16957.448 2 +Q7PL91 GEO11417p1 19.15 3 8 3 559040.87035 7 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 11130.6826 2 +Q7PLI0 P120 catenin 15.62 12 15 12 300309.8305 13 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 504092.4786 14 +Q7PLS1 LD01937p 15.76 6 8 0 162679.892 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 162440.355 6 +Q7YU88 SD08871p 2.84 3 3 0 6520.7489000000005 3 +Q86B44 Glutathione synthetase 13.17 8 13 0 248857.8223 10 +Q86B74 WASp, isoform C 12.55 5 5 0 70255.8572 5 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 93675.1289 4 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 21091.273 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 348720.0818 21 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 211960.5525 9 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 399274.0853 16 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 802321.0087 15 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 1783271.0441 15 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 807942.96684 25 +Q86BS3 Chromator, isoform A 28.19 21 40 21 714045.93574 33 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 64686.43075 6 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 695897.1347 20 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 29820.1213 3 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 154046.848 4 +Q8I0D4 RE20510p 28.36 21 42 0 1362947.3904 39 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 52396.847 3 +Q8I0P9 acid phosphatase 1.76 1 1 0 50988.004 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 733788.1056 18 +Q8I930 GH14147p 2.22 1 1 0 10828.705 1 +Q8I941 GH16843p 35.59 10 23 10 787639.367 23 +Q8IGY1 RE08101p 30.52 35 241 0 22991400.69005 116 +Q8IH23 GEO02102p1 20.74 4 12 4 522242.3404 11 +Q8IM93 FI18814p1 37.97 17 28 17 524206.62536 25 +Q8IMF4 RE24176p 5.23 3 5 0 56839.556 5 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 590006.47528 27 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 78195.7095 4 +Q8IMQ8 RH29536p 42.94 12 32 0 1401573.9978 31 +Q8IMT3 IP12392p 6.19 3 3 2 57140.823 3 +Q8IMT6 FI01822p 8.29 4 5 4 70911.015 4 +Q8IMU2 RE10237p 6.53 2 2 0 41085.7592 2 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 20909.8685 2 +Q8IMX4 FI04408p 6.6 2 4 0 21323.9518 4 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 117651.5683 6 +Q8IN49 MIP05539p 9.17 8 10 8 160357.3841 9 +Q8IN51 FI17609p1 37.59 7 17 7 210503.1641 17 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 107079.77799999999 3 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 25690.6674 2 +Q8INH5 Aminopeptidase 7.53 7 8 0 86814.70894 8 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 23891.0504 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 6476.9487 1 +Q8IP52 RE16941p 2.66 3 3 3 20486.1969 3 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 146784.105 8 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 527329.57374 23 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 71459.129 2 +Q8IP97 Peroxin-19 52.05 11 27 11 564268.5742500001 24 +Q8IPA5 RE15581p 5.36 1 2 0 32339.123 2 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 145992.401 2 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 263621.564 10 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 3869863.9178 72 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 65227.590599999996 4 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 36268.6255 3 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 654798.6324 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 18458.84 1 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 187982.696 6 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 25915.413999999997 2 +Q8IPT9 SD05439p1 43.49 11 21 0 702061.1708 15 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 1275794.3056 32 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 54845.5481 7 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 16987.6866 2 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 13027.261299999998 2 +Q8IQB7 MIP21654p 9.44 3 4 3 52007.4286 3 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 30515.3865 4 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 41219.194 3 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 42549.727 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 107825.41906 8 +Q8IQH0 FI12817p 5.37 8 8 1 60372.07575 7 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 113714.57983 7 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 5788.6385 2 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 240847.62041 23 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 78137.277 2 +Q8IQW5 RE23625p 73.96 13 69 3 3562419.4991800003 57 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 35462.4856 4 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 10541.061099999999 3 +Q8IR76 FAD synthase 17.35 5 5 0 40666.912000000004 4 +Q8IRD0 RH17559p 40.82 2 7 2 130965.5067 6 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 7311230.45 61 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 257628.5226 17 +Q8IRI5 Trio, isoform D 10.7 8 10 0 158138.9733 10 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 11021649.6352 139 +Q8MKJ5 GEO08105p1 13.27 1 1 1 1831.2125 1 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 26795.8185 2 +Q8MLP9 GEO08457p1 33.93 4 5 4 51614.9626 5 +Q8MLQ0 FI14118p 21.05 2 4 2 119298.4064 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 627182.5599999999 14 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 263156.1252 13 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 592095.41635 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 3434346.74966 78 +Q8MQP2 MIP16184p 7.0 2 2 0 25883.482 2 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 12946.4387 2 +Q8MRM0 GH16740p 35.44 8 18 8 628633.1640999999 18 +Q8MRT7 SD26038p 9.2 2 2 2 25766.927 2 +Q8MRW1 SD19278p 5.83 1 1 1 6585.004 1 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 19288.792 3 +Q8MSI2 GH15296p 82.01 19 124 19 15601867.03155 109 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 26213.8548 3 +Q8MST5 Tubulin beta chain 45.08 17 105 0 776449.8576 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 3965101.7525 62 +Q8MZ07 GEO07581p1 17.81 3 5 3 163883.248 5 +Q8MZI3 RNA helicase 18.34 13 16 3 236560.581 11 +Q8SWS2 RE29468p 60.95 6 30 0 729815.4827 25 +Q8SWS3 RE26528p 20.44 2 4 2 43578.632 4 +Q8SWZ6 RH51312p 8.33 2 2 2 34661.6144 2 +Q8SX06 GEO08318p1 16.67 2 3 2 59820.17 3 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 36962.15700000001 3 +Q8SX35 GEO07743p1 26.53 3 4 0 42443.7255 4 +Q8SX50 RE04530p 17.3 6 7 0 111833.1643 6 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 69270.434 3 +Q8SX57 LD44221p 47.08 8 17 8 319993.5815 15 +Q8SX78 LD05679p 17.93 7 7 7 70718.71179999999 7 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 58256.7881 4 +Q8SXC2 FI04487p 9.11 5 5 5 53685.371 5 +Q8SXD5 GH02216p 55.13 11 33 2 2370325.72953 32 +Q8SXE1 RH69521p 2.6 1 2 1 7949.8387999999995 2 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 114493.641 4 +Q8SXF2 RH40246p 7.01 3 4 3 72171.31700000001 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 19022.585 2 +Q8SXK0 RE18748p 2.91 1 1 1 12216.798 1 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 369006.654 21 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 5416.0356 1 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 519624.8512 18 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 10758.9191 3 +Q8SXS0 RE40914p 12.25 5 5 5 32093.471 3 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 1195122.03 20 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 2733.0282 2 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 84312.28 1 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 11589.9128 3 +Q8SY67 lysozyme 14.47 2 3 2 15973.8984 2 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 424777.935 6 +Q8SYC4 RE68566p 1.72 1 1 1 50707.31 1 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 2449088.1765 51 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 800732.8039 18 +Q8SYH8 RE57644p 18.68 5 10 1 82319.4946 9 +Q8SYJ2 GEO09626p1 67.47 9 59 9 6780423.23238 57 +Q8SYN0 RE52086p 9.3 4 5 4 28827.76942 5 +Q8SYQ4 RE42475p 70.27 11 44 11 1902087.69818 40 +Q8SYQ8 RE40412p 19.85 3 3 3 49434.663 3 +Q8SZK5 RH26533p 10.29 3 3 3 72734.35925 3 +Q8SZK9 HL04814p 48.48 12 60 12 5443262.7279 55 +Q8SZM2 RH04334p 25.19 7 27 7 2090308.4952 26 +Q8SZN1 GEO08217p1 51.61 7 29 3 924600.7227 28 +Q8T0I9 GH27479p 16.47 7 12 1 389012.1175 10 +Q8T0J5 GH26851p 41.11 12 33 0 1676494.84 30 +Q8T0N5 GH17516p 19.21 6 9 6 522084.286 8 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 125783.1614 9 +Q8T0V2 GH02495p 19.91 8 13 0 193760.77740000002 10 +Q8T389 Endophilin B 40.74 15 54 0 5993.0796 1 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 32329.6725 3 +Q8T3W8 Venom allergen-1 9.54 3 3 0 31614.275999999998 3 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 6535.4155 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 1046913.58933 34 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 3155057.6272 58 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 44364.7535 3 +Q94513 Boundary element associated factor 18.79 5 10 1 183003.1214 9 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 88378.75506 7 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 14469.6124 2 +Q95NU8 GH16255p 13.57 8 12 8 166197.06777 11 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 3265.5344 1 +Q95PE4 GEO07784p1 6.17 1 1 1 14993.777 1 +Q95R34 GH16463p 9.71 3 3 3 69669.2154 3 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 98242.6964 3 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 85538.6799 5 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 18901268.57696 140 +Q95RC5 LD44506p 5.31 3 3 3 33315.917 3 +Q95RE4 LD37574p 41.48 11 18 0 51500.20012 12 +Q95RF6 LD34461p 34.5 4 13 4 311555.9369 11 +Q95RI2 LD28549p 27.78 8 12 8 176571.6263 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 39162.499800000005 4 +Q95RQ1 LD16414p 3.32 2 2 2 11676.089 1 +Q95RR6 LD15002p 64.6 17 61 0 145468.444 2 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 130091.65160000001 7 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 559888.776 2 +Q95RY2 LD01461p 48.09 10 18 2 661363.3097999999 13 +Q95SH0 GH26463p 1.52 2 2 2 14184.259 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 448348.3888 11 +Q95SH7 GH26007p 8.57 2 3 2 42670.1894 3 +Q95SI7 GH23390p 65.87 15 59 15 2558655.45058 55 +Q95SN8 GH12395p 21.83 5 8 5 274744.5977 8 +Q95TK5 LD44914p 22.77 9 11 8 132306.9363 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 1231737.9148 31 +Q95TP0 LD34582p 3.1 1 1 1 9764.847 1 +Q95TZ7 GH19182p 78.36 26 115 0 4617827.88114 87 +Q95U15 GH14252p 75.64 27 227 0 5010212.90753 33 +Q95U34 GH11113p 22.45 11 21 11 878726.9947 19 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 268352.515 8 +Q960D4 SD06560p 25.8 16 21 1 406998.3415 20 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 8133897.7001600005 81 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 430012.3244 24 +Q961A8 LD25351p 1.59 1 1 0 1002.30225 1 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 138685.259 4 +Q961B9 LD24073p 6.28 3 4 3 61495.788 4 +Q961C8 LD22649p 10.93 4 5 0 20897.3454 3 +Q961E7 phosphorylase kinase 7.16 4 5 1 40522.8325 3 +Q961Q8 GH10454p 6.42 3 3 3 50233.039 2 +Q961T9 GH07914p 29.41 6 10 6 374853.391 10 +Q961X4 Combover, isoform B 11.74 9 14 0 124867.97115 13 +Q966T5 Paxillin, isoform D 28.93 7 18 3 195619.7458 4 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 113465.81624999999 5 +Q9I7I3 GH12831p 9.56 3 3 3 58194.2305 3 +Q9I7J0 GH21596p 69.23 11 41 11 1616933.2919 32 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 16348.768 1 +Q9I7L9 Uncharacterized protein, isoform A 4.28 1 1 0 2300.1577 1 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 1160137.4845 19 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 1063923.25066 25 +Q9NCC3 Sorting nexin 9.03 5 7 5 161209.999 7 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 201635.78045000002 4 +Q9NG60 Eukaryotic translation initiation factor 2D 3.37 1 1 1 763.6234 1 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 320377.383 6 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 133185.14234 14 +Q9U6P7 FI18813p1 11.39 5 8 5 189498.6077 7 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 2353892.54996 58 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 49385.537000000004 4 +Q9V393 Kurtz arrestin 9.57 4 5 4 66696.1928 5 +Q9V396 Carbonic anhydrase 64.44 15 34 15 2377692.30224 33 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 69614.943 3 +Q9V3C8 DShc protein 1.71 1 1 1 15509.173 1 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 159231.4894 10 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 70527.24799999999 3 +Q9V3E7 LD24793p 39.85 12 24 12 492883.60958 23 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 3500.2114 1 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 482489.92185 13 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 3462.7185 1 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 50469.65 2 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 306727.52749999997 13 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 1766285.6154500002 45 +Q9V3N9 B6 1.79 1 1 1 33072.52 1 +Q9V3P3 LD45860p 35.1 9 21 9 812539.7888 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 73664.7824 4 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 9617.0708 2 +Q9V3T8 LD32469p 14.36 3 3 3 32734.494 3 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 2149747.2872 32 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 1114756.6464 30 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 3528859.0782 47 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 757278.99005 25 +Q9V3W2 GM23292p 61.68 14 52 14 2432675.3256 47 +Q9V3W7 LD40489p 47.45 11 20 11 170230.48738 14 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 451482.5837 24 +Q9V3Y4 LD43650p 8.23 2 3 2 9615.905 1 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 1411145.33013 32 +Q9V3Z4 GH11341p 27.89 14 24 14 631000.5794 19 +Q9V3Z9 HL02234p 42.6 15 43 15 3820828.03797 38 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 22272.105799999998 3 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 1127819.3557 29 +Q9V406 Activator protein 4 9.35 6 8 6 146311.51434 7 +Q9V420 FI02878p 19.66 7 10 7 276743.2047 8 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 625678.6623 13 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 43103.64415 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 1289514.7995 21 +Q9V455 Importin subunit alpha 19.84 9 23 9 873032.1222999999 23 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 1150200.42095 39 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 1522566.4437 58 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 2121627.4478 53 +Q9V4E0 Complex I-49kD 33.97 12 20 11 649507.47205 20 +Q9V4E7 Transporter 3.46 3 4 2 26471.143 3 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 600040.208 12 +Q9V9Q4 LD43819p 34.18 13 24 13 912167.80954 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 169930.2921 5 +Q9V9T5 GM14617p 2.44 2 2 0 14082.719000000001 2 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 21019.4676 2 +Q9V9U0 RE35358p 10.11 2 3 2 63903.854999999996 3 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 292994.735 9 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 6224.9297 1 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 627770.55264 17 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 2718214.9689 25 +Q9V9W4 GH08048p 1.69 1 1 1 2862.687 1 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 52470.197499999995 5 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 63786.162469999996 8 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 2318404.0135 58 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 94512.30407 8 +Q9VA34 LP06141p 2.47 3 4 3 28811.953500000003 4 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 243122.9846 15 +Q9VA41 GEO08227p1 52.87 7 17 3 136237.069 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 1140545.6480400001 24 +Q9VA56 GH23271p 54.34 20 59 1 6091.4297 1 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 60105.9727 4 +Q9VA71 FI19924p1 7.86 3 3 3 1476.4609 1 +Q9VA76 IP18706p 16.71 5 7 5 47397.2854 6 +Q9VA81 GEO10172p1 13.57 2 3 2 49809.771 3 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 22638.3987 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 480780.07225 13 +Q9VAA6 GEO12235p1 19.62 3 4 3 61324.037 4 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 141888.0948 10 +Q9VAC1 GM14349p 62.05 20 122 20 11667496.39161 110 +Q9VAC4 GEO09167p1 55.77 8 20 8 1071027.4367 20 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 40606.362 5 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 19297.7904 3 +Q9VAD7 RH37294p 5.2 1 1 1 626.4379 1 +Q9VAG3 trypsin 24.11 5 8 5 246138.3413 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 346418.86273 17 +Q9VAI9 GEO07291p1 62.25 9 53 5 4283577.22422 48 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 228446.494 9 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 8097.41386 3 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 1661790.0262 49 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 9838904.83092 96 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 68630.1185 4 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 13135.0002 2 +Q9VAU6 LD27564p 2.99 2 2 2 12574.0088 2 +Q9VAV2 FI21480p1 13.07 11 15 11 324173.7487 15 +Q9VAY0 Neprilysin 7 3.91 3 3 3 25765.1576 3 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 2440995.05905 68 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 47635.131 2 +Q9VAY9 GH07821p 8.65 3 3 3 20616.936999999998 3 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 1373622.1593 34 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 1891515.80214 44 +Q9VB17 IP11341p 10.74 3 3 3 60125.3033 3 +Q9VB22 LD33695p 18.39 9 13 9 110224.8758 12 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 452395.95623 20 +Q9VB51 GEO08385p1 13.33 1 1 1 4117.8447 1 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 691571.63113 14 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 57938.52 2 +Q9VB69 Malic enzyme 29.5 16 20 2 243183.13671 19 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 55163.555 3 +Q9VB77 IP09938p 7.01 2 5 2 63204.2219 5 +Q9VB79 IP09473p 17.65 6 14 6 340859.5684 13 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 1622586.2697 39 +Q9VB86 LP07342p 16.78 3 6 3 33777.996100000004 5 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 800275.1894 21 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 2750.29635 2 +Q9VBC9 Beaten path VII 7.74 3 3 3 36272.328700000005 3 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 4098162.4286 78 +Q9VBI3 RH72336p 22.66 7 16 7 452679.5625 15 +Q9VBL3 GH01188p 5.83 3 3 3 37508.091700000004 3 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 102316.849 2 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 9239.427 1 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 6817773.3191 86 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 79091.98 3 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 1890527.5373 26 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 120833.933 7 +Q9VBT2 IP11926p 4.33 2 2 2 25691.5337 2 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 21524.0197 2 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 3328029.739 11 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 141247.872 4 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 31656.008 1 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 2655330.8929 44 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 28447.04056 4 +Q9VC06 LD37516p 15.62 11 15 11 149762.34326999998 13 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 25860.57 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 517022.33040000004 27 +Q9VC30 RE05274p 18.28 3 6 3 21679.45369 5 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 374082.8905 8 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 874475.5561 16 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 275917.4562 11 +Q9VC58 Syntaxin-18 4.05 2 2 2 27087.877 2 +Q9VC66 AT25567p 19.46 8 9 8 254072.348 9 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 100085.1049 9 +Q9VC87 RE57978p 2.84 1 1 1 17160.441 1 +Q9VCB9 FI08802p 15.16 4 4 4 137725.397 4 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 14196.622299999999 3 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 609878.9821 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 197489.4975 5 +Q9VCF8 LD23561p 22.64 7 9 7 232731.41883 9 +Q9VCI4 LD32918p 1.13 1 2 1 7448.6626 1 +Q9VCI7 LD02979p 17.15 6 9 1 150908.3345 7 +Q9VCK6 LD34157p 18.02 7 8 7 103718.26255 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 44657.542199999996 4 +Q9VCR4 FI17836p1 5.18 4 6 4 45758.474 6 +Q9VCR9 RH48101p 43.21 13 26 13 880532.45636 24 +Q9VCT4 Klingon 4.4 2 2 2 13172.4033 2 +Q9VCU0 GEO02312p1 14.17 2 7 2 241288.0213 7 +Q9VCU1 FI07649p 1.31 1 1 1 10937.578 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 47119.333 2 +Q9VCW2 Cardinal 4.82 4 4 4 81088.3463 4 +Q9VCW6 GCS light chain 33.33 11 27 11 1683333.7513 26 +Q9VCZ2 FI07970p 2.48 1 1 1 19649.37 1 +Q9VD00 FI07666p 34.53 8 15 8 581377.2757 12 +Q9VD01 LP12095p 4.55 1 1 1 43737.594 1 +Q9VD02 GH14779p 30.73 4 11 4 313159.2645 11 +Q9VD13 GH02671p 10.79 6 7 0 63001.67774 7 +Q9VD14 GH07286p 9.57 6 9 6 257557.038 9 +Q9VD29 small monomeric GTPase 49.74 9 33 9 1677442.79852 32 +Q9VD30 GH05294p 70.16 12 36 12 1901072.0230299998 33 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 31746.946500000002 3 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 6575053.15443 90 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 55508.0334 4 +Q9VD68 GH19849p 6.84 3 3 3 44534.213 3 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 97541.705 2 +Q9VDC0 GH01837p 24.0 5 14 5 310951.233 14 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 11771.59 1 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 33007.17 1 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 739838.0682 15 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 1705500.2274 13 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 479776.91023000004 18 +Q9VDH3 GH08630p 55.7 12 33 12 1543122.984 30 +Q9VDI1 LD46328p 48.58 21 60 0 1711856.4844 53 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 53278.246100000004 5 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 221097.7484 10 +Q9VDK2 GH15831p 1.18 1 1 0 6275.4927 1 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 265868.6489 21 +Q9VDK9 GH12359p 4.71 3 3 3 22662.35726 3 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 77106.285 4 +Q9VDL5 GEO09602p1 13.43 1 1 1 16931.107 1 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 501219.68669999996 14 +Q9VDQ3 Identity crisis 6.14 3 3 3 31757.722999999998 3 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 1025735.62527 22 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 6121.685 1 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 793606.5504599999 18 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 8218.614 1 +Q9VDU7 nicotinamidase 21.57 7 17 7 397803.1375 16 +Q9VDV2 AT06125p 6.34 3 3 2 60127.51699999999 2 +Q9VDY8 MIP08680p 65.44 17 56 1 2743097.09699 51 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 2233411.54938 49 +Q9VE08 GH10002p 10.8 2 2 2 88742.69360000001 2 +Q9VE12 LD27322p 8.02 3 3 3 67065.5794 3 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 118780.068 5 +Q9VE31 GEO12059p1 9.91 1 1 1 2351.6606 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 99927.5593 6 +Q9VE56 FI17806p1 11.22 3 3 3 244084.21399999998 3 +Q9VE57 GEO10850p1 5.52 1 2 1 38253.424 2 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 64632.3679 4 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 58114.4148 6 +Q9VE94 LD14127p 5.73 2 3 2 29684.656 2 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 295207.5161 8 +Q9VEA7 FI01460p 8.99 1 3 1 141746.519 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 33494390.47771 254 +Q9VEB7 AT04491p 2.05 1 1 1 39287.43 1 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 155830.4123 6 +Q9VEC8 RE23139p1 26.92 4 5 4 154108.7429 5 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 65958.50099999999 4 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 1236.0935 2 +Q9VEG8 RE59232p 13.2 3 5 3 88097.777 5 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 74477.5132 2 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 1146391.8357 25 +Q9VEJ9 Curly Su 4.52 3 3 3 31491.3315 3 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 52330.1585 3 +Q9VEK8 GH07711p 35.28 12 21 12 816167.708 21 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 193186.31772 15 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 26351.975 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 50222.793 3 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 855280.6133 21 +Q9VEP8 GH11385p 13.77 10 12 10 314094.9786 12 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 227661.828 12 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 120648.05799999999 5 +Q9VES8 RE28913p 26.26 8 9 8 433366.99799999996 9 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 21753.154 1 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 342659.40094 19 +Q9VEV6 Uncharacterized protein, isoform A 3.5 1 1 0 496.5648 1 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 45389.976 3 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 15435.166 2 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 276018.8741 17 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 26096.5743 3 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 1884485.27725 43 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 148899.4375 9 +Q9VF15 GEO09476p1 65.36 10 39 7 1595530.6279 35 +Q9VF23 arginine kinase 3.28 2 2 2 90637.531 2 +Q9VF24 Crossveinless d 5.17 8 10 8 120153.9307 8 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 342981.606 9 +Q9VF39 FI01459p 15.0 6 10 6 94433.8754 8 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 223749.0207 12 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 92828.5247 5 +Q9VF77 FI16517p1 13.42 5 6 5 105051.663 5 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 75660.84270000001 3 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 94384.11200000001 5 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 210278.0946 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 50336.032999999996 4 +Q9VFC7 Mf5 protein 78.08 31 236 0 9870676.10044 154 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 14112801.64298 103 +Q9VFI3 GEO08281p1 45.19 3 10 3 122092.9399 7 +Q9VFM0 GH19262p 7.14 4 5 4 24469.4499 4 +Q9VFN7 GEO07678p1 19.5 3 9 3 335212.35659999994 9 +Q9VFN9 GEO07882p1 41.94 6 7 6 109938.19655 7 +Q9VFP0 RH07106p 23.51 8 9 8 76386.4283 9 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 1135529.0155 24 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 714854.2681999999 15 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 23230.970999999998 3 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 19756.1018 2 +Q9VFT4 AT27578p 13.48 9 12 9 101327.40755 9 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 42639.926999999996 3 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 1925902.135 38 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 150242.672 3 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 91444.56349999999 3 +Q9VG01 RE12073p 1.88 1 1 1 13282.34 1 +Q9VG04 Protein MEMO1 5.42 2 2 2 62510.66499999999 2 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 6960.4424 2 +Q9VG23 GH22994p 59.07 11 45 1 3177082.82811 43 +Q9VG26 MIP06012p 30.05 7 25 7 1096699.93283 22 +Q9VG31 Malic enzyme 16.91 13 17 0 746274.7037 17 +Q9VG33 Sulfurtransferase 67.27 7 15 7 800139.6479 15 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 51062.693400000004 4 +Q9VG51 Sorting nexin-3 34.13 7 25 7 768853.465 19 +Q9VG62 Toys are us 6.19 3 3 3 41043.182 3 +Q9VG69 LP03547p 35.71 12 26 12 1074937.8542 23 +Q9VG81 RH49330p 15.78 7 8 7 55031.0921 7 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 173194.63678 4 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 562421.2141 16 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 6333.4194 1 +Q9VGA3 LD12305p 33.64 7 18 6 675676.185 16 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 5416.712 1 +Q9VGE4 FI04457p 4.49 6 6 6 41492.175429999996 5 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 16921.6154 3 +Q9VGF3 IP11040p 9.86 4 5 4 102948.739 5 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 1362751.2494 29 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 424541.125 5 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 147397.5533 10 +Q9VGL0 LD43047p 2.84 3 3 3 29446.1955 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 15628815.649 157 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 69332.9768 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 4900347.95736 59 +Q9VGQ8 Arfaptin 11.55 4 5 4 89420.4432 5 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 33828.4383 4 +Q9VGS3 RH44771p 14.04 4 12 4 578050.284 10 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 2723.3306 1 +Q9VGT3 GM04645p 1.89 1 1 1 2843.5684 1 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 86577.9385 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 56765.820999999996 2 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 75620.125 2 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 86958.3794 5 +Q9VGY2 Peptide deformylase 14.71 4 4 3 58446.826 4 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 178105.242 11 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 87229.7131 6 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 240156.23284 9 +Q9VH37 IP06524p 14.29 3 4 3 134870.7015 4 +Q9VH64 LD29322p 26.91 9 14 9 300703.2577 14 +Q9VH66 FI18258p1 27.9 6 12 6 252017.88249999998 12 +Q9VH72 TA01656p1 37.25 6 14 6 321112.51565 13 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 520999.9386 22 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 35772.68398 5 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 10027.429900000001 2 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 217107.3658 10 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 169845.124 5 +Q9VHA8 LD25575p 13.05 7 10 7 601347.9733 10 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 689018.3228 17 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 54463.7042 5 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 148014.7508 13 +Q9VHC7 FI21236p1 32.28 15 32 8 979833.4586 23 +Q9VHE3 GH05665p 6.25 2 2 2 17456.6194 2 +Q9VHE4 omega-amidase 20.85 7 15 7 365065.887 15 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 385123.2934 10 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 54309.206000000006 4 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 44463.326 4 +Q9VHH8 Beag 6.46 4 4 4 32771.5919 4 +Q9VHI1 Hyrax 6.32 3 3 3 25766.816700000003 3 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 1206819.2818 17 +Q9VHJ2 LD32381p 2.65 1 2 1 59143.498999999996 2 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 9518.103 1 +Q9VHJ7 LD41978p 3.96 3 4 3 33263.0582 4 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 2404903.24009 42 +Q9VHM3 LD30467p 9.09 4 4 4 25615.4284 3 +Q9VHN4 GH14121p 10.92 3 3 3 53958.511 3 +Q9VHN7 transketolase 35.46 19 30 1 922685.3103 25 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 5667.005 1 +Q9VHR5 Veneno 3.27 2 2 2 978.21185 1 +Q9VHT3 CG9617 protein 23.6 5 7 5 136687.2172 7 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 65358.136 6 +Q9VHX2 GH08043p 7.23 4 5 4 46580.5671 5 +Q9VHX4 LD24679p 68.09 21 107 21 9298113.63373 98 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 150734.5897 5 +Q9VI09 GH14494p 52.48 7 35 7 1318333.5772 33 +Q9VI21 Dementin, isoform D 3.92 3 3 0 16837.860699999997 3 +Q9VI24 LD25151p 3.61 1 1 1 10712.349 1 +Q9VI53 LD44267p 9.24 4 6 4 158084.941 6 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 14742.695 1 +Q9VI64 LD30995p 48.16 14 49 14 2231309.1895 44 +Q9VI66 GH28833p 7.57 2 3 2 47494.5214 3 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 15306.7682 2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 30666.1756 2 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 34844530.7089 273 +Q9VIF2 GM01519p 9.72 5 6 5 303641.339 6 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 197945.0921 8 +Q9VIH1 CG9273 protein 16.26 4 5 4 50596.477100000004 5 +Q9VII5 GEO08323p1 20.75 4 7 4 116378.58659999998 6 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 135942.53 2 +Q9VIJ3 FI14214p 17.78 3 4 1 13577.1185 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 2961.2344 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 20186.6498 4 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 115386.5227 10 +Q9VIL2 LD19544p 14.9 4 8 4 124345.5598 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 269966.1229 9 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 105447.264 3 +Q9VIQ5 RH02620p 40.64 8 10 8 183457.8858 8 +Q9VIQ6 FI17342p1 4.82 1 2 1 10434.5085 2 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 2046246.63476 46 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 21240.8037 4 +Q9VIU3 FI23988p1 4.24 2 2 2 1726.9702 1 +Q9VIV6 GH04973p 11.11 4 6 4 214195.872 6 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 42758.409499999994 2 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 1008.31854 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 252412.2334 7 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 223288.7712 9 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 799797.1022 24 +Q9VJ22 GH09876p 8.0 2 2 2 9467.196 1 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 87144.832 4 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 575718.8046 10 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 117773.1078 7 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 1385541.7307 37 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 271608.98 8 +Q9VJ59 PRA1 family protein 8.7 2 3 2 91628.458 3 +Q9VJ60 GM16226p 10.28 3 5 3 132450.0472 5 +Q9VJ61 SD03870p 1.64 1 1 1 23391.398 1 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 206987.4134 10 +Q9VJ80 LD42267p 7.96 10 11 10 95784.51924 9 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 112225.32465 11 +Q9VJA9 GH07373p 4.86 3 3 0 38389.19 3 +Q9VJC0 GEO08203p1 37.96 5 6 5 89026.2874 5 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 83517.8608 6 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 335374.7422 19 +Q9VJD4 LD24721p 32.33 11 29 11 1600269.1585 26 +Q9VJE3 LD24839p 7.67 4 5 4 34770.289300000004 3 +Q9VJH8 FI03416p 2.58 2 2 2 56524.066999999995 2 +Q9VJI5 Protein yellow 9.71 5 6 5 258317.9366 6 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 118452.78649999999 6 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 1172979.5829999999 13 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 22337.166299999997 2 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 274855.946 5 +Q9VJQ3 Protein yellow 25.11 11 28 10 1675522.1199999999 26 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 12107.61287 3 +Q9VJU6 IP09831p 3.17 1 1 1 14998.669 1 +Q9VJU8 GH23407p 10.27 5 6 5 68693.82549999999 4 +Q9VJZ1 FI21342p1 5.49 3 4 3 59489.7819 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 3503381.5515 34 +Q9VJZ5 LD07294p 26.58 8 10 8 160384.42875 8 +Q9VJZ6 LD40224p 67.13 11 30 11 791935.5721 23 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 432491.0992 12 +Q9VK11 GH15921p 27.51 7 18 7 529876.7326 17 +Q9VK12 GH20621p 62.0 17 84 17 5898118.5281 71 +Q9VK18 LD36945p 6.59 3 3 3 21389.492400000003 3 +Q9VK19 FI07225p 9.35 2 2 2 18890.2936 2 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 32.06 14 22 1 513.2379 1 +Q9VK39 FI09204p 34.91 4 17 4 355664.04099999997 13 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 8578.04902 4 +Q9VK59 LD23647p 28.63 23 34 23 475300.34355 24 +Q9VK60 GH25425p 58.37 13 49 13 2923878.65268 44 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 881087.84025 38 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 219585.9481 8 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 300065.5856 9 +Q9VK99 Atilla, isoform B 51.75 7 32 7 885305.42855 25 +Q9VKA1 FI02817p 15.58 3 3 3 133707.6179 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 17106.4895 2 +Q9VKC8 FI03495p 9.17 5 5 5 285629.3404 5 +Q9VKD9 MIP16835p1 1.35 1 1 1 1661.0662 1 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 15673528.77789 297 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 41894.8114 4 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 43336.888 2 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 8588.63 1 +Q9VKI8 GH03305p 67.77 20 107 20 6666606.7221 100 +Q9VKJ4 Csl4 14.22 3 4 3 106333.893 4 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 3188923.8754 66 +Q9VKM7 AT01533p 8.57 5 12 1 483484.2858 11 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 13202.1007 2 +Q9VKQ5 GEO07393p1 6.45 1 1 1 19185.38 1 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 38857.7251 5 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 597121.3731 12 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 26059.627 2 +Q9VKU5 LD37206p 10.09 2 2 2 14665.455 2 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 1405425.8614 37 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 41993.535 2 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 81368.62599999999 4 +Q9VKW1 LD41958p 2.21 1 1 1 6040.827 1 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 178061.6127 10 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 9154874.80766 128 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 338061.1855 7 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 35939.2929 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 550537.8449 21 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 2150533.3339 41 +Q9VL02 GH08677p 10.57 4 4 1 59990.4897 3 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 185504.392 10 +Q9VL16 RE45833p 30.77 8 26 8 1696332.29 22 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 5060.2583 1 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 43181.352 2 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 2299.9277 1 +Q9VL57 RE10231p 4.75 3 3 2 61200.548 3 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 111461.459 3 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 214445.8323 7 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 2378867.1492500002 29 +Q9VL70 HL08109p 83.17 25 129 25 10769548.1474 118 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 204818.68099999998 7 +Q9VL91 LD23102p 1.8 1 1 1 603.9598 1 +Q9VL93 GEO07195p1 13.64 2 2 2 32809.449 2 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 159357.411 6 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 2990280.17285 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 4412010.36934 68 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 73428.2917 5 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 22027.916 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 818153.4653 19 +Q9VLP0 IP04187p 11.23 2 5 2 87825.35179999999 5 +Q9VLP1 GEO08095p1 37.84 6 14 6 379640.0202 13 +Q9VLP2 GEO08076p1 38.1 6 40 6 881329.36247 36 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 284043.351 5 +Q9VLQ9 Sorting nexin 29.4 14 23 1 829122.32821 22 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 194668.928 4 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 1987.0154 1 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 894810.5303999999 32 +Q9VLS5 LD29542p 10.69 5 6 5 46475.4127 5 +Q9VLS7 LD21067p 1.88 4 4 0 64304.981 4 +Q9VLT3 LD23292p 16.59 28 41 28 981020.5322 38 +Q9VLT7 IP17351p 26.92 4 7 4 299523.35355999996 6 +Q9VLU3 IP09231p 5.4 1 1 0 9921.388 1 +Q9VLV9 Proctolin 20.71 2 4 2 66775.11319999999 4 +Q9VLW8 LD06392p 13.18 3 3 3 10219.9671 3 +Q9VLX6 HL01609p 6.32 2 2 0 61629.381 2 +Q9VLY1 HL02931p 19.01 1 7 1 212857.9052 7 +Q9VLY7 TEP1-F 3.68 6 7 6 77288.11720000001 7 +Q9VLY9 CD109 antigen 29.45 37 61 0 2203312.56501 57 +Q9VM07 RE43931p 27.85 5 11 4 161712.9534 6 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 127700.3064 8 +Q9VM11 HL01515p 31.19 9 12 9 445471.0843 12 +Q9VM12 MIP26555p1 29.25 10 25 10 884171.787 21 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 13299898.95823 149 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 9538930.26176 76 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 18993.773 1 +Q9VM47 Menin 3.15 2 3 0 7569.552 3 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 23582.0354 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 54643.342000000004 4 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 278258.069 9 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 759400.8284 12 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 125989.027 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 5523840.9826 59 +Q9VMC3 LD35051p 3.29 1 1 1 12480.235 1 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 13969.2217 2 +Q9VMC7 LP11564p 9.94 6 6 3 19869.41973 5 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 451470.05299999996 13 +Q9VME1 FI01864p 17.96 7 8 7 87548.88003999999 8 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 46138.364 3 +Q9VMF0 FI04444p 4.48 2 2 2 16350.9979 2 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 33943.8307 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 252700.5565 11 +Q9VMH8 GEO07746p1 37.3 6 12 6 550840.848 10 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 1169339.91202 27 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 1135267.94068 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 3614504.95893 36 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 107366.733 4 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 722438.3328 21 +Q9VMR9 acylphosphatase 6.93 1 1 1 41813.73 1 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 6021752.7078 36 +Q9VMT2 GEO07854p1 52.35 7 122 0 8024374.55354 102 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 3582385.9717 39 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 110906.7471 9 +Q9VMV5 Viking, isoform A 8.2 13 20 13 213408.1048 17 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 15743.54 2 +Q9VMX4 AT19154p 19.52 6 13 6 214300.07457 10 +Q9VN01 GH23891p 16.39 8 12 8 148592.07667 12 +Q9VN02 GH14561p 32.74 7 14 7 234699.4784 13 +Q9VN21 LD30155p 55.05 28 100 28 4021793.79132 91 +Q9VN39 RE74585p 17.58 6 8 2 31474.327540000002 5 +Q9VN44 FI07923p 18.91 20 39 20 1655686.84322 37 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 536888.5076 14 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 604023.5363 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 13025.1338 2 +Q9VN86 AT14148p 6.51 3 3 3 39517.51765 3 +Q9VN88 LD45836p 14.49 4 6 4 111811.265 6 +Q9VNA3 GH21273p 40.28 8 15 8 636840.9282000001 15 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 515984.47729999997 8 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 45314.342000000004 3 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 11293.1665 2 +Q9VNF3 RE01652p 39.3 9 23 7 466683.3838 18 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 117952.562 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 20328.166699999998 2 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 195980.0386 12 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 176601.84100000001 3 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 104290.4272 5 +Q9VNI8 Hpr1 10.7 8 9 8 76297.6436 8 +Q9VNI9 IP18173p 17.18 3 6 3 36123.197700000004 6 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 5014152.55989 72 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 87336.10870000001 6 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 17603.139900000002 5 +Q9VNV2 GEO05133p1 8.86 1 2 1 6189.1817 2 +Q9VNW0 GEO11142p1 21.88 3 3 3 35699.484500000006 3 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 4087196.8394 62 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 2321069.24721 74 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 21212.104 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 93888.05348 8 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 32318.244 1 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 1604.275 1 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 194007.94999999998 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 536897.2039 14 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 234179.744 5 +Q9VP57 LD15904p 23.19 18 33 18 1031245.06889 32 +Q9VP77 LD23875p 10.99 7 7 7 121797.21459999999 7 +Q9VP78 GH23156p 8.76 4 4 4 48726.039 4 +Q9VP84 IP06402p 4.76 1 2 1 57467.199 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 4695.876 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 28074.0536 5 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 146599.41100000002 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 54120.894400000005 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 2346709.79415 41 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 91230.1935 6 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 23528.439 3 +Q9VPH6 LP10922p 9.61 5 8 1 119610.4906 7 +Q9VPJ0 RE58433p 8.29 3 6 0 53590.07758 5 +Q9VPK3 AT24407p 19.37 8 11 1 255223.5556 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 32351.4037 6 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 2357394.7665 67 +Q9VPR1 GH02075p 11.35 2 2 2 27596.129 1 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 382647.73433 8 +Q9VPU4 FI17537p1 8.88 3 3 3 20106.180999999997 3 +Q9VPU6 Galectin 7.28 3 3 3 96014.586 3 +Q9VPX0 GH26159p 4.9 3 3 3 73223.435 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 563344.1135 13 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 2403415.745 49 +Q9VPZ5 GH04232p 26.62 14 24 14 546247.35055 23 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 580.52527 1 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 6298930.99036 107 +Q9VQ83 RE23541p 7.28 2 2 0 13234.604 2 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 85514.5608 4 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 4137848.21165 49 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 1801896.3206 30 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 155958.70056 7 +Q9VQE0 dynamin GTPase 17.01 12 12 12 232865.4136 12 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 1901.7319 1 +Q9VQI6 LD25952p 12.35 4 6 4 81723.859 5 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 580965.4683000001 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 53209.876 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 7514.839 1 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 1392471.2531 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 1234297.84047 18 +Q9VQQ6 FI18122p1 15.72 8 13 0 581245.768 13 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 1757032.2297 38 +Q9VQR5 IP10807p 2.5 1 1 1 18416.635 1 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 68744.24283999999 5 +Q9VQT7 RH15675p 14.63 1 2 1 5786.608200000001 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 337027.02379999997 10 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 63231.79744 6 +Q9VQX3 HL05328p 13.09 6 7 6 87872.6899 7 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 122264.83764000001 9 +Q9VR30 RE58324p 19.51 8 10 8 263923.1576 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 201322.1568 10 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 10752.834 1 +Q9VR79 LD43683p 30.8 8 30 8 1189074.92866 30 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 14244.962 2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 1279274.9407 28 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 860656.6007 14 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 127548.96160000001 10 +Q9VRF7 GH09530p 13.92 4 7 0 196042.53122 7 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 76484.135 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 112074.03075 12 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 1532461.0091 39 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 271735.26 4 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 169649.7146 5 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 6614.4756 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 8110709.51384 81 +Q9VRL1 GEO06356p1 53.1 8 28 2 1261866.726 21 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 6028.1678 2 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 3202.6084 1 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 84823.333 3 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 1587411.4186 31 +Q9VRP3 AT08565p 23.69 6 12 6 270221.031 8 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 9138.97606 3 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 1074834.8107 27 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 190642.46110000001 8 +Q9VRV8 Transportin-1 3.02 2 2 2 22203.84 2 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 160305.2427 5 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 542801.62 8 +Q9VS11 lysozyme 12.55 3 4 2 34122.105599999995 4 +Q9VS44 Uncharacterized protein 12.36 4 4 4 86187.8787 4 +Q9VS84 FI03225p 7.34 7 8 7 165693.1874 7 +Q9VSA9 CG7409 80.52 14 73 14 5442310.5834 57 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 327054.063 8 +Q9VSC5 GM09977p 55.29 11 26 11 657787.3751 24 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 94609.86180000001 8 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 164104.9285 9 +Q9VSH5 IP09562p 4.89 1 2 1 6250.26 1 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 95214.424 2 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 6492.9385 1 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 1071643.40597 25 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 1702033.5667 26 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 2070224.3253 33 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 343014.5465 9 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 83106.0336 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 46741.5117 3 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 6731.780199999999 3 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 517522.4892 15 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 1260793.281 51 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 131390.6433 6 +Q9VSR5 GM03767p 48.9 9 20 9 1029819.0133 19 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 62082.803900000006 6 +Q9VST4 arginine kinase 2.06 1 1 1 7171.2114 1 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 3039403.3311 38 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 557341.74035 20 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 71504.747 3 +Q9VSX2 IP01061p 30.5 6 12 6 219971.1065 8 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 5635889.0611 62 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 246030.116 8 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 468218.5826 20 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 38802.917 2 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 770318.0434000001 20 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 11677.824 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 55620.555 1 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 128659.67559999999 6 +Q9VTA8 RE35371p 9.7 1 1 1 478.32397 1 +Q9VTB0 LD35289p 18.18 7 9 7 188176.563 9 +Q9VTB3 Guanylate kinase 35.62 10 23 10 560640.4428 21 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 1327704.5814 18 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 115532.6238 6 +Q9VTC3 GH07049p 7.78 3 3 3 135131.63 2 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 13666.888 1 +Q9VTL0 FI19917p1 2.48 1 2 1 14034.3207 2 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 953.2932 1 +Q9VTP1 IP06473p 8.24 2 2 2 16081.815 2 +Q9VTT2 LD20590p 3.84 2 2 2 16889.6734 2 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 2181718.6243 33 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 495210.91740000003 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 238482.18099999998 7 +Q9VTW1 RE15265p 11.2 5 7 0 191225.732 7 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 53139.4117 3 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 1731916.36484 40 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 382879.1988 15 +Q9VU04 RE60105p 6.49 2 2 2 102024.92 2 +Q9VU13 LD45603p 8.3 4 6 0 233203.1725 5 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 77969.813 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 5691987.1839 58 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 34927.414 1 +Q9VU38 Adenosine kinase 29.28 6 13 0 120886.6486 13 +Q9VU45 LD27581p 20.42 5 16 5 474935.5715 14 +Q9VU53 Capricious, isoform A 3.7 2 2 0 16314.0495 2 +Q9VU75 RH45712p 40.33 9 32 9 433038.65280000004 29 +Q9VU92 Uncharacterized protein 35.71 7 12 7 399824.3473 11 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 2989094.8868 74 +Q9VUE8 Big bang, isoform C 0.53 1 1 0 365.13837 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 70812.607 6 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 842465.5205999999 16 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 11195.46445 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 196049.959 8 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 203505.375 5 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 246063.621 9 +Q9VUQ7 RE36966p 11.91 6 10 6 185682.94628 10 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 19915.9781 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 154441.66 1 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 58646.24 2 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 63052.3175 4 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 110656.9963 7 +Q9VV13 GEO08383p1 20.71 2 4 2 329572.3948 3 +Q9VV31 Uncharacterized protein 19.35 2 7 2 120160.89749999999 7 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 211771.0693 10 +Q9VV40 Golgin 104 1.42 1 1 1 1970.0068 1 +Q9VV42 Fat body protein 2 79.5 25 188 0 16902256.43303 163 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 13114268.624400001 146 +Q9VV47 Fat body protein 2 45.17 9 22 7 996424.98016 19 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 1763301.7009 45 +Q9VV75 AT02348p 79.09 28 196 28 16173589.52544 155 +Q9VV76 Syntaxin 8 11.64 3 4 3 203418.9304 4 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 72849.17295 8 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 349835.5845 11 +Q9VVB5 LD46723p 33.45 17 44 1 7421.7329 3 +Q9VVB7 FI02842p 48.97 15 44 1 11726.583630000001 3 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 143211.51 3 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 839890.85274 33 +Q9VVC8 LD23434p 6.95 5 8 5 157320.25089999998 8 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 227384.713 17 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 4565918.9372000005 34 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 283038.726 10 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 55747.386 2 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 401921.65994 15 +Q9VVL5 FI11325p 27.27 9 14 9 463032.788 13 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 9794073.79057 180 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 142832.822 6 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 72000.2836 5 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 187073.7521 8 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 107770.85459999999 3 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 2193604.4315 27 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 7231510.158100001 48 +Q9VVU2 GEO07453p1 48.32 9 36 8 2179476.2318 34 +Q9VVV6 LD45843p 11.01 5 5 1 37023.2151 5 +Q9VVW7 Canopy b 16.74 4 6 4 166996.7286 6 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 10433.953 1 +Q9VVY7 FI20154p1 10.24 13 16 0 189625.63767 15 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 30681.81985 4 +Q9VVZ6 GEO09638p1 16.03 1 1 0 488.08868 1 +Q9VW00 GH28721p 12.2 4 8 4 150256.50160000002 6 +Q9VW17 RE58036p 26.37 5 12 0 138803.8144 10 +Q9VW34 FI03450p 17.01 9 14 9 539800.24933 14 +Q9VW40 LD31235p 12.62 4 5 4 40913.6824 5 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 17486.691 1 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 84086.45704000001 3 +Q9VW57 Grasp65 8.04 4 6 4 107048.48329999999 5 +Q9VW58 LD33138p 11.15 3 5 3 12078.869 1 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 1026913.488 21 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 2720786.39317 28 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 10009550.0396 123 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 11492.0249 2 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 16229.575 1 +Q9VWD0 GH23568p 26.43 8 13 8 262443.38 13 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 5522852.7107 82 +Q9VWD5 LD35087p 6.46 3 3 3 11905.084139999999 3 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 864286.0112599999 27 +Q9VWF0 LP01149p 9.8 3 5 3 95150.584 4 +Q9VWG1 LD37169p 72.68 11 62 1 192737.554 6 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 21305.419 2 +Q9VWJ3 LD05272p 4.57 1 1 1 15741.328 1 +Q9VWL4 GH07340p 9.77 5 5 5 90793.3446 5 +Q9VWP2 RH57257p 64.88 12 25 12 1030504.569 23 +Q9VWQ3 LD35981p 5.27 2 4 0 91777.88 4 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 238057.1408 9 +Q9VWS1 Houki 29.33 6 7 6 165306.39140000002 6 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 857425.14706 22 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 14534.24 2 +Q9VWU0 FI18411p1 2.63 1 2 1 2891.2129 2 +Q9VWV6 Transferrin 57.72 35 174 35 10429414.9005 155 +Q9VWW2 GH13094p 14.17 6 13 6 25844.694750000002 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 177806.5277 3 +Q9VX08 LD10434p 6.85 2 2 2 10859.74116 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 4006332.8127 84 +Q9VX69 FI01450p 8.27 4 13 3 294133.971 6 +Q9VXA3 LP21163p 16.69 10 15 10 229607.94233 14 +Q9VXA9 RE04047p 10.58 3 3 3 20508.5976 3 +Q9VXC1 MIP06432p1 27.93 5 10 3 416126.47319000005 10 +Q9VXC9 trypsin 54.18 11 21 11 404045.1353 19 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 92711.0505 5 +Q9VXF9 AT13091p 15.94 7 13 7 242291.58299999998 12 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 223196.783 4 +Q9VXH4 RE16337p 28.43 2 4 2 249364.9924 4 +Q9VXH7 FI17510p1 13.95 5 10 5 291959.633 10 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 705559.5742 25 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 4413053.7373 56 +Q9VXJ7 GH03748p1 5.19 5 5 5 35922.93123 5 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 487768.9776 10 +Q9VXK9 Centrosomal protein 164, isoform A 1.77 2 2 2 654.46484 1 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 23758.879 2 +Q9VXM4 LD12946p 62.9 15 37 15 1003234.9763 32 +Q9VXN1 LD03728p 7.2 2 2 2 13875.9665 2 +Q9VXN3 LD07988p 25.25 9 14 9 154321.5213 11 +Q9VXP3 GH05406p 9.87 5 5 5 49927.1072 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 46970.01 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 12645.267 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 1948043.7196 43 +Q9VXR9 FI03680p 5.45 2 2 2 30605.8573 2 +Q9VXV1 RH52220p 4.39 1 1 1 12667.62 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 379869.5627 11 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 875926.54576 27 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 317361.4341 13 +Q9VY05 GH11762p 9.47 7 15 7 558966.2124000001 14 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 53190.699 4 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 292812.034 9 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 21206.021 1 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 101070.0942 4 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 26861.4375 2 +Q9VY76 AMP deaminase 9.21 8 10 0 59349.9988 8 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 130499.7131 10 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 147947.233 5 +Q9VY92 GEO07753p1 73.91 8 32 8 2305389.0244 32 +Q9VYA1 RE18811p 3.87 1 2 1 1743.2062 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 12989.583499999999 2 +Q9VYF0 GM09012p 18.66 5 7 5 139581.223 7 +Q9VYG8 CG15717-PA 17.86 4 4 4 25136.7702 3 +Q9VYJ1 FI12805p 2.29 2 2 1 48655.061 2 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 34634.957800000004 6 +Q9VYM0 CG2555-PA 13.2 2 2 1 2410.8561600000003 2 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 25006.4667 4 +Q9VYN1 protein kinase C 0.42 1 11 1 567630.9575 9 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 29297.576 1 +Q9VYS2 GH09980p 4.78 4 4 4 24498.3197 4 +Q9VYT0 RE04130p 23.7 6 10 5 368473.985 10 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 31705.826599999997 2 +Q9VYT3 FI23714p1 4.8 6 7 6 32060.527680000003 7 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 68638.985 2 +Q9VYU9 RH17287p 36.65 6 11 6 220833.4704 10 +Q9VYV4 Amun, isoform A 12.0 4 4 4 48898.6533 4 +Q9VYV6 GEO09033p1 6.14 1 1 1 36996.105 1 +Q9VZ00 FI19420p1 3.92 4 7 1 34912.96284 5 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 1932387.9540000001 22 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 542714.27225 20 +Q9VZ24 GEO11412p1 43.36 6 33 6 2189071.8765 31 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 7790.8354 1 +Q9VZ34 RH72958p 2.64 1 1 1 10063.682 1 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 453261.7506 13 +Q9VZ66 SD22308p 35.37 5 8 5 135723.7053 8 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 51476.157 3 +Q9VZ71 RE01453p 9.04 2 5 2 120277.925 5 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 11623.805999999999 2 +Q9VZE4 RE70333p 19.57 9 13 9 234987.5774 13 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 148453.095 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 104253.973 5 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 678332.77373 22 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 2087102.13486 42 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 189318.453 8 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 3068562.88774 45 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 40695.992 3 +Q9VZI1 Transgelin 74.47 11 82 1 2589017.02135 62 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 77872.91500000001 4 +Q9VZJ2 GH27759p 12.66 5 8 5 175047.8988 7 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 43460.468 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 503246.81419999996 19 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 46270.6714 4 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 233848.27451999998 14 +Q9VZV2 Chitinase 7 3.75 4 5 4 21082.315909999998 5 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 144909.7943 5 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 13166.795699999999 3 +Q9VZX6 LD06441p 3.99 1 1 1 113989.11 1 +Q9VZY0 LD45195p 18.85 5 7 5 214565.0638 6 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 40592.94957 4 +Q9VZZ5 GEO12033p1 21.68 3 7 3 421010.567 6 +Q9VZZ6 CG16985 protein 34.9 5 11 5 649587.9294 11 +Q9W022 GEO01508p1 49.3 7 34 7 1836347.3039000002 34 +Q9W073 RH22148p 9.41 2 2 2 29499.453 2 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 1531166.331 20 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 631636.3744 11 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 150097.226 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 179111.95565000002 6 +Q9W095 glycerol kinase 2.6 2 2 2 2043.5109 1 +Q9W0A8 FI01658p 14.08 4 10 4 913079.251 10 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 553422.0824 18 +Q9W0C3 GH11843p 46.94 12 16 12 206979.90076 14 +Q9W0D3 GH15728p 1.09 2 2 2 21713.71 1 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 63461.9 1 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 335977.6997 12 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 776471.7918 18 +Q9W0J9 GH07301p 33.85 8 16 8 591120.4010000001 14 +Q9W0K9 LD10220p 11.61 2 3 2 13524.8688 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 236111.3286 11 +Q9W0M5 Protein DPCD 9.91 2 2 2 8106.6617 2 +Q9W0N6 LD27967p 9.57 3 3 3 19485.289 3 +Q9W0P4 GEO05053p1 15.45 3 3 3 37842.0361 3 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 97511.731 2 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 17472.629 1 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 108361.32639999999 9 +Q9W0U0 glycerol kinase 5.39 2 3 1 37277.831000000006 3 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 227114.4497 7 +Q9W0X1 GH15894p 5.72 3 3 3 61293.104999999996 3 +Q9W0X2 GEO07322p1 33.88 4 5 4 117321.1292 5 +Q9W0X3 LD24657p 12.55 3 6 1 222426.989 6 +Q9W0Z5 LP09747p 10.07 5 12 5 165898.5517 12 +Q9W114 IP05433p 22.5 2 3 2 22551.93504 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 1206316.8454 38 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 420728.666 11 +Q9W136 Uncharacterized protein 33.82 6 17 6 278163.5605 13 +Q9W140 Regulatory protein zeste 14.35 5 7 5 31442.0082 5 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 21125.176369999997 4 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 5723.5162 2 +Q9W158 LD36772p 6.51 2 3 2 153396.904 3 +Q9W199 GEO07594p1 10.97 2 3 2 120336.226 3 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 1771559.2332 17 +Q9W1C8 LD24355p 20.11 8 10 8 108809.6175 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 28234.9645 3 +Q9W1F2 FI07217p 5.93 2 2 2 10482.40626 2 +Q9W1F7 IP15825p 26.5 11 33 11 1665168.1166 30 +Q9W1F8 GEO08248p1 23.31 4 8 4 240428.459 8 +Q9W1G7 LD21576p 31.62 10 17 10 913069.3377 17 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 315338.2507 9 +Q9W1H6 GH04238p 13.85 3 7 3 69038.8226 4 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 2085783.7302599999 39 +Q9W1I8 LD03592p 36.97 8 15 8 361031.85696 10 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 30551.2967 3 +Q9W1L8 GH11818p 5.92 2 2 2 8761.2824 2 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 36578.195439999996 4 +Q9W1N3 Levy, isoform A 32.11 4 16 4 1757632.9676 15 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 18968.096 1 +Q9W1R0 RH49821p 4.13 2 2 2 32444.547 2 +Q9W1R3 Golgin-245 5.17 7 8 7 114475.5906 8 +Q9W1V8 CG9893 protein 27.6 5 7 5 76813.6556 7 +Q9W1W4 RE45066p 15.81 5 7 5 133615.4688 6 +Q9W1X5 GH04942p 16.93 24 31 4 836548.5121200001 30 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 4879389.3447 50 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 589472.047 6 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 196520.23990000002 8 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 57334.1699 5 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 341641.09859999997 21 +Q9W257 RH13652p 6.99 2 3 2 91229.838 3 +Q9W258 Babos, isoform A 30.1 6 17 6 697534.366 15 +Q9W259 FI23916p1 18.69 7 10 7 154365.15039999998 8 +Q9W260 GH03113p 12.2 7 13 7 160825.0348 11 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 15762.150999999998 2 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 231247.43095 18 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 18095.7794 3 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 39460.863 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 1265371.1699 23 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 58766.57399999999 2 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 210101.26382 11 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 71188.304 2 +Q9W2L6 RH02475p 36.23 21 49 21 1682034.5235000001 49 +Q9W2M0 LD23155p 16.85 11 18 11 333759.25419999997 17 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 6488409.2106 42 +Q9W2M9 FI16623p1 14.71 2 3 2 61424.13 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 57736.8432 3 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 342500.817 6 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 190610.3057 5 +Q9W2V2 FI20035p1 10.07 5 5 5 41877.24716 4 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 20460959.34564 95 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 264915.22787 19 +Q9W2Z9 RE65233p 8.65 2 2 2 40566.791 2 +Q9W306 GEO08256p1 14.05 2 2 2 45446.404 2 +Q9W308 GH05731p 16.18 2 3 2 82513.997 3 +Q9W309 GEO08445p1 38.27 7 10 7 307092.2265 8 +Q9W314 GH14088p 9.07 4 4 3 114033.51800000001 4 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 120871.0675 8 +Q9W330 Phosphotransferase 44.18 19 34 3 1841827.9764699999 32 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 102833.723 3 +Q9W337 GH19985p 44.5 8 13 8 179367.5551 11 +Q9W350 C11.1, isoform A 1.55 2 2 2 3531.5498 1 +Q9W370 GEO12084p1 38.52 4 8 4 458598.0295 7 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 12009.6455 1 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 5427.773 1 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 1306261.2039 27 +Q9W396 FI06908p 17.5 6 7 6 187330.51499999998 6 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 30430.415999999997 2 +Q9W3C3 LD10016p 19.53 9 11 9 145732.6826 8 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 37100.7256 4 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 76500.4789 6 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 60798.14 3 +Q9W3H4 LD36273p 52.23 11 23 11 792722.4042 20 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 62885.1195 5 +Q9W3J6 FI06457p 2.33 1 1 1 5852.522 1 +Q9W3K6 LD35927p 4.62 4 5 3 138329.7024 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 752748.26914 15 +Q9W3L4 GH20802p 20.29 8 14 8 338347.27524 13 +Q9W3M7 RNA helicase 13.12 12 14 11 118255.71067 11 +Q9W3M8 LD34211p 38.19 8 9 8 410260.9932 8 +Q9W3N1 RH59310p 3.12 1 1 1 22520.062 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 121906.6686 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 1687243.8979 33 +Q9W3Q0 FI07418p 10.09 2 5 1 4338.874 1 +Q9W3Q1 GM14286p 5.68 2 2 2 4001.1772 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 281203.4104 10 +Q9W3S3 LP10445p 16.22 2 3 2 5512.365339999999 2 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 160398.8885 8 +Q9W3T9 GM01152p 31.93 8 17 8 493455.42634 17 +Q9W3U9 CG14434-PA 26.74 5 6 0 201632.0 6 +Q9W3V2 FI19713p1 1.82 2 2 2 955.4514 1 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 14193.396130000001 4 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 127170.98 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 3903048.293 50 +Q9W3X8 RH42690p 11.42 4 5 4 20424.6661 4 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 347830.6084 11 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 2249242.26177 50 +Q9W403 LD24968p 14.47 6 7 6 49651.6641 7 +Q9W404 GH10714p 17.98 6 8 5 80783.2777 7 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 21275.397 2 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 1147453.51565 27 +Q9W425 Rabconnectin-3A 0.99 3 3 3 19367.2484 2 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 3207774.58712 49 +Q9W461 LD23868p 11.54 6 8 6 137613.1487 7 +Q9W483 GH18971p 8.49 3 6 3 52757.201 3 +Q9W486 LD13361p 3.58 2 2 0 15956.162400000001 2 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 321434.5612 4 +Q9W4A0 GH11193p 31.98 6 10 6 286500.1845 9 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 17865.5552 3 +Q9W4C2 lysozyme 11.84 2 3 2 73705.215 3 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 139429.5808 8 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 17570.158 1 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 794312.9796 19 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 2670.63154 2 +Q9W4N8 LD30122p 50.93 10 48 0 3150512.2113 44 +Q9W4U2 RH09070p 45.38 8 22 8 780206.4292 19 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 7785.806 1 +Q9W4W5 RE47284p 13.77 5 6 5 188850.87550000002 6 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 211932.44170000002 13 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 235900.985 10 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 5797.651599999999 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 58446.81966 5 +Q9W503 RH61816p 35.31 10 15 10 524402.4173600001 13 +Q9W5B4 GH18858p 27.59 8 18 8 226242.2372 13 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 11540.418 1 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 57481.426999999996 2 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 56063.616200000004 4 +Q9W5W7 GH19483p 5.32 3 3 3 48313.506460000004 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 1246575.9623 26 +Q9W5X0 LD21953p 19.4 4 21 0 130023.908 2 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 186900.7388 10 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 141814.3521 7 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 6570044.939 50 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 129299.9268 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 561696.9881 20 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 449274.3739 15 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 5617023.31463 66 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 562240.33225 30 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 323304.1664 21 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 6154516.99695 68 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 65334.4149 4 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 56478.9925 6 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 2247105.7551 33 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 38799.2385 4 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 1911167.9136 40 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 4564778.6157 79 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 7586.951 1 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 58167.8529 6 +R9PY51 Uncharacterized protein 34.95 5 71 5 1644904.83435 28 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 3928104.51716 79 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 145662.3629 7 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 141382.18660000002 7 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 60509.549 2 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 77564.461 5 +X2JB48 ADP/ATP translocase 67.56 22 106 1 5304465.3673 91 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 347157.3993 22 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 26303.970299999997 2 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 5534347.9693 68 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 40801.475 2 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 26731.6794 2 +P10674 Fasciclin-1 51.07 33 127 1 3349.0847 1 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 3058.637 1 +Q08605 Transcription activator GAGA 2.24 1 1 0 22593.22 1 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 6349.8784 1 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 16474.021 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 13440.021 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 23566.37 1 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 14218.987 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 1721.4753 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 32856.3039 3 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 8817.783 1 +Q9W568 Protein halfway 3.11 1 1 0 791.536 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 2148.5798 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 52834.1025 3 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 32386.248 2 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 4796.9356 2 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 7076.865 1 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 7415.7568 2 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 91197.71 2 +A1Z7M0 Space blanket 5.71 1 1 1 10427.223 1 +A1ZA97 Carboxylic ester hydrolase 1.79 1 1 1 1731.1714 1 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 56225.437999999995 3 +B5RJS0 IP20241p 0.73 1 1 0 1653.2258 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 12860.2841 2 +E1JJM0 FI20063p1 16.38 9 12 0 167402.52490000002 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 5678.5947 1 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 12768.188 1 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 124936.899 4 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 19719.121 1 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 3637.2969 1 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 207702.13464 8 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 127950.11600000001 2 +Q7K1W4 Epoxide hydrolase 2.35 1 1 1 1620.1997 1 +Q7PLV6 FI02158p 0.85 1 1 1 2505.8193 1 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 39760.4183 3 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.96 2 2 1 513.5953 1 +Q8MPN6 Serpin 4 17.68 6 7 0 5666.3745 1 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 11129.101 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 17956.557 1 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 12380.297 1 +Q9VHX1 LD44032p 4.04 1 1 1 3350.4058 1 +Q9VKC1 IP16805p 3.89 1 1 1 14346.206 1 +Q9VM94 Homer, isoform B 43.32 14 33 1 7496.838 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 9852.931199999999 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 6803.1133 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 169144.7537 3 +Q9VTY1 LD40136p 2.4 1 2 1 23626.256 1 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 4060.6055 1 +Q9W2N5 GH10162p 3.47 2 2 2 3690.4102 1 +Q9W362 La-related protein 7 1.85 1 1 1 3694.6455 1 +Q9W525 LD08195p 2.32 1 1 0 13781.219 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 31274.785 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 12341.418 1 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 109699.69720000001 5 +E1JJ83 Os-C, isoform B 7.19 1 1 0 4220.6113 1 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 269300.9742 15 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 11208.43 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 14126.215 1 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 7591.741 1 +Q8IQ80 GH06117p 3.39 2 2 0 5917.9136 2 +Q9VHW5 LD38634p 4.76 1 1 1 888.3261 1 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 40856.448300000004 2 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 11690.274 1 +Q9W5C1 RE02292p 1.55 1 1 1 774.4923 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 6259.7407 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 5633.8758 2 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 18858.086 1 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 7246516.302 113 +E1JH70 Kank, isoform E 1.28 1 1 0 3783.4395 1 +M9NFP1 Jim, isoform E 0.85 1 1 0 11058.751 1 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 8952.622299999999 2 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 2481.9631 1 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 9134.7019 2 +Q9VBS0 CHK domain ov2 2.2 1 1 1 2729.7373 1 +Q9VCH9 LD07883p 4.72 1 1 1 3996.6555 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 20399.43 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 18586.1636 2 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 15772.456 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 74779.177 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 9821.441 1 +Q9VMY3 FI19613p1 1.5 1 1 1 14913.756 1 +Q9VS80 FI17864p1 2.6 1 2 1 8869.26 1 +Q9VZF0 LD44732p 3.61 1 1 1 5176.602 1 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 23732.9968 3 +Q9W249 IP21806p 2.24 1 1 1 2502.7551 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 7084.291 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 64124.688 3 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 47968.242 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 205367.0497 7 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 12849.373 1 +Q0KHQ1 GEO13361p1 11.11 1 1 1 2089.936 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 20684.9306 2 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 142226.323 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 2637.9607 1 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 16166.915 1 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 1780.473 1 +Q9VV37 GEO13385p1 10.1 1 5 1 19016.5463 2 +Q9VVX6 BET1 homolog 16.24 2 2 2 72149.14199999999 2 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 15108.438 1 +Q9W152 RH33060p 16.9 1 1 1 8417.854 1 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 13694.065299999998 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 56659.036 2 +M9PDY5 Girdin, isoform C 0.94 1 1 0 7505.878 1 +Q9VAI3 FI06539p 10.08 1 2 1 25809.705 2 +Q9VB09 IP04131p 5.73 1 1 1 32063.053 1 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 73270.4346 3 +Q9VZN6 Lipase domain-containing protein 4.36 1 1 1 436.87317 1 +Q9W5E7 LP07417p 11.4 1 1 1 3178.3108 1 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 10692.113 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 235144.9205 6 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 3843.6318 1 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 13140.2513 2 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 30324.412 1 +A1Z872 CAP, isoform D 25.05 11 20 1 5428.83 1 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 12498.909 1 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 18053.049 1 +Q7K3Z8 GH01208p 13.24 2 2 2 3841.2305 1 +Q9VAN8 FI15955p1 6.46 1 1 1 9544.655 1 +Q9VLL4 FI23523p1 1.81 1 1 1 3045.7844 1 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 56512.619 2 +P08841 Tubulin beta-3 chain 23.13 10 131 0 17927.781 1 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 31129.256 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 2248.784 1 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 10912.581 1 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 2962.3228 1 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 20273.4872 2 +Q9W3S4 LD46272p 3.11 1 1 1 4624.437 1 +A8JQX3 Nocturnin 1.71 1 1 1 4504.6904 1 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 83662.063 2 +A8JNM1 Formin 3, isoform B 0.58 1 1 0 404.1716 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 1 0 2313.4492 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 78450.4035 7 +Q7JY89 RE35124p 15.0 1 1 1 4641.175 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 55703.274000000005 3 +A8JUP7 Serine protease Hayan 1.1 1 1 1 11169.742 1 +P07664 Serendipity locus protein delta 2.54 1 1 1 25076.291 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 551865.9400000001 4 +Q9VGM4 LD28119p 2.94 1 1 1 3479.3594 1 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 51394.9073 5 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 33350.705 2 +E1JJ37 Complexin, isoform W 65.47 9 67 1 8873.187 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 7826.853 1 +Q962I2 small monomeric GTPase 50.76 8 21 1 8391.499 1 +Q9VF73 FI17904p1 0.98 1 1 0 5254.566 1 +Q9VSK1 GH09510p 2.72 2 2 2 2314.0903 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 69812.314 2 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 15125.107 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 90549.0857 7 +Q29R09 LD28546p 3.02 1 1 1 1575.2003 1 +Q6AWJ5 LP12324p 23.56 8 11 1 2693.984 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 2945.28707 2 +Q9VQT5 FI01556p 13.92 1 3 1 94150.2735 3 +Q9W0A9 GM02612p 3.06 1 1 1 5940.208 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 9067.549 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 16992.656 1 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 8231.144 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 11881.506 1 +Q9VV29 GEO12576p1 9.68 1 2 0 26411.756999999998 2 +P45884 Attacin-A 5.36 1 1 0 26960.816 1 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 1851.2817 1 +O61348 Bobby sox 3.51 2 2 2 1703.6434 1 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 5416.341 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 20654.826 1 +Q9VV27 MIP11526p 7.63 1 1 1 27889.572 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 32057.381 2 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 11319.605 2 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 57268.135 2 +M9PE05 Encore, isoform H 0.6 1 1 0 3579.4385 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 20937.253399999998 2 +Q9VF46 GH25158p 4.13 1 2 1 25950.819 2 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 18856.1778 2 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 9931.604 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 51274.038 2 +A8JNU1 adenylate cyclase 1.78 2 3 0 10711.0566 3 +Q7KVR7 AP-1 complex subunit gamma 1.13 1 1 0 2063.9807 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 2664.7249 1 +Q7K010 Tetraspanin 3.64 1 1 1 5874.6123 1 +Q9VUR4 FI11905p 18.81 5 8 1 9299.313 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 602.4488 1 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 26777.246 1 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 5732.362999999999 2 +A8JNV2 Uncharacterized protein 10.71 1 2 1 8061.2939 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 10392.6175 2 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 15688.517 1 +Q8SWU4 RE25571p 17.3 6 13 1 11820.990600000001 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 91110.4 1 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2831.7424 1 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 2794.025 1 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 11121.562 2 +Q8SXW3 GV1, isoform B 4.44 1 1 0 25766.52 1 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 7546.874 1 +Q8IRN0 FI06485p 3.21 1 1 1 3761.2856 1 +Q9VHS6 Copper transport protein 5.75 1 1 1 5446.424 1 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 10690.138 1 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 681.771 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 2304.093 1 +Q8ML92 Protein aveugle 7.55 1 1 1 6562.328 1 +Q9VT15 GH14734p 8.33 2 2 2 22162.883 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 9713.98 1 +A1A750 GEO11067p1 6.93 1 1 1 17078.53 1 +Q9VF83 LD33178p 2.73 1 1 1 8575.774 1 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 56091.956999999995 2 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 56247.914 1 +M9PCK0 Decima, isoform D 9.87 2 2 0 27331.414 2 +Q9VUQ8 DCN1-like protein 1 7.29 1 1 0 546.27905 1 +Q9VPA9 LD24894p 1.45 1 1 1 11021.332 1 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 6293.2563 1 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 465.8587 1 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 6210.9478 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 11983.88 1 +Q02427 RNA-binding protein 1 14.58 2 4 1 44686.06 1 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 23491.8716 2 +Q7K4Y8 GH22690p 1.65 1 1 1 4749.159 1 +Q9VCQ7 LD40758p 1.61 1 1 1 1904.0277 1 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 6521.0244 1 +Q9VDL4 LP04613p 2.72 1 1 1 3377.1782 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 35817.104 3 +Q7K4X4 GH24095p 2.0 1 1 1 4667.1074 1 +Q9VJ06 LD05576p 7.07 2 2 2 11134.9516 2 +Q9VGE8 Tachykinins 6.57 2 2 0 20189.2768 2 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 15368.052 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 538.8645 1 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 17184.6 1 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 6210.4814 1 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 14806.939 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 5770.806 1 +Q9V3A6 Ero1-like protein 1.45 1 1 1 14844.044 1 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 31769.852 1 +Q0E8K5 AT10158p 4.1 1 1 0 727.9036 1 +Q7K8Y3 IP16419p 14.29 5 6 0 122650.1557 5 +Q8STG9 DSec61alpha 1.89 1 1 1 13035.965 1 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 10050.5453 2 +P22812 Protein Tube 3.9 2 3 2 3026.24624 3 +Q9VYX8 LD04844p 9.38 2 2 2 9111.541 1 +Q7JV39 GH01142p 5.05 1 2 1 12352.124 2 +Q9VZX8 AT02196p 2.37 1 1 1 3998.5352 1 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 73548.19499999999 2 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 11185.134 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 1791.1783 1 +Q9W3F7 Mitoguardin 4.19 2 2 2 5925.8562999999995 2 +Q9W4F9 IP01388p 1.92 1 1 0 14692.869 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 7012.5845 1 +F0JAQ9 MIP27169p 5.85 2 4 0 1780.62194 2 +P18289 Transcription factor Jra 3.11 1 1 0 10033.648 1 +Q9VJ77 FI24106p1 3.28 2 2 0 11424.3271 2 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 6542.378049999999 2 +Q9VR55 LD29159p 8.71 1 1 1 23781.275 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 9048.487 1 +P54194 General odorant-binding protein 84a 11.43 2 2 2 4694.3145 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 15995.378 2 +Q8IR92 Uncharacterized protein, isoform A 7.51 7 8 0 436.8703 1 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 12220.697400000001 3 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 1620.987 1 +Q9VV26 GEO12049p1 6.84 1 1 1 51728.594 1 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 3798.459 1 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 4080.4356 2 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 3064.1704 1 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 23879.436 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 14919.892 1 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 5671.0395 2 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 18317.873 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 26015.402 1 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 4392.286 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 28255.378 3 +Q6IJE8 HDC15077 17.04 2 3 2 60539.642 3 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 2916.763 1 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 52356.4083 3 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 4325.8794 1 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 9516.25 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 14570.618 1 +Q9W494 Crossveinless 3.5 1 1 1 4790.7715 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 21614.0815 2 +Q7KN04 Spondin-1 2.1 1 1 1 8117.6577 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 4331.741 1 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 7468.432 1 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 21279.59023 4 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 3354.2954 1 +Q8MRQ1 GH06222p 1.49 1 1 0 6699.717 1 +Q9VPR6 Kinase 3.56 1 1 1 4415.0527 1 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 4569.46143 2 +E1JJS1 glutathione transferase 5.6 2 2 0 72764.52100000001 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 5562.352 1 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 7191.5996 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 4234.7383 1 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 3139.4978 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 2150.033 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 3514.1653 1 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 8860.2295 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 6251.628 1 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 634.9604 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 15594.3363 2 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 2948.5037 1 +O76876 Protein sex-lethal 1.86 1 1 0 2693.3784 1 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 30258.086 1 +Q9VY55 FI09726p 8.08 1 1 1 3367.8384 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 61257.34 1 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 2258.1619 1 +Q02936 Protein hedgehog 2.34 1 1 1 18261.383 1 +Q6NN09 ATPase protein 9 5.07 1 6 1 209096.422 4 +O76874 SD17974p 1.14 1 1 1 4092.4133 1 +Q9W424 Splicing factor 3B subunit 4 2.59 1 1 1 968.0777 1 +Q9VGL2 GM08392p 2.12 1 1 1 15587.062 1 +Q9VAX9 MIP05919p 3.7 1 1 1 10559.017 1 +Q9VBD8 RT02919p 4.37 1 1 0 708.51013 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 1784.5457 1 +Q9VK20 LD18447p 2.81 1 1 1 17118.098 1 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 5578.25 1 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 6410.0405 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 10269.383 1 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 5924.5024 1 +Q9VBK9 Protein FAM98B 2.42 1 1 1 435.31345 1 +Q9VZC8 GEO12024p1 6.16 1 1 1 9125.071 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 910.8054 1 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 14156.735 1 +Q9VM54 J domain-containing protein 3.9 1 1 1 909.0741 1 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 13897.022 1 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 3808.9758 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 4917.413 1 +Q4AB30 GUK-holder, isoform C 1.25 1 1 0 5463.184 1 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 688.2475 1 +Q9W123 Protein painting of fourth 2.22 1 1 0 2608.9102 1 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 27254.598 1 +Q9VGZ2 FI06805p 3.86 1 1 1 15446.567 1 +Q7JWS8 AT17867p 10.26 2 2 2 28224.543 1 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 391.91193 1 +E1JHX0 MIP29328p 3.76 1 1 1 14392.606 1 +D6W4V3 MIP19557p 4.74 1 1 0 3446.3032 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 1991.3281 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 4469.888 1 +Q9V9R3 adenylate cyclase 0.6 1 1 1 6465.9287 1 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 4465.655 1 +P39205 Molybdenum cofactor synthesis protein cinnamon 2.16 1 1 1 2961.9827 1 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 14474.278 1 +M9PE65 Axotactin 0.55 1 1 1 420.488 1 +Q8IRK0 GH04558p 3.9 1 1 1 4857.327 1 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 11460.828 1 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 34399.6 2 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 10328.148 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 43511.38 1 +Q9VV21 GEO07736p1 16.26 1 2 1 38041.215 2 +P07186 Chorion protein S19 14.45 1 2 1 2224.3067 2 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 452.28168 1 +Q9VL29 GEO11246p1 12.93 1 1 1 4540.3784 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 957.1765 1 +Q9W2F6 RE36793p 7.09 1 1 1 63711.844 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 3570.3071 1 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 37600.1095 4 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 10418.902 1 +Q7K1D7 Choline/ethanolamine transporter FLVCR1 2.9 1 1 1 669.6437 1 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 4805.141 1 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 7605.0054 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 38068.465 1 +Q9W513 GEO10196p1 12.86 1 1 1 92701.83 1 +A8DYV9 GEO02589p1 10.53 1 1 1 19049.453 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 9921.761 1 +O76513 Cyclin-H 3.7 1 1 1 5722.3345 1 +Q8IPJ5 FI18525p1 3.83 1 1 1 779.5066 1 +Q9W0B6 LD14179p 1.48 1 1 1 2422.39 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 509.1131 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 15737.049 1 +Q05201 Protein phosphatase eya 2.22 1 1 0 4825.015 1 +Q9VIM8 RE22905p 1.6 1 1 1 6487.998 1 +Q7JRC9 RE73310p 1.89 1 1 1 4449.762 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 3434.4875 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 5443.2393 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 26375.703 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 62955.795 2 +A1A753 IP17594p 10.11 1 1 1 8096.713 1 +Q9VX56 LD03052p 5.94 1 1 1 986.825 1 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 9890.039 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 4526.743 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 873.9633 1 +Q7JY99 glycerol kinase 1.34 1 1 1 523.81165 1 +Q8MYV9 GEO12865p1 11.04 1 3 1 72987.083 3 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 3929.451 1 +Q9W366 RE59932p 1.08 1 1 1 21715.324 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 1876.1163 1 +Q8T4F7 Protein enabled 0.82 1 1 0 3354.3892 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 160683.564 2 +Q9VB08 E3 ubiquitin-protein ligase RING1 2.53 1 1 1 792.5568 1 +Q9VBQ5 LD38433p 1.91 1 1 1 6264.128 1 +Q9VE49 LP06937p 1.86 1 1 1 1472.4855 1 +Q9VH82 FI02086p 7.14 1 1 1 9242.015 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 6222.656 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 2971.0144 1 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 2611.6738 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 3909.5002 1 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 7043.977 1 +Q9VPN3 GEO07775p1 12.0 1 1 1 7120.3896 1 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 2566.222 1 +Q9VKE7 GH09228p1 10.39 1 1 1 2113.4683 1 +Q7KA66 Serpin 43Aa 2.56 1 1 1 3135.1553 1 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 19638.223 1 +A8JUR4 Kinesin associated protein 3, isoform H 1.59 1 1 0 695.7293 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 147436.12 3 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 19345.875 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 2953.0842 1 +Q9VEF0 LD33778p 3.49 1 1 1 1436.0687 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 10905.438 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 5545.6074 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 58029.305 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 242136.114 2 +Q5BIL9 SD21168p 1.63 1 1 0 15391.147 1 +Q9Y170 Sex-regulated protein janus-B 6.08 1 1 1 1846.1969 1 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 12204.279 1 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 61606.96 1 +Q9VHJ4 GH04846p 2.25 1 1 1 5234.473 1 +Q9W226 GEO07239p1 5.88 1 1 1 1635.9401 1 +Q9W0I9 FI01805p 3.22 1 1 1 3668.4375 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 8166.1016 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 14208.556 1 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 444.93195 1 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 4201.4004 1 +Q8SY53 GH11935p 2.73 1 1 1 1704.2832 1 +Q7JVN6 GH17672p 2.24 1 1 1 2836.5488 1 +P25159 Maternal effect protein staufen 0.68 1 1 0 2282.582 1 +Q9VLE1 RH63449p 4.29 1 1 1 16915.121 1 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 3798.8247 1 +Q24040 Protein big brother 5.16 1 1 0 1959.087 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 6662.581 1 +F3YD72 SD23574p 20.45 1 1 1 2922.2246 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 4504.804 1 +Q8STI6 RE53401p 4.27 1 1 1 878.45856 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 2895.8865 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 2809.2654 1 +Q7K2B1 LD11371p 5.85 1 1 1 16201.834 1 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 12519.2 1 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 11695.76 1 +Q9W168 GEO02361p1 9.23 1 1 1 6684.8696 1 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 9969.069 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 1 0 442.21713 1 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 20071.34 1 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 11432.864 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 8605.285 1 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 4061.47 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 26471.92 2 +A1A6X2 IP16893p 12.07 1 1 1 9527.778 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 24970.45 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 5596.1084 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 2923.6182 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 32794.380000000005 2 +Q7JXE1 Bunker gear 4.75 1 1 1 745.4993 1 +Q9VL31 RIP-like protein 4.06 1 1 1 8851.656 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 7804.2983 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 1 0 476.25305 1 +Q9VX71 Uncharacterized protein 5.2 1 1 1 51932.133 1 +Q8IQ51 trypsin 3.05 1 1 1 18491.805 1 +Q9VHS0 FI07206p 2.49 1 1 1 6721.777 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 18730.113 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 6737.742 1 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 2556.4688 1 +Q9VQY8 Vacuolar protein sorting-associated protein 53 homolog 0.9 1 1 1 619.84436 1 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 834.29456 1 +Q9VXT2 DnaJ homolog subfamily C member 25 homolog 2.7 1 1 1 385.23267 1 +Q8SYC5 RE68347p 2.26 1 1 0 663.7579 1 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 11094.762 1 +Q9XZF0 Protein yippee 5.79 1 1 0 16333.297 1 +A8DYR5 Shaw-like, isoform C 1.17 1 1 0 603.68274 1 +Q9VD92 Protein archease-like 5.77 1 1 1 18045.113 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 8570.484 1 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 2674.363 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 36803.01 1 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 899.50214 1 +Q961D1 Cyclin-K 1.75 1 1 1 2917.1992 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 51005.87 1 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 2340.3137 1 +Q9VKZ7 Nicalin 1.25 1 1 1 25028.41 1 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 40645.526 2 +Q8T0B1 Nuclear envelope phosphatase-regulatory subunit 1 homolog 8.4 1 1 1 1794.9011 1 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 29312.096 1 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 5358.865 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 3524.4119 1 +P54398 Fat body protein 2 3.52 1 1 0 37822.395 1 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 1750.5 1 +Q9VJ98 GH05617p 2.44 1 1 1 3414.278 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 4854.3096 1 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 169703.671 8 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 46864.569 4 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 47631.4795 5 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 12936.8026 2 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 50734.5083 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F3_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F3_TMTc.txt new file mode 100644 index 0000000..bfcfa2d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_F3_TMTc.txt @@ -0,0 +1,4102 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 127C, Sample, n/a, SF1g_F3 Abundances Count: F8: 127C, Sample, n/a, SF1g_F3 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 214144.5382 7 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 87351.96622999999 8 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 8192397.75703 66 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 52428.0271 9 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 258667.0437 11 +A0A1F4 Protein eyes shut 12.91 28 65 0 1921367.68291 58 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 12235.93612 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 198102.13584 14 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 14450.622900000002 3 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 9324.1556 2 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 10079.3691 4 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 26419.2022 4 +A1Z877 Nidogen 21.48 28 49 28 2262283.9722 46 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 73363.8418 6 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 743980.93298 58 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 505042.6191 7 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 175707.60706 11 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 353164.3356 26 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 11179.58054 3 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 5432.571 1 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 205324.122 19 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 38554.209 2 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 67621.2393 8 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 141073.71881 7 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 11047.637 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 57607.1278 4 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 11251.645 2 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 972451.4707000001 10 +A8DYP0 Protein Obscurin 1.87 8 8 8 33479.9543 8 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 429844.61100000003 9 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 6541454.69687 117 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 897663.3306 23 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 1964537.71422 46 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1460129.4065 21 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 238327.5202 8 +C0HL66 Histone H3.3A 55.15 7 37 0 33202.92433 5 +C0HLZ9 Baramicin A1 17.51 4 6 0 170787.8016 5 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 2240620.75226 38 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 17153.66623 3 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 153150.3481 12 +M9NDE3 Protein bark beetle 4.42 14 14 14 114629.97099999999 11 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 12225275.0789 69 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 122820.5815 10 +O01367 Protein held out wings 18.52 7 14 0 266466.73569 13 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 714085.9441000001 13 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 12374839.8553 127 +O02194 Presenilin homolog 5.73 2 2 0 11874.014 1 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 959461.5998 18 +O02649 Heat shock protein 60A 76.27 44 168 28 19738868.50605 148 +O15943 Neural-cadherin 17.05 53 82 2 1755677.19817 78 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 260386.3747 12 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 51618.69908 5 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 24826.161500000002 3 +O18333 Ras-related protein Rab-2 44.6 9 17 9 444715.72078000003 17 +O18334 Ras-related protein Rab6 33.17 8 22 0 119208.80559999999 8 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 1274497.0992 21 +O18388 Importin subunit beta 3.85 4 4 0 81034.39285999999 4 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 14638081.91793 120 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 1244187.2357 37 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 628404.54576 14 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 11175.179 1 +O44342 Protein windbeutel 17.51 4 5 0 56246.897 5 +O44386 Integrin alpha-PS3 7.26 8 10 6 160481.75813 9 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 389111.5797 5 +O46037 Vinculin 59.31 53 121 0 4355613.9891 107 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 10115.544 1 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 739880.21362 17 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 237532.9491 9 +O46339 Homeobox protein homothorax 5.54 2 2 2 9299.4154 2 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 933550.17 17 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 35961.765 2 +O61307 Teneurin-m 2.01 4 4 0 71616.843 2 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 206338.9295 10 +O61491 Flotillin-1 57.51 24 64 24 3482282.2299 59 +O61722 PRL-1 phosphatase 67.05 10 24 10 475129.5255 21 +O62619 Pyruvate kinase 69.79 30 93 30 8972253.15785 76 +O62621 Coatomer subunit beta' 2.08 2 2 2 7312.0327 2 +O76206 Putative riboflavin kinase 39.87 6 13 0 547897.5153999999 9 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 410844.675 6 +O76742 Ras-related protein Rab7 37.68 8 13 8 458329.63139999995 12 +O76878 RILP-like protein homolog 18.96 7 9 0 65632.779 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 196455.4021 10 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 389528.862 14 +O77051 Transcription factor E2F2 16.76 6 8 0 57130.86633 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 69443.6599 6 +O77277 Torsin-like protein 10.0 4 5 0 135245.6428 5 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 54039.2114 4 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 413731.2214 22 +O96690 Protein PDF 15.69 1 2 1 8787.019 1 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 6538823.08366 94 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 147837.28449999998 8 +O97125 Heat shock protein 68 30.39 17 74 11 879140.7439 25 +O97172 UPF0729 protein CG18508 29.29 3 3 0 25094.872 2 +O97394 Protein sidekick 0.45 1 1 0 857.24097 1 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 58369.278999999995 3 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 4321456.80702 43 +P00334 Alcohol dehydrogenase 88.28 23 232 23 79354004.38992 198 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 3262193.7181 22 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 12817.75745 3 +P02255 Histone H1 25.0 5 6 0 55421.7776 6 +P02283 Histone H2B 56.91 8 80 8 8978071.84855 72 +P02299 Histone H3 55.15 7 35 2 8835588.8884 29 +P02515 Heat shock protein 22 38.51 7 11 7 412822.9363 10 +P02516 Heat shock protein 23 84.95 16 72 0 10246745.93018 64 +P02517 Heat shock protein 26 48.08 8 23 0 3477040.1647 23 +P02518 Heat shock protein 27 55.87 11 23 0 1549418.01105 18 +P02572 Actin-42A 74.2 30 655 3 288113663.98785 581 +P02574 Actin, larval muscle 66.22 27 546 0 2144826.4459 19 +P02828 Heat shock protein 83 51.74 42 171 0 19147616.85428 165 +P02843 Vitellogenin-1 65.15 29 248 0 56557070.39496 185 +P02844 Vitellogenin-2 66.97 26 196 0 44859162.23026 150 +P04197 Myb protein 2.28 2 2 0 7822.2321 2 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 602413.365 8 +P04388 Ras-like protein 2 25.0 4 8 4 326032.7243 7 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 8046.0841 2 +P05205 Heterochromatin protein 1 44.66 9 23 9 726205.36829 19 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 3170060.04466 36 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 3125799.228 12 +P05552 Transcription factor Adf-1 17.56 4 5 0 98963.12 4 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 468136.29449999996 10 +P05812 Heat shock protein 67B1 22.7 8 11 8 140953.10657 11 +P06002 Opsin Rh1 7.24 3 7 3 260306.2379 5 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 81366266.24573 186 +P06607 Vitellogenin-3 80.0 35 270 0 98462900.74731 243 +P06742 Myosin light chain alkali 55.48 9 117 0 26625642.9343 97 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 3580.0604000000003 2 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 9667133.2868 33 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 32183719.3257 132 +P07665 Serendipity locus protein beta 5.9 3 4 0 69893.5401 4 +P07668 Choline O-acetyltransferase 14.7 8 8 8 38793.42066 8 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 123826268.68538 329 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 123999.6058 8 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 561909.6247 22 +P08144 Alpha-amylase A 22.87 10 19 0 658331.58835 17 +P08171 Esterase-6 15.26 8 18 0 776296.10966 17 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 108214.482 5 +P08182 Casein kinase II subunit beta 38.72 8 19 2 1229158.163 18 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 8927680.3732 45 +P08645 Ras-related protein Rap1 40.76 6 13 0 346106.96129 11 +P08646 Ras-like protein 1 38.62 7 19 7 1038960.3131 17 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 45531520.01666 155 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 578288.04523 12 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 12139398.47297 100 +P08928 Lamin 75.72 60 199 59 11511676.55503 175 +P08985 Histone H2A.v 42.55 10 39 8 3970904.1079 27 +P09040 Drosulfakinins 17.73 3 4 3 87212.30459999999 4 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 3993435.53452 47 +P09208 Insulin-like receptor 2.19 5 6 5 17445.9905 4 +P09491 Tropomyosin-2 82.39 40 292 3 968379.3275 10 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 165049.6557 8 +P10379 Protein unzipped 27.46 11 26 0 952279.5404 24 +P10552 FMRFamide-related peptides 8.36 3 4 3 262533.61100000003 4 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 1502640.11745 64 +P10981 Actin-87E 69.15 30 649 0 14434816.4918 27 +P10987 Actin-5C 74.2 31 679 0 3876248.2245 23 +P11046 Laminin subunit beta-1 29.14 47 83 47 4400592.8649 74 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 894.4739 1 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 68350825.67489 334 +P11584 Integrin beta-PS 27.54 22 46 0 1934552.4765 44 +P12024 Chaoptin 34.98 42 110 0 4694451.876 100 +P12080 Integrin alpha-PS2 12.39 17 21 17 1047514.63138 19 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 19644.0489 3 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 4359812.68133 49 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 48036.58 4 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 549468.02888 15 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 31866.499 3 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 3747327.20681 44 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 389801.97599999997 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 438634.2169 9 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 2444586.7782 39 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 5532654.8296 109 +P13395 Spectrin alpha chain 66.34 150 596 0 52903318.21254 544 +P13469 DNA-binding protein modulo 6.83 4 4 0 79564.4118 4 +P13496 Dynactin subunit 1 19.53 26 29 26 553624.97237 28 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 4974898.05671 133 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 229496.0921 12 +P13678 Protein kinase C 6.22 5 6 0 45974.929000000004 4 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 12704.26 1 +P14199 Protein ref(2)P 21.04 10 16 10 818009.9902 15 +P14318 Muscle-specific protein 20 83.15 21 93 21 13570444.3966 86 +P14484 Pupal cuticle protein 27.17 5 23 5 1236602.4327 21 +P15007 Enolase 77.8 36 335 1 70618870.9103 299 +P15215 Laminin subunit gamma-1 38.87 56 107 0 6165000.0546 101 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 31964.405099999996 4 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 8599783.59194 59 +P15364 Protein amalgam 24.62 6 10 0 226636.9941 9 +P15372 Phosrestin-2 69.78 24 97 0 3759933.33279 88 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 180199.684 4 +P16378 G protein alpha o subunit 26.27 11 43 8 4197862.17092 39 +P16554 Protein numb 19.06 9 11 0 198624.56775 11 +P16568 Protein bicaudal D 20.59 17 19 0 414470.3469 18 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 356831.0366 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 4176.576 1 +P16914 Protein elav 34.58 12 38 0 1408619.70484 34 +P17210 Kinesin heavy chain 46.77 45 96 45 3658793.2525 83 +P17276 Protein henna 40.04 15 35 0 2221216.3176 33 +P17336 Catalase 44.47 19 65 19 4589827.17376 54 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 2223657.1037 28 +P17719 Dihydrofolate reductase 26.92 4 8 4 123628.77359999999 7 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 4347192.8675999995 41 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 24180.8256 2 +P18431 Protein kinase shaggy 43.77 19 57 0 2679245.55124 51 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 40333185.43231 225 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 248411.0774 12 +P18824 Armadillo segment polarity protein 17.67 13 22 0 223530.26009999998 17 +P19107 Phosrestin-1 71.82 33 296 33 32737479.83374 277 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 1385824.37473 23 +P19334 Transient receptor potential protein 4.39 6 7 5 27039.8966 5 +P19339 Protein sex-lethal 5.65 2 2 0 40318.262 2 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 867068.7166 11 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 8868288.147400001 59 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 83425.5278 3 +P20153 Protein ultraspiracle 1.57 1 1 0 16671.691 1 +P20228 Glutamate decarboxylase 20.78 11 32 0 815373.47617 31 +P20232 Transcription elongation factor S-II 38.02 12 19 0 462603.67358 17 +P20240 Otefin 40.8 14 20 14 316385.0005 16 +P20241 Neuroglian 26.04 33 88 0 4188693.1305 82 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 549326.0614 11 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 43796.119 3 +P20354 G protein alpha s subunit 47.01 15 32 1 4272.99 1 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 35564.2263 6 +P20432 Glutathione S-transferase D1 52.15 14 87 11 21992005.278330002 76 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 11390189.9067 66 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 57683884.49883 178 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1514622.2734 31 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 12877786.366489999 108 +P22465 Annexin B10 76.01 24 137 24 15133213.15465 119 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 1804945.7151600001 26 +P22813 Heat shock factor protein 4.34 3 3 0 11566.7687 2 +P22815 Protein bride of sevenless 2.01 2 3 2 23209.4639 3 +P22979 Heat shock protein 67B3 55.28 7 20 7 852576.80016 17 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 50405.926400000004 6 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 789596.74428 39 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 31564.227 2 +P23625 G protein alpha q subunit 57.51 21 85 18 8447235.0856 77 +P23654 Neurotactin 15.84 11 14 0 212514.4332 14 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 429617.35 12 +P23779 Cystatin-like protein 57.94 7 40 7 3108808.22025 36 +P24156 Prohibitin 1 68.12 18 72 0 5542399.25723 68 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 33936754.21882 123 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 189978.06 2 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 39065.1856 4 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 1429661.3750200002 27 +P25171 Regulator of chromosome condensation 10.42 5 6 5 151429.898 5 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 4956.876200000001 2 +P25228 Ras-related protein Rab-3 37.73 7 22 0 208388.03694999998 9 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 141705.14860000001 9 +P25822 Maternal protein pumilio 3.13 5 6 0 79468.8745 6 +P25843 Profilin 88.89 7 37 0 1724679.2921799999 33 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 2296402.861 9 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 294068.6541 12 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 1047357.5584 21 +P26686 Serine-arginine protein 55 19.68 7 14 0 393983.34404 14 +P27716 Innexin inx1 2.49 1 1 0 2029.2194 1 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 394245.24554000003 8 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 93436.3925 9 +P29052 Transcription initiation factor IIB 16.83 6 10 0 193700.0639 10 +P29310 14-3-3 protein zeta 68.55 19 282 0 53138249.37611 237 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 1031993.8082 15 +P29413 Calreticulin 58.13 22 67 0 9486134.4438 61 +P29613 Triosephosphate isomerase 78.54 20 145 19 35278162.97494 138 +P29742 Clathrin heavy chain 7.99 13 14 0 157644.0017 11 +P29746 Protein bangles and beads 63.12 27 57 27 5117425.2859 56 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 4314133.9181 66 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 195014.66629999998 7 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 20200691.92354 174 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 19838790.89324 162 +P30432 Furin-like protease 2 2.5 4 4 0 28150.248 3 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 6646.2524 1 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 6517293.671 37 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 4880418.4424 82 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 2780878.0201 29 +P32234 Guanylate binding protein 128up 16.85 6 9 5 192063.3458 9 +P32392 Actin-related protein 3 26.56 9 16 9 437856.06315999996 16 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 539468.8003 18 +P33438 Glutactin 36.94 29 56 0 1020225.05325 47 +P34082 Fasciclin-2 26.8 21 34 0 868308.2027 28 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 1597741.08146 23 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 1349232.6926 23 +P35220 Catenin alpha 26.39 24 38 14 976309.94065 35 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 122559883.83241 368 +P35415 Paramyosin, long form 75.2 91 521 0 67518065.59607 459 +P35416 Paramyosin, short form 60.0 45 292 0 7149145.19656 51 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 17099.266 4 +P35554 Flightin 54.4 9 20 0 2305143.8333 19 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 76482.5048 7 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 4466077.20639 55 +P36188 Troponin I 57.99 21 83 0 14909139.59695 78 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 1543407.67235 15 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 13370.017100000001 4 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 2575697.1128000002 31 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 111551.84640000001 2 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 9555656.62281 113 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 393448.1343 9 +P37236 Frequenin-1 71.66 12 40 0 1380209.3536 12 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 6095.736 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 1107984.98994 12 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 11017856.10225 70 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 6709417.3184 52 +P39736 Puff-specific protein Bx42 9.87 4 5 0 47492.4986 4 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 274843.6632 6 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 659421.0345000001 12 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 245183.27000000002 6 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 1477261.92656 31 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 10677.16423 5 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1065918.7996 20 +P40427 Homeobox protein extradenticle 9.31 3 4 0 138491.8168 4 +P40792 Ras-related protein Rac1 34.38 6 13 0 961935.5838 13 +P40793 Cdc42 homolog 24.61 4 8 0 472835.5975 7 +P40796 La protein homolog 40.51 13 18 12 559434.705 16 +P40797 Protein peanut 38.4 19 35 18 1355320.111 35 +P40945 ADP ribosylation factor 4 38.33 5 12 0 173640.2591 7 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 438963.9592 5 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1386927.4982999999 32 +P41043 Glutathione S-transferase S1 83.53 19 72 0 8381565.03557 67 +P41044 Calbindin-32 76.77 26 157 0 13171876.10069 144 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 880868.44523 25 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 2281791.877 21 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 934762.7645 14 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 4577542.5309 43 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 4181243.04234 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 3175348.7381 40 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 177284.4413 7 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 1038423.82295 19 +P41900 General transcription factor IIF subunit 2 6.86 1 1 1 473.09665 1 +P42207 Septin-1 12.47 5 7 4 131840.88030000002 5 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 6729951.51615 45 +P42325 Neurocalcin homolog 61.05 12 34 12 1987708.36091 31 +P42787 Carboxypeptidase D 5.33 7 15 0 284210.42757 12 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 282464.803 5 +P45437 Coatomer subunit beta 8.61 5 8 5 121073.07549999999 6 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 17709723.8556 85 +P45888 Actin-related protein 2 28.82 9 17 9 1027272.592 15 +P45889 Actin-related protein 1 37.23 12 24 12 926241.2413999999 22 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 22502.389 1 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 1205268.9462599999 17 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 3534242.7081 35 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 523442.311 10 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 2198617.71391 70 +P46824 Kinesin light chain 48.43 25 56 0 3203886.9599 50 +P47947 Troponin C, isoform 1 20.78 3 32 0 4197878.3946 31 +P47948 Troponin C, isoform 2 48.39 6 16 0 202608.1774 9 +P47949 Troponin C, isoform 3 62.58 8 28 0 1828835.92598 24 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 3654493.5275 30 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 2568535.4872 26 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 2255967.9487 35 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 10012546.71187 40 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 397415.95804 9 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 50800.057 3 +P48554 Ras-related protein Rac2 26.04 5 12 0 39185.977 1 +P48555 Ras-related protein Ral-a 58.21 10 29 1 2020294.0608 28 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 45517.1661 4 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 8987662.1998 59 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 577967.369 14 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 2366012.33435 47 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 5890161.91222 105 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 319076.0751 12 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 3018869.9587000003 37 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 3029961.2452599998 47 +P48607 Protein spaetzle 9.2 3 4 0 3478.9527 2 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 186719.0225 8 +P48610 Arginine kinase 1 76.69 46 489 0 126199657.08395 439 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 2279010.78757 34 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2368105.57102 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 578852.2213 8 +P49028 Protein mago nashi 11.56 2 7 2 74268.2987 5 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 405789.907 7 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 61038.2878 3 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 1054635.4885 8 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 4680.479 1 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 95699.16924 7 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 7353.0108 2 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 12704.736700000001 2 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 74223.56578 5 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 3000101.0257 28 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 492032.1291 12 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 11406.162 2 +P51406 Bystin 1.83 1 1 1 527.9217 1 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 868705.9873 25 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 90448.2319 13 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 1047208.57897 22 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 580582.0447 9 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 9950.4465 2 +P53034 Replication factor C subunit 2 20.24 6 6 6 100658.88919999999 6 +P53501 Actin-57B 70.21 33 663 5 76738748.60739 92 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 21302.495 2 +P53777 Muscle LIM protein 1 56.52 6 24 0 1317969.4583 17 +P53997 Protein SET 15.24 4 9 4 501828.833 9 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 228389.68800000002 5 +P54191 General odorant-binding protein 69a 6.08 1 1 1 28690.498 1 +P54192 General odorant-binding protein 19d 71.33 13 119 13 39277646.7459 115 +P54193 General odorant-binding protein 83a 42.86 7 17 0 2789712.677 13 +P54195 General odorant-binding protein 28a 40.56 4 17 4 781334.3957 15 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 67685.9177 4 +P54352 Ethanolamine kinase 13.9 6 7 4 243315.6303 6 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 1076538.26899 28 +P54357 Myosin-2 essential light chain 89.12 10 58 1 4106304.0742 49 +P54359 Septin-2 13.13 7 12 1 564015.5964 12 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 44110.891 2 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 7120339.649139999 92 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 89581.1756 4 +P54399 Protein disulfide-isomerase 76.81 40 203 0 22515588.77201 180 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 29248545.90689 165 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 466978.899 7 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 767826.6975 14 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 2770256.5067 14 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 8446843.9188 64 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 3034357.061 27 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 4136393.6666 45 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 28609.92325 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 249168.4446 4 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 1586307.3131 23 +P61849 Dromyosuppressin 29.0 3 3 0 70108.42629999999 3 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 18312189.21005 109 +P61855 Adipokinetic hormone 37.97 2 4 2 54397.025400000006 4 +P61857 Tubulin beta-2 chain 36.55 15 179 2 4311862.512 3 +P62152 Calmodulin 99.33 19 482 0 100065651.02863 424 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 2627317.8688 24 +P81829 Leucokinin 6.25 1 2 1 21381.676 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 12295775.69287 85 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 7406627.16137 37 +P82295 Prominin-like protein 0.99 1 1 0 1238621.4 1 +P82804 Partner of Y14 and mago 24.15 5 6 4 19185.0683 5 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 1104090.411 11 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 358957.8338 12 +P83967 Actin, indirect flight muscle 69.15 30 612 3 460653.4104 12 +P84029 Cytochrome c-2 76.85 13 103 0 31354146.3399 101 +P84040 Histone H4 60.19 11 107 0 12369244.63783 95 +P84051 Histone H2A 42.74 7 32 0 2665874.0119000003 14 +P84345 ATP synthase protein 8 18.87 1 11 1 316867.187 11 +P91664 Protein max 4.35 1 1 0 31473.03 1 +P91891 Protein Mo25 34.22 13 25 0 1678944.3221999998 22 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 386824.1431 23 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 1911661.08781 56 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 10371793.30703 109 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 7012262.24437 45 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 3148394.7777 40 +P92029 DnaJ-like protein 60 5.53 1 1 0 8231.944 1 +P92177 14-3-3 protein epsilon 79.01 28 274 26 35416106.79061 205 +P92204 Negative elongation factor E 14.64 4 4 4 130601.468 4 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 40263.4239 4 +P98081 Protein disabled 6.16 12 15 0 64968.442240000004 12 +Q00174 Laminin subunit alpha 22.68 79 156 79 9885086.6712 143 +Q01603 Peroxidase 10.14 6 8 0 237614.3876 7 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 32780328.10018 207 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 138849.0551 7 +Q01819 Connectin 2.64 2 2 0 47091.93 1 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 18492.51788 4 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 2560047.7216 30 +Q02910 Calphotin 6.83 4 15 4 220730.7745 12 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 171009.66839 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 36091.5511 5 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 2390488.7576 27 +Q03427 Lamin-C 66.67 46 141 3 7966701.60093 125 +Q04047 Protein no-on-transient A 16.14 9 10 0 161592.0621 9 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 336453.9661 15 +Q04691 Fat-body protein 1 29.93 28 50 0 476690.22384 48 +Q05783 High mobility group protein D 21.43 2 7 0 154781.3613 4 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 88059044.89445 512 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 39600.55876 3 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 16416113.73596 104 +Q06943 High mobility group protein Z 21.62 3 10 0 95028.50657 10 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 30232.1457 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 1598366.9611 22 +Q07171 Gelsolin 22.06 16 44 0 3480723.90142 43 +Q07327 Protein ROP 24.29 15 40 0 1540452.09571 38 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 1282243.67437 26 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 2925.8091 2 +Q08473 RNA-binding protein squid 43.31 10 27 0 2706866.8694 24 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 186191.2421 8 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 15736.872 3 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 552606.24243 16 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 115380.8365 7 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1699216.9508 14 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 13984.424879999999 4 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 8721.402 1 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 243386.814 11 +Q11002 Calpain-A 7.37 6 7 0 108996.2992 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 4733932.9553 32 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 9868030.1368 85 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 7443223.029440001 81 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 9800639.67501 107 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 5995636.38785 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 12296687.8579 89 +Q24050 Elongator complex protein 5 27.48 6 10 6 300019.6252 9 +Q24114 Division abnormally delayed protein 20.93 10 15 0 413270.49819 14 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 854021.8671 21 +Q24134 Negative elongation factor D 4.84 2 2 0 34348.991 2 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 10700.36327 4 +Q24185 Protein hook 28.28 21 32 21 797892.1177000001 32 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1267307.8810400001 31 +Q24207 Protein boule 36.4 6 12 0 347303.9291 11 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 366958.4605 18 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 19538.08553 7 +Q24211 Protein stoned-A 42.71 35 65 0 2200719.5782 61 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 6696403.3612 28 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 209598.394 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 93289.8879 4 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 42089647.82997 167 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 1005580.14373 26 +Q24292 Protein dachsous 0.54 2 2 0 27715.7657 2 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 185255.926 2 +Q24298 DE-cadherin 21.57 29 50 29 1536927.59741 47 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 43744.6391 5 +Q24318 Transcription factor Dp 16.18 7 8 0 86714.13466 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 453084.5145 8 +Q24322 Semaphorin-1A 4.67 4 5 0 26271.094149999997 5 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 323920.24600000004 4 +Q24372 Lachesin 27.58 9 17 9 509505.44315 16 +Q24388 Larval serum protein 2 12.27 8 11 0 278836.8625 8 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 8873379.91711 73 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 10412042.40203 60 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 57679276.4351 180 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 361540.38938 21 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 411178.69478 10 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 59407.6659 8 +Q24509 Syntaxin-5 4.93 2 3 0 23299.2418 3 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 478182.64828 15 +Q24524 Protein singed 10.35 5 5 0 22747.4059 4 +Q24537 High mobility group protein DSP1 22.9 8 15 0 758303.4923 14 +Q24547 Syntaxin-1A 43.64 15 53 0 4786273.3647 49 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 56686912.32462 256 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 102533.1896 6 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 448315.81330000004 8 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 4819499.84535 28 +Q26377 Pro-corazonin 44.81 5 17 5 238949.11587 15 +Q26416 Adult cuticle protein 1 20.0 1 3 1 247514.135 2 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 289490.34239999996 11 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 639164.10083 16 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 86112.92869999999 4 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 4586968.7529 50 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 2175430.2151 14 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 4334568.9725 49 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 488824.61110000004 10 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 278748.2633 11 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 642777.02566 19 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 724040.5495 15 +Q3KN41 Neurexin 1 3.37 5 5 0 24465.92884 5 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 4317.1073 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 122417.86140000001 4 +Q4V645 Trissin 7.41 1 1 1 22746.225 1 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 192048.534 5 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 38476.313599999994 2 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 594138.3881 17 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 16373.42214 4 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 11541.160899999999 3 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 112408.84564 7 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 278965.7414 6 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 251767.20930000002 6 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 1132319.2917 11 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 755857.537 14 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 82589.86439999999 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 590791.35624 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 1108494.5871000001 27 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 28127.7656 2 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 193491.95045 11 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 128398.9975 8 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 942361.0991 17 +Q7JXF7 Protein seele 39.15 6 16 6 493222.7273 15 +Q7JYV2 Synaptogyrin 8.3 1 2 1 3645.5598 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 40071.024 5 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 83303.19064000002 4 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 231080.1562 13 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 172094.47041 9 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 279344.35864 11 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 143229.56 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 4193.6465 1 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 2945603.2493600002 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 55650.8914 3 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 476125.74140000006 10 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 463848.25559 21 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 55031.9214 4 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 1228951.1943 23 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 62732.497 5 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 15428799.8573 72 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 165252.36114 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 2711613.5656 27 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 2554489.63696 36 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 22641.7438 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 3121403.31315 65 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 321906.5295 15 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 521053.105 13 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 28731.4752 8 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 67499.784 2 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 503141.80205 11 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 29749684.13161 75 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 7906.8378 2 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 274915.3153 9 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 565842.1461 16 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 148857.27504 4 +Q7KVY7 Syntaxin-4 14.11 4 6 1 65105.2478 6 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 63478.8667 6 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 5870608.24536 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 2439.335 1 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 1707837.69967 28 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 621978.78715 19 +Q868Z9 Papilin 23.81 59 118 59 3619159.77066 104 +Q86B79 RING finger protein unkempt 6.18 3 3 0 59497.175 3 +Q86B87 Modifier of mdg4 5.74 3 6 0 94928.6818 5 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 76260.51404 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 4395.6983 2 +Q86NP2 Negative elongation factor A 11.99 11 18 0 161156.3721 13 +Q86P48 AT-rich binding protein 5.15 1 2 1 1884.758 1 +Q86S05 Protein lingerer 5.96 6 8 0 12066.691499999999 6 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 84742.207 5 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 2023907.4456 35 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 119106.3505 9 +Q8IN41 Protein Turandot X 16.2 2 4 2 16065.363500000001 4 +Q8IN43 Protein Turandot C 48.84 5 12 5 720046.2203 12 +Q8IN44 Protein Turandot A 64.34 9 34 9 2303876.49089 30 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 195467.0418 10 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 1335.64545 2 +Q8IPM8 Complexin 71.13 11 97 0 21835.7701 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 319631.7135 17 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 220425.1018 6 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 37611.769499999995 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 114983.10641000001 11 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 347164.29099999997 9 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 386138.154 6 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 3079123.94588 44 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 63591.091100000005 4 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 19144.3704 4 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 16417.8989 3 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 517879.6968 5 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 144727.5355 6 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 3827701.9312 44 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 1038199.8951000001 19 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 28656.039 2 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 39119.240900000004 7 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 17871.31284 4 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 327155.7866 10 +Q8MSS1 Protein lava lamp 22.63 60 78 0 658866.47039 73 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 44128.136399999996 3 +Q8MSV2 Protein alan shepard 16.78 8 21 8 752627.479 18 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 20775.064 1 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 33675.4058 6 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1376859.5953 18 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 647878.5795 30 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1581579.9641 18 +Q8SY33 Protein Gawky 14.09 15 25 15 248813.2611 22 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 7036551.4077 53 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 813651.96435 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 84318.2947 5 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 4598.1267 2 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 18343.328999999998 2 +Q8SZ63 Golgin-84 13.57 7 7 7 21284.55106 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 578817.8809999999 14 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 1752652.9432 40 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 2499802.86287 54 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 9223.248 1 +Q8T390 Endophilin-A 62.33 23 114 0 6648788.78715 99 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 251200.338 7 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 1859534.0304999999 19 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 538459.9764 19 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 384755.3861 13 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 7716.8009 3 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 1596035.6616 23 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 38319.54746 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 13354472.84689 119 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 17211865.40844 90 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 24043606.97613 139 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 5172.53 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 4156501.60808 34 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 3193926.8023 24 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 18869535.45616 105 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 3295783.5620399998 57 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 76302.618 5 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1209994.95012 37 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 4343.46591 3 +Q94547 Regulator of gene activity 10.77 6 9 0 202788.097 8 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 80215.2698 5 +Q94901 RNA-binding protein lark 44.03 16 37 16 821156.58446 32 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 34698.5685 3 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 228382.8559 8 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 129108679.62069 328 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 2696.8208 1 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 92093.2579 4 +Q95029 Cathepsin L1 36.39 19 81 3 8002674.6382 74 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 2001684.5236000002 26 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 41999.264 3 +Q95RA9 GILT-like protein 1 40.0 8 30 8 2001278.1959000002 26 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 28162.953 4 +Q95RI5 Failed axon connections 63.16 27 130 0 12880554.911 120 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 45511.796 3 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 193300.872 5 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 8375.99974 2 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 369538.2486 18 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 100349.57329999999 3 +Q95T12 Calcium channel flower 12.89 2 3 2 128987.239 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 8130.5127 2 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 19758.7656 3 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 60970.7171 7 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 22664.853 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 365962.091 20 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 38600.32116 7 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 227174.1135 7 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 28174.8134 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 20460.8491 3 +Q967D7 Protein turtle 4.51 7 9 0 124147.7654 8 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 171994.22264 16 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 309984.57526 7 +Q9GQQ0 Protein spinster 1.98 1 3 1 30738.988 2 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 10719641.4805 49 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 15917.6587 3 +Q9I7D3 Caprin homolog 15.09 10 12 0 62614.7736 9 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 150466.8793 7 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 102001.341 3 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 147067.7545 5 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 308933.52495999995 10 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1346910.4991000001 29 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 46362.904 5 +Q9I7U4 Titin 3.75 33 36 0 415874.86759000004 28 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 66812.5966 3 +Q9NB04 Patj homolog 33.87 24 53 0 1079186.6772 47 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 9361.21544 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 96785.54800000001 2 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 9705.6813 2 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 230941.96633000002 7 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 387843.9064699999 5 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 39561.3451 8 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 34223.236000000004 2 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 1775.1814 1 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 3902670.64556 61 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 65609.69435 6 +Q9TVM2 Exportin-1 0.85 1 1 0 3263.1448 1 +Q9TVP3 J domain-containing protein 85.64 19 103 19 18437883.83348 96 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 1827947.0933 17 +Q9U4G1 Protein borderless 18.5 13 29 13 1005145.65125 27 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 246036.3657 9 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 546264.94115 16 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 1453276.16454 20 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 6163.669 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 84338.136 5 +Q9U915 Adenylate kinase 2 75.83 22 60 22 3635707.76956 53 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 240733.764 7 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 560998.5769999999 13 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 421492.88858 16 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 577934.78356 15 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 11872.66865 2 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 2362.4497 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 113851.55799999999 5 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 2461538.9311699998 36 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 33024.964 2 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 4119607.1954 26 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 15101.21664 6 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 425213.5595 8 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 1146424.6752 17 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 360867.44497 14 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 3161128.4883 47 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 234371.6072 8 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 476936.4972 21 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 85722.708 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 749642.79174 24 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 29841396.20053 117 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 174658.22780000002 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 29021.7106 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 38147.29475 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 406842.92243 13 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 21866.724000000002 3 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 6608252.841320001 56 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 276979.70906 7 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 639615.7557999999 10 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1130848.2454000001 9 +Q9V3Z2 Serine protease 7 15.86 5 6 4 142058.1854 6 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 118493.6166 8 +Q9V427 Innexin inx2 18.26 7 11 0 473559.984 9 +Q9V429 Thioredoxin-2 65.09 6 47 6 14222329.00846 47 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 828452.896 13 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 1154681.8875199999 23 +Q9V447 Krueppel homolog 2 17.03 4 4 0 49953.041 4 +Q9V496 Apolipophorins 38.44 126 319 0 37250025.47528 287 +Q9V498 Calsyntenin-1 2.97 3 3 0 14247.18 3 +Q9V4A7 Plexin-B 0.54 1 1 0 915.8148 1 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 16554.387000000002 2 +Q9V4C8 Host cell factor 7.0 10 13 10 257865.1571 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 35956.015699999996 4 +Q9V4N3 Cytochrome b5 44.03 5 20 5 1145012.639 15 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 219280.5405 9 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 244006.61469999998 8 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 49374.05401 8 +Q9V521 Phenoloxidase 2 28.36 22 33 21 526662.68311 30 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 536583.63344 17 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 28050.637799999997 6 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 716457.7494 20 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 2324741.9621 27 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 3106136.61214 31 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 14467.843 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 25706.1622 4 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 387644.22015 13 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 8688.558 1 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 163228.8655 8 +Q9V6G5 Tafazzin 8.2 4 4 2 39312.228 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 7886148.5890999995 76 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 73871.83106 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 74147.133 2 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 98600.13029999999 7 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 33999.0884 3 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 4403821.7911 65 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 16191475.933290001 116 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 1291774.17 24 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 117697.7239 7 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 168712.28 3 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 1852.8995 1 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 870784.50461 40 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 8350486.68105 144 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 1152682.6927 17 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 635405.6278 12 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 71241.4027 4 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 154470.831 5 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 206651.8687 8 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 70406.533 4 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 19248.2182 2 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 16741.425900000002 3 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1350978.7691 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 122490.4476 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 1082853.4234 16 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 30139.26526 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 35941.2133 4 +Q9VA37 Protein dj-1beta 83.96 12 76 12 9194111.67105 68 +Q9VA70 Neutral ceramidase 3.98 3 3 0 35534.19565 3 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 12768074.08113 51 +Q9VAF5 Cadherin-99C 6.33 10 10 10 86258.9615 10 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 2599373.3499 18 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 2927257.3663 18 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 8725884.18021 62 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 57113.0929 4 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 2869168.7915000003 31 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 290530.24210000003 6 +Q9VAW5 La-related protein 1 5.5 7 8 0 26268.119 4 +Q9VAY3 Mitoferrin 5.8 2 2 2 5922.5031 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 67397.107 3 +Q9VB68 Serine protease grass 9.28 4 4 4 79647.90978 4 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 301789.12950000004 8 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 40018.5514 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 23635.97115 5 +Q9VBV3 Protein takeout 33.33 6 7 0 365516.22454 7 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 260497.77205 14 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 15298.489 1 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 4.63 2 2 2 482.82785 1 +Q9VC57 Atlastin 3.14 2 2 0 74513.219 2 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 37222.6336 4 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 2589.452 1 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1146849.6977 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 398506.9659 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 58214.7126 3 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 44908.543 2 +Q9VCE8 Actin maturation protease 16.48 2 4 1 8272.842200000001 2 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 381833.5466 9 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 466437.50353 20 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 56408.094 3 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 355543.0172 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 697463.44666 14 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 65140.69669999999 2 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 23479.0001 4 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 41198.4496 3 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 336308.2243 11 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1254939.4192000001 20 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 42536.7817 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 4014.7078 1 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 86504.899 5 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 232502.565 11 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 28330.381 3 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 150463.5998 2 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 8842.326 1 +Q9VDL1 Esterase CG5412 18.28 5 11 5 102407.1959 11 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 41950.6465 6 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 712171.7899 9 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 39340.915 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 315990.7226 10 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 23731.9534 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 12460321.8445 56 +Q9VER6 Modular serine protease 10.51 7 8 7 123028.564 7 +Q9VET0 Neuropeptide F 29.41 3 4 0 34391.2222 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 3757630.7328 55 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 131875.34231 10 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 35807.5187 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 120498.09336 9 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 11637374.63594 77 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 18529.2142 2 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 1102059.166 18 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 70441.958 3 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 376761.71900000004 4 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 2727921.41984 37 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 99753.41309999999 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 53004.184 1 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 8130.1134999999995 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 9386.01645 3 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 155579.2786 5 +Q9VFM9 Twinfilin 30.03 10 13 10 297160.77427 12 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 57679.2282 6 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 120576.9158 6 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 13846.967 4 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 248811.6085 13 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 8400.64423 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 1730.07937 2 +Q9VG55 Protein hugin 14.66 2 3 2 63401.2503 3 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 305658.68220000004 12 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 6229.093 1 +Q9VG76 Myc-binding protein 15.47 3 3 3 88319.451 2 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 21801.680500000002 3 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 1374894.1918 17 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 62252.6134 5 +Q9VGG5 Cadherin-87A 8.35 12 13 12 203945.9886 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 56776.2482 2 +Q9VGP4 Importin-9 3.63 3 3 3 36783.6173 3 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 537127.62285 14 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 228667.9081 6 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 6111.3983 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 7346549.9147 38 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 389951.233 9 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 13040.3618 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 8372.68897 3 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 547135.9524000001 16 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 55241.3355 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 728857.892 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 428539.18200000003 4 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 4949687.7 22 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 7295.0471 2 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 25355.88997 4 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 242443.4222 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 91666.4055 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 637344.5036 11 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 96342.6715 10 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 579724.415 10 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 68003.4235 4 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 501038.94062 16 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3476.9534 1 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 3052485.92916 57 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 5064838.53273 44 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 45584.153000000006 3 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 68224.2833 7 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 139500.0667 9 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 59788.39 5 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 135179.555 5 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 226302.5785 17 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 17419.79116 4 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 1649951.8837 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 1245643.129 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 41953.1748 5 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 50477.4936 4 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 547240.6059999999 11 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 16119.3816 4 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 365934.7824 15 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 7884.8633 1 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 4969.6826 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1099797.2103 16 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 379487.6126 9 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 478469.2558 9 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 1102974.74435 9 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 118971.45 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 9563.769 2 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 31601.91895 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 104454.467 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 10123.3606 2 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 464112.0219 15 +Q9VJL6 Glia maturation factor 23.91 3 4 3 80194.66100000001 3 +Q9VJQ5 Protein Dr1 26.78 4 4 4 59800.3297 3 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 1240502.6051 14 +Q9VJY9 Protein Loquacious 8.17 4 6 0 177611.5249 6 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 8382.2814 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 956748.6394 17 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 6619.0028999999995 2 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 36356.0828 3 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 183203.551 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 29728.1145 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 23260.69 1 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 96943.807 7 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 4453.2627 1 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 200765.596 5 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 28486.3277 4 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 4401364.09416 68 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 3424120.08303 71 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 244123.27900000004 5 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 99789.4409 8 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 215905.52256 14 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 214768.1994 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 211504.17135999998 7 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 928849.1905 12 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 23837.16194 4 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 1582305.00907 23 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 486804.2185 7 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 289551.96665 7 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 14116.243 1 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 11031.3603 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 39073.64014 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 10081.858 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 136101.5333 6 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 58539.58317 10 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 64464.49800000001 2 +Q9VMD6 Protein real-time 1.52 1 1 0 650.8127 1 +Q9VMD9 Tiggrin 19.93 46 58 0 1221795.77036 55 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 248132.50467999998 9 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 683804.1015 17 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 18296.4568 3 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 91223.091 2 +Q9VMR8 Protein Turandot M 41.98 4 7 0 593277.799 7 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 77077.2061 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 51004.373999999996 2 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 151603.9189 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 1567879.4518 21 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 21177.967999999997 2 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 148945.9297 9 +Q9VMY9 Guanine deaminase 8.04 4 4 4 40810.050800000005 3 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 14607.3804 2 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 234137.95 6 +Q9VN14 Contactin 19.93 25 44 25 1276184.3085 39 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 34966.481199999995 2 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 21996.1201 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 460430.0173 7 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 1477348.0567 25 +Q9VN93 Cathepsin F 34.85 22 48 19 2278248.08934 41 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 551521.5593600001 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 73149.424 4 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 172373.4296 8 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 477861.08772999997 11 +Q9VNE2 Protein krasavietz 19.91 11 23 11 876808.6725 20 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 1293967.1905 12 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 8113.5527 1 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 9022.902 1 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 157700.86825 12 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 48903.4852 6 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 114681.787 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 158683.1004 7 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 98979.20363999999 5 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 264555.90317 12 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 6988335.20708 49 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 1029796.8777 16 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 188222.17106000002 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 96392.5124 8 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 220105.9493 4 +Q9VQC4 Glycerate kinase 15.61 8 9 0 84925.35800000001 9 +Q9VQF7 Bacchus 40.79 6 15 6 992018.9322 14 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 61777.965000000004 3 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 1256590.0457000001 20 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 360672.36233 12 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 77531.29936 7 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 315349.89175 12 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 481.6547 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 58990.49086 5 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 12019.5118 3 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 106413.5105 4 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 162322.57134 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 15010.30053 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 62808.527 4 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 25739.0636 4 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 63263.799100000004 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 483766.38800000004 5 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 371922.52499999997 7 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 58827.7 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 8261615.4671600005 89 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 231488.256 10 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 26537.529400000003 3 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 68498.1425 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 14002.369 2 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 14088148.28194 62 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 67711.966 3 +Q9VSS1 Protein Pixie 1.15 1 1 1 14599.331 1 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 161097.367 9 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 20055.77 2 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 2082470.33062 52 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 252576.9176 5 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 20449.371 1 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 26179.179 2 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 36564.836500000005 3 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 11335.8525 2 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1037131.1767 18 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 186631.70130000002 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 246437.92500000002 8 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 72417.87 3 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 171399.448 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 110000.098 6 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 63489.7193 5 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 3956951.8506 44 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 315676.482 11 +Q9VTZ5 Transferrin 2 24.42 20 23 20 559261.66483 21 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 236678.51493 13 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 25660.648 1 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 23741799.579520002 108 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 1366672.3794 36 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 42766.29823 5 +Q9VU84 Drebrin-like protein 33.33 15 28 15 887945.42081 26 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 253859.4418 7 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 151291.3014 5 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 3759885.3364 45 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 284355.46366 10 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 2156603.0812 39 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 914.9225 1 +Q9VV36 Retinin 29.84 5 103 5 37709135.14207 84 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 3100726.59488 41 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 1723641.649 27 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 75953.4219 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 185793.44970000003 6 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 854894.462 25 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 83604.7277 7 +Q9VVE2 Protein rogdi 33.96 9 14 9 620467.90698 14 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 706931.0967 12 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 60794.951499999996 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 1377814.6628 29 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 44888.3541 7 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 11483.4788 3 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 1440485.87692 36 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 50890.1788 4 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 46893.5382 4 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 236318.37900000002 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 128956.9016 4 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 41168.2316 6 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 1633044.8586000002 21 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 8122.4298 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 237881.94024 10 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 849554.06143 20 +Q9VWA1 Clathrin light chain 43.84 14 43 0 3503710.3096 38 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 40403.607 2 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 45998.0596 3 +Q9VWE0 Cytokine receptor 3.28 4 4 4 7877.4331999999995 3 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 4046.2205999999996 2 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 751664.0484 11 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 39468482.65609 199 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 4999188.801700001 26 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 215577.6239 14 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 50636.969679999995 6 +Q9VWU1 Serine protease persephone 6.85 2 2 2 16711.7078 2 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 493951.28617000004 2 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 3070.6838 1 +Q9VWX8 Frequenin-2 54.01 10 42 4 3114122.20407 41 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 14205.6334 2 +Q9VX10 Sulfiredoxin 11.73 2 3 0 49783.0984 3 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 320295.5046 12 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 2668928.1039 27 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 14052.963 1 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 284667.3418 10 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 31793.0813 4 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 21622.21 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 3087957.1973 53 +Q9VXG4 Annexin B11 22.31 13 30 13 1987048.8194 28 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 620829.17574 18 +Q9VXK0 Protein NipSnap 15.38 4 6 0 332882.4756 6 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 350221.1387 13 +Q9VXN2 Protein stunted 55.74 4 15 4 702201.7220000001 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 62069.8159 5 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 911523.17022 19 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 478245.516 7 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 10402.575369999999 3 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 3863788.595 32 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 55330.6856 5 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 5385.1651999999995 2 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 909728.9543999999 11 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 84371.6 3 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 10940.7793 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 837835.2642999999 12 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 789.14844 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 33355.421500000004 2 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 6112.2324 1 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 608459.1897 10 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 15313.981 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 33138.914000000004 3 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 122837.19446 4 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 33373.968 2 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 3680359.5817400003 57 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 53183.73 4 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 78239.32549999999 2 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 747727.6182299999 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 363780.94 10 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 4012485.3497699997 33 +Q9VZ35 Protein Vago 20.62 2 2 2 14379.1096 2 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 296267.27414999995 7 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 656349.5163 24 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 1272607.0967 23 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 114702.9987 11 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 195646.881 3 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 25205.7579 3 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 12534.878 1 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 38501.13444 6 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 14912.17356 3 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 8838.288 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 87277.746 2 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 467625.1211 9 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 2402862.05895 32 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 3708211.85496 66 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 617638.5002 18 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 48175.457 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 3449270.77656 57 +Q9W074 Protein HBS1 4.63 3 3 3 24347.048499999997 3 +Q9W0A0 Protein draper 6.21 5 7 0 30082.4774 6 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 3455838.5608 36 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 4242.2314 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 59705.82495 6 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 171586.6657 13 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 1001165.8757 17 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 931374.833 20 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 297873.66163 11 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 33309.8692 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 5480.334 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 14098207.6596 41 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 282436.0033 7 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 15095.0071 5 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 70811022.1785 90 +Q9W1G0 Probable transaldolase 56.5 17 62 17 8037486.2242 59 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 20317.893 1 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 925932.8769999999 6 +Q9W1K5 Sestrin homolog 1.41 1 1 0 24932.314 1 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 133005.747 3 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 512216.63404 7 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 65249.53252 8 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 53873.573399999994 5 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 63070.9449 7 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 347904.9496 6 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 5249799.34072 50 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 281792.64 10 +Q9W266 Protein windpipe 13.44 10 18 10 608604.4883 18 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 2149784.429 23 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 684676.4136 13 +Q9W2E7 Protein Rae1 17.63 6 8 6 349330.12483 8 +Q9W2M2 Trehalase 40.94 22 40 0 1114167.9497 37 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 257094.07 6 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 43383.7019 2 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 26136.0207 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 157803.4538 7 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 5463703.94473 73 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 892905.97442 15 +Q9W358 Chaperone Ric-8 8.55 6 6 0 56756.270189999996 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 9130668.93874 97 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 260164.16967 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 276896.7387 6 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 218716.6302 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 117661.3817 4 +Q9W3E2 Protein PIP82 26.03 29 40 29 387937.87442999997 31 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 214257.3341 11 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 43442.589700000004 3 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 100403.39517 9 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 248629.568 4 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 150286.489 8 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 9070.3488 3 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 11443.970000000001 2 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 59449506.71108 182 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 138760.81290000002 5 +Q9W436 Neprilysin-1 7.54 6 7 6 52593.0169 6 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 106621.3154 8 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 1530.2761 1 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 179856.54684 5 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 1101975.5372 18 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 368208.50447 24 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 367135.9137 11 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 1826125.6567 23 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 94588.8452 5 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 3530250.09933 148 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 85264.556 4 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 1424670.5659 25 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 268310.4539 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 28811.115 3 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 1045932.4218300001 15 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 6613.297 1 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 2307137.1611 65 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 2283.5752 1 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 5843.697 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 1018639.8006 10 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 1610729.4561 29 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 85312.731 5 +Q9XZ14 Protein gone early 8.19 5 6 0 34478.3059 5 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 153138.90115 13 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 1033390.49 16 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 2832985.1404 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 3799248.5439 35 +Q9XZL8 Protein sarah 31.16 7 13 0 338793.19958 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 13477.2207 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 47280.5476 2 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 34980.4728 6 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 885937.8106 20 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 335289.494 4 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 2262086.1752 15 +X2JAU8 Protein nervous wreck 40.0 41 115 41 6753290.59567 101 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 23210.232 1 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 226411.88749999998 16 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 27874.51 1 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 428214.5546 15 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 96682.1223 5 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 296618.2122 14 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 6218.74755 2 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 8673137.8524 115 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 13032.328000000001 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 2637.0938 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 397705.1273 29 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 210463.8053 14 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 41412.7535 5 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 596002.1713 21 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 20470185.74935 168 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 51367.31838 8 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 75964.8735 7 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 759640.9759 37 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 474598.56045 13 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 84210.4053 4 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 241151.5808 12 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 68815.8725 6 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 184307.59149999998 8 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 26209.424499999997 4 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 306655.0698 17 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 3097.8682 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 9953608.65764 125 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 576540.2063 15 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 103705.017 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 21340.985 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 28258.4136 6 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 834.42017 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 5839845.6707500005 41 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 51369.3925 6 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 3449.98807 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 2640778.25997 66 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 60925.12484999999 5 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 820865.63755 28 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 106462.00330000001 4 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 160108.6654 10 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 67727.1369 3 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 599144.66822 15 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 860853.702 19 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 1728525.0152 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 61235.9202 6 +A0A0B4KEJ7 Coronin 14.21 7 8 0 123944.6542 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 26216.5893 3 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 19269.362999999998 3 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 75571.534 4 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 407415.7702 27 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 4780.8145 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 27073.212 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 34306.64 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 386404.51560000004 21 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 94209.93643999999 8 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 41505.6253 2 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2037761.26825 44 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 53378.377 4 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 9090589.546160001 93 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 216010.63603999998 13 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 879715.42 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 851986.02535 16 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 397373.7282 6 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 6251.2192 2 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 182019.60467 10 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 90086.9572 8 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 28993.548499999997 2 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 2563.5242 1 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 7777.7507 2 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 20037.8283 2 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 441616.7647 8 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 34781.29 3 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 61417.3474 6 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 6635.811 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 101575.5269 7 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 43363.453 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 379119.4585 18 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 1523490.6184 23 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 2875937.4008 42 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 3266.57714 2 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 9101.3174 2 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 9595.4872 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 34587.0 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 1863655.0629699999 38 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 26578.637300000002 3 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 9527.428 3 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 76956.4602 5 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 69616.6413 6 +A0A0B4KH34 Annexin 57.41 23 123 4 14886385.012769999 114 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 7965.9468 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 11826.5815 2 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 1088147.00514 15 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 396746.9707 25 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 82419.834 4 +A0A0B4KHF0 Ferritin 77.97 21 133 1 41103176.71064 104 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 78490715.43983 277 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 191128.83529999998 10 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 5263.0586 1 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 57123.2487 5 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 613652.061 16 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 644144.8323 28 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 334247.893 3 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 150964.34470000002 9 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 29014.44946 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 248505.8404 6 +A0A0B4KHZ0 Without children, isoform E 0.53 1 1 0 488.94016 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 3998090.29523 41 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 2528064.4007 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 70694.811 5 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 9811.453 1 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 41648.0554 7 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 3452.6641 2 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 19222.2727 3 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 1507461.6285799998 26 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 919454.9317 31 +A0A0B4LF95 glutaminase 18.84 10 11 0 290600.33869999996 10 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 1637869.66286 22 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 447152.1757 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 69970.144 4 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 21052.9135 3 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 67392.84923 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 18895.260000000002 3 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 26477.12522 4 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 344531.3692 9 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 54746.555629999995 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 374758.11416 14 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 29558.490999999998 2 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 181747.1909 11 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 1892362.23478 47 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 291947.3805 10 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 39567.578499999996 3 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 659164.92646 21 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 41403.9967 8 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 8014564.4359 58 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 80520.4663 3 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 98278.16859999999 9 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 1756507.63685 38 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 32000.0869 5 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 218918.6266 7 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 18262.25 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 10993.1831 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 110707.78847 9 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 24324.541 1 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 14638.256 1 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 12831.98 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 7103.704 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 252733.35716 18 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 22170.5331 2 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 34916.6683 3 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 299836.67042 29 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 144132.1589 9 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 71434.0847 6 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 500317.96050000004 12 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 4529.008 1 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 675410.1504 15 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 81235.3834 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 28981729.86519 157 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 256802.4664 9 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 50987.6408 3 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 3917.7903 1 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 4719149.85194 17 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 15985571.13964 131 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 150270.11428 19 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 110555.2139 9 +A0A4P1SAA7 IP07559p 11.17 2 3 1 35627.388999999996 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 398.33896 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 1263642.31259 64 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 301645.5044 16 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 2335.1675 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 14323.142 1 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 11478.14978 2 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 21001811.84955 291 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 6372.4844 1 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 5433319.3675 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 177098.4606 8 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 17729.7647 5 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 25555.209 2 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 42935.4974 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 8539.2807 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 114897.4646 8 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 13507182.05384 309 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1241298.0655 40 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 2039705.30166 35 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 1353164.39774 24 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 67923.9365 9 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 177966.0833 11 +A1Z6F6 FI18602p1 16.42 12 15 0 430592.6092 12 +A1Z6G9 FI18173p1 7.0 2 2 2 20868.57515 2 +A1Z6H4 RE52822p 16.12 8 11 0 283140.6244 10 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 69394.09400000001 8 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 7386.4216 2 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 320770.04240000003 9 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 806560.5165500001 32 +A1Z6R7 FI21445p1 51.79 12 20 12 446106.48677 20 +A1Z6V5 FI01422p 44.02 15 36 15 1462736.32888 30 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 509774.0309 10 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 234214.44379999998 11 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 43081.055 3 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 19580.341 3 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 5609.8760999999995 3 +A1Z7B8 GEO08456p1 21.52 3 10 3 300304.99866 10 +A1Z7G2 MIP13653p 13.39 2 8 2 2922904.224 8 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 379929.38523 12 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 26249.9832 4 +A1Z7K6 FI20236p1 10.06 4 4 4 47599.645000000004 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 356953.9793 10 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 131935.3947 4 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 207172.9367 8 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 1424426.1121 41 +A1Z7V9 FI20020p1 6.93 4 6 1 60914.3155 5 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 16722.933 3 +A1Z7X8 FI02944p 18.53 7 7 7 139380.71409999998 6 +A1Z803 FI02892p 32.35 12 17 12 542355.97 17 +A1Z843 Nodal modulator 3 13.26 15 17 15 329561.7662 16 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 1905761.98895 38 +A1Z871 CAP, isoform B 14.53 25 34 0 407095.8808 6 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 7291474.1479 49 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 383043.6751 7 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 268308.4707 3 +A1Z8G7 FI09243p 16.53 2 4 2 1569.8118 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 22742576.9336 47 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 243021.25137 15 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 41862.644199999995 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 40793.94579 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 2182289.16926 19 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 482639.09946 16 +A1Z933 GEO02273p1 25.58 2 4 2 254887.011 4 +A1Z934 SD19268p 39.46 11 28 11 1267606.4578 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 60178.066 4 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 252746.6593 22 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 13542.8386 4 +A1Z9B5 IP16508p 15.06 3 3 3 52420.138000000006 3 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 5601490.0476 50 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 1769049.8346 22 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 333686.12506 43 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 400558.053 9 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 66008.24759 8 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 589401.4084000001 6 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 5772.8174 2 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 18991.142 2 +A1ZA23 FI18007p1 29.23 9 23 9 693589.79641 22 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 510.66486 1 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 295382.86919999996 9 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 99844.582 6 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 50626.207 4 +A1ZAH3 FI16515p1 4.82 2 2 0 625.2504 1 +A1ZAK3 Protein DEK 4.05 3 4 0 40649.323000000004 3 +A1ZAL1 lysozyme 30.43 5 7 5 210201.21 7 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 679.7697 1 +A1ZAU4 RH39096p 50.48 18 44 0 4237324.95105 42 +A1ZB23 IP19117p 10.88 2 2 2 25156.2978 2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 8856.791 1 +A1ZB68 FI01423p 47.27 11 25 11 938180.14 23 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 5983555.8762 26 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 354015.787 5 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 1488303.7367 22 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 85045.147 2 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 16486.6016 4 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 4117244.5132 39 +A1ZBA5 FI07234p 4.64 2 2 2 95186.283 2 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 70576.4934 6 +A1ZBD8 Mucin-5AC 6.1 7 9 7 84040.8567 7 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 6961.5784 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 1493253.0106 47 +A1ZBK7 Crammer 27.85 2 11 2 348405.365 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 57342.846999999994 3 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 664766.5752 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 448231.8604 14 +A1ZBU5 GNBP-like 3 41.45 4 4 4 98059.345 4 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 54268.074 4 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 4441206.5047 51 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 10418.2602 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 986472.0251 43 +A1ZBX6 lysozyme 14.53 3 4 3 45601.557499999995 4 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 804.84537 2 +A2VEG3 IP16294p 1.06 1 1 0 2087.4622 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 4642.589 1 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 241110.622 5 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 1037652.07784 29 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 53648.78377 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 1650894.7599 19 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 5773850.0432 72 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 7112113.19781 99 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 11040.266599999999 2 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 7580396.65896 37 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 342197.58126 11 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 133447.86932 9 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 2275799.4942 14 +A8DYD1 Combgap, isoform L 11.11 9 11 0 118412.50825 11 +A8DYI6 Prohibitin 69.53 23 83 3 8441668.91366 76 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 576760.63654 27 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 110178.3597 9 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 1883.667 1 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 54575.090200000006 5 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 15039.1934 3 +A8DZ06 Stolid, isoform J 11.43 13 22 0 450729.76409 18 +A8DZ14 FI17828p1 24.09 13 28 7 2112810.6405 25 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 36746.263 4 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 22196.7484 2 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 812479.9328600001 39 +A8E6W0 IP19808p 28.28 5 8 5 99467.9113 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 199483.36 3 +A8JNJ6 Karst, isoform E 2.12 9 9 0 42416.0916 8 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 12537.52417 3 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 49121.189 3 +A8JNP2 arginine kinase 73.87 45 492 2 6137526.9772 21 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 128365.55004 13 +A8JNS4 Starvin, isoform E 10.08 5 6 0 57740.6424 5 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 21471.2467 4 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 166470.94650000002 7 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 65702.1115 6 +A8JQT5 Moesin/ezrin/radixin homolog 1 0.7 2 2 2 379.26004 1 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 16649.6285 2 +A8JQW3 Pinin, isoform B 17.26 5 5 0 32417.759400000003 5 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 77232.424 2 +A8JR01 Kramer, isoform I 1.39 5 5 0 14796.57788 3 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 117813.4223 3 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 212781.1212 8 +A8JR58 Hadley, isoform B 11.24 3 3 2 21828.8647 3 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 9403791.0632 80 +A8JRH3 FI20012p1 71.29 30 91 1 5623993.1924 83 +A8JTM7 Megalin, isoform A 4.74 23 27 23 313774.70235 25 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 88580.1219 7 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 14694.63588 3 +A8JUZ6 MIP03678p 13.29 4 5 0 296878.709 5 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 5396.684 1 +A8JV09 Coronin 0.64 1 1 0 10583.456 1 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1116808.69515 38 +A8WH76 GEO10024p1 51.85 5 19 5 673992.4114999999 12 +A8Y4V5 FI20903p1 8.21 2 2 2 15408.08093 2 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 4196.5665 2 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 5746515.7344 20 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 55929.787800000006 3 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 13039.968 1 +B7YZH1 FI20143p1 5.74 3 3 0 21694.139199999998 3 +B7YZN0 Syndecan 13.56 7 9 0 124032.4002 7 +B7YZN4 GH02741p3 38.46 3 3 3 95937.11899999999 3 +B7YZN8 GH02741p1 10.53 1 1 1 32434.453 1 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 45054.43183 8 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 10111240.004519999 83 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 5605.336 1 +B7YZV2 Phosphodiesterase 10.49 9 10 0 138965.60439999998 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 755913.15703 30 +B7Z001 Fatty acid synthase 18.78 43 71 0 3958971.51273 69 +B7Z002 Kismet, isoform C 1.2 4 4 1 8389.192 1 +B7Z005 Drongo, isoform I 13.62 6 7 0 24885.04095 5 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 12696.894699999999 3 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 62618.4338 7 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 30342.3488 3 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 86901.8934 7 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 30407.9129 4 +B7Z0C9 GH15104p1 23.16 3 5 3 113066.05799999999 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 27840330.12133 129 +B7Z0M0 FI17308p1 21.31 2 2 1 4138.846 1 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 24398.3864 2 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 256816.98343999998 9 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 435277.2164 19 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 62199.2938 5 +B7Z107 GH09380p1 43.48 4 7 4 329869.836 6 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 23953.791 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 31992.1588 4 +C0HDP4 MIP05618p 5.36 2 2 0 24883.896200000003 2 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 2395121.13316 44 +C7LAG1 CoRest, isoform G 6.67 5 5 1 16961.3474 4 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 3346655.15905 68 +C9QP70 MIP12608p 25.61 4 4 4 45868.8443 3 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 1653730.57454 24 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 130599.9571 10 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 60585.72456 6 +D0Z756 MIP14966p 31.93 16 55 0 3716515.31858 53 +D1YSG0 Bent, isoform F 4.91 37 40 0 592967.5494 38 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 546640.488 13 +D3DMM0 MIP15702p 23.27 9 24 0 1410278.908 23 +D3DMM4 MIP15217p 36.68 27 74 0 5640480.53273 66 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 278317.7738 10 +D5SHT6 MIP21537p 7.48 3 3 0 15987.0668 2 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 6274.2124 2 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 250605.6772 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 424631.0063 22 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 345605.80405 20 +E1JGR3 GEO02620p1 24.62 3 4 3 6568.99084 3 +E1JGY6 Hulk, isoform F 16.85 27 41 0 1390323.2804 40 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 371087.5589 16 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 20225.975 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 4640.5986 1 +E1JH90 Patronin, isoform F 2.57 4 4 0 52195.493 4 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 1394450.16516 53 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 52403.7894 8 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 7330.292 1 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 268583.55000000005 4 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 154943.30000000002 5 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 168199.4047 7 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 110800.08737 9 +E1JHP9 Galectin 5.97 2 2 0 20485.538 2 +E1JHT6 Reticulon-like protein 32.13 17 35 0 3040813.3339 33 +E1JHT9 Reticulon-like protein 36.04 8 13 0 2750.4937 1 +E1JI40 Vermiform, isoform I 19.64 10 13 0 499441.91664 11 +E1JI59 Schizo, isoform D 3.03 2 2 0 4227.434 1 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 167035.5398 6 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 9625.92694 2 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 220788.146 5 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 2002.1376 1 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 84848.42782000001 4 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 34453.7152 4 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 2475.1195399999997 3 +E1JIY8 L antigen family member 3 20.72 3 5 3 143549.5503 5 +E1JJ33 Complexin, isoform U 71.33 11 97 2 9144634.70138 90 +E1JJA4 Dynamin 38.05 35 64 0 1089046.4872 56 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 10309.7841 2 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 928.66644 1 +E1JJG5 Phospholipase A2 7.53 2 2 1 33492.913 2 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 6187496.83782 94 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 36951.1842 7 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 367993.6425 10 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 44603.195 4 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 1474547.91335 51 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 55114.5377 4 +E2QD54 Natalisin, isoform D 5.61 3 3 0 36285.537599999996 3 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 375272.50523 15 +E2QD98 Protein PALS1 8.22 17 22 0 278296.4185 20 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 99878.0351 11 +E8NH67 Asperous, isoform B 58.41 20 78 0 4107966.8798700003 61 +F0JAP7 LP18071p 19.65 5 5 0 64469.4762 4 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 106521.73434 8 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 9686502.97746 121 +H1UUB1 GEO12465p1 49.61 5 18 1 790814.1594 17 +H8F4T3 Regucalcin 46.08 10 21 0 535835.40455 20 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 117876.39330000001 4 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 34715.48388 7 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 3848118.2226 37 +L0MPN7 Asator, isoform H 11.57 11 14 0 98335.1821 12 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 133390.31127 18 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 2293.7485 2 +M9MRX0 Limpet, isoform J 28.01 28 72 0 5798865.16147 66 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 694821.97531 58 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 167220.16876 13 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 113614.47677 8 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 95225.0003 3 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 7627.4395 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 928018.094 22 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 2520366.853 16 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 3075045.2764999997 58 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 19411.0231 4 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 52693.118 3 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 471975.261 9 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 1102271.67203 30 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 166055.17406 18 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 267009.4629 13 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 102137.8449 9 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 6792.1609 2 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 154368.38947 10 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 36669763.6914 414 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 7824.419150000001 2 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 1971.6694 1 +M9NDE0 pantothenate kinase 5.37 3 3 0 37413.3272 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 26019.21176 7 +M9NDS9 chitinase 0.98 4 4 0 46074.014500000005 3 +M9NDX8 Neurabin-1 3.12 6 6 0 8098.022 3 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 125501.1464 7 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 124994.9518 10 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 13629.5029 3 +M9NEF2 Histone deacetylase 3.95 3 4 0 2046.6986 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 6410.249 1 +M9NEW0 LD39232p2 63.33 10 18 10 778680.1722 18 +M9NEX3 Cytochrome b5 63.21 7 22 0 2487684.4162000003 21 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 146407.057 3 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 14313.181 2 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 123489.5185 5 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 91785.7527 8 +M9NFC0 Troponin I 50.75 16 66 5 2828205.8123 15 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 519965.56759999995 4 +M9NFH3 Lasp, isoform D 36.88 10 31 1 371899.1742 3 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 555063.50176 38 +M9NH07 Upheld, isoform N 53.05 36 130 0 15401463.527999999 120 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 304590.79532 20 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 198012.8278 10 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 18728.8707 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 1172831.9287 49 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 2087.406 1 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 98630.639 4 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 20107.758 2 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 8020053.91206 185 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 58500.1435 2 +M9PBM3 Cysteine protease 8.54 3 4 0 90017.8043 4 +M9PBN2 Apolipoprotein D 24.08 6 18 0 679662.809 17 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 646885.4579 19 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 25151.348 1 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 33785.641 2 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 463363.9143 21 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 1141422.71356 22 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 62926.78217 5 +M9PBW9 Rhea, isoform G 8.06 23 26 0 280872.1314 23 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 461194.8311 16 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 53558325.51433 186 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 733.95514 1 +M9PC74 Reticulocalbin-3 24.48 10 18 0 1052206.3523 17 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 9104.902 1 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 79183.4247 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 7208.9897 1 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 58669.281 5 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 166285.52315 12 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 175291.95955 23 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 29983.8197 5 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 100863.227 6 +M9PCT7 Bunched, isoform O 19.79 4 11 1 35972.0493 3 +M9PCU0 FI21215p1 31.45 40 59 2 124606.304 3 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 203810.8963 11 +M9PD73 TEP1-F 26.63 37 63 0 3147725.4758 63 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 1087772.5528 19 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 1462.9611300000001 2 +M9PDB2 Varicose, isoform E 8.51 6 6 0 70448.6445 6 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 1673026.5133 26 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 13530.3793 2 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 118551.3992 13 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 140064.5506 9 +M9PDU4 Acyl carrier protein 19.34 5 38 3 21263247.0072 38 +M9PDV2 Tetraspanin 12.89 3 5 0 68393.7674 5 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 779031.22546 41 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 222194.62224 12 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 12961321.4321 58 +M9PE32 Fife, isoform D 14.76 16 27 1 225276.61745 23 +M9PE35 RabX6, isoform B 5.86 1 1 0 529.2905 1 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 1456.73151 2 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 6858.09937 2 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 60458.823970000005 12 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 49310.167 4 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 5585.0984 2 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 22759.61854 6 +M9PEC1 IST1 homolog 22.5 9 19 0 505417.1408 18 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 328073.6519 11 +M9PEG1 Uncharacterized protein 34.58 16 38 16 2180085.734 38 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 5617647.8959 225 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 78634.9769 6 +M9PEL3 Quemao, isoform C 30.67 10 17 0 514535.968 14 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 83006.49536 8 +M9PET3 Simjang, isoform D 4.11 3 3 0 2876.77214 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 30327.1154 4 +M9PF16 Spectrin beta chain 29.64 75 147 5 4526416.38546 131 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 1840016.06855 34 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 12015.91935 3 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 32719.298400000003 6 +M9PFH7 Tartan, isoform B 3.73 3 3 0 4441.3275699999995 2 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 10059.4016 2 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 66261.80944 6 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 5835.819450000001 2 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 54862.875 1 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 6361.0796 3 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 754148.0172 22 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 251952.57386 15 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 158494.6473 9 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 31718773.74001 185 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 162228.48479999998 5 +M9PGC4 Shaggy, isoform P 19.72 18 54 0 938.0452 1 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 67314.117 3 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 723165.8598000001 13 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 353960.33825 23 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 37659.21 2 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 516989.69399999996 24 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 1257689.3538 25 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 66376.685 3 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 146387.6821 14 +M9PHX2 Visgun, isoform E 8.78 2 5 1 27989.403 5 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 20204.514 1 +M9PI33 Inositol oxygenase 6.91 2 4 0 149856.98489999998 3 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 4169.2551 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 29607.797 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 2926.5813 1 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 27177.578 2 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 106570.708 4 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 6042.776 1 +M9PJQ5 Troponin I 49.46 15 70 0 1045122.4920999999 14 +O15971 LD39986p 23.53 5 25 2 363166.315 4 +O16158 Calcium-binding protein 52.72 8 47 8 4683093.6667 39 +O17452 LD20793p 27.83 6 24 4 1765008.16864 21 +O18332 FI01544p 60.98 11 59 9 2847512.38692 43 +O18335 Rab11 64.49 14 53 14 5608120.8919 46 +O18336 Ras-related protein Rab-14 36.28 8 18 1 794317.798 15 +O18338 LD44762p 33.33 7 28 1 11785.719000000001 2 +O44226 Elongin-B 97.46 10 37 10 2317301.74622 32 +O44434 QKR58E-3 22.08 7 9 6 80491.45360000001 7 +O46052 EG:152A3.3 protein 22.91 6 6 1 87298.33899999999 6 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 1450648.96552 45 +O46079 Protein KTI12 homolog 7.69 3 3 2 836.6268 1 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 75070.50110000001 6 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 148165.2981 5 +O61604 Fimbrin 32.5 22 57 2 3818532.167 56 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 59006.336599999995 7 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 31840.982900000003 4 +O76521 Importin subunit alpha 7.0 4 6 4 88043.6719 6 +O76752 Sepiapterin reductase 36.02 9 16 9 488908.79000000004 14 +O76877 EG:132E8.3 protein 20.62 3 8 3 535091.7348000001 8 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 8454261.32671 25 +O77259 EG:115C2.5 protein 4.5 1 1 0 2781.7783 1 +O77425 Ribokinase 19.41 5 5 5 51916.749899999995 4 +O77430 GEO01111p1 83.95 15 32 13 1622976.23174 28 +O77434 EG:34F3.8 protein 34.6 6 12 1 341087.88036 7 +O77477 LD24471p 22.41 8 11 8 239006.40613999998 10 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 23677.57 1 +O96692 small monomeric GTPase 27.47 5 6 2 317761.8764 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 203061.9727 6 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 806.2478 1 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 26371.3336 3 +O97059 Ccp84Ab 44.8 7 12 0 351781.28020000004 12 +O97062 Ccp84Ae 70.19 12 29 12 1055400.18754 26 +O97064 Ccp84Ag 39.27 6 11 6 319074.82379999995 10 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 61042.8755 2 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 2975403.2815 31 +O97111 LD29223p 11.68 4 6 4 28245.3533 5 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 2054.544 1 +O97365 BM-40 26.32 10 12 10 448194.73064 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 3992570.3416 28 +O97428 Ciboulot, isoform A 37.21 4 6 1 131382.545 6 +O97454 Protein BUD31 homolog 21.53 4 5 4 53895.1872 4 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 205129.6207 11 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 14836232.63162 135 +P92181 Cuticle protein DCP2 37.61 3 10 3 117954.1368 8 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 60879.576 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 5934258.2653 77 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 566187.1243 9 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 149401.542 6 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 2213.2866 1 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 3599535.58595 105 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 10308.521 1 +Q0E8P5 FI05614p 22.24 11 21 11 409106.6129 18 +Q0E8S7 Homer, isoform E 45.76 21 61 4 4477307.8243 54 +Q0E8U4 FI09636p 17.67 5 6 5 99892.37090000001 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 1404554.95958 23 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 122565.66279999999 5 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 5358489.918 52 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 1198838.2864 18 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 613561.04374 24 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 26840.6863 3 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 1440638.75352 57 +Q0E9E6 RE33655p 5.43 3 3 1 33475.319 3 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 828637.31709 20 +Q0E9G4 CG1600-PA 14.96 4 7 0 141051.22460000002 7 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 589184.70735 15 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 3778.2595 1 +Q0KHR7 Septin 13.58 6 8 0 138952.0257 7 +Q0KHX7 FI18193p1 7.31 9 9 0 30478.0248 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 21022820.38905 128 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 32848.003899999996 4 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 285794.98 12 +Q0KI39 FI16806p1 18.15 3 5 1 2949.581 1 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 764525.7189 24 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 128038.4995 12 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 221884.8069 7 +Q0KIB0 Sidestep III 0.95 1 1 1 5198.414 1 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 70489.379 5 +Q1RL12 IP16413p 55.9 15 82 2 301127.4056 4 +Q24090 GH08712p 12.43 5 7 5 108620.25674 6 +Q24253 AP complex subunit beta 20.63 16 21 16 781931.0708 21 +Q26459 EN protein binding protein 26.32 12 22 0 329608.10271 21 +Q29QY7 IP15859p 22.54 3 5 1 532621.709 5 +Q2MGK7 GEO13330p1 48.03 7 9 7 203451.4966 9 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 15755.404 2 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 27658.057 1 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 15661408.20134 152 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 72441.02819 6 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 1185017.6622000001 16 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 80208.23091 5 +Q4QQ49 IP09595p 7.43 2 3 2 5457.86734 3 +Q4QQ70 IP09819p 23.98 7 9 7 68059.7177 7 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 4631.53 1 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 82413.4386 5 +Q4V619 IP07950p 27.16 5 6 1 28874.573599999996 5 +Q4V625 lysozyme 13.5 2 4 2 51097.1477 4 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 783753.4026 16 +Q500Y7 GEO11443p1 54.39 4 28 4 1524639.0419 24 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 9789.0908 2 +Q59E01 FI02065p 7.44 5 6 0 20694.201699999998 3 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 24541.9271 4 +Q5BIA9 RE10908p 0.99 1 1 1 19510.273 1 +Q5LJT3 MIP01391p 25.1 4 10 4 279611.5847 10 +Q5U124 alpha-glucosidase 20.95 11 16 0 721633.7019 14 +Q5U126 GEO11286p1 59.42 7 33 7 5783975.7506 31 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 248413.65723 11 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 20512.521 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 1663371.058 26 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 31245.13945 3 +Q6IGN6 HDC05827 50.0 4 7 4 237833.1653 7 +Q6IGW6 GEO13367p1 44.23 2 5 2 50667.6788 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 4000922.4104 19 +Q6IIF2 GEO11103p1 24.29 3 4 3 8504.6979 3 +Q6IL43 GEO11093p1 27.71 2 4 2 279811.529 4 +Q6NL44 GH28815p 13.18 6 6 6 39543.4225 5 +Q6NLJ9 AT19138p 53.41 5 6 5 67976.0448 4 +Q6NMY2 RH54371p 36.81 6 28 6 2506650.5356 18 +Q6NNV2 RE44043p 5.5 2 2 0 166688.173 2 +Q6NNV7 RH03309p 47.37 7 19 1 1176931.21422 18 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 68040.6828 5 +Q6NP72 GEO09659p1 33.33 4 18 4 664453.9699 18 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 50317.569500000005 3 +Q76NR6 Regucalcin 81.19 23 173 0 17919206.0864 156 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 441040.9782 11 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 25188.5955 5 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 460608.03959999996 13 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 2279336.05754 26 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 4318.025 1 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 1196668.7464299998 27 +Q7JQX9 FI14001p1 7.6 5 5 1 34204.56934 5 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 15196395.31137 109 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 719868.429 16 +Q7JRB2 RH09039p 4.52 1 1 1 613.31964 1 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 86832.93995 3 +Q7JRF1 RE48509p 8.67 2 3 1 16486.597999999998 2 +Q7JRH5 RE28271p 5.61 3 3 3 20540.206700000002 2 +Q7JRL9 GH25289p 70.78 13 48 1 5558510.9444 47 +Q7JRN6 GH06388p 11.21 3 8 3 71501.0918 6 +Q7JS69 FI04632p 40.84 11 75 1 1476927.3392999999 14 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 9103.3397 3 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 17789.63 1 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 3124461.1448 33 +Q7JV09 GH28348p 6.55 7 8 3 87210.11 8 +Q7JV69 SD11922p 10.96 4 6 4 231798.3485 6 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 68297.07920000001 4 +Q7JVH6 LD24696p 37.3 11 25 10 1099529.0495 15 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 361004.0976 10 +Q7JVK6 Translin 22.13 5 11 5 394667.23513000004 10 +Q7JVK8 GEO08987p1 71.92 10 16 10 901189.3262 15 +Q7JVM1 GH25962p 11.79 3 6 3 55902.384399999995 4 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 245831.77490000002 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 384538.377 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 431807.91 9 +Q7JW07 LD08826p 5.63 1 1 1 2341.3323 1 +Q7JW48 RE12410p 2.23 1 2 1 16350.103 1 +Q7JW66 LD21545p 4.83 2 2 2 46949.85 2 +Q7JWD6 Elongin-C 63.25 7 34 7 2999778.5294399997 28 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 2952606.7429 39 +Q7JWH5 RING-box protein 2 19.47 1 1 1 11143.604 1 +Q7JWQ7 RE01730p 14.62 5 8 5 121972.0391 8 +Q7JWR4 GH19585p 9.09 1 1 1 27483.39 1 +Q7JWU9 AT07420p 30.12 8 10 8 115006.26550000001 8 +Q7JWX3 GH10112p 35.92 11 23 11 657975.0966 21 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 707748.9317999999 9 +Q7JX94 Phospholipase A2 15.61 3 4 3 5390.7955999999995 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 406990.95279999997 12 +Q7JXB9 Endonuclease 16.77 5 5 5 735345.362 5 +Q7JXC4 CG6459 protein 35.74 7 44 7 8151421.3813 42 +Q7JXW8 Off-track2 12.24 5 5 5 71165.9443 4 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 562131.0133 12 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 1247604.214 7 +Q7JYW9 Phosphotransferase 22.25 10 12 10 484098.4511 11 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 38642.4425 3 +Q7JYZ0 lysozyme 39.13 4 10 4 161849.9771 10 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 809024.70297 19 +Q7JZB1 RE49860p 3.58 1 1 1 18653.244 1 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 2056718.24762 29 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 6185.46085 3 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 201454.144 4 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 4699267.57017 36 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 219398.60071 19 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 5616.646 2 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 1943958.491 29 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 2357674.1454 31 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 117436.4833 8 +Q7K076 GEO08269p1 34.35 3 4 0 107673.5673 4 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 30139619.28959 167 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 8550.597 1 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 1487348.16543 31 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 188973.94285 12 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 511.9722 1 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 43138.671 4 +Q7K0S1 LD39211p 3.66 2 2 2 42941.4973 2 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 522337.57665 24 +Q7K0S6 LD36817p 27.56 10 14 10 521057.9276 14 +Q7K0T7 LD33470p 2.07 2 3 0 6184.296 1 +Q7K0W1 LD27406p 3.67 2 2 2 23327.6117 2 +Q7K0W4 LD27203p 57.93 19 64 18 11339503.76683 60 +Q7K0X9 LD23667p 28.72 6 13 6 221679.97095 12 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 102727.4077 3 +Q7K127 Alpha-galactosidase 35.97 13 22 13 690176.62998 22 +Q7K130 Dynactin subunit 4 13.04 5 6 5 26244.7686 4 +Q7K148 Proteasome subunit beta 17.73 5 7 5 106230.5467 7 +Q7K159 LD06557p 13.11 4 5 4 28593.5702 5 +Q7K180 LD02709p 23.18 10 13 10 209715.2004 12 +Q7K188 GEO05126p1 32.9 7 45 7 11427764.98963 40 +Q7K1C0 GH23780p 50.5 7 12 1 668734.9914999999 11 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 364617.4634 10 +Q7K1C5 GH21176p 6.62 4 5 4 324212.3119 5 +Q7K1H0 GH09096p 20.37 6 7 6 161593.7837 7 +Q7K1M4 SD04017p 24.68 8 15 8 380935.4157 14 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 68259.7 4 +Q7K1W5 LD35843p 35.11 14 28 14 1902263.1847 27 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 41776.313 7 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 1418204.3329 27 +Q7K2E1 LD05247p 11.72 7 10 7 183852.8874 8 +Q7K2K2 FI04612p 7.06 2 3 1 22839.2949 2 +Q7K2L7 GH27120p 17.59 3 12 3 426594.8819 10 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 75198.0565 6 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 58640.949700000005 4 +Q7K2P3 GH20817p 63.91 15 37 1 781635.8801 32 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 168954.67637 6 +Q7K2W6 tyrosinase 26.81 17 23 17 142811.06484 19 +Q7K332 GH17623p 30.96 8 10 7 246014.14529999997 9 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 666396.214 16 +Q7K3E2 LD34147p 66.97 33 68 33 4523301.9518 64 +Q7K3H0 LD28067p 2.56 5 7 0 45330.539600000004 4 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 2109218.11024 37 +Q7K3N4 GH26015p 15.98 7 11 7 250278.3203 10 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 140762.87587 8 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 355961.2113 16 +Q7K3W4 GH08941p 26.81 8 27 8 1413499.97 26 +Q7K3Y9 Spondin-1 4.58 3 3 3 3616.3097 2 +Q7K3Z3 GH01724p 56.76 18 53 18 1283524.41854 47 +Q7K485 Cathepsin D 28.83 8 27 8 2757168.6801299998 26 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 111652.815 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 13205.4188 2 +Q7K4J7 LD36653p 7.38 2 3 2 37007.1045 3 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 56006.8167 4 +Q7K4T8 LD23856p 6.99 3 4 3 9516.021630000001 4 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 1281.33237 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 210047.3726 9 +Q7K519 GH16429p 23.9 7 8 7 107175.90386 8 +Q7K533 GH14572p 5.48 2 2 2 14816.4747 2 +Q7K549 GH13040p 21.35 8 10 8 72769.8876 10 +Q7K568 GH10642p 21.49 6 8 6 89673.6524 5 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 4255051.1459 62 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 292359.2809 14 +Q7K5M6 GH04176p 37.5 9 17 9 911581.17404 15 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 885522.28365 23 +Q7K860 FI07231p 39.22 6 19 6 5031376.56 19 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 2007207.6952 16 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 11744.700200000001 2 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 36421.0165 5 +Q7KK54 MIP07328p 10.52 7 7 7 87268.64207 7 +Q7KK90 GH14654p 50.0 8 36 8 4790640.210200001 25 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 1145925.7503 24 +Q7KLE5 Amphiphysin 37.04 23 65 2 4151559.8673 61 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 262409.7646 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 1858514.5641 12 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 142405.0786 5 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 53781.230800000005 5 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 1743910.1512 22 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 3275592.30789 66 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 12459.3106 2 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 106480.8279 7 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 9503.339899999999 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 1786774.1215599999 36 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 11221190.20877 99 +Q7KND8 FI09619p 6.03 4 5 4 44652.856499999994 4 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 1607825.8284999998 16 +Q7KRT4 GH07253p 2.47 1 1 0 6151.7837 1 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 49506.104569999996 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 132966.5088 6 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 534993.0854999999 12 +Q7KSE4 GH05443p 2.78 2 2 2 9669.9074 2 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 659961.9917 17 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 3749712.9628 33 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 28743.3655 3 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 18493.2635 5 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1206319.9692799998 26 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 3185198.78457 48 +Q7KT58 GH08155p 4.4 1 1 1 4822.993 1 +Q7KT70 FI18641p1 0.94 1 1 1 4512.835 1 +Q7KTA1 HL01444p 20.67 8 10 8 126921.16829999999 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 491465.0295 26 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 6725777.6377 77 +Q7KTN9 FI01009p 3.11 2 2 0 15184.77 2 +Q7KTP7 LP22840p 45.86 7 12 7 444429.88415000006 12 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 6321735.15717 83 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 894231.3766999999 31 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 2658.597 1 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 950050.28375 20 +Q7KUD4 phospholipase A2 6.43 6 7 0 43990.8451 6 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 180153.77631 14 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 4410.3827 2 +Q7KUT5 Protein MIX23 26.89 3 3 0 50957.54528 3 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 189113.7685 6 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 51389.058300000004 6 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 443232.4902 32 +Q7KV27 alanine transaminase 54.93 32 121 0 18184885.59789 115 +Q7KV34 Pinkman 57.32 33 64 33 4562991.80789 62 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 50989.501000000004 4 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 547892.28835 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 55805.3908 4 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 19354849.8796 83 +Q7KY04 small monomeric GTPase 23.47 5 14 4 14832.497000000001 2 +Q7PL91 GEO11417p1 30.85 5 12 5 1003667.0608699999 11 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 5286.8442 3 +Q7PLI0 P120 catenin 17.03 14 17 14 400845.19996999996 15 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 670402.3016 26 +Q7PLS1 LD01937p 14.61 5 6 0 161326.24599999998 4 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 54577.387500000004 4 +Q7YU88 SD08871p 4.1 3 3 0 2197.8625 1 +Q86B44 Glutathione synthetase 19.4 8 9 0 113633.74879999999 8 +Q86B74 WASp, isoform C 10.53 4 4 0 50080.6231 4 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 24109.8694 2 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 10176.905 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 536612.7044 16 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 250330.3289 14 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 956218.39697 26 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1434145.1148 22 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 2014544.0585 21 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 1107554.11295 36 +Q86BS3 Chromator, isoform A 35.53 26 44 26 962585.47385 39 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 10940.672999999999 3 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 999739.5296 25 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 73027.122 4 +Q8I077 BcDNA.LD22910 1.76 2 2 2 10516.592499999999 2 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 208761.8933 7 +Q8I0D4 RE20510p 21.32 17 37 0 2945080.0895000002 35 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 47593.0454 5 +Q8I0P9 acid phosphatase 9.67 4 4 0 117198.9742 3 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 1843970.3861 23 +Q8I930 GH14147p 3.57 3 4 0 20132.316 3 +Q8I941 GH16843p 32.88 8 25 8 943107.32393 24 +Q8IG84 SD21996p 13.42 14 125 0 470.92188 1 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 33950.652 2 +Q8IGY1 RE08101p 33.19 42 295 0 30796624.99627 159 +Q8IH23 GEO02102p1 67.41 6 14 6 1507385.9481000002 14 +Q8IM93 FI18814p1 35.27 16 37 16 1432937.14426 30 +Q8IMF4 RE24176p 6.68 3 3 0 20233.255400000002 3 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 1225025.37027 34 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 28281.92 3 +Q8IMQ8 RH29536p 46.4 14 49 0 6191867.01912 46 +Q8IMT3 IP12392p 10.71 4 5 4 88463.917 4 +Q8IMT6 FI01822p 10.66 5 6 5 134339.053 6 +Q8IMU2 RE10237p 19.18 4 5 0 135370.759 5 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 36091.4832 4 +Q8IMX4 FI04408p 10.85 4 6 0 76097.6158 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 311052.02683 10 +Q8IN49 MIP05539p 11.03 10 11 10 215843.93457 9 +Q8IN51 FI17609p1 37.59 7 14 7 482352.18854 14 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 62979.802 2 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 118787.8163 4 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 36102.65836 4 +Q8INH5 Aminopeptidase 7.53 7 11 0 184181.49099999998 11 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 38149.091 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 40881.178 2 +Q8IP52 RE16941p 0.86 1 1 1 6685.663 1 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 245417.5504 7 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 946111.02 17 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 37165.2039 5 +Q8IP97 Peroxin-19 35.62 9 32 9 2923052.5054 28 +Q8IPA5 RE15581p 10.0 3 3 0 83802.976 3 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 27224.176399999997 3 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 1300664.3758999999 14 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 10408138.6663 99 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 86861.8577 8 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 15388.206 1 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 19280.675000000003 2 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 856341.8035 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 55393.7733 4 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 154652.54750000002 6 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 760.2945 1 +Q8IPT9 SD05439p1 39.06 11 32 0 1277841.02632 27 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 3376108.11544 48 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 12028.6157 2 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 25668.2477 4 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 51759.5837 7 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 6360.995 1 +Q8IQB7 MIP21654p 9.44 3 3 3 139342.7548 3 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 226414.6675 12 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 91344.753 5 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 84542.394 3 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 24460.697 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 138001.7032 9 +Q8IQH0 FI12817p 4.98 8 9 1 118917.3413 8 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 215600.509 9 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 289279.46786000003 23 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 16530.1735 2 +Q8IQU1 LD36620p 19.62 9 13 1 102313.38799999999 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 43331.64 2 +Q8IQW5 RE23625p 70.83 13 77 3 7424934.05449 66 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 47458.9684 5 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 37710.17506 3 +Q8IR72 FI19011p1 10.06 1 1 1 11677.513 1 +Q8IR76 FAD synthase 16.33 4 4 0 40051.0012 4 +Q8IRD0 RH17559p 42.86 3 8 3 455795.1054 8 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 19574999.3616 70 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 510169.61371999996 20 +Q8IRI5 Trio, isoform D 15.92 12 15 2 152577.82376 13 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 20676012.42534 129 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 47264.191 2 +Q8MLP9 GEO08457p1 33.04 4 5 4 61853.47583 5 +Q8MLQ0 FI14118p 11.84 1 1 1 3848.6453 1 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 878563.2615 12 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 572502.1144000001 16 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 32072.4558 3 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 695064.6172 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 5749819.4014800005 96 +Q8MQP2 MIP16184p 2.67 1 1 0 49011.89 1 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 11656.6491 2 +Q8MRM0 GH16740p 27.0 6 9 6 882493.9016999999 8 +Q8MRS5 AT03104p 0.71 1 1 0 5296.0186 1 +Q8MRT7 SD26038p 13.79 3 4 3 72174.226 4 +Q8MRW1 SD19278p 14.08 2 4 2 183522.0865 4 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 9298.2906 5 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 8006.415 1 +Q8MSI2 GH15296p 85.19 22 138 22 27211930.13869 121 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 49248.4673 6 +Q8MST5 Tubulin beta chain 40.7 17 120 0 1491915.6952 28 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 6610664.7629 69 +Q8MZ07 GEO07581p1 6.16 1 1 1 46469.965 1 +Q8MZI3 RNA helicase 14.91 11 20 5 471326.8185 10 +Q8SWS2 RE29468p 77.51 8 32 0 1002683.025 26 +Q8SWS3 RE26528p 17.13 2 6 2 161666.45446 5 +Q8SWZ6 RH51312p 15.35 3 7 3 30540.681 5 +Q8SX06 GEO08318p1 15.43 2 2 2 6742.8529 2 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 9711.455 1 +Q8SX35 GEO07743p1 55.78 5 9 1 164013.09855999998 8 +Q8SX50 RE04530p 17.6 6 7 0 96400.6088 7 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 11404.0273 2 +Q8SX57 LD44221p 38.91 7 17 7 396819.8024 17 +Q8SX78 LD05679p 21.72 9 9 9 146120.1115 9 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 68343.459 6 +Q8SXC2 FI04487p 9.56 5 5 5 42948.45033 5 +Q8SXD5 GH02216p 57.69 13 41 2 4151626.12512 39 +Q8SXE1 RH69521p 4.68 2 2 2 35172.0327 2 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 102779.156 6 +Q8SXF2 RH40246p 8.18 4 4 4 75579.678 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 49240.335 2 +Q8SXK0 RE18748p 6.55 2 2 2 30249.584 2 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 683912.37139 22 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 31838.907 7 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 923375.4717999999 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 2479.4111 1 +Q8SXS0 RE40914p 16.23 5 6 5 54900.743 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 2054624.63007 30 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 23635.6296 4 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 260811.309 7 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 3772.4878 1 +Q8SY67 lysozyme 14.47 2 6 2 342838.358 6 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 955066.0850000001 7 +Q8SYC4 RE68566p 3.93 2 2 2 69335.888 2 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 3794349.02812 68 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 1980746.5623 25 +Q8SYH8 RE57644p 19.05 5 10 0 183340.27254 9 +Q8SYJ2 GEO09626p1 67.47 10 68 10 10878395.9504 65 +Q8SYQ4 RE42475p 69.59 10 50 10 3826390.05476 45 +Q8SYQ8 RE40412p 27.94 4 9 4 104338.72527 9 +Q8SZK5 RH26533p 16.4 3 4 3 142004.39039999997 3 +Q8SZK9 HL04814p 59.31 15 64 15 8648208.38884 61 +Q8SZM2 RH04334p 28.15 9 35 9 5814410.0882 33 +Q8SZN1 GEO08217p1 73.39 10 27 5 1964893.0000999998 27 +Q8T0I9 GH27479p 28.88 11 16 1 477183.6198 14 +Q8T0J5 GH26851p 40.42 12 39 0 5113691.002 39 +Q8T0N5 GH17516p 19.54 8 15 8 699304.4767 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 67458.01879999999 5 +Q8T0V2 GH02495p 25.5 11 20 0 376146.24700000003 15 +Q8T389 Endophilin B 43.12 16 71 0 10259.3642 2 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 38108.3085 5 +Q8T3W8 Venom allergen-1 12.6 4 6 0 66109.3585 5 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 5330.173 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 1513924.34256 31 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 4394017.72536 76 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 9123.863299999999 2 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 7960.0083 1 +Q94513 Boundary element associated factor 18.79 5 8 1 73971.73210000001 7 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 27890.231 2 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 59294.371 3 +Q95NU8 GH16255p 14.82 7 11 7 209489.873 10 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 17167.6964 4 +Q95PE4 GEO07784p1 5.56 1 1 1 7082.603 1 +Q95R34 GH16463p 12.62 4 5 4 103226.5505 4 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 129440.00971999999 5 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 71278.86254 8 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 32140411.13171 158 +Q95RC5 LD44506p 4.95 3 3 3 19017.885599999998 3 +Q95RE4 LD37574p 51.42 13 23 0 57758.14422 18 +Q95RF6 LD34461p 34.5 4 12 4 313656.08575 11 +Q95RI2 LD28549p 31.37 9 11 9 160020.8781 11 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 77612.9521 5 +Q95RP1 LD18295p 10.71 2 2 2 23181.2992 2 +Q95RQ1 LD16414p 3.32 2 2 2 7248.9637999999995 2 +Q95RR6 LD15002p 64.6 18 79 0 67355.503 2 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 308268.4176 8 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 823252.6606 7 +Q95RY2 LD01461p 45.04 9 18 2 354884.3308 15 +Q95SH0 GH26463p 2.44 2 2 2 7272.3316 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 674492.5557 23 +Q95SH7 GH26007p 3.49 1 2 1 175051.364 2 +Q95SI7 GH23390p 75.09 18 61 18 4306679.94 56 +Q95SN8 GH12395p 15.49 4 7 4 233981.515 5 +Q95TK5 LD44914p 21.21 9 14 8 285689.5234 12 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 1852991.65803 30 +Q95TP0 LD34582p 4.51 2 2 2 10820.599 1 +Q95TZ7 GH19182p 85.32 28 147 0 17191738.07338 119 +Q95U15 GH14252p 83.65 34 259 0 5667183.9714 29 +Q95U34 GH11113p 30.82 13 27 13 1714093.5009 26 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 351609.4522 9 +Q960D4 SD06560p 20.91 13 13 0 444958.8808 13 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 22995639.60317 96 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 850406.48934 25 +Q961A8 LD25351p 2.07 1 1 0 5222.145 1 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 114194.98939999999 3 +Q961B9 LD24073p 3.72 2 2 2 48103.666 2 +Q961C8 LD22649p 9.84 4 4 0 48892.708 4 +Q961E7 phosphorylase kinase 7.88 4 5 0 78183.689 3 +Q961K6 GH19047p 3.18 2 2 2 2591.3157 1 +Q961Q8 GH10454p 8.89 4 5 4 69397.4267 5 +Q961T9 GH07914p 32.94 6 12 6 589016.3653 12 +Q961X4 Combover, isoform B 17.43 11 13 0 62359.502739999996 12 +Q966T5 Paxillin, isoform D 28.93 7 20 4 111711.138 6 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 93894.73672 7 +Q9I7H8 LD37276p 14.29 4 5 4 38865.6094 4 +Q9I7I3 GH12831p 12.97 4 4 4 54860.581699999995 4 +Q9I7J0 GH21596p 72.19 11 40 11 3251862.91121 34 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 53174.583999999995 2 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 83214.4799 5 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 1177530.9203 24 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 2082322.1276 23 +Q9NCC3 Sorting nexin 15.58 8 10 8 417583.2619 10 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 19411.41196 2 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 7140.8944 2 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 471648.3322 8 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 163052.92572 14 +Q9U6P7 FI18813p1 10.55 5 7 5 226131.3691 7 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 2050356.12127 59 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 116151.9348 7 +Q9V393 Kurtz arrestin 5.32 2 3 2 28023.9722 2 +Q9V396 Carbonic anhydrase 58.15 15 45 15 2649623.8547 42 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 42322.8506 3 +Q9V3C8 DShc protein 5.62 2 2 2 24159.3165 2 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 388291.71525999997 16 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 90131.417 5 +Q9V3E7 LD24793p 42.86 14 26 14 534438.77714 24 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 20722.1658 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 450826.80700000003 14 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 357035.3944 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 273778.61230000004 9 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 2532371.2798 55 +Q9V3N9 B6 4.48 3 3 3 116561.958 3 +Q9V3P3 LD45860p 39.18 10 21 10 999683.5794 21 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 44501.056 4 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 25755.706299999998 2 +Q9V3T8 LD32469p 18.46 4 6 4 73428.832 4 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 4314052.25945 36 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 2844882.4611 54 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 6134635.59107 63 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 1111805.00104 31 +Q9V3W2 GM23292p 66.47 16 60 16 5420295.0789 53 +Q9V3W7 LD40489p 52.16 11 26 11 552065.0197000001 22 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 729488.9835 33 +Q9V3Y4 LD43650p 20.57 5 8 5 184561.5939 7 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 1786341.4349999998 30 +Q9V3Z4 GH11341p 30.28 14 31 14 954663.0533500001 24 +Q9V3Z9 HL02234p 42.6 17 39 17 4261334.8237000005 36 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 28284.87862 5 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 2531918.36478 48 +Q9V406 Activator protein 4 13.31 7 11 7 378292.68311 10 +Q9V420 FI02878p 15.83 8 12 8 479817.6823 10 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 759714.22354 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 51564.7097 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 924248.72465 17 +Q9V455 Importin subunit alpha 22.37 11 25 11 1944986.3062 24 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 1824639.61506 42 +Q9V491 Plexin A, isoform A 1.44 3 3 0 25012.2125 3 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 3044148.9568 71 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 5574771.6791 69 +Q9V4E0 Complex I-49kD 31.41 12 19 11 670405.55947 19 +Q9V4E7 Transporter 9.12 6 7 3 163623.9549 7 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 9651.6099 3 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 1130303.7745 11 +Q9V9Q4 LD43819p 30.23 12 26 12 753731.2395 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 129621.21138000001 8 +Q9V9T5 GM14617p 13.75 10 10 0 74654.2974 9 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 26013.7084 2 +Q9V9U0 RE35358p 4.79 1 2 1 76795.27 2 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 576036.7731 12 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 4288.7163 1 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 1099722.4355 17 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 2723735.6037999997 24 +Q9V9W4 GH08048p 1.69 1 1 1 2346.3115 1 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 29326.443999999996 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 251273.11 6 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 4732195.14963 83 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 431502.5143 13 +Q9VA34 LP06141p 1.88 2 2 2 33048.843 2 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 378798.52143 21 +Q9VA41 GEO08227p1 52.87 7 18 3 343154.74916 12 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 2801452.3863 24 +Q9VA56 GH23271p 63.77 23 81 2 64032.1273 5 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 49046.805 1 +Q9VA71 FI19924p1 4.52 1 2 1 4830.345499999999 2 +Q9VA76 IP18706p 16.43 6 8 6 56117.959 4 +Q9VA81 GEO10172p1 29.29 5 5 5 105054.3532 5 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 92067.1023 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 489837.39040000003 13 +Q9VAA6 GEO12235p1 19.62 3 7 3 185537.7283 7 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 331216.3285 18 +Q9VAC1 GM14349p 45.49 17 130 17 21917697.256839998 122 +Q9VAC4 GEO09167p1 63.46 7 16 7 1081533.8374 15 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 70762.25594 10 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 9346.4072 2 +Q9VAD7 RH37294p 18.5 3 3 3 14967.3855 3 +Q9VAG3 trypsin 17.0 4 7 4 141131.8674 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 608035.416 13 +Q9VAI9 GEO07291p1 62.25 8 60 5 5617166.7276 54 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 376200.6444 15 +Q9VAL5 protein-tyrosine-phosphatase 0.86 1 1 0 535.9224 1 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 1956336.81612 64 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 24151681.85343 126 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 72478.7123 6 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 11143.47 1 +Q9VAU6 LD27564p 2.99 2 2 2 9433.750769999999 2 +Q9VAV2 FI21480p1 16.52 13 16 13 376484.214 15 +Q9VAY0 Neprilysin 7 5.16 4 4 4 30584.7687 4 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 4675549.17034 75 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 46095.055 3 +Q9VAY9 GH07821p 7.89 3 3 3 45935.728 3 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 2351842.4448 45 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 3812806.21739 45 +Q9VB17 IP11341p 7.98 3 3 3 90074.59 1 +Q9VB22 LD33695p 14.29 8 11 8 204206.8963 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 442023.6267 20 +Q9VB51 GEO08385p1 42.96 3 3 3 36330.5 2 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 682253.5523 23 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 43255.709350000005 4 +Q9VB69 Malic enzyme 20.75 12 16 1 173869.39075 16 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 11171.357899999999 2 +Q9VB77 IP09938p 12.18 4 4 4 121198.239 4 +Q9VB79 IP09473p 24.22 8 17 8 622921.5197000001 15 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 6119557.054 53 +Q9VB86 LP07342p 10.14 2 3 1 15782.51293 3 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 1880591.2596 29 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 23802.630100000002 3 +Q9VBC9 Beaten path VII 13.15 4 4 4 121953.539 4 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 10145966.60333 85 +Q9VBI3 RH72336p 28.52 9 21 9 1026058.16792 19 +Q9VBL3 GH01188p 13.79 7 7 7 55128.309 6 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 1237560.9109999998 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 24642.429 2 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 20950586.3046 133 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 16341.859 1 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 1305582.1403 24 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 287741.252 8 +Q9VBT2 IP11926p 9.86 4 4 4 20130.8686 3 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 34834.0046 3 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 3696141.287 8 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 271836.5632 9 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 4047735.8581 44 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 42983.08692 7 +Q9VC06 LD37516p 15.21 10 15 10 173849.234 14 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 8408.5466 2 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 589642.69773 21 +Q9VC30 RE05274p 8.06 1 2 1 6074.85025 2 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 431919.873 15 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 530792.4585 14 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 491110.18700000003 10 +Q9VC58 Syntaxin-18 8.86 4 4 4 23082.8 4 +Q9VC66 AT25567p 28.82 13 18 13 342254.2101 18 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 44853.206999999995 4 +Q9VC87 RE57978p 10.75 4 4 4 15851.6179 3 +Q9VCB9 FI08802p 26.23 6 12 6 730363.0654 12 +Q9VCD8 Structural maintenance of chromosomes protein 0.89 1 1 1 315.06223 1 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 774287.3353200001 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 64011.17876 4 +Q9VCF8 LD23561p 23.45 8 11 8 226368.18983 11 +Q9VCI4 LD32918p 3.55 3 3 3 43847.913799999995 3 +Q9VCI7 LD02979p 17.37 7 12 0 316109.5687 11 +Q9VCK6 LD34157p 20.89 8 10 8 162863.5709 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 62065.343 4 +Q9VCR4 FI17836p1 7.58 6 7 6 86131.23906 7 +Q9VCR9 RH48101p 39.61 11 25 11 1337552.78 21 +Q9VCT4 Klingon 6.06 3 4 3 22753.7348 4 +Q9VCU0 GEO02312p1 34.17 4 8 4 582097.7423 8 +Q9VCU1 FI07649p 1.31 1 1 1 14610.516 1 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 74460.563 2 +Q9VCW2 Cardinal 5.3 5 6 5 71335.9767 6 +Q9VCW6 GCS light chain 36.14 13 31 13 2117884.7121 27 +Q9VCZ2 FI07970p 2.48 1 1 1 31377.89 1 +Q9VD00 FI07666p 23.74 6 12 6 262533.27758 12 +Q9VD01 LP12095p 18.75 3 3 3 91742.81 2 +Q9VD02 GH14779p 30.73 4 10 4 340620.40447 10 +Q9VD13 GH02671p 14.64 8 9 0 123159.21 8 +Q9VD14 GH07286p 17.02 9 13 9 176478.1683 12 +Q9VD29 small monomeric GTPase 54.92 10 33 10 1826769.23606 27 +Q9VD30 GH05294p 79.44 14 60 14 5848821.1611 46 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 22751.795 1 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 15498203.0857 79 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 114517.408 6 +Q9VD68 GH19849p 6.84 3 3 3 37297.984000000004 3 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 21223.297 1 +Q9VDC0 GH01837p 24.0 5 14 5 467620.3084 12 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 9409.5388 2 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 8823.5913 2 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 892525.7433 13 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 975405.7087000001 14 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 1076213.7493 25 +Q9VDH3 GH08630p 58.77 13 36 13 2306702.84684 33 +Q9VDI1 LD46328p 56.88 24 81 1 3047324.57709 72 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 84507.8576 3 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 171369.139 13 +Q9VDK2 GH15831p 3.87 3 3 2 49944.091 3 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 439721.95934 27 +Q9VDK9 GH12359p 4.89 3 4 3 114114.29 4 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 89657.2165 4 +Q9VDL5 GEO09602p1 52.24 3 3 3 58200.21715 3 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 462754.3854 8 +Q9VDQ3 Identity crisis 8.06 4 4 4 30337.2405 4 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 998726.3477 20 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 9484.2914 2 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 726393.47428 18 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 31435.7527 5 +Q9VDU7 nicotinamidase 31.37 11 16 11 516031.713 16 +Q9VDV2 AT06125p 8.26 4 4 3 60292.098 3 +Q9VDY8 MIP08680p 74.26 18 75 2 4214057.4693 60 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 3392219.87944 46 +Q9VE08 GH10002p 13.62 3 3 3 28590.8351 3 +Q9VE12 LD27322p 19.44 7 8 7 63681.1185 5 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 71778.274 4 +Q9VE31 GEO12059p1 18.92 2 2 2 3022.3885 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 69387.1496 7 +Q9VE56 FI17806p1 18.88 4 7 4 407054.29439999996 5 +Q9VE57 GEO10850p1 6.9 1 2 1 25787.1325 2 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 9858.975 2 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 59959.199 2 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 91105.7845 9 +Q9VE94 LD14127p 8.85 3 4 3 84837.97140000001 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 539168.6337 13 +Q9VEA7 FI01460p 44.94 3 5 3 450567.5574 5 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 64483686.032 262 +Q9VEB7 AT04491p 12.1 4 4 4 36637.0833 4 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 223305.683 9 +Q9VEC6 LD29902p 14.83 12 17 0 919.25525 1 +Q9VEC8 RE23139p1 26.15 3 3 3 216131.52769999998 3 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 131786.2441 7 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 38999.825 3 +Q9VEG8 RE59232p 10.8 2 2 2 39589.257 2 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 199693.94245 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 1252567.9102999999 28 +Q9VEJ9 Curly Su 2.39 2 2 2 10646.3033 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 136858.7988 7 +Q9VEK8 GH07711p 39.88 11 22 11 613233.7307 21 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 403704.1612 15 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 12816.672 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 34578.9683 5 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 586507.28644 23 +Q9VEP8 GH11385p 21.38 13 18 13 304980.85206 17 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 427717.7579 19 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 160798.09876 8 +Q9VES8 RE28913p 29.5 9 16 9 1263413.1709 16 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 125877.837 3 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 578195.7096 19 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 11455.64156 2 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 18698.5805 2 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 107306.70404 5 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 849869.43897 29 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 23325.967 1 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 2619624.7965 32 +Q9VEY9 GH15759p 3.1 1 1 1 717.33704 1 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 259800.0006 11 +Q9VF15 GEO09476p1 81.05 12 39 8 3428782.7033800003 38 +Q9VF23 arginine kinase 12.25 6 7 6 100682.5965 7 +Q9VF24 Crossveinless d 3.88 6 7 6 84146.32130000001 7 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 398186.47671 16 +Q9VF39 FI01459p 13.04 5 7 5 216865.96204 6 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 349320.511 14 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 93180.3686 7 +Q9VF77 FI16517p1 10.74 4 5 4 72209.0853 5 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 20183.972 2 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 52431.4064 3 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 259565.83539999998 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 48254.97217 5 +Q9VFC7 Mf5 protein 84.93 39 273 0 16787451.12114 176 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 46798.4326 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 28924327.72064 130 +Q9VFI3 GEO08281p1 45.19 3 10 3 221795.1566 6 +Q9VFM0 GH19262p 7.14 4 5 4 74748.87180000001 5 +Q9VFN7 GEO07678p1 27.67 5 18 5 536887.7726 18 +Q9VFN9 GEO07882p1 54.84 7 9 7 86475.70880000001 8 +Q9VFP0 RH07106p 18.65 6 7 6 140060.4907 6 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 2194863.2934 38 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 1116365.3792 22 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 3807.0576 1 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 96520.98670000001 5 +Q9VFT4 AT27578p 16.09 9 13 9 103744.80837 9 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 24803.703 2 +Q9VFV1 RE55542p 9.81 5 7 5 64874.534100000004 7 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 7499260.6379 47 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 133858.90230000002 4 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 48445.7233 5 +Q9VG01 RE12073p 1.88 1 1 1 9977.037 1 +Q9VG04 Protein MEMO1 2.71 1 1 1 5989.1587 1 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 23218.630559999998 3 +Q9VG23 GH22994p 69.3 12 69 1 7713825.36254 61 +Q9VG26 MIP06012p 45.07 9 28 9 1151341.5347 21 +Q9VG28 Beaten path Vc 5.39 2 2 2 25592.665 2 +Q9VG31 Malic enzyme 19.79 16 26 0 1297706.0866 24 +Q9VG33 Sulfurtransferase 85.45 8 22 8 1750543.62037 20 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 24759.4885 5 +Q9VG44 RE14195p 2.98 2 2 2 7709.937 1 +Q9VG51 Sorting nexin-3 51.5 8 25 8 1442187.49593 20 +Q9VG62 Toys are us 2.89 2 2 2 19247.442 2 +Q9VG69 LP03547p 42.59 16 39 16 2159221.05907 36 +Q9VG81 RH49330p 11.14 5 6 5 99158.9559 6 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 91177.31873 5 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 1233420.9044 22 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 74395.0895 4 +Q9VGA3 LD12305p 36.82 8 23 7 1722839.0782 19 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 23170.327 2 +Q9VGE4 FI04457p 6.96 8 8 8 92608.2719 7 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 21867.5007 3 +Q9VGF3 IP11040p 18.84 6 7 6 116642.7783 7 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 2780158.73965 40 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 386552.056 6 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 203213.08875999998 16 +Q9VGL0 LD43047p 2.61 3 3 3 13177.4365 3 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 76157610.23007 183 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 106127.7562 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 12697238.04396 68 +Q9VGQ8 Arfaptin 25.35 9 11 9 237533.7586 10 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 29785.5363 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 29252.1812 4 +Q9VGS3 RH44771p 23.39 4 22 4 1048196.9037 19 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 18792.355 2 +Q9VGT3 GM04645p 3.98 2 2 2 6457.1175 2 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 56859.0716 6 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 49304.38 1 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 138498.9257 5 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 335962.2473 10 +Q9VGY2 Peptide deformylase 5.88 2 3 1 34750.5282 3 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 132953.34900000002 6 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 182941.91055 14 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 99005.9479 7 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 520179.5504 15 +Q9VH37 IP06524p 27.09 5 7 5 430577.38 7 +Q9VH64 LD29322p 19.0 7 8 7 481951.99114999996 8 +Q9VH66 FI18258p1 24.89 5 9 5 95103.07846 9 +Q9VH72 TA01656p1 37.25 6 10 6 477111.3723 10 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1237689.32985 44 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 113382.1673 7 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 25832.049499999997 3 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 81141.3641 9 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 237172.65790000002 6 +Q9VHA8 LD25575p 15.06 10 12 10 721430.5897 12 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 1009537.1722 19 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 42872.6337 4 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 387199.52685 21 +Q9VHC7 FI21236p1 34.65 17 32 9 1034372.026 26 +Q9VHC8 LD31448p 10.06 2 2 2 676.58984 1 +Q9VHE3 GH05665p 1.79 1 1 1 19554.717 1 +Q9VHE4 omega-amidase 20.85 7 16 7 727557.914 16 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 308843.5882 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 319660.711 6 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 84298.18462 5 +Q9VHH8 Beag 1.26 1 1 1 4314.56 1 +Q9VHI1 Hyrax 8.36 4 4 4 26240.5396 4 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 1793133.71818 22 +Q9VHJ2 LD32381p 9.12 3 3 3 116308.79999999999 3 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 4647.2783 1 +Q9VHJ7 LD41978p 4.48 3 3 3 53929.944 3 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 3325271.70404 46 +Q9VHM3 LD30467p 8.85 4 4 4 28118.8087 3 +Q9VHN4 GH14121p 12.64 3 4 3 40220.666600000004 3 +Q9VHN7 transketolase 30.51 16 25 2 1067766.4692 22 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 22586.375 2 +Q9VHR5 Veneno 2.96 2 2 2 3303.721 1 +Q9VHT3 CG9617 protein 20.79 4 5 4 70304.20883999999 5 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 105457.2904 5 +Q9VHX2 GH08043p 4.58 2 2 2 46032.051 2 +Q9VHX4 LD24679p 77.51 23 101 23 12061862.1294 91 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 380347.4567 11 +Q9VI09 GH14494p 52.48 7 29 7 1843480.1008000001 28 +Q9VI21 Dementin, isoform D 2.98 2 2 0 8548.1096 2 +Q9VI24 LD25151p 4.38 1 1 1 3435.3936 1 +Q9VI53 LD44267p 19.43 7 13 7 104526.9675 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 70177.8014 4 +Q9VI64 LD30995p 46.46 14 42 14 2888536.24277 37 +Q9VI66 GH28833p 15.54 4 6 4 128256.873 6 +Q9VI80 Thawb 2.46 2 4 2 19528.34393 4 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 43346.86602 6 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 91480.112 5 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 85075640.98609 305 +Q9VIF2 GM01519p 11.13 6 8 6 451484.637 7 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 416067.8629 12 +Q9VIH1 CG9273 protein 29.27 6 7 6 155199.1413 7 +Q9VII5 GEO08323p1 20.13 3 8 3 400727.54287999996 8 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 190766.89140000002 2 +Q9VIJ3 FI14214p 45.0 7 10 2 74166.0808 6 +Q9VIJ5 GEO05038p1 20.15 2 3 2 22470.4801 3 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 8920.8475 2 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 151898.59196 16 +Q9VIL2 LD19544p 23.14 4 5 4 43790.2196 4 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 642975.3417 12 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 153910.13689999998 5 +Q9VIQ5 RH02620p 29.08 5 7 5 225247.11785 5 +Q9VIQ6 FI17342p1 17.68 4 5 4 45573.63484 5 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 8096228.24182 61 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 22253.2993 3 +Q9VIU3 FI23988p1 3.98 2 2 2 9324.4143 2 +Q9VIV6 GH04973p 8.83 3 3 3 192779.8738 3 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 47938.528 2 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 3600.2133 2 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 397159.0136 5 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 542486.97945 16 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 1010878.1525 20 +Q9VJ22 GH09876p 5.41 2 2 2 20765.6272 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 125915.7365 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 1113523.9215 19 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 177933.5233 8 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 1877587.0303 29 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 282450.00869999995 13 +Q9VJ59 PRA1 family protein 5.31 1 2 1 57482.6 2 +Q9VJ60 GM16226p 17.29 3 4 3 177021.36959999998 4 +Q9VJ61 SD03870p 4.67 2 2 2 5983.7063 2 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 360542.77564999997 15 +Q9VJ80 LD42267p 8.46 10 12 10 160164.9114 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 292771.3849 13 +Q9VJA9 GH07373p 7.69 5 6 0 52513.0063 6 +Q9VJC0 GEO08203p1 37.96 5 8 5 251161.0472 8 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 111104.9173 5 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 1116031.78296 22 +Q9VJD4 LD24721p 34.44 12 41 12 3914539.7716 35 +Q9VJE3 LD24839p 11.63 6 8 6 57649.9813 8 +Q9VJH8 FI03416p 3.13 2 2 2 8983.931400000001 2 +Q9VJI5 Protein yellow 16.56 8 9 8 546044.77 9 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 164276.0822 5 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 1448429.4282 21 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 35727.812 1 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 469629.0838 10 +Q9VJQ3 Protein yellow 38.13 15 33 14 2880190.2963799997 30 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 17090.2569 3 +Q9VJU6 IP09831p 7.3 2 3 2 64251.802 2 +Q9VJU8 GH23407p 10.27 5 6 5 59921.842699999994 4 +Q9VJZ1 FI21342p1 11.57 6 7 6 112913.4418 7 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 3423288.8269 40 +Q9VJZ5 LD07294p 26.58 8 14 8 243419.1399 12 +Q9VJZ6 LD40224p 76.39 13 40 13 2089680.38786 35 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 473762.79403 14 +Q9VK11 GH15921p 22.65 6 13 6 734070.49905 13 +Q9VK12 GH20621p 64.8 18 93 18 12118590.9679 85 +Q9VK18 LD36945p 17.14 9 10 9 69218.7025 7 +Q9VK19 FI07225p 7.72 1 1 1 7724.571 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 2252.0571 1 +Q9VK31 LD35592p 5.19 2 2 2 3728.8967 1 +Q9VK39 FI09204p 52.83 5 23 5 602440.307 18 +Q9VK43 LD10135p 7.71 3 3 3 19186.4446 2 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 132713.6965 5 +Q9VK59 LD23647p 33.58 28 46 28 642823.33957 36 +Q9VK60 GH25425p 52.14 13 50 13 3788396.5938999997 45 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 3333280.00106 45 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 307871.44299999997 13 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 197057.64380000002 10 +Q9VK99 Atilla, isoform B 51.75 8 30 8 1619564.8737 25 +Q9VKA1 FI02817p 16.23 4 6 4 34276.4057 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 17827.5173 3 +Q9VKC8 FI03495p 14.26 8 10 8 237740.95472 10 +Q9VKD9 MIP16835p1 1.35 1 1 1 4175.0986 1 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 34440213.35518 382 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 86154.10978 6 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 137742.44999999998 2 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 29041.46 1 +Q9VKI8 GH03305p 65.36 19 134 19 9123932.32855 126 +Q9VKJ4 Csl4 18.14 3 4 3 74812.007 3 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 8581858.55806 59 +Q9VKM7 AT01533p 7.09 4 10 0 370123.9475 10 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 183975.86424999998 15 +Q9VKQ5 GEO07393p1 16.94 2 4 2 246622.578 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 24117.2327 3 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 775101.4187 21 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 227648.9582 9 +Q9VKU5 LD37206p 14.04 4 4 4 37886.5454 2 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 2071104.28795 38 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 50759.95970000001 5 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 107569.81640000001 7 +Q9VKW1 LD41958p 1.96 1 1 1 2403.7544 1 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 381107.2239 16 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 18901.47654 2 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 16240910.29299 154 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1157115.518 12 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 181530.6019 14 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 726215.11195 29 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 2759686.53026 45 +Q9VL02 GH08677p 19.51 7 7 2 106286.75660000001 7 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 395395.2433 12 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 97219.9228 5 +Q9VL16 RE45833p 30.77 7 30 7 3023695.6753000002 27 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 3091.1533 1 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 40112.9645 3 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 2391.1636 1 +Q9VL57 RE10231p 2.85 1 1 0 1978.6417 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 82656.697 2 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 652454.5020000001 9 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 2369173.0877 32 +Q9VL70 HL08109p 80.9 30 111 30 24383508.567959998 104 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 137509.9242 5 +Q9VL91 LD23102p 1.8 1 1 1 2291.1729 1 +Q9VL93 GEO07195p1 29.09 3 5 3 44097.4915 3 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 169335.93899999998 8 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 3865598.14255 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 8390608.30955 80 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 109284.85523 7 +Q9VLI4 Raw, isoform A 4.85 4 5 1 54807.295 3 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 51324.7 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 938979.5373000001 16 +Q9VLP0 IP04187p 32.09 5 7 5 136071.4842 5 +Q9VLP1 GEO08095p1 37.84 6 18 6 698425.6906 14 +Q9VLP2 GEO08076p1 38.78 6 46 6 1323335.74598 39 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 530996.417 6 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1255815.8787 28 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 316782.326 2 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 4456438.90165 44 +Q9VLS5 LD29542p 6.53 3 4 3 14430.438839999999 3 +Q9VLS7 LD21067p 4.91 7 8 0 86815.74100000001 4 +Q9VLT3 LD23292p 15.23 26 42 26 1186818.2715 38 +Q9VLT7 IP17351p 24.04 4 7 4 453498.63159999996 7 +Q9VLU3 IP09231p 8.63 2 3 0 51108.9444 2 +Q9VLV9 Proctolin 46.43 5 7 5 39748.4721 5 +Q9VLW8 LD06392p 5.79 2 2 2 54191.221 2 +Q9VLX6 HL01609p 16.49 4 4 0 89750.62 3 +Q9VLY1 HL02931p 19.01 1 9 1 1512976.907 7 +Q9VLY7 TEP1-F 7.49 10 10 10 107320.53296 9 +Q9VLY9 CD109 antigen 28.88 39 63 2 3309798.717 60 +Q9VM07 RE43931p 27.85 5 10 4 538564.8319999999 8 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 224168.49576 12 +Q9VM11 HL01515p 30.55 11 14 11 412769.1767 14 +Q9VM12 MIP26555p1 25.85 8 19 8 844427.39 15 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 24580187.30547 184 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 17695828.75045 116 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 53654.418000000005 3 +Q9VM47 Menin 4.19 3 3 2 27212.8602 3 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 10003.16943 4 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 374973.05347 11 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 233691.13590000002 5 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 543017.38194 7 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 135999.2704 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 16427729.5571 83 +Q9VMC3 LD35051p 17.28 5 6 5 22890.3378 5 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 49612.99 1 +Q9VMC7 LP11564p 13.92 9 10 3 42043.2478 7 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 521734.2014 15 +Q9VME1 FI01864p 11.22 6 8 6 97901.9412 8 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 210133.6152 7 +Q9VMF0 FI04444p 5.9 3 3 3 17786.9806 3 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 112792.805 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 493076.9726 11 +Q9VMH8 GEO07746p1 38.1 6 19 6 676244.1892 16 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 2563174.59263 29 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 1703750.7184 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 10115974.759779999 48 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 350567.3829 8 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 799104.0663000001 15 +Q9VMR9 acylphosphatase 14.85 2 2 2 47364.3146 2 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 13365174.298899999 59 +Q9VMT2 GEO07854p1 60.4 9 123 1 18096377.88496 110 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 6864286.0623 40 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 96066.49855999999 12 +Q9VMV5 Viking, isoform A 9.07 15 21 15 458974.94516 19 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 3059.3381 2 +Q9VMX4 AT19154p 29.08 7 13 7 204713.4894 11 +Q9VN01 GH23891p 11.66 7 7 7 104779.7749 7 +Q9VN02 GH14561p 39.46 10 16 10 264403.4226 13 +Q9VN21 LD30155p 57.06 30 110 30 10485753.37471 102 +Q9VN39 RE74585p 24.47 9 13 4 53609.54655 10 +Q9VN44 FI07923p 23.17 21 40 21 1814897.1782 39 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 751314.96757 12 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 648051.4407 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 5174.4927 1 +Q9VN86 AT14148p 9.07 4 4 4 79484.989 4 +Q9VN88 LD45836p 33.18 6 9 6 288760.1972 9 +Q9VNA3 GH21273p 34.26 7 14 7 653485.3166 13 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 1175963.2141 12 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 198441.7478 6 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 25513.857149999996 3 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 7039.476200000001 2 +Q9VNF3 RE01652p 45.91 11 35 8 887303.6033 29 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 144553.2414 7 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 97244.9486 7 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 213138.15029999998 9 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 201989.78 1 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 203003.941 7 +Q9VNI8 Hpr1 10.84 8 8 8 109815.694 8 +Q9VNI9 IP18173p 25.11 4 7 4 178264.4439 7 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 12990951.06738 85 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 70621.3795 6 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 44369.67314 7 +Q9VNV2 GEO05133p1 15.82 2 3 2 85709.065 3 +Q9VNW0 GEO11142p1 17.97 2 2 2 31757.407 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 8365354.29512 78 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 3926034.47285 95 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 26559.0036 3 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 33324.299100000004 4 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 5418.526 1 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 2565.10013 2 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 117791.0044 4 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 193446.2995 7 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 519833.471 8 +Q9VP57 LD15904p 25.8 20 45 20 1105274.58419 40 +Q9VP77 LD23875p 10.53 6 6 6 140456.9145 6 +Q9VP78 GH23156p 11.92 4 5 4 44572.1387 5 +Q9VP84 IP06402p 10.05 2 2 2 28771.201 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 8960.8877 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 53183.131299999994 4 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 61240.215 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 24997.2447 2 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 2142199.53594 37 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 37761.748250000004 5 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 47069.4295 3 +Q9VPH6 LP10922p 8.04 4 5 0 74707.89600000001 3 +Q9VPJ0 RE58433p 16.84 6 7 2 214715.28463 7 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 44507.0744 2 +Q9VPK3 AT24407p 12.35 5 7 1 235217.0223 7 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 77281.8375 4 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 5847453.0204 82 +Q9VPP7 AT13539p 22.7 4 4 4 92599.28 4 +Q9VPR1 GH02075p 15.14 2 5 2 4963.229 1 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 2253.2715 1 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 805453.0845 10 +Q9VPU4 FI17537p1 5.33 2 2 2 2302.4526 1 +Q9VPU6 Galectin 5.06 2 2 2 49073.967 2 +Q9VPX0 GH26159p 6.97 4 4 4 21671.9267 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 928472.878 13 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 6019907.88654 71 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 4618.94015 3 +Q9VPY7 LD42035p 2.2 1 1 1 2491.2373 1 +Q9VPZ5 GH04232p 25.41 14 33 14 830733.17689 33 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 9147.158599999999 2 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 10483216.4932 106 +Q9VQ83 RE23541p 7.91 3 3 0 25665.2655 2 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 219536.84629999998 6 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 6122848.29747 56 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 4537540.8874 24 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 227335.68014 13 +Q9VQE0 dynamin GTPase 20.82 15 21 15 398287.6482 19 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 53534.8424 7 +Q9VQI6 LD25952p 19.75 7 9 7 101964.2299 8 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 998818.9094 24 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 55975.606 3 +Q9VQK7 LD45152p 6.68 5 5 5 29094.2681 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 4378.965 1 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 2578297.42306 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 1724567.60276 16 +Q9VQQ6 FI18122p1 35.15 14 21 1 654429.42685 20 +Q9VQR0 FI04421p 4.49 2 3 2 77168.8833 3 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 5786492.02344 57 +Q9VQR5 IP10807p 19.06 4 6 4 88204.0896 5 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 218182.5081 12 +Q9VQT7 RH15675p 14.63 1 2 1 8270.4033 2 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 593556.2837 13 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 163596.56835 7 +Q9VQX3 HL05328p 18.38 6 6 6 101344.0613 6 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 9117.00017 4 +Q9VR03 AT19250p 4.57 2 2 2 3119.2905 1 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 184513.24034000002 10 +Q9VR30 RE58324p 25.27 9 9 9 305955.2945 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 406363.68416 10 +Q9VR62 GM14138p 5.53 3 3 3 19783.6236 2 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 33040.301 2 +Q9VR79 LD43683p 35.86 11 30 11 2276512.5378 28 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 7023.491 2 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 3049441.0237 31 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 1136273.1526 11 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 80293.3091 8 +Q9VRF7 GH09530p 19.59 5 13 0 487971.7714 10 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 112079.5557 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 322946.36295 14 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 3330649.8224400003 36 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 247266.2452 12 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 57073.602 2 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 6563.6772 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 14831640.52789 95 +Q9VRL1 GEO06356p1 53.1 8 42 2 3018364.7671 34 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 4279.4375 1 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 12267.0202 2 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 60222.373 4 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 2677964.8266 44 +Q9VRP3 AT08565p 27.53 8 17 8 633920.95044 14 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 128459.64437 8 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 2102713.0284 26 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 299450.4206 7 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 236251.99 8 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 369633.8577 14 +Q9VS11 lysozyme 16.35 4 4 4 79618.7536 3 +Q9VS44 Uncharacterized protein 9.82 3 3 3 48807.669499999996 3 +Q9VS84 FI03225p 11.14 10 13 10 405049.3409 13 +Q9VSA9 CG7409 79.87 15 73 15 11238246.6841 60 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 313635.0893 10 +Q9VSC5 GM09977p 60.12 14 32 14 985104.63757 27 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 189957.5544 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 455232.15599999996 8 +Q9VSH5 IP09562p 4.89 1 1 1 4210.921 1 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 146296.511 3 +Q9VSI1 LD21269p 7.99 5 5 5 65767.607 4 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 8497.3704 3 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 1611604.37565 25 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 3162125.4340999997 28 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 3421361.2893 35 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 217069.7888 8 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 78871.864 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 27864.8274 4 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 2195.5725 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 1557597.1703 18 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 4507401.5732 59 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 112041.1177 5 +Q9VSR5 GM03767p 52.2 8 27 8 3181889.9828 24 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 152855.9218 9 +Q9VST4 arginine kinase 6.96 3 3 3 11869.93587 3 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 5612971.0873 45 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 1259760.14 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 71749.843 3 +Q9VSW7 LD21662p 3.33 1 1 1 6928.593 1 +Q9VSX2 IP01061p 40.0 9 17 9 523511.76833 11 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 14381966.84473 53 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 400561.7155 12 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 3580.7649 2 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 639189.4942 16 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 11133.4136 2 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 1451102.9112 26 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 24999.5777 2 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 16849.7655 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 50731.710999999996 2 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 102995.9794 5 +Q9VTA8 RE35371p 7.59 2 2 2 6676.7607 1 +Q9VTB0 LD35289p 21.62 8 11 8 323849.43200000003 11 +Q9VTB3 Guanylate kinase 51.07 13 30 13 1589825.5043 28 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 3529586.6841 34 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 80071.8667 5 +Q9VTC3 GH07049p 9.72 4 5 4 173356.6098 5 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 46678.0262 3 +Q9VTL0 FI19917p1 7.45 3 3 3 128332.12049999999 3 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 82787.458 3 +Q9VTT2 LD20590p 7.93 4 4 4 36188.4643 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 3211228.5696 30 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 404505.402 9 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 272419.555 6 +Q9VTW1 RE15265p 11.2 5 5 0 325771.517 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 114067.207 7 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 4696309.50215 55 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 626703.031 19 +Q9VU04 RE60105p 13.85 4 5 4 138563.07319999998 5 +Q9VU13 LD45603p 9.17 4 12 0 371120.45279999997 12 +Q9VU34 LD45758p 0.89 1 1 1 1957.2382 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 16322353.0853 70 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 91256.2665 4 +Q9VU38 Adenosine kinase 35.94 8 13 0 91787.88264000001 12 +Q9VU45 LD27581p 21.48 5 15 5 746218.8337 14 +Q9VU53 Capricious, isoform A 5.0 3 3 1 24540.4378 2 +Q9VU75 RH45712p 61.73 12 38 12 844854.101 33 +Q9VU92 Uncharacterized protein 29.76 7 16 7 258155.61647 14 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 8300963.980810001 91 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 33993.7357 5 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 2604045.135 31 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 1864.9161 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 90481.8603 5 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 347809.725 4 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 107080.5838 8 +Q9VUQ7 RE36966p 10.4 6 11 6 111229.64764 11 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 52818.9941 5 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 1448.73169 2 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 25534.932 2 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 249841.01437 8 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 390898.918 5 +Q9VUZ8 GEO07442p1 22.56 2 2 2 1168.2981 1 +Q9VV13 GEO08383p1 10.71 1 5 1 400851.479 5 +Q9VV31 Uncharacterized protein 19.35 2 5 2 229342.989 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 425764.0696 11 +Q9VV40 Golgin 104 1.42 1 1 1 511.06476 1 +Q9VV42 Fat body protein 2 83.09 26 202 0 38132280.15618 174 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 40751563.3956 217 +Q9VV47 Fat body protein 2 45.17 9 18 7 1551578.2125 17 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 2485725.71997 46 +Q9VV75 AT02348p 82.05 29 251 29 27548302.38692 196 +Q9VV76 Syntaxin 8 37.07 6 10 6 192314.8521 9 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 74057.50332 7 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 217556.7177 9 +Q9VVB5 LD46723p 30.59 16 56 1 10934.1955 3 +Q9VVB7 FI02842p 43.95 14 57 1 2891.9253 1 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 295531.8628 7 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 2735004.26377 47 +Q9VVC8 LD23434p 15.41 8 9 8 131606.8504 7 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 613780.9267 22 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 14722594.38515 31 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 886444.7642 12 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 87296.11547 4 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 488336.46919999993 12 +Q9VVL5 FI11325p 14.55 5 7 5 133374.831 7 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 19657570.99582 153 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 73691.8732 4 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 45932.8493 3 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 240841.54619999998 11 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 155890.6975 9 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 2919218.43333 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 10491307.3453 58 +Q9VVU2 GEO07453p1 48.32 9 29 8 2315835.4651 28 +Q9VVV6 LD45843p 6.76 5 5 0 35819.16527 5 +Q9VVW7 Canopy b 16.74 4 9 4 305460.548 9 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 18611.107 2 +Q9VVY7 FI20154p1 10.79 14 19 0 329410.66516 18 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 102926.0039 8 +Q9VVZ6 GEO09638p1 25.95 2 3 0 7727.6866 2 +Q9VW00 GH28721p 11.46 4 10 4 371608.3983 9 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 19223.423300000002 3 +Q9VW17 RE58036p 47.25 6 16 1 233331.29937 15 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 11594.59713 3 +Q9VW34 FI03450p 19.96 11 20 11 769789.5365 17 +Q9VW40 LD31235p 9.3 3 3 3 40061.22 3 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 19095.1709 2 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 80461.0963 8 +Q9VW57 Grasp65 12.61 6 9 6 202794.05324 9 +Q9VW58 LD33138p 35.32 6 11 6 97115.2482 10 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 1431158.9612 30 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 4740351.117 58 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 12405274.90799 121 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 24566.271999999997 4 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 126085.0046 5 +Q9VWD0 GH23568p 16.89 6 14 6 687266.1184 13 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 14333960.09058 89 +Q9VWD5 LD35087p 13.54 5 5 5 49696.34424 5 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1259549.62852 38 +Q9VWF0 LP01149p 36.93 9 17 9 106946.41464 13 +Q9VWG1 LD37169p 71.04 12 73 2 398749.1614 12 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 26656.546000000002 2 +Q9VWJ3 LD05272p 8.22 1 2 1 27536.309 1 +Q9VWL4 GH07340p 13.41 7 9 7 200662.5739 9 +Q9VWP2 RH57257p 57.02 12 25 12 1584011.93689 24 +Q9VWQ3 LD35981p 6.96 3 3 0 97655.842 3 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 203953.9241 8 +Q9VWS1 Houki 20.44 5 8 5 443431.0893 8 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1229174.7691 28 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 28087.504399999998 5 +Q9VWU0 FI18411p1 5.87 2 2 2 22301.237 2 +Q9VWV6 Transferrin 70.05 43 231 43 22143541.0812 210 +Q9VWW2 GH13094p 20.52 10 18 10 76629.05221 11 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 16820.052 2 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 354006.12919999997 8 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 26064.553 3 +Q9VX26 Chascon, isoform A 1.62 2 2 0 14198.7768 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 9720997.4578 77 +Q9VX69 FI01450p 18.0 6 23 5 594659.26825 11 +Q9VXA3 LP21163p 17.0 12 21 12 437723.95864 19 +Q9VXA9 RE04047p 6.57 2 3 2 81363.199 3 +Q9VXC1 MIP06432p1 31.28 5 11 3 674110.2105 10 +Q9VXC9 trypsin 52.99 10 17 10 1065624.8132 15 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 127513.8324 4 +Q9VXF9 AT13091p 26.2 10 17 10 431295.83843999996 17 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 128404.11360000001 7 +Q9VXG9 GH25683p 9.78 2 5 2 24232.288 2 +Q9VXH4 RE16337p 28.43 2 3 2 248401.071 3 +Q9VXH7 FI17510p1 10.63 3 5 3 305042.1834 5 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 1365812.5019399999 33 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 9075318.1637 44 +Q9VXJ7 GH03748p1 9.2 9 11 9 55389.671650000004 7 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 393882.0577 13 +Q9VXM4 LD12946p 62.9 13 34 13 1672683.09077 30 +Q9VXN1 LD03728p 12.68 4 4 4 24553.322 3 +Q9VXN3 LD07988p 29.8 10 15 10 230432.1031 15 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 14833.3097 2 +Q9VXP3 GH05406p 8.26 5 5 5 21161.7805 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 34455.421 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 19670.515 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 2472264.3066000002 49 +Q9VXR9 FI03680p 15.76 6 6 6 136030.82069999998 6 +Q9VXV1 RH52220p 4.39 1 1 1 9678.114 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 380979.0068 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 2184739.19824 27 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 342425.9549 14 +Q9VY05 GH11762p 12.84 8 13 8 874971.6858999999 11 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 104603.3329 8 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 242486.4244 7 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 689.6933 1 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 7478.9136 1 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 139479.9623 5 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 162462.5412 5 +Q9VY76 AMP deaminase 10.25 8 10 0 66952.35118 9 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 518570.07769999997 11 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 132648.6806 9 +Q9VY92 GEO07753p1 73.91 8 44 8 6917497.6564 43 +Q9VYA1 RE18811p 3.87 1 1 1 7962.1436 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 23237.242 2 +Q9VYF0 GM09012p 16.04 4 6 4 143488.9863 5 +Q9VYG8 CG15717-PA 10.71 3 5 3 51703.91037 4 +Q9VYJ1 FI12805p 5.04 4 4 4 54409.9434 4 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 69228.1641 3 +Q9VYM0 CG2555-PA 13.2 2 3 1 4361.67154 2 +Q9VYN1 protein kinase C 0.84 2 14 1 5812131.16895 12 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 3640.01 1 +Q9VYS2 GH09980p 9.97 8 11 8 50980.437399999995 9 +Q9VYT0 RE04130p 37.34 9 17 8 443497.57206000003 17 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 27891.253340000003 4 +Q9VYT3 FI23714p1 5.58 7 7 7 24607.59387 6 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 63386.73479999999 6 +Q9VYU9 RH17287p 56.97 9 18 9 694718.24802 17 +Q9VYV4 Amun, isoform A 8.0 3 5 3 165603.10629999998 5 +Q9VYV6 GEO09033p1 28.07 3 3 3 24721.584799999997 2 +Q9VZ00 FI19420p1 18.03 16 21 0 276255.73645 19 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 3099329.7744 33 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 692503.5338999999 15 +Q9VZ24 GEO11412p1 46.9 8 47 8 7127196.3973 47 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 44432.4026 3 +Q9VZ34 RH72958p 4.69 2 3 2 29493.3452 3 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 50260.3925 3 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 440173.3 9 +Q9VZ66 SD22308p 42.86 5 9 5 405341.0802 8 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 75758.11409999999 6 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 54403.1886 3 +Q9VZE4 RE70333p 20.43 10 14 10 444864.77999999997 12 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 460672.7305 8 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 100418.87640000001 3 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 1000354.33554 33 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 6257070.10153 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 424060.739 10 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 7682617.99873 44 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 38778.8695 3 +Q9VZI1 Transgelin 68.09 12 84 1 8773732.959 71 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 54794.678 3 +Q9VZJ2 GH27759p 14.19 6 10 6 502190.57863 9 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 47789.3018 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 350811.4728 23 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 32373.006699999998 5 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 135575.60330000002 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 370139.3802 10 +Q9VZV2 Chitinase 7 4.64 5 6 5 57526.7184 6 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 27556.5858 4 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 16313.879799999999 4 +Q9VZX6 LD06441p 21.78 7 9 7 467159.64389999997 9 +Q9VZY0 LD45195p 11.48 3 4 3 206027.42669999998 4 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 8936.3573 2 +Q9VZZ5 GEO12033p1 34.27 6 8 6 720772.1 8 +Q9VZZ6 CG16985 protein 38.26 5 11 5 627246.4521999999 11 +Q9W022 GEO01508p1 62.68 8 41 8 8199780.9037999995 40 +Q9W073 RH22148p 19.41 3 3 3 51443.0664 3 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 6087575.5915 23 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 1913762.6214 14 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 416103.7327 11 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 258644.0686 6 +Q9W0A8 FI01658p 25.63 7 26 7 1298176.5386 26 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 1084921.985 24 +Q9W0C3 GH11843p 38.78 11 19 11 588911.12379 18 +Q9W0D3 GH15728p 1.29 2 2 2 3327.47396 2 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 42258.305 1 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 53005.5043 4 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 937474.0107999999 21 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 1365470.0281 27 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 69409.79607 5 +Q9W0J9 GH07301p 34.47 8 12 7 280032.47074 12 +Q9W0K9 LD10220p 23.21 4 4 4 24810.0893 4 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 16738.2561 3 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 560421.7039399999 14 +Q9W0M5 Protein DPCD 14.41 3 3 3 15469.5885 3 +Q9W0N6 LD27967p 9.57 3 3 3 39197.924450000006 3 +Q9W0P4 GEO05053p1 8.13 1 1 1 44132.09 1 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 32423.9623 4 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 33026.855 1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 324978.1401 19 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 47782.5263 4 +Q9W0U0 glycerol kinase 3.9 2 2 0 25314.609 2 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 353587.7474 11 +Q9W0X1 GH15894p 6.31 3 3 3 110725.102 3 +Q9W0X2 GEO07322p1 28.1 3 4 3 176351.514 3 +Q9W0X3 LD24657p 22.81 4 4 1 153127.49300000002 4 +Q9W0Z5 LP09747p 22.95 9 13 9 223896.8507 9 +Q9W114 IP05433p 28.33 3 4 3 48532.9024 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 5924335.25202 53 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 1036352.4936 17 +Q9W136 Uncharacterized protein 19.81 4 18 4 526528.1142600001 15 +Q9W140 Regulatory protein zeste 3.53 2 3 2 38773.231 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 28037.05784 5 +Q9W158 LD36772p 14.33 5 7 5 294256.598 6 +Q9W199 GEO07594p1 21.29 4 5 4 300118.8 5 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 4892636.8646 31 +Q9W1C8 LD24355p 19.02 8 8 8 88670.0387 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 82915.44887000001 5 +Q9W1F2 FI07217p 5.93 2 3 2 9993.4136 2 +Q9W1F7 IP15825p 34.97 12 28 12 2201222.92662 25 +Q9W1F8 GEO08248p1 23.31 4 8 4 471054.501 7 +Q9W1G7 LD21576p 34.32 13 22 13 701769.18175 20 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 320888.7305 11 +Q9W1H6 GH04238p 13.85 3 9 3 324600.245 7 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 4738914.0031 45 +Q9W1I8 LD03592p 39.08 9 25 9 568458.8814 17 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 50198.9801 5 +Q9W1L8 GH11818p 2.66 1 1 1 16741.236 1 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 71474.57087 6 +Q9W1N3 Levy, isoform A 23.85 3 17 3 2315134.812 16 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 4330.8135 1 +Q9W1R0 RH49821p 4.13 2 2 2 15672.553899999999 2 +Q9W1R3 Golgin-245 12.09 17 20 17 222163.04426 19 +Q9W1V8 CG9893 protein 39.58 8 16 8 415471.9236 15 +Q9W1W4 RE45066p 18.58 6 11 6 258214.2134 10 +Q9W1X5 GH04942p 20.82 28 39 4 1815463.96744 36 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 11740222.0425 71 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 926159.1009 13 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 207696.5962 12 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 112938.8002 8 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 586996.74983 24 +Q9W257 RH13652p 6.99 2 4 2 141616.416 4 +Q9W258 Babos, isoform A 33.67 7 13 7 1167604.4552 13 +Q9W259 FI23916p1 8.95 4 5 4 118429.68549999999 5 +Q9W260 GH03113p 15.4 8 12 8 293542.6245 12 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 134719.21 5 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 299392.20660000003 25 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 16810.3165 3 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 65923.6452 4 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 1153796.7615 18 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 25979.1586 2 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 48374.392 3 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 398900.85684 15 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 109484.161 4 +Q9W2L6 RH02475p 33.73 20 58 20 3839800.57303 53 +Q9W2M0 LD23155p 22.1 15 17 15 323649.12458 16 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 15637331.0633 51 +Q9W2M9 FI16623p1 14.71 2 2 2 202328.123 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 1502.7758 2 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 372867.189 5 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 456198.774 11 +Q9W2V2 FI20035p1 5.6 3 3 3 6341.55084 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 34099481.20497 86 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 554856.2804 19 +Q9W2Z9 RE65233p 4.81 1 2 1 41607.934 2 +Q9W306 GEO08256p1 25.62 3 4 3 9823.32345 3 +Q9W308 GH05731p 16.18 2 5 2 438112.208 5 +Q9W309 GEO08445p1 33.95 7 11 7 772402.2565 11 +Q9W314 GH14088p 9.82 4 5 4 138539.7467 5 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 155411.2874 8 +Q9W330 Phosphotransferase 29.76 15 32 2 3073547.5413 31 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 58193.344 2 +Q9W337 GH19985p 44.95 7 14 7 742727.9217 14 +Q9W370 GEO12084p1 38.52 4 10 4 418702.836 9 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 10627.3539 2 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 16599.071 2 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 2001165.5499 35 +Q9W396 FI06908p 14.17 4 7 4 258360.9981 6 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 139132.1945 5 +Q9W3C3 LD10016p 12.94 6 8 6 143178.87435 6 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 45359.6324 3 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 350118.8025 11 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 125173.21660000001 3 +Q9W3H4 LD36273p 66.8 13 29 13 1366684.99747 25 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 107934.5345 7 +Q9W3J6 FI06457p 8.64 3 4 3 26558.8616 3 +Q9W3K6 LD35927p 4.99 4 5 4 78169.559 4 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 629292.4368 23 +Q9W3L4 GH20802p 35.02 10 23 10 795749.2657 22 +Q9W3M7 RNA helicase 14.07 10 15 9 71051.87225 9 +Q9W3M8 LD34211p 47.74 8 17 8 824219.0843000001 17 +Q9W3N1 RH59310p 7.17 2 2 2 5361.757 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 384624.919 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 2421176.77806 37 +Q9W3Q0 FI07418p 23.39 5 14 4 21460.3772 3 +Q9W3Q1 GM14286p 8.84 3 3 3 15893.995350000001 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 358540.81858 12 +Q9W3S3 LP10445p 15.68 2 3 2 8457.6355 3 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 111279.58148000001 6 +Q9W3T9 GM01152p 45.38 9 16 9 677569.6239 16 +Q9W3U9 CG14434-PA 32.62 6 13 0 210011.15807 9 +Q9W3V2 FI19713p1 4.82 4 4 4 26222.8543 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 13916.331 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 53652.6195 4 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 5775853.3291 57 +Q9W3X8 RH42690p 10.73 4 5 4 18774.991 3 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 595854.2554 19 +Q9W3Z4 GH18625p 3.75 1 1 1 3167.3984 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 3193027.00539 50 +Q9W403 LD24968p 9.21 5 7 5 58578.244360000004 7 +Q9W404 GH10714p 31.03 9 12 8 215697.3151 9 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 46799.3184 3 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 1016482.1805 24 +Q9W425 Rabconnectin-3A 1.34 5 5 5 27350.974199999997 3 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 5031714.67746 60 +Q9W461 LD23868p 18.22 7 8 7 124208.80489999999 8 +Q9W482 Lin-52, isoform A 33.12 4 11 4 122525.41696 8 +Q9W483 GH18971p 5.79 2 3 2 57720.279500000004 3 +Q9W486 LD13361p 5.27 3 3 0 32368.14 3 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 95845.0827 4 +Q9W4A0 GH11193p 19.8 4 5 4 189630.577 5 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 47914.273049999996 8 +Q9W4C2 lysozyme 17.11 3 3 3 84751.07500000001 3 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 179975.6113 8 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 27337.108 4 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 2081181.31736 27 +Q9W4N8 LD30122p 55.76 15 77 0 6363830.8301800005 70 +Q9W4U2 RH09070p 41.37 8 24 8 1384252.02789 21 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 8565.2855 2 +Q9W4W5 RE47284p 11.15 4 4 4 195302.4396 4 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 283255.10498 19 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 496270.50899999996 13 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 15580.081300000002 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 8756.292 3 +Q9W503 RH61816p 38.61 11 14 11 380218.7945 14 +Q9W5B4 GH18858p 31.97 10 21 10 860460.9547 18 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 25865.282300000003 2 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 11961.012040000001 3 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 79542.57579999999 5 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 129763.582 6 +Q9W5W7 GH19483p 2.57 2 3 2 27175.1576 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 4981902.22897 38 +Q9W5X0 LD21953p 26.87 6 25 1 114943.439 4 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 163634.9794 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 145743.8379 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 5020546.8903 44 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 144913.825 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 745413.3406 17 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 763283.3054 15 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 10148316.60979 98 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 440296.18166 23 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 422911.50246 19 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 12737725.77947 92 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 13532.23998 3 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 49720.1746 7 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 2042306.03757 37 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 263716.712 13 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 2700010.86315 40 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 9529176.27512 76 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 2781.0862 1 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 172376.65204 4 +R9PY51 Uncharacterized protein 34.95 6 48 6 5465829.8422 27 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 7500276.39719 105 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 356148.1349 12 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 279760.0272 10 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 129178.20349999999 2 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 212523.3425 6 +X2JB48 ADP/ATP translocase 56.86 20 109 1 9386334.53483 101 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 666861.80118 31 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 80671.91982 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 23781308.04028 111 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 19471.625 1 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 18192.769999999997 2 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 9560.7263 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 15014.502 1 +P10674 Fasciclin-1 49.69 30 164 1 1921.713 1 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 3716.8018 1 +Q08605 Transcription activator GAGA 1.2 1 1 0 25748.314 1 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 7447.588 1 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 2908.552 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 59418.92650000001 3 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 55651.44 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 5733.3906 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 3751.4734 1 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 26919.980000000003 2 +Q9W568 Protein halfway 3.11 1 1 0 937.5949 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 5075.8574 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 4502.0586 1 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 61199.7025 6 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 900.6815 1 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 28164.285 1 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 50382.277 1 +A1Z7M0 Space blanket 2.86 1 1 1 18238.582 1 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 42769.9683 2 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 206504.5745 6 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 10055.805 1 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 1689.0522 1 +E1JJM0 FI20063p1 22.76 13 20 0 400534.37279 18 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 9854.607 1 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 20142.209 1 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 8611.203 1 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 10327.5047 2 +Q0E8R1 FI07211p 34.57 13 35 0 116583.518 2 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 129093.563 10 +Q7JWH6 RE61424p 5.65 2 2 2 6612.5547 1 +Q7JXA2 LOBE 5.52 2 2 2 5055.0713 1 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 133552.7627 3 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 3085.7603 1 +Q7KVW1 RE73736p 2.8 2 2 0 36351.813 2 +Q7PLV6 FI02158p 0.85 1 2 1 3128.2837 2 +Q8I062 GH23305p 83.33 21 152 1 80234.305 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 30495.1474 2 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 5606.625 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 6794.905 1 +Q8MPN6 Serpin 4 27.18 9 11 0 13212.8 1 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 22676.5556 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 2734.216 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 8180.112300000001 3 +Q9VKC1 IP16805p 4.28 1 1 1 20036.64 1 +Q9VM94 Homer, isoform B 49.62 17 57 1 20737.064 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 67951.23 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 116095.2755 4 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 38417.508 1 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 17624.3516 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 332047.7862 4 +Q9VTY1 LD40136p 5.69 2 2 2 33624.22 2 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 1964.4626 1 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 22216.2586 2 +Q9W2N5 GH10162p 3.47 2 2 2 48435.624800000005 2 +Q9W362 La-related protein 7 1.85 1 1 1 390.11176 1 +Q9W525 LD08195p 3.8 2 2 1 26831.358999999997 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 22450.601 2 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 0.8 1 1 1 449.5032 1 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 37763.998 2 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 18988.277 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 13485.824 1 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 34557.9236 2 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 10901.1381 2 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 62823.2032 4 +E1JJ83 Os-C, isoform B 16.34 2 2 1 6614.2053 2 +M9MRG5 Taiman, isoform F 0.94 2 2 0 26235.244 2 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 311214.44674 18 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 7431.767 1 +O46231 FI18705p1 65.94 22 77 1 83824.32 1 +Q6IDE2 GH07226p 2.0 1 1 1 10022.795 1 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 4305.383 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 12108.161 2 +Q7K527 Tetraspanin 4.61 1 1 1 4448.991 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 201805.2 1 +Q8IQ80 GH06117p 2.97 2 2 0 103036.4612 2 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 83928.2586 3 +Q9VHW5 LD38634p 17.32 2 3 2 19822.2365 3 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 62486.30466 2 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 28728.65 1 +Q9VVG5 RH19679p 14.44 1 3 1 991058.0285499999 3 +P09956 Regulatory protein zeste 2.96 2 2 0 3384.0884 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 7950.6655 1 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 9564.153 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 9872.71 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 42819.707 1 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 9531.09 1 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 48284.316 1 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 11564776.36341 141 +C1C3E7 MIP09364p 61.25 22 85 1 2730.4614 1 +E1JH70 Kank, isoform E 2.57 2 2 0 4721.417200000001 2 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 3612.2983000000004 2 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 15147.344 1 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 1070.4261 1 +Q8IRM1 Uncharacterized protein, isoform E 20.86 4 7 1 528.521 1 +Q9VBS0 CHK domain ov2 4.89 2 2 2 19548.631699999998 2 +Q9VCH9 LD07883p 8.66 2 2 2 42312.143000000004 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 13376.8386 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 33605.035 1 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 8654.6045 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 91401.6344 4 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 170205.655 2 +Q9VMY3 FI19613p1 1.5 1 1 1 8741.949 1 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 9245.8071 2 +Q9VS80 FI17864p1 2.34 1 1 1 6453.698 1 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 1529.9546 1 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 16556.408 1 +Q9VZF0 LD44732p 7.73 2 2 2 13615.782899999998 2 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 4213.9316 1 +Q9VFR1 Protein Abitram 14.95 2 2 2 4016.1639999999998 2 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 11586.893 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 1037346.451 4 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 44354.57 1 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 6822.5117 1 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 2274.9678 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 114653.8744 5 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 8088.4192 2 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 11548.004 1 +Q0KHQ1 GEO13361p1 24.44 2 2 2 84700.6379 2 +Q4QPR8 GEO10187p1 9.76 1 2 1 61436.761 2 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 7982.3712 2 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 26542.0 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 7646.4526000000005 2 +Q9VLL5 Alpha-N-acetylglucosaminidase 1.29 1 1 1 772.51483 1 +Q9VV37 GEO13385p1 10.1 1 6 1 120982.466 3 +Q9VVX6 BET1 homolog 9.4 1 1 1 43596.23 1 +Q9W152 RH33060p 16.9 1 1 1 2076.496 1 +P48613 Protein tipE 3.98 2 2 2 12396.2134 2 +Q9VGW1 Cadherin-86C 1.24 2 2 0 5495.73086 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 149338.8972 3 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 21088.188 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 236252.82749999998 4 +O76895 Arginase 7.69 2 2 2 7791.741 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 51812.043000000005 2 +Q9VAI3 FI06539p 10.08 1 1 1 8679.981 1 +Q9VB09 IP04131p 12.1 2 2 2 39384.64 2 +Q9VHN8 LD37279p 3.43 1 1 1 706.56604 1 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 155859.203 2 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 43784.039 2 +Q9W1X6 GH06673p 8.33 2 2 2 20712.3505 2 +Q9W5E7 LP07417p 11.4 1 2 1 13388.299500000001 2 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 31035.1226 4 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 1880.3287 1 +A1ZAU6 FI05912p 1.83 1 1 0 2167.222 1 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 84500.061 3 +Q7K3Z8 GH01208p 2.35 1 2 1 16108.510300000002 2 +Q9VAN8 FI15955p1 6.46 1 1 1 13077.637 1 +Q9VLL4 FI23523p1 4.52 2 2 2 13065.035199999998 2 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 12418.795 1 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 30854.5754 4 +Q9W542 LD07342p 1.62 1 1 1 6821.0854 1 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 2010.9943 1 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 54553.606 2 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 532.2813 1 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 12555.9806 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 23400.54683 2 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 34912.337 2 +A1Z840 Cdc2-related kinase 4.13 2 3 2 60960.16 1 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 9583.738 1 +Q9W3S4 LD46272p 3.11 1 1 1 2745.985 1 +A8JQX3 Nocturnin 1.87 1 1 1 4022.6797 1 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 10479.927 1 +Q9VUL1 CTP synthase 1.59 1 1 0 16244.161 1 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 1733.3113 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 2143.6697 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 156716.8478 9 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.94 1 1 0 558.6655 1 +O76857 BCL7-like 13.64 2 2 2 23685.789 2 +Q7JY89 RE35124p 15.0 1 1 1 2497.115 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 92126.68599999999 2 +A8JUP7 Serine protease Hayan 2.2 2 3 2 22646.0558 2 +P07664 Serendipity locus protein delta 4.16 2 2 2 20474.419 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 56314.495 2 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 3850.37646 2 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 988.51 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 706293.4247 4 +Q8IQU7 825-Oak 26.36 2 3 0 10238.0897 2 +Q9VGM4 LD28119p 6.76 2 2 2 4422.805 2 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 69351.3548 11 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 8199.286 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 5707.3433 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 10170.008 1 +Q962I2 small monomeric GTPase 59.39 10 28 1 209815.28100000002 2 +Q9VSK1 GH09510p 2.72 2 2 2 685.3944 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 156495.777 2 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 4142.8018 2 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 358929.6401 13 +Q29R09 LD28546p 5.79 2 2 2 2069.97626 2 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1957.1744 1 +Q8SXC0 GH10306p 6.03 2 2 2 36917.63 1 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 3.7 2 2 2 963.28253 1 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 2166.0203 2 +Q9W0A9 GM02612p 3.06 1 1 1 1753.6381 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 12690.452 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 91135.519 4 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 22283.66 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 6080.4937 1 +Q9VV29 GEO12576p1 9.68 1 2 0 96464.647 2 +P45884 Attacin-A 5.36 1 2 0 120528.702 2 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 1325.2375 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 30645.838 1 +Q9VV27 MIP11526p 15.25 2 2 2 72874.62100000001 2 +O76324 Discs overgrown protein kinase 2.27 1 1 0 1708.1477 1 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 8776.827 1 +Q9VFL9 FI07901p 6.08 2 2 2 3287.8275 2 +A0A0B4JCW7 TBC1 domain family member 30 0.66 2 2 0 320.65744 1 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 18977.337 2 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 73213.83455 3 +Q9VEQ0 Xylulose kinase 1.99 1 1 1 593.6632 1 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 15857.235 1 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 39302.203 1 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 4227.8496 1 +Q2PDU0 GEO11169p1 9.84 1 1 1 7143.3 1 +Q9VF46 GH25158p 7.34 2 3 2 50700.586500000005 3 +Q9VSD8 IP10160p 6.67 2 2 2 8125.460599999999 2 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 19683.95 1 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 19045.197 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 44901.228 2 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 3873.9888 1 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 10831.833 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 667.37024 1 +A8JNU1 adenylate cyclase 1.02 1 1 0 5050.477 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 17324.072 1 +Q7JW46 RE25483p 17.0 1 1 1 529.6523 1 +Q7K010 Tetraspanin 5.0 1 2 1 12591.0095 2 +Q9VUR4 FI11905p 11.6 4 9 1 14544.385 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 7913.065500000001 2 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 3172.433 1 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 5202.0557 1 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 32382.673 2 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 47537.31150000001 3 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 661.33026 1 +A8JNV2 Uncharacterized protein 10.71 1 2 1 8874.9424 2 +Q9VRX7 LD29573p 1.32 1 1 1 5912.8315 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 37464.676 1 +O46099 EG:8D8.2 protein 0.78 1 1 1 1372.826 1 +Q8SWU4 RE25571p 17.3 6 12 1 24562.24 1 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 13744.5956 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 59870.78 2 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2109.0713 1 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 20114.621 1 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 25663.629 1 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 1722.9596 1 +Q8IRD6 Dro4 protein 33.8 2 2 2 40972.48 2 +Q8SXW3 GV1, isoform B 4.44 1 2 0 31979.232000000004 2 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 20758.053200000002 2 +Q7JWE2 GH09427p 3.96 1 1 1 4192.7026 1 +Q8IRN0 FI06485p 10.84 2 2 2 13266.718799999999 2 +D8FT19 MIP22288p 2.35 1 1 0 3567.598 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 13263.2984 2 +Q8ML92 Protein aveugle 7.55 1 1 1 19509.338 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 3.59 1 1 0 469.5073 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 3797.476 1 +Q9VT15 GH14734p 2.78 1 2 1 33254.758 2 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 17824.4388 2 +A1A750 GEO11067p1 18.81 2 2 2 55808.517 2 +Q9VF83 LD33178p 2.73 1 1 1 8814.592 1 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 3262.65 1 +Q9NHV9 Protein vav 3.66 3 3 0 5617.2617 1 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 5841.888 1 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 916.5457 1 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 57294.4886 3 +M9PCK0 Decima, isoform D 4.29 1 1 0 6831.9355 1 +Q9VPA9 LD24894p 0.92 1 1 1 9492.4795 1 +Q9VSS4 IP05455p 10.32 1 1 1 18133.35 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 43984.594 2 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 10229.889 1 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 4458.5255 2 +Q7KV26 Kinase 2.6 1 1 1 2104.2021 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 2973.018 1 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 6290.8237 1 +Q02427 RNA-binding protein 1 29.86 4 5 1 189625.64 1 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 6665.4756 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 8607.1634 2 +Q9VDL4 LP04613p 2.72 1 2 1 7616.5257 2 +Q9VQ52 GH27779p 3.93 2 2 1 32099.246349999998 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 63554.523 2 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 5248.6007 2 +Q9VGE8 Tachykinins 6.57 2 4 0 31051.63966 4 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 41437.350999999995 2 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 39366.299 2 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 16402.3363 2 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 1913.7329 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 12531.6943 2 +Q7YU81 Protein charlatan 1.48 2 2 0 9447.237799999999 2 +Q9VHV3 FI02011p 3.75 2 2 2 14854.239 2 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 3558.2363 1 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 9039.603500000001 2 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 5349.495 1 +Q9V3A6 Ero1-like protein 2.28 1 1 1 2970.1548 1 +Q9VIQ4 GH03980p 10.75 2 2 2 38791.87330000001 2 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 151673.85499999998 2 +Q7K8Y3 IP16419p 26.28 9 11 0 645956.31856 10 +Q8STG9 DSec61alpha 1.89 1 1 1 13440.461 1 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 36044.781500000005 3 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 10610.579 1 +P22812 Protein Tube 3.9 2 2 2 3535.58725 2 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 28917.918 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 22972.104 2 +Q7JV39 GH01142p 5.05 1 1 1 9258.265 1 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 13250.882300000001 2 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 36321.215 1 +Q27367 Protein croquemort 4.48 2 2 2 17075.16 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 5431.201 1 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 1924.4508 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 3415.8452 1 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 12130.475999999999 2 +Q9W4F9 IP01388p 3.65 2 2 0 17176.557 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 3126.6375 1 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 3884.8733 1 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 1699.0602 1 +F0JAQ9 MIP27169p 2.34 1 1 0 848.876 1 +P18289 Transcription factor Jra 3.81 1 1 0 2154.014 1 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 22592.123 1 +Q9VJ77 FI24106p1 2.07 1 1 0 2167.4868 1 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 24744.996 1 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 5572.9434 1 +Q9VR55 LD29159p 8.71 1 4 1 50302.419200000004 3 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 8812.0625 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 72758.1233 5 +P54194 General odorant-binding protein 84a 6.86 1 1 1 10101.339 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 4047.4177 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 36090.90757 2 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 921.9005 1 +Q9VV26 GEO12049p1 6.84 1 2 1 191196.256 2 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 321.0529 1 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 601.2126 1 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 10153.066 1 +Q9VX14 RH64870p 8.82 2 2 1 9499.406799999999 2 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 33743.8635 2 +Q8MKL1 UPF0598 protein CG30010 7.78 1 1 0 397.44788 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 13896.2265 2 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 7786.379 1 +A1ZAG3 Protein G12 2.9 1 1 1 36955.074 1 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 7509.9243 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 15484.1837 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 28672.743700000003 4 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 1999.8636 1 +Q6IJE8 HDC15077 11.85 1 1 1 47949.734 1 +Q9VVI0 SD09427p 1.63 1 1 1 3284.7568 1 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 32620.699999999997 2 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 6097.1736 2 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 23806.38 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 39701.363 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 3711.0396 1 +Q9W494 Crossveinless 8.17 2 2 2 29813.936 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 35308.822499999995 3 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 4750.319600000001 2 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 32185.387300000002 2 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 15791.734 1 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 4764.9106 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 88692.3 1 +Q95NH6 Attacin-C 2.9 1 1 1 4844.2026 1 +Q86B83 LD12611p 5.44 2 2 2 7370.9076000000005 2 +Q8MRQ1 GH06222p 3.62 2 2 0 15068.105 1 +Q4V6X9 IP01247p 3.24 1 1 1 951.88495 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 965.1197 1 +Q9VPR6 Kinase 2.59 1 1 1 6016.2764 1 +Q9VF80 Cysteine protease 1.65 1 1 1 551.3511 1 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 12267.516 1 +Q9V4B8 RE68558p 1.2 1 1 1 11976.326 1 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 23373.822 1 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 3797.8335 1 +Q8I0J1 RE43539p 2.51 1 1 0 11671.6 1 +Q9VC27 Nicastrin 1.29 1 1 0 12876.442 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 6793.932 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 4012.0796 1 +E1JIS4 Uncharacterized protein 5.93 1 1 1 325.16803 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 687.4036 1 +Q9W0I2 RE15268p 11.17 1 1 1 7050.914 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 6527.7505 1 +Q961R9 GH09241p 1.8 1 1 1 26868.125 1 +Q9VCC7 FI03681p 1.71 1 1 1 571.7057 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 4562.8647 1 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 560.62427 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 15700.8789 2 +Q9VFR4 GH09754p 6.64 1 1 1 44277.8 1 +Q7JX82 GH21964p 4.17 1 1 1 385.2206 1 +Q7K490 SD03973p 2.65 1 1 1 4696.8706 1 +Q9VP69 ADP-ribose glycohydrolase OARD1 17.65 1 1 1 406.92505 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 22975.87594 2 +A1Z8N1 Trehalose transporter 1 2.1 1 1 1 695.1635 1 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 8695.509 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 70079.79699999999 3 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 11605.8876 2 +Q6NN09 ATPase protein 9 5.07 1 6 1 1423245.4855 6 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 3747.0925 1 +O76874 SD17974p 1.14 1 1 1 3873.531 1 +Q9VEB2 LD28404p 3.0 1 1 1 15613.053 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.64 1 1 1 482.09857 1 +P41964 Drosomycin 17.14 1 1 0 3744.7273 1 +Q9VL21 LD11652p 6.22 1 1 1 11224.223 1 +Q9VBD8 RT02919p 4.37 1 1 0 1599.944 1 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 6966.4126 1 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 131525.005 2 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 1673.8806 1 +Q9VK20 LD18447p 1.79 1 1 1 8544.503 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 8844.143 1 +Q9VA48 Serpin 100A 2.77 2 2 2 13537.6865 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 3374.546 1 +Q9VBK9 Protein FAM98B 3.08 1 1 1 34914.89 1 +Q9VZC8 GEO12024p1 6.85 1 1 1 744.55634 1 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 17633.0638 2 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 19149.88 1 +Q0E985 RH74701p 15.0 1 1 1 2983.6035 1 +Q9VCC2 RE50040p 4.86 2 2 2 47230.469 2 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 12451.16 1 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 5044.188 1 +Q7K172 CAAX prenyl protease 3.33 1 1 1 7514.199 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 29171.436 1 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 7550.482 1 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 63802.963 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 18493.873 1 +E1JHX0 MIP29328p 3.76 1 1 1 3177.9346 1 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 8743.764 1 +A0A126GV08 Uncharacterized protein, isoform G 5.3 2 2 0 687.54926 1 +F9VMG5 GEO02462p1 41.07 2 2 2 23820.694 2 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 16228.771200000001 2 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 16142.012 1 +Q9V9R3 adenylate cyclase 1.29 2 2 2 9067.1045 2 +Q9VS39 FI19525p1 5.88 2 2 2 17691.5341 2 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 10012.882 1 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 11863.276 1 +Q9VUE5 LD17962p 0.77 1 1 0 42134.6 1 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 2057.6624 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 11309.7544 2 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 18656.1763 2 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 665.65625 1 +M9PE65 Axotactin 0.69 1 1 1 3298.903 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 3403.0806 1 +Q8IRK0 GH04558p 5.41 2 2 2 70544.75394 2 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 4048.124 1 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 11271.533 1 +Q5BI50 Cullin-4A 1.34 1 1 1 7311.2925 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 784.73193 1 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 861.5633 1 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 1856.5103 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 85496.305 1 +P07186 Chorion protein S19 14.45 1 1 1 1726.0525 1 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 7401.9556 1 +Q9VJK9 GEO06505p1 9.52 1 1 1 895.3447 1 +E1JHN0 FI16804p1 13.08 1 1 1 674.43634 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 1533.0342 1 +Q9VL29 GEO11246p1 12.93 1 1 1 9450.563 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 485.93982 1 +Q9W2F6 RE36793p 14.17 2 2 2 20272.367 2 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 3402.727 1 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 36987.844 1 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 6156.533 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 7074.298400000001 2 +Q7JR99 RE31204p 5.59 1 1 1 4557.7173 1 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 2676.5208 1 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 105978.6134 6 +B7YZZ0 GH19557p 12.64 1 1 1 14824.706 1 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 7738.6316 2 +A1Z8D4 AT13868p 4.47 1 1 0 1818.844 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 82763.21 1 +A8DYV9 GEO02589p1 10.53 1 2 1 17603.232 2 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 3649.772 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 152561.16 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 4633.356 1 +Q7K1H9 GH07575p 3.69 1 1 1 4550.535 1 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 3220.5054 1 +O76513 Cyclin-H 3.7 1 1 1 8491.215 1 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 861.96857 1 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 6278.068 1 +Q9W0U6 Sulfatase-modifying factor enzyme-like domain-containing protein 4.46 1 1 1 445.1743 1 +Q9V449 Met75Ca 23.53 1 1 1 4516.088 1 +Q9VLA6 Brickwall, isoform A 3.22 1 1 1 472.78452 1 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 2354.008 1 +Q03445 Glutamate receptor 1 1.92 1 1 1 1798.3259 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 5575.574 1 +Q9W0B6 LD14179p 1.48 1 1 1 3380.1816 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 3036.575 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 106836.19 1 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 5050.8193 1 +Q9VT01 FI06792p 3.5 1 1 1 383.96988 1 +Q9VIM8 RE22905p 2.85 2 2 2 3760.126 1 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 2424.8494 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 17186.06455 2 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 6438.2173 1 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 140667.31 1 +Q9VMM3 RE17389p 2.61 1 1 1 870.75183 1 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 9405.707 1 +Q9W551 GEO02601p1 8.49 1 1 1 813.9439 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 6652.3774 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 2480.5276 1 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 2381.813 1 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 4700.232 1 +Q9VB20 Distracted, isoform B 0.68 1 1 1 653.3792 1 +Q9VA94 GH07782p 2.82 1 1 1 389.36035 1 +Q9VX56 LD03052p 5.94 1 1 1 19675.738 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 7061.0903 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 27218.423 2 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 2286.1096 1 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 3332.626 1 +Q7JY99 glycerol kinase 1.34 1 1 1 1971.3899 1 +Q9VP08 IP11255p 2.36 1 1 1 3308.0227 1 +Q8MYV9 GEO12865p1 11.04 1 2 1 73419.133 2 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 8166.241 1 +Q9V6L9 F-box/SPRY domain-containing protein 1 4.31 1 1 1 548.5511 1 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 5925.634 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 25994.82 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 127607.793 2 +Q7JWV7 Tetraspanin 4.85 1 1 1 2152.2507 1 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 5025.38 1 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 1547.1508 1 +Q8IRE5 RH23915p 21.54 1 1 1 863.20667 1 +Q9VWL7 Rho GTPase activating protein at 18B, isoform C 0.76 1 1 0 795.9705 1 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 8110.029 1 +Q9VBQ5 LD38433p 1.91 1 1 1 21639.553 1 +Q9VZR5 RE46159p 11.06 2 2 2 23609.407 2 +Q9VPB7 FI17508p1 1.3 1 1 1 3450.9797 1 +P52485 Ubiquitin-conjugating enzyme E2-24 kDa 8.62 1 1 0 453.97888 1 +Q8T092 LD21421p 2.45 1 1 1 354.03564 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 7955.3623 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 1423.5461 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 18847.383 1 +Q7K4G8 LD40944p 1.7 1 1 1 2521.9019 1 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 5067.5005 1 +Q9VHW4 FI21225p1 0.74 1 1 1 2428.3489 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 5861.1113 1 +Q9VMI5 CG9135 protein 1.44 1 1 1 3824.5854 1 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 23321.459 1 +Q9VVJ6 Keren 4.61 1 1 1 4234.2905 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 128709.398 3 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 865.39764 1 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 188574.94 1 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 21591.59 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 6931.436 1 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 384.09714 1 +E1JH07 LD18062p1 8.0 1 1 1 33468.15 1 +Q9VWG2 FI07430p 2.75 1 1 1 2655.2896 1 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 3855.0637 1 +Q9Y113 Negative elongation factor B 1.35 1 1 1 3909.1602 1 +P36192 Defensin 8.7 1 1 1 2905.54 1 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 4144.717 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 5737.435 1 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 5512.1626 1 +Q9VAK8 Protein Diedel 8.7 1 1 1 3114.2632 1 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 4450.2153 1 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 733.2458 1 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 3614.5786 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 57297.344 1 +Q0E908 Hillarin 0.86 1 1 1 2028.7317 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 501502.66000000003 2 +Q9VPH4 FI03293p 2.31 1 1 1 2449.8706 1 +Q5BIL9 SD21168p 1.63 1 1 0 29598.727 1 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 3585.9634 1 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 4429.0854 1 +A1Z6H0 Kune-kune 2.65 1 1 1 15957.985 1 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 910.7439 1 +M9MS77 Uncharacterized protein 7.56 1 1 1 13375.084 1 +Q9VHJ4 GH04846p 2.25 1 1 1 2913.373 1 +Q9W226 GEO07239p1 5.88 1 1 1 4159.2036 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 5965.953 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 3106.4492 1 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 4906.81 1 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 7054.6987 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 18867.504 1 +Q9V412 STING ER exit protein 4.45 1 1 0 2467.911 1 +Q8MRQ2 GH05923p 2.74 1 1 0 7442.9116 1 +Q9VE99 GEO12060p1 16.67 1 1 1 2595.082 1 +Q6XPX3 Phospholipase A2 4.3 1 2 1 16741.129999999997 2 +Q8SYR5 GEO07715p1 7.1 1 1 1 9031.076 1 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 3136.2017 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 4391.9067 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 4345.376 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 2138.5884 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 7401.599 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 3574.213 1 +Q7PL72 LD05675p 5.85 1 1 0 2875.4714 1 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 4804.1367 1 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 4529.098 1 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 8110.8584 1 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 3899.2732 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 14123.756 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 901.26984 1 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 3538.3003 1 +Q2MGN0 FI01014p 2.5 1 1 0 854.2307 1 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 3051.7018 2 +A1A6X2 IP16893p 12.07 1 1 1 23386.832 1 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 10810.178 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 1886.2476 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 39960.916 2 +Q7JXE1 Bunker gear 4.75 1 1 1 628.9576 1 +Q9VKZ9 FI06463p 5.39 1 1 1 14801.32 1 +Q7K105 LD20892p 1.3 1 1 1 11170.246 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 19895.322 1 +Q9W081 AT01075p 2.34 1 1 1 2104.4287 1 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 17952.096 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 13385.938 1 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 4781.545 1 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 312.23267 1 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 3933.0486 1 +Q9W009 GH12037p 3.17 1 1 1 5701.887 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 42184.066 1 +Q0E906 GEO11031p1 11.69 1 1 1 10201.699 1 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 2705.6704 1 +Q9VBT7 GH13495p 1.9 1 1 1 3332.1943 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 43215.76 1 +Q9Y1A7 LD25378p 2.0 1 1 1 8191.6514 1 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 691.82825 1 +Q7JR91 GH12715p 3.19 1 1 0 4221.5576 1 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 511.5657 1 +B7YZH7 GM12693p 21.43 1 1 0 430.6972 1 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 384.61685 1 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 2557.976 1 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 3114.6882 1 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 198634.86 1 +Q9VUB4 GATOR complex protein NPRL3 1.97 1 1 0 373.1528 1 +Q9VJU2 Nimrod C3 3.12 1 1 1 8300.199 1 +Q9W3Q2 SD08447p 1.26 1 1 1 11067.776 1 +A1Z979 Salivary secreted peptide 6.25 1 1 0 12126.831 1 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 4128.9175 1 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 184010.58826 12 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 181152.542 3 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 43250.2308 6 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 28835.70883 5 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 42015.1559 2 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M1_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M1_TMTa.txt new file mode 100644 index 0000000..5ab2cd8 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M1_TMTa.txt @@ -0,0 +1,4040 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 128N, Sample, n/a, SF1g_M1 Abundances Count: F5: 128N, Sample, n/a, SF1g_M1 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 17119.229199999998 3 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 40076.9444 9 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 1969360.71681 63 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 27272.8917 5 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 60543.303850000004 13 +A0A1F4 Protein eyes shut 9.56 22 68 0 500245.42319 58 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 7116.2031 3 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 153219.17909 17 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 1585.2805 1 +A1Z7T0 Serine/threonine-protein kinase N 1.34 2 3 0 750.3902 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 3422.16576 3 +A1Z877 Nidogen 24.81 29 66 29 633584.38633 62 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 4013.2026 1 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 663.35095 1 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 180929.88438 57 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 116713.8517 10 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 58511.7369 5 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 164295.52007 32 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 8703.8837 2 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 130483.35429 37 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 46915.5862 3 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 11712.3519 4 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 19656.08536 9 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 8461.8165 2 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 14485.380000000001 2 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 7868.481 2 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 171415.8391 6 +A8DYP0 Protein Obscurin 2.11 10 12 10 24633.32116 8 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 221890.5203 8 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 1508759.78137 82 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 232070.60682 19 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 338633.67386 49 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 601536.77823 32 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 55332.9124 4 +C0HL66 Histone H3.3A 52.94 8 63 0 66788.028 3 +C0HLZ9 Baramicin A1 15.56 4 9 0 33033.0569 7 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 514189.72659 31 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 6620.91465 6 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 66606.14984 11 +M9NDE3 Protein bark beetle 3.91 13 19 13 60525.96117 13 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 4326817.26102 102 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 113905.0407 6 +O01367 Protein held out wings 21.48 8 10 0 40335.7773 9 +O01382 Caspase drICE 17.99 5 7 4 6936.91626 6 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 377164.287 8 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 3413995.93942 103 +O02194 Presenilin homolog 5.73 3 5 0 6378.6137 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 360618.2942 20 +O02649 Heat shock protein 60A 73.47 40 183 25 7439488.66789 155 +O15943 Neural-cadherin 14.89 49 91 2 658127.61151 76 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 68251.2639 10 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 62317.1898 3 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 23459.29753 5 +O18333 Ras-related protein Rab-2 18.31 5 10 5 52092.72115 9 +O18334 Ras-related protein Rab6 18.75 5 16 0 10763.36507 4 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 538270.858 26 +O18388 Importin subunit beta 3.73 4 6 0 7270.652679999999 3 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 5155910.71362 106 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 369857.0703 30 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 56829.24237 11 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 61768.4505 3 +O44342 Protein windbeutel 19.46 5 10 0 38100.94436 8 +O44386 Integrin alpha-PS3 11.84 14 20 12 88501.57971 17 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 2417.0486 1 +O46037 Vinculin 53.69 50 137 0 2103478.79296 118 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 33378.2054 4 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 95269.16874000001 7 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 97746.67674000001 9 +O46339 Homeobox protein homothorax 6.16 3 3 3 803.0901 1 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 347285.69009 21 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 2343.8922700000003 3 +O61307 Teneurin-m 0.66 2 2 0 3498.0679 2 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 21785.4935 4 +O61491 Flotillin-1 48.83 23 81 23 1209592.49963 69 +O61722 PRL-1 phosphatase 44.32 7 23 7 345599.00941 15 +O62619 Pyruvate kinase 69.23 27 80 27 2566430.73003 62 +O62621 Coatomer subunit beta' 3.17 3 4 3 7111.25835 4 +O76206 Putative riboflavin kinase 49.02 7 15 0 368705.1905 12 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 172172.25650000002 6 +O76742 Ras-related protein Rab7 28.5 6 12 6 117777.67286 11 +O76878 RILP-like protein homolog 9.71 5 10 0 52172.19098 9 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 95541.2022 15 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 299643.36938 16 +O77051 Transcription factor E2F2 22.97 9 14 0 29275.67287 9 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 20313.5899 4 +O77277 Torsin-like protein 12.65 5 8 0 62959.217599999996 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 3454.7235 2 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 29783.75 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 85446.526 23 +O96690 Protein PDF 23.53 1 1 1 2805.0857 1 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 2606492.04282 67 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 41987.911199999995 7 +O97125 Heat shock protein 68 24.09 13 89 6 184438.77996 20 +O97172 UPF0729 protein CG18508 29.29 3 8 0 44887.246100000004 7 +O97394 Protein sidekick 1.89 4 5 0 2773.4974700000002 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 28995.3983 5 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 1100812.73 46 +P00334 Alcohol dehydrogenase 88.28 21 200 21 29832529.65699 144 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 1776056.8118 34 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 3648.0055 3 +P02255 Histone H1 14.45 3 6 0 38457.0604 5 +P02283 Histone H2B 56.91 8 70 8 1546504.83142 54 +P02299 Histone H3 52.94 8 67 2 1723228.8088 55 +P02515 Heat shock protein 22 40.8 8 18 8 187264.20414000002 14 +P02516 Heat shock protein 23 84.41 16 83 0 5467974.53283 71 +P02517 Heat shock protein 26 57.69 10 30 0 1484550.72989 25 +P02518 Heat shock protein 27 44.13 9 21 0 575368.97075 21 +P02572 Actin-42A 64.1 25 768 2 40944091.24901 587 +P02574 Actin, larval muscle 65.96 25 672 0 1888761.1738800001 22 +P02828 Heat shock protein 83 48.4 33 148 0 3503401.3405 138 +P02843 Vitellogenin-1 70.84 32 265 0 1666706.2657299999 142 +P02844 Vitellogenin-2 59.28 26 187 0 1204213.31977 90 +P04197 Myb protein 3.81 3 3 0 586.0941 1 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 328237.64157 15 +P04388 Ras-like protein 2 13.02 2 10 2 57201.0512 8 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 15575.179929999998 6 +P05205 Heterochromatin protein 1 36.89 8 22 8 225081.42048 19 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 2814099.0239 31 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 731120.1936 16 +P05552 Transcription factor Adf-1 7.63 2 5 0 49357.2476 5 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 25427.6576 10 +P05812 Heat shock protein 67B1 12.13 5 7 5 17652.64873 5 +P06002 Opsin Rh1 4.56 2 8 2 25825.073299999996 6 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 20576341.82444 135 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 8480.853 1 +P06607 Vitellogenin-3 82.14 33 299 0 1409898.54018 168 +P06742 Myosin light chain alkali 56.77 11 71 0 7306175.95747 42 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 5402.851 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 1679932.04988 41 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 9033381.57881 128 +P07665 Serendipity locus protein beta 8.43 4 5 0 3025.3180500000003 2 +P07668 Choline O-acetyltransferase 7.63 5 6 5 10902.33566 4 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 19329308.87943 333 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 19312.2178 7 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 259311.487 22 +P08144 Alpha-amylase A 18.22 8 15 0 261957.93524 13 +P08171 Esterase-6 13.24 9 22 0 149260.81805 20 +P08182 Casein kinase II subunit beta 38.72 8 38 2 628578.003 30 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 1277040.17024 25 +P08645 Ras-related protein Rap1 25.54 5 15 0 203471.93995 15 +P08646 Ras-like protein 1 30.69 4 10 4 134021.00237 9 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 12343658.155240001 170 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 50784.53885 11 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 4650620.11617 110 +P08928 Lamin 67.36 50 193 49 4206862.23128 167 +P08985 Histone H2A.v 42.55 10 47 8 810763.7623599999 30 +P09040 Drosulfakinins 21.99 3 3 3 33679.623999999996 3 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 833518.95695 49 +P09208 Insulin-like receptor 3.03 8 10 8 9914.65252 6 +P09491 Tropomyosin-2 76.76 34 245 2 81947.48105 6 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 119447.3582 13 +P10180 Homeobox protein cut 0.46 1 3 0 75014.8445 3 +P10379 Protein unzipped 20.29 8 28 0 504867.3795 25 +P10552 FMRFamide-related peptides 2.31 1 3 1 41125.72 2 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 394372.92196 65 +P10981 Actin-87E 76.33 30 777 0 1294577.17049 35 +P10987 Actin-5C 64.63 27 797 0 581782.0564 26 +P11046 Laminin subunit beta-1 21.09 39 84 39 1188107.3240399999 66 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 32632.89 1 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 22132553.66898 345 +P11584 Integrin beta-PS 18.32 17 45 0 327721.4435 38 +P12024 Chaoptin 30.95 35 88 0 1780559.35154 73 +P12080 Integrin alpha-PS2 11.53 17 39 17 249077.47518 34 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 842357.37289 38 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 10417.36983 3 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 332438.44001 31 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 504953.82634 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 138380.36250000002 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 132892.94022 8 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 654332.75734 68 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 1659342.68043 85 +P13395 Spectrin alpha chain 65.3 140 542 0 11206853.46579 453 +P13469 DNA-binding protein modulo 4.06 2 2 0 4177.1735 2 +P13496 Dynactin subunit 1 14.23 21 45 21 142384.86569 33 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 2433746.31243 118 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 43928.91156 13 +P13678 Protein kinase C 5.01 4 4 0 6031.1844 2 +P14199 Protein ref(2)P 13.19 7 32 7 190927.74672 31 +P14318 Muscle-specific protein 20 80.43 16 103 16 2269681.11186 72 +P14484 Pupal cuticle protein 27.17 5 39 5 446163.87981 29 +P14599 Amyloid-beta-like protein 1.92 2 2 0 1227.82532 2 +P15007 Enolase 78.0 40 271 1 26550355.73473 228 +P15215 Laminin subunit gamma-1 33.62 53 135 0 1600324.19687 119 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 1299.67236 2 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 2054946.89227 78 +P15364 Protein amalgam 15.92 5 11 0 58353.69365 10 +P15372 Phosrestin-2 67.58 19 65 0 1228580.08117 60 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 140543.1378 7 +P16378 G protein alpha o subunit 29.1 11 46 7 606482.1719600001 39 +P16554 Protein numb 15.47 8 12 0 65077.97567 10 +P16568 Protein bicaudal D 23.4 19 27 0 190516.46288 26 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 74012.8568 11 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 5517.38797 5 +P16914 Protein elav 30.23 13 43 0 623316.33756 37 +P17210 Kinesin heavy chain 34.56 34 100 34 782034.99867 82 +P17276 Protein henna 44.69 15 32 0 1027295.06466 29 +P17336 Catalase 41.11 16 61 16 1334564.7853899999 47 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 656255.3859400001 30 +P17719 Dihydrofolate reductase 4.4 1 2 1 6659.1385 2 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 1213398.74176 42 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 10949.039560000001 4 +P18431 Protein kinase shaggy 29.77 14 58 0 1634540.48822 52 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 4826446.86883 146 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 80093.5597 10 +P18824 Armadillo segment polarity protein 14.47 12 25 0 146567.11826 16 +P19107 Phosrestin-1 77.56 33 263 33 10344783.09883 235 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 181709.72464 29 +P19334 Transient receptor potential protein 4.39 6 9 4 47395.4027 7 +P19339 Protein sex-lethal 4.52 2 4 0 8508.792259999998 3 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 99603.18197 9 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 4001998.2678 41 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 11008.4883 3 +P20153 Protein ultraspiracle 5.91 4 7 0 29091.2925 6 +P20228 Glutamate decarboxylase 27.84 12 34 0 206636.66396 26 +P20232 Transcription elongation factor S-II 42.81 13 19 0 87062.56216 12 +P20240 Otefin 29.95 11 22 11 126639.55133999999 18 +P20241 Neuroglian 21.89 29 84 0 891317.4016999999 75 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 119202.24420000002 6 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 9287.0627 3 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 31939.2721 3 +P20432 Glutathione S-transferase D1 52.15 12 101 9 9650991.73707 89 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 3493738.26139 59 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 15580069.07744 205 +P21187 Polyadenylate-binding protein 26.81 14 44 14 178223.84645 36 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 4725407.5635400005 95 +P22465 Annexin B10 65.42 20 129 20 3128128.56545 112 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 823745.4906199999 31 +P22813 Heat shock factor protein 7.09 5 6 0 39980.1397 5 +P22815 Protein bride of sevenless 1.34 1 1 1 3547.8352 1 +P22979 Heat shock protein 67B3 54.27 8 22 8 730257.1311 19 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 33528.2126 7 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 383723.25306 48 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 21336.35277 3 +P23625 G protein alpha q subunit 54.67 20 124 18 3797369.99108 100 +P23654 Neurotactin 8.87 7 17 0 81889.10889999999 14 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 111523.8624 10 +P23779 Cystatin-like protein 63.49 8 26 8 1202239.2011 21 +P24156 Prohibitin 1 73.91 17 62 0 1485012.47132 51 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 11534890.97764 102 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 7711.16 2 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 475956.70852 38 +P25171 Regulator of chromosome condensation 10.42 5 9 5 55989.60512 9 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 4244.5557 1 +P25228 Ras-related protein Rab-3 30.45 6 18 0 94290.3722 5 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 38825.6821 11 +P25822 Maternal protein pumilio 3.39 5 8 0 28237.419240000003 6 +P25843 Profilin 88.89 7 27 0 1199288.03776 22 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 275676.901 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 72631.8555 9 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 661263.97925 26 +P26686 Serine-arginine protein 55 18.35 8 14 0 93628.0904 11 +P27716 Innexin inx1 11.33 5 7 0 26912.84224 6 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 128346.29658 19 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 35420.9302 6 +P29052 Transcription initiation factor IIB 13.65 5 13 0 50263.0161 9 +P29310 14-3-3 protein zeta 69.35 18 328 0 11942313.97645 275 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 542299.59875 20 +P29413 Calreticulin 57.64 21 79 0 2897287.86658 72 +P29613 Triosephosphate isomerase 77.73 17 135 16 8031406.87529 108 +P29742 Clathrin heavy chain 8.76 16 22 0 35396.2075 13 +P29746 Protein bangles and beads 59.28 23 66 23 1539285.53429 63 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 1753133.06632 63 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 8140.07863 4 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 5772292.36938 131 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 5759184.36096 165 +P30432 Furin-like protease 2 2.44 4 6 0 9587.36656 5 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 866925.8436199999 42 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 1817726.6351400001 72 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 852800.07112 31 +P32234 Guanylate binding protein 128up 11.14 4 4 3 63782.27 3 +P32392 Actin-related protein 3 16.99 7 15 7 129899.16031 13 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 41821.49687 13 +P33438 Glutactin 23.98 23 64 0 308284.22998 45 +P34082 Fasciclin-2 23.02 17 30 0 174140.82143 24 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 775066.12381 23 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 592225.87855 18 +P35220 Catenin alpha 24.1 22 60 12 356974.34143000003 49 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 32094137.393 391 +P35415 Paramyosin, long form 75.2 85 589 0 17078872.23613 443 +P35416 Paramyosin, short form 62.19 47 347 0 1378283.54392 50 +P35421 Phosphoribosylformylglycinamidine synthase 0.59 1 2 1 560.45844 1 +P35554 Flightin 46.7 7 14 0 93012.80974 9 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 38158.235759999996 8 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 2087380.6933 58 +P36188 Troponin I 46.1 16 73 0 2373881.33416 68 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 707104.98974 13 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 1582.22233 3 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 677819.8927 23 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 3611.3086 1 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 3550550.09213 100 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 182619.9968 6 +P37236 Frequenin-1 56.15 9 52 0 179730.1354 9 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 3698.47271 3 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 354993.79725 16 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 2081946.22079 49 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 1942350.18727 57 +P39736 Puff-specific protein Bx42 12.61 6 12 0 17632.7396 7 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 241868.8074 4 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 237468.23084 15 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 42931.5954 4 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 424059.19366 26 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 28617.147249999998 8 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 366238.40688 25 +P40427 Homeobox protein extradenticle 3.72 1 4 0 4422.064700000001 2 +P40792 Ras-related protein Rac1 22.4 4 22 0 167077.76592 19 +P40793 Cdc42 homolog 27.75 5 16 0 204640.015 10 +P40796 La protein homolog 30.26 11 26 10 139171.98846 17 +P40797 Protein peanut 12.62 7 32 6 184364.98641 26 +P40945 ADP ribosylation factor 4 30.0 4 17 0 3060.3503 1 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 670345.89345 32 +P41043 Glutathione S-transferase S1 75.9 13 61 0 5635388.2895 47 +P41044 Calbindin-32 75.48 25 116 0 4554060.34238 91 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 160463.34819 23 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 283817.34385 16 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 376757.09802000003 20 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 1562899.38155 55 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 1355665.82942 40 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 546906.51396 36 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 117170.94873999999 13 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 326987.68313 24 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 7363.01476 2 +P42207 Septin-1 12.74 5 19 4 32732.1891 5 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 2619362.5442000004 28 +P42325 Neurocalcin homolog 66.32 14 25 14 809245.6880000001 21 +P42787 Carboxypeptidase D 5.26 8 12 0 88325.75954 10 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 98855.60265 10 +P45437 Coatomer subunit beta 7.57 5 10 5 65877.24858 10 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 6439898.73587 96 +P45888 Actin-related protein 2 12.53 5 9 5 40137.505900000004 5 +P45889 Actin-related protein 1 24.47 13 20 13 434534.45133 17 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 43384.254 1 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 319946.15388 15 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 745754.34579 26 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 106709.3803 10 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 726336.87452 73 +P46824 Kinesin light chain 41.34 24 66 0 835205.3914900001 50 +P47947 Troponin C, isoform 1 20.78 3 33 0 1576200.82214 28 +P47948 Troponin C, isoform 2 27.74 4 7 0 976.3181 1 +P47949 Troponin C, isoform 3 51.61 7 20 0 976525.5072 19 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 837963.42318 32 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 692969.59418 19 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 472235.33530000004 18 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 2120464.9297599997 26 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 114197.6205 3 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 1532.39435 2 +P48554 Ras-related protein Rac2 26.56 5 20 0 20486.5415 4 +P48555 Ras-related protein Ral-a 43.28 8 20 1 343290.7159 17 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 54499.43795 4 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1869373.39991 56 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 170658.63694 17 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 966501.13906 54 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 1576301.4441 91 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 70934.32815 14 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 549129.4209499999 44 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 795171.10164 56 +P48607 Protein spaetzle 4.29 1 2 0 2770.5276 1 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 35707.59596 5 +P48610 Arginine kinase 1 75.28 38 429 0 25296967.61163 354 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 629270.83228 22 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 674957.1992 47 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 64335.081360000004 13 +P49028 Protein mago nashi 46.26 6 12 6 230777.0835 8 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 71392.5395 8 +P49455 Tropomyosin-1, isoforms 33/34 42.08 34 310 1 816.2979 1 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 284451.33213 7 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 6877.59026 2 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 20415.47774 6 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 1229.29846 2 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 7556.3967999999995 2 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 13549.137999999999 4 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 897681.89538 29 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 194785.58067999998 17 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 17487.7638 5 +P51406 Bystin 5.96 3 4 3 1322.1009800000002 2 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 64511.5791 9 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 27359.0137 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 293628.6227 26 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 17810.72325 6 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 1869.7188 1 +P53034 Replication factor C subunit 2 16.31 6 9 6 29397.54807 9 +P53501 Actin-57B 77.13 31 817 3 6600809.65423 100 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 7917.1143 3 +P53777 Muscle LIM protein 1 56.52 5 52 0 393318.82661000005 34 +P53997 Protein SET 11.52 3 3 3 45625.1677 3 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 167842.8305 6 +P54191 General odorant-binding protein 69a 13.51 2 10 2 120989.3241 10 +P54192 General odorant-binding protein 19d 71.33 11 165 11 13816796.278269999 153 +P54193 General odorant-binding protein 83a 42.86 7 24 0 933854.27613 22 +P54195 General odorant-binding protein 28a 26.57 4 24 4 257729.26476 20 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 5818.3684 3 +P54352 Ethanolamine kinase 15.25 7 8 5 46556.31844 7 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 319968.745 12 +P54357 Myosin-2 essential light chain 89.12 10 58 1 1099539.71083 48 +P54359 Septin-2 8.83 4 13 1 50418.84394 10 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 2562.2842 1 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 1459818.77329 81 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 5045.8459 2 +P54399 Protein disulfide-isomerase 67.14 31 156 0 6800276.34954 138 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 7932253.28388 160 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 129145.73000000001 9 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 135039.11407 20 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 306567.1846 11 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 2378361.9130100003 79 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 897445.72156 28 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 1218114.88031 56 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 6324.322 2 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 77678.31823 10 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 694302.4280000001 11 +P61849 Dromyosuppressin 28.0 2 2 0 113010.715 2 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 9918416.58074 122 +P61855 Adipokinetic hormone 24.05 1 3 1 45744.089 2 +P61857 Tubulin beta-2 chain 42.38 15 197 1 2286046.679 3 +P62152 Calmodulin 98.66 18 386 0 20036221.10182 299 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 1119720.03669 29 +P81829 Leucokinin 11.88 2 3 2 4480.0701 3 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 2473572.43182 59 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 1041852.83877 40 +P82295 Prominin-like protein 2.47 2 2 0 472.72083 1 +P82804 Partner of Y14 and mago 7.73 1 2 1 610.8006 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 677530.43763 18 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 37448.93873 13 +P83967 Actin, indirect flight muscle 68.88 28 754 2 170287.146 3 +P84029 Cytochrome c-2 72.22 13 152 0 10417250.96157 132 +P84040 Histone H4 57.28 7 79 0 3020768.00092 73 +P84051 Histone H2A 37.1 7 32 0 1102240.4768 10 +P84345 ATP synthase protein 8 18.87 1 1 1 50979.543 1 +P91664 Protein max 14.29 3 4 0 14355.871500000001 4 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 7420.8236 4 +P91891 Protein Mo25 24.78 10 27 0 372749.12685 26 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 116861.72624 17 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 206876.502 32 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 2424300.16061 117 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 1935723.05176 47 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 897891.7397 35 +P92029 DnaJ-like protein 60 3.69 1 2 0 1559.4799 2 +P92177 14-3-3 protein epsilon 77.86 25 246 23 12505566.057289999 157 +P92204 Negative elongation factor E 9.64 3 7 3 23946.5279 5 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 9335.4136 2 +P98081 Protein disabled 4.99 10 17 0 11715.686959999999 8 +Q00174 Laminin subunit alpha 17.05 68 162 68 2214984.0543 141 +Q00963 Spectrin beta chain 23.88 59 161 1 2390.11647 2 +Q01603 Peroxidase 7.68 5 10 0 129007.98532 10 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 9171467.65362 192 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 33947.77656 7 +Q01819 Connectin 3.52 3 4 0 28162.85484 3 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 61213.013999999996 2 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 237875.78289 26 +Q02910 Calphotin 3.94 3 9 3 84292.69596 7 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 28718.92056 6 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 328.99814 1 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 335179.948 26 +Q03427 Lamin-C 55.88 41 164 3 1884382.2904400001 123 +Q04047 Protein no-on-transient A 21.86 12 30 0 100517.57146 17 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 128274.82965 22 +Q04691 Fat-body protein 1 28.38 28 55 0 2623869.3852 52 +Q05783 High mobility group protein D 24.11 3 11 0 53466.3902 7 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 20778229.93645 458 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 25464.63676 2 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 3131443.4594199997 95 +Q06943 High mobility group protein Z 31.53 4 12 0 84059.01275 8 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 18711.95186 7 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 512499.28719999996 17 +Q07171 Gelsolin 24.44 18 56 0 541680.76101 47 +Q07327 Protein ROP 24.79 15 61 0 267119.81596 45 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 420795.82091 20 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 11367.505389999998 7 +Q08473 RNA-binding protein squid 38.08 8 17 0 629797.1137 15 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 34979.145 5 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 17467.29214 5 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 44670.7915 7 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 19308.4005 6 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 190458.43899999998 19 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 1919.4666 1 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 8478.91213 4 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 200225.6505 20 +Q11002 Calpain-A 3.38 3 4 0 8765.303899999999 3 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 2457420.80666 58 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 3148170.8895900003 74 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 2423987.49097 81 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 3482920.96949 113 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 1318518.1961 52 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 4014565.09072 97 +Q24050 Elongator complex protein 5 26.34 6 9 6 36761.827569999994 9 +Q24114 Division abnormally delayed protein 9.11 6 13 0 209850.2339 13 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 205924.14597 12 +Q24134 Negative elongation factor D 2.42 2 2 0 20837.371 1 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 25679.965 1 +Q24185 Protein hook 24.45 18 32 18 234663.11695 26 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 942506.42142 31 +Q24207 Protein boule 21.93 4 8 0 44523.0791 6 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 150180.7849 19 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 17182.030749999998 5 +Q24211 Protein stoned-A 45.41 30 66 0 823615.68821 56 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 580684.50026 26 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 39029.20817 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 17462.768 7 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 8080474.39549 138 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 186263.98658 23 +Q24292 Protein dachsous 1.48 5 5 0 5180.161099999999 3 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 141282.7254 2 +Q24298 DE-cadherin 12.94 19 36 19 244017.51163999998 32 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 39567.11552 5 +Q24318 Transcription factor Dp 18.2 7 10 1 15591.50405 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 10640.46786 3 +Q24322 Semaphorin-1A 5.78 5 6 0 1658.1443 1 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 50239.982579999996 7 +Q24372 Lachesin 10.03 5 9 5 33345.767179999995 7 +Q24388 Larval serum protein 2 9.56 7 10 0 25506.6525 7 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 1240093.01266 86 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 3499048.9859 37 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 8424764.88694 169 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 99527.67345999999 27 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 111142.07676 14 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 23988.46744 6 +Q24509 Syntaxin-5 8.14 4 5 0 11620.797 2 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 81581.99391 18 +Q24524 Protein singed 5.66 3 5 0 6216.2213 4 +Q24537 High mobility group protein DSP1 12.21 5 19 0 127880.09133 15 +Q24547 Syntaxin-1A 39.18 13 60 0 1482672.18659 54 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 14454929.94293 254 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 50347.887350000005 7 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 83659.79217 13 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 1011582.40014 42 +Q26377 Pro-corazonin 20.13 3 12 3 46717.2304 6 +Q26416 Adult cuticle protein 1 20.0 1 2 1 89807.8 1 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 48223.48253 13 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 298413.2989 12 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 35508.1756 6 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 664215.26768 43 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 866463.9952 27 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 1253847.51787 37 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 135786.65378 8 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 130175.4094 21 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 1147.44821 2 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 52554.85135 9 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 71942.56444 9 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 8250.6698 4 +Q3KN41 Neurexin 1 4.46 8 11 0 28266.7046 8 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 15439.162900000001 5 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 37368.6204 2 +Q4V645 Trissin 13.89 2 4 2 12946.8064 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 16476.2077 3 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 44347.289600000004 4 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 8781.3515 5 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 208054.60752999998 13 +Q6NN40 Alpha N-terminal protein methyltransferase 1 7.61 2 2 0 1890.713 1 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 11495.7481 3 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 7105.51154 4 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 94094.4561 6 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 11584.323 2 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 198486.8776 9 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 423542.19279 16 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 27050.5708 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 128268.47042999999 15 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 870397.0538999999 29 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 4413.826080000001 2 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 27472.214369999998 8 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 36559.389390000004 7 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 114881.87625 11 +Q7JXF7 Protein seele 23.28 4 11 4 192406.03611 11 +Q7JYV2 Synaptogyrin 7.88 1 1 1 81183.83 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.98 1 1 0 875.8954 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 6661.77046 3 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 139446.10158 21 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 208460.19520000002 4 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 3781.62346 3 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 31776.46652 8 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 51030.19337 5 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 731495.20844 43 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 12715.642600000001 2 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 89283.62354 11 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 86090.37853 23 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 11772.206129999999 7 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 203816.66984 21 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 55086.226299999995 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 3681592.73545 62 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 70246.39716 11 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 290636.3078 18 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 570051.82918 40 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 6916.829299999999 3 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 647744.53609 45 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 42346.08469 9 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 118997.9245 10 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 55824.70732 15 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 106605.5034 9 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 10099542.83599 54 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 4887.4951 2 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 145907.8702 15 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 158798.56225 23 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 14117.785769999999 5 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 32906.2529 8 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 2369819.33738 55 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 3493.2227 1 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 50849.500289999996 7 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 97112.54605 17 +Q868Z9 Papilin 20.36 51 134 51 721921.67132 92 +Q86B79 RING finger protein unkempt 1.34 1 2 0 432.3352 1 +Q86B87 Modifier of mdg4 7.54 5 9 0 85680.77088000001 9 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 34043.71745 6 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 11442.5246 3 +Q86NP2 Negative elongation factor A 8.87 10 18 0 90339.14065 14 +Q86P48 AT-rich binding protein 8.76 3 6 3 2888.23468 3 +Q86S05 Protein lingerer 2.69 3 7 0 14966.50082 6 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 36381.02024 12 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 503207.9987 29 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 43606.39862 15 +Q8IN41 Protein Turandot X 16.2 2 4 2 10014.5433 3 +Q8IN43 Protein Turandot C 48.84 5 12 5 78773.94897 5 +Q8IN44 Protein Turandot A 52.71 7 33 7 437567.91258999996 24 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 101355.81924 17 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 16576.9989 3 +Q8IPM8 Complexin 65.49 10 81 0 31406.885000000002 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 49781.17416 15 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 5196.532450000001 3 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 41865.9026 4 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 73755.62095 5 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 187431.5711 15 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 60601.23045 6 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 499576.006 20 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 27969.87867 4 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 18144.886 4 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 16351.574 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 2818.11087 3 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 129946.18280000001 12 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 1257670.52823 35 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 182154.818 17 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 2189.0515 1 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 28646.694949999997 8 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 2109.93917 3 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 59000.88678 5 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 153190.8561 12 +Q8MSS1 Protein lava lamp 23.79 65 113 0 251438.60757 81 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 7770.4485 3 +Q8MSV2 Protein alan shepard 8.98 7 17 7 182747.80544999999 13 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 2465.70816 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 9303.6763 3 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 46495.88635 11 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 614517.26927 25 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 68953.51534 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 181960.3981 15 +Q8SY33 Protein Gawky 8.6 11 32 11 96144.95464 25 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 2407679.7535699997 62 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 436943.40135 14 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 10785.8503 3 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 6544.0386 1 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 1607.4032499999998 2 +Q8SZ63 Golgin-84 10.27 6 8 6 17319.1022 4 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 229792.73198 11 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 9907.82445 4 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 404493.32785 32 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 560938.30872 40 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 3122.1956 1 +Q8T390 Endophilin-A 53.66 19 86 0 3218567.06624 77 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 114143.6156 8 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 631979.6305699999 13 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 154127.5889 11 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 98576.73442000001 15 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 6377.38634 8 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 395231.15281 29 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 15358.8258 3 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 3143436.23193 108 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 4755133.76813 82 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 6011144.95022 136 +Q94517 Histone deacetylase HDAC1 4.61 1 1 1 506.23077 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 873308.611 20 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 836193.2541 26 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 8212390.9246 79 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 667966.91114 33 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 33317.4059 3 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 603960.01008 26 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 16653.56201 7 +Q94547 Regulator of gene activity 11.97 7 14 0 40322.3501 8 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 40625.472369999996 5 +Q94901 RNA-binding protein lark 48.01 19 52 19 255177.07748 36 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 12764.992400000001 4 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 45204.644 9 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 23006188.10571 345 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 2212.8787 1 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 86898.59610000001 7 +Q95029 Cathepsin L1 35.58 15 83 2 1890632.6263199998 66 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 518622.72014 21 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 42087.941600000006 2 +Q95RA9 GILT-like protein 1 30.8 7 22 7 987243.1297599999 17 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 7503.282 4 +Q95RI5 Failed axon connections 59.09 26 146 0 4408942.72607 131 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 4691.9165 1 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 62222.85 8 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 70359.65367 15 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 14611.065200000001 6 +Q95T12 Calcium channel flower 21.13 4 8 4 20312.76788 6 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 19443.18366 6 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 9728.9448 4 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 41124.84403 11 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 14162.57666 4 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 239495.84532999998 19 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 50919.46535 11 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 37481.80801 7 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 7269.993759999999 3 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 1552.18527 2 +Q967D7 Protein turtle 4.18 7 14 0 67523.63764 10 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 118056.99808 23 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 20963.38032 8 +Q9GQQ0 Protein spinster 1.98 1 7 1 21282.2029 5 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 2664594.89128 71 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 326.55008 1 +Q9I7D3 Caprin homolog 9.37 8 18 0 25683.50845 8 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 40390.507549999995 6 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 29156.737 2 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 17305.9519 3 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 9206.10684 3 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 325119.43822 33 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 9900.11665 6 +Q9I7U4 Titin 2.4 43 56 0 98428.5448 39 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 18174.9639 4 +Q9NB04 Patj homolog 25.6 17 47 0 384754.96086 42 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 10151.235219999999 6 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 14108.5042 5 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 985.3021 1 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 36303.8784 7 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 13502.5126 5 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 46256.9388 12 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 10527.772 2 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 9988.237949999999 3 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 1489763.58173 61 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 32856.16454 3 +Q9TVM2 Exportin-1 1.88 2 2 0 7986.193 1 +Q9TVP3 J domain-containing protein 59.49 14 117 14 5284653.12041 100 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 167686.41241 15 +Q9U4G1 Protein borderless 16.97 10 26 10 345833.50528 23 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 70570.18066 11 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 83791.90945 15 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 564385.1569 15 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 4245.0444 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 109662.0595 6 +Q9U915 Adenylate kinase 2 75.0 21 56 21 1627421.30028 50 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 40602.602 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 156702.67005000002 14 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 114135.47421 15 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 42712.24197 8 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 11655.3293 3 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 2347.6744 2 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 57271.23816 8 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 921933.3494 29 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 19977.39805 7 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 1304110.07274 34 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 21759.2764 3 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 211600.80517 16 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 173546.76513 18 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 56223.315969999996 7 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 1640500.63123 53 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 55219.98475999999 9 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 172403.46463 30 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 30880.0761 5 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 136601.2379 21 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 8472896.28266 119 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 43276.6213 11 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 20491.3455 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 4540.3281 2 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 72735.72538 12 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 29154.9405 7 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 646775.93139 30 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 38958.84886 8 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 121523.46962 13 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 328072.45815 9 +Q9V3Z2 Serine protease 7 13.55 5 15 4 50990.04829 11 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 55296.63184 17 +Q9V427 Innexin inx2 17.17 6 10 0 99829.9332 10 +Q9V429 Thioredoxin-2 66.98 6 56 6 3486908.63529 53 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 181311.13942 17 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 167847.21588 24 +Q9V447 Krueppel homolog 2 22.83 6 13 0 29207.02218 11 +Q9V496 Apolipophorins 33.18 114 349 0 8908662.31427 308 +Q9V498 Calsyntenin-1 1.74 2 2 0 1046.85055 2 +Q9V4A7 Plexin-B 1.46 3 4 0 7428.72646 3 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 3883.2156 1 +Q9V4C8 Host cell factor 7.33 11 19 11 97587.93603 15 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 8798.529 1 +Q9V4N3 Cytochrome b5 47.76 6 36 6 674103.66169 30 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 47093.93014 8 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 56637.14452 8 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 5730.3103 2 +Q9V521 Phenoloxidase 2 15.35 11 21 10 55757.38132 16 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 268115.5308 15 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 2353.743 1 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 8342.9853 3 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 236959.9944 14 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 1183593.54008 24 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 884155.70875 28 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 16690.98 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 1786.4918 2 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 67180.9864 10 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 5194.1347 2 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 15628.7141 6 +Q9V6G5 Tafazzin 6.08 3 8 1 32604.0308 8 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 1671544.5910099999 60 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 46326.32743 6 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 27582.5196 3 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 24178.5363 5 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 17404.9557 6 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 1169355.7639000001 44 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 2476432.31395 94 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 339608.64733999997 34 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 44946.0357 5 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 27215.73628 8 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 3061.6484800000003 3 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 1220784.98845 31 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 1837549.33683 133 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 815155.40796 20 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 46290.37812 5 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 17025.36516 8 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 19695.26384 4 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 32109.200380000002 9 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 13408.873 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 3.07 1 1 1 660.03894 1 +Q9V9N4 Transcription factor Clamp 3.21 2 3 2 366.41724 1 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 5547.673000000001 4 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 852622.7517 34 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 17087.30165 7 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 154819.91876 16 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 15144.0879 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 9863.60528 4 +Q9VA37 Protein dj-1beta 84.49 13 53 13 1559851.7597700001 37 +Q9VA70 Neutral ceramidase 2.41 2 3 0 7948.2349 2 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 2459961.46605 49 +Q9VAF5 Cadherin-99C 4.4 9 18 9 52768.13306 15 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 2101047.3046 28 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 431396.7808 14 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 2697400.5488 41 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 39799.091199999995 5 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 579851.93816 51 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 47109.71755 9 +Q9VAW5 La-related protein 1 3.41 5 8 0 12229.56624 7 +Q9VAY3 Mitoferrin 7.65 3 7 3 13539.8806 7 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 28800.1008 6 +Q9VB68 Serine protease grass 12.2 5 13 5 37414.70802 11 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 41311.4283 6 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 7718.317 1 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 16448.830860000002 6 +Q9VBV3 Protein takeout 9.64 3 11 0 125032.58024 11 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 80662.73142 12 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 9694.4723 2 +Q9VC57 Atlastin 4.62 3 6 0 47512.5116 5 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 11549.7291 3 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 63802.1121 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 93856.61897 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 4737.186 1 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 2308.0956699999997 3 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 73251.02470000001 13 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 163332.34396 20 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 5469.5877 2 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 177494.68865 18 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 126932.0515 10 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 5537.832 1 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 19106.92095 7 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 2063.66548 3 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 85788.82137 10 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 75679.43055 8 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 9217.475199999999 5 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 5515.336450000001 3 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 49614.1849 7 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 76322.8292 12 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 17632.57227 5 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 43823.8755 6 +Q9VDL1 Esterase CG5412 15.41 4 11 4 36940.468 7 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 21917.741299999998 6 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 56005.833399999996 14 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 10506.423 1 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 8860.10155 3 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 5.44 1 2 0 624.25995 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 9144.15205 3 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 1207.2929 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 2789497.42364 39 +Q9VER6 Modular serine protease 8.76 5 10 5 15104.252069999999 6 +Q9VET0 Neuropeptide F 30.39 4 12 0 98864.49797 10 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 855824.23846 61 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 40022.3843 6 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 311144.76594 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 83153.734 11 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 2265986.4906 52 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 318410.02934 23 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 7355.381 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 35116.975829999996 5 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 314238.45443 30 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 27664.471530000003 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 4216.2937999999995 3 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 6831.9242 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 12181.221640000002 4 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 37760.73174 7 +Q9VFM9 Twinfilin 22.74 7 13 7 48493.21433 11 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 22357.451399999998 5 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 9732.3321 2 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 39855.7825 6 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 129934.74388 16 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 25246.4311 4 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 7049.1943 4 +Q9VG55 Protein hugin 5.76 1 3 1 599.7249 1 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 160516.02406999998 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 2118.7359 2 +Q9VG76 Myc-binding protein 19.34 4 6 4 70598.84882 6 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 10965.7619 4 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 680499.314 14 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 84298.87 4 +Q9VGG5 Cadherin-87A 5.72 11 18 11 66490.85365 13 +Q9VGP4 Importin-9 2.85 3 3 3 4838.7515 2 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 170008.68170000002 18 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 9587.618 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 18588.2208 4 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 3248.4686 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 1349023.56027 33 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 297780.1802 21 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 23010.057 2 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 129198.50499999999 9 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 11806.682 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 67095.28802 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 129890.69551 5 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 1083544.8651700001 18 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 6158.5197 3 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 7906.6389 2 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 50380.5299 6 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 31322.02152 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 252828.79963999998 13 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 21065.1822 7 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 141849.603 9 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 29957.010000000002 4 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 113540.16685 26 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 1620.7803 1 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 558823.9125 47 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 1683866.84941 40 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 14741.3193 4 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 346.1218 1 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 133780.04655 13 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 7983.2403 2 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 6900.12454 2 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 35607.1582 7 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 127345.8297 14 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 9310.135 1 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 257378.5074 13 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 416372.97172 18 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 37728.14223 7 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 33481.5724 10 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 17455.2777 4 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 147343.5766 12 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 11889.56508 3 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 135775.41126 19 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 46474.646400000005 7 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 131623.91519 20 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 188709.1211 16 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 11622.9487 3 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 2528.0276 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 3921.6707 1 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 3344.7473 1 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 21730.47138 5 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 137370.03312 11 +Q9VJL6 Glia maturation factor 5.8 1 3 1 3403.27405 3 +Q9VJQ5 Protein Dr1 8.2 2 4 2 5153.416800000001 2 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 209919.3353 12 +Q9VJY9 Protein Loquacious 11.61 5 9 0 28557.92586 5 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 6855.0624 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 268525.46117 24 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 2650.6357599999997 2 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 3440.9732 2 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 68852.94826 14 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 14858.47319 8 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 13535.4815 3 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 13086.36017 5 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 9633.3622 4 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 22703.5295 3 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 3596.87014 2 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 996499.4343 33 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 1089758.58599 70 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 25660.875 2 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 36416.5152 7 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 87091.516 12 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 163799.94085 14 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 100300.3604 5 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 211320.952 6 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 9908.1553 3 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 728134.6484 24 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 33944.3327 3 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 119151.137 5 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 4684.68283 3 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 6979.42094 3 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 16852.81367 5 +Q9VM71 5'-3' exoribonuclease 2 homolog 0.88 1 1 1 1991.7386 1 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 21337.53064 8 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 16903.36978 8 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 148974.6637 7 +Q9VMD9 Tiggrin 12.16 31 55 0 178975.37536 43 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 2683.3869999999997 2 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 187355.78007 15 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 6379.1673599999995 3 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 49397.092000000004 3 +Q9VMR8 Protein Turandot M 30.53 3 5 0 129057.30189999999 5 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 74387.71544 17 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 56693.2678 9 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 14384.90344 8 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 324073.9619 20 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 3769.1287 1 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 6818.471320000001 3 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 16129.934500000001 6 +Q9VMY9 Guanine deaminase 8.93 4 6 4 25169.13167 4 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 1638.61215 2 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 105138.1684 10 +Q9VN14 Contactin 17.77 24 48 24 384509.35416 34 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 9021.9393 4 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 28143.945780000002 9 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 110292.70483 9 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 482849.91689 36 +Q9VN93 Cathepsin F 23.62 16 36 13 876085.92471 32 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 148858.90529999998 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 1863.4043000000001 2 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 236539.567 4 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 224338.03814999998 13 +Q9VNE2 Protein krasavietz 22.04 12 30 12 284286.57866 25 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 188136.5179 9 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 9672.8259 3 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 20224.3514 5 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 32936.32932 14 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 44558.562 2 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 14276.5076 3 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 40817.591100000005 5 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 15003.5681 3 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 2769915.66678 41 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 725746.33738 21 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 43553.216799999995 9 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 13344.35964 7 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 59685.9819 6 +Q9VQC4 Glycerate kinase 13.14 9 14 0 83153.0902 13 +Q9VQF7 Bacchus 38.16 4 21 4 376718.6211 18 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 266294.25562 24 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 265204.44337 14 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 34358.9465 6 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 174741.2424 19 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 928.1906 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 5118.700879999999 3 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 16407.5142 2 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 23641.9408 3 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 82544.7436 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 1637.9006 1 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 116490.514 4 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 12623.00275 7 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 10366.5128 5 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 42873.14837 6 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 50823.10106 7 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 333986.84229999996 12 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 31528.2316 3 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 1700799.09351 73 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 75439.3046 9 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 2060.109 1 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 28197.54331 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 24014.1641 5 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 3386123.01394 57 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 7840.923 2 +Q9VSS1 Protein Pixie 5.56 4 4 4 24081.3422 3 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 58380.427879999996 12 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 29323.27638 8 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 704705.22437 45 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 154285.3622 17 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 1920.3925 1 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 14904.413 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 18381.6566 2 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 223795.7821 15 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 43251.943400000004 5 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 134794.49784999999 8 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 11345.625 2 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 22675.1889 3 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 127269.36363 10 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 746603.6698 30 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 67478.14995 11 +Q9VTZ5 Transferrin 2 17.95 16 27 16 112304.99496 21 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 85058.58290000001 7 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 155890.428 2 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 4123466.32199 81 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 207168.78022000002 29 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 21104.62026 5 +Q9VU84 Drebrin-like protein 12.99 8 24 8 210994.79196 17 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 57363.566399999996 9 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 23859.35248 6 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 893712.23493 29 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 122850.30513 10 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 384734.50028 37 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 6211.067 1 +Q9VV36 Retinin 31.94 8 155 8 2518791.70332 87 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 817199.3032000001 44 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 360560.40485 30 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 10753.30591 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 11739.30805 4 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 419348.16237 31 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 31175.7132 6 +Q9VVE2 Protein rogdi 26.49 7 15 7 251051.37809999997 11 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 43978.274 6 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 7961.9481000000005 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 637566.83012 11 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 19336.3642 5 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 334141.30627999996 22 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 17857.517379999998 3 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 39119.9804 3 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 24121.67664 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 32150.699099999998 6 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 8967.65147 6 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 261992.9424 14 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 22886.4091 6 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 148158.28687 13 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 224183.32168 24 +Q9VWA1 Clathrin light chain 41.55 12 58 0 1693269.3626 50 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 19395.395 6 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 22346.596400000002 3 +Q9VWE0 Cytokine receptor 0.78 1 2 1 1073.70794 2 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 159450.245 14 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 12866651.50799 162 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 609068.7678 18 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 63153.74766 18 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 10979.82092 5 +Q9VWU1 Serine protease persephone 8.88 4 6 4 43262.7175 5 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 9172.9004 2 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 13359.0432 3 +Q9VWX8 Frequenin-2 37.43 8 52 3 921410.5296 37 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 8983.6088 2 +Q9VX10 Sulfiredoxin 11.73 2 4 0 10814.6825 3 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 291323.80714 16 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 624817.9961 34 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 32078.7522 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 170931.9877 9 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 18723.9536 5 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 9604.486359999999 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 720309.70115 70 +Q9VXG4 Annexin B11 23.68 14 41 14 450891.52481000003 35 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 165215.8756 15 +Q9VXK0 Protein NipSnap 9.89 3 16 0 165595.7302 12 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 81241.07777 12 +Q9VXN2 Protein stunted 81.97 6 16 6 284028.24476000003 10 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 39496.877929999995 8 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 68713.666 5 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 77520.31502 8 +Q9VXY0 Probable cytochrome P450 4s3 2.83 2 4 2 414.6512 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 489975.20751 20 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 27142.89585 6 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 3889.56548 4 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 149557.2877 7 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 28732.2655 3 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 9287.4854 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 385200.12672 9 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 9052.954099999999 2 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 6341.9053 2 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 16087.32946 5 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 62041.31561 12 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 20681.1999 2 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 10520.9202 3 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 39187.7508 6 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 28345.6328 5 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 634579.72254 35 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 20163.8715 3 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 33036.35 1 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 188514.64152 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 87812.49491000001 11 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 737947.49412 29 +Q9VZ35 Protein Vago 5.0 1 1 1 498.88123 1 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 33938.7393 4 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 368554.3868 21 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 311165.28088 16 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 47031.2304 8 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 20901.132400000002 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 5750.7944800000005 3 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 1913.0765 1 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 17641.223 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 9957.5831 4 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 13871.697199999999 3 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 72380.12229999999 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 136268.25950000001 9 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 335931.73073999997 30 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 2537075.25523 67 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 164118.783 17 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 28131.652000000002 2 +Q9W032 Protein ecdysoneless 5.12 4 4 4 1470.86086 2 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 819711.87011 45 +Q9W074 Protein HBS1 4.33 3 4 3 4389.3882 3 +Q9W0A0 Protein draper 9.6 8 20 0 35372.9185 11 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 1169732.5737 28 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 8530.831600000001 2 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 20275.5663 7 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 43130.53355 9 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 1648.5066 1 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 269449.504 12 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 86531.57846 19 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 150244.11442 13 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 5.1 1 2 0 336.03406 1 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 2518.60753 4 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 1866165.17729 50 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 75905.333 7 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 4642.403 1 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 14773905.57449 92 +Q9W1G0 Probable transaldolase 48.04 12 51 12 1868496.33944 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 30972.5647 3 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 52267.248 5 +Q9W1K5 Sestrin homolog 6.84 4 7 0 31473.289249999998 6 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 49832.0063 8 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 10851.89271 4 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 79973.95267 11 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 37249.59436 9 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 136632.3671 11 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 2164567.97835 53 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 75658.63011 9 +Q9W266 Protein windpipe 20.68 10 31 10 175260.11836999998 25 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 391120.33025 20 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 61760.699400000005 6 +Q9W2E7 Protein Rae1 11.56 4 11 4 348181.0157 10 +Q9W2M2 Trehalase 29.36 16 47 0 435435.74484999996 37 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 16006.3291 2 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 3143.1284 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 40785.82086 9 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 22890.55644 6 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 2320878.97721 68 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 582915.16253 24 +Q9W358 Chaperone Ric-8 10.65 7 8 0 11476.96136 6 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 1792356.98902 66 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 26846.5973 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 390437.57800000004 8 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 60663.920999999995 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 19054.737 5 +Q9W3E2 Protein PIP82 19.83 23 56 23 78065.55471 30 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 42325.079249999995 14 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 24457.95716 6 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 44522.5922 7 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 101519.1785 5 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 132906.6329 5 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 3058.5986 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 8984.823460000001 2 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.84 2 2 2 512.97766 1 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 12317183.68957 175 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 27741.49 4 +Q9W436 Neprilysin-1 4.24 4 4 4 15474.1055 4 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 40731.83404 8 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 94455.59717 12 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 911476.9641399999 24 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 102430.20046000001 17 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 41757.89325 7 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 215818.97444 16 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 56571.4014 4 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 1063716.55691 155 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 24955.9194 2 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 117365.92896 22 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 218228.81375 9 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 3947.623 2 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 173527.5808 13 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 3595.2969000000003 2 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 561577.01267 58 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 39384.7562 3 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 620.0841 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 428861.196 3 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 444742.30025000003 27 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 44315.7895 7 +Q9XZ14 Protein gone early 4.44 4 4 1 5094.8657 1 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 53800.985629999996 6 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 475112.91484 21 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 268961.2125 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 325175.75324 31 +Q9XZL8 Protein sarah 34.25 7 12 0 107545.41182000001 9 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 2981.9585 1 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 2884.13926 5 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 31299.88496 5 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 755551.03779 22 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 192771.3415 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 1175044.85302 17 +X2JAU8 Protein nervous wreck 29.3 30 114 30 1586716.23343 100 +A0A021WW32 Verthandi, isoform B 4.27 3 4 0 555.83923 1 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 17527.58676 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 20340.1369 3 +A0A0B4JCR9 Uncharacterized protein, isoform D 5.04 2 2 0 483.03552 1 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 132203.62206 21 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 157995.80550000002 6 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 38594.56261 12 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 3839.9943599999997 4 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 2332611.33264 116 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 9075.87391 5 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 20036.3366 5 +A0A0B4JD47 Missing-in-metastasis, isoform E 4.61 4 4 0 389.19174 1 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 5036.455 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 124048.32790999999 24 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 46753.2148 9 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 24307.03274 9 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 229403.23473999999 34 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 4519362.97732 158 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 14218.1008 4 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 30255.163050000003 4 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 178572.11668 33 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 47621.545 6 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 25768.7651 5 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 59618.47491999999 11 +A0A0B4K709 Uncharacterized protein, isoform E 2.78 2 3 0 550.59674 1 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 68198.07254 12 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 5249.034 1 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 80182.7368 12 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 6471.9761 2 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 3681320.97189 126 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 149872.0449 21 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 26309.6176 4 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 15584.8007 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 12105.9487 3 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 4534.7314 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 2201465.14114 40 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 36515.2992 5 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 569607.01439 47 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 9611.17437 7 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 137657.31672 24 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 32899.9691 8 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 33898.894830000005 11 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 13516.0631 3 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 148788.11715 16 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 174522.54859999998 9 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 205868.73015 45 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 18641.85197 7 +A0A0B4KEJ7 Coronin 17.01 9 17 0 70182.77935 11 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 15245.735439999999 6 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 881.3172 1 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 7180.9033 3 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 21114.318 1 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 115184.8912 30 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 3834.1511499999997 2 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 10944.38392 4 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 10089.59373 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 124812.72335 15 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 17049.43611 10 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 7216.534519999999 3 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 982723.2575300001 38 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 32347.26075 5 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 2547027.91585 77 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 29416.126500000002 9 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 169312.58807 19 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 378613.50667000003 16 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 74499.3443 9 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 9068.28663 6 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 59195.66038 9 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 38230.79187 11 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 8484.8344 4 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 10709.4043 4 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 4697.59026 2 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 68500.4477 7 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 30833.98437 8 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 11471.9187 3 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 74750.52960000001 7 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 188926.4848 20 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 745598.8103 21 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 470539.02809 44 +A0A0B4KGP4 Beaten path IV, isoform B 1.57 1 2 0 487.66467 1 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 25742.4675 3 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 945.3406 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 126022.0152 14 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 757.7902 1 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 25481.12958 10 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 8311.252199999999 2 +A0A0B4KH34 Annexin 67.9 22 147 2 6080663.25457 128 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 9854.731 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 10377.89367 4 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 224214.74646 22 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 92405.79293000001 18 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 42958.45787 4 +A0A0B4KHF0 Ferritin 77.97 20 130 1 6402441.91491 109 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 9164479.78158 197 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 124357.22123 8 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 8903.80936 2 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 16631.2754 5 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 104923.83 12 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 117606.68244 17 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 120496.3303 3 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 15089.33876 6 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 15156.53887 3 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 23046.244939999997 7 +A0A0B4KHW7 Uncharacterized protein, isoform P 2.81 1 1 0 405.10468 1 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 2577.53633 2 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 782763.30978 42 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 815014.3145 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 8913.239 1 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 3483.04293 3 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 6178.33363 2 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 6325.30026 3 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 305793.8211 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 334958.6999 38 +A0A0B4LF95 glutaminase 7.29 4 9 0 48145.961599999995 7 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 590200.89018 35 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 112509.28137 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 39814.33599 9 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 14578.23786 6 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 2473.16796 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 1795.8396 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 101266.6458 14 +A0A0B4LG34 Liprin-gamma, isoform E 2.4 3 3 0 719.75775 1 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 22431.9386 8 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 28221.6116 3 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 38695.6947 9 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 529007.57481 51 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 88745.97413999999 13 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 9173.532899999998 4 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 381216.63109 28 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 33026.619139999995 7 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 1932416.2724 50 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 7001.591 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 29870.712 7 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 444745.34868 47 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 7027.3547 2 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 8619.50593 4 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 32846.3287 3 +A0A0B4LHL1 Uncharacterized protein, isoform C 1.96 1 2 0 854.14624 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 72427.18875999999 12 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 3180.02974 2 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 15589.368050000001 5 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 8776.1945 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 2509.10694 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 111287.6512 24 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 8038.727 1 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 7548.9292000000005 2 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 240810.93417 43 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 8109.2898000000005 3 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 29238.060999999998 5 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 86449.41916 11 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 1253.07276 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 100972.00594 13 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 12761.6544 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 9067933.92484 115 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 59937.79054 13 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 64486.129199999996 4 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 6438.83303 3 +A0A1Z1CH25 AT27361p 7.62 4 4 3 7836.106900000001 3 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 210336.95983 11 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 1355.84123 2 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 4508137.88243 137 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 27365.6733 18 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 57728.7711 13 +A0A4P1SAA7 IP07559p 11.17 2 3 0 25550.164099999998 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 3454.49456 3 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 182976.29423 42 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 57930.537200000006 8 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 14608.124 2 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 2048.9187 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 4841350.70245 313 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 3140.1691 2 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 920270.32473 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 11438.65065 4 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 4813.762830000001 2 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 10792.922 1 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 8564.93737 3 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 2317.22604 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 17500.28715 6 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 3164354.14593 288 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 505999.52446 41 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 939580.41839 35 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 180417.9822 19 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 206837.41897 16 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 105672.8235 7 +A1Z6F6 FI18602p1 9.08 8 14 0 120542.1409 12 +A1Z6G9 FI18173p1 9.04 3 5 3 20122.188000000002 5 +A1Z6H4 RE52822p 6.86 4 9 0 24162.2856 5 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 20607.22058 12 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 3982.5344 1 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 81194.77966 11 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 185517.1434 20 +A1Z6R7 FI21445p1 33.57 9 21 9 70921.37819 17 +A1Z6V5 FI01422p 37.15 14 45 14 580847.14829 40 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 303458.8726 10 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 35924.584 9 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 27415.628399999998 6 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 2124.3796 2 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 4687.56555 6 +A1Z7B8 GEO08456p1 12.66 2 6 2 49520.8645 5 +A1Z7G2 MIP13653p 13.39 2 8 2 257979.5169 5 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 145395.01726 17 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 23852.5314 4 +A1Z7K6 FI20236p1 5.61 3 7 3 35956.0691 7 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 94118.9654 15 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 2687.9721 2 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 47299.86863 11 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 492212.156 54 +A1Z7V9 FI20020p1 2.74 2 4 1 10852.92647 4 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 15358.927 1 +A1Z7X8 FI02944p 15.34 6 12 6 146172.4126 10 +A1Z803 FI02892p 31.76 12 29 12 323452.9838 25 +A1Z843 Nodal modulator 3 9.17 12 20 12 100003.05094 18 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 665111.06363 29 +A1Z871 CAP, isoform B 10.27 19 36 0 67461.44787 5 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 3012778.27964 60 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 16012.17654 4 +A1Z8G0 Menage a trois, isoform A 20.17 12 26 0 784.3857 1 +A1Z8G7 FI09243p 16.53 2 4 2 495.8588 1 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 3785631.83983 59 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 60054.387599999995 5 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 4096.52822 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 4270.635 2 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 38855.099 2 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 465879.07492 9 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 596016.30447 13 +A1Z933 GEO02273p1 22.09 2 3 2 13829.1994 3 +A1Z934 SD19268p 36.45 11 34 11 265379.3948 28 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 11064.405 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 115385.05011 24 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 26552.58707 7 +A1Z9B5 IP16508p 15.06 3 7 3 52006.6753 7 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 2520527.80866 53 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 286594.4099 20 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 108522.61266 40 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 189351.10675 10 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 38201.19797 10 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 319174.77 3 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 15949.4283 5 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 8756.3872 2 +A1ZA23 FI18007p1 26.91 10 31 10 220292.65336 28 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 4843.15816 2 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 62077.82585 7 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 129978.0391 12 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 15357.0033 3 +A1ZAH3 FI16515p1 3.28 2 4 0 2296.68667 4 +A1ZAK3 Protein DEK 5.4 3 5 0 12418.124600000001 3 +A1ZAL1 lysozyme 30.43 5 6 5 53581.50083999999 4 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 917.09174 1 +A1ZAU4 RH39096p 50.95 16 45 0 2111547.92075 39 +A1ZB23 IP19117p 16.06 4 12 4 102180.26522999999 11 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 2066.7097400000002 2 +A1ZB68 FI01423p 33.18 8 25 8 330847.14424 18 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 567625.80215 28 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 8343.837950000001 3 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 150829.36994 13 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 2722.20223 4 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 973943.7227 36 +A1ZBA5 FI07234p 7.22 2 3 2 32196.5337 3 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 20827.6224 4 +A1ZBD8 Mucin-5AC 3.57 5 9 5 5094.86189 6 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 221290.45507999999 24 +A1ZBK7 Crammer 58.23 4 13 4 214756.53719 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 455.00763 1 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 183031.93034000002 12 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 235168.93369 21 +A1ZBU5 GNBP-like 3 27.63 3 9 3 78048.2114 8 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 19715.5041 3 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 813169.7992 33 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 1566.14696 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 266270.5267 43 +A1ZBX6 lysozyme 3.91 1 2 1 401.3864 1 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 445.3434 1 +A2VEG3 IP16294p 3.06 3 5 0 9874.92563 4 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 63567.4885 8 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 482102.14969 38 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 32503.10374 9 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 315776.89117 22 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 1392318.22216 68 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 1710246.20641 115 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 1378653.44139 47 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 71522.61511 8 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 27311.78366 8 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 1006079.3666999999 12 +A8DYD1 Combgap, isoform L 13.26 10 20 0 86875.3823 14 +A8DYI6 Prohibitin 66.27 22 89 3 1967149.80654 76 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 202572.29516 22 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 45289.53695 14 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 42213.72778 7 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 13775.97377 4 +A8DZ06 Stolid, isoform J 10.24 13 34 0 271697.77164 26 +A8DZ14 FI17828p1 20.1 9 32 3 248416.58396 24 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 74047.57250000001 8 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 7448.353 1 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 141398.42003 32 +A8E6W0 IP19808p 25.25 5 9 5 51842.26206 9 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 13661.209429999999 4 +A8JNJ6 Karst, isoform E 1.54 8 8 0 3583.9363 1 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 7412.3004 2 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 37186.91687 6 +A8JNP2 arginine kinase 72.53 37 429 2 783335.94284 15 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 31036.968999999997 3 +A8JNS4 Starvin, isoform E 11.81 7 10 0 21334.708899999998 7 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 12299.83615 4 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 63687.457500000004 6 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 37143.42751 9 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 7534.2452 2 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 18624.7849 4 +A8JQW3 Pinin, isoform B 20.2 7 10 0 54782.7802 9 +A8JQY2 Uncharacterized protein, isoform C 1.38 1 1 0 947.4802 1 +A8JR01 Kramer, isoform I 3.4 9 12 0 9421.87751 7 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 74553.8352 6 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 59376.24134 14 +A8JR58 Hadley, isoform B 2.02 1 1 0 4327.948 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 2484411.11008 93 +A8JRH3 FI20012p1 60.08 25 75 1 2001174.87427 62 +A8JTM7 Megalin, isoform A 4.53 24 37 24 152602.17626 26 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 50112.5509 11 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 5979.8366000000005 2 +A8JUZ6 MIP03678p 7.28 3 4 0 36636.2921 4 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 10965.872080000001 6 +A8JV09 Coronin 1.67 2 2 0 2873.661 1 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 581286.48214 25 +A8WH76 GEO10024p1 51.85 4 15 4 419727.228 12 +A8Y4V5 FI20903p1 8.21 2 3 2 4656.65338 3 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 26925.2107 4 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 2580471.65163 17 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 3197.802 1 +B7YZH1 FI20143p1 6.47 4 6 0 10351.803399999999 5 +B7YZN0 Syndecan 17.81 10 24 0 62802.58151 18 +B7YZN4 GH02741p3 49.23 4 6 4 14504.962599999999 5 +B7YZN8 GH02741p1 22.37 2 5 2 28827.0276 5 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 47694.47323 11 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 4053046.46794 58 +B7YZV2 Phosphodiesterase 6.31 7 15 0 28438.8934 11 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 175322.2426 23 +B7Z001 Fatty acid synthase 21.46 50 93 0 478700.8936 72 +B7Z002 Kismet, isoform C 0.6 2 2 0 496.4898 1 +B7Z005 Drongo, isoform I 9.14 5 11 0 23941.79534 7 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 4745.593159999999 3 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 6153.477989999999 4 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 11533.244299999998 3 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 4938.2357999999995 3 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 62391.13235 5 +B7Z0C9 GH15104p1 41.05 4 6 4 26035.17545 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 6698421.91141 132 +B7Z0M0 FI17308p1 18.85 2 3 2 13675.550599999999 2 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 5968.1503 3 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 83763.80942 14 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 92447.0823 12 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 13972.25534 6 +B7Z107 GH09380p1 52.17 5 7 5 26993.53735 6 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 16556.7392 3 +C0HDP4 MIP05618p 3.77 2 2 0 11747.501 2 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 934692.7609999999 31 +C7LAG1 CoRest, isoform G 3.76 3 4 1 551.93427 1 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 582383.49881 56 +C9QP70 MIP12608p 15.85 2 3 2 22849.5817 3 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 550110.25097 24 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 221308.72545 17 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 15966.15021 9 +D0Z756 MIP14966p 32.93 13 33 0 1335600.3159999999 29 +D1YSG0 Bent, isoform F 6.65 59 74 0 184196.99122 56 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 135902.2398 11 +D3DMM0 MIP15702p 15.28 8 15 0 92638.08138999999 12 +D3DMM4 MIP15217p 30.28 24 95 0 1034705.70245 78 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 106358.0868 7 +D5SHT6 MIP21537p 4.99 3 4 0 10898.89627 4 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 16296.47006 3 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 17732.585160000002 5 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 257606.03325 30 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 69709.36187 14 +E1JGR3 GEO02620p1 24.62 3 5 3 3938.398 2 +E1JGY6 Hulk, isoform F 13.33 23 31 1 347434.87613 26 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 88457.71747 16 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 15575.5779 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 1959.6029 2 +E1JH90 Patronin, isoform F 1.38 2 2 0 592.4549 1 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 546088.74064 73 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 32844.94933 5 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 5209.735250000001 2 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 27968.455 1 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 44695.8492 8 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 38930.9864 7 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 130024.14256 17 +E1JHP9 Galectin 4.06 2 4 0 8702.094000000001 3 +E1JHT6 Reticulon-like protein 18.12 11 35 0 735122.24292 31 +E1JHT9 Reticulon-like protein 24.77 6 24 0 3137.33136 2 +E1JI40 Vermiform, isoform I 13.51 7 15 0 172187.6536 15 +E1JI59 Schizo, isoform D 2.87 4 5 0 2842.2504400000003 2 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 42383.9003 6 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 21597.8061 3 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 42378.60347 4 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 19849.01 1 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 15358.788999999999 3 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 10790.0232 4 +E1JIY8 L antigen family member 3 20.72 3 8 3 57379.6472 6 +E1JJ33 Complexin, isoform U 65.73 9 79 1 3700929.67229 74 +E1JJA4 Dynamin 27.41 28 73 0 475974.04188000003 63 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 966.32355 1 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 2305.8467 2 +E1JJG5 Phospholipase A2 13.81 3 3 1 5913.258 2 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 1072134.76467 77 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 15725.47844 7 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 97527.02797 13 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 4580.5225 1 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 453684.41939 55 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 5167.0483 1 +E2QD54 Natalisin, isoform D 4.7 3 5 0 4157.96356 4 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 78391.97793 11 +E2QD98 Protein PALS1 7.62 16 28 0 209563.07991 23 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 27664.936709999998 13 +E8NH67 Asperous, isoform B 51.14 19 129 0 1766468.51855 96 +F0JAP7 LP18071p 23.14 6 10 0 10786.680199999999 6 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 21986.62247 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 2156946.07841 119 +H1UUB1 GEO12465p1 55.04 6 25 1 223478.02796 20 +H8F4T3 Regucalcin 32.35 6 11 0 315117.88910000003 10 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 23240.5138 4 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 2570.7232 3 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 691700.46345 26 +L0MPN7 Asator, isoform H 12.15 13 25 0 94608.09148 19 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 61729.75152 27 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 2346.127 1 +M9MRX0 Limpet, isoform J 26.49 29 95 0 1394496.33736 75 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 195033.82914000002 60 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 128919.67867 8 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 37656.74413 9 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 33932.142 2 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 908.196 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 523173.66466 26 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 478444.09637 19 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 957157.40709 48 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 2768.3948499999997 2 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 14074.46413 6 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 53725.171299999995 8 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 206173.2752 14 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 57266.74236 17 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 138398.93715 21 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 63400.3654 16 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 14449.958 2 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 49168.2162 8 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 7999549.174579999 424 +M9NDB5 RNA-binding protein 6, isoform F 15.11 3 6 1 355.71323 1 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 20872.149100000002 5 +M9NDE0 pantothenate kinase 6.54 3 6 0 12174.61882 4 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 54375.6453 12 +M9NDS9 chitinase 2.56 12 16 0 39380.92293 14 +M9NDX8 Neurabin-1 4.11 8 9 0 13602.6862 3 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 18833.02261 9 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 57376.38708 8 +M9NEF2 Histone deacetylase 4.43 4 4 0 4757.99008 2 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 3670.8439 2 +M9NEW0 LD39232p2 43.33 7 15 7 150732.9157 11 +M9NEX3 Cytochrome b5 57.55 6 20 0 835420.05834 16 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 47900.419 5 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 12694.8778 3 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 97543.50570000001 7 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 33667.8729 10 +M9NFC0 Troponin I 48.74 15 55 5 274920.2488 11 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 35947.245 2 +M9NFH3 Lasp, isoform D 27.3 8 30 1 11028.05 1 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 142593.61291 19 +M9NH07 Upheld, isoform N 48.73 30 148 0 6680047.927879999 132 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 85254.91569000001 20 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 70571.76705000001 7 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 5299.8283 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 588069.94374 37 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 1644.70584 2 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 84468.515 2 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 20812.784 3 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 1615653.39388 145 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 3984.13313 2 +M9PBM3 Cysteine protease 6.34 2 4 0 17911.7446 2 +M9PBN2 Apolipoprotein D 29.39 7 23 0 541759.6415500001 19 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 163489.93218 19 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 869.97077 2 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 27237.7129 4 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 98960.29566 12 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 319138.47192 23 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 8136.711759999999 7 +M9PBW9 Rhea, isoform G 5.83 17 26 0 89894.56105999999 23 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 150893.75088 15 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 13845730.6249 144 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 9501.1412 2 +M9PC74 Reticulocalbin-3 17.11 6 19 0 145253.97697 16 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 49618.7725 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 19214.09624 4 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 3979.6377899999998 5 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 40283.90785 16 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 101019.81531 21 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 22085.921 5 +M9PCT7 Bunched, isoform O 18.75 4 11 1 1596.7915 1 +M9PCU0 FI21215p1 26.43 30 64 1 5453.057 1 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 120227.16527 12 +M9PD73 TEP1-F 20.6 32 69 0 787492.7028 57 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 420600.68223 23 +M9PDB2 Varicose, isoform E 8.51 6 10 0 31352.7629 9 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 202461.57577 24 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 1879.2625 1 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 16840.68062 6 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 2141.4353 1 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 18330.8747 6 +M9PDU4 Acyl carrier protein 18.23 4 33 2 2800689.01987 30 +M9PDV2 Tetraspanin 6.97 2 3 0 9300.72336 3 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 224044.45674 53 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 173432.3805 12 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 3633653.4165 45 +M9PE32 Fife, isoform D 12.79 17 34 1 76092.36313 26 +M9PE35 RabX6, isoform B 6.76 2 3 0 15393.306499999999 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 7.42 3 3 0 329.05115 1 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 9071.78363 7 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 21252.36772 8 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 18464.30216 4 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 11149.4647 3 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 54608.796299999995 5 +M9PEC1 IST1 homolog 16.75 7 17 0 106691.37192 15 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 143688.17846 19 +M9PEG1 Uncharacterized protein 36.6 17 48 17 911649.96025 41 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 1516573.99765 290 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 18544.10076 6 +M9PEL3 Quemao, isoform C 38.04 11 22 0 139121.41836 18 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 56386.45003 11 +M9PET3 Simjang, isoform D 3.57 3 4 0 2743.617 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 1656.33607 2 +M9PF16 Spectrin beta chain 24.44 61 168 3 958027.78373 139 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 390133.2847 31 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 11402.60475 5 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 34797.0424 5 +M9PFH7 Tartan, isoform B 5.99 5 7 0 29356.3021 6 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 608.37195 1 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 32708.678499999998 7 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 5673.27048 4 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 36004.1965 4 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 4586.732959999999 5 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 90484.08927 14 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 101802.58282 18 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 84446.2227 9 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 7216942.646389999 203 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 13220.736369999999 5 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 41820.738 5 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 126710.39076 10 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 8946.627700000001 3 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 102682.7122 22 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 25780.13064 7 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 176759.92979 27 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 274884.23011 31 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 52690.56084 14 +M9PHX2 Visgun, isoform E 8.78 2 4 1 22272.51354 4 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 4244.66014 3 +M9PI33 Inositol oxygenase 7.27 3 4 0 80564.149 3 +M9PI51 Dual specificity protein phosphatase 15 6.04 3 4 0 554.6061 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 5603.7770199999995 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 5547.64764 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 16768.8347 2 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 2002.6967 1 +M9PJQ5 Troponin I 47.28 13 65 0 169706.51757 14 +O15971 LD39986p 26.96 6 30 3 57327.2221 6 +O16158 Calcium-binding protein 50.0 8 32 8 1704590.5321 25 +O17452 LD20793p 37.83 7 35 4 1226517.8801300002 27 +O18332 FI01544p 72.2 13 63 11 996742.8111899999 41 +O18335 Rab11 53.27 13 69 13 1836817.41454 60 +O18336 Ras-related protein Rab-14 24.65 6 18 0 58993.60447 12 +O18338 LD44762p 27.05 6 31 0 9946.343799999999 2 +O44226 Elongin-B 91.53 9 34 9 536919.70426 25 +O44434 QKR58E-3 12.62 4 6 3 21818.089200000002 3 +O46052 EG:152A3.3 protein 18.87 6 8 3 54721.74247 7 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 360913.25255 44 +O46079 Protein KTI12 homolog 13.04 4 11 3 11237.05883 6 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 1805.39554 3 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 29341.877399999998 5 +O61604 Fimbrin 32.34 22 67 3 995859.14029 59 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 55664.9505 12 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 14138.78096 9 +O76521 Importin subunit alpha 9.21 5 12 5 54719.59672 8 +O76752 Sepiapterin reductase 27.2 7 26 7 93298.6741 20 +O76877 EG:132E8.3 protein 10.62 2 5 2 28841.21014 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 1526274.48192 26 +O77259 EG:115C2.5 protein 9.0 2 2 0 18944.752 2 +O77425 Ribokinase 8.88 3 7 3 21476.19362 6 +O77430 GEO01111p1 62.96 11 37 10 377502.52086 31 +O77434 EG:34F3.8 protein 28.91 5 19 1 54792.77364 10 +O77477 LD24471p 20.94 9 15 9 65039.77273 13 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 174054.37667000003 8 +O96692 small monomeric GTPase 12.09 2 6 0 14975.4738 3 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 63056.00529 12 +O96880 General transcription factor IIE subunit 1 2.33 1 1 1 584.4594 1 +O97059 Ccp84Ab 19.91 4 8 0 63644.3646 7 +O97062 Ccp84Ae 34.13 6 26 6 107274.94169 14 +O97064 Ccp84Ag 25.65 4 10 4 40227.4314 7 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 3867.53015 3 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 2151234.5075 33 +O97111 LD29223p 7.41 3 5 3 14876.7723 5 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 8011.9183 2 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 24824.893 2 +O97365 BM-40 31.58 9 14 9 202456.59889999998 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 1461486.94235 40 +O97428 Ciboulot, isoform A 13.95 2 4 0 27872.3203 2 +O97454 Protein BUD31 homolog 13.89 2 3 2 2829.81145 3 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 149202.39176 19 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 2732.3316999999997 2 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 4668576.2654 74 +P92181 Cuticle protein DCP2 36.7 3 15 3 67241.98038 9 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 24244.38696 3 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 1409697.02936 68 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 108327.8192 12 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 44615.43389 9 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 6761.7512 2 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 869726.73964 121 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 6112.513 1 +Q0E8P5 FI05614p 9.28 5 12 5 252002.92616 9 +Q0E8S7 Homer, isoform E 37.66 18 48 3 723750.83233 41 +Q0E8U4 FI09636p 15.33 6 8 6 40936.4579 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 1030453.54875 21 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 31208.7198 5 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 656595.60092 37 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 707150.36134 23 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 165277.1794 20 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 3311.52149 3 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 406587.80352 62 +Q0E9E6 RE33655p 1.32 1 2 1 3162.2245000000003 2 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 122057.77459999999 13 +Q0E9G4 CG1600-PA 12.6 3 4 0 7966.076300000001 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 108508.81491 14 +Q0KHR7 Septin 18.74 8 17 0 206392.17266 17 +Q0KHX7 FI18193p1 6.31 8 11 0 36698.5216 10 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 4816111.18735 143 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 48407.0262 7 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 39333.01447 16 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 271939.56374 29 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 14276.5385 7 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 44272.01586 6 +Q0KIB0 Sidestep III 2.61 4 5 4 8246.44365 2 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 5367.108029999999 4 +Q1RL12 IP16413p 60.25 16 101 1 58668.195 1 +Q24090 GH08712p 14.05 6 9 6 45031.43553 8 +Q24253 AP complex subunit beta 19.76 16 31 16 183992.86526 27 +Q26459 EN protein binding protein 13.32 8 16 0 56064.51175 12 +Q29QY7 IP15859p 9.86 1 1 0 11609.595 1 +Q2MGK7 GEO13330p1 26.77 4 11 4 103852.4917 10 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 3853.1655 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 11226.5489 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 6439806.2674 122 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 13610.798 6 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 324296.4055 11 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 6766.87095 5 +Q4QQ49 IP09595p 3.04 1 1 1 2476.6357 1 +Q4QQ70 IP09819p 16.08 7 13 7 79941.29114 9 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 37671.93926 5 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 34116.2562 8 +Q4V619 IP07950p 6.9 2 2 0 6550.54888 2 +Q4V625 lysozyme 6.75 1 2 1 18866.625 1 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 142599.366 10 +Q500Y7 GEO11443p1 89.47 4 15 4 920545.1107 13 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 12551.837749999999 6 +Q59E01 FI02065p 5.58 4 7 0 2048.76116 3 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 15011.532 2 +Q5BIA9 RE10908p 2.72 2 2 2 14191.860499999999 2 +Q5LJT3 MIP01391p 17.0 3 3 3 85092.543 2 +Q5U124 alpha-glucosidase 16.51 11 24 0 349065.4921 21 +Q5U126 GEO11286p1 59.42 7 36 7 1566212.3928099999 32 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 26918.82706 6 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 23652.800600000002 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 336851.59065 17 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 24246.768799999998 3 +Q6IGN6 HDC05827 11.36 2 8 2 49633.9413 6 +Q6IGW6 GEO13367p1 44.23 2 4 2 47258.5136 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 885827.822 16 +Q6IL43 GEO11093p1 27.71 2 6 2 57338.569200000005 5 +Q6NL44 GH28815p 16.11 6 12 6 14026.75477 9 +Q6NLJ9 AT19138p 46.59 3 5 2 22028.5467 4 +Q6NMY2 RH54371p 32.42 5 16 5 296592.03857 8 +Q6NNV2 RE44043p 14.68 5 8 0 63708.051770000005 8 +Q6NNV7 RH03309p 29.55 5 15 1 410886.22944 12 +Q6NP72 GEO09659p1 53.59 5 28 5 167602.5014 21 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 7567.97195 3 +Q76NR6 Regucalcin 77.74 24 100 0 5142460.54194 84 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 159948.49758 12 +Q7JMZ0 small monomeric GTPase 9.09 2 3 2 369.0613 1 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 97250.04582 15 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 1232919.6983 24 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 9363.8434 3 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 235292.09136 20 +Q7JQX9 FI14001p1 4.65 4 4 0 1727.50397 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 4381605.02435 88 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 361654.1527 16 +Q7JRB2 RH09039p 4.52 1 3 1 433.52267 1 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 30356.4232 3 +Q7JRF1 RE48509p 3.41 1 1 0 1659.0876 1 +Q7JRH5 RE28271p 1.31 1 2 1 5583.323 1 +Q7JRL9 GH25289p 67.12 10 56 1 2148578.56 51 +Q7JRN6 GH06388p 11.21 3 10 3 18957.20269 8 +Q7JS69 FI04632p 45.02 10 65 1 527310.1065 14 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 12370.45127 3 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 21085.1357 6 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 453169.27858 37 +Q7JV09 GH28348p 7.5 8 12 5 31795.646240000002 8 +Q7JV69 SD11922p 6.95 3 6 3 9664.94138 5 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 26759.733809999998 5 +Q7JVH6 LD24696p 27.01 8 20 7 261874.38537 14 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 176552.77374 13 +Q7JVK6 Translin 16.17 4 11 4 87478.83585999999 10 +Q7JVK8 GEO08987p1 52.05 8 31 8 259645.06733 27 +Q7JVM1 GH25962p 22.64 5 16 5 74717.227 10 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 63507.3963 9 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 5216.31895 3 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 120046.74239999999 9 +Q7JW07 LD08826p 12.12 3 3 3 17776.9516 2 +Q7JW48 RE12410p 8.08 3 8 3 94774.55059999999 4 +Q7JW66 LD21545p 8.81 3 5 3 26159.062700000002 5 +Q7JWD6 Elongin-C 52.99 6 18 6 647173.7166 13 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 942600.47211 29 +Q7JWH5 RING-box protein 2 7.96 1 1 1 10423.051 1 +Q7JWQ7 RE01730p 9.74 4 7 4 8298.29506 4 +Q7JWR4 GH19585p 6.06 1 2 1 20025.0554 2 +Q7JWU9 AT07420p 22.49 7 8 7 46776.46674 6 +Q7JWX3 GH10112p 7.35 4 10 4 113856.1835 9 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 592817.815 2 +Q7JX94 Phospholipase A2 13.29 3 6 3 2349.90997 3 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 101344.7558 9 +Q7JXB9 Endonuclease 8.39 4 4 4 12425.089 3 +Q7JXC4 CG6459 protein 33.46 6 46 6 1621869.44334 42 +Q7JXW8 Off-track2 11.09 5 9 4 35379.8402 8 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 146191.3757 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 211105.333 6 +Q7JYW9 Phosphotransferase 18.72 9 13 9 36229.7495 12 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 15362.3845 2 +Q7JYZ0 lysozyme 11.18 2 6 2 48851.7875 5 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 93304.0477 8 +Q7JZB1 RE49860p 8.66 3 5 3 10670.5461 2 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 577606.44446 38 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 747.0194 1 +Q7JZE1 Peroxin 11 9.96 3 6 3 12213.9064 5 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 65088.1308 7 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 1529789.85831 41 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 45738.5944 11 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 6612.473199999999 2 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 577147.52024 22 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 802863.2101 27 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 27003.862399999998 7 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 7031367.28623 160 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 16901.921000000002 3 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 833818.89581 40 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 109039.68065 12 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 4612.55708 3 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 14631.778600000001 2 +Q7K0S1 LD39211p 3.43 2 3 2 7699.2295 3 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 170166.99565 23 +Q7K0S6 LD36817p 21.02 8 13 8 55207.887480000005 11 +Q7K0T7 LD33470p 1.5 2 2 0 572.2294 1 +Q7K0W1 LD27406p 3.85 2 2 2 6332.458 1 +Q7K0W4 LD27203p 56.4 18 61 17 1701540.0252 43 +Q7K0X9 LD23667p 8.51 2 17 2 39051.57523 14 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 19901.79745 6 +Q7K127 Alpha-galactosidase 18.71 7 24 7 404661.40445000003 19 +Q7K130 Dynactin subunit 4 4.67 3 4 3 13654.825 3 +Q7K148 Proteasome subunit beta 21.28 6 13 6 111427.5461 12 +Q7K159 LD06557p 26.22 6 8 6 7556.44553 6 +Q7K180 LD02709p 17.73 8 12 8 19838.69982 8 +Q7K188 GEO05126p1 29.68 6 49 6 2003553.09308 43 +Q7K1C0 GH23780p 46.53 5 11 1 620433.4347 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 62654.71548 8 +Q7K1C5 GH21176p 10.85 7 9 7 77086.8437 7 +Q7K1H0 GH09096p 16.67 6 8 6 40132.46347 8 +Q7K1M4 SD04017p 17.31 5 15 5 55158.60983 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 84328.2345 10 +Q7K1W5 LD35843p 23.4 10 26 10 509125.08400000003 22 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 11812.198649999998 4 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 448982.66638 20 +Q7K2E1 LD05247p 9.07 5 13 5 115948.1015 11 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 35957.423 2 +Q7K2L7 GH27120p 17.59 3 5 3 122615.007 4 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 33221.891500000005 8 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 3621.19886 3 +Q7K2P3 GH20817p 63.48 14 46 1 243089.72132 39 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 14506.28788 4 +Q7K2W6 tyrosinase 23.91 16 34 16 122249.00315 23 +Q7K332 GH17623p 6.28 2 11 1 24086.34624 7 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 309336.45003999997 19 +Q7K3E2 LD34147p 38.81 22 51 22 491552.68637999997 40 +Q7K3H0 LD28067p 2.93 6 10 0 36454.36541 8 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 743878.54413 42 +Q7K3N4 GH26015p 16.49 7 13 7 90069.6138 10 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 34280.765400000004 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 98761.09651 19 +Q7K3W4 GH08941p 24.88 8 21 8 251566.66843 19 +Q7K3Y9 Spondin-1 5.04 5 7 5 13730.63579 5 +Q7K3Z3 GH01724p 39.07 15 44 15 705357.85019 40 +Q7K485 Cathepsin D 25.51 7 29 7 1165567.43343 25 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 20628.33346 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 6670.812 1 +Q7K4J7 LD36653p 4.06 1 1 1 3426.704 1 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 8492.0334 3 +Q7K4T8 LD23856p 8.52 4 6 4 13289.7253 5 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 8108.322399999999 3 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 62635.814 9 +Q7K519 GH16429p 6.75 3 3 3 21041.93 2 +Q7K549 GH13040p 6.1 3 4 3 5211.2070300000005 3 +Q7K561 GH11294p 1.75 1 1 1 766.22217 1 +Q7K568 GH10642p 13.82 5 11 5 100267.84792 10 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 656371.98865 39 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 276125.0538 20 +Q7K5M6 GH04176p 19.59 6 16 6 159956.75876 13 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 322892.1045 20 +Q7K860 FI07231p 33.33 5 18 5 574717.48557 16 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 506519.34097 23 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 2968.5249999999996 3 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 9499.21117 5 +Q7KK54 MIP07328p 2.21 2 3 2 19160.475 3 +Q7KK90 GH14654p 47.77 7 29 7 1182625.1063 26 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 180602.2109 20 +Q7KLE5 Amphiphysin 41.86 27 94 3 1857205.49469 80 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 135338.63794 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 209255.07708999998 13 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 70173.2926 4 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 5476.450199999999 2 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 239663.6311 13 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 1200445.4206 52 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 3.5 2 2 0 531.2219 1 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 12608.1611 4 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 10550.9831 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 231437.93019 38 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 4338627.67899 95 +Q7KND8 FI09619p 9.18 8 10 8 27225.157460000002 9 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 451025.95956 19 +Q7KRT4 GH07253p 2.47 1 1 0 2316.5098 1 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 16149.6992 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 16177.16284 6 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 38354.526099999995 3 +Q7KSE4 GH05443p 5.39 4 5 4 16040.7669 5 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 220693.168 14 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 989010.07955 25 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 13111.8032 5 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 1154.12554 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 259000.57271 30 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 724044.5514400001 28 +Q7KT58 GH08155p 7.03 4 6 4 18986.5858 5 +Q7KT70 FI18641p1 4.18 4 4 4 11551.57993 4 +Q7KTA1 HL01444p 20.43 10 22 10 138350.2524 18 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 135191.91862 24 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 3223756.30625 79 +Q7KTN9 FI01009p 4.26 3 3 0 6768.0736 2 +Q7KTP7 LP22840p 61.88 10 18 10 162844.03473 17 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 2015540.7171000002 46 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 193292.34272000002 19 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 18251.6008 3 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 460961.56409 33 +Q7KUD4 phospholipase A2 3.95 4 6 0 14748.479500000001 5 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 128360.89455 25 +Q7KUT5 Protein MIX23 21.01 3 4 0 14924.151539999999 4 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 34580.64652 5 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 18752.49664 5 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 225824.27771 25 +Q7KV27 alanine transaminase 47.01 23 110 0 5760390.99854 100 +Q7KV34 Pinkman 39.06 24 47 24 1073735.68332 43 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 10142.6081 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 638.1784 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 125675.22941 17 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 2087.0538 2 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 2958987.09532 81 +Q7KY04 small monomeric GTPase 15.96 3 10 2 20734.506 2 +Q7PL91 GEO11417p1 26.6 3 13 3 164572.55584000002 10 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 4538.9844 1 +Q7PLI0 P120 catenin 10.5 10 17 10 114950.847 13 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 227419.50142 28 +Q7PLS1 LD01937p 11.46 5 8 0 25608.14605 7 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 29010.2377 4 +Q7YU88 SD08871p 5.67 6 8 0 6493.49856 5 +Q86B44 Glutathione synthetase 11.03 6 11 0 55763.71665 8 +Q86B74 WASp, isoform C 16.19 7 10 0 14739.15653 6 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 7210.469 1 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 7642.4030999999995 2 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 132433.80361 21 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 129373.00199 16 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 482481.02441 37 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 346024.34735 24 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 726940.4578699999 26 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 352620.88979 43 +Q86BS3 Chromator, isoform A 27.65 20 50 20 197269.39312 40 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 24519.57186 7 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 189935.17344 16 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 23548.9286 5 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 75955.3015 7 +Q8I0D4 RE20510p 20.9 17 39 0 938427.65734 30 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 23046.857799999998 5 +Q8I0P9 acid phosphatase 1.76 1 2 0 8772.2833 2 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 128763.21047 19 +Q8I930 GH14147p 4.68 3 4 0 8088.3305 3 +Q8I941 GH16843p 28.83 7 29 7 211016.83933 25 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 13215.7331 4 +Q8IGY1 RE08101p 33.61 41 326 0 7763810.35864 145 +Q8IH23 GEO02102p1 43.7 5 11 5 48973.9458 9 +Q8IM93 FI18814p1 36.72 17 40 17 197687.65423 27 +Q8IMF4 RE24176p 10.11 5 7 0 15879.563570000002 5 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 469272.11503 24 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 20071.6723 3 +Q8IMQ8 RH29536p 33.72 10 31 0 475508.64045 28 +Q8IMT3 IP12392p 5.95 3 4 3 5873.6296 2 +Q8IMT6 FI01822p 6.64 3 6 3 39869.50987 5 +Q8IMU2 RE10237p 13.88 3 5 0 19766.4285 4 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 801.1159 1 +Q8IMX4 FI04408p 6.6 2 7 0 22527.228000000003 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 88473.40973 11 +Q8IN49 MIP05539p 7.19 7 14 7 79774.1851 11 +Q8IN51 FI17609p1 21.17 3 9 3 35676.896179999996 6 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 2131.52287 2 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 31190.5298 4 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 20009.87858 5 +Q8INH5 Aminopeptidase 5.65 6 9 0 19851.34386 9 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 20058.782 5 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 31655.829999999998 7 +Q8IP52 RE16941p 3.69 4 4 4 578.542 1 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 8292.145779999999 4 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 349884.7411 26 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 26193.358 5 +Q8IP97 Peroxin-19 54.11 10 30 10 692623.30575 26 +Q8IPA5 RE15581p 6.07 2 2 0 15089.6 1 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 25912.5159 8 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 140695.70996 11 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 2138033.87785 101 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 54341.2589 11 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 1941.121 1 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 302803.25305 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 761.3466 1 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 41356.034739999996 3 +Q8IPT9 SD05439p1 36.84 12 19 0 409668.6547 15 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 824543.26858 47 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 10260.84194 3 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 25969.51795 11 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 27719.09753 13 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 18714.6526 4 +Q8IQB7 MIP21654p 9.44 3 5 3 1667.0046 1 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 18419.5614 5 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 37176.447629999995 9 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 50024.59661 5 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 13712.482899999999 3 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 61621.88572 12 +Q8IQH0 FI12817p 5.22 8 11 0 32495.258 8 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 84608.08411 12 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 6306.43112 3 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 82128.01957 27 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 33482.386 3 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 20594.5154 4 +Q8IQW5 RE23625p 79.17 16 78 4 2435603.8382200003 59 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 2795.9702 1 +Q8IR72 FI19011p1 10.06 1 3 1 10482.764 2 +Q8IR76 FAD synthase 12.59 4 7 0 21636.09259 7 +Q8IRD0 RH17559p 42.86 3 12 3 121274.5782 10 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 3102626.95937 74 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 175291.42287 26 +Q8IRI5 Trio, isoform D 8.83 7 10 0 35079.7777 8 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 6861717.94496 148 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 42164.152799999996 5 +Q8MLP9 GEO08457p1 16.96 2 5 2 8907.96123 5 +Q8MLQ0 FI14118p 21.05 2 3 2 55539.070999999996 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 103396.4347 11 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 41247.6295 5 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 790.78125 1 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 185511.2586 15 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 1976178.69293 73 +Q8MQP2 MIP16184p 7.0 2 5 0 51434.104699999996 4 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 22182.80952 3 +Q8MRM0 GH16740p 23.63 6 17 6 113102.5289 14 +Q8MRS5 AT03104p 3.18 3 3 0 1931.4011 1 +Q8MRT7 SD26038p 13.22 3 7 3 46604.341700000004 7 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 6350.3852 2 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 4028.6119 2 +Q8MSI2 GH15296p 77.78 17 127 17 8153362.07961 107 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 7562.391030000001 3 +Q8MST5 Tubulin beta chain 47.92 18 97 0 900410.3966 39 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 1717459.57896 58 +Q8MZ07 GEO07581p1 10.96 2 5 2 15222.8174 3 +Q8MZI3 RNA helicase 17.36 13 23 6 140161.23364 15 +Q8SWS2 RE29468p 39.05 5 14 0 200874.40124 10 +Q8SWS3 RE26528p 17.13 2 3 2 96431.937 3 +Q8SWZ6 RH51312p 8.33 2 3 2 3972.54804 2 +Q8SX06 GEO08318p1 6.17 1 1 1 498.5518 1 +Q8SX35 GEO07743p1 33.33 3 8 1 58613.643599999996 7 +Q8SX50 RE04530p 14.96 6 11 0 37025.38903 9 +Q8SX54 CLIP domain-containing serine protease 2.78 1 1 1 817.6032 1 +Q8SX57 LD44221p 42.41 8 19 8 147445.0343 17 +Q8SX78 LD05679p 19.7 8 11 8 27551.304500000002 8 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 31555.477 5 +Q8SXC2 FI04487p 7.56 4 4 4 6627.3062199999995 3 +Q8SXD5 GH02216p 53.85 11 59 2 680906.8682 45 +Q8SXE1 RH69521p 6.23 3 3 3 354.93066 1 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 69343.5399 7 +Q8SXF2 RH40246p 10.75 5 7 5 19982.060899999997 5 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 6554.0764 2 +Q8SXK0 RE18748p 10.55 3 3 3 4439.53765 3 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 167135.43055 30 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 25469.384000000002 3 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 141967.55816000002 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 182652.0147 3 +Q8SXS0 RE40914p 11.92 4 6 4 10249.489000000001 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 368161.18415 23 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 20027.3845 5 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 180309.5434 8 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 2430.719 1 +Q8SY67 lysozyme 35.85 3 3 3 90205.47929999999 3 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 349932.9903 10 +Q8SYC4 RE68566p 1.97 1 1 1 760.4559 1 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 2070400.80873 81 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 324146.28202 17 +Q8SYH8 RE57644p 19.78 5 13 1 81732.10500000001 8 +Q8SYJ2 GEO09626p1 61.45 8 53 8 3596033.34135 49 +Q8SYN0 RE52086p 9.56 4 5 4 9690.456629999999 3 +Q8SYQ4 RE42475p 52.03 10 68 10 1368927.26304 59 +Q8SYQ8 RE40412p 32.35 5 10 5 53674.5867 10 +Q8SZK5 RH26533p 10.93 3 5 3 14168.20386 5 +Q8SZK9 HL04814p 47.19 11 54 11 2910127.03975 47 +Q8SZM2 RH04334p 28.15 10 38 10 1566957.31471 33 +Q8SZN1 GEO08217p1 51.61 7 31 3 749681.6020600001 28 +Q8T0I9 GH27479p 23.63 10 27 1 321191.28566999995 21 +Q8T0J5 GH26851p 29.62 9 33 0 589378.15185 30 +Q8T0N5 GH17516p 16.56 6 16 6 213849.45318 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 31337.4907 6 +Q8T0V2 GH02495p 21.25 10 23 0 134273.63032 19 +Q8T389 Endophilin B 56.35 18 77 0 5598.433 1 +Q8T3V6 Large ribosomal subunit protein uL29m 6.27 2 2 2 524.04456 1 +Q8T3W8 Venom allergen-1 20.61 6 10 0 85570.16884 9 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 395032.18176 35 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 1581700.18117 64 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 19704.3027 2 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 11113.735 1 +Q94513 Boundary element associated factor 12.41 5 12 1 27097.6905 6 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 34409.64448 7 +Q95NU8 GH16255p 16.25 8 18 8 143435.73618 16 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 26093.82613 3 +Q95PE4 GEO07784p1 6.17 1 1 1 740.1619 1 +Q95R34 GH16463p 9.71 3 4 3 11345.8609 2 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 47284.4915 7 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 47082.4875 16 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 13442117.09536 136 +Q95RE4 LD37574p 44.32 15 30 1 40854.94745 22 +Q95RF6 LD34461p 43.27 5 7 5 56218.4946 5 +Q95RI2 LD28549p 27.78 9 14 9 45609.51481 9 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 35860.62116 8 +Q95RQ1 LD16414p 3.71 2 2 2 1652.1589 1 +Q95RR6 LD15002p 64.6 17 77 0 60472.7961 3 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 99388.1355 13 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 239548.52899999998 4 +Q95RY2 LD01461p 20.61 5 11 1 88974.5448 9 +Q95SH0 GH26463p 5.58 5 6 5 9060.987 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 291269.42551 28 +Q95SH7 GH26007p 7.94 2 3 2 2380.36823 2 +Q95SI7 GH23390p 75.09 17 43 17 1439146.76811 38 +Q95SN8 GH12395p 26.76 5 14 5 187442.8861 11 +Q95TK5 LD44914p 12.95 7 17 7 73780.46138 13 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 527786.18116 33 +Q95TP0 LD34582p 1.97 1 1 1 4143.2607 1 +Q95TZ7 GH19182p 79.35 28 155 0 2647910.8437200002 112 +Q95U15 GH14252p 82.05 32 274 0 1188168.54495 24 +Q95U34 GH11113p 20.41 10 36 10 321336.71857 29 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 63081.2948 6 +Q960D4 SD06560p 22.09 14 22 0 140785.86768 20 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 4911304.34104 79 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 133655.86873 26 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 8604.9226 4 +Q961B9 LD24073p 8.37 4 4 4 14006.31 1 +Q961C8 LD22649p 15.3 5 10 0 30680.47804 8 +Q961E7 phosphorylase kinase 10.74 5 5 1 19559.4274 3 +Q961K6 GH19047p 4.19 3 3 3 9832.98116 3 +Q961Q8 GH10454p 10.86 5 7 5 44095.0284 5 +Q961T9 GH07914p 35.88 6 11 6 99317.0435 9 +Q961X4 Combover, isoform B 10.01 8 13 0 60993.04316 10 +Q966T5 Paxillin, isoform D 37.06 7 18 2 50444.234599999996 7 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 34076.15105 10 +Q9I7I3 GH12831p 9.56 3 4 3 5576.9558400000005 4 +Q9I7J0 GH21596p 73.37 11 57 11 1565174.06424 46 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 36944.8397 3 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 18874.22899 8 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 902405.01958 27 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 1324589.89546 17 +Q9NCC3 Sorting nexin 14.34 8 16 8 85115.26118 16 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 2.35 3 3 0 387.59406 1 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 55082.69 6 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 139645.0114 14 +Q9U6P7 FI18813p1 14.35 7 9 7 49086.01074 9 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 843332.7860600001 41 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 22530.2156 4 +Q9V393 Kurtz arrestin 10.0 5 9 5 76571.9378 7 +Q9V396 Carbonic anhydrase 46.67 12 54 12 1229841.6556 46 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 46765.7885 7 +Q9V3C8 DShc protein 3.42 2 3 2 5662.946 1 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 119341.10359 14 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 6647.0206 2 +Q9V3E7 LD24793p 42.48 12 35 12 339962.37383 29 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 17310.0146 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 250784.1546 13 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 766.4363 1 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 41180.41052 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 117535.25039999999 6 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 1004277.6531700001 48 +Q9V3N9 B6 5.73 4 6 4 48294.9253 4 +Q9V3P3 LD45860p 40.0 10 21 10 549763.50081 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 78106.4995 8 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 8306.5645 2 +Q9V3T8 LD32469p 14.36 4 5 4 56328.8438 5 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 1715743.2751000002 39 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 883690.17339 41 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 1838847.7808100001 55 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 629709.36568 34 +Q9V3W2 GM23292p 61.08 12 86 12 2317024.16086 75 +Q9V3W7 LD40489p 41.18 10 24 10 148829.52814 17 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 171636.06456 25 +Q9V3Y4 LD43650p 6.65 2 4 2 3202.5435 1 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 201288.2341 28 +Q9V3Z4 GH11341p 22.31 12 31 12 175798.20094 23 +Q9V3Z9 HL02234p 46.21 14 53 14 2895735.88218 37 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 11584.132 5 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 722837.41894 42 +Q9V406 Activator protein 4 9.03 7 16 7 37868.45715 10 +Q9V420 FI02878p 13.91 5 10 5 75900.7014 10 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 198964.16355 18 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 26309.015399999997 3 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 191094.23473999999 8 +Q9V455 Importin subunit alpha 15.95 9 16 9 215605.51090999998 13 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 495544.93457 34 +Q9V491 Plexin A, isoform A 1.03 2 2 0 1326.78314 2 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 971775.2797 51 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1649635.96618 62 +Q9V4E0 Complex I-49kD 26.28 9 14 8 125261.79516 11 +Q9V4E7 Transporter 3.62 3 6 2 8636.42561 5 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 7173.5471 3 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 120750.25097 11 +Q9V9Q4 LD43819p 24.01 9 22 9 284115.2143 17 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 112721.79476 3 +Q9V9T5 GM14617p 15.04 10 14 1 20124.22403 9 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 3145.59664 2 +Q9V9U0 RE35358p 10.11 2 3 2 900.5081 2 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 72761.93556 12 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 5712.74655 3 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 139297.55599999998 13 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 455865.60344 19 +Q9V9W4 GH08048p 3.6 2 2 2 1804.6663 1 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 4199.59646 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 61174.510800000004 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 2658026.78717 83 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 112601.46065 10 +Q9VA34 LP06141p 3.64 4 5 4 14426.85303 5 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 151446.37058000002 23 +Q9VA41 GEO08227p1 42.04 6 16 2 114078.6204 6 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 633507.86256 17 +Q9VA56 GH23271p 60.79 20 66 1 1852.3036 1 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 19576.846 3 +Q9VA71 FI19924p1 6.19 3 3 3 13434.39383 3 +Q9VA76 IP18706p 11.33 4 8 4 22455.4971 5 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 5424.3425 2 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 264288.75547 18 +Q9VAA6 GEO12235p1 10.76 2 6 2 32826.8411 6 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 82609.17199 16 +Q9VAC1 GM14349p 63.31 21 113 21 7790532.95626 92 +Q9VAC4 GEO09167p1 23.08 3 12 3 328964.515 10 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 29889.82914 13 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 11153.3249 2 +Q9VAD7 RH37294p 11.56 2 3 2 3388.81795 3 +Q9VAG3 trypsin 11.46 3 6 3 46683.832800000004 5 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 28461.22553 6 +Q9VAI9 GEO07291p1 62.25 9 62 5 3362003.82152 47 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 97426.0148 13 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 6430.7484 3 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 1013115.24012 58 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 10147183.79366 100 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 42857.8058 9 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 4476.6810000000005 4 +Q9VAU6 LD27564p 2.62 2 2 2 8737.9427 2 +Q9VAV2 FI21480p1 16.09 13 25 13 104542.07571 23 +Q9VAY0 Neprilysin 7 5.58 4 4 4 5467.478840000001 4 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 1279092.9129899999 74 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 27260.987 2 +Q9VAY9 GH07821p 4.83 2 2 2 29796.568359999997 2 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 624649.12193 49 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 1354764.8717 46 +Q9VB17 IP11341p 10.12 4 7 4 23834.8432 5 +Q9VB22 LD33695p 13.07 8 14 8 145372.93567 12 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 94117.45644 18 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 206757.8283 9 +Q9VB66 CLIP domain-containing serine protease 7.35 3 3 2 547.3185 1 +Q9VB69 Malic enzyme 19.45 12 25 1 133319.14659 20 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 35654.9548 4 +Q9VB77 IP09938p 4.06 1 2 1 3241.27923 2 +Q9VB78 Eater 12.38 3 7 3 5220.06774 2 +Q9VB79 IP09473p 14.19 5 15 5 51286.01924 12 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 1068507.7486999999 56 +Q9VB86 LP07342p 7.34 1 1 1 8171.253 1 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 394827.72241 25 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 17418.8296 7 +Q9VBC9 Beaten path VII 3.68 2 4 2 20434.0057 4 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 2285728.14982 52 +Q9VBI3 RH72336p 22.66 7 23 7 164613.51027 19 +Q9VBL3 GH01188p 8.54 5 6 5 6691.3825 5 +Q9VBN5 60S ribosomal protein L27 5.93 1 1 1 572.58466 1 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 21527.613 3 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 5074934.83818 131 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 22118.952 3 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 457624.3311 19 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 17352.60944 6 +Q9VBT2 IP11926p 4.57 2 2 2 2014.5277 1 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 8491.1315 3 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 637035.4427 10 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 16631.1993 3 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 25853.197699999997 3 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 1412855.31795 58 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 25089.3208 4 +Q9VC06 LD37516p 12.05 9 12 9 48940.05656 11 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 2466.0208 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 182201.6094 22 +Q9VC30 RE05274p 13.98 3 7 3 8535.89409 5 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 54722.01292 11 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 123814.26610000001 14 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 103837.97967 9 +Q9VC58 Syntaxin-18 6.08 3 3 3 999.56781 2 +Q9VC66 AT25567p 25.62 12 25 12 119767.94346000001 24 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 15600.410500000002 5 +Q9VC87 RE57978p 7.51 3 5 3 12990.63868 4 +Q9VCB9 FI08802p 6.15 2 2 2 21164.219399999998 2 +Q9VCC9 LD23779p 2.55 3 5 3 2292.09653 2 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 4512.6096 3 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 119790.45946 8 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 11689.1585 7 +Q9VCF8 LD23561p 10.51 4 8 4 46115.30083 8 +Q9VCI4 LD32918p 5.33 4 7 4 1846.48422 4 +Q9VCI7 LD02979p 12.03 5 12 1 148135.96697 9 +Q9VCK6 LD34157p 14.88 7 11 7 48333.156240000004 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 38012.44446 7 +Q9VCR4 FI17836p1 3.66 3 5 3 11413.81727 4 +Q9VCR9 RH48101p 20.22 8 34 8 301712.54245 30 +Q9VCT4 Klingon 5.69 3 4 3 6271.45551 4 +Q9VCU0 GEO02312p1 33.33 4 15 4 42703.59924 12 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 31802.003299999997 4 +Q9VCW2 Cardinal 11.33 9 12 9 18318.86228 8 +Q9VCW6 GCS light chain 37.54 12 34 12 256215.394 29 +Q9VCZ2 FI07970p 5.96 3 4 3 3178.58781 4 +Q9VD00 FI07666p 15.11 4 16 4 116290.3305 14 +Q9VD01 LP12095p 8.52 2 4 2 109367.823 4 +Q9VD02 GH14779p 37.99 5 19 5 264388.74353 16 +Q9VD13 GH02671p 17.26 8 11 1 54121.7073 7 +Q9VD14 GH07286p 11.88 8 21 8 206822.68633 20 +Q9VD29 small monomeric GTPase 48.19 9 26 9 1945046.99464 22 +Q9VD30 GH05294p 74.19 12 43 12 2071298.18 43 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 17489.6005 3 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 3621994.88171 85 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 27279.763 4 +Q9VD68 GH19849p 4.3 2 3 2 19634.96507 3 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 40333.84913 5 +Q9VDC0 GH01837p 28.0 5 14 5 53287.80717 12 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 49152.0168 4 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 431116.516 10 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 255295.03165 6 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 159790.03296 27 +Q9VDH3 GH08630p 66.23 13 38 13 1234625.6005199999 34 +Q9VDI1 LD46328p 53.04 22 79 0 831489.91058 59 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 12278.497780000002 3 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 37850.5735 5 +Q9VDK2 GH15831p 5.72 4 6 3 24060.7127 5 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 129722.19123 23 +Q9VDK9 GH12359p 6.46 4 6 4 45759.9084 6 +Q9VDL5 GEO09602p1 13.43 1 2 1 17312.0969 2 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 326583.05215 18 +Q9VDQ3 Identity crisis 6.53 4 4 4 2418.7147999999997 2 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 199486.47304 18 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 303211.3012 15 +Q9VDU7 nicotinamidase 15.69 5 15 5 219577.06325 14 +Q9VDV2 AT06125p 8.54 4 4 3 4396.3061 2 +Q9VDY8 MIP08680p 57.35 14 64 1 1099365.40235 57 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 790274.27794 71 +Q9VE08 GH10002p 8.92 2 3 2 9980.619340000001 3 +Q9VE12 LD27322p 14.81 5 12 5 40068.37367 9 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 34394.952 6 +Q9VE31 GEO12059p1 16.22 2 3 2 1751.52875 3 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 46558.110929999995 7 +Q9VE56 FI17806p1 7.14 2 3 2 68483.353 3 +Q9VE57 GEO10850p1 12.41 2 3 2 11863.2795 3 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 1554.9267 2 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 19260.271 3 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 43222.91635 9 +Q9VE94 LD14127p 12.24 5 6 5 8866.9879 3 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 209726.50950000001 13 +Q9VEA7 FI01460p 28.09 1 3 1 13514.507 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 22219400.95338 245 +Q9VEB7 AT04491p 5.94 3 3 3 22890.535640000002 3 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 39667.27828 4 +Q9VEC8 RE23139p1 14.62 2 4 2 31490.256 4 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 103789.3227 8 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 14588.0368 2 +Q9VEG8 RE59232p 2.8 1 1 1 38726.652 1 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 15586.8056 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 727998.68372 37 +Q9VEJ9 Curly Su 1.2 1 2 1 14253.3123 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 205150.48078 13 +Q9VEK8 GH07711p 34.05 12 33 12 247491.04825 28 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 91928.56881 18 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 5808.6604 2 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 18078.04472 7 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 165448.69167 22 +Q9VEP8 GH11385p 13.2 10 14 10 53940.0289 11 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 88179.24742 19 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 24335.53461 7 +Q9VES8 RE28913p 27.34 8 16 8 37340.36615 12 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 53971.7154 3 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 152587.60598 21 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 2550.9075 1 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 13650.57933 3 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 164600.87204 21 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 29644.7787 3 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 1307781.09626 34 +Q9VEY9 GH15759p 2.33 1 1 1 400.8298 1 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 71301.62715 15 +Q9VF15 GEO09476p1 81.05 12 61 8 1525582.90338 53 +Q9VF23 arginine kinase 7.22 4 6 4 11556.8774 2 +Q9VF24 Crossveinless d 5.1 8 12 8 41866.49523 10 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 84556.07118 12 +Q9VF39 FI01459p 4.13 2 2 2 11674.2 1 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 130190.75286 21 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 31447.95197 7 +Q9VF77 FI16517p1 10.07 4 7 4 18545.27307 4 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 24124.5232 4 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 158663.7187 11 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 21241.681 2 +Q9VFC7 Mf5 protein 84.38 37 292 0 4813175.39277 190 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 4240.5362 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 6985013.6718999995 121 +Q9VFI3 GEO08281p1 21.15 1 1 1 4887.0635 1 +Q9VFM0 GH19262p 4.96 3 5 3 5331.933 4 +Q9VFN7 GEO07678p1 20.13 4 19 4 350959.45689 17 +Q9VFN9 GEO07882p1 15.32 2 6 2 30865.2218 4 +Q9VFP0 RH07106p 17.84 7 11 7 73351.2884 10 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 797536.95076 32 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 382782.81905 22 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 13736.92214 7 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 33413.45493 6 +Q9VFT4 AT27578p 10.58 6 11 6 22268.2363 8 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 21522.7527 4 +Q9VFV1 RE55542p 2.83 2 2 2 16965.4624 2 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 1503054.82754 55 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 86859.0424 10 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 11982.2007 4 +Q9VG01 RE12073p 5.26 3 3 3 5177.08884 2 +Q9VG04 Protein MEMO1 10.85 4 6 4 6098.15556 4 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 3328.314 1 +Q9VG23 GH22994p 65.12 12 32 1 953320.4524300001 26 +Q9VG26 MIP06012p 38.03 8 22 8 493335.25965 17 +Q9VG28 Beaten path Vc 2.36 1 3 1 967.29297 1 +Q9VG31 Malic enzyme 16.64 15 41 0 313131.31315 36 +Q9VG33 Sulfurtransferase 73.64 6 14 6 886490.8966000001 13 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 97935.57907 7 +Q9VG44 RE14195p 2.84 2 2 2 736.9295 1 +Q9VG51 Sorting nexin-3 55.69 9 28 9 168676.76446 24 +Q9VG62 Toys are us 1.44 1 1 1 1618.5294 1 +Q9VG69 LP03547p 32.01 11 35 11 434587.36375 31 +Q9VG81 RH49330p 11.83 6 15 6 40169.34905 11 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 75752.5778 5 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 373766.0304 15 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 6239.5461000000005 2 +Q9VGA3 LD12305p 35.91 7 32 6 417972.5893 24 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 2868.9847 2 +Q9VGE4 FI04457p 9.25 11 16 11 39208.61727 11 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 11835.921040000001 6 +Q9VGF3 IP11040p 11.88 5 6 5 13155.251199999999 4 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 316713.80182 26 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 118671.0798 10 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 98160.8826 8 +Q9VGL0 LD43047p 2.84 4 6 4 1308.25785 2 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 12748989.96667 205 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 45845.7004 7 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 2771757.77516 74 +Q9VGQ8 Arfaptin 6.76 3 4 3 25126.8893 3 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 6103.2833200000005 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 6177.5779 3 +Q9VGS3 RH44771p 14.04 3 26 3 381987.7943 21 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 13989.063600000001 2 +Q9VGT3 GM04645p 5.3 3 5 3 2650.92793 4 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 21745.40163 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 18102.976 4 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 31887.5437 3 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 45226.952300000004 6 +Q9VGY2 Peptide deformylase 10.08 3 4 1 12899.244999999999 4 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 6164.7295 1 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 119955.72007 20 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 50871.23332 8 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 231775.74806 16 +Q9VH37 IP06524p 14.29 3 4 3 27815.62724 4 +Q9VH63 Uncharacterized protein 3.0 2 2 2 2475.3477 1 +Q9VH64 LD29322p 10.03 4 5 4 44247.402 4 +Q9VH66 FI18258p1 29.61 6 13 6 55633.99029 10 +Q9VH72 TA01656p1 52.94 7 23 7 298620.65666000004 18 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 465556.3515 40 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 28037.36033 10 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 54828.0858 7 +Q9VH85 GH14967p 3.41 3 3 3 7148.4277 1 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 132782.6311 6 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 113785.85416 9 +Q9VHA8 LD25575p 12.25 8 20 8 167632.6893 15 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 133250.95584 12 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 54831.5262 6 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 102266.68393 15 +Q9VHC7 FI21236p1 30.54 19 54 9 1139842.4525 37 +Q9VHC8 LD31448p 10.06 2 2 2 1635.6471 1 +Q9VHE3 GH05665p 9.38 4 6 4 27361.18452 5 +Q9VHE4 omega-amidase 17.31 5 13 5 58278.64341 12 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 41316.129700000005 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 137484.65499 10 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 34933.4976 8 +Q9VHH8 Beag 6.82 4 8 4 31669.30405 7 +Q9VHI1 Hyrax 7.06 4 6 4 13253.629939999999 4 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 339683.4498 20 +Q9VHJ2 LD32381p 2.65 1 1 1 5086.664 1 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 20984.9267 2 +Q9VHJ7 LD41978p 4.65 3 3 3 11377.374 1 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 659857.78072 41 +Q9VHM3 LD30467p 10.77 5 8 5 24121.57335 6 +Q9VHN4 GH14121p 9.77 3 5 3 8145.7726999999995 4 +Q9VHN7 transketolase 22.36 14 33 2 491430.77832 25 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 17061.046299999998 2 +Q9VHT3 CG9617 protein 15.17 3 3 3 12456.49026 2 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 28398.4627 5 +Q9VHX2 GH08043p 9.4 4 7 4 11857.466 4 +Q9VHX4 LD24679p 66.57 21 108 21 4060779.23189 89 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 19281.1548 5 +Q9VI09 GH14494p 49.01 6 27 6 726811.22037 22 +Q9VI21 Dementin, isoform D 3.92 3 3 0 1503.4596 1 +Q9VI24 LD25151p 7.73 3 3 3 5085.71508 2 +Q9VI53 LD44267p 14.93 6 13 6 35114.140060000005 10 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 25847.91697 4 +Q9VI64 LD30995p 47.03 13 57 13 1192850.83668 50 +Q9VI80 Thawb 1.58 2 3 2 9702.9138 2 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 21379.3015 5 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 18286.52489 4 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 18927654.77019 263 +Q9VIF2 GM01519p 8.7 4 11 4 59530.7598 10 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 65953.84082 11 +Q9VIH1 CG9273 protein 16.67 5 12 5 28771.6578 10 +Q9VII5 GEO08323p1 25.79 4 13 4 108303.03336 11 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 4624.962 1 +Q9VIJ3 FI14214p 12.78 2 3 1 2471.06484 2 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 2444.04967 2 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 55061.050690000004 17 +Q9VIL2 LD19544p 8.63 3 8 3 58665.4881 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 149746.14993 16 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 58718.93237 6 +Q9VIQ5 RH02620p 27.49 7 16 7 20411.1505 7 +Q9VIQ6 FI17342p1 14.79 3 8 3 43287.1613 7 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 1159734.84723 42 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 17971.5785 3 +Q9VIU3 FI23988p1 6.9 3 4 3 12717.93986 4 +Q9VIV6 GH04973p 4.56 2 2 2 1599.3191 1 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 21445.738 3 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 2020.3483 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 49647.035599999996 2 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 105907.67237 11 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 303901.84846 9 +Q9VJ22 GH09876p 5.41 2 3 2 4920.873729999999 3 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 17444.4677 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 289319.6696 11 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 48321.8165 9 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 840270.89179 39 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 64866.90753 13 +Q9VJ60 GM16226p 12.15 3 7 3 40182.453 7 +Q9VJ61 SD03870p 9.81 5 6 5 17350.266200000002 5 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 207832.53294 16 +Q9VJ80 LD42267p 6.89 9 15 9 58698.52171 13 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 47481.9297 12 +Q9VJA9 GH07373p 0.94 1 1 0 4399.6733 1 +Q9VJC0 GEO08203p1 37.23 5 6 5 44537.4676 4 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 48016.15313 6 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 164093.65889 27 +Q9VJD4 LD24721p 33.84 12 37 12 923955.18012 27 +Q9VJE3 LD24839p 14.6 7 7 7 30603.4774 6 +Q9VJH8 FI03416p 5.71 4 5 3 18979.97194 5 +Q9VJI5 Protein yellow 13.91 7 13 7 77196.69956 13 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 277091.85433999996 13 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 537118.7533 24 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 11078.40906 2 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 52120.06683 7 +Q9VJQ3 Protein yellow 22.83 9 30 8 805073.99007 28 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 41764.393860000004 4 +Q9VJU6 IP09831p 15.87 4 4 4 23466.0826 2 +Q9VJU8 GH23407p 8.48 4 9 4 31226.77328 6 +Q9VJX3 B4, isoform A 2.44 3 3 3 4993.957359999999 2 +Q9VJZ1 FI21342p1 8.24 5 6 5 18291.60306 6 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 1478478.58874 52 +Q9VJZ5 LD07294p 17.89 6 14 6 51262.5873 11 +Q9VJZ6 LD40224p 67.13 10 28 10 540940.54567 23 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 67286.27222 7 +Q9VK11 GH15921p 17.8 5 15 5 252469.9753 15 +Q9VK12 GH20621p 54.0 15 86 15 2086254.20028 63 +Q9VK18 LD36945p 10.11 5 7 5 12887.63397 6 +Q9VK19 FI07225p 7.72 2 2 2 2696.9534 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 831.21704 1 +Q9VK31 LD35592p 3.65 2 2 2 4247.1573 2 +Q9VK39 FI09204p 45.28 4 21 4 124343.84526 16 +Q9VK43 LD10135p 8.24 3 3 3 1905.42663 2 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 3754.87735 4 +Q9VK59 LD23647p 32.84 31 71 31 321308.07663 46 +Q9VK60 GH25425p 49.42 10 45 10 1787934.03115 36 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 795962.2056 44 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 121011.87819 16 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 283625.25286 14 +Q9VK99 Atilla, isoform B 51.75 9 42 9 1053700.99465 35 +Q9VKA1 FI02817p 15.58 3 7 3 4205.0121 2 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 11236.2771 2 +Q9VKC8 FI03495p 11.04 7 13 7 160047.7451 11 +Q9VKD9 MIP16835p1 2.3 2 2 2 7744.6577 2 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 12224887.54538 384 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 53479.12978 8 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 38991.8284 7 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 4832.303739999999 3 +Q9VKI8 GH03305p 80.72 20 131 20 2989108.23117 104 +Q9VKJ4 Csl4 22.06 4 6 4 7213.68016 3 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 1790349.1574 48 +Q9VKM7 AT01533p 9.31 7 9 4 95902.97957999998 7 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 115775.59992 19 +Q9VKQ5 GEO07393p1 29.03 3 3 3 10065.607899999999 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 490.43472 1 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 529881.21714 22 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 23312.6163 4 +Q9VKU5 LD37206p 7.02 2 3 2 2368.3254 1 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 784355.39445 36 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 21423.97713 5 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 18707.69304 5 +Q9VKW1 LD41958p 8.58 4 7 4 7453.9950499999995 6 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 40035.98676 10 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 24.03 3 3 3 1014.33417 1 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 5766311.99776 133 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 252650.25073 15 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 21207.12329 9 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 191747.8953 16 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 558712.59145 45 +Q9VL02 GH08677p 6.78 3 4 2 23429.3354 4 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 26352.775 5 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 10259.92958 3 +Q9VL16 RE45833p 30.13 6 46 6 1120917.28454 40 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 4937.652 2 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 4451.553 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 16862.5933 6 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 21910.10515 4 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 1264308.11148 44 +Q9VL70 HL08109p 78.89 30 118 30 6992651.68428 108 +Q9VL71 LD29830p 7.02 4 5 4 5000.21538 5 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 72485.9626 5 +Q9VL91 LD23102p 2.06 2 2 2 3868.66426 2 +Q9VL93 GEO07195p1 13.64 2 4 2 68822.5395 4 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 55979.8328 7 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 1292544.34415 45 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 2066151.54314 61 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 19902.4293 5 +Q9VLI4 Raw, isoform A 2.53 3 3 0 4593.917 1 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 30715.8126 3 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 57645.34 7 +Q9VLP0 IP04187p 20.32 5 7 5 27417.02224 5 +Q9VLP1 GEO08095p1 36.49 4 22 4 213701.37529999999 17 +Q9VLP2 GEO08076p1 38.78 8 25 8 248827.17872 17 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 43327.538 2 +Q9VLQ9 Sorting nexin 31.85 14 43 1 429167.25214 34 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 25035.1392 5 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 26038.5303 4 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 1089995.13516 23 +Q9VLS5 LD29542p 12.08 6 8 6 28374.454700000002 7 +Q9VLS7 LD21067p 0.89 2 3 0 2328.9476999999997 2 +Q9VLT3 LD23292p 13.58 24 53 24 344923.47572 47 +Q9VLT7 IP17351p 16.35 2 5 2 170007.161 3 +Q9VLU3 IP09231p 5.4 1 1 0 610.6988 1 +Q9VLV9 Proctolin 19.29 2 4 2 1630.9565 1 +Q9VLW8 LD06392p 6.75 2 2 2 16999.635 1 +Q9VLX6 HL01609p 18.95 5 9 0 46087.82934 7 +Q9VLY1 HL02931p 19.01 1 2 1 77672.04400000001 2 +Q9VLY7 TEP1-F 4.02 7 7 7 12321.682859999999 5 +Q9VLY9 CD109 antigen 20.51 28 66 0 900741.62461 60 +Q9VM07 RE43931p 18.26 4 9 3 54989.2771 3 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 83720.28916 13 +Q9VM11 HL01515p 16.08 5 9 5 92186.12636000001 8 +Q9VM12 MIP26555p1 24.49 8 23 8 249375.3292 17 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 7374473.38371 223 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 3399327.13825 76 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 20428.7875 3 +Q9VM47 Menin 4.98 4 8 1 15886.39224 4 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 6177.6655 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 41334.7718 8 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 32279.8685 3 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 234009.5522 10 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 55975.5368 7 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 2582458.82302 84 +Q9VMC3 LD35051p 8.64 4 4 4 18717.5528 4 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 40150.2158 3 +Q9VMC7 LP11564p 6.96 4 5 1 2400.1728000000003 2 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 62294.01085 15 +Q9VME1 FI01864p 16.46 8 16 8 81193.31866 14 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 21228.82854 7 +Q9VMF0 FI04444p 3.77 2 2 2 10037.9745 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 43528.54309 13 +Q9VMH8 GEO07746p1 53.17 8 19 8 398685.6413 16 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 493352.26564 27 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 1119268.67572 42 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 2963883.89095 42 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 130602.66089999999 13 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 158796.084 11 +Q9VMR9 acylphosphatase 6.93 1 1 1 795.5984 1 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 1941148.53649 53 +Q9VMT2 GEO07854p1 71.81 9 122 1 2373762.57814 97 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 556129.81887 28 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 63119.9726 8 +Q9VMV5 Viking, isoform A 10.0 19 40 19 91801.34626 34 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 3990.92426 3 +Q9VMX4 AT19154p 13.15 3 7 3 90718.1295 6 +Q9VN01 GH23891p 8.61 5 10 5 26313.757159999997 7 +Q9VN02 GH14561p 29.6 7 15 7 66042.51806 13 +Q9VN21 LD30155p 49.91 26 129 26 2196605.61948 114 +Q9VN39 RE74585p 17.58 6 13 1 22518.54004 8 +Q9VN44 FI07923p 16.56 15 37 15 195382.30684 27 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 187682.60879 11 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 127151.69133 13 +Q9VN86 AT14148p 14.19 6 10 6 25941.2277 7 +Q9VN88 LD45836p 35.98 7 17 7 79998.61679 14 +Q9VNA3 GH21273p 34.26 7 21 7 156316.42483 19 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 361606.1887 13 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 16578.82342 4 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 512.56323 1 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 57820.93366 8 +Q9VNF3 RE01652p 34.63 8 31 6 504889.59752 26 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 18173.52857 8 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 5255.39606 2 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 93600.40962 10 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 88050.954 2 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 47339.045099999996 8 +Q9VNI8 Hpr1 8.99 6 9 6 23348.3509 9 +Q9VNI9 IP18173p 7.05 1 2 1 6482.9842 2 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 3530793.9624 71 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 8977.93888 3 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 20678.63441 9 +Q9VNW0 GEO11142p1 17.97 2 2 2 11863.648 1 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 1788111.5108699999 78 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 967690.11153 71 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 4394.9714 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 22348.16597 5 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 4229.798 1 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 16208.94968 5 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 161403.61500000002 2 +Q9VP51 LD40450p 5.59 2 2 0 2829.6276000000003 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 261402.95882 13 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 29991.83872 8 +Q9VP57 LD15904p 21.79 19 45 19 351310.08062 36 +Q9VP77 LD23875p 5.73 5 6 5 5654.8529 4 +Q9VP78 GH23156p 7.79 4 6 4 14645.154499999999 5 +Q9VP84 IP06402p 8.47 2 2 2 1553.0934 1 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 2949.8826999999997 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 794.8652 1 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 18226.975000000002 5 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 13462.74937 3 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 1844088.34614 49 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 44775.21843 8 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 7116.6036 3 +Q9VPH6 LP10922p 6.08 4 6 1 10704.241460000001 4 +Q9VPJ0 RE58433p 17.91 8 22 2 33600.385330000005 12 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 5754.00443 3 +Q9VPK3 AT24407p 8.72 4 13 1 29869.04165 10 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 21122.902 5 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 1339706.4849 85 +Q9VPP7 AT13539p 4.96 1 3 1 37460.070999999996 2 +Q9VPR1 GH02075p 11.35 2 3 2 12748.701 1 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 15615.11303 4 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 53439.201839999994 9 +Q9VPU4 FI17537p1 5.33 2 4 2 8866.832999999999 2 +Q9VPU6 Galectin 5.06 2 3 2 19126.2307 3 +Q9VPX0 GH26159p 6.59 4 6 4 9185.195600000001 4 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 191410.6411 13 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 1643661.33303 62 +Q9VPY7 LD42035p 5.27 3 4 3 4259.9547 2 +Q9VPZ5 GH04232p 15.64 8 27 8 91119.61862 17 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 15346.5229 2 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 4664566.90499 115 +Q9VQ83 RE23541p 13.29 4 5 0 42359.034999999996 5 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 50173.29294 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1813623.74422 54 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 1201950.8222 31 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 177270.29940000002 8 +Q9VQE0 dynamin GTPase 20.27 14 22 14 92911.13328 16 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 7915.320100000001 2 +Q9VQI6 LD25952p 13.89 5 8 5 50190.1001 5 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 404266.77989999996 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 17117.7465 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 2027.5917 2 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 524165.38688 27 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 637.5743 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 690242.943 11 +Q9VQQ6 FI18122p1 19.21 10 17 0 156473.7801 16 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 1712395.56304 48 +Q9VQR5 IP10807p 2.5 1 2 1 4121.2236 1 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 45156.46787 8 +Q9VQT7 RH15675p 14.63 1 6 1 78555.84075 3 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 85682.80426 13 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 50871.78131 11 +Q9VQX3 HL05328p 6.13 2 3 2 6861.15545 3 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 2104.5364 1 +Q9VR03 AT19250p 3.98 2 2 2 2829.1829 1 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 83131.18834 8 +Q9VR30 RE58324p 11.81 5 10 5 52471.22552 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 51101.1662 12 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 19297.7015 2 +Q9VR79 LD43683p 40.08 10 47 10 1282351.3268600001 42 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 3546.2446 2 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 670494.4559 20 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 259074.42666 15 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 39588.61879 7 +Q9VRF7 GH09530p 10.57 3 5 0 10692.31205 4 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 71547.6837 7 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 16328.43831 6 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 1054750.61183 37 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 74270.4032 5 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 18297.62096 3 +Q9VRK9 Kinesin-like protein 4.43 3 4 2 1853.20535 3 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 2899068.23448 121 +Q9VRL1 GEO06356p1 53.1 8 34 2 1016745.04678 25 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 20231.3567 4 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 5853.329 1 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 833043.87492 55 +Q9VRP3 AT08565p 17.07 5 16 5 123994.25744999999 10 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 11776.3613 3 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 351941.99548 18 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 81606.37464000001 15 +Q9VRV8 Transportin-1 2.69 2 3 2 4053.8157199999996 3 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 47231.9677 6 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 95739.0264 11 +Q9VS11 lysozyme 15.97 4 7 4 12129.45074 6 +Q9VS44 Uncharacterized protein 9.45 3 4 3 13093.0452 3 +Q9VS84 FI03225p 7.71 7 15 7 132356.8093 12 +Q9VSA9 CG7409 82.47 15 103 15 2772002.79287 75 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 99028.783 10 +Q9VSC5 GM09977p 50.76 17 41 17 668154.398 37 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 51833.74232 11 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 166593.3481 15 +Q9VSH5 IP09562p 9.77 2 2 2 6801.539540000001 2 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 22046.8492 3 +Q9VSI1 LD21269p 7.6 5 7 5 31845.4381 7 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 3971.6714 1 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 383258.92235 18 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 579828.40685 30 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 1125034.2368 42 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 113448.63975999999 10 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 2902.76584 2 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 13162.2914 3 +Q9VSM8 TBC1 domain family member 13 2.48 1 1 1 1763.1946 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 133321.9382 8 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 1325126.54356 58 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 69506.97775 8 +Q9VSR5 GM03767p 52.75 9 24 9 902954.7498999999 19 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 14609.069 2 +Q9VST4 arginine kinase 4.64 2 4 2 5338.165870000001 3 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 2209625.51958 68 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 296808.07394000003 25 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 49923.3301 4 +Q9VSW7 LD21662p 5.13 2 3 1 3579.0688 2 +Q9VSX2 IP01061p 30.5 6 17 6 164857.6159 10 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 3242120.93363 59 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 168253.47126 11 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 9304.64907 7 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 132264.04763 16 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 354344.78747 28 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 929.72876 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 74268.63994 4 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 11184.002400000001 5 +Q9VTA8 RE35371p 12.66 3 4 3 1532.75414 2 +Q9VTB0 LD35289p 17.94 8 13 8 55267.14351 12 +Q9VTB3 Guanylate kinase 52.79 13 38 13 693748.58257 30 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 949994.3326600001 36 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 23171.4277 6 +Q9VTC3 GH07049p 12.22 5 7 5 129940.90419999999 7 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 2032.7524 1 +Q9VTL0 FI19917p1 10.87 4 4 4 10483.667300000001 3 +Q9VTP1 IP06473p 3.53 1 2 1 5466.2383 2 +Q9VTT2 LD20590p 6.65 3 4 3 11749.0187 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 845344.64546 31 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 327891.48277 13 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 76682.105 3 +Q9VTW1 RE15265p 7.1 3 5 0 17911.37604 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 3638.6523 2 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 698684.83872 31 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 148302.8564 13 +Q9VU04 RE60105p 11.69 3 7 3 62468.418099999995 5 +Q9VU13 LD45603p 8.95 5 14 0 107545.24453 14 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 38221.693470000006 2 +Q9VU34 LD45758p 1.78 2 3 2 2533.10053 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 3398218.4820600003 71 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 9351.813 3 +Q9VU38 Adenosine kinase 24.64 6 14 0 297832.02156 14 +Q9VU45 LD27581p 14.79 4 24 4 46774.42069 16 +Q9VU53 Capricious, isoform A 1.85 1 2 0 2662.8373 2 +Q9VU75 RH45712p 37.04 9 31 9 106112.5986 24 +Q9VU92 Uncharacterized protein 25.79 6 13 6 102988.78022 11 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 1781894.37283 81 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 44636.96426 12 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 642365.84646 32 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 5998.8955000000005 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 48700.242 6 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 118895.901 5 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 69866.12533000001 7 +Q9VUQ7 RE36966p 6.21 4 11 4 42521.571899999995 8 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 25471.1979 4 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 30108.90184 5 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 10141.07846 4 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 66970.00663999999 11 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 290683.829 5 +Q9VV13 GEO08383p1 10.71 1 1 1 41732.258 1 +Q9VV31 Uncharacterized protein 19.35 2 7 2 4455.9653 3 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 91879.79127 14 +Q9VV40 Golgin 104 2.06 2 2 2 8106.92997 2 +Q9VV42 Fat body protein 2 79.5 24 224 0 16090143.00853 179 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 10076208.96044 197 +Q9VV47 Fat body protein 2 32.05 7 29 5 934882.6079 24 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 366221.29118 49 +Q9VV75 AT02348p 82.73 30 207 30 10479156.41657 158 +Q9VV76 Syntaxin 8 8.62 2 3 2 14743.114000000001 2 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 82169.80515 8 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 96341.78116 12 +Q9VVB5 LD46723p 28.44 16 70 1 2550.23109 4 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 605505.1348700001 39 +Q9VVC8 LD23434p 8.08 5 10 5 48902.70023 8 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 180783.24767 24 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 3169524.25579 50 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 134987.55896999998 17 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 53541.3009 8 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 166112.77626 18 +Q9VVL5 FI11325p 21.52 7 10 7 74951.6439 9 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 8852749.84648 169 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 22529.523139999998 5 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 43359.0711 8 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 34122.6017 7 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 51286.6967 8 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 595611.75922 35 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1808606.94098 50 +Q9VVU2 GEO07453p1 29.53 6 31 5 373047.88696 29 +Q9VVV6 LD45843p 12.26 8 10 0 16035.222399999999 5 +Q9VVW7 Canopy b 12.22 3 8 3 19985.13382 7 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 108043.0893 4 +Q9VVY7 FI20154p1 12.22 16 28 0 108880.0775 25 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 56710.96399999999 5 +Q9VW00 GH28721p 6.1 2 3 2 3152.2592 2 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 2968.15416 2 +Q9VW17 RE58036p 29.67 5 15 0 19224.28409 11 +Q9VW19 Phenoloxidase-activating factor 2 3.43 1 2 1 1183.1433299999999 2 +Q9VW34 FI03450p 11.65 7 12 7 145442.44627000001 12 +Q9VW40 LD31235p 9.3 3 4 3 12380.437600000001 3 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 8690.1495 4 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 44899.270650000006 6 +Q9VW57 Grasp65 7.17 4 7 4 45399.769870000004 6 +Q9VW58 LD33138p 14.87 3 4 3 24889.907550000004 4 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 452123.22010000004 30 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 1554713.45089 47 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 5222259.07097 111 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 28342.76803 5 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 25047.4544 3 +Q9VWD0 GH23568p 19.35 6 13 6 164526.47844 12 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 2104943.71635 80 +Q9VWD5 LD35087p 12.92 5 7 5 22653.39281 5 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 402116.62726 26 +Q9VWF0 LP01149p 34.31 9 18 9 78076.27171 13 +Q9VWG1 LD37169p 76.5 13 51 1 168003.3899 4 +Q9VWJ3 LD05272p 12.79 2 3 2 7490.1037 2 +Q9VWL4 GH07340p 9.39 5 11 5 32200.7764 9 +Q9VWP2 RH57257p 77.69 12 26 12 313111.25761 21 +Q9VWQ3 LD35981p 6.12 2 2 0 6059.901400000001 2 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 111057.95376 10 +Q9VWS1 Houki 9.33 2 3 2 56701.8453 3 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 262202.53856 30 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 22931.1761 5 +Q9VWU0 FI18411p1 2.23 1 2 1 2430.0232 1 +Q9VWV6 Transferrin 63.81 41 264 41 7712300.84835 215 +Q9VWW2 GH13094p 17.43 9 19 9 40656.6179 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 59384.57845 11 +Q9VX08 LD10434p 4.16 2 3 2 17618.0193 3 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 9396.98256 5 +Q9VX26 Chascon, isoform A 2.65 4 4 0 8121.8501 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 3236536.35697 80 +Q9VX69 FI01450p 6.57 3 29 2 143377.9582 7 +Q9VXA3 LP21163p 16.85 11 23 11 127844.18283 19 +Q9VXA9 RE04047p 8.03 2 3 2 6649.3516 1 +Q9VXC1 MIP06432p1 36.87 6 12 3 138500.29869 11 +Q9VXC9 trypsin 49.0 9 23 9 528860.2410800001 23 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 31523.5216 6 +Q9VXF9 AT13091p 15.5 8 19 8 73723.8258 14 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 40064.0127 8 +Q9VXG9 GH25683p 5.43 1 1 1 1088.5907 1 +Q9VXH4 RE16337p 51.96 3 7 3 62467.311669999996 6 +Q9VXH7 FI17510p1 22.59 6 21 6 309895.74212999997 18 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 340082.82005 21 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 2083139.9094699998 38 +Q9VXJ7 GH03748p1 11.25 12 13 12 28028.29102 10 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 100057.71429 14 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 11956.200799999999 4 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 6909.719 2 +Q9VXM4 LD12946p 61.29 13 44 13 1308605.61324 41 +Q9VXN1 LD03728p 9.22 3 5 3 5625.3657 2 +Q9VXN3 LD07988p 17.42 8 15 8 70813.09886 13 +Q9VXP3 GH05406p 12.21 7 8 7 26327.48152 6 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 54443.9102 4 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 13081.09337 4 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 612599.55257 43 +Q9VXR9 FI03680p 10.91 4 5 4 19342.1057 5 +Q9VXV1 RH52220p 19.02 4 5 4 16112.931199999999 4 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 190304.73603 20 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 320611.52535999997 17 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 169123.73782 18 +Q9VY05 GH11762p 12.2 8 19 8 117959.39506000001 16 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 13915.155139999999 7 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 175570.38105 13 +Q9VY27 Nucleoside diphosphate kinase 18.54 3 3 3 772.9673 1 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 16940.60454 5 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 65106.0934 6 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 17067.4237 3 +Q9VY76 AMP deaminase 7.13 7 10 0 24373.82889 9 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 120827.76984 7 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 74792.7746 9 +Q9VY92 GEO07753p1 73.91 8 47 8 1149971.48215 40 +Q9VYA1 RE18811p 8.56 3 6 2 26896.6718 6 +Q9VYB2 LD19061p 2.83 2 2 2 2634.34603 2 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 1730.1594 1 +Q9VYF0 GM09012p 14.93 4 10 4 31692.58644 8 +Q9VYG8 CG15717-PA 15.08 4 6 4 34507.9986 4 +Q9VYJ1 FI12805p 7.33 5 6 5 12345.3225 5 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 29267.34233 12 +Q9VYM0 CG2555-PA 14.21 3 6 1 5471.6636 3 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 3054.19525 3 +Q9VYN1 protein kinase C 0.84 2 18 1 591056.8720600001 10 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 6795.829250000001 4 +Q9VYS2 GH09980p 7.06 6 7 6 28637.8901 6 +Q9VYT0 RE04130p 30.84 7 9 6 198072.19 9 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 15904.151759999999 6 +Q9VYT3 FI23714p1 3.57 5 7 5 11211.82505 5 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 117262.7348 5 +Q9VYU9 RH17287p 45.02 7 14 7 96628.25562 12 +Q9VYV4 Amun, isoform A 4.91 3 5 3 14960.9156 4 +Q9VYV6 GEO09033p1 23.68 3 3 3 25536.3654 3 +Q9VZ00 FI19420p1 19.19 18 25 0 73280.21931 11 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 541543.01725 19 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 240704.77648 32 +Q9VZ24 GEO11412p1 44.25 7 77 7 3446170.51516 68 +Q9VZ34 RH72958p 2.64 2 5 2 9383.69863 3 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 2642.2708 1 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 162446.25235 15 +Q9VZ59 LP02042p 6.12 1 4 0 24156.2909 4 +Q9VZ66 SD22308p 35.37 5 12 5 54779.17736 9 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 18429.85385 7 +Q9VZ71 RE01453p 9.04 2 3 2 4702.779 1 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 23606.3414 6 +Q9VZE4 RE70333p 17.02 8 19 8 88481.86627 15 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 136052.8494 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 7957.19586 3 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 326076.68696 14 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 3097003.19631 54 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 140444.28458 14 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 2470254.27151 44 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 11525.3525 7 +Q9VZI1 Transgelin 82.98 14 100 1 3488502.10177 75 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 37856.0785 6 +Q9VZJ2 GH27759p 16.59 7 14 7 62077.9581 11 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 19827.053050000002 6 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 397380.6376 24 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 17478.726880000002 7 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 133808.15294 17 +Q9VZV2 Chitinase 7 7.7 7 9 7 33433.88095 7 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 7145.6705999999995 3 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 17738.07274 5 +Q9VZX6 LD06441p 7.98 3 4 3 31667.5762 3 +Q9VZY0 LD45195p 17.62 5 10 5 85394.368 5 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 7891.6871599999995 4 +Q9VZZ5 GEO12033p1 28.67 4 10 4 151750.77723 8 +Q9VZZ6 CG16985 protein 32.21 4 10 4 131979.80868000002 4 +Q9W022 GEO01508p1 64.08 8 33 8 1005791.50683 28 +Q9W073 RH22148p 9.41 2 2 2 8327.79 1 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 678407.04424 16 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 350318.96413000004 16 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 39895.23743 8 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 33739.2546 5 +Q9W095 glycerol kinase 2.78 2 2 2 4668.3394 2 +Q9W0A8 FI01658p 18.77 5 15 5 154397.19329999998 15 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 364166.89276 28 +Q9W0C3 GH11843p 61.22 12 26 12 426460.22486 19 +Q9W0D3 GH15728p 1.78 3 4 3 5532.233 2 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 21985.918999999998 3 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 108401.6011 15 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 353957.28864 17 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 26239.85643 4 +Q9W0J9 GH07301p 41.93 10 20 9 256444.88603 16 +Q9W0K9 LD10220p 9.38 2 2 2 19175.086 1 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 15119.68536 4 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 116923.13492000001 16 +Q9W0M5 Protein DPCD 8.56 2 4 2 10006.5079 4 +Q9W0N6 LD27967p 16.52 5 9 5 24440.3318 7 +Q9W0P4 GEO05053p1 15.45 2 4 2 17571.332300000002 4 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 37952.13093 8 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 9964.893 1 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 52798.40924 14 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 15300.039799999999 2 +Q9W0U0 glycerol kinase 2.23 1 1 0 6321.1313 1 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 83799.64552 12 +Q9W0X1 GH15894p 1.58 1 1 1 13332.286 1 +Q9W0X2 GEO07322p1 12.4 2 2 2 15881.764 1 +Q9W0X3 LD24657p 8.75 3 9 1 36437.52316 7 +Q9W0Z5 LP09747p 10.07 6 23 6 47033.52385 16 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 2821196.78314 44 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 173593.4988 6 +Q9W136 Uncharacterized protein 39.13 6 15 6 181198.71323 11 +Q9W140 Regulatory protein zeste 6.4 3 5 3 2152.7866999999997 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 5075.81399 4 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 1624.5847 1 +Q9W158 LD36772p 7.49 3 11 3 57505.48064 9 +Q9W199 GEO07594p1 14.84 3 3 3 9451.3305 2 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 558521.2212 27 +Q9W1C8 LD24355p 16.3 6 14 6 18976.198630000003 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 44152.62622 6 +Q9W1F2 FI07217p 5.93 2 4 2 18896.0105 2 +Q9W1F7 IP15825p 25.14 10 36 10 659322.40018 32 +Q9W1F8 GEO08248p1 18.05 3 10 3 60474.83254 7 +Q9W1G7 LD21576p 24.05 7 13 7 200879.5964 8 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 49977.74214 7 +Q9W1H6 GH04238p 8.46 2 5 2 182125.395 3 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 564504.62701 43 +Q9W1I8 LD03592p 30.28 8 21 8 77571.34251 15 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 27539.84185 7 +Q9W1L8 GH11818p 5.92 2 3 2 12165.677290000001 3 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 4351.89503 2 +Q9W1N3 Levy, isoform A 50.46 5 24 5 825800.0329 21 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 5870.152 1 +Q9W1R0 RH49821p 6.07 3 5 3 14470.41002 5 +Q9W1R3 Golgin-245 14.24 21 27 21 85995.63025 23 +Q9W1V8 CG9893 protein 3.65 1 2 1 47831.149000000005 2 +Q9W1W4 RE45066p 22.13 8 19 8 117519.69864 16 +Q9W1X5 GH04942p 13.03 18 41 3 277997.68249 32 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 1454564.07622 45 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 477575.3759 8 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 22537.13952 6 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 14113.60874 4 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 136852.67846999998 25 +Q9W257 RH13652p 6.99 2 7 2 207548.0301 6 +Q9W258 Babos, isoform A 27.55 6 28 6 350261.65434 23 +Q9W259 FI23916p1 14.71 5 10 5 109402.1984 6 +Q9W260 GH03113p 15.4 9 26 9 113844.65447000001 24 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 31227.895999999997 3 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 86893.1898 25 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 13291.941400000002 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 243649.30387 14 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 8471.3146 2 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 24385.0273 2 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 42338.68782 9 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 16614.207 1 +Q9W2L6 RH02475p 28.13 18 55 18 1019717.7805999999 46 +Q9W2M0 LD23155p 23.8 18 32 18 110954.87148 25 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 3416710.73281 59 +Q9W2M9 FI16623p1 6.47 1 3 1 2738.8369000000002 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 35958.5463 5 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 239593.74930000002 7 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 225466.1235 11 +Q9W2V2 FI20035p1 3.86 3 3 3 21892.941 2 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 8506705.55049 128 +Q9W2Y5 YLP motif-containing protein 1 1.06 2 3 1 905.95346 2 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 137378.56717 18 +Q9W306 GEO08256p1 14.05 2 4 2 43375.056 3 +Q9W308 GH05731p 27.17 4 9 4 88960.5041 7 +Q9W309 GEO08445p1 29.63 7 11 7 199183.91955 9 +Q9W314 GH14088p 9.57 4 9 4 30815.2137 7 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 41070.75528 11 +Q9W330 Phosphotransferase 24.4 11 31 3 922138.85256 29 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 154981.37649999998 5 +Q9W337 GH19985p 21.56 4 12 4 66106.5408 8 +Q9W350 C11.1, isoform A 2.12 3 3 3 3160.03274 3 +Q9W370 GEO12084p1 44.26 4 19 4 425946.62669999996 17 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 35996.140900000006 6 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 16847.59891 8 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 615268.54057 38 +Q9W396 FI06908p 12.08 3 5 3 20607.4543 3 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 34586.4356 6 +Q9W3C3 LD10016p 17.41 8 12 8 34903.15586 9 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 16701.998630000002 4 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 46421.6586 8 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 31814.7624 6 +Q9W3H4 LD36273p 62.35 12 36 12 409081.00024 34 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 19587.194 2 +Q9W3J6 FI06457p 12.29 4 4 4 4870.7893 2 +Q9W3K6 LD35927p 5.12 4 6 4 40740.39156 6 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 576902.64758 23 +Q9W3L4 GH20802p 12.56 6 12 6 29453.610780000003 8 +Q9W3M7 RNA helicase 9.1 8 19 8 48725.957800000004 10 +Q9W3M8 LD34211p 32.16 7 17 7 226189.2059 12 +Q9W3N1 RH59310p 7.17 2 3 2 5728.3249 3 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 68835.9157 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 464287.45483 29 +Q9W3Q0 FI07418p 18.35 4 11 3 9974.027259999999 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 57354.2628 5 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 32293.2682 9 +Q9W3T9 GM01152p 50.42 10 21 10 198043.72355 16 +Q9W3U9 CG14434-PA 36.9 6 15 0 47781.79853 12 +Q9W3V2 FI19713p1 4.82 4 5 4 23702.794349999996 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 4718.249 1 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 44903.284640000005 6 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 1256191.18822 51 +Q9W3X8 RH42690p 13.47 5 10 5 9358.43845 5 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 104611.4056 10 +Q9W3Z4 GH18625p 2.43 1 3 1 4523.9883 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 2068995.84937 48 +Q9W403 LD24968p 11.05 6 14 6 20751.026429999998 11 +Q9W404 GH10714p 10.34 5 10 4 18342.9728 6 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 12080.8603 3 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 535747.3182 34 +Q9W425 Rabconnectin-3A 0.7 3 3 3 6305.3822 3 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 1482689.02084 63 +Q9W461 LD23868p 10.93 5 10 5 38397.71194 7 +Q9W482 Lin-52, isoform A 19.11 3 3 3 12036.728299999999 3 +Q9W483 GH18971p 15.83 5 8 5 49831.4617 6 +Q9W486 LD13361p 5.65 3 4 1 9804.415570000001 4 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 90296.84 10 +Q9W4A0 GH11193p 24.87 5 10 5 56090.0295 9 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 16503.872730000003 4 +Q9W4C2 lysozyme 18.42 4 5 4 56745.6059 5 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 56465.75176 10 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 24571.39777 4 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 398822.60148 18 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 5792.09544 3 +Q9W4N8 LD30122p 72.86 14 57 1 1901173.30506 45 +Q9W4U2 RH09070p 31.33 6 19 6 73725.54963 14 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 13848.6239 4 +Q9W4W5 RE47284p 13.77 5 10 5 115267.42865 10 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 96928.28094 25 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 61262.902519999996 11 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 11405.85386 5 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 8403.5298 5 +Q9W503 RH61816p 23.76 8 17 8 100052.45799 14 +Q9W5B4 GH18858p 20.38 6 12 6 368308.0101 7 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 1973.59424 3 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 856.7885 1 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 20990.18678 8 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 29392.297400000003 7 +Q9W5W7 GH19483p 6.06 4 6 4 35854.7766 6 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 959496.7692 42 +Q9W5X0 LD21953p 23.88 5 25 0 29125.0544 3 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 79828.0192 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 60247.10774 11 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 2236892.57639 41 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 20026.7811 3 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 154722.03315 17 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 233925.10837 17 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 2326253.66878 75 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 288104.21984 44 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 100336.18663 24 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 4436467.43908 113 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 11604.89663 6 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 25236.60392 7 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 1968308.3627000002 56 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 60183.666800000006 5 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 356187.02128 37 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 4484535.70785 71 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 7465.25395 4 +R9PY51 Uncharacterized protein 34.95 5 42 5 3046241.8487 24 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 2879719.53222 109 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 108235.7678 10 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 51748.2404 5 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 10536.289 1 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 31961.3018 6 +X2JB48 ADP/ATP translocase 66.22 21 145 1 3265005.49695 112 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 77154.63786 24 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 21438.627569999997 6 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 7785661.6573 111 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 12889.9048 3 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 7165.9968499999995 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 3410.4842 2 +P10674 Fasciclin-1 43.71 29 142 1 2105.0544 1 +Q08605 Transcription activator GAGA 6.37 3 3 0 11765.786 2 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 6557.7837 2 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 4325.0529 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.72 3 3 3 927.47345 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 5697.052 1 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 4911.90663 3 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 2622.2998 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 10519.4093 3 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 24237.229 2 +Q9W568 Protein halfway 5.56 3 4 0 1357.17469 2 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 9.68 2 2 1 356.86203 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 9014.26984 2 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.08 3 5 0 963.9954 1 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 26668.63724 3 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 583.80817 1 +A0A0B4KFE3 Toutatis, isoform F 0.29 1 1 0 458.5353 1 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 4079.37664 3 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 77363.625 1 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 13090.851 1 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 19470.927200000002 3 +A1Z7M0 Space blanket 5.71 2 4 2 14650.3051 4 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 44273.31607 5 +B5RJS0 IP20241p 2.69 3 3 0 1568.4158 1 +E1JJM0 FI20063p1 14.83 10 14 0 87765.3496 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 3077.9046 3 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 10246.1208 4 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 12087.193 2 +Q0E8R1 FI07211p 29.47 10 55 0 7292.7883 2 +Q5U0V7 phosphoinositide 5-phosphatase 2.13 3 3 3 340.92868 1 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 77761.92846 18 +Q7JWH6 RE61424p 6.99 2 3 2 7683.755 1 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 1862.9545 1 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 53940.4118 5 +Q7K1W4 Epoxide hydrolase 4.06 2 2 2 470.69 1 +Q7KVW1 RE73736p 4.94 3 4 0 17151.444900000002 4 +Q7PLV6 FI02158p 1.7 2 2 2 2346.90177 2 +Q8I062 GH23305p 80.95 19 194 1 6221.1139 2 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 5367.844 2 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 2.93 1 1 0 571.3581 1 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 4505.2158500000005 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 7156.723620000001 3 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 7333.17056 2 +Q9VG79 Xaa-Pro dipeptidase 4.89 3 3 3 913.566 2 +Q9VKC1 IP16805p 2.72 1 1 1 10504.664 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 3372.4950400000002 3 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 6434.4797 3 +Q9VTE1 Immediate early response 3-interacting protein 1 16.25 1 1 1 463.98132 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 19593.1995 2 +Q9VTY1 LD40136p 5.69 2 3 2 358.7414 1 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 932.10956 1 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 1177.93318 2 +Q9W2N5 GH10162p 3.47 2 4 2 5907.05695 4 +Q9W362 La-related protein 7 1.51 1 2 1 15763.557 2 +Q9W525 LD08195p 3.8 2 4 1 7548.2601 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 14076.32389 4 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 3096.5076 1 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 7407.421 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 22622.907 2 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 973.7805 1 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 3546.6125 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 909.15454 1 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 2044.2698 1 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 50558.4361 6 +E1JJ83 Os-C, isoform B 7.19 1 4 0 2031.9350399999998 3 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 62900.74858 20 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 4970.84616 2 +O46231 FI18705p1 66.21 20 67 1 14996.149000000001 2 +Q6IDE2 GH07226p 2.0 1 1 1 9150.337 1 +Q7JVH0 Splicing factor YJU2 2.7 2 2 2 443.02783 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 35766.672699999996 2 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 2502.8337 2 +Q8IQ80 GH06117p 1.41 1 3 0 775.929 1 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 10362.8009 2 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 5896.92426 3 +Q9W5C1 RE02292p 1.13 1 1 1 2724.5334 1 +X2J8M7 Supervillin, isoform AD 4.69 15 20 0 557.2742 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 4670.0107 2 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 2589.2397 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 13922.922999999999 2 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 23435.928890000003 5 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 13620.906099999998 4 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 5289030.9217799995 122 +E1JH70 Kank, isoform E 1.18 1 1 0 774.50903 1 +M9NFP1 Jim, isoform E 1.94 2 2 0 4771.1379 2 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 3015.318 1 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 6805.6377 1 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 1075.5221999999999 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 45732.93316 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 2496.4683 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 43606.134999999995 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 183504.88 2 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 7081.8508 3 +Q9VWE8 Actin-related protein 10, isoform A 2.65 1 1 1 370.90854 1 +Q9VZF0 LD44732p 3.61 1 1 1 1843.5447 1 +Q9W249 IP21806p 4.27 2 3 2 3165.041 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 8185.66186 5 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 24388.2427 2 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 990.7279 1 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 2411.4722 1 +A0A6F7R657 Widerborst, isoform H 13.26 9 30 1 650.8682 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 87394.3883 3 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 10999.52 1 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 3686.7122 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 3794.875 1 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 1877.6699 1 +Q8IPL4 Lethal (2) 05714, isoform B 3.32 1 1 0 681.1763 1 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 1663.4938 1 +Q9VV37 GEO13385p1 10.1 1 7 1 189491.31652 5 +Q9VVX6 BET1 homolog 6.84 1 1 1 9885.779 1 +Q9W152 RH33060p 5.63 1 2 1 873.93756 1 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 3736.055 1 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 3519.6326 2 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 3113.7334 1 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 2282.3284 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 1 0 650.0766 1 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 2889.95295 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 17735.222999999998 2 +Q9VB09 IP04131p 12.1 2 3 2 9898.9015 2 +Q9VHN8 LD37279p 1.54 1 1 1 13918.853 1 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 10892.6859 2 +Q9W1X6 GH06673p 2.78 1 1 1 639.65686 1 +Q9W5E7 LP07417p 11.4 1 1 1 1711.7805 1 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 2506.8452 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 74074.1195 7 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 3585.0438000000004 2 +A1ZAU6 FI05912p 3.24 2 2 1 857.84015 1 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 12188.280999999999 2 +Q7K3Z8 GH01208p 2.35 1 2 1 5154.036230000001 2 +Q9VAN8 FI15955p1 6.08 2 2 2 5528.4243 1 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 5972.3234 2 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 14638.2265 2 +Q9VV55 GH08429p 3.98 2 3 2 5748.90237 3 +Q9W542 LD07342p 1.12 1 1 1 375.64578 1 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 2092.664 1 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 23447.557 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 12.08 7 16 1 288.30496 1 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 8649.7544 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 12734.4383 3 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 25938.89129 5 +Q9VXD7 GH04692p 5.61 2 3 2 748.9941 1 +Q9W3S4 LD46272p 5.26 2 3 2 3123.2492899999997 3 +A8JQX3 Nocturnin 3.58 2 2 2 795.71356 1 +A8JNM1 Formin 3, isoform B 1.69 3 3 0 1227.94571 2 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 1173.2334700000001 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 8375.62995 5 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 13661.526 1 +O76857 BCL7-like 13.64 2 3 2 2811.5829 2 +Q7JY89 RE35124p 25.0 2 5 2 6211.44961 4 +Q8IML5 V-type proton ATPase subunit a 8.28 8 17 0 861.0627 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 6476.2396 3 +A8JUP7 Serine protease Hayan 2.67 2 3 2 13762.0913 3 +P07664 Serendipity locus protein delta 4.16 2 3 2 17277.6279 3 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 5841.7993 2 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 1505.0952 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 26793.71143 7 +Q8IQU7 825-Oak 17.05 2 3 0 13652.9316 2 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 98542.76693 25 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 4425.68407 2 +Q9V3J8 Protein will die slowly 3.88 1 2 0 5906.151 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 745.14044 1 +Q7K0D3 CG12909 protein 6.76 2 3 2 9678.74493 3 +Q9VSK1 GH09510p 1.06 1 1 1 6153.936 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 20341.785 1 +Q9V6Q2 Histone H3-like centromeric protein cid 8.89 2 3 2 863.9736 1 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 7576.409900000001 2 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 4127.8384 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 63827.49577 15 +Q29R09 LD28546p 3.02 1 1 1 554.524 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 5039.3369 2 +Q8SXC0 GH10306p 2.86 1 2 1 6475.0156 2 +Q9VQT5 FI01556p 13.92 1 4 1 3062.20145 2 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 7411.48626 3 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 55533.425 3 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 23169.418 1 +P45884 Attacin-A 5.36 1 1 0 6454.7217 1 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 2138.42 1 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 10519.8864 3 +Q9VV27 MIP11526p 7.63 1 1 1 13437.106 1 +O76324 Discs overgrown protein kinase 7.95 2 3 0 4842.2255000000005 2 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 5033.739 1 +O18680 5-aminolevulinate synthase 3.34 2 2 2 1855.5176 1 +Q29QE1 GH15984p 0.57 1 2 0 6082.677299999999 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 2244.1995 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 4776.9974 2 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 1961.3544 1 +Q9VEQ0 Xylulose kinase 1.99 1 2 1 381.9648 1 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 166929.3157 2 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 15893.511999999999 2 +A0A0B4KER2 Starry night, isoform F 0.38 1 1 0 297.03586 1 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 7647.2458 3 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 15954.6459 2 +E1JGY7 Hulk, isoform G 10.66 12 17 1 603.38873 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 11638.702000000001 2 +Q9VF46 GH25158p 7.34 2 7 2 42572.53377 7 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 17525.670000000002 2 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 11042.0072 2 +Q9W4I1 Uncharacterized protein 1.68 1 2 1 327.18008 1 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 3844.0458 2 +A8JNU1 adenylate cyclase 1.02 1 3 0 3625.9628000000002 2 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 1750.2122 1 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 11482.513799999999 2 +Q7JW46 RE25483p 9.0 1 1 0 18214.572 1 +Q7K010 Tetraspanin 8.64 2 4 2 8452.35636 4 +Q9VUR4 FI11905p 19.75 6 14 1 3683.407 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 1846.7573 1 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 2325.8491999999997 2 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 3539.39152 2 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 11605.998599999999 3 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 2918.8885 2 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 3222.7634 1 +A8JNV2 Uncharacterized protein 10.71 1 3 1 7632.9282 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 922.5834 1 +Q9VRX7 LD29573p 1.32 1 1 1 989.8 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 14071.203399999999 2 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 5695.385899999999 2 +O46099 EG:8D8.2 protein 0.63 1 1 1 2011.3647 1 +Q7JZZ3 RE03883p 6.99 2 3 2 46960.87759999999 3 +Q8SWU4 RE25571p 17.08 5 12 1 17383.799 1 +Q8SWX4 Aminopeptidase 2.39 2 2 2 711.86206 1 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 27388.001000000004 2 +O16043 Anon1A4 9.84 2 3 2 6092.8949 3 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 4047.7607 1 +Q8SXW3 GV1, isoform B 13.33 2 5 0 26908.252399999998 4 +Q8IRN0 FI06485p 3.21 1 2 1 8136.9743 2 +Q9VHS6 Copper transport protein 6.32 2 3 2 1534.10012 3 +D8FT19 MIP22288p 4.05 2 3 0 9787.583999999999 3 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 6396.7988000000005 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 3711.604 1 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 3.23 1 2 1 964.1478 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 3466.7378 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 433.6133 1 +Q9VT15 GH14734p 8.33 2 4 2 5055.4539 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 421.52783 1 +A1A750 GEO11067p1 6.93 1 1 1 9813.453 1 +Q9VF83 LD33178p 4.33 2 4 2 10304.221249999999 4 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 42880.9198 3 +Q9W590 Large subunit GTPase 1 homolog 1.49 1 1 0 2084.6257 1 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 3647.85603 2 +Q9VWA7 Golden goal 0.79 1 3 1 18935.34 1 +M9PCK0 Decima, isoform D 9.87 2 3 0 10112.5589 3 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 27213.2784 2 +Q9VPA9 LD24894p 1.45 1 2 1 5253.4108 2 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 8369.614160000001 2 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 950.34094 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 12275.075700000001 2 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 10027.929339999999 3 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 2805.567 2 +Q7KV26 Kinase 1.45 1 1 0 2410.1042 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 5803.9834 1 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 22036.627 1 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 1708.5135 1 +Q7K4Y8 GH22690p 3.14 2 2 2 662.62714 1 +Q9VCQ7 LD40758p 2.61 2 3 2 3340.5843 2 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 2899.6455 1 +Q9VDL4 LP04613p 2.72 1 3 1 7782.3796 3 +Q9VS55 CTCF 2.2 2 3 2 2217.7649 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 7731.6399 4 +Q7K4X4 GH24095p 2.0 1 1 1 533.75397 1 +Q9VJ06 LD05576p 4.55 1 1 1 757.153 1 +Q9VGE8 Tachykinins 2.42 1 2 0 10573.841 1 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 691.8078 1 +Q29QQ9 Ribosomal RNA-processing protein 42 3.38 1 1 1 797.15186 1 +Q9W4K1 AP-3 complex subunit beta 0.86 1 2 1 1333.1055299999998 2 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 13800.140500000001 2 +Q7YU81 Protein charlatan 0.66 1 2 0 4589.846 1 +Q9VHV3 FI02011p 1.5 1 1 1 4451.563 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 1822.3429 1 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 2671.77387 3 +Q7K8Y3 IP16419p 17.86 7 17 0 35036.29127 12 +Q8STG9 DSec61alpha 4.2 2 3 2 2378.2281000000003 2 +Q8IGV3 RE23632p 6.34 2 2 2 657.41048 2 +P22812 Protein Tube 3.9 2 2 2 3600.7925 2 +Q9VJ45 UDP-glucuronosyltransferase 3.48 2 2 2 608.7496 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 1898.4851 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 13416.095 1 +Q9VZX8 AT02196p 2.89 1 1 1 652.0292 1 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 6713.446599999999 2 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 6840.6865 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 14752.357 2 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 5927.3833 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 2770.6945 2 +Q9W3F7 Mitoguardin 4.19 2 3 2 1186.50535 2 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 3245.703 1 +Q9W4F9 IP01388p 3.65 2 3 0 2787.8955 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 3050.872 1 +Q7KMJ6 RNA-binding protein spenito 1.13 1 1 1 424.3428 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 2282.0837 1 +F0JAQ9 MIP27169p 5.85 2 3 0 2332.6536 2 +P18289 Transcription factor Jra 3.11 1 1 0 7413.3105 1 +Q9VMX1 KIF-binding protein 2.83 2 2 2 10422.95 1 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 7129.5167 2 +O18405 Surfeit locus protein 4 homolog 7.04 2 2 2 549.2401 1 +Q9VR55 LD29159p 8.71 1 3 1 4771.91604 2 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 715.3984 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 2993.2383 1 +Q9BLX1 PDGF- and VEGF-related factor 1, isoform B 7.64 2 2 0 392.26633 1 +P54194 General odorant-binding protein 84a 4.57 1 1 1 2137.6648 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 704.0388 1 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 8603.926300000001 5 +Q7KVT8 Orion, isoform B 3.1 2 2 0 2061.4758 1 +Q9VV26 GEO12049p1 6.84 1 4 1 46149.7112 4 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 752.81116 1 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 951.74884 1 +A1Z971 Uncharacterized protein, isoform A 1.0 1 1 1 2290.4456 1 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 29005.3103 4 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 4766.773 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 2184.90937 2 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 2201.20138 3 +Q9VH09 Glycine cleavage system P protein 0.91 1 2 1 378.7041 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 6153.095 1 +A1ZAG3 Protein G12 8.33 1 2 1 3314.658 2 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 9949.62 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 7480.6934 1 +Q7K1R6 LD46221p 7.98 2 3 2 1634.8212 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 33293.8134 5 +Q6IJE8 HDC15077 17.04 2 5 2 33037.9138 4 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 3 0 690.5255 1 +Q9VVI0 SD09427p 1.81 1 1 1 4740.342 1 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 9754.49665 2 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 14491.6046 2 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 4758.1685 1 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 710.37225 1 +Q9W494 Crossveinless 8.17 2 4 2 15653.885 2 +Q7KN04 Spondin-1 0.92 1 1 1 475.9984 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 3313.3108 1 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 7718.32365 3 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 28504.5798 5 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 65.12 25 150 0 440.46677 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 4062.9256 2 +Q95NH6 Attacin-C 6.64 2 2 2 5902.5103 1 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 26921.639 1 +Q8MRQ1 GH06222p 1.49 1 1 0 1829.8224 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 715.2699 1 +Q9VPR6 Kinase 2.59 1 1 1 848.3165 1 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 1774.9012 1 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 4815.9592 2 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 12820.5318 3 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 1509.7727 2 +Q9W547 Large ribosomal subunit protein uL16m 3.29 1 1 1 338.19968 1 +E1JJS1 glutathione transferase 2.61 1 1 0 683.79553 1 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 2932.53645 2 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 3.9 1 1 1 443.22427 1 +Q9VAM2 Aminopeptidase 2.71 2 2 2 827.0114 1 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 297.3569 1 +Q9VC27 Nicastrin 1.15 1 1 0 7245.7515 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 839.16595 1 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 7046.132 1 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 5765.88815 3 +E1JIS4 Uncharacterized protein 13.33 2 2 2 1864.24192 2 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 13721.5625 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 2090.08172 2 +A1ZAI5 Putative fatty acyl-CoA reductase CG5065 4.16 2 2 0 502.42883 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 6410.036 2 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 746.14276 1 +Q7K490 SD03973p 4.07 2 2 2 5378.8433 1 +Q7KE33 Odorant binding protein c 9.4 1 1 1 552.5752 1 +A0A0B4LG67 Uncharacterized protein, isoform E 4.2 2 3 0 935.2753 1 +Q9VVT5 Dysbindin protein homolog 2.78 1 1 0 385.414 1 +O76876 Protein sex-lethal 3.71 2 3 0 12347.602200000001 3 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 78121.24 1 +M9PGK1 Glycosyltransferase family 92 protein 3.52 2 2 0 501.6743 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 3962.2450500000004 2 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 13062.599 1 +Q02936 Protein hedgehog 2.34 1 1 1 3912.825 1 +Q6NN09 ATPase protein 9 5.07 1 11 1 342493.6723 10 +O76874 SD17974p 1.93 2 3 2 799.3055 1 +Q9VEB2 LD28404p 8.58 2 2 2 22279.291 1 +A0A9F2H0X3 Sidestep II, isoform C 0.75 1 1 0 486.31274 1 +Q9VGL2 GM08392p 2.65 1 1 1 4769.068 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.2 1 1 1 428.84744 1 +Q9VB59 Filamin-A 8.86 2 2 2 450.0705 1 +P41964 Drosomycin 31.43 2 2 0 13752.2 1 +Q9VAX9 MIP05919p 7.94 2 2 2 17319.787 1 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 816.04192 2 +Q9VL21 LD11652p 4.15 1 1 1 425.41003 1 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 418.70502 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 1876.3044 1 +Q58CJ5 GH01093p 2.34 2 2 0 14492.05 1 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 40605.077000000005 3 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 6950.5064999999995 3 +Q9VK20 LD18447p 4.59 2 3 2 4553.9926000000005 2 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 24389.1816 2 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 3227.5725 1 +Q9VX38 CG8326-PA 6.33 2 2 2 18900.5238 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 2009.2689 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 2 1 380.74094 1 +Q0E985 RH74701p 13.33 1 1 1 5186.361 1 +Q9VCC2 RE50040p 4.86 2 2 2 12278.598 2 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 605.0254 1 +Q9VI83 G patch domain-containing protein 11 4.89 1 2 1 652.74725 1 +P04657 Cytochrome c-1 17.14 2 11 0 13922.772 2 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 1775.6708 1 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 6943.745199999999 3 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 11590.122 2 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 1752.0923 1 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 4066.6072000000004 2 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 2792.9497 1 +Q4U2G8 FXNA-like protease 1.8 2 3 0 607.91846 1 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 3865.8587 2 +Q9VGZ2 FI06805p 3.86 1 2 1 11932.5764 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 4218.8935 2 +E1JHX0 MIP29328p 3.76 1 1 1 4021.8152 1 +Q9V451 Mst85C, isoform A 4.96 1 2 1 3572.4706 2 +Q9VUX2 E3 ubiquitin-protein ligase mind-bomb 0.98 1 1 1 423.9782 1 +D6W4V3 MIP19557p 4.74 1 2 0 2468.41306 2 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 2382.267 1 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 5077.932000000001 2 +Q9V9R3 adenylate cyclase 0.6 1 1 1 3383.202 1 +Q9VX35 LD36501p 5.06 2 2 0 4673.1268 2 +P39205 Molybdenum cofactor synthesis protein cinnamon 1.33 1 1 1 462.08313 1 +Q9VUE5 LD17962p 1.45 2 3 1 8241.45756 3 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 570.3122 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 12025.821100000001 3 +Q7KJ73 Tetraspanin 3.95 1 1 1 958.77295 1 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 16388.73593 2 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 2845.9639 1 +Q8IRK0 GH04558p 1.52 1 1 1 17891.102 1 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 3789.4417 1 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 3816.996 1 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 564.38275 1 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 13388.989 1 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 15697.521999999999 2 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 508.3092 1 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 3416.7659 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 1650.1558 1 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 1976.7487 1 +Q9W1H3 FI21285p1 3.25 1 1 1 1954.4114 1 +Q9VV21 GEO07736p1 16.26 1 1 1 40090.996 1 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 3166.7212 1 +Q6II41 HDC19846 30.3 1 1 1 3690.0537 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 922.19696 1 +Q9W2F6 RE36793p 7.09 1 1 1 7198.5186 1 +Q9VPW8 Protein pinocchio 4.42 1 1 1 356.8813 1 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 2595.38884 2 +Q9VDM7 Trimethyllysine dioxygenase, mitochondrial 2.2 1 1 1 1804.4797 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 349.87878 1 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 62123.9371 10 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 9884.412 1 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 1704.02873 3 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 10569.8479 2 +A8DYV9 GEO02589p1 10.53 1 2 1 9810.459 2 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 749.5563 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 15917.01 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 4600.6668 2 +Q7K1H9 GH07575p 3.69 1 3 1 19639.052300000003 3 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 11361.2262 2 +Q7JQN4 RNA helicase 1.66 1 1 1 789.97455 1 +Q9W0U6 Sulfatase-modifying factor enzyme-like domain-containing protein 4.46 1 1 1 459.55902 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 1844.8698 1 +B7Z0J4 COX assembly mitochondrial protein 13.75 1 1 1 455.69864 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 2 1 589.33124 1 +Q9VEA6 Protein AAR2 homolog 3.17 1 1 1 592.45886 1 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 9526.66656 2 +Q9VGJ7 FI23918p1 1.01 1 1 1 520.05414 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 6167.55454 3 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 409.917 1 +Q24306 Death-associated inhibitor of apoptosis 1 3.2 1 2 0 555.2045 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 17614.717 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 83089.163 2 +Q9VMM3 RE17389p 2.61 1 1 1 605.3606 1 +Q9W551 GEO02601p1 7.55 1 1 1 2698.3704 1 +A1A753 IP17594p 10.11 1 1 1 5478.901 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 4140.725 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 12490.9082 2 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 3016.3203 1 +Q9W0E2 Protein phosphatase 3.74 1 2 1 788.96848 2 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 901.298 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 12347.9378 3 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 1965.9043 1 +Q9BMG9 Beaten path IIa 3.94 2 4 1 9651.2397 2 +Q95RU0 Protein cueball 1.55 1 1 1 2873.0623 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 1761.0693 1 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 89813.00904 2 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 2392.2817 1 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 2819.1448 1 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 1530.86125 2 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 99943.0484 2 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 1810.9138 1 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 5822.9048999999995 2 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 2507.6875 1 +Q9VZR5 RE46159p 4.02 1 1 1 2733.505 1 +Q9VE49 LP06937p 1.3 1 1 1 1903.7451 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 894.8368 1 +Q9VQU0 BPTI/Kunitz inhibitor domain-containing protein 8.53 1 1 1 665.91 1 +Q8T092 LD21421p 2.45 1 2 1 479.53006 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 694.1267 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 3937.7913 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 1 637.5574 1 +Q7K4G8 LD40944p 1.7 1 1 1 2340.407 1 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 4045.0967 1 +Q9VBA5 GM18993p 2.15 1 1 1 2229.3733 1 +Q9VKE7 GH09228p1 10.39 1 2 1 492.09583 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 316.06876 1 +Q7KA66 Serpin 43Aa 2.56 1 2 1 5753.7551 2 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 3211.7450000000003 2 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 5572.8594 1 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 816.6814 1 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 2103.38 1 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 14056.868 1 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 2155.936 1 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 2273.5631 2 +Q9VJM4 Beaten path Ic 2.25 1 1 1 3246.824 1 +Q6NMT8 AT01712p 1.8 1 1 1 1844.7731 1 +Q9VX17 LD36024p 3.1 1 1 1 729.50836 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 2272.8066 1 +A1ZB29 Thymidylate kinase 5.21 1 1 1 932.248 1 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 6772.157 1 +P36192 Defensin 8.7 1 3 1 24525.682999999997 3 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 929.0186 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 5225.492 2 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 3038.4266 2 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 129210.78 2 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 184245.322 3 +Q5BIL9 SD21168p 1.63 1 2 0 10853.0998 2 +A1Z6H0 Kune-kune 2.65 1 4 1 20890.5978 3 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 3104.4035000000003 2 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 8465.922700000001 2 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 1761.2349 1 +Q9VG84 DNA ligase 1.12 1 1 1 409.81906 1 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 3674.4014 1 +Q9VHJ4 GH04846p 2.25 1 1 1 3454.2837 1 +Q9W226 GEO07239p1 5.88 1 2 1 4238.606 2 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 903.9933 1 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 1635.5817 1 +Q9I7U1 LD36721p 5.29 1 1 0 10237.867 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 2430.472 1 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 151311.402 2 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 20621.6181 2 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 691.2171 1 +Q9V412 STING ER exit protein 4.45 1 1 0 527.90393 1 +A0A0B4LIM4 Uncharacterized protein, isoform B 1.03 1 1 0 300.46423 1 +Q8MRQ2 GH05923p 2.74 1 1 0 6305.3496 1 +Q8SY53 GH11935p 2.73 1 2 1 3195.7744000000002 2 +Q7JVN6 GH17672p 2.24 1 2 1 1648.26837 2 +A1Z9W2 RH47216p 3.75 1 1 1 440.44122 1 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 644.98157 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 5093.587 1 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 553.8327 1 +Q9VGW5 GEO08194p1 5.8 1 1 1 2333.4414 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 860.8442 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 626.79877 1 +Q9VJV8 DNA polymerase subunit gamma-2, mitochondrial 2.77 1 1 1 563.4248 1 +A0A0B4LHK8 Uncharacterized protein, isoform D 2.93 1 2 0 600.4493 1 +O77237 Protein pellino 1.65 1 1 0 3740.614 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 14811.2878 2 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 643.01855 1 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 10441.970000000001 2 +Q9V9X7 polyribonucleotide nucleotidyltransferase 1.3 1 1 1 730.5377 1 +Q9VGG0 LD47774p 1.67 1 1 1 2118.1758 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 1512.8914 1 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 21582.97 1 +Q8SWR2 Bicaudal D-related protein homolog 1.94 1 1 1 688.5831 1 +Q9W1H1 GH17155p 3.28 1 1 1 1879.673 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 2 0 477.05872 1 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 8362.239 1 +Q9VKX8 Defective proboscis extension response 19, isoform A 2.86 1 1 1 418.59625 1 +Q4V3U8 IP10038p 2.76 1 1 1 909.7116 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 17070.181 2 +Q9VB21 Uncharacterized protein 0.6 1 1 1 585.9326 1 +Q4V6L7 IP04672p 6.72 1 1 1 592.52057 1 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 954.63165 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 876.03033 1 +A1A6X2 IP16893p 12.07 1 1 1 1822.8397 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 4695.5249 2 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 560.9761 1 +Q9VJ16 GH26014p 2.96 1 1 1 694.8939 1 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 9300.631 1 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 5454.1 2 +Q9VSF4 Probable deoxyhypusine synthase 2.72 1 1 1 728.50757 1 +Q9VX71 Uncharacterized protein 5.2 1 2 1 8939.3602 2 +Q6IKC0 HDC12925 14.29 1 1 1 542.74817 1 +Q8IQ51 trypsin 3.05 1 1 1 3339.559 1 +Q9VHS0 FI07206p 2.49 1 1 1 719.62317 1 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 7501.336 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 1711.3505 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 2 1 535.1877 1 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 3021.7997 2 +Q9VEM0 RE41712p 5.62 1 1 1 759.5665 1 +Q9W081 AT01075p 2.34 1 1 1 650.26764 1 +Q9VJ08 LD29741p 1.48 1 1 1 572.30615 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 395.40067 1 +Q8SXX2 Angiotensin-converting enzyme 1.07 1 1 1 652.591 1 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 864.188 1 +Q9W328 Protein LST8 homolog 2.56 1 2 1 5357.9097 2 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 1629.294 1 +Q6NR46 Serine palmitoyltransferase 1 1.5 1 1 1 754.7959 1 +Q9VD92 Protein archease-like 5.77 1 1 1 1838.3777 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 1495.9706 2 +A0A6H2EJZ8 Headbutt, isoform E 1.1 1 1 0 415.7802 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 34238.3493 3 +Q9VDB8 RH37844p 8.42 1 1 1 5088.9087 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 30975.476 2 +M9PIC9 Spc105-related, isoform B 0.41 1 1 0 683.96136 1 +Q8SZB7 RE07960p 3.12 1 2 1 20851.496 2 +E1JH94 GEO02631p1 7.03 1 1 1 1795.0812 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 1913.9778 1 +Q7JWF7 RH26557p 5.11 1 1 1 8572.128 1 +Q9W2L2 LD27118p 0.67 1 1 1 1629.4016 1 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 42301.39 1 +Q9VFE6 RRP15-like protein 3.26 1 1 1 344.85904 1 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 703.4877 1 +Q9VJU2 Nimrod C3 3.12 1 2 1 12268.502400000001 2 +Q9W3Q2 SD08447p 1.26 1 1 1 3146.4834 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 533.13525 1 +Q9VAQ3 GH18608p 2.19 1 2 1 2205.9424 1 +A1Z979 Salivary secreted peptide 6.25 1 2 0 6087.019 1 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 54700.209729999995 13 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 9940.389500000001 5 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 38184.62945 12 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 5811.4055 4 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 26751.6378 4 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M2_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M2_TMTb.txt new file mode 100644 index 0000000..e0a27e0 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M2_TMTb.txt @@ -0,0 +1,3831 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 128N, Sample, n/a, SF1g_M2 Abundances Count: F5: 128N, Sample, n/a, SF1g_M2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 52961.5805 5 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 32267.5122 6 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 2963479.62503 59 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 6857.812599999999 2 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 127830.7957 9 +A0A1F4 Protein eyes shut 12.13 24 45 0 646765.5353 38 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 5564.2773 1 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 211743.4964 14 +A1Z713 Intermembrane lipid transfer protein Vps13 0.39 1 1 1 631.1741 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 9524.7036 2 +A1Z877 Nidogen 18.37 23 35 23 630915.37057 33 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 28105.255599999997 3 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 37383.904 2 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 412027.56797 47 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 187219.99 8 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 126696.379 6 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 93681.1731 8 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 141963.1838 20 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 37376.0606 3 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 10905.3044 2 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 68849.4554 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 4183.531 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 4974.7285 1 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 9572.872 1 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 287045.71390000003 9 +A8DYP0 Protein Obscurin 1.38 6 8 6 47294.360799999995 6 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 303463.4995 12 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 1756681.98039 96 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 219157.8148 16 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 800232.63315 38 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 963454.9262 23 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 72509.462 3 +C0HL66 Histone H3.3A 52.21 6 31 0 23671.012000000002 2 +C0HLZ9 Baramicin A1 12.45 3 4 0 77628.71489999999 4 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 442100.8801 25 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 184160.096 10 +M9NDE3 Protein bark beetle 2.08 7 7 7 60577.935 7 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 4585213.6504 68 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 57970.5414 8 +O01367 Protein held out wings 10.37 3 4 0 28668.338799999998 3 +O01382 Caspase drICE 12.68 4 4 4 12617.249899999999 2 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 296236.9125 11 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 5867692.72681 93 +O02194 Presenilin homolog 5.73 3 3 0 12388.6267 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 228829.016 9 +O02649 Heat shock protein 60A 65.1 34 143 23 8655937.22519 130 +O15943 Neural-cadherin 14.01 44 66 2 1354882.3479 65 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 98837.8313 9 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 25350.0128 4 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 39297.4455 5 +O18333 Ras-related protein Rab-2 24.41 6 11 6 267037.179 11 +O18334 Ras-related protein Rab6 33.65 8 12 0 100704.54226 6 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 685535.8053 16 +O18388 Importin subunit beta 2.26 2 2 0 11238.932700000001 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 6885597.3337 115 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 780206.7803 26 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 332649.5231 12 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 8345.6155 2 +O44342 Protein windbeutel 28.79 7 9 0 111588.45509999999 9 +O44386 Integrin alpha-PS3 6.1 8 8 8 124647.6923 8 +O46037 Vinculin 55.88 45 103 0 2539421.60757 93 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 34576.2595 4 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 208087.0795 10 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 80153.38399999999 4 +O46339 Homeobox protein homothorax 4.72 2 2 2 3110.6892 1 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 464098.446 11 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 19283.8018 3 +O61307 Teneurin-m 0.92 2 2 0 25880.914 1 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 178034.2989 10 +O61491 Flotillin-1 45.77 19 45 19 1500924.3922 45 +O61722 PRL-1 phosphatase 55.11 7 19 7 525445.2884 16 +O62619 Pyruvate kinase 57.6 24 73 24 3478149.43414 62 +O62621 Coatomer subunit beta' 2.84 3 3 3 14864.7344 3 +O76206 Putative riboflavin kinase 55.56 6 17 0 457653.49402 13 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 243242.63233 6 +O76742 Ras-related protein Rab7 36.71 7 10 7 275900.508 10 +O76878 RILP-like protein homolog 8.35 4 5 0 62285.1027 5 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 129487.68516 9 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 161222.7137 8 +O77051 Transcription factor E2F2 18.65 7 9 0 43450.2962 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 60342.021640000006 4 +O77277 Torsin-like protein 15.29 6 8 0 117712.48159999998 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 35255.8538 4 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 94402.36 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 170648.34464999998 14 +O96690 Protein PDF 23.53 1 1 1 2554.7595 1 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 3840607.73251 79 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 53526.1581 7 +O97125 Heat shock protein 68 35.28 20 66 13 458159.1247 21 +O97172 UPF0729 protein CG18508 21.21 3 5 0 42800.6412 4 +O97394 Protein sidekick 1.48 3 3 0 15397.4264 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 42144.674 3 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 1695518.3319 38 +P00334 Alcohol dehydrogenase 85.16 20 241 20 18795374.15379 216 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 2218364.4523 17 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 2856.42497 2 +P02255 Histone H1 14.45 3 3 0 40622.352 3 +P02283 Histone H2B 54.47 8 74 8 2072675.3049 69 +P02299 Histone H3 52.21 6 34 2 4830096.6822 29 +P02515 Heat shock protein 22 32.76 6 14 6 193879.12197 13 +P02516 Heat shock protein 23 70.97 15 72 0 5957944.35205 70 +P02517 Heat shock protein 26 58.17 9 19 0 2068633.8803 19 +P02518 Heat shock protein 27 52.11 10 28 0 804052.2719 24 +P02572 Actin-42A 63.83 25 618 2 68767500.92119999 531 +P02574 Actin, larval muscle 65.69 27 537 0 814393.4582999999 24 +P02828 Heat shock protein 83 59.27 42 143 0 6164174.4761 129 +P02843 Vitellogenin-1 73.35 27 218 0 1198234.24201 137 +P02844 Vitellogenin-2 67.65 24 169 0 1092586.40958 101 +P04197 Myb protein 2.74 2 2 0 8169.552000000001 2 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 485492.0575 8 +P04388 Ras-like protein 2 33.33 5 7 5 57717.1125 6 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 6818.032639999999 3 +P05205 Heterochromatin protein 1 32.52 7 16 7 132872.2518 15 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 1723923.1145 16 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 1471490.481 18 +P05552 Transcription factor Adf-1 12.21 3 3 0 57242.8843 3 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 131632.7498 8 +P05812 Heat shock protein 67B1 11.91 5 6 5 68332.1813 5 +P06002 Opsin Rh1 8.85 3 8 3 100898.27433 8 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 24946721.79116 166 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 24333.116 2 +P06607 Vitellogenin-3 79.05 31 233 0 2091604.60709 179 +P06742 Myosin light chain alkali 41.94 6 120 0 8531489.0645 100 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 3156.7732 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 4083647.017 26 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 9809638.26537 102 +P07665 Serendipity locus protein beta 1.97 1 1 0 8719.997 1 +P07668 Choline O-acetyltransferase 9.71 6 7 6 28961.222459999997 7 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 29411942.79312 289 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 28330.404499999997 3 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 177337.62527000002 12 +P08144 Alpha-amylase A 23.48 10 15 0 681165.905 14 +P08171 Esterase-6 20.22 12 20 0 615069.66998 19 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 84561.93673 4 +P08182 Casein kinase II subunit beta 32.77 7 18 2 627559.2844 16 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 2799998.9113 39 +P08645 Ras-related protein Rap1 40.22 6 12 0 155418.1341 11 +P08646 Ras-like protein 1 37.04 5 13 5 803848.369 12 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 13891727.5861 117 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 145659.9483 13 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 5750768.63756 69 +P08928 Lamin 66.88 49 174 48 6232750.95578 154 +P08985 Histone H2A.v 41.84 7 43 5 1065993.6261 23 +P09040 Drosulfakinins 17.73 3 4 3 161813.792 4 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 1640656.70932 47 +P09208 Insulin-like receptor 1.77 5 5 5 4312.024890000001 4 +P09491 Tropomyosin-2 64.44 27 221 1 226469.24599999998 4 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 101371.6475 7 +P10180 Homeobox protein cut 0.69 1 1 0 619.702 1 +P10379 Protein unzipped 27.05 12 27 0 972727.8864000001 24 +P10552 FMRFamide-related peptides 5.76 2 2 2 73858.746 2 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 764485.60933 62 +P10981 Actin-87E 68.62 28 611 0 11366861.8934 26 +P10987 Actin-5C 64.36 27 636 0 799852.8688 14 +P11046 Laminin subunit beta-1 22.87 37 67 37 1630647.342 63 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 894.22424 1 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 25208206.194480002 299 +P11584 Integrin beta-PS 19.98 17 28 0 465476.93096 26 +P12024 Chaoptin 27.6 35 84 0 2248450.27713 73 +P12080 Integrin alpha-PS2 13.11 18 23 18 682995.0197 22 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 1545761.531 35 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 105629.349 8 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 291377.8711 14 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 1314690.9609 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 105402.92434 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 88796.9736 6 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 993462.6874 37 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 2519895.53981 94 +P13395 Spectrin alpha chain 63.6 137 494 0 18016739.1619 452 +P13469 DNA-binding protein modulo 6.83 4 4 0 16389.2976 2 +P13496 Dynactin subunit 1 15.18 21 23 21 301961.27946 20 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 2947490.96453 121 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 141894.54066 15 +P13678 Protein kinase C 3.92 3 3 0 80552.246 3 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 11858.925 1 +P14199 Protein ref(2)P 22.37 11 19 11 273682.88714 16 +P14318 Muscle-specific protein 20 82.61 17 66 17 2228309.2716 62 +P14484 Pupal cuticle protein 27.17 5 19 5 598194.9109 18 +P14599 Amyloid-beta-like protein 1.92 2 2 0 14868.426 1 +P15007 Enolase 74.2 31 339 1 28487282.8834 292 +P15215 Laminin subunit gamma-1 39.35 55 99 0 1927244.27694 90 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 251590.7756 3 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 3429663.7944 61 +P15364 Protein amalgam 13.21 4 5 0 221534.64500000002 4 +P15372 Phosrestin-2 60.16 20 59 0 2002658.73567 52 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 85192.89940000001 8 +P16378 G protein alpha o subunit 26.55 10 39 7 898476.91546 38 +P16554 Protein numb 7.73 4 5 0 66706.42139999999 5 +P16568 Protein bicaudal D 18.8 15 17 0 199920.2492 17 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 197305.39179999998 9 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 6448.3296 1 +P16914 Protein elav 23.4 9 28 0 654232.2959 27 +P17210 Kinesin heavy chain 44.31 40 74 40 1869403.0315 70 +P17276 Protein henna 40.71 15 27 0 1131047.85254 26 +P17336 Catalase 34.78 14 49 14 1291759.8238 40 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 1376667.0795999998 24 +P17719 Dihydrofolate reductase 19.78 3 4 3 43060.0307 4 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 1896934.1898 33 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 6671.061 1 +P18431 Protein kinase shaggy 33.85 16 43 0 1776097.92234 38 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 7795671.10961 171 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 298511.2096 8 +P18824 Armadillo segment polarity protein 22.78 16 24 0 421462.30178 24 +P19107 Phosrestin-1 73.82 32 213 32 11242528.16444 198 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 665231.04375 20 +P19334 Transient receptor potential protein 2.51 4 4 3 33711.7277 3 +P19339 Protein sex-lethal 4.52 2 2 0 9249.3423 2 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 613403.4216 14 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 3102857.79924 71 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 44034.494 4 +P20153 Protein ultraspiracle 2.76 2 2 0 10987.111 2 +P20228 Glutamate decarboxylase 18.04 8 26 0 407662.15547 25 +P20232 Transcription elongation factor S-II 31.63 7 8 0 197965.6797 7 +P20240 Otefin 32.08 11 14 11 138210.4927 12 +P20241 Neuroglian 25.81 31 74 0 1920759.7009 70 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 69245.01759999999 4 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 8885.7139 2 +P20354 G protein alpha s subunit 39.74 13 26 1 2121.8142 1 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 3654.607 1 +P20432 Glutathione S-transferase D1 55.5 13 79 9 7138464.9935 64 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 4035359.3306 51 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 30989793.03145 163 +P21187 Polyadenylate-binding protein 38.01 18 35 18 659395.1239 34 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 5956911.3831 91 +P22465 Annexin B10 76.01 24 139 24 4906259.51401 119 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 966625.7936 32 +P22813 Heat shock factor protein 2.75 2 2 0 3402.9578 1 +P22815 Protein bride of sevenless 1.23 1 1 1 19745.484 1 +P22979 Heat shock protein 67B3 53.77 7 19 7 864713.56065 17 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 8458.301940000001 2 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 295759.54083 27 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 43637.7284 3 +P23625 G protein alpha q subunit 51.56 19 75 16 2694943.64333 64 +P23654 Neurotactin 12.41 10 13 0 128348.5184 13 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 286207.7111 12 +P23779 Cystatin-like protein 63.49 8 32 8 1717540.85726 28 +P24156 Prohibitin 1 68.48 17 53 0 1725850.43545 47 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 7344924.6515 94 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 38759.998 3 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 639288.2795000001 21 +P25171 Regulator of chromosome condensation 6.03 4 4 4 131500.336 4 +P25228 Ras-related protein Rab-3 33.64 7 18 0 266658.5965 12 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 29427.9317 6 +P25822 Maternal protein pumilio 2.15 3 5 0 37245.1589 5 +P25843 Profilin 88.89 7 28 0 1043775.3498 26 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 269025.662 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 153802.3617 6 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 390330.77475 19 +P26686 Serine-arginine protein 55 9.31 4 7 0 155816.704 7 +P27716 Innexin inx1 2.21 1 2 0 32175.188000000002 2 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 167562.97115 10 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 40470.2117 4 +P29052 Transcription initiation factor IIB 16.51 6 8 0 196427.7903 8 +P29310 14-3-3 protein zeta 67.74 17 278 0 19154872.38072 236 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 749845.4266 20 +P29413 Calreticulin 46.55 20 61 0 2856271.75305 55 +P29613 Triosephosphate isomerase 76.11 17 131 16 9069034.32406 122 +P29742 Clathrin heavy chain 7.39 13 15 0 82453.9575 13 +P29746 Protein bangles and beads 61.76 24 46 24 2241206.18714 45 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 2009717.12702 55 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 63878.0767 7 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 7951018.96362 151 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 8792669.64051 151 +P30432 Furin-like protease 2 0.66 1 1 0 3734.1633 1 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 2603956.4847 28 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 2432050.58567 80 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 1396155.7165100002 28 +P32234 Guanylate binding protein 128up 16.3 6 8 5 100344.06049999999 8 +P32392 Actin-related protein 3 10.53 4 7 4 215048.257 7 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 177510.81470000002 12 +P33438 Glutactin 14.13 17 42 0 388315.54776 35 +P34082 Fasciclin-2 17.18 15 23 0 216138.02294 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 773278.8641 20 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 545022.3853 17 +P35220 Catenin alpha 24.86 22 44 14 749371.97375 39 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 34521500.73245 355 +P35415 Paramyosin, long form 73.38 77 511 0 18034526.35082 432 +P35416 Paramyosin, short form 56.41 39 294 0 1571537.3852 39 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 7334.998799999999 2 +P35554 Flightin 49.45 8 18 0 1007299.779 17 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 84494.3014 6 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 1647450.2343 35 +P36188 Troponin I 47.58 17 65 0 4299237.75776 59 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 804917.066 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 12255.984 2 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 997145.88934 30 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 4538.496 1 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 3169240.2156 86 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 124320.9529 4 +P37236 Frequenin-1 68.98 11 45 0 454338.303 8 +P37276 Dynein heavy chain, cytoplasmic 0.24 1 1 0 634.13165 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 460610.7037 9 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 3307636.29858 77 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 1727479.5184 37 +P39736 Puff-specific protein Bx42 6.4 3 4 0 31937.41782 4 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 197186.6959 7 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 558153.26 8 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 102548.619 3 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 1058720.4315 26 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 26831.76446 6 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 637820.1594 17 +P40427 Homeobox protein extradenticle 2.93 1 1 0 1832.2373 1 +P40792 Ras-related protein Rac1 22.4 4 7 0 344285.474 7 +P40793 Cdc42 homolog 37.7 7 8 0 345693.4059 7 +P40796 La protein homolog 48.46 17 25 16 309193.9655 22 +P40797 Protein peanut 28.39 14 25 13 693791.8261000001 25 +P40945 ADP ribosylation factor 4 38.33 5 11 0 48142.68246 6 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 80411.8447 8 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 1187210.5651 35 +P41043 Glutathione S-transferase S1 76.71 15 62 0 5911959.2709 60 +P41044 Calbindin-32 77.74 26 146 0 5667895.00105 137 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 203646.6194 24 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 1185623.3089 16 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 442828.66385 16 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 1767671.10765 44 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 1436303.3377 43 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 1189092.8299 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 54092.758480000004 6 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 713586.45003 18 +P42207 Septin-1 10.8 4 11 3 61320.1525 3 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 2197173.47794 35 +P42325 Neurocalcin homolog 42.63 8 22 8 661347.456 19 +P42787 Carboxypeptidase D 8.68 10 14 0 183188.27776 12 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 122865.67360000001 6 +P45437 Coatomer subunit beta 4.67 3 4 3 60694.2926 4 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 5537090.63824 82 +P45888 Actin-related protein 2 15.79 5 7 5 84194.9784 7 +P45889 Actin-related protein 1 23.4 10 13 10 444713.9192 13 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 54968.352999999996 2 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 994199.1023 15 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 1749253.0760000001 32 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 246421.7996 10 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 916434.87817 44 +P46824 Kinesin light chain 37.4 23 45 0 1132212.65744 41 +P47947 Troponin C, isoform 1 24.68 4 24 0 1897969.5908 24 +P47948 Troponin C, isoform 2 47.1 6 9 0 24034.951 3 +P47949 Troponin C, isoform 3 63.23 9 25 0 1101728.1154800002 21 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 1536415.7277 20 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 998833.4553799999 22 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 830163.69135 24 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 2028808.8407 28 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 373117.92059999995 5 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 21824.2707 2 +P48554 Ras-related protein Rac2 26.56 5 10 0 72556.6582 5 +P48555 Ras-related protein Ral-a 49.75 8 21 1 741450.3115 20 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 74430.8659 4 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 4965031.9945 52 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 387765.8634 16 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 1867227.6629 33 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 2239121.94506 87 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 107571.3245 6 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 739427.2477 32 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 1576131.56845 40 +P48607 Protein spaetzle 3.99 1 1 0 5647.8057 1 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 295731.08999999997 10 +P48610 Arginine kinase 1 75.84 36 446 0 39354457.74965 405 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 1559484.20697 22 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 502107.20672 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 87554.74554999999 6 +P49028 Protein mago nashi 30.61 4 6 4 33692.7292 3 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 303675.414 8 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 887948.1339 9 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 9125.65 1 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 24462.4204 2 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 2959.234 1 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 33468.003 4 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 1399505.6368 28 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 180974.8866 10 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 9160.0676 2 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 454121.62320000003 22 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 102317.1039 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 440806.7817 20 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 118223.405 7 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 14429.155 1 +P53034 Replication factor C subunit 2 8.46 3 3 3 48308.903999999995 2 +P53501 Actin-57B 69.15 29 622 4 25253222.3659 70 +P53777 Muscle LIM protein 1 31.52 3 14 0 419622.4065 10 +P53997 Protein SET 15.24 4 9 4 172543.047 9 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 220068.8642 5 +P54191 General odorant-binding protein 69a 13.51 2 6 2 108502.851 5 +P54192 General odorant-binding protein 19d 69.33 10 107 10 19355841.48635 103 +P54193 General odorant-binding protein 83a 42.86 7 18 0 1550344.3664 16 +P54195 General odorant-binding protein 28a 40.56 4 13 4 641858.5088 12 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 15809.9798 3 +P54352 Ethanolamine kinase 6.76 3 3 2 21549.969699999998 3 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 345945.43679999997 17 +P54357 Myosin-2 essential light chain 89.12 10 40 1 2105376.9329 35 +P54359 Septin-2 17.66 7 10 1 216359.7764 10 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 20177.928 1 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 2351174.09445 73 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 36667.187 2 +P54399 Protein disulfide-isomerase 75.6 37 146 0 10739302.571560001 129 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 12871688.77338 135 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 250612.77694 11 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 313951.73342999996 17 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 979226.4251999999 14 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 3672982.9107 66 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 1551681.02451 30 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 1932918.0389999999 48 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 11522.2324 2 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 115657.669 4 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 854461.50105 18 +P61849 Dromyosuppressin 10.0 2 3 0 61771.424 3 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 9229962.87518 93 +P61855 Adipokinetic hormone 37.97 2 3 2 63921.267 3 +P61857 Tubulin beta-2 chain 44.39 15 202 2 1146215.8002 3 +P62152 Calmodulin 99.33 19 359 0 30943346.88998 316 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 1058211.49166 30 +P81829 Leucokinin 6.25 1 1 1 13699.378 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 5077536.72151 88 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 1823436.6769 34 +P82295 Prominin-like protein 3.75 3 3 0 1876.7881 1 +P82804 Partner of Y14 and mago 7.73 1 1 1 493.41394 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 513296.7024 14 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 161854.10012000002 12 +P83967 Actin, indirect flight muscle 68.62 27 587 2 65546.81139999999 4 +P84029 Cytochrome c-2 70.37 11 82 0 7094024.71 77 +P84040 Histone H4 59.22 9 102 0 6425504.92568 93 +P84051 Histone H2A 37.1 5 48 0 1703993.85117 23 +P84345 ATP synthase protein 8 18.87 1 5 1 169804.3596 5 +P91891 Protein Mo25 34.22 13 23 0 583676.3742 19 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 194496.78160000002 19 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 452226.54265 38 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 4459869.6912 91 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 1516132.1496 32 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 781879.53506 20 +P92029 DnaJ-like protein 60 4.15 1 1 0 4218.6504 1 +P92177 14-3-3 protein epsilon 72.14 22 257 20 13311730.49425 177 +P92204 Negative elongation factor E 10.0 3 4 3 63355.025 4 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 7259.397 1 +P98081 Protein disabled 5.35 9 11 0 28337.135299999998 7 +Q00174 Laminin subunit alpha 22.49 77 124 77 3201889.76194 116 +Q00963 Spectrin beta chain 23.88 58 119 2 6217.5688 3 +Q01603 Peroxidase 8.41 6 6 0 90377.3394 5 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 14607969.29318 222 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 65055.6807 4 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 4724.5364 2 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 607652.818 28 +Q02910 Calphotin 3.36 2 4 2 35999.50786 4 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 39138.0996 7 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 13063.0618 3 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 1258058.68851 21 +Q03427 Lamin-C 59.74 41 127 3 2464570.22053 101 +Q04047 Protein no-on-transient A 13.43 8 10 0 108072.9706 10 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 218872.43278 20 +Q04691 Fat-body protein 1 24.68 26 37 0 6177570.738 35 +Q05783 High mobility group protein D 21.43 2 3 0 55159.761 3 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 28495624.22126 506 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 2542.9714 1 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 5447244.4683 80 +Q06943 High mobility group protein Z 43.24 4 12 0 100765.28173 10 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 23221.27687 4 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 265635.5773 17 +Q07171 Gelsolin 25.81 18 39 0 957558.02418 35 +Q07327 Protein ROP 35.51 20 37 0 788100.80475 34 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 325294.7231 12 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 3960.594 1 +Q08473 RNA-binding protein squid 42.44 9 32 0 1135837.79731 28 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 57693.0567 5 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 49246.9292 3 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 215419.25470000002 13 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 25653.502 2 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 701784.155 12 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 24860.732 2 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 39288.3562 3 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 202078.63450000001 10 +Q11002 Calpain-A 7.73 7 8 0 67749.3804 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 2664569.9814 27 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 3826349.77247 74 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 3776560.44655 83 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 4325124.90335 93 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 2008843.93356 38 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 4243852.771699999 77 +Q24050 Elongator complex protein 5 29.39 7 10 6 97054.3097 8 +Q24114 Division abnormally delayed protein 8.63 5 10 0 159012.30479999998 10 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 429922.0313 15 +Q24134 Negative elongation factor D 2.42 1 1 0 2814.1975 1 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 74059.18549999999 5 +Q24185 Protein hook 20.47 13 18 13 350530.1532 18 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 777667.2464 28 +Q24207 Protein boule 27.63 5 9 0 308936.92590000003 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 310743.89514 18 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 86214.89170000001 6 +Q24211 Protein stoned-A 37.53 27 59 0 804454.62452 52 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 957430.2106999999 16 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 77490.61 5 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 80952.12483 5 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 11290638.2953 169 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 252684.22739000001 16 +Q24292 Protein dachsous 0.31 1 1 0 1959.6309 1 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 75275.8158 6 +Q24298 DE-cadherin 15.06 23 36 23 790397.9787 34 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 12292.10303 2 +Q24318 Transcription factor Dp 7.19 3 4 0 16003.4223 2 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 94328.5853 8 +Q24322 Semaphorin-1A 2.34 2 3 0 3149.99344 2 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 104798.158 4 +Q24372 Lachesin 17.83 6 8 6 75678.4336 7 +Q24388 Larval serum protein 2 8.84 5 5 0 36549.8042 4 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 1698481.85212 62 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 4000685.1595 46 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 14135420.271569999 155 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 127136.61008 20 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 86583.85462 9 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 24778.2205 4 +Q24509 Syntaxin-5 4.28 2 2 0 12022.899000000001 2 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 127269.6231 8 +Q24524 Protein singed 5.86 3 3 0 22602.824 3 +Q24537 High mobility group protein DSP1 13.99 6 14 0 224273.7297 14 +Q24547 Syntaxin-1A 29.21 12 41 0 1411768.2118 39 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 16508004.65982 250 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 16348.929500000002 3 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 232493.18322 15 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 3011488.6755 27 +Q26377 Pro-corazonin 40.26 5 12 5 108818.02053000001 11 +Q26416 Adult cuticle protein 1 20.0 1 5 1 186935.2326 4 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 88995.77369999999 5 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 620135.2165999999 18 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 68876.3847 5 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 1666346.754 39 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 887384.7930000001 15 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 2016699.99214 50 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 170530.7368 11 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 305482.28 12 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 2068.4072 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 439506.65283000004 12 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 349341.6087 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 11977.4855 3 +Q3KN41 Neurexin 1 1.96 4 4 0 45953.0233 4 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 17280.1996 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 47526.547 3 +Q4V645 Trissin 16.67 2 3 2 51605.768 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 32590.598 2 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 78564.661 3 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 29525.8879 7 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 254810.9796 15 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 51567.1601 5 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 15205.433500000001 2 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 46350.873999999996 5 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 195062.6006 7 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 55097.286 4 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 439554.8543 8 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 325634.5814 13 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 30667.1934 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 304076.4552 15 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 1123640.59114 29 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 840.8434 1 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 340894.51626 19 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 64186.93351 6 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 386202.14050000004 15 +Q7JXF7 Protein seele 34.92 5 7 5 138545.029 7 +Q7JYV2 Synaptogyrin 8.3 1 1 1 2961.2266 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 20270.646 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 58547.140900000006 3 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 131761.6839 11 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 342219.0587 14 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 12894.0225 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 129387.1137 10 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 33714.68713 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 12790.826 2 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 1190818.601 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 28341.861 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 187136.28770000002 12 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 99551.6282 12 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 36274.388100000004 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 337240.266 19 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 128910.3977 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 4546932.271129999 72 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 68907.22304 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 753204.80663 24 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 1536763.3822 34 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 12182.5372 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 1396241.8482 50 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 244139.96756000002 21 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 431745.9815 15 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 24421.72242 5 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 24341.115 1 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 147602.396 7 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 8571487.47585 61 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 4034.823 1 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 199555.7205 8 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 312203.91316 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 85238.033 3 +Q7KVY7 Syntaxin-4 6.01 2 2 1 18542.2968 2 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 56129.6229 5 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 2988643.9369 47 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.94 2 2 2 1588.5321 1 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 375005.7175 18 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 111405.4603 6 +Q868Z9 Papilin 18.81 47 94 47 862902.65476 86 +Q86B79 RING finger protein unkempt 3.17 2 2 0 19808.8031 2 +Q86B87 Modifier of mdg4 13.77 6 8 0 130308.61050000001 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 11378.6872 3 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 77999.226 4 +Q86NP2 Negative elongation factor A 9.51 9 11 0 105775.324 10 +Q86P48 AT-rich binding protein 7.22 3 5 3 26301.27607 4 +Q86S05 Protein lingerer 2.91 3 4 0 1882.61485 3 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 62972.7402 6 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 839986.6892 22 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 22895.501800000002 4 +Q8IN41 Protein Turandot X 8.45 1 1 1 21788.924 1 +Q8IN43 Protein Turandot C 31.01 4 14 4 143388.033 11 +Q8IN44 Protein Turandot A 58.14 9 20 9 497910.07687 18 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 120634.1044 6 +Q8IPM8 Complexin 66.2 10 69 0 54835.0516 3 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 183640.27845 15 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 72330.92377 7 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 2901.2686 1 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 134652.57546 11 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 207891.6225 7 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 93205.4179 7 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 1633578.37988 30 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 10645.4951 2 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 24721.924 1 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 1982.5321 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 106083.3564 4 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 51945.6656 4 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 2029437.17994 38 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 624715.0432300001 22 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 7261.787 1 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 3286.6272 2 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 33422.5299 4 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 143725.047 5 +Q8MSS1 Protein lava lamp 17.06 45 52 0 454809.367 49 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 20847.786 2 +Q8MSV2 Protein alan shepard 12.54 6 13 6 246950.9028 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 7249.989 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 10207.544 2 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 22038.15425 3 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 885686.0239 17 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 155154.784 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 476640.498 16 +Q8SY33 Protein Gawky 11.05 13 19 13 195248.5097 16 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 1724743.0245 55 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 191605.22126 16 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 85508.2903 6 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 28194.211499999998 4 +Q8SZ63 Golgin-84 5.23 3 3 3 16003.494059999999 3 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 118051.11110000001 7 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 25650.92 1 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 795421.60754 34 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 806230.2196 32 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 15962.174 1 +Q8T390 Endophilin-A 56.91 20 92 0 2982068.39284 74 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 181588.3585 6 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 1492358.3195 20 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 261397.2604 12 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 202889.2965 11 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 1870.5934 1 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 856446.2707 18 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 71044.1107 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 4484515.6306 94 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 4830635.25394 84 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 7011387.8994 111 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 5054.5301 2 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 1476620.918 17 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 1539324.2749 27 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 8293504.75665 105 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 877424.4763999999 48 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 47169.619 3 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 595013.6057600001 20 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 22727.487 3 +Q94547 Regulator of gene activity 4.27 3 4 0 121605.86200000001 4 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 30677.0109 4 +Q94901 RNA-binding protein lark 53.69 20 40 20 737652.70617 38 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 2393.0034 1 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 221298.776 7 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 30636803.5162 327 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 7356.4453 1 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 112157.4835 6 +Q95029 Cathepsin L1 38.27 16 60 3 3335057.3325 52 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 836721.1576 18 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 29513.661 2 +Q95RA9 GILT-like protein 1 46.4 9 28 9 1386065.1788 26 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 6256.285199999999 2 +Q95RI5 Failed axon connections 54.78 24 114 0 5962412.18327 106 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 2320.139 1 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 140422.39669999998 5 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 117926.5414 11 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 100886.117 4 +Q95T12 Calcium channel flower 12.89 2 3 2 71042.3414 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 27868.091200000003 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 3157.8481 1 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 81306.9604 9 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 10947.6308 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 464941.01629 20 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 69903.94353 9 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 113267.121 6 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 798.9295 1 +Q967D7 Protein turtle 2.74 4 6 0 109583.74714 6 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 79945.5772 11 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 66641.5432 4 +Q9GQQ0 Protein spinster 1.98 1 3 1 19124.8108 3 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 3942787.8988 56 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 11255.6411 2 +Q9I7D3 Caprin homolog 12.38 10 12 0 76232.57370000001 7 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 81995.1128 6 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 105398.77900000001 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 25997.4276 2 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 127498.177 6 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 710583.25136 29 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 25866.523400000002 3 +Q9I7U4 Titin 1.5 22 25 0 153167.89035 19 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 12841.61 1 +Q9NB04 Patj homolog 31.46 20 37 0 684165.4192 33 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 6021.6386 3 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 36733.5674 5 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 44536.1476 3 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 57754.787399999994 4 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 145809.2442 7 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 51663.2684 5 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 8218.458 1 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 15030.464 2 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 2259828.543 49 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 50456.663 7 +Q9TVM2 Exportin-1 1.79 2 2 0 13866.725199999999 2 +Q9TVP3 J domain-containing protein 79.49 16 82 16 4806479.0983 74 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 440456.31179 27 +Q9U4G1 Protein borderless 19.89 13 27 13 655638.37463 24 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 28324.6057 3 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 191874.70799999998 11 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 573938.0866500001 17 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 3377.4844 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 47935.52205 3 +Q9U915 Adenylate kinase 2 72.08 21 51 21 1829976.8355 46 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 77519.516 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 147331.7377 9 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 205542.04033 10 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 117464.2113 9 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 8273.467 2 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 9160.18526 3 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 80392.061 4 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 1109268.1450999998 24 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 20248.4034 2 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 1955003.9511 27 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 84672.6574 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 258575.184 6 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 244172.6883 6 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 180712.8103 13 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 1506481.73577 37 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 72665.97039999999 7 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 166388.75984 14 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 77146.792 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 333088.2483 20 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 6256634.80365 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 302930.63513 15 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 7167.595 1 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 38427.689 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 200974.1944 7 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 18360.4046 2 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 1254730.5541 40 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 56709.905 3 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 169582.3044 8 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 747501.278 11 +Q9V3Z2 Serine protease 7 15.35 5 6 4 55260.2641 6 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 104458.052 11 +Q9V427 Innexin inx2 8.99 4 8 0 136682.97639999999 6 +Q9V429 Thioredoxin-2 68.87 7 37 7 2696368.1794 36 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 373944.70271 18 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 683973.47444 24 +Q9V447 Krueppel homolog 2 12.68 3 3 0 29948.6915 3 +Q9V496 Apolipophorins 34.8 114 261 0 14175146.31436 237 +Q9V498 Calsyntenin-1 1.02 1 1 0 41918.62 1 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 17236.9493 2 +Q9V4C8 Host cell factor 4.93 8 11 8 148980.8772 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 8035.0713 1 +Q9V4N3 Cytochrome b5 61.19 5 26 5 824315.7954000001 19 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 159535.671 5 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 189627.6005 11 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 9378.789069999999 3 +Q9V521 Phenoloxidase 2 22.22 16 20 15 191648.22153 18 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 407987.30769999995 14 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 22054.4836 2 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 316967.2806 14 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 794681.95002 30 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 1340679.90945 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 2059.0054 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 26150.764 1 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 130160.2481 8 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 12193.975 2 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 53680.6933 5 +Q9V6G5 Tafazzin 5.82 3 3 0 31711.241 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 3330370.79802 69 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 36599.183000000005 3 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 36256.002 3 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 36572.2426 4 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 12343.97332 4 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 2788950.2774300002 64 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 4539549.11479 98 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 772188.0555 21 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 50653.4347 2 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 36758.7848 3 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 899973.3332999999 29 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 2065066.65207 97 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 1027426.3559 14 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 278842.1925 8 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 36812.00127 5 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 57465.01 2 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 73950.672 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 14122.732 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 25466.7995 3 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 8561.502 1 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 16109.526300000001 4 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 775494.4602 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 99619.2135 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 330729.8452 11 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 1534.33104 2 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 21996.906 1 +Q9VA37 Protein dj-1beta 72.73 12 59 12 2523333.17184 50 +Q9VA70 Neutral ceramidase 2.41 2 2 0 14206.021 2 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 3490915.52396 43 +Q9VAF5 Cadherin-99C 5.92 10 11 10 73339.3664 10 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 2762432.384 23 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 562780.5326 27 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 2929446.06423 72 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 1596141.45917 45 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 83541.8704 7 +Q9VAW5 La-related protein 1 4.06 5 5 0 38918.7316 5 +Q9VAY3 Mitoferrin 7.65 3 3 3 25627.566000000003 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 31339.46 3 +Q9VB68 Serine protease grass 12.2 5 6 5 28970.2639 5 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 33169.0833 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 6339.99789 3 +Q9VBV3 Protein takeout 26.91 6 7 0 187266.9924 6 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 144087.1095 9 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 8705.1322 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 734.71075 1 +Q9VC57 Atlastin 5.91 3 4 0 45424.0906 4 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 14426.0426 2 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.6 2 2 0 1119.0326599999999 2 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 358164.2035 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 139387.3862 8 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 17679.3595 3 +Q9VCE8 Actin maturation protease 9.74 1 2 0 2537.8081 2 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 266004.0276 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 241265.3101 14 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 98229.96340000001 4 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 230093.4485 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 412525.619 11 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 40831.3813 2 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 11087.256000000001 2 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 9676.026399999999 2 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 405523.5307 10 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 447690.57865 17 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 37725.6725 5 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 85259.7967 4 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 127177.06360000001 13 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 23251.1168 3 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 4849.1294 1 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 24213.8477 2 +Q9VDL1 Esterase CG5412 9.68 2 3 2 5557.63507 2 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 10126.6243 2 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 170850.7236 8 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 4670.396 1 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 30113.975639999997 4 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 12089.059 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 47172.30100000001 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 3968.9453 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 2499190.3027 50 +Q9VER6 Modular serine protease 3.18 2 3 2 16509.02045 3 +Q9VET0 Neuropeptide F 29.41 3 4 0 81389.34246 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 1415276.2908 42 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 123731.2732 5 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 6682.0645 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 235316.91554999998 8 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 3797114.6478 59 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 19963.925900000002 3 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 280763.3457 16 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 12657.341 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 57805.241 2 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 1060603.9675 29 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 78771.89255 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 15172.118 3 +Q9VFJ0 Probable cytochrome P450 313a1 4.67 2 2 2 3025.48486 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 42720.7345 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 37996.028000000006 3 +Q9VFM9 Twinfilin 24.78 8 14 8 197136.1215 12 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 83072.7368 7 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 44030.1923 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 12453.489 1 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 142512.86361 10 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 56028.148 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 8124.811 1 +Q9VG55 Protein hugin 18.32 2 2 2 8885.3633 2 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 321959.5602 10 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 8050.247 1 +Q9VG76 Myc-binding protein 11.05 2 2 2 25933.428 1 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 16286.190200000001 3 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 1503470.8517 22 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 156810.4426 6 +Q9VGG5 Cadherin-87A 5.16 9 12 9 252275.81527 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 14673.979 1 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 211451.01499999998 8 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 9126.916 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 31609.1147 3 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 25774.082 1 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 2670603.361 47 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 536525.2311 17 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 26328.9314 3 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 2096.4688 1 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 356946.4955 14 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 6012.241 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 414403.3657 11 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 512559.88899999997 7 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 1275083.0622999999 19 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 1718.3862 1 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 93017.41459999999 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 46507.7319 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 219629.03399999999 10 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 66122.0166 8 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 187110.1324 6 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 21684.639900000002 4 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 215275.73028000002 17 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3084.425 1 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 2025577.92154 52 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 3652821.6852 43 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 153259.9838 6 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 24862.1982 3 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 6153.9727 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 83933.9743 8 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 142751.06244 11 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 16057.506699999998 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 469359.21660000004 15 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 482185.65750000003 13 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 125222.7035 5 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 38859.0421 3 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 35839.313 2 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 9320.309 3 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 429501.51136 12 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 364122.6391 14 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 158596.1477 7 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 105205.62966 7 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 295461.363 8 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 9977.16 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 1975.8369 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 18362.3818 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 4886.5218 2 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 18724.03 1 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 101858.6795 10 +Q9VJL6 Glia maturation factor 10.87 2 3 2 80288.51 3 +Q9VJQ5 Protein Dr1 17.49 3 3 3 31456.3297 3 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 513100.2398 14 +Q9VJY9 Protein Loquacious 12.69 5 5 0 108112.5088 5 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 11951.5224 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 345117.3753 13 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 4656.236 1 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 3363.3662 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 91113.5275 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 31946.3775 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 61751.509 2 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 107250.74429999999 4 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 65915.254 2 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 8291.334 1 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 1550669.61819 37 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 1916478.1703 58 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 31723.6377 3 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 67734.9822 5 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 82197.44179 10 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 170845.7865 8 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 55428.7572 6 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 591625.7796 18 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 17880.158000000003 3 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 638425.57444 13 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 161565.2372 8 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 161300.6385 9 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 4126.692 1 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 20446.126699999997 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 61876.7924 5 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 36761.763699999996 5 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 36729.8015 6 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 52976.538 2 +Q9VMD6 Protein real-time 2.58 2 2 0 13153.8193 2 +Q9VMD9 Tiggrin 11.33 29 34 0 306234.2461 31 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 40149.4155 5 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 310118.7522 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 21414.4346 3 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 43767.787500000006 4 +Q9VMR8 Protein Turandot M 33.59 3 5 0 81714.3426 5 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 117339.0305 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 26714.2965 3 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 39242.0702 5 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 571639.1078 12 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 54647.444 3 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 68916.821 3 +Q9VMY9 Guanine deaminase 4.46 2 2 2 32548.562 2 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 24254.675 4 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 119990.8702 6 +Q9VN14 Contactin 19.78 25 34 25 668062.52968 31 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 14543.2098 3 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 51486.506760000004 4 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 276561.81586 12 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 729536.7666 29 +Q9VN93 Cathepsin F 22.64 13 28 12 1037512.4736 25 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 192909.66 6 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 45345.532 3 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 108115.9963 3 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 307392.9917 9 +Q9VNE2 Protein krasavietz 31.28 16 24 16 594375.0216 22 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 557858.393 12 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 7931.309 1 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 60869.9273 3 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 52197.9387 5 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 10918.6928 4 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 62451.947 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 60123.9495 4 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 57376.4634 4 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 140248.9644 7 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 4255505.98196 27 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 732414.7989 12 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 159418.84040000002 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 14820.78726 4 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 84790.1637 4 +Q9VQC4 Glycerate kinase 12.94 8 8 0 104999.176 8 +Q9VQF7 Bacchus 40.79 6 16 6 214415.34873 14 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 70063.283 3 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 483140.61844 16 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 254569.2468 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 40600.5068 2 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 167479.1534 10 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 5520.319 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 8337.8497 2 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 21956.747 2 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 201747.80800000002 5 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 39620.9925 8 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 4298.83116 2 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 322699.6 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 11241.4822 2 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 74788.9421 5 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 8134.4125 2 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 158276.00022 10 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 384044.435 4 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 26963.720999999998 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 3069577.82135 67 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 32070.738 2 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 10323.8639 2 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 67369.4248 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 34393.973 1 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 5930541.0879 60 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 66722.3001 4 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 62778.3052 6 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 31817.853600000002 4 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 1550973.04002 51 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 283024.0324 7 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 13922.8218 3 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 9086.2384 2 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 28856.148 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 36900.0718 2 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 466688.045 13 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 73561.4424 4 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 153768.11000000002 6 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 5403.8374 1 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 61239.904 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 14693.337 1 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 76936.3906 4 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 2423831.69995 45 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 103036.07898 6 +Q9VTZ5 Transferrin 2 22.59 16 21 16 235247.4807 19 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 102013.8185 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 50347.98 2 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 4571068.62748 102 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 484776.27113999997 26 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 19392.6436 3 +Q9VU84 Drebrin-like protein 26.18 11 14 11 224232.3813 13 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 51764.9276 5 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 4046.713 1 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 1426332.4215 36 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 76874.7722 5 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 666717.1198399999 27 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 30447.71 1 +Q9VV36 Retinin 29.84 5 91 5 5317824.19913 73 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 1302.9224 2 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 2275612.69234 37 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 547970.1919 25 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 8346.618 1 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 196319.80623 7 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 518348.54174 23 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 102042.5344 8 +Q9VVE2 Protein rogdi 30.97 7 12 7 247259.9498 10 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 279486.6351 18 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 23952.896 3 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 741422.00885 31 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 5326.3779 2 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 26666.546720000002 5 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 303119.59727 21 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 43661.8857 3 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 42067.32886 3 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 147910.58 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 37933.009999999995 2 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 17089.242299999998 6 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 482220.25881 23 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 14926.0061 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 219825.3104 11 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 443203.1886 13 +Q9VWA1 Clathrin light chain 40.64 11 40 0 1376505.50316 38 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 12112.86667 2 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 21452.11 1 +Q9VWE0 Cytokine receptor 1.56 2 2 2 130896.7984 2 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 426574.15020000003 12 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 15155831.02596 164 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 2224378.32753 23 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 88706.84373000001 11 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 77815.244 4 +Q9VWU1 Serine protease persephone 7.61 3 3 3 34375.607099999994 3 +Q9VWX8 Frequenin-2 52.94 11 47 5 1029010.36156 41 +Q9VX10 Sulfiredoxin 4.32 1 1 0 30972.082 1 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 239686.3323 11 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 1234975.4464 23 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 39891.4987 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 413407.1447 8 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 23388.43335 5 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 7558.0566 1 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 1359036.91585 55 +Q9VXG4 Annexin B11 23.68 13 31 13 906115.2103 31 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 340173.8366 17 +Q9VXK0 Protein NipSnap 15.38 4 8 0 170568.5607 6 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 315144.6554 14 +Q9VXN2 Protein stunted 49.18 3 9 3 177427.10688 6 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 16816.4916 2 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 325749.9623 10 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 71816.459 4 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 587.6468 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 1111130.42997 38 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 47295.09193 4 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 606126.2289999999 9 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 24368.038399999998 4 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 6808.0557 1 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 124022.6837 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 16470.082 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 29258.9843 3 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 56038.796 6 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 2807.6975 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 2342.1365 1 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 4564.5337 1 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 7358.1426 1 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 1531890.5485 47 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 17867.53474 4 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 205727.0025 11 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 226088.1425 8 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 1226026.2894000001 26 +Q9VZ35 Protein Vago 13.12 2 2 2 3637.07314 2 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 215827.526 3 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 389484.4547 14 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 706051.5577 22 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 57119.5085 7 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 59346.5591 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 12207.986210000001 4 +Q9VZE7 Choline transporter-like 1 1.74 1 1 0 887.4007 1 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 11290.3466 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 6552.4897 1 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 14049.39 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 16963.3823 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 542637.5867999999 8 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 828288.4783 18 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 1932476.3549 52 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 246456.5918 12 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 22631.434 2 +Q9W032 Protein ecdysoneless 1.9 1 1 1 8471.833 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 1564857.32825 50 +Q9W074 Protein HBS1 3.28 2 2 2 12469.284 2 +Q9W0A0 Protein draper 4.95 4 5 0 26438.82938 5 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 3546943.50381 49 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 3899.7974 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 45671.6012 3 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 120209.389 9 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 563827.936 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 200677.5833 13 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 201067.71323 19 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 12340.278 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 2109.0923 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 1601267.843 36 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 208432.74376 9 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 13048.8287 2 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 9610764.23327 71 +Q9W1G0 Probable transaldolase 44.71 16 52 16 2410508.5568 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 72066.84 2 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 44167.523 3 +Q9W1K5 Sestrin homolog 1.41 1 1 0 20115.924 1 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 21411.3261 3 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 71070.897 5 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 73544.8403 5 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 108103.21 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 291608.537 9 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 2134220.7127 49 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 119569.3684 6 +Q9W266 Protein windpipe 8.12 5 11 5 302002.0111 11 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 519202.359 12 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 231136.24834 10 +Q9W2E7 Protein Rae1 29.48 9 14 9 499038.04390000005 12 +Q9W2M2 Trehalase 33.56 19 38 0 639949.9812 33 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 67866.121 5 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 8909.449 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 47660.032100000004 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 180059.4911 5 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 3313159.7135 69 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 429792.46405 11 +Q9W358 Chaperone Ric-8 12.22 7 7 0 68961.6984 7 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 4623118.6843 79 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 70528.3126 6 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 389298.745 5 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 146631.3602 4 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 107172.683 4 +Q9W3E2 Protein PIP82 19.58 20 31 20 146828.87696 22 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 45777.4074 5 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 40193.7274 4 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 78363.5099 6 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 195525.06 3 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 89498.34543 6 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 600.582 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 5297.8057 1 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 5254.723 1 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 13085957.27409 167 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 242245.61190000002 6 +Q9W436 Neprilysin-1 2.59 2 2 2 13575.926 2 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 135620.422 5 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 30661.086 1 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 105698.5436 11 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 364151.466 14 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 140419.1674 13 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 289072.501 14 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 520515.10235 16 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 69063.3735 5 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 1379009.83112 110 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 38447.953 1 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 384414.61340000003 16 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 370417.44190000003 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 46354.5553 3 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 450299.1792 10 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 32258.1783 4 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 779054.20953 58 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 3265.3125 1 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 6520.761 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 361994.6629 10 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 920300.3123 30 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 67937.5192 7 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 174511.89609999998 10 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 421612.57899999997 16 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 974352.475 14 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 1398183.7841 34 +Q9XZL8 Protein sarah 32.53 7 14 0 205532.65637 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 6518.8045999999995 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 58585.2747 4 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 49023.0882 4 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 518354.0733 16 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 27559.81435 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 813091.5524 23 +X2JAU8 Protein nervous wreck 28.19 30 88 30 2551447.33338 79 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 13423.572 1 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 54932.3617 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 37935.252 2 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 171705.3596 13 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 740057.002 6 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 91781.763 6 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.0 2 2 0 344.21478 1 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 3634538.42747 100 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 27639.375 2 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 3206.2266 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 226671.12587 14 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 76575.0641 9 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 56657.868 4 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 231683.63112 20 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 6906110.96194 161 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 19526.814300000002 2 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 22967.1068 2 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 261007.99549 24 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 230191.51899999997 4 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 105748.67799999999 3 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 76035.0924 8 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 32654.276400000002 4 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 143592.02279999998 7 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 8236.1525 3 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 127429.8467 10 +A0A0B4K775 Golgin 97, isoform B 1.49 1 1 0 374.08878 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 5331652.26481 113 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 173188.9656 7 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 84094.51000000001 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 25222.197999999997 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 27174.763000000003 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 4384.51165 2 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 2672385.2877 47 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 37360.7814 3 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 514.8392 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 1047377.31277 53 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 13306.67318 5 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 513191.5767 23 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 29483.113 2 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 42443.8173 6 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 467478.32937 17 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 267580.73558 13 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 598129.7001 45 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 63725.63155 10 +A0A0B4KEJ7 Coronin 12.71 7 7 0 93548.7291 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 17432.808399999998 3 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 11802.06324 5 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 233524.82804 17 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 12911.486 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 50653.664000000004 2 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 8040.0887 2 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 333348.92004 24 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 373.26236 1 +A0A0B4KFA3 Uncharacterized protein, isoform F 0.88 1 1 0 501.75052 1 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 1330605.91615 44 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 6149.1826 2 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 3543388.97957 79 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 42671.11045 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 712870.63473 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 575393.84966 12 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 117285.71 2 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 3748.6628 1 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 60891.688500000004 8 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 68770.7809 7 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 2278.804 1 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 4.45 1 1 0 458.08154 1 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 140654.1435 5 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 2256.4822 1 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 65291.6588 7 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 3716.6221 2 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 100237.448 7 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 14585.226999999999 2 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 221479.0745 15 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 978197.1815999999 21 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 872634.8079 28 +A0A0B4KGM5 Uncharacterized protein, isoform B 1.13 1 1 0 626.0758 1 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 8548.4805 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 16818.2846 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 453290.00616 23 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 11192.6796 2 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 48553.009099999996 7 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 13508.81446 2 +A0A0B4KH34 Annexin 55.56 21 164 3 11786002.84406 146 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 6387.8374 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 3938.7722 1 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 449474.9733 17 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 209953.9771 16 +A0A0B4KHF0 Ferritin 75.42 20 121 1 15342647.4899 95 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 17733688.11064 216 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 242706.3796 7 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 12539.539 1 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 13298.746 2 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 192033.67680000002 8 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 315814.40769 22 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 131226.32 2 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 57135.045999999995 7 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 37813.6566 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 97158.14 6 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 4564.5195 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 804125.986 41 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 1298104.9761 23 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 109684.20300000001 3 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 35883.68 2 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 11436.9416 2 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 4515.4665 2 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 728350.3415 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 575828.766 31 +A0A0B4LF95 glutaminase 11.14 7 11 0 98425.7025 9 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 512584.43684 25 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 216151.09043 21 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 54651.391 5 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 2212.6677 1 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 22357.59683 2 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 16104.8023 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 1995.0284 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 42964.8463 6 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 19306.602 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 160457.4653 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 15697.501 2 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 162992.4567 13 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 1107556.6491 46 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 126936.5408 10 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 9075.025 1 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 535632.74604 20 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 32151.5631 5 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 3827578.6289 53 +A0A0B4LGT9 Uncharacterized protein, isoform B 4.92 1 1 0 2032.574 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 111599.8913 8 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 780182.62985 36 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 92488.40239999999 4 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 79712.4659 6 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 4624.702 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 36355.0185 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 84613.6596 8 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 17363.472999999998 2 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 62294.947 3 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 31644.1735 3 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 5115.0887 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 143906.9506 15 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 13691.7718 3 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 5840.9414 1 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 245501.09013 22 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 24471.3034 4 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 32626.651 2 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 205464.4757 11 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 107548.603 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 122146.63558 11 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 47865.0263 7 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 8936080.55971 123 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 134627.7549 8 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 16342.644 2 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 16688.733 2 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 714012.91842 17 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 55237.996 3 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 8497142.3746 130 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 65243.98707 13 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 89043.2227 11 +A0A4P1SAA7 IP07559p 6.8 1 1 0 11008.769 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 585696.50846 46 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 112637.5655 7 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 6654.358 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 8944337.31004 267 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 13571.1076 2 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 1510732.4662000001 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 91335.247 7 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 37411.4019 3 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 23224.5958 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 10146.44 1 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 3649288.61467 243 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 309561.19496 31 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 1089535.82804 28 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 447973.2024 15 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 127965.1691 7 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 120153.60256 8 +A1Z6F6 FI18602p1 9.88 9 10 0 161364.1129 9 +A1Z6G9 FI18173p1 10.5 3 3 3 21244.1067 2 +A1Z6H4 RE52822p 14.24 7 7 0 82715.97750000001 7 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 43271.179000000004 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 39613.619 2 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 112836.1555 6 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 135997.83546 11 +A1Z6R7 FI21445p1 40.71 9 20 9 403279.3466 18 +A1Z6V5 FI01422p 40.46 14 31 14 1325925.4588000001 28 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 310969.4677 13 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 125213.5896 8 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 29798.695 2 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 5425.823 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 9179.2795 3 +A1Z7B8 GEO08456p1 21.52 3 5 3 135111.297 5 +A1Z7G2 MIP13653p 13.39 2 4 2 607096.23 4 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 234805.63114 17 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 27958.7467 3 +A1Z7K6 FI20236p1 6.38 3 4 3 76908.50760000001 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 246294.0596 11 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 30641.5675 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 79846.9308 5 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 1272486.79836 43 +A1Z7V9 FI20020p1 10.04 5 5 0 82143.4887 4 +A1Z7X8 FI02944p 19.81 7 8 7 114431.31899999999 6 +A1Z803 FI02892p 29.12 12 18 12 673524.2074 18 +A1Z843 Nodal modulator 3 9.42 11 14 11 182333.6359 14 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 872906.7723 24 +A1Z871 CAP, isoform B 13.38 20 35 0 83986.76913 5 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 2576895.50433 46 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 160973.89 4 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 29128.898 1 +A1Z8G7 FI09243p 9.92 1 2 1 795.87146 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 6414110.8051 42 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 88851.21778 10 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 10005.914 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 794.231 1 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 27009.52175 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 684767.30946 19 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 491234.32349999994 12 +A1Z933 GEO02273p1 27.91 2 4 2 43473.4433 4 +A1Z934 SD19268p 48.83 13 30 13 732999.28443 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 19004.35 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 112221.6065 9 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 15664.5802 3 +A1Z9B5 IP16508p 19.88 3 4 3 48879.035 4 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 2356395.6876 44 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 561753.1021 15 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 232565.90818 30 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 440978.5967 11 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 15340.253270000001 5 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 166933.4934 4 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 3288.3992 1 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 18045.8146 2 +A1ZA23 FI18007p1 33.64 10 24 10 348856.61529 23 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 111050.5084 6 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 50700.172 6 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 19842.3654 3 +A1ZAH3 FI16515p1 1.93 1 1 0 696.5398 1 +A1ZAK3 Protein DEK 4.05 3 3 0 57779.058 3 +A1ZAL1 lysozyme 30.43 5 7 5 258976.5037 7 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 7363.54 1 +A1ZAU4 RH39096p 52.14 16 49 0 2237389.5625899998 47 +A1ZB23 IP19117p 16.06 4 7 4 75581.5454 5 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 7610.4663 1 +A1ZB68 FI01423p 45.91 11 28 11 822112.08654 26 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 652809.9598 22 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 113116.84102 7 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 610813.23946 16 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 19375.03 2 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 49364.2369 3 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 1223535.9729 37 +A1ZBA5 FI07234p 7.22 2 2 2 40601.716 2 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 19373.3312 4 +A1ZBD8 Mucin-5AC 2.99 4 4 4 24732.992400000003 2 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 7625.0118 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 604670.1 37 +A1ZBK7 Crammer 31.65 3 11 3 108303.2808 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 15649.183 1 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 520639.9672 11 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 418324.201 11 +A1ZBU5 GNBP-like 3 28.29 3 10 3 125529.73737999999 9 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 12222.976 1 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 1227787.8444 43 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 16128.567 1 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 373263.12582 29 +A1ZBX6 lysozyme 9.5 2 2 2 6881.112999999999 2 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 5339.7305 1 +A2VEG3 IP16294p 1.06 1 1 0 2443.9443 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 2800.3 1 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 115159.17259999999 8 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 1370689.49704 31 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 57403.546 3 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 272025.44533 14 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 2473284.1462 67 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 3388731.68703 94 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 7812.412 1 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 2024235.0852700002 35 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 228737.4926 11 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 60992.397 2 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 646172.0116000001 12 +A8DYD1 Combgap, isoform L 10.75 8 11 0 111541.37879 10 +A8DYI6 Prohibitin 65.98 22 79 1 3344926.75836 72 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 280797.26532999997 17 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 224532.3039 8 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 1827.1002 1 +A8DZ06 Stolid, isoform J 12.46 14 21 0 356475.9633 16 +A8DZ14 FI17828p1 18.02 9 24 4 696725.19035 23 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 44432.724 4 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 309179.50534 34 +A8E6W0 IP19808p 19.7 4 5 4 109545.67 5 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 42123.5991 6 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 20570.5569 2 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 43649.927500000005 3 +A8JNP2 arginine kinase 73.07 36 447 2 2104273.368 16 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 12228.0517 6 +A8JNS4 Starvin, isoform E 7.4 4 5 0 57824.801400000004 5 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 11061.9237 2 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 174966.402 3 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 30651.7195 5 +A8JQT5 Moesin/ezrin/radixin homolog 1 1.31 4 6 3 1773.57223 3 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 46843.94 4 +A8JQW3 Pinin, isoform B 18.24 5 5 0 60254.36596 5 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 86606.72 2 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 181016.35757 12 +A8JR58 Hadley, isoform B 7.64 2 2 1 2240.36443 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 3323894.89275 66 +A8JRH3 FI20012p1 66.73 28 71 1 1951553.06547 64 +A8JTM7 Megalin, isoform A 2.81 14 18 14 199393.7334 15 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 62738.0855 7 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 18871.0873 3 +A8JUZ6 MIP03678p 16.77 5 7 0 72845.3156 4 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 995.4009 1 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 497677.53066 28 +A8WH76 GEO10024p1 48.15 4 13 4 430708.23572 11 +A8Y4V5 FI20903p1 5.22 1 1 1 2551.093 1 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 16590.941 1 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 4067080.861 12 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 36076.727 1 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 43060.9938 3 +B7YZH1 FI20143p1 7.21 4 4 0 16595.53624 4 +B7YZN0 Syndecan 12.55 6 8 0 146296.9675 7 +B7YZN4 GH02741p3 49.23 4 4 4 41659.1627 4 +B7YZN8 GH02741p1 10.53 1 1 1 32733.242 1 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 65309.009900000005 5 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 4839398.63688 87 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 10430.0923 2 +B7YZV2 Phosphodiesterase 6.39 6 8 0 105771.9834 8 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 427838.1326 26 +B7Z001 Fatty acid synthase 20.0 44 74 0 892944.09433 70 +B7Z005 Drongo, isoform I 6.42 3 3 0 20713.2829 3 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 2380.5137 1 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 5391.4854 1 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 18090.6183 2 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 55646.413 3 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 58230.741200000004 8 +B7Z0C9 GH15104p1 34.74 4 7 4 57233.1848 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 10417911.43153 138 +B7Z0M0 FI17308p1 22.13 2 2 1 18647.51 1 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 4820.5414 2 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 227436.5989 11 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 237671.1071 14 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 17825.6215 2 +B7Z107 GH09380p1 29.35 3 5 3 28791.9627 3 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 3720.9272 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 36732.809799999995 3 +C0HDP4 MIP05618p 11.31 4 4 0 14742.0583 4 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 1792775.12017 35 +C7LAG1 CoRest, isoform G 2.31 2 2 1 17884.1305 2 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 1520613.2938 52 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 556540.895 28 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 176577.50303 8 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 50808.340000000004 3 +D0Z756 MIP14966p 36.55 15 61 0 2865536.6135 57 +D1YSG0 Bent, isoform F 4.99 39 42 0 407217.89118 41 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 265874.10229999997 7 +D3DMM0 MIP15702p 29.31 12 28 0 904859.5607 28 +D3DMM4 MIP15217p 28.27 22 50 0 1209777.73323 45 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 161988.6557 6 +D5SHT6 MIP21537p 8.03 3 3 0 32910.8875 3 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 26936.316600000002 3 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 122106.4716 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 263126.9326 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 277782.38508 16 +E1JGR3 GEO02620p1 24.62 3 3 3 4346.1431600000005 2 +E1JGY6 Hulk, isoform F 11.14 17 21 0 267911.214 21 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 189924.1395 12 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 12446.982 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 5806.927 1 +E1JH90 Patronin, isoform F 0.78 1 1 0 1839.1279 1 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 937146.49515 49 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 28027.504399999998 5 +E1JHJ2 Uncharacterized protein, isoform C 2.11 1 1 0 482.25244 1 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 118178.85770000001 9 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 28183.778 3 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 44811.931 3 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 167967.3494 9 +E1JHP9 Galectin 6.21 3 3 0 19853.117299999998 3 +E1JHT6 Reticulon-like protein 38.71 18 38 0 1247654.82418 36 +E1JI40 Vermiform, isoform I 11.89 7 9 0 229188.458 7 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 45306.122899999995 4 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 48776.328 2 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 11123.541 1 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 41250.17446 3 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 9273.295399999999 2 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 5455.608 1 +E1JIY8 L antigen family member 3 20.72 3 3 3 67040.522 3 +E1JJ33 Complexin, isoform U 66.43 10 72 2 1755006.14326 70 +E1JJA4 Dynamin 35.22 31 59 0 888167.09164 57 +E1JJG5 Phospholipase A2 2.93 1 1 1 4847.9805 1 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 2081026.84538 67 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 38890.321299999996 5 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 118109.0063 9 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 14208.667399999998 2 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 848671.76512 42 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 15770.986400000002 2 +E2QD54 Natalisin, isoform D 5.61 3 3 0 25018.9514 3 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 180782.59360000002 18 +E2QD98 Protein PALS1 5.59 10 13 0 235509.9087 11 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 58253.9859 6 +E8NH67 Asperous, isoform B 59.09 20 77 0 1376170.01505 64 +F0JAP7 LP18071p 13.97 4 5 0 43318.769 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 53130.7231 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 2265945.94453 100 +H1UUB1 GEO12465p1 48.84 5 11 1 558160.51716 9 +H8F4T3 Regucalcin 45.75 9 15 0 622841.2897 15 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 85813.0666 5 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 73868.64414 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 1177566.05816 36 +L0MPN7 Asator, isoform H 7.38 8 8 0 97098.2918 7 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 50405.05223 10 +M9MRX0 Limpet, isoform J 27.3 27 63 0 1467389.0944100001 52 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 430426.05255 42 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 89131.46944999999 9 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 93123.8769 8 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 40748.70908 5 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 460328.21880000003 18 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 773774.7690000001 13 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 997921.14714 35 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 11522.758 1 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 2605.2456 1 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 104297.9623 7 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 123735.89719999999 11 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 104113.4861 10 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 204330.92507 15 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 182591.77620000002 14 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 137083.441 9 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 11606960.93644 379 +M9NDB5 RNA-binding protein 6, isoform F 36.89 6 15 1 814.8018 1 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3091.6929 1 +M9NDE0 pantothenate kinase 4.21 2 3 0 20272.410499999998 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 47943.0515 3 +M9NDS9 chitinase 0.67 3 4 0 37971.659 3 +M9NDX8 Neurabin-1 1.98 4 4 0 12449.5485 3 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 41841.11274 9 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 147047.6392 10 +M9NEF2 Histone deacetylase 2.33 1 1 0 1798.3689 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 9671.194 1 +M9NEW0 LD39232p2 58.67 9 12 9 236475.6747 12 +M9NEX3 Cytochrome b5 57.55 6 27 0 582064.20802 21 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 71501.2359 5 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 104667.1767 6 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 147753.8669 11 +M9NFC0 Troponin I 47.24 15 56 5 1169002.2585 14 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 55676.334 4 +M9NFH3 Lasp, isoform D 39.01 10 22 1 64819.4317 3 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 357506.81544 19 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 4868.5947 1 +M9NH07 Upheld, isoform N 45.43 30 106 0 8248437.4156 95 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 172049.6297 13 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 107651.4927 6 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 711645.7804899999 33 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 4904.034 1 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 62501.06099 5 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 2818.5107 1 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 2694211.59699 118 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 0.34 1 1 0 479.86734 1 +M9PBM3 Cysteine protease 8.54 3 5 0 12928.0911 4 +M9PBN2 Apolipoprotein D 20.82 3 10 0 262517.43097000004 9 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 462519.6022 23 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 4754.8447 2 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 68180.4918 5 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 303499.8161 18 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 628473.25056 19 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 14336.53155 4 +M9PBW9 Rhea, isoform G 6.64 17 18 0 161364.44355999999 18 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 238117.9175 10 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 15981687.94541 179 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 46425.024000000005 2 +M9PC74 Reticulocalbin-3 23.01 10 15 0 340859.966 14 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 4511.67344 2 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 32554.680999999997 2 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 9981.018 1 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 13481.23785 4 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 73748.6013 7 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 69454.8678 11 +M9PCI1 Uncharacterized protein, isoform B 2.85 2 2 0 2447.8927400000002 2 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 40812.994699999996 3 +M9PCT7 Bunched, isoform O 16.15 3 5 1 5498.6953 1 +M9PCU0 FI21215p1 30.84 38 66 1 23655.611 1 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 132310.59305 9 +M9PD73 TEP1-F 23.71 32 47 0 1113131.7692 44 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 694181.806 17 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 11098.6568 2 +M9PDB2 Varicose, isoform E 7.69 5 5 0 32420.3634 5 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 479001.95645 29 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 9815.37 1 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 46480.1958 5 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 38283.2866 2 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 88916.478 6 +M9PDU4 Acyl carrier protein 18.23 4 29 2 3196462.3145 27 +M9PDV2 Tetraspanin 12.89 3 3 0 18499.679 2 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 314009.54277 35 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 145102.1819 11 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 5191773.52045 58 +M9PE32 Fife, isoform D 12.56 14 19 0 133485.7338 16 +M9PE35 RabX6, isoform B 8.11 2 2 0 7336.820500000001 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 2231.3938 1 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 10423.73095 2 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 16288.0064 4 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 17193.2131 2 +M9PEC1 IST1 homolog 21.0 7 10 0 147662.2056 9 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 197622.15448 11 +M9PEG1 Uncharacterized protein 27.38 16 49 16 801573.9232 49 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 2048394.23649 196 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 82172.307 6 +M9PEL3 Quemao, isoform C 23.62 7 9 0 97682.22163 8 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 81590.583 3 +M9PET3 Simjang, isoform D 2.38 2 2 0 1751.2366 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 7934.2505 1 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 6179.4126 1 +M9PF16 Spectrin beta chain 24.44 59 123 3 2027085.61152 113 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 849935.34453 24 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 26336.154 2 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 58314.8936 7 +M9PFH7 Tartan, isoform B 2.53 2 3 0 10003.735 2 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 17219.9973 3 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 10644.144199999999 2 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 38829.375 2 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 8555.876199999999 4 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 266726.8634 10 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 96409.73329999999 8 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 61888.873999999996 4 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 8049520.27494 182 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 78583.27160000001 5 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 41992.5294 4 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 474243.539 10 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 7435.557 1 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 125973.0724 13 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 22629.4203 2 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 311936.9645 20 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 359800.9046 20 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 23136.2605 2 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 81378.1857 9 +M9PHX2 Visgun, isoform E 3.82 1 1 1 13738.971 1 +M9PI33 Inositol oxygenase 11.64 2 2 0 34535.768 2 +M9PI51 Dual specificity protein phosphatase 15 2.24 1 1 0 314.59268 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 27402.5924 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 49054.773629999996 3 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 253849.818 4 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 26825.481 2 +M9PJQ5 Troponin I 45.65 14 66 0 381905.7785 14 +O15971 LD39986p 30.39 7 26 4 117426.2426 7 +O16158 Calcium-binding protein 48.91 7 30 7 2043728.6368 26 +O17452 LD20793p 27.83 6 17 4 421972.0691 15 +O18332 FI01544p 60.98 11 51 9 1146977.54699 45 +O18335 Rab11 57.94 14 57 14 2776165.3975 56 +O18336 Ras-related protein Rab-14 39.07 8 16 1 249276.046 14 +O18338 LD44762p 23.19 5 23 0 597.25165 1 +O44226 Elongin-B 97.46 10 30 10 1306522.4164 25 +O44434 QKR58E-3 24.92 7 8 5 114810.6851 6 +O46048 EG:133E12.4 protein 0.47 1 1 0 839.69385 1 +O46052 EG:152A3.3 protein 12.67 4 5 1 18311.29166 4 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 983281.78059 44 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 18470.938 1 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 174931.6695 8 +O61604 Fimbrin 37.34 25 48 3 1830903.9792 46 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 32566.44293 7 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 30825.8774 3 +O76521 Importin subunit alpha 5.52 3 5 3 57293.03903 4 +O76752 Sepiapterin reductase 28.74 7 12 7 233118.168 11 +O76877 EG:132E8.3 protein 20.62 3 4 3 236433.91600000003 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 2284564.77857 26 +O77259 EG:115C2.5 protein 4.0 1 1 0 22588.832 1 +O77425 Ribokinase 3.29 1 1 1 9282.783 1 +O77430 GEO01111p1 71.6 13 21 12 706399.6749 18 +O77434 EG:34F3.8 protein 39.34 7 15 1 146900.7073 13 +O77477 LD24471p 28.57 10 11 10 110584.445 9 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 32163.621 2 +O96692 small monomeric GTPase 21.98 4 7 1 86189.90037 7 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 75768.067 4 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 5770.61305 2 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 11373.079 2 +O97059 Ccp84Ab 36.2 6 6 0 180419.85270000002 5 +O97062 Ccp84Ae 75.96 13 31 13 398047.14346 27 +O97064 Ccp84Ag 37.17 5 9 5 60927.306 5 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 13378.216 1 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 1329393.9896 24 +O97111 LD29223p 11.97 4 4 4 37076.654800000004 4 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 6904.76 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 35259.6243 2 +O97365 BM-40 24.01 7 7 7 221662.079 6 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 1356380.9406 35 +O97428 Ciboulot, isoform A 29.46 4 5 1 57541.254499999995 4 +O97454 Protein BUD31 homolog 19.44 3 3 3 31133.5092 2 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 471010.33363 21 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 4371.972 1 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 7925971.133850001 60 +P92181 Cuticle protein DCP2 37.61 4 8 4 89119.619 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 26934.574 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 2376845.4935 45 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 263593.1264 8 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 62431.9443 3 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 1375617.87874 84 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 5959.044 1 +Q0E8P5 FI05614p 19.04 11 19 11 79879.6169 14 +Q0E8S7 Homer, isoform E 30.13 14 34 1 1383589.1578 33 +Q0E8U4 FI09636p 20.0 6 7 6 112355.26699999999 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 466354.3051 18 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 47574.6807 3 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 2247034.71103 42 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 1034422.78098 19 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 352534.96989999997 21 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 7052.5916 3 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 770573.29168 53 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 390703.9078 19 +Q0E9G4 CG1600-PA 3.41 1 3 0 44641.457 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 206607.8127 15 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 2747.5105 1 +Q0KHR7 Septin 15.46 9 14 0 417774.684 13 +Q0KHX7 FI18193p1 6.03 7 7 0 65249.0464 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 5809364.3808 105 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 62751.809 4 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 123378.3526 14 +Q0KI39 FI16806p1 18.15 3 6 1 18255.98465 4 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 409551.5505 17 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 59679.4642 9 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 87658.1188 4 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 6402.51066 2 +Q1RL12 IP16413p 54.97 15 74 2 100258.734 3 +Q24090 GH08712p 7.57 3 3 3 49342.897 3 +Q24253 AP complex subunit beta 20.2 15 23 15 757007.03896 22 +Q26459 EN protein binding protein 18.26 9 16 0 314058.658 15 +Q29QY7 IP15859p 9.86 1 1 0 76105.68 1 +Q2MGK7 GEO13330p1 20.47 3 5 3 98907.427 5 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 7668.737 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 30889.926 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 7787712.6952599995 109 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 35668.4299 4 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 357461.30799 10 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 19469.5201 3 +Q4QQ49 IP09595p 2.7 1 1 1 19368.611 1 +Q4QQ70 IP09819p 18.42 6 7 6 61194.22583 6 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 19005.2213 3 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 16546.1223 2 +Q4V619 IP07950p 6.9 2 3 0 29516.4865 3 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 232322.039 5 +Q500Y7 GEO11443p1 87.72 4 40 4 677978.35113 37 +Q59E01 FI02065p 3.0 2 2 0 1750.7495 1 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 42451.2485 3 +Q5BIA9 RE10908p 2.48 1 1 1 909.3636 1 +Q5LJT3 MIP01391p 10.93 2 5 2 79799.61596 5 +Q5U124 alpha-glucosidase 17.62 10 18 0 326563.2441 17 +Q5U126 GEO11286p1 59.42 7 37 7 3197599.8882999998 36 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 203988.54005 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 27470.31367 6 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 757958.4428600001 29 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 17517.0305 2 +Q6IGN6 HDC05827 42.05 4 5 4 97819.193 4 +Q6IGW6 GEO13367p1 44.23 2 4 2 65006.508949999996 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 1260992.378 14 +Q6IIF2 GEO11103p1 7.14 1 1 1 10468.194 1 +Q6IL43 GEO11093p1 13.25 1 2 1 80305.008 2 +Q6NL44 GH28815p 20.08 8 10 8 81534.6779 10 +Q6NLJ9 AT19138p 38.64 2 2 2 20794.239 2 +Q6NMY2 RH54371p 21.43 5 27 5 1904627.6002 22 +Q6NNV2 RE44043p 5.81 2 2 0 130597.333 2 +Q6NNV7 RH03309p 36.84 7 23 1 611570.5517 19 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 45016.418000000005 2 +Q6NP72 GEO09659p1 33.33 4 16 4 644462.3555000001 16 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 31332.494000000002 2 +Q76NR6 Regucalcin 83.07 23 133 0 7619179.9409 119 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 207696.00627 13 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 230817.8614 13 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 1169672.4212 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 9426.559 1 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 490663.2889 18 +Q7JQX9 FI14001p1 4.33 4 4 0 16020.515229999999 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 5699720.11884 96 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 292893.207 7 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 24195.0792 3 +Q7JRF1 RE48509p 6.5 2 3 1 14234.0013 3 +Q7JRH5 RE28271p 1.31 1 1 1 11366.672 1 +Q7JRL9 GH25289p 67.12 10 52 1 2668448.0765 46 +Q7JRN6 GH06388p 6.73 2 2 2 12719.371500000001 2 +Q7JS69 FI04632p 35.69 10 68 1 755553.237 8 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 20503.8816 3 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 965450.4178 24 +Q7JV09 GH28348p 4.84 5 5 2 21948.649299999997 5 +Q7JV69 SD11922p 11.76 4 9 4 103736.22783999999 7 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 13444.9707 3 +Q7JVH6 LD24696p 47.27 12 27 11 399248.8097 17 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 100197.5367 8 +Q7JVK6 Translin 24.26 6 8 6 142565.089 8 +Q7JVK8 GEO08987p1 53.42 7 13 7 776079.9734 13 +Q7JVM1 GH25962p 22.64 5 6 5 51208.3252 4 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 129911.5544 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 135075.9917 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 64691.5644 4 +Q7JW48 RE12410p 5.57 2 2 2 3214.889 1 +Q7JWD6 Elongin-C 46.15 5 17 5 1326805.9718 17 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 1569259.477 28 +Q7JWH5 RING-box protein 2 27.43 2 3 2 40278.582 3 +Q7JWQ7 RE01730p 5.34 2 3 2 12860.95107 3 +Q7JWU9 AT07420p 19.68 5 5 5 24408.4892 3 +Q7JWX3 GH10112p 22.48 7 11 7 184231.5244 11 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 144431.496 5 +Q7JX94 Phospholipase A2 15.61 3 3 3 9159.5569 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 158303.1346 7 +Q7JXB9 Endonuclease 10.65 3 3 3 55568.305 3 +Q7JXC4 CG6459 protein 33.46 6 38 6 2061029.5643 37 +Q7JXW8 Off-track2 4.39 2 2 2 14392.420999999998 2 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 131399.47950000002 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 503885.006 8 +Q7JYW9 Phosphotransferase 19.38 9 13 9 185147.20766000001 13 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 37420.614 5 +Q7JYZ0 lysozyme 39.13 4 9 4 224174.84887 8 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 296501.81987999997 17 +Q7JZB1 RE49860p 2.09 1 1 1 4418.5283 1 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 1275225.01668 29 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 2953.4603500000003 2 +Q7JZE1 Peroxin 11 6.22 2 2 2 51938.663 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 117305.85800000001 3 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 2931623.20242 33 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 135255.12814000002 13 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 644405.28266 23 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 1585661.537 17 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 36133.5933 4 +Q7K076 GEO08269p1 22.14 2 2 0 17679.9 1 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 14645742.34575 134 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 25702.748 1 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 1212566.27407 36 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 55875.2306 3 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 52741.634 3 +Q7K0S1 LD39211p 1.83 1 1 1 2881.7842 1 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 295621.57790000003 20 +Q7K0S6 LD36817p 19.03 8 9 8 144696.3793 9 +Q7K0W4 LD27203p 46.95 14 45 14 2028625.8117 43 +Q7K0X9 LD23667p 23.4 5 12 5 113572.75510000001 11 +Q7K127 Alpha-galactosidase 15.83 7 17 7 278710.61445 15 +Q7K148 Proteasome subunit beta 22.34 6 8 6 126397.46087 8 +Q7K159 LD06557p 22.47 5 6 5 60118.9095 6 +Q7K180 LD02709p 22.5 11 14 11 127489.3 13 +Q7K188 GEO05126p1 30.97 6 40 6 2495914.36723 37 +Q7K1C0 GH23780p 50.5 6 11 1 118978.83679999999 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 130438.995 5 +Q7K1C5 GH21176p 9.19 6 7 6 245821.9205 6 +Q7K1H0 GH09096p 20.06 7 8 6 78878.6804 7 +Q7K1M4 SD04017p 16.99 5 12 5 136675.54929999998 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 134494.029 5 +Q7K1W5 LD35843p 30.05 12 20 12 707466.0144 20 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 38959.007 2 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 726233.6835500001 25 +Q7K2E1 LD05247p 18.9 10 15 10 288930.28729999997 12 +Q7K2L7 GH27120p 28.14 4 11 4 623092.7664000001 11 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 36378.4826 3 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 17001.519 2 +Q7K2P3 GH20817p 58.7 13 31 1 528175.2693 23 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 143716.51147 8 +Q7K2W6 tyrosinase 22.32 13 21 13 73580.00588 14 +Q7K332 GH17623p 23.43 6 10 5 241715.23024 9 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 261049.2199 12 +Q7K3E2 LD34147p 59.21 30 59 30 1058241.87265 56 +Q7K3H0 LD28067p 1.44 3 3 0 52290.735 3 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 1283456.68208 35 +Q7K3N4 GH26015p 14.95 6 7 6 120161.4642 7 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 87161.69660000001 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 211730.829 11 +Q7K3W4 GH08941p 25.85 8 20 8 656970.36101 19 +Q7K3Y9 Spondin-1 1.26 1 1 1 760.1932 1 +Q7K3Z3 GH01724p 51.6 16 44 16 806716.52908 40 +Q7K485 Cathepsin D 35.71 9 36 9 1252983.82083 31 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 61673.393 4 +Q7K4I5 UBX domain-containing protein 7 4.03 2 2 2 326.0992 1 +Q7K4J7 LD36653p 7.38 2 2 2 9721.1197 2 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 3818.0825 1 +Q7K4T8 LD23856p 6.55 3 4 3 15809.6214 2 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 21389.276700000002 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 98985.73070000001 9 +Q7K519 GH16429p 17.66 5 8 5 52330.7206 7 +Q7K533 GH14572p 6.14 2 2 2 33200.92944 2 +Q7K549 GH13040p 18.08 8 8 8 59698.9152 8 +Q7K561 GH11294p 6.82 2 2 2 2669.2932 1 +Q7K568 GH10642p 8.33 3 3 3 34515.322700000004 3 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 1301584.2101 46 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 292689.58280000003 12 +Q7K5M6 GH04176p 20.95 6 11 6 141327.8094 10 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 410645.9322 24 +Q7K860 FI07231p 39.22 7 12 7 831085.366 11 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 284895.58394 13 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 1453.35635 2 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 41320.3716 4 +Q7KK90 GH14654p 55.8 9 28 9 1742460.0097 24 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 347123.22035 17 +Q7KLE5 Amphiphysin 49.67 26 71 3 2404096.3369 62 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 92506.21685 10 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 608510.31477 13 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 176239.09 7 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 30084.4156 4 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 519592.7949 21 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 1582556.06378 53 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 69292.2006 5 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 674653.0099 35 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 4287304.73398 101 +Q7KND8 FI09619p 3.7 3 3 3 64119.1767 3 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 656687.3408 13 +Q7KRT4 GH07253p 4.94 2 2 0 9203.459 2 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 28507.14127 4 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 40523.3441 6 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 290640.2297 10 +Q7KSE4 GH05443p 2.78 2 2 2 16438.292 2 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 800652.6898 15 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 1624749.0059 23 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 29000.945 2 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 10302.3115 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 535376.34507 21 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 1175173.1221399999 43 +Q7KT58 GH08155p 3.52 2 3 2 33822.518 3 +Q7KT70 FI18641p1 2.93 3 3 3 24913.012300000002 3 +Q7KTA1 HL01444p 17.1 7 10 7 137865.8204 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 318978.43929999997 25 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 3528140.7664 62 +Q7KTN9 FI01009p 3.11 2 2 0 9686.9051 2 +Q7KTP7 LP22840p 31.49 5 7 5 207767.5077 7 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 2031416.2244 58 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 481824.458 16 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 629276.9851 23 +Q7KUD4 phospholipase A2 2.93 3 3 0 4138.1022 2 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 1627692.2918 14 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 54614.947 3 +Q7KUT5 Protein MIX23 26.89 4 6 0 62105.0793 6 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 94899.31259999999 6 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 30328.576 2 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 371681.38190000004 16 +Q7KV27 alanine transaminase 51.76 27 130 0 8261481.3204 120 +Q7KV34 Pinkman 38.9 26 40 26 1302845.2268 39 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 21517.496 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 9815.342 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 89511.4005 14 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 29837.959 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 6551508.0831 83 +Q7KY04 small monomeric GTPase 21.13 4 7 3 18024.4103 2 +Q7PL91 GEO11417p1 19.15 3 8 3 527448.6658000001 7 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 8441.3972 2 +Q7PLI0 P120 catenin 15.62 12 15 12 233775.5662 13 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 417685.1131 14 +Q7PLS1 LD01937p 15.76 6 8 0 254696.78220000002 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 141926.3098 6 +Q7YU88 SD08871p 2.84 3 3 0 5406.36595 3 +Q86B44 Glutathione synthetase 13.17 8 13 0 182089.6361 10 +Q86B74 WASp, isoform C 12.55 5 5 0 52105.523 5 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 67175.8351 4 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 14804.126 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 298784.1397 21 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 160310.2728 9 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 319530.2255 16 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 638382.4506 15 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 1328606.4738 15 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 600775.96143 25 +Q86BS3 Chromator, isoform A 28.19 21 40 21 546190.8665 32 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 50197.7514 5 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 497415.063 20 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 24146.005299999997 3 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 117222.146 4 +Q8I0D4 RE20510p 28.36 21 42 0 1022369.0009 39 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 41695.6193 3 +Q8I0P9 acid phosphatase 1.76 1 1 0 48056.633 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 547596.5612 18 +Q8I930 GH14147p 2.22 1 1 0 7079.1763 1 +Q8I941 GH16843p 35.59 10 23 10 597517.1971 23 +Q8IGY1 RE08101p 30.52 35 241 0 15705949.26864 116 +Q8IH23 GEO02102p1 20.74 4 12 4 407934.438 11 +Q8IM93 FI18814p1 37.97 17 28 17 461759.83814 25 +Q8IMF4 RE24176p 5.23 3 5 0 37426.2086 5 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 541084.88874 26 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 48270.23595 4 +Q8IMQ8 RH29536p 42.94 12 32 0 1198514.2933 31 +Q8IMT3 IP12392p 6.19 3 3 2 39755.6123 3 +Q8IMT6 FI01822p 8.29 4 5 4 45656.156 4 +Q8IMU2 RE10237p 6.53 2 2 0 43920.689399999996 2 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 15566.639799999999 2 +Q8IMX4 FI04408p 6.6 2 4 0 18192.444 4 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 103661.02481999999 6 +Q8IN49 MIP05539p 9.17 8 10 8 122458.49274 9 +Q8IN51 FI17609p1 37.59 7 17 7 119843.88173 16 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 96219.079 3 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 22818.423000000003 2 +Q8INH5 Aminopeptidase 7.53 7 8 0 55209.2892 8 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 20330.217 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 7012.3267 1 +Q8IP52 RE16941p 2.66 3 3 3 15172.1237 3 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 135136.418 8 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 419976.71385 22 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 54812.3368 2 +Q8IP97 Peroxin-19 52.05 11 27 11 468309.9695 23 +Q8IPA5 RE15581p 5.36 1 2 0 27984.833 2 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 129732.959 2 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 148298.33669999999 10 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 2502018.02549 71 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 59847.090000000004 4 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 27514.2837 3 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 708846.8096 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 12661.305 1 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 127278.5762 6 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 17049.9882 2 +Q8IPT9 SD05439p1 43.49 11 21 0 541119.0869 14 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 973912.9343 32 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 39901.691900000005 6 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 15422.0536 2 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 13116.615699999998 2 +Q8IQB7 MIP21654p 9.44 3 4 3 54658.975 3 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 22018.8999 3 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 52019.629 3 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 33974.418 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 89086.97232 7 +Q8IQH0 FI12817p 5.37 8 8 1 43186.9233 7 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 97688.26269999999 7 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 3437.5441 2 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 175853.6983 23 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 58186.69 2 +Q8IQW5 RE23625p 73.96 13 69 3 2593234.8997299997 56 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 31004.76726 4 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 7579.47 3 +Q8IR76 FAD synthase 17.35 5 5 0 29573.102899999998 4 +Q8IRD0 RH17559p 40.82 2 7 2 117528.277 6 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 4512335.43246 61 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 207547.09279999998 17 +Q8IRI5 Trio, isoform D 10.7 8 10 0 130803.1851 10 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 7354988.3166 137 +Q8MKJ5 GEO08105p1 13.27 1 1 1 864.71344 1 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 18469.9985 2 +Q8MLP9 GEO08457p1 33.93 4 5 4 44491.7592 5 +Q8MLQ0 FI14118p 21.05 2 4 2 121178.3747 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 459444.553 14 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 219087.14077 13 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 490294.2305 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 2560361.11364 74 +Q8MQP2 MIP16184p 7.0 2 2 0 18347.139 2 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 18758.6045 2 +Q8MRM0 GH16740p 35.44 8 18 8 524937.6490999999 17 +Q8MRT7 SD26038p 9.2 2 2 2 23834.792 2 +Q8MRW1 SD19278p 5.83 1 1 1 3389.172 1 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 14772.0766 3 +Q8MSI2 GH15296p 82.01 19 124 19 16420877.3524 109 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 24892.243219999997 4 +Q8MST5 Tubulin beta chain 45.08 17 105 0 547705.0660999999 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 2666917.0645 62 +Q8MZ07 GEO07581p1 17.81 3 5 3 100123.2104 5 +Q8MZI3 RNA helicase 18.34 13 16 3 187118.3156 12 +Q8SWS2 RE29468p 60.95 6 30 0 608252.15086 25 +Q8SWS3 RE26528p 20.44 2 4 2 39965.299 4 +Q8SWZ6 RH51312p 8.33 2 2 2 32261.469999999998 2 +Q8SX06 GEO08318p1 16.67 2 3 2 48303.021 3 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 22568.0944 3 +Q8SX35 GEO07743p1 26.53 3 4 0 43393.6137 4 +Q8SX50 RE04530p 17.3 6 7 0 99969.97750000001 6 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 57090.447 3 +Q8SX57 LD44221p 47.08 8 17 8 221107.73857 15 +Q8SX78 LD05679p 17.93 7 7 7 55399.6757 7 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 48299.732299999996 4 +Q8SXC2 FI04487p 9.11 5 5 5 50563.4004 5 +Q8SXD5 GH02216p 55.13 11 33 2 1170452.0823899999 31 +Q8SXE1 RH69521p 2.6 1 2 1 3747.2346000000002 2 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 90825.11975 5 +Q8SXF2 RH40246p 7.01 3 4 3 57984.909 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 13848.9063 2 +Q8SXK0 RE18748p 2.91 1 1 1 11403.504 1 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 309501.3602 21 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 4948.992 1 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 470301.11915 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 17601.372300000003 4 +Q8SXS0 RE40914p 12.25 5 5 5 25674.4666 3 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 938720.16158 20 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 3985.76466 2 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 75963.73 1 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 6695.6617400000005 3 +Q8SY67 lysozyme 14.47 2 3 2 9648.0982 2 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 298131.946 6 +Q8SYC4 RE68566p 1.72 1 1 1 37264.344 1 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 2002899.47412 52 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 617622.8667 18 +Q8SYH8 RE57644p 18.68 5 10 1 68064.3424 9 +Q8SYJ2 GEO09626p1 67.47 9 59 9 4901552.1794 57 +Q8SYN0 RE52086p 9.3 4 5 4 24797.790670000002 5 +Q8SYQ4 RE42475p 70.27 11 44 11 1667317.7659 39 +Q8SYQ8 RE40412p 19.85 3 3 3 56694.369000000006 3 +Q8SZK5 RH26533p 10.29 3 3 3 18317.6206 3 +Q8SZK9 HL04814p 48.48 12 60 12 5328256.4276 55 +Q8SZM2 RH04334p 25.19 7 27 7 1788809.0364 26 +Q8SZN1 GEO08217p1 51.61 7 29 3 655880.38036 28 +Q8T0I9 GH27479p 16.47 7 12 1 283252.415 10 +Q8T0J5 GH26851p 41.11 12 33 0 1525649.442 30 +Q8T0N5 GH17516p 19.21 6 9 6 336336.156 8 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 108397.06210000001 9 +Q8T0V2 GH02495p 19.91 8 13 0 174524.8466 10 +Q8T389 Endophilin B 40.74 15 54 0 4348.574 1 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 27590.4842 3 +Q8T3W8 Venom allergen-1 9.54 3 3 0 132639.96899999998 3 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 5046.116 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 793590.57425 34 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 2410098.1194 58 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 32701.2055 3 +Q94513 Boundary element associated factor 18.79 5 10 1 135916.59840000002 9 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 64826.227 7 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 12981.66356 2 +Q95NU8 GH16255p 13.57 8 12 8 157955.37514 11 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 3556.2642 1 +Q95PE4 GEO07784p1 6.17 1 1 1 18235.457 1 +Q95R34 GH16463p 9.71 3 3 3 36899.53086 3 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 72658.6367 3 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 67335.286 5 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 13493815.18479 138 +Q95RC5 LD44506p 5.31 3 3 3 30114.523 3 +Q95RE4 LD37574p 41.48 11 18 0 48759.20397 11 +Q95RF6 LD34461p 34.5 4 13 4 207566.1539 11 +Q95RI2 LD28549p 27.78 8 12 8 141088.6187 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 40483.1798 4 +Q95RQ1 LD16414p 3.32 2 2 2 9550.043 1 +Q95RR6 LD15002p 64.6 17 61 0 137403.235 2 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 104199.66189999999 7 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 385094.74 2 +Q95RY2 LD01461p 48.09 10 18 2 482270.9141 13 +Q95SH0 GH26463p 1.52 2 2 2 12800.243 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 353396.86826 12 +Q95SH7 GH26007p 8.57 2 3 2 27396.105799999998 3 +Q95SI7 GH23390p 65.87 15 59 15 1944547.53894 53 +Q95SN8 GH12395p 21.83 5 8 5 171714.3893 8 +Q95TK5 LD44914p 22.77 9 11 8 96085.2172 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 910843.4585000001 31 +Q95TP0 LD34582p 3.1 1 1 1 9644.416 1 +Q95TZ7 GH19182p 78.36 26 115 0 3266617.06775 87 +Q95U15 GH14252p 75.64 27 227 0 3377607.2108 33 +Q95U34 GH11113p 22.45 11 21 11 616140.06577 19 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 159557.0263 8 +Q960D4 SD06560p 25.8 16 21 1 277409.02175 20 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 6209099.66104 80 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 309288.5212 24 +Q961A8 LD25351p 1.59 1 1 0 776.0645 1 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 91489.978 4 +Q961B9 LD24073p 6.28 3 4 3 45910.681599999996 4 +Q961C8 LD22649p 10.93 4 5 0 17423.8554 4 +Q961E7 phosphorylase kinase 7.16 4 5 1 30838.1701 3 +Q961Q8 GH10454p 6.42 3 3 3 37150.2334 2 +Q961T9 GH07914p 29.41 6 10 6 249053.46459999998 10 +Q961X4 Combover, isoform B 11.74 9 14 0 89534.5892 13 +Q966T5 Paxillin, isoform D 28.93 7 18 3 115241.55900000001 4 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 89146.65825 5 +Q9I7I3 GH12831p 9.56 3 3 3 38919.057400000005 3 +Q9I7J0 GH21596p 69.23 11 41 11 1514057.31074 33 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 9809.097 1 +Q9I7L9 Uncharacterized protein, isoform A 4.28 1 1 0 719.60364 1 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 886674.6113 19 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 795220.22284 24 +Q9NCC3 Sorting nexin 9.03 5 7 5 106076.0287 7 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 62192.2294 4 +Q9NG60 Eukaryotic translation initiation factor 2D 3.37 1 1 1 545.7742 1 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 171687.7465 6 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 261909.4961 14 +Q9U6P7 FI18813p1 11.39 5 8 5 147077.00280000002 7 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 1911771.50207 57 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 40861.7615 4 +Q9V393 Kurtz arrestin 9.57 4 5 4 48229.9275 5 +Q9V396 Carbonic anhydrase 64.44 15 34 15 2035731.2271 33 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 59004.28 3 +Q9V3C8 DShc protein 1.71 1 1 1 10828.165 1 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 131278.91443 10 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 64199.541 3 +Q9V3E7 LD24793p 39.85 12 24 12 368780.57465 23 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 2543.9976 1 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 453144.0328 12 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 5248.3696 1 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 50541.026 2 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 226520.5512 13 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 1486471.65286 45 +Q9V3N9 B6 1.79 1 1 1 33752.41 1 +Q9V3P3 LD45860p 35.1 9 21 9 595392.951 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 75761.217 4 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 7256.89486 2 +Q9V3T8 LD32469p 14.36 3 3 3 34722.929000000004 3 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 1793271.1463 32 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 963834.6546400001 30 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 2750084.7919 47 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 580098.0387 25 +Q9V3W2 GM23292p 61.68 14 52 14 1715119.2280599999 47 +Q9V3W7 LD40489p 47.45 11 20 11 121548.91676 13 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 395539.86215 23 +Q9V3Y4 LD43650p 8.23 2 3 2 6898.0493 1 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 927186.19586 32 +Q9V3Z4 GH11341p 27.89 14 24 14 491527.41099999996 19 +Q9V3Z9 HL02234p 42.6 15 43 15 3732933.87842 37 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 16981.2321 3 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 945239.3188 29 +Q9V406 Activator protein 4 9.35 6 8 6 109153.12327000001 7 +Q9V420 FI02878p 19.66 7 10 7 207124.0768 8 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 464271.931 13 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 27276.0424 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 966414.0913 21 +Q9V455 Importin subunit alpha 19.84 9 23 9 630776.534 23 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 981758.4096499999 38 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 1046205.1929 55 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 1950530.1038 53 +Q9V4E0 Complex I-49kD 33.97 12 20 11 371841.5005 20 +Q9V4E7 Transporter 3.46 3 4 2 27820.375 3 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 381538.6795 12 +Q9V9Q4 LD43819p 34.18 13 24 13 747902.97852 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 164530.2205 5 +Q9V9T5 GM14617p 2.44 2 2 0 12783.9238 2 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 21553.774 2 +Q9V9U0 RE35358p 10.11 2 3 2 56271.563 3 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 233920.7573 9 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 4004.081 1 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 381647.24475 15 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 1711443.1792 25 +Q9V9W4 GH08048p 1.69 1 1 1 1959.7717 1 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 56047.8931 5 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 48203.07686 8 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 2170704.7901 58 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 74562.8173 7 +Q9VA34 LP06141p 2.47 3 4 3 22461.3103 4 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 203307.7119 15 +Q9VA41 GEO08227p1 52.87 7 17 3 126766.0649 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 850943.36475 23 +Q9VA56 GH23271p 54.34 20 59 1 6261.2583 1 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 49774.09529999999 4 +Q9VA71 FI19924p1 7.86 3 3 3 451.923 1 +Q9VA76 IP18706p 16.71 5 7 5 41941.3717 6 +Q9VA81 GEO10172p1 13.57 2 3 2 39954.4015 3 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 15522.5359 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 365711.69396 13 +Q9VAA6 GEO12235p1 19.62 3 4 3 45817.3359 4 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 100669.0402 10 +Q9VAC1 GM14349p 62.05 20 122 20 7924964.56955 111 +Q9VAC4 GEO09167p1 55.77 8 20 8 884783.9759 20 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 34569.0784 5 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 10715.657500000001 3 +Q9VAD7 RH37294p 5.2 1 1 1 2122.3062 1 +Q9VAG3 trypsin 24.11 5 8 5 170501.21540000002 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 246366.99723 16 +Q9VAI9 GEO07291p1 62.25 9 53 5 4312681.39887 48 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 166232.8333 9 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 8303.5426 3 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 1256206.66852 49 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 7002141.76005 97 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 47755.3256 4 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 8054.544 2 +Q9VAU6 LD27564p 2.99 2 2 2 9438.7183 2 +Q9VAV2 FI21480p1 13.07 11 15 11 241777.7461 15 +Q9VAY0 Neprilysin 7 3.91 3 3 3 20287.4512 3 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 1771859.7761 68 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 41102.466 2 +Q9VAY9 GH07821p 8.65 3 3 3 16818.033300000003 3 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 997419.1642 33 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 1587328.8773 44 +Q9VB17 IP11341p 10.74 3 3 3 45178.2425 3 +Q9VB22 LD33695p 18.39 9 13 9 75309.36005 13 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 348701.3594 20 +Q9VB51 GEO08385p1 13.33 1 1 1 4139.94 1 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 484401.455 13 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 33640.731999999996 2 +Q9VB69 Malic enzyme 29.5 16 20 2 178419.209 18 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 50549.731 3 +Q9VB77 IP09938p 7.01 2 5 2 45405.071 4 +Q9VB79 IP09473p 17.65 6 14 6 263278.7443 13 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 1356859.4786999999 39 +Q9VB86 LP07342p 16.78 3 6 3 37795.7877 5 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 757667.1179 21 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 3903.5621 2 +Q9VBC9 Beaten path VII 7.74 3 3 3 40308.3196 3 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 3224676.75276 78 +Q9VBI3 RH72336p 22.66 7 16 7 354623.9865 14 +Q9VBL3 GH01188p 5.83 3 3 3 35809.6532 3 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 81220.902 2 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 7153.406 1 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 5707393.19151 88 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 62141.058000000005 3 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 1242393.5894 25 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 88724.023 7 +Q9VBT2 IP11926p 4.33 2 2 2 19605.8934 2 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 12616.973600000001 2 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 2404247.779 11 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 91271.905 4 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 27032.658 1 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 2268960.1094 44 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 26992.613800000003 4 +Q9VC06 LD37516p 15.62 11 15 11 102787.8461 13 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 20110.229 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 456018.9809 27 +Q9VC30 RE05274p 18.28 3 6 3 20056.889000000003 4 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 314025.1016 8 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 612460.3476 16 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 214582.6938 11 +Q9VC58 Syntaxin-18 4.05 2 2 2 19983.001 2 +Q9VC66 AT25567p 19.46 8 9 8 214811.81 9 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 65905.76563 8 +Q9VC87 RE57978p 2.84 1 1 1 12875.44 1 +Q9VCB9 FI08802p 15.16 4 4 4 124069.86499999999 4 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 6254.508099999999 3 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 490716.2786 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 152078.77447 5 +Q9VCF8 LD23561p 22.64 7 9 7 158933.75456 9 +Q9VCI4 LD32918p 1.13 1 2 1 4422.577 1 +Q9VCI7 LD02979p 17.15 6 9 1 127392.241 7 +Q9VCK6 LD34157p 18.02 7 8 7 130383.8083 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 36101.9777 4 +Q9VCR4 FI17836p1 5.18 4 6 4 38232.771160000004 5 +Q9VCR9 RH48101p 43.21 13 26 13 597933.63315 23 +Q9VCT4 Klingon 4.4 2 2 2 14827.5079 2 +Q9VCU0 GEO02312p1 14.17 2 7 2 165287.9171 7 +Q9VCU1 FI07649p 1.31 1 1 1 6370.942 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 39905.901 2 +Q9VCW2 Cardinal 4.82 4 4 4 65749.1526 4 +Q9VCW6 GCS light chain 33.33 11 27 11 972424.9434 26 +Q9VCZ2 FI07970p 2.48 1 1 1 11368.5205 1 +Q9VD00 FI07666p 34.53 8 15 8 421567.47566999996 12 +Q9VD01 LP12095p 4.55 1 1 1 102879.336 1 +Q9VD02 GH14779p 30.73 4 11 4 256529.6282 11 +Q9VD13 GH02671p 10.79 6 7 0 47837.2174 7 +Q9VD14 GH07286p 9.57 6 9 6 201826.346 9 +Q9VD29 small monomeric GTPase 49.74 9 33 9 1347311.25349 31 +Q9VD30 GH05294p 70.16 12 36 12 1366359.19033 30 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 29291.2296 3 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 4890722.12207 89 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 44230.477399999996 4 +Q9VD68 GH19849p 6.84 3 3 3 34091.0072 3 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 80982.891 2 +Q9VDC0 GH01837p 24.0 5 14 5 288895.7092 14 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 7437.644 1 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 37061.51 1 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 609212.5298 15 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 1172735.3219599999 13 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 366572.8926 18 +Q9VDH3 GH08630p 55.7 12 33 12 1240263.0398 30 +Q9VDI1 LD46328p 48.58 21 60 0 1212799.53115 53 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 41248.856 5 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 165186.8745 10 +Q9VDK2 GH15831p 1.18 1 1 0 7653.639 1 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 197021.9306 20 +Q9VDK9 GH12359p 4.71 3 3 3 15373.2057 3 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 64732.902 4 +Q9VDL5 GEO09602p1 13.43 1 1 1 19428.78 1 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 381332.33926000004 14 +Q9VDQ3 Identity crisis 6.14 3 3 3 22922.0567 3 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 827336.01145 22 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 6507.527 1 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 809378.6379699999 18 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 709.17236 1 +Q9VDU7 nicotinamidase 21.57 7 17 7 326637.4526 16 +Q9VDV2 AT06125p 6.34 3 3 2 47882.705 2 +Q9VDY8 MIP08680p 65.44 17 56 1 2154525.41005 49 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 1766032.7153999999 49 +Q9VE08 GH10002p 10.8 2 2 2 74984.31760000001 2 +Q9VE12 LD27322p 8.02 3 3 3 46055.475699999995 3 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 128187.99 5 +Q9VE31 GEO12059p1 9.91 1 1 1 1621.0758 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 80681.167 6 +Q9VE56 FI17806p1 11.22 3 3 3 192233.995 3 +Q9VE57 GEO10850p1 5.52 1 2 1 33089.3275 2 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 42452.8761 4 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 46162.2123 6 +Q9VE94 LD14127p 5.73 2 3 2 17752.4997 2 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 230115.6225 8 +Q9VEA7 FI01460p 8.99 1 3 1 134493.95549999998 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 24720976.87599 252 +Q9VEB7 AT04491p 2.05 1 1 1 38099.688 1 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 122222.04000000001 6 +Q9VEC8 RE23139p1 26.92 4 5 4 116396.68304999999 5 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 52901.831000000006 4 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 3327.85774 2 +Q9VEG8 RE59232p 13.2 3 5 3 70806.5432 5 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 62028.6606 2 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 1266775.639 25 +Q9VEJ9 Curly Su 4.52 3 3 3 20746.5579 3 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 53772.31 3 +Q9VEK8 GH07711p 35.28 12 21 12 715448.953 21 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 163656.30197 14 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 20637.746 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 38324.4339 4 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 541314.5874 21 +Q9VEP8 GH11385p 13.77 10 12 10 216067.4223 12 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 177389.1684 12 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 86314.1835 5 +Q9VES8 RE28913p 26.26 8 9 8 388371.263 9 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 126778.86 1 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 293088.74962 19 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 36329.691 3 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 19704.2946 2 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 234652.7458 17 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 30176.8603 3 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 1459783.07376 43 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 102561.982 9 +Q9VF15 GEO09476p1 65.36 10 39 7 1339777.5278 36 +Q9VF23 arginine kinase 3.28 2 2 2 138785.653 2 +Q9VF24 Crossveinless d 5.17 8 10 8 92537.7062 8 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 286762.48600000003 9 +Q9VF39 FI01459p 15.0 6 10 6 86408.4567 8 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 183157.7259 12 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 72626.6283 5 +Q9VF77 FI16517p1 13.42 5 6 5 89698.729 5 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 66554.2283 3 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 76014.929 5 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 175277.381 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 40467.7089 4 +Q9VFC7 Mf5 protein 78.08 31 236 0 6627659.64258 152 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 10430738.302 101 +Q9VFI3 GEO08281p1 45.19 3 10 3 101081.3628 7 +Q9VFM0 GH19262p 7.14 4 5 4 20679.61523 4 +Q9VFN7 GEO07678p1 19.5 3 9 3 320610.69700000004 9 +Q9VFN9 GEO07882p1 41.94 6 7 6 106623.0162 7 +Q9VFP0 RH07106p 23.51 8 9 8 81380.1327 9 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 836853.80357 23 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 552534.5814 15 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 16267.460599999999 3 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 17147.633 2 +Q9VFT4 AT27578p 13.48 9 12 9 87631.5459 8 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 37708.646 3 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 1667444.9465 37 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 114408.133 3 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 84064.43299999999 3 +Q9VG01 RE12073p 1.88 1 1 1 7082.443 1 +Q9VG04 Protein MEMO1 5.42 2 2 2 58326.989 2 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 7999.3739 2 +Q9VG23 GH22994p 59.07 11 45 1 2280940.86302 42 +Q9VG26 MIP06012p 30.05 7 25 7 953268.50329 23 +Q9VG31 Malic enzyme 16.91 13 17 0 439908.9826 17 +Q9VG33 Sulfurtransferase 67.27 7 15 7 672479.6028 15 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 131394.012 4 +Q9VG51 Sorting nexin-3 34.13 7 25 7 1354978.2843 19 +Q9VG62 Toys are us 6.19 3 3 3 30866.9525 3 +Q9VG69 LP03547p 35.71 12 26 12 845535.1308 23 +Q9VG81 RH49330p 15.78 7 8 7 34211.269 7 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 114219.09967000001 4 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 426991.75801 16 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 4173.3384 1 +Q9VGA3 LD12305p 33.64 7 18 6 569628.6423 16 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 3280.1724 1 +Q9VGE4 FI04457p 4.49 6 6 6 32986.999299999996 4 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 16516.696770000002 4 +Q9VGF3 IP11040p 9.86 4 5 4 85719.591 5 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 1127245.7142 29 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 303750.958 5 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 122660.8236 10 +Q9VGL0 LD43047p 2.84 3 3 3 22838.9675 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 13719924.2679 156 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 56725.8156 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 3742180.4196 59 +Q9VGQ8 Arfaptin 11.55 4 5 4 76625.0186 5 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 30481.3649 4 +Q9VGS3 RH44771p 14.04 4 12 4 413103.2134 10 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 2042.2383 1 +Q9VGT3 GM04645p 1.89 1 1 1 1997.783 1 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 58626.0746 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 58062.656 2 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 62270.971999999994 2 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 63529.608 5 +Q9VGY2 Peptide deformylase 14.71 4 4 3 54630.86 4 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 97430.2716 11 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 71611.3505 5 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 243424.70407 10 +Q9VH37 IP06524p 14.29 3 4 3 90218.1914 4 +Q9VH64 LD29322p 26.91 9 14 9 212792.9833 14 +Q9VH66 FI18258p1 27.9 6 12 6 210464.76669999998 12 +Q9VH72 TA01656p1 37.25 6 14 6 232663.9999 12 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 410726.4776 22 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 31422.8396 4 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 7480.82375 2 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 174987.2679 10 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 106778.4396 5 +Q9VHA8 LD25575p 13.05 7 10 7 455199.3979 10 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 545745.5949 17 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 44358.1753 5 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 115714.1649 12 +Q9VHC7 FI21236p1 32.28 15 32 8 798462.53755 22 +Q9VHE3 GH05665p 6.25 2 2 2 11610.8403 2 +Q9VHE4 omega-amidase 20.85 7 15 7 298466.6167 15 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 274212.3245 10 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 61757.5053 4 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 37952.7551 4 +Q9VHH8 Beag 6.46 4 4 4 26027.1294 4 +Q9VHI1 Hyrax 6.32 3 3 3 23450.722 3 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 820642.1338 17 +Q9VHJ2 LD32381p 2.65 1 2 1 57157.881 2 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 7699.7754 1 +Q9VHJ7 LD41978p 3.96 3 4 3 25483.191899999998 4 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 1798419.6146 41 +Q9VHM3 LD30467p 9.09 4 4 4 20272.2127 3 +Q9VHN4 GH14121p 10.92 3 3 3 37585.885599999994 3 +Q9VHN7 transketolase 35.46 19 30 1 528915.0899 25 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 5408.4927 1 +Q9VHR5 Veneno 3.27 2 2 2 1881.2461 1 +Q9VHT3 CG9617 protein 23.6 5 7 5 107822.0893 7 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 54413.3356 6 +Q9VHX2 GH08043p 7.23 4 5 4 34551.478299999995 5 +Q9VHX4 LD24679p 68.09 21 107 21 7201564.8312 97 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 85080.24960000001 5 +Q9VI09 GH14494p 52.48 7 35 7 916859.39695 33 +Q9VI21 Dementin, isoform D 3.92 3 3 0 13867.494 3 +Q9VI24 LD25151p 3.61 1 1 1 5671.8486 1 +Q9VI53 LD44267p 9.24 4 6 4 142168.83000000002 6 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 16452.553 1 +Q9VI64 LD30995p 48.16 14 49 14 1944064.6711 44 +Q9VI66 GH28833p 7.57 2 3 2 39518.115 3 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 8718.952 2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 26689.431600000004 2 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 24447922.57928 271 +Q9VIF2 GM01519p 9.72 5 6 5 214124.456 6 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 159250.596 8 +Q9VIH1 CG9273 protein 16.26 4 5 4 42779.659 5 +Q9VII5 GEO08323p1 20.75 4 7 4 97522.73389999999 6 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 106049.29699999999 2 +Q9VIJ3 FI14214p 17.78 3 4 1 8410.0569 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 2321.8909 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 14277.73986 4 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 80184.52979999999 10 +Q9VIL2 LD19544p 14.9 4 8 4 104173.224 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 208955.39620000002 9 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 81420.68299999999 3 +Q9VIQ5 RH02620p 40.64 8 10 8 132646.826 7 +Q9VIQ6 FI17342p1 4.82 1 2 1 5947.785 2 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 1534172.56956 45 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 15500.272099999998 4 +Q9VIU3 FI23988p1 4.24 2 2 2 2078.4275 1 +Q9VIV6 GH04973p 11.11 4 6 4 173000.7811 6 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 29514.492000000002 2 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 1791.3071 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 140892.60342 7 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 124801.11499999999 9 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 616902.1101 24 +Q9VJ22 GH09876p 8.0 2 2 2 13255.3482 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 90152.0554 4 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 440044.40499999997 10 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 100990.90950000001 7 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 1297615.1968 37 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 207572.202 8 +Q9VJ59 PRA1 family protein 8.7 2 3 2 72906.5467 3 +Q9VJ60 GM16226p 10.28 3 5 3 107487.7455 5 +Q9VJ61 SD03870p 1.64 1 1 1 16627.092 1 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 163505.4015 10 +Q9VJ80 LD42267p 7.96 10 11 10 84749.2346 10 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 56270.56386 11 +Q9VJA9 GH07373p 4.86 3 3 0 30686.299 3 +Q9VJC0 GEO08203p1 37.96 5 6 5 71510.0433 5 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 82607.1567 6 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 309002.6521 19 +Q9VJD4 LD24721p 32.33 11 29 11 1356781.61 26 +Q9VJE3 LD24839p 7.67 4 5 4 35595.007 3 +Q9VJH8 FI03416p 2.58 2 2 2 39387.466 2 +Q9VJI5 Protein yellow 9.71 5 6 5 243444.6343 6 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 100381.02914 6 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 913241.037 13 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 16092.164999999999 2 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 198977.255 5 +Q9VJQ3 Protein yellow 25.11 11 28 10 1357501.7616 26 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 11628.11567 3 +Q9VJU6 IP09831p 3.17 1 1 1 9941.128 1 +Q9VJU8 GH23407p 10.27 5 6 5 58272.8393 4 +Q9VJZ1 FI21342p1 5.49 3 4 3 47977.5828 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 2498339.4326 34 +Q9VJZ5 LD07294p 26.58 8 10 8 134778.3033 8 +Q9VJZ6 LD40224p 67.13 11 30 11 511922.01033 21 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 248599.0893 12 +Q9VK11 GH15921p 27.51 7 18 7 388673.7974 16 +Q9VK12 GH20621p 62.0 17 84 17 4127312.8545999997 71 +Q9VK18 LD36945p 6.59 3 3 3 17672.2367 3 +Q9VK19 FI07225p 9.35 2 2 2 11209.436000000002 2 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 32.06 14 22 1 628.61554 1 +Q9VK39 FI09204p 34.91 4 17 4 282233.093 13 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 5477.95835 4 +Q9VK59 LD23647p 28.63 23 34 23 381897.91094000003 23 +Q9VK60 GH25425p 58.37 13 49 13 2158207.56406 45 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 749247.9535 38 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 143448.7301 8 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 223309.45899999997 9 +Q9VK99 Atilla, isoform B 51.75 7 32 7 851597.4931 23 +Q9VKA1 FI02817p 15.58 3 3 3 107682.02563 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 17548.009 2 +Q9VKC8 FI03495p 9.17 5 5 5 209037.3454 5 +Q9VKD9 MIP16835p1 1.35 1 1 1 912.10266 1 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 14212955.51107 296 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 43502.6589 4 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 32371.38686 2 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 7141.761 1 +Q9VKI8 GH03305p 67.77 20 107 20 4928971.22126 100 +Q9VKJ4 Csl4 14.22 3 4 3 75862.8786 4 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 2529245.1037 66 +Q9VKM7 AT01533p 8.57 5 12 1 368807.5527 11 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 11679.5169 2 +Q9VKQ5 GEO07393p1 6.45 1 1 1 12583.4375 1 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 32595.4354 5 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 625362.8227 12 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 20964.341 2 +Q9VKU5 LD37206p 10.09 2 2 2 18846.7042 2 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 1214218.0858 37 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 29004.117 2 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 65905.1297 4 +Q9VKW1 LD41958p 2.21 1 1 1 4644.1084 1 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 123389.7435 10 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 6423259.53713 124 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 283105.852 7 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 31055.79683 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 440357.18631 23 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 1777382.2061 41 +Q9VL02 GH08677p 10.57 4 4 1 43043.5297 3 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 145346.1229 10 +Q9VL16 RE45833p 30.77 8 26 8 1418486.9849999999 22 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 4374.628 1 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 27998.8845 2 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 3747.9993 1 +Q9VL57 RE10231p 4.75 3 3 2 43571.656 3 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 89927.18400000001 3 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 145710.566 7 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 2001223.89744 29 +Q9VL70 HL08109p 83.17 25 129 25 10475917.75905 119 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 172040.68709999998 7 +Q9VL91 LD23102p 1.8 1 1 1 915.5097 1 +Q9VL93 GEO07195p1 13.64 2 2 2 29578.038 2 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 128861.26699999999 6 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 2118212.2522 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 3250441.644 67 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 87710.9178 5 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 23638.73 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 711129.3335000001 19 +Q9VLP0 IP04187p 11.23 2 5 2 73958.017 5 +Q9VLP1 GEO08095p1 37.84 6 14 6 365022.4378 13 +Q9VLP2 GEO08076p1 38.1 6 40 6 773883.83778 36 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 250498.842 5 +Q9VLQ9 Sorting nexin 29.4 14 23 1 674297.19726 21 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 127412.986 4 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 1587.5684 1 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 724512.0712 32 +Q9VLS5 LD29542p 10.69 5 6 5 37820.9869 5 +Q9VLS7 LD21067p 1.88 4 4 0 43825.229 4 +Q9VLT3 LD23292p 16.59 28 41 28 723137.44946 38 +Q9VLT7 IP17351p 26.92 4 7 4 231750.11700000003 5 +Q9VLU3 IP09231p 5.4 1 1 0 7323.946 1 +Q9VLV9 Proctolin 20.71 2 4 2 75787.7358 4 +Q9VLW8 LD06392p 13.18 3 3 3 6738.1378 3 +Q9VLX6 HL01609p 6.32 2 2 0 42776.0 2 +Q9VLY1 HL02931p 19.01 1 7 1 192906.3077 7 +Q9VLY7 TEP1-F 3.68 6 7 6 63612.542700000005 7 +Q9VLY9 CD109 antigen 29.45 37 61 0 1471272.02082 56 +Q9VM07 RE43931p 27.85 5 11 4 129777.61497000001 7 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 102017.64360000001 8 +Q9VM11 HL01515p 31.19 9 12 9 363157.316 12 +Q9VM12 MIP26555p1 29.25 10 25 10 589076.4074 21 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 9885895.96505 149 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 6782410.54268 76 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 13311.053 1 +Q9VM47 Menin 3.15 2 3 0 6550.8085 3 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 27512.671000000002 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 44998.8013 4 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 176801.5876 9 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 566761.3403500001 12 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 140964.0103 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 4367980.13996 59 +Q9VMC3 LD35051p 3.29 1 1 1 9439.234 1 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 10639.046699999999 2 +Q9VMC7 LP11564p 9.94 6 6 3 14417.5184 4 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 479436.41849999997 13 +Q9VME1 FI01864p 17.96 7 8 7 71182.63545 7 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 33937.431000000004 3 +Q9VMF0 FI04444p 4.48 2 2 2 12418.171 2 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 26304.9283 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 226758.244 11 +Q9VMH8 GEO07746p1 37.3 6 12 6 475710.32129999995 10 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 936420.74723 27 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 721120.82184 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 3253797.9989400003 36 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 89323.02582 5 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 517920.87679999997 21 +Q9VMR9 acylphosphatase 6.93 1 1 1 42839.137 1 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 4801645.375399999 36 +Q9VMT2 GEO07854p1 52.35 7 122 0 5136997.68111 102 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 2671652.1214 39 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 79374.6338 9 +Q9VMV5 Viking, isoform A 8.2 13 20 13 149966.82733 16 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 14711.864 2 +Q9VMX4 AT19154p 19.52 6 13 6 181420.17074 10 +Q9VN01 GH23891p 16.39 8 12 8 117583.57729999999 11 +Q9VN02 GH14561p 32.74 7 14 7 175454.2462 13 +Q9VN21 LD30155p 55.05 28 100 28 3176937.47395 89 +Q9VN39 RE74585p 17.58 6 8 2 29739.0036 6 +Q9VN44 FI07923p 18.91 20 39 20 993633.38212 37 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 349580.0785 14 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 438329.3885 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 9010.726369999998 2 +Q9VN86 AT14148p 6.51 3 3 3 37136.5685 2 +Q9VN88 LD45836p 14.49 4 6 4 102258.308 6 +Q9VNA3 GH21273p 40.28 8 15 8 663564.6667 15 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 419724.7686 8 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 42556.088 3 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 10634.9035 2 +Q9VNF3 RE01652p 39.3 9 23 7 360941.2401 18 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 98939.525 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 25240.064000000002 2 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 170012.80980000002 12 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 133496.449 3 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 74495.38682 6 +Q9VNI8 Hpr1 10.7 8 9 8 54485.325899999996 8 +Q9VNI9 IP18173p 17.18 3 6 3 30595.4727 6 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 5320152.69402 73 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 69801.86272 6 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 16789.24542 6 +Q9VNV2 GEO05133p1 8.86 1 2 1 4250.5783 2 +Q9VNW0 GEO11142p1 21.88 3 3 3 32800.269 3 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 2936046.6500500003 62 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 1449509.30946 70 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 27561.256999999998 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 67211.28742000001 8 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 25530.121 1 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 1957.942 1 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 154289.75 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 557197.0789 14 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 189267.08539999998 5 +Q9VP57 LD15904p 23.19 18 33 18 728637.24663 32 +Q9VP77 LD23875p 10.99 7 7 7 81249.3015 7 +Q9VP78 GH23156p 8.76 4 4 4 38064.7839 4 +Q9VP84 IP06402p 4.76 1 2 1 43734.516 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 4615.8037 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 26341.7259 5 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 111579.883 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 45581.663700000005 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 1731847.30051 41 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 47730.3949 6 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 20321.7791 3 +Q9VPH6 LP10922p 9.61 5 8 1 63207.0732 6 +Q9VPJ0 RE58433p 8.29 3 6 0 47096.35887 5 +Q9VPK3 AT24407p 19.37 8 11 1 168504.8816 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 28551.092 6 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 1874966.53029 67 +Q9VPR1 GH02075p 11.35 2 2 2 22305.402 1 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 335698.7566 7 +Q9VPU4 FI17537p1 8.88 3 3 3 17227.6125 3 +Q9VPU6 Galectin 7.28 3 3 3 76381.527 3 +Q9VPX0 GH26159p 4.9 3 3 3 35691.1096 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 461060.4341 13 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 3656808.2249000003 49 +Q9VPZ5 GH04232p 26.62 14 24 14 398822.36923 22 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 765.6166 1 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 5345070.41646 106 +Q9VQ83 RE23541p 7.28 2 2 0 13952.1597 2 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 73287.1555 4 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 3486098.49096 49 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 1312851.0087 30 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 161496.79559999998 6 +Q9VQE0 dynamin GTPase 17.01 12 12 12 178246.40806 12 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 2651.6646 1 +Q9VQI6 LD25952p 12.35 4 6 4 69368.3989 5 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 430851.30866 17 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 47306.7514 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 5294.838 1 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 946796.5046699999 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 919575.442 18 +Q9VQQ6 FI18122p1 15.72 8 13 0 439358.80960000004 13 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 1438646.5172 38 +Q9VQR5 IP10807p 2.5 1 1 1 18241.164 1 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 50354.5548 4 +Q9VQT7 RH15675p 14.63 1 2 1 5953.352 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 256860.60520000002 10 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 49745.61165 5 +Q9VQX3 HL05328p 13.09 6 7 6 75470.8664 7 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 107003.1042 9 +Q9VR30 RE58324p 19.51 8 10 8 193895.96603 10 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 149683.9513 10 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 11658.972 1 +Q9VR79 LD43683p 30.8 8 30 8 1178056.1782 30 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 15490.2566 2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 892673.86705 28 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 685829.027 14 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 155952.0782 10 +Q9VRF7 GH09530p 13.92 4 7 0 153545.43635 7 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 65867.1373 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 80666.69722 12 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 1260153.50004 39 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 174930.538 4 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 110601.9287 5 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 5062.221 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 6366573.82239 80 +Q9VRL1 GEO06356p1 53.1 8 28 2 957958.276 21 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 4546.1227 2 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 920.8508 1 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 26690.451399999998 3 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 1154892.6724999999 31 +Q9VRP3 AT08565p 23.69 6 12 6 222522.41276 9 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 6509.4673 3 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 800509.3709 27 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 123573.30339999999 8 +Q9VRV8 Transportin-1 3.02 2 2 2 10753.1735 2 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 115639.7696 5 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 394304.148 8 +Q9VS11 lysozyme 12.55 3 4 2 35205.0228 4 +Q9VS44 Uncharacterized protein 12.36 4 4 4 70428.093 4 +Q9VS84 FI03225p 7.34 7 8 7 130986.5032 7 +Q9VSA9 CG7409 80.52 14 73 14 3506627.10491 57 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 253574.0904 8 +Q9VSC5 GM09977p 55.29 11 26 11 507400.7655 24 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 49144.8506 8 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 155857.63635 9 +Q9VSH5 IP09562p 4.89 1 2 1 8402.823 1 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 75736.828 2 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 6946.2734 1 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 864343.27296 25 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 1275893.1143 26 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 1581573.4218000001 33 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 257225.46320000003 9 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 54506.31336 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 41778.042 3 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 5937.1777999999995 3 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 375390.5777 15 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 1028873.56541 51 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 82993.8928 6 +Q9VSR5 GM03767p 48.9 9 20 9 913492.8032 19 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 56782.63747 6 +Q9VST4 arginine kinase 2.06 1 1 1 6161.354 1 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 1997673.1745 38 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 299409.9949 20 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 51557.626000000004 3 +Q9VSX2 IP01061p 30.5 6 12 6 127084.1726 8 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 3480955.5077 61 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 196462.292 8 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 404327.3699 20 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 33946.8683 2 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 608306.5402 20 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 9098.922 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 37855.55 1 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 103871.1758 6 +Q9VTA8 RE35371p 9.7 1 1 1 385.84824 1 +Q9VTB0 LD35289p 18.18 7 9 7 159736.856 9 +Q9VTB3 Guanylate kinase 35.62 10 23 10 456328.60165 21 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 1034525.4214 18 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 85883.522 6 +Q9VTC3 GH07049p 7.78 3 3 3 139922.18 2 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 9475.553 1 +Q9VTL0 FI19917p1 2.48 1 2 1 9993.132399999999 2 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 533.27295 1 +Q9VTP1 IP06473p 8.24 2 2 2 13881.096 2 +Q9VTT2 LD20590p 3.84 2 2 2 9413.294 2 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 1644736.605 33 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 358301.7257 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 141553.117 7 +Q9VTW1 RE15265p 11.2 5 7 0 149774.913 7 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 42363.628500000006 3 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 1316596.48027 40 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 284702.09205 15 +Q9VU04 RE60105p 6.49 2 2 2 77608.406 2 +Q9VU13 LD45603p 8.3 4 6 0 183580.8405 5 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 54440.21000000001 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 5290346.7463 58 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 23083.275 1 +Q9VU38 Adenosine kinase 29.28 6 13 0 73180.4316 13 +Q9VU45 LD27581p 20.42 5 16 5 395813.6967 14 +Q9VU53 Capricious, isoform A 3.7 2 2 0 14135.782500000001 2 +Q9VU75 RH45712p 40.33 9 32 9 321063.97671 29 +Q9VU92 Uncharacterized protein 35.71 7 12 7 347312.2154 11 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 2292056.94677 74 +Q9VUE8 Big bang, isoform C 0.53 1 1 0 472.04163 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 65014.2605 6 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 713634.908 15 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 8845.27628 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 146436.695 8 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 161885.794 5 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 205004.52419999999 9 +Q9VUQ7 RE36966p 11.91 6 10 6 150136.97979 10 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 16247.432 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 71979.11 1 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 52686.037 2 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 50464.2372 4 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 72389.18035 7 +Q9VV13 GEO08383p1 20.71 2 4 2 245730.8695 3 +Q9VV31 Uncharacterized protein 19.35 2 7 2 72342.4946 7 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 167748.1677 10 +Q9VV40 Golgin 104 1.42 1 1 1 2058.7683 1 +Q9VV42 Fat body protein 2 79.5 25 188 0 15301020.26146 162 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 9838108.05667 147 +Q9VV47 Fat body protein 2 45.17 9 22 7 805702.7649 18 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 1083940.8429 45 +Q9VV75 AT02348p 79.09 28 196 28 11568509.16994 154 +Q9VV76 Syntaxin 8 11.64 3 4 3 178053.43300000002 4 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 54360.37745 8 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 267544.6326 11 +Q9VVB5 LD46723p 33.45 17 44 1 7455.7095 3 +Q9VVB7 FI02842p 48.97 15 44 1 9246.2461 2 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 113228.41500000001 3 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 636096.78787 32 +Q9VVC8 LD23434p 6.95 5 8 5 142905.9242 8 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 200926.4859 17 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 3631426.0192 34 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 222790.83984 10 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 33355.3 2 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 295175.22400000005 14 +Q9VVL5 FI11325p 27.27 9 14 9 317065.2504 13 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 8077503.37967 182 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 102035.93400000001 6 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 62047.707299999995 5 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 140683.1537 8 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 96387.405 3 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 1596200.6438 26 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 7085553.7851 48 +Q9VVU2 GEO07453p1 48.32 9 36 8 1399606.3166 34 +Q9VVV6 LD45843p 11.01 5 5 1 21279.1675 5 +Q9VVW7 Canopy b 16.74 4 6 4 148965.403 6 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 112340.26 1 +Q9VVY7 FI20154p1 10.24 13 16 0 149282.0123 15 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 33859.67503 5 +Q9VW00 GH28721p 12.2 4 8 4 94367.681 6 +Q9VW17 RE58036p 26.37 5 12 0 103849.0251 10 +Q9VW34 FI03450p 17.01 9 14 9 510727.27705000003 14 +Q9VW40 LD31235p 12.62 4 5 4 31161.8574 5 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 13362.784 1 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 62072.916000000005 2 +Q9VW57 Grasp65 8.04 4 6 4 92679.163 5 +Q9VW58 LD33138p 11.15 3 5 3 10114.269 1 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 812365.92 21 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 2311485.34094 28 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 7706427.9648 122 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 9244.3411 2 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 11618.49 1 +Q9VWD0 GH23568p 26.43 8 13 8 180484.5539 13 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 4357891.3971 83 +Q9VWD5 LD35087p 6.46 3 3 3 12620.97553 3 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 692537.5713000001 27 +Q9VWF0 LP01149p 9.8 3 5 3 63136.664000000004 4 +Q9VWG1 LD37169p 72.68 11 62 1 133933.0541 6 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 17728.2808 2 +Q9VWJ3 LD05272p 4.57 1 1 1 12975.938 1 +Q9VWL4 GH07340p 9.77 5 5 5 50201.6436 5 +Q9VWP2 RH57257p 64.88 12 25 12 805385.7028000001 23 +Q9VWQ3 LD35981p 5.27 2 4 0 64027.4536 4 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 232047.2211 9 +Q9VWS1 Houki 29.33 6 7 6 164850.44230000002 6 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 576617.5686 20 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 9407.188 2 +Q9VWU0 FI18411p1 2.63 1 2 1 2601.62593 2 +Q9VWV6 Transferrin 57.72 35 174 35 9428621.0728 155 +Q9VWW2 GH13094p 14.17 6 13 6 21405.36874 6 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 131395.7231 3 +Q9VX08 LD10434p 6.85 2 2 2 5059.488 1 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 3080687.34 85 +Q9VX69 FI01450p 8.27 4 13 3 238771.321 6 +Q9VXA3 LP21163p 16.69 10 15 10 198555.66820000001 13 +Q9VXA9 RE04047p 10.58 3 3 3 14468.5378 3 +Q9VXC1 MIP06432p1 27.93 5 10 3 321690.32377 10 +Q9VXC9 trypsin 54.18 11 21 11 275912.1495 19 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 77969.2919 6 +Q9VXF9 AT13091p 15.94 7 13 7 192280.4927 13 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 179948.264 4 +Q9VXH4 RE16337p 28.43 2 4 2 203672.1816 4 +Q9VXH7 FI17510p1 13.95 5 10 5 256280.51020000002 10 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 892940.5583 25 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 3036117.4355 56 +Q9VXJ7 GH03748p1 5.19 5 5 5 27872.80905 5 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 345781.66151999997 11 +Q9VXK9 Centrosomal protein 164, isoform A 1.77 2 2 2 379.92273 1 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 18772.252 2 +Q9VXM4 LD12946p 62.9 15 37 15 1479254.9302 32 +Q9VXN1 LD03728p 7.2 2 2 2 10943.822460000001 2 +Q9VXN3 LD07988p 25.25 9 14 9 117107.40520000001 12 +Q9VXP3 GH05406p 9.87 5 5 5 44756.19526 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 32839.04 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 12849.509 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 1533446.30223 43 +Q9VXR9 FI03680p 5.45 2 2 2 18296.2563 2 +Q9VXV1 RH52220p 4.39 1 1 1 11666.285 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 340271.393 11 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 640561.62934 27 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 242253.08299999998 13 +Q9VY05 GH11762p 9.47 7 15 7 370031.3682 14 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 41838.943400000004 4 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 240170.5902 9 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 24480.338 1 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 86255.183 4 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 18916.593 2 +Q9VY76 AMP deaminase 9.21 8 10 0 39758.8804 8 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 124089.65964 10 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 134267.5907 5 +Q9VY92 GEO07753p1 73.91 8 32 8 2268225.5742 32 +Q9VYA1 RE18811p 3.87 1 2 1 784.3389 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 11377.8743 2 +Q9VYF0 GM09012p 18.66 5 7 5 102712.585 7 +Q9VYG8 CG15717-PA 17.86 4 4 4 76427.4108 3 +Q9VYJ1 FI12805p 2.29 2 2 1 35395.0034 2 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 26972.49725 6 +Q9VYM0 CG2555-PA 13.2 2 2 1 3183.5586000000003 2 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 22218.3208 4 +Q9VYN1 protein kinase C 0.42 1 11 1 439491.968 9 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 15837.243 1 +Q9VYS2 GH09980p 4.78 4 4 4 24794.074 4 +Q9VYT0 RE04130p 23.7 6 10 5 247579.612 10 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 18338.3345 2 +Q9VYT3 FI23714p1 4.8 6 7 6 28281.57612 6 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 54780.346999999994 2 +Q9VYU9 RH17287p 36.65 6 11 6 135283.0793 10 +Q9VYV4 Amun, isoform A 12.0 4 4 4 40039.7292 4 +Q9VYV6 GEO09033p1 6.14 1 1 1 30866.66 1 +Q9VZ00 FI19420p1 3.92 4 7 1 25943.5631 5 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 1206160.5774 22 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 442630.6707 19 +Q9VZ24 GEO11412p1 43.36 6 33 6 1952777.4733499999 31 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 6055.621 1 +Q9VZ34 RH72958p 2.64 1 1 1 9265.856 1 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 360668.20317 14 +Q9VZ66 SD22308p 35.37 5 8 5 112221.9742 8 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 36499.3554 3 +Q9VZ71 RE01453p 9.04 2 5 2 96333.5816 5 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 7844.787 2 +Q9VZE4 RE70333p 19.57 9 13 9 204164.4643 13 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 129717.3806 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 79304.403 5 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 488367.98943 21 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 2150276.63617 43 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 132847.9212 8 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 3365795.42883 46 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 29573.447799999998 3 +Q9VZI1 Transgelin 74.47 11 82 1 2202580.64455 59 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 69551.041 4 +Q9VZJ2 GH27759p 12.66 5 8 5 133377.891 7 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 31878.242299999998 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 463645.3675 19 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 45899.555 3 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 169104.50276 14 +Q9VZV2 Chitinase 7 3.75 4 5 4 20850.09275 5 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 109574.905 5 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 11551.469000000001 3 +Q9VZX6 LD06441p 3.99 1 1 1 85434.31 1 +Q9VZY0 LD45195p 18.85 5 7 5 230009.608 6 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 37141.5533 4 +Q9VZZ5 GEO12033p1 21.68 3 7 3 302721.08900000004 6 +Q9VZZ6 CG16985 protein 34.9 5 11 5 457208.2202 11 +Q9W022 GEO01508p1 49.3 7 34 7 1465973.3801 34 +Q9W073 RH22148p 9.41 2 2 2 27800.0236 2 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 1241678.9127 20 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 557363.6529 11 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 145825.229 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 155892.2665 6 +Q9W095 glycerol kinase 2.6 2 2 2 2530.3367 1 +Q9W0A8 FI01658p 14.08 4 10 4 491127.79000000004 10 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 458672.16726 18 +Q9W0C3 GH11843p 46.94 12 16 12 293014.2546 14 +Q9W0D3 GH15728p 1.09 2 2 2 14387.315 1 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 49879.785 1 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 234370.8405 12 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 639031.5754 18 +Q9W0J9 GH07301p 33.85 8 16 8 401137.7267 14 +Q9W0K9 LD10220p 11.61 2 3 2 10665.7542 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 213934.5822 11 +Q9W0M5 Protein DPCD 9.91 2 2 2 8092.849 2 +Q9W0N6 LD27967p 9.57 3 3 3 19196.617700000003 3 +Q9W0P4 GEO05053p1 15.45 3 3 3 34418.61916 3 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 75853.514 2 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 13309.763 1 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 85302.9201 8 +Q9W0U0 glycerol kinase 5.39 2 3 1 22133.129 3 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 149282.0376 7 +Q9W0X1 GH15894p 5.72 3 3 3 39008.024999999994 3 +Q9W0X2 GEO07322p1 33.88 4 5 4 76259.8263 5 +Q9W0X3 LD24657p 12.55 3 6 1 166473.763 6 +Q9W0Z5 LP09747p 10.07 5 12 5 140680.47 12 +Q9W114 IP05433p 22.5 2 3 2 19289.7876 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 938487.5886 38 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 327789.6327 11 +Q9W136 Uncharacterized protein 33.82 6 17 6 231668.9774 13 +Q9W140 Regulatory protein zeste 14.35 5 7 5 30850.16675 6 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 17896.21457 4 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 5317.7629 2 +Q9W158 LD36772p 6.51 2 3 2 150679.669 3 +Q9W199 GEO07594p1 10.97 2 3 2 94793.032 3 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 1103718.6795 17 +Q9W1C8 LD24355p 20.11 8 10 8 78038.64476000001 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 20842.4042 3 +Q9W1F2 FI07217p 5.93 2 2 2 9845.2295 1 +Q9W1F7 IP15825p 26.5 11 33 11 1244894.8226 30 +Q9W1F8 GEO08248p1 23.31 4 8 4 209883.05299999999 8 +Q9W1G7 LD21576p 31.62 10 17 10 573993.6437 17 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 230079.0957 9 +Q9W1H6 GH04238p 13.85 3 7 3 49827.390699999996 4 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 1420467.0152399999 39 +Q9W1I8 LD03592p 36.97 8 15 8 335998.82629999996 9 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 29560.4404 3 +Q9W1L8 GH11818p 5.92 2 2 2 4199.910699999999 2 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 24713.04 3 +Q9W1N3 Levy, isoform A 32.11 4 16 4 1308931.32194 15 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 12964.723 1 +Q9W1R0 RH49821p 4.13 2 2 2 23706.798000000003 2 +Q9W1R3 Golgin-245 5.17 7 8 7 74525.97116 8 +Q9W1V8 CG9893 protein 27.6 5 7 5 59832.174 7 +Q9W1W4 RE45066p 15.81 5 7 5 135496.2563 6 +Q9W1X5 GH04942p 16.93 24 31 4 734526.81072 30 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 3565262.1986 50 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 400876.127 6 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 145275.54700000002 8 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 46616.6409 5 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 296292.16120000003 21 +Q9W257 RH13652p 6.99 2 3 2 89517.409 3 +Q9W258 Babos, isoform A 30.1 6 17 6 609785.0595 15 +Q9W259 FI23916p1 18.69 7 10 7 135909.50975 9 +Q9W260 GH03113p 12.2 7 13 7 153609.0156 11 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 18528.309 2 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 192143.23654 18 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 11260.554100000001 3 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 20517.745 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 978164.0614 23 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 36478.553 2 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 198087.54298 12 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 60197.492 2 +Q9W2L6 RH02475p 36.23 21 49 21 1675029.74875 49 +Q9W2M0 LD23155p 16.85 11 18 11 275793.31533 17 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 4992302.708 42 +Q9W2M9 FI16623p1 14.71 2 3 2 40854.117 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 43507.5954 3 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 304723.8072 6 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 171343.57 5 +Q9W2V2 FI20035p1 10.07 5 5 5 45715.399099999995 4 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 15664513.88472 94 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 173428.58346 19 +Q9W2Z9 RE65233p 8.65 2 2 2 34913.68 2 +Q9W306 GEO08256p1 14.05 2 2 2 43825.458 2 +Q9W308 GH05731p 16.18 2 3 2 69257.29000000001 3 +Q9W309 GEO08445p1 38.27 7 10 7 263119.618 8 +Q9W314 GH14088p 9.07 4 4 3 83576.041 4 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 107517.7387 8 +Q9W330 Phosphotransferase 44.18 19 34 3 1354646.0813 32 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 63965.161 3 +Q9W337 GH19985p 44.5 8 13 8 177508.65284 12 +Q9W350 C11.1, isoform A 1.55 2 2 2 1847.3993 1 +Q9W370 GEO12084p1 38.52 4 8 4 358803.8673 7 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 7449.7046 1 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 3943.4158 1 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 992406.7321 27 +Q9W396 FI06908p 17.5 6 7 6 172289.092 6 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 26599.863 2 +Q9W3C3 LD10016p 19.53 9 11 9 103687.66239 10 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 32178.148299999997 4 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 56723.4208 6 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 36715.6064 3 +Q9W3H4 LD36273p 52.23 11 23 11 498600.9477 20 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 59737.75110000001 5 +Q9W3J6 FI06457p 2.33 1 1 1 6312.3145 1 +Q9W3K6 LD35927p 4.62 4 5 3 111242.8973 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 701714.12075 15 +Q9W3L4 GH20802p 20.29 8 14 8 222238.9695 12 +Q9W3M7 RNA helicase 13.12 12 14 11 106038.51563000001 11 +Q9W3M8 LD34211p 38.19 8 9 8 348828.3635 8 +Q9W3N1 RH59310p 3.12 1 1 1 14792.404 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 127536.7235 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 1458809.8378 33 +Q9W3Q0 FI07418p 10.09 2 5 1 1784.6692 1 +Q9W3Q1 GM14286p 5.68 2 2 2 5193.205 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 156375.0128 10 +Q9W3S3 LP10445p 16.22 2 3 2 4676.885 1 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 101598.7228 8 +Q9W3T9 GM01152p 31.93 8 17 8 446481.72196 17 +Q9W3U9 CG14434-PA 26.74 5 6 0 163422.4374 6 +Q9W3V2 FI19713p1 1.82 2 2 2 684.98376 1 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 10087.098259999999 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 88734.178 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 3023313.7514 50 +Q9W3X8 RH42690p 11.42 4 5 4 15677.333439999999 4 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 231144.60535 11 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 1740871.67482 47 +Q9W403 LD24968p 14.47 6 7 6 39027.8981 7 +Q9W404 GH10714p 17.98 6 8 5 62657.32043 7 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 18954.603000000003 2 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 885335.53014 27 +Q9W425 Rabconnectin-3A 0.99 3 3 3 16377.0111 2 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 2774436.6928 48 +Q9W461 LD23868p 11.54 6 8 6 99064.0351 7 +Q9W483 GH18971p 8.49 3 6 3 39447.498 3 +Q9W486 LD13361p 3.58 2 2 0 11608.59566 2 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 169807.834 4 +Q9W4A0 GH11193p 31.98 6 10 6 207610.0735 9 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 17347.715760000003 4 +Q9W4C2 lysozyme 11.84 2 3 2 41614.465 3 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 126248.2903 8 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 13459.682 1 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 616859.78214 20 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 3100.4463 1 +Q9W4N8 LD30122p 50.93 10 48 0 2553113.5614 44 +Q9W4U2 RH09070p 45.38 8 22 8 562915.3472 19 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 6760.8726 1 +Q9W4W5 RE47284p 13.77 5 6 5 157914.309 6 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 131013.40617 13 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 235272.1247 10 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 8713.554 3 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 46207.78164 5 +Q9W503 RH61816p 35.31 10 15 10 398844.32649999997 12 +Q9W5B4 GH18858p 27.59 8 18 8 136704.85657 13 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 14009.178 1 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 42446.861 2 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 43885.256 4 +Q9W5W7 GH19483p 5.32 3 3 3 39600.60013 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 1012207.1492 26 +Q9W5X0 LD21953p 19.4 4 21 0 101090.16700000002 2 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 127105.14140000001 10 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 113444.088 7 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 5994088.9029 50 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 99289.712 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 442018.1741 20 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 358109.37029999995 15 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 4238522.65418 66 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 455652.80633 29 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 174030.6784 19 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 4677471.4192 68 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 54769.7622 4 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 45955.7299 6 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 1702152.9084 34 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 33343.28054 4 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 1309553.00626 40 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 3722367.54604 79 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 4718.9106 1 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 41827.893 6 +R9PY51 Uncharacterized protein 34.95 5 71 5 1378238.9742 28 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 3559141.01489 81 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 114186.5031 6 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 100814.3054 7 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 51121.062000000005 2 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 59479.647099999995 5 +X2JB48 ADP/ATP translocase 67.56 22 106 1 3250736.22275 91 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 269113.8227 22 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 25864.4476 2 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 5023247.4142 68 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 32443.653 2 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 19058.336799999997 2 +P10674 Fasciclin-1 51.07 33 127 1 2746.1064 1 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 2692.4067 1 +Q08605 Transcription activator GAGA 2.24 1 1 0 18125.596 1 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 6876.8896 1 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 17344.4463 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 9304.762 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 18649.65 1 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 14812.77 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 1557.0277 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 23824.100899999998 3 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 8845.709 1 +Q9W568 Protein halfway 3.11 1 1 0 963.74365 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 2282.8196 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 46459.725099999996 3 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 25816.712 2 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 3634.6252 1 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 5128.113 1 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 7554.151 2 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 73935.72899999999 2 +A1Z7M0 Space blanket 5.71 1 1 1 6845.0503 1 +A1ZA97 Carboxylic ester hydrolase 1.79 1 1 1 535.23914 1 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 59278.844 3 +B5RJS0 IP20241p 0.73 1 1 0 328.43655 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 7625.5975 2 +E1JJM0 FI20063p1 16.38 9 12 0 129966.5908 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 4586.2607 1 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 11917.945 1 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 107133.33135000001 4 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 15281.688 1 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 3060.098 1 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 168664.57225 8 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 86734.89600000001 2 +Q7K1W4 Epoxide hydrolase 2.35 1 1 1 648.3971 1 +Q7PLV6 FI02158p 0.85 1 1 1 2432.3425 1 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 23753.3203 3 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.96 2 2 1 1546.5873 1 +Q8MPN6 Serpin 4 17.68 6 7 0 4245.4805 1 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 11182.018 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 15623.379 1 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 5765.6343 1 +Q9VHX1 LD44032p 4.04 1 1 1 2040.9558 1 +Q9VKC1 IP16805p 3.89 1 1 1 9836.578 1 +Q9VM94 Homer, isoform B 43.32 14 33 1 8129.421 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 11288.260300000002 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 4709.9116 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 121658.367 3 +Q9VTY1 LD40136p 2.4 1 2 1 17281.213 1 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 3632.2139 1 +Q9W2N5 GH10162p 3.47 2 2 2 1681.4036 1 +Q9W362 La-related protein 7 1.85 1 1 1 3048.789 1 +Q9W525 LD08195p 2.32 1 1 0 9501.633 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 31168.82 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 8109.3896 1 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 81151.396 5 +E1JJ83 Os-C, isoform B 7.19 1 1 0 4455.9595 1 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 218135.1409 15 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 7584.733 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 10818.973 1 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 5817.7275 1 +Q8IQ80 GH06117p 3.39 2 2 0 4128.4325 2 +Q9VHW5 LD38634p 4.76 1 1 1 882.25543 1 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 32391.4926 2 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 8093.4365 1 +Q9W5C1 RE02292p 1.55 1 1 1 410.7397 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 4967.091 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 4123.1324 2 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 20296.844 1 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 5995038.5010400005 113 +E1JH70 Kank, isoform E 1.28 1 1 0 5353.761 1 +M9NFP1 Jim, isoform E 0.85 1 1 0 7344.6025 1 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 7057.6751 2 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 2636.8362 1 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 8630.0926 2 +Q9VBS0 CHK domain ov2 2.2 1 1 1 2236.8362 1 +Q9VCH9 LD07883p 4.72 1 1 1 3728.6055 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 14579.1121 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 13441.92885 2 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 16743.04 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 64856.759999999995 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 9190.259 1 +Q9VMY3 FI19613p1 1.5 1 1 1 11028.335 1 +Q9VS80 FI17864p1 2.6 1 2 1 4489.5264 1 +Q9VZF0 LD44732p 3.61 1 1 1 4502.7993 1 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 42413.8453 4 +Q9W249 IP21806p 2.24 1 1 1 511.36844 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 7701.537 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 43095.3254 3 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 34055.215 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 141904.31146 7 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 9371.577 1 +Q0KHQ1 GEO13361p1 11.11 1 1 1 2051.7131 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 20098.779 2 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 90461.56599999999 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 2747.357 1 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 11319.498 1 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 2347.2268 1 +Q9VV37 GEO13385p1 10.1 1 5 1 18298.0438 2 +Q9VVX6 BET1 homolog 16.24 2 2 2 65660.455 2 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 13501.656 1 +Q9W152 RH33060p 16.9 1 1 1 5859.8745 1 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 9694.300299999999 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 46448.828 2 +M9PDY5 Girdin, isoform C 0.94 1 1 0 6792.7256 1 +Q9VAI3 FI06539p 10.08 1 2 1 21718.603 2 +Q9VB09 IP04131p 5.73 1 1 1 18984.975 1 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 43903.175 3 +Q9VZN6 Lipase domain-containing protein 4.36 1 1 1 690.541 1 +Q9W5E7 LP07417p 11.4 1 1 1 3027.9001 1 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 9218.423 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 188089.4814 6 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 2485.4348 1 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 7383.344999999999 2 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 16629.316 1 +A1Z872 CAP, isoform D 25.05 11 20 1 5758.0127 1 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 12026.915 1 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 12621.942 1 +Q7K3Z8 GH01208p 13.24 2 2 2 3350.4216 1 +Q9VAN8 FI15955p1 6.46 1 1 1 9093.422 1 +Q9VLL4 FI23523p1 1.81 1 1 1 2694.373 1 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 38423.274000000005 2 +P08841 Tubulin beta-3 chain 23.13 10 131 0 11707.678 1 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 26904.293 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 2208.1108 1 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 9282.999 1 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 3729.209 1 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 16633.0973 2 +Q9W3S4 LD46272p 3.11 1 1 1 3208.2205 1 +A8JQX3 Nocturnin 1.71 1 1 1 4914.8345 1 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 33678.044 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 66807.29162999999 7 +Q7JY89 RE35124p 15.0 1 1 1 4033.0928 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 46764.378 3 +A8JUP7 Serine protease Hayan 1.1 1 1 1 7081.455 1 +P07664 Serendipity locus protein delta 2.54 1 1 1 20428.473 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 284714.29000000004 4 +Q9VGM4 LD28119p 2.94 1 1 1 2887.8958 1 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 23027.1202 5 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 25469.191 2 +E1JJ37 Complexin, isoform W 65.47 9 67 1 7018.4277 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 12122.471 1 +Q962I2 small monomeric GTPase 50.76 8 21 1 5345.323 1 +Q9VF73 FI17904p1 0.98 1 1 0 3283.1658 1 +Q9VSK1 GH09510p 2.72 2 2 2 2181.57 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 56911.522 2 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 11646.792 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 86938.97009999999 7 +Q29R09 LD28546p 3.02 1 1 1 881.02057 1 +Q6AWJ5 LP12324p 23.56 8 11 1 2521.4827 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1502.88335 2 +Q9VQT5 FI01556p 13.92 1 3 1 96558.6603 3 +Q9W0A9 GM02612p 3.06 1 1 1 7179.9355 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 5793.494 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 16583.307 1 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 7243.3047 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 11016.323 1 +Q9VV29 GEO12576p1 9.68 1 2 0 16333.873599999999 2 +P45884 Attacin-A 5.36 1 1 0 14046.648 1 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 1939.014 1 +O61348 Bobby sox 3.51 2 2 2 1466.8717 1 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 2400.878 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 16099.552 1 +Q9VV27 MIP11526p 7.63 1 1 1 22484.814 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 23465.846 2 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 7739.1489 2 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 52204.723 2 +M9PE05 Encore, isoform H 0.6 1 1 0 2948.7964 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 15871.3944 2 +Q9VF46 GH25158p 4.13 1 2 1 34799.729999999996 2 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 14076.153049999999 2 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 10959.859 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 29940.847 2 +A8JNU1 adenylate cyclase 1.78 2 3 0 8291.520199999999 3 +Q7KVR7 AP-1 complex subunit gamma 1.13 1 1 0 712.90045 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 1729.6094 1 +Q7K010 Tetraspanin 3.64 1 1 1 4867.3657 1 +Q9VUR4 FI11905p 18.81 5 8 1 8076.2007 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 774.11566 1 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 7175.889 1 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 4135.4788 2 +A8JNV2 Uncharacterized protein 10.71 1 2 1 6424.8495 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 6407.3949 2 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 12219.414 1 +Q8SWU4 RE25571p 17.3 6 13 1 34675.6825 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 58560.23 1 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2067.3794 1 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 1513.4474 1 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 6177.875099999999 2 +Q8SXW3 GV1, isoform B 4.44 1 1 0 19213.166 1 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 7162.8154 1 +Q8IRN0 FI06485p 3.21 1 1 1 4828.7817 1 +Q9VHS6 Copper transport protein 5.75 1 1 1 3783.5159 1 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 8298.889 1 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 787.1626 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 2449.0103 1 +Q8ML92 Protein aveugle 7.55 1 1 1 8357.818 1 +Q9VT15 GH14734p 8.33 2 2 2 26734.031 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 8042.0264 1 +A1A750 GEO11067p1 6.93 1 1 1 16551.35 1 +Q9VF83 LD33178p 2.73 1 1 1 5887.2036 1 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 45167.667 2 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 27083.158 1 +M9PCK0 Decima, isoform D 9.87 2 2 0 23883.03 2 +Q9VUQ8 DCN1-like protein 1 7.29 1 1 0 459.9055 1 +Q9VPA9 LD24894p 1.45 1 1 1 8834.942 1 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 4545.662 1 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 499.83215 1 +Q9VSS4 IP05455p 10.32 1 1 1 391.06555 1 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 4385.2197 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 9101.518 1 +Q02427 RNA-binding protein 1 14.58 2 4 1 36663.82 1 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 19790.6127 2 +Q7K4Y8 GH22690p 1.65 1 1 1 4215.76 1 +Q9VCQ7 LD40758p 1.61 1 1 1 1743.2294 1 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 4864.318 1 +Q9VDL4 LP04613p 2.72 1 1 1 3853.5193 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 22649.213200000002 3 +Q7K4X4 GH24095p 2.0 1 1 1 3730.4658 1 +Q9VJ06 LD05576p 7.07 2 2 2 8427.318 2 +Q9VGE8 Tachykinins 6.57 2 2 0 19392.7823 2 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 11590.672 1 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 15235.711 1 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 4670.484 1 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 14751.152 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 6528.279439999999 2 +Q9V3A6 Ero1-like protein 1.45 1 1 1 12740.534 1 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 21360.781 1 +Q0E8K5 AT10158p 4.1 1 1 0 765.6102 1 +Q7K8Y3 IP16419p 14.29 5 6 0 89830.64039999999 5 +Q8STG9 DSec61alpha 1.89 1 1 1 11581.4795 1 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 11237.8709 2 +P22812 Protein Tube 3.9 2 3 2 3134.12624 3 +Q9VYX8 LD04844p 9.38 2 2 2 7103.684 1 +Q7JV39 GH01142p 5.05 1 2 1 10123.017 2 +Q9VZX8 AT02196p 2.37 1 1 1 2804.207 1 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 57072.319 2 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 9091.016 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 1830.5078 1 +Q9W3F7 Mitoguardin 4.19 2 2 2 4521.8724999999995 2 +Q9W4F9 IP01388p 1.92 1 1 0 11353.604 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 8125.6481 2 +F0JAQ9 MIP27169p 5.85 2 4 0 2220.74746 2 +P18289 Transcription factor Jra 3.11 1 1 0 9871.677 1 +Q9VJ77 FI24106p1 3.28 2 2 0 11422.0432 2 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 5799.3784 1 +Q9VR55 LD29159p 8.71 1 1 1 8198.767 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 5409.1904 1 +P54194 General odorant-binding protein 84a 11.43 2 2 2 3290.2915 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 9698.4512 2 +Q8IR92 Uncharacterized protein, isoform A 7.51 7 8 0 460.16986 1 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 8252.274300000001 3 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 15433.579 1 +Q9VV26 GEO12049p1 6.84 1 1 1 63449.332 1 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 4640.606 1 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 3406.5084 2 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 2587.87 1 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 16234.642 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 12587.279 1 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 4164.8086299999995 2 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 14637.757 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 23811.455 1 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 2862.6187 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 22384.357 3 +Q6IJE8 HDC15077 17.04 2 3 2 46699.8875 3 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 1746.5653 1 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 39383.3462 3 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 5347.738 1 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 7293.234 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 11594.015 1 +Q9W494 Crossveinless 3.5 1 1 1 3703.743 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 17483.965799999998 2 +Q7KN04 Spondin-1 2.1 1 1 1 5050.92 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 4164.734 1 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 7100.7188 1 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 15136.73617 4 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 2493.0112 1 +Q8MRQ1 GH06222p 1.49 1 1 0 3944.6492 1 +Q9VPR6 Kinase 3.56 1 1 1 4286.8193 1 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 2513.1992 1 +E1JJS1 glutathione transferase 5.6 2 2 0 59609.312999999995 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 4347.943 1 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 3388.907 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 6046.8438 1 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 3103.7478 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 2315.4834 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 3648.224 1 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 1710.803 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 4660.2085 1 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 599.0178 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 52895.954000000005 2 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 2145.3152 1 +A1Z8N1 Trehalose transporter 1 1.05 1 1 1 874.5056 1 +O76876 Protein sex-lethal 1.86 1 1 0 1861.3508 1 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 21168.652 1 +Q9VY55 FI09726p 8.08 1 1 1 2180.618 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 71741.44 1 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 2245.6748 1 +Q02936 Protein hedgehog 2.34 1 1 1 17337.777 1 +Q6NN09 ATPase protein 9 5.07 1 6 1 230255.624 4 +O76874 SD17974p 1.14 1 1 1 4268.5537 1 +Q9W424 Splicing factor 3B subunit 4 2.59 1 1 1 795.26636 1 +Q9VGL2 GM08392p 2.12 1 1 1 11370.366 1 +Q9VAX9 MIP05919p 3.7 1 1 1 6902.146 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 643.03577 1 +Q9VK20 LD18447p 2.81 1 1 1 10005.445 1 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 4907.296 1 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 4730.904 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 3481.379 1 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 6566.363 1 +Q9VBK9 Protein FAM98B 2.42 1 1 1 313.77444 1 +Q9VZC8 GEO12024p1 6.16 1 1 1 5479.4194 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 924.8366 1 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 10567.357 1 +Q9VM54 J domain-containing protein 3.9 1 1 1 715.9075 1 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 5598.684 1 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 2906.1729 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 22404.447 1 +Q4AB30 GUK-holder, isoform C 1.25 1 1 0 434.23975 1 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 825.5371 1 +Q9W123 Protein painting of fourth 2.22 1 1 0 3159.6055 1 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 16045.747 1 +Q9VGZ2 FI06805p 3.86 1 1 1 8602.047 1 +Q7JWS8 AT17867p 10.26 2 2 2 25653.361 1 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 1730.7507 1 +E1JHX0 MIP29328p 3.76 1 1 1 23904.816 1 +Q9VGH2 Uncharacterized protein, isoform A 2.59 1 1 1 540.2445 1 +D6W4V3 MIP19557p 4.74 1 1 0 1946.9614 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 1529.3033 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 4036.576 1 +Q9V9R3 adenylate cyclase 0.6 1 1 1 6361.339 1 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 3932.9788 1 +P39205 Molybdenum cofactor synthesis protein cinnamon 2.16 1 1 1 894.9323 1 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 13220.217 1 +M9PE65 Axotactin 0.55 1 1 1 644.37537 1 +Q8IRK0 GH04558p 3.9 1 1 1 4553.531 1 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 9525.382 1 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 34398.683 2 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 9031.957 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 32818.727 1 +Q9VV21 GEO07736p1 16.26 1 2 1 44764.282999999996 2 +P07186 Chorion protein S19 14.45 1 2 1 1672.9846 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 565.93634 1 +Q9VL29 GEO11246p1 12.93 1 1 1 5217.6816 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 874.46747 1 +Q9W2F6 RE36793p 7.09 1 1 1 55520.41 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 2975.4397 1 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 33820.570999999996 4 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 5223.2173 1 +Q7K1D7 Choline/ethanolamine transporter FLVCR1 2.9 1 1 1 431.4145 1 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 5372.984 1 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 6745.4634 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 36574.918 1 +Q9W513 GEO10196p1 12.86 1 1 1 62859.934 1 +A8DYV9 GEO02589p1 10.53 1 1 1 20777.725 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 11385.187 1 +O76513 Cyclin-H 3.7 1 1 1 4456.7974 1 +Q8IPJ5 FI18525p1 3.83 1 1 1 964.1388 1 +Q9W0B6 LD14179p 1.48 1 1 1 2159.6511 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 401.24115 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 8366.485 1 +Q05201 Protein phosphatase eya 2.22 1 1 0 5193.6865 1 +Q9VIM8 RE22905p 1.6 1 1 1 6934.827 1 +Q7JRC9 RE73310p 1.89 1 1 1 2652.1252 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 1832.8596 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 4830.5806 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 25136.564 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 60104.875 2 +A1A753 IP17594p 10.11 1 1 1 8706.853 1 +Q9VX56 LD03052p 5.94 1 1 1 585.7346 1 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 7332.887 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 5428.172 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 1002.5458 1 +Q8MYV9 GEO12865p1 11.04 1 3 1 71407.71599999999 3 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 4586.6235 1 +Q9W366 RE59932p 1.08 1 1 1 19833.252 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 1662.4558 1 +Q8T4F7 Protein enabled 0.82 1 1 0 4119.45 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 214968.082 2 +Q9VB08 E3 ubiquitin-protein ligase RING1 2.53 1 1 1 658.5627 1 +Q9VBQ5 LD38433p 1.91 1 1 1 4183.1914 1 +Q9VE49 LP06937p 1.86 1 1 1 1916.2339 1 +Q9VH82 FI02086p 7.14 1 1 1 9092.636 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 3465.878 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 4112.6475 1 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 3439.073 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 3601.0835 1 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 7728.819 1 +Q9VPN3 GEO07775p1 12.0 1 1 1 6966.179 1 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 1835.1288 1 +Q9VKE7 GH09228p1 10.39 1 1 1 2053.766 1 +Q7KA66 Serpin 43Aa 2.56 1 1 1 2192.5947 1 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 13450.099 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 128008.881 3 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 18023.342 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 3630.7869 1 +Q9VEF0 LD33778p 3.49 1 1 1 526.7619 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 10612.76 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 5185.0537 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 42297.004 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 185196.7 2 +Q5BIL9 SD21168p 1.63 1 1 0 12355.359 1 +Q9Y170 Sex-regulated protein janus-B 6.08 1 1 1 7682.779 1 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 6843.174 1 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 52126.133 1 +Q9VHJ4 GH04846p 2.25 1 1 1 4796.002 1 +Q9W226 GEO07239p1 5.88 1 1 1 1923.7788 1 +Q9W0I9 FI01805p 3.22 1 1 1 3304.331 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 7007.4395 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 10542.669 1 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 547.30774 1 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 4297.265 1 +Q8SY53 GH11935p 2.73 1 1 1 780.1125 1 +Q7JVN6 GH17672p 2.24 1 1 1 805.3432 1 +P25159 Maternal effect protein staufen 0.68 1 1 0 2553.2703 1 +Q9VLE1 RH63449p 4.29 1 1 1 16324.202 1 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 3708.656 1 +Q24040 Protein big brother 5.16 1 1 0 974.05457 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 5776.553 1 +F3YD72 SD23574p 20.45 1 1 1 2548.0786 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 3600.724 1 +Q8STI6 RE53401p 4.27 1 1 1 609.1877 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 3289.0444 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 2367.9873 1 +Q7K2B1 LD11371p 5.85 1 1 1 13323.421 1 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 11536.062 1 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 6485.048 1 +Q9W168 GEO02361p1 9.23 1 1 1 6595.893 1 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 9378.724 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 1 0 610.24176 1 +Q9VVX3 Frizzled-2 1.15 1 1 0 825.3296 1 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 16403.662 1 +A1Z7L2 IP20435p 7.96 1 1 1 468.05862 1 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 8535.853 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 5615.593 1 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 4905.6763 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 18987.214 2 +A1A6X2 IP16893p 12.07 1 1 1 7257.2964 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 18471.617 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 5598.267 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 2031.3649 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 28332.17 2 +Q7JXE1 Bunker gear 4.75 1 1 1 801.512 1 +Q9VL31 RIP-like protein 4.06 1 1 1 5855.1045 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 4498.6777 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 1 0 799.4342 1 +Q9VX71 Uncharacterized protein 5.2 1 1 1 46428.23 1 +Q8IQ51 trypsin 3.05 1 1 1 14497.652 1 +Q9VHS0 FI07206p 2.49 1 1 1 6011.291 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 11593.5205 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 3166.0295 1 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 1876.9935 1 +Q9VQY8 Vacuolar protein sorting-associated protein 53 homolog 0.9 1 1 1 439.99658 1 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 3857.9922 1 +Q8SYC5 RE68347p 2.26 1 1 0 508.2979 1 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 6898.217 1 +Q9XZF0 Protein yippee 5.79 1 1 0 12432.381 1 +Q9VD92 Protein archease-like 5.77 1 1 1 10405.644 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 8584.177 1 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 2608.3508 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 23836.553 1 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 839.6773 1 +Q961D1 Cyclin-K 1.75 1 1 1 2450.9133 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 44389.39 1 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 1909.9792 1 +Q9VKZ7 Nicalin 1.25 1 1 1 24463.684 1 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 43971.606 2 +Q8T0B1 Nuclear envelope phosphatase-regulatory subunit 1 homolog 8.4 1 1 1 966.3343 1 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 22113.678 1 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 3928.4155 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 3237.3948 1 +P54398 Fat body protein 2 3.52 1 1 0 40728.895 1 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 954.8679 1 +Q9VJ98 GH05617p 2.44 1 1 1 5300.5327 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 4210.6494 1 +Q9VYC9 FI16963p1 4.12 1 1 1 511.36432 1 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 94578.145 8 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 30183.6636 4 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 31257.411799999998 5 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 11349.5308 2 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 55978.7463 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M3_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M3_TMTc.txt new file mode 100644 index 0000000..6c98868 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SF1g_M3_TMTc.txt @@ -0,0 +1,4100 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 128N, Sample, n/a, SF1g_M3 Abundances Count: F8: 128N, Sample, n/a, SF1g_M3 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 198724.9988 7 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 80694.91192 9 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 10301038.61355 65 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 61508.22876 9 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 215600.8634 11 +A0A1F4 Protein eyes shut 12.91 28 65 0 1772567.65181 58 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 14511.48903 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 229166.14244999998 15 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 18197.99254 3 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 8006.5649 2 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 9671.44 4 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 25029.026700000002 4 +A1Z877 Nidogen 21.48 28 49 28 2083648.7297 46 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 58638.181939999995 6 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 608345.54727 59 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 439173.3088 7 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 168862.6083 11 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 333307.2269 25 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 10714.2464 2 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 5915.133 1 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 213246.1844 18 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 35057.895 2 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 62787.987799999995 8 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 146581.0911 7 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 14163.997 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 67396.3233 4 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 9304.4553 2 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 977572.59035 10 +A8DYP0 Protein Obscurin 1.87 8 8 8 33914.19714 8 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 530623.6133300001 10 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 5409696.29543 117 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 840793.02405 23 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 1705162.67161 46 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1535988.8234 21 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 161332.957 8 +C0HL66 Histone H3.3A 55.15 7 37 0 80234.90226 5 +C0HLZ9 Baramicin A1 17.51 4 6 0 113988.708 5 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 2013120.17084 40 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 14987.9833 2 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 148275.50089999998 12 +M9NDE3 Protein bark beetle 4.42 14 14 14 110680.98581 12 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 12387061.19 69 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 115756.7808 10 +O01367 Protein held out wings 18.52 7 14 0 324068.3393 13 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 710395.0036200001 13 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 12216886.15934 128 +O02194 Presenilin homolog 5.73 2 2 0 13144.721 1 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 1046562.8158 18 +O02649 Heat shock protein 60A 76.27 44 168 28 19429287.52037 148 +O15943 Neural-cadherin 17.05 53 82 2 1905661.54864 78 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 181319.5528 12 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 63466.530699999996 4 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 23403.8116 3 +O18333 Ras-related protein Rab-2 44.6 9 17 9 479357.5689 17 +O18334 Ras-related protein Rab6 33.17 8 22 0 123064.9325 8 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 1334450.9844 21 +O18388 Importin subunit beta 3.85 4 4 0 74112.826 4 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 15161719.60198 123 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 1320652.5939 37 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 548883.6148 14 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 8271.345 1 +O44342 Protein windbeutel 17.51 4 5 0 58584.649000000005 5 +O44386 Integrin alpha-PS3 7.26 8 10 6 169004.88573 9 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 552103.7311 5 +O46037 Vinculin 59.31 53 121 0 4168746.32736 107 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 10026.665 1 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 832089.3033 17 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 210935.3173 10 +O46339 Homeobox protein homothorax 5.54 2 2 2 9089.4467 2 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 845082.75235 18 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 32097.567499999997 2 +O61307 Teneurin-m 2.01 4 4 0 70444.204 2 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 185204.5299 10 +O61491 Flotillin-1 57.51 24 64 24 3197235.6896 59 +O61722 PRL-1 phosphatase 67.05 10 24 10 479246.43886 21 +O62619 Pyruvate kinase 69.79 30 93 30 7291115.2712 75 +O62621 Coatomer subunit beta' 2.08 2 2 2 4923.629000000001 2 +O76206 Putative riboflavin kinase 39.87 6 13 0 610842.968 9 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 369869.82370000007 6 +O76742 Ras-related protein Rab7 37.68 8 13 8 490121.4189 12 +O76878 RILP-like protein homolog 18.96 7 9 0 66889.8576 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 197529.55693 10 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 461852.20397 14 +O77051 Transcription factor E2F2 16.76 6 8 0 56205.34177 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 76767.01139999999 6 +O77277 Torsin-like protein 10.0 4 5 0 147152.3316 5 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 45940.2063 4 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 327585.85697 22 +O96690 Protein PDF 15.69 1 2 1 12446.654 1 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 6715613.62932 93 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 173156.9505 8 +O97125 Heat shock protein 68 30.39 17 74 11 874676.94704 25 +O97172 UPF0729 protein CG18508 29.29 3 3 0 21587.689 2 +O97394 Protein sidekick 0.45 1 1 0 631.51434 1 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 51430.099 3 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 4059722.17057 44 +P00334 Alcohol dehydrogenase 88.28 23 232 23 93955711.78961 201 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 3142608.934 22 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 12191.4097 3 +P02255 Histone H1 25.0 5 6 0 61653.7224 6 +P02283 Histone H2B 56.91 8 80 8 10648782.69344 73 +P02299 Histone H3 55.15 7 35 2 8776403.02576 29 +P02515 Heat shock protein 22 38.51 7 11 7 281568.0845 10 +P02516 Heat shock protein 23 84.95 16 72 0 10442057.52217 65 +P02517 Heat shock protein 26 48.08 8 23 0 3476214.6703 23 +P02518 Heat shock protein 27 55.87 11 23 0 2018532.97915 18 +P02572 Actin-42A 74.2 30 655 3 237556151.90012 584 +P02574 Actin, larval muscle 66.22 27 546 0 2405826.0554 19 +P02828 Heat shock protein 83 51.74 42 171 0 16474035.57461 163 +P02843 Vitellogenin-1 65.15 29 248 0 2417243.63983 132 +P02844 Vitellogenin-2 66.97 26 196 0 1958292.93761 108 +P04197 Myb protein 2.28 2 2 0 9393.7307 2 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 580901.094 8 +P04388 Ras-like protein 2 25.0 4 8 4 272123.0031 7 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 9244.8253 2 +P05205 Heterochromatin protein 1 44.66 9 23 9 788080.681 19 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 3189378.4952 35 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 2638419.8249999997 12 +P05552 Transcription factor Adf-1 17.56 4 5 0 95678.478 4 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 173599.27610000002 9 +P05812 Heat shock protein 67B1 22.7 8 11 8 152565.18523 11 +P06002 Opsin Rh1 7.24 3 7 3 329301.8328 5 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 83243753.50811 187 +P06607 Vitellogenin-3 80.0 35 270 0 3797416.02597 196 +P06742 Myosin light chain alkali 55.48 9 117 0 17350681.57628 96 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 5348.5239 2 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 7700575.7861 33 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 26877502.56722 132 +P07665 Serendipity locus protein beta 5.9 3 4 0 62249.3963 4 +P07668 Choline O-acetyltransferase 14.7 8 8 8 39486.229269999996 7 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 106433668.42809 328 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 118539.98352000001 8 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 401490.7551 22 +P08144 Alpha-amylase A 22.87 10 19 0 1019497.2746 17 +P08171 Esterase-6 15.26 8 18 0 807527.13546 17 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 91727.196 5 +P08182 Casein kinase II subunit beta 38.72 8 19 2 1105659.43183 18 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 7228645.4355 45 +P08645 Ras-related protein Rap1 40.76 6 13 0 324027.10497 12 +P08646 Ras-like protein 1 38.62 7 19 7 1003778.6319 17 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 48368129.1276 156 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 245088.5055 12 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 10791864.82497 100 +P08928 Lamin 75.72 60 199 59 11579078.11514 175 +P08985 Histone H2A.v 42.55 10 39 8 4069248.5883 27 +P09040 Drosulfakinins 17.73 3 4 3 104249.21549999999 3 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 3651909.43294 46 +P09208 Insulin-like receptor 2.19 5 6 5 20247.53952 5 +P09491 Tropomyosin-2 82.39 40 292 3 1102199.122 10 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 182486.7417 8 +P10379 Protein unzipped 27.46 11 26 0 991173.6922 24 +P10552 FMRFamide-related peptides 8.36 3 4 3 380419.745 4 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 1454829.13218 64 +P10981 Actin-87E 69.15 30 649 0 14711860.62225 30 +P10987 Actin-5C 74.2 31 679 0 4222245.8528 23 +P11046 Laminin subunit beta-1 29.14 47 83 47 3702556.23746 75 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 1719.7955 1 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 69855971.08948 333 +P11584 Integrin beta-PS 27.54 22 46 0 1973162.48087 44 +P12024 Chaoptin 34.98 42 110 0 5826622.07638 102 +P12080 Integrin alpha-PS2 12.39 17 21 17 929434.99956 19 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 19365.8296 3 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 4481355.3023 49 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 52628.025 4 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 499718.4451 14 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 40043.6 3 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 3636938.5591 44 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 405384.10579999996 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 454756.7214 9 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 2004408.94027 39 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 5151519.26867 109 +P13395 Spectrin alpha chain 66.34 150 596 0 43353532.51942 541 +P13469 DNA-binding protein modulo 6.83 4 4 0 66992.5528 4 +P13496 Dynactin subunit 1 19.53 26 29 26 568480.9335 28 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 5357951.65322 131 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 211159.5774 12 +P13678 Protein kinase C 6.22 5 6 0 63245.705 4 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 19365.795 1 +P14199 Protein ref(2)P 21.04 10 16 10 666512.7440000001 15 +P14318 Muscle-specific protein 20 83.15 21 93 21 9951531.5714 86 +P14484 Pupal cuticle protein 27.17 5 23 5 1360649.1402999999 21 +P15007 Enolase 77.8 36 335 1 71703440.83179 297 +P15215 Laminin subunit gamma-1 38.87 56 107 0 4995354.83869 101 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 23913.832159999998 4 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 8900199.69786 58 +P15364 Protein amalgam 24.62 6 10 0 268797.52259999997 9 +P15372 Phosrestin-2 69.78 24 97 0 3990648.72564 88 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 157820.965 4 +P16378 G protein alpha o subunit 26.27 11 43 8 3893180.233 39 +P16554 Protein numb 19.06 9 11 0 195781.0091 11 +P16568 Protein bicaudal D 20.59 17 19 0 395060.5646 18 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 361743.4407 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 9075.654 1 +P16914 Protein elav 34.58 12 38 0 1685362.754 35 +P17210 Kinesin heavy chain 46.77 45 96 45 3154219.17311 84 +P17276 Protein henna 40.04 15 35 0 2611445.4715 32 +P17336 Catalase 44.47 19 65 19 3766266.6251 52 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 1785457.90675 28 +P17719 Dihydrofolate reductase 26.92 4 8 4 117179.0211 7 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 5096101.0005 41 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 24974.245000000003 2 +P18431 Protein kinase shaggy 43.77 19 57 0 3032985.41164 53 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 23214767.3076 220 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 256770.9223 12 +P18824 Armadillo segment polarity protein 17.67 13 22 0 283035.342 17 +P19107 Phosrestin-1 71.82 33 296 33 33517758.63479 278 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 1397461.3079 23 +P19334 Transient receptor potential protein 4.39 6 7 5 31834.3401 4 +P19339 Protein sex-lethal 5.65 2 2 0 21177.36 2 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 804225.5123 11 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 9196305.07703 60 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 25578.026299999998 3 +P20153 Protein ultraspiracle 1.57 1 1 0 16379.453 1 +P20228 Glutamate decarboxylase 20.78 11 32 0 663543.0675 29 +P20232 Transcription elongation factor S-II 38.02 12 19 0 476844.50558 17 +P20240 Otefin 40.8 14 20 14 306705.38505 16 +P20241 Neuroglian 26.04 33 88 0 4275357.4039 82 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 516960.5537 11 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 61305.922 3 +P20354 G protein alpha s subunit 47.01 15 32 1 5350.912 1 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 44980.24166 6 +P20432 Glutathione S-transferase D1 52.15 14 87 11 25034174.12071 76 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 11940338.1795 66 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 64137032.3644 180 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1362647.8895 31 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 12606771.34854 109 +P22465 Annexin B10 76.01 24 137 24 12686943.04415 119 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 1986594.0847 26 +P22813 Heat shock factor protein 4.34 3 3 0 12179.3169 2 +P22815 Protein bride of sevenless 2.01 2 3 2 32992.7057 3 +P22979 Heat shock protein 67B3 55.28 7 20 7 955803.9284 18 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 57225.3756 6 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 760817.20734 38 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 30156.636 2 +P23625 G protein alpha q subunit 57.51 21 85 18 8720007.4398 77 +P23654 Neurotactin 15.84 11 14 0 211392.20805000002 14 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 475944.9121 12 +P23779 Cystatin-like protein 57.94 7 40 7 2949035.1602 36 +P24156 Prohibitin 1 68.12 18 72 0 5187566.42445 68 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 37834150.99618 122 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 205614.93 2 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 34772.0955 4 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 1253233.1498 27 +P25171 Regulator of chromosome condensation 10.42 5 6 5 180722.522 5 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 6154.2359 2 +P25228 Ras-related protein Rab-3 37.73 7 22 0 214489.04194 9 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 144745.43180000002 9 +P25822 Maternal protein pumilio 3.13 5 6 0 80932.84360000001 6 +P25843 Profilin 88.89 7 37 0 1829895.57157 34 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 2705442.756 9 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 267328.7044 12 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 1065164.4241 21 +P26686 Serine-arginine protein 55 19.68 7 14 0 379249.79544 14 +P27716 Innexin inx1 2.49 1 1 0 2539.9734 1 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 900098.9783000001 8 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 97987.7381 9 +P29052 Transcription initiation factor IIB 16.83 6 10 0 218446.2475 10 +P29310 14-3-3 protein zeta 68.55 19 282 0 56444169.24614 236 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 976177.1667000001 15 +P29413 Calreticulin 58.13 22 67 0 8630353.01171 64 +P29613 Triosephosphate isomerase 78.54 20 145 19 34665668.35669 138 +P29742 Clathrin heavy chain 7.99 13 14 0 126242.6902 12 +P29746 Protein bangles and beads 63.12 27 57 27 5493369.603 56 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 4264568.6564 67 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 190835.03360000002 6 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 20681104.53939 173 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 20528656.30863 164 +P30432 Furin-like protease 2 2.5 4 4 0 27546.423 3 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 6538.2007 1 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 6111464.9618 37 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 4172999.68096 82 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 2533095.2471 29 +P32234 Guanylate binding protein 128up 16.85 6 9 5 170917.26270000002 8 +P32392 Actin-related protein 3 26.56 9 16 9 459519.255 16 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 513849.32636 18 +P33438 Glutactin 36.94 29 56 0 901771.92585 46 +P34082 Fasciclin-2 26.8 21 34 0 884439.7319 28 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 1648018.9785799999 23 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 1343971.1737 23 +P35220 Catenin alpha 26.39 24 38 14 1016531.63261 36 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 102310008.36097 367 +P35415 Paramyosin, long form 75.2 91 521 0 47646540.76869 456 +P35416 Paramyosin, short form 60.0 45 292 0 5743118.97458 52 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 13205.415200000001 4 +P35554 Flightin 54.4 9 20 0 2030344.5122000002 19 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 80486.0086 7 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 4390720.54148 54 +P36188 Troponin I 57.99 21 83 0 10343551.3456 76 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 1343512.2710799999 16 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 11897.98 4 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 2214293.8482999997 31 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 82535.72940000001 2 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 11054732.460549999 113 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 320221.7934 9 +P37236 Frequenin-1 71.66 12 40 0 1475458.5316 12 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 7112.88 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 1272131.3077 12 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 10307136.88472 72 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 6932950.857 52 +P39736 Puff-specific protein Bx42 9.87 4 5 0 38889.023799999995 4 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 260038.7671 6 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 740443.9132 12 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 281446.3938 6 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 1738823.91787 31 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 8296.548760000001 5 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1069383.4461 20 +P40427 Homeobox protein extradenticle 9.31 3 4 0 137948.833 4 +P40792 Ras-related protein Rac1 34.38 6 13 0 1399146.4218000001 13 +P40793 Cdc42 homolog 24.61 4 8 0 604457.7490999999 7 +P40796 La protein homolog 40.51 13 18 12 469171.64604 16 +P40797 Protein peanut 38.4 19 35 18 1568544.43066 35 +P40945 ADP ribosylation factor 4 38.33 5 12 0 180723.0641 7 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 517237.521 5 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1613909.6954 33 +P41043 Glutathione S-transferase S1 83.53 19 72 0 9687921.366 67 +P41044 Calbindin-32 76.77 26 157 0 13851666.58636 143 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 692611.15475 25 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 2167165.2478 21 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 910904.6745 14 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 4353694.14918 43 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 3587489.9095 41 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 3195141.77221 41 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 207242.0009 7 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 1022629.10812 19 +P41900 General transcription factor IIF subunit 2 6.86 1 1 1 384.82117 1 +P42207 Septin-1 12.47 5 7 4 114261.0839 5 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 6244213.7778 45 +P42325 Neurocalcin homolog 61.05 12 34 12 2056282.4940499999 31 +P42787 Carboxypeptidase D 5.33 7 15 0 334157.70418 12 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 325299.396 5 +P45437 Coatomer subunit beta 8.61 5 8 5 91317.76759999999 6 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 21836068.9616 88 +P45888 Actin-related protein 2 28.82 9 17 9 900398.6796 15 +P45889 Actin-related protein 1 37.23 12 24 12 996592.5231999999 22 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 36389.555 1 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 1224794.49784 17 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 2874622.3781 35 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 498963.60349999997 10 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 2327551.98285 71 +P46824 Kinesin light chain 48.43 25 56 0 3016320.96445 51 +P47947 Troponin C, isoform 1 20.78 3 32 0 3851620.2217 31 +P47948 Troponin C, isoform 2 48.39 6 16 0 591619.6638999999 9 +P47949 Troponin C, isoform 3 62.58 8 28 0 1894447.4635 23 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 4161487.7216999996 30 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 2549055.4162999997 26 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 2130465.4552 36 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 9430503.2982 39 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 313183.4057 8 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 39283.908 3 +P48554 Ras-related protein Rac2 26.04 5 12 0 46004.6 1 +P48555 Ras-related protein Ral-a 58.21 10 29 1 1903928.986 27 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 62259.5476 4 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 11609744.77073 59 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 504911.3994 14 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 2406014.81907 47 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 5422913.0094 103 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 355866.1229 12 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 3030131.1837 37 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 3152749.64305 44 +P48607 Protein spaetzle 9.2 3 4 0 2405.8661 2 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 181950.9349 8 +P48610 Arginine kinase 1 76.69 46 489 0 127103487.46301 438 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 2545302.63234 34 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2233373.33691 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 749323.90914 8 +P49028 Protein mago nashi 11.56 2 7 2 67860.1643 5 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 357081.415 7 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 46833.65015 3 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 1166824.92795 8 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 3425.6287 1 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 110907.5021 7 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 6262.961 2 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 13767.2587 2 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 91431.71214999999 5 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 2926199.3844 29 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 564970.05 12 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 11477.515599999999 3 +P51406 Bystin 1.83 1 1 1 1646.9882 1 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 661433.15581 25 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 81840.93767 13 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 844118.8907 22 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 605785.9727 9 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 9516.3445 2 +P53034 Replication factor C subunit 2 20.24 6 6 6 119284.7776 6 +P53501 Actin-57B 70.21 33 663 5 57431939.49639 90 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 21407.702 2 +P53777 Muscle LIM protein 1 56.52 6 24 0 1048896.89834 18 +P53997 Protein SET 15.24 4 9 4 542848.1766 9 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 202706.2686 5 +P54191 General odorant-binding protein 69a 6.08 1 1 1 39391.54 1 +P54192 General odorant-binding protein 19d 71.33 13 119 13 37508883.31869 115 +P54193 General odorant-binding protein 83a 42.86 7 17 0 2564917.19 13 +P54195 General odorant-binding protein 28a 40.56 4 17 4 867297.83218 15 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 59082.91493 4 +P54352 Ethanolamine kinase 13.9 6 7 4 245399.77920000002 6 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 916954.12451 28 +P54357 Myosin-2 essential light chain 89.12 10 58 1 3945971.30607 49 +P54359 Septin-2 13.13 7 12 1 554660.2038 12 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 46810.544 2 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 6353186.4033 93 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 76195.628 4 +P54399 Protein disulfide-isomerase 76.81 40 203 0 21068768.115369998 179 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 28556756.20627 164 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 419108.37100000004 7 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 902677.1693 14 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 2576843.137 14 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 7234525.09028 64 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 2644410.036 27 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 3678860.6009 45 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 37537.24775 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 189142.9404 4 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 1802231.4638 22 +P61849 Dromyosuppressin 29.0 3 3 0 83069.7175 3 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 18876944.15548 109 +P61855 Adipokinetic hormone 37.97 2 4 2 57946.86245 4 +P61857 Tubulin beta-2 chain 36.55 15 179 2 3471711.05 3 +P62152 Calmodulin 99.33 19 482 0 117696190.69078 425 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 1875080.0709 24 +P81829 Leucokinin 6.25 1 2 1 24655.34 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 11865474.6862 84 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 6157539.82945 39 +P82295 Prominin-like protein 0.99 1 1 0 971814.75 1 +P82804 Partner of Y14 and mago 24.15 5 6 4 21985.94343 5 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 954540.847 11 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 373834.61155000003 12 +P83967 Actin, indirect flight muscle 69.15 30 612 3 412148.28182 12 +P84029 Cytochrome c-2 76.85 13 103 0 32622261.65176 101 +P84040 Histone H4 60.19 11 107 0 12415104.06873 95 +P84051 Histone H2A 42.74 7 32 0 3268375.5343 14 +P84345 ATP synthase protein 8 18.87 1 11 1 264549.9109 11 +P91664 Protein max 4.35 1 1 0 29844.574 1 +P91891 Protein Mo25 34.22 13 25 0 1773913.4463 22 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 390741.92626 23 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 1411954.97216 55 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 9966056.33734 110 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 5749777.6732 45 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 3005958.0896 40 +P92029 DnaJ-like protein 60 5.53 1 1 0 7466.7256 1 +P92177 14-3-3 protein epsilon 79.01 28 274 26 37718162.47399 205 +P92204 Negative elongation factor E 14.64 4 4 4 123809.955 4 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 33194.44085 4 +P98081 Protein disabled 6.16 12 15 0 50318.792219999996 11 +Q00174 Laminin subunit alpha 22.68 79 156 79 8032051.6481 143 +Q01603 Peroxidase 10.14 6 8 0 208994.5656 7 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 29483152.53665 206 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 128748.3595 7 +Q01819 Connectin 2.64 2 2 0 51091.96 1 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 17095.922130000003 4 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 2385850.58965 31 +Q02910 Calphotin 6.83 4 15 4 248419.8515 12 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 131407.17032 7 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 27869.252099999998 5 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 2382218.2109 27 +Q03427 Lamin-C 66.67 46 141 3 7211632.23037 125 +Q04047 Protein no-on-transient A 16.14 9 10 0 171850.0979 9 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 307178.4131 15 +Q04691 Fat-body protein 1 29.93 28 50 0 13014352.4003 49 +Q05783 High mobility group protein D 21.43 2 7 0 176783.83909999998 4 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 78611993.53754 512 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 39212.092000000004 3 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 15536469.528900001 104 +Q06943 High mobility group protein Z 21.62 3 10 0 137128.52904 10 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 29823.3521 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 1184685.65143 22 +Q07171 Gelsolin 22.06 16 44 0 3064024.58856 44 +Q07327 Protein ROP 24.29 15 40 0 1381994.12775 37 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 961884.24216 25 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 3696.6619 2 +Q08473 RNA-binding protein squid 43.31 10 27 0 2373252.9529 24 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 199945.0387 8 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 18989.7324 3 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 551760.67516 16 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 101921.7414 7 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1414741.234 14 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 15479.69438 5 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 6413.9727 1 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 288070.472 11 +Q11002 Calpain-A 7.37 6 7 0 92482.5591 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 4512361.73624 32 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 9939211.3666 85 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 6681675.71167 82 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 9765010.44072 105 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 5705254.9332 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 12433519.1006 89 +Q24050 Elongator complex protein 5 27.48 6 10 6 267511.0979 9 +Q24114 Division abnormally delayed protein 20.93 10 15 0 407725.35663 14 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 922812.8486 21 +Q24134 Negative elongation factor D 4.84 2 2 0 27786.72044 2 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 9546.39855 4 +Q24185 Protein hook 28.28 21 32 21 776442.67686 32 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1399324.1688 31 +Q24207 Protein boule 36.4 6 12 0 349078.87174 11 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 319465.52037 17 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 21381.72912 7 +Q24211 Protein stoned-A 42.71 35 65 0 1938079.1265 61 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 6598248.83526 27 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 239701.6579 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 101668.23869999999 4 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 36389835.20029 169 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 864167.92458 25 +Q24292 Protein dachsous 0.54 2 2 0 36318.121 2 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 200472.454 2 +Q24298 DE-cadherin 21.57 29 50 29 1665287.3168000001 47 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 50537.106100000005 5 +Q24318 Transcription factor Dp 16.18 7 8 0 79324.7265 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 396012.57800000004 8 +Q24322 Semaphorin-1A 4.67 4 5 0 29806.5094 5 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 427174.075 4 +Q24372 Lachesin 27.58 9 17 9 546740.52724 16 +Q24388 Larval serum protein 2 12.27 8 11 0 200570.382 8 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 6118411.36201 74 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 10872091.47901 59 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 54446115.7362 181 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 257265.28086 21 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 540874.5449 9 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 56074.2163 8 +Q24509 Syntaxin-5 4.93 2 3 0 23541.5677 3 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 573136.48005 15 +Q24524 Protein singed 10.35 5 5 0 22057.968800000002 4 +Q24537 High mobility group protein DSP1 22.9 8 15 0 770397.1 14 +Q24547 Syntaxin-1A 43.64 15 53 0 4529828.13432 50 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 51733334.77047 254 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 131981.16 6 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 451731.6402 9 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 5116243.04461 30 +Q26377 Pro-corazonin 44.81 5 17 5 215345.03007 14 +Q26416 Adult cuticle protein 1 20.0 1 3 1 318623.27 2 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 317992.25838 12 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 677070.81884 16 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 80884.6245 4 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 3599801.3154 50 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 1631330.983 14 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 3897513.9609 48 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 446384.5131 10 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 259855.0771 11 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 651295.881 18 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 684102.5455 15 +Q3KN41 Neurexin 1 3.37 5 5 0 22902.6096 5 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 3984.2716 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 86814.1474 4 +Q4V645 Trissin 7.41 1 1 1 25455.645 1 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 205084.215 5 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 35795.5754 2 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 355229.6324 17 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 15760.30409 4 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 15131.5125 3 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 116128.3096 5 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 229459.7498 6 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 224618.3928 6 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 963045.51523 11 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 871806.43292 14 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 85453.524 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 563270.58887 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 1209393.6272 27 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 22732.707300000002 2 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 202936.83164 11 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 115713.30040000001 8 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 857420.7714000001 17 +Q7JXF7 Protein seele 39.15 6 16 6 493026.3945 15 +Q7JYV2 Synaptogyrin 8.3 1 2 1 4356.0058 2 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 36799.49465 5 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 58028.342 3 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 206265.2586 13 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 203882.3003 8 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 205164.8812 11 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 168221.59 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 5422.109 1 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 3199623.5743 38 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 52895.3995 3 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 532172.0171 11 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 542065.20973 21 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 56128.3806 4 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 999449.80671 23 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 61434.072 5 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 12324658.1166 72 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 131326.32085 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 2543628.0322 27 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 2476774.923 36 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 20068.5976 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 3049164.66204 65 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 288102.7062 15 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 625722.6316 13 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 27926.157099999997 8 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 76164.292 2 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 538421.0381 11 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 24971968.40832 75 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 11525.586 2 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 272822.0574 9 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 502662.5834 16 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 132944.0659 4 +Q7KVY7 Syntaxin-4 14.11 4 6 1 54282.16037 6 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 64023.47617 7 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 6265354.09608 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 1853.3229 1 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 1758257.3168000001 28 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 614281.56025 19 +Q868Z9 Papilin 23.81 59 118 59 2559349.88079 104 +Q86B79 RING finger protein unkempt 6.18 3 3 0 51109.073 3 +Q86B87 Modifier of mdg4 5.74 3 6 0 97754.7983 6 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 71200.08957000001 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 3594.2178 2 +Q86NP2 Negative elongation factor A 11.99 11 18 0 147968.5811 13 +Q86P48 AT-rich binding protein 5.15 1 2 1 2049.6755 1 +Q86S05 Protein lingerer 5.96 6 8 0 19786.85889 8 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 97940.23999999999 5 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 1926031.68966 35 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 127693.36349999999 9 +Q8IN41 Protein Turandot X 16.2 2 4 2 32696.991599999998 4 +Q8IN43 Protein Turandot C 48.84 5 12 5 263162.4299 12 +Q8IN44 Protein Turandot A 64.34 9 34 9 1825922.6771 30 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 332959.07444 10 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 2544.6752500000002 2 +Q8IPM8 Complexin 71.13 11 97 0 32136.588200000002 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 406689.3157 17 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 186946.09817 6 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 38511.1694 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 125464.4813 10 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 321344.8408 9 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 457863.794 6 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 2606813.80745 42 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 67781.0527 4 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 16949.656860000003 4 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 14020.1158 3 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 383676.1069000001 5 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 156594.2403 6 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 3835009.87776 44 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 1048130.8129 19 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 21350.4326 2 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 57499.4418 7 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 15820.4608 4 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 295464.87214 10 +Q8MSS1 Protein lava lamp 22.63 60 78 0 543038.40233 69 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 46494.576 3 +Q8MSV2 Protein alan shepard 16.78 8 21 8 1103190.35899 18 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 11560.133 1 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 31466.9198 7 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1333583.7407499999 19 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 593771.11204 30 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1379066.2149999999 18 +Q8SY33 Protein Gawky 14.09 15 25 15 237047.22875 23 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 3573282.17 53 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 655001.5181 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 78401.0196 5 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 4382.3739000000005 2 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 15963.698 2 +Q8SZ63 Golgin-84 13.57 7 7 7 21524.8726 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 542047.689 14 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 1677934.0108 41 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 2397124.64846 55 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 7903.7046 1 +Q8T390 Endophilin-A 62.33 23 114 0 7353386.929 99 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 219338.30740000002 7 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 2224797.0644 19 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 528799.91386 19 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 441587.88044 14 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 9176.3214 3 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 1511432.2005 23 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 36041.9027 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 12216194.29911 117 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 14246508.51062 90 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 21612099.70518 139 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 3669.9585 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 3652818.07272 35 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 3773350.5713 24 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 18370714.98551 105 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 2506244.7794 56 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 75385.9617 5 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1196273.3884 38 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 3234.6202 3 +Q94547 Regulator of gene activity 10.77 6 9 0 230662.9989 8 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 75247.59906 6 +Q94901 RNA-binding protein lark 44.03 16 37 16 1039434.48726 33 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 26695.73274 3 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 392227.8667 8 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 139853040.13699 330 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 2249.6365 1 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 74629.9505 4 +Q95029 Cathepsin L1 36.39 19 81 3 7937701.5979 73 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 2211747.1913 26 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 40900.924 3 +Q95RA9 GILT-like protein 1 40.0 8 30 8 2000152.8986000002 27 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 27244.7933 4 +Q95RI5 Failed axon connections 63.16 27 130 0 12197692.87926 122 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 36175.5215 3 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 192204.291 5 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 11042.3099 2 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 372412.8615 18 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 108635.641 3 +Q95T12 Calcium channel flower 12.89 2 3 2 140583.09999999998 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 9713.591400000001 2 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 30287.29238 4 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 66400.24836 7 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 25079.3234 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 388964.87152 21 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 51427.23163 7 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 266313.5232 7 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 25960.4081 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 18004.862 3 +Q967D7 Protein turtle 4.51 7 9 0 130286.71174999999 8 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 162661.22840999998 16 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 318651.6531 7 +Q9GQQ0 Protein spinster 1.98 1 3 1 30203.5295 2 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 10500502.1753 49 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 23626.4603 4 +Q9I7D3 Caprin homolog 15.09 10 12 0 57054.99602 8 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 131975.1535 7 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 112652.2412 3 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 155732.4418 5 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 306252.78984 11 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1103209.653 28 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 52178.763399999996 5 +Q9I7U4 Titin 3.75 33 36 0 290035.21356 28 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 57276.2625 3 +Q9NB04 Patj homolog 33.87 24 53 0 1015918.3559 47 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 8012.06561 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 81503.957 2 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 12678.850699999999 2 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 171290.19195 7 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 415821.55939999997 5 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 44826.3585 8 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 56950.998 2 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 741.9355 1 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 3366090.19963 61 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 59164.92148 6 +Q9TVM2 Exportin-1 0.85 1 1 0 3113.6323 1 +Q9TVP3 J domain-containing protein 85.64 19 103 19 16584139.9154 96 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 1569328.7912899998 18 +Q9U4G1 Protein borderless 18.5 13 29 13 1072770.7017 27 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 211512.9463 9 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 536444.5765 16 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 1334683.08534 19 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 4605.0938 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 93702.2935 5 +Q9U915 Adenylate kinase 2 75.83 22 60 22 4258784.7301 53 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 247239.43800000002 7 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 508689.26396 13 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 416388.13005 18 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 622851.1994 15 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 14533.8688 2 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 3377.429 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 86746.206 5 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 2121444.88224 36 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 35288.6953 2 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 3598038.5245 26 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 12624.0524 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 343404.2811 8 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 1333556.564 16 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 333816.00580000004 13 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 3144220.7779 47 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 227303.66 8 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 514882.90910000005 21 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 120602.78199999999 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 635124.7344 26 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 25282604.27574 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 167932.57177 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 26079.6988 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 23506.86546 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 298728.44457 13 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 31774.9744 3 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 6918177.3149 56 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 261531.62339999998 7 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 529772.09684 10 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1342872.663 9 +Q9V3Z2 Serine protease 7 15.86 5 6 4 122870.84569999999 6 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 85777.6587 8 +Q9V427 Innexin inx2 18.26 7 11 0 442349.6142 10 +Q9V429 Thioredoxin-2 65.09 6 47 6 13331589.1788 47 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 754004.0265 13 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 1061375.52401 23 +Q9V447 Krueppel homolog 2 17.03 4 4 0 48030.104999999996 4 +Q9V496 Apolipophorins 38.44 126 319 0 34195641.01275 290 +Q9V498 Calsyntenin-1 2.97 3 3 0 14756.0437 3 +Q9V4A7 Plexin-B 0.54 1 1 0 928.59106 1 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 19638.778 2 +Q9V4C8 Host cell factor 7.0 10 13 10 255716.227 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 39268.439 4 +Q9V4N3 Cytochrome b5 44.03 5 20 5 774842.1026 15 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 217083.646 9 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 267553.2063 8 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 49163.381400000006 6 +Q9V521 Phenoloxidase 2 28.36 22 33 21 321871.4832 29 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 632812.1959500001 17 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 31379.7194 6 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 731100.7515 20 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 2392488.431 27 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 3573410.6622 31 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 14437.769 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 19102.13 3 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 323851.60706 13 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 7363.758 1 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 132050.6202 8 +Q9V6G5 Tafazzin 8.2 4 4 2 47168.70817 4 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 8302925.93464 76 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 85896.037 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 83917.425 2 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 103071.1302 7 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 29641.03205 3 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 4612958.1175 65 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 16316079.27722 114 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 989959.1691 24 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 121911.28275 7 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 127231.8 3 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 738.81683 1 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 1174583.7167 40 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 6181039.87683 145 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 1031783.3663 17 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 497297.3877 12 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 75866.04950000001 4 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 182959.168 5 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 262265.1776 8 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 63789.3792 4 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 18068.767 2 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 16574.7553 3 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1589028.4945 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 102756.4574 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 724526.5583 16 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 28929.0772 5 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 41275.3277 4 +Q9VA37 Protein dj-1beta 83.96 12 76 12 8306914.3010599995 67 +Q9VA70 Neutral ceramidase 3.98 3 3 0 36220.2742 3 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 11351963.2953 49 +Q9VAF5 Cadherin-99C 6.33 10 10 10 104667.84732 10 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 7826070.4799999995 18 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 1642626.5433 18 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 7763773.14766 62 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 56181.472200000004 4 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 2904037.7324 31 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 245467.72464 6 +Q9VAW5 La-related protein 1 5.5 7 8 0 26848.88268 5 +Q9VAY3 Mitoferrin 5.8 2 2 2 7883.8667000000005 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 53183.8692 4 +Q9VB68 Serine protease grass 9.28 4 4 4 77050.98060000001 4 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 335666.3316 8 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 67198.33970000001 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 25330.7368 5 +Q9VBV3 Protein takeout 33.33 6 7 0 357536.1044 7 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 264073.899 13 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 17553.783 1 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 4.63 2 2 2 435.15237 1 +Q9VC57 Atlastin 3.14 2 2 0 87451.898 2 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 39963.2972 4 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 2086.8474 1 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1215156.6184 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 420589.2962 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 70038.72 3 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 38438.763999999996 2 +Q9VCE8 Actin maturation protease 16.48 2 4 1 8146.373 2 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 386755.9057 9 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 429265.29288 19 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 68114.456 3 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 387915.25845 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 639294.9292 14 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 37390.4807 2 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 25159.6022 4 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 39317.939 3 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 419361.12288000004 11 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1141081.51456 21 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 42287.7657 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 4696.348 1 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 97151.8344 5 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 254482.217 11 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 20421.5521 3 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 141348.91916 2 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 11221.457 1 +Q9VDL1 Esterase CG5412 18.28 5 11 5 93786.7289 11 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 60604.3355 6 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 740456.05596 9 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 35364.932 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 310812.8465 10 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 19308.4689 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 11914746.00115 56 +Q9VER6 Modular serine protease 10.51 7 8 7 102280.06999999999 7 +Q9VET0 Neuropeptide F 29.41 3 4 0 45485.072 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 3239366.9274 55 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 187127.47707 9 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 28119.2049 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 211100.68589999998 9 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 10945418.95494 76 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 24679.511300000002 2 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 1133214.4782 18 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 61034.041 3 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 397258.053 4 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 2314199.5354400002 38 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 108178.1207 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 40972.13 1 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 15151.4241 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 10898.0411 3 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 117682.25510000001 5 +Q9VFM9 Twinfilin 30.03 10 13 10 296123.40890000004 11 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 38325.3998 6 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 107328.29707 6 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 14438.5157 4 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 264425.9033 13 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 9493.7288 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 3046.7338999999997 2 +Q9VG55 Protein hugin 14.66 2 3 2 48985.7137 3 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 389954.8814 12 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 6643.482 1 +Q9VG76 Myc-binding protein 15.47 3 3 3 99352.45899999999 2 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 21466.3108 3 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 1531696.6013 17 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 56785.6637 5 +Q9VGG5 Cadherin-87A 8.35 12 13 12 201223.6367 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 41697.106999999996 2 +Q9VGP4 Importin-9 3.63 3 3 3 32535.2637 3 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 491634.50044 14 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 209838.9271 6 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 4912.3496 1 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 5923206.175 37 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 446629.2105 9 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 11970.5285 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 8097.5219400000005 3 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 620353.286 16 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 45219.199 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 708859.5003000001 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 403774.624 4 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 5067778.7198 22 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 9647.7244 2 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 28916.990830000002 4 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 246319.37960000001 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 94359.47350000001 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 662390.15695 11 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 92848.9367 10 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 785572.3262 10 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 63214.8 4 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 539227.66127 16 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 2715.6667 1 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 2748966.8366 57 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 5927150.0993 43 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 49923.623999999996 3 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 75156.28259999999 7 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 153272.30414999998 10 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 71429.89009999999 5 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 121592.36300000001 5 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 217024.67165 17 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 18729.1693 4 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 1316173.9375 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 1340057.6201000002 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 40553.2828 5 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 74960.531 4 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 553799.2322 11 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 17225.4359 4 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 362009.76296 15 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 7713.795 1 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 4379.65075 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1002860.913 16 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 363842.4618 9 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 441301.3224 9 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 1189696.9838 9 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 112720.41 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 10823.3926 2 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 21487.3854 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 88890.86 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 12038.2195 2 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 472141.3957 15 +Q9VJL6 Glia maturation factor 23.91 3 4 3 78697.404 3 +Q9VJQ5 Protein Dr1 26.78 4 4 4 72388.6572 3 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 1315408.5962 14 +Q9VJY9 Protein Loquacious 8.17 4 6 0 219708.5333 6 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 10714.27343 4 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 932076.104 17 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 6940.045 2 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 46869.1085 3 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 177347.6479 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 29623.521399999998 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 12509.245 1 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 111013.9247 7 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 4076.2617 1 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 240821.403 5 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 23301.7243 4 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 3862025.79947 68 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 3590968.67076 71 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 249001.05099999998 5 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 60485.085399999996 8 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 141632.7433 13 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 192844.2134 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 197026.50819999998 7 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 958886.3433000001 12 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 23026.868359999997 4 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 1466585.0898 23 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 327497.135 7 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 310441.5913 6 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 14614.605 1 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 14195.3612 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 39810.08594 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 14598.2592 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 103960.7146 6 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 60353.8364 10 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 79554.204 2 +Q9VMD6 Protein real-time 1.52 1 1 0 799.7494 1 +Q9VMD9 Tiggrin 19.93 46 58 0 929012.55211 57 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 307524.90140000003 9 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 650065.2722 17 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 14571.7916 3 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 94894.221 2 +Q9VMR8 Protein Turandot M 41.98 4 7 0 223312.4578 7 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 76208.42730000001 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 55215.097 2 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 158638.72869999998 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 1326094.3547 21 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 22594.5943 2 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 172089.72340000002 9 +Q9VMY9 Guanine deaminase 8.04 4 4 4 35611.957 3 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 11704.4845 2 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 228445.49746 7 +Q9VN14 Contactin 19.93 25 44 25 1350601.9234 39 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 31825.5072 2 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 13818.7449 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 520523.43580000004 7 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 2024872.97114 25 +Q9VN93 Cathepsin F 34.85 22 48 19 2465125.11614 41 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 598622.7180000001 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 84254.909 4 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 187499.0838 8 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 542254.2772 11 +Q9VNE2 Protein krasavietz 19.91 11 23 11 938948.6631 20 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 1150539.823 12 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 8740.805 1 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 11408.542 1 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 129374.0799 12 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 43757.368500000004 6 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 115366.66600000001 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 161369.0376 7 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 142875.5018 5 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 270361.57956 12 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 6902802.77194 48 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 938216.1473 16 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 179960.20904000002 10 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 89928.6208 7 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 218828.6526 4 +Q9VQC4 Glycerate kinase 15.61 8 9 0 78995.6442 9 +Q9VQF7 Bacchus 40.79 6 15 6 754027.4986 14 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 55049.595 3 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 1252477.116 20 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 396523.2845 11 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 75130.04490000001 7 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 299403.709 11 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 792.5312 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 62734.18555 5 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 7865.7596 2 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 103259.6096 4 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 168859.63554 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 17012.2217 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 53485.394440000004 4 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 21215.2302 4 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 68336.367 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 332435.4542 5 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 323633.887 7 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 49095.234 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 8109435.4918 89 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 274857.31810000003 10 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 19381.561700000002 3 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 82570.322 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 16283.344 2 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 19232136.13931 62 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 87027.109 3 +Q9VSS1 Protein Pixie 1.15 1 1 1 15595.992 1 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 128941.0267 9 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 20757.0666 2 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 2172628.22907 52 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 335386.4869 5 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 21987.148 1 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 20541.83 2 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 29681.285499999998 3 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 10121.3977 2 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1091741.5409 18 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 177315.3058 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 298915.444 8 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 59358.561 3 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 210104.45500000002 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 101059.0555 6 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 102279.2059 5 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 3170374.5308 44 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 346856.081 11 +Q9VTZ5 Transferrin 2 24.42 20 23 20 541494.8304999999 20 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 187014.7969 12 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 19374.477 1 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 14691704.23086 112 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 1174466.8607 36 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 73145.192 4 +Q9VU84 Drebrin-like protein 33.33 15 28 15 904113.3831 26 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 199973.1093 7 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 125361.10919999999 5 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 3397065.553 45 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 323872.1434 10 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 1666222.811 38 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 641.44916 1 +Q9VV36 Retinin 29.84 5 103 5 30102008.35418 84 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 3247970.86352 43 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 1644912.3671 27 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 83484.02859999999 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 236574.08359999998 6 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 948221.55173 25 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 85200.533 7 +Q9VVE2 Protein rogdi 33.96 9 14 9 698213.1635 14 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 769248.6016500001 13 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 49537.614 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 1245221.2939 28 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 53732.63186 8 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 13215.579259999999 3 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 1210380.4269 34 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 56752.165 4 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 67351.1642 4 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 250476.7347 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 112346.2179 4 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 34541.10223 7 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 1624581.54474 21 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 8027.6855000000005 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 222947.0247 10 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 869096.04692 20 +Q9VWA1 Clathrin light chain 43.84 14 43 0 4071241.0855300003 38 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 46466.632 2 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 46627.5135 4 +Q9VWE0 Cytokine receptor 3.28 4 4 4 7070.5725299999995 3 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 4684.57542 2 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 637999.8348 11 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 36360827.40109 198 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 4638553.6871 26 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 209462.49215 15 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 62022.2298 6 +Q9VWU1 Serine protease persephone 6.85 2 2 2 22563.938000000002 2 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 228072.636 2 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 2798.5051 1 +Q9VWX8 Frequenin-2 54.01 10 42 4 2880504.6469 40 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 17761.338 2 +Q9VX10 Sulfiredoxin 11.73 2 3 0 49387.62333 3 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 265598.6772 12 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 3261300.2319 27 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 16771.486 1 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 401073.4004 10 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 25748.1468 4 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 21152.0887 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 3364547.057 53 +Q9VXG4 Annexin B11 22.31 13 30 13 2089244.4613 28 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 679108.8885 16 +Q9VXK0 Protein NipSnap 15.38 4 6 0 315937.50539999997 6 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 279363.4215 14 +Q9VXN2 Protein stunted 55.74 4 15 4 575150.2605999999 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 54863.3058 5 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 895059.94819 19 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 587398.9319999999 7 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 16062.8017 3 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 2198509.1821 31 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 51734.8909 5 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 8157.6198 3 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 920285.4452 11 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 94788.5752 3 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 13904.848999999998 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 673707.6495 12 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 960.54614 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 29679.5106 2 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 4038.5461 1 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 565496.4102 10 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 18230.75 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 35146.53607 4 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 150317.1812 4 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 27641.298000000003 2 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 3710880.2034 57 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 60833.3497 4 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 111567.052 2 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 818563.64295 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 300547.751 10 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 3590181.38566 33 +Q9VZ35 Protein Vago 20.62 2 2 2 9900.3321 2 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 307495.79344 7 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 683814.829 24 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 1295553.5777 23 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 104583.27187 11 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 196644.131 3 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 20798.593 3 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 17785.006 1 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 39638.53585 6 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 14702.513159999999 3 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 6998.773 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 78635.73300000001 2 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 491472.807 9 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 2316161.0746999998 32 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 3274505.8802 66 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 545468.8977 18 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 54167.387 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 3746863.8676 57 +Q9W074 Protein HBS1 4.63 3 3 3 23402.6106 3 +Q9W0A0 Protein draper 6.21 5 7 0 32103.644800000002 6 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 4049725.0596 36 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 5491.3735 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 60763.112940000006 6 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 157262.1804 13 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 921060.8612 16 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 841254.0269 20 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 297877.2693 10 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 32986.542 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 3548.835 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 13220562.6793 41 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 246078.0457 7 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 17142.32635 5 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 67116063.535 90 +Q9W1G0 Probable transaldolase 56.5 17 62 17 7561308.8919 59 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 6443.512 1 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 978121.64 6 +Q9W1K5 Sestrin homolog 1.41 1 1 0 23283.963 1 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 130208.209 3 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 420998.912 7 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 63334.4984 7 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 54301.7698 5 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 44811.8375 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 334648.348 6 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 5296893.36558 49 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 299224.28 10 +Q9W266 Protein windpipe 13.44 10 18 10 616801.16313 18 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 2057857.5544999999 23 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 761045.5033 13 +Q9W2E7 Protein Rae1 17.63 6 8 6 361954.965 7 +Q9W2M2 Trehalase 40.94 22 40 0 1049957.1773 37 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 211536.30099999998 6 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 41652.2726 2 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 24820.24817 5 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 164289.55839999998 7 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 4888168.5565 71 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 787688.3261000001 15 +Q9W358 Chaperone Ric-8 8.55 6 6 0 58061.24572 4 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 8075068.4675 97 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 187117.6202 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 300381.458 6 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 226215.9514 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 148733.745 4 +Q9W3E2 Protein PIP82 26.03 29 40 29 258499.90626 29 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 200137.5113 11 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 31812.11434 3 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 97928.63 8 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 252115.2957 4 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 194514.9463 8 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 5002.1624 3 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 9125.8897 2 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 46485179.65343 182 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 158182.37660000002 5 +Q9W436 Neprilysin-1 7.54 6 7 6 55069.130600000004 6 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 88536.0203 8 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 2031.1139 1 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 191848.01425 5 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 1086985.0685999999 18 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 354175.90052 24 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 404982.282 11 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 1922981.654 23 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 107332.6043 5 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 3413701.06344 149 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 98376.544 4 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 1320920.6149 25 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 241563.96610000002 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 33146.4342 3 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 784808.4506 15 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 6498.904 1 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 1685189.6072 63 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 2546.285 1 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 6211.685 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 912462.4095000001 10 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 1683263.6492 29 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 69227.9423 5 +Q9XZ14 Protein gone early 8.19 5 6 0 31022.237399999998 5 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 153045.5582 12 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 1206429.7131 16 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 2462145.8654 19 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 4167478.098 35 +Q9XZL8 Protein sarah 31.16 7 13 0 272951.39 9 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 13165.0076 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 51257.162800000006 2 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 32288.944199999998 6 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 705454.85683 20 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 193624.496 4 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 1798604.749 15 +X2JAU8 Protein nervous wreck 40.0 41 115 41 7115642.61923 101 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 20100.734 1 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 202363.32155999998 16 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 30649.66 1 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 299533.35599999997 15 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 94955.614 5 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 296198.8875 14 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 5476.04184 2 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 8121815.18697 116 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 17717.591699999997 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 3261.5603 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 414004.66948 29 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 212082.66025 13 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 45438.6051 5 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 558292.68814 21 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 18917673.32871 167 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 40594.9416 5 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 82229.497 7 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 593257.79473 37 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 533901.7481 13 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 96077.1097 4 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 239554.54166 12 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 78605.3303 6 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 209704.9485 8 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 23286.65926 4 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 340580.13648 17 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 2267.4626 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 9915905.69949 125 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 662994.6224 15 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 131181.1466 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 29072.8385 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 27607.457000000002 5 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 1639.5985 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 6287967.27754 42 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 53896.2603 6 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 3584.81675 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 2600421.64232 66 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 71352.92679999999 5 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 810718.77055 28 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 200294.298 4 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 307505.2456 9 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 65705.258 3 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 643890.0192999999 14 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 757912.1888 19 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 1606386.68807 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 75869.27 6 +A0A0B4KEJ7 Coronin 14.21 7 8 0 95769.6594 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 22756.8273 3 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 19221.5245 3 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 67966.366 4 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 436660.76401 27 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 4406.525 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 30143.012 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 29388.1215 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 296512.44430000003 21 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 100814.7433 8 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 42537.7869 3 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2247023.1202000002 43 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 58082.681 4 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 10241104.49354 94 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 146751.65949 12 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 928314.2075 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 1004459.5823 16 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 414173.049 6 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 6092.2543000000005 2 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 216715.68795999998 10 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 92394.4178 8 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 23003.352 2 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 1003.7618 1 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 7778.3203 2 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 30060.5113 2 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 416338.16589999996 8 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 46804.539000000004 3 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 70230.76299999999 6 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 8520.435 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 129939.4627 7 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 33920.168 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 393521.12080000003 18 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 1783750.6813 23 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 3510329.9634 42 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 3720.1976 2 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 10497.5102 2 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 8756.2767 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 29769.639 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 1624102.0271299998 38 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 26095.951999999997 3 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 9137.034 3 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 59589.745500000005 5 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 90034.76533 6 +A0A0B4KH34 Annexin 57.41 23 123 4 16362868.06885 113 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 11935.6297 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 11361.7286 2 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 1166589.08415 15 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 311631.11546 25 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 74961.36 4 +A0A0B4KHF0 Ferritin 77.97 21 133 1 36284705.61259 107 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 61911989.75277 276 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 177166.80647 9 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 5915.1245 1 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 37286.6793 5 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 647184.2 16 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 633682.68774 28 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 305289.49 3 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 182797.2113 9 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 16104.4041 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 240781.90957000002 6 +A0A0B4KHZ0 Without children, isoform E 0.53 1 1 0 645.1301 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 2028338.5125 40 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 2104292.4588 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 72122.3276 5 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 17944.69 1 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 58270.453 7 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 2263.0136 2 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 19915.241739999998 4 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 1836863.36999 27 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 846570.5724000001 31 +A0A0B4LF95 glutaminase 18.84 10 11 0 246227.3473 11 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 1565201.5788 22 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 315262.8148 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 71677.648 4 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 28364.6814 3 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 76752.52317 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 17426.2977 3 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 29102.4024 4 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 93129.22589999999 9 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 49842.833600000005 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 403803.31984 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 24218.244 2 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 216100.55719999998 11 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 1436291.77775 47 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 242215.94543000002 10 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 39187.817 3 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 739265.7361 22 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 49081.0689 8 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 10503906.8941 58 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 56354.341 3 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 90130.3028 9 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 1628442.23687 37 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 27272.776 5 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 183773.8586 7 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 19438.152 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 10030.5144 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 92577.3083 9 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 27559.807 1 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 16869.975 1 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 16001.458 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 6098.7656 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 303413.96075 18 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 18275.65095 2 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 43107.721999999994 3 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 248591.24798 29 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 136180.759 9 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 82114.6584 6 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 416244.29544 12 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 11143.15215 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 543270.21765 15 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 73877.8701 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 31076985.0557 160 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 197824.1481 9 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 65405.443 3 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 4119.6963 1 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 5005680.30272 17 +A0A4D6K4X9 Axundead, isoform F 3.44 2 2 0 499.56378 1 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 15227989.61703 130 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 134557.11171 18 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 86348.1403 9 +A0A4P1SAA7 IP07559p 11.17 2 3 1 37004.320999999996 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 574.7313 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 923596.92114 63 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 310386.069 16 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 2089.988 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 16649.24 1 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 6454.8257 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 17942030.15147 288 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 7915.839 1 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 4621138.8364 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 205412.789 8 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 55719.9927 5 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 28207.909 2 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 50760.8857 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 11869.564999999999 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 99724.8595 8 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 9664633.3293 301 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1396052.1740599999 41 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 2487422.63642 35 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 1639215.136 23 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 67790.94129999999 10 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 170827.9313 11 +A1Z6F6 FI18602p1 16.42 12 15 0 431698.407 11 +A1Z6G9 FI18173p1 7.0 2 2 2 26289.2282 2 +A1Z6H4 RE52822p 16.12 8 11 0 293802.69019999995 10 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 64398.870330000005 8 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 9565.5632 2 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 377042.108 9 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 716943.21548 34 +A1Z6R7 FI21445p1 51.79 12 20 12 533451.2594699999 20 +A1Z6V5 FI01422p 44.02 15 36 15 1527575.7046 30 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 536014.0449 10 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 224355.58955 11 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 53847.087 3 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 22058.653100000003 3 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 6472.60866 3 +A1Z7B8 GEO08456p1 21.52 3 10 3 273842.857 10 +A1Z7G2 MIP13653p 13.39 2 8 2 2912679.489 8 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 347402.81126 12 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 23264.5154 4 +A1Z7K6 FI20236p1 10.06 4 4 4 44385.8315 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 342492.81495 10 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 137522.6686 4 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 198885.77920000002 9 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 1450477.1871 41 +A1Z7V9 FI20020p1 6.93 4 6 1 46112.523 5 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 11681.871 3 +A1Z7X8 FI02944p 18.53 7 7 7 158375.0793 6 +A1Z803 FI02892p 32.35 12 17 12 517694.01560000004 17 +A1Z843 Nodal modulator 3 13.26 15 17 15 340227.9008 16 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 1898495.4287100001 36 +A1Z871 CAP, isoform B 14.53 25 34 0 382491.819 6 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 7028919.15757 50 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 636760.692 7 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 230733.03987 4 +A1Z8G7 FI09243p 16.53 2 4 2 1632.73 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 18080319.1939 48 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 230747.23415 15 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 9799.02526 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 35747.94507 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 1821750.7168700001 19 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 562693.4624 16 +A1Z933 GEO02273p1 25.58 2 4 2 249279.03999999998 4 +A1Z934 SD19268p 39.46 11 28 11 1181369.4215 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 59648.661 4 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 247644.3689 20 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 8381.125 4 +A1Z9B5 IP16508p 15.06 3 3 3 73919.5627 3 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 5717821.0835 50 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 1448762.4466 22 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 256962.44934 42 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 480708.2813 9 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 64185.53792999999 8 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 610236.62562 7 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 8012.2508 2 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 17843.525 2 +A1ZA23 FI18007p1 29.23 9 23 9 789567.8008 22 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 370.96844 1 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 362805.7762 9 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 120169.13829999999 6 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 49387.693 4 +A1ZAH3 FI16515p1 4.82 2 2 0 1576.6975 1 +A1ZAK3 Protein DEK 4.05 3 4 0 38454.31 3 +A1ZAL1 lysozyme 30.43 5 7 5 208811.721 7 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 608.9408 1 +A1ZAU4 RH39096p 50.48 18 44 0 3821382.74413 42 +A1ZB23 IP19117p 10.88 2 2 2 19973.9273 2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 6059.481 1 +A1ZB68 FI01423p 47.27 11 25 11 1035265.51 24 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 5201060.1084 26 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 335961.828 5 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 1587469.8768 22 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 96858.2463 2 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 16538.84114 4 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 3894880.2434 39 +A1ZBA5 FI07234p 4.64 2 2 2 110422.79999999999 2 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 75170.94378 7 +A1ZBD8 Mucin-5AC 6.1 7 9 7 101264.2755 7 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 3987.6766 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 1176818.7534 46 +A1ZBK7 Crammer 27.85 2 11 2 263222.61 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 40306.574 3 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 683147.0112000001 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 746294.6388000001 14 +A1ZBU5 GNBP-like 3 41.45 4 4 4 75220.1415 4 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 33251.924399999996 4 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 2872579.42388 52 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 14376.925 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 1075877.65366 44 +A1ZBX6 lysozyme 14.53 3 4 3 25386.0317 4 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 1199.56026 2 +A2VEG3 IP16294p 1.06 1 1 0 3092.8035 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 2701.89 1 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 193039.358 5 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 1289697.2414 28 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 60243.799 3 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 1900436.7779 19 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 5424966.2657 71 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 6425525.18013 98 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 11086.3106 2 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 6196617.4164700005 36 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 413155.7651 11 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 142022.4083 10 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 1985635.7869 14 +A8DYD1 Combgap, isoform L 11.11 9 11 0 108409.1292 11 +A8DYI6 Prohibitin 69.53 23 83 3 8387418.76923 76 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 666777.7865 27 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 138315.2774 9 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 1410.68437 2 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 58460.455239999996 5 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 11354.3365 3 +A8DZ06 Stolid, isoform J 11.43 13 22 0 428938.23449999996 17 +A8DZ14 FI17828p1 24.09 13 28 7 2234483.7874 25 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 49747.0883 4 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 42245.832 2 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 677271.219 39 +A8E6W0 IP19808p 28.28 5 8 5 117361.1069 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 125784.034 3 +A8JNJ6 Karst, isoform E 2.12 9 9 0 52714.0003 7 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 11662.79996 3 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 57684.054 3 +A8JNP2 arginine kinase 73.87 45 492 2 6608025.4649 21 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 127207.73194 13 +A8JNS4 Starvin, isoform E 10.08 5 6 0 53301.79556 5 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 27991.045899999997 4 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 167614.994 7 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 54116.610700000005 6 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 15681.5254 2 +A8JQW3 Pinin, isoform B 17.26 5 5 0 31644.6894 5 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 60766.743 2 +A8JR01 Kramer, isoform I 1.39 5 5 0 16604.7382 3 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 112729.61200000001 3 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 214918.408 8 +A8JR58 Hadley, isoform B 11.24 3 3 2 17177.217 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 9010417.46184 81 +A8JRH3 FI20012p1 71.29 30 91 1 5055535.2776 83 +A8JTM7 Megalin, isoform A 4.74 23 27 23 315595.18206 25 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 81333.0277 7 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 14548.5196 3 +A8JUZ6 MIP03678p 13.29 4 5 0 333859.66599999997 5 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 4020.4087 1 +A8JV09 Coronin 0.64 1 1 0 12040.162 1 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1202651.50053 36 +A8WH76 GEO10024p1 51.85 5 19 5 633012.5883 12 +A8Y4V5 FI20903p1 8.21 2 2 2 23677.5535 2 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 2853.9749 1 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 5372342.863 20 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 57059.072 3 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 15863.991 1 +B7YZH1 FI20143p1 5.74 3 3 0 19749.79 3 +B7YZN0 Syndecan 13.56 7 9 0 123326.7704 6 +B7YZN4 GH02741p3 38.46 3 3 3 104197.478 3 +B7YZN8 GH02741p1 10.53 1 1 1 34128.29 1 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 40349.74804 8 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 10818056.38278 83 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 6074.54917 2 +B7YZV2 Phosphodiesterase 10.49 9 10 0 149836.398 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 937408.60428 31 +B7Z001 Fatty acid synthase 18.78 43 71 0 2019532.2644 67 +B7Z002 Kismet, isoform C 1.2 4 4 1 5757.323 1 +B7Z005 Drongo, isoform I 13.62 6 7 0 28240.6967 4 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 15704.1112 3 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 61078.30747 7 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 38751.0221 3 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 89359.46011 7 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 31378.885000000002 4 +B7Z0C9 GH15104p1 23.16 3 5 3 165857.536 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 29689565.2343 129 +B7Z0M0 FI17308p1 21.31 2 2 1 4209.151 1 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 27386.532 2 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 303795.31594 9 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 456837.4338 19 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 67825.2999 5 +B7Z107 GH09380p1 43.48 4 7 4 313344.8162 6 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 24792.092 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 27602.0274 4 +C0HDP4 MIP05618p 5.36 2 2 0 25155.474499999997 2 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 2362662.67534 44 +C7LAG1 CoRest, isoform G 6.67 5 5 1 16755.1128 4 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 3266088.7468 67 +C9QP70 MIP12608p 25.61 4 4 4 28710.466 3 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 1144052.2989 23 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 120133.2503 9 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 43261.7869 5 +D0Z756 MIP14966p 31.93 16 55 0 4331634.3183 53 +D1YSG0 Bent, isoform F 4.91 37 40 0 315407.90616 37 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 600342.3087 13 +D3DMM0 MIP15702p 23.27 9 24 0 1106670.1033 23 +D3DMM4 MIP15217p 36.68 27 74 0 4800615.16757 66 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 306294.55950000003 8 +D5SHT6 MIP21537p 7.48 3 3 0 11668.3095 2 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 7409.544400000001 2 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 206817.52883999998 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 443647.96012 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 333499.17515 20 +E1JGR3 GEO02620p1 24.62 3 4 3 5203.078350000001 2 +E1JGY6 Hulk, isoform F 16.85 27 41 0 1041464.61658 40 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 335630.7259 16 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 25864.637000000002 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 8648.90695 2 +E1JH90 Patronin, isoform F 2.57 4 4 0 56478.4665 4 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 1482700.20127 54 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 53630.631799999996 8 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 8194.66107 2 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 73670.439 4 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 148923.8371 5 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 137348.0485 7 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 117045.2 9 +E1JHP9 Galectin 5.97 2 2 0 18972.213 2 +E1JHT6 Reticulon-like protein 32.13 17 35 0 2851771.3198 33 +E1JHT9 Reticulon-like protein 36.04 8 13 0 3010.757 1 +E1JI40 Vermiform, isoform I 19.64 10 13 0 575438.9173 11 +E1JI59 Schizo, isoform D 3.03 2 2 0 3816.4436 1 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 159967.2161 6 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 11456.81653 2 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 224789.0746 5 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 1453.1572 1 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 78896.68766 4 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 34040.865699999995 4 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 7042.4082 3 +E1JIY8 L antigen family member 3 20.72 3 5 3 125083.4262 5 +E1JJ33 Complexin, isoform U 71.33 11 97 2 9161502.72774 90 +E1JJA4 Dynamin 38.05 35 64 0 1112218.0082399999 58 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 12238.5308 2 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 885.13477 1 +E1JJG5 Phospholipase A2 7.53 2 2 1 32153.981 2 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 5748911.8550700005 94 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 53366.68067 7 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 378156.9636 10 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 38661.009999999995 4 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 1465511.56812 50 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 43242.6358 4 +E2QD54 Natalisin, isoform D 5.61 3 3 0 34878.475399999996 3 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 358288.1364 15 +E2QD98 Protein PALS1 8.22 17 22 0 248079.15610000002 20 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 87249.82804 12 +E8NH67 Asperous, isoform B 58.41 20 78 0 4392352.47362 61 +F0JAP7 LP18071p 19.65 5 5 0 85575.107 4 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 99906.39048 8 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 7135266.90639 120 +H1UUB1 GEO12465p1 49.61 5 18 1 778654.123 17 +H8F4T3 Regucalcin 46.08 10 21 0 591295.9334 21 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 69797.0487 4 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 33352.292799999996 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 3885118.3293 36 +L0MPN7 Asator, isoform H 11.57 11 14 0 97909.2274 12 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 100266.42934999999 18 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 1374.32225 2 +M9MRX0 Limpet, isoform J 28.01 28 72 0 4615142.43804 65 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 661408.66271 56 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 154501.5679 12 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 147870.2309 8 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 97224.3408 3 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 3715.1444 3 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 853224.7674 22 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 1962489.922 16 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 3130421.78444 58 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 20202.7724 4 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 48698.974 3 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 300004.73987 10 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 817163.81307 30 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 169208.99556 18 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 252122.8712 13 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 124023.38260000001 9 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 7368.30297 2 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 130056.16129999999 8 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 22616987.71295 414 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 8733.0893 2 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 4235.5566 1 +M9NDE0 pantothenate kinase 5.37 3 3 0 42989.11 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 25127.68465 7 +M9NDS9 chitinase 0.98 4 4 0 40356.6195 3 +M9NDX8 Neurabin-1 3.12 6 6 0 6178.749400000001 3 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 106756.9978 7 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 148867.7977 10 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 10493.5626 3 +M9NEF2 Histone deacetylase 3.95 3 4 0 6223.0224 2 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 6657.8735 1 +M9NEW0 LD39232p2 63.33 10 18 10 672536.8819 18 +M9NEX3 Cytochrome b5 63.21 7 22 0 2334658.50525 21 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 156571.61000000002 3 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 13774.258699999998 2 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 156946.2363 5 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 85918.45863000001 8 +M9NFC0 Troponin I 50.75 16 66 5 2144785.9677 15 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 696837.1043 4 +M9NFH3 Lasp, isoform D 36.88 10 31 1 338314.9218 3 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 605158.6559 38 +M9NH07 Upheld, isoform N 53.05 36 130 0 16830973.3554 120 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 298283.39235 20 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 183949.0633 10 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 20361.2227 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 1264113.66082 51 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 1628.1895 1 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 107704.263 4 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 13389.8654 2 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 7253428.53738 182 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 89130.76699999999 2 +M9PBM3 Cysteine protease 8.54 3 4 0 74749.6707 4 +M9PBN2 Apolipoprotein D 24.08 6 18 0 691560.8906 17 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 624425.9823 19 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 12370.808 1 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 35621.095 2 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 438238.34965 22 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 1177509.71154 22 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 48112.87 5 +M9PBW9 Rhea, isoform G 8.06 23 26 0 231428.50919 24 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 636174.4369 16 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 42476787.35918 187 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 723.98652 2 +M9PC74 Reticulocalbin-3 24.48 10 18 0 806838.1284 17 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 9413.747 1 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 81158.33825 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 2376.3962 1 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 56065.744230000004 6 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 136421.1187 12 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 133832.88294 23 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 34826.1201 5 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 127383.222 6 +M9PCT7 Bunched, isoform O 19.79 4 11 1 39756.697 3 +M9PCU0 FI21215p1 31.45 40 59 2 146008.805 3 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 204561.92479999998 11 +M9PD73 TEP1-F 26.63 37 63 0 2588845.63243 62 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 1141695.4061 19 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 3253.0226999999995 2 +M9PDB2 Varicose, isoform E 8.51 6 6 0 65022.6308 6 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 1306952.4741 26 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 10738.9182 2 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 102024.1592 13 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 129030.4775 9 +M9PDU4 Acyl carrier protein 19.34 5 38 3 18959274.0807 38 +M9PDV2 Tetraspanin 12.89 3 5 0 67024.29086 5 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 612455.03714 40 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 237956.33419999998 12 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 11933757.923759999 58 +M9PE32 Fife, isoform D 14.76 16 27 1 251854.03604 24 +M9PE35 RabX6, isoform B 5.86 1 1 0 342.9515 1 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 1309.2679699999999 2 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 9092.79146 5 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 58968.2855 12 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 59639.8306 4 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 4353.4741 2 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 24437.21802 7 +M9PEC1 IST1 homolog 22.5 9 19 0 476914.6375 18 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 378292.18720000004 12 +M9PEG1 Uncharacterized protein 34.58 16 38 16 1927726.7891 38 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 3733274.82263 219 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 84456.60190000001 6 +M9PEL3 Quemao, isoform C 30.67 10 17 0 663842.66706 15 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 123833.16023000001 8 +M9PET3 Simjang, isoform D 4.11 3 3 0 2543.8741 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 23709.843800000002 4 +M9PF16 Spectrin beta chain 29.64 75 147 5 3393057.29534 135 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 1860106.798 34 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 12720.69277 3 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 31598.682240000002 6 +M9PFH7 Tartan, isoform B 3.73 3 3 0 5367.27835 2 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 9135.9095 2 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 55489.92969999999 6 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 5726.216600000001 2 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 53984.164 1 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 32446.5319 3 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 539896.0374 22 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 257128.8215 14 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 191349.3401 9 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 23450701.57621 185 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 172151.75446 5 +M9PGC4 Shaggy, isoform P 19.72 18 54 0 371.16306 1 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 60518.586 3 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 1540774.996 13 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 310033.32521 24 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 46382.451 2 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 497762.0908 26 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 1247796.6043 25 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 75947.3904 3 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 157530.36213 14 +M9PHX2 Visgun, isoform E 8.78 2 5 1 30346.2931 5 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 17020.785 1 +M9PI33 Inositol oxygenase 6.91 2 4 0 162996.75499999998 3 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 3480.3218699999998 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 26643.112 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 2400.5156 1 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 25629.387000000002 2 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 133082.921 4 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 14174.595 1 +M9PJQ5 Troponin I 49.46 15 70 0 898287.9204 14 +O15971 LD39986p 23.53 5 25 2 394129.17500000005 4 +O16158 Calcium-binding protein 52.72 8 47 8 4831570.36268 39 +O17452 LD20793p 27.83 6 24 4 1782037.97964 21 +O18332 FI01544p 60.98 11 59 9 3088305.67718 45 +O18335 Rab11 64.49 14 53 14 6484332.20404 47 +O18336 Ras-related protein Rab-14 36.28 8 18 1 911506.7394999999 15 +O18338 LD44762p 33.33 7 28 1 10135.4254 2 +O44226 Elongin-B 97.46 10 37 10 2303082.10295 33 +O44434 QKR58E-3 22.08 7 9 6 86954.1775 7 +O46052 EG:152A3.3 protein 22.91 6 6 1 65760.1385 6 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 1252267.823 46 +O46079 Protein KTI12 homolog 7.69 3 3 2 606.9431 1 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 76992.78600000001 6 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 174458.31389999998 5 +O61604 Fimbrin 32.5 22 57 2 3613889.33 55 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 70932.1747 7 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 26378.7844 5 +O76521 Importin subunit alpha 7.0 4 6 4 89328.0287 6 +O76752 Sepiapterin reductase 36.02 9 16 9 349005.1736 14 +O76877 EG:132E8.3 protein 20.62 3 8 3 593035.1539 8 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 8202407.5253 25 +O77259 EG:115C2.5 protein 4.5 1 1 0 1733.939 1 +O77425 Ribokinase 19.41 5 5 5 59135.8989 5 +O77430 GEO01111p1 83.95 15 32 13 1421782.4011 28 +O77434 EG:34F3.8 protein 34.6 6 12 1 293935.4424 7 +O77477 LD24471p 22.41 8 11 8 207369.6173 10 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 28048.611 1 +O96692 small monomeric GTPase 27.47 5 6 2 358887.89650000003 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 183436.47400000002 6 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 875.8568 1 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 24632.594 3 +O97059 Ccp84Ab 44.8 7 12 0 306056.5689 12 +O97062 Ccp84Ae 70.19 12 29 12 803548.2645 25 +O97064 Ccp84Ag 39.27 6 11 6 285068.2717 10 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 36872.9827 2 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 2620148.4144 32 +O97111 LD29223p 11.68 4 6 4 45011.55396 5 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 1541.3138 1 +O97365 BM-40 26.32 10 12 10 455989.29497 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 4306735.1547 28 +O97428 Ciboulot, isoform A 37.21 4 6 1 201396.5866 6 +O97454 Protein BUD31 homolog 21.53 4 5 4 72384.00377 5 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 236484.97874 12 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 14297932.78045 132 +P92181 Cuticle protein DCP2 37.61 3 10 3 126661.12449999999 8 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 39714.5612 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 6862002.7187 77 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 650271.4757 9 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 170607.456 6 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 3331.6785 1 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 3077543.39723 105 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 7179.3936 1 +Q0E8P5 FI05614p 22.24 11 21 11 389657.59303 18 +Q0E8S7 Homer, isoform E 45.76 21 61 4 4881451.2029 54 +Q0E8U4 FI09636p 17.67 5 6 5 86935.14929999999 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 1217722.16385 23 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 138807.251 5 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 6954171.037099999 53 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 2155350.8113 18 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 562351.19393 24 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 20011.0541 3 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 1235275.13634 57 +Q0E9E6 RE33655p 5.43 3 3 1 29561.2341 3 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 667126.87374 19 +Q0E9G4 CG1600-PA 14.96 4 7 0 98633.72439999999 7 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 493872.08837 15 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 2701.1533 1 +Q0KHR7 Septin 13.58 6 8 0 158636.614 7 +Q0KHX7 FI18193p1 7.31 9 9 0 29440.46903 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 19431810.74028 128 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 38738.6486 4 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 264168.3057 12 +Q0KI39 FI16806p1 18.15 3 5 1 2190.8413 1 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 784009.3626 24 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 110164.4745 12 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 205778.454 7 +Q0KIB0 Sidestep III 0.95 1 1 1 7211.636 1 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 74188.977 5 +Q1RL12 IP16413p 55.9 15 82 2 367857.3268 4 +Q24090 GH08712p 12.43 5 7 5 108964.33867 6 +Q24253 AP complex subunit beta 20.63 16 21 16 893061.5003 21 +Q26459 EN protein binding protein 26.32 12 22 0 281860.2038 20 +Q29QY7 IP15859p 22.54 3 5 1 668418.896 5 +Q2MGK7 GEO13330p1 48.03 7 9 7 228294.2651 9 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 18272.2668 2 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 40445.363 1 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 15862930.82934 153 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 75438.50725 5 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 1190584.312 16 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 99971.8524 5 +Q4QQ49 IP09595p 7.43 2 3 2 5720.3330000000005 2 +Q4QQ70 IP09819p 23.98 7 9 7 69080.3635 7 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 5429.8975 1 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 67195.6765 5 +Q4V619 IP07950p 27.16 5 6 1 34980.148700000005 5 +Q4V625 lysozyme 13.5 2 4 2 46017.93187 4 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 803614.7177 16 +Q500Y7 GEO11443p1 54.39 4 28 4 1325520.71895 24 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 6874.489 2 +Q59E01 FI02065p 7.44 5 6 0 21304.5416 4 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 30565.159 4 +Q5BIA9 RE10908p 0.99 1 1 1 23460.74 1 +Q5LJT3 MIP01391p 25.1 4 10 4 253609.3187 10 +Q5U124 alpha-glucosidase 20.95 11 16 0 590893.73784 14 +Q5U126 GEO11286p1 59.42 7 33 7 7081396.6934 31 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 189951.83735 11 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 20065.0112 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 1513918.71396 26 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 32335.662490000002 4 +Q6IGN6 HDC05827 50.0 4 7 4 232740.2515 7 +Q6IGW6 GEO13367p1 44.23 2 5 2 65424.38644 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 3406643.8925 19 +Q6IIF2 GEO11103p1 24.29 3 4 3 10218.43224 4 +Q6IL43 GEO11093p1 27.71 2 4 2 188940.079 4 +Q6NL44 GH28815p 13.18 6 6 6 44243.7371 5 +Q6NLJ9 AT19138p 53.41 5 6 5 54886.5789 4 +Q6NMY2 RH54371p 36.81 6 28 6 4040784.1560000004 18 +Q6NNV2 RE44043p 5.5 2 2 0 168386.543 2 +Q6NNV7 RH03309p 47.37 7 19 1 806163.03164 16 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 68827.6547 5 +Q6NP72 GEO09659p1 33.33 4 18 4 610517.4892 18 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 54808.2596 3 +Q76NR6 Regucalcin 81.19 23 173 0 18147423.23228 156 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 415543.63430000003 11 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 30399.98824 5 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 428462.9099 13 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 2360478.6867 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 5172.2690299999995 2 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 876604.75557 27 +Q7JQX9 FI14001p1 7.6 5 5 1 31487.59414 5 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 18180075.3661 109 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 895051.868 16 +Q7JRB2 RH09039p 4.52 1 1 1 405.27472 1 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 79424.7108 3 +Q7JRF1 RE48509p 8.67 2 3 1 14040.235499999999 2 +Q7JRH5 RE28271p 5.61 3 3 3 17436.5716 2 +Q7JRL9 GH25289p 70.78 13 48 1 5745057.8 47 +Q7JRN6 GH06388p 11.21 3 8 3 73419.76370000001 6 +Q7JS69 FI04632p 40.84 11 75 1 1994981.1175000002 14 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 13230.874600000001 3 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 13344.397 1 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 2755803.678 33 +Q7JV09 GH28348p 6.55 7 8 3 72247.9685 8 +Q7JV69 SD11922p 10.96 4 6 4 230309.55930000002 6 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 68607.66260000001 4 +Q7JVH6 LD24696p 37.3 11 25 10 1092555.9314000001 15 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 381971.7468 10 +Q7JVK6 Translin 22.13 5 11 5 463026.99435 9 +Q7JVK8 GEO08987p1 71.92 10 16 10 828208.6721 15 +Q7JVM1 GH25962p 11.79 3 6 3 75915.48300000001 4 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 212275.58060000002 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 399031.141 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 347823.217 9 +Q7JW07 LD08826p 5.63 1 1 1 2359.638 1 +Q7JW48 RE12410p 2.23 1 2 1 37176.598 1 +Q7JW66 LD21545p 4.83 2 2 2 35615.34 2 +Q7JWD6 Elongin-C 63.25 7 34 7 3064747.08674 30 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 3372746.522 39 +Q7JWH5 RING-box protein 2 19.47 1 1 1 14366.644 1 +Q7JWQ7 RE01730p 14.62 5 8 5 87019.269 8 +Q7JWR4 GH19585p 9.09 1 1 1 33307.594 1 +Q7JWU9 AT07420p 30.12 8 10 8 92156.5846 8 +Q7JWX3 GH10112p 35.92 11 23 11 485886.7119 21 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 781588.27866 9 +Q7JX94 Phospholipase A2 15.61 3 4 3 5088.0578000000005 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 438575.8176 12 +Q7JXB9 Endonuclease 16.77 5 5 5 616928.4789999999 5 +Q7JXC4 CG6459 protein 35.74 7 44 7 7046498.68363 43 +Q7JXW8 Off-track2 12.24 5 5 5 93634.508 4 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 416978.9983 11 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 1129033.083 7 +Q7JYW9 Phosphotransferase 22.25 10 12 10 298088.9082 10 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 49639.127 2 +Q7JYZ0 lysozyme 39.13 4 10 4 151334.80966 10 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 985901.1787 19 +Q7JZB1 RE49860p 3.58 1 1 1 14810.179 1 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 1985414.54788 30 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 6732.874320000001 3 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 233781.701 4 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 4456683.76422 37 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 207687.62821 19 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 5688.0128 2 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 1727196.1427 29 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 2069996.7597 31 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 118775.02352 9 +Q7K076 GEO08269p1 34.35 3 4 0 73595.5282 4 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 36842863.93007 167 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 9874.0 1 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 1775534.9412 31 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 151462.84110000002 10 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 904.64575 1 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 42696.4278 4 +Q7K0S1 LD39211p 3.66 2 2 2 37454.7225 2 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 467970.1642 25 +Q7K0S6 LD36817p 27.56 10 14 10 338794.07649999997 14 +Q7K0T7 LD33470p 2.07 2 3 0 6354.260480000001 2 +Q7K0W1 LD27406p 3.67 2 2 2 17347.7355 2 +Q7K0W4 LD27203p 57.93 19 64 18 7562963.43575 59 +Q7K0X9 LD23667p 28.72 6 13 6 217165.48689 12 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 80708.9661 3 +Q7K127 Alpha-galactosidase 35.97 13 22 13 859547.63404 22 +Q7K130 Dynactin subunit 4 13.04 5 6 5 26983.1005 4 +Q7K148 Proteasome subunit beta 17.73 5 7 5 103304.6467 7 +Q7K159 LD06557p 13.11 4 5 4 23301.882700000002 5 +Q7K180 LD02709p 23.18 10 13 10 185662.3934 12 +Q7K188 GEO05126p1 32.9 7 45 7 15035570.79696 40 +Q7K1C0 GH23780p 50.5 7 12 1 474994.25777 11 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 449611.7579 10 +Q7K1C5 GH21176p 6.62 4 5 4 302033.0881 5 +Q7K1H0 GH09096p 20.37 6 7 6 167954.8372 7 +Q7K1M4 SD04017p 24.68 8 15 8 351917.75042 15 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 70099.356 4 +Q7K1W5 LD35843p 35.11 14 28 14 2245895.4894 27 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 38582.3725 7 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 1383357.0292 27 +Q7K2E1 LD05247p 11.72 7 10 7 197149.9184 8 +Q7K2K2 FI04612p 7.06 2 3 1 20129.9794 2 +Q7K2L7 GH27120p 17.59 3 12 3 461061.56960000005 10 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 54071.335 6 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 56704.143899999995 4 +Q7K2P3 GH20817p 63.91 15 37 1 770515.1886 33 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 178460.678 4 +Q7K2W6 tyrosinase 26.81 17 23 17 86445.89414 17 +Q7K332 GH17623p 30.96 8 10 7 250682.9282 9 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 728173.49084 16 +Q7K3E2 LD34147p 66.97 33 68 33 3216873.038 62 +Q7K3H0 LD28067p 2.56 5 7 0 50204.456999999995 4 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 2048192.0275200002 37 +Q7K3N4 GH26015p 15.98 7 11 7 227753.2831 10 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 149113.9843 7 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 354329.7468 16 +Q7K3W4 GH08941p 26.81 8 27 8 1191836.5344 26 +Q7K3Y9 Spondin-1 4.58 3 3 3 5895.5176 2 +Q7K3Z3 GH01724p 56.76 18 53 18 1182790.77304 48 +Q7K485 Cathepsin D 28.83 8 27 8 2873058.254 25 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 112931.2693 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 15132.512999999999 2 +Q7K4J7 LD36653p 7.38 2 3 2 44961.2484 3 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 37222.0789 4 +Q7K4T8 LD23856p 6.99 3 4 3 7264.66234 4 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 1447.4544 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 299681.8949 9 +Q7K519 GH16429p 23.9 7 8 7 110314.75567 8 +Q7K533 GH14572p 5.48 2 2 2 9490.2287 2 +Q7K549 GH13040p 21.35 8 10 8 69720.01964 10 +Q7K568 GH10642p 21.49 6 8 6 132434.2205 5 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 3475803.27164 62 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 261073.1152 14 +Q7K5M6 GH04176p 37.5 9 17 9 846334.69582 15 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 899394.3674 23 +Q7K860 FI07231p 39.22 6 19 6 3421249.3055000002 19 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 2019994.7651 17 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 14733.31755 3 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 34892.2296 5 +Q7KK54 MIP07328p 10.52 7 7 7 99509.73592 7 +Q7KK90 GH14654p 50.0 8 36 8 4935449.8965 25 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 995830.5377 24 +Q7KLE5 Amphiphysin 37.04 23 65 2 4034533.06584 62 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 328678.7425 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 1844109.27655 12 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 159356.0365 5 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 57355.6259 5 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 1902357.90954 22 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 3149928.89754 65 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 12250.995 2 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 99258.8729 7 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 13518.0304 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 1275550.83044 37 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 12597903.25369 100 +Q7KND8 FI09619p 6.03 4 5 4 45374.2996 4 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 1763552.7749 16 +Q7KRT4 GH07253p 2.47 1 1 0 6042.6714 1 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 48398.1366 5 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 251681.1579 6 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 498738.7162 12 +Q7KSE4 GH05443p 2.78 2 2 2 9396.2036 2 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 733720.9889 17 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 4063219.7845 32 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 23304.3666 3 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 23617.16594 5 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1200528.8817 25 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 2801080.91884 48 +Q7KT58 GH08155p 4.4 1 1 1 4224.428 1 +Q7KT70 FI18641p1 0.94 1 1 1 1988.3564 1 +Q7KTA1 HL01444p 20.67 8 10 8 116999.4473 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 424148.3979 25 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 7308989.1078 77 +Q7KTN9 FI01009p 3.11 2 2 0 8535.3575 2 +Q7KTP7 LP22840p 45.86 7 12 7 442349.66275 12 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 5268128.48071 83 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 884431.99762 31 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 2920.309 1 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 1051529.251 20 +Q7KUD4 phospholipase A2 6.43 6 7 0 40217.136 6 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 215366.3971 14 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 3730.306 2 +Q7KUT5 Protein MIX23 26.89 3 3 0 49815.144830000005 3 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 188889.9696 6 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 51873.7285 6 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 447172.39921 33 +Q7KV27 alanine transaminase 54.93 32 121 0 18361028.14824 114 +Q7KV34 Pinkman 57.32 33 64 33 3780323.5532400003 62 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 73777.41100000001 4 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 587723.29406 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 42354.395000000004 4 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 17097255.45858 82 +Q7KY04 small monomeric GTPase 23.47 5 14 4 14202.8002 2 +Q7PL91 GEO11417p1 30.85 5 12 5 956973.54798 11 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 6340.374900000001 2 +Q7PLI0 P120 catenin 17.03 14 17 14 473917.563 15 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 524276.0112 26 +Q7PLS1 LD01937p 14.61 5 6 0 170712.05450000003 4 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 71730.1177 4 +Q7YU88 SD08871p 4.1 3 3 0 2692.2055 2 +Q86B44 Glutathione synthetase 19.4 8 9 0 99884.00812 8 +Q86B74 WASp, isoform C 10.53 4 4 0 55367.7986 4 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 19984.6053 2 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 10217.181 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 487716.1126 16 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 254278.7875 14 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 795181.06753 27 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1388155.9956999999 22 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 1926534.2273000001 21 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 1096402.7884 36 +Q86BS3 Chromator, isoform A 35.53 26 44 26 896046.5778 38 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 8760.6786 3 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 917986.7993 25 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 102549.6706 4 +Q8I077 BcDNA.LD22910 1.76 2 2 2 14873.1897 2 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 223245.3167 7 +Q8I0D4 RE20510p 21.32 17 37 0 2979391.7693000003 34 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 47329.751599999996 5 +Q8I0P9 acid phosphatase 9.67 4 4 0 145985.131 3 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 1635557.631 23 +Q8I930 GH14147p 3.57 3 4 0 16579.53963 4 +Q8I941 GH16843p 32.88 8 25 8 976603.3277400001 24 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 31301.673000000003 2 +Q8IGY1 RE08101p 33.19 42 295 0 26047506.88897 159 +Q8IH23 GEO02102p1 67.41 6 14 6 1165284.8105000001 14 +Q8IM93 FI18814p1 35.27 16 37 16 1385143.8615 30 +Q8IMF4 RE24176p 6.68 3 3 0 16930.6405 3 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 1400135.16378 34 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 26408.0897 3 +Q8IMQ8 RH29536p 46.4 14 49 0 6295302.00083 47 +Q8IMT3 IP12392p 10.71 4 5 4 72156.425 4 +Q8IMT6 FI01822p 10.66 5 6 5 137382.8305 6 +Q8IMU2 RE10237p 19.18 4 5 0 132638.648 5 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 34701.28198 4 +Q8IMX4 FI04408p 10.85 4 6 0 82458.47110000001 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 284351.06779999996 10 +Q8IN49 MIP05539p 11.03 10 11 10 217199.47155000002 9 +Q8IN51 FI17609p1 37.59 7 14 7 322494.93445 13 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 71114.65400000001 2 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 125511.44029999999 4 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 32193.51185 4 +Q8INH5 Aminopeptidase 7.53 7 11 0 182296.0782 11 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 42899.630300000004 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 53004.81 2 +Q8IP52 RE16941p 0.86 1 1 1 7539.891 1 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 242856.4985 7 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 860995.0589000001 18 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 26824.482 5 +Q8IP97 Peroxin-19 35.62 9 32 9 3073329.5022 28 +Q8IPA5 RE15581p 10.0 3 3 0 73616.02200000001 3 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 26147.7174 3 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 1033841.1157 14 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 8630817.72722 99 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 110242.06880000001 8 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 18223.297 1 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 17004.400999999998 2 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 973430.585 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 68609.125 4 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 176240.6671 6 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 1655.951 1 +Q8IPT9 SD05439p1 39.06 11 32 0 1257428.11317 29 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 3221182.75085 50 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 13111.965 1 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 20378.6934 4 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 48977.1016 7 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 7130.2637 1 +Q8IQB7 MIP21654p 9.44 3 3 3 167376.06100000002 3 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 148905.7004 12 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 167948.85400000002 5 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 126996.52899999998 3 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 18867.37 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 129984.7369 9 +Q8IQH0 FI12817p 4.98 8 9 1 119178.26860000001 8 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 208050.5551 9 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 249710.32032 23 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 15103.720000000001 2 +Q8IQU1 LD36620p 19.62 9 13 1 102599.2833 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 45645.1413 2 +Q8IQW5 RE23625p 70.83 13 77 3 6356141.35092 62 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 66096.6028 5 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 42035.1886 3 +Q8IR72 FI19011p1 10.06 1 1 1 9623.967 1 +Q8IR76 FAD synthase 16.33 4 4 0 31797.27385 4 +Q8IRD0 RH17559p 42.86 3 8 3 566565.0697999999 8 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 16514110.79185 70 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 535062.29509 20 +Q8IRI5 Trio, isoform D 15.92 12 15 2 192217.9476 12 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 18105592.44603 128 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 42211.263 2 +Q8MLP9 GEO08457p1 33.04 4 5 4 83311.60035 5 +Q8MLQ0 FI14118p 11.84 1 1 1 5919.6274 1 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 903219.94 12 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 641928.60344 16 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 27812.829850000002 3 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 780673.4244 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 5030954.18869 96 +Q8MQP2 MIP16184p 2.67 1 1 0 80410.85 1 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 9737.4912 2 +Q8MRM0 GH16740p 27.0 6 9 6 1025897.50797 9 +Q8MRS5 AT03104p 0.71 1 1 0 7278.404 1 +Q8MRT7 SD26038p 13.79 3 4 3 76972.137 4 +Q8MRW1 SD19278p 14.08 2 4 2 185304.525 4 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 16220.581900000001 5 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 9312.131 1 +Q8MSI2 GH15296p 85.19 22 138 22 37297827.48635 123 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 56384.8142 6 +Q8MST5 Tubulin beta chain 40.7 17 120 0 1228583.07924 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 5983050.63907 70 +Q8MZ07 GEO07581p1 6.16 1 1 1 54260.375 1 +Q8MZI3 RNA helicase 14.91 11 20 5 532946.9576000001 10 +Q8SWS2 RE29468p 77.51 8 32 0 958272.9723 26 +Q8SWS3 RE26528p 17.13 2 6 2 131399.88174 4 +Q8SWZ6 RH51312p 15.35 3 7 3 33607.303 5 +Q8SX06 GEO08318p1 15.43 2 2 2 8018.4298 2 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 11915.963 1 +Q8SX35 GEO07743p1 55.78 5 9 1 216751.032 7 +Q8SX50 RE04530p 17.6 6 7 0 110333.7162 7 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 10330.1113 2 +Q8SX57 LD44221p 38.91 7 17 7 342849.33030000003 16 +Q8SX78 LD05679p 21.72 9 9 9 167138.96490000002 9 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 67417.96059999999 6 +Q8SXC2 FI04487p 9.56 5 5 5 45300.352399999996 5 +Q8SXD5 GH02216p 57.69 13 41 2 2630315.4067 34 +Q8SXE1 RH69521p 4.68 2 2 2 38307.567800000004 2 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 112300.0662 6 +Q8SXF2 RH40246p 8.18 4 4 4 78859.978 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 38997.414000000004 2 +Q8SXK0 RE18748p 6.55 2 2 2 37017.1276 2 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 719653.18484 21 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 46122.5047 8 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 1243146.2086999998 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 4735.558 1 +Q8SXS0 RE40914p 16.23 5 6 5 61390.7613 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 2055600.5525 29 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 28276.6987 4 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 279607.075 7 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 5325.2036 1 +Q8SY67 lysozyme 14.47 2 6 2 242348.015 6 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 1092633.902 7 +Q8SYC4 RE68566p 3.93 2 2 2 76632.514 2 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 4306268.372909999 67 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 1956575.7452 25 +Q8SYH8 RE57644p 19.05 5 10 0 173180.2433 10 +Q8SYJ2 GEO09626p1 67.47 10 68 10 10280178.3137 65 +Q8SYQ4 RE42475p 69.59 10 50 10 3783245.5413 46 +Q8SYQ8 RE40412p 27.94 4 9 4 121334.65834000001 9 +Q8SZK5 RH26533p 16.4 3 4 3 91509.603 3 +Q8SZK9 HL04814p 59.31 15 64 15 11184862.7324 62 +Q8SZM2 RH04334p 28.15 9 35 9 7156400.0755 33 +Q8SZN1 GEO08217p1 73.39 10 27 5 1907011.1549 27 +Q8T0I9 GH27479p 28.88 11 16 1 456685.47229999996 14 +Q8T0J5 GH26851p 40.42 12 39 0 6016286.364800001 39 +Q8T0N5 GH17516p 19.54 8 15 8 665522.181 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 61611.374599999996 5 +Q8T0V2 GH02495p 25.5 11 20 0 421751.72115999996 15 +Q8T389 Endophilin B 43.12 16 71 0 9749.554 2 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 44634.2783 5 +Q8T3W8 Venom allergen-1 12.6 4 6 0 349129.74085 6 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 6160.009 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 1474436.0099 31 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 4320300.12 75 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 10267.2549 2 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 10068.983 1 +Q94513 Boundary element associated factor 18.79 5 8 1 63962.99277 7 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 17667.05 2 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 56001.715 3 +Q95NU8 GH16255p 14.82 7 11 7 216359.7411 10 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 19025.62646 4 +Q95PE4 GEO07784p1 5.56 1 1 1 7579.0303 1 +Q95R34 GH16463p 12.62 4 5 4 88921.2953 4 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 127709.72855999999 5 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 64608.128650000006 8 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 35674742.86523 161 +Q95RC5 LD44506p 4.95 3 3 3 23896.468500000003 3 +Q95RE4 LD37574p 51.42 13 23 0 62391.317670000004 18 +Q95RF6 LD34461p 34.5 4 12 4 251316.48227 12 +Q95RI2 LD28549p 31.37 9 11 9 156475.5037 11 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 85412.6012 5 +Q95RP1 LD18295p 10.71 2 2 2 21146.14685 2 +Q95RQ1 LD16414p 3.32 2 2 2 11223.6989 2 +Q95RR6 LD15002p 64.6 18 79 0 63965.506 2 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 245871.07059999998 8 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 656920.86185 8 +Q95RY2 LD01461p 45.04 9 18 2 384121.53696 15 +Q95SH0 GH26463p 2.44 2 2 2 39253.920600000005 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 710872.1183 23 +Q95SH7 GH26007p 3.49 1 2 1 172648.116 2 +Q95SI7 GH23390p 75.09 18 61 18 3895376.0363600003 57 +Q95SN8 GH12395p 15.49 4 7 4 215252.893 6 +Q95TK5 LD44914p 21.21 9 14 8 248900.7946 12 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 1779343.9016 29 +Q95TP0 LD34582p 4.51 2 2 2 15828.508 1 +Q95TZ7 GH19182p 85.32 28 147 0 13200483.76617 119 +Q95U15 GH14252p 83.65 34 259 0 4066970.1796000004 30 +Q95U34 GH11113p 30.82 13 27 13 1727485.068 26 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 245607.59660000002 9 +Q960D4 SD06560p 20.91 13 13 0 386320.3488 13 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 19367606.26058 96 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 606101.7117 24 +Q961A8 LD25351p 2.07 1 1 0 3111.7751 1 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 124394.0641 3 +Q961B9 LD24073p 3.72 2 2 2 47816.774000000005 2 +Q961C8 LD22649p 9.84 4 4 0 56831.157 4 +Q961E7 phosphorylase kinase 7.88 4 5 0 55647.109 3 +Q961K6 GH19047p 3.18 2 2 2 3269.367 1 +Q961Q8 GH10454p 8.89 4 5 4 61593.281599999995 5 +Q961T9 GH07914p 32.94 6 12 6 478268.0303 12 +Q961X4 Combover, isoform B 17.43 11 13 0 52826.838 12 +Q966T5 Paxillin, isoform D 28.93 7 20 4 99514.0567 6 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 84411.0951 7 +Q9I7H8 LD37276p 14.29 4 5 4 50696.3188 4 +Q9I7I3 GH12831p 12.97 4 4 4 43494.0408 4 +Q9I7J0 GH21596p 72.19 11 40 11 3853593.8111699997 36 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 55314.317 2 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 88872.2654 5 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 1148237.6 25 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 2244988.0547 23 +Q9NCC3 Sorting nexin 15.58 8 10 8 346661.3117 10 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 17214.5194 2 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 7159.194799999999 2 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 255470.1133 8 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 657468.81275 15 +Q9U6P7 FI18813p1 10.55 5 7 5 278286.30533 7 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 2262174.44954 60 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 111165.1226 7 +Q9V393 Kurtz arrestin 5.32 2 3 2 33474.3805 2 +Q9V396 Carbonic anhydrase 58.15 15 45 15 2738319.4784 43 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 34579.322 3 +Q9V3C8 DShc protein 5.62 2 2 2 28680.945900000002 2 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 375190.7655 16 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 111505.7506 5 +Q9V3E7 LD24793p 42.86 14 26 14 489590.7708 23 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 25402.31704 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 531720.5126 14 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 476553.3156 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 218616.7158 9 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 2808452.6282 57 +Q9V3N9 B6 4.48 3 3 3 132197.247 3 +Q9V3P3 LD45860p 39.18 10 21 10 927844.23735 21 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 56562.73 4 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 26009.5373 2 +Q9V3T8 LD32469p 18.46 4 6 4 65593.8972 4 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 5021175.37554 36 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 3086107.7914 54 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 6690776.8675 63 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 1063452.82544 32 +Q9V3W2 GM23292p 66.47 16 60 16 4614115.78976 53 +Q9V3W7 LD40489p 52.16 11 26 11 534780.83401 22 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 740630.65074 33 +Q9V3Y4 LD43650p 20.57 5 8 5 133546.76249999998 7 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 1457384.2545999999 30 +Q9V3Z4 GH11341p 30.28 14 31 14 911132.78854 24 +Q9V3Z9 HL02234p 42.6 17 39 17 5529915.2575 37 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 20903.850899999998 5 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 2876674.4605 48 +Q9V406 Activator protein 4 13.31 7 11 7 356108.72 11 +Q9V420 FI02878p 15.83 8 12 8 446510.4029 10 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 714766.05977 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 43013.0435 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 984082.1498 17 +Q9V455 Importin subunit alpha 22.37 11 25 11 1688247.1326000001 24 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 2041393.48074 42 +Q9V491 Plexin A, isoform A 1.44 3 3 0 26746.0155 3 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 2383047.6798300003 70 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 6919702.490900001 69 +Q9V4E0 Complex I-49kD 31.41 12 19 11 494681.23845999996 19 +Q9V4E7 Transporter 9.12 6 7 3 175913.557 7 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 9616.34 3 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 757818.4894000001 11 +Q9V9Q4 LD43819p 30.23 12 26 12 701913.4139 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 167074.34225 8 +Q9V9T5 GM14617p 13.75 10 10 0 74004.6136 9 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 24168.851300000002 2 +Q9V9U0 RE35358p 4.79 1 2 1 94477.76000000001 2 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 575924.16354 12 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 4618.723 1 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 874190.5495 17 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 2169472.2983 24 +Q9V9W4 GH08048p 1.69 1 1 1 2802.2046 1 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 36851.146 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 248410.813 6 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 5579794.99953 82 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 534590.12197 12 +Q9VA34 LP06141p 1.88 2 2 2 29580.154 2 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 376953.72163 20 +Q9VA41 GEO08227p1 52.87 7 18 3 402249.9301 12 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 2694364.19835 24 +Q9VA56 GH23271p 63.77 23 81 2 48149.7197 4 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 44739.13 1 +Q9VA71 FI19924p1 4.52 1 2 1 5393.6108 2 +Q9VA76 IP18706p 16.43 6 8 6 58255.271 4 +Q9VA81 GEO10172p1 29.29 5 5 5 93443.14253 5 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 103336.307 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 463534.353 13 +Q9VAA6 GEO12235p1 19.62 3 7 3 189691.043 7 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 293743.2415 18 +Q9VAC1 GM14349p 45.49 17 130 17 19781468.14335 122 +Q9VAC4 GEO09167p1 63.46 7 16 7 1053023.3898 15 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 67054.28007000001 10 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 11963.0475 2 +Q9VAD7 RH37294p 18.5 3 3 3 21438.9174 3 +Q9VAG3 trypsin 17.0 4 7 4 148734.7395 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 604930.3536 13 +Q9VAI9 GEO07291p1 62.25 8 60 5 6396147.9547 54 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 397673.4398 15 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 1898155.26381 64 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 20784692.13073 125 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 50985.6461 6 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 14496.409 1 +Q9VAU6 LD27564p 2.99 2 2 2 8966.052800000001 2 +Q9VAV2 FI21480p1 16.52 13 16 13 346724.5338 15 +Q9VAY0 Neprilysin 7 5.16 4 4 4 26978.4578 4 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 4449890.8549 76 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 45592.061 3 +Q9VAY9 GH07821p 7.89 3 3 3 44240.7007 3 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 2168145.6122 46 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 4138475.06906 45 +Q9VB17 IP11341p 7.98 3 3 3 83850.91 1 +Q9VB22 LD33695p 14.29 8 11 8 190481.3791 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 497813.37440000003 20 +Q9VB51 GEO08385p1 42.96 3 3 3 46531.536 2 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 643595.33604 23 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 32810.7356 4 +Q9VB69 Malic enzyme 20.75 12 16 1 144980.63968 16 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 7697.9282 2 +Q9VB77 IP09938p 12.18 4 4 4 112159.644 4 +Q9VB79 IP09473p 24.22 8 17 8 679432.78 15 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 6338463.7375 53 +Q9VB86 LP07342p 10.14 2 3 1 26071.9437 3 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 2126825.8898 29 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 36716.2239 3 +Q9VBC9 Beaten path VII 13.15 4 4 4 151161.35340000002 4 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 9350963.88872 84 +Q9VBI3 RH72336p 28.52 9 21 9 970462.8106 19 +Q9VBL3 GH01188p 13.79 7 7 7 51490.80983 7 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 1229411.043 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 30489.252 2 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 22179982.89105 133 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 18629.0 1 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 1147795.0211 24 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 267166.5618 8 +Q9VBT2 IP11926p 9.86 4 4 4 15656.0024 3 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 37592.4167 3 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 3223788.404 8 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 249366.5042 9 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 3763475.8312 44 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 37818.801 6 +Q9VC06 LD37516p 15.21 10 15 10 125967.04975 15 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 7998.4961 2 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 587897.4531 20 +Q9VC30 RE05274p 8.06 1 2 1 7779.210099999999 2 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 516060.027 15 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 566861.6016 14 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 428349.5059 10 +Q9VC58 Syntaxin-18 8.86 4 4 4 31335.9633 4 +Q9VC66 AT25567p 28.82 13 18 13 382672.7235 18 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 32278.0273 4 +Q9VC87 RE57978p 10.75 4 4 4 15450.108079999998 3 +Q9VCB9 FI08802p 26.23 6 12 6 597786.9021000001 12 +Q9VCD8 Structural maintenance of chromosomes protein 0.89 1 1 1 918.7717 1 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 847816.13051 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 82639.26094 4 +Q9VCF8 LD23561p 23.45 8 11 8 207436.77494 10 +Q9VCI4 LD32918p 3.55 3 3 3 37070.183600000004 3 +Q9VCI7 LD02979p 17.37 7 12 0 322808.80470000004 11 +Q9VCK6 LD34157p 20.89 8 10 8 271984.917 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 59108.565 4 +Q9VCR4 FI17836p1 7.58 6 7 6 83275.50925 7 +Q9VCR9 RH48101p 39.61 11 25 11 1169278.6113 21 +Q9VCT4 Klingon 6.06 3 4 3 25822.15274 4 +Q9VCU0 GEO02312p1 34.17 4 8 4 458998.7934 8 +Q9VCU1 FI07649p 1.31 1 1 1 16521.096 1 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 64679.174 2 +Q9VCW2 Cardinal 5.3 5 6 5 81148.2208 6 +Q9VCW6 GCS light chain 36.14 13 31 13 1637487.4793999998 27 +Q9VCZ2 FI07970p 2.48 1 1 1 32886.566 1 +Q9VD00 FI07666p 23.74 6 12 6 251882.611 11 +Q9VD01 LP12095p 18.75 3 3 3 322384.43000000005 2 +Q9VD02 GH14779p 30.73 4 10 4 350959.1374 9 +Q9VD13 GH02671p 14.64 8 9 0 104404.0713 8 +Q9VD14 GH07286p 17.02 9 13 9 192828.5149 12 +Q9VD29 small monomeric GTPase 54.92 10 33 10 1772565.6324 24 +Q9VD30 GH05294p 79.44 14 60 14 7409109.35585 47 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 21914.375 1 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 15066450.33353 79 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 109044.4996 6 +Q9VD68 GH19849p 6.84 3 3 3 37518.561 3 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 26690.748 1 +Q9VDC0 GH01837p 24.0 5 14 5 530486.3069 12 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 7767.9842 2 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 9126.67506 2 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 918551.1557 13 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 953026.43687 15 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 1010179.0932 25 +Q9VDH3 GH08630p 58.77 13 36 13 2691033.13046 34 +Q9VDI1 LD46328p 56.88 24 81 1 2496287.27274 72 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 77230.718 3 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 157514.9496 13 +Q9VDK2 GH15831p 3.87 3 3 2 50619.64169999999 3 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 426383.19885 26 +Q9VDK9 GH12359p 4.89 3 4 3 146690.879 4 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 115104.55900000001 4 +Q9VDL5 GEO09602p1 52.24 3 3 3 78573.162 2 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 484558.18947 9 +Q9VDQ3 Identity crisis 8.06 4 4 4 25491.5205 4 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 1113303.60483 20 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 10107.8997 2 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 988119.3040400001 18 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 39981.30852 5 +Q9VDU7 nicotinamidase 31.37 11 16 11 510719.175 16 +Q9VDV2 AT06125p 8.26 4 4 3 40448.461299999995 3 +Q9VDY8 MIP08680p 74.26 18 75 2 4867286.04621 62 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 3343381.17477 46 +Q9VE08 GH10002p 13.62 3 3 3 34574.7504 3 +Q9VE12 LD27322p 19.44 7 8 7 71441.5756 6 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 109998.306 4 +Q9VE31 GEO12059p1 18.92 2 2 2 2910.72766 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 66409.5619 7 +Q9VE56 FI17806p1 18.88 4 7 4 357160.7157 5 +Q9VE57 GEO10850p1 6.9 1 2 1 24558.3433 2 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 9369.2172 2 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 55004.744000000006 2 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 101525.253 9 +Q9VE94 LD14127p 8.85 3 4 3 62309.624 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 573119.9458 13 +Q9VEA7 FI01460p 44.94 3 5 3 450011.62214 5 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 60512855.691870004 263 +Q9VEB7 AT04491p 12.1 4 4 4 34340.8104 4 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 234441.56470000002 9 +Q9VEC6 LD29902p 14.83 12 17 0 690.9321 1 +Q9VEC8 RE23139p1 26.15 3 3 3 184281.1726 3 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 178852.33980000002 7 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 42965.847 3 +Q9VEG8 RE59232p 10.8 2 2 2 46389.362 2 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 159604.3711 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 1843814.9283 28 +Q9VEJ9 Curly Su 2.39 2 2 2 7611.6196 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 145684.18709999998 7 +Q9VEK8 GH07711p 39.88 11 22 11 612610.5093 21 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 418361.505 15 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 12018.032 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 36242.823099999994 5 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 612793.2183 23 +Q9VEP8 GH11385p 21.38 13 18 13 238469.22058 17 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 365283.20097 20 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 171428.7567 7 +Q9VES8 RE28913p 29.5 9 16 9 1081439.83 16 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 193368.595 3 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 561901.7593 19 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 8605.5299 2 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 11667.7969 2 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 73162.58694000001 5 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 861345.1421 29 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 19507.584 1 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 2900368.1798 32 +Q9VEY9 GH15759p 3.1 1 1 1 1753.8092 1 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 184284.3453 11 +Q9VF15 GEO09476p1 81.05 12 39 8 3438431.0233 37 +Q9VF23 arginine kinase 12.25 6 7 6 181393.0049 7 +Q9VF24 Crossveinless d 3.88 6 7 6 73257.1311 7 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 482982.6582 16 +Q9VF39 FI01459p 13.04 5 7 5 197627.6556 6 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 365209.1738 14 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 99771.5423 7 +Q9VF77 FI16517p1 10.74 4 5 4 90326.5864 5 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 18664.586 2 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 42716.628 3 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 316813.1876 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 52929.066999999995 5 +Q9VFC7 Mf5 protein 84.93 39 273 0 12392934.85904 178 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 92260.07 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 24862964.12645 131 +Q9VFI3 GEO08281p1 45.19 3 10 3 214014.43703 6 +Q9VFM0 GH19262p 7.14 4 5 4 66000.1502 5 +Q9VFN7 GEO07678p1 27.67 5 18 5 614533.6251000001 18 +Q9VFN9 GEO07882p1 54.84 7 9 7 103574.87544999999 8 +Q9VFP0 RH07106p 18.65 6 7 6 138936.9113 6 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 2099290.79715 37 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 1108267.9510000001 22 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 4076.5906 1 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 91596.755 5 +Q9VFT4 AT27578p 16.09 9 13 9 110147.4997 9 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 31289.833 2 +Q9VFV1 RE55542p 9.81 5 7 5 57459.8819 7 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 7316346.0696 47 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 123265.00899999999 4 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 55502.4193 5 +Q9VG01 RE12073p 1.88 1 1 1 9232.638 1 +Q9VG04 Protein MEMO1 2.71 1 1 1 5337.986 1 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 27965.555320000003 3 +Q9VG23 GH22994p 69.3 12 69 1 6216798.4272300005 59 +Q9VG26 MIP06012p 45.07 9 28 9 1211442.21095 22 +Q9VG28 Beaten path Vc 5.39 2 2 2 25193.194 2 +Q9VG31 Malic enzyme 19.79 16 26 0 977095.5812 24 +Q9VG33 Sulfurtransferase 85.45 8 22 8 1836859.7259000002 19 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 66480.95833 6 +Q9VG44 RE14195p 2.98 2 2 2 7258.3765 1 +Q9VG51 Sorting nexin-3 51.5 8 25 8 1547772.4008 18 +Q9VG62 Toys are us 2.89 2 2 2 17938.8426 2 +Q9VG69 LP03547p 42.59 16 39 16 1947311.832 35 +Q9VG81 RH49330p 11.14 5 6 5 67361.9077 6 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 65932.558 5 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 1509642.5051 22 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 58031.7636 4 +Q9VGA3 LD12305p 36.82 8 23 7 1906953.8071 19 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 26533.053 2 +Q9VGE4 FI04457p 6.96 8 8 8 89124.4865 7 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 21109.0038 4 +Q9VGF3 IP11040p 18.84 6 7 6 138469.184 7 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 3137926.7472 40 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 330243.52999999997 6 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 187017.38063 16 +Q9VGL0 LD43047p 2.61 3 3 3 14927.1071 3 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 81532148.70976 180 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 147261.4222 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 12465501.3087 68 +Q9VGQ8 Arfaptin 25.35 9 11 9 263524.762 9 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 20550.6174 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 34667.815299999995 3 +Q9VGS3 RH44771p 23.39 4 22 4 1002334.0806 19 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 23265.074 2 +Q9VGT3 GM04645p 3.98 2 2 2 2480.4618 2 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 49650.6467 8 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 49411.55 1 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 143021.919 5 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 299052.61909999995 10 +Q9VGY2 Peptide deformylase 5.88 2 3 1 29718.5753 3 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 108360.396 6 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 126103.69076 15 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 122148.89326 7 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 789275.9168 15 +Q9VH37 IP06524p 27.09 5 7 5 278899.4254 7 +Q9VH64 LD29322p 19.0 7 8 7 393960.8078 8 +Q9VH66 FI18258p1 24.89 5 9 5 120517.0946 9 +Q9VH72 TA01656p1 37.25 6 10 6 505150.81429999997 10 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1268641.7201999999 44 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 106089.264 7 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 21819.41184 3 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 83300.4475 10 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 164798.8236 6 +Q9VHA8 LD25575p 15.06 10 12 10 613717.8596 12 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 845833.2179 19 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 57608.5812 4 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 296239.7951 21 +Q9VHC7 FI21236p1 34.65 17 32 9 1156597.1892 26 +Q9VHC8 LD31448p 10.06 2 2 2 868.681 1 +Q9VHE3 GH05665p 1.79 1 1 1 16523.26 1 +Q9VHE4 omega-amidase 20.85 7 16 7 741593.1851 16 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 279073.96 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 347730.8565 6 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 77658.8555 4 +Q9VHH8 Beag 1.26 1 1 1 4765.6797 1 +Q9VHI1 Hyrax 8.36 4 4 4 23563.4892 4 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 1775072.2433 21 +Q9VHJ2 LD32381p 9.12 3 3 3 149469.079 3 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 6768.2285 1 +Q9VHJ7 LD41978p 4.48 3 3 3 70037.03679999999 3 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 3324284.3277 45 +Q9VHM3 LD30467p 8.85 4 4 4 30841.3343 3 +Q9VHN4 GH14121p 12.64 3 4 3 44027.0876 3 +Q9VHN7 transketolase 30.51 16 25 2 714016.5878 21 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 18146.165 2 +Q9VHR5 Veneno 2.96 2 2 2 3072.4663 1 +Q9VHT3 CG9617 protein 20.79 4 5 4 81137.2974 5 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 98212.506 5 +Q9VHX2 GH08043p 4.58 2 2 2 46400.479999999996 2 +Q9VHX4 LD24679p 77.51 23 101 23 11182737.30903 91 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 197230.8415 11 +Q9VI09 GH14494p 52.48 7 29 7 1476757.2179 27 +Q9VI21 Dementin, isoform D 2.98 2 2 0 8474.1522 2 +Q9VI24 LD25151p 4.38 1 1 1 3666.7983 1 +Q9VI53 LD44267p 19.43 7 13 7 122923.1246 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 78173.8184 4 +Q9VI64 LD30995p 46.46 14 42 14 3145851.64883 38 +Q9VI66 GH28833p 15.54 4 6 4 125880.1566 6 +Q9VI80 Thawb 2.46 2 4 2 18910.27765 4 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 34329.79709 6 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 82057.1856 5 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 74254158.87956 306 +Q9VIF2 GM01519p 11.13 6 8 6 381404.527 7 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 436336.71770000004 12 +Q9VIH1 CG9273 protein 29.27 6 7 6 160675.33299999998 7 +Q9VII5 GEO08323p1 20.13 3 8 3 410618.18496 8 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 159568.5535 2 +Q9VIJ3 FI14214p 45.0 7 10 2 84688.03295 8 +Q9VIJ5 GEO05038p1 20.15 2 3 2 21865.975300000002 3 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 8848.6608 2 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 166911.1789 16 +Q9VIL2 LD19544p 23.14 4 5 4 38933.0739 4 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 580773.696 12 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 152208.3319 5 +Q9VIQ5 RH02620p 29.08 5 7 5 258512.52055999998 6 +Q9VIQ6 FI17342p1 17.68 4 5 4 28232.592999999997 4 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 7297850.32404 61 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 18052.2794 3 +Q9VIU3 FI23988p1 3.98 2 2 2 15404.2565 2 +Q9VIV6 GH04973p 8.83 3 3 3 230660.6978 3 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 52135.096000000005 2 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 4815.1306 2 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 261356.78594 5 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 358810.85375999997 15 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 962554.8961400001 20 +Q9VJ22 GH09876p 5.41 2 2 2 30710.0328 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 105440.731 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 984280.639 18 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 186502.5077 8 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 2348940.1733 29 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 282291.5842 13 +Q9VJ59 PRA1 family protein 5.31 1 2 1 70198.551 2 +Q9VJ60 GM16226p 17.29 3 4 3 149600.71399999998 4 +Q9VJ61 SD03870p 4.67 2 2 2 8427.7073 2 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 423692.1638 15 +Q9VJ80 LD42267p 8.46 10 12 10 171174.0671 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 207889.13665 13 +Q9VJA9 GH07373p 7.69 5 6 0 63639.9262 6 +Q9VJC0 GEO08203p1 37.96 5 8 5 219686.02870000002 8 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 129085.3177 5 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 1075922.0239 20 +Q9VJD4 LD24721p 34.44 12 41 12 3708119.3349 35 +Q9VJE3 LD24839p 11.63 6 8 6 76520.2736 7 +Q9VJH8 FI03416p 3.13 2 2 2 10588.5646 2 +Q9VJI5 Protein yellow 16.56 8 9 8 602432.3018 9 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 195116.5366 5 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 1614814.3647999999 21 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 27881.201 1 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 304219.3052 10 +Q9VJQ3 Protein yellow 38.13 15 33 14 3177875.39985 30 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 23406.2643 3 +Q9VJU6 IP09831p 7.3 2 3 2 45962.513999999996 2 +Q9VJU8 GH23407p 10.27 5 6 5 63937.9823 5 +Q9VJZ1 FI21342p1 11.57 6 7 6 118684.65247 7 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 3013769.8368 40 +Q9VJZ5 LD07294p 26.58 8 14 8 257250.02850000001 12 +Q9VJZ6 LD40224p 76.39 13 40 13 1618720.2288 35 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 347877.96355 13 +Q9VK11 GH15921p 22.65 6 13 6 632397.69495 13 +Q9VK12 GH20621p 64.8 18 93 18 11308080.79996 85 +Q9VK18 LD36945p 17.14 9 10 9 74397.97975 8 +Q9VK19 FI07225p 7.72 1 1 1 5302.279 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 2789.77763 2 +Q9VK31 LD35592p 5.19 2 2 2 3888.0227 1 +Q9VK39 FI09204p 52.83 5 23 5 484103.7922 18 +Q9VK43 LD10135p 7.71 3 3 3 17529.9375 3 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 91473.63429999999 5 +Q9VK59 LD23647p 33.58 28 46 28 653423.2615 39 +Q9VK60 GH25425p 52.14 13 50 13 3517730.15349 46 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 3552263.0894299997 46 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 259850.3243 13 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 156355.8379 10 +Q9VK99 Atilla, isoform B 51.75 8 30 8 1997204.7925500001 26 +Q9VKA1 FI02817p 16.23 4 6 4 56681.511 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 19941.91 3 +Q9VKC8 FI03495p 14.26 8 10 8 249863.55043 10 +Q9VKD9 MIP16835p1 1.35 1 1 1 5642.0786 1 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 36595361.00661 381 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 93874.00472 6 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 124281.14499999999 2 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 114516.77 1 +Q9VKI8 GH03305p 65.36 19 134 19 8872976.86751 126 +Q9VKJ4 Csl4 18.14 3 4 3 64531.127 3 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 9051079.57273 59 +Q9VKM7 AT01533p 7.09 4 10 0 360770.38 10 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 187836.1188 15 +Q9VKQ5 GEO07393p1 16.94 2 4 2 197109.81 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 23165.8765 3 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 1138504.0884 21 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 274678.3271 9 +Q9VKU5 LD37206p 14.04 4 4 4 56537.127 2 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 2458260.4116599998 37 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 73796.0649 5 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 96621.9308 7 +Q9VKW1 LD41958p 1.96 1 1 1 3322.575 1 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 390523.04219999997 16 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 17174.9242 2 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 14283996.2757 159 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1215365.08 12 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 191274.3327 14 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 925215.018 29 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 2309284.2631 44 +Q9VL02 GH08677p 19.51 7 7 2 96513.42850000001 7 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 310273.98620000004 12 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 82763.9267 5 +Q9VL16 RE45833p 30.77 7 30 7 3484183.7327 27 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 5095.168 1 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 38987.5795 3 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 2241.0085 1 +Q9VL57 RE10231p 2.85 1 1 0 908.3452 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 94038.262 2 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 651922.6089999999 9 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 2273662.21624 32 +Q9VL70 HL08109p 80.9 30 111 30 28131660.585780002 105 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 133314.9606 5 +Q9VL91 LD23102p 1.8 1 1 1 2503.4595 1 +Q9VL93 GEO07195p1 29.09 3 5 3 38203.1188 3 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 177271.4355 8 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 3521259.1096 56 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 8084706.84706 79 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 129559.8557 7 +Q9VLI4 Raw, isoform A 4.85 4 5 1 47979.0606 3 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 46411.223 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 1203425.0459 16 +Q9VLP0 IP04187p 32.09 5 7 5 140442.434 5 +Q9VLP1 GEO08095p1 37.84 6 18 6 724348.90966 14 +Q9VLP2 GEO08076p1 38.78 6 46 6 1591629.5714 39 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 716793.417 6 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1237794.61385 29 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 277533.18100000004 2 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 3827019.6877 41 +Q9VLS5 LD29542p 6.53 3 4 3 16490.41106 3 +Q9VLS7 LD21067p 4.91 7 8 0 68641.0616 5 +Q9VLT3 LD23292p 15.23 26 42 26 1200688.98305 38 +Q9VLT7 IP17351p 24.04 4 7 4 551958.1087 7 +Q9VLU3 IP09231p 8.63 2 3 0 33631.4183 2 +Q9VLV9 Proctolin 46.43 5 7 5 47290.58778 5 +Q9VLW8 LD06392p 5.79 2 2 2 45747.7825 2 +Q9VLX6 HL01609p 16.49 4 4 0 92474.86847 4 +Q9VLY1 HL02931p 19.01 1 9 1 1482075.8036999998 7 +Q9VLY7 TEP1-F 7.49 10 10 10 107321.83976 9 +Q9VLY9 CD109 antigen 28.88 39 63 2 3058798.36106 60 +Q9VM07 RE43931p 27.85 5 10 4 470220.66020000004 8 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 248082.41139999998 12 +Q9VM11 HL01515p 30.55 11 14 11 497617.00854 14 +Q9VM12 MIP26555p1 25.85 8 19 8 728000.2896 15 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 23725002.9116 184 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 16941838.52035 116 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 49582.244 3 +Q9VM47 Menin 4.19 3 3 2 26177.379399999998 3 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 14020.82517 4 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 467472.17799999996 11 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 195015.72539999997 5 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 427974.65045 8 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 140934.185 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 13430384.45762 83 +Q9VMC3 LD35051p 17.28 5 6 5 27890.8017 5 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 56212.992 1 +Q9VMC7 LP11564p 13.92 9 10 3 42368.4571 8 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 606371.0009 16 +Q9VME1 FI01864p 11.22 6 8 6 127209.677 8 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 268790.30929999996 7 +Q9VMF0 FI04444p 5.9 3 3 3 18266.1313 3 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 96115.5457 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 472868.965 11 +Q9VMH8 GEO07746p1 38.1 6 19 6 684231.938 16 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 2727865.6131 29 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 1479564.3887 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 9300792.1577 47 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 405212.2147 8 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 747717.1684000001 15 +Q9VMR9 acylphosphatase 14.85 2 2 2 25694.691300000002 2 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 15663915.5063 59 +Q9VMT2 GEO07854p1 60.4 9 123 1 11723413.77755 109 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 5470630.9355 40 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 87148.1731 12 +Q9VMV5 Viking, isoform A 9.07 15 21 15 475975.9291 18 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 2253.6106 1 +Q9VMX4 AT19154p 29.08 7 13 7 225550.0884 11 +Q9VN01 GH23891p 11.66 7 7 7 107876.666 7 +Q9VN02 GH14561p 39.46 10 16 10 245664.43060000002 13 +Q9VN21 LD30155p 57.06 30 110 30 10757846.791779999 102 +Q9VN39 RE74585p 24.47 9 13 4 65662.3529 9 +Q9VN44 FI07923p 23.17 21 40 21 1531124.81304 39 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 791223.50696 12 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 614788.0013 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 3679.7932 1 +Q9VN86 AT14148p 9.07 4 4 4 63778.55 4 +Q9VN88 LD45836p 33.18 6 9 6 302799.7513 9 +Q9VNA3 GH21273p 34.26 7 14 7 650720.5738 13 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 1458323.37296 13 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 206810.9716 6 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 26998.1567 3 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 6477.6586 2 +Q9VNF3 RE01652p 45.91 11 35 8 828010.40888 29 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 129593.41113 7 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 110729.67465999999 8 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 240967.11599999998 9 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 132126.3 1 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 201212.9569 7 +Q9VNI8 Hpr1 10.84 8 8 8 108763.3416 8 +Q9VNI9 IP18173p 25.11 4 7 4 176613.9718 7 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 13827418.11478 84 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 82893.7066 6 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 48098.44936 7 +Q9VNV2 GEO05133p1 15.82 2 3 2 92244.982 3 +Q9VNW0 GEO11142p1 17.97 2 2 2 35174.724 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 6835138.91065 78 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 3151231.9719599998 95 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 19367.6774 3 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 37000.515199999994 4 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 9764.088 1 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 2344.82978 2 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 97925.504 4 +Q9VP51 LD40450p 2.79 1 1 0 345.2398 1 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 262551.5984 7 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 459852.4924 8 +Q9VP57 LD15904p 25.8 20 45 20 932575.75612 38 +Q9VP77 LD23875p 10.53 6 6 6 106877.57813 6 +Q9VP78 GH23156p 11.92 4 5 4 49133.3231 5 +Q9VP84 IP06402p 10.05 2 2 2 31669.134 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 8194.086 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 60623.928700000004 4 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 90827.05 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 29155.512 2 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 2075625.3193 38 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 29375.4628 4 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 42897.748999999996 3 +Q9VPH6 LP10922p 8.04 4 5 0 52849.523250000006 4 +Q9VPJ0 RE58433p 16.84 6 7 2 226054.4605 7 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 34915.052 2 +Q9VPK3 AT24407p 12.35 5 7 1 227018.09780000002 7 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 92542.7677 4 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 5566542.5839 82 +Q9VPP7 AT13539p 22.7 4 4 4 94791.75899999999 4 +Q9VPR1 GH02075p 15.14 2 5 2 6585.3857 1 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 2098.9722 1 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 739648.51966 10 +Q9VPU4 FI17537p1 5.33 2 2 2 5035.41165 2 +Q9VPU6 Galectin 5.06 2 2 2 59397.265999999996 2 +Q9VPX0 GH26159p 6.97 4 4 4 9495.204 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 1067401.0003 13 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 6085557.86207 71 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 4884.76064 3 +Q9VPY7 LD42035p 2.2 1 1 1 4524.678 1 +Q9VPZ5 GH04232p 25.41 14 33 14 843516.5177000001 32 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 9402.6165 2 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 11516279.68895 105 +Q9VQ83 RE23541p 7.91 3 3 0 22887.363 2 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 250199.9145 6 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 7304099.3946 55 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 3684828.0269 24 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 290139.2648 13 +Q9VQE0 dynamin GTPase 20.82 15 21 15 359890.2247 19 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 53927.873600000006 7 +Q9VQI6 LD25952p 19.75 7 9 7 122871.62730000001 8 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 955154.67375 24 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 52803.299 3 +Q9VQK7 LD45152p 6.68 5 5 5 26386.3925 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 5833.959 1 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 2008445.7954 36 +Q9VQM0 Toucan, isoform A 0.69 1 1 0 416.0146 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 1646353.40642 17 +Q9VQQ6 FI18122p1 35.15 14 21 1 560586.1729 19 +Q9VQR0 FI04421p 4.49 2 3 2 57464.9174 3 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 5832917.4047 58 +Q9VQR5 IP10807p 19.06 4 6 4 76857.2106 5 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 219924.85364 12 +Q9VQT7 RH15675p 14.63 1 2 1 7726.5857 2 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 458367.9361 13 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 174716.34339999998 6 +Q9VQX3 HL05328p 18.38 6 6 6 62134.9344 6 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 13072.2781 4 +Q9VR03 AT19250p 4.57 2 2 2 2776.6924 1 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 202896.10916 10 +Q9VR30 RE58324p 25.27 9 9 9 327043.2 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 481653.7991 10 +Q9VR62 GM14138p 5.53 3 3 3 17713.292 2 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 41994.11 2 +Q9VR79 LD43683p 35.86 11 30 11 2438117.6783 28 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 7134.7600999999995 2 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 2285543.4324 31 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 1235583.405 11 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 144293.6478 9 +Q9VRF7 GH09530p 19.59 5 13 0 408404.51780000003 10 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 118721.7905 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 267339.7968 14 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 3327101.51275 36 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 202401.6 11 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 67291.32 2 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 7339.4766 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 13104014.62462 93 +Q9VRL1 GEO06356p1 53.1 8 42 2 3042635.3785 34 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 5237.875 1 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 5967.70687 2 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 24000.8436 4 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 2625324.1274 44 +Q9VRP3 AT08565p 27.53 8 17 8 665476.0541 14 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 98497.0073 7 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 1928636.1479 26 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 394474.27270000003 7 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 249223.03 8 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 404216.41683 14 +Q9VS11 lysozyme 16.35 4 4 4 85559.39043999999 4 +Q9VS44 Uncharacterized protein 9.82 3 3 3 41690.18233 3 +Q9VS84 FI03225p 11.14 10 13 10 399237.5795 13 +Q9VSA9 CG7409 79.87 15 73 15 8617808.66973 60 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 322296.358 9 +Q9VSC5 GM09977p 60.12 14 32 14 881022.78454 27 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 136019.1926 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 440250.6553 8 +Q9VSH5 IP09562p 4.89 1 1 1 6761.669 1 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 156178.131 3 +Q9VSI1 LD21269p 7.99 5 5 5 47176.3384 4 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 15538.1852 3 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 1595075.3182 25 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 3311047.7586 28 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 3886289.1673 35 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 230526.8567 8 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 82325.376 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 23266.3385 4 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 4382.7476 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 1333812.1187 18 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 5052303.24521 60 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 125061.3652 5 +Q9VSR5 GM03767p 52.2 8 27 8 2972927.93204 25 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 166717.4646 9 +Q9VST4 arginine kinase 6.96 3 3 3 10104.796550000001 3 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 4324600.0316 44 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 747642.8642000001 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 141548.2 3 +Q9VSW7 LD21662p 3.33 1 1 1 5745.9146 1 +Q9VSX2 IP01061p 40.0 9 17 9 425494.9593 10 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 9753867.32231 52 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 500747.41229999997 12 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 2686.2198 2 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 680357.5005 16 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 17162.5468 2 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 1811545.6344 26 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 32399.573 2 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 17007.217 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 50836.476 2 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 99368.2087 5 +Q9VTA8 RE35371p 7.59 2 2 2 9015.46778 2 +Q9VTB0 LD35289p 21.62 8 11 8 307343.397 10 +Q9VTB3 Guanylate kinase 51.07 13 30 13 1616379.1626 28 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 4309022.8309 34 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 85832.3545 5 +Q9VTC3 GH07049p 9.72 4 5 4 146519.355 5 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 43115.1036 3 +Q9VTL0 FI19917p1 7.45 3 3 3 114428.812 3 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 98705.22200000001 3 +Q9VTT2 LD20590p 7.93 4 4 4 35142.8603 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 3005566.3186 30 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 454793.2885 9 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 224435.77899999998 6 +Q9VTW1 RE15265p 11.2 5 5 0 297934.406 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 114994.19 7 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 4707321.18104 55 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 597859.0611 19 +Q9VU04 RE60105p 13.85 4 5 4 150850.786 5 +Q9VU13 LD45603p 9.17 4 12 0 468733.1047 12 +Q9VU34 LD45758p 0.89 1 1 1 944.9442 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 16281152.828399999 68 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 68809.5974 4 +Q9VU38 Adenosine kinase 35.94 8 13 0 75161.16477999999 12 +Q9VU45 LD27581p 21.48 5 15 5 793124.8696999999 14 +Q9VU53 Capricious, isoform A 5.0 3 3 1 26368.593 2 +Q9VU75 RH45712p 61.73 12 38 12 659615.09854 33 +Q9VU92 Uncharacterized protein 29.76 7 16 7 287877.5399 14 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 7876443.86104 89 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 40773.5976 5 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 2967231.7285 31 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 3786.8635 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 101808.36850000001 5 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 357466.564 4 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 115184.81599999999 8 +Q9VUQ7 RE36966p 10.4 6 11 6 119910.3451 11 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 49801.0457 4 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 3978.1913000000004 3 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 25999.188 2 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 253207.89970000004 9 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 377761.504 5 +Q9VUZ8 GEO07442p1 22.56 2 2 2 1047.4663 1 +Q9VV13 GEO08383p1 10.71 1 5 1 503477.925 5 +Q9VV31 Uncharacterized protein 19.35 2 5 2 129239.942 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 426591.3287 12 +Q9VV40 Golgin 104 1.42 1 1 1 849.3155 1 +Q9VV42 Fat body protein 2 83.09 26 202 0 44162827.41323 174 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 33858647.4775 216 +Q9VV47 Fat body protein 2 45.17 9 18 7 1510579.6921 17 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 2059773.55427 45 +Q9VV75 AT02348p 82.05 29 251 29 25086185.26982 196 +Q9VV76 Syntaxin 8 37.07 6 10 6 204444.07259999998 9 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 85767.39906 7 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 239250.92609999998 9 +Q9VVB5 LD46723p 30.59 16 56 1 10596.18805 3 +Q9VVB7 FI02842p 43.95 14 57 1 4378.0977 1 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 307223.8276 7 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 2596059.31645 47 +Q9VVC8 LD23434p 15.41 8 9 8 155262.0619 7 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 642046.1625 22 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 14443685.84904 31 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 811608.1056 12 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 81232.4873 4 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 464757.1735 12 +Q9VVL5 FI11325p 14.55 5 7 5 127694.99100000001 7 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 19125219.71606 153 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 74791.712 4 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 50419.5788 3 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 261343.0963 10 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 146027.9294 9 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 2675065.9244 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 13123612.46002 60 +Q9VVU2 GEO07453p1 48.32 9 29 8 1982996.9771 28 +Q9VVV6 LD45843p 6.76 5 5 0 23377.25445 5 +Q9VVW7 Canopy b 16.74 4 9 4 324008.158 9 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 31500.781 2 +Q9VVY7 FI20154p1 10.79 14 19 0 331052.4273 18 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 114007.03364 10 +Q9VVZ6 GEO09638p1 25.95 2 3 0 5036.4758600000005 2 +Q9VW00 GH28721p 11.46 4 10 4 316708.407 10 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 17701.137 2 +Q9VW17 RE58036p 47.25 6 16 1 230053.2758 15 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 13677.855619999998 3 +Q9VW34 FI03450p 19.96 11 20 11 928008.47216 17 +Q9VW40 LD31235p 9.3 3 3 3 39095.937000000005 3 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 22455.6477 2 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 75970.96329999999 8 +Q9VW57 Grasp65 12.61 6 9 6 255200.657 9 +Q9VW58 LD33138p 35.32 6 11 6 92338.068 11 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 1530078.8898000002 30 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 4638964.9927 58 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 13516976.80773 120 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 24346.528400000003 4 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 73194.44709999999 5 +Q9VWD0 GH23568p 16.89 6 14 6 584782.47813 12 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 13279278.4552 89 +Q9VWD5 LD35087p 13.54 5 5 5 41479.043000000005 5 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1173442.0508299998 38 +Q9VWF0 LP01149p 36.93 9 17 9 129446.5836 13 +Q9VWG1 LD37169p 71.04 12 73 2 325543.2057 12 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 19308.604 2 +Q9VWJ3 LD05272p 8.22 1 2 1 28241.154 1 +Q9VWL4 GH07340p 13.41 7 9 7 140996.6454 9 +Q9VWP2 RH57257p 57.02 12 25 12 1666721.337 24 +Q9VWQ3 LD35981p 6.96 3 3 0 81440.383 3 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 244560.00114 8 +Q9VWS1 Houki 20.44 5 8 5 453532.6706 8 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1117088.8593 28 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 27113.4458 5 +Q9VWU0 FI18411p1 5.87 2 2 2 13961.371 2 +Q9VWV6 Transferrin 70.05 43 231 43 25624023.654600002 209 +Q9VWW2 GH13094p 20.52 10 18 10 131113.11985 11 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 19423.207000000002 2 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 411117.1368 8 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 23876.432500000003 3 +Q9VX26 Chascon, isoform A 1.62 2 2 0 10019.1622 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 8786954.51304 77 +Q9VX69 FI01450p 18.0 6 23 5 637289.08296 11 +Q9VXA3 LP21163p 17.0 12 21 12 502074.1449 20 +Q9VXA9 RE04047p 6.57 2 3 2 73541.01999999999 3 +Q9VXC1 MIP06432p1 31.28 5 11 3 662275.2369 10 +Q9VXC9 trypsin 52.99 10 17 10 1039023.6772 15 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 168091.97460000002 4 +Q9VXF9 AT13091p 26.2 10 17 10 419604.60207 17 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 143608.3008 6 +Q9VXG9 GH25683p 9.78 2 5 2 32714.218569999997 3 +Q9VXH4 RE16337p 28.43 2 3 2 268682.377 3 +Q9VXH7 FI17510p1 10.63 3 5 3 245407.70505 5 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 2345095.9649 33 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 8472716.7987 44 +Q9VXJ7 GH03748p1 9.2 9 11 9 38240.93204 7 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 387784.3493 13 +Q9VXM4 LD12946p 62.9 13 34 13 1520474.18477 28 +Q9VXN1 LD03728p 12.68 4 4 4 31642.252660000002 3 +Q9VXN3 LD07988p 29.8 10 15 10 255555.7101 15 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 13113.2693 2 +Q9VXP3 GH05406p 8.26 5 5 5 26350.525800000003 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 26966.004 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 23688.1916 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 2549951.4675000003 49 +Q9VXR9 FI03680p 15.76 6 6 6 111578.238 6 +Q9VXV1 RH52220p 4.39 1 1 1 11560.23 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 444061.10730000003 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 1987783.94533 27 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 301852.20519999997 14 +Q9VY05 GH11762p 12.84 8 13 8 665518.0053 11 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 113703.66870000001 8 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 283962.1589 7 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 1982.2562 1 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 12059.249 1 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 129613.2759 5 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 150212.90099999998 5 +Q9VY76 AMP deaminase 10.25 8 10 0 39072.78676 8 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 563588.38159 12 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 180687.5426 9 +Q9VY92 GEO07753p1 73.91 8 44 8 8028025.6076 43 +Q9VYA1 RE18811p 3.87 1 1 1 6454.959 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 23133.017 2 +Q9VYF0 GM09012p 16.04 4 6 4 156085.4568 5 +Q9VYG8 CG15717-PA 10.71 3 5 3 59572.29566 4 +Q9VYJ1 FI12805p 5.04 4 4 4 39820.297099999996 4 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 90992.53219999999 3 +Q9VYM0 CG2555-PA 13.2 2 3 1 4910.31983 2 +Q9VYN1 protein kinase C 0.84 2 14 1 6035742.8313 12 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 4404.232 1 +Q9VYS2 GH09980p 9.97 8 11 8 48690.5963 9 +Q9VYT0 RE04130p 37.34 9 17 8 391846.1252 17 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 29219.49345 4 +Q9VYT3 FI23714p1 5.58 7 7 7 33940.2431 6 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 80861.29462 6 +Q9VYU9 RH17287p 56.97 9 18 9 627438.3989500001 17 +Q9VYV4 Amun, isoform A 8.0 3 5 3 140214.3052 5 +Q9VYV6 GEO09033p1 28.07 3 3 3 26021.77 2 +Q9VZ00 FI19420p1 18.03 16 21 0 235565.9497 19 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 2552428.0968 33 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 687668.0680999999 15 +Q9VZ24 GEO11412p1 46.9 8 47 8 6470488.093280001 47 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 38507.5683 3 +Q9VZ34 RH72958p 4.69 2 3 2 32844.719 3 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 53859.0552 3 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 483297.22549999994 9 +Q9VZ66 SD22308p 42.86 5 9 5 370637.1794 8 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 79188.6618 6 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 70323.2963 3 +Q9VZE4 RE70333p 20.43 10 14 10 560192.2583999999 13 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 537363.3983 8 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 85852.1124 3 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 754649.49395 32 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 7306740.5931 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 335412.4562 10 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 10990567.69016 44 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 33532.4813 3 +Q9VZI1 Transgelin 68.09 12 84 1 8361064.7716 70 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 64345.131 3 +Q9VZJ2 GH27759p 14.19 6 10 6 456708.5573 9 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 37289.018800000005 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 448903.90653 24 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 31969.8317 5 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 127409.5098 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 366915.602 10 +Q9VZV2 Chitinase 7 4.64 5 6 5 48386.6073 6 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 28492.11397 5 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 12569.00144 4 +Q9VZX6 LD06441p 21.78 7 9 7 388217.784 9 +Q9VZY0 LD45195p 11.48 3 4 3 260719.4974 4 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 10574.3042 2 +Q9VZZ5 GEO12033p1 34.27 6 8 6 778620.1404 8 +Q9VZZ6 CG16985 protein 38.26 5 11 5 518512.2191 11 +Q9W022 GEO01508p1 62.68 8 41 8 6867097.8514 40 +Q9W073 RH22148p 19.41 3 3 3 62390.9005 3 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 5120076.3007 23 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 1644651.9536 14 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 398064.5888 11 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 240854.54544000002 6 +Q9W0A8 FI01658p 25.63 7 26 7 1068477.988 26 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 1073966.1113 24 +Q9W0C3 GH11843p 38.78 11 19 11 950163.4429 18 +Q9W0D3 GH15728p 1.29 2 2 2 5751.64585 2 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 46679.64 1 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 34243.9325 4 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 875760.3058 21 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 1273867.27685 27 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 66362.9249 5 +Q9W0J9 GH07301p 34.47 8 12 7 269438.5347 10 +Q9W0K9 LD10220p 23.21 4 4 4 26493.507 4 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 14748.145400000001 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 505713.5452 14 +Q9W0M5 Protein DPCD 14.41 3 3 3 18504.5799 3 +Q9W0N6 LD27967p 9.57 3 3 3 51051.18377 3 +Q9W0P4 GEO05053p1 8.13 1 1 1 39332.2 1 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 29313.7725 4 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 36046.156 1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 264861.81126 19 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 53631.6826 4 +Q9W0U0 glycerol kinase 3.9 2 2 0 17540.8334 2 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 338681.25269999995 11 +Q9W0X1 GH15894p 6.31 3 3 3 107660.77549999999 3 +Q9W0X2 GEO07322p1 28.1 3 4 3 128410.8275 3 +Q9W0X3 LD24657p 22.81 4 4 1 156870.3896 4 +Q9W0Z5 LP09747p 22.95 9 13 9 253338.663 9 +Q9W114 IP05433p 28.33 3 4 3 54340.044 4 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 5359431.32685 53 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 877993.8489999999 17 +Q9W136 Uncharacterized protein 19.81 4 18 4 560813.4204000001 15 +Q9W140 Regulatory protein zeste 3.53 2 3 2 45946.788 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 29079.19371 5 +Q9W158 LD36772p 14.33 5 7 5 326132.034 6 +Q9W199 GEO07594p1 21.29 4 5 4 311526.5274 5 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 4568061.8398 31 +Q9W1C8 LD24355p 19.02 8 8 8 124917.309 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 75350.8873 5 +Q9W1F2 FI07217p 5.93 2 3 2 11150.1907 3 +Q9W1F7 IP15825p 34.97 12 28 12 2403750.88203 25 +Q9W1F8 GEO08248p1 23.31 4 8 4 444050.269 7 +Q9W1G7 LD21576p 34.32 13 22 13 643893.86684 20 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 342865.87648000004 11 +Q9W1H6 GH04238p 13.85 3 9 3 303260.5281 8 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 3858015.4459 45 +Q9W1I8 LD03592p 39.08 9 25 9 586534.96219 19 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 61921.4485 6 +Q9W1L8 GH11818p 2.66 1 1 1 13692.635 1 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 57478.80704 6 +Q9W1N3 Levy, isoform A 23.85 3 17 3 2278982.1550000003 16 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 4966.7715 1 +Q9W1R0 RH49821p 4.13 2 2 2 21809.392 2 +Q9W1R3 Golgin-245 12.09 17 20 17 199008.8402 19 +Q9W1V8 CG9893 protein 39.58 8 16 8 437966.5707 15 +Q9W1W4 RE45066p 18.58 6 11 6 326300.8925 10 +Q9W1X5 GH04942p 20.82 28 39 4 1898887.68393 36 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 10565023.843 72 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 887480.92587 15 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 234611.46839999998 12 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 110009.1379 8 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 593458.8205 22 +Q9W257 RH13652p 6.99 2 4 2 215760.826 4 +Q9W258 Babos, isoform A 33.67 7 13 7 1339648.1354 13 +Q9W259 FI23916p1 8.95 4 5 4 146314.1627 5 +Q9W260 GH03113p 15.4 8 12 8 375220.825 12 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 164028.526 5 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 251153.62184 25 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 23037.0569 3 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 44574.4448 4 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 1014250.3759 18 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 25511.5862 2 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 40312.1687 3 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 335696.28558 14 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 167809.424 4 +Q9W2L6 RH02475p 33.73 20 58 20 4124319.7862 53 +Q9W2M0 LD23155p 22.1 15 17 15 302700.5593 14 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 13704360.27287 51 +Q9W2M9 FI16623p1 14.71 2 2 2 180805.78480000002 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 1295.4996999999998 2 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 360197.206 5 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 497406.141 11 +Q9W2V2 FI20035p1 5.6 3 3 3 5780.52367 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 29688359.52042 86 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 463895.3297 20 +Q9W2Z9 RE65233p 4.81 1 2 1 54069.334 2 +Q9W306 GEO08256p1 25.62 3 4 3 10816.5723 3 +Q9W308 GH05731p 16.18 2 5 2 443820.189 5 +Q9W309 GEO08445p1 33.95 7 11 7 954254.864 11 +Q9W314 GH14088p 9.82 4 5 4 129559.9825 5 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 165918.389 8 +Q9W330 Phosphotransferase 29.76 15 32 2 2982954.1106 31 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 58063.9648 2 +Q9W337 GH19985p 44.95 7 14 7 755842.3545 14 +Q9W370 GEO12084p1 38.52 4 10 4 358312.5646 9 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 10435.52796 2 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 11510.595299999999 2 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 1802422.6736 35 +Q9W396 FI06908p 14.17 4 7 4 268528.80090000003 6 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 142195.6564 5 +Q9W3C3 LD10016p 12.94 6 8 6 130518.22439999999 5 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 40314.535 3 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 337610.72599999997 11 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 81881.9735 3 +Q9W3H4 LD36273p 66.8 13 29 13 1123183.4775 25 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 95355.63975 7 +Q9W3J6 FI06457p 8.64 3 4 3 29063.544130000002 3 +Q9W3K6 LD35927p 4.99 4 5 4 68069.096 4 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 807486.9457 23 +Q9W3L4 GH20802p 35.02 10 23 10 705302.2472 21 +Q9W3M7 RNA helicase 14.07 10 15 9 82259.80314999999 9 +Q9W3M8 LD34211p 47.74 8 17 8 833178.2237000001 17 +Q9W3N1 RH59310p 7.17 2 2 2 3856.431 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 503640.6355 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 2501158.28903 38 +Q9W3Q0 FI07418p 23.39 5 14 4 21260.958499999997 3 +Q9W3Q1 GM14286p 8.84 3 3 3 12589.197830000001 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 271030.90773 12 +Q9W3S3 LP10445p 15.68 2 3 2 5769.7269400000005 3 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 88175.7509 6 +Q9W3T9 GM01152p 45.38 9 16 9 841054.1950300001 16 +Q9W3U9 CG14434-PA 32.62 6 13 0 202860.2098 9 +Q9W3V2 FI19713p1 4.82 4 4 4 25254.761 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 36022.0356 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 47412.191399999996 4 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 5553364.5292 57 +Q9W3X8 RH42690p 10.73 4 5 4 30066.14025 4 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 541762.558 20 +Q9W3Z4 GH18625p 3.75 1 1 1 1983.2795 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 3000703.61904 50 +Q9W403 LD24968p 9.21 5 7 5 58279.23062 7 +Q9W404 GH10714p 31.03 9 12 8 186113.91994 10 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 48752.784 3 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 990696.9182 24 +Q9W425 Rabconnectin-3A 1.34 5 5 5 24625.19055 3 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 5489698.60186 60 +Q9W461 LD23868p 18.22 7 8 7 122837.2011 8 +Q9W482 Lin-52, isoform A 33.12 4 11 4 118686.1545 8 +Q9W483 GH18971p 5.79 2 3 2 75579.95300000001 3 +Q9W486 LD13361p 5.27 3 3 0 32104.962 3 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 124843.994 4 +Q9W4A0 GH11193p 19.8 4 5 4 183928.425 5 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 61370.54036 8 +Q9W4C2 lysozyme 17.11 3 3 3 60152.772 3 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 221548.9292 8 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 32780.8154 4 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 2242236.8051400003 29 +Q9W4N8 LD30122p 55.76 15 77 0 6335452.999009999 70 +Q9W4U2 RH09070p 41.37 8 24 8 839875.94437 21 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 10730.0708 2 +Q9W4W5 RE47284p 11.15 4 4 4 189583.58969999998 4 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 230449.7277 20 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 523729.344 13 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 13494.499 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 11062.175599999999 3 +Q9W503 RH61816p 38.61 11 14 11 413017.8569 14 +Q9W5B4 GH18858p 31.97 10 21 10 817281.46407 18 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 27413.538 2 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 12794.8941 3 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 83803.30040000001 5 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 130747.598 6 +Q9W5W7 GH19483p 2.57 2 3 2 26169.9695 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 5663620.17306 38 +Q9W5X0 LD21953p 26.87 6 25 1 134532.396 4 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 130968.23629999999 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 149147.8743 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 5715156.45017 45 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 173393.7185 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 777912.7579 17 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 874125.6614000001 15 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 10572774.8669 98 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 446551.70469 23 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 244714.49292 20 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 11452592.830360001 92 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 13797.5923 2 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 52568.5387 7 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 1941463.3523 37 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 263620.4771 13 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 2669640.2166999998 41 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 9830683.259990001 77 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 2760.5151 1 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 168240.13617 4 +R9PY51 Uncharacterized protein 34.95 6 48 6 4483802.6049 27 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 9228164.3116 106 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 413924.3994 12 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 292834.2989 10 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 120266.78249999999 2 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 194976.7861 6 +X2JB48 ADP/ATP translocase 56.86 20 109 1 8159840.8434999995 101 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 607786.4057 30 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 112557.9512 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 25394340.37318 111 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 14524.023 1 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 28181.663999999997 2 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 17109.63 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 8594.298 1 +P10674 Fasciclin-1 49.69 30 164 1 3145.9768 1 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 4125.1445 1 +Q08605 Transcription activator GAGA 1.2 1 1 0 34888.63 1 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 7546.15 1 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 1590.1393 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 79297.31698 3 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 59198.99 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 5365.256 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 6374.08 1 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 35091.745 2 +Q9W568 Protein halfway 3.11 1 1 0 1627.9901 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 5398.647 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 4913.9067 1 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 94170.5531 6 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 1920.5671 1 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 25433.594 1 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 39251.08 1 +A1Z7M0 Space blanket 2.86 1 1 1 24039.248 1 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 37645.450000000004 2 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 215435.1784 6 +B5RJS0 IP20241p 1.96 2 2 0 544.98065 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 3332.7764 1 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 5983.362300000001 2 +E1JJM0 FI20063p1 22.76 13 20 0 471507.14280000003 18 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 9820.944 1 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 19225.13 1 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 8953.917 1 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 14786.8976 2 +Q0E8R1 FI07211p 34.57 13 35 0 74040.006 2 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 133053.396 10 +Q7JWH6 RE61424p 5.65 2 2 2 8597.557 1 +Q7JXA2 LOBE 5.52 2 2 2 3638.1338 1 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 124618.3157 3 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 2447.9758 1 +Q7KVW1 RE73736p 2.8 2 2 0 24156.148 2 +Q7PLV6 FI02158p 0.85 1 2 1 3238.2016 2 +Q8I062 GH23305p 83.33 21 152 1 27010.896 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 21797.096700000002 2 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 4854.888 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 8416.437 1 +Q8MPN6 Serpin 4 27.18 9 11 0 13676.771 1 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 29423.0398 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 2267.7627 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 13239.1714 3 +Q9VKC1 IP16805p 4.28 1 1 1 12624.076 1 +Q9VM94 Homer, isoform B 49.62 17 57 1 31712.678 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 66341.17 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 94359.6378 4 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 36672.793 1 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 18110.3606 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 407799.91900000005 4 +Q9VTY1 LD40136p 5.69 2 2 2 27806.1054 2 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 2019.007 1 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 19844.224599999998 2 +Q9W2N5 GH10162p 3.47 2 2 2 48188.956399999995 2 +Q9W362 La-related protein 7 1.85 1 1 1 902.9372 1 +Q9W525 LD08195p 3.8 2 2 1 28995.123 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 16885.77384 2 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 49728.85 2 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 10506.0883 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 15914.6045 1 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 36498.9518 2 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 15235.8358 2 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 65214.9517 4 +E1JJ83 Os-C, isoform B 16.34 2 2 1 9819.6856 2 +M9MRG5 Taiman, isoform F 0.94 2 2 0 34282.685 2 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 311173.57539 18 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 8022.7173 1 +O46231 FI18705p1 65.94 22 77 1 83132.77 1 +Q6IDE2 GH07226p 2.0 1 1 1 8585.874 1 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 4538.8335 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 14090.235200000001 2 +Q7K527 Tetraspanin 4.61 1 1 1 3802.7075 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 133035.8 1 +Q8IQ80 GH06117p 2.97 2 2 0 101063.44039999999 2 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 93285.635 3 +Q9VHW5 LD38634p 17.32 2 3 2 16226.8107 3 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 54699.073300000004 2 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 31966.121 1 +Q9VVG5 RH19679p 14.44 1 3 1 1021267.2647 3 +P09956 Regulatory protein zeste 2.96 2 2 0 3107.9158 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 4821.966 1 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 9270.603 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 13155.187 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 40828.293 1 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 12537.685 1 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 57881.46 1 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 13198216.07189 141 +C1C3E7 MIP09364p 61.25 22 85 1 1701.3759 1 +E1JH70 Kank, isoform E 2.57 2 2 0 3964.2086200000003 2 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 4285.8021 2 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 17714.479 1 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 1916.1339 1 +Q8IRM1 Uncharacterized protein, isoform E 20.86 4 7 1 456.6765 1 +Q9VBS0 CHK domain ov2 4.89 2 2 2 20522.1772 2 +Q9VCH9 LD07883p 8.66 2 2 2 25365.124 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 18486.3459 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 40907.30747 2 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 9353.341 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 95025.25589999999 4 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 164159.145 2 +Q9VMY3 FI19613p1 1.5 1 1 1 6362.547 1 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 9574.225999999999 2 +Q9VS80 FI17864p1 2.34 1 1 1 3901.5913 1 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 2600.6917 1 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 10333.595 1 +Q9VZF0 LD44732p 7.73 2 2 2 13422.286 2 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 25762.79 1 +Q9VFR1 Protein Abitram 14.95 2 2 2 2811.18185 2 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 17138.604 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 817851.4234000001 4 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 35263.28 1 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 6462.2437 1 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 1643.5981 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 121776.29086 5 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 7159.704699999999 2 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 7669.1797 1 +Q0KHQ1 GEO13361p1 24.44 2 2 2 85159.118 2 +Q4QPR8 GEO10187p1 9.76 1 2 1 58258.039000000004 2 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 6976.1684000000005 2 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 30478.307999999997 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 7416.6215999999995 2 +Q9VLL5 Alpha-N-acetylglucosaminidase 1.29 1 1 1 431.73264 1 +Q9VV37 GEO13385p1 10.1 1 6 1 107698.08 3 +Q9VVX6 BET1 homolog 9.4 1 1 1 39229.88 1 +Q9W152 RH33060p 16.9 1 1 1 738.6274 1 +P48613 Protein tipE 3.98 2 2 2 8796.554 2 +Q9VGW1 Cadherin-86C 1.24 2 2 0 8005.2221 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 153985.522 3 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 18235.695 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 157716.16530000002 4 +O76895 Arginase 7.69 2 2 2 6814.4746 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 37598.232 2 +Q9VAI3 FI06539p 10.08 1 1 1 9206.683 1 +Q9VB09 IP04131p 12.1 2 2 2 41023.122 2 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 105921.11 2 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 42542.56 2 +Q9W1X6 GH06673p 8.33 2 2 2 17668.6604 2 +Q9W5E7 LP07417p 11.4 1 2 1 13981.348 2 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 33821.7899 4 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 853.2494 1 +A1ZAU6 FI05912p 1.83 1 1 0 3699.639 1 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 111125.64000000001 3 +Q7K3Z8 GH01208p 2.35 1 2 1 20819.506 2 +Q9VAN8 FI15955p1 6.46 1 1 1 14882.33 1 +Q9VLL4 FI23523p1 4.52 2 2 2 11839.394400000001 2 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 11309.798 1 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 25807.184 4 +Q9W542 LD07342p 1.62 1 1 1 7681.0786 1 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 1731.0371 1 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 51339.78660000001 2 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 1405.5297 1 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 21492.5277 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 23455.4112 2 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 36012.513999999996 2 +A1Z840 Cdc2-related kinase 4.13 2 3 2 31566.102 1 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 10275.32 1 +Q9W3S4 LD46272p 3.11 1 1 1 3710.8682 1 +A8JQX3 Nocturnin 1.87 1 1 1 3811.6565 1 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 9797.367 1 +Q9VUL1 CTP synthase 1.59 1 1 0 15641.18 1 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 2512.9294 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 2455.1562 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 152077.73619999998 10 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.94 1 1 0 383.1301 1 +O76857 BCL7-like 13.64 2 2 2 25322.88 2 +Q7JY89 RE35124p 15.0 1 1 1 1961.3591 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 93668.18400000001 2 +A8JUP7 Serine protease Hayan 2.2 2 3 2 29411.745000000003 2 +P07664 Serendipity locus protein delta 4.16 2 2 2 23877.163999999997 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 72659.32800000001 2 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 5169.13026 2 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 1578.9025 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 481519.8824 4 +Q8IQU7 825-Oak 26.36 2 3 0 5924.6573 2 +Q9VGM4 LD28119p 6.76 2 2 2 3830.5317000000005 2 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 49491.9791 11 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 29099.139 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 7232.707 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 4764.0938 1 +Q962I2 small monomeric GTPase 59.39 10 28 1 161394.289 2 +Q9VSK1 GH09510p 2.72 2 2 2 1771.6984 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 170539.449 2 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 5456.7042 2 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 352368.27651999996 14 +Q29R09 LD28546p 5.79 2 2 2 4120.221 2 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1951.53307 2 +Q8SXC0 GH10306p 6.03 2 2 2 31540.5392 2 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 3.7 2 2 2 463.11563 1 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 1411.93066 2 +Q9W0A9 GM02612p 3.06 1 1 1 2768.9485 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 8691.717 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 229799.7045 4 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 20471.945 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 7268.2217 1 +Q9VV29 GEO12576p1 9.68 1 2 0 56986.49 2 +P45884 Attacin-A 5.36 1 2 0 61302.221000000005 2 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 631.0247 1 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 1459.1008 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 21325.05 1 +Q9VV27 MIP11526p 15.25 2 2 2 68436.082 2 +O76324 Discs overgrown protein kinase 2.27 1 1 0 1854.2383 1 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 12097.323 1 +Q9VFL9 FI07901p 6.08 2 2 2 4341.934429999999 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 20135.63 2 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 35991.2111 3 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 15395.424 1 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 43336.83 1 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 4711.651 1 +Q2PDU0 GEO11169p1 9.84 1 1 1 5766.453 1 +Q9VF46 GH25158p 7.34 2 3 2 113671.024 3 +Q9VSD8 IP10160p 6.67 2 2 2 9817.1893 2 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 21083.74 1 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 18829.023 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 46041.47 2 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 2405.5073 1 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 10128.555 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 431.1799 1 +A8JNU1 adenylate cyclase 1.02 1 1 0 7852.6987 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 19213.193 1 +Q7JW46 RE25483p 17.0 1 1 1 881.8515 1 +Q7K010 Tetraspanin 5.0 1 2 1 12593.5173 2 +Q9VUR4 FI11905p 11.6 4 9 1 10220.522 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 8217.7114 2 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 4471.757 1 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 4122.818 1 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 17941.28 2 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 39198.879100000006 3 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 783.64764 1 +A8JNV2 Uncharacterized protein 10.71 1 2 1 10337.2647 2 +Q9VRX7 LD29573p 1.32 1 1 1 3732.7058 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 44034.37 1 +O46099 EG:8D8.2 protein 0.78 1 1 1 2815.1685 1 +Q8SWU4 RE25571p 17.3 6 12 1 55651.85 1 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 17678.8355 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 57080.546 2 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2622.9202 1 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 22321.695 1 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 33047.316 1 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 663.23706 1 +Q8IRD6 Dro4 protein 33.8 2 2 2 32204.9675 2 +Q8SXW3 GV1, isoform B 4.44 1 2 0 36281.005000000005 2 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 21155.6075 2 +Q7JWE2 GH09427p 3.96 1 1 1 867.305 1 +Q8IRN0 FI06485p 10.84 2 2 2 16698.799 2 +Q9VHS6 Copper transport protein 5.75 1 1 1 532.8559 1 +D8FT19 MIP22288p 2.35 1 1 0 2531.8833 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 16023.011 2 +Q8ML92 Protein aveugle 7.55 1 1 1 32312.951 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 5061.618 1 +Q9VT15 GH14734p 2.78 1 2 1 32134.595 2 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 19373.0723 2 +A1A750 GEO11067p1 18.81 2 2 2 38158.3707 2 +Q9VF83 LD33178p 2.73 1 1 1 5354.8755 1 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 4108.2515 1 +Q9NHV9 Protein vav 3.66 3 3 0 6269.0137 1 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 6777.1533 1 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 866.6298 1 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 56911.275 3 +M9PCK0 Decima, isoform D 4.29 1 1 0 7808.9 1 +Q9VPA9 LD24894p 0.92 1 1 1 7888.6562 1 +Q9VSS4 IP05455p 10.32 1 1 1 21870.77 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 44716.829 2 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 13507.693 1 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 4796.2995 2 +Q7KV26 Kinase 2.6 1 1 1 2618.1638 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 4331.7407 1 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 5838.911 1 +Q02427 RNA-binding protein 1 29.86 4 5 1 177836.77 1 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 7054.5444 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 6478.3744 2 +Q9VDL4 LP04613p 2.72 1 2 1 5289.6821 2 +Q9VQ52 GH27779p 3.93 2 2 1 35147.4917 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 53118.146 2 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 6244.229899999999 2 +Q7K4X4 GH24095p 1.8 1 1 1 409.86536 1 +Q9VGE8 Tachykinins 6.57 2 4 0 34521.30507 4 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 41541.606 2 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 32403.748 2 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 18239.428 2 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 3410.9314 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 10433.315799999998 2 +Q7YU81 Protein charlatan 1.48 2 2 0 10495.672999999999 2 +Q9VHV3 FI02011p 3.75 2 2 2 15073.854000000001 2 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 3651.214 1 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 8091.0484 2 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 7550.8057 1 +Q9V3A6 Ero1-like protein 2.28 1 1 1 2547.4229 1 +Q9VIQ4 GH03980p 10.75 2 2 2 25201.174399999996 2 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 140326.91999999998 2 +Q7K8Y3 IP16419p 26.28 9 11 0 516754.18314 11 +Q8STG9 DSec61alpha 1.89 1 1 1 14401.997 1 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 31472.5395 3 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 8682.439 1 +P22812 Protein Tube 3.9 2 2 2 4694.0522 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 26340.924 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 29344.04 2 +Q7JV39 GH01142p 5.05 1 1 1 6120.193 1 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 15357.5395 2 +Q8T088 WD repeat-containing protein 55 homolog 2.41 1 1 1 823.08325 1 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 38293.234 1 +Q27367 Protein croquemort 4.48 2 2 2 18171.854 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 9454.581 1 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 1850.6919 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 1815.6664 1 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 9441.345000000001 2 +Q9W4F9 IP01388p 3.65 2 2 0 15609.411 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 2391.0312 1 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 3263.1191 1 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 4148.942 1 +F0JAQ9 MIP27169p 2.34 1 1 0 2776.5356 1 +P18289 Transcription factor Jra 3.81 1 1 0 3021.1277 1 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 25072.38 1 +Q9VJ77 FI24106p1 2.07 1 1 0 896.7435 1 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 25171.195 1 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 7016.8804 1 +Q9VR55 LD29159p 8.71 1 4 1 43561.7186 3 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 5839.2056 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 67280.9229 5 +P54194 General odorant-binding protein 84a 6.86 1 1 1 7395.705 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 4557.615 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 37694.605970000004 2 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 9777.114 1 +Q9VV26 GEO12049p1 6.84 1 2 1 197579.084 2 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 693.4232 1 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 2147.7073 1 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 6367.2886 1 +Q9VX14 RH64870p 8.82 2 2 1 7928.7312999999995 2 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 51638.584 2 +Q8MKL1 UPF0598 protein CG30010 7.78 1 1 0 346.94644 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 15888.053 2 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 13754.021 1 +A1ZAG3 Protein G12 2.9 1 1 1 73984.25 1 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 7916.5874 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 17817.0182 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 26382.497900000002 3 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 1772.823 1 +Q0E8W6 Small integral membrane protein 14 40.0 2 2 2 668.6714 1 +Q6IJE8 HDC15077 11.85 1 1 1 29364.768 1 +Q9VVI0 SD09427p 1.63 1 1 1 2440.3328 1 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 40404.4404 2 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 6409.0571 2 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 33031.87 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 58781.375 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 6459.3716 1 +Q9W494 Crossveinless 8.17 2 2 2 24154.123 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 42426.2244 3 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 5236.2315 2 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 31236.7295 2 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 15685.778 1 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 7527.9644 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 104212.76 1 +Q95NH6 Attacin-C 2.9 1 1 1 4981.1333 1 +Q8ST83 Polycomb protein PHO 2.31 1 2 1 395.68896 1 +Q86B83 LD12611p 5.44 2 2 2 6917.6795 2 +Q8MRQ1 GH06222p 3.62 2 2 0 10149.608 1 +Q4V6X9 IP01247p 3.24 1 1 1 2825.63 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 952.58136 1 +Q9VPR6 Kinase 2.59 1 1 1 5384.089 1 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 16951.377 1 +Q9V4B8 RE68558p 1.2 1 1 1 13435.102 1 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 6.02 1 1 1 685.9791 1 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 21717.146 1 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 3652.7208299999998 2 +Q8I0J1 RE43539p 2.51 1 1 0 16054.36 1 +Q9VC27 Nicastrin 1.29 1 1 0 10015.135 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 6330.8257 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 5161.1484 1 +E1JIS4 Uncharacterized protein 5.93 1 1 1 620.6173 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 1537.3247 1 +Q9W0I2 RE15268p 11.17 1 1 1 6154.3174 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 7209.1216 1 +Q961R9 GH09241p 1.8 1 1 1 18370.123 1 +Q9VCC7 FI03681p 1.71 1 1 1 373.95114 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 3768.8096 1 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 565.34705 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 17298.1688 2 +Q9VFR4 GH09754p 6.64 1 1 1 39995.227 1 +Q7K490 SD03973p 2.65 1 1 1 3942.814 1 +Q9VP69 ADP-ribose glycohydrolase OARD1 17.65 1 1 1 321.9961 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 46837.135500000004 2 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 6885.999 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 94547.378 3 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 12126.334 2 +Q6NN09 ATPase protein 9 5.07 1 6 1 2623450.303 6 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 4110.1196 1 +O76874 SD17974p 1.14 1 1 1 5270.429 1 +Q9VEB2 LD28404p 3.0 1 1 1 19434.066 1 +P41964 Drosomycin 17.14 1 1 0 3499.6072 1 +Q9VL21 LD11652p 6.22 1 1 1 11052.271 1 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 4459.0938 1 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 135366.97 2 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 1653.9402 1 +Q9VK20 LD18447p 1.79 1 1 1 10566.701 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 8332.071 1 +Q9VA48 Serpin 100A 2.77 2 2 2 12359.690999999999 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 3758.485 1 +Q9VBK9 Protein FAM98B 3.08 1 1 1 29854.053 1 +Q9VZC8 GEO12024p1 6.85 1 1 1 571.4988 1 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 15540.8484 2 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 14359.695 1 +Q0E985 RH74701p 15.0 1 1 1 2654.7156 1 +Q9VCC2 RE50040p 4.86 2 2 2 57626.840000000004 2 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 13103.814 1 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 5448.949 1 +Q7K172 CAAX prenyl protease 3.33 1 1 1 11672.477 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 36991.914 1 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 8379.656 1 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 41693.4726 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 15548.8955 1 +E1JHX0 MIP29328p 3.76 1 1 1 2226.8228 1 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 9828.443 1 +A0A126GV08 Uncharacterized protein, isoform G 5.3 2 2 0 568.66614 1 +F9VMG5 GEO02462p1 41.07 2 2 2 28475.548000000003 2 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 17688.164 2 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 12034.389 1 +Q9V9R3 adenylate cyclase 1.29 2 2 2 10235.436 2 +Q9VS39 FI19525p1 5.88 2 2 2 12653.2055 2 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 12793.039 1 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 7206.3613 1 +Q9VUE5 LD17962p 0.77 1 1 0 243381.78 1 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 2174.841 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 16226.521 2 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 14377.295699999999 2 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 590.01746 1 +M9PE65 Axotactin 0.69 1 1 1 2219.4192 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 3599.774 1 +Q8IRK0 GH04558p 5.41 2 2 2 110675.95934999999 2 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 6617.2056 1 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 21088.291 1 +Q5BI50 Cullin-4A 1.34 1 1 1 12606.215 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 617.4674 1 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 808.54865 1 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 583.52673 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 90187.836 1 +P07186 Chorion protein S19 14.45 1 1 1 1458.1711 1 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 8743.003 1 +Q9VJK9 GEO06505p1 9.52 1 1 1 719.16296 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 2234.6824 1 +Q9VL29 GEO11246p1 12.93 1 1 1 8093.2744 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 633.69666 1 +Q9W2F6 RE36793p 14.17 2 2 2 18172.7 2 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 6542.8013 1 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 39536.89 1 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 4992.1406 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 6704.1621 2 +Q7JR99 RE31204p 5.59 1 1 1 3532.432 1 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 2535.9841 1 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 98005.39199999999 6 +B7YZZ0 GH19557p 12.64 1 1 1 11551.17 1 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 9728.8904 2 +A1Z8D4 AT13868p 4.47 1 1 0 2050.989 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 91947.63 1 +A8DYV9 GEO02589p1 10.53 1 2 1 16031.4137 2 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 5015.6855 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 195325.66 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 3438.62 1 +Q7K1H9 GH07575p 3.69 1 1 1 2483.679 1 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 3492.4048 1 +O76513 Cyclin-H 3.7 1 1 1 7530.2837 1 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 1585.8115 1 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 8905.36 1 +Q9W0U6 Sulfatase-modifying factor enzyme-like domain-containing protein 4.46 1 1 1 446.33392 1 +Q9V449 Met75Ca 23.53 1 1 1 8533.441 1 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 2333.5342 1 +Q03445 Glutamate receptor 1 1.92 1 1 1 504.4758 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 2909.1753 1 +Q9W0B6 LD14179p 1.48 1 1 1 4156.063 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 5639.49 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 47426.37 1 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 5250.3833 1 +Q9VT01 FI06792p 3.5 1 1 1 1581.9633 1 +Q9VIM8 RE22905p 2.85 2 2 2 3959.4778 1 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 1293.0574 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 25386.4579 2 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 3501.1096 1 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 136301.8 1 +Q9VMM3 RE17389p 2.61 1 1 1 2040.2689 1 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 5244.1284 1 +Q9W551 GEO02601p1 8.49 1 1 1 1054.0087 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 8913.726 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 3663.083 1 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 2025.7795 1 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 2605.893 1 +Q9VB20 Distracted, isoform B 0.68 1 1 1 606.7596 1 +Q9VA94 GH07782p 2.82 1 1 1 433.8231 1 +Q9VX56 LD03052p 5.94 1 1 1 21383.66 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 11714.818 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 30727.532 2 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 2581.1675 1 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 3977.8655 1 +Q7JY99 glycerol kinase 1.34 1 1 1 1779.003 1 +Q9VP08 IP11255p 2.36 1 1 1 2101.0188 1 +Q8MYV9 GEO12865p1 11.04 1 2 1 56843.475 2 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 7542.3276 1 +Q9V6L9 F-box/SPRY domain-containing protein 1 4.31 1 1 1 980.50726 1 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 8465.555 1 +Q8IN94 Trithorax group protein osa 0.29 1 1 0 603.7156 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 25845.176 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 361363.14 2 +Q7JWV7 Tetraspanin 4.85 1 1 1 3084.2551 1 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 6884.8745 1 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 1676.0914 1 +Q8IRE5 RH23915p 21.54 1 1 1 434.97986 1 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 5637.1763 1 +Q9VBQ5 LD38433p 1.91 1 1 1 15966.259 1 +Q9VZR5 RE46159p 11.06 2 2 2 18662.7767 2 +Q9VPB7 FI17508p1 1.3 1 1 1 3506.1978 1 +P52485 Ubiquitin-conjugating enzyme E2-24 kDa 8.62 1 1 0 696.2576 1 +Q8T092 LD21421p 2.45 1 1 1 557.63196 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 6668.633 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 1946.4658 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 25576.197 1 +Q7K4G8 LD40944p 1.7 1 1 1 3367.8792 1 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 4735.0723 1 +Q9VHW4 FI21225p1 0.74 1 1 1 1008.055 1 +Q9VKE7 GH09228p1 10.39 1 1 1 613.8661 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 7463.596 1 +Q9VMI5 CG9135 protein 1.44 1 1 1 4592.4604 1 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 22186.46 1 +Q9VVJ6 Keren 4.61 1 1 1 5949.635 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 143283.403 3 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 2711.7236 1 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 147106.95 1 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 27090.088 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 7444.283 1 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 1508.5868 1 +E1JH07 LD18062p1 8.0 1 1 1 22010.018 1 +Q9VWG2 FI07430p 2.75 1 1 1 2092.5645 1 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 6865.4937 1 +Q9Y113 Negative elongation factor B 1.35 1 1 1 4885.79 1 +P36192 Defensin 8.7 1 1 1 3617.2236 1 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 8883.537 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 6369.2993 1 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 7924.2524 1 +Q9VAK8 Protein Diedel 8.7 1 1 1 420.94574 1 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 4798.6333 1 +A0A0B4KFX0 Uncharacterized protein, isoform A 21.54 1 1 1 725.05194 1 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 1687.9613 1 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 3540.7803 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 50608.832 1 +Q0E908 Hillarin 0.86 1 1 1 1970.4097 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 391201.023 2 +Q9VPH4 FI03293p 2.31 1 1 1 3502.0913 1 +Q5BIL9 SD21168p 1.63 1 1 0 30838.07 1 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 5264.4956 1 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 5459.78 1 +A1Z6H0 Kune-kune 2.65 1 1 1 18164.305 1 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 598.95795 1 +M9MS77 Uncharacterized protein 7.56 1 1 1 1131.2953 1 +Q9VHJ4 GH04846p 2.25 1 1 1 3368.5613 1 +Q9W226 GEO07239p1 5.88 1 1 1 4094.7004 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 7719.6646 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 4129.136 1 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 3692.3525 1 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 6288.756 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 21879.117 1 +Q9V412 STING ER exit protein 4.45 1 1 0 3599.211 1 +Q8MRQ2 GH05923p 2.74 1 1 0 4219.207 1 +Q9VE99 GEO12060p1 16.67 1 1 1 3432.5 1 +Q6XPX3 Phospholipase A2 4.3 1 2 1 17477.1086 2 +Q8SYR5 GEO07715p1 7.1 1 1 1 7531.6025 1 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 4265.082 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 5250.249 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 3577.488 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 1908.3618 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 14705.954 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 3940.4011 1 +Q7PL72 LD05675p 5.85 1 1 0 3637.7273 1 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 5085.3516 1 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 5301.4365 1 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 9198.988 1 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 4388.2324 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 13704.998 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 931.2449 1 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 3655.981 1 +Q2MGN0 FI01014p 2.5 1 1 0 2219.5178 1 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 4173.31954 2 +A1A6X2 IP16893p 12.07 1 1 1 16838.709 1 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 8423.32 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 985.0193 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 34895.2027 2 +Q7JXE1 Bunker gear 4.75 1 1 1 534.9071 1 +Q9VKZ9 FI06463p 5.39 1 1 1 20756.066 1 +Q7K105 LD20892p 1.3 1 1 1 11255.665 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 15110.807 1 +Q9W081 AT01075p 2.34 1 1 1 2309.715 1 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 14494.3 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 16921.447 1 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 6078.359 1 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 760.791 1 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 5937.7524 1 +Q9W009 GH12037p 3.17 1 1 1 5086.7705 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 51474.816 1 +Q0E906 GEO11031p1 11.69 1 1 1 12183.382 1 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 1730.7996 1 +Q9VBT7 GH13495p 1.9 1 1 1 4404.0977 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 55386.94 1 +Q9Y1A7 LD25378p 2.0 1 1 1 8689.146 1 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 1516.506 1 +Q7JR91 GH12715p 3.19 1 1 0 8462.482 1 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 708.9495 1 +B7YZH7 GM12693p 21.43 1 1 0 608.4571 1 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 381.59702 1 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 4676.4507 1 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 2183.8174 1 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 154134.48 1 +Q9VUB4 GATOR complex protein NPRL3 1.97 1 1 0 615.12494 1 +Q9VJU2 Nimrod C3 3.12 1 1 1 7831.7163 1 +Q9W3Q2 SD08447p 1.26 1 1 1 13769.117 1 +A1Z979 Salivary secreted peptide 6.25 1 1 0 13894.409 1 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 3474.862 1 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 153430.07675 13 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 137491.079 3 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 38760.62936 6 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 37236.1848 5 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 66813.8636 2 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F1_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F1_TMTa.txt new file mode 100644 index 0000000..80b8729 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F1_TMTa.txt @@ -0,0 +1,4013 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 126, Sample, n/a, SFug_F1 Abundances Count: F5: 126, Sample, n/a, SFug_F1 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 17570.5566 4 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 39517.1337 9 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 1613913.11417 62 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 33965.5651 5 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 37513.716 12 +A0A1F4 Protein eyes shut 9.56 22 68 0 491062.33525 56 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 14889.7712 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 125721.0297 17 +A1Z713 Intermembrane lipid transfer protein Vps13 0.27 1 1 1 557.9401 1 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 1485.283 1 +A1Z7T0 Serine/threonine-protein kinase N 1.34 2 3 0 2180.936 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 4573.13032 3 +A1Z877 Nidogen 24.81 29 66 29 567820.30754 61 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 7702.3737 2 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 562.53723 1 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 166644.10181 56 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 73577.03988 10 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 69611.1817 5 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 145994.6646 35 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 10921.544 2 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 92207.39222 29 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 49853.417499999996 3 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 9493.03663 5 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 14572.97276 5 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 6325.2758300000005 2 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 15319.5404 2 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 5764.48753 2 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 149850.8316 6 +A8DYP0 Protein Obscurin 2.11 10 12 10 30910.4667 6 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 224934.70832 9 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 1557941.3334000001 86 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 226382.7022 17 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 442888.12997 49 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 485091.89567 31 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 69503.4567 4 +C0HL66 Histone H3.3A 52.94 8 63 0 44129.74654 5 +C0HLZ9 Baramicin A1 15.56 4 9 0 32389.8329 7 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 443059.97424 30 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 2866.7996599999997 2 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 73827.78547 12 +M9NDE3 Protein bark beetle 3.91 13 19 13 51655.752739999996 11 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 3708161.27815 99 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 115713.55329 6 +O01367 Protein held out wings 21.48 8 10 0 34161.60171 9 +O01382 Caspase drICE 17.99 5 7 4 5323.04494 4 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 294849.2005 8 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 4190451.14504 106 +O02194 Presenilin homolog 5.73 3 5 0 4909.84672 4 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 297603.0327 20 +O02649 Heat shock protein 60A 73.47 40 183 25 5350851.731 148 +O15943 Neural-cadherin 14.89 49 91 2 531688.98238 74 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 65603.10503 12 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 53520.631720000005 4 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 23430.3086 5 +O18333 Ras-related protein Rab-2 18.31 5 10 5 56802.01726 9 +O18334 Ras-related protein Rab6 18.75 5 16 0 11512.64078 5 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 453424.62922 27 +O18388 Importin subunit beta 3.73 4 6 0 6552.1603 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 4491621.02989 104 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 319493.60986 31 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 57848.77681 10 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 32131.0417 3 +O44342 Protein windbeutel 19.46 5 10 0 33552.186799999996 8 +O44386 Integrin alpha-PS3 11.84 14 20 12 80858.08836000001 17 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 558.48676 1 +O46037 Vinculin 53.69 50 137 0 1971959.62816 113 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 41738.5583 4 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 79903.58554 7 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 92446.2683 7 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 266960.05045 20 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 4466.63973 3 +O61307 Teneurin-m 0.66 2 2 0 2980.7810999999997 2 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 22225.3834 4 +O61491 Flotillin-1 48.83 23 81 23 1295897.48389 72 +O61722 PRL-1 phosphatase 44.32 7 23 7 359033.82695 14 +O62619 Pyruvate kinase 69.23 27 80 27 2952276.60472 62 +O62621 Coatomer subunit beta' 3.17 3 4 3 8770.18195 4 +O76206 Putative riboflavin kinase 49.02 7 15 0 341126.5688 11 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 194840.465 6 +O76742 Ras-related protein Rab7 28.5 6 12 6 106179.67576 11 +O76878 RILP-like protein homolog 9.71 5 10 0 58752.643899999995 9 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 103981.18113 14 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 197900.54708 13 +O77051 Transcription factor E2F2 22.97 9 14 0 18242.88232 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 20703.21475 5 +O77277 Torsin-like protein 12.65 5 8 0 50806.91887 7 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 6047.0789 2 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 30094.52 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 89511.02679999999 22 +O96690 Protein PDF 23.53 1 1 1 1104.3552 1 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 2437845.04832 60 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 29905.48604 6 +O97125 Heat shock protein 68 24.09 13 89 6 180410.8739 20 +O97172 UPF0729 protein CG18508 29.29 3 8 0 31911.37033 7 +O97394 Protein sidekick 1.89 4 5 0 2865.20106 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 15697.09887 5 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 1002178.8981700001 45 +P00334 Alcohol dehydrogenase 88.28 21 200 21 27662884.19215 145 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 1924574.6895 34 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 4136.9905 3 +P02255 Histone H1 14.45 3 6 0 36303.4477 5 +P02283 Histone H2B 56.91 8 70 8 1474115.71645 52 +P02299 Histone H3 52.94 8 67 2 1728863.8834900002 54 +P02515 Heat shock protein 22 40.8 8 18 8 321746.185 15 +P02516 Heat shock protein 23 84.41 16 83 0 3842029.03192 70 +P02517 Heat shock protein 26 57.69 10 30 0 1276592.0185800001 22 +P02518 Heat shock protein 27 44.13 9 21 0 463192.07546 21 +P02572 Actin-42A 64.1 25 768 2 43002316.09269 575 +P02574 Actin, larval muscle 65.96 25 672 0 549721.2816 21 +P02828 Heat shock protein 83 48.4 33 148 0 3955779.3092900002 137 +P02843 Vitellogenin-1 70.84 32 265 0 9977840.78194 181 +P02844 Vitellogenin-2 59.28 26 187 0 6771723.92185 121 +P04197 Myb protein 3.81 3 3 0 1213.37171 2 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 238905.0709 13 +P04388 Ras-like protein 2 13.02 2 10 2 38433.05667 9 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 13489.19081 5 +P05205 Heterochromatin protein 1 36.89 8 22 8 187327.14776 19 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 2031958.7453 31 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 726648.2702 16 +P05552 Transcription factor Adf-1 7.63 2 5 0 35927.43505 5 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 30502.92682 9 +P05812 Heat shock protein 67B1 12.13 5 7 5 13361.5886 5 +P06002 Opsin Rh1 4.56 2 8 2 46958.5306 6 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 18943924.14991 136 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 8795.588 1 +P06607 Vitellogenin-3 82.14 33 299 0 10485735.44191 239 +P06742 Myosin light chain alkali 56.77 11 71 0 7409728.33098 42 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 4212.8145 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 2152887.6294 40 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 10527059.93634 128 +P07665 Serendipity locus protein beta 8.43 4 5 0 1356.1625 2 +P07668 Choline O-acetyltransferase 7.63 5 6 5 8603.3176 3 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 20404330.82141 322 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 18454.8792 6 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 221116.66548 22 +P08144 Alpha-amylase A 18.22 8 15 0 219745.8049 12 +P08171 Esterase-6 13.24 9 22 0 176092.38714 21 +P08182 Casein kinase II subunit beta 38.72 8 38 2 528672.12289 30 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 1422367.36025 28 +P08645 Ras-related protein Rap1 25.54 5 15 0 154494.4864 14 +P08646 Ras-like protein 1 30.69 4 10 4 89460.6359 9 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 12489663.78903 164 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 83045.03037000001 13 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 4699938.33152 107 +P08928 Lamin 67.36 50 193 49 3902739.3397 160 +P08985 Histone H2A.v 42.55 10 47 8 855144.8987400001 29 +P09040 Drosulfakinins 21.99 3 3 3 27213.6509 3 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 781338.51271 47 +P09208 Insulin-like receptor 3.03 8 10 8 6013.12878 5 +P09491 Tropomyosin-2 76.76 34 245 2 63468.824949999995 6 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 106513.87626 12 +P10180 Homeobox protein cut 0.46 1 3 0 62709.222799999996 3 +P10379 Protein unzipped 20.29 8 28 0 384953.59126 26 +P10552 FMRFamide-related peptides 2.31 1 3 1 32489.842000000004 2 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 281512.29074 59 +P10981 Actin-87E 76.33 30 777 0 889869.14129 32 +P10987 Actin-5C 64.63 27 797 0 580234.15635 27 +P11046 Laminin subunit beta-1 21.09 39 84 39 958075.7400400001 67 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 29201.88 1 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 19876308.78744 332 +P11584 Integrin beta-PS 18.32 17 45 0 241157.92427 33 +P12024 Chaoptin 30.95 35 88 0 1753333.59115 71 +P12080 Integrin alpha-PS2 11.53 17 39 17 217430.01402 32 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 940132.59532 38 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 10257.4063 2 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 426691.33214 33 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 440336.02804 41 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 150336.515 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 153328.15234 8 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 693687.67603 69 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 1731675.64078 84 +P13395 Spectrin alpha chain 65.3 140 542 0 11420696.33481 450 +P13469 DNA-binding protein modulo 4.06 2 2 0 7393.4836000000005 2 +P13496 Dynactin subunit 1 14.23 21 45 21 140677.25472 34 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 5072078.72146 125 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 45514.94837 12 +P13678 Protein kinase C 5.01 4 4 0 5525.0727 2 +P14199 Protein ref(2)P 13.19 7 32 7 217073.961 29 +P14318 Muscle-specific protein 20 80.43 16 103 16 2125783.33087 71 +P14484 Pupal cuticle protein 27.17 5 39 5 387979.38842 29 +P14599 Amyloid-beta-like protein 1.92 2 2 0 1323.0451 2 +P15007 Enolase 78.0 40 271 1 27295773.72284 226 +P15215 Laminin subunit gamma-1 33.62 53 135 0 1589516.43255 116 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 1620.0361 2 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 1843486.67627 78 +P15364 Protein amalgam 15.92 5 11 0 41769.1443 10 +P15372 Phosrestin-2 67.58 19 65 0 1504124.47231 59 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 133116.18794 7 +P16378 G protein alpha o subunit 29.1 11 46 7 714808.7985200001 41 +P16554 Protein numb 15.47 8 12 0 61038.4626 10 +P16568 Protein bicaudal D 23.4 19 27 0 152227.91018 24 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 43621.61518 11 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 2134.98058 3 +P16914 Protein elav 30.23 13 43 0 517021.49932 35 +P17210 Kinesin heavy chain 34.56 34 100 34 713391.46611 82 +P17276 Protein henna 44.69 15 32 0 704547.62655 28 +P17336 Catalase 41.11 16 61 16 1243569.34674 42 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 663967.52925 29 +P17719 Dihydrofolate reductase 4.4 1 2 1 8321.8084 2 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 1051487.37356 41 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 7856.5532 3 +P18431 Protein kinase shaggy 29.77 14 58 0 1210918.75938 49 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 5930363.97905 151 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 99751.7827 10 +P18824 Armadillo segment polarity protein 14.47 12 25 0 133779.77453999998 16 +P19107 Phosrestin-1 77.56 33 263 33 9885549.42035 233 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 131070.01445 27 +P19334 Transient receptor potential protein 4.39 6 9 4 42827.32015 8 +P19339 Protein sex-lethal 4.52 2 4 0 2449.61057 3 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 76610.42053 8 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 3773063.41442 37 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 15468.404700000001 3 +P20153 Protein ultraspiracle 5.91 4 7 0 19040.05845 6 +P20228 Glutamate decarboxylase 27.84 12 34 0 237784.54702 26 +P20232 Transcription elongation factor S-II 42.81 13 19 0 66480.80802 9 +P20240 Otefin 29.95 11 22 11 98387.78641999999 17 +P20241 Neuroglian 21.89 29 84 0 886788.66782 77 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 102185.6866 5 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 5501.16387 4 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 27964.750999999997 3 +P20432 Glutathione S-transferase D1 52.15 12 101 9 9258614.67841 87 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 3152794.4132600003 58 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 12483804.42245 196 +P21187 Polyadenylate-binding protein 26.81 14 44 14 153856.48498 37 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 4940921.28796 91 +P22465 Annexin B10 65.42 20 129 20 2904719.83468 105 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 554247.82448 31 +P22813 Heat shock factor protein 7.09 5 6 0 17024.6661 5 +P22815 Protein bride of sevenless 1.34 1 1 1 2777.6204 1 +P22979 Heat shock protein 67B3 54.27 8 22 8 542005.87106 17 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 39259.6094 7 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 339131.68393 49 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 18211.726199999997 3 +P23625 G protein alpha q subunit 54.67 20 124 18 4061727.24644 102 +P23654 Neurotactin 8.87 7 17 0 66004.72209 14 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 110722.71471999999 9 +P23779 Cystatin-like protein 63.49 8 26 8 1032214.21285 21 +P24156 Prohibitin 1 73.91 17 62 0 1514074.6506700001 51 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 10430073.36896 99 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 6935.6900000000005 2 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 446125.24101 37 +P25171 Regulator of chromosome condensation 10.42 5 9 5 40240.75234000001 9 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 2188.332 1 +P25228 Ras-related protein Rab-3 30.45 6 18 0 101605.4729 5 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 36068.75997 11 +P25822 Maternal protein pumilio 3.39 5 8 0 24391.84926 6 +P25843 Profilin 88.89 7 27 0 820181.12966 23 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 210348.7714 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 77341.7472 9 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 644182.6179 27 +P26686 Serine-arginine protein 55 18.35 8 14 0 78988.22469999999 11 +P27716 Innexin inx1 11.33 5 7 0 42910.6223 6 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 138870.13552 19 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 25278.32964 5 +P29052 Transcription initiation factor IIB 13.65 5 13 0 45492.2249 8 +P29310 14-3-3 protein zeta 69.35 18 328 0 10715924.09631 265 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 525284.90369 20 +P29413 Calreticulin 57.64 21 79 0 2495003.16774 70 +P29613 Triosephosphate isomerase 77.73 17 135 16 7410185.99141 108 +P29742 Clathrin heavy chain 8.76 16 22 0 29258.22806 10 +P29746 Protein bangles and beads 59.28 23 66 23 1159765.3253 59 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 1673279.91733 65 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 9030.7209 5 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 5303986.53291 128 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 4620735.90186 163 +P30432 Furin-like protease 2 2.44 4 6 0 4177.326349999999 4 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 871068.2791599999 39 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 1773133.1432700001 74 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 809439.6405 29 +P32234 Guanylate binding protein 128up 11.14 4 4 3 49666.785 3 +P32392 Actin-related protein 3 16.99 7 15 7 107889.3372 11 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 36976.13366 13 +P33438 Glutactin 23.98 23 64 0 327354.69239 46 +P34082 Fasciclin-2 23.02 17 30 0 152150.93723 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 609064.5334 21 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 489907.3777 17 +P35220 Catenin alpha 24.1 22 60 12 293441.97628 50 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 39037944.78874 393 +P35415 Paramyosin, long form 75.2 85 589 0 17914168.04347 425 +P35416 Paramyosin, short form 62.19 47 347 0 1441476.19547 46 +P35554 Flightin 46.7 7 14 0 105647.2559 5 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 30400.96603 10 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 1880633.42386 56 +P36188 Troponin I 46.1 16 73 0 2635239.07104 66 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 503260.57965 13 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 944.30357 2 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 768570.9787 24 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 563.09174 1 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 2919679.44662 101 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 149375.8926 6 +P37236 Frequenin-1 56.15 9 52 0 153718.24577 9 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 2980.034 2 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 206143.44063 15 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 2096523.0942 45 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 2130857.7563 55 +P39736 Puff-specific protein Bx42 12.61 6 12 0 13057.4457 7 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 231484.6733 4 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 264350.55736 15 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 67583.6519 4 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 377270.77265 23 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 36609.7673 8 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 288901.36519 23 +P40427 Homeobox protein extradenticle 3.72 1 4 0 4115.25505 2 +P40792 Ras-related protein Rac1 22.4 4 22 0 95721.67808 18 +P40793 Cdc42 homolog 27.75 5 16 0 176844.23565 10 +P40796 La protein homolog 30.26 11 26 10 200554.15415 18 +P40797 Protein peanut 12.62 7 32 6 176033.4614 26 +P40945 ADP ribosylation factor 4 30.0 4 17 0 3010.53 1 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 742789.64277 33 +P41043 Glutathione S-transferase S1 75.9 13 61 0 4448589.6416299995 46 +P41044 Calbindin-32 75.48 25 116 0 3866249.90029 86 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 140236.10965 22 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 356641.16701 15 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 426693.62064 19 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 1462598.0516 53 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 1340121.67653 40 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 563631.56979 35 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 94791.3997 10 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 357372.32365 25 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 11337.714899999999 2 +P42207 Septin-1 12.74 5 19 4 25874.40525 5 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 2321829.6697 26 +P42325 Neurocalcin homolog 66.32 14 25 14 783325.436 21 +P42787 Carboxypeptidase D 5.26 8 12 0 71302.1311 10 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 88254.84300000001 10 +P45437 Coatomer subunit beta 7.57 5 10 5 65076.9548 10 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 4831265.380349999 88 +P45888 Actin-related protein 2 12.53 5 9 5 38979.3346 5 +P45889 Actin-related protein 1 24.47 13 20 13 449504.41586 15 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 55315.97 1 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 315693.846 16 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 829522.4625799999 25 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 128669.9605 10 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 728270.98681 69 +P46824 Kinesin light chain 41.34 24 66 0 676783.8934 51 +P47947 Troponin C, isoform 1 20.78 3 33 0 1303928.35619 31 +P47949 Troponin C, isoform 3 51.61 7 20 0 814917.6659 18 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 744842.7881 29 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 563154.98952 17 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 433997.28225 21 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 1973797.53513 23 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 114585.0787 4 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 911.5895600000001 2 +P48554 Ras-related protein Rac2 26.56 5 20 0 15555.766 4 +P48555 Ras-related protein Ral-a 43.28 8 20 1 300484.58631 17 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 47597.32592 5 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1286516.63337 55 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 147559.68225 17 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 853882.82178 49 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 1786336.60879 93 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 73462.18057 14 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 480827.92839 43 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 652506.53321 54 +P48607 Protein spaetzle 4.29 1 2 0 2579.794 1 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 29622.8075 5 +P48610 Arginine kinase 1 75.28 38 429 0 24197292.14121 353 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 394430.35488 19 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 477964.45199 46 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 42629.03053 12 +P49028 Protein mago nashi 46.26 6 12 6 198630.7606 8 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 87203.58042 10 +P49455 Tropomyosin-1, isoforms 33/34 42.08 34 310 1 327.2953 1 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 280121.39959 8 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 4539.0678 2 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 20895.355900000002 6 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 346.44647 1 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 7194.149600000001 2 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 8013.0758 3 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 903030.91174 28 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 145584.98576 17 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 11633.3822 5 +P51406 Bystin 5.96 3 4 3 478.26135 1 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 105979.5091 9 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 26201.144800000002 8 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 308781.0808 26 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 16737.35177 6 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 2269.3267 1 +P53034 Replication factor C subunit 2 16.31 6 9 6 22495.90951 8 +P53501 Actin-57B 77.13 31 817 3 7671869.27319 96 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 6319.4259 3 +P53777 Muscle LIM protein 1 56.52 5 52 0 370000.64536 32 +P53997 Protein SET 11.52 3 3 3 30368.5544 3 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 118081.5061 6 +P54191 General odorant-binding protein 69a 13.51 2 10 2 66913.03204 10 +P54192 General odorant-binding protein 19d 71.33 11 165 11 11296845.98236 149 +P54193 General odorant-binding protein 83a 42.86 7 24 0 620061.51404 23 +P54195 General odorant-binding protein 28a 26.57 4 24 4 228801.98007 19 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 5884.06564 3 +P54352 Ethanolamine kinase 15.25 7 8 5 44976.93608 7 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 232688.97387 12 +P54357 Myosin-2 essential light chain 89.12 10 58 1 922362.44024 46 +P54359 Septin-2 8.83 4 13 1 43486.9004 11 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 2193.555 1 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 1946226.92658 83 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 6422.77956 2 +P54399 Protein disulfide-isomerase 67.14 31 156 0 6834342.62067 136 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 7648962.00278 153 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 106913.5399 9 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 122323.47944 20 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 295892.9693 10 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 2124275.5990999998 76 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 917879.23915 28 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 1080497.02781 55 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 15514.23108 4 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 82900.54305000001 10 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 651340.0612 11 +P61849 Dromyosuppressin 28.0 2 2 0 85518.039 2 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 5964766.98909 117 +P61855 Adipokinetic hormone 24.05 1 3 1 13220.1715 2 +P61857 Tubulin beta-2 chain 42.38 15 197 1 2797174.844 3 +P62152 Calmodulin 98.66 18 386 0 17368129.15244 291 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 853739.03911 26 +P81829 Leucokinin 11.88 2 3 2 3321.81085 3 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 2089919.9086 59 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 1017425.91308 40 +P82295 Prominin-like protein 2.47 2 2 0 498.61026 1 +P82804 Partner of Y14 and mago 7.73 1 2 1 377.86905 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 596934.66652 18 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 36874.6806 11 +P83967 Actin, indirect flight muscle 68.88 28 754 2 103055.158 2 +P84029 Cytochrome c-2 72.22 13 152 0 10647712.29558 130 +P84040 Histone H4 57.28 7 79 0 3177970.899 71 +P84051 Histone H2A 37.1 7 32 0 1086702.9113 11 +P84345 ATP synthase protein 8 18.87 1 1 1 56223.18 1 +P91664 Protein max 14.29 3 4 0 6737.49486 3 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 5544.5104 3 +P91891 Protein Mo25 24.78 10 27 0 386303.08457 26 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 104560.2713 16 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 249106.98127000002 32 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 2803951.41513 119 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 1746583.99741 45 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 869531.37435 35 +P92029 DnaJ-like protein 60 3.69 1 2 0 1106.3653 2 +P92177 14-3-3 protein epsilon 77.86 25 246 23 7915430.55037 153 +P92204 Negative elongation factor E 9.64 3 7 3 12049.66332 5 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 7140.76686 2 +P98081 Protein disabled 4.99 10 17 0 19189.70668 11 +Q00174 Laminin subunit alpha 17.05 68 162 68 2292367.59015 135 +Q00963 Spectrin beta chain 23.88 59 161 1 2584.9660999999996 2 +Q01603 Peroxidase 7.68 5 10 0 66584.25630000001 9 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 8831904.09333 184 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 35403.01724 7 +Q01819 Connectin 3.52 3 4 0 33676.0577 3 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 56077.411700000004 2 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 265821.00787000003 27 +Q02910 Calphotin 3.94 3 9 3 89872.51594 8 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 30668.739350000003 9 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 389.80072 1 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 344233.88045 26 +Q03427 Lamin-C 55.88 41 164 3 1848535.57069 117 +Q04047 Protein no-on-transient A 21.86 12 30 0 67264.75147 13 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 108172.14194 20 +Q04691 Fat-body protein 1 28.38 28 55 0 130255.10602 34 +Q05783 High mobility group protein D 24.11 3 11 0 38704.0591 7 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 22526661.33558 456 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 20140.139 1 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 3075335.32458 90 +Q06943 High mobility group protein Z 31.53 4 12 0 64068.6927 7 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 13917.33331 7 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 501500.8383 17 +Q07171 Gelsolin 24.44 18 56 0 529318.38426 42 +Q07327 Protein ROP 24.79 15 61 0 309660.3011 46 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 378046.3004 18 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 9769.3292 5 +Q08473 RNA-binding protein squid 38.08 8 17 0 509940.38397 15 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 16388.823669999998 5 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 13440.537090000002 4 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 49189.90776 7 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 23365.4498 6 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 158670.9336 20 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 1461.5798399999999 2 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 8269.9672 4 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 188150.29116 19 +Q11002 Calpain-A 3.38 3 4 0 10883.7711 3 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 1440436.4582 57 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 2401887.8681199998 70 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 2136323.13643 79 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 3454245.33343 112 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 1225708.9892 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 3797291.63935 96 +Q24050 Elongator complex protein 5 26.34 6 9 6 29875.528550000003 9 +Q24114 Division abnormally delayed protein 9.11 6 13 0 181734.73888 12 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 188265.71469 12 +Q24134 Negative elongation factor D 2.42 2 2 0 21863.799 1 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 27448.203 1 +Q24185 Protein hook 24.45 18 32 18 239832.99128000002 26 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 625925.91764 29 +Q24207 Protein boule 21.93 4 8 0 32460.849029999998 5 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 128214.39905 20 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 15565.0474 5 +Q24211 Protein stoned-A 45.41 30 66 0 898504.00639 56 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 542761.85684 27 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 42028.33632 8 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 20337.89799 8 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 7494522.84318 140 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 183658.06636 26 +Q24292 Protein dachsous 1.48 5 5 0 3355.7097599999997 4 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 145004.11000000002 2 +Q24298 DE-cadherin 12.94 19 36 19 199750.01052 30 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 37004.9851 5 +Q24318 Transcription factor Dp 18.2 7 10 1 12793.546690000001 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 11291.4232 3 +Q24322 Semaphorin-1A 5.78 5 6 0 782.3976 1 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 41837.43263 8 +Q24372 Lachesin 10.03 5 9 5 30855.306 6 +Q24388 Larval serum protein 2 9.56 7 10 0 22452.64704 7 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 1315451.93529 84 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 2634964.22884 36 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 8044485.6749599995 164 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 108981.93743 31 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 74775.43024 12 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 27246.40417 7 +Q24509 Syntaxin-5 8.14 4 5 0 11609.5708 2 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 73910.49999 15 +Q24524 Protein singed 5.66 3 5 0 3103.9949 1 +Q24537 High mobility group protein DSP1 12.21 5 19 0 116453.16380000001 15 +Q24547 Syntaxin-1A 39.18 13 60 0 1342789.26806 54 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 11584824.85782 248 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 34111.2228 7 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 76845.62999 13 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 849139.5359199999 41 +Q26377 Pro-corazonin 20.13 3 12 3 31316.5378 5 +Q26416 Adult cuticle protein 1 20.0 1 2 1 80023.055 1 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 40875.754649999995 12 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 259931.39484 11 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 29650.74915 6 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 931212.51186 45 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 519474.35711 22 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 1122642.54882 36 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 183104.36190000002 8 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 120900.89706 21 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 2525.8636 2 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 51738.1577 9 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 85106.00036 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 11600.6431 4 +Q3KN41 Neurexin 1 4.46 8 11 0 20958.0357 6 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 10763.47243 5 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 48756.47 2 +Q4V645 Trissin 13.89 2 4 2 13242.5007 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 12480.570199999998 3 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 36646.5009 4 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 14630.3264 6 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 235535.89214 13 +Q6NN40 Alpha N-terminal protein methyltransferase 1 7.61 2 2 0 421.73114 1 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 10047.20636 4 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 6329.31055 4 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 101694.8977 6 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 13637.538700000001 3 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 222439.63059999997 9 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 384199.73398 14 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 26711.01762 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 95928.58785 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 667098.3547 29 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 3297.8054 1 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 28665.20781 9 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 29227.14952 7 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 113510.9411 11 +Q7JXF7 Protein seele 23.28 4 11 4 155175.6943 10 +Q7JYV2 Synaptogyrin 7.88 1 1 1 76635.63 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.98 1 1 0 640.9349 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 11860.943220000001 4 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 117699.32174 22 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 177611.8102 4 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 4421.6296999999995 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 34197.58523 7 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 36140.1775 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 441.8805 1 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 610682.54856 41 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 17305.0512 2 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 71950.12913 10 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 81470.89358 21 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 14400.599339999999 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 208992.5226 21 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 56400.2925 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 4340927.0322 63 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 56761.64538 11 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 266946.44529 19 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 519378.12304000003 38 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 8561.396 3 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 621608.17787 44 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 40766.72998 7 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 107770.71466 10 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 52898.82053 13 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 95065.06360000001 9 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 8105332.90207 53 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 1773.0125600000001 2 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 134070.36235 15 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 155890.77401 22 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 12752.06637 5 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 36807.80163 8 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 1912867.97672 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 3716.7987 2 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 48981.45157 7 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 86484.02908000001 17 +Q868Z9 Papilin 20.36 51 134 51 583676.67808 84 +Q86B79 RING finger protein unkempt 1.34 1 2 0 379.37628 1 +Q86B87 Modifier of mdg4 7.54 5 9 0 71816.34665 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 29801.552 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 14629.76552 3 +Q86NP2 Negative elongation factor A 8.87 10 18 0 72992.48222 14 +Q86P48 AT-rich binding protein 8.76 3 6 3 1793.7932 2 +Q86S05 Protein lingerer 2.69 3 7 0 9121.65138 3 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 32685.7967 10 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 383538.3101 27 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 35211.6495 13 +Q8IN41 Protein Turandot X 16.2 2 4 2 9136.4696 3 +Q8IN43 Protein Turandot C 48.84 5 12 5 86716.35407999999 7 +Q8IN44 Protein Turandot A 52.71 7 33 7 444194.13807 26 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 130347.99583 16 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 10676.1117 3 +Q8IPM8 Complexin 65.49 10 81 0 29531.533 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 37206.48235 12 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 3580.14653 3 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 14588.7603 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 75213.888 4 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 202387.79007 15 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 51344.9985 6 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 422690.1971 21 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 27371.892099999997 4 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 16195.1076 4 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 12438.422 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 966.9404999999999 2 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 125010.4136 12 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 1122164.44104 33 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 150840.4436 17 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 1712.0343 1 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 21812.49387 7 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 1515.4237 3 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 49449.48857 4 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 134742.90720000002 12 +Q8MSS1 Protein lava lamp 23.79 65 113 0 255564.13117 83 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 8945.127700000001 3 +Q8MSV2 Protein alan shepard 8.98 7 17 7 155478.83101 13 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 706.289 1 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 3268.86424 2 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 30993.82371 9 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 628043.33186 24 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 53918.9783 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 209010.0119 15 +Q8SY33 Protein Gawky 8.6 11 32 11 81705.52833 25 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 3094424.31208 61 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 445720.40606999997 14 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 10236.13783 3 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 9440.477 1 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 1518.6599299999998 2 +Q8SZ63 Golgin-84 10.27 6 8 6 14911.9051 4 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 214697.761 10 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 7070.9035 3 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 402680.90756 32 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 449366.70859 40 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 2590.7954 1 +Q8T390 Endophilin-A 53.66 19 86 0 2783797.9714 75 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 94491.28779999999 8 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 554535.2284 13 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 153692.451 11 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 72001.92194 15 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 2221.83116 5 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 288337.97809 27 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 13681.0802 3 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 3107177.09355 109 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 5327316.11082 80 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 5741388.21806 129 +Q94517 Histone deacetylase HDAC1 4.61 1 1 1 647.95044 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 747039.41914 20 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 529969.33933 25 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 6702317.37966 75 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 1054599.48523 37 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 24543.8914 3 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 597253.1697199999 28 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 11282.85682 6 +Q94547 Regulator of gene activity 11.97 7 14 0 30639.7746 8 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 37705.746530000004 5 +Q94901 RNA-binding protein lark 48.01 19 52 19 173296.11343 33 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 14728.98337 4 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 27523.256120000002 8 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 22093780.39406 339 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 893.9551 1 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 83208.6793 6 +Q95029 Cathepsin L1 35.58 15 83 2 1535954.41218 66 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 519292.58389 21 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 47793.1324 2 +Q95RA9 GILT-like protein 1 30.8 7 22 7 923325.3629 17 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 5359.34812 4 +Q95RI5 Failed axon connections 59.09 26 146 0 4129655.69932 131 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 4952.298 1 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 61071.7244 7 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 61796.417199999996 15 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 10269.80375 6 +Q95T12 Calcium channel flower 21.13 4 8 4 21845.48615 5 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 19245.7235 5 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 11487.0314 4 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 36033.32478 12 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 22850.6118 4 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 171734.46914 18 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 48403.92607 11 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 36691.69861 7 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 3158.8507 3 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 1630.1783 1 +Q967D7 Protein turtle 4.18 7 14 0 47892.86892 10 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 117176.9341 22 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 19040.38218 9 +Q9GQQ0 Protein spinster 1.98 1 7 1 20927.41573 6 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 2009052.07143 66 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 1250.31378 2 +Q9I7D3 Caprin homolog 9.37 8 18 0 24809.48057 9 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 40649.53263 5 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 23629.843999999997 2 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 14428.7393 3 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 9089.6393 3 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 306207.74854 33 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 14259.34821 6 +Q9I7U4 Titin 2.4 43 56 0 120831.48475999999 42 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 19167.8933 4 +Q9NB04 Patj homolog 25.6 17 47 0 375715.07585 40 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 8279.94461 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 14387.1758 5 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 4029.427 1 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 34147.7522 7 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 17087.20899 5 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 45046.870800000004 10 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 8555.5032 2 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 8672.0837 2 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 1649662.87694 62 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 16748.89445 3 +Q9TVM2 Exportin-1 1.88 2 2 0 9868.655 1 +Q9TVP3 J domain-containing protein 59.49 14 117 14 3459993.73488 99 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 163005.99183 14 +Q9U4G1 Protein borderless 16.97 10 26 10 321679.55899 22 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 85554.4906 12 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 74399.25057999999 14 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 525191.2326 15 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 7304.3237 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 88466.7196 7 +Q9U915 Adenylate kinase 2 75.0 21 56 21 1317886.92505 50 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 25738.05256 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 166238.46600000001 13 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 108957.59744 12 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 34258.31766 8 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 5101.563 3 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 1569.7302 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 62758.74014 8 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 795868.76822 30 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 15720.95375 7 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 1567246.0358 34 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 14314.8947 4 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 191552.7409 15 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 148104.15504 18 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 74983.94932 7 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 1791301.73585 54 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 46825.04235 8 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 151500.08514 28 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 23719.8041 5 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 138122.41824 21 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 9635698.48539 116 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 34414.08556 11 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 23841.9671 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 5528.5650000000005 2 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 83538.60143 11 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 17871.7048 7 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 633595.65729 31 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 23331.24097 8 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 98224.19558 12 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 260663.22397000002 9 +Q9V3Z2 Serine protease 7 13.55 5 15 4 38321.2642 11 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 72440.84707 17 +Q9V427 Innexin inx2 17.17 6 10 0 129283.2366 10 +Q9V429 Thioredoxin-2 66.98 6 56 6 3178038.99428 53 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 156906.54761 16 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 159782.74591 21 +Q9V447 Krueppel homolog 2 22.83 6 13 0 33430.52768 10 +Q9V496 Apolipophorins 33.18 114 349 0 8731637.3394 304 +Q9V498 Calsyntenin-1 1.74 2 2 0 720.1616 1 +Q9V4A7 Plexin-B 1.46 3 4 0 2555.1971 2 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 4649.654 1 +Q9V4C8 Host cell factor 7.33 11 19 11 81518.67663 15 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 7186.0835 1 +Q9V4N3 Cytochrome b5 47.76 6 36 6 553438.25575 28 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 46094.3063 8 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 43164.65758 7 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 2568.94917 2 +Q9V521 Phenoloxidase 2 15.35 11 21 10 61039.7842 16 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 223272.2269 15 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 1718.8248 1 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 7865.9323 3 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 199839.9203 14 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 588883.2392000001 22 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 840375.92504 27 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 12383.844 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 1092.9734 2 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 59627.95448 11 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 4088.8392000000003 2 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 21695.57014 5 +Q9V6G5 Tafazzin 6.08 3 8 1 24504.94701 8 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 1586486.99049 57 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 36769.25599 6 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 29118.17 3 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 26151.80337 7 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 17860.37369 6 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 1260794.6920099999 41 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 2378705.93366 90 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 345240.61061000003 32 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 35481.0452 5 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 25094.46379 8 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 3341.26414 3 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 701342.78862 29 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 2053122.85969 135 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 596048.52898 19 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 14285.764900000002 4 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 14692.8403 7 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 25164.85934 4 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 22779.35094 9 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 12156.664 1 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 5312.40884 4 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 726944.69565 34 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 16263.27814 6 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 182867.0002 15 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 12860.970000000001 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 8222.3154 3 +Q9VA37 Protein dj-1beta 84.49 13 53 13 1246177.3355 35 +Q9VA70 Neutral ceramidase 2.41 2 3 0 6694.261399999999 2 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 2237744.83267 48 +Q9VAF5 Cadherin-99C 4.4 9 18 9 38392.65436 14 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 669198.0385 23 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 260615.5551 13 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 2567814.29488 39 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 33627.24866 5 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 580191.90653 48 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 25275.3081 9 +Q9VAW5 La-related protein 1 3.41 5 8 0 13259.86844 6 +Q9VAY3 Mitoferrin 7.65 3 7 3 17495.6638 7 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 21654.333599999998 5 +Q9VB68 Serine protease grass 12.2 5 13 5 24156.548199999997 8 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 38606.61896 6 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 9828.287 1 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 17804.70034 6 +Q9VBV3 Protein takeout 9.64 3 11 0 89797.64875 10 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 66569.9917 12 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 9199.75527 2 +Q9VC57 Atlastin 4.62 3 6 0 47452.5032 5 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 13909.4716 3 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 56181.59209 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 59892.930400000005 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 3179.008 1 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 2296.83609 3 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 85806.6441 12 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 127886.97775 21 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 1501.32397 2 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 154028.99851 18 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 113093.1617 10 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 5761.6367 1 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 13683.091199999999 7 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 2046.79496 3 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 75332.4157 9 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 62081.7079 8 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 5443.434 4 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 4441.6907 3 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 50764.16505 7 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 61981.41862 11 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 12672.038400000001 4 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 21675.129 6 +Q9VDL1 Esterase CG5412 15.41 4 11 4 33754.01464 7 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 21570.78316 7 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 50493.141 12 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 11596.8143 2 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 8486.3714 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 5870.271839999999 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 1103.31939 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 2570402.11007 36 +Q9VER6 Modular serine protease 8.76 5 10 5 13228.331020000001 6 +Q9VET0 Neuropeptide F 30.39 4 12 0 63889.85327000001 10 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 853883.07967 64 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 31228.5328 6 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 385591.43767 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 75554.49877 12 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 2161829.58576 53 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 239177.43493 23 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 6965.6743 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 34283.4402 5 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 281962.3509 27 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 18804.0141 6 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 5173.238 2 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 3691.98799 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 8899.1851 3 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 33624.183300000004 6 +Q9VFM9 Twinfilin 22.74 7 13 7 33516.5067 10 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 37012.0831 5 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 11933.76 1 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 22878.0753 6 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 89142.2456 13 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 23311.88496 4 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 3656.11933 3 +Q9VG55 Protein hugin 5.76 1 3 1 560.36053 1 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 152418.0735 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 1201.79595 2 +Q9VG76 Myc-binding protein 19.34 4 6 4 65903.72607 6 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 14498.8385 2 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 530037.4005 14 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 105027.649 4 +Q9VGG5 Cadherin-87A 5.72 11 18 11 46371.36529 12 +Q9VGP4 Importin-9 2.85 3 3 3 4305.5166 2 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 136814.28391 19 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 11839.806 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 15486.1326 4 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 1273.6395 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 1267001.80242 30 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 280837.3528 20 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 25517.747 2 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 118050.13900000001 9 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 9090.313 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 82111.03321 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 121251.98486000001 5 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 839653.139 17 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 8531.16518 3 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 5483.50864 2 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 32678.196630000002 6 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 34443.04989 4 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 224713.0135 13 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 18314.058 7 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 154212.03415999998 9 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 29308.8368 4 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 73549.68067 20 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 1189.1876200000002 2 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 479593.89372 50 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 1651871.16326 38 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 15058.7628 4 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 821.0331 1 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 170878.91009999998 9 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 5895.4268 2 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 7065.9062 2 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 38259.3639 6 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 137349.66950000002 14 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 8526.919 1 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 126709.42112 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 208741.69811000003 15 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 35369.88675 5 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 29198.857799999998 10 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 14530.88016 5 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 152348.2397 12 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 11739.8396 3 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 111791.52107 19 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 51357.404370000004 7 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 116765.84955 19 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 145137.2292 15 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 10767.76285 3 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 1959.2065 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 2340.5347 1 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 405.84662 1 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 21864.0909 3 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 74455.44001 11 +Q9VJL6 Glia maturation factor 5.8 1 3 1 1258.12833 2 +Q9VJQ5 Protein Dr1 8.2 2 4 2 2388.53773 2 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 191627.29825 12 +Q9VJY9 Protein Loquacious 11.61 5 9 0 20935.865999999998 4 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 3136.40214 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 228748.50345999998 25 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 1757.1211 1 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 931.87054 2 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 59370.61576 15 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 11760.3011 6 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 17522.5652 3 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 13235.577099999999 3 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 8498.0882 2 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 17805.101000000002 3 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 2859.3864 2 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 1059659.79745 33 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 822072.29686 68 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 27165.108 2 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 45178.45159 7 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 105159.95847 12 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 107310.52717 14 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 115288.74799999999 5 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 180238.4749 6 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 6626.873 3 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 739044.24575 22 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 37991.48156 3 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 111471.2056 5 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 2929.94862 2 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 9608.017 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 12118.91665 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 0.88 1 1 1 749.3695 1 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 21885.4359 7 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 20442.34267 7 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 156124.0883 8 +Q9VMD9 Tiggrin 12.16 31 55 0 193102.46837 41 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 1243.33014 2 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 92929.34736 13 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 3641.97636 3 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 45148.975 3 +Q9VMR8 Protein Turandot M 30.53 3 5 0 140229.5443 5 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 78742.07333 17 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 30346.7736 9 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 9606.22904 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 318360.30212999997 21 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 3647.1926 1 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 4927.616300000001 3 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 8923.55784 6 +Q9VMY9 Guanine deaminase 8.93 4 6 4 32293.0858 4 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 6480.5754 3 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 128529.60650000001 10 +Q9VN14 Contactin 17.77 24 48 24 293446.17346 32 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 13504.261600000002 4 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 30379.2512 7 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 108306.9625 9 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 297854.06523 36 +Q9VN93 Cathepsin F 23.62 16 36 13 758860.14046 31 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 141288.712 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 853.7910999999999 2 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 219977.8125 4 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 214377.136 15 +Q9VNE2 Protein krasavietz 22.04 12 30 12 273252.9275 25 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 205418.575 8 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 6552.41 3 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 20547.3062 5 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 36308.38702 12 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 41875.4309 2 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 12971.7928 3 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 38601.8226 6 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 18673.0954 3 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 3077356.73275 41 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 316876.24323 19 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 42580.922360000004 8 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 13136.49985 7 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 53541.9815 5 +Q9VQC4 Glycerate kinase 13.14 9 14 0 81725.94967 12 +Q9VQF7 Bacchus 38.16 4 21 4 261983.8062 19 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 292131.87864999997 23 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 240591.0477 14 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 34718.0377 6 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 144167.51217 19 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 559.0186 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 4639.9699 3 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 15098.528 1 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 24223.13992 3 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 65794.9521 11 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 531.7033 1 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 105957.725 4 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 13101.81483 7 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 10312.31037 4 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 30450.24204 6 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 52773.35874 7 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 319791.31783 12 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 27000.9446 3 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 1500113.8698200001 70 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 55867.9862 9 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 1974.5599 1 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 31824.82862 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 17425.382550000002 5 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 2348948.21473 51 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 4799.195 1 +Q9VSS1 Protein Pixie 5.56 4 4 4 18388.3023 3 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 50794.43229 11 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 24643.17885 8 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 627204.76828 46 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 115541.93017 17 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 2575.2527 1 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 13089.595000000001 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 14266.343499999999 2 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 188857.33 15 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 47849.700659999995 5 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 116817.03464 8 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 8123.0740000000005 2 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 23832.662 3 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 54684.1457 10 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 681554.62266 31 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 48124.44688 10 +Q9VTZ5 Transferrin 2 17.95 16 27 16 115436.14934999999 19 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 95012.55237 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 168091.81879999998 2 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 4054386.5267399997 82 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 327676.3805 30 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 20651.2036 5 +Q9VU84 Drebrin-like protein 12.99 8 24 8 203349.48753 18 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 71857.72032 10 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 19254.1427 6 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 780164.52666 27 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 46634.86747 10 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 510835.24309 35 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 4439.1 1 +Q9VV36 Retinin 31.94 8 155 8 2472589.37143 87 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 491781.88171 41 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 254319.38638 27 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 9363.564320000001 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 6774.0874 4 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 369534.80258 30 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 22373.54177 8 +Q9VVE2 Protein rogdi 26.49 7 15 7 220574.34414 11 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 17248.91746 5 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 6638.7073 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 798292.75959 11 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 17521.414099999998 6 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 299333.27662 21 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 15864.966 2 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 36335.658500000005 3 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 27978.8796 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 33854.55567 6 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 9078.065200000001 5 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 274643.99335 16 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 19736.02727 5 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 130147.82812 13 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 174091.80312 22 +Q9VWA1 Clathrin light chain 41.55 12 58 0 1322000.9526 48 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 17672.1216 6 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 17455.9816 3 +Q9VWE0 Cytokine receptor 0.78 1 2 1 1353.51368 2 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 152638.7101 14 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 12130838.1685 157 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 540542.5455 18 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 69058.9722 18 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 10880.0789 3 +Q9VWU1 Serine protease persephone 8.88 4 6 4 29794.2098 5 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 4120.0225 1 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 13758.814330000001 4 +Q9VWX8 Frequenin-2 37.43 8 52 3 943943.24385 37 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 11177.54 2 +Q9VX10 Sulfiredoxin 11.73 2 4 0 10928.1562 3 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 280728.1034 15 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 483650.00034 34 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 26366.22006 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 134418.8528 9 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 18242.8431 4 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 11327.674219999999 3 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 680291.49229 64 +Q9VXG4 Annexin B11 23.68 14 41 14 481996.97225 36 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 140312.66113 16 +Q9VXK0 Protein NipSnap 9.89 3 16 0 160367.67724 13 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 89687.73913999999 11 +Q9VXN2 Protein stunted 81.97 6 16 6 248280.06571 10 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 36505.55983 7 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 48604.0715 4 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 59476.687699999995 5 +Q9VXY0 Probable cytochrome P450 4s3 2.83 2 4 2 546.8536 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 594028.20685 21 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 23397.45436 5 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 4296.7019 4 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 160187.46723 7 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 25124.704400000002 3 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 7416.4313 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 353575.5686 8 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 14036.75677 3 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 7517.867200000001 2 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 12741.6751 5 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 68558.55811 10 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 16689.8956 2 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 6267.91575 4 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 34280.01954 7 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 25540.305 5 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 512888.51919 34 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 14877.0576 3 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 25291.781 1 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 195491.06256 17 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 89470.76228 10 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 614637.74746 28 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 21272.43085 4 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 445270.71083 21 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 257085.89312 17 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 51433.351500000004 8 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 21265.353 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 7464.4447 3 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 2563.3645 1 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 24410.3951 3 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 7243.5479 4 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 12301.00725 3 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 62068.195999999996 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 90118.06109999999 9 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 342778.28440999996 28 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 2057842.08089 66 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 231335.67056 16 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 26796.2363 2 +Q9W032 Protein ecdysoneless 5.12 4 4 4 719.50854 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 722618.05625 44 +Q9W074 Protein HBS1 4.33 3 4 3 6847.383400000001 3 +Q9W0A0 Protein draper 9.6 8 20 0 21223.95844 10 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 1028523.6374 28 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 7734.6664 2 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 18139.400569999998 8 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 53784.24433 9 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 856.3709 1 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 252800.75433999998 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 81081.2568 17 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 146923.2513 10 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 3441.83005 4 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 1968203.5663700001 49 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 69685.35486 8 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 348.83255 1 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 12102607.211720001 92 +Q9W1G0 Probable transaldolase 48.04 12 51 12 1794517.44789 45 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 29703.943 3 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 49364.4038 5 +Q9W1K5 Sestrin homolog 6.84 4 7 0 28541.224000000002 5 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 52270.34654 7 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 6430.77562 2 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 77539.87197000001 11 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 41685.638 7 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 88991.44492000001 11 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 1850319.3250399998 54 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 68668.83701999999 8 +Q9W266 Protein windpipe 20.68 10 31 10 155629.44839 23 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 330615.6507 18 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 52519.30867 5 +Q9W2E7 Protein Rae1 11.56 4 11 4 309155.0969 9 +Q9W2M2 Trehalase 29.36 16 47 0 472840.36189 37 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 22131.0064 2 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 1838.3469 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 40207.378899999996 9 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 16409.36844 5 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 2061060.70181 67 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 425297.03351 23 +Q9W358 Chaperone Ric-8 10.65 7 8 0 9855.3156 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 2127193.89021 69 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 23650.9203 7 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 341242.17303 9 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 37364.22203 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 16148.814699999999 5 +Q9W3E2 Protein PIP82 19.83 23 56 23 117424.66549 33 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 43382.863 14 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 23702.0153 6 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 38217.9595 7 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 90287.5789 5 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 119241.3867 5 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 2273.0806 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 6821.73115 2 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 12036822.76137 173 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 21206.8576 4 +Q9W436 Neprilysin-1 4.24 4 4 4 16998.5735 4 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 45249.64883 8 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 56859.20155 12 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 974390.71454 24 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 104041.59938 18 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 46807.36037 7 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 172794.2407 17 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 53275.7226 4 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 834452.71744 153 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 16032.945199999998 2 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 87536.60913 19 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 190580.35976000002 9 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 3909.31718 3 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 138171.86288 14 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 3972.5558 2 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 552410.46196 53 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 25716.3887 2 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 615.56396 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 472342.79 3 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 406699.9958 27 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 46128.0846 7 +Q9XZ14 Protein gone early 4.44 4 4 1 9343.905 1 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 32698.017440000003 7 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 216808.31437 21 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 282625.05283 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 247197.27993 32 +Q9XZL8 Protein sarah 34.25 7 12 0 87312.31575 8 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 2680.19634 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 3334.7659000000003 3 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 17688.1704 4 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 681418.3477299999 24 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 161845.0604 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 985784.6614 17 +X2JAU8 Protein nervous wreck 29.3 30 114 30 1483856.47187 99 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 11549.16758 6 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 20948.887300000002 3 +A0A0B4JCR9 Uncharacterized protein, isoform D 5.04 2 2 0 424.85318 1 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 139740.87133 19 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 183167.2647 6 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 28673.407740000002 8 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 3570.4492 2 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 1886309.05406 114 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 6889.02803 5 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 18837.489 5 +A0A0B4JD47 Missing-in-metastasis, isoform E 4.61 4 4 0 320.2171 1 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 7782.3507 2 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 106986.98573 26 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 45744.578760000004 11 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 15690.3162 7 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 268698.91247 34 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 3777965.23341 149 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 17181.29157 6 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 24912.340750000003 4 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 193498.56774 31 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 40387.66076 7 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 19960.362399999998 4 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 57592.61582 11 +A0A0B4K709 Uncharacterized protein, isoform E 2.78 2 3 0 567.63055 1 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 68436.33474 12 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 5133.894359999999 2 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 73068.5982 12 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 5079.3235 2 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 3683748.1175 129 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 116423.31127 21 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 17805.97236 5 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 17948.585039999998 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 13217.121 2 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 4952.107 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 1948826.12839 39 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 33330.5493 5 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 2.19 5 5 0 1282.09705 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 533490.5772 47 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 10700.20605 6 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 145562.27916 25 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 26135.37635 7 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 20953.52447 7 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 10280.0353 3 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 141592.9057 14 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 146242.20314 9 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 209745.87661 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 15528.18296 7 +A0A0B4KEJ7 Coronin 17.01 9 17 0 74765.56007 13 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 14124.67517 6 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 925.8855 1 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 6921.4519 3 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 24590.785 1 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 99878.17537 29 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 2421.6657 2 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 8667.40426 2 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 10815.6754 3 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 165905.86889 14 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 33084.18191 10 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 3044.4399399999998 3 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 868763.22076 36 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 29549.75403 5 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 2166483.31964 79 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 25691.036099999998 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 149968.56495 18 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 349688.3898 13 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 63689.52128 9 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 9766.839899999999 5 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 89103.95006 8 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 29736.695789999998 10 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 9380.33975 4 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 8641.47712 4 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 7349.4449 2 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 59380.749899999995 8 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 25434.13953 8 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 9577.8052 3 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 25496.95044 7 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 154851.11329 19 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 619290.86663 20 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 329684.51068 41 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 27838.581299999998 3 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 994.0632 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 142031.7549 10 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 492.27182 1 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 22298.09778 8 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 5189.9971000000005 2 +A0A0B4KH34 Annexin 67.9 22 147 2 5822038.53114 122 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 9225.959 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 9762.6428 4 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 157711.41429 21 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 76596.82403 17 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 33530.70306 5 +A0A0B4KHF0 Ferritin 77.97 20 130 1 5791927.53233 106 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 9541595.3103 198 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 115799.84955999999 7 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 6261.2207 1 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 15011.73374 5 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 76303.58425 12 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 111232.04834 17 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 73550.93166999999 4 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 9406.93925 5 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 25569.703 1 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 24503.59826 7 +A0A0B4KHW7 Uncharacterized protein, isoform P 2.81 1 1 0 950.53595 1 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 2352.8818 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 855626.84993 46 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 991280.58799 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 10246.741 1 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 2721.0563300000003 2 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 5293.0918 2 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 5734.3778999999995 2 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 277676.56049 26 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 247893.14213999998 32 +A0A0B4LF95 glutaminase 7.29 4 9 0 52613.6921 7 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 484148.48782 33 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 166390.03978 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 33148.07436 7 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 12756.44214 4 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 530.6995 1 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 2235.5422 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 178361.5502 16 +A0A0B4LG34 Liprin-gamma, isoform E 2.4 3 3 0 597.89185 1 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 16942.64705 7 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 30248.458100000003 4 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 36993.804749999996 10 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 771608.13043 52 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 162982.96787999998 14 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 12056.3551 4 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 350384.51013 29 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 31647.477440000002 7 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 2055036.79088 47 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 6404.2363 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 25788.6081 6 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 447377.80808 51 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 8072.4433 2 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 5360.3 3 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 22363.2025 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 69437.39040999999 13 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 2901.0522 1 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 16589.2117 5 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 10977.739599999999 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 2623.86938 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 104085.97471 24 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 12558.232 1 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 4071.3275000000003 2 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 231344.88451 44 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 6635.4983 4 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 26149.876 5 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 59005.84774 11 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 334.25186 1 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 144846.43776 13 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 12598.36776 5 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 8208847.40817 116 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 69295.77954 13 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 39807.7103 4 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 3840.84784 3 +A0A1Z1CH25 AT27361p 7.62 4 4 3 7345.89735 2 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 102341.26355 9 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 922.9926399999999 2 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 3869360.79097 132 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 19482.75694 17 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 96601.1073 13 +A0A4P1SAA7 IP07559p 11.17 2 3 0 7846.7415 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 3760.74535 3 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 224894.04165 44 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 58318.216669999994 10 +A0A6H2EEJ8 Uncharacterized protein, isoform C 3.44 3 3 0 461.2266 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 10390.80806 3 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 852.2603799999999 2 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 4631727.67779 300 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 5117.8093 2 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 814424.9622300001 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 12528.216699999999 4 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 16576.9925 3 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 14407.993 1 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 7921.6892 2 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 1254.37365 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 24619.80268 6 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 4001346.05527 292 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 394836.77998 41 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 713556.82565 32 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 136733.22553 21 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 219326.295 16 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 79950.5095 7 +A1Z6F6 FI18602p1 9.08 8 14 0 115627.29624 12 +A1Z6G9 FI18173p1 9.04 3 5 3 14853.180400000001 5 +A1Z6H4 RE52822p 6.86 4 9 0 20413.894 6 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 20905.332150000002 11 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 3506.6628 1 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 72406.0304 8 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 176211.31684 18 +A1Z6R7 FI21445p1 33.57 9 21 9 49916.56388 15 +A1Z6V5 FI01422p 37.15 14 45 14 389218.18714 35 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 276077.47263000003 10 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 30475.504100000002 8 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 18747.6574 6 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 570.71686 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 4175.5998 7 +A1Z7B8 GEO08456p1 12.66 2 6 2 44117.2746 5 +A1Z7G2 MIP13653p 13.39 2 8 2 231880.1591 5 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 126185.9532 16 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 15158.43134 4 +A1Z7K6 FI20236p1 5.61 3 7 3 35194.4071 7 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 74787.03854000001 15 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 4310.48652 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 40095.9585 9 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 479492.12978 52 +A1Z7V9 FI20020p1 2.74 2 4 1 10780.1852 4 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 15805.987 1 +A1Z7X8 FI02944p 15.34 6 12 6 135463.92965 10 +A1Z803 FI02892p 31.76 12 29 12 344907.87361 24 +A1Z843 Nodal modulator 3 9.17 12 20 12 120740.91919 18 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 501676.96058 30 +A1Z871 CAP, isoform B 10.27 19 36 0 64469.13417 5 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 2215445.63109 55 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 16569.299460000002 4 +A1Z8G0 Menage a trois, isoform A 20.17 12 26 0 473.87552 1 +A1Z8G7 FI09243p 16.53 2 4 2 722.2243699999999 2 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 4172273.93924 64 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 56584.90924 5 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 4890.7721 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 3562.4404699999996 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 25104.43878 3 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 474699.39 10 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 468006.57949999993 13 +A1Z933 GEO02273p1 22.09 2 3 2 10930.667300000001 3 +A1Z934 SD19268p 36.45 11 34 11 246748.92831 27 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 10259.72 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 93585.50945 26 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 18822.05101 7 +A1Z9B5 IP16508p 15.06 3 7 3 22399.54142 7 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 2562401.78596 52 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 280031.21501 21 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 110501.72606 36 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 165816.41923 9 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 32506.25608 8 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 359589.11 3 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 11911.222240000001 4 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 6139.056200000001 2 +A1ZA23 FI18007p1 26.91 10 31 10 152716.14978 24 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 6172.5558 2 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 56222.26554000001 6 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 123747.6638 12 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 5960.10284 3 +A1ZAH3 FI16515p1 3.28 2 4 0 2778.02466 4 +A1ZAK3 Protein DEK 5.4 3 5 0 10506.8901 4 +A1ZAL1 lysozyme 30.43 5 6 5 50131.970700000005 4 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 458.28638 1 +A1ZAU4 RH39096p 50.95 16 45 0 2083382.74428 41 +A1ZB23 IP19117p 16.06 4 12 4 56503.3443 7 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 1023.0047 2 +A1ZB68 FI01423p 33.18 8 25 8 314673.01535 19 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 554188.2923 26 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 5873.6548 2 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 159162.71416 13 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 2042.42577 3 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 930038.2082999999 34 +A1ZBA5 FI07234p 7.22 2 3 2 28093.107600000003 3 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 16670.2151 3 +A1ZBD8 Mucin-5AC 3.57 5 9 5 3566.50472 5 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 323355.73329 25 +A1ZBK7 Crammer 58.23 4 13 4 181791.44654 12 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 833.6393 1 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 148907.8443 12 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 126383.12107 18 +A1ZBU5 GNBP-like 3 27.63 3 9 3 79538.53879 9 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 21339.0594 3 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 1062451.6417 38 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 2173.257 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 225373.09364 37 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 758.67755 2 +A2VEG3 IP16294p 3.06 3 5 0 11119.6069 4 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 75286.3932 7 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 327437.21061999997 35 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 22608.68493 6 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 245051.75904 21 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 1329864.13446 68 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 2321236.21366 119 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 1300058.76278 48 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 65800.98864 8 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 33842.3417 8 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 1137871.5678 12 +A8DYD1 Combgap, isoform L 13.26 10 20 0 86800.42492 13 +A8DYI6 Prohibitin 66.27 22 89 3 2004769.51969 70 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 162540.23473 21 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 40226.37423 16 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 29789.755350000003 7 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 13175.72422 5 +A8DZ06 Stolid, isoform J 10.24 13 34 0 235871.57692 27 +A8DZ14 FI17828p1 20.1 9 32 3 196460.59954 22 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 71756.82106 8 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 3607.6523 1 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 133400.08449 35 +A8E6W0 IP19808p 25.25 5 9 5 45083.8528 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 5890.781650000001 3 +A8JNJ6 Karst, isoform E 1.54 8 8 0 3991.58165 2 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 5297.65266 2 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 34685.32525 6 +A8JNP2 arginine kinase 72.53 37 429 2 809520.78285 15 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 16830.5797 4 +A8JNS4 Starvin, isoform E 11.81 7 10 0 17721.47114 7 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 14286.75618 4 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 60891.8794 6 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 31458.49514 8 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 6833.51286 3 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 15098.282220000001 4 +A8JQW3 Pinin, isoform B 20.2 7 10 0 51670.45867 9 +A8JQY2 Uncharacterized protein, isoform C 1.38 1 1 0 595.77136 1 +A8JR01 Kramer, isoform I 3.4 9 12 0 13676.5858 6 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 59909.8785 6 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 48240.54853 13 +A8JR58 Hadley, isoform B 2.02 1 1 0 3980.58 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 2512826.34265 92 +A8JRH3 FI20012p1 60.08 25 75 1 1873579.35136 62 +A8JTM7 Megalin, isoform A 4.53 24 37 24 129611.99203000001 24 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 54837.490580000005 11 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 4900.8971 2 +A8JUZ6 MIP03678p 7.28 3 4 0 17233.208700000003 4 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 8092.03949 7 +A8JV09 Coronin 1.67 2 2 0 2957.189 1 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 442404.53732999996 28 +A8WH76 GEO10024p1 51.85 4 15 4 401753.8574 12 +A8Y4V5 FI20903p1 8.21 2 3 2 3882.0359000000003 2 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 20102.0911 3 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 2460725.7751700003 16 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 4091.9216 1 +B7YZH1 FI20143p1 6.47 4 6 0 8402.745200000001 4 +B7YZN0 Syndecan 17.81 10 24 0 66027.00914 17 +B7YZN4 GH02741p3 49.23 4 6 4 8195.14603 4 +B7YZN8 GH02741p1 22.37 2 5 2 17778.390199999998 5 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 51486.17099 11 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 3417534.51847 59 +B7YZV2 Phosphodiesterase 6.31 7 15 0 16587.77609 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 115708.4769 21 +B7Z001 Fatty acid synthase 21.46 50 93 0 516466.88196 68 +B7Z002 Kismet, isoform C 0.6 2 2 0 1601.9667 1 +B7Z005 Drongo, isoform I 9.14 5 11 0 15551.284 6 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 1576.7627 1 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 3490.3338 3 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 13279.295299999998 3 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 5415.3489 3 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 46673.32565 5 +B7Z0C9 GH15104p1 41.05 4 6 4 24438.2924 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 6356830.98258 133 +B7Z0M0 FI17308p1 18.85 2 3 2 13530.768 2 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 5168.97841 3 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 63019.54684 17 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 78605.4134 12 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 11391.40246 7 +B7Z107 GH09380p1 52.17 5 7 5 11023.95423 6 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 6583.6462 3 +C0HDP4 MIP05618p 3.77 2 2 0 22699.283 2 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 787718.34893 33 +C7LAG1 CoRest, isoform G 3.76 3 4 1 383.4409 1 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 714677.47426 56 +C9QP70 MIP12608p 15.85 2 3 2 24606.038399999998 3 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 532161.26358 26 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 240115.21563000002 18 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 13216.942019999999 8 +D0Z756 MIP14966p 32.93 13 33 0 1105079.09293 28 +D1YSG0 Bent, isoform F 6.65 59 74 0 232772.05127 57 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 92263.23016 13 +D3DMM0 MIP15702p 15.28 8 15 0 53375.137930000004 11 +D3DMM4 MIP15217p 30.28 24 95 0 1028129.80264 77 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 109853.45259999999 7 +D5SHT6 MIP21537p 4.99 3 4 0 29296.2689 4 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 15324.65975 3 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 17877.31247 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 259268.38152 32 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 60085.774359999996 11 +E1JGR3 GEO02620p1 24.62 3 5 3 4809.6032 2 +E1JGY6 Hulk, isoform F 13.33 23 31 1 373821.55678 27 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 84534.13412 15 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 17096.337499999998 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 756.07806 1 +E1JH90 Patronin, isoform F 1.38 2 2 0 378.34146 1 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 395868.01529 68 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 28725.81564 6 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 3563.736 1 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 12587.134 1 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 38989.15897 8 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 39229.89986 7 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 87685.86482 16 +E1JHP9 Galectin 4.06 2 4 0 11273.022700000001 2 +E1JHT6 Reticulon-like protein 18.12 11 35 0 805543.5244199999 29 +E1JHT9 Reticulon-like protein 24.77 6 24 0 2386.7384 2 +E1JI40 Vermiform, isoform I 13.51 7 15 0 124244.70728 15 +E1JI59 Schizo, isoform D 2.87 4 5 0 997.95832 2 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 32522.0171 5 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 19962.83145 3 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 34032.9579 4 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 18718.168 1 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 12717.001 3 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 7056.42364 4 +E1JIY8 L antigen family member 3 20.72 3 8 3 51260.5807 6 +E1JJ33 Complexin, isoform U 65.73 9 79 1 3056048.82402 72 +E1JJ60 Uncharacterized protein, isoform M 28.44 5 18 1 358.44376 1 +E1JJA4 Dynamin 27.41 28 73 0 570940.03386 60 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 2060.7808 1 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 5534.69253 2 +E1JJG5 Phospholipase A2 13.81 3 3 1 2266.72992 2 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 1016690.90933 80 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 14054.74204 7 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 108364.52593 13 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 4253.094 1 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 539989.99655 58 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 4892.2715 1 +E2QD54 Natalisin, isoform D 4.7 3 5 0 4195.8952500000005 4 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 71693.63585 10 +E2QD98 Protein PALS1 7.62 16 28 0 160202.31754000002 22 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 50505.42444 13 +E8NH67 Asperous, isoform B 51.14 19 129 0 1159324.411 76 +F0JAP7 LP18071p 23.14 6 10 0 5302.787020000001 6 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 21011.01856 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 1899100.09156 116 +H1UUB1 GEO12465p1 55.04 6 25 1 189321.62889 20 +H8F4T3 Regucalcin 32.35 6 11 0 270632.4519 10 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 18831.2534 4 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 3833.80437 4 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 630490.166 26 +L0MPN7 Asator, isoform H 12.15 13 25 0 85001.376 18 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 52830.30769 24 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 2634.191 1 +M9MRX0 Limpet, isoform J 26.49 29 95 0 1225784.6203100001 74 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 188771.72164 62 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 112256.7865 8 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 31953.834600000002 8 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 34738.0866 2 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 397.3214 1 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 654430.20777 21 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 543751.15565 18 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 869359.13113 46 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 2422.022 2 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 16815.2261 5 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 49845.19354 8 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 215137.91798 17 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 39794.60625 17 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 133156.56765 22 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 57200.57258 16 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 8885.86643 3 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 34164.50239 11 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 12532646.55193 441 +M9NDB5 RNA-binding protein 6, isoform F 15.11 3 6 1 781.3873 2 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 10516.4718 5 +M9NDE0 pantothenate kinase 6.54 3 6 0 11511.6239 4 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 52097.03626 13 +M9NDS9 chitinase 2.56 12 16 0 33610.215879999996 12 +M9NDX8 Neurabin-1 4.11 8 9 0 10354.4601 3 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 18452.695659999998 8 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 28663.225599999998 6 +M9NEF2 Histone deacetylase 4.43 4 4 0 3986.3586 1 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 3281.8124 3 +M9NEW0 LD39232p2 43.33 7 15 7 159835.52644000002 11 +M9NEX3 Cytochrome b5 57.55 6 20 0 883965.69105 17 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 37301.6661 5 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 10251.24158 3 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 76887.58642 8 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 43575.99783 12 +M9NFC0 Troponin I 48.74 15 55 5 237704.4017 11 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 33831.521 2 +M9NFH3 Lasp, isoform D 27.3 8 30 1 12147.057 1 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 122030.97956 18 +M9NH07 Upheld, isoform N 48.73 30 148 0 6370453.75817 132 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 91443.07311 21 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 71227.86103 6 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 5088.4675 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 540612.03834 37 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 1410.75757 2 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 76319.928 2 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 12145.1341 3 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 1740487.52077 143 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 3601.38676 2 +M9PBM3 Cysteine protease 6.34 2 4 0 15008.711299999999 2 +M9PBN2 Apolipoprotein D 29.39 7 23 0 561669.7679 18 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 154053.30034000002 19 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 1555.7283 1 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 22945.50265 4 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 69468.61465 12 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 336051.53390000004 22 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 11900.65253 7 +M9PBW9 Rhea, isoform G 5.83 17 26 0 113512.58791999999 19 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 107769.71403 14 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 13302423.99117 145 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 8388.5542 2 +M9PC74 Reticulocalbin-3 17.11 6 19 0 118147.88556 18 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 51542.32365 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 20850.904300000002 3 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 4395.67332 5 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 51594.98536 16 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 94846.46293 20 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 16431.74614 6 +M9PCT7 Bunched, isoform O 18.75 4 11 1 842.2748 1 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 116224.39739999999 11 +M9PD73 TEP1-F 20.6 32 69 0 945568.00427 58 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 394535.97334 19 +M9PDB2 Varicose, isoform E 8.51 6 10 0 34359.832500000004 9 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 187433.90709999998 25 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 2190.5098 1 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 14477.614959999999 6 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 537.10516 1 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 17177.3113 6 +M9PDU4 Acyl carrier protein 18.23 4 33 2 2469835.8767299997 31 +M9PDV2 Tetraspanin 6.97 2 3 0 6586.3459 3 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 216497.57829 52 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 118264.5352 12 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 4505118.07985 45 +M9PE32 Fife, isoform D 12.79 17 34 1 52023.74376 25 +M9PE35 RabX6, isoform B 6.76 2 3 0 5635.526070000001 3 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 7.42 3 3 0 440.49118 1 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 8625.8623 5 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 24782.12255 8 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 19733.52127 4 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 6642.7916 3 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 44259.281 5 +M9PEC1 IST1 homolog 16.75 7 17 0 95096.04550000001 13 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 149720.43487 18 +M9PEG1 Uncharacterized protein 36.6 17 48 17 760721.31589 42 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 1131884.11287 249 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 16947.5713 5 +M9PEL3 Quemao, isoform C 38.04 11 22 0 127001.64541 17 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 46119.8542 8 +M9PET3 Simjang, isoform D 3.57 3 4 0 4104.64386 3 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 644.85785 1 +M9PF16 Spectrin beta chain 24.44 61 168 3 1428473.23325 143 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 297718.65020000003 29 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 10997.359100000001 3 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 8187.49506 4 +M9PFH7 Tartan, isoform B 5.99 5 7 0 24606.0858 6 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 808.86017 1 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 33205.02675 8 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 3630.3032200000002 3 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 41377.95474 4 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 2116.00828 4 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 79385.60617 14 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 93803.18194000001 16 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 82438.5239 8 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 8548942.485749999 202 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 12307.71811 5 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 38700.8901 5 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 112813.71855 9 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 7593.421700000001 3 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 104438.30394 23 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 23875.36451 7 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 164816.42152 27 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 229749.07607 32 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 61773.37646 14 +M9PHX2 Visgun, isoform E 8.78 2 4 1 19417.1071 4 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 3610.2075800000002 3 +M9PI33 Inositol oxygenase 7.27 3 4 0 91049.706 3 +M9PI51 Dual specificity protein phosphatase 15 6.04 3 4 0 585.2692 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 4707.4586 2 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 3961.77043 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 18782.056 2 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 1624.105 1 +M9PJQ5 Troponin I 47.28 13 65 0 152820.124 13 +O15971 LD39986p 26.96 6 30 3 68166.322 6 +O16158 Calcium-binding protein 50.0 8 32 8 1199698.35412 25 +O17452 LD20793p 37.83 7 35 4 721831.06121 25 +O18332 FI01544p 72.2 13 63 11 937974.71141 40 +O18335 Rab11 53.27 13 69 13 1699458.04402 60 +O18336 Ras-related protein Rab-14 24.65 6 18 0 51511.474879999994 11 +O18338 LD44762p 27.05 6 31 0 15856.095 2 +O44226 Elongin-B 91.53 9 34 9 470388.13797 26 +O44434 QKR58E-3 12.62 4 6 3 14438.7509 3 +O46052 EG:152A3.3 protein 18.87 6 8 3 51847.0087 6 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 367084.79975 42 +O46079 Protein KTI12 homolog 13.04 4 11 3 11716.39769 6 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 1429.69545 3 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 23617.4428 6 +O61604 Fimbrin 32.34 22 67 3 945992.51305 57 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 54327.24946 14 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 16278.3695 9 +O76521 Importin subunit alpha 9.21 5 12 5 55511.240340000004 9 +O76752 Sepiapterin reductase 27.2 7 26 7 102204.45898 19 +O76877 EG:132E8.3 protein 10.62 2 5 2 32070.2958 5 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 1540361.84896 26 +O77259 EG:115C2.5 protein 9.0 2 2 0 12821.258699999998 2 +O77425 Ribokinase 8.88 3 7 3 12341.56986 5 +O77430 GEO01111p1 62.96 11 37 10 339042.4374 29 +O77434 EG:34F3.8 protein 28.91 5 19 1 54336.83619 10 +O77477 LD24471p 20.94 9 15 9 59944.139070000005 13 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 190174.638 7 +O96692 small monomeric GTPase 12.09 2 6 0 11932.0984 3 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 62633.36078 13 +O96880 General transcription factor IIE subunit 1 2.33 1 1 1 367.61774 1 +O97059 Ccp84Ab 19.91 4 8 0 47149.9115 7 +O97062 Ccp84Ae 34.13 6 26 6 110902.85884000002 14 +O97064 Ccp84Ag 25.65 4 10 4 44616.11634 7 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 4536.02891 3 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 1911192.63883 34 +O97111 LD29223p 7.41 3 5 3 19015.5087 5 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 6373.289 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 21868.024 2 +O97365 BM-40 31.58 9 14 9 158210.3553 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 1458374.86371 39 +O97428 Ciboulot, isoform A 13.95 2 4 0 17733.168299999998 2 +O97454 Protein BUD31 homolog 13.89 2 3 2 1929.8505 1 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 121599.30993 18 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 2518.7565600000003 2 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 5709124.73663 74 +P92181 Cuticle protein DCP2 36.7 3 15 3 70058.33505000001 8 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 14417.3128 3 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 2054548.0132 70 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 91080.65 12 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 39616.66724 8 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 7544.036900000001 2 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 876940.74075 122 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 6658.727 1 +Q0E8P5 FI05614p 9.28 5 12 5 228342.0282 8 +Q0E8S7 Homer, isoform E 37.66 18 48 3 624514.9789 41 +Q0E8U4 FI09636p 15.33 6 8 6 21010.3312 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 532300.28556 19 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 27443.5341 5 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 786661.38865 37 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 417058.88224 21 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 165442.93949000002 21 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 2440.57936 2 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 402068.39782 60 +Q0E9E6 RE33655p 1.32 1 2 1 4164.0411 2 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 117675.11020000001 13 +Q0E9G4 CG1600-PA 12.6 3 4 0 2058.97083 2 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 129088.42970000001 14 +Q0KHR7 Septin 18.74 8 17 0 186251.05964 17 +Q0KHX7 FI18193p1 6.31 8 11 0 33800.36213 10 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 4583951.09763 141 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 48845.40453 7 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 38641.07526 14 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 235064.97298 27 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 13191.95098 6 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 46273.8692 5 +Q0KIB0 Sidestep III 2.61 4 5 4 6759.5487 3 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 7266.28742 5 +Q1RL12 IP16413p 60.25 16 101 1 69186.875 1 +Q24090 GH08712p 14.05 6 9 6 26802.35342 8 +Q24253 AP complex subunit beta 19.76 16 31 16 182156.212 28 +Q26459 EN protein binding protein 13.32 8 16 0 37519.50657 11 +Q29QY7 IP15859p 9.86 1 1 0 10090.501 1 +Q2MGK7 GEO13330p1 26.77 4 11 4 85883.24234 10 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 2368.0166 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 10336.715 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 5629895.4211099995 118 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 12719.72775 6 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 297439.89765 11 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 5893.04017 5 +Q4QQ49 IP09595p 3.04 1 1 1 3030.0156 1 +Q4QQ70 IP09819p 16.08 7 13 7 67644.21697000001 9 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 19476.49916 4 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 20801.7258 4 +Q4V619 IP07950p 6.9 2 2 0 5652.3467 1 +Q4V625 lysozyme 6.75 1 2 1 13771.046 1 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 129958.78005 11 +Q500Y7 GEO11443p1 89.47 4 15 4 923503.49682 14 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 13681.310300000001 5 +Q59E01 FI02065p 5.58 4 7 0 1727.9013 2 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 11621.2605 2 +Q5BIA9 RE10908p 2.72 2 2 2 20127.3649 2 +Q5LJT3 MIP01391p 17.0 3 3 3 84876.196 2 +Q5U124 alpha-glucosidase 16.51 11 24 0 352614.91684 20 +Q5U126 GEO11286p1 59.42 7 36 7 1415842.92388 33 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 29058.4005 5 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 25760.203999999998 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 423263.26862 17 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 24343.10564 3 +Q6IGN6 HDC05827 11.36 2 8 2 45930.938449999994 6 +Q6IGW6 GEO13367p1 44.23 2 4 2 39890.9601 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 979641.7125 16 +Q6IL43 GEO11093p1 27.71 2 6 2 65569.66010000001 5 +Q6NL44 GH28815p 16.11 6 12 6 13390.93918 8 +Q6NLJ9 AT19138p 46.59 3 5 2 16102.736260000001 4 +Q6NMY2 RH54371p 32.42 5 16 5 262023.17215 6 +Q6NNV2 RE44043p 14.68 5 8 0 67064.20846 6 +Q6NNV7 RH03309p 29.55 5 15 1 548827.03025 11 +Q6NP69 GST-containing FLYWCH zinc-finger protein 2.68 2 2 1 430.03436 1 +Q6NP72 GEO09659p1 53.59 5 28 5 124188.87464 19 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 6124.7843 3 +Q76NR6 Regucalcin 77.74 24 100 0 4336136.18504 81 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 149330.6123 10 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 87393.87317 15 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 799546.8038 24 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 7481.6801 4 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 210027.16502 20 +Q7JQX9 FI14001p1 4.65 4 4 0 2122.2519 3 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 3439730.79587 81 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 258482.94347 16 +Q7JRB2 RH09039p 4.52 1 3 1 1955.1237 1 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 48404.178 2 +Q7JRF1 RE48509p 3.41 1 1 0 1552.6572 1 +Q7JRH5 RE28271p 1.31 1 2 1 5663.851699999999 2 +Q7JRL9 GH25289p 67.12 10 56 1 2026630.84453 47 +Q7JRN6 GH06388p 11.21 3 10 3 14212.43718 7 +Q7JS69 FI04632p 45.02 10 65 1 458079.3719 14 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 3472.3652 1 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 21093.21107 6 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 834336.37418 39 +Q7JV09 GH28348p 7.5 8 12 5 24141.9292 8 +Q7JV69 SD11922p 6.95 3 6 3 14618.64676 4 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 31483.74276 5 +Q7JVH6 LD24696p 27.01 8 20 7 258199.0883 14 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 143219.5777 14 +Q7JVK6 Translin 16.17 4 11 4 77784.80219 10 +Q7JVK8 GEO08987p1 52.05 8 31 8 211320.91543 21 +Q7JVM1 GH25962p 22.64 5 16 5 49372.13224 10 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 62873.495500000005 9 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 4259.90514 2 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 88449.6014 9 +Q7JW07 LD08826p 12.12 3 3 3 22964.425 2 +Q7JW48 RE12410p 8.08 3 8 3 63750.41954 5 +Q7JW66 LD21545p 8.81 3 5 3 33368.4683 5 +Q7JWD6 Elongin-C 52.99 6 18 6 579399.82261 14 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 855761.16593 28 +Q7JWH5 RING-box protein 2 7.96 1 1 1 3792.5366 1 +Q7JWQ7 RE01730p 9.74 4 7 4 4886.32636 5 +Q7JWR4 GH19585p 6.06 1 2 1 16749.736 2 +Q7JWU9 AT07420p 22.49 7 8 7 20245.092239999998 6 +Q7JWX3 GH10112p 7.35 4 10 4 130040.06085 9 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 477874.3 2 +Q7JX94 Phospholipase A2 13.29 3 6 3 2297.5003 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 83430.6863 9 +Q7JXB9 Endonuclease 8.39 4 4 4 11812.2194 3 +Q7JXC4 CG6459 protein 33.46 6 46 6 1577205.2925 39 +Q7JXW8 Off-track2 11.09 5 9 4 24863.5147 8 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 116551.28365 9 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 270970.37384 7 +Q7JYW9 Phosphotransferase 18.72 9 13 9 52711.0322 12 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 19026.7057 2 +Q7JYZ0 lysozyme 11.18 2 6 2 20468.23516 5 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 77568.2653 8 +Q7JZB1 RE49860p 8.66 3 5 3 10073.80487 3 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 476530.29594000004 38 +Q7JZE1 Peroxin 11 9.96 3 6 3 11845.523099999999 4 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 65037.0917 7 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 1513903.45643 40 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 47928.2707 10 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 6482.7872 2 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 632827.10566 22 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 865404.89144 27 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 24064.50673 7 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 4601430.383 146 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 14522.5137 3 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 687093.486 37 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 96502.85346 12 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 2887.6428 1 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 15897.36744 3 +Q7K0S1 LD39211p 3.43 2 3 2 5406.87036 3 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 178884.79433 21 +Q7K0S6 LD36817p 21.02 8 13 8 55742.9417 11 +Q7K0T7 LD33470p 1.5 2 2 0 686.3989 1 +Q7K0W1 LD27406p 3.85 2 2 2 10221.35666 2 +Q7K0W4 LD27203p 56.4 18 61 17 2134516.55196 41 +Q7K0X9 LD23667p 8.51 2 17 2 41802.34519 14 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 22205.93169 6 +Q7K127 Alpha-galactosidase 18.71 7 24 7 254237.9656 16 +Q7K130 Dynactin subunit 4 4.67 3 4 3 13501.49613 3 +Q7K148 Proteasome subunit beta 21.28 6 13 6 128598.55424999999 12 +Q7K159 LD06557p 26.22 6 8 6 5039.95494 5 +Q7K180 LD02709p 17.73 8 12 8 18080.31302 7 +Q7K188 GEO05126p1 29.68 6 49 6 1374145.78471 41 +Q7K1C0 GH23780p 46.53 5 11 1 460358.52576999995 8 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 45585.23231 8 +Q7K1C5 GH21176p 10.85 7 9 7 64971.1353 8 +Q7K1H0 GH09096p 16.67 6 8 6 33448.73543 8 +Q7K1M4 SD04017p 17.31 5 15 5 46028.00094 13 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 85469.0386 10 +Q7K1W5 LD35843p 23.4 10 26 10 348957.1103 22 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 17968.1652 5 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 529097.29757 23 +Q7K2E1 LD05247p 9.07 5 13 5 120915.0803 11 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 6582.32825 2 +Q7K2L7 GH27120p 17.59 3 5 3 86767.3136 4 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 36174.486430000004 8 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 4366.58124 3 +Q7K2P3 GH20817p 63.48 14 46 1 275767.42402 38 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 10528.122370000001 4 +Q7K2W6 tyrosinase 23.91 16 34 16 137517.52909 23 +Q7K332 GH17623p 6.28 2 11 1 27444.4566 7 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 203868.7756 18 +Q7K3E2 LD34147p 38.81 22 51 22 471707.34103999997 40 +Q7K3H0 LD28067p 2.93 6 10 0 39880.92547 7 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 729740.62912 41 +Q7K3N4 GH26015p 16.49 7 13 7 95204.4482 8 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 33137.3239 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 94847.44662 19 +Q7K3W4 GH08941p 24.88 8 21 8 214961.54716 18 +Q7K3Y9 Spondin-1 5.04 5 7 5 13147.2556 4 +Q7K3Z3 GH01724p 39.07 15 44 15 644577.36882 40 +Q7K485 Cathepsin D 25.51 7 29 7 903214.37471 23 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 19673.1045 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 5554.312 1 +Q7K4J7 LD36653p 4.06 1 1 1 3674.9531 1 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 11803.0487 2 +Q7K4T8 LD23856p 8.52 4 6 4 18667.971859999998 5 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 12954.45134 3 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 73056.61745 8 +Q7K519 GH16429p 6.75 3 3 3 18803.9064 2 +Q7K549 GH13040p 6.1 3 4 3 2686.4201 2 +Q7K561 GH11294p 1.75 1 1 1 512.99426 1 +Q7K568 GH10642p 13.82 5 11 5 89874.13927 10 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 701462.9105 40 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 257321.76786 21 +Q7K5M6 GH04176p 19.59 6 16 6 144006.9604 14 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 301201.3168 20 +Q7K860 FI07231p 33.33 5 18 5 419195.60075 15 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 593514.52953 23 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 2276.8198 1 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 8541.08405 6 +Q7KK54 MIP07328p 2.21 2 3 2 14202.6067 3 +Q7KK90 GH14654p 47.77 7 29 7 1203579.54827 26 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 183992.18562 21 +Q7KLE5 Amphiphysin 41.86 27 94 3 1879840.2266199999 78 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 110188.89893 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 177447.7543 11 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 69414.69200000001 4 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 4932.8523000000005 2 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 184502.7971 13 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 1109015.3241 49 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 9203.02637 4 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 5212.5977 1 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 281394.05282 39 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 4355279.57024 92 +Q7KND8 FI09619p 9.18 8 10 8 25371.44006 9 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 346409.72186 19 +Q7KRT4 GH07253p 2.47 1 1 0 2699.3289 1 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 14235.0776 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 20494.96076 6 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 46716.4396 3 +Q7KSE4 GH05443p 5.39 4 5 4 14070.3316 4 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 174049.5981 14 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 1033915.50204 25 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 14626.80535 5 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 686.17194 1 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 229516.63856 30 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 645739.53201 26 +Q7KT58 GH08155p 7.03 4 6 4 14061.4918 5 +Q7KT70 FI18641p1 4.18 4 4 4 11747.45083 4 +Q7KTA1 HL01444p 20.43 10 22 10 65285.00334 17 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 126147.65577 24 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 2734974.19456 76 +Q7KTN9 FI01009p 4.26 3 3 0 5013.1854 2 +Q7KTP7 LP22840p 61.88 10 18 10 130547.8408 16 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 2245793.14691 44 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 150002.64994 18 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 8996.0591 3 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 337085.67993 34 +Q7KUD4 phospholipase A2 3.95 4 6 0 14076.5817 5 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 130660.22772 24 +Q7KUT5 Protein MIX23 21.01 3 4 0 12190.8475 3 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 29082.6509 4 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 19589.3055 4 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 195874.21789 25 +Q7KV27 alanine transaminase 47.01 23 110 0 5786689.1701 99 +Q7KV34 Pinkman 39.06 24 47 24 1576847.97932 44 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 11999.647 1 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 1633.6133 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 107329.9239 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 3167.2766 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 3047689.43951 78 +Q7KY04 small monomeric GTPase 15.96 3 10 2 21319.557 2 +Q7PL91 GEO11417p1 26.6 3 13 3 169370.47538000002 10 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 4278.471 1 +Q7PLI0 P120 catenin 10.5 10 17 10 85099.82735 13 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 204420.39755 28 +Q7PLS1 LD01937p 11.46 5 8 0 24109.1577 7 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 21614.9725 4 +Q7YU88 SD08871p 5.67 6 8 0 6430.5401 4 +Q86B44 Glutathione synthetase 11.03 6 11 0 78450.78215 7 +Q86B74 WASp, isoform C 16.19 7 10 0 6884.5905 5 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 5577.039 1 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 5730.7401 2 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 110796.07860000001 23 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 113260.20452 14 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 483009.22755999997 35 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 293784.63356 23 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 645422.42825 26 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 356986.86672 43 +Q86BS3 Chromator, isoform A 27.65 20 50 20 206313.70112 40 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 10442.7333 4 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 186793.42223 16 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 21430.80576 5 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 70634.65703999999 7 +Q8I0D4 RE20510p 20.9 17 39 0 752013.85964 28 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 12108.991 5 +Q8I0P9 acid phosphatase 1.76 1 2 0 5057.874 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 92457.71899 19 +Q8I930 GH14147p 4.68 3 4 0 5848.482400000001 2 +Q8I941 GH16843p 28.83 7 29 7 210601.7516 25 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 8132.137540000001 4 +Q8IGY1 RE08101p 33.61 41 326 0 8823311.22266 144 +Q8IH23 GEO02102p1 43.7 5 11 5 43908.96326 9 +Q8IM93 FI18814p1 36.72 17 40 17 168121.61415 27 +Q8IMF4 RE24176p 10.11 5 7 0 11953.695300000001 4 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 493309.3841 23 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 19072.0282 3 +Q8IMQ8 RH29536p 33.72 10 31 0 330525.1076 27 +Q8IMT3 IP12392p 5.95 3 4 3 7176.164 2 +Q8IMT6 FI01822p 6.64 3 6 3 53855.40275 6 +Q8IMU2 RE10237p 13.88 3 5 0 22913.5256 4 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 414.20795 1 +Q8IMX4 FI04408p 6.6 2 7 0 25535.2609 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 80326.3906 11 +Q8IN49 MIP05539p 7.19 7 14 7 91532.17237999999 11 +Q8IN51 FI17609p1 21.17 3 9 3 29222.88608 7 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 2568.1304 2 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 33960.1962 4 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 17971.5114 4 +Q8INH5 Aminopeptidase 5.65 6 9 0 21371.1671 8 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 29908.4156 5 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 27833.6518 7 +Q8IP52 RE16941p 3.69 4 4 4 941.5967499999999 2 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 3733.4113 3 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 330213.97676 26 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 24601.546599999998 5 +Q8IP97 Peroxin-19 54.11 10 30 10 660354.95667 26 +Q8IPA5 RE15581p 6.07 2 2 0 13005.169 1 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 20519.95409 7 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 159948.8707 10 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 2809410.97529 105 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 43969.3607 11 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 2162.454 1 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 199225.62454000002 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 591.68445 1 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 36738.53846 3 +Q8IPT9 SD05439p1 36.84 12 19 0 472636.54410000006 15 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 769519.88975 44 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 9327.02554 3 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 25510.09098 12 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 27417.5557 11 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 15712.7609 4 +Q8IQB7 MIP21654p 9.44 3 5 3 1045.81441 3 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 19060.63004 4 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 45241.81325 10 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 39819.89674 4 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 12160.5871 3 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 55293.9264 11 +Q8IQH0 FI12817p 5.22 8 11 0 37592.10163 10 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 81818.18615 10 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 6596.29504 4 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 80191.92805 24 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 39967.278900000005 3 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 33456.020000000004 4 +Q8IQW5 RE23625p 79.17 16 78 4 2612194.99871 61 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 773.3211 1 +Q8IR72 FI19011p1 10.06 1 3 1 12868.8997 3 +Q8IR76 FAD synthase 12.59 4 7 0 21966.96155 6 +Q8IRD0 RH17559p 42.86 3 12 3 98277.2368 10 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 3159456.64446 72 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 166047.55131 26 +Q8IRI5 Trio, isoform D 8.83 7 10 0 34777.6777 8 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 7169313.1610199995 150 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 24504.5262 4 +Q8MLP9 GEO08457p1 16.96 2 5 2 5815.0541299999995 5 +Q8MLQ0 FI14118p 21.05 2 3 2 40658.9395 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 85700.3034 10 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 39763.7553 5 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 637.2006 1 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 150899.4818 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 1980380.48469 73 +Q8MQP2 MIP16184p 7.0 2 5 0 42029.735 4 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 23928.367 2 +Q8MRM0 GH16740p 23.63 6 17 6 107281.2626 14 +Q8MRS5 AT03104p 3.18 3 3 0 2201.8994 1 +Q8MRT7 SD26038p 13.22 3 7 3 37564.94684 7 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 6090.843 2 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 5302.7939 2 +Q8MSI2 GH15296p 77.78 17 127 17 5712203.10874 100 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 6718.3151 3 +Q8MST5 Tubulin beta chain 47.92 18 97 0 797301.34307 35 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 1561252.49101 56 +Q8MZ07 GEO07581p1 10.96 2 5 2 14752.335500000001 3 +Q8MZI3 RNA helicase 17.36 13 23 6 111194.56073 15 +Q8SWS2 RE29468p 39.05 5 14 0 185177.3162 10 +Q8SWS3 RE26528p 17.13 2 3 2 84609.58840000001 3 +Q8SWZ6 RH51312p 8.33 2 3 2 3661.4912 2 +Q8SX35 GEO07743p1 33.33 3 8 1 48425.18125 7 +Q8SX50 RE04530p 14.96 6 11 0 30326.152869999998 11 +Q8SX54 CLIP domain-containing serine protease 2.78 1 1 1 448.35602 1 +Q8SX57 LD44221p 42.41 8 19 8 142673.9057 16 +Q8SX78 LD05679p 19.7 8 11 8 25114.1986 7 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 24454.501 5 +Q8SXC2 FI04487p 7.56 4 4 4 12793.5234 3 +Q8SXD5 GH02216p 53.85 11 59 2 892827.09012 47 +Q8SXE1 RH69521p 6.23 3 3 3 773.7243 1 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 59228.0861 7 +Q8SXF2 RH40246p 10.75 5 7 5 18307.1365 6 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 4419.22658 2 +Q8SXK0 RE18748p 10.55 3 3 3 5122.350549999999 3 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 152245.33959 26 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 15267.1883 3 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 158463.07007 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 185059.59475 5 +Q8SXS0 RE40914p 11.92 4 6 4 9055.2947 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 392654.537 22 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 14664.064040000001 5 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 160796.6497 8 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 2129.97626 2 +Q8SY67 lysozyme 35.85 3 3 3 42096.233 2 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 198112.3365 10 +Q8SYC4 RE68566p 1.97 1 1 1 2533.838 1 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 1711128.89906 77 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 302618.58439 16 +Q8SYH8 RE57644p 19.78 5 13 1 76793.2789 8 +Q8SYJ2 GEO09626p1 61.45 8 53 8 3332958.65899 48 +Q8SYN0 RE52086p 9.56 4 5 4 7832.11698 4 +Q8SYQ4 RE42475p 52.03 10 68 10 745929.3176300001 52 +Q8SYQ8 RE40412p 32.35 5 10 5 30638.38604 10 +Q8SZK5 RH26533p 10.93 3 5 3 15131.9168 5 +Q8SZK9 HL04814p 47.19 11 54 11 1983711.70583 46 +Q8SZM2 RH04334p 28.15 10 38 10 1258378.51806 33 +Q8SZN1 GEO08217p1 51.61 7 31 3 595529.12083 28 +Q8T0I9 GH27479p 23.63 10 27 1 295168.28059 21 +Q8T0J5 GH26851p 29.62 9 33 0 521797.89946000004 31 +Q8T0N5 GH17516p 16.56 6 16 6 255582.1464 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 37407.40314 6 +Q8T0V2 GH02495p 21.25 10 23 0 109797.81137000001 18 +Q8T389 Endophilin B 56.35 18 77 0 6730.3364 1 +Q8T3V6 Large ribosomal subunit protein uL29m 6.27 2 2 2 728.9729199999999 2 +Q8T3W8 Venom allergen-1 20.61 6 10 0 25307.94107 7 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 430339.64759999997 37 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 1396372.26877 62 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 15070.983 2 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 9092.959 1 +Q94513 Boundary element associated factor 12.41 5 12 1 23969.016630000002 6 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 31534.1197 5 +Q95NU8 GH16255p 16.25 8 18 8 87154.61261000001 16 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 27180.70885 3 +Q95PE4 GEO07784p1 6.17 1 1 1 515.6074 1 +Q95R34 GH16463p 9.71 3 4 3 14206.778599999998 2 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 42275.39903 4 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 44518.608290000004 15 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 13882971.47267 134 +Q95RE4 LD37574p 44.32 15 30 1 32528.33297 19 +Q95RF6 LD34461p 43.27 5 7 5 60764.2822 5 +Q95RI2 LD28549p 27.78 9 14 9 30490.25453 9 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 31393.336600000002 7 +Q95RQ1 LD16414p 3.71 2 2 2 838.393 1 +Q95RR6 LD15002p 64.6 17 77 0 46378.85 2 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 86323.1587 12 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 250277.4728 4 +Q95RY2 LD01461p 20.61 5 11 1 85271.49405000001 9 +Q95SH0 GH26463p 5.58 5 6 5 6947.517 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 309987.16445 28 +Q95SH7 GH26007p 7.94 2 3 2 680.9516000000001 2 +Q95SI7 GH23390p 75.09 17 43 17 1291452.77612 40 +Q95SN8 GH12395p 26.76 5 14 5 119161.71800000001 11 +Q95TK5 LD44914p 12.95 7 17 7 107861.8336 13 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 451517.97324 34 +Q95TP0 LD34582p 1.97 1 1 1 4083.3862 1 +Q95TZ7 GH19182p 79.35 28 155 0 2754214.82103 115 +Q95U15 GH14252p 82.05 32 274 0 1550845.0855999999 24 +Q95U34 GH11113p 20.41 10 36 10 277701.60375 28 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 62359.16883 6 +Q960D4 SD06560p 22.09 14 22 0 182885.29005 19 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 4444136.56068 80 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 136182.78033 26 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 11418.984499999999 4 +Q961B9 LD24073p 8.37 4 4 4 10568.11547 2 +Q961C8 LD22649p 15.3 5 10 0 21615.531929999997 7 +Q961E7 phosphorylase kinase 10.74 5 5 1 20994.97188 4 +Q961K6 GH19047p 4.19 3 3 3 7531.9964 3 +Q961Q8 GH10454p 10.86 5 7 5 45837.70376 6 +Q961T9 GH07914p 35.88 6 11 6 100725.21327 9 +Q961X4 Combover, isoform B 10.01 8 13 0 52577.16906 10 +Q966T5 Paxillin, isoform D 37.06 7 18 2 53204.4288 7 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 33671.7351 8 +Q9I7I3 GH12831p 9.56 3 4 3 6691.6006 4 +Q9I7J0 GH21596p 73.37 11 57 11 1457234.2428000001 44 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 18279.1355 3 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 16650.28914 7 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 930441.01884 26 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 1543057.60055 18 +Q9NCC3 Sorting nexin 14.34 8 16 8 92127.7381 16 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 64789.49165 7 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 86479.23663 13 +Q9U6P7 FI18813p1 14.35 7 9 7 42571.0988 9 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 749302.92792 41 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 17965.6521 5 +Q9V393 Kurtz arrestin 10.0 5 9 5 113196.59487 8 +Q9V396 Carbonic anhydrase 46.67 12 54 12 1157615.56558 44 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 54303.83575 7 +Q9V3C8 DShc protein 3.42 2 3 2 5262.3506 1 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 107179.18346999999 13 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 7747.7771 2 +Q9V3E7 LD24793p 42.48 12 35 12 373348.54525 30 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 12905.419 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 205319.47621999998 13 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 2895.8645 1 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 19387.27957 7 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 134967.897 6 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 1084166.04565 46 +Q9V3N9 B6 5.73 4 6 4 21654.06386 4 +Q9V3P3 LD45860p 40.0 10 21 10 501396.85251000006 19 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 77947.5417 8 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 7486.4557 3 +Q9V3T8 LD32469p 14.36 4 5 4 39349.0444 5 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 1131088.28744 39 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 770427.34447 39 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 1528652.4895 53 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 524398.34914 33 +Q9V3W2 GM23292p 61.08 12 86 12 2475392.38797 70 +Q9V3W7 LD40489p 41.18 10 24 10 202443.0427 16 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 143475.78128 26 +Q9V3Y4 LD43650p 6.65 2 4 2 3098.5745 1 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 165854.70375 27 +Q9V3Z4 GH11341p 22.31 12 31 12 134072.08418 24 +Q9V3Z9 HL02234p 46.21 14 53 14 2046569.03054 38 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 16214.9339 5 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 586094.30618 38 +Q9V406 Activator protein 4 9.03 7 16 7 36520.97254 9 +Q9V420 FI02878p 13.91 5 10 5 63314.609840000005 10 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 178482.91451 15 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 18259.5495 3 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 156455.5473 8 +Q9V455 Importin subunit alpha 15.95 9 16 9 252538.12272999997 12 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 424379.74197 33 +Q9V491 Plexin A, isoform A 1.03 2 2 0 1422.49793 2 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 998718.32817 50 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1324658.5546 63 +Q9V4E0 Complex I-49kD 26.28 9 14 8 182222.26369 13 +Q9V4E7 Transporter 3.62 3 6 2 19993.6362 5 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 5718.75 3 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 98823.8501 10 +Q9V9Q4 LD43819p 24.01 9 22 9 248593.0657 16 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 90783.6155 2 +Q9V9T5 GM14617p 15.04 10 14 1 31701.76199 10 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 2701.72466 2 +Q9V9U0 RE35358p 10.11 2 3 2 732.935 1 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 104279.12745 11 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 2408.78925 2 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 135873.11696 13 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 430074.124 20 +Q9V9W4 GH08048p 3.6 2 2 2 753.91724 1 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 2228.4992 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 60329.8045 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 2614113.7183600003 81 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 105397.61738 10 +Q9VA34 LP06141p 3.64 4 5 4 11972.116100000001 4 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 146351.57335 23 +Q9VA41 GEO08227p1 42.04 6 16 2 86784.50739 7 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 372167.32058 16 +Q9VA56 GH23271p 60.79 20 66 1 2287.09 1 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 17070.1898 3 +Q9VA71 FI19924p1 6.19 3 3 3 10825.40006 3 +Q9VA76 IP18706p 11.33 4 8 4 20571.620300000002 4 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 4173.4884 2 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 248638.04616 17 +Q9VAA6 GEO12235p1 10.76 2 6 2 21846.8465 5 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 60711.81264 13 +Q9VAC1 GM14349p 63.31 21 113 21 7951697.64445 90 +Q9VAC4 GEO09167p1 23.08 3 12 3 294958.9868 10 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 23398.53904 10 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 7197.296469999999 2 +Q9VAD7 RH37294p 11.56 2 3 2 1981.1206700000002 3 +Q9VAG3 trypsin 11.46 3 6 3 59823.2973 5 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 26327.7215 5 +Q9VAI9 GEO07291p1 62.25 9 62 5 1733273.7050100002 38 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 150383.76512999999 13 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 6720.1072 3 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 1065272.69919 61 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 11052223.75246 94 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 63060.2107 8 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 3804.09251 4 +Q9VAU6 LD27564p 2.62 2 2 2 9929.3323 2 +Q9VAV2 FI21480p1 16.09 13 25 13 97665.153 20 +Q9VAY0 Neprilysin 7 5.58 4 4 4 5320.60272 4 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 1162629.45845 75 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 22770.196600000003 2 +Q9VAY9 GH07821p 4.83 2 2 2 23425.4494 2 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 677771.53949 48 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 1293011.4287 47 +Q9VB17 IP11341p 10.12 4 7 4 26106.6323 5 +Q9VB22 LD33695p 13.07 8 14 8 145420.13603 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 74206.36556 15 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 190221.7163 9 +Q9VB66 CLIP domain-containing serine protease 7.35 3 3 2 592.4509 1 +Q9VB69 Malic enzyme 19.45 12 25 1 83240.98693 18 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 21074.5522 4 +Q9VB77 IP09938p 4.06 1 2 1 2291.20924 2 +Q9VB78 Eater 12.38 3 7 3 7390.82926 3 +Q9VB79 IP09473p 14.19 5 15 5 37593.663870000004 12 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 804720.6306 54 +Q9VB86 LP07342p 7.34 1 1 1 6483.937 1 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 349750.24686 24 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 10206.2885 8 +Q9VBC9 Beaten path VII 3.68 2 4 2 16387.6257 4 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 2003473.19932 54 +Q9VBI3 RH72336p 22.66 7 23 7 154932.92537 18 +Q9VBL3 GH01188p 8.54 5 6 5 4268.30341 5 +Q9VBN5 60S ribosomal protein L27 5.93 1 1 1 338.01468 1 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 17025.0201 3 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 4400024.92565 127 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 16530.2889 3 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 464877.3264 19 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 16952.75047 6 +Q9VBT2 IP11926p 4.57 2 2 2 2242.9849 1 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 11996.988 4 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 646811.79625 10 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 21521.5091 3 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 21091.1595 3 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 1199073.64934 58 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 17626.6713 4 +Q9VC06 LD37516p 12.05 9 12 9 63472.76217 11 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 2280.4858 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 172580.75098 23 +Q9VC30 RE05274p 13.98 3 7 3 4263.391799999999 2 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 50002.185119999995 9 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 112608.24904 14 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 121253.5216 9 +Q9VC58 Syntaxin-18 6.08 3 3 3 1127.245 2 +Q9VC66 AT25567p 25.62 12 25 12 104951.60316 23 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 15637.2722 4 +Q9VC87 RE57978p 7.51 3 5 3 9822.876 2 +Q9VCB9 FI08802p 6.15 2 2 2 21769.81304 2 +Q9VCC9 LD23779p 2.55 3 5 3 4601.4443200000005 3 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 5662.7886 3 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 80864.2315 7 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 15023.63383 7 +Q9VCF8 LD23561p 10.51 4 8 4 41398.221900000004 7 +Q9VCI4 LD32918p 5.33 4 7 4 1288.8975 3 +Q9VCI7 LD02979p 12.03 5 12 1 116168.06434999999 9 +Q9VCK6 LD34157p 14.88 7 11 7 37525.6755 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 38976.885500000004 7 +Q9VCR4 FI17836p1 3.66 3 5 3 8143.6612000000005 3 +Q9VCR9 RH48101p 20.22 8 34 8 237337.61818 30 +Q9VCT4 Klingon 5.69 3 4 3 2124.0524299999997 3 +Q9VCU0 GEO02312p1 33.33 4 15 4 40920.430850000004 12 +Q9VCU1 FI07649p 2.77 2 2 2 438.5558 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 30272.1127 4 +Q9VCW2 Cardinal 11.33 9 12 9 17741.07653 8 +Q9VCW6 GCS light chain 37.54 12 34 12 302447.83767 29 +Q9VCZ2 FI07970p 5.96 3 4 3 5672.8412 2 +Q9VD00 FI07666p 15.11 4 16 4 116691.58665 14 +Q9VD01 LP12095p 8.52 2 4 2 52290.5143 4 +Q9VD02 GH14779p 37.99 5 19 5 234161.66707 16 +Q9VD13 GH02671p 17.26 8 11 1 52809.347200000004 7 +Q9VD14 GH07286p 11.88 8 21 8 154344.42973 21 +Q9VD29 small monomeric GTPase 48.19 9 26 9 1428377.2577 19 +Q9VD30 GH05294p 74.19 12 43 12 2058406.72916 41 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 11562.66696 3 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 3354776.74838 85 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 12911.7761 3 +Q9VD68 GH19849p 4.3 2 3 2 13041.463899999999 3 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 33218.36466 5 +Q9VDC0 GH01837p 28.0 5 14 5 44755.430120000005 10 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 42944.2339 4 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 417826.0709 10 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 274398.8336 4 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 154973.32676 28 +Q9VDH3 GH08630p 66.23 13 38 13 1102818.40751 31 +Q9VDI1 LD46328p 53.04 22 79 0 702815.29855 61 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 8490.88132 3 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 34083.73567 5 +Q9VDK2 GH15831p 5.72 4 6 3 20477.1024 5 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 137788.4762 20 +Q9VDK9 GH12359p 6.46 4 6 4 44003.1594 5 +Q9VDL5 GEO09602p1 13.43 1 2 1 11415.6919 2 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 320774.39414 20 +Q9VDQ3 Identity crisis 6.53 4 4 4 874.7016 1 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 242987.81634 20 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 272887.8304 14 +Q9VDU7 nicotinamidase 15.69 5 15 5 155848.4864 13 +Q9VDV2 AT06125p 8.54 4 4 3 3224.88972 2 +Q9VDY8 MIP08680p 57.35 14 64 1 986631.4166 52 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 732700.3895 70 +Q9VE08 GH10002p 8.92 2 3 2 4552.1778699999995 2 +Q9VE12 LD27322p 14.81 5 12 5 32839.9568 8 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 21910.47547 6 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 33935.88997 7 +Q9VE56 FI17806p1 7.14 2 3 2 64789.0306 3 +Q9VE57 GEO10850p1 12.41 2 3 2 9720.6787 3 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 1660.45032 2 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 30890.04 3 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 30915.75013 9 +Q9VE94 LD14127p 12.24 5 6 5 8675.289929999999 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 199604.02847 14 +Q9VEA7 FI01460p 28.09 1 3 1 6998.5996000000005 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 21361356.75077 238 +Q9VEB7 AT04491p 5.94 3 3 3 18621.8529 2 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 31080.879949999995 4 +Q9VEC6 LD29902p 8.94 10 24 0 429.2457 1 +Q9VEC8 RE23139p1 14.62 2 4 2 24469.7076 4 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 72793.43646 9 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 12271.209 1 +Q9VEG8 RE59232p 2.8 1 1 1 38022.156 1 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 17370.2452 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 561608.28031 34 +Q9VEJ9 Curly Su 1.2 1 2 1 13073.1109 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 145418.8842 9 +Q9VEK8 GH07711p 34.05 12 33 12 203530.42251 27 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 88282.25279 18 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 3159.4446 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 20233.31548 7 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 150049.1645 22 +Q9VEP8 GH11385p 13.2 10 14 10 52168.868 10 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 84193.34632 17 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 22802.35683 6 +Q9VES8 RE28913p 27.34 8 16 8 32439.745860000003 12 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 42981.078299999994 3 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 133851.06622 21 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 892.94586 1 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 8167.587100000001 2 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 93633.7334 21 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 30137.972 3 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 1372121.33015 33 +Q9VEY9 GH15759p 2.33 1 1 1 460.97614 1 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 77260.21089999999 14 +Q9VF15 GEO09476p1 81.05 12 61 8 1422698.78177 49 +Q9VF23 arginine kinase 7.22 4 6 4 16381.4902 2 +Q9VF24 Crossveinless d 5.1 8 12 8 42021.1459 10 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 87162.39694 11 +Q9VF39 FI01459p 4.13 2 2 2 16223.812 1 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 150529.70190000001 21 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 26354.9571 6 +Q9VF77 FI16517p1 10.07 4 7 4 19115.31383 5 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 20893.4875 3 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 160522.99850000002 11 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 26743.873 2 +Q9VFC7 Mf5 protein 84.38 37 292 0 5548576.95881 188 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 2341.7824 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 7625632.91249 119 +Q9VFI3 GEO08281p1 21.15 1 1 1 5425.2837 1 +Q9VFM0 GH19262p 4.96 3 5 3 6337.98118 3 +Q9VFN7 GEO07678p1 20.13 4 19 4 246781.19358 16 +Q9VFN9 GEO07882p1 15.32 2 6 2 20743.53283 4 +Q9VFP0 RH07106p 17.84 7 11 7 57152.9042 10 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 733317.23866 29 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 366912.52598 23 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 17332.2127 6 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 29534.11744 5 +Q9VFT4 AT27578p 10.58 6 11 6 17030.29776 8 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 16785.81064 5 +Q9VFV1 RE55542p 2.83 2 2 2 21545.749 2 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 1172451.2333 54 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 79993.92809999999 10 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 14030.9167 4 +Q9VG01 RE12073p 5.26 3 3 3 3055.6452 2 +Q9VG04 Protein MEMO1 10.85 4 6 4 6154.6005 3 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 5203.8745 1 +Q9VG23 GH22994p 65.12 12 32 1 994394.6222999999 27 +Q9VG26 MIP06012p 38.03 8 22 8 435407.9416 19 +Q9VG28 Beaten path Vc 2.36 1 3 1 451.91818 1 +Q9VG31 Malic enzyme 16.64 15 41 0 428809.62273 36 +Q9VG33 Sulfurtransferase 73.64 6 14 6 514936.1725 14 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 77322.2574 7 +Q9VG44 RE14195p 2.84 2 2 2 488.58386 1 +Q9VG51 Sorting nexin-3 55.69 9 28 9 158436.01364 23 +Q9VG62 Toys are us 1.44 1 1 1 1983.6079 1 +Q9VG69 LP03547p 32.01 11 35 11 409782.46154 29 +Q9VG81 RH49330p 11.83 6 15 6 60203.97519 11 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 69573.81023 5 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 296624.95276 15 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 7194.6098 2 +Q9VGA3 LD12305p 35.91 7 32 6 304100.85228 25 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 2917.99997 2 +Q9VGE4 FI04457p 9.25 11 16 11 37240.3026 9 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 9016.40698 5 +Q9VGF3 IP11040p 11.88 5 6 5 11898.492699999999 4 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 254311.56495 26 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 123673.1245 10 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 85987.1505 8 +Q9VGL0 LD43047p 2.84 4 6 4 1571.1461 2 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 12907748.41236 201 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 28383.3247 7 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 2909126.09555 73 +Q9VGQ8 Arfaptin 6.76 3 4 3 22027.621600000002 3 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 6797.349 2 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 7327.6443 4 +Q9VGS3 RH44771p 14.04 3 26 3 555652.0493300001 21 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 18110.575 2 +Q9VGT3 GM04645p 5.3 3 5 3 1292.18755 2 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 19739.2618 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 13704.21594 4 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 29112.2333 3 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 52757.5033 6 +Q9VGY2 Peptide deformylase 10.08 3 4 1 11703.0753 4 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 773.044 1 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 106119.70955999999 17 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 45408.65575 5 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 161694.47913 16 +Q9VH37 IP06524p 14.29 3 4 3 20006.0192 3 +Q9VH63 Uncharacterized protein 3.0 2 2 2 3158.0397 2 +Q9VH64 LD29322p 10.03 4 5 4 56874.749200000006 4 +Q9VH66 FI18258p1 29.61 6 13 6 47085.659009999996 9 +Q9VH72 TA01656p1 52.94 7 23 7 297008.07624 17 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 374269.44502 37 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 23693.51244 9 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 71656.8654 7 +Q9VH85 GH14967p 3.41 3 3 3 4540.7397 1 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 124506.99278 6 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 150745.31865 10 +Q9VHA8 LD25575p 12.25 8 20 8 161935.78665 15 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 144323.03407 12 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 56502.58234 6 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 108935.9368 14 +Q9VHC7 FI21236p1 30.54 19 54 9 771469.73727 37 +Q9VHC8 LD31448p 10.06 2 2 2 461.18515 1 +Q9VHE3 GH05665p 9.38 4 6 4 33153.0155 6 +Q9VHE4 omega-amidase 17.31 5 13 5 58498.72408 11 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 49085.3867 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 84622.4859 8 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 32554.4989 8 +Q9VHH8 Beag 6.82 4 8 4 24238.55466 7 +Q9VHI1 Hyrax 7.06 4 6 4 11845.060440000001 5 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 317436.96623 20 +Q9VHJ2 LD32381p 2.65 1 1 1 2936.8289 1 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 20638.215 2 +Q9VHJ7 LD41978p 4.65 3 3 3 10905.277 1 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 610282.68744 39 +Q9VHM3 LD30467p 10.77 5 8 5 19327.62183 6 +Q9VHN4 GH14121p 9.77 3 5 3 6735.9743 3 +Q9VHN7 transketolase 22.36 14 33 2 518799.7687 24 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 6454.6562 1 +Q9VHT3 CG9617 protein 15.17 3 3 3 12752.659099999999 2 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 26418.51003 6 +Q9VHX2 GH08043p 9.4 4 7 4 12984.01525 5 +Q9VHX4 LD24679p 66.57 21 108 21 4049168.5985399997 90 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 16248.21115 5 +Q9VI09 GH14494p 49.01 6 27 6 636104.76541 25 +Q9VI21 Dementin, isoform D 3.92 3 3 0 1756.0655 2 +Q9VI24 LD25151p 7.73 3 3 3 3439.82215 2 +Q9VI53 LD44267p 14.93 6 13 6 30315.27401 10 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 22735.3746 3 +Q9VI64 LD30995p 47.03 13 57 13 871834.19589 51 +Q9VI80 Thawb 1.58 2 3 2 7550.83134 2 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 18461.81233 5 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 12961.9266 3 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 17005042.05009 257 +Q9VIF2 GM01519p 8.7 4 11 4 55104.6895 10 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 52957.82913 11 +Q9VIH1 CG9273 protein 16.67 5 12 5 22012.10851 10 +Q9VII5 GEO08323p1 25.79 4 13 4 77874.09846000001 10 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 5277.2046 1 +Q9VIJ3 FI14214p 12.78 2 3 1 617.36017 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 1207.81212 2 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 45655.20763 15 +Q9VIL2 LD19544p 8.63 3 8 3 49366.5401 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 144613.85502000002 17 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 57739.07915 5 +Q9VIQ5 RH02620p 27.49 7 16 7 17123.10926 8 +Q9VIQ6 FI17342p1 14.79 3 8 3 48653.0045 7 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 1310806.00386 42 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 16538.707300000002 3 +Q9VIU3 FI23988p1 6.9 3 4 3 9795.51333 4 +Q9VIV6 GH04973p 4.56 2 2 2 919.9942 1 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 17257.8984 3 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 1613.0643 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 24593.2011 2 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 99568.30502 11 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 260873.66556999995 10 +Q9VJ22 GH09876p 5.41 2 3 2 1280.8844 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 17841.6905 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 247296.13840000003 13 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 39141.65416 8 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 788178.84127 38 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 46090.77933 11 +Q9VJ60 GM16226p 12.15 3 7 3 41069.0092 7 +Q9VJ61 SD03870p 9.81 5 6 5 16762.8554 5 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 166190.37781 17 +Q9VJ80 LD42267p 6.89 9 15 9 49323.797699999996 13 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 56993.12 11 +Q9VJA9 GH07373p 0.94 1 1 0 4147.259 1 +Q9VJC0 GEO08203p1 37.23 5 6 5 42511.890400000004 4 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 39084.99671 6 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 130190.80129999999 25 +Q9VJD4 LD24721p 33.84 12 37 12 773757.38345 26 +Q9VJE3 LD24839p 14.6 7 7 7 24241.886 6 +Q9VJH8 FI03416p 5.71 4 5 3 25132.0531 5 +Q9VJI5 Protein yellow 13.91 7 13 7 51194.97135 11 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 205984.723 13 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 388278.9623 24 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 11594.77355 2 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 70900.38506999999 7 +Q9VJQ3 Protein yellow 22.83 9 30 8 777323.095 30 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 41067.031970000004 4 +Q9VJU6 IP09831p 15.87 4 4 4 16892.1274 2 +Q9VJU8 GH23407p 8.48 4 9 4 25254.115619999997 5 +Q9VJX3 B4, isoform A 2.44 3 3 3 3160.30418 3 +Q9VJZ1 FI21342p1 8.24 5 6 5 12685.3823 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 1606206.89833 48 +Q9VJZ5 LD07294p 17.89 6 14 6 38259.376000000004 9 +Q9VJZ6 LD40224p 67.13 10 28 10 458548.86947 22 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 82696.89516 7 +Q9VK11 GH15921p 17.8 5 15 5 225500.5145 15 +Q9VK12 GH20621p 54.0 15 86 15 2240684.81473 64 +Q9VK18 LD36945p 10.11 5 7 5 9087.13632 5 +Q9VK19 FI07225p 7.72 2 2 2 1662.2056 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 741.6351 1 +Q9VK31 LD35592p 3.65 2 2 2 3539.26913 2 +Q9VK39 FI09204p 45.28 4 21 4 93160.53901 14 +Q9VK43 LD10135p 8.24 3 3 3 2069.3228 1 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 819.19586 1 +Q9VK59 LD23647p 32.84 31 71 31 326542.60115 48 +Q9VK60 GH25425p 49.42 10 45 10 1678221.19346 38 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 715948.63115 41 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 153570.82143 16 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 284080.3962 14 +Q9VK99 Atilla, isoform B 51.75 9 42 9 538574.46497 31 +Q9VKA1 FI02817p 15.58 3 7 3 2814.7967 2 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 12022.4504 2 +Q9VKC8 FI03495p 11.04 7 13 7 177463.86707 11 +Q9VKD9 MIP16835p1 2.3 2 2 2 4798.4919 2 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 10737326.68002 365 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 45838.21864000001 8 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 31669.851 7 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 4877.5664 1 +Q9VKI8 GH03305p 80.72 20 131 20 2538968.1506000003 102 +Q9VKJ4 Csl4 22.06 4 6 4 8611.61655 3 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 1816429.96436 49 +Q9VKM7 AT01533p 9.31 7 9 4 92391.44809 8 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 90456.19352 16 +Q9VKQ5 GEO07393p1 29.03 3 3 3 11143.774000000001 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 770.43 1 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 393360.44344999996 22 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 22395.5235 5 +Q9VKU5 LD37206p 7.02 2 3 2 2105.2078 1 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 614597.65545 35 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 15918.7638 4 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 14738.537499999999 5 +Q9VKW1 LD41958p 8.58 4 7 4 7947.7293 4 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 50595.12943 9 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 24.03 3 3 3 538.04425 1 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 5614033.34763 132 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 275411.7125 15 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 20805.78198 9 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 170192.10986 17 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 410705.64762 45 +Q9VL02 GH08677p 6.78 3 4 2 22883.5737 4 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 28690.39164 6 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 11303.62637 3 +Q9VL16 RE45833p 30.13 6 46 6 922736.10344 39 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 4245.009 2 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 4227.5176 1 +Q9VL57 RE10231p 3.23 2 2 0 320.36166 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 15498.3059 6 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 18874.3836 3 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 1084615.15127 40 +Q9VL70 HL08109p 78.89 30 118 30 5843320.02526 102 +Q9VL71 LD29830p 7.02 4 5 4 2329.86776 4 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 66895.0467 5 +Q9VL91 LD23102p 2.06 2 2 2 2478.7944 2 +Q9VL93 GEO07195p1 13.64 2 4 2 61723.221300000005 4 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 58093.30734 7 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 1330122.19562 46 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 2207589.5152000003 61 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 16516.8319 3 +Q9VLI4 Raw, isoform A 2.53 3 3 0 3660.9487799999997 2 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 29915.60577 3 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 50575.999240000005 7 +Q9VLP0 IP04187p 20.32 5 7 5 27589.50833 4 +Q9VLP1 GEO08095p1 36.49 4 22 4 91658.07213 16 +Q9VLP2 GEO08076p1 38.78 8 25 8 140626.95865 14 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 25182.610999999997 2 +Q9VLQ9 Sorting nexin 31.85 14 43 1 356405.02531 34 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 24469.93039 6 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 21496.758500000004 4 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 836972.84401 21 +Q9VLS5 LD29542p 12.08 6 8 6 24638.940010000002 8 +Q9VLS7 LD21067p 0.89 2 3 0 2541.7359500000002 2 +Q9VLT3 LD23292p 13.58 24 53 24 331925.08141 47 +Q9VLT7 IP17351p 16.35 2 5 2 144417.232 3 +Q9VLU3 IP09231p 5.4 1 1 0 544.8538 1 +Q9VLW8 LD06392p 6.75 2 2 2 13978.475 1 +Q9VLX6 HL01609p 18.95 5 9 0 32900.9054 7 +Q9VLY1 HL02931p 19.01 1 2 1 66470.62 1 +Q9VLY7 TEP1-F 4.02 7 7 7 13383.0929 6 +Q9VLY9 CD109 antigen 20.51 28 66 0 803108.97505 55 +Q9VM07 RE43931p 18.26 4 9 3 38708.6669 3 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 91837.37795 12 +Q9VM11 HL01515p 16.08 5 9 5 64432.20046 8 +Q9VM12 MIP26555p1 24.49 8 23 8 235230.01665 16 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 10647660.430540001 215 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 3211364.53926 77 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 23391.7227 3 +Q9VM47 Menin 4.98 4 8 1 22398.434930000003 4 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 5317.121300000001 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 39990.1054 8 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 34367.9605 3 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 225184.4337 10 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 34467.9709 7 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 2252293.00669 83 +Q9VMC3 LD35051p 8.64 4 4 4 6917.9323 3 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 38758.6356 3 +Q9VMC7 LP11564p 6.96 4 5 1 2183.8351000000002 3 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 36895.38321 15 +Q9VME1 FI01864p 16.46 8 16 8 69041.63426 11 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 17751.57894 6 +Q9VMF0 FI04444p 3.77 2 2 2 8016.13263 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 25364.93064 13 +Q9VMH8 GEO07746p1 53.17 8 19 8 353201.6716 16 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 438159.56298 26 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 1132818.7647199999 39 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 2582536.0968400002 41 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 112580.3296 13 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 149776.63197000002 11 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 1859240.10855 53 +Q9VMT2 GEO07854p1 71.81 9 122 1 2441312.90794 98 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 432422.45837999997 27 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 50987.283899999995 7 +Q9VMV5 Viking, isoform A 10.0 19 40 19 97474.2362 31 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 4249.731 3 +Q9VMX4 AT19154p 13.15 3 7 3 73764.01569999999 6 +Q9VN01 GH23891p 8.61 5 10 5 22783.0658 7 +Q9VN02 GH14561p 29.6 7 15 7 62674.060339999996 12 +Q9VN21 LD30155p 49.91 26 129 26 2030871.40915 112 +Q9VN39 RE74585p 17.58 6 13 1 20162.4185 8 +Q9VN44 FI07923p 16.56 15 37 15 196724.70684 27 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 217011.1056 11 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 143989.59956 14 +Q9VN86 AT14148p 14.19 6 10 6 35055.2754 8 +Q9VN88 LD45836p 35.98 7 17 7 59821.65567 14 +Q9VNA3 GH21273p 34.26 7 21 7 135656.59323 19 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 333686.37934 13 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 15890.79035 4 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 432.97043 1 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 51045.61586 7 +Q9VNF3 RE01652p 34.63 8 31 6 466701.42667 25 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 18302.6613 7 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 1259.77222 2 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 65596.09449999999 9 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 58634.704 2 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 37436.9235 8 +Q9VNI8 Hpr1 8.99 6 9 6 18687.1119 7 +Q9VNI9 IP18173p 7.05 1 2 1 9208.9263 2 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 1374168.05987 62 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 7504.30195 3 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 16013.04155 7 +Q9VNW0 GEO11142p1 17.97 2 2 2 9467.804 1 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 2338906.1386 77 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 1671215.78871 72 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 3659.0612699999997 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 20616.1652 4 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 3773.1698 2 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 12924.53216 4 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 152003.547 2 +Q9VP51 LD40450p 5.59 2 2 0 3828.5278 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 201200.54520000002 12 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 30069.6616 6 +Q9VP57 LD15904p 21.79 19 45 19 354866.52952 37 +Q9VP77 LD23875p 5.73 5 6 5 6216.52224 4 +Q9VP78 GH23156p 7.79 4 6 4 11840.25585 5 +Q9VP84 IP06402p 8.47 2 2 2 1853.5872 1 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 2179.22615 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 631.67236 1 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 11837.23234 4 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 8942.661499999998 3 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 2099160.62771 49 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 70750.03508 10 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 5576.883900000001 3 +Q9VPH6 LP10922p 6.08 4 6 1 16325.203399999999 5 +Q9VPJ0 RE58433p 17.91 8 22 2 24677.56688 12 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 12386.799 3 +Q9VPK3 AT24407p 8.72 4 13 1 34236.65414 11 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 16849.50664 5 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 1070079.05815 82 +Q9VPP7 AT13539p 4.96 1 3 1 38390.494999999995 2 +Q9VPR1 GH02075p 11.35 2 3 2 18279.803 1 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 13759.72342 3 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 31306.25568 9 +Q9VPU4 FI17537p1 5.33 2 4 2 7203.9443 2 +Q9VPU6 Galectin 5.06 2 3 2 14385.0498 3 +Q9VPX0 GH26159p 6.59 4 6 4 20498.913800000002 4 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 164365.70739999998 13 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 1719350.3874 63 +Q9VPY7 LD42035p 5.27 3 4 3 4098.01646 3 +Q9VPZ5 GH04232p 15.64 8 27 8 77924.59028 16 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 13365.2065 2 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 3600674.68371 112 +Q9VQ83 RE23541p 13.29 4 5 0 35794.63163 5 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 38784.795 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1489595.72742 53 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 1129967.09105 31 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 130676.55105 6 +Q9VQE0 dynamin GTPase 20.27 14 22 14 80552.36419 15 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 5110.12607 2 +Q9VQI6 LD25952p 13.89 5 8 5 43929.62386 5 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 339771.904 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 16813.1619 3 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 1863.3564 1 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 497678.4359 27 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 851.1585 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 687679.8718 11 +Q9VQQ6 FI18122p1 19.21 10 17 0 135577.4885 16 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 1462907.33249 51 +Q9VQR5 IP10807p 2.5 1 2 1 3053.5 1 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 29900.76582 8 +Q9VQT7 RH15675p 14.63 1 6 1 1334.5900900000001 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 50409.39338 10 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 43121.84902 10 +Q9VQX3 HL05328p 6.13 2 3 2 6745.75923 3 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 3866.3313 1 +Q9VR03 AT19250p 3.98 2 2 2 3764.4611 2 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 89728.65247 8 +Q9VR30 RE58324p 11.81 5 10 5 68428.10548 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 55177.1919 12 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 15588.947 2 +Q9VR79 LD43683p 40.08 10 47 10 742933.82302 38 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 3797.0038 2 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 732483.1224 19 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 225523.6934 12 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 16711.8946 6 +Q9VRF7 GH09530p 10.57 3 5 0 4301.249949999999 3 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 64074.4802 7 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 16058.32059 6 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 939969.52905 38 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 71640.36600000001 5 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 17906.5781 2 +Q9VRK9 Kinesin-like protein 4.43 3 4 2 1175.81093 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 3408497.92179 120 +Q9VRL1 GEO06356p1 53.1 8 34 2 731629.91515 24 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 14885.70702 4 +Q9VRM8 alkaline phosphatase 1.34 1 1 1 1576.0853 1 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 9854.472 1 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 799718.13258 55 +Q9VRP3 AT08565p 17.07 5 16 5 132661.64093 9 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 17363.1253 3 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 380839.19195 18 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 75374.81237 14 +Q9VRV8 Transportin-1 2.69 2 3 2 4870.6208 3 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 37893.2476 6 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 78609.476 10 +Q9VS11 lysozyme 15.97 4 7 4 10111.929100000001 4 +Q9VS44 Uncharacterized protein 9.45 3 4 3 11107.5345 3 +Q9VS84 FI03225p 7.71 7 15 7 90974.21973 12 +Q9VSA9 CG7409 82.47 15 103 15 2879514.70511 77 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 70897.64406 10 +Q9VSC5 GM09977p 50.76 17 41 17 579233.5729 35 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 66915.0735 13 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 137943.12495 15 +Q9VSH5 IP09562p 9.77 2 2 2 3471.254 1 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 23468.4584 3 +Q9VSI1 LD21269p 7.6 5 7 5 33377.8404 6 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 2393.943 1 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 332967.28257 18 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 539153.12825 31 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 1021482.4761 42 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 118824.4305 10 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 4928.74655 3 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 19420.466200000003 3 +Q9VSM8 TBC1 domain family member 13 2.48 1 1 1 1803.118 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 105980.5271 8 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 1092472.02075 55 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 79596.66560000001 8 +Q9VSR5 GM03767p 52.75 9 24 9 715734.857 18 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 8626.3897 2 +Q9VST4 arginine kinase 4.64 2 4 2 5106.22814 3 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 1972354.88745 67 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 426793.10427 26 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 38199.3316 4 +Q9VSW7 LD21662p 5.13 2 3 1 4002.0064 2 +Q9VSX2 IP01061p 30.5 6 17 6 187545.34213 11 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 3794855.85277 60 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 171104.54212 11 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 9948.45045 5 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 123411.65244 15 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 406150.38778 28 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 451.12247 1 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 487.6773 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 43844.00613 4 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 11173.9513 4 +Q9VTB0 LD35289p 17.94 8 13 8 31703.1751 10 +Q9VTB3 Guanylate kinase 52.79 13 38 13 651921.606 27 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 887327.24767 36 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 19646.6912 5 +Q9VTC3 GH07049p 12.22 5 7 5 105467.85556 6 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 999.87994 1 +Q9VTL0 FI19917p1 10.87 4 4 4 9046.7538 3 +Q9VTP1 IP06473p 3.53 1 2 1 3333.75524 2 +Q9VTT2 LD20590p 6.65 3 4 3 8268.683710000001 4 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 880213.39047 31 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 285099.47586 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 71172.0043 3 +Q9VTW1 RE15265p 7.1 3 5 0 13767.36133 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 3843.4656999999997 2 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 630148.16191 31 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 144734.0958 12 +Q9VU04 RE60105p 11.69 3 7 3 49924.10824 5 +Q9VU13 LD45603p 8.95 5 14 0 96709.84002 14 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 37216.33 1 +Q9VU34 LD45758p 1.78 2 3 2 875.9391 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 3067190.21803 72 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 8841.0254 3 +Q9VU38 Adenosine kinase 24.64 6 14 0 343705.6689 14 +Q9VU45 LD27581p 14.79 4 24 4 45803.45723 14 +Q9VU53 Capricious, isoform A 1.85 1 2 0 1740.1786000000002 2 +Q9VU75 RH45712p 37.04 9 31 9 117919.55372 26 +Q9VU92 Uncharacterized protein 25.79 6 13 6 79584.514 10 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 1588865.5150900001 78 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 38241.85153 11 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 534308.66752 31 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 6006.74 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 48743.1259 6 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 134831.75199999998 5 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 55930.21115 7 +Q9VUQ7 RE36966p 6.21 4 11 4 32160.548600000002 8 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 23714.7123 4 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 27939.7363 3 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 10316.7131 3 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 62871.429260000004 12 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 202248.5656 5 +Q9VV13 GEO08383p1 10.71 1 1 1 25335.22 1 +Q9VV31 Uncharacterized protein 19.35 2 7 2 4840.9563 3 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 88884.89265 13 +Q9VV40 Golgin 104 2.06 2 2 2 9594.6196 2 +Q9VV42 Fat body protein 2 79.5 24 224 0 15156835.28438 173 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 8799183.13754 191 +Q9VV47 Fat body protein 2 32.05 7 29 5 1044352.5925 24 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 419278.4066 48 +Q9VV75 AT02348p 82.73 30 207 30 11026814.30193 163 +Q9VV76 Syntaxin 8 8.62 2 3 2 12786.8365 2 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 69585.47445 6 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 88028.43198000001 12 +Q9VVB5 LD46723p 28.44 16 70 1 2997.3914999999997 3 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 512625.69702 38 +Q9VVC8 LD23434p 8.08 5 10 5 38106.45948 8 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 169167.57759 26 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 3644295.8772 49 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 108228.01379 15 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 47161.2492 8 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 153056.49962000002 18 +Q9VVL5 FI11325p 21.52 7 10 7 82564.5727 9 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 7031310.79804 169 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 22337.81305 5 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 23720.12414 9 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 22676.21755 7 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 58802.2401 8 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 522210.15408 32 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1660615.95096 50 +Q9VVU2 GEO07453p1 29.53 6 31 5 447634.11968 29 +Q9VVV6 LD45843p 12.26 8 10 0 16953.52014 7 +Q9VVW7 Canopy b 12.22 3 8 3 13990.87576 7 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 3779.21292 3 +Q9VVY7 FI20154p1 12.22 16 28 0 99159.95017 21 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 51041.93 5 +Q9VW00 GH28721p 6.1 2 3 2 3700.53514 2 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 2220.8547 1 +Q9VW17 RE58036p 29.67 5 15 0 11730.6178 8 +Q9VW19 Phenoloxidase-activating factor 2 3.43 1 2 1 1000.1387 2 +Q9VW34 FI03450p 11.65 7 12 7 107937.73879999999 11 +Q9VW40 LD31235p 9.3 3 4 3 14204.3019 3 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 8344.78139 4 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 50707.72645 6 +Q9VW57 Grasp65 7.17 4 7 4 36082.80154 6 +Q9VW58 LD33138p 14.87 3 4 3 16589.593100000002 3 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 469922.77757000003 30 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 1185446.3801 44 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 5252487.703 104 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 25804.8503 5 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 67722.2262 3 +Q9VWD0 GH23568p 19.35 6 13 6 179998.46697 12 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 1373422.18609 74 +Q9VWD5 LD35087p 12.92 5 7 5 20212.26665 5 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 328756.3016 24 +Q9VWF0 LP01149p 34.31 9 18 9 53430.99579 9 +Q9VWG1 LD37169p 76.5 13 51 1 147115.9625 4 +Q9VWJ3 LD05272p 12.79 2 3 2 5816.1359 2 +Q9VWL4 GH07340p 9.39 5 11 5 33827.98505 10 +Q9VWP2 RH57257p 77.69 12 26 12 272007.43946 21 +Q9VWQ3 LD35981p 6.12 2 2 0 4337.3877 2 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 77478.97475 9 +Q9VWS1 Houki 9.33 2 3 2 51251.38373 3 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 282807.65852 31 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 21958.8295 5 +Q9VWU0 FI18411p1 2.23 1 2 1 2691.2993 2 +Q9VWV6 Transferrin 63.81 41 264 41 6679983.87831 203 +Q9VWW2 GH13094p 17.43 9 19 9 18124.688130000002 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 69686.27004 10 +Q9VX08 LD10434p 4.16 2 3 2 12053.5764 3 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 6587.07034 5 +Q9VX26 Chascon, isoform A 2.65 4 4 0 8202.80058 3 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 2687632.98844 79 +Q9VX69 FI01450p 6.57 3 29 2 91929.75589999999 7 +Q9VXA3 LP21163p 16.85 11 23 11 113559.54151 18 +Q9VXA9 RE04047p 8.03 2 3 2 6717.862 1 +Q9VXC1 MIP06432p1 36.87 6 12 3 109642.95947 11 +Q9VXC9 trypsin 49.0 9 23 9 400074.72284 22 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 25826.6865 5 +Q9VXF9 AT13091p 15.5 8 19 8 56254.823840000005 13 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 41978.611000000004 7 +Q9VXH4 RE16337p 51.96 3 7 3 48231.4762 6 +Q9VXH7 FI17510p1 22.59 6 21 6 263633.26674 17 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 281280.21446 20 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 1795627.46307 38 +Q9VXJ7 GH03748p1 11.25 12 13 12 20833.94075 8 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 119606.72912999999 13 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 18897.69843 4 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 4605.91944 2 +Q9VXM4 LD12946p 61.29 13 44 13 897932.9385 38 +Q9VXN1 LD03728p 9.22 3 5 3 4167.62477 3 +Q9VXN3 LD07988p 17.42 8 15 8 60829.41644 13 +Q9VXP3 GH05406p 12.21 7 8 7 19201.4096 5 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 44095.3093 4 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 11941.9454 4 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 529852.2861200001 43 +Q9VXR9 FI03680p 10.91 4 5 4 19759.3134 5 +Q9VXV1 RH52220p 19.02 4 5 4 13611.994730000002 5 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 164384.92136 19 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 330379.00796 17 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 195585.29949 20 +Q9VY05 GH11762p 12.2 8 19 8 116306.3693 14 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 15768.019530000001 8 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 151585.18632 14 +Q9VY27 Nucleoside diphosphate kinase 18.54 3 3 3 505.26474 1 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 14603.0079 5 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 59752.821 6 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 15406.3727 3 +Q9VY76 AMP deaminase 7.13 7 10 0 25986.50966 9 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 115726.858 7 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 116726.93315 9 +Q9VY92 GEO07753p1 73.91 8 47 8 1022455.3115 34 +Q9VYA1 RE18811p 8.56 3 6 2 21493.8161 6 +Q9VYB2 LD19061p 2.83 2 2 2 3574.4637000000002 2 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 2260.084 1 +Q9VYF0 GM09012p 14.93 4 10 4 18855.22335 8 +Q9VYG8 CG15717-PA 15.08 4 6 4 32291.44237 4 +Q9VYJ1 FI12805p 7.33 5 6 5 12051.82411 4 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 27210.16489 12 +Q9VYM0 CG2555-PA 14.21 3 6 1 4270.851360000001 3 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 3594.6881999999996 3 +Q9VYN1 protein kinase C 0.84 2 18 1 651102.5603 7 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 7392.22524 3 +Q9VYS2 GH09980p 7.06 6 7 6 24991.83706 6 +Q9VYT0 RE04130p 30.84 7 9 6 262311.8466 9 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 10834.09509 6 +Q9VYT3 FI23714p1 3.57 5 7 5 10290.790719999999 4 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 111573.38962 6 +Q9VYU9 RH17287p 45.02 7 14 7 119461.4935 13 +Q9VYV4 Amun, isoform A 4.91 3 5 3 12136.8804 4 +Q9VYV6 GEO09033p1 23.68 3 3 3 15423.7949 3 +Q9VZ00 FI19420p1 19.19 18 25 0 71181.50507 12 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 547682.36191 19 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 202472.96252 30 +Q9VZ24 GEO11412p1 44.25 7 77 7 1898845.4324 62 +Q9VZ34 RH72958p 2.64 2 5 2 8660.35674 4 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 2239.065 1 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 120659.15625 15 +Q9VZ59 LP02042p 6.12 1 4 0 26429.990100000003 3 +Q9VZ66 SD22308p 35.37 5 12 5 47638.7739 7 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 14126.76024 8 +Q9VZ71 RE01453p 9.04 2 3 2 6293.673900000001 2 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 25050.06398 6 +Q9VZE4 RE70333p 17.02 8 19 8 72895.17562 14 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 145118.1514 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 8316.8615 3 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 307485.15380000003 13 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 2506522.43091 49 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 150751.69640000002 13 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 2015276.21132 43 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 14301.88004 7 +Q9VZI1 Transgelin 82.98 14 100 1 2789082.09064 71 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 35026.6212 6 +Q9VZJ2 GH27759p 16.59 7 14 7 49843.892810000005 10 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 20799.0542 5 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 380532.1083 24 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 9823.19396 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 142681.98440000002 17 +Q9VZV2 Chitinase 7 7.7 7 9 7 31522.2231 6 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 4758.74546 3 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 22806.0788 5 +Q9VZX6 LD06441p 7.98 3 4 3 29025.997199999998 3 +Q9VZY0 LD45195p 17.62 5 10 5 48304.501500000006 5 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 5559.94253 3 +Q9VZZ5 GEO12033p1 28.67 4 10 4 158390.0062 7 +Q9VZZ6 CG16985 protein 32.21 4 10 4 116116.2176 3 +Q9W022 GEO01508p1 64.08 8 33 8 904766.61043 29 +Q9W073 RH22148p 9.41 2 2 2 8842.52413 2 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 716588.65026 16 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 279374.10902000003 15 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 29720.125500000002 8 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 26425.1166 4 +Q9W095 glycerol kinase 2.78 2 2 2 4646.81117 2 +Q9W0A8 FI01658p 18.77 5 15 5 185450.07047 15 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 345800.22422 27 +Q9W0C3 GH11843p 61.22 12 26 12 233124.32932 16 +Q9W0D3 GH15728p 1.78 3 4 3 6345.0522 2 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 24851.53 3 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 78406.72293999999 13 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 277615.54445 16 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 25030.96587 4 +Q9W0J9 GH07301p 41.93 10 20 9 233519.15217 16 +Q9W0K9 LD10220p 9.38 2 2 2 17039.598 1 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 12196.199110000001 4 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 107672.44444 16 +Q9W0M5 Protein DPCD 8.56 2 4 2 5728.00224 4 +Q9W0N6 LD27967p 16.52 5 9 5 16100.3724 8 +Q9W0P4 GEO05053p1 15.45 2 4 2 12579.20167 4 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 33368.288700000005 7 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 9589.129 1 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 42210.38593 14 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 12653.8942 2 +Q9W0U0 glycerol kinase 2.23 1 1 0 9060.352 1 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 101842.21865 13 +Q9W0X1 GH15894p 1.58 1 1 1 11555.843 1 +Q9W0X2 GEO07322p1 12.4 2 2 2 17097.03 1 +Q9W0X3 LD24657p 8.75 3 9 1 40154.313070000004 8 +Q9W0Z5 LP09747p 10.07 6 23 6 35792.28757 14 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 2982954.72778 42 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 158051.3135 6 +Q9W136 Uncharacterized protein 39.13 6 15 6 138372.5562 10 +Q9W140 Regulatory protein zeste 6.4 3 5 3 1612.3918 1 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 4011.8499500000003 3 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 1551.2404 1 +Q9W158 LD36772p 7.49 3 11 3 39210.00786 8 +Q9W199 GEO07594p1 14.84 3 3 3 7818.5938 2 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 616586.0778 26 +Q9W1C8 LD24355p 16.3 6 14 6 18681.93313 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 37008.02915 6 +Q9W1F2 FI07217p 5.93 2 4 2 23552.0036 2 +Q9W1F7 IP15825p 25.14 10 36 10 660781.63076 29 +Q9W1F8 GEO08248p1 18.05 3 10 3 58439.670979999995 7 +Q9W1G7 LD21576p 24.05 7 13 7 235224.049 8 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 46286.36205 8 +Q9W1H6 GH04238p 8.46 2 5 2 154119.697 3 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 708075.94033 43 +Q9W1I8 LD03592p 30.28 8 21 8 62271.28484 13 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 29828.2661 6 +Q9W1L8 GH11818p 5.92 2 3 2 6551.0771 2 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 6407.773800000001 3 +Q9W1N3 Levy, isoform A 50.46 5 24 5 807208.7792100001 22 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 7480.497 1 +Q9W1R0 RH49821p 6.07 3 5 3 9991.9482 5 +Q9W1R3 Golgin-245 14.24 21 27 21 77989.72853 22 +Q9W1V8 CG9893 protein 3.65 1 2 1 44020.192 2 +Q9W1W4 RE45066p 22.13 8 19 8 77883.18489 14 +Q9W1X5 GH04942p 13.03 18 41 3 223354.24176 31 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 1341396.20971 42 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 538304.8500000001 8 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 17927.9756 5 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 10208.94854 4 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 125473.50313 22 +Q9W257 RH13652p 6.99 2 7 2 87175.1824 5 +Q9W258 Babos, isoform A 27.55 6 28 6 347064.80806999997 24 +Q9W259 FI23916p1 14.71 5 10 5 78089.92964 6 +Q9W260 GH03113p 15.4 9 26 9 100338.2181 23 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 17124.6924 3 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 92870.73125 25 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 14375.592200000001 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 211054.12119 13 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 8707.2314 3 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 34860.4121 2 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 34156.530399999996 7 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 12837.695 1 +Q9W2L6 RH02475p 28.13 18 55 18 1117687.22435 45 +Q9W2M0 LD23155p 23.8 18 32 18 102253.70396 24 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 3110141.10547 56 +Q9W2M9 FI16623p1 6.47 1 3 1 3182.50813 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 30272.5689 4 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 247283.6729 7 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 164196.33490000002 11 +Q9W2V2 FI20035p1 3.86 3 3 3 27533.5695 2 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 8907285.62074 122 +Q9W2Y5 YLP motif-containing protein 1 1.06 2 3 1 537.33356 1 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 119876.64986 14 +Q9W306 GEO08256p1 14.05 2 4 2 31559.981 3 +Q9W308 GH05731p 27.17 4 9 4 65442.4844 7 +Q9W309 GEO08445p1 29.63 7 11 7 141878.90361 9 +Q9W314 GH14088p 9.57 4 9 4 18752.26775 7 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 37552.14627 10 +Q9W330 Phosphotransferase 24.4 11 31 3 753416.95765 29 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 142903.106 5 +Q9W337 GH19985p 21.56 4 12 4 72606.8729 8 +Q9W350 C11.1, isoform A 2.12 3 3 3 1896.3566799999999 3 +Q9W370 GEO12084p1 44.26 4 19 4 301376.72746 16 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 32792.52203 6 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 16678.071500000002 8 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 512366.14468 39 +Q9W396 FI06908p 12.08 3 5 3 16706.5708 3 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 28274.8721 6 +Q9W3C3 LD10016p 17.41 8 12 8 38834.25226 8 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 14875.83064 5 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 48228.361750000004 8 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 30492.2728 6 +Q9W3H4 LD36273p 62.35 12 36 12 461148.97503 31 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 18647.446 2 +Q9W3J6 FI06457p 12.29 4 4 4 4487.0322 2 +Q9W3K6 LD35927p 5.12 4 6 4 48229.9068 6 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 569132.1718 22 +Q9W3L4 GH20802p 12.56 6 12 6 34717.825509999995 9 +Q9W3M7 RNA helicase 9.1 8 19 8 44026.8831 12 +Q9W3M8 LD34211p 32.16 7 17 7 207460.41733 13 +Q9W3N1 RH59310p 7.17 2 3 2 4936.1202 3 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 59807.19056 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 393239.72387 29 +Q9W3Q0 FI07418p 18.35 4 11 3 10975.796170000001 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 56798.3696 5 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 34823.974 8 +Q9W3T9 GM01152p 50.42 10 21 10 156832.26986 17 +Q9W3U9 CG14434-PA 36.9 6 15 0 45117.8706 12 +Q9W3V2 FI19713p1 4.82 4 5 4 8318.181840000001 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 3427.8572 2 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 39057.757240000006 6 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 1463892.14243 49 +Q9W3X8 RH42690p 13.47 5 10 5 11609.03402 7 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 93153.4242 10 +Q9W3Z4 GH18625p 2.43 1 3 1 4765.679 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 1981703.38021 49 +Q9W403 LD24968p 11.05 6 14 6 21208.498170000003 10 +Q9W404 GH10714p 10.34 5 10 4 13327.14404 5 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 3982.7048 2 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 482460.81767 35 +Q9W425 Rabconnectin-3A 0.7 3 3 3 9274.0225 3 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 1317339.89034 63 +Q9W461 LD23868p 10.93 5 10 5 22922.89027 6 +Q9W482 Lin-52, isoform A 19.11 3 3 3 10886.3877 3 +Q9W483 GH18971p 15.83 5 8 5 43705.12458 5 +Q9W486 LD13361p 5.65 3 4 1 8767.55925 4 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 99319.20680000001 10 +Q9W4A0 GH11193p 24.87 5 10 5 50988.0381 8 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 27030.495899999998 3 +Q9W4C2 lysozyme 18.42 4 5 4 42539.2942 5 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 36578.0225 9 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 16896.9819 4 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 400107.43682 18 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 4619.39072 3 +Q9W4N8 LD30122p 72.86 14 57 1 1903934.18207 44 +Q9W4U2 RH09070p 31.33 6 19 6 73758.1733 12 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 9585.63143 4 +Q9W4W5 RE47284p 13.77 5 10 5 124530.8664 10 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 172354.81963 24 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 34362.01346 10 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 10359.109260000001 7 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 7161.8865 5 +Q9W503 RH61816p 23.76 8 17 8 85062.53785 14 +Q9W5B4 GH18858p 20.38 6 12 6 269052.2491 7 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 1606.42138 3 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 371.60532 1 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 20624.59761 7 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 30526.3822 8 +Q9W5W7 GH19483p 6.06 4 6 4 34077.343 6 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 866189.81662 40 +Q9W5X0 LD21953p 23.88 5 25 0 32510.510400000003 3 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 75889.82896 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 39683.37495 10 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 2005047.20085 42 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 15434.95826 3 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 152614.97463 19 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 186339.58815 16 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 2170993.34877 74 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 251057.78621 44 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 108890.69847 27 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 2953105.5611199997 102 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 10172.447540000001 5 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 21663.1323 6 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 1582402.64796 54 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 31311.122099999997 5 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 391255.51430000004 33 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 4152839.91255 71 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 5874.064 3 +R9PY51 Uncharacterized protein 34.95 5 42 5 2647725.37783 24 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 2634877.70497 111 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 84484.0285 10 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 51021.6091 5 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 6944.5854 1 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 25448.6741 6 +X2JB48 ADP/ATP translocase 66.22 21 145 1 3867160.10266 113 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 89024.71231 23 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 16156.98633 6 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 7734880.48451 109 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 11101.85596 3 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 5883.3949999999995 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 3621.4456 2 +P10674 Fasciclin-1 43.71 29 142 1 1767.6556 1 +Q08605 Transcription activator GAGA 6.37 3 3 0 5377.237300000001 2 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 6429.9515 2 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 9014.645 1 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.72 3 3 3 354.8886 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 7678.805 1 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 4877.2495 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 4170.25033 2 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 8008.9130000000005 2 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 15502.8877 2 +Q9W568 Protein halfway 5.56 3 4 0 1275.60584 3 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 9.68 2 2 1 600.523 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 7585.1846 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.08 3 5 0 897.0353 1 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 15614.80966 3 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 1493.00933 2 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 4717.21975 3 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 79852.22 1 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 13891.915 1 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 25540.5853 3 +A1Z7M0 Space blanket 5.71 2 4 2 5992.40909 4 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 34132.946599999996 5 +B5RJS0 IP20241p 2.69 3 3 0 2263.2166 1 +E1JJM0 FI20063p1 14.83 10 14 0 87364.83709999999 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 2471.38745 3 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 9944.3634 4 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 10528.123 2 +Q0E8R1 FI07211p 29.47 10 55 0 7260.3627 2 +Q5U0V7 phosphoinositide 5-phosphatase 2.13 3 3 3 308.3652 1 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 92498.82632000001 17 +Q7JWH6 RE61424p 6.99 2 3 2 5590.0063 1 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 1760.90054 3 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 54775.53093 5 +Q7KVW1 RE73736p 4.94 3 4 0 16891.1607 4 +Q7PLV6 FI02158p 1.7 2 2 2 982.3058 1 +Q8I062 GH23305p 80.95 19 194 1 10165.905200000001 2 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 3843.1 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 2.93 1 1 0 351.81067 1 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 3918.0899 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 7694.487 2 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 6975.2011600000005 2 +Q9VHX1 LD44032p 1.41 1 1 1 499.65112 1 +Q9VKC1 IP16805p 2.72 1 1 1 8591.695 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 1427.8097 3 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 4893.7132 3 +Q9VTE1 Immediate early response 3-interacting protein 1 16.25 1 1 1 362.58493 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 4047.6711999999998 2 +Q9VTY1 LD40136p 5.69 2 3 2 912.1148400000001 2 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 1323.95206 2 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 728.8792 1 +Q9W2N5 GH10162p 3.47 2 4 2 4713.12179 3 +Q9W362 La-related protein 7 1.51 1 2 1 10040.2557 2 +Q9W525 LD08195p 3.8 2 4 1 2560.98516 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 9063.4953 4 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 1931.2799 1 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 6459.8433 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 5311.0594 2 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 822.84311 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 2546.5117 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 1700.5352 1 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 4283.2837 1 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 42516.21807 6 +E1JJ83 Os-C, isoform B 7.19 1 4 0 819.4900700000001 2 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 54279.46146 22 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 4986.392750000001 2 +O46231 FI18705p1 66.21 20 67 1 13606.171600000001 2 +Q6IDE2 GH07226p 2.0 1 1 1 6901.869 1 +Q7JVH0 Splicing factor YJU2 2.7 2 2 2 2787.0923 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 43780.5055 2 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 1444.24984 2 +Q8IQ80 GH06117p 1.41 1 3 0 1769.1688 1 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 8287.608 1 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 6959.85516 3 +Q9W5C1 RE02292p 1.13 1 1 1 2057.6455 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 3743.89055 3 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 3665.9426 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 14653.434099999999 2 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 20005.9686 3 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 11447.0977 2 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 5964824.353949999 121 +E1JH70 Kank, isoform E 1.18 1 1 0 873.0968 1 +M9MRD4 Muscle-specific protein 300 kDa, isoform B 3.84 34 44 0 567.3332 1 +M9NFP1 Jim, isoform E 1.94 2 2 0 4561.2991 2 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 2524.117 1 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 6758.2974 1 +Q8IQH6 Nebulosa, isoform A 2.12 1 1 0 979.97955 1 +Q8IRM1 Uncharacterized protein, isoform E 28.88 5 8 3 358.6272 1 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 828.0421 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 46669.526600000005 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 1559.4822 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 54326.214 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 140998.055 2 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 4814.2019 3 +Q9VZF0 LD44732p 3.61 1 1 1 2148.771 1 +Q9W249 IP21806p 4.27 2 3 2 2868.4373 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 7467.99385 4 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 25090.2622 2 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 1529.9635 1 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 1790.4108 1 +A0A6F7R657 Widerborst, isoform H 13.26 9 30 1 292.21353 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 72755.1877 3 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 8053.281 1 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 753.5508 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 3940.723 1 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 3208.3643 1 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 572.4152 1 +Q9VV37 GEO13385p1 10.1 1 7 1 167466.96860000002 4 +Q9VVX6 BET1 homolog 6.84 1 1 1 8167.754 1 +Q9W152 RH33060p 5.63 1 2 1 1000.63571 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 3469.9795 1 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 2613.6294 1 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 4517.907 1 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 2539.357 1 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 846.8464 1 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 20503.741 2 +Q9VB09 IP04131p 12.1 2 3 2 8000.3321000000005 2 +Q9VHN8 LD37279p 1.54 1 1 1 12623.195 1 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 10210.302 1 +Q9W5E7 LP07417p 11.4 1 1 1 1769.4694 1 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 891.7415 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 100853.32639999999 7 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 3799.2812 1 +A1ZAU6 FI05912p 3.24 2 2 1 513.9581 1 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 14660.345000000001 2 +Q7K3Z8 GH01208p 2.35 1 2 1 5030.3471 2 +Q9VAN8 FI15955p1 6.08 2 2 2 4857.609 1 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 6836.2744999999995 2 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 10537.046 2 +Q9VV55 GH08429p 3.98 2 3 2 3551.5600400000003 2 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 2052.5505 1 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 21968.887 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 12.08 7 16 1 463.08868 1 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 8718.9883 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 10634.0752 3 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 27345.511440000002 5 +A1Z840 Cdc2-related kinase 4.39 2 2 2 479.07123 1 +Q9VXD7 GH04692p 5.61 2 3 2 1587.2404 1 +Q9W3S4 LD46272p 5.26 2 3 2 2875.3167000000003 2 +A8JQX3 Nocturnin 3.58 2 2 2 1627.1201 1 +A8JNM1 Formin 3, isoform B 1.69 3 3 0 691.77844 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 1336.60054 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 6411.51189 5 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 2998.7183 1 +O76857 BCL7-like 13.64 2 3 2 2278.6567 1 +Q7JY89 RE35124p 25.0 2 5 2 3672.59656 3 +Q8IML5 V-type proton ATPase subunit a 8.28 8 17 0 1755.1371 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 3253.1058 2 +A8JUP7 Serine protease Hayan 2.67 2 3 2 8849.5236 3 +P07664 Serendipity locus protein delta 4.16 2 3 2 16479.807399999998 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 5158.828530000001 3 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 845.15826 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 28954.341429999997 7 +Q8IQU7 825-Oak 17.05 2 3 0 14275.991399999999 2 +Q9VGM4 LD28119p 3.82 1 1 1 429.7816 1 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 69281.31882 24 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 2179.0005 1 +Q9V3J8 Protein will die slowly 3.88 1 2 0 7077.0043 2 +Q7K0D3 CG12909 protein 6.76 2 3 2 6971.138 3 +Q9VSK1 GH09510p 1.06 1 1 1 5064.6294 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 11003.192 1 +Q9V6Q2 Histone H3-like centromeric protein cid 8.89 2 3 2 449.24524 1 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 3664.9732 2 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 5983.3745 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 53327.46437 13 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 7231.1272 2 +Q8SXC0 GH10306p 2.86 1 2 1 8270.0624 2 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 1.35 1 1 1 324.95074 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 8931.55754 3 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 31420.3618 3 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 6930.946 1 +P45884 Attacin-A 5.36 1 1 0 13077.291 1 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 2717.5937 2 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 7880.2352 2 +Q9VV27 MIP11526p 7.63 1 1 1 13364.953 1 +O76324 Discs overgrown protein kinase 7.95 2 3 0 2565.05796 2 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 3934.0518 1 +O18680 5-aminolevulinate synthase 3.34 2 2 2 2475.0593 1 +Q29QE1 GH15984p 0.57 1 2 0 14010.57567 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 1872.28 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 6575.1034 2 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 2484.3052 1 +Q9VEQ0 Xylulose kinase 1.99 1 2 1 700.04395 1 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 146519.15656 2 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 16355.096399999999 2 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 6804.3827 3 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 14882.212300000001 2 +E1JGY7 Hulk, isoform G 10.66 12 17 1 441.80374 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 6235.4537 2 +Q9VF46 GH25158p 7.34 2 7 2 20290.3617 6 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 13760.7473 2 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 7966.3925 2 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 4406.62087 2 +Q7KST5 L-serine deaminase 5.06 2 2 0 513.6682 1 +A8JNU1 adenylate cyclase 1.02 1 3 0 2421.1574 2 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 1640.636 1 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 9132.252199999999 2 +Q7JW46 RE25483p 9.0 1 1 0 17436.672 1 +Q7K010 Tetraspanin 8.64 2 4 2 7901.1605 4 +Q9VUR4 FI11905p 19.75 6 14 1 2547.278 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 3340.749 1 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 2658.8040600000004 2 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 3882.0635 3 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 27260.0785 3 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 4358.169400000001 2 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 2283.058 1 +A8JNV2 Uncharacterized protein 10.71 1 3 1 8249.8706 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 1812.2853 1 +Q9VRX7 LD29573p 1.32 1 1 1 501.413 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 14780.075 2 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 4794.35 2 +O46099 EG:8D8.2 protein 0.63 1 1 1 1844.9757 1 +Q7JZZ3 RE03883p 6.99 2 3 2 29126.461000000003 2 +Q8SWU4 RE25571p 17.08 5 12 1 6887.958 1 +Q8SWX4 Aminopeptidase 2.39 2 2 2 965.21246 1 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 30432.725 2 +O16043 Anon1A4 9.84 2 3 2 3911.46012 3 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 2288.8647 1 +Q8SXW3 GV1, isoform B 13.33 2 5 0 24054.259000000002 4 +Q8IRN0 FI06485p 3.21 1 2 1 5126.245800000001 2 +Q9VHS6 Copper transport protein 6.32 2 3 2 1877.72613 3 +D8FT19 MIP22288p 4.05 2 3 0 10054.20303 3 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 4932.8562 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 2996.5344 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 3904.4417 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 638.0353 1 +Q9VT15 GH14734p 8.33 2 4 2 5954.293900000001 2 +A1A750 GEO11067p1 6.93 1 1 1 9686.335 1 +Q9VF83 LD33178p 4.33 2 4 2 9017.4863 4 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 37436.301 3 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 1749.2677 1 +Q9VWA7 Golden goal 0.79 1 3 1 14551.365 1 +M9PCK0 Decima, isoform D 9.87 2 3 0 10573.33167 3 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 23904.369599999998 2 +Q9VPA9 LD24894p 1.45 1 2 1 5119.6204 2 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 6931.0878999999995 2 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 928.60126 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 6170.3625 2 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 7035.745999999999 2 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 3127.29918 2 +Q7KV26 Kinase 1.45 1 1 0 1996.8231 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 5347.909 1 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 22126.55 1 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 655.6727 1 +Q7K4Y8 GH22690p 3.14 2 2 2 1570.4305 1 +Q9VCQ7 LD40758p 2.61 2 3 2 17398.275999999998 2 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 3126.6335999999997 2 +Q9VDL4 LP04613p 2.72 1 3 1 3148.9463299999998 3 +Q9VS55 CTCF 2.2 2 3 2 1716.5409 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 7929.98724 4 +Q7K4X4 GH24095p 2.0 1 1 1 508.02185 1 +Q9VGE8 Tachykinins 2.42 1 2 0 9564.419 1 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 312.099 1 +Q29QQ9 Ribosomal RNA-processing protein 42 3.38 1 1 1 622.0029 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 9154.798 2 +Q7YU81 Protein charlatan 0.66 1 2 0 7418.1381 2 +Q9VHV3 FI02011p 1.5 1 1 1 3519.551 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 1580.76 1 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 3228.859 3 +Q7K8Y3 IP16419p 17.86 7 17 0 35798.99533 11 +Q8STG9 DSec61alpha 4.2 2 3 2 1212.24174 2 +Q8IGV3 RE23632p 6.34 2 2 2 524.30725 1 +P22812 Protein Tube 3.9 2 2 2 4388.9231 2 +Q9VJ45 UDP-glucuronosyltransferase 3.48 2 2 2 613.4734 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 781.7844 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 15651.983 1 +Q9VZX8 AT02196p 2.89 1 1 1 604.0874 1 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 6805.4369 2 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 3925.5789 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 14068.811 2 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 3943.092 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 1861.22065 2 +Q9W3F7 Mitoguardin 4.19 2 3 2 1325.6685 2 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 5182.517 1 +Q9W4F9 IP01388p 3.65 2 3 0 1338.0110399999999 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 4164.6807 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 2784.135 2 +A1ZAX6 FI02012p 1.2 1 1 0 879.6767 1 +F0JAQ9 MIP27169p 5.85 2 3 0 1356.93174 2 +P18289 Transcription factor Jra 3.11 1 1 0 9436.727 1 +Q9VMX1 KIF-binding protein 2.83 2 2 2 10924.2705 1 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 8914.2516 2 +O18405 Surfeit locus protein 4 homolog 7.04 2 2 2 865.62915 1 +Q9VR55 LD29159p 8.71 1 3 1 9892.026600000001 2 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 602.97766 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 2160.758 1 +Q9BLX1 PDGF- and VEGF-related factor 1, isoform B 7.64 2 2 0 620.28284 1 +P54194 General odorant-binding protein 84a 4.57 1 1 1 582.36255 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 678.2736 1 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 14235.536100000001 6 +Q8IR92 Uncharacterized protein, isoform A 8.58 7 12 0 570.1035 1 +Q7KVT8 Orion, isoform B 3.1 2 2 0 1581.3636 1 +Q9VV26 GEO12049p1 6.84 1 4 1 35731.4105 4 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 393.42517 1 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 1600.7123 1 +A1Z971 Uncharacterized protein, isoform A 1.0 1 1 1 567.76953 1 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 29345.3269 4 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 3165.1514 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 1743.4602 1 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 1634.9973 2 +Q9VH09 Glycine cleavage system P protein 0.91 1 2 1 326.59317 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 5836.304 1 +A1ZAG3 Protein G12 8.33 1 2 1 3604.7846 2 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 11054.719 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 9481.876 1 +Q7K1R6 LD46221p 7.98 2 3 2 793.0965 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 27591.2292 5 +Q6IJE8 HDC15077 17.04 2 5 2 35620.5495 3 +Q9VVI0 SD09427p 1.81 1 1 1 2513.6196 1 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 7103.274 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 12726.47485 2 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 6203.4795 1 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 452.50406 1 +Q9W494 Crossveinless 8.17 2 4 2 11665.279299999998 2 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 2085.149 1 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 5590.2424599999995 2 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 24887.34384 5 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 2722.842 1 +Q95NH6 Attacin-C 6.64 2 2 2 9069.155 1 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 20381.89 1 +Q8MRQ1 GH06222p 1.49 1 1 0 813.13025 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 1648.1727 1 +Q9VPR6 Kinase 2.59 1 1 1 1743.5343 1 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 1951.2449 1 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 5933.80938 3 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 12878.662199999999 3 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 2024.9070499999998 2 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 1.94 1 1 1 380.6973 1 +Q9W547 Large ribosomal subunit protein uL16m 3.29 1 1 1 352.18655 1 +E1JJS1 glutathione transferase 2.61 1 1 0 860.5745 1 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 2876.6967 2 +Q9VAM2 Aminopeptidase 2.71 2 2 2 651.12335 1 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 770.47284 1 +Q9VC27 Nicastrin 1.15 1 1 0 5090.615 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 815.9505 1 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 6468.451 1 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 975.05695 1 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 5561.747 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 1508.3037 2 +A1ZAI5 Putative fatty acyl-CoA reductase CG5065 4.16 2 2 0 455.01236 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 4680.3081 2 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 476.28427 1 +Q7JX82 GH21964p 6.85 2 3 2 746.0724 2 +Q7K490 SD03973p 4.07 2 2 2 705.3721 1 +Q7KE33 Odorant binding protein c 9.4 1 1 1 543.1432 1 +Q7YTZ0 GH09436p 2.16 1 1 0 776.8324 1 +A0A0B4LG67 Uncharacterized protein, isoform E 4.2 2 3 0 608.71826 1 +Q9VVT5 Dysbindin protein homolog 2.78 1 1 0 359.51755 1 +O76876 Protein sex-lethal 3.71 2 3 0 10877.237099999998 3 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 78109.69 1 +M9PGK1 Glycosyltransferase family 92 protein 3.52 2 2 0 612.2831 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 2773.0738 2 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 10549.875 1 +Q02936 Protein hedgehog 2.34 1 1 1 3906.0022 1 +Q6NN09 ATPase protein 9 5.07 1 11 1 365888.91627 10 +O76874 SD17974p 1.93 2 3 2 897.383 1 +Q9VEB2 LD28404p 8.58 2 2 2 20176.877 1 +Q9VGL2 GM08392p 2.65 1 1 1 4838.341 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.2 1 1 1 383.74094 1 +P41964 Drosomycin 31.43 2 2 0 9414.081 1 +Q9VAX9 MIP05919p 7.94 2 2 2 23388.156 1 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 598.6902 1 +Q9VBD8 RT02919p 4.37 1 2 0 8000.9406 2 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 962.93613 2 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 1698.5361 1 +Q58CJ5 GH01093p 2.34 2 2 0 6154.6475 1 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 35557.0446 3 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 6511.8665 3 +Q9VK20 LD18447p 4.59 2 3 2 3551.4436 1 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 26046.1819 2 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 1940.853 1 +Q9VX38 CG8326-PA 6.33 2 2 2 22334.54564 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 1850.1454 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 2 1 947.7039500000001 2 +Q9V426 LD07162p 5.51 2 3 2 894.72104 2 +Q0E985 RH74701p 13.33 1 1 1 3254.1116 1 +Q9VCC2 RE50040p 4.86 2 2 2 13340.52 2 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 442.46744 1 +P04657 Cytochrome c-1 17.14 2 11 0 7568.98476 2 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 859.06055 1 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 4367.3811 2 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 7777.18194 2 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 2295.5925 1 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 2914.1785 2 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 2336.766 1 +Q4U2G8 FXNA-like protease 1.8 2 3 0 1281.86462 2 +Q9W123 Protein painting of fourth 3.64 2 3 0 341.9876 1 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 7288.7338 2 +Q9VGZ2 FI06805p 3.86 1 2 1 12211.505000000001 2 +Q7JY80 M-spondin, isoform A 2.0 1 1 1 328.77252 1 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 2347.48055 2 +E1JHX0 MIP29328p 3.76 1 1 1 5149.242 1 +Q9V451 Mst85C, isoform A 4.96 1 2 1 4726.6734400000005 2 +D6W4V3 MIP19557p 4.74 1 2 0 360.83087 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 1705.1604 1 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 3542.7088 2 +Q9V9R3 adenylate cyclase 0.6 1 1 1 3251.5222 1 +Q9VX35 LD36501p 5.06 2 2 0 2435.31482 2 +P39205 Molybdenum cofactor synthesis protein cinnamon 1.33 1 1 1 439.45053 1 +Q9VUE5 LD17962p 1.45 2 3 1 10308.23367 3 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 795.77606 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 8463.4004 3 +Q7KJ73 Tetraspanin 3.95 1 1 1 726.40106 1 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 7672.84537 2 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 3562.8438 1 +Q8IRK0 GH04558p 1.52 1 1 1 15458.326 1 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 4703.2524 1 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 3777.9768 1 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 830.15967 1 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 9513.937 1 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 14697.2633 2 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 1632.5443 1 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 2684.389 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 2555.535 1 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 1746.9385 1 +Q9W1H3 FI21285p1 3.25 1 1 1 680.3245 1 +Q9VV21 GEO07736p1 16.26 1 1 1 30946.703 1 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 1900.3135 1 +Q6II41 HDC19846 30.3 1 1 1 717.9456 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 851.6454 1 +Q9W2F6 RE36793p 7.09 1 1 1 5208.473 1 +Q9VPW8 Protein pinocchio 4.42 1 1 1 402.50546 1 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 2361.2109 2 +Q9VDM7 Trimethyllysine dioxygenase, mitochondrial 2.2 1 1 1 326.36273 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 354.67685 1 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 54997.60945 10 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 7414.1323 1 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 1384.5727000000002 2 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 8286.0286 2 +A8DYV9 GEO02589p1 10.53 1 2 1 5446.596799999999 2 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 493.73865 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 9189.203 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 932.2823 1 +Q7K1H9 GH07575p 3.69 1 3 1 26822.2736 3 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 12750.103299999999 2 +Q7JQN4 RNA helicase 1.66 1 1 1 1790.861 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 706.7648 1 +Q9VEA6 Protein AAR2 homolog 3.17 1 1 1 599.9491 1 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 9735.71277 2 +Q9VGJ7 FI23918p1 1.01 1 1 1 1776.373 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 6548.8503 3 +Q24306 Death-associated inhibitor of apoptosis 1 3.2 1 2 0 826.24713 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 18581.115 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 66637.2763 2 +Q9VMM3 RE17389p 2.61 1 1 1 589.5667 1 +Q9W551 GEO02601p1 7.55 1 1 1 3298.7163 1 +A1A753 IP17594p 10.11 1 1 1 4285.3154 1 +Q9VTG6 Ubiquitin carboxyl-terminal hydrolase MINDY 2.46 1 1 1 566.1686 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 4247.9434 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 9801.3606 2 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 791.6346 1 +Q9W0E2 Protein phosphatase 3.74 1 2 1 801.3367000000001 2 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 950.98517 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 9927.3994 3 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 2338.4465 1 +Q9BMG9 Beaten path IIa 3.94 2 4 1 6877.5266 2 +Q95RU0 Protein cueball 1.55 1 1 1 4413.3906 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 1828.7843 1 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 84696.6281 2 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 1994.1731 1 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 2248.6973 1 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 2581.70823 2 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 98940.33264 2 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 2148.7893 1 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 4366.07108 2 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 2924.1787 1 +Q9VZR5 RE46159p 4.02 1 1 1 1687.4116 1 +Q9VE49 LP06937p 1.3 1 1 1 1605.483 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 746.99384 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 786.9498699999999 2 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 3522.0496 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 1 732.72766 1 +Q7K4G8 LD40944p 1.7 1 1 1 1627.6162 1 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 4629.864 1 +Q9VBA5 GM18993p 2.15 1 1 1 1670.8407 1 +Q7KA66 Serpin 43Aa 2.56 1 2 1 3330.49217 2 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 3930.8774700000004 2 +Q9VVJ6 Keren 4.61 1 1 1 361.72977 1 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 6949.9136 1 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 809.29553 1 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 836.26874 1 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 11689.298 1 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 1674.7211 1 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 1620.14545 2 +Q9VJM4 Beaten path Ic 2.25 1 1 1 817.2579 1 +Q6NMT8 AT01712p 1.8 1 1 1 919.9068 1 +Q9VZY7 LD20870p 1.77 1 1 1 365.75665 1 +M9PHP7 Faulty attraction, isoform F 0.84 1 1 1 565.1191 1 +Q9VX17 LD36024p 3.1 1 1 1 1968.9652 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 2272.4863 1 +A1ZB29 Thymidylate kinase 5.21 1 1 1 884.52075 1 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 6205.761 1 +P36192 Defensin 8.7 1 3 1 22685.29 3 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 993.3275 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 5270.5645 2 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 1080.65244 2 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 148502.103 2 +Q9W440 Protein THEM6 5.7 1 1 0 295.18768 1 +Q0E908 Hillarin 0.86 1 1 1 574.5231 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 179399.12350000002 3 +Q5BIL9 SD21168p 1.63 1 2 0 7412.674499999999 2 +O61345 Protein penguin 1.76 1 1 1 450.96826 1 +A1Z6H0 Kune-kune 2.65 1 4 1 16258.627199999999 3 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 3748.6794999999997 3 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 6232.902 1 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 2275.116 1 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 4268.8877 1 +Q9VHJ4 GH04846p 2.25 1 1 1 2821.1162 1 +Q9W226 GEO07239p1 5.88 1 2 1 2928.0819600000004 2 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 399.4124 1 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 1958.3433 1 +Q9I7U1 LD36721p 5.29 1 1 0 9395.587 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 2429.8635 1 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 63888.122 2 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 12548.22315 2 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 662.1265 1 +Q9V412 STING ER exit protein 4.45 1 1 0 656.1453 1 +Q8MRQ2 GH05923p 2.74 1 1 0 6214.661 1 +Q8SY53 GH11935p 2.73 1 2 1 2822.2569000000003 2 +Q7JVN6 GH17672p 2.24 1 2 1 3133.1359 2 +A1Z9W2 RH47216p 3.75 1 1 1 379.3899 1 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 867.03345 1 +Q9VDZ9 FI04548p 5.49 1 1 1 462.74173 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 4995.289 1 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 765.99695 1 +Q9VGW5 GEO08194p1 5.8 1 1 1 954.4989 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 421.05734 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 749.23047 1 +Q9VJV8 DNA polymerase subunit gamma-2, mitochondrial 2.77 1 1 1 880.8605 1 +A0A0B4LHK8 Uncharacterized protein, isoform D 2.93 1 2 0 429.3239 1 +O77237 Protein pellino 1.65 1 1 0 2254.5535 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 11477.3079 2 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 764.4349 1 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 5072.1356 2 +Q9V9X7 polyribonucleotide nucleotidyltransferase 1.3 1 1 1 772.46216 1 +Q9VGG0 LD47774p 1.67 1 1 1 833.0225 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 756.3092 1 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 18143.916 1 +Q8SWR2 Bicaudal D-related protein homolog 1.94 1 1 1 560.5668 1 +Q9W1H1 GH17155p 3.28 1 1 1 977.70056 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 2 0 352.74893 1 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 13288.02 1 +Q4V3U8 IP10038p 2.76 1 1 1 509.5887 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 9919.9614 2 +Q9VB21 Uncharacterized protein 0.6 1 1 1 524.88416 1 +Q4V6L7 IP04672p 6.72 1 1 1 631.24335 1 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 580.3844 1 +Q9VXY2 MAP kinase-activating death domain protein 0.91 2 2 0 430.65134 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 931.56866 1 +A1A6X2 IP16893p 12.07 1 1 1 1573.1709 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 604.4703 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 5790.18883 2 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 760.59204 1 +Q9VJ16 GH26014p 2.96 1 1 1 518.9662 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 317.71075 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 2 0 690.5152 1 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 10472.268 1 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 6946.7744 2 +Q9VSF4 Probable deoxyhypusine synthase 2.72 1 1 1 541.232 1 +Q9VX71 Uncharacterized protein 5.2 1 2 1 10532.105 2 +Q6IKC0 HDC12925 14.29 1 1 1 780.3859 1 +Q8IQ51 trypsin 3.05 1 1 1 4104.527 1 +Q9VHS0 FI07206p 2.49 1 1 1 581.1016 1 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 749.01904 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 1899.2899 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 2 1 633.80695 1 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 555.29736 1 +Q9VEM0 RE41712p 5.62 1 1 1 806.8164 1 +Q9W081 AT01075p 2.34 1 1 1 544.4988 1 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 724.094 1 +Q9W328 Protein LST8 homolog 2.56 1 2 1 5351.2274 2 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 943.1015 1 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 571.9554 1 +Q9VD92 Protein archease-like 5.77 1 1 1 1850.9387 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 936.67288 2 +A0A6H2EJZ8 Headbutt, isoform E 1.1 1 1 0 727.4492 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 28307.96192 3 +Q9VDB8 RH37844p 8.42 1 1 1 3945.301 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 28098.296000000002 2 +M9PIC9 Spc105-related, isoform B 0.41 1 1 0 427.48895 1 +Q8SZB7 RE07960p 3.12 1 2 1 14191.967 2 +Q9VFX8 FI14740p 2.51 1 1 1 410.0513 1 +E1JH94 GEO02631p1 7.03 1 1 1 754.05585 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 2376.1443 1 +Q7JWF7 RH26557p 5.11 1 1 1 6910.502 1 +Q9W2L2 LD27118p 0.67 1 1 1 725.78125 1 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 26054.623 1 +Q9VFE6 RRP15-like protein 3.26 1 1 1 606.28015 1 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 964.9722 1 +Q9VJU2 Nimrod C3 3.12 1 2 1 8790.5378 2 +Q9W3Q2 SD08447p 1.26 1 1 1 2868.3105 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 482.79932 1 +Q9VAQ3 GH18608p 2.19 1 2 1 827.418 1 +A1Z979 Salivary secreted peptide 6.25 1 2 0 7297.8784 1 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 65135.2512 12 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 11479.27245 6 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 44114.39755 12 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 4762.5837 4 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 19528.095 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F2_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F2_TMTb.txt new file mode 100644 index 0000000..a2b972b --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F2_TMTb.txt @@ -0,0 +1,3826 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 126, Sample, n/a, SFug_F2 Abundances Count: F5: 126, Sample, n/a, SFug_F2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 72304.685 5 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 42690.3687 8 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 2624715.4983800002 59 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 11607.027 2 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 129008.8666 9 +A0A1F4 Protein eyes shut 12.13 24 45 0 794701.9419 38 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 9356.875 1 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 215081.70227 15 +A1Z713 Intermembrane lipid transfer protein Vps13 0.39 1 1 1 426.35672 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 6817.362300000001 2 +A1Z877 Nidogen 18.37 23 35 23 821049.84386 33 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 42668.937999999995 3 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 52103.2077 2 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 470060.95378 46 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 219757.7923 7 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 137315.581 6 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 89599.1848 8 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 122793.39923 18 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 49357.5305 3 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 12780.686399999999 2 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 53440.815500000004 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 6976.284 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 5256.2896 1 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 8617.857 1 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 335077.87163999997 9 +A8DYP0 Protein Obscurin 1.38 6 8 6 49177.64905 7 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 277620.6247 12 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 2264733.93002 94 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 223720.4333 16 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 820203.10252 39 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 908327.3766000001 23 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 100784.761 3 +C0HL66 Histone H3.3A 52.21 6 31 0 26304.793999999998 2 +C0HLZ9 Baramicin A1 12.45 3 4 0 67803.895 4 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 416128.2205 26 +E1JIT7 PH and SEC7 domain-containing protein 0.94 1 1 1 313.6123 1 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 250568.928 10 +M9NDE3 Protein bark beetle 2.08 7 7 7 67442.3391 7 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 5154503.1506 68 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 80033.1597 8 +O01367 Protein held out wings 10.37 3 4 0 27222.468999999997 3 +O01382 Caspase drICE 12.68 4 4 4 8396.2358 2 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 315022.38300000003 11 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 7898263.96214 91 +O02194 Presenilin homolog 5.73 3 3 0 12725.4244 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 241488.201 9 +O02649 Heat shock protein 60A 65.1 34 143 23 7564513.194970001 129 +O15943 Neural-cadherin 14.01 44 66 2 1330278.8583 65 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 120753.7466 9 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 28917.459000000003 4 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 44980.1043 5 +O18333 Ras-related protein Rab-2 24.41 6 11 6 243575.1466 11 +O18334 Ras-related protein Rab6 33.65 8 12 0 100187.62297 6 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 664695.98143 16 +O18388 Importin subunit beta 2.26 2 2 0 5052.7511 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 7917499.4628 115 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 820090.8705 26 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 357259.1617 12 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 16073.257999999998 2 +O44342 Protein windbeutel 28.79 7 9 0 124226.56700000001 9 +O44386 Integrin alpha-PS3 6.1 8 8 8 121760.64526 8 +O46037 Vinculin 55.88 45 103 0 2609046.56176 93 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 48681.7983 4 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 223595.7624 10 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 96501.4406 4 +O46339 Homeobox protein homothorax 4.72 2 2 2 2430.7534 1 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 519528.3283 11 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 30137.264600000002 3 +O61307 Teneurin-m 0.92 2 2 0 31108.303 1 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 240330.6754 10 +O61491 Flotillin-1 45.77 19 45 19 1964815.6006 45 +O61722 PRL-1 phosphatase 55.11 7 19 7 653291.2008 16 +O62619 Pyruvate kinase 57.6 24 73 24 5635912.3377 63 +O62621 Coatomer subunit beta' 2.84 3 3 3 15284.600699999999 3 +O76206 Putative riboflavin kinase 55.56 6 17 0 469418.1797 13 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 245325.4649 6 +O76742 Ras-related protein Rab7 36.71 7 10 7 358016.4591 10 +O76878 RILP-like protein homolog 8.35 4 5 0 68490.4963 5 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 184343.663 9 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 172803.8616 8 +O77051 Transcription factor E2F2 18.65 7 9 0 36416.4098 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 54645.559400000006 4 +O77277 Torsin-like protein 15.29 6 8 0 105684.02096000001 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 57063.8209 4 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 105877.95 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 209101.16952999998 14 +O96690 Protein PDF 23.53 1 1 1 3136.2112 1 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 3927168.10836 78 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 59447.6665 7 +O97125 Heat shock protein 68 35.28 20 66 13 447971.7745 21 +O97172 UPF0729 protein CG18508 21.21 3 5 0 51811.034 4 +O97394 Protein sidekick 1.48 3 3 0 17252.13 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 83193.497 3 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 1945988.4849999999 39 +P00334 Alcohol dehydrogenase 85.16 20 241 20 19861557.6109 217 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 3077139.321 17 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 4292.6608 2 +P02255 Histone H1 14.45 3 3 0 44130.875 3 +P02283 Histone H2B 54.47 8 74 8 1929586.76163 68 +P02299 Histone H3 52.21 6 34 2 4926872.3336 29 +P02515 Heat shock protein 22 32.76 6 14 6 379156.18707 14 +P02516 Heat shock protein 23 70.97 15 72 0 5655970.61738 70 +P02517 Heat shock protein 26 58.17 9 19 0 2281392.52231 19 +P02518 Heat shock protein 27 52.11 10 28 0 680774.1923999999 24 +P02572 Actin-42A 63.83 25 618 2 80972441.90054 529 +P02574 Actin, larval muscle 65.69 27 537 0 497666.59245999996 24 +P02828 Heat shock protein 83 59.27 42 143 0 7911739.59328 131 +P02843 Vitellogenin-1 73.35 27 218 0 7983385.885009999 166 +P02844 Vitellogenin-2 67.65 24 169 0 6581960.33675 129 +P04197 Myb protein 2.74 2 2 0 11302.936000000002 2 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 674779.154 8 +P04388 Ras-like protein 2 33.33 5 7 5 51263.0309 6 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 12358.6854 3 +P05205 Heterochromatin protein 1 32.52 7 16 7 96430.9969 15 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 1810492.496 16 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 1708540.4085000001 18 +P05552 Transcription factor Adf-1 12.21 3 3 0 72878.60699999999 3 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 365451.5772 7 +P05812 Heat shock protein 67B1 11.91 5 6 5 66772.1372 5 +P06002 Opsin Rh1 8.85 3 8 3 224418.7182 8 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 28644619.6263 165 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 26573.774 2 +P06607 Vitellogenin-3 79.05 31 233 0 15828777.14101 206 +P06742 Myosin light chain alkali 41.94 6 120 0 11610410.645299999 103 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 2828.804 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 6079193.6551 26 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 13528940.1635 101 +P07665 Serendipity locus protein beta 1.97 1 1 0 7720.917 1 +P07668 Choline O-acetyltransferase 9.71 6 7 6 27817.295100000003 7 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 34907412.36751 293 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 39702.37 3 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 239143.4896 12 +P08144 Alpha-amylase A 23.48 10 15 0 617580.776 14 +P08171 Esterase-6 20.22 12 20 0 647894.7765 19 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 111636.7266 4 +P08182 Casein kinase II subunit beta 32.77 7 18 2 655425.43667 16 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 3647342.83823 39 +P08645 Ras-related protein Rap1 40.22 6 12 0 182371.32503 12 +P08646 Ras-like protein 1 37.04 5 13 5 902795.57 12 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 15242108.066639999 117 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 320630.4607 13 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 6597164.3621 68 +P08928 Lamin 66.88 49 174 48 6074931.83806 154 +P08985 Histone H2A.v 41.84 7 43 5 1142290.3727 22 +P09040 Drosulfakinins 17.73 3 4 3 168612.11 4 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 1838942.54966 47 +P09208 Insulin-like receptor 1.77 5 5 5 914.4335 1 +P09491 Tropomyosin-2 64.44 27 221 1 134394.329 4 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 91150.3995 7 +P10180 Homeobox protein cut 0.69 1 1 0 630.54565 1 +P10379 Protein unzipped 27.05 12 27 0 962908.478 24 +P10552 FMRFamide-related peptides 5.76 2 2 2 69545.747 2 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 642910.26137 61 +P10981 Actin-87E 68.62 28 611 0 8689158.2028 26 +P10987 Actin-5C 64.36 27 636 0 1213318.5496 14 +P11046 Laminin subunit beta-1 22.87 37 67 37 2176222.58586 63 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 1763.2496 1 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 24181405.88846 298 +P11584 Integrin beta-PS 19.98 17 28 0 441190.84385 25 +P12024 Chaoptin 27.6 35 84 0 2406450.97022 74 +P12080 Integrin alpha-PS2 13.11 18 23 18 741763.1776 22 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 1422660.3929 34 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 122588.1486 9 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 440594.12679999997 14 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 1272224.631 39 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 138579.8332 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 88605.7048 6 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 1414760.6775 37 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 2945697.03419 93 +P13395 Spectrin alpha chain 63.6 137 494 0 22136434.44616 450 +P13469 DNA-binding protein modulo 6.83 4 4 0 21305.6103 3 +P13496 Dynactin subunit 1 15.18 21 23 21 360926.4778 19 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 8072881.89764 128 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 195362.76425 15 +P13678 Protein kinase C 3.92 3 3 0 118076.59700000001 3 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 11309.415 1 +P14199 Protein ref(2)P 22.37 11 19 11 331927.00145 18 +P14318 Muscle-specific protein 20 82.61 17 66 17 2486761.9537 62 +P14484 Pupal cuticle protein 27.17 5 19 5 403930.5984 18 +P14599 Amyloid-beta-like protein 1.92 2 2 0 8375.433 1 +P15007 Enolase 74.2 31 339 1 28290102.094610002 298 +P15215 Laminin subunit gamma-1 39.35 55 99 0 2201579.19002 90 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 344813.9752 3 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 3081293.5419 59 +P15364 Protein amalgam 13.21 4 5 0 164930.669 4 +P15372 Phosrestin-2 60.16 20 59 0 3669682.5653 52 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 110899.0561 8 +P16378 G protein alpha o subunit 26.55 10 39 7 1177495.633 38 +P16554 Protein numb 7.73 4 5 0 77684.5219 5 +P16568 Protein bicaudal D 18.8 15 17 0 195751.9053 17 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 193070.88056 9 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 4950.5537 1 +P16914 Protein elav 23.4 9 28 0 533372.99563 26 +P17210 Kinesin heavy chain 44.31 40 74 40 2110676.3177 70 +P17276 Protein henna 40.71 15 27 0 1083154.67757 26 +P17336 Catalase 34.78 14 49 14 1305017.5299 40 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 1668237.29483 24 +P17719 Dihydrofolate reductase 19.78 3 4 3 52571.5402 4 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 1884729.89084 33 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 8380.665 1 +P18431 Protein kinase shaggy 33.85 16 43 0 1637865.25354 39 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 11354548.70313 170 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 277704.698 8 +P18824 Armadillo segment polarity protein 22.78 16 24 0 446951.46839 24 +P19107 Phosrestin-1 73.82 32 213 32 14667026.41951 198 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 559467.6119 19 +P19334 Transient receptor potential protein 2.51 4 4 3 26491.2824 3 +P19339 Protein sex-lethal 4.52 2 2 0 14698.8106 2 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 577318.6026999999 14 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 3169869.5147 71 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 79566.29699999999 4 +P20153 Protein ultraspiracle 2.76 2 2 0 11976.877700000001 2 +P20228 Glutamate decarboxylase 18.04 8 26 0 584571.67737 24 +P20232 Transcription elongation factor S-II 31.63 7 8 0 227930.8082 7 +P20240 Otefin 32.08 11 14 11 115526.99029999999 12 +P20241 Neuroglian 25.81 31 74 0 2008528.8303 71 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 68444.2357 4 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 11151.122599999999 2 +P20354 G protein alpha s subunit 39.74 13 26 1 2890.4104 1 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 2689.2627 1 +P20432 Glutathione S-transferase D1 55.5 13 79 9 7013014.4862 64 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 4398255.6275 51 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 31776541.13604 163 +P21187 Polyadenylate-binding protein 38.01 18 35 18 715301.5565000001 34 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 6364669.21096 88 +P22465 Annexin B10 76.01 24 139 24 5840742.237 121 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 1049791.014 32 +P22813 Heat shock factor protein 2.75 2 2 0 4148.4678 2 +P22815 Protein bride of sevenless 1.23 1 1 1 24224.244 1 +P22979 Heat shock protein 67B3 53.77 7 19 7 772360.37094 17 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 8388.6336 2 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 287738.46631 25 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 44242.87843 3 +P23625 G protein alpha q subunit 51.56 19 75 16 3210358.3568 64 +P23654 Neurotactin 12.41 10 13 0 166633.90776 13 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 254270.76671 13 +P23779 Cystatin-like protein 63.49 8 32 8 1659881.15953 29 +P24156 Prohibitin 1 68.48 17 53 0 2085620.7152 47 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 7243971.682 94 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 45565.241 3 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 659577.0197 21 +P25171 Regulator of chromosome condensation 6.03 4 4 4 129634.019 4 +P25228 Ras-related protein Rab-3 33.64 7 18 0 402465.83027 12 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 44637.8485 6 +P25822 Maternal protein pumilio 2.15 3 5 0 38430.43426 5 +P25843 Profilin 88.89 7 28 0 1094596.2178 26 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 229613.40469999996 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 185233.217 6 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 511912.07800000004 19 +P26686 Serine-arginine protein 55 9.31 4 7 0 128862.277 7 +P27716 Innexin inx1 2.21 1 2 0 55783.842 2 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 102644.6314 9 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 37261.9097 4 +P29052 Transcription initiation factor IIB 16.51 6 8 0 178227.94650000002 8 +P29310 14-3-3 protein zeta 67.74 17 278 0 17835945.0992 235 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 885811.2180999999 20 +P29413 Calreticulin 46.55 20 61 0 3132482.1214 56 +P29613 Triosephosphate isomerase 76.11 17 131 16 9111443.75965 120 +P29742 Clathrin heavy chain 7.39 13 15 0 78140.6287 12 +P29746 Protein bangles and beads 61.76 24 46 24 1944642.5033 44 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 3008837.59424 54 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 63685.077000000005 7 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 7542357.3342 150 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 8204736.05786 149 +P30432 Furin-like protease 2 0.66 1 1 0 6671.896 1 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 2971467.7038000003 28 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 3743943.7111 80 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 1474875.53522 27 +P32234 Guanylate binding protein 128up 16.3 6 8 5 94679.84126 8 +P32392 Actin-related protein 3 10.53 4 7 4 207359.907 7 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 189583.6788 12 +P33438 Glutactin 14.13 17 42 0 500234.55703 35 +P34082 Fasciclin-2 17.18 15 23 0 235959.4381 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 724266.526 20 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 575802.5255 17 +P35220 Catenin alpha 24.86 22 44 14 748585.0115 39 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 43122303.37786 354 +P35415 Paramyosin, long form 73.38 77 511 0 21870685.75843 437 +P35416 Paramyosin, short form 56.41 39 294 0 1729494.1719 38 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 6153.1213 2 +P35554 Flightin 49.45 8 18 0 770888.1383999999 17 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 77121.5662 6 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 1693309.4799 35 +P36188 Troponin I 47.58 17 65 0 5192884.97324 59 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 877765.6278 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 15073.330999999998 2 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 1206682.3239 30 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 4876.9307 1 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 3279660.9933599997 86 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 138824.8587 4 +P37236 Frequenin-1 68.98 11 45 0 435717.526 8 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 347373.60599999997 9 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 3798210.11461 77 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 1702780.1447 37 +P39736 Puff-specific protein Bx42 6.4 3 4 0 32250.7975 3 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 199368.31795 7 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 560079.4569999999 8 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 96196.25899999999 3 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 1095202.54115 27 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 33481.92335 7 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 637174.697 17 +P40427 Homeobox protein extradenticle 2.93 1 1 0 865.1877 1 +P40792 Ras-related protein Rac1 22.4 4 7 0 355177.511 7 +P40793 Cdc42 homolog 37.7 7 8 0 268057.781 7 +P40796 La protein homolog 48.46 17 25 16 459814.22316 24 +P40797 Protein peanut 28.39 14 25 13 675098.4419399999 25 +P40945 ADP ribosylation factor 4 38.33 5 11 0 65373.1139 6 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 105863.71340000001 8 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 1203922.69908 35 +P41043 Glutathione S-transferase S1 76.71 15 62 0 4768879.7851599995 59 +P41044 Calbindin-32 77.74 26 146 0 5589844.67833 136 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 184389.8727 24 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 1458367.0126 16 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 446975.0532 15 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 1891702.2928 44 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 1669646.1549 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 1263986.0818 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 49303.047 6 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 702596.51295 18 +P42207 Septin-1 10.8 4 11 3 66670.117 3 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 2197425.05448 33 +P42325 Neurocalcin homolog 42.63 8 22 8 736541.9032 19 +P42787 Carboxypeptidase D 8.68 10 14 0 149673.16798 13 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 81886.197 6 +P45437 Coatomer subunit beta 4.67 3 4 3 62393.69927 4 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 4596198.80855 82 +P45888 Actin-related protein 2 15.79 5 7 5 91814.15729999999 7 +P45889 Actin-related protein 1 23.4 10 13 10 452582.3637 13 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 24930.874 2 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 977610.4713999999 14 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 2157376.5217 32 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 372632.8443 10 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 1146022.1236999999 44 +P46824 Kinesin light chain 37.4 23 45 0 1285360.18986 41 +P47947 Troponin C, isoform 1 24.68 4 24 0 1568228.5305 24 +P47948 Troponin C, isoform 2 47.1 6 9 0 17320.2717 3 +P47949 Troponin C, isoform 3 63.23 9 25 0 1078825.842 20 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 1323508.4093 20 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 1141508.94728 22 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 910453.3691 24 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 2171440.0689 28 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 399130.386 4 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 28767.064000000002 2 +P48554 Ras-related protein Rac2 26.56 5 10 0 84224.40460000001 5 +P48555 Ras-related protein Ral-a 49.75 8 21 1 793594.4213 20 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 79517.351 4 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 3915021.0817 52 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 385871.9747 16 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 1582741.7782 33 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 3285215.78021 87 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 109310.05949999999 5 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 723876.35507 32 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 1552975.4589 40 +P48607 Protein spaetzle 3.99 1 1 0 5732.5225 1 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 358145.505 10 +P48610 Arginine kinase 1 75.84 36 446 0 44302704.83587 406 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 1303380.47984 22 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 558740.91839 39 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 73888.35234 6 +P49028 Protein mago nashi 30.61 4 6 4 34203.8254 3 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 387830.899 8 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 909275.3218 9 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 11093.478 1 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 17038.3919 2 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 2621.6123 1 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 29068.5713 4 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 1681809.507 28 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 128163.68802999999 10 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 8290.0445 2 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 666726.7602 22 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 95876.6203 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 531683.65735 20 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 111428.1551 7 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 10250.094 1 +P53034 Replication factor C subunit 2 8.46 3 3 3 44165.407999999996 2 +P53501 Actin-57B 69.15 29 622 4 34070548.386 70 +P53777 Muscle LIM protein 1 31.52 3 14 0 580726.1462 10 +P53997 Protein SET 15.24 4 9 4 181580.288 9 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 172569.627 5 +P54191 General odorant-binding protein 69a 13.51 2 6 2 74020.45300000001 5 +P54192 General odorant-binding protein 19d 69.33 10 107 10 15054312.17853 103 +P54193 General odorant-binding protein 83a 42.86 7 18 0 1313989.962 16 +P54195 General odorant-binding protein 28a 40.56 4 13 4 451678.22 12 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 13340.052500000002 2 +P54352 Ethanolamine kinase 6.76 3 3 2 30741.75664 3 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 369924.6273 15 +P54357 Myosin-2 essential light chain 89.12 10 40 1 1935021.9401 34 +P54359 Septin-2 17.66 7 10 1 234878.1698 10 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 24549.592 1 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 3758970.0387 72 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 38761.903 2 +P54399 Protein disulfide-isomerase 75.6 37 146 0 11661771.36955 128 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 13760960.35735 134 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 301731.7437 11 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 297856.7016 18 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 1074470.353 14 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 4017204.8916 66 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 1673290.49648 30 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 2107879.2494 48 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 28422.451 3 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 156916.059 4 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 1021955.35366 18 +P61849 Dromyosuppressin 10.0 2 3 0 50045.109 3 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 9263568.14209 89 +P61855 Adipokinetic hormone 37.97 2 3 2 45469.392 3 +P61857 Tubulin beta-2 chain 44.39 15 202 2 1230828.4844 3 +P62152 Calmodulin 99.33 19 359 0 27404626.53009 317 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 1322223.405 30 +P81829 Leucokinin 6.25 1 1 1 7355.9326 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 5012850.6203 88 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 1835146.05972 35 +P82295 Prominin-like protein 3.75 3 3 0 2816.7715 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 609287.6398 14 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 178728.98554 12 +P83967 Actin, indirect flight muscle 68.62 27 587 2 47880.9419 4 +P84029 Cytochrome c-2 70.37 11 82 0 6958861.6298 77 +P84040 Histone H4 59.22 9 102 0 7630471.97207 93 +P84051 Histone H2A 37.1 5 48 0 1480486.61416 22 +P84345 ATP synthase protein 8 18.87 1 5 1 151807.3272 5 +P91891 Protein Mo25 34.22 13 23 0 573474.7696 19 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 193377.56136 18 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 608683.8378 38 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 5354208.58265 91 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 1866012.4493 33 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 1117428.953 20 +P92029 DnaJ-like protein 60 4.15 1 1 0 6526.253 1 +P92177 14-3-3 protein epsilon 72.14 22 257 20 12966360.00886 177 +P92204 Negative elongation factor E 10.0 3 4 3 72734.552 4 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 11431.359 1 +P98081 Protein disabled 5.35 9 11 0 43619.687900000004 9 +Q00174 Laminin subunit alpha 22.49 77 124 77 3828768.30276 116 +Q00963 Spectrin beta chain 23.88 58 119 2 9459.28894 3 +Q01603 Peroxidase 8.41 6 6 0 75577.6826 5 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 17066708.59297 221 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 71648.9598 4 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 6601.195 2 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 815884.5631 28 +Q02910 Calphotin 3.36 2 4 2 13872.8066 4 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 36753.8137 7 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 13260.94523 4 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 1241049.61546 20 +Q03427 Lamin-C 59.74 41 127 3 2481615.32185 100 +Q04047 Protein no-on-transient A 13.43 8 10 0 75744.3098 9 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 232762.6476 20 +Q04691 Fat-body protein 1 24.68 26 37 0 284025.54321 32 +Q05783 High mobility group protein D 21.43 2 3 0 38001.3724 3 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 33901650.73798 508 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 1919.2354 1 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 6414558.826 80 +Q06943 High mobility group protein Z 43.24 4 12 0 91385.17574 10 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 32223.35884 4 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 307001.13437 18 +Q07171 Gelsolin 25.81 18 39 0 1058359.4508 34 +Q07327 Protein ROP 35.51 20 37 0 928180.4014399999 34 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 408246.883 12 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 1845.7294 1 +Q08473 RNA-binding protein squid 42.44 9 32 0 1288997.01069 28 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 30697.6632 5 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 54923.0466 3 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 255085.4288 13 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 15183.8158 2 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 785874.561 12 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 24154.298000000003 2 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 42207.1587 3 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 164291.6556 10 +Q11002 Calpain-A 7.73 7 8 0 103890.02298 8 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 2296869.5068 27 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 4175315.50878 74 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 3701799.2257499998 83 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 5131487.49632 94 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 2373207.9327000002 38 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 5179171.45344 78 +Q24050 Elongator complex protein 5 29.39 7 10 6 93528.383 7 +Q24114 Division abnormally delayed protein 8.63 5 10 0 187986.45260000002 10 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 436101.91897 15 +Q24134 Negative elongation factor D 2.42 1 1 0 2821.5999 1 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 60342.88649999999 5 +Q24185 Protein hook 20.47 13 18 13 332647.681 18 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 778401.7203 28 +Q24207 Protein boule 27.63 5 9 0 262528.95530000003 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 407076.72693 18 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 81765.7993 6 +Q24211 Protein stoned-A 37.53 27 59 0 993596.96043 53 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 850489.2912 16 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 87538.527 5 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 109957.11920000002 5 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 13127243.57528 166 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 311986.00820000004 16 +Q24292 Protein dachsous 0.31 1 1 0 2545.3335 1 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 79097.96220000001 6 +Q24298 DE-cadherin 15.06 23 36 23 790496.4214999999 34 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 11361.9661 2 +Q24318 Transcription factor Dp 7.19 3 4 0 17732.5105 3 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 147550.8025 8 +Q24322 Semaphorin-1A 2.34 2 3 0 1556.1443199999999 3 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 78798.499 4 +Q24372 Lachesin 17.83 6 8 6 92704.84479999999 7 +Q24388 Larval serum protein 2 8.84 5 5 0 31507.783499999998 4 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 2369052.72545 63 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 3513389.7032999997 45 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 15059311.611019999 154 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 153453.6501 22 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 67281.59607 8 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 30173.9216 4 +Q24509 Syntaxin-5 4.28 2 2 0 8732.1787 2 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 124860.7619 8 +Q24524 Protein singed 5.86 3 3 0 27709.161 3 +Q24537 High mobility group protein DSP1 13.99 6 14 0 226141.063 14 +Q24547 Syntaxin-1A 29.21 12 41 0 1523821.1218 39 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 18907295.77934 249 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 14017.2484 3 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 204835.1978 14 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 2806600.1217 27 +Q26377 Pro-corazonin 40.26 5 12 5 121790.42566000001 11 +Q26416 Adult cuticle protein 1 20.0 1 5 1 193839.781 4 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 87977.2857 5 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 665323.1313 18 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 39657.6129 5 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 2242907.34401 40 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 843405.6104 15 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 2019679.724 49 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 258702.26940000002 11 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 377474.6787 12 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 510.5255 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 595170.40186 12 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 466041.78799999994 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 12693.0101 3 +Q3KN41 Neurexin 1 1.96 4 4 0 44824.3603 4 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 16678.191 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 64474.19914 3 +Q4V645 Trissin 16.67 2 3 2 56207.246 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 28465.706 2 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 72501.25 3 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 45766.943400000004 6 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 361145.2665 15 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 51219.5405 5 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 15129.4272 2 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 50188.6214 5 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 222892.2193 7 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 57170.288 4 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 478329.82409999997 8 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 270451.05296 12 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 34086.9101 5 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 279553.0142 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 1019305.16755 29 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 1201.4904 1 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 357474.4245 20 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 46431.042799999996 6 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 450637.0784 15 +Q7JXF7 Protein seele 34.92 5 7 5 127530.0447 7 +Q7JYV2 Synaptogyrin 8.3 1 1 1 3598.1794 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 18039.984 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 104411.452 3 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 123082.6754 11 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 298332.81736 14 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 16752.7724 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 118606.70113999999 9 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 26779.02836 5 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 14681.376 2 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 1065766.23363 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 30024.645 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 168286.76398 12 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 112665.76314 12 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 36878.0995 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 360369.91708 20 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 149906.54020000002 9 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 6910509.008099999 72 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 124708.35075 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 859678.2304 24 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 1592526.1745 34 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 14746.8883 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 1629424.92507 51 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 270809.37604 22 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 227355.9567 15 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 25043.1958 4 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 20637.752 1 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 143604.139 7 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 9171169.97662 62 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 526.9202 1 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 189349.99599999998 8 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 350820.18787 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 81528.638 3 +Q7KVY7 Syntaxin-4 6.01 2 2 1 15947.66674 2 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 57283.3793 5 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 2924932.50055 47 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.94 2 2 2 812.7107 1 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 405107.05194000003 18 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 139726.36 6 +Q868Z9 Papilin 18.81 47 94 47 1233587.66333 87 +Q86B79 RING finger protein unkempt 3.17 2 2 0 31434.369 2 +Q86B87 Modifier of mdg4 13.77 6 8 0 159119.22373 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 12402.3394 3 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 79206.652 4 +Q86NP2 Negative elongation factor A 9.51 9 11 0 101700.0703 10 +Q86P48 AT-rich binding protein 7.22 3 5 3 14592.83815 4 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 69952.7384 6 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 783879.8534 22 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 25398.5648 4 +Q8IN41 Protein Turandot X 8.45 1 1 1 12612.412 1 +Q8IN43 Protein Turandot C 31.01 4 14 4 187443.1207 11 +Q8IN44 Protein Turandot A 58.14 9 20 9 606324.807 18 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 122217.5585 6 +Q8IPM8 Complexin 66.2 10 69 0 32721.7264 3 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 174745.274 14 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 75455.251 7 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 2887.0842 1 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 165946.97561 11 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 286807.214 7 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 88708.4345 7 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 1856250.1736400002 28 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 12379.198 2 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 28315.488 1 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 2713.9617 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 187579.2154 4 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 58344.37605 4 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 1837433.4017999999 38 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 527292.60944 22 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 11098.859 1 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 1451.38584 2 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 29896.0206 4 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 159327.76773000002 6 +Q8MSS1 Protein lava lamp 17.06 45 52 0 516871.06024 51 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 26954.918 2 +Q8MSV2 Protein alan shepard 12.54 6 13 6 158872.2481 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 7291.2658 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 12925.011499999999 2 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 16432.8654 3 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 1005671.098 17 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 161461.22960000002 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 592087.349 16 +Q8SY33 Protein Gawky 11.05 13 19 13 195984.40218 15 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 2856090.6089 55 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 250239.35766 17 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 91345.09476 6 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 47637.6736 4 +Q8SZ63 Golgin-84 5.23 3 3 3 7598.9985 3 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 134428.86860000002 7 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 25158.04 1 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 766573.99573 34 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 718881.78917 31 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 16239.327 1 +Q8T390 Endophilin-A 56.91 20 92 0 2951870.79338 71 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 174689.1423 6 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 1067691.4888 20 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 278618.2743 12 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 197442.8556 11 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 364.20984 1 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 655458.6109 18 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 71260.5801 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 5859167.91562 95 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 5842177.25756 84 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 8401410.353629999 109 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 5890.6379 2 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 1585441.0751999998 17 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 1492998.1069 27 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 9183563.15726 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 1406916.1497 48 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 38392.753 3 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 685936.79064 21 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 11119.89735 3 +Q94547 Regulator of gene activity 4.27 3 4 0 121920.4887 4 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 38751.676999999996 4 +Q94901 RNA-binding protein lark 53.69 20 40 20 601168.3342 38 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 1773.0378 1 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 178928.1527 7 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 32732300.696510002 327 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 7071.223 1 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 112766.7736 6 +Q95029 Cathepsin L1 38.27 16 60 3 3344794.9148 52 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 840479.2598 18 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 35132.282 2 +Q95RA9 GILT-like protein 1 46.4 9 28 9 1429316.91097 26 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 8315.2388 2 +Q95RI5 Failed axon connections 54.78 24 114 0 5808824.2672999995 104 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 3467.9377 1 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 141952.99599999998 5 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 130120.9482 11 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 88955.40469999998 4 +Q95T12 Calcium channel flower 12.89 2 3 2 75726.208 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 31532.9725 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 2975.486 1 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 81062.99650000001 9 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 20362.1963 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 384421.8495 19 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 61948.7478 9 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 96903.36 6 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 1535.0142 1 +Q967D7 Protein turtle 2.74 4 6 0 112302.6424 6 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 96261.38278 12 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 54357.6219 4 +Q9GQQ0 Protein spinster 1.98 1 3 1 23668.314 3 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 4529623.2482 55 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 13058.824700000001 2 +Q9I7D3 Caprin homolog 12.38 10 12 0 91442.82372 8 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 80847.37456 6 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 86749.2792 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 39827.591 2 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 123083.7665 6 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 1043324.67822 30 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 21134.6943 2 +Q9I7U4 Titin 1.5 22 25 0 228365.20395 21 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 24786.99 1 +Q9NB04 Patj homolog 31.46 20 37 0 761636.91691 33 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 10843.079600000001 3 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 40207.099 5 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 39628.003 3 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 68295.05 3 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 141814.12589999998 7 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 63138.293 5 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 13393.479 1 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 15544.113 2 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 2431936.17049 49 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 54426.1755 7 +Q9TVM2 Exportin-1 1.79 2 2 0 19187.2497 2 +Q9TVP3 J domain-containing protein 79.49 16 82 16 4782680.30955 75 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 455330.8654 27 +Q9U4G1 Protein borderless 19.89 13 27 13 748789.1518 24 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 51148.3 3 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 191762.628 11 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 844175.5386 16 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 4334.9644 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 55641.082819999996 3 +Q9U915 Adenylate kinase 2 72.08 21 51 21 1720046.92974 46 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 82372.944 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 201063.4559 9 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 215148.398 10 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 114766.6638 9 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 4969.0127 1 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 10953.34224 3 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 93553.4727 4 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 1142886.4732 24 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 21488.632599999997 2 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 2094727.0095 27 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 82091.2154 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 322801.643 6 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 176036.49145 6 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 261868.1493 13 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 1704079.33845 37 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 76630.9653 7 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 175563.3335 13 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 78541.2034 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 353947.3375 20 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 7483601.72275 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 252366.14979999998 15 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 10770.082 1 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 42146.849 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 266175.9364 7 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 11775.24395 2 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 1306728.07746 40 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 50629.095 3 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 184170.5932 8 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 590296.8095 11 +Q9V3Z2 Serine protease 7 15.35 5 6 4 69624.7956 6 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 148807.8179 11 +Q9V427 Innexin inx2 8.99 4 8 0 193451.419 6 +Q9V429 Thioredoxin-2 68.87 7 37 7 3037711.8135 36 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 384952.92575 16 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 696431.9094 23 +Q9V447 Krueppel homolog 2 12.68 3 3 0 50156.1117 3 +Q9V496 Apolipophorins 34.8 114 261 0 14672907.46226 233 +Q9V498 Calsyntenin-1 1.02 1 1 0 46563.12 1 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 26435.75915 2 +Q9V4C8 Host cell factor 4.93 8 11 8 139750.38304000002 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 4137.742 1 +Q9V4N3 Cytochrome b5 61.19 5 26 5 1060567.03593 20 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 167887.766 5 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 186245.6255 11 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 12365.555100000001 3 +Q9V521 Phenoloxidase 2 22.22 16 20 15 225593.39215 18 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 403568.2366 14 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 17123.6298 2 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 305452.67726 15 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 729146.09595 29 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 1392523.03921 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 875.53986 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 26183.307 1 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 168372.0596 8 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 27483.802499999998 2 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 78915.2225 5 +Q9V6G5 Tafazzin 5.82 3 3 0 34387.732 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 3574015.05721 69 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 23833.2613 3 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 28119.318600000002 3 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 36496.3456 4 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 10221.370499999999 4 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 2941634.9008 64 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 4689833.8954 98 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 872504.8073999999 21 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 35910.1523 2 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 54421.03936 4 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 787926.23373 29 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 2578424.40327 98 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 1149543.4215 15 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 366237.8901 8 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 38298.1169 5 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 49787.672 2 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 67498.6511 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 19524.002 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 28456.773 3 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 7112.234 1 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 14854.628499999999 4 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 879983.3744 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 118478.8622 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 448100.2097 11 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 1440.68045 2 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 13981.043 1 +Q9VA37 Protein dj-1beta 72.73 12 59 12 3066818.55718 50 +Q9VA70 Neutral ceramidase 2.41 2 2 0 13045.052 2 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 3938000.17677 44 +Q9VAF5 Cadherin-99C 5.92 10 11 10 56678.819729999996 9 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 1298179.8436 23 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 437852.39374 28 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 3345328.77138 73 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 1797074.0421 45 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 84876.2255 7 +Q9VAW5 La-related protein 1 4.06 5 5 0 38290.788570000004 4 +Q9VAY3 Mitoferrin 7.65 3 3 3 32588.2152 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 47688.108 3 +Q9VB68 Serine protease grass 12.2 5 6 5 28522.7009 4 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 31523.710900000002 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 8748.601130000001 2 +Q9VBV3 Protein takeout 26.91 6 7 0 198192.50300000003 6 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 143410.99 9 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 8006.4156 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 985.21064 2 +Q9VC57 Atlastin 5.91 3 4 0 50120.720700000005 4 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 21882.64472 3 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.6 2 2 0 798.76166 1 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 372832.0427 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 146325.1967 8 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 16038.7171 3 +Q9VCE8 Actin maturation protease 9.74 1 2 0 4558.565500000001 2 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 345365.6711 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 229042.2877 14 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 117288.74070000001 4 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 228583.2817 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 380484.9575 12 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 64637.96 2 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 7715.9496 2 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 9628.1802 2 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 403591.57660000003 10 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 420304.51206000004 19 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 39967.545640000004 5 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 69549.7557 4 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 151226.0451 13 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 23033.902000000002 3 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 2162.2585 1 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 34850.076 2 +Q9VDL1 Esterase CG5412 9.68 2 3 2 6276.6943599999995 3 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 10604.8727 2 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 154800.5134 8 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 2818.9375 1 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 29430.1515 3 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 13016.816 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 41349.157 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 5312.4165 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 2949518.77966 50 +Q9VER6 Modular serine protease 3.18 2 3 2 12397.6644 3 +Q9VET0 Neuropeptide F 29.41 3 4 0 51883.02884 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 1539104.5353 43 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 124606.5957 5 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 8393.0256 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 107519.98594000001 8 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 4343610.8234 58 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 21440.6043 3 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 295783.2107 16 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 15883.061 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 53247.307 2 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 1161253.3913 29 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 94866.4364 9 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 20867.81287 3 +Q9VFJ0 Probable cytochrome P450 313a1 4.67 2 2 2 3737.6688000000004 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 34545.484599999996 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 45236.929000000004 3 +Q9VFM9 Twinfilin 24.78 8 14 8 202315.6916 12 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 161965.2977 7 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 61397.049 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 16504.22 1 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 103057.34105 9 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 67429.466 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 7846.686 1 +Q9VG55 Protein hugin 18.32 2 2 2 8515.574 2 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 300752.7007 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 9439.658 1 +Q9VG76 Myc-binding protein 11.05 2 2 2 25757.754 1 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 21592.2383 3 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 1384648.4312 23 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 184466.90200000003 6 +Q9VGG5 Cadherin-87A 5.16 9 12 9 202808.80494 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 21760.764 1 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 198516.225 8 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 2700.2861 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 33186.626000000004 3 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 25206.436 1 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 3273232.41052 47 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 472769.1808 17 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 16547.6473 3 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 3828.684 1 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 342307.723 14 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 7513.8345 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 656825.0650000001 11 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 513294.161 7 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 1315388.8118 19 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 2734.2673 1 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 85678.3343 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 54592.922600000005 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 234091.8762 10 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 47187.1209 7 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 181490.10940000002 6 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 19727.4856 4 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 187779.65657 17 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3511.935 1 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 2252888.4508599997 52 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 3491804.8664700002 44 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 145326.321 6 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 21336.8331 3 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 3785.411 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 96950.3591 8 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 155094.33185000002 11 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 15418.036 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 587414.2361 14 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 560960.1722 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 148544.5642 5 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 58797.838540000004 3 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 35424.148 2 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 9090.1473 3 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 472348.96530000004 12 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 367276.4072 14 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 185501.67320000002 7 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 112797.75390000001 7 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 215263.221 8 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 8152.422 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 2194.8057 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 19974.5703 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 9726.3707 2 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 12713.135 1 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 113753.8886 9 +Q9VJL6 Glia maturation factor 10.87 2 3 2 83063.165 3 +Q9VJQ5 Protein Dr1 17.49 3 3 3 27904.8969 3 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 491666.15979999996 14 +Q9VJY9 Protein Loquacious 12.69 5 5 0 76995.2934 4 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 11225.8273 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 416659.84249999997 13 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 5022.3643 1 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 2332.402 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 127501.02154 10 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 34539.6413 7 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 37441.486000000004 2 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 102812.486 4 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 39110.27 2 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 5242.6206 1 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 1506398.80397 37 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 1846916.7512 58 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 27274.3642 3 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 75395.0126 5 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 99450.00937 10 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 173433.9187 8 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 58167.837999999996 6 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 634628.3147 18 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 16940.6247 3 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 694542.43384 13 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 203649.08740000002 8 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 155655.0857 9 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 3535.928 1 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 23048.0867 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 58248.2574 5 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 45926.1275 5 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 37316.019100000005 6 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 39639.9907 3 +Q9VMD6 Protein real-time 2.58 2 2 0 11768.0187 2 +Q9VMD9 Tiggrin 11.33 29 34 0 358137.3113 32 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 39071.5274 5 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 346260.0139 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 26639.0839 3 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 52918.278000000006 3 +Q9VMR8 Protein Turandot M 33.59 3 5 0 228513.5566 5 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 151456.1018 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 43699.3545 3 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 41391.5686 5 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 599641.6029 12 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 62179.7617 3 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 52643.466 3 +Q9VMY9 Guanine deaminase 4.46 2 2 2 39889.854 2 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 51957.29 4 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 142309.3877 6 +Q9VN14 Contactin 19.78 25 34 25 644292.01832 31 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 15863.3643 3 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 63762.518 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 240120.396 12 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 731524.7454 29 +Q9VN93 Cathepsin F 22.64 13 28 12 992371.9132 24 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 157709.869 6 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 53333.897 3 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 94830.34899999999 3 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 241132.96234000003 9 +Q9VNE2 Protein krasavietz 31.28 16 24 16 587397.7382 22 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 574479.904 12 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 11442.175 1 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 59942.7791 3 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 53186.97867 4 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 13491.7914 4 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 55656.0503 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 69717.2418 4 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 32052.2437 4 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 155184.5173 7 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 3906732.11127 27 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 1000089.76175 12 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 210702.4832 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 22158.4518 4 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 71910.01766 5 +Q9VQC4 Glycerate kinase 12.94 8 8 0 112516.3057 8 +Q9VQF7 Bacchus 40.79 6 16 6 220292.67139 13 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 64434.759 3 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 548291.3493 16 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 245366.7795 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 45140.763999999996 2 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 157633.3931 10 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 9873.905 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 7352.4916 2 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 16624.999499999998 2 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 179993.378 5 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 31259.0891 8 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 2883.6738 1 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 297108.815 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 10251.948400000001 2 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 92915.75706 5 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 5813.03097 2 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 146894.95070000002 8 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 304085.01 4 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 33354.740999999995 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 3480870.89928 68 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 26923.84 2 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 13917.9535 2 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 66980.60560000001 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 38074.844 1 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 4310968.57658 60 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 48789.991599999994 4 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 65000.010500000004 6 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 32418.386769999997 4 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 1703683.37523 51 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 294682.75950000004 7 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 10372.7423 3 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 7324.1383399999995 2 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 32765.283000000003 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 34184.06 2 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 450257.222 13 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 81256.497 3 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 129009.9827 6 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 7173.394 1 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 52483.516 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 16115.792 1 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 37941.8672 4 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 3068483.92463 45 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 101698.19686000001 6 +Q9VTZ5 Transferrin 2 22.59 16 21 16 308000.0183 19 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 135484.7776 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 83246.05 2 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 5820422.8396 100 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 930092.06341 27 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 11718.6281 3 +Q9VU84 Drebrin-like protein 26.18 11 14 11 206043.8788 12 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 79421.11260000001 5 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 3862.6284 1 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 1632377.6672 36 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 73317.48873 5 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 1050484.7558 27 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 26373.383 1 +Q9VV36 Retinin 29.84 5 91 5 6168654.92198 73 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 2208.516 1 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 2034743.7204 36 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 569169.0253999999 25 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 10197.824 1 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 182611.04369999998 7 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 472520.5364 23 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 96243.00649999999 8 +Q9VVE2 Protein rogdi 30.97 7 12 7 225208.9126 11 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 254285.6815 18 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 29721.712199999998 3 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 858885.77646 32 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 2326.4595 2 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 27254.00025 5 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 313554.75094 21 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 33222.788 3 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 50157.384959999996 3 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 172719.438 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 44013.844 2 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 27536.569150000003 6 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 517986.0551 22 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 13837.7084 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 216056.5973 11 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 399999.091 13 +Q9VWA1 Clathrin light chain 40.64 11 40 0 1383893.88085 37 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 11261.321100000001 2 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 28279.74455 2 +Q9VWE0 Cytokine receptor 1.56 2 2 2 33644.867 2 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 477036.19299999997 12 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 17450622.24092 165 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 2407719.40368 23 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 90282.5234 10 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 86422.28629999999 4 +Q9VWU1 Serine protease persephone 7.61 3 3 3 33542.1599 3 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.84 3 3 3 404.66806 1 +Q9VWX8 Frequenin-2 52.94 11 47 5 1085485.8939 41 +Q9VX10 Sulfiredoxin 4.32 1 1 0 20739.021 1 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 297491.8523 11 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 984150.54452 23 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 46059.096399999995 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 368873.6076 8 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 30911.7698 5 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 4426.4204 1 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 1461153.21157 54 +Q9VXG4 Annexin B11 23.68 13 31 13 906735.8028 30 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 432326.8394 17 +Q9VXK0 Protein NipSnap 15.38 4 8 0 204889.139 6 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 388298.575 14 +Q9VXN2 Protein stunted 49.18 3 9 3 186719.9902 6 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 15857.940599999998 2 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 276178.8861 10 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 50214.383400000006 4 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 441.9095 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 1567706.22518 38 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 43695.421500000004 4 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 558554.8507 10 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 24297.311 4 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 9921.834 1 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 135002.1775 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 21024.072 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 36447.4187 3 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 65608.54553 6 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 4390.857 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 1620.2913 1 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 6934.2793 1 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 11422.0 1 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 1474468.54308 47 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 16016.76128 4 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 230675.9708 11 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 231161.1128 8 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 1470840.564 26 +Q9VZ35 Protein Vago 13.12 2 2 2 4298.63945 2 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 242211.39299999998 3 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 365598.8164 14 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 717086.683 22 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 65691.8956 7 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 55277.0469 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 14157.0149 4 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 14376.869799999999 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 6596.9497 1 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 19674.328 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 25054.621900000002 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 696180.4013 8 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 890793.376 18 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 2345298.24446 52 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 361597.2899 13 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 18255.484 2 +Q9W032 Protein ecdysoneless 1.9 1 1 1 9343.279 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 1689954.01664 49 +Q9W074 Protein HBS1 3.28 2 2 2 12672.935300000001 2 +Q9W0A0 Protein draper 4.95 4 5 0 32569.0187 3 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 3403373.63988 49 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 3198.0996 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 54591.5374 3 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 152192.371 9 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 651764.493 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 261103.23440000002 13 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 200345.0159 17 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 14992.0512 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 780.77606 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 2060729.3858999999 36 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 200436.31947 9 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 11975.334 2 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 9086187.3595 70 +Q9W1G0 Probable transaldolase 44.71 16 52 16 2779014.1327299997 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 67001.993 2 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 36662.8575 3 +Q9W1K5 Sestrin homolog 1.41 1 1 0 19788.904 1 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 26860.049700000003 3 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 89501.9228 5 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 84407.1954 5 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 100529.7217 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 276283.577 9 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 2253656.4312 50 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 112553.7357 6 +Q9W266 Protein windpipe 8.12 5 11 5 326717.8244 11 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 513003.60380000004 12 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 172965.2188 9 +Q9W2E7 Protein Rae1 29.48 9 14 9 493657.4315 12 +Q9W2M2 Trehalase 33.56 19 38 0 905759.8402 33 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 100534.475 5 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 11081.915 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 51617.8736 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 181618.72706 5 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 3628147.35887 71 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 489362.52493 13 +Q9W358 Chaperone Ric-8 12.22 7 7 0 79013.3587 7 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 5683046.3111000005 80 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 82371.799 6 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 297802.61 5 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 146115.763 4 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 80048.59 4 +Q9W3E2 Protein PIP82 19.58 20 31 20 193022.71208 24 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 69156.9384 5 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 61087.859 4 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 80698.6856 5 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 192841.201 3 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 68229.5247 4 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 1855.4303 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 4943.8545 1 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 4760.2036 1 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 15590893.11227 169 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 306449.89755 7 +Q9W436 Neprilysin-1 2.59 2 2 2 11377.993 2 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 162985.181 5 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 36096.54 1 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 91370.64944 11 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 482609.7788 14 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 169964.1081 13 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 305342.032 14 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 503120.94481 15 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 82139.74160000001 5 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 1486430.56691 111 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 29641.646 1 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 428150.2499 16 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 402414.8213 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 46160.9164 3 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 470722.2325 10 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 44047.81328 4 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 806485.82632 56 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 4042.375 1 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 7411.8643 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 462245.55195 10 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 887965.8232699999 30 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 84008.22476000001 7 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 188936.3795 10 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 430070.5645 16 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 1100789.9103 14 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 1281560.4674 34 +Q9XZL8 Protein sarah 32.53 7 14 0 208177.4904 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 8124.044400000001 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 56533.43827 5 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 49343.759600000005 4 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 585055.4672000001 16 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 51229.9812 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 918000.8083 23 +X2JAU8 Protein nervous wreck 28.19 30 88 30 2777121.15751 78 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 15217.317 1 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 64051.1135 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 35950.070999999996 2 +A0A0B4JCR9 Uncharacterized protein, isoform D 3.12 1 1 0 308.14777 1 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 194418.0159 12 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 898165.5944000001 6 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 80827.7193 6 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.0 2 2 0 1701.1876 1 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 3625631.62379 101 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 11170.586 2 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 2660.514 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 184248.7255 13 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 82366.38268 9 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 34661.9208 4 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 310021.11783 20 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 6277216.24959 160 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 12867.5301 2 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 13707.7022 2 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 343608.8386 24 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 180053.854 4 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 83533.115 3 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 70513.9254 8 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 34398.52058 4 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 164387.31637 7 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 6258.287600000001 3 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 122998.32310000001 10 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 5903568.0327 116 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 145038.585 7 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 86868.9025 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 26323.9396 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 30657.433 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 8640.3496 2 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 2227214.003 46 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 49297.3394 3 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 574.1001 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 1087158.28036 53 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 6742.6899 2 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 491317.7981 23 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 29844.703 2 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 32485.334 6 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 562133.85974 17 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 332616.0661 12 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 713483.13656 43 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 58557.9313 10 +A0A0B4KEJ7 Coronin 12.71 7 7 0 109697.6424 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 14428.291000000001 3 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 15912.3037 5 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 248227.4797 17 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 15168.038 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 47514.33 2 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 7354.3117999999995 2 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 448238.5173 25 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 759.42725 1 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 1424635.48827 44 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 7867.3567 2 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 3626879.8270900003 78 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 45196.75153 10 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 655937.873 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 525017.9763 10 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 147769.824 2 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 4522.7676 1 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 89116.7178 8 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 66100.2374 7 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 995.92926 1 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 4.45 1 1 0 680.43555 1 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 123868.484 5 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 2285.5718 1 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 69332.4482 7 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 2872.3689999999997 2 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 69723.1748 7 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 14712.979 2 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 237372.8744 15 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 944103.3572 21 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 816434.6937 28 +A0A0B4KGM5 Uncharacterized protein, isoform B 1.13 1 1 0 448.44208 1 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 8480.3234 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 18462.3638 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 565108.3097 22 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 10345.611799999999 2 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 62377.8034 7 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 11699.277 2 +A0A0B4KH34 Annexin 55.56 21 164 3 12411710.58314 148 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 5962.904 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 5557.915 1 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 346146.3687 17 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 255018.2292 16 +A0A0B4KHF0 Ferritin 75.42 20 121 1 16775969.16416 92 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 21076107.63826 216 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 251387.91746 7 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 7982.2925 1 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 15270.605500000001 2 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 166131.2475 8 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 421006.22916 22 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 134712.97 2 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 61151.7255 7 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 48393.0201 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 107175.3135 6 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 5939.595 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 1408541.3643 42 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 1386573.2085 22 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 111430.038 3 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 35644.115999999995 2 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 12548.352 2 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 6083.4594 2 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 722064.4204000001 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 588336.2811 31 +A0A0B4LF95 glutaminase 11.14 7 11 0 122110.459 9 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 503474.37318 24 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 363869.35543 21 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 51118.251000000004 5 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 933.4794 1 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 15474.949 1 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 15025.561699999998 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 2632.1106 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 171050.393 6 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 23618.505 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 185712.19759999998 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 16661.542699999998 2 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 197348.395 13 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 2117372.2865 46 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 256916.8751 11 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 13858.987 1 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 599521.93505 19 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 36253.1797 5 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 2562314.0077 53 +A0A0B4LGT9 Uncharacterized protein, isoform B 4.92 1 1 0 1683.1136 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 124930.7017 8 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 1001326.3544 36 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 81919.096 4 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 68588.12526 6 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 4754.0693 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 37092.813500000004 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 84328.2016 8 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 23179.316 2 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 62657.257 3 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 35133.248999999996 3 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 4245.0931 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 145705.31826 14 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 25264.753699999997 3 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 6063.19 1 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 282899.27502 22 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 29412.0424 4 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 25359.672 2 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 257125.81375 11 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 93017.584 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 219244.28776 12 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 58899.9012 7 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 9439766.4427 123 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 146266.8127 8 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 13914.533 2 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 17366.8476 2 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 767017.8793 15 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 45801.3967 3 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 8939680.75729 130 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 78797.13565 13 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 146935.2972 11 +A0A4P1SAA7 IP07559p 6.8 1 1 0 12682.716 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 785970.56458 46 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 113837.2845 7 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 5221.8823 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 10922405.27999 266 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 10917.3985 2 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 1514442.2843 23 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 75409.8688 7 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 144591.2395 3 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 14921.9093 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 12370.522 1 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 5604019.54034 240 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 246705.41198 29 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 976107.5565 26 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 396562.196 15 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 116952.57280000001 6 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 116622.30720000001 8 +A1Z6F6 FI18602p1 9.88 9 10 0 189692.1385 9 +A1Z6G9 FI18173p1 10.5 3 3 3 20396.9298 3 +A1Z6H4 RE52822p 14.24 7 7 0 89590.97450000001 7 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 59451.822400000005 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 44071.201 2 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 108819.6498 5 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 123102.5159 10 +A1Z6R7 FI21445p1 40.71 9 20 9 406849.529 18 +A1Z6V5 FI01422p 40.46 14 31 14 1162961.63463 28 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 414715.6599 13 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 147708.8853 8 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 27524.447 2 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 5582.403 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 10530.538670000002 3 +A1Z7B8 GEO08456p1 21.52 3 5 3 169577.4204 5 +A1Z7G2 MIP13653p 13.39 2 4 2 506174.75800000003 4 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 245387.705 16 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 32921.184 3 +A1Z7K6 FI20236p1 6.38 3 4 3 63462.3732 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 234640.0227 11 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 30703.2427 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 78877.6292 5 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 1491739.85515 43 +A1Z7V9 FI20020p1 10.04 5 5 0 125690.049 4 +A1Z7X8 FI02944p 19.81 7 8 7 117794.2786 6 +A1Z803 FI02892p 29.12 12 18 12 792415.2369 18 +A1Z843 Nodal modulator 3 9.42 11 14 11 219112.0095 14 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 840670.93885 25 +A1Z871 CAP, isoform B 13.38 20 35 0 89425.17893000001 4 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 2417829.8831 47 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 121105.981 4 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 30602.707 1 +A1Z8G7 FI09243p 9.92 1 2 1 1983.4358 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 9070846.3223 42 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 80959.2035 10 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 18600.809999999998 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 680.5763 1 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 28094.83363 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 924553.0746 19 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 379016.6805 12 +A1Z933 GEO02273p1 27.91 2 4 2 45862.9569 4 +A1Z934 SD19268p 48.83 13 30 13 791468.36622 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 32416.396 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 108179.3515 9 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 17934.1442 3 +A1Z9B5 IP16508p 19.88 3 4 3 40218.3312 4 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 2722909.4112 44 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 680617.3523 15 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 245635.57778 29 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 482885.7458 11 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 15048.45505 6 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 220386.729 4 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 3247.7112 1 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 16181.7 2 +A1ZA23 FI18007p1 33.64 10 24 10 257198.68274 22 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 115735.96455 6 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 62456.76 6 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 22788.188000000002 3 +A1ZAH3 FI16515p1 1.93 1 1 0 536.44965 1 +A1ZAK3 Protein DEK 4.05 3 3 0 41184.5497 3 +A1ZAL1 lysozyme 30.43 5 7 5 244151.77850000001 7 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 9128.618 1 +A1ZAU4 RH39096p 52.14 16 49 0 2619323.6645 47 +A1ZB23 IP19117p 16.06 4 7 4 88369.6654 5 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 7951.8755 1 +A1ZB68 FI01423p 45.91 11 28 11 795186.9155 26 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 825368.791 25 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 110654.4311 7 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 746352.7064 16 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 18168.404000000002 2 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 56157.13822 3 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 1319504.2184 37 +A1ZBA5 FI07234p 7.22 2 2 2 51812.153000000006 2 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 19180.275 4 +A1ZBD8 Mucin-5AC 2.99 4 4 4 13752.8631 2 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 7202.5278 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 1256658.5385 37 +A1ZBK7 Crammer 31.65 3 11 3 94834.4283 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 18275.645 1 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 455455.59609999997 11 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 339118.67350000003 11 +A1ZBU5 GNBP-like 3 28.29 3 10 3 117397.97143 8 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 13536.08 1 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 1562372.8997499999 43 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 10244.205 1 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 358515.67946 30 +A1ZBX6 lysozyme 9.5 2 2 2 8648.335 2 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 5526.1733 1 +A2VEG3 IP16294p 1.06 1 1 0 1608.393 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 3905.1326 1 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 169580.6458 8 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 1180613.0077 32 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 48000.2571 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 184657.0876 13 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 2728938.1497 67 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 5474995.62324 94 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 6889.13 1 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 2419419.7104 35 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 260784.844 11 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 105432.74 2 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 582362.7489 12 +A8DYD1 Combgap, isoform L 10.75 8 11 0 121096.07770000001 9 +A8DYI6 Prohibitin 65.98 22 79 1 3439235.3589399997 72 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 276963.9205 17 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 146362.02764000001 8 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 2119.474 1 +A8DZ06 Stolid, isoform J 12.46 14 21 0 389094.4128 16 +A8DZ14 FI17828p1 18.02 9 24 4 695990.8886599999 22 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 43286.003 4 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 358523.2524 35 +A8E6W0 IP19808p 19.7 4 5 4 109731.6192 5 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 74134.8938 6 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 15788.1647 2 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 39901.226299999995 3 +A8JNP2 arginine kinase 73.07 36 447 2 2126742.6487000003 16 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 10022.562829999999 6 +A8JNS4 Starvin, isoform E 7.4 4 5 0 62994.9741 5 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 13850.223 2 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 178851.819 3 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 32750.6666 5 +A8JQT5 Moesin/ezrin/radixin homolog 1 1.31 4 6 3 374.8739 1 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 44525.5116 4 +A8JQW3 Pinin, isoform B 18.24 5 5 0 56776.5669 5 +A8JR01 Kramer, isoform I 1.49 2 2 0 527.1727 1 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 107554.356 2 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 180317.2505 12 +A8JR58 Hadley, isoform B 7.64 2 2 1 4040.6543300000003 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 3668500.73323 65 +A8JRH3 FI20012p1 66.73 28 71 1 1894964.25802 65 +A8JTM7 Megalin, isoform A 2.81 14 18 14 180961.58299999998 15 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 69135.92744 7 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 21226.7915 3 +A8JUZ6 MIP03678p 16.77 5 7 0 62708.9569 4 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 2491.7686000000003 2 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 520069.45246 29 +A8WH76 GEO10024p1 48.15 4 13 4 512144.7059 11 +A8Y4V5 FI20903p1 5.22 1 1 1 2317.4 1 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 16921.13 1 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 3816132.8846 12 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 12052.443 1 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 50882.879 3 +B7YZH1 FI20143p1 7.21 4 4 0 19916.2708 3 +B7YZN0 Syndecan 12.55 6 8 0 169439.8441 7 +B7YZN4 GH02741p3 49.23 4 4 4 46603.840000000004 4 +B7YZN8 GH02741p1 10.53 1 1 1 29708.09 1 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 75012.30705999999 6 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 5153787.66421 87 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 8480.9714 2 +B7YZV2 Phosphodiesterase 6.39 6 8 0 112024.1593 8 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 425180.9691 24 +B7Z001 Fatty acid synthase 20.0 44 74 0 1182437.21893 70 +B7Z005 Drongo, isoform I 6.42 3 3 0 19363.548000000003 3 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 3102.8252 1 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 5852.819 1 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 23571.7597 2 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 70749.15073000001 4 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 74981.496 8 +B7Z0C9 GH15104p1 34.74 4 7 4 57927.96204 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 11321151.5634 137 +B7Z0M0 FI17308p1 22.13 2 2 1 17818.492 1 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 5066.0341 2 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 214922.5447 10 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 266113.5832 14 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 24718.181 2 +B7Z107 GH09380p1 29.35 3 5 3 22376.9915 3 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 2982.8782 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 41310.04 3 +C0HDP4 MIP05618p 11.31 4 4 0 14129.4837 4 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 1991074.35574 36 +C7LAG1 CoRest, isoform G 2.31 2 2 1 12202.189999999999 2 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 1857083.13073 52 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 744570.11376 28 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 176780.50019999998 8 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 58010.983 3 +D0Z756 MIP14966p 36.55 15 61 0 2521440.50225 57 +D1YSG0 Bent, isoform F 4.99 39 42 0 567908.71708 41 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 281214.553 7 +D3DMM0 MIP15702p 29.31 12 28 0 1010648.9909 28 +D3DMM4 MIP15217p 28.27 22 50 0 1458127.19654 44 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 136911.604 6 +D5SHT6 MIP21537p 8.03 3 3 0 40462.655 3 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 22517.131 3 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 157043.62185 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 270585.26225 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 358682.01660000003 15 +E1JGR3 GEO02620p1 24.62 3 3 3 4002.2909999999997 2 +E1JGY6 Hulk, isoform F 11.14 17 21 0 345987.3753 21 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 165584.56938 13 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 12202.967 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 6364.423699999999 2 +E1JH90 Patronin, isoform F 0.78 1 1 0 2365.8682 1 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 908768.72112 49 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 26030.857799999998 4 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 421214.54959999997 9 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 37436.4375 3 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 35883.729 3 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 154323.816 9 +E1JHP9 Galectin 6.21 3 3 0 24778.1264 3 +E1JHT6 Reticulon-like protein 38.71 18 38 0 1411057.10527 36 +E1JI40 Vermiform, isoform I 11.89 7 9 0 183524.787 8 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 47506.7754 4 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 46504.458399999996 2 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 17319.188 1 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 48236.89118 3 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 10441.234199999999 2 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 7631.625 1 +E1JIY8 L antigen family member 3 20.72 3 3 3 73735.19 3 +E1JJ33 Complexin, isoform U 66.43 10 72 2 1716611.53974 70 +E1JJA4 Dynamin 35.22 31 59 0 1125255.3923 57 +E1JJE4 protein-tyrosine-phosphatase 1.86 3 3 0 524.0056 1 +E1JJG5 Phospholipase A2 2.93 1 1 1 5125.9824 1 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 2223647.3168 68 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 34673.7593 5 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 113777.26030000001 9 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 16339.5974 2 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 1101420.8741900001 43 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 25752.152000000002 2 +E2QD54 Natalisin, isoform D 5.61 3 3 0 27890.3004 3 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 190539.0418 17 +E2QD98 Protein PALS1 5.59 10 13 0 289005.8094 11 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 110965.8296 6 +E8NH67 Asperous, isoform B 59.09 20 77 0 1309924.06569 63 +F0JAP7 LP18071p 13.97 4 5 0 36151.691399999996 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 52639.3153 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 2763682.89285 102 +H1UUB1 GEO12465p1 48.84 5 11 1 671413.31404 8 +H8F4T3 Regucalcin 45.75 9 15 0 675149.0006 15 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 87029.981 5 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 72225.5858 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 1341018.6272 36 +L0MPN7 Asator, isoform H 7.38 8 8 0 97705.611 7 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 55506.1406 10 +M9MRX0 Limpet, isoform J 27.3 27 63 0 2144599.23331 52 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 495675.25513 43 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 107370.7871 9 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 84223.4803 8 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 48756.5382 5 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 471883.31152 19 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 696447.476 13 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 972646.66487 35 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 10420.221 1 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 3155.3162 1 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 161059.1001 7 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 156478.8417 10 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 113075.34944 11 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 229698.76570000002 15 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 173847.21065 14 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 133722.866 9 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 21062810.95751 382 +M9NDB5 RNA-binding protein 6, isoform F 36.89 6 15 1 471.56534 1 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3153.4927 1 +M9NDE0 pantothenate kinase 4.21 2 3 0 20049.201999999997 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 50184.969 4 +M9NDS9 chitinase 0.67 3 4 0 47373.2427 3 +M9NDX8 Neurabin-1 1.98 4 4 0 14253.6634 3 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 47988.22836 9 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 141514.8055 10 +M9NEF2 Histone deacetylase 2.33 1 1 0 1676.7584 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 8939.814 1 +M9NEW0 LD39232p2 58.67 9 12 9 259423.26628 12 +M9NEX3 Cytochrome b5 57.55 6 27 0 564905.32313 21 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 65676.6219 5 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 105832.7117 6 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 112621.77780000001 11 +M9NFC0 Troponin I 47.24 15 56 5 1318446.7493 14 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 49517.806899999996 4 +M9NFH3 Lasp, isoform D 39.01 10 22 1 77570.0387 3 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 294180.78865 18 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 7350.8477 1 +M9NH07 Upheld, isoform N 45.43 30 106 0 8387367.8037 95 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 195072.41 13 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 101711.65580000001 6 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 665642.37834 32 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 6634.5703 1 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 50169.7203 5 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 2648.1838 1 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 2973067.52637 118 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 0.34 1 1 0 1728.1079 1 +M9PBM3 Cysteine protease 8.54 3 5 0 14440.882099999999 4 +M9PBN2 Apolipoprotein D 20.82 3 10 0 268729.88805 9 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 505712.7497 23 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 3083.7591 2 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 65548.37 4 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 292606.94008000003 18 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 656800.1352499999 19 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 21061.64796 4 +M9PBW9 Rhea, isoform G 6.64 17 18 0 248756.14344 18 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 177746.0225 10 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 20399625.71669 179 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 26301.022 2 +M9PC74 Reticulocalbin-3 23.01 10 15 0 371156.3087 14 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 3201.0654400000003 2 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 31339.448000000004 2 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 11852.32 1 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 15058.3657 3 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 100038.234 7 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 83663.5169 11 +M9PCI1 Uncharacterized protein, isoform B 2.85 2 2 0 2657.2395 2 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 36711.121499999994 3 +M9PCT7 Bunched, isoform O 16.15 3 5 1 5894.51 1 +M9PCU0 FI21215p1 30.84 38 66 1 14915.599 1 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 177210.32229 10 +M9PD73 TEP1-F 23.71 32 47 0 1629575.74715 43 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 722239.48745 18 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 8614.1047 2 +M9PDB2 Varicose, isoform E 7.69 5 5 0 47142.76516 5 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 566330.12424 30 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 12309.505 1 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 44598.0838 5 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 44683.568 2 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 90596.5518 6 +M9PDU4 Acyl carrier protein 18.23 4 29 2 3533246.145 27 +M9PDV2 Tetraspanin 12.89 3 3 0 20940.940000000002 2 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 330666.37869 34 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 133269.0139 11 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 8066641.99597 58 +M9PE32 Fife, isoform D 12.56 14 19 0 126765.25115 16 +M9PE35 RabX6, isoform B 8.11 2 2 0 9315.415 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 1595.5149 1 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 10157.3223 2 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 17830.458400000003 3 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 15535.756800000001 2 +M9PEC1 IST1 homolog 21.0 7 10 0 159299.7575 9 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 221275.78710000002 11 +M9PEG1 Uncharacterized protein 27.38 16 49 16 906478.61936 49 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 2889191.85443 195 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 83699.438 6 +M9PEL3 Quemao, isoform C 23.62 7 9 0 77242.17683 7 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 70034.459 4 +M9PET3 Simjang, isoform D 2.38 2 2 0 383.97476 1 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 7101.0938 1 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 6130.78 1 +M9PF16 Spectrin beta chain 24.44 59 123 3 3246791.03817 109 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 810903.39224 24 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 26026.503 2 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 59697.088299999996 7 +M9PFH7 Tartan, isoform B 2.53 2 3 0 9627.2383 2 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 20856.46715 3 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 8799.12006 2 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 53433.828 2 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 4672.5228 2 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 261010.3948 10 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 91522.7296 8 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 62805.4395 4 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 10361999.08198 182 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 73082.6087 5 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 45809.0812 4 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 459627.956 9 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 3935.2249 1 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 130280.7932 13 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 25192.758 2 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 310077.9855 20 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 364841.89884 21 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 17594.9405 2 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 84586.96100000001 9 +M9PHX2 Visgun, isoform E 3.82 1 1 1 14813.027 1 +M9PI33 Inositol oxygenase 11.64 2 2 0 29716.535 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 22628.699999999997 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 42332.2579 3 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 223869.667 4 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 29049.936 2 +M9PJQ5 Troponin I 45.65 14 66 0 407705.6018 14 +O15971 LD39986p 30.39 7 26 4 141636.133 7 +O16158 Calcium-binding protein 48.91 7 30 7 2131204.94345 26 +O17452 LD20793p 27.83 6 17 4 456135.2276 15 +O18332 FI01544p 60.98 11 51 9 1387345.67533 44 +O18335 Rab11 57.94 14 57 14 2789391.1139 56 +O18336 Ras-related protein Rab-14 39.07 8 16 1 269531.5185 13 +O18338 LD44762p 23.19 5 23 0 499.01834 1 +O44226 Elongin-B 97.46 10 30 10 1243129.4656 25 +O44434 QKR58E-3 24.92 7 8 5 112216.91129999999 6 +O46048 EG:133E12.4 protein 0.47 1 1 0 568.3588 1 +O46052 EG:152A3.3 protein 12.67 4 5 1 24499.42006 4 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 1217722.3854 43 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 17942.176 1 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 154037.7145 7 +O61604 Fimbrin 37.34 25 48 3 2102326.8702000002 46 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 35184.965800000005 6 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 33317.5485 3 +O76521 Importin subunit alpha 5.52 3 5 3 64486.7561 4 +O76752 Sepiapterin reductase 28.74 7 12 7 307471.994 11 +O76877 EG:132E8.3 protein 20.62 3 4 3 226310.274 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 2400572.52124 25 +O77259 EG:115C2.5 protein 4.0 1 1 0 26199.44 1 +O77425 Ribokinase 3.29 1 1 1 10343.221 1 +O77430 GEO01111p1 71.6 13 21 12 725611.9003 18 +O77434 EG:34F3.8 protein 39.34 7 15 1 170608.5614 13 +O77477 LD24471p 28.57 10 11 10 132524.18931000002 11 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 30912.976000000002 2 +O96692 small monomeric GTPase 21.98 4 7 1 83051.6421 7 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 88867.95199999999 4 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 6171.489299999999 2 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 9496.956 2 +O97059 Ccp84Ab 36.2 6 6 0 210598.0875 5 +O97062 Ccp84Ae 75.96 13 31 13 396471.43979 26 +O97064 Ccp84Ag 37.17 5 9 5 62540.5585 5 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 33358.95 1 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 1416652.6699 24 +O97111 LD29223p 11.97 4 4 4 32662.9706 4 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 8019.6475 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 43886.51839999999 2 +O97365 BM-40 24.01 7 7 7 187454.526 6 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 1271855.7043 33 +O97428 Ciboulot, isoform A 29.46 4 5 1 35298.4311 4 +O97454 Protein BUD31 homolog 19.44 3 3 3 31436.3808 2 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 556780.13986 20 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 3106.4736 1 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 9287025.2957 62 +P92181 Cuticle protein DCP2 37.61 4 8 4 84271.025 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 27673.817 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 3515988.0551 45 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 246994.61930000002 8 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 65363.0275 3 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 1531672.20918 81 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 4388.813 1 +Q0E8P5 FI05614p 19.04 11 19 11 89241.89603 15 +Q0E8S7 Homer, isoform E 30.13 14 34 1 1501699.068 33 +Q0E8U4 FI09636p 20.0 6 7 6 126124.3619 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 467015.75045 18 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 37790.1705 3 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 1919925.3616 42 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 611293.2291 19 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 360678.61209 21 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 4173.3978 3 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 1023125.3403 51 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 476156.16237 18 +Q0E9G4 CG1600-PA 3.41 1 3 0 85339.515 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 284635.6002 15 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 1787.1631 1 +Q0KHR7 Septin 15.46 9 14 0 334755.9866 13 +Q0KHX7 FI18193p1 6.03 7 7 0 73532.4002 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 6668648.44674 105 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 69684.773 4 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 133897.93995 14 +Q0KI39 FI16806p1 18.15 3 6 1 21361.656899999998 4 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 397336.03859999997 17 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 66892.91870000001 9 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 100262.0387 4 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 16604.2598 2 +Q1RL12 IP16413p 54.97 15 74 2 113587.7505 3 +Q24090 GH08712p 7.57 3 3 3 51479.903000000006 3 +Q24253 AP complex subunit beta 20.2 15 23 15 988477.4253400001 22 +Q26459 EN protein binding protein 18.26 9 16 0 238846.22269999998 15 +Q29QY7 IP15859p 9.86 1 1 0 64805.977 1 +Q2MGK7 GEO13330p1 20.47 3 5 3 92920.955 5 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 10674.0 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 31143.086 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 7743185.7602 108 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 39106.1126 4 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 394115.6078 9 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 22972.4594 3 +Q4QQ49 IP09595p 2.7 1 1 1 13035.585 1 +Q4QQ70 IP09819p 18.42 6 7 6 60174.5612 6 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 17613.495300000002 3 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 18537.8445 2 +Q4V619 IP07950p 6.9 2 3 0 22058.417500000003 3 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 215366.1993 5 +Q500Y7 GEO11443p1 87.72 4 40 4 717706.86049 38 +Q59E01 FI02065p 3.0 2 2 0 3105.1691800000003 2 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 37148.2225 3 +Q5BIA9 RE10908p 2.48 1 1 1 3039.2654 1 +Q5LJT3 MIP01391p 10.93 2 5 2 112739.20790000001 5 +Q5U124 alpha-glucosidase 17.62 10 18 0 346156.0188 17 +Q5U126 GEO11286p1 59.42 7 37 7 3019841.3932000003 36 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 266485.7262 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 31987.55185 6 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 744220.87114 29 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 14463.5736 2 +Q6IGN6 HDC05827 42.05 4 5 4 99061.304 4 +Q6IGW6 GEO13367p1 44.23 2 4 2 62057.79305 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 1570306.6318 14 +Q6IIF2 GEO11103p1 7.14 1 1 1 15010.791 1 +Q6IL43 GEO11093p1 13.25 1 2 1 97006.02100000001 2 +Q6NL44 GH28815p 20.08 8 10 8 95359.77925 10 +Q6NLJ9 AT19138p 38.64 2 2 2 23259.157 2 +Q6NMY2 RH54371p 21.43 5 27 5 1848304.197 22 +Q6NNV2 RE44043p 5.81 2 2 0 154751.393 2 +Q6NNV7 RH03309p 36.84 7 23 1 882077.25321 20 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 40521.44 2 +Q6NP72 GEO09659p1 33.33 4 16 4 881304.9426 16 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 39727.239 2 +Q76NR6 Regucalcin 83.07 23 133 0 7907125.60589 119 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 210399.05419999998 13 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 236549.64425 13 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 1197900.5759 26 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 10355.837 1 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 533319.0697999999 18 +Q7JQX9 FI14001p1 4.33 4 4 0 22921.487999999998 2 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 5110640.30619 97 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 214625.675 7 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 30583.142499999998 3 +Q7JRF1 RE48509p 6.5 2 3 1 14942.408 3 +Q7JRH5 RE28271p 1.31 1 1 1 12975.555 1 +Q7JRL9 GH25289p 67.12 10 52 1 2476571.3497 46 +Q7JRN6 GH06388p 6.73 2 2 2 8787.456 2 +Q7JS69 FI04632p 35.69 10 68 1 1031051.657 8 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 17555.752500000002 3 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 1821094.3632 24 +Q7JV09 GH28348p 4.84 5 5 2 21486.30212 5 +Q7JV69 SD11922p 11.76 4 9 4 156613.82252 8 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 12063.0407 3 +Q7JVH6 LD24696p 47.27 12 27 11 462130.20834 18 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 129826.1011 8 +Q7JVK6 Translin 24.26 6 8 6 170990.2237 8 +Q7JVK8 GEO08987p1 53.42 7 13 7 883321.91 13 +Q7JVM1 GH25962p 22.64 5 6 5 38226.7046 3 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 127982.18745 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 131264.8865 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 62774.375100000005 4 +Q7JW48 RE12410p 5.57 2 2 2 3220.729 1 +Q7JWD6 Elongin-C 46.15 5 17 5 1324365.8025 17 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 1712458.0247 28 +Q7JWH5 RING-box protein 2 27.43 2 3 2 45246.0965 3 +Q7JWQ7 RE01730p 5.34 2 3 2 14648.482600000001 3 +Q7JWU9 AT07420p 19.68 5 5 5 28198.1738 3 +Q7JWX3 GH10112p 22.48 7 11 7 247764.7154 11 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 111019.96900000001 5 +Q7JX94 Phospholipase A2 15.61 3 3 3 9275.762060000001 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 124384.68299999999 7 +Q7JXB9 Endonuclease 10.65 3 3 3 50758.630999999994 3 +Q7JXC4 CG6459 protein 33.46 6 38 6 2312157.7233 37 +Q7JXW8 Off-track2 4.39 2 2 2 6520.2159 2 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 153460.9118 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 747015.99 8 +Q7JYW9 Phosphotransferase 19.38 9 13 9 323886.4189 13 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 50559.336500000005 5 +Q7JYZ0 lysozyme 39.13 4 9 4 201382.7567 9 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 266808.5474 16 +Q7JZB1 RE49860p 2.09 1 1 1 3090.4314 1 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 1238627.5396 29 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 3678.032 2 +Q7JZE1 Peroxin 11 6.22 2 2 2 45129.484000000004 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 126157.739 3 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 3215421.90973 32 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 154528.7602 13 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 627521.60147 23 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 1789434.69 17 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 30832.264300000003 4 +Q7K076 GEO08269p1 22.14 2 2 0 18358.418 1 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 11706792.119409999 135 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 27889.408 1 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 1279007.45957 37 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 81653.38844 5 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 69457.609 3 +Q7K0S1 LD39211p 1.83 1 1 1 3637.7344 1 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 337000.47907 22 +Q7K0S6 LD36817p 19.03 8 9 8 206487.594 9 +Q7K0W4 LD27203p 46.95 14 45 14 2369881.09677 44 +Q7K0X9 LD23667p 23.4 5 12 5 120300.9068 11 +Q7K127 Alpha-galactosidase 15.83 7 17 7 143173.56802 14 +Q7K148 Proteasome subunit beta 22.34 6 8 6 157743.2605 8 +Q7K159 LD06557p 22.47 5 6 5 76113.30930000001 6 +Q7K180 LD02709p 22.5 11 14 11 133088.78744 13 +Q7K188 GEO05126p1 30.97 6 40 6 2405634.13253 37 +Q7K1C0 GH23780p 50.5 6 11 1 140505.377 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 108313.20300000001 5 +Q7K1C5 GH21176p 9.19 6 7 6 271475.5878 6 +Q7K1H0 GH09096p 20.06 7 8 6 73239.3114 7 +Q7K1M4 SD04017p 16.99 5 12 5 175953.0854 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 204567.805 5 +Q7K1W5 LD35843p 30.05 12 20 12 641866.26303 20 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 32998.676400000004 2 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 902336.83243 26 +Q7K2E1 LD05247p 18.9 10 15 10 349669.68292 12 +Q7K2L7 GH27120p 28.14 4 11 4 590270.8627 11 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 32618.3627 3 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 23496.59 2 +Q7K2P3 GH20817p 58.7 13 31 1 579795.8177 22 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 122643.6443 7 +Q7K2W6 tyrosinase 22.32 13 21 13 117017.79764 16 +Q7K332 GH17623p 23.43 6 10 5 317778.09479999996 8 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 278112.6337 12 +Q7K3E2 LD34147p 59.21 30 59 30 1224207.11405 56 +Q7K3H0 LD28067p 1.44 3 3 0 39328.7823 3 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 1453821.4716 35 +Q7K3N4 GH26015p 14.95 6 7 6 172356.8709 7 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 98278.8252 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 224990.015 11 +Q7K3W4 GH08941p 25.85 8 20 8 757300.10224 20 +Q7K3Y9 Spondin-1 1.26 1 1 1 841.52496 1 +Q7K3Z3 GH01724p 51.6 16 44 16 793865.0693 38 +Q7K485 Cathepsin D 35.71 9 36 9 1414968.091 30 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 77143.8573 4 +Q7K4J7 LD36653p 7.38 2 2 2 10411.7436 2 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 3104.6484 1 +Q7K4T8 LD23856p 6.55 3 4 3 29653.4868 2 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 37273.881 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 147611.593 9 +Q7K519 GH16429p 17.66 5 8 5 63674.0312 7 +Q7K533 GH14572p 6.14 2 2 2 12922.100579999998 2 +Q7K549 GH13040p 18.08 8 8 8 59916.9816 8 +Q7K561 GH11294p 6.82 2 2 2 2040.498 1 +Q7K568 GH10642p 8.33 3 3 3 40375.7491 3 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 1851169.2389 47 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 304644.19487 12 +Q7K5M6 GH04176p 20.95 6 11 6 176245.3252 10 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 464717.9342 24 +Q7K860 FI07231p 39.22 7 12 7 711246.8988 11 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 365860.1791 12 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 2358.8543 2 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 42875.1559 4 +Q7KK90 GH14654p 55.8 9 28 9 1632116.0145999999 24 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 435314.5211 17 +Q7KLE5 Amphiphysin 49.67 26 71 3 2379449.004 60 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 96647.74326 10 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 674457.86665 13 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 192991.424 7 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 25139.0826 3 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 540268.7341 21 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 1611337.58724 53 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 72721.1067 5 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 859671.68581 36 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 4510292.05199 102 +Q7KND8 FI09619p 3.7 3 3 3 71110.444 3 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 594827.084 13 +Q7KRT4 GH07253p 4.94 2 2 0 12116.0708 2 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 33807.292239999995 4 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 52487.7437 6 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 358100.4571 10 +Q7KSE4 GH05443p 2.78 2 2 2 17654.1975 2 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 772248.9757 15 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 2018882.4174 23 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 30476.669 2 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 11269.2685 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 583682.0016 21 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 1413767.5494 43 +Q7KT58 GH08155p 3.52 2 3 2 26878.929 3 +Q7KT70 FI18641p1 2.93 3 3 3 20111.397 3 +Q7KTA1 HL01444p 17.1 7 10 7 146728.887 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 340801.3219 24 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 4021951.6463 62 +Q7KTN9 FI01009p 3.11 2 2 0 10011.6386 2 +Q7KTP7 LP22840p 31.49 5 7 5 205866.74469999998 7 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 2050396.89093 58 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 505128.1407 16 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 610259.56636 24 +Q7KUD4 phospholipase A2 2.93 3 3 0 4231.478 2 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 1447008.8699 14 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 53394.248 3 +Q7KUT5 Protein MIX23 26.89 4 6 0 57905.952000000005 5 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 106409.393 6 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 41562.095 2 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 400018.97803999996 16 +Q7KV27 alanine transaminase 51.76 27 130 0 9298314.6075 120 +Q7KV34 Pinkman 38.9 26 40 26 1702145.1927 39 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 18989.303 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 13151.452 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 85693.43825 15 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 47085.53 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 7949385.8062 82 +Q7KY04 small monomeric GTPase 21.13 4 7 3 22122.734 2 +Q7PL91 GEO11417p1 19.15 3 8 3 508192.29500000004 6 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 7709.9936 2 +Q7PLI0 P120 catenin 15.62 12 15 12 213266.98014 13 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 431917.26070000004 14 +Q7PLS1 LD01937p 15.76 6 8 0 138361.94400000002 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 121051.87444 6 +Q7YU88 SD08871p 2.84 3 3 0 3580.2191000000003 2 +Q86B44 Glutathione synthetase 13.17 8 13 0 231654.5235 10 +Q86B74 WASp, isoform C 12.55 5 5 0 56541.8794 5 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 62870.746999999996 4 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 19050.455 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 292749.65847 21 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 157705.4763 9 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 374858.4885 17 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 677513.6248999999 15 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 1392247.7411999998 15 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 666057.8722 24 +Q86BS3 Chromator, isoform A 28.19 21 40 21 526116.94204 30 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 36841.2621 6 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 581207.0996 20 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 21680.4026 3 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 113231.336 4 +Q8I0D4 RE20510p 28.36 21 42 0 1095633.7171 39 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 38785.7145 3 +Q8I0P9 acid phosphatase 1.76 1 1 0 38477.61 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 641742.1455 18 +Q8I930 GH14147p 2.22 1 1 0 14412.195 1 +Q8I941 GH16843p 35.59 10 23 10 675866.8303 23 +Q8IGY1 RE08101p 30.52 35 241 0 18148091.11834 116 +Q8IH23 GEO02102p1 20.74 4 12 4 435625.10599999997 11 +Q8IM93 FI18814p1 37.97 17 28 17 464842.55117 25 +Q8IMF4 RE24176p 5.23 3 5 0 42958.3341 5 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 551687.6143 26 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 68752.93950000001 4 +Q8IMQ8 RH29536p 42.94 12 32 0 1292398.62593 31 +Q8IMT3 IP12392p 6.19 3 3 2 50555.259999999995 3 +Q8IMT6 FI01822p 8.29 4 5 4 61218.641 4 +Q8IMU2 RE10237p 6.53 2 2 0 34199.8345 2 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 12508.093 2 +Q8IMX4 FI04408p 6.6 2 4 0 17692.7555 4 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 103410.7415 6 +Q8IN49 MIP05539p 9.17 8 10 8 125128.84090000001 9 +Q8IN51 FI17609p1 37.59 7 17 7 175525.92221 17 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 107696.557 3 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 21377.949 2 +Q8INH5 Aminopeptidase 7.53 7 8 0 70352.089 8 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 40525.637 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 6284.8115 1 +Q8IP52 RE16941p 2.66 3 3 3 16545.803200000002 3 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 115982.2918 8 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 466351.01919 23 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 64676.26700000001 2 +Q8IP97 Peroxin-19 52.05 11 27 11 473680.33504000003 24 +Q8IPA5 RE15581p 5.36 1 2 0 25606.023999999998 2 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 82109.30600000001 2 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 212378.18170000002 10 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 3329339.58116 72 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 35463.8164 4 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 29396.425 3 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 558949.8062 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 16879.012 1 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 140694.2989 6 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 20451.0596 2 +Q8IPT9 SD05439p1 43.49 11 21 0 616291.13766 15 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 1121636.1079 32 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 47460.120129999996 7 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 14793.874 2 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 9182.8633 2 +Q8IQB7 MIP21654p 9.44 3 4 3 52662.2313 3 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 23857.991800000003 4 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 26738.773 3 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 35789.832 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 82170.82087 7 +Q8IQH0 FI12817p 5.37 8 8 1 58031.666 7 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 93223.46123 7 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 3798.1659499999996 2 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 184754.9012 23 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 64908.388 2 +Q8IQW5 RE23625p 73.96 13 69 3 3132957.44536 56 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 25192.524100000002 4 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 7525.45915 3 +Q8IR76 FAD synthase 17.35 5 5 0 31430.6156 4 +Q8IRD0 RH17559p 40.82 2 7 2 118481.48270000001 6 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 6261043.41997 61 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 211288.32603 17 +Q8IRI5 Trio, isoform D 10.7 8 10 0 126716.6988 10 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 8188921.43571 139 +Q8MKJ5 GEO08105p1 13.27 1 1 1 1898.4993 1 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 22986.0256 2 +Q8MLP9 GEO08457p1 33.93 4 5 4 46540.4869 5 +Q8MLQ0 FI14118p 21.05 2 4 2 101057.2586 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 473298.1053 14 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 217983.5387 13 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 467187.4404 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 2864832.60267 75 +Q8MQP2 MIP16184p 7.0 2 2 0 23666.076 2 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 9763.030299999999 2 +Q8MRM0 GH16740p 35.44 8 18 8 458212.32373999996 18 +Q8MRT7 SD26038p 9.2 2 2 2 24027.958 2 +Q8MRW1 SD19278p 5.83 1 1 1 5286.2935 1 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 15858.6301 3 +Q8MSI2 GH15296p 82.01 19 124 19 12758614.2917 109 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 20268.4776 3 +Q8MST5 Tubulin beta chain 45.08 17 105 0 652275.0078 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 3026088.41785 62 +Q8MZ07 GEO07581p1 17.81 3 5 3 90187.3793 5 +Q8MZI3 RNA helicase 18.34 13 16 3 204217.6012 11 +Q8SWS2 RE29468p 60.95 6 30 0 611298.9283 24 +Q8SWS3 RE26528p 20.44 2 4 2 32374.173600000002 4 +Q8SWZ6 RH51312p 8.33 2 2 2 29691.4672 2 +Q8SX06 GEO08318p1 16.67 2 3 2 42876.8333 3 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 24978.113 3 +Q8SX35 GEO07743p1 26.53 3 4 0 37546.337400000004 4 +Q8SX50 RE04530p 17.3 6 7 0 93358.4187 6 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 51801.576 3 +Q8SX57 LD44221p 47.08 8 17 8 259986.07833 15 +Q8SX78 LD05679p 17.93 7 7 7 60552.62760000001 7 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 46609.255000000005 4 +Q8SXC2 FI04487p 9.11 5 5 5 53367.21000000001 5 +Q8SXD5 GH02216p 55.13 11 33 2 1776027.0248 32 +Q8SXE1 RH69521p 2.6 1 2 1 5910.9739 2 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 102812.196 4 +Q8SXF2 RH40246p 7.01 3 4 3 56672.844 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 14654.079099999999 2 +Q8SXK0 RE18748p 2.91 1 1 1 9879.343 1 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 286010.58275 21 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 3525.0208 1 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 506612.8283 18 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 9366.0173 2 +Q8SXS0 RE40914p 12.25 5 5 5 21952.528 3 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 993025.693 20 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 2436.31314 2 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 71056.62 1 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 11392.6266 3 +Q8SY67 lysozyme 14.47 2 3 2 14132.806400000001 2 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 341872.667 6 +Q8SYC4 RE68566p 1.72 1 1 1 52299.543 1 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 2194429.6005700002 51 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 664792.85275 18 +Q8SYH8 RE57644p 18.68 5 10 1 65627.11769 9 +Q8SYJ2 GEO09626p1 67.47 9 59 9 5550862.9695 56 +Q8SYN0 RE52086p 9.3 4 5 4 31205.87874 5 +Q8SYQ4 RE42475p 70.27 11 44 11 1657005.58172 40 +Q8SYQ8 RE40412p 19.85 3 3 3 32411.036999999997 3 +Q8SZK5 RH26533p 10.29 3 3 3 21133.18685 3 +Q8SZK9 HL04814p 48.48 12 60 12 4210392.67856 55 +Q8SZM2 RH04334p 25.19 7 27 7 1349518.7468 26 +Q8SZN1 GEO08217p1 51.61 7 29 3 748990.2524 28 +Q8T0I9 GH27479p 16.47 7 12 1 309169.3045 10 +Q8T0J5 GH26851p 41.11 12 33 0 1310264.2547 30 +Q8T0N5 GH17516p 19.21 6 9 6 366565.406 8 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 120831.6888 9 +Q8T0V2 GH02495p 19.91 8 13 0 155331.9468 10 +Q8T389 Endophilin B 40.74 15 54 0 4493.1743 1 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 25545.9485 3 +Q8T3W8 Venom allergen-1 9.54 3 3 0 31379.355 3 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 6679.391 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 893732.36302 34 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 2631847.9525 57 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 37397.492 3 +Q94513 Boundary element associated factor 18.79 5 10 1 132120.3601 9 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 74968.0772 6 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 13380.5295 2 +Q95NU8 GH16255p 13.57 8 12 8 137038.8739 10 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 3654.817 1 +Q95PE4 GEO07784p1 6.17 1 1 1 12922.299 1 +Q95R34 GH16463p 9.71 3 3 3 55028.1593 3 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 99069.14 3 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 76477.7143 5 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 17985453.46557 135 +Q95RC5 LD44506p 5.31 3 3 3 27469.762499999997 3 +Q95RE4 LD37574p 41.48 11 18 0 39107.08993 10 +Q95RF6 LD34461p 34.5 4 13 4 250448.89045 11 +Q95RI2 LD28549p 27.78 8 12 8 129387.18289999999 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 36980.9271 4 +Q95RQ1 LD16414p 3.32 2 2 2 8908.837 1 +Q95RR6 LD15002p 64.6 17 61 0 121213.047 2 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 110687.8605 7 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 484289.61 2 +Q95RY2 LD01461p 48.09 10 18 2 543423.6086 13 +Q95SH0 GH26463p 1.52 2 2 2 11790.798 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 348552.4705 11 +Q95SH7 GH26007p 8.57 2 3 2 39364.9645 3 +Q95SI7 GH23390p 65.87 15 59 15 2252068.59894 55 +Q95SN8 GH12395p 21.83 5 8 5 220649.1704 8 +Q95TK5 LD44914p 22.77 9 11 8 147373.9365 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 939182.6891 31 +Q95TP0 LD34582p 3.1 1 1 1 9621.092 1 +Q95TZ7 GH19182p 78.36 26 115 0 3423471.3440300003 85 +Q95U15 GH14252p 75.64 27 227 0 4116985.00477 32 +Q95U34 GH11113p 22.45 11 21 11 709915.0058 19 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 189500.397 8 +Q960D4 SD06560p 25.8 16 21 1 412023.94845 20 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 7781364.3394 80 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 353126.03834 25 +Q961A8 LD25351p 1.59 1 1 0 935.9757 1 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 124773.861 4 +Q961B9 LD24073p 6.28 3 4 3 50784.9619 4 +Q961C8 LD22649p 10.93 4 5 0 18339.729339999998 4 +Q961E7 phosphorylase kinase 7.16 4 5 1 30611.2214 3 +Q961Q8 GH10454p 6.42 3 3 3 56860.340000000004 2 +Q961T9 GH07914p 29.41 6 10 6 231735.11849999998 10 +Q961X4 Combover, isoform B 11.74 9 14 0 95337.89891 13 +Q966T5 Paxillin, isoform D 28.93 7 18 3 171404.97100000002 4 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 81991.2285 5 +Q9I7I3 GH12831p 9.56 3 3 3 63882.4207 3 +Q9I7J0 GH21596p 69.23 11 41 11 1245118.30515 32 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 15726.841 1 +Q9I7L9 Uncharacterized protein, isoform A 4.28 1 1 0 843.80084 1 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 919368.1235 19 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 1057143.45705 24 +Q9NCC3 Sorting nexin 9.03 5 7 5 139349.156 7 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 60334.5252 4 +Q9NG60 Eukaryotic translation initiation factor 2D 3.37 1 1 1 598.0863 1 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 247183.187 6 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 143143.7735 13 +Q9U6P7 FI18813p1 11.39 5 8 5 149767.9751 7 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 2055213.4250999999 57 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 39860.676999999996 4 +Q9V393 Kurtz arrestin 9.57 4 5 4 81309.4277 5 +Q9V396 Carbonic anhydrase 64.44 15 34 15 2447607.487 32 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 76424.883 3 +Q9V3C8 DShc protein 1.71 1 1 1 11604.8 1 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 128415.23550000001 10 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 46504.495 3 +Q9V3E7 LD24793p 39.85 12 24 12 355155.30222 23 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 2923.7615 1 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 388341.70697 13 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 2668.4602 1 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 28232.974000000002 2 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 303839.2314 13 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 1657498.9002399999 45 +Q9V3N9 B6 1.79 1 1 1 34627.453 1 +Q9V3P3 LD45860p 35.1 9 21 9 640478.8425500001 20 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 53052.1562 4 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 8734.8703 2 +Q9V3T8 LD32469p 14.36 3 3 3 22833.094 3 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 1489474.4073 32 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 1023516.5453 30 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 2649600.35223 47 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 633102.8739 25 +Q9V3W2 GM23292p 61.68 14 52 14 2128438.55667 48 +Q9V3W7 LD40489p 47.45 11 20 11 167045.35281 13 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 347378.28183 24 +Q9V3Y4 LD43650p 8.23 2 3 2 10803.88 1 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 993792.15806 32 +Q9V3Z4 GH11341p 27.89 14 24 14 533805.01174 19 +Q9V3Z9 HL02234p 42.6 15 43 15 2609428.8393099997 36 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 20768.1276 3 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 913297.8884 29 +Q9V406 Activator protein 4 9.35 6 8 6 114007.70513 7 +Q9V420 FI02878p 19.66 7 10 7 229055.05 8 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 563579.0356000001 13 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 39730.789170000004 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 952796.5390999999 21 +Q9V455 Importin subunit alpha 19.84 9 23 9 667834.3753 23 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 954208.50156 39 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 1212578.9611199999 54 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 1747571.3187 54 +Q9V4E0 Complex I-49kD 33.97 12 20 11 660377.5947 20 +Q9V4E7 Transporter 3.46 3 4 2 72747.0915 3 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 478592.10980000003 12 +Q9V9Q4 LD43819p 34.18 13 24 13 650356.19296 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 137176.9532 5 +Q9V9T5 GM14617p 2.44 2 2 0 12994.0593 2 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 19049.62 2 +Q9V9U0 RE35358p 10.11 2 3 2 126992.462 3 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 226500.1836 9 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 5168.3574 1 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 464326.1686 15 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 2082388.9864 25 +Q9V9W4 GH08048p 1.69 1 1 1 3308.0374 1 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 37785.1252 5 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 66719.48565 8 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 1852277.02725 58 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 63187.258400000006 7 +Q9VA34 LP06141p 2.47 3 4 3 19577.6717 4 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 187142.01074 15 +Q9VA41 GEO08227p1 52.87 7 17 3 105582.4877 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 764757.44819 23 +Q9VA56 GH23271p 54.34 20 59 1 4829.2866 1 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 48860.1426 4 +Q9VA71 FI19924p1 7.86 3 3 3 864.63794 1 +Q9VA76 IP18706p 16.71 5 7 5 44037.69 6 +Q9VA81 GEO10172p1 13.57 2 3 2 40638.0423 3 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 14861.318299999999 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 354337.37331 13 +Q9VAA6 GEO12235p1 19.62 3 4 3 49611.0584 4 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 105508.81173 10 +Q9VAC1 GM14349p 62.05 20 122 20 9518879.09838 109 +Q9VAC4 GEO09167p1 55.77 8 20 8 918594.5312 20 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 27787.0765 4 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 18831.9581 3 +Q9VAD7 RH37294p 5.2 1 1 1 780.34875 1 +Q9VAG3 trypsin 24.11 5 8 5 231150.5784 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 282488.52869999997 17 +Q9VAI9 GEO07291p1 62.25 9 53 5 3356339.05966 46 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 294128.30746000004 9 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 5939.5239 2 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 1378227.9369 49 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 8169184.95204 97 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 58120.6964 4 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 11444.1817 2 +Q9VAU6 LD27564p 2.99 2 2 2 12066.7481 2 +Q9VAV2 FI21480p1 13.07 11 15 11 246878.773 15 +Q9VAY0 Neprilysin 7 3.91 3 3 3 16630.4006 3 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 1818838.94432 68 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 41071.256 2 +Q9VAY9 GH07821p 8.65 3 3 3 17457.5261 3 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 1187513.28763 34 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 1669886.70684 44 +Q9VB17 IP11341p 10.74 3 3 3 57380.153 3 +Q9VB22 LD33695p 18.39 9 13 9 89877.10766000001 12 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 356278.57994 20 +Q9VB51 GEO08385p1 13.33 1 1 1 3379.6367 1 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 586820.8053400001 14 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 40973.382 2 +Q9VB69 Malic enzyme 29.5 16 20 2 195267.24422 19 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 43280.875 3 +Q9VB77 IP09938p 7.01 2 5 2 51382.18785 5 +Q9VB79 IP09473p 17.65 6 14 6 278789.33640000003 13 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 1354996.3344 37 +Q9VB86 LP07342p 16.78 3 6 3 26129.745349999997 5 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 698253.2734 21 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 1834.6136 1 +Q9VBC9 Beaten path VII 7.74 3 3 3 28903.008429999998 3 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 3646681.9705 78 +Q9VBI3 RH72336p 22.66 7 16 7 375367.80942999996 15 +Q9VBL3 GH01188p 5.83 3 3 3 27916.5444 3 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 74469.16 2 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 5104.654 1 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 6060092.7871 86 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 68307.704 3 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 1440909.0703 26 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 99161.37030000001 7 +Q9VBT2 IP11926p 4.33 2 2 2 24135.64 2 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 24102.608999999997 2 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 2815140.682 11 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 106512.243 4 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 22949.857 1 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 2347962.82 44 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 24357.82182 4 +Q9VC06 LD37516p 15.62 11 15 11 138311.80299999999 13 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 26250.05 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 477150.4404 27 +Q9VC30 RE05274p 18.28 3 6 3 22500.8062 5 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 328488.8684 8 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 734920.5335 16 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 218095.0012 11 +Q9VC58 Syntaxin-18 4.05 2 2 2 19167.852 2 +Q9VC66 AT25567p 19.46 8 9 8 203909.588 9 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 69327.75278000001 9 +Q9VC87 RE57978p 2.84 1 1 1 12696.744 1 +Q9VCB9 FI08802p 15.16 4 4 4 116708.61200000001 4 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 8418.220679999999 3 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 523781.2223 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 146200.6911 5 +Q9VCF8 LD23561p 22.64 7 9 7 176064.6783 9 +Q9VCI4 LD32918p 1.13 1 2 1 7031.342 1 +Q9VCI7 LD02979p 17.15 6 9 1 100374.43190000001 7 +Q9VCK6 LD34157p 18.02 7 8 7 107948.28255 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 41335.8248 4 +Q9VCR4 FI17836p1 5.18 4 6 4 38646.9294 4 +Q9VCR9 RH48101p 43.21 13 26 13 740370.23619 24 +Q9VCT4 Klingon 4.4 2 2 2 12544.1955 2 +Q9VCU0 GEO02312p1 14.17 2 7 2 233532.7383 7 +Q9VCU1 FI07649p 1.31 1 1 1 5778.549 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 37159.758 2 +Q9VCW2 Cardinal 4.82 4 4 4 66756.52660000001 4 +Q9VCW6 GCS light chain 33.33 11 27 11 1392946.02894 26 +Q9VCZ2 FI07970p 2.48 1 1 1 16655.695 1 +Q9VD00 FI07666p 34.53 8 15 8 487435.14099999995 12 +Q9VD01 LP12095p 4.55 1 1 1 67876.57 1 +Q9VD02 GH14779p 30.73 4 11 4 290884.0686 11 +Q9VD13 GH02671p 10.79 6 7 0 52977.2521 6 +Q9VD14 GH07286p 9.57 6 9 6 213198.6413 9 +Q9VD29 small monomeric GTPase 49.74 9 33 9 1270274.9546 30 +Q9VD30 GH05294p 70.16 12 36 12 1630859.8064100002 32 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 20890.653 3 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 5540193.8363 88 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 40793.7484 4 +Q9VD68 GH19849p 6.84 3 3 3 37393.143800000005 3 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 76342.856 2 +Q9VDC0 GH01837p 24.0 5 14 5 311977.27170000004 14 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 10798.565 1 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 19258.596 1 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 558166.1017 15 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 1344259.1615900001 13 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 403551.2583 18 +Q9VDH3 GH08630p 55.7 12 33 12 1279077.0601000001 29 +Q9VDI1 LD46328p 48.58 21 60 0 1440563.32214 53 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 45368.5335 5 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 197621.1567 10 +Q9VDK2 GH15831p 1.18 1 1 0 4661.4683 1 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 208971.13424 21 +Q9VDK9 GH12359p 4.71 3 3 3 20689.26765 3 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 55830.113600000004 4 +Q9VDL5 GEO09602p1 13.43 1 1 1 11238.37 1 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 474245.893 13 +Q9VDQ3 Identity crisis 6.14 3 3 3 23954.5045 3 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 943345.9505 22 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 7208.191 1 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 582105.2653 17 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 2379.258 1 +Q9VDU7 nicotinamidase 21.57 7 17 7 282324.4515 17 +Q9VDV2 AT06125p 6.34 3 3 2 52730.464 2 +Q9VDY8 MIP08680p 65.44 17 56 1 2234531.93639 51 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 1955773.20866 48 +Q9VE08 GH10002p 10.8 2 2 2 73658.7492 2 +Q9VE12 LD27322p 8.02 3 3 3 50663.917 3 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 87142.69099999999 5 +Q9VE31 GEO12059p1 9.91 1 1 1 2282.3801 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 73603.20079999999 6 +Q9VE56 FI17806p1 11.22 3 3 3 218089.603 3 +Q9VE57 GEO10850p1 5.52 1 2 1 33148.137 2 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 71002.86379999999 4 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 53394.2833 6 +Q9VE94 LD14127p 5.73 2 3 2 21779.553 2 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 211976.4989 8 +Q9VEA7 FI01460p 8.99 1 3 1 105448.56199999999 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 28819035.66784 252 +Q9VEB7 AT04491p 2.05 1 1 1 38525.68 1 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 133065.6528 6 +Q9VEC8 RE23139p1 26.92 4 5 4 123152.5636 5 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 58342.023400000005 4 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 308.65848 1 +Q9VEG8 RE59232p 13.2 3 5 3 61113.7548 5 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 71864.92606 2 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 1204842.9974 25 +Q9VEJ9 Curly Su 4.52 3 3 3 53796.269400000005 3 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 48154.97 3 +Q9VEK8 GH07711p 35.28 12 21 12 700687.0007 21 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 154507.31387 13 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 21761.12 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 40425.629 3 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 584805.69635 21 +Q9VEP8 GH11385p 13.77 10 12 10 222116.8565 12 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 171773.649 12 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 85484.43414 5 +Q9VES8 RE28913p 26.26 8 9 8 367099.232 9 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 15871.056 1 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 267799.9681 18 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 50165.606 3 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 13685.1427 2 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 198513.8415 17 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 26343.787 3 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 1437463.52716 43 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 114320.6182 9 +Q9VF15 GEO09476p1 65.36 10 39 7 1284489.6831 35 +Q9VF23 arginine kinase 3.28 2 2 2 83565.647 2 +Q9VF24 Crossveinless d 5.17 8 10 8 95663.8482 8 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 266766.949 9 +Q9VF39 FI01459p 15.0 6 10 6 70605.64454 8 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 181101.88005 12 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 76280.1598 5 +Q9VF77 FI16517p1 13.42 5 6 5 88069.35699999999 5 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 53175.3403 3 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 73857.3637 5 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 187574.399 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 45515.3925 4 +Q9VFC7 Mf5 protein 78.08 31 236 0 7538828.41369 153 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 12433673.07861 101 +Q9VFI3 GEO08281p1 45.19 3 10 3 111935.446 7 +Q9VFM0 GH19262p 7.14 4 5 4 24477.2138 4 +Q9VFN7 GEO07678p1 19.5 3 9 3 241195.60249999998 9 +Q9VFN9 GEO07882p1 41.94 6 7 6 92073.6672 7 +Q9VFP0 RH07106p 23.51 8 9 8 70904.66395 9 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 1022185.52276 23 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 614786.8389 15 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 21075.1682 3 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 13727.0734 2 +Q9VFT4 AT27578p 13.48 9 12 9 71255.84504 8 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 34572.979999999996 3 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 1495250.28276 38 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 128013.4 3 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 67920.0473 3 +Q9VG01 RE12073p 1.88 1 1 1 14467.153 1 +Q9VG04 Protein MEMO1 5.42 2 2 2 58593.961 2 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 6216.0603 2 +Q9VG23 GH22994p 59.07 11 45 1 2612102.3844 43 +Q9VG26 MIP06012p 30.05 7 25 7 989007.85467 22 +Q9VG31 Malic enzyme 16.91 13 17 0 670024.037 17 +Q9VG33 Sulfurtransferase 67.27 7 15 7 633169.791 15 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 130661.6793 4 +Q9VG51 Sorting nexin-3 34.13 7 25 7 616916.5893 19 +Q9VG62 Toys are us 6.19 3 3 3 28815.96254 3 +Q9VG69 LP03547p 35.71 12 26 12 943740.5214 23 +Q9VG81 RH49330p 15.78 7 8 7 60677.8636 7 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 122451.02200000001 4 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 421614.97667 16 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 6665.961 1 +Q9VGA3 LD12305p 33.64 7 18 6 503509.9109 16 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 3702.9426 1 +Q9VGE4 FI04457p 4.49 6 6 6 30624.530300000002 4 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 12856.5526 3 +Q9VGF3 IP11040p 9.86 4 5 4 89766.391 5 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 1154140.8601 29 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 366894.001 5 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 128822.4042 10 +Q9VGL0 LD43047p 2.84 3 3 3 14374.4727 2 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 14456091.7446 157 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 74905.64689999999 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 3682640.1475 59 +Q9VGQ8 Arfaptin 11.55 4 5 4 71780.7543 5 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 23927.8283 4 +Q9VGS3 RH44771p 14.04 4 12 4 593847.9635 10 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 2778.019 1 +Q9VGT3 GM04645p 1.89 1 1 1 2624.5234 1 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 71004.5097 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 39726.729999999996 2 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 56545.336 2 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 79269.8927 5 +Q9VGY2 Peptide deformylase 14.71 4 4 3 48753.226 4 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 102034.87746 11 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 83651.49137 6 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 168789.6085 8 +Q9VH37 IP06524p 14.29 3 4 3 93455.2727 4 +Q9VH64 LD29322p 26.91 9 14 9 263565.5741 14 +Q9VH66 FI18258p1 27.9 6 12 6 234962.11726 12 +Q9VH72 TA01656p1 37.25 6 14 6 259063.18775 12 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 422039.78849999997 22 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 33988.1781 4 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 8825.6394 2 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 183512.3151 10 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 145433.332 5 +Q9VHA8 LD25575p 13.05 7 10 7 514309.902 10 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 555296.6984 17 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 44354.6699 5 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 115543.83434 13 +Q9VHC7 FI21236p1 32.28 15 32 8 817403.8397 22 +Q9VHE3 GH05665p 6.25 2 2 2 15596.0307 2 +Q9VHE4 omega-amidase 20.85 7 15 7 309599.7962 15 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 259669.885 10 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 57326.7435 4 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 38207.374299999996 3 +Q9VHH8 Beag 6.46 4 4 4 28552.0976 4 +Q9VHI1 Hyrax 6.32 3 3 3 21889.2794 3 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 979432.11295 17 +Q9VHJ2 LD32381p 2.65 1 2 1 47032.258 2 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 9745.774 1 +Q9VHJ7 LD41978p 3.96 3 4 3 28921.5216 4 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 1816530.26619 42 +Q9VHM3 LD30467p 9.09 4 4 4 20359.8844 3 +Q9VHN4 GH14121p 10.92 3 3 3 40042.425 3 +Q9VHN7 transketolase 35.46 19 30 1 613996.108 25 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 3654.2317 1 +Q9VHR5 Veneno 3.27 2 2 2 2285.6472 1 +Q9VHT3 CG9617 protein 23.6 5 7 5 109534.8156 7 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 46648.7743 6 +Q9VHX2 GH08043p 7.23 4 5 4 37221.8056 5 +Q9VHX4 LD24679p 68.09 21 107 21 8161995.5206 98 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 109149.5901 5 +Q9VI09 GH14494p 52.48 7 35 7 1042824.7399 33 +Q9VI21 Dementin, isoform D 3.92 3 3 0 12649.3161 3 +Q9VI24 LD25151p 3.61 1 1 1 6910.0854 1 +Q9VI53 LD44267p 9.24 4 6 4 124202.87759999999 6 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 12912.125 1 +Q9VI64 LD30995p 48.16 14 49 14 2079582.5319 44 +Q9VI66 GH28833p 7.57 2 3 2 57308.1502 3 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 9294.215 2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 22857.6128 2 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 26114032.0701 273 +Q9VIF2 GM01519p 9.72 5 6 5 276234.891 6 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 134280.3912 8 +Q9VIH1 CG9273 protein 16.26 4 5 4 47520.3621 5 +Q9VII5 GEO08323p1 20.75 4 7 4 83128.8273 6 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 109315.152 2 +Q9VIJ3 FI14214p 17.78 3 4 1 7174.259999999999 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 1911.4673 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 16670.89145 4 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 91551.0269 10 +Q9VIL2 LD19544p 14.9 4 8 4 107231.7461 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 228437.70335999998 9 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 75160.08 3 +Q9VIQ5 RH02620p 40.64 8 10 8 123318.59485 7 +Q9VIQ6 FI17342p1 4.82 1 2 1 7261.4284 2 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 1798838.5281 45 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 15932.732199999999 4 +Q9VIU3 FI23988p1 4.24 2 2 2 2198.9177 1 +Q9VIV6 GH04973p 11.11 4 6 4 162654.1557 6 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 34609.0375 2 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 762.7036 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 174681.95207 7 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 134603.07037 10 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 591080.9613 24 +Q9VJ22 GH09876p 8.0 2 2 2 9321.183 1 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 63770.2613 4 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 483297.2646 10 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 101778.1112 7 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 1182061.3260000001 38 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 210382.5547 8 +Q9VJ59 PRA1 family protein 8.7 2 3 2 100552.2787 3 +Q9VJ60 GM16226p 10.28 3 5 3 125176.6194 5 +Q9VJ61 SD03870p 1.64 1 1 1 21886.78 1 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 135833.84254 9 +Q9VJ80 LD42267p 7.96 10 11 10 91867.72014 9 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 99540.87904 11 +Q9VJA9 GH07373p 4.86 3 3 0 30968.834 3 +Q9VJC0 GEO08203p1 37.96 5 6 5 83082.00499999999 5 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 70092.3908 6 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 280046.8009 19 +Q9VJD4 LD24721p 32.33 11 29 11 1317369.4232 26 +Q9VJE3 LD24839p 7.67 4 5 4 25227.4902 3 +Q9VJH8 FI03416p 2.58 2 2 2 44794.562 2 +Q9VJI5 Protein yellow 9.71 5 6 5 189343.01499999998 6 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 81144.7545 6 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 888084.249 13 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 13195.2357 2 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 220682.739 5 +Q9VJQ3 Protein yellow 25.11 11 28 10 1461881.0474 26 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 13111.372899999998 3 +Q9VJU6 IP09831p 3.17 1 1 1 10800.98 1 +Q9VJU8 GH23407p 10.27 5 6 5 55763.52158 5 +Q9VJZ1 FI21342p1 5.49 3 4 3 45958.50946 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 2820201.32486 34 +Q9VJZ5 LD07294p 26.58 8 10 8 132863.2888 8 +Q9VJZ6 LD40224p 67.13 11 30 11 665379.3619 21 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 393525.6224 12 +Q9VK11 GH15921p 27.51 7 18 7 496276.93045 17 +Q9VK12 GH20621p 62.0 17 84 17 5018284.6458 71 +Q9VK18 LD36945p 6.59 3 3 3 17114.6694 3 +Q9VK19 FI07225p 9.35 2 2 2 12500.422 2 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 32.06 14 22 1 504.63785 1 +Q9VK39 FI09204p 34.91 4 17 4 289841.8067 13 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 4242.626700000001 4 +Q9VK59 LD23647p 28.63 23 34 23 376202.68308 24 +Q9VK60 GH25425p 58.37 13 49 13 2244824.2834 44 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 636880.38665 38 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 198675.7831 8 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 229427.293 9 +Q9VK99 Atilla, isoform B 51.75 7 32 7 711099.4091 22 +Q9VKA1 FI02817p 15.58 3 3 3 96350.1689 2 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 15328.839 2 +Q9VKC8 FI03495p 9.17 5 5 5 250755.733 5 +Q9VKD9 MIP16835p1 1.35 1 1 1 556.1356 1 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 13255625.11268 291 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 41120.189 4 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 37398.8915 2 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 8860.039 1 +Q9VKI8 GH03305p 67.77 20 107 20 5352661.68917 100 +Q9VKJ4 Csl4 14.22 3 4 3 79846.8592 4 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 2926683.74388 67 +Q9VKM7 AT01533p 8.57 5 12 1 407281.9915 11 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 11411.606 2 +Q9VKQ5 GEO07393p1 6.45 1 1 1 15264.679 1 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 35267.3314 5 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 551548.0586 12 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 17230.6105 2 +Q9VKU5 LD37206p 10.09 2 2 2 10432.5053 2 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 1129182.08945 37 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 32905.2907 2 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 69342.0444 4 +Q9VKW1 LD41958p 2.21 1 1 1 4615.305 1 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 172342.6725 10 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 7860427.94339 123 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 293034.61955 7 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 25288.62421 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 491348.81818 23 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 1619020.64404 42 +Q9VL02 GH08677p 10.57 4 4 1 49846.2576 3 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 160706.4214 10 +Q9VL16 RE45833p 30.77 8 26 8 1268602.233 22 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 4555.3433 1 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 27932.583 2 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 1675.3438 1 +Q9VL57 RE10231p 4.75 3 3 2 58524.358 3 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 105630.75200000001 3 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 176591.8357 7 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 2150649.5094500002 29 +Q9VL70 HL08109p 83.17 25 129 25 9833170.17234 119 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 167021.3192 7 +Q9VL91 LD23102p 1.8 1 1 1 723.5849 1 +Q9VL93 GEO07195p1 13.64 2 2 2 30792.913999999997 2 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 138749.827 6 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 3062623.76346 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 4171434.53073 68 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 72995.894 5 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 18454.041 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 662461.3369 19 +Q9VLP0 IP04187p 11.23 2 5 2 64155.1656 5 +Q9VLP1 GEO08095p1 37.84 6 14 6 385343.7147 13 +Q9VLP2 GEO08076p1 38.1 6 40 6 810372.94966 35 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 299941.471 5 +Q9VLQ9 Sorting nexin 29.4 14 23 1 715963.0594500001 21 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 139659.9446 4 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 1808.3945 1 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 826702.0846000001 32 +Q9VLS5 LD29542p 10.69 5 6 5 30093.7601 5 +Q9VLS7 LD21067p 1.88 4 4 0 54991.127 4 +Q9VLT3 LD23292p 16.59 28 41 28 804236.9320799999 38 +Q9VLT7 IP17351p 26.92 4 7 4 202348.7708 5 +Q9VLU3 IP09231p 5.4 1 1 0 10175.527 1 +Q9VLV9 Proctolin 20.71 2 4 2 53076.987779999996 4 +Q9VLW8 LD06392p 13.18 3 3 3 6590.6341 3 +Q9VLX6 HL01609p 6.32 2 2 0 54890.037 2 +Q9VLY1 HL02931p 19.01 1 7 1 167230.4669 7 +Q9VLY7 TEP1-F 3.68 6 7 6 63282.266 7 +Q9VLY9 CD109 antigen 29.45 37 61 0 1549754.31078 57 +Q9VM07 RE43931p 27.85 5 11 4 118208.061 6 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 143004.976 8 +Q9VM11 HL01515p 31.19 9 12 9 358461.5007 12 +Q9VM12 MIP26555p1 29.25 10 25 10 778483.3421 21 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 11112715.23858 149 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 7196236.93008 75 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 14740.469 1 +Q9VM47 Menin 3.15 2 3 0 8245.1939 3 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 20660.1342 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 43275.5397 4 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 197836.1015 9 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 626777.2185000001 11 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 115397.617 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 4895549.27497 59 +Q9VMC3 LD35051p 3.29 1 1 1 8428.15 1 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 15899.806 2 +Q9VMC7 LP11564p 9.94 6 6 3 16228.56775 5 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 377337.52670000005 13 +Q9VME1 FI01864p 17.96 7 8 7 62146.6973 8 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 35626.0625 3 +Q9VMF0 FI04444p 4.48 2 2 2 14224.9638 2 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 25501.461199999998 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 215211.1035 11 +Q9VMH8 GEO07746p1 37.3 6 12 6 445989.99069999997 10 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 974225.8446000001 27 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 1052896.01124 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 3297029.9096 35 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 95025.842 4 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 568344.6486000001 21 +Q9VMR9 acylphosphatase 6.93 1 1 1 19308.492 1 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 4430821.06934 36 +Q9VMT2 GEO07854p1 52.35 7 122 0 6924161.55936 102 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 3058558.10815 39 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 85134.57999999999 9 +Q9VMV5 Viking, isoform A 8.2 13 20 13 159394.78982 17 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 14317.374 2 +Q9VMX4 AT19154p 19.52 6 13 6 140525.75366 10 +Q9VN01 GH23891p 16.39 8 12 8 128129.11831 12 +Q9VN02 GH14561p 32.74 7 14 7 192718.26810000002 13 +Q9VN21 LD30155p 55.05 28 100 28 3275896.34967 91 +Q9VN39 RE74585p 17.58 6 8 2 22776.1721 5 +Q9VN44 FI07923p 18.91 20 39 20 1193731.15814 36 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 368626.7316 14 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 513018.0324 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 10978.8672 2 +Q9VN86 AT14148p 6.51 3 3 3 42545.912800000006 3 +Q9VN88 LD45836p 14.49 4 6 4 100429.6364 6 +Q9VNA3 GH21273p 40.28 8 15 8 549042.7007 15 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 311598.24767 8 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 31980.2925 3 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 9562.4446 2 +Q9VNF3 RE01652p 39.3 9 23 7 402745.5773 18 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 90242.1384 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 19077.859800000002 2 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 163275.24115000002 12 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 175744.67130000002 3 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 87528.36544 6 +Q9VNI8 Hpr1 10.7 8 9 8 60815.879400000005 8 +Q9VNI9 IP18173p 17.18 3 6 3 35457.8973 6 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 4133453.2490399997 71 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 71647.08 5 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 14569.5101 6 +Q9VNV2 GEO05133p1 8.86 1 2 1 5330.2912 2 +Q9VNW0 GEO11142p1 21.88 3 3 3 28314.431899999996 3 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 4405427.59776 62 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 2995310.23249 75 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 18365.994 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 64184.091219999995 8 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 23080.557 1 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 752.2962 1 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 140697.234 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 495797.4636 14 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 212246.6844 5 +Q9VP57 LD15904p 23.19 18 33 18 862383.21026 32 +Q9VP77 LD23875p 10.99 7 7 7 93316.7298 7 +Q9VP78 GH23156p 8.76 4 4 4 36679.778999999995 4 +Q9VP84 IP06402p 4.76 1 2 1 47561.653 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 3290.987 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 25673.1537 5 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 113101.698 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 45608.0175 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 1841133.1209 41 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 85165.04920000001 6 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 18997.5785 3 +Q9VPH6 LP10922p 9.61 5 8 1 96789.9216 7 +Q9VPJ0 RE58433p 8.29 3 6 0 50775.94977000001 6 +Q9VPK3 AT24407p 19.37 8 11 1 206480.4954 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 28624.627 6 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 1760173.62896 66 +Q9VPR1 GH02075p 11.35 2 2 2 18658.158 1 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 319491.909 7 +Q9VPU4 FI17537p1 8.88 3 3 3 18128.519099999998 3 +Q9VPU6 Galectin 7.28 3 3 3 70738.532 3 +Q9VPX0 GH26159p 4.9 3 3 3 60417.674 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 443283.5414 13 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 2087058.499 49 +Q9VPZ5 GH04232p 26.62 14 24 14 379598.72849999997 22 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 671.4469 1 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 5325698.90907 107 +Q9VQ83 RE23541p 7.28 2 2 0 14606.4383 2 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 67157.2457 4 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 3465771.63587 49 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 1466751.9429 30 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 112373.862 6 +Q9VQE0 dynamin GTPase 17.01 12 12 12 192923.6793 11 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 2092.5232 1 +Q9VQI6 LD25952p 12.35 4 6 4 54544.6487 5 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 454247.30532 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 44476.9111 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 7225.728 1 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 1115219.92534 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 934804.3491999999 18 +Q9VQQ6 FI18122p1 15.72 8 13 0 455903.55799999996 13 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 1578714.9517 38 +Q9VQR5 IP10807p 2.5 1 1 1 14452.808 1 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 49193.8301 4 +Q9VQT7 RH15675p 14.63 1 2 1 3777.8680000000004 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 270706.2758 10 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 51151.444599999995 5 +Q9VQX3 HL05328p 13.09 6 7 6 74160.9348 7 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 128023.93209999999 9 +Q9VR30 RE58324p 19.51 8 10 8 212779.92309999999 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 150988.281 10 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 9174.714 1 +Q9VR79 LD43683p 30.8 8 30 8 979405.2441400001 30 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 11468.0357 2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 1115194.1622 28 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 745705.30189 14 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 108573.9037 10 +Q9VRF7 GH09530p 13.92 4 7 0 146756.2492 6 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 66886.1513 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 89553.4332 12 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 1350018.80284 39 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 218578.603 4 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 120658.40460000001 5 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 4576.8616999999995 2 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 7328992.37873 81 +Q9VRL1 GEO06356p1 53.1 8 28 2 1061078.563 21 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 3691.6036999999997 2 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 2488.324 1 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 85172.503 3 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 1232535.2258 31 +Q9VRP3 AT08565p 23.69 6 12 6 228152.16604 9 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 6635.81978 3 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 840749.4167 27 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 116240.1542 8 +Q9VRV8 Transportin-1 3.02 2 2 2 16620.544 2 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 137174.3125 5 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 381026.25800000003 8 +Q9VS11 lysozyme 12.55 3 4 2 29692.7537 4 +Q9VS44 Uncharacterized protein 12.36 4 4 4 69963.106 4 +Q9VS84 FI03225p 7.34 7 8 7 122931.8625 7 +Q9VSA9 CG7409 80.52 14 73 14 4213434.74105 57 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 276046.517 8 +Q9VSC5 GM09977p 55.29 11 26 11 527215.6439 24 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 88953.4353 8 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 163798.55385 9 +Q9VSH5 IP09562p 4.89 1 2 1 3696.8262 1 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 97246.36600000001 2 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 5897.561 1 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 917407.2422 24 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 1345422.6415 26 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 1660428.8553 33 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 305405.635 9 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 60317.1503 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 36585.9786 3 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 5703.88696 3 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 427543.565 15 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 1016004.12974 51 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 108201.5058 6 +Q9VSR5 GM03767p 48.9 9 20 9 827982.83626 19 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 51602.7491 6 +Q9VST4 arginine kinase 2.06 1 1 1 6177.3037 1 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 2476539.36935 38 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 495560.0001 20 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 59645.0395 3 +Q9VSX2 IP01061p 30.5 6 12 6 156481.2073 8 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 4906017.91025 61 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 188787.026 8 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 477984.3605 20 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 28904.594999999998 2 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 900819.2164 20 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 9387.599 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 43881.605 1 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 97150.7304 6 +Q9VTA8 RE35371p 9.7 1 1 1 607.0362 1 +Q9VTB0 LD35289p 18.18 7 9 7 146357.986 9 +Q9VTB3 Guanylate kinase 35.62 10 23 10 525046.46725 20 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 1114029.362 18 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 91754.7072 6 +Q9VTC3 GH07049p 7.78 3 3 3 105653.89 2 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 11231.622 1 +Q9VTL0 FI19917p1 2.48 1 2 1 11019.9708 2 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 2205.9763 1 +Q9VTP1 IP06473p 8.24 2 2 2 11182.569599999999 2 +Q9VTT2 LD20590p 3.84 2 2 2 16386.5947 2 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 1950979.3024 33 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 388682.635 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 170964.3711 7 +Q9VTW1 RE15265p 11.2 5 7 0 200474.064 7 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 56103.375 3 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 1422437.25655 41 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 316869.98906 15 +Q9VU04 RE60105p 6.49 2 2 2 62867.174 2 +Q9VU13 LD45603p 8.3 4 6 0 199148.6324 5 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 64352.508 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 4898582.118679999 58 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 27192.771 1 +Q9VU38 Adenosine kinase 29.28 6 13 0 135433.4074 13 +Q9VU45 LD27581p 20.42 5 16 5 357192.1184 14 +Q9VU53 Capricious, isoform A 3.7 2 2 0 15451.1987 2 +Q9VU75 RH45712p 40.33 9 32 9 369991.14346 28 +Q9VU92 Uncharacterized protein 35.71 7 12 7 382296.1851 11 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 2200944.08191 75 +Q9VUE8 Big bang, isoform C 0.53 1 1 0 360.05292 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 55791.4318 6 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 653187.1635 16 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 9235.803 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 166357.552 8 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 176985.0854 5 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 194584.8238 9 +Q9VUQ7 RE36966p 11.91 6 10 6 155613.68374 10 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 16395.5855 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 120715.84 1 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 55423.977 2 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 44474.2799 3 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 83764.59060000001 7 +Q9VV13 GEO08383p1 20.71 2 4 2 279973.694 3 +Q9VV31 Uncharacterized protein 19.35 2 7 2 81933.0723 7 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 194251.9868 10 +Q9VV40 Golgin 104 1.42 1 1 1 2446.6345 1 +Q9VV42 Fat body protein 2 79.5 25 188 0 18144361.71405 162 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 9778547.60846 144 +Q9VV47 Fat body protein 2 45.17 9 22 7 999494.11583 19 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 1277429.3534600001 44 +Q9VV75 AT02348p 79.09 28 196 28 13510142.72268 153 +Q9VV76 Syntaxin 8 11.64 3 4 3 161657.31160000002 4 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 57012.65684 7 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 279123.894 11 +Q9VVB5 LD46723p 33.45 17 44 1 6021.66397 3 +Q9VVB7 FI02842p 48.97 15 44 1 11012.29927 3 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 168338.649 3 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 586900.36933 32 +Q9VVC8 LD23434p 6.95 5 8 5 124458.383 8 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 197797.26512 17 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 3653349.9125 34 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 235449.3402 10 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 42462.451 2 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 307673.1116 15 +Q9VVL5 FI11325p 27.27 9 14 9 387931.9177 13 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 8519355.679019999 173 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 116060.1407 6 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 55595.7801 5 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 110920.30238000001 8 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 72199.8714 3 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 1876623.7435 26 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 7513383.0027 48 +Q9VVU2 GEO07453p1 48.32 9 36 8 1643201.3344 34 +Q9VVV6 LD45843p 11.01 5 5 1 26961.5992 5 +Q9VVW7 Canopy b 16.74 4 6 4 141005.0844 6 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 5429.78 1 +Q9VVY7 FI20154p1 10.24 13 16 0 162861.0856 15 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 30344.71395 4 +Q9VVZ6 GEO09638p1 16.03 1 1 0 464.18243 1 +Q9VW00 GH28721p 12.2 4 8 4 120603.9702 6 +Q9VW17 RE58036p 26.37 5 12 0 105539.08219999999 10 +Q9VW34 FI03450p 17.01 9 14 9 455087.04466 14 +Q9VW40 LD31235p 12.62 4 5 4 35939.1853 4 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 13082.916 1 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 67584.602 2 +Q9VW57 Grasp65 8.04 4 6 4 89763.6852 5 +Q9VW58 LD33138p 11.15 3 5 3 12534.031939999999 2 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 888174.185 21 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 2206333.95092 28 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 8965280.8048 123 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 10374.1721 2 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 26183.011 2 +Q9VWD0 GH23568p 26.43 8 13 8 202451.3789 13 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 4758682.47942 81 +Q9VWD5 LD35087p 6.46 3 3 3 9849.4197 3 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 735638.18316 27 +Q9VWF0 LP01149p 9.8 3 5 3 78152.717 4 +Q9VWG1 LD37169p 72.68 11 62 1 158850.857 6 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 18350.871 2 +Q9VWJ3 LD05272p 4.57 1 1 1 13167.046 1 +Q9VWL4 GH07340p 9.77 5 5 5 78115.216 5 +Q9VWP2 RH57257p 64.88 12 25 12 844626.6372 23 +Q9VWQ3 LD35981p 5.27 2 4 0 75780.2337 4 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 184455.0745 9 +Q9VWS1 Houki 29.33 6 7 6 125421.881 6 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 684733.58525 21 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 10005.5237 2 +Q9VWU0 FI18411p1 2.63 1 2 1 2636.0623299999997 2 +Q9VWV6 Transferrin 57.72 35 174 35 9402850.22422 155 +Q9VWW2 GH13094p 14.17 6 13 6 21349.60123 6 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 137165.41220000002 3 +Q9VX08 LD10434p 6.85 2 2 2 7147.6089 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 3484538.60123 84 +Q9VX69 FI01450p 8.27 4 13 3 205978.23799999998 6 +Q9VXA3 LP21163p 16.69 10 15 10 169973.23894 15 +Q9VXA9 RE04047p 10.58 3 3 3 14745.978200000001 3 +Q9VXC1 MIP06432p1 27.93 5 10 3 354708.90388 10 +Q9VXC9 trypsin 54.18 11 21 11 354925.72980000003 19 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 85351.26696000001 6 +Q9VXF9 AT13091p 15.94 7 13 7 188490.53837 13 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 190455.86800000002 4 +Q9VXH4 RE16337p 28.43 2 4 2 219979.9216 4 +Q9VXH7 FI17510p1 13.95 5 10 5 257686.502 10 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 683973.6953 25 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 3778153.5854 56 +Q9VXJ7 GH03748p1 5.19 5 5 5 29262.6181 4 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 458326.63866 11 +Q9VXK9 Centrosomal protein 164, isoform A 1.77 2 2 2 489.9972 1 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 20697.452 2 +Q9VXM4 LD12946p 62.9 15 37 15 877894.4698000001 32 +Q9VXN1 LD03728p 7.2 2 2 2 10376.30625 2 +Q9VXN3 LD07988p 25.25 9 14 9 124059.86984 11 +Q9VXP3 GH05406p 9.87 5 5 5 41277.99056 5 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 33347.924 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 12543.593 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 1530392.09 43 +Q9VXR9 FI03680p 5.45 2 2 2 28125.985 2 +Q9VXV1 RH52220p 4.39 1 1 1 8133.3765 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 298146.3972 11 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 684933.91881 27 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 317635.1237 13 +Q9VY05 GH11762p 9.47 7 15 7 527804.1359 14 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 44981.803 4 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 265741.4651 9 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 19669.53 1 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 61451.435 4 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 28138.330400000003 2 +Q9VY76 AMP deaminase 9.21 8 10 0 49890.6781 8 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 105472.31052999999 10 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 109640.8803 5 +Q9VY92 GEO07753p1 73.91 8 32 8 2364140.488 32 +Q9VYA1 RE18811p 3.87 1 2 1 2263.2634 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 10586.3563 2 +Q9VYF0 GM09012p 18.66 5 7 5 105018.5403 7 +Q9VYG8 CG15717-PA 17.86 4 4 4 16230.420300000002 3 +Q9VYJ1 FI12805p 2.29 2 2 1 32019.806 2 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 34341.0228 6 +Q9VYM0 CG2555-PA 13.2 2 2 1 1941.8732 1 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 21740.9193 4 +Q9VYN1 protein kinase C 0.42 1 11 1 453304.41 9 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 19729.617 1 +Q9VYS2 GH09980p 4.78 4 4 4 19933.9996 4 +Q9VYT0 RE04130p 23.7 6 10 5 327635.523 10 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 22224.799899999998 2 +Q9VYT3 FI23714p1 4.8 6 7 6 27785.04963 6 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 80353.84300000001 2 +Q9VYU9 RH17287p 36.65 6 11 6 172901.208 10 +Q9VYV4 Amun, isoform A 12.0 4 4 4 49444.7031 4 +Q9VYV6 GEO09033p1 6.14 1 1 1 31667.25 1 +Q9VZ00 FI19420p1 3.92 4 7 1 30309.59 4 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 1218653.7266 22 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 451105.05329999997 18 +Q9VZ24 GEO11412p1 43.36 6 33 6 2146639.5272 31 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 7260.7275 1 +Q9VZ34 RH72958p 2.64 1 1 1 8093.34 1 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 352533.43963 14 +Q9VZ66 SD22308p 35.37 5 8 5 104730.5102 8 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 46034.267 3 +Q9VZ71 RE01453p 9.04 2 5 2 119410.039 5 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 7750.2446 2 +Q9VZE4 RE70333p 19.57 9 13 9 191984.9404 13 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 123893.53970000001 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 87333.371 5 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 599186.95655 22 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 1950402.0835000002 41 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 163570.2778 8 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 2372031.0312 44 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 31967.84 3 +Q9VZI1 Transgelin 74.47 11 82 1 2237918.51493 62 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 89423.605 4 +Q9VZJ2 GH27759p 12.66 5 8 5 136989.7854 7 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 41619.897 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 420019.00430000003 19 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 43184.8649 4 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 196247.07080000002 13 +Q9VZV2 Chitinase 7 3.75 4 5 4 17928.04485 5 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 130899.81599999999 5 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 12872.877700000001 3 +Q9VZX6 LD06441p 3.99 1 1 1 87414.99 1 +Q9VZY0 LD45195p 18.85 5 7 5 204958.22580000001 6 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 28683.78833 4 +Q9VZZ5 GEO12033p1 21.68 3 7 3 346140.48699999996 6 +Q9VZZ6 CG16985 protein 34.9 5 11 5 563675.7076 11 +Q9W022 GEO01508p1 49.3 7 34 7 1661704.2089 34 +Q9W073 RH22148p 9.41 2 2 2 28740.35403 2 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 1344371.8360000001 20 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 549751.2748 11 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 125976.82 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 150453.01539999997 6 +Q9W095 glycerol kinase 2.6 2 2 2 2056.9893 1 +Q9W0A8 FI01658p 14.08 4 10 4 612828.948 10 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 447155.81940000004 18 +Q9W0C3 GH11843p 46.94 12 16 12 166279.09155 14 +Q9W0D3 GH15728p 1.09 2 2 2 17390.969 1 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 55375.527 1 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 272081.0679 12 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 623040.7496 18 +Q9W0J9 GH07301p 33.85 8 16 8 466791.3764 14 +Q9W0K9 LD10220p 11.61 2 3 2 11703.5605 3 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 187604.22090000001 11 +Q9W0M5 Protein DPCD 9.91 2 2 2 7059.638199999999 2 +Q9W0N6 LD27967p 9.57 3 3 3 12304.79959 3 +Q9W0P4 GEO05053p1 15.45 3 3 3 35871.729999999996 2 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 81384.398 2 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 17761.482 1 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 82147.86660000001 8 +Q9W0U0 glycerol kinase 5.39 2 3 1 35311.103 3 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 193206.83500000002 7 +Q9W0X1 GH15894p 5.72 3 3 3 52206.082 3 +Q9W0X2 GEO07322p1 33.88 4 5 4 100364.2847 5 +Q9W0X3 LD24657p 12.55 3 6 1 175572.055 6 +Q9W0Z5 LP09747p 10.07 5 12 5 150326.55304 12 +Q9W114 IP05433p 22.5 2 3 2 18789.55824 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 1019956.63 37 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 365679.7255 11 +Q9W136 Uncharacterized protein 33.82 6 17 6 254997.8219 13 +Q9W140 Regulatory protein zeste 14.35 5 7 5 24376.823379999998 6 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 21669.88282 3 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 3944.8387000000002 2 +Q9W158 LD36772p 6.51 2 3 2 135600.888 3 +Q9W199 GEO07594p1 10.97 2 3 2 108978.011 3 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 1620221.4492 17 +Q9W1C8 LD24355p 20.11 8 10 8 91281.8827 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 26954.547 3 +Q9W1F2 FI07217p 5.93 2 2 2 6786.245 1 +Q9W1F7 IP15825p 26.5 11 33 11 1357337.4623 30 +Q9W1F8 GEO08248p1 23.31 4 8 4 222334.43 8 +Q9W1G7 LD21576p 31.62 10 17 10 759676.1282 17 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 210642.33490000002 9 +Q9W1H6 GH04238p 13.85 3 7 3 58759.920000000006 4 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 1949683.8096 39 +Q9W1I8 LD03592p 36.97 8 15 8 266369.0588 9 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 23136.0454 3 +Q9W1L8 GH11818p 5.92 2 2 2 4827.7376 2 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 24693.556 3 +Q9W1N3 Levy, isoform A 32.11 4 16 4 1573959.9016 15 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 17869.178 1 +Q9W1R0 RH49821p 4.13 2 2 2 30617.093 2 +Q9W1R3 Golgin-245 5.17 7 8 7 96438.5413 8 +Q9W1V8 CG9893 protein 27.6 5 7 5 63699.62616 7 +Q9W1W4 RE45066p 15.81 5 7 5 103866.1645 6 +Q9W1X5 GH04942p 16.93 24 31 4 681998.0954999999 30 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 3778969.6287 50 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 413373.39839999995 6 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 158926.1846 8 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 51311.9983 5 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 261165.1009 21 +Q9W257 RH13652p 6.99 2 3 2 81129.516 3 +Q9W258 Babos, isoform A 30.1 6 17 6 586583.3769 15 +Q9W259 FI23916p1 18.69 7 10 7 136867.94 8 +Q9W260 GH03113p 12.2 7 13 7 142981.7434 11 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 14823.9453 2 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 198330.43695 20 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 13224.6487 3 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 43626.30499999999 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 1180031.0739 23 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 43257.134999999995 2 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 163556.26919999998 10 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 59045.024 2 +Q9W2L6 RH02475p 36.23 21 49 21 1809050.7504 49 +Q9W2M0 LD23155p 16.85 11 18 11 293473.3753 17 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 5391516.9006 42 +Q9W2M9 FI16623p1 14.71 2 3 2 53787.902 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 44726.3071 3 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 235683.7753 6 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 183747.23369999998 5 +Q9W2V2 FI20035p1 10.07 5 5 5 40528.1965 4 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 19093233.2107 96 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 203631.53139 18 +Q9W2Z9 RE65233p 8.65 2 2 2 39164.092000000004 2 +Q9W306 GEO08256p1 14.05 2 2 2 29114.152000000002 2 +Q9W308 GH05731p 16.18 2 3 2 58500.455 3 +Q9W309 GEO08445p1 38.27 7 10 7 213580.679 8 +Q9W314 GH14088p 9.07 4 4 3 85588.87950000001 4 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 94755.9525 8 +Q9W330 Phosphotransferase 44.18 19 34 3 1595562.5066 32 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 99982.258 3 +Q9W337 GH19985p 44.5 8 13 8 175362.0508 11 +Q9W350 C11.1, isoform A 1.55 2 2 2 1764.1957 1 +Q9W370 GEO12084p1 38.52 4 8 4 265698.7288 7 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 9060.999 1 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 3837.5967 1 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 1110288.78274 27 +Q9W396 FI06908p 17.5 6 7 6 161897.064 6 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 25409.555 2 +Q9W3C3 LD10016p 19.53 9 11 9 154428.74167 9 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 25702.56583 5 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 63210.084 6 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 48302.827 3 +Q9W3H4 LD36273p 52.23 11 23 11 620551.9519 21 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 63555.4966 5 +Q9W3J6 FI06457p 2.33 1 1 1 5050.2573 1 +Q9W3K6 LD35927p 4.62 4 5 3 130762.88 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 793810.0988500001 15 +Q9W3L4 GH20802p 20.29 8 14 8 360970.06255000003 13 +Q9W3M7 RNA helicase 13.12 12 14 11 105632.58504 11 +Q9W3M8 LD34211p 38.19 8 9 8 341802.0329 8 +Q9W3N1 RH59310p 3.12 1 1 1 18572.42 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 92412.924 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 1501924.694 33 +Q9W3Q0 FI07418p 10.09 2 5 1 3096.654 1 +Q9W3Q1 GM14286p 5.68 2 2 2 4389.1006 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 217633.6501 10 +Q9W3S3 LP10445p 16.22 2 3 2 4754.1807 1 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 121577.05089999999 8 +Q9W3T9 GM01152p 31.93 8 17 8 389141.18599 17 +Q9W3U9 CG14434-PA 26.74 5 6 0 152263.34005 6 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 12790.27897 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 108361.227 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 3364587.8028 50 +Q9W3X8 RH42690p 11.42 4 5 4 16538.211 4 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 243354.9699 11 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 1972873.64657 49 +Q9W403 LD24968p 14.47 6 7 6 40027.0147 6 +Q9W404 GH10714p 17.98 6 8 5 62366.892199999995 6 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 21058.106 2 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 959749.87046 27 +Q9W425 Rabconnectin-3A 0.99 3 3 3 15405.670600000001 2 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 2543480.47455 49 +Q9W461 LD23868p 11.54 6 8 6 91764.1232 7 +Q9W483 GH18971p 8.49 3 6 3 47575.5245 3 +Q9W486 LD13361p 3.58 2 2 0 13996.7935 2 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 205775.87 4 +Q9W4A0 GH11193p 31.98 6 10 6 237846.115 9 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 20659.03914 4 +Q9W4C2 lysozyme 11.84 2 3 2 43523.755000000005 3 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 109575.02110000001 8 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 14186.24 1 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 723735.7726 18 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 2696.0067 2 +Q9W4N8 LD30122p 50.93 10 48 0 2724180.81 44 +Q9W4U2 RH09070p 45.38 8 22 8 673155.117 19 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 8419.745 1 +Q9W4W5 RE47284p 13.77 5 6 5 207336.443 6 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 179234.3615 12 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 222078.0796 10 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 4982.3898 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 41052.255 4 +Q9W503 RH61816p 35.31 10 15 10 428280.3839 13 +Q9W5B4 GH18858p 27.59 8 18 8 145691.6595 12 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 10912.924 1 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 58987.949 2 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 45474.3277 4 +Q9W5W7 GH19483p 5.32 3 3 3 34651.9967 2 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 990681.7618 26 +Q9W5X0 LD21953p 19.4 4 21 0 116188.98 2 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 140675.3183 10 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 114023.2849 7 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 5219815.5775 50 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 109047.246 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 442937.2996 20 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 360244.5358 15 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 4922935.876089999 66 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 427083.04164 29 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 187336.8228 19 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 5295836.5739 67 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 54400.3073 4 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 48421.7885 6 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 1785552.8488999999 33 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 32766.2144 4 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 1560439.80503 40 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 3802747.4568 78 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 6213.1626 1 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 48605.6977 6 +R9PY51 Uncharacterized protein 34.95 5 71 5 1373038.92426 28 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 3509337.97904 80 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 110449.5123 6 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 121602.4703 7 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 50457.603 2 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 56722.513100000004 5 +X2JB48 ADP/ATP translocase 67.56 22 106 1 4615940.4713 91 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 326790.31074 22 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 23868.6706 2 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 4978057.1364 68 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 25139.119 2 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 23045.1348 2 +P10674 Fasciclin-1 51.07 33 127 1 866.08295 1 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 2160.1282 1 +Q08605 Transcription activator GAGA 2.24 1 1 0 19879.066 1 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 4039.5962 1 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 10129.0193 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 10306.07 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 18566.016 1 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 10778.094 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 1736.4274 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 28869.9598 3 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 6268.096 1 +Q9W568 Protein halfway 3.11 1 1 0 802.6248 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 1595.7966 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 1.73 1 1 0 590.1768 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 52890.2964 3 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 21080.2495 2 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 4451.6543 1 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 13759.492 1 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 6367.37784 2 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 91504.588 2 +A1Z7M0 Space blanket 5.71 1 1 1 6895.274 1 +A1ZA97 Carboxylic ester hydrolase 1.79 1 1 1 629.2493 1 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 47129.277 3 +B5RJS0 IP20241p 0.73 1 1 0 786.8152 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 9475.077000000001 2 +E1JJM0 FI20063p1 16.38 9 12 0 124703.12145 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 5946.0986 1 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 10144.988 1 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 121191.1434 4 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 13350.812 1 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 3679.8342 1 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 243080.7767 8 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 104201.575 2 +Q7K1W4 Epoxide hydrolase 2.35 1 1 1 709.20764 1 +Q7PLV6 FI02158p 0.85 1 1 1 2241.6897 1 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 26745.54 3 +Q8MPN6 Serpin 4 17.68 6 7 0 3280.429 1 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 7483.9443 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 15417.34 1 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 8963.307 1 +Q9VHX1 LD44032p 4.04 1 1 1 2476.5757 1 +Q9VKC1 IP16805p 3.89 1 1 1 12035.082 1 +Q9VM94 Homer, isoform B 43.32 14 33 1 7108.71 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 9017.4214 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 7748.0117 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 130896.823 3 +Q9VTY1 LD40136p 2.4 1 2 1 22849.076 1 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 3085.3877 1 +Q9W2N5 GH10162p 3.47 2 2 2 2371.451 1 +Q9W362 La-related protein 7 1.85 1 1 1 3432.6565 1 +Q9W525 LD08195p 2.32 1 1 0 8628.049 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 39566.59 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 5651.323 1 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 97060.1735 5 +E1JJ83 Os-C, isoform B 7.19 1 1 0 3023.36 1 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 209208.7907 15 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 9699.04 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 10678.303 1 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 6177.5557 1 +Q8IQ80 GH06117p 3.39 2 2 0 4237.87473 2 +Q9VHW5 LD38634p 4.76 1 1 1 1878.0005 1 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 26677.5606 2 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 11131.761 1 +Q9W5C1 RE02292p 1.55 1 1 1 425.5288 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 4067.323 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 6633.326300000001 2 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 13871.919 1 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 7005181.5655 113 +E1JH70 Kank, isoform E 1.28 1 1 0 2646.6567 1 +M9NFP1 Jim, isoform E 0.85 1 1 0 10194.036 1 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 8936.6797 2 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 3003.3364 1 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 13427.796199999999 2 +Q9VBS0 CHK domain ov2 2.2 1 1 1 2438.317 1 +Q9VCH9 LD07883p 4.72 1 1 1 4052.721 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 12314.59965 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 15167.131399999998 2 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 11860.79 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 60205.267 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 7782.3394 1 +Q9VMY3 FI19613p1 1.5 1 1 1 10970.109 1 +Q9VS80 FI17864p1 2.6 1 2 1 4869.9785 1 +Q9VZF0 LD44732p 3.61 1 1 1 3504.2407 1 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 17627.5947 2 +Q9W249 IP21806p 2.24 1 1 1 643.4928 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 9683.935 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 63922.774999999994 3 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 33006.94 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 193031.0835 7 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 8348.683 1 +Q0KHQ1 GEO13361p1 11.11 1 1 1 685.63696 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 19767.135400000003 2 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 126190.771 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 2953.8462 1 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 13382.199 1 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 935.09894 1 +Q9VV37 GEO13385p1 10.1 1 5 1 14937.834 2 +Q9VVX6 BET1 homolog 16.24 2 2 2 63423.887 2 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 13621.849 1 +Q9W152 RH33060p 16.9 1 1 1 6782.9897 1 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 14244.940999999999 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 48968.553 2 +M9PDY5 Girdin, isoform C 0.94 1 1 0 7252.073 1 +Q9VAI3 FI06539p 10.08 1 2 1 22012.951 2 +Q9VB09 IP04131p 5.73 1 1 1 26404.195 1 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 69664.4033 3 +Q9VZN6 Lipase domain-containing protein 4.36 1 1 1 5311.678 1 +Q9W5E7 LP07417p 11.4 1 1 1 3576.617 1 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 9950.725 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 266965.56700000004 6 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 2058.1946 1 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 10010.828000000001 2 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 20927.734 1 +A1Z872 CAP, isoform D 25.05 11 20 1 3492.1106 1 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 11096.729 1 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 15587.151 1 +Q7K3Z8 GH01208p 13.24 2 2 2 2879.7952 1 +Q9VAN8 FI15955p1 6.46 1 1 1 6522.657 1 +Q9VLL4 FI23523p1 1.81 1 1 1 3105.2615 1 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 45488.043999999994 2 +P08841 Tubulin beta-3 chain 23.13 10 131 0 12510.325 1 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 18259.234 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 1862.0363 1 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 9263.394 1 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 758.2955 1 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 14534.4287 2 +Q9W3S4 LD46272p 3.11 1 1 1 3671.908 1 +A8JQX3 Nocturnin 1.71 1 1 1 3868.3765 1 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 71567.325 2 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 1 0 2076.8604 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 75095.9957 7 +Q7JY89 RE35124p 15.0 1 1 1 4764.024 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 41284.7757 3 +A8JUP7 Serine protease Hayan 1.1 1 1 1 7443.872 1 +P07664 Serendipity locus protein delta 2.54 1 1 1 17170.514 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 456691.698 4 +Q9VGM4 LD28119p 2.94 1 1 1 3293.164 1 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 48061.36482 5 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 26055.807 2 +E1JJ37 Complexin, isoform W 65.47 9 67 1 9338.016 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 7974.973 1 +Q962I2 small monomeric GTPase 50.76 8 21 1 7342.5366 1 +Q9VF73 FI17904p1 0.98 1 1 0 4047.9968 1 +Q9VSK1 GH09510p 2.72 2 2 2 825.9195 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 60416.504 2 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 10497.991 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 64818.11985 7 +Q29R09 LD28546p 3.02 1 1 1 730.49506 1 +Q6AWJ5 LP12324p 23.56 8 11 1 3020.5806 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 4459.8439 2 +Q9VQT5 FI01556p 13.92 1 3 1 60794.032 3 +Q9W0A9 GM02612p 3.06 1 1 1 5565.589 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 6425.4937 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 29047.484 1 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 9799.871 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 11462.763 1 +Q9VV29 GEO12576p1 9.68 1 2 0 20321.316 2 +P45884 Attacin-A 5.36 1 1 0 28609.336 1 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 2031.3489 1 +O61348 Bobby sox 3.51 2 2 2 1885.207 1 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 4655.454 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 14899.622 1 +Q9VV27 MIP11526p 7.63 1 1 1 17014.45 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 27218.8523 2 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 8364.5863 2 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 46552.76 2 +M9PE05 Encore, isoform H 0.6 1 1 0 2691.4722 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 11872.2508 2 +Q9VF46 GH25158p 4.13 1 2 1 14679.4506 2 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 13571.232100000001 2 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 7582.7373 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 33922.9975 2 +A8JNU1 adenylate cyclase 1.78 2 3 0 8591.5242 3 +Q7KVR7 AP-1 complex subunit gamma 1.13 1 1 0 1664.8921 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 1817.2554 1 +Q7K010 Tetraspanin 3.64 1 1 1 5436.6177 1 +Q9VUR4 FI11905p 18.81 5 8 1 7395.2754 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 294.63968 1 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 21435.861 1 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 4101.8181 2 +A8JNV2 Uncharacterized protein 10.71 1 2 1 6893.1347000000005 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 8759.1335 2 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 12953.229 1 +Q8SWU4 RE25571p 17.3 6 13 1 4721.2527 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 75457.23 1 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2848.7966 1 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 1785.2893 1 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 8756.0112 2 +Q8SXW3 GV1, isoform B 4.44 1 1 0 16215.732 1 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 9742.599 1 +Q8IRN0 FI06485p 3.21 1 1 1 3080.6343 1 +Q9VHS6 Copper transport protein 5.75 1 1 1 4677.973 1 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 9255.27868 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 2696.0693 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 2389.1133 1 +Q8ML92 Protein aveugle 7.55 1 1 1 5154.3315 1 +Q9VT15 GH14734p 8.33 2 2 2 35507.115 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 8602.703 1 +A1A750 GEO11067p1 6.93 1 1 1 9094.723 1 +Q9VF83 LD33178p 2.73 1 1 1 7484.8257 1 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 44320.5527 2 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 21972.61 1 +M9PCK0 Decima, isoform D 9.87 2 2 0 22167.452400000002 2 +Q9VUQ8 DCN1-like protein 1 7.29 1 1 0 465.7552 1 +Q9VPA9 LD24894p 1.45 1 1 1 9048.222 1 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 4693.6987 1 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 334.79855 1 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 5562.3857 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 9180.459 1 +Q02427 RNA-binding protein 1 14.58 2 4 1 43745.715 1 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 17255.461 2 +Q7K4Y8 GH22690p 1.65 1 1 1 5011.444 1 +Q9VCQ7 LD40758p 1.61 1 1 1 679.06525 1 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 6928.745 1 +Q9VDL4 LP04613p 2.72 1 1 1 3596.3325 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 25504.5659 3 +Q7K4X4 GH24095p 2.0 1 1 1 2698.5986 1 +Q9VJ06 LD05576p 7.07 2 2 2 9285.9344 2 +Q9VGE8 Tachykinins 6.57 2 2 0 20650.582 2 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 13562.488 1 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 11661.516 1 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 3801.3901 2 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 11422.7295 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 4459.9253 1 +Q9V3A6 Ero1-like protein 1.45 1 1 1 9317.184 1 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 25028.68 1 +Q0E8K5 AT10158p 4.1 1 1 0 732.9425 1 +Q7K8Y3 IP16419p 14.29 5 6 0 102147.7219 5 +Q8STG9 DSec61alpha 1.89 1 1 1 16371.178 1 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 8541.047999999999 2 +P22812 Protein Tube 3.9 2 3 2 1528.81953 3 +Q9VYX8 LD04844p 9.38 2 2 2 9962.021 1 +Q7JV39 GH01142p 5.05 1 2 1 9681.0576 2 +Q9VZX8 AT02196p 2.37 1 1 1 2764.5425 1 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 56786.09 2 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 8081.419 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 867.1174 1 +Q9W3F7 Mitoguardin 4.19 2 2 2 4400.0653 2 +Q9W4F9 IP01388p 1.92 1 1 0 12226.634 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 7093.6035 1 +F0JAQ9 MIP27169p 5.85 2 4 0 2236.7023 2 +P18289 Transcription factor Jra 3.11 1 1 0 7892.381 1 +Q9VJ77 FI24106p1 3.28 2 2 0 9489.415 1 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 4795.1997 1 +Q9VR55 LD29159p 8.71 1 1 1 12055.986 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 8671.803 1 +P54194 General odorant-binding protein 84a 11.43 2 2 2 2598.141 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 13169.8613 2 +Q8IR92 Uncharacterized protein, isoform A 7.51 7 8 0 352.59372 1 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 10402.8877 3 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 1622.2903 1 +Q9VV26 GEO12049p1 6.84 1 1 1 43397.574 1 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 5873.931 1 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 4576.613 2 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 3455.863 1 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 11957.955 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 10977.528 1 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 3250.1083 2 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 18579.602 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 21395.156 1 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 3156.907 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 24913.408929999998 4 +Q6IJE8 HDC15077 17.04 2 3 2 57808.465599999996 3 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 2563.651 1 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 34360.561700000006 3 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 3310.5989 1 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 7768.9946 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 9755.768 1 +Q9W494 Crossveinless 3.5 1 1 1 3191.6758 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 19253.932 2 +Q7KN04 Spondin-1 2.1 1 1 1 5163.227 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 3384.607 1 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 6283.7715 1 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 17930.30757 4 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 2006.1719 1 +Q8MRQ1 GH06222p 1.49 1 1 0 5684.032 1 +Q9VPR6 Kinase 3.56 1 1 1 3204.1033 1 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 4315.10685 2 +E1JJS1 glutathione transferase 5.6 2 2 0 53354.634000000005 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 4840.5464 1 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 5975.075 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 5790.9155 1 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 4499.8955 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 1786.7732 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 3322.0452 1 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 3737.1597 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 4988.485 1 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 740.66595 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 17320.9758 2 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 3029.313 1 +A1Z8N1 Trehalose transporter 1 1.05 1 1 1 360.30875 1 +O76876 Protein sex-lethal 1.86 1 1 0 2061.296 1 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 23196.207 1 +Q9VY55 FI09726p 8.08 1 1 1 2345.0132 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 49529.145 1 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 2366.4473 1 +Q02936 Protein hedgehog 2.34 1 1 1 13150.071 1 +Q6NN09 ATPase protein 9 5.07 1 6 1 98279.831 4 +O76874 SD17974p 1.14 1 1 1 3273.2632 1 +Q9W424 Splicing factor 3B subunit 4 2.59 1 1 1 594.2533 1 +Q9VGL2 GM08392p 2.12 1 1 1 13485.659 1 +Q9VAX9 MIP05919p 3.7 1 1 1 8813.243 1 +Q9VBD8 RT02919p 4.37 1 1 0 11907.482 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 2173.2656 1 +Q9VK20 LD18447p 2.81 1 1 1 13821.907 1 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 4917.643 1 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 2072.6091 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 7399.3276 1 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 5819.5566 1 +Q9VZC8 GEO12024p1 6.16 1 1 1 9128.403 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 870.2733 1 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 11956.099 1 +Q9VM54 J domain-containing protein 3.9 1 1 1 937.775 1 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 9984.833 1 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 3585.6558 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 3402.413 1 +Q4AB30 GUK-holder, isoform C 1.25 1 1 0 314.78928 1 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 469.62814 1 +Q9W123 Protein painting of fourth 2.22 1 1 0 3054.957 1 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 25435.535 1 +Q9VGZ2 FI06805p 3.86 1 1 1 15662.215 1 +Q7JWS8 AT17867p 10.26 2 2 2 19438.344 1 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 528.2813 1 +E1JHX0 MIP29328p 3.76 1 1 1 30534.324 1 +D6W4V3 MIP19557p 4.74 1 1 0 2001.1775 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 359.10175 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 3499.9158 1 +Q9V9R3 adenylate cyclase 0.6 1 1 1 6048.982 1 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 4923.9507 1 +P39205 Molybdenum cofactor synthesis protein cinnamon 2.16 1 1 1 844.3596 1 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 16265.631 1 +M9PE65 Axotactin 0.55 1 1 1 699.6476 1 +Q8IRK0 GH04558p 3.9 1 1 1 5233.11 1 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 8082.299 1 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 30289.352 2 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 6918.7163 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 41704.85 1 +Q9VV21 GEO07736p1 16.26 1 2 1 30824.056399999998 2 +P07186 Chorion protein S19 14.45 1 2 1 1458.9511499999999 2 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 300.7016 1 +Q9VL29 GEO11246p1 12.93 1 1 1 3913.9229 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 434.1868 1 +Q9W2F6 RE36793p 7.09 1 1 1 43758.785 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 2498.3733 1 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 27380.0108 4 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 8981.418 1 +Q7K1D7 Choline/ethanolamine transporter FLVCR1 2.9 1 1 1 1700.9095 1 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 4151.5117 1 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 8128.119 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 32127.47 1 +Q9W513 GEO10196p1 12.86 1 1 1 81310.93 1 +A8DYV9 GEO02589p1 10.53 1 1 1 21853.838 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 7230.3887 1 +O76513 Cyclin-H 3.7 1 1 1 5377.9614 1 +Q8IPJ5 FI18525p1 3.83 1 1 1 496.9307 1 +Q9W0B6 LD14179p 1.48 1 1 1 3068.49 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 506.87936 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 17144.807 1 +Q05201 Protein phosphatase eya 2.22 1 1 0 3395.6826 1 +Q9VIM8 RE22905p 1.6 1 1 1 6034.449 1 +Q7JRC9 RE73310p 1.89 1 1 1 3613.373 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 3491.0208 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 2991.1675 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 21251.828 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 49950.1803 2 +A1A753 IP17594p 10.11 1 1 1 5808.1724 1 +Q9VX56 LD03052p 5.94 1 1 1 691.9632 1 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 8827.1 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 3576.2966 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 761.8738 1 +Q7JY99 glycerol kinase 1.34 1 1 1 816.88605 1 +Q8MYV9 GEO12865p1 11.04 1 3 1 64399.939 3 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 3570.917 1 +Q9W366 RE59932p 1.08 1 1 1 18098.947 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 327.00018 1 +Q8T4F7 Protein enabled 0.82 1 1 0 2541.448 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 129888.189 2 +Q9VB08 E3 ubiquitin-protein ligase RING1 2.53 1 1 1 481.97855 1 +Q9VBQ5 LD38433p 1.91 1 1 1 8455.611 1 +Q9VE49 LP06937p 1.86 1 1 1 919.44495 1 +Q9VH82 FI02086p 7.14 1 1 1 8034.3706 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 5126.539 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 3069.7515 1 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 3036.4482 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 2949.6829 1 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 5770.9497 1 +Q9VPN3 GEO07775p1 12.0 1 1 1 5088.73 1 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 2765.6555 1 +Q9VKE7 GH09228p1 10.39 1 1 1 2755.6775 1 +Q7KA66 Serpin 43Aa 2.56 1 1 1 2151.253 1 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 14177.874 1 +A8JUR4 Kinesin associated protein 3, isoform H 1.59 1 1 0 352.19476 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 119839.85100000001 3 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 16972.56 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 3616.2734 1 +Q9VEF0 LD33778p 3.49 1 1 1 813.3457 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 7505.393 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 4715.3037 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 57491.2 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 211677.514 2 +Q5BIL9 SD21168p 1.63 1 1 0 13256.1875 1 +Q9Y170 Sex-regulated protein janus-B 6.08 1 1 1 491.01642 1 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 7942.0684 1 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 36076.734 1 +Q9VHJ4 GH04846p 2.25 1 1 1 4154.9756 1 +Q9W226 GEO07239p1 5.88 1 1 1 789.6781 1 +Q9W0I9 FI01805p 3.22 1 1 1 2737.6497 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 4739.935 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 18556.238 1 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 396.49182 1 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 4333.907 1 +Q8SY53 GH11935p 2.73 1 1 1 1594.4022 1 +Q7JVN6 GH17672p 2.24 1 1 1 2852.7058 1 +P25159 Maternal effect protein staufen 0.68 1 1 0 1634.4927 1 +Q9VLE1 RH63449p 4.29 1 1 1 12850.808 1 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 2495.6497 1 +Q24040 Protein big brother 5.16 1 1 0 920.5152 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 5303.407 1 +F3YD72 SD23574p 20.45 1 1 1 3247.2012 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 4459.2124 1 +Q8STI6 RE53401p 4.27 1 1 1 613.7592 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 1972.8943 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 2193.5757 1 +Q7K2B1 LD11371p 5.85 1 1 1 12345.626 1 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 11709.779 1 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 10604.747 1 +Q9W168 GEO02361p1 9.23 1 1 1 7134.9414 1 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 7309.3267 1 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 1 0 867.51526 1 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 15560.257 1 +A1Z7L2 IP20435p 7.96 1 1 1 454.92532 1 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 9619.482 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 6010.4316 1 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 2204.8489 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 21578.569 2 +A1A6X2 IP16893p 12.07 1 1 1 8230.873 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 22394.451 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 3304.324 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 1998.2379 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 28311.718 2 +Q7JXE1 Bunker gear 4.75 1 1 1 620.4398 1 +Q9VL31 RIP-like protein 4.06 1 1 1 7190.5347 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 7462.395 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 1 0 671.29944 1 +Q9VX71 Uncharacterized protein 5.2 1 1 1 40201.223 1 +Q8IQ51 trypsin 3.05 1 1 1 19651.49 1 +Q9VHS0 FI07206p 2.49 1 1 1 5585.427 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 15041.276 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 3702.375 1 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 2113.4993 1 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 704.95807 1 +Q8SYC5 RE68347p 2.26 1 1 0 669.5969 1 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 8439.18 1 +Q9XZF0 Protein yippee 5.79 1 1 0 10966.476 1 +A8DYR5 Shaw-like, isoform C 1.17 1 1 0 697.0822 1 +Q9VD92 Protein archease-like 5.77 1 1 1 15714.785 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 7094.27 1 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 993.0054 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 23234.113 1 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 1511.4949 1 +Q961D1 Cyclin-K 1.75 1 1 1 2534.4202 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 36966.68 1 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 1699.9528 1 +Q9VKZ7 Nicalin 1.25 1 1 1 27890.244 1 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 24695.155 2 +Q8T0B1 Nuclear envelope phosphatase-regulatory subunit 1 homolog 8.4 1 1 1 572.64954 1 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 22917.139 1 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 4380.1797 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 5693.4907 1 +P54398 Fat body protein 2 3.52 1 1 0 24498.236 1 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 1645.7363 1 +Q9VJ98 GH05617p 2.44 1 1 1 3048.9175 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 5626.2495 1 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 108998.0108 8 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 30899.626000000004 4 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 42126.118 5 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 9211.412499999999 2 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 28557.7195 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F3_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F3_TMTc.txt new file mode 100644 index 0000000..354b441 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_F3_TMTc.txt @@ -0,0 +1,4103 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 126, Sample, n/a, SFug_F3 Abundances Count: F8: 126, Sample, n/a, SFug_F3 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 307017.8858 7 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 107744.14809 10 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 7773216.1829699995 67 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 91600.6815 8 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 212793.9175 11 +A0A1F4 Protein eyes shut 12.91 28 65 0 2629333.78853 59 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 17577.827100000002 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 220811.1507 14 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 21754.258700000002 3 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 7504.841600000001 2 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 15243.714100000001 4 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 19271.1292 4 +A1Z877 Nidogen 21.48 28 49 28 2642690.5885 46 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 75828.5722 6 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 721297.67423 61 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 499724.782 7 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 181662.3768 11 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 358193.62425 25 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 10876.48605 3 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 11137.106 1 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 188375.13171 17 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 55477.499 2 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 71716.436 8 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 128160.46656000002 7 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 9942.933 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 72058.16560000001 4 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 10506.6306 2 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 900772.3641 9 +A8DYP0 Protein Obscurin 1.87 8 8 8 43228.75554 8 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 534456.5093 9 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 7649162.1408 117 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 820187.9555 23 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 2159419.98099 46 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1472465.9195 21 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 219771.56569999998 8 +C0HL66 Histone H3.3A 55.15 7 37 0 61880.09516 5 +C0HLZ9 Baramicin A1 17.51 4 6 0 156057.39800000002 5 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 2155766.59433 39 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 15393.94214 3 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 194484.7248 12 +M9NDE3 Protein bark beetle 4.42 14 14 14 121146.13829999999 11 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 13928101.0525 69 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 128794.5187 10 +O01367 Protein held out wings 18.52 7 14 0 270231.59717 13 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 748873.6359 12 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 17720803.12174 128 +O02194 Presenilin homolog 5.73 2 2 0 13134.07 1 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 1063939.1376 18 +O02649 Heat shock protein 60A 76.27 44 168 28 19047161.38697 146 +O15943 Neural-cadherin 17.05 53 82 2 1786760.48 77 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 246276.0793 12 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 91228.7428 6 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 30632.149299999997 3 +O18333 Ras-related protein Rab-2 44.6 9 17 9 643303.18405 17 +O18334 Ras-related protein Rab6 33.17 8 22 0 153564.9547 8 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 1294036.7928 21 +O18388 Importin subunit beta 3.85 4 4 0 98317.4409 3 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 17181230.253370002 121 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 1388937.2506 37 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 662175.2245 14 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 12791.218 1 +O44342 Protein windbeutel 17.51 4 5 0 56270.27255000001 5 +O44386 Integrin alpha-PS3 7.26 8 10 6 154388.1255 9 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 366360.411 5 +O46037 Vinculin 59.31 53 121 0 4654314.4199 107 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 15605.791 1 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 761167.27705 17 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 233976.4825 10 +O46339 Homeobox protein homothorax 5.54 2 2 2 8238.3981 2 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 1001605.76 17 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 51720.18 2 +O61307 Teneurin-m 2.01 4 4 0 83246.36 2 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 205733.7662 10 +O61491 Flotillin-1 57.51 24 64 24 3899041.4675 59 +O61722 PRL-1 phosphatase 67.05 10 24 10 576881.0017 21 +O62619 Pyruvate kinase 69.79 30 93 30 12366092.97134 77 +O62621 Coatomer subunit beta' 2.08 2 2 2 8666.61033 2 +O76206 Putative riboflavin kinase 39.87 6 13 0 568548.2697000001 9 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 408340.4946600001 7 +O76742 Ras-related protein Rab7 37.68 8 13 8 588494.5539 12 +O76878 RILP-like protein homolog 18.96 7 9 0 90534.9241 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 299299.2863 10 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 467780.26675 15 +O77051 Transcription factor E2F2 16.76 6 8 0 58960.0933 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 72620.4904 6 +O77277 Torsin-like protein 10.0 4 5 0 142473.8084 5 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 66536.9543 4 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 425598.5781 22 +O96690 Protein PDF 15.69 1 2 1 6686.3555 1 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 6460591.03467 92 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 185094.7923 8 +O97125 Heat shock protein 68 30.39 17 74 11 1103097.05133 25 +O97172 UPF0729 protein CG18508 29.29 3 3 0 24556.013 2 +O97394 Protein sidekick 0.45 1 1 0 715.21716 1 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 62579.626000000004 3 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 4798204.65028 44 +P00334 Alcohol dehydrogenase 88.28 23 232 23 103895959.90761 204 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 4555041.5589000005 22 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 14196.8374 2 +P02255 Histone H1 25.0 5 6 0 80718.6693 6 +P02283 Histone H2B 56.91 8 80 8 10853019.8802 71 +P02299 Histone H3 55.15 7 35 2 9304583.8089 29 +P02515 Heat shock protein 22 38.51 7 11 7 605820.3213 10 +P02516 Heat shock protein 23 84.95 16 72 0 10017142.124 65 +P02517 Heat shock protein 26 48.08 8 23 0 3638769.7007 23 +P02518 Heat shock protein 27 55.87 11 23 0 1735559.89549 18 +P02572 Actin-42A 74.2 30 655 3 270108521.99569 583 +P02574 Actin, larval muscle 66.22 27 546 0 1112489.1747 19 +P02828 Heat shock protein 83 51.74 42 171 0 21478791.19196 164 +P02843 Vitellogenin-1 65.15 29 248 0 24988945.93847 181 +P02844 Vitellogenin-2 66.97 26 196 0 21826525.88415 147 +P04197 Myb protein 2.28 2 2 0 10322.699 2 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 630169.769 8 +P04388 Ras-like protein 2 25.0 4 8 4 359771.605 7 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 20733.6752 2 +P05205 Heterochromatin protein 1 44.66 9 23 9 706721.26689 18 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 3323234.46906 36 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 3007873.4293 12 +P05552 Transcription factor Adf-1 17.56 4 5 0 105683.597 4 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 607142.7652 10 +P05812 Heat shock protein 67B1 22.7 8 11 8 162242.03789 11 +P06002 Opsin Rh1 7.24 3 7 3 673898.053 5 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 97970861.61401 186 +P06607 Vitellogenin-3 80.0 35 270 0 41359124.80107 237 +P06742 Myosin light chain alkali 55.48 9 117 0 23597156.86182 97 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 3796.2793 2 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 11908662.7433 33 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 40381733.94702 133 +P07665 Serendipity locus protein beta 5.9 3 4 0 73552.6667 4 +P07668 Choline O-acetyltransferase 14.7 8 8 8 57960.8203 8 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 131677406.43699001 331 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 117648.9249 8 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 607318.1061 22 +P08144 Alpha-amylase A 22.87 10 19 0 963785.37038 17 +P08171 Esterase-6 15.26 8 18 0 927921.057 17 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 122621.2063 5 +P08182 Casein kinase II subunit beta 38.72 8 19 2 1223622.6301 19 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 8077445.14944 45 +P08645 Ras-related protein Rap1 40.76 6 13 0 398001.9121 12 +P08646 Ras-like protein 1 38.62 7 19 7 1173828.1335 17 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 48221584.60061 155 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 562943.369 12 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 13247554.68138 101 +P08928 Lamin 75.72 60 199 59 11675002.96146 174 +P08985 Histone H2A.v 42.55 10 39 8 4611744.05444 27 +P09040 Drosulfakinins 17.73 3 4 3 96545.3964 4 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 4235474.2388 46 +P09208 Insulin-like receptor 2.19 5 6 5 22103.42075 5 +P09491 Tropomyosin-2 82.39 40 292 3 778398.24 10 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 189698.1848 8 +P10379 Protein unzipped 27.46 11 26 0 1092363.1469999999 24 +P10552 FMRFamide-related peptides 8.36 3 4 3 246154.014 4 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 1313769.23374 66 +P10981 Actin-87E 69.15 30 649 0 11727851.8807 27 +P10987 Actin-5C 74.2 31 679 0 4433942.4291 23 +P11046 Laminin subunit beta-1 29.14 47 83 47 4791685.9926 75 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 779.43713 1 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 67645938.26057 333 +P11584 Integrin beta-PS 27.54 22 46 0 2057492.56538 44 +P12024 Chaoptin 34.98 42 110 0 6692050.76492 102 +P12080 Integrin alpha-PS2 12.39 17 21 17 1091483.7603 19 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 28821.825900000003 3 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 5527861.75765 50 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 45158.21464 4 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 811234.3695 15 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 38134.422 3 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 3826174.5529199997 44 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 586279.9867 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 502516.1284 9 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 2957965.27 39 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 6622055.8199 108 +P13395 Spectrin alpha chain 66.34 150 596 0 54162371.03879 544 +P13469 DNA-binding protein modulo 6.83 4 4 0 103581.984 4 +P13496 Dynactin subunit 1 19.53 26 29 26 666486.9009 28 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 18260383.92389 137 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 357590.9871 12 +P13678 Protein kinase C 6.22 5 6 0 77090.8412 4 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 15868.872 1 +P14199 Protein ref(2)P 21.04 10 16 10 790060.0713000001 15 +P14318 Muscle-specific protein 20 83.15 21 93 21 11568180.97524 86 +P14484 Pupal cuticle protein 27.17 5 23 5 1329217.8603 21 +P15007 Enolase 77.8 36 335 1 79238571.07491 298 +P15215 Laminin subunit gamma-1 38.87 56 107 0 6271227.13017 101 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 37768.9206 4 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 8971477.27606 58 +P15364 Protein amalgam 24.62 6 10 0 217980.4309 9 +P15372 Phosrestin-2 69.78 24 97 0 7720541.36817 88 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 235273.088 4 +P16378 G protein alpha o subunit 26.27 11 43 8 6056029.009000001 39 +P16554 Protein numb 19.06 9 11 0 230244.5075 11 +P16568 Protein bicaudal D 20.59 17 19 0 354386.723 18 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 387172.95439999993 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 5696.218 1 +P16914 Protein elav 34.58 12 38 0 1487906.22168 34 +P17210 Kinesin heavy chain 46.77 45 96 45 3897280.68878 84 +P17276 Protein henna 40.04 15 35 0 2774479.91815 33 +P17336 Catalase 44.47 19 65 19 4455970.3697 53 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 2403093.0318 28 +P17719 Dihydrofolate reductase 26.92 4 8 4 127438.9978 7 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 4556219.59 41 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 23417.6083 2 +P18431 Protein kinase shaggy 43.77 19 57 0 3316814.44826 51 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 35066702.25381 226 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 287074.05 12 +P18824 Armadillo segment polarity protein 17.67 13 22 0 259241.694 17 +P19107 Phosrestin-1 71.82 33 296 33 46336677.36305 276 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 1249276.8997 23 +P19334 Transient receptor potential protein 4.39 6 7 5 23935.9624 5 +P19339 Protein sex-lethal 5.65 2 2 0 39589.225999999995 2 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 772131.121 11 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 9401704.17786 59 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 49044.654800000004 3 +P20153 Protein ultraspiracle 1.57 1 1 0 17500.148 1 +P20228 Glutamate decarboxylase 20.78 11 32 0 1044391.9381 31 +P20232 Transcription elongation factor S-II 38.02 12 19 0 466013.03975 17 +P20240 Otefin 40.8 14 20 14 307958.84268 17 +P20241 Neuroglian 26.04 33 88 0 4831400.19426 82 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 520654.19034000003 11 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 48046.506 3 +P20354 G protein alpha s subunit 47.01 15 32 1 5544.4404 1 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 39077.9284 6 +P20432 Glutathione S-transferase D1 52.15 14 87 11 25933488.64706 76 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 11960405.147 66 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 64522692.26067 178 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1583742.5416 31 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 14753484.531440001 108 +P22465 Annexin B10 76.01 24 137 24 16408280.6801 119 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 1942499.9132 26 +P22813 Heat shock factor protein 4.34 3 3 0 13396.448 2 +P22815 Protein bride of sevenless 2.01 2 3 2 27527.34985 3 +P22979 Heat shock protein 67B3 55.28 7 20 7 803273.1192 18 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 76280.6259 6 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 776624.7666 37 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 32508.7955 2 +P23625 G protein alpha q subunit 57.51 21 85 18 10207675.2755 77 +P23654 Neurotactin 15.84 11 14 0 235321.473 14 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 527278.80078 13 +P23779 Cystatin-like protein 57.94 7 40 7 2656855.25815 36 +P24156 Prohibitin 1 68.12 18 72 0 6939692.6524 67 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 38876536.45955 121 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 178659.695 2 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 53206.4636 4 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 1710714.7702 27 +P25171 Regulator of chromosome condensation 10.42 5 6 5 154619.5495 5 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 6543.3337 2 +P25228 Ras-related protein Rab-3 37.73 7 22 0 366130.79469999997 9 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 191366.2805 9 +P25822 Maternal protein pumilio 3.13 5 6 0 79487.651 6 +P25843 Profilin 88.89 7 37 0 2039658.19506 33 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 2574480.794 9 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 292008.5826 12 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 1859733.7417000001 21 +P26686 Serine-arginine protein 55 19.68 7 14 0 329882.1251 14 +P27716 Innexin inx1 2.49 1 1 0 3260.7363 1 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 640238.0274700001 8 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 84517.7248 9 +P29052 Transcription initiation factor IIB 16.83 6 10 0 198099.138 10 +P29310 14-3-3 protein zeta 68.55 19 282 0 52467136.76363 234 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 1118006.8073 15 +P29413 Calreticulin 58.13 22 67 0 9413588.45881 63 +P29613 Triosephosphate isomerase 78.54 20 145 19 37178117.86643 137 +P29742 Clathrin heavy chain 7.99 13 14 0 145431.2312 11 +P29746 Protein bangles and beads 63.12 27 57 27 4625052.96405 56 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 6431631.60672 68 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 186514.9702 6 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 20060189.84425 173 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 19115136.34551 163 +P30432 Furin-like protease 2 2.5 4 4 0 31561.363 3 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 6713.123 1 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 6956301.74 37 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 7953822.2423 83 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 2892945.79218 30 +P32234 Guanylate binding protein 128up 16.85 6 9 5 217036.56564000002 9 +P32392 Actin-related protein 3 26.56 9 16 9 480454.43233 15 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 644627.8278 18 +P33438 Glutactin 36.94 29 56 0 1228022.16963 47 +P34082 Fasciclin-2 26.8 21 34 0 1018205.78524 30 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 1775103.1321 23 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 1478787.8491 23 +P35220 Catenin alpha 26.39 24 38 14 1060051.2639 35 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 145373941.10345 367 +P35415 Paramyosin, long form 75.2 91 521 0 62868221.10733 455 +P35416 Paramyosin, short form 60.0 45 292 0 6813914.60537 52 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 15266.726799999999 4 +P35554 Flightin 54.4 9 20 0 1399624.8235000002 19 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 78462.0571 7 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 5296592.22052 55 +P36188 Troponin I 57.99 21 83 0 14276436.5211 78 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 1500622.7422 16 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 15518.8126 4 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 2821218.1804 31 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 80614.1074 2 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 10114987.999400001 113 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 370633.23390000005 9 +P37236 Frequenin-1 71.66 12 40 0 1355909.321 12 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 6622.4917 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 1067743.2634 12 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 12201319.89118 71 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 7350294.9984 52 +P39736 Puff-specific protein Bx42 9.87 4 5 0 43871.4055 4 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 291348.109 6 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 756948.1906 12 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 324902.0942 6 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 1837647.1215 32 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 11859.83502 5 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1034861.1756 20 +P40427 Homeobox protein extradenticle 9.31 3 4 0 133747.8029 4 +P40792 Ras-related protein Rac1 34.38 6 13 0 1176841.892 13 +P40793 Cdc42 homolog 24.61 4 8 0 541895.6925 7 +P40796 La protein homolog 40.51 13 18 12 628448.5858 16 +P40797 Protein peanut 38.4 19 35 18 1554932.7907 35 +P40945 ADP ribosylation factor 4 38.33 5 12 0 233870.2169 7 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 497742.3796 5 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1503610.6657 33 +P41043 Glutathione S-transferase S1 83.53 19 72 0 8002134.230359999 67 +P41044 Calbindin-32 76.77 26 157 0 13878169.10235 143 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 741534.97499 25 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 2515474.5257 21 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 1049319.8163 14 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 4802326.03885 43 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 4520128.90553 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 3458157.4896 40 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 204031.2191 7 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 1152985.92945 19 +P42207 Septin-1 12.47 5 7 4 148073.7774 5 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 6441925.0444 45 +P42325 Neurocalcin homolog 61.05 12 34 12 2156101.28368 31 +P42787 Carboxypeptidase D 5.33 7 15 0 327150.7725 12 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 291612.70900000003 5 +P45437 Coatomer subunit beta 8.61 5 8 5 128970.1888 6 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 19321102.49592 88 +P45888 Actin-related protein 2 28.82 9 17 9 1125241.3592 15 +P45889 Actin-related protein 1 37.23 12 24 12 1117740.3856 22 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 40096.29 1 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 1309865.6028 17 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 3641632.1536999997 35 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 823765.081 10 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 3146743.71205 73 +P46824 Kinesin light chain 48.43 25 56 0 3306086.9723 50 +P47947 Troponin C, isoform 1 20.78 3 32 0 2867723.0246 31 +P47948 Troponin C, isoform 2 48.39 6 16 0 248211.4748 9 +P47949 Troponin C, isoform 3 62.58 8 28 0 1948446.3079400002 23 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 4129542.7159 30 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 2791675.9951 26 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 2438310.3098 36 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 8851574.40144 39 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 371389.18624 10 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 59947.278 3 +P48554 Ras-related protein Rac2 26.04 5 12 0 36951.12 1 +P48555 Ras-related protein Ral-a 58.21 10 29 1 2059388.0169 28 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 43901.551600000006 4 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 8962018.1872 59 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 638860.0052 15 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 2418565.24157 48 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 9542174.31286 105 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 352545.9891 12 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 2880616.3866000003 37 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 3115404.77276 44 +P48607 Protein spaetzle 9.2 3 4 0 4302.4347 2 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 195611.4154 8 +P48610 Arginine kinase 1 76.69 46 489 0 139749496.6548 433 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 2264385.3511 33 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2065257.16761 38 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 532510.92217 8 +P49028 Protein mago nashi 11.56 2 7 2 106461.3508 5 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 484387.59849999996 7 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 36801.552 3 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 1155429.6737000002 8 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 5077.443 1 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 97994.4429 7 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 6188.5229 2 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 12406.895859999999 2 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 77490.46429999999 4 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 3470243.9112299997 29 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 469315.1174 12 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 15005.01276 3 +P51406 Bystin 1.83 1 1 1 897.9047 1 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 1212201.8157 25 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 114393.74515 13 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 1017023.1908 22 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 630948.124 9 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 9656.309000000001 2 +P53034 Replication factor C subunit 2 20.24 6 6 6 105394.37 6 +P53501 Actin-57B 70.21 33 663 5 81867432.10856 92 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 24350.355 2 +P53777 Muscle LIM protein 1 56.52 6 24 0 1363310.3206 18 +P53997 Protein SET 15.24 4 9 4 517803.706 9 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 153146.7926 5 +P54191 General odorant-binding protein 69a 6.08 1 1 1 25465.227 1 +P54192 General odorant-binding protein 19d 71.33 13 119 13 32656847.26111 115 +P54193 General odorant-binding protein 83a 42.86 7 17 0 2424314.2800000003 13 +P54195 General odorant-binding protein 28a 40.56 4 17 4 619787.5596 14 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 74975.55780000001 4 +P54352 Ethanolamine kinase 13.9 6 7 4 290064.35599999997 6 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 1131795.76055 28 +P54357 Myosin-2 essential light chain 89.12 10 58 1 4115755.4565000003 49 +P54359 Septin-2 13.13 7 12 1 721001.6758999999 12 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 52220.895000000004 2 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 10854989.7836 92 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 89460.1747 4 +P54399 Protein disulfide-isomerase 76.81 40 203 0 23402573.79011 180 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 31720987.67547 164 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 582858.942 7 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 879017.585 14 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 3118511.4664 14 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 8128523.62347 64 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 3155922.79 27 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 4336919.5826 45 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 116308.4912 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 282463.096 4 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 2225913.7344 22 +P61849 Dromyosuppressin 29.0 3 3 0 76858.227 3 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 19273137.41666 109 +P61855 Adipokinetic hormone 37.97 2 4 2 47469.5172 4 +P61857 Tubulin beta-2 chain 36.55 15 179 2 4024656.8 3 +P62152 Calmodulin 99.33 19 482 0 98122282.34538 419 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 2722868.8945 24 +P81829 Leucokinin 6.25 1 2 1 23396.223 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 13634061.88954 86 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 6440817.86912 37 +P82295 Prominin-like protein 0.99 1 1 0 1237938.6 1 +P82804 Partner of Y14 and mago 24.15 5 6 4 16967.27247 5 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 1146829.9070000001 11 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 399789.07655 12 +P83967 Actin, indirect flight muscle 69.15 30 612 3 280223.9735 11 +P84029 Cytochrome c-2 76.85 13 103 0 32044638.12227 101 +P84040 Histone H4 60.19 11 107 0 16156559.975300001 94 +P84051 Histone H2A 42.74 7 32 0 3280242.8655 14 +P84345 ATP synthase protein 8 18.87 1 11 1 466825.8714 11 +P91664 Protein max 4.35 1 1 0 22700.922 1 +P91891 Protein Mo25 34.22 13 25 0 1945319.3643 22 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 526255.84063 24 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 2141631.03625 56 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 12866145.20076 109 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 7164352.4569 45 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 3872427.3874 40 +P92029 DnaJ-like protein 60 5.53 1 1 0 7410.76 1 +P92177 14-3-3 protein epsilon 79.01 28 274 26 36828435.183860004 205 +P92204 Negative elongation factor E 14.64 4 4 4 135584.412 4 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 45721.9075 4 +P98081 Protein disabled 6.16 12 15 0 74187.12194 12 +Q00174 Laminin subunit alpha 22.68 79 156 79 9847308.89549 144 +Q01603 Peroxidase 10.14 6 8 0 200238.4507 7 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 37656061.45822 208 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 157650.0117 7 +Q01819 Connectin 2.64 2 2 0 69518.53 1 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 17847.753 2 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 3840432.4315500003 31 +Q02910 Calphotin 6.83 4 15 4 262815.3809 12 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 150304.1806 7 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 45438.3628 5 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 2720954.2325 27 +Q03427 Lamin-C 66.67 46 141 3 8057158.0236 125 +Q04047 Protein no-on-transient A 16.14 9 10 0 140499.05492999998 9 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 336845.6083 15 +Q04691 Fat-body protein 1 29.93 28 50 0 194367.99284 38 +Q05783 High mobility group protein D 21.43 2 7 0 119804.5791 4 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 100215890.20661 509 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 32653.565349999997 3 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 18937647.3299 104 +Q06943 High mobility group protein Z 21.62 3 10 0 83738.0974 10 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 47022.1598 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 1573845.7417000001 22 +Q07171 Gelsolin 22.06 16 44 0 3300619.78064 42 +Q07327 Protein ROP 24.29 15 40 0 1952274.47784 38 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 1382784.9056 25 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 2634.0938 2 +Q08473 RNA-binding protein squid 43.31 10 27 0 2640333.4594 24 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 158439.99 8 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 20972.0744 3 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 650374.23603 15 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 154146.7227 7 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1909116.8145 14 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 15944.0557 5 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 6758.886 1 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 247642.375 11 +Q11002 Calpain-A 7.37 6 7 0 155396.3394 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 3498287.07954 32 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 11583221.93303 83 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 7076777.0856 81 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 11815558.43964 105 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 6685617.4665 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 15617483.578 89 +Q24050 Elongator complex protein 5 27.48 6 10 6 295837.44190000003 9 +Q24114 Division abnormally delayed protein 20.93 10 15 0 437100.63327 13 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 946245.1553 21 +Q24134 Negative elongation factor D 4.84 2 2 0 36770.7699 2 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 13130.2196 4 +Q24185 Protein hook 28.28 21 32 21 815567.4377 32 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1540811.4659 33 +Q24207 Protein boule 36.4 6 12 0 331279.59270000004 11 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 475742.83864 18 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 22017.5155 6 +Q24211 Protein stoned-A 42.71 35 65 0 2545553.539 61 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 5731383.0774 28 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 243763.1071 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 121331.293 4 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 39812262.19258 167 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 953519.0864 26 +Q24292 Protein dachsous 0.54 2 2 0 33062.7485 2 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 201527.8403 2 +Q24298 DE-cadherin 21.57 29 50 29 1613247.766 46 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 50512.1103 5 +Q24318 Transcription factor Dp 16.18 7 8 0 71903.74704999999 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 681883.242 8 +Q24322 Semaphorin-1A 4.67 4 5 0 33498.02764 5 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 344961.174 4 +Q24372 Lachesin 27.58 9 17 9 803422.6975 16 +Q24388 Larval serum protein 2 12.27 8 11 0 158494.7817 8 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 8909504.10706 74 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 9243405.13666 58 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 64049937.9186 180 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 405674.88726 22 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 410654.44714 10 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 87896.4927 8 +Q24509 Syntaxin-5 4.93 2 3 0 25664.9754 3 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 483118.77337999997 15 +Q24524 Protein singed 10.35 5 5 0 25906.4483 4 +Q24537 High mobility group protein DSP1 22.9 8 15 0 815084.9061 14 +Q24547 Syntaxin-1A 43.64 15 53 0 4902975.2926 49 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 61035589.9493 254 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 123469.761 6 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 477340.4349 9 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 4800999.0482 31 +Q26377 Pro-corazonin 44.81 5 17 5 255593.23 15 +Q26416 Adult cuticle protein 1 20.0 1 3 1 295475.78 2 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 323653.08946 12 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 827909.17144 17 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 65687.7528 4 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 5884003.38316 50 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 1712715.0338 14 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 4261362.6784 49 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 762780.62045 10 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 330777.17110000004 11 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 724156.97248 19 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 840519.4886 15 +Q3KN41 Neurexin 1 3.37 5 5 0 29637.3612 5 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 4400.596039999999 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 112975.2011 4 +Q4V645 Trissin 7.41 1 1 1 29168.152 1 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 173223.93605 5 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 60783.226 2 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 611755.7548999999 17 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 21235.2755 4 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 13207.54514 4 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 134020.0094 6 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 278104.8614 6 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 280876.08103 6 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 1201529.9702 11 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 758916.6252 14 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 103273.7765 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 597032.3483 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 1180589.7486 27 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 34067.633 2 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 237689.04320000001 11 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 159060.06046 8 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 946926.59315 17 +Q7JXF7 Protein seele 39.15 6 16 6 510683.70065 15 +Q7JYV2 Synaptogyrin 8.3 1 2 1 4178.0006 2 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 52020.0199 5 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 105157.26587 4 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 218036.30635 14 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 210730.70573000002 9 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 280287.0678 12 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 161571.459 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 3907.1523 1 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 3136917.1693 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 60828.4833 3 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 478294.12375 11 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 522903.35503 21 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 47461.2943 4 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 1128968.7648 22 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 77165.06 5 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 19005460.730299998 72 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 177555.18264 8 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 3022325.415 27 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 2804064.2361500002 36 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 30691.841500000002 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 3611707.7288 65 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 328756.1678 15 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 570338.59067 13 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 30503.5495 8 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 64623.515 2 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 516743.4622 11 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 28037797.0008 75 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 8060.867 2 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 294431.799 9 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 621345.5503 16 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 123632.31999999999 4 +Q7KVY7 Syntaxin-4 14.11 4 6 1 58630.88545 6 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 55558.24465 6 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 6308934.81543 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 2387.8499 1 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 1799964.95483 28 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 565744.8166 19 +Q868Z9 Papilin 23.81 59 118 59 3907856.19689 107 +Q86B79 RING finger protein unkempt 6.18 3 3 0 64523.9588 3 +Q86B87 Modifier of mdg4 5.74 3 6 0 93986.43196 6 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 71988.32766 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 5346.7069 2 +Q86NP2 Negative elongation factor A 11.99 11 18 0 153713.63796 14 +Q86P48 AT-rich binding protein 5.15 1 2 1 2465.5552 1 +Q86S05 Protein lingerer 5.96 6 8 0 12198.79482 7 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 101563.783 5 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 1952549.9553 35 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 110687.28649 9 +Q8IN41 Protein Turandot X 16.2 2 4 2 38943.101 4 +Q8IN43 Protein Turandot C 48.84 5 12 5 398875.0496 12 +Q8IN44 Protein Turandot A 64.34 9 34 9 2050926.77114 30 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 413918.9472 10 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 640.80664 1 +Q8IPM8 Complexin 71.13 11 97 0 29938.8886 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 335187.581 17 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 179087.8598 6 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 38001.832299999995 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 148560.33899000002 9 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 446031.6436 9 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 434735.71499999997 6 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 2934002.62371 42 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 56882.09 4 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 17544.244 4 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 17201.532900000002 3 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 513380.20670000004 5 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 152435.8014 6 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 3827256.3428599997 44 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 958781.7358499999 19 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 26246.897 2 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 38535.886 7 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 18549.62403 4 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 314786.07553000003 10 +Q8MSS1 Protein lava lamp 22.63 60 78 0 697083.82428 72 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 68022.4765 3 +Q8MSV2 Protein alan shepard 16.78 8 21 8 853067.3204 18 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 25810.113 1 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 28410.3204 7 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1476966.2402 18 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 655053.4151 30 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1717411.1858 18 +Q8SY33 Protein Gawky 14.09 15 25 15 235571.97246 22 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 6220954.0797 53 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 864662.59875 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 107741.28700000001 5 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 8993.373 2 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 16648.4635 2 +Q8SZ63 Golgin-84 13.57 7 7 7 21560.9136 5 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 597761.0462 14 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 1758788.0371 41 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 2092977.8945 56 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 5124.5815 1 +Q8T390 Endophilin-A 62.33 23 114 0 7321913.00768 99 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 216606.52810000003 7 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 1903913.9873 19 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 649151.8513 19 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 399443.66813 14 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 8805.5386 3 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 1543879.5424 23 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 45671.77226 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 15829262.35062 118 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 17471184.33855 91 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 27586413.93872 140 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 5601.312 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 4201858.06882 35 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 3624701.6303 24 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 20692503.31113 106 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 5065119.4293 56 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 87847.8875 6 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1379699.7457400002 38 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 3516.4638 3 +Q94547 Regulator of gene activity 10.77 6 9 0 209719.8746 8 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 90701.7804 5 +Q94901 RNA-binding protein lark 44.03 16 37 16 843561.38246 33 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 34134.1188 3 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 290978.4398 8 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 151227808.18487 329 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 2491.5417 1 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 95191.5243 4 +Q95029 Cathepsin L1 36.39 19 81 3 7287633.43802 74 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 2272841.5752 26 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 44863.018 3 +Q95RA9 GILT-like protein 1 40.0 8 30 8 2054094.5494 27 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 25774.9512 4 +Q95RI5 Failed axon connections 63.16 27 130 0 12910370.04114 120 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 43765.029 3 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 221579.01200000002 5 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 11072.7021 2 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 397953.6316 18 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 102832.1436 3 +Q95T12 Calcium channel flower 12.89 2 3 2 197397.316 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 10238.9171 2 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 27418.77208 4 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 59669.3376 7 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 35051.172999999995 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 377293.5432 20 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 49986.6281 7 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 260805.9423 7 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 28940.5688 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 23080.6619 3 +Q967D7 Protein turtle 4.51 7 9 0 128101.12275 8 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 248695.85895999998 16 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 312722.64359999995 7 +Q9GQQ0 Protein spinster 1.98 1 3 1 35439.684 2 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 10943737.8936 50 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 26081.5101 4 +Q9I7D3 Caprin homolog 15.09 10 12 0 60094.103800000004 8 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 175042.20870000002 7 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 93615.89749999999 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 216571.47439999998 5 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 298104.68866 10 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1867289.736 29 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 44249.2589 5 +Q9I7U4 Titin 3.75 33 36 0 497045.34423 29 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 74817.3606 3 +Q9NB04 Patj homolog 33.87 24 53 0 1179788.69709 47 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 16599.7394 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 107964.986 2 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 14030.9844 2 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 233621.5931 7 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 428121.77749999997 5 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 54999.0486 8 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 37919.678 2 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 1730.4858 1 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 4334201.9658 61 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 57939.11109 6 +Q9TVM2 Exportin-1 0.85 1 1 0 4005.5928 1 +Q9TVP3 J domain-containing protein 85.64 19 103 19 17157241.6166 96 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 1734055.93174 17 +Q9U4G1 Protein borderless 18.5 13 29 13 1422332.3075 26 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 362286.9224 9 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 588510.9683000001 16 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 1554735.95975 20 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 4050.9082 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 103140.76650000001 5 +Q9U915 Adenylate kinase 2 75.83 22 60 22 3961127.1455 53 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 311908.526 7 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 668553.24333 13 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 453342.51727 18 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 623285.9635 15 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 8116.9707 1 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 2993.99 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 120187.34700000001 5 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 2305324.1251 36 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 47974.3003 2 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 4304183.1345 26 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 12025.43157 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 526073.086 8 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 1192155.4723999999 17 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 535473.4781000001 14 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 4300776.21957 48 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 279435.372 8 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 536259.7848 21 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 112126.671 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 801116.5359 25 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 29156291.0757 117 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 226075.4559 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 33592.7187 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 40775.927 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 406781.61315 13 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 20790.834000000003 3 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 7277482.48257 56 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 269726.3746 7 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 645448.4459 10 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1130494.0384 9 +Q9V3Z2 Serine protease 7 15.86 5 6 4 165612.5265 6 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 154587.05 8 +Q9V427 Innexin inx2 18.26 7 11 0 745408.64234 10 +Q9V429 Thioredoxin-2 65.09 6 47 6 13600594.181739999 47 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 804545.958 13 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 1179045.00956 23 +Q9V447 Krueppel homolog 2 17.03 4 4 0 74552.4694 4 +Q9V496 Apolipophorins 38.44 126 319 0 38290246.81315 288 +Q9V498 Calsyntenin-1 2.97 3 3 0 17331.4341 3 +Q9V4A7 Plexin-B 0.54 1 1 0 1794.9109 1 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 23963.255 2 +Q9V4C8 Host cell factor 7.0 10 13 10 247474.4072 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 41568.0596 4 +Q9V4N3 Cytochrome b5 44.03 5 20 5 1243038.9235 15 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 232595.24980000002 9 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 242603.8465 8 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 43793.86936 6 +Q9V521 Phenoloxidase 2 28.36 22 33 21 462049.42245 29 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 526027.7404 16 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 31318.5059 6 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 792981.2196 20 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 2780493.7525 27 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 3435099.56245 31 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 12762.236 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 26079.8046 3 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 392777.16176 14 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 9093.783 1 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 154553.2481 8 +Q9V6G5 Tafazzin 8.2 4 4 2 36445.027200000004 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 9090690.19736 76 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 70225.0134 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 66218.213 2 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 135068.9456 7 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 37952.219300000004 3 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 5178445.05155 65 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 18511645.43759 114 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 1284628.039 23 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 107443.9482 7 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 163493.578 3 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 3796.573 1 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 1115843.3899700001 40 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 8523802.42941 146 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 992637.8064 17 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 679587.1273 12 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 91897.0892 4 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 173803.66499999998 5 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 179200.1643 8 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 70868.0193 4 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 20503.2962 2 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 14172.4806 3 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1616807.7295 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 121948.01920000001 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 1033159.44603 16 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 29564.42963 5 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 40286.324 4 +Q9VA37 Protein dj-1beta 83.96 12 76 12 9407530.947390001 67 +Q9VA70 Neutral ceramidase 3.98 3 3 0 48891.6998 3 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 12650527.49369 51 +Q9VAF5 Cadherin-99C 6.33 10 10 10 87856.27846 10 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 3865061.87957 18 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 1316609.1713999999 18 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 8897619.83009 61 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 56636.69062 4 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 3055145.3561 31 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 339753.2241 6 +Q9VAW5 La-related protein 1 5.5 7 8 0 28881.262600000002 4 +Q9VAY3 Mitoferrin 5.8 2 2 2 11331.616 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 79709.62193000001 4 +Q9VB68 Serine protease grass 9.28 4 4 4 94737.79533999998 4 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 355150.02650000004 8 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 36296.087 3 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 39209.3088 5 +Q9VBV3 Protein takeout 33.33 6 7 0 356859.0521 7 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 260274.9107 12 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 13122.693 1 +Q9VC57 Atlastin 3.14 2 2 0 97888.305 2 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 42362.587 4 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 3019.9475 1 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1445672.968 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 389168.8555 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 63328.517 3 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 36761.5227 2 +Q9VCE8 Actin maturation protease 16.48 2 4 1 9441.5494 2 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 447194.7574 9 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 447421.91215 19 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 69696.1918 3 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 360038.814 11 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 683531.2733 14 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 53394.6082 2 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 28013.4144 4 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 38498.8035 3 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 323707.03231 11 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1139332.6215000001 21 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 42103.4796 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 3326.4343 1 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 99066.9725 5 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 282070.96 11 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 27688.8992 3 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 153370.8554 2 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 13436.061 1 +Q9VDL1 Esterase CG5412 18.28 5 11 5 99933.07456000001 11 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 49513.4954 6 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 700313.7655000001 9 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 37900.232 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 308396.99199999997 10 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 19610.4698 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 13847099.34653 56 +Q9VER6 Modular serine protease 10.51 7 8 7 118422.76550000001 7 +Q9VET0 Neuropeptide F 29.41 3 4 0 29193.497299999995 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 3939343.9291 55 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 150118.72781 9 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 38630.3756 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 149052.6843 9 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 12246965.79604 77 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 20729.0682 2 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 1185824.3603 18 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 78913.73199999999 3 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 413240.0267 4 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 2634663.5975 38 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 123856.8959 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 48789.76 1 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 14401.19712 4 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 14478.59489 4 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 163386.77924 5 +Q9VFM9 Twinfilin 30.03 10 13 10 336815.3184 11 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 83508.3925 6 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 131201.39543 7 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 13567.1233 4 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 231494.31100000002 13 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 12305.49856 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 3160.54825 2 +Q9VG55 Protein hugin 14.66 2 3 2 67088.6492 3 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 303067.173 12 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 7418.488 1 +Q9VG76 Myc-binding protein 15.47 3 3 3 82438.426 2 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 28302.175199999998 3 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 1454772.49207 17 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 86691.85800000001 5 +Q9VGG5 Cadherin-87A 8.35 12 13 12 210319.20257 13 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 51531.7399 2 +Q9VGP4 Importin-9 3.63 3 3 3 38759.471999999994 3 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 531383.6653999999 14 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 225695.31498 7 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 6760.0268 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 7482623.02939 38 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 445498.952 9 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 18943.910499999998 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 19031.6569 3 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 617842.0691 16 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 56740.962 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 768924.10414 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 475708.64300000004 4 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 4889441.0527 22 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 8719.6951 2 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 31359.169 4 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 294723.6867 9 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 117117.99 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 598239.8626 11 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 93973.98912 10 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 624512.1414999999 10 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 71880.364 4 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 445742.66965000005 15 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 2264.6582 1 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 3236296.07205 57 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 6168864.78715 43 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 65651.179 3 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 111597.7165 7 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 161388.2696 9 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 57399.368 5 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 156979.431 5 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 227682.6348 17 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 17615.61134 4 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 1610731.0705000001 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 1478552.0784 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 51921.868 5 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 69386.4029 4 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 662129.5769 11 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 18378.1541 4 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 375113.12045 15 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 5990.6255 1 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 4245.2149 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1146698.4999 16 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 470208.1542 9 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 448553.7564 9 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 1339756.2277 9 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 153327.55 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 11898.8913 2 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 29215.819499999998 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 99986.897 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 11461.498 2 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 473424.136 15 +Q9VJL6 Glia maturation factor 23.91 3 4 3 69782.026 3 +Q9VJQ5 Protein Dr1 26.78 4 4 4 54509.3436 3 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 1525883.6179 14 +Q9VJY9 Protein Loquacious 8.17 4 6 0 218810.0909 6 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 8696.9554 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 1142760.711 17 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 7659.1826 2 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 45276.2436 3 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 219969.341 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 30263.13697 8 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 18818.988 1 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 120928.356 7 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 4397.7476 1 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 235675.469 5 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 27749.9389 4 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 4458283.61834 69 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 3290738.17203 71 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 244472.688 5 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 98754.42897000001 8 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 221807.52564 14 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 211347.6083 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 281214.24557 7 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 1085459.5037 12 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 22120.1171 4 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 1591683.1309 23 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 493228.219 7 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 334742.6519 7 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 17637.756 1 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 29042.033199999998 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 41219.7666 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 11511.8183 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 127007.9944 6 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 62434.4194 9 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 75437.918 2 +Q9VMD6 Protein real-time 1.52 1 1 0 2005.9521 1 +Q9VMD9 Tiggrin 19.93 46 58 0 1269770.22321 56 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 262079.1603 9 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 653050.4226 17 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 22232.3701 3 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 101045.275 2 +Q9VMR8 Protein Turandot M 41.98 4 7 0 500530.809 7 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 109445.1997 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 78253.935 2 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 171214.9972 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 1505359.3995 21 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 27626.637000000002 2 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 165859.1983 9 +Q9VMY9 Guanine deaminase 8.04 4 4 4 48339.595 3 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 27527.683 2 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 328456.6854 7 +Q9VN14 Contactin 19.93 25 44 25 1431791.7175 39 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 48955.404 2 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 19632.7882 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 491956.4956 7 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 2007178.2361599999 25 +Q9VN93 Cathepsin F 34.85 22 48 19 2638969.44764 42 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 620080.8668 11 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 77233.15400000001 4 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 181025.8291 8 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 672531.21277 11 +Q9VNE2 Protein krasavietz 19.91 11 23 11 1016762.0064000001 20 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 1337810.716 12 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 9505.937 1 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 11631.303 1 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 142736.3058 12 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 56052.5595 6 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 103427.28429999998 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 210186.74490000002 7 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 98634.78874 5 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 285799.6614 11 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 9044421.9077 48 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 1113051.9517 16 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 236102.49896 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 103175.30489999999 8 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 257466.09625 5 +Q9VQC4 Glycerate kinase 15.61 8 9 0 93608.3537 9 +Q9VQF7 Bacchus 40.79 6 15 6 928811.5591 14 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 71119.027 3 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 1590640.7332 20 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 390708.57399999996 11 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 85747.6911 7 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 349797.153 11 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 916.6593 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 53722.366 5 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 13192.05385 3 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 108741.85399999999 4 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 167523.7568 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 15907.87556 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 53378.5257 4 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 25390.2132 4 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 78207.0024 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 456217.982 5 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 373604.425 7 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 58375.857 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 9875902.28335 89 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 265905.31799999997 10 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 23993.3921 3 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 100478.5185 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 16365.126 2 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 14803468.12485 60 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 76039.0289 3 +Q9VSS1 Protein Pixie 1.15 1 1 1 17028.533 1 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 172447.708 9 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 20479.876 2 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 2473198.69655 52 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 288123.2027 5 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 11600.725 1 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 22086.615 2 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 35909.0889 3 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 11811.472 2 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1016392.5349999999 18 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 182805.46 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 261218.512 8 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 78705.45999999999 3 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 204847.275 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 123460.96100000001 6 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 93889.1822 5 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 4429470.3686 44 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 387222.189 11 +Q9VTZ5 Transferrin 2 24.42 20 23 20 619744.7873 20 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 241573.26080000002 11 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 30855.807 1 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 20427701.18688 109 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 2312307.7582 35 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 53179.28525 5 +Q9VU84 Drebrin-like protein 33.33 15 28 15 924141.8883 26 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 260432.9071 7 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 130141.49930000001 5 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 3923181.3432299998 46 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 284631.31774 10 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 2822109.81736 39 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 489.54538 1 +Q9VV36 Retinin 29.84 5 103 5 37016132.12556 83 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 2869394.91103 43 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 1915019.1722 27 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 66305.6734 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 181910.8874 6 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 897920.5505 25 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 85199.1414 7 +Q9VVE2 Protein rogdi 33.96 9 14 9 683996.60415 14 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 698078.11916 13 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 60029.5129 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 1617566.4819999998 29 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 46231.223099999996 7 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 14007.854 3 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 1241916.27725 35 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 56791.1026 4 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 61641.8361 4 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 290152.954 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 140612.0344 4 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 49560.41253 7 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 1775985.2857000001 20 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 6335.157499999999 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 257645.44700000001 10 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 728595.75425 20 +Q9VWA1 Clathrin light chain 43.84 14 43 0 3791152.544 37 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 47378.128 2 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 53690.90337000001 4 +Q9VWE0 Cytokine receptor 3.28 4 4 4 8513.5435 3 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 3668.3914 1 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 705609.6717000001 11 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 43827930.11254 199 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 5429835.09315 27 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 251557.4728 14 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 56825.61196 6 +Q9VWU1 Serine protease persephone 6.85 2 2 2 20284.871 2 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 578316.7601999999 2 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 3364.0986 1 +Q9VWX8 Frequenin-2 54.01 10 42 4 3135055.7279000003 40 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 14865.5957 2 +Q9VX10 Sulfiredoxin 11.73 2 3 0 57030.014 3 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 349780.95807 13 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 2704137.4996 27 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 14937.905 1 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 331497.4045 10 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 30382.321649999998 4 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 22935.22855 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 3731777.6483 53 +Q9VXG4 Annexin B11 22.31 13 30 13 2060226.24509 28 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 833279.9384999999 17 +Q9VXK0 Protein NipSnap 15.38 4 6 0 426537.3616 6 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 408954.16615 14 +Q9VXN2 Protein stunted 55.74 4 15 4 643183.397 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 69989.03139999999 5 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 946418.83396 19 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 451472.97 7 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 14031.131000000001 3 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 3521361.2778499997 32 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 64898.8231 5 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 5200.7172 2 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 987436.11468 11 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 106339.38399999999 3 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 12849.222000000002 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 803125.7938 12 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 1835.9056 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 41075.6826 2 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 4898.609 1 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 681143.6416 10 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 16988.037 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 46490.8514 4 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 158255.0234 4 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 38533.675 2 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 3841190.96726 57 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 56061.9967 4 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 79403.1 2 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 958922.33315 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 380390.791 10 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 4676732.5665 33 +Q9VZ35 Protein Vago 20.62 2 2 2 10356.3444 2 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 327042.051 6 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 642782.8458 24 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 1493208.678 23 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 149051.7855 11 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 178819.988 3 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 33922.193 3 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 16906.775 1 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 48470.8929 6 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 16514.6913 2 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 10622.584 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 90671.85800000001 2 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 456656.02697 9 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 2602351.9003 32 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 3888078.83317 67 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 917329.68475 18 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 66154.04 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 4095356.5456 57 +Q9W074 Protein HBS1 4.63 3 3 3 32917.5565 3 +Q9W0A0 Protein draper 6.21 5 7 0 33880.05186 6 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 4855402.19079 37 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 5567.2637 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 58921.114799999996 6 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 203008.65170000002 13 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 1029215.77456 17 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 1040843.6677999999 20 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 308811.1701 11 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 30583.028599999998 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 4400.482 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 14994086.7564 41 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 317462.2707 7 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 14926.7228 5 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 62875462.38194 90 +Q9W1G0 Probable transaldolase 56.5 17 62 17 8388699.5532 59 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 7006.5854 1 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 1016397.3640000002 6 +Q9W1K5 Sestrin homolog 1.41 1 1 0 26826.143 1 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 173606.73500000002 3 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 430361.45856 7 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 65190.862270000005 7 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 58820.2265 5 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 59179.31714 7 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 376924.10240000003 6 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 5483206.0265 48 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 318430.882 10 +Q9W266 Protein windpipe 13.44 10 18 10 694110.4299 18 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 2025087.7297999999 23 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 888955.95204 13 +Q9W2E7 Protein Rae1 17.63 6 8 6 355549.8369 8 +Q9W2M2 Trehalase 40.94 22 40 0 1383024.1399 37 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 351690.666 6 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 58795.8883 2 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 34645.0845 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 175172.14125000002 7 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 5651502.74849 73 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 824803.9368 14 +Q9W358 Chaperone Ric-8 8.55 6 6 0 66315.0342 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 10110235.673799999 95 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 273108.8443 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 382173.9935 6 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 195486.9169 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 107678.92629999999 4 +Q9W3E2 Protein PIP82 26.03 29 40 29 501278.69496 31 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 262778.846 11 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 55559.936100000006 3 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 116265.9278 9 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 271426.024 4 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 190315.99970000001 8 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 6012.55314 3 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 10957.5798 2 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 63532388.56609 182 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 222575.4794 5 +Q9W436 Neprilysin-1 7.54 6 7 6 49946.6266 6 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 106364.242 8 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 654.6234 1 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 197760.5533 4 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 1658302.1405 18 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 454668.2048 24 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 467774.3132 11 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 1807932.1373 23 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 118410.1825 6 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 3236266.22558 145 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 87327.635 4 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 1492516.79095 25 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 305758.2275 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 30306.755999999998 3 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 933167.3395 15 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 6802.457 1 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 1938562.95019 66 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 2905.466 1 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 6643.4917 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 1331148.8567 10 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 1757136.7583 29 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 108347.375 5 +Q9XZ14 Protein gone early 8.19 5 6 0 41034.0768 5 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 162876.57962 13 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 1179204.3586 16 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 2695261.32592 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 4120732.4708 35 +Q9XZL8 Protein sarah 31.16 7 13 0 326869.71877000004 11 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 15000.166299999999 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 46184.840899999996 2 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 30650.9302 6 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 951127.7076 20 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 465443.64660000004 4 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 2233340.2906 15 +X2JAU8 Protein nervous wreck 40.0 41 115 41 8498974.428509999 100 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 24393.219 1 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 285434.19214 15 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 26005.314 1 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 491683.86460000003 16 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 132419.133 5 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 248410.8292 14 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 8644.4296 2 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 8271568.96073 117 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 20438.6747 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 2908.1672 1 +A0A0B4JD47 Missing-in-metastasis, isoform E 2.46 1 1 0 577.9355 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 372251.40284999995 29 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 214319.34316 14 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 41707.4874 5 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 826115.1671 21 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 19010763.22635 167 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 71865.06577 7 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 102978.968 7 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 835893.4476 37 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 532431.39793 14 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 91047.49859999999 4 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 252321.53655 12 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 93139.9296 6 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 237227.212 8 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 25354.732659999998 3 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 314307.11500000005 17 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 4256.6875 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 10449762.32353 125 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 629737.10664 15 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 111021.9273 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 34925.2205 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 39520.3952 6 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 1758.4419 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 6213715.89824 42 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 57424.500799999994 6 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 5202.9362 2 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 2843350.4801 66 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 95723.349 5 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 862684.2400999999 27 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 134713.434 4 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 157857.19913999998 9 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 69253.0365 3 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 700007.4582 15 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 984375.3283 19 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 1880495.8463 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 70580.7439 6 +A0A0B4KEJ7 Coronin 14.21 7 8 0 144931.80880000003 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 24174.2271 3 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 20273.3855 3 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 81878.4234 4 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 477128.66524999996 27 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 3109.8818 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 36153.794 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 36318.968 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 496412.16434 21 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 115172.2535 8 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 37761.1564 2 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2392612.5485 43 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 64092.337 4 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 10536419.0234 94 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 235626.2202 14 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 929337.5785000001 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 1011058.0475000001 16 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 409657.2027 6 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 5437.7177 2 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 293786.17665 10 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 81565.7427 8 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 24519.715 2 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 959.86304 1 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 11177.721300000001 2 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 44046.504 2 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 420645.3516 8 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 51293.812 3 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 83222.1827 6 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 8373.775 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 111933.8715 7 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 35139.74 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 459117.4465 18 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 1692010.95976 24 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 3230390.539 42 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 4054.9442000000004 2 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 13717.4107 2 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 11134.979500000001 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 35719.293 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 2291270.17648 39 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 31831.353499999997 3 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 11234.177599999999 3 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 74566.77564 5 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 81066.65060000001 6 +A0A0B4KH34 Annexin 57.41 23 123 4 16935138.9231 115 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 7558.825000000001 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 12121.00526 2 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 785474.91827 15 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 416446.2832 25 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 85899.628 4 +A0A0B4KHF0 Ferritin 77.97 21 133 1 35832300.98693 105 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 63578160.96459 275 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 195407.33335 10 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 5054.8857 1 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 55783.4 5 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 610307.4866 16 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 876756.0022999999 28 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 349885.358 3 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 145871.1856 9 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 42933.848 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 268077.41650000005 6 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 4370760.8368 41 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 2586598.59621 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 72882.7126 5 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 12312.433 1 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 43379.7154 7 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 4120.35308 3 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 21326.6129 4 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 1598823.9778800001 27 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 950952.6454 31 +A0A0B4LF95 glutaminase 18.84 10 11 0 369588.7957 10 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 1761004.01006 21 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 702016.2886 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 76757.5558 4 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 29164.38 3 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 61582.660299999996 4 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 21225.903 3 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 35795.701 3 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 403827.10599999997 9 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 39552.702840000005 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 374116.92655000003 14 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 40273.759 2 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 209980.7508 11 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 3040337.2199 47 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 588953.3923 10 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 57499.028999999995 3 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 770699.8698999999 22 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 56602.8783 8 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 9224513.8357 59 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 75812.1343 3 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 99381.30990000001 9 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 2107588.6621 38 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 26474.7782 5 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 199920.8861 7 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 15534.766 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 11248.7914 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 102188.81694 9 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 29467.1 1 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 15286.109 1 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 21008.4224 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 6701.9263 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 275429.4762 18 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 27169.124499999998 2 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 38704.092 3 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 294847.37536 29 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 153541.4297 9 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 79372.0431 6 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 588643.8321 12 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 6636.11117 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 848497.3913 15 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 103233.0194 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 34874469.27651 158 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 297956.9113 9 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 49341.7759 3 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 4715.7397 1 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 5255353.38517 17 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 17180545.6065 130 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 132269.0041 17 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 135534.5568 9 +A0A4P1SAA7 IP07559p 11.17 2 3 1 41780.419 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 811.56372 2 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 1340177.10235 63 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 393230.4316 16 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 3242.3372 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 16021.665 1 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 14868.830199999999 2 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 21937680.21887 291 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 5872.3193 1 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 4615390.1598 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 172246.1497 8 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 73584.45163 6 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 28953.627 2 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 38696.2594 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 12151.9912 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 156998.46687 8 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 17238023.77071 307 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1331376.17791 40 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 2119882.6578 35 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 1347709.8079 23 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 111835.07715 10 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 211350.3623 11 +A1Z6F6 FI18602p1 16.42 12 15 0 476263.82846 12 +A1Z6G9 FI18173p1 7.0 2 2 2 19464.2239 2 +A1Z6H4 RE52822p 16.12 8 11 0 309534.6575 10 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 103581.85829999999 8 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 12468.2994 2 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 326451.53214 9 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 812605.9875 32 +A1Z6R7 FI21445p1 51.79 12 20 12 501298.13872 20 +A1Z6V5 FI01422p 44.02 15 36 15 1347181.9742 30 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 480447.5279 10 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 271818.9657 11 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 58617.882 3 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 20351.699800000002 3 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 5571.5881 2 +A1Z7B8 GEO08456p1 21.52 3 10 3 344533.26154 10 +A1Z7G2 MIP13653p 13.39 2 8 2 3093318.5190000003 8 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 347494.2691 12 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 25720.9133 4 +A1Z7K6 FI20236p1 10.06 4 4 4 40902.5144 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 348020.1868 10 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 151041.6613 4 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 204606.3683 8 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 1885259.39915 41 +A1Z7V9 FI20020p1 6.93 4 6 1 85715.136 5 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 19289.8573 3 +A1Z7X8 FI02944p 18.53 7 7 7 173546.9063 6 +A1Z803 FI02892p 32.35 12 17 12 664338.38 17 +A1Z843 Nodal modulator 3 13.26 15 17 15 470730.8482 16 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 2039795.27853 36 +A1Z871 CAP, isoform B 14.53 25 34 0 396909.984 6 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 6589002.0115 50 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 558671.6963 7 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 286066.5781 4 +A1Z8G7 FI09243p 16.53 2 4 2 4396.826 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 24635589.6182 47 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 227656.23758 16 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 34080.8008 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 31161.27408 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 2170782.3533 19 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 422469.355 15 +A1Z933 GEO02273p1 25.58 2 4 2 215923.985 4 +A1Z934 SD19268p 39.46 11 28 11 1335885.4766 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 85207.978 4 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 266380.0146 20 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 13458.2448 4 +A1Z9B5 IP16508p 15.06 3 3 3 56337.3191 3 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 6617088.38813 49 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 1634865.1289 22 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 328616.127 42 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 497334.4597 9 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 60849.968799999995 8 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 759600.3378 7 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 7594.9 2 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 20091.449999999997 2 +A1ZA23 FI18007p1 29.23 9 23 9 578631.1609 21 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 558.96576 1 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 363020.7165 9 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 156453.8414 6 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 61738.113 4 +A1ZAH3 FI16515p1 4.82 2 2 0 810.77313 1 +A1ZAK3 Protein DEK 4.05 3 4 0 30207.0963 3 +A1ZAL1 lysozyme 30.43 5 7 5 231374.753 7 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 469.83432 1 +A1ZAU4 RH39096p 50.48 18 44 0 4240548.1596 42 +A1ZB23 IP19117p 10.88 2 2 2 28178.1904 2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 6873.407 1 +A1ZB68 FI01423p 47.27 11 25 11 1130915.46026 24 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 6187715.52282 27 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 309415.913 5 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 1896089.8222999999 22 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 108379.64300000001 2 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 17269.1679 4 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 4128366.7506999997 38 +A1ZBA5 FI07234p 4.64 2 2 2 89739.133 2 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 68560.74799999999 6 +A1ZBD8 Mucin-5AC 6.1 7 9 7 66554.30584 7 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 6259.067800000001 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 2800401.0679 47 +A1ZBK7 Crammer 27.85 2 11 2 344679.96869999997 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 88021.6776 3 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 669400.6975 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 633915.9856 14 +A1ZBU5 GNBP-like 3 41.45 4 4 4 84580.013 4 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 44851.3654 4 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 3899650.85257 51 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 10642.0044 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 1029441.09556 44 +A1ZBX6 lysozyme 14.53 3 4 3 37524.2316 4 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 1438.9677 2 +A2VEG3 IP16294p 1.06 1 1 0 2422.8835 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 4171.8965 1 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 338673.123 5 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 1133598.8258 29 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 59409.757 3 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 1314989.3106 19 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 5979246.55436 72 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 11105582.10706 99 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 9615.1832 2 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 8258608.40944 37 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 432748.9728 11 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 202090.40879999998 10 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 2297842.7828 14 +A8DYD1 Combgap, isoform L 11.11 9 11 0 116994.8701 11 +A8DYI6 Prohibitin 69.53 23 83 3 9354899.5658 75 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 686186.2424999999 27 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 136694.32843 9 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 1906.2137 1 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 61649.770599999996 5 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 10618.9107 3 +A8DZ06 Stolid, isoform J 11.43 13 22 0 520041.5929 17 +A8DZ14 FI17828p1 24.09 13 28 7 2028244.6402 25 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 48652.899 4 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 24801.739999999998 2 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 772254.83637 39 +A8E6W0 IP19808p 28.28 5 8 5 99895.2375 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 177835.787 3 +A8JNJ6 Karst, isoform E 2.12 9 9 0 38756.54865 8 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 10182.0823 3 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 57006.604 3 +A8JNP2 arginine kinase 73.87 45 492 2 7242572.702 21 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 117295.48076 14 +A8JNS4 Starvin, isoform E 10.08 5 6 0 54839.3481 5 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 34171.487 4 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 161937.9725 7 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 73410.5268 6 +A8JQT5 Moesin/ezrin/radixin homolog 1 0.7 2 2 2 464.9521 1 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 14231.252 1 +A8JQW3 Pinin, isoform B 17.26 5 5 0 38635.779500000004 5 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 79996.424 2 +A8JR01 Kramer, isoform I 1.39 5 5 0 18878.38403 4 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 169300.777 3 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 256994.76170000003 8 +A8JR58 Hadley, isoform B 11.24 3 3 2 20720.97968 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 10625363.78827 81 +A8JRH3 FI20012p1 71.29 30 91 1 5771080.42919 83 +A8JTM7 Megalin, isoform A 4.74 23 27 23 367803.4509 25 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 89951.1115 7 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 14948.734 3 +A8JUZ6 MIP03678p 13.29 4 5 0 275145.13800000004 5 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 3861.3633 1 +A8JV09 Coronin 0.64 1 1 0 9115.937 1 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1230768.48939 37 +A8WH76 GEO10024p1 51.85 5 19 5 822874.2673 13 +A8Y4V5 FI20903p1 8.21 2 2 2 18841.3355 2 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 3358.6794 1 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 5323759.96977 20 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 58548.198000000004 3 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 15114.753 1 +B7YZH1 FI20143p1 5.74 3 3 0 22368.82264 3 +B7YZN0 Syndecan 13.56 7 9 0 178303.739 7 +B7YZN4 GH02741p3 38.46 3 3 3 113685.32 3 +B7YZN8 GH02741p1 10.53 1 1 1 25912.357 1 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 51328.27508 8 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 10753631.29491 83 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 9781.5193 2 +B7YZV2 Phosphodiesterase 10.49 9 10 0 170405.01 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 843515.23183 31 +B7Z001 Fatty acid synthase 18.78 43 71 0 2977028.8066 67 +B7Z002 Kismet, isoform C 1.2 4 4 1 7200.2505 1 +B7Z005 Drongo, isoform I 13.62 6 7 0 27314.1567 5 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 15912.0458 3 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 49770.077600000004 6 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 37020.7768 3 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 111784.8872 7 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 30757.05316 4 +B7Z0C9 GH15104p1 23.16 3 5 3 135700.075 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 32504260.5033 129 +B7Z0M0 FI17308p1 21.31 2 2 1 4558.8384 1 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 31098.048 2 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 303739.14650000003 9 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 501976.47547 20 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 64562.734200000006 5 +B7Z107 GH09380p1 43.48 4 7 4 343699.6803 6 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 25253.947 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 27460.735 4 +C0HDP4 MIP05618p 5.36 2 2 0 27692.3205 2 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 2834098.82596 44 +C7LAG1 CoRest, isoform G 6.67 5 5 1 15706.68507 4 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 4005419.68991 68 +C9QP70 MIP12608p 25.61 4 4 4 41201.4667 3 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 1791690.893 24 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 134602.16646 10 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 50758.409100000004 5 +D0Z756 MIP14966p 31.93 16 55 0 4168900.53295 53 +D1YSG0 Bent, isoform F 4.91 37 40 0 593291.15153 38 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 741914.9171 13 +D3DMM0 MIP15702p 23.27 9 24 0 1325039.568 23 +D3DMM4 MIP15217p 36.68 27 74 0 5828284.5884 66 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 273412.89355000004 10 +D5SHT6 MIP21537p 7.48 3 3 0 20175.7514 2 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 9530.6304 2 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 236755.4596 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 464484.17527 22 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 374730.4325 20 +E1JGR3 GEO02620p1 24.62 3 4 3 5422.6443 2 +E1JGY6 Hulk, isoform F 16.85 27 41 0 1375219.2649 40 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 379520.9515 16 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 20892.773 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 11147.8583 2 +E1JH90 Patronin, isoform F 2.57 4 4 0 72612.2254 4 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 1621840.98996 53 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 56836.7879 8 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 9680.359 1 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 346911.30199999997 4 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 188733.139 5 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 179123.3372 7 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 121340.81057999999 9 +E1JHP9 Galectin 5.97 2 2 0 34394.172 2 +E1JHT6 Reticulon-like protein 32.13 17 35 0 3298971.2091 33 +E1JHT9 Reticulon-like protein 36.04 8 13 0 4589.2104 1 +E1JI40 Vermiform, isoform I 19.64 10 13 0 605654.3665 11 +E1JI59 Schizo, isoform D 3.03 2 2 0 4470.9375 1 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 168901.4235 6 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 10643.704 1 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 183733.6523 5 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 5482.04 1 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 79959.04247 4 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 37984.168000000005 4 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 6856.5215 3 +E1JIY8 L antigen family member 3 20.72 3 5 3 147347.6195 5 +E1JJ33 Complexin, isoform U 71.33 11 97 2 9175026.560969999 90 +E1JJA4 Dynamin 38.05 35 64 0 1478313.3239 55 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 11802.5327 2 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 704.776 1 +E1JJG5 Phospholipase A2 7.53 2 2 1 28612.2005 2 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 6742330.0149 94 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 46990.8549 7 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 380807.6274 10 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 56592.745500000005 4 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 2142302.10048 51 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 98642.1384 4 +E2QD54 Natalisin, isoform D 5.61 3 3 0 41302.376000000004 3 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 347478.88080000004 15 +E2QD98 Protein PALS1 8.22 17 22 0 289432.7606 20 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 239909.96860000002 12 +E8NH67 Asperous, isoform B 58.41 20 78 0 3685017.45031 61 +F0JAP7 LP18071p 19.65 5 5 0 71357.38130000001 4 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 112158.1731 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 8909516.23038 121 +H1UUB1 GEO12465p1 49.61 5 18 1 783995.6063 17 +H8F4T3 Regucalcin 46.08 10 21 0 649345.3326300001 20 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 85501.61899999999 4 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 42104.8588 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 4858742.778 36 +L0MPN7 Asator, isoform H 11.57 11 14 0 100418.5417 12 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 135390.43579 18 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 1311.0363 1 +M9MRX0 Limpet, isoform J 28.01 28 72 0 6880145.27774 65 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 919463.75664 59 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 173591.9696 12 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 116566.61077 8 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 108460.603 3 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 5516.7944 2 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 1063041.8193 22 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 1909031.5826 16 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 3181509.30176 58 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 24577.9563 4 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 63817.399999999994 3 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 448941.6815 10 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 967318.8529 30 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 156795.65057 18 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 247365.9681 13 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 107940.1508 9 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 7515.5264 1 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 160108.53878 10 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 48442806.87132 417 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 8392.4668 2 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 1954.8634 1 +M9NDE0 pantothenate kinase 5.37 3 3 0 49632.724 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 29024.0756 7 +M9NDS9 chitinase 0.98 4 4 0 66513.40120000001 3 +M9NDX8 Neurabin-1 3.12 6 6 0 8400.07805 3 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 135645.199 7 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 126300.82502 11 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 12574.8572 3 +M9NEF2 Histone deacetylase 3.95 3 4 0 1745.1621 1 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 7527.655 1 +M9NEW0 LD39232p2 63.33 10 18 10 775487.5919 18 +M9NEX3 Cytochrome b5 63.21 7 22 0 3068016.89 20 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 143870.32799999998 3 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 16918.9167 2 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 167940.24719999998 6 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 111171.7182 8 +M9NFC0 Troponin I 50.75 16 66 5 2659976.75 15 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 577061.8983 4 +M9NFH3 Lasp, isoform D 36.88 10 31 1 313826.9977 3 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 594256.2807 37 +M9NH07 Upheld, isoform N 53.05 36 130 0 15908186.8809 120 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 385068.5583 20 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 207981.0608 10 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 21152.031 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 1236552.05231 49 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 2394.9797 1 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 75047.102 4 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 14040.062 2 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 8264195.79411 186 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 66415.3172 3 +M9PBM3 Cysteine protease 8.54 3 4 0 98175.6189 4 +M9PBN2 Apolipoprotein D 24.08 6 18 0 667074.8321 17 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 705198.1632 19 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 14089.584 1 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 34465.793 2 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 455514.91266000003 21 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 1353541.6396299999 22 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 87345.07765 5 +M9PBW9 Rhea, isoform G 8.06 23 26 0 357668.81464 24 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 433016.4469 16 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 53523394.05043 184 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 1193.36929 2 +M9PC74 Reticulocalbin-3 24.48 10 18 0 970779.4910000002 17 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 19870.719 1 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 86603.24685 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 8992.005 1 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 68101.03194 6 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 188912.87846 12 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 174085.89344 23 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 35973.55167 5 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 111751.561 6 +M9PCT7 Bunched, isoform O 19.79 4 11 1 39014.768299999996 3 +M9PCU0 FI21215p1 31.45 40 59 2 134488.887 3 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 230889.5605 11 +M9PD73 TEP1-F 26.63 37 63 0 4013316.1346 63 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 1057772.8369 20 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 3123.5627400000003 2 +M9PDB2 Varicose, isoform E 8.51 6 6 0 117402.6792 6 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 1810797.90466 26 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 14540.436 2 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 115942.98909 13 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 162615.5495 9 +M9PDU4 Acyl carrier protein 19.34 5 38 3 20305064.567 38 +M9PDV2 Tetraspanin 12.89 3 5 0 101541.96595 5 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 651764.68546 41 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 207782.97515 11 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 19433323.65946 58 +M9PE32 Fife, isoform D 14.76 16 27 1 244551.74436 24 +M9PE35 RabX6, isoform B 5.86 1 1 0 572.88495 1 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 3246.27 2 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 7118.841039999999 4 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 80166.78214 12 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 56589.9841 4 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 4351.1716 2 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 27757.0616 6 +M9PEC1 IST1 homolog 22.5 9 19 0 587773.3404 18 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 348112.9843 12 +M9PEG1 Uncharacterized protein 34.58 16 38 16 2189507.5836 38 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 5895731.78291 225 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 93072.2611 6 +M9PEL3 Quemao, isoform C 30.67 10 17 0 585386.09062 15 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 81669.8904 8 +M9PET3 Simjang, isoform D 4.11 3 3 0 3045.4672899999996 3 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 17810.8411 4 +M9PF16 Spectrin beta chain 29.64 75 147 5 6196676.53929 136 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 1971038.74 35 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 13668.4856 3 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 34026.30048 6 +M9PFH7 Tartan, isoform B 3.73 3 3 0 5496.6262 2 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 8539.437 2 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 61728.595870000005 6 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 6367.176460000001 2 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 56739.305 1 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 4120.19218 4 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 590929.2037 22 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 241825.22841999997 15 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 231803.8038 9 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 31524657.64486 186 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 165061.71248 5 +M9PGC4 Shaggy, isoform P 19.72 18 54 0 390.19595 1 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 64941.572 3 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 665995.959 13 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 377107.32435 25 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 41045.602 2 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 545447.13504 25 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 1353832.0519 25 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 67027.39600000001 3 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 196787.24505 13 +M9PHX2 Visgun, isoform E 8.78 2 5 1 30191.110460000004 5 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 20642.295 1 +M9PI33 Inositol oxygenase 6.91 2 4 0 219949.6115 3 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 4037.3722 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 26381.4846 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 1833.4216 1 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 40451.343 2 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 151698.382 4 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 8369.832 1 +M9PJQ5 Troponin I 49.46 15 70 0 986093.1915 14 +O15971 LD39986p 23.53 5 25 2 460480.856 4 +O16158 Calcium-binding protein 52.72 8 47 8 5244608.9198 38 +O17452 LD20793p 27.83 6 24 4 1910989.7484000002 22 +O18332 FI01544p 60.98 11 59 9 3798733.80824 44 +O18335 Rab11 64.49 14 53 14 6084566.8711 47 +O18336 Ras-related protein Rab-14 36.28 8 18 1 1044716.3333 15 +O18338 LD44762p 33.33 7 28 1 19407.216 2 +O44226 Elongin-B 97.46 10 37 10 2296950.4195 30 +O44434 QKR58E-3 22.08 7 9 6 92338.5843 7 +O46052 EG:152A3.3 protein 22.91 6 6 1 92705.2564 6 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 1528963.7505 46 +O46079 Protein KTI12 homolog 7.69 3 3 2 749.555 1 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 79402.7493 6 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 141188.0978 5 +O61604 Fimbrin 32.5 22 57 2 4157647.3007300003 55 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 74987.5509 7 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 45968.62816 5 +O76521 Importin subunit alpha 7.0 4 6 4 96016.0446 6 +O76752 Sepiapterin reductase 36.02 9 16 9 529830.516 14 +O76877 EG:132E8.3 protein 20.62 3 8 3 585797.8077 8 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 8178684.69462 25 +O77259 EG:115C2.5 protein 4.5 1 1 0 1940.9543 1 +O77425 Ribokinase 19.41 5 5 5 71080.554 4 +O77430 GEO01111p1 83.95 15 32 13 1636067.5375 29 +O77434 EG:34F3.8 protein 34.6 6 12 1 394281.83890000003 7 +O77477 LD24471p 22.41 8 11 8 242659.4146 10 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 33304.32 1 +O96692 small monomeric GTPase 27.47 5 6 2 335091.6315 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 192913.7746 6 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 747.81366 1 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 28028.0529 3 +O97059 Ccp84Ab 44.8 7 12 0 299438.6235 12 +O97062 Ccp84Ae 70.19 12 29 12 957561.32379 26 +O97064 Ccp84Ag 39.27 6 11 6 300096.1856 10 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 127829.22 2 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 3309151.17661 32 +O97111 LD29223p 11.68 4 6 4 26778.8876 5 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 1910.5659 1 +O97365 BM-40 26.32 10 12 10 428547.758 11 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 4449172.8827 28 +O97428 Ciboulot, isoform A 37.21 4 6 1 140046.0206 6 +O97454 Protein BUD31 homolog 21.53 4 5 4 56682.5379 4 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 303396.44077 12 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 16547027.45092 136 +P92181 Cuticle protein DCP2 37.61 3 10 3 110089.3261 8 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 55202.689 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 11859488.943500001 77 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 649068.4146 9 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 165202.836 6 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 2476.2634 1 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 3663936.08334 105 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 8693.702 1 +Q0E8P5 FI05614p 22.24 11 21 11 422291.54877 19 +Q0E8S7 Homer, isoform E 45.76 21 61 4 5009544.2531 53 +Q0E8U4 FI09636p 17.67 5 6 5 119977.6047 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 1341094.8072 23 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 125362.5773 5 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 6285980.7956 52 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 1274374.22316 18 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 525366.3338 23 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 27701.0082 3 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 1812399.8365 57 +Q0E9E6 RE33655p 5.43 3 3 1 31699.8445 3 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 685597.2103 19 +Q0E9G4 CG1600-PA 14.96 4 7 0 240214.1067 7 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 769509.4144 15 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 3458.221 1 +Q0KHR7 Septin 13.58 6 8 0 148541.885 7 +Q0KHX7 FI18193p1 7.31 9 9 0 30318.2402 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 22694728.02063 129 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 43004.329 4 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 385997.1482 12 +Q0KI39 FI16806p1 18.15 3 5 1 2100.6853 1 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 791937.485 24 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 134272.8535 12 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 267832.374 7 +Q0KIB0 Sidestep III 0.95 1 1 1 5328.7505 1 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 99416.43400000001 5 +Q1RL12 IP16413p 55.9 15 82 2 394365.06 4 +Q24090 GH08712p 12.43 5 7 5 113437.17046 6 +Q24253 AP complex subunit beta 20.63 16 21 16 1261214.683 21 +Q26459 EN protein binding protein 26.32 12 22 0 336931.27515 20 +Q29QY7 IP15859p 22.54 3 5 1 617630.172 5 +Q2MGK7 GEO13330p1 48.03 7 9 7 194601.7046 9 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 17999.4793 2 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 46363.08 1 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 16128431.87509 152 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 87298.43004 6 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 1418972.3755 16 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 79012.5065 5 +Q4QQ49 IP09595p 7.43 2 3 2 6908.8921 3 +Q4QQ70 IP09819p 23.98 7 9 7 63333.0643 7 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 5340.356 1 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 86648.4659 5 +Q4V619 IP07950p 27.16 5 6 1 34328.533800000005 5 +Q4V625 lysozyme 13.5 2 4 2 54857.7761 4 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 779660.975 16 +Q500Y7 GEO11443p1 54.39 4 28 4 1736811.795 24 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 9687.363 2 +Q59E01 FI02065p 7.44 5 6 0 18567.6314 4 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 24721.8505 4 +Q5BIA9 RE10908p 0.99 1 1 1 21371.928 1 +Q5LJT3 MIP01391p 25.1 4 10 4 354417.5138 10 +Q5U124 alpha-glucosidase 20.95 11 16 0 725766.4147 14 +Q5U126 GEO11286p1 59.42 7 33 7 5450711.998 31 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 236644.3782 11 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 17805.3933 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 1791014.8415 27 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 39851.46053 3 +Q6IGN6 HDC05827 50.0 4 7 4 247767.932 7 +Q6IGW6 GEO13367p1 44.23 2 5 2 59401.4995 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 4053489.7061 19 +Q6IIF2 GEO11103p1 24.29 3 4 3 11749.4097 3 +Q6IL43 GEO11093p1 27.71 2 4 2 247518.5237 4 +Q6NL44 GH28815p 13.18 6 6 6 52227.6977 5 +Q6NLJ9 AT19138p 53.41 5 6 5 72984.8647 4 +Q6NMY2 RH54371p 36.81 6 28 6 4260359.687 18 +Q6NNV2 RE44043p 5.5 2 2 0 205281.182 2 +Q6NNV7 RH03309p 47.37 7 19 1 1379921.5706 18 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 79944.0715 4 +Q6NP72 GEO09659p1 33.33 4 18 4 754725.0422 18 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 67954.9614 3 +Q76NR6 Regucalcin 81.19 23 173 0 19522674.27742 158 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 440581.5965 11 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 37427.27944 5 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 430233.3854 13 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 2568420.20994 27 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 4252.7258999999995 2 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 1100221.0033 27 +Q7JQX9 FI14001p1 7.6 5 5 1 48815.0364 5 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 18857625.7297 109 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 680614.9844 16 +Q7JRB2 RH09039p 4.52 1 1 1 753.65875 1 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 134489.4108 3 +Q7JRF1 RE48509p 8.67 2 3 1 16540.303 2 +Q7JRH5 RE28271p 5.61 3 3 3 20679.276 2 +Q7JRL9 GH25289p 70.78 13 48 1 5306648.243 47 +Q7JRN6 GH06388p 11.21 3 8 3 60087.9346 6 +Q7JS69 FI04632p 40.84 11 75 1 2026515.3566 14 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 10656.423999999999 3 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 22831.43966 2 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 4982226.3695 33 +Q7JV09 GH28348p 6.55 7 8 3 82323.3941 8 +Q7JV69 SD11922p 10.96 4 6 4 310279.39540000004 6 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 70288.5242 4 +Q7JVH6 LD24696p 37.3 11 25 10 1312401.9932000001 15 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 385745.571 10 +Q7JVK6 Translin 22.13 5 11 5 392729.3585 9 +Q7JVK8 GEO08987p1 71.92 10 16 10 875157.0791999999 15 +Q7JVM1 GH25962p 11.79 3 6 3 78460.93239999999 4 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 204497.31999999998 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 433269.91500000004 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 405506.44749999995 9 +Q7JW07 LD08826p 5.63 1 1 1 2607.6858 1 +Q7JW48 RE12410p 2.23 1 2 1 30883.26 1 +Q7JW66 LD21545p 4.83 2 2 2 47783.918 2 +Q7JWD6 Elongin-C 63.25 7 34 7 2862782.35528 30 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 3446501.3328 39 +Q7JWH5 RING-box protein 2 19.47 1 1 1 14128.534 1 +Q7JWQ7 RE01730p 14.62 5 8 5 105885.1106 8 +Q7JWR4 GH19585p 9.09 1 1 1 25934.29 1 +Q7JWU9 AT07420p 30.12 8 10 8 111702.10399999999 8 +Q7JWX3 GH10112p 35.92 11 23 11 654208.4003 21 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 699311.89407 9 +Q7JX94 Phospholipase A2 15.61 3 4 3 4413.2943000000005 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 381162.8008 12 +Q7JXB9 Endonuclease 16.77 5 5 5 841018.842 5 +Q7JXC4 CG6459 protein 35.74 7 44 7 8037500.0036700005 43 +Q7JXW8 Off-track2 12.24 5 5 5 78325.774 4 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 689471.6439 12 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 1660769.912 7 +Q7JYW9 Phosphotransferase 22.25 10 12 10 564416.8470000001 10 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 64953.4131 3 +Q7JYZ0 lysozyme 39.13 4 10 4 159455.7479 10 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 978020.3249 19 +Q7JZB1 RE49860p 3.58 1 1 1 18731.201 1 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 2216046.1832999997 29 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 6130.442999999999 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 223092.72999999998 4 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 5372134.03348 36 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 251911.44162 20 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 6507.8676 2 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 1926634.0203 29 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 2501573.1999 32 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 134199.32986 9 +Q7K076 GEO08269p1 34.35 3 4 0 93034.06805 4 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 29552188.87757 165 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 10512.323 1 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 1698129.7126 31 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 212376.7519 12 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 1576.348 1 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 68103.07639999999 4 +Q7K0S1 LD39211p 3.66 2 2 2 50573.2625 2 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 617704.2234499999 25 +Q7K0S6 LD36817p 27.56 10 14 10 477381.9793 14 +Q7K0T7 LD33470p 2.07 2 3 0 4920.085 1 +Q7K0W1 LD27406p 3.67 2 2 2 29386.995000000003 2 +Q7K0W4 LD27203p 57.93 19 64 18 9169983.6812 59 +Q7K0X9 LD23667p 28.72 6 13 6 240270.5811 12 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 114998.6946 3 +Q7K127 Alpha-galactosidase 35.97 13 22 13 762520.0536 22 +Q7K130 Dynactin subunit 4 13.04 5 6 5 28898.3667 4 +Q7K148 Proteasome subunit beta 17.73 5 7 5 149356.211 7 +Q7K159 LD06557p 13.11 4 5 4 29449.4328 5 +Q7K180 LD02709p 23.18 10 13 10 237457.6888 12 +Q7K188 GEO05126p1 32.9 7 45 7 13316578.47994 40 +Q7K1C0 GH23780p 50.5 7 12 1 931851.509 11 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 407413.0269 10 +Q7K1C5 GH21176p 6.62 4 5 4 314873.22640000004 5 +Q7K1H0 GH09096p 20.37 6 7 6 172573.4209 7 +Q7K1M4 SD04017p 24.68 8 15 8 486949.17494 14 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 89460.713 4 +Q7K1W5 LD35843p 35.11 14 28 14 2155365.4292 27 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 45191.76084 8 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 2054425.7796 27 +Q7K2E1 LD05247p 11.72 7 10 7 221288.3592 8 +Q7K2K2 FI04612p 7.06 2 3 1 21430.702299999997 2 +Q7K2L7 GH27120p 17.59 3 12 3 492670.09180000005 10 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 64125.583 6 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 56341.113 4 +Q7K2P3 GH20817p 63.91 15 37 1 1014185.81972 33 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 170805.07946 5 +Q7K2W6 tyrosinase 26.81 17 23 17 145357.84346 18 +Q7K332 GH17623p 30.96 8 10 7 242504.1239 9 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 876990.129 16 +Q7K3E2 LD34147p 66.97 33 68 33 3759063.24017 62 +Q7K3H0 LD28067p 2.56 5 7 0 44851.3635 4 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 2359692.5368 37 +Q7K3N4 GH26015p 15.98 7 11 7 282387.0586 10 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 184745.2758 7 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 397314.0213 16 +Q7K3W4 GH08941p 26.81 8 27 8 1469820.9163 26 +Q7K3Y9 Spondin-1 4.58 3 3 3 4699.712799999999 2 +Q7K3Z3 GH01724p 56.76 18 53 18 1272156.55152 46 +Q7K485 Cathepsin D 28.83 8 27 8 3797372.9359999998 26 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 140486.20369999998 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 14610.112669999999 2 +Q7K4J7 LD36653p 7.38 2 3 2 44904.957500000004 3 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 63925.839700000004 4 +Q7K4T8 LD23856p 6.99 3 4 3 15025.717330000001 4 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 3209.2588 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 370649.886 9 +Q7K519 GH16429p 23.9 7 8 7 130823.70775 8 +Q7K533 GH14572p 5.48 2 2 2 10773.4903 2 +Q7K549 GH13040p 21.35 8 10 8 64155.574499999995 10 +Q7K568 GH10642p 21.49 6 8 6 84017.12605 6 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 5234629.69614 62 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 295311.1838 14 +Q7K5M6 GH04176p 37.5 9 17 9 927475.0311 16 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 1007669.15 23 +Q7K860 FI07231p 39.22 6 19 6 2953650.5664999997 19 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 2779847.99187 18 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 13402.00274 3 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 47976.3317 5 +Q7KK54 MIP07328p 10.52 7 7 7 89664.35130000001 7 +Q7KK90 GH14654p 50.0 8 36 8 5255953.59946 26 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 1331853.0946 24 +Q7KLE5 Amphiphysin 37.04 23 65 2 4423035.5453 61 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 333436.2597 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 2220409.1859 12 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 150395.308 5 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 119880.35930000001 5 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 2035095.2125 22 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 3328362.17656 66 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 16295.146999999999 2 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 94821.63930000001 7 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 12276.5088 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 1915834.651 37 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 12949860.23995 101 +Q7KND8 FI09619p 6.03 4 5 4 39390.2955 4 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 1698087.0158 16 +Q7KRT4 GH07253p 2.47 1 1 0 7371.6226 1 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 57048.1227 5 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 153265.1972 6 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 764480.6654 12 +Q7KSE4 GH05443p 2.78 2 2 2 7881.3072 2 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 718832.9016 17 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 4974413.5331 32 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 32906.6415 3 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 18198.513750000002 6 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1356300.2809 26 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 3320598.02679 48 +Q7KT58 GH08155p 4.4 1 1 1 4807.583 1 +Q7KT70 FI18641p1 0.94 1 1 1 3026.7644 1 +Q7KTA1 HL01444p 20.67 8 10 8 118407.14869999999 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 474305.9111 26 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 7610675.34504 77 +Q7KTN9 FI01009p 3.11 2 2 0 10567.1512 2 +Q7KTP7 LP22840p 45.86 7 12 7 443813.1154 11 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 6845283.58238 83 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 903177.20138 31 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 2911.6353 1 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 1073832.1643 20 +Q7KUD4 phospholipase A2 6.43 6 7 0 49001.76194 7 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 233841.16330000001 14 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 3662.066 2 +Q7KUT5 Protein MIX23 26.89 3 3 0 47934.2769 3 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 194151.1395 6 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 91341.207 6 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 416412.45199000003 31 +Q7KV27 alanine transaminase 54.93 32 121 0 22873921.40836 114 +Q7KV34 Pinkman 57.32 33 64 33 6002924.17434 62 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 63568.081 4 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 644923.1181000001 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 79731.6666 4 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 20834649.17483 82 +Q7KY04 small monomeric GTPase 23.47 5 14 4 19266.183 2 +Q7PL91 GEO11417p1 30.85 5 12 5 1123121.4612999998 10 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 7120.841200000001 2 +Q7PLI0 P120 catenin 17.03 14 17 14 441411.5936 15 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 622681.4991 26 +Q7PLS1 LD01937p 14.61 5 6 0 206429.70484000002 5 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 78131.649 4 +Q7YU88 SD08871p 4.1 3 3 0 3491.57618 2 +Q86B44 Glutathione synthetase 19.4 8 9 0 143809.66816 8 +Q86B74 WASp, isoform C 10.53 4 4 0 60006.0375 4 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 19202.9815 2 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 10111.632 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 524149.9317 16 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 289601.8627 14 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 1023746.68577 27 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1580563.7536 22 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 2237457.569 21 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 1301993.0015 36 +Q86BS3 Chromator, isoform A 35.53 26 44 26 975006.7201 40 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 7419.83606 3 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 1145535.5733 25 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 74520.79000000001 4 +Q8I077 BcDNA.LD22910 1.76 2 2 2 14769.438 2 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 227782.68310000002 7 +Q8I0D4 RE20510p 21.32 17 37 0 3200395.5062 35 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 52366.8641 5 +Q8I0P9 acid phosphatase 9.67 4 4 0 131373.86440000002 3 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 1866100.5077 23 +Q8I930 GH14147p 3.57 3 4 0 28006.535299999996 4 +Q8I941 GH16843p 32.88 8 25 8 1103843.0555 24 +Q8IG84 SD21996p 13.42 14 125 0 561.37396 1 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 30669.6397 2 +Q8IGY1 RE08101p 33.19 42 295 0 27730489.65086 160 +Q8IH23 GEO02102p1 67.41 6 14 6 1252735.7334 14 +Q8IM93 FI18814p1 35.27 16 37 16 1454588.23544 29 +Q8IMF4 RE24176p 6.68 3 3 0 20775.803699999997 3 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 1715317.70713 32 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 33021.382 3 +Q8IMQ8 RH29536p 46.4 14 49 0 6748463.7812 47 +Q8IMT3 IP12392p 10.71 4 5 4 99896.495 4 +Q8IMT6 FI01822p 10.66 5 6 5 193084.46399999998 6 +Q8IMU2 RE10237p 19.18 4 5 0 177109.975 5 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 32728.581299999998 4 +Q8IMX4 FI04408p 10.85 4 6 0 73530.09240000001 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 334262.42807 11 +Q8IN49 MIP05539p 11.03 10 11 10 240829.48906 9 +Q8IN51 FI17609p1 37.59 7 14 7 535279.4323 14 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 79982.8925 2 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 169510.842 4 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 34219.61403 4 +Q8INH5 Aminopeptidase 7.53 7 11 0 221402.69174 11 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 98614.40199999999 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 54531.892 2 +Q8IP52 RE16941p 0.86 1 1 1 10982.795 1 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 255115.7396 7 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 1066826.8403 18 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 34945.0835 5 +Q8IP97 Peroxin-19 35.62 9 32 9 2597728.1032 28 +Q8IPA5 RE15581p 10.0 3 3 0 75697.90299999999 3 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 32973.22 3 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 1133282.0074999998 14 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 13075133.10222 99 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 93075.3528 8 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 18610.541 1 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 19987.917670000003 3 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 1072209.9774 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 69830.84689999999 4 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 175924.50854 6 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 990.43616 1 +Q8IPT9 SD05439p1 39.06 11 32 0 1513536.90269 29 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 3673825.48597 48 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 8268.334 1 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 26439.6869 4 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 59913.729999999996 7 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 6623.1904 1 +Q8IQB7 MIP21654p 9.44 3 3 3 165156.29200000002 3 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 205416.3366 12 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 102152.2628 5 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 113775.48100000001 3 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 22248.3 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 150683.1224 8 +Q8IQH0 FI12817p 4.98 8 9 1 158382.88520000002 8 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 221942.3185 9 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 301091.34173 23 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 18284.559 2 +Q8IQU1 LD36620p 19.62 9 13 1 117700.3753 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 66400.217 2 +Q8IQW5 RE23625p 70.83 13 77 3 7166243.8783599995 64 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 46928.6243 5 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 44833.0407 3 +Q8IR72 FI19011p1 10.06 1 1 1 17960.87 1 +Q8IR76 FAD synthase 16.33 4 4 0 32926.790259999994 4 +Q8IRD0 RH17559p 42.86 3 8 3 604820.2866 8 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 20760531.1504 70 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 607977.76125 19 +Q8IRI5 Trio, isoform D 15.92 12 15 2 200158.87943 13 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 21723294.51833 130 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 39940.338 2 +Q8MLP9 GEO08457p1 33.04 4 5 4 65359.854 4 +Q8MLQ0 FI14118p 11.84 1 1 1 3846.4712 1 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 853174.6166000001 12 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 686821.5198 16 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 40770.5887 3 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 725357.6377 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 6039982.92327 96 +Q8MQP2 MIP16184p 2.67 1 1 0 81053.69 1 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 11311.07 2 +Q8MRM0 GH16740p 27.0 6 9 6 940123.0467 8 +Q8MRS5 AT03104p 0.71 1 1 0 9626.813 1 +Q8MRT7 SD26038p 13.79 3 4 3 74524.439 4 +Q8MRW1 SD19278p 14.08 2 4 2 195892.8553 4 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 9927.28794 5 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 11138.58 1 +Q8MSI2 GH15296p 85.19 22 138 22 29721523.94599 122 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 55381.6621 6 +Q8MST5 Tubulin beta chain 40.7 17 120 0 1695101.0081 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 6995066.86102 70 +Q8MZ07 GEO07581p1 6.16 1 1 1 44101.49 1 +Q8MZI3 RNA helicase 14.91 11 20 5 555370.38687 11 +Q8SWS2 RE29468p 77.51 8 32 0 1009490.1143 26 +Q8SWS3 RE26528p 17.13 2 6 2 143922.70475 5 +Q8SWZ6 RH51312p 15.35 3 7 3 31494.245950000004 5 +Q8SX06 GEO08318p1 15.43 2 2 2 7704.8985 2 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 11456.841 1 +Q8SX35 GEO07743p1 55.78 5 9 1 176188.21108 8 +Q8SX50 RE04530p 17.6 6 7 0 106314.9075 7 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 10695.2773 2 +Q8SX57 LD44221p 38.91 7 17 7 409728.0847 17 +Q8SX78 LD05679p 21.72 9 9 9 172349.0889 9 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 54208.12474 6 +Q8SXC2 FI04487p 9.56 5 5 5 55083.084 5 +Q8SXD5 GH02216p 57.69 13 41 2 3905922.18536 38 +Q8SXE1 RH69521p 4.68 2 2 2 48037.5846 2 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 114488.46939999999 6 +Q8SXF2 RH40246p 8.18 4 4 4 83432.051 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 49898.248 2 +Q8SXK0 RE18748p 6.55 2 2 2 40162.5646 2 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 720842.2462 20 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 35347.66813 8 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 1298279.7823 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 3534.7915 1 +Q8SXS0 RE40914p 16.23 5 6 5 64058.8443 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 2400019.55617 30 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 22481.0654 4 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 304595.75169999996 7 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 5920.9097 1 +Q8SY67 lysozyme 14.47 2 6 2 369807.35049999994 6 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 1193621.368 7 +Q8SYC4 RE68566p 3.93 2 2 2 75029.934 2 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 4204158.53172 70 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 2028585.8921 25 +Q8SYH8 RE57644p 19.05 5 10 0 192862.107 10 +Q8SYJ2 GEO09626p1 67.47 10 68 10 10969239.3822 65 +Q8SYQ4 RE42475p 69.59 10 50 10 3517694.20916 45 +Q8SYQ8 RE40412p 27.94 4 9 4 100621.6645 9 +Q8SZK5 RH26533p 16.4 3 4 3 128534.50300000001 3 +Q8SZK9 HL04814p 59.31 15 64 15 9007583.36863 62 +Q8SZM2 RH04334p 28.15 9 35 9 5433571.851199999 33 +Q8SZN1 GEO08217p1 73.39 10 27 5 1908250.7666000002 27 +Q8T0I9 GH27479p 28.88 11 16 1 483249.02890000003 14 +Q8T0J5 GH26851p 40.42 12 39 0 5741413.274 39 +Q8T0N5 GH17516p 19.54 8 15 8 816740.1041 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 94264.6228 5 +Q8T0V2 GH02495p 25.5 11 20 0 422164.28510000004 15 +Q8T389 Endophilin B 43.12 16 71 0 9539.5262 2 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 47216.63072 5 +Q8T3W8 Venom allergen-1 12.6 4 6 0 80053.4076 5 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 9303.861 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 1803195.2290999999 31 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 4875490.7092 75 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 8399.244200000001 2 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 11671.705 1 +Q94513 Boundary element associated factor 18.79 5 8 1 78617.32336 7 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 28370.288 2 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 101752.942 3 +Q95NU8 GH16255p 14.82 7 11 7 217076.00639999998 10 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 12522.8696 4 +Q95PE4 GEO07784p1 5.56 1 1 1 7350.6543 1 +Q95R34 GH16463p 12.62 4 5 4 128989.7079 4 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 175152.5453 6 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 77171.0931 8 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 30371541.46966 157 +Q95RC5 LD44506p 4.95 3 3 3 22690.594 3 +Q95RE4 LD37574p 51.42 13 23 0 63988.2278 19 +Q95RF6 LD34461p 34.5 4 12 4 400732.91740000003 11 +Q95RI2 LD28549p 31.37 9 11 9 164229.5369 11 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 82700.0689 5 +Q95RP1 LD18295p 10.71 2 2 2 21512.869300000002 2 +Q95RQ1 LD16414p 3.32 2 2 2 7114.941199999999 2 +Q95RR6 LD15002p 64.6 18 79 0 80712.914 2 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 279282.423 8 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 799107.09953 8 +Q95RY2 LD01461p 45.04 9 18 2 363266.7429 15 +Q95SH0 GH26463p 2.44 2 2 2 7740.90676 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 754341.9531 23 +Q95SH7 GH26007p 3.49 1 2 1 189762.61 2 +Q95SI7 GH23390p 75.09 18 61 18 4650879.9211 56 +Q95SN8 GH12395p 15.49 4 7 4 240881.24730000002 6 +Q95TK5 LD44914p 21.21 9 14 8 418371.3218 12 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 1924451.66983 31 +Q95TP0 LD34582p 4.51 2 2 2 12116.901 1 +Q95TZ7 GH19182p 85.32 28 147 0 14731271.93065 119 +Q95U15 GH14252p 83.65 34 259 0 4791481.563999999 29 +Q95U34 GH11113p 30.82 13 27 13 1884437.5248 26 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 354526.7203 9 +Q960D4 SD06560p 20.91 13 13 0 638556.3696999999 13 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 22892413.48127 97 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 833158.80336 25 +Q961A8 LD25351p 2.07 1 1 0 1547.6234 1 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 148960.3197 3 +Q961B9 LD24073p 3.72 2 2 2 60178.585 2 +Q961C8 LD22649p 9.84 4 4 0 51709.31 4 +Q961E7 phosphorylase kinase 7.88 4 5 0 75027.1355 3 +Q961K6 GH19047p 3.18 2 2 2 2484.5942 1 +Q961Q8 GH10454p 8.89 4 5 4 80193.1165 5 +Q961T9 GH07914p 32.94 6 12 6 493540.4127 12 +Q961X4 Combover, isoform B 17.43 11 13 0 70286.40019 13 +Q966T5 Paxillin, isoform D 28.93 7 20 4 106763.0358 6 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 93915.6647 6 +Q9I7H8 LD37276p 14.29 4 5 4 43784.2143 5 +Q9I7I3 GH12831p 12.97 4 4 4 74949.1802 4 +Q9I7J0 GH21596p 72.19 11 40 11 3554131.7572999997 36 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 71606.51800000001 2 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 82828.44 5 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 1445968.5693 24 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 2613135.30437 24 +Q9NCC3 Sorting nexin 15.58 8 10 8 394764.763 10 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 14674.83164 2 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 7267.5617999999995 2 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 418105.6791 8 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 271290.3689 14 +Q9U6P7 FI18813p1 10.55 5 7 5 293152.9872 7 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 2340259.1578 59 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 113349.3824 7 +Q9V393 Kurtz arrestin 5.32 2 3 2 40432.689300000005 2 +Q9V396 Carbonic anhydrase 58.15 15 45 15 3521671.35477 43 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 51875.537000000004 3 +Q9V3C8 DShc protein 5.62 2 2 2 25823.6938 2 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 448939.4001 16 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 91305.976 5 +Q9V3E7 LD24793p 42.86 14 26 14 540115.2514 23 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 16707.6133 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 504847.98230000003 14 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 397914.58536 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 285520.1717 9 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 3452604.86325 56 +Q9V3N9 B6 4.48 3 3 3 117460.061 3 +Q9V3P3 LD45860p 39.18 10 21 10 998043.8192 21 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 47382.034100000004 4 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 30074.956 2 +Q9V3T8 LD32469p 18.46 4 6 4 58916.5427 4 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 4351558.8657 35 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 2996422.58735 54 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 5965575.70947 62 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 1106144.40896 30 +Q9V3W2 GM23292p 66.47 16 60 16 5769205.5417599995 53 +Q9V3W7 LD40489p 52.16 11 26 11 578923.9443600001 22 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 750685.6783 32 +Q9V3Y4 LD43650p 20.57 5 8 5 263463.0763 7 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 1485133.65906 30 +Q9V3Z4 GH11341p 30.28 14 31 14 1289950.75846 24 +Q9V3Z9 HL02234p 42.6 17 39 17 3606449.73154 37 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 39822.8726 5 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 2604787.0124 48 +Q9V406 Activator protein 4 13.31 7 11 7 370243.32295 11 +Q9V420 FI02878p 15.83 8 12 8 529381.013 10 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 787789.95938 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 56135.585399999996 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 999288.94257 17 +Q9V455 Importin subunit alpha 22.37 11 25 11 1905132.152 24 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 2125829.98685 42 +Q9V491 Plexin A, isoform A 1.44 3 3 0 33346.399 3 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 2805135.50358 71 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 6416275.642200001 69 +Q9V4E0 Complex I-49kD 31.41 12 19 11 949868.2887 19 +Q9V4E7 Transporter 9.12 6 7 3 393091.68200000003 7 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 10446.414700000001 3 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 1144159.411 11 +Q9V9Q4 LD43819p 30.23 12 26 12 787667.385 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 144436.1962 8 +Q9V9T5 GM14617p 13.75 10 10 0 121313.8462 9 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 23725.1505 2 +Q9V9U0 RE35358p 4.79 1 2 1 68584.543 2 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 622999.60584 12 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 4220.2236 1 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 1052233.8067 17 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 2683206.5099 24 +Q9V9W4 GH08048p 1.69 1 1 1 3868.8167 1 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 27063.377 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 340443.609 6 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 5067287.65428 81 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 468004.99821 13 +Q9VA34 LP06141p 1.88 2 2 2 30512.37 2 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 405170.1319 21 +Q9VA41 GEO08227p1 52.87 7 18 3 377838.7167 12 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 2167808.3794 24 +Q9VA56 GH23271p 63.77 23 81 2 62708.951199999996 5 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 46907.395 1 +Q9VA71 FI19924p1 4.52 1 2 1 6900.4542 2 +Q9VA76 IP18706p 16.43 6 8 6 60124.981999999996 4 +Q9VA81 GEO10172p1 29.29 5 5 5 104438.599 5 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 112484.751 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 565658.0686 13 +Q9VAA6 GEO12235p1 19.62 3 7 3 186097.4965 7 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 313997.2116 18 +Q9VAC1 GM14349p 45.49 17 130 17 23575690.95519 122 +Q9VAC4 GEO09167p1 63.46 7 16 7 1228867.3014 15 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 66620.11563 12 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 14166.295299999998 2 +Q9VAD7 RH37294p 18.5 3 3 3 21302.8405 3 +Q9VAG3 trypsin 17.0 4 7 4 196196.916 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 680842.315 13 +Q9VAI9 GEO07291p1 62.25 8 60 5 5365731.65309 54 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 686421.6477 15 +Q9VAL5 protein-tyrosine-phosphatase 0.86 1 1 0 1670.4109 1 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 2215238.0943 65 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 25444708.8777 126 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 92887.7153 6 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 16603.8 1 +Q9VAU6 LD27564p 2.99 2 2 2 9896.7248 2 +Q9VAV2 FI21480p1 16.52 13 16 13 370519.9689 15 +Q9VAY0 Neprilysin 7 5.16 4 4 4 33520.577099999995 4 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 4881521.94226 77 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 48860.7095 3 +Q9VAY9 GH07821p 7.89 3 3 3 42425.508 3 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 2532182.27185 46 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 4399953.00207 45 +Q9VB17 IP11341p 7.98 3 3 3 98920.87 1 +Q9VB22 LD33695p 14.29 8 11 8 227912.35220000002 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 517719.54867 22 +Q9VB51 GEO08385p1 42.96 3 3 3 33493.932 2 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 752602.44866 24 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 35833.8864 3 +Q9VB69 Malic enzyme 20.75 12 16 1 206558.8541 15 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 10310.2976 2 +Q9VB77 IP09938p 12.18 4 4 4 132182.245 4 +Q9VB79 IP09473p 24.22 8 17 8 704854.3484 15 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 5571945.8734 53 +Q9VB86 LP07342p 10.14 2 3 1 14268.30058 3 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 2144425.5343 29 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 25956.92756 3 +Q9VBC9 Beaten path VII 13.15 4 4 4 133397.079 4 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 10309272.74347 84 +Q9VBI3 RH72336p 28.52 9 21 9 1099151.0907 19 +Q9VBL3 GH01188p 13.79 7 7 7 54261.34 6 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 1286198.8450000002 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 33917.437 2 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 23991755.2792 133 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 22303.518 1 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 1417550.1239 24 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 315740.7162 8 +Q9VBT2 IP11926p 9.86 4 4 4 27151.6633 3 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 53791.7636 3 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 4033922.76 8 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 267329.5171 9 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 3807013.9087 44 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 50368.532289999996 7 +Q9VC06 LD37516p 15.21 10 15 10 214607.6127 15 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 8790.6546 2 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 828887.2082 21 +Q9VC30 RE05274p 8.06 1 2 1 5674.6666000000005 2 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 535396.4232 15 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 552413.9060000001 14 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 498674.0807 10 +Q9VC58 Syntaxin-18 8.86 4 4 4 26997.6598 4 +Q9VC66 AT25567p 28.82 13 18 13 347079.15105000004 18 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 53424.4803 4 +Q9VC87 RE57978p 10.75 4 4 4 14975.0532 2 +Q9VCB9 FI08802p 26.23 6 12 6 656153.5545 12 +Q9VCD8 Structural maintenance of chromosomes protein 0.89 1 1 1 906.68945 1 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 832317.23234 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 58114.57747 4 +Q9VCF8 LD23561p 23.45 8 11 8 229161.57986 11 +Q9VCI4 LD32918p 3.55 3 3 3 47149.294499999996 3 +Q9VCI7 LD02979p 17.37 7 12 0 324391.1784 11 +Q9VCK6 LD34157p 20.89 8 10 8 249064.68943 8 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 74835.274 4 +Q9VCR4 FI17836p1 7.58 6 7 6 80844.57560000001 6 +Q9VCR9 RH48101p 39.61 11 25 11 1471361.1974 21 +Q9VCT4 Klingon 6.06 3 4 3 14036.6204 4 +Q9VCU0 GEO02312p1 34.17 4 8 4 562243.9349999999 8 +Q9VCU1 FI07649p 1.31 1 1 1 10620.066 1 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 71877.76699999999 2 +Q9VCW2 Cardinal 5.3 5 6 5 74151.9866 6 +Q9VCW6 GCS light chain 36.14 13 31 13 2266108.6497 27 +Q9VCZ2 FI07970p 2.48 1 1 1 49784.465 1 +Q9VD00 FI07666p 23.74 6 12 6 287061.68722 12 +Q9VD01 LP12095p 18.75 3 3 3 169804.82 2 +Q9VD02 GH14779p 30.73 4 10 4 345873.68176 10 +Q9VD13 GH02671p 14.64 8 9 0 134931.1786 8 +Q9VD14 GH07286p 17.02 9 13 9 213011.7134 12 +Q9VD29 small monomeric GTPase 54.92 10 33 10 2080857.87611 27 +Q9VD30 GH05294p 79.44 14 60 14 8081241.79766 47 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 30468.127 1 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 17431650.011 79 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 107713.4922 6 +Q9VD68 GH19849p 6.84 3 3 3 52893.676 3 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 21149.953 1 +Q9VDC0 GH01837p 24.0 5 14 5 559994.3478 12 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 9958.735540000001 2 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 8729.84056 2 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 1085542.4324 13 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 1171260.5041999999 14 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 1080569.5097 25 +Q9VDH3 GH08630p 58.77 13 36 13 2870073.91024 33 +Q9VDI1 LD46328p 56.88 24 81 1 3215943.43658 72 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 86204.3758 3 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 138876.24455 13 +Q9VDK2 GH15831p 3.87 3 3 2 46993.9707 3 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 487778.9176 27 +Q9VDK9 GH12359p 4.89 3 4 3 158076.56 4 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 101770.21299999999 4 +Q9VDL5 GEO09602p1 52.24 3 3 3 80250.2807 3 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 580578.1963 8 +Q9VDQ3 Identity crisis 8.06 4 4 4 29124.2579 4 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 1226615.4552499999 20 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 13202.0957 2 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 750741.113 18 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 22866.87805 5 +Q9VDU7 nicotinamidase 31.37 11 16 11 505896.186 16 +Q9VDV2 AT06125p 8.26 4 4 3 74700.212 3 +Q9VDY8 MIP08680p 74.26 18 75 2 4942437.12115 64 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 3652701.53076 46 +Q9VE08 GH10002p 13.62 3 3 3 29661.7125 3 +Q9VE12 LD27322p 19.44 7 8 7 64065.9544 6 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 72157.0806 4 +Q9VE31 GEO12059p1 18.92 2 2 2 4722.107300000001 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 60574.88304 7 +Q9VE56 FI17806p1 18.88 4 7 4 408781.6069 6 +Q9VE57 GEO10850p1 6.9 1 2 1 27625.441 2 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 15834.8397 2 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 81014.793 2 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 101553.117 9 +Q9VE94 LD14127p 8.85 3 4 3 82591.4638 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 584718.2598 13 +Q9VEA7 FI01460p 44.94 3 5 3 506473.2182 5 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 74442275.46339001 262 +Q9VEB7 AT04491p 12.1 4 4 4 41207.075 4 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 252757.7146 9 +Q9VEC6 LD29902p 14.83 12 17 0 804.838 1 +Q9VEC8 RE23139p1 26.15 3 3 3 206313.39829999997 3 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 141997.29214 7 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 39471.025 3 +Q9VEG8 RE59232p 10.8 2 2 2 41775.9983 2 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 218262.8739 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 1772263.4303 28 +Q9VEJ9 Curly Su 2.39 2 2 2 12874.985 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 127635.9143 7 +Q9VEK8 GH07711p 39.88 11 22 11 686681.331 21 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 467502.22864 15 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 16038.212 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 36096.3985 5 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 604375.6934 23 +Q9VEP8 GH11385p 21.38 13 18 13 263721.28135 17 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 378295.4434 19 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 206233.6105 8 +Q9VES8 RE28913p 29.5 9 16 9 1090809.2127999999 16 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 146102.70799999998 3 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 589194.7382 19 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 14182.6928 2 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 22043.280400000003 2 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 97712.3328 5 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 682121.45254 29 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 23637.75 1 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 3020462.7381 32 +Q9VEY9 GH15759p 3.1 1 1 1 952.3024 1 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 229620.2198 11 +Q9VF15 GEO09476p1 81.05 12 39 8 3195360.49172 37 +Q9VF23 arginine kinase 12.25 6 7 6 108215.72829999999 7 +Q9VF24 Crossveinless d 3.88 6 7 6 91943.3829 7 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 483252.34261 17 +Q9VF39 FI01459p 13.04 5 7 5 231756.50615 6 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 397132.438 14 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 115438.5408 7 +Q9VF77 FI16517p1 10.74 4 5 4 83307.71916000001 5 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 21941.6985 2 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 46510.88649999999 3 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 366338.8222 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 62885.49888 5 +Q9VFC7 Mf5 protein 84.93 39 273 0 15413107.6851 176 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 30583.731200000002 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 31225346.02897 130 +Q9VFI3 GEO08281p1 45.19 3 10 3 248778.02560000002 6 +Q9VFM0 GH19262p 7.14 4 5 4 75233.99040000001 5 +Q9VFN7 GEO07678p1 27.67 5 18 5 539886.7593 18 +Q9VFN9 GEO07882p1 54.84 7 9 7 91717.2362 8 +Q9VFP0 RH07106p 18.65 6 7 6 172012.1005 6 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 2515977.47652 38 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 1211911.4923999999 22 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 7159.0527 1 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 91516.73270000001 5 +Q9VFT4 AT27578p 16.09 9 13 9 83086.21650000001 9 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 30942.323399999997 2 +Q9VFV1 RE55542p 9.81 5 7 5 75243.04029 7 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 7985100.925 47 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 144904.82679999998 4 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 63770.932700000005 5 +Q9VG01 RE12073p 1.88 1 1 1 12502.75 1 +Q9VG04 Protein MEMO1 2.71 1 1 1 5974.9844 1 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 30616.39204 3 +Q9VG23 GH22994p 69.3 12 69 1 7208779.70495 60 +Q9VG26 MIP06012p 45.07 9 28 9 1299378.57966 21 +Q9VG28 Beaten path Vc 5.39 2 2 2 26915.067000000003 2 +Q9VG31 Malic enzyme 19.79 16 26 0 1923691.869 24 +Q9VG33 Sulfurtransferase 85.45 8 22 8 1791574.49477 20 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 81330.79084 6 +Q9VG44 RE14195p 2.98 2 2 2 6377.9346 1 +Q9VG51 Sorting nexin-3 51.5 8 25 8 1568919.95656 19 +Q9VG62 Toys are us 2.89 2 2 2 22250.3953 2 +Q9VG69 LP03547p 42.59 16 39 16 2408646.4989 35 +Q9VG81 RH49330p 11.14 5 6 5 148470.476 6 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 92172.47663 5 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 1513770.4033 22 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 76070.7495 4 +Q9VGA3 LD12305p 36.82 8 23 7 1852173.8925 19 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 23840.948 2 +Q9VGE4 FI04457p 6.96 8 8 8 99295.1333 7 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 18682.4958 3 +Q9VGF3 IP11040p 18.84 6 7 6 129439.8812 7 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 3900868.6752 40 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 526056.1780000001 6 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 185721.02428 16 +Q9VGL0 LD43047p 2.61 3 3 3 11756.0933 3 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 81849382.22747 183 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 111636.6881 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 13526657.4926 68 +Q9VGQ8 Arfaptin 25.35 9 11 9 246435.88417 11 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 25054.9994 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 36481.4437 3 +Q9VGS3 RH44771p 23.39 4 22 4 1475279.4552 19 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 27129.196 2 +Q9VGT3 GM04645p 3.98 2 2 2 6988.0661 2 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 70354.62395000001 7 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 42681.996 1 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 160588.477 5 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 440596.1902 10 +Q9VGY2 Peptide deformylase 5.88 2 3 1 37613.9044 3 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 142846.004 6 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 141240.785 15 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 127893.2626 7 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 535347.2934 15 +Q9VH37 IP06524p 27.09 5 7 5 345534.563 7 +Q9VH64 LD29322p 19.0 7 8 7 518283.70583 8 +Q9VH66 FI18258p1 24.89 5 9 5 131366.2199 9 +Q9VH72 TA01656p1 37.25 6 10 6 519617.827 10 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1130860.3895 44 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 162026.781 7 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 37932.80915 3 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 80020.5606 10 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 291921.94769999996 6 +Q9VHA8 LD25575p 15.06 10 12 10 751898.4729 12 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 1177756.08827 19 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 61188.395000000004 4 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 338434.3864 21 +Q9VHC7 FI21236p1 34.65 17 32 9 1168757.1523 26 +Q9VHC8 LD31448p 10.06 2 2 2 1433.4358 1 +Q9VHE3 GH05665p 1.79 1 1 1 21457.008 1 +Q9VHE4 omega-amidase 20.85 7 16 7 858017.2739 16 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 321349.68799999997 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 410223.153 6 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 131981.91449999998 5 +Q9VHH8 Beag 1.26 1 1 1 4695.222 1 +Q9VHI1 Hyrax 8.36 4 4 4 24864.803600000003 4 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 1967500.7559999998 21 +Q9VHJ2 LD32381p 9.12 3 3 3 131493.0904 3 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 7071.249 1 +Q9VHJ7 LD41978p 4.48 3 3 3 63973.9891 3 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 3595996.32395 44 +Q9VHM3 LD30467p 8.85 4 4 4 37236.8692 3 +Q9VHN4 GH14121p 12.64 3 4 3 52267.5432 4 +Q9VHN7 transketolase 30.51 16 25 2 846539.6927 22 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 24341.497 2 +Q9VHR5 Veneno 2.96 2 2 2 2894.401 1 +Q9VHT3 CG9617 protein 20.79 4 5 4 77998.34257000001 5 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 110223.2325 5 +Q9VHX2 GH08043p 4.58 2 2 2 51376.047999999995 2 +Q9VHX4 LD24679p 77.51 23 101 23 13067493.4937 92 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 400607.9875 11 +Q9VI09 GH14494p 52.48 7 29 7 1537422.36124 28 +Q9VI21 Dementin, isoform D 2.98 2 2 0 8309.87905 2 +Q9VI24 LD25151p 4.38 1 1 1 3178.6868 1 +Q9VI53 LD44267p 19.43 7 13 7 112898.87176000001 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 91274.5945 4 +Q9VI64 LD30995p 46.46 14 42 14 3265092.7606 39 +Q9VI66 GH28833p 15.54 4 6 4 190518.0115 6 +Q9VI80 Thawb 2.46 2 4 2 20669.4044 4 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 46110.59745 6 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 91066.1204 5 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 80464640.11399 305 +Q9VIF2 GM01519p 11.13 6 8 6 509298.207 7 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 412137.0994 12 +Q9VIH1 CG9273 protein 29.27 6 7 6 162886.9306 7 +Q9VII5 GEO08323p1 20.13 3 8 3 392071.95776 8 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 205503.2417 2 +Q9VIJ3 FI14214p 45.0 7 10 2 72855.5167 7 +Q9VIJ5 GEO05038p1 20.15 2 3 2 18773.262 3 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 13672.916799999999 2 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 164383.7513 16 +Q9VIL2 LD19544p 23.14 4 5 4 39410.6006 4 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 650072.758 12 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 164465.9376 5 +Q9VIQ5 RH02620p 29.08 5 7 5 189706.123 5 +Q9VIQ6 FI17342p1 17.68 4 5 4 47504.128 5 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 8716075.85696 60 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 16795.6834 3 +Q9VIU3 FI23988p1 3.98 2 2 2 9956.080100000001 2 +Q9VIV6 GH04973p 8.83 3 3 3 231638.0623 3 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 56407.524000000005 2 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 4312.804099999999 2 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 378438.69 4 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 380026.73007 15 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 1183966.8042 20 +Q9VJ22 GH09876p 5.41 2 2 2 26326.318 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 121871.6607 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 1076424.81634 19 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 204500.28886 9 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 2065787.7941 29 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 318599.38453000004 13 +Q9VJ59 PRA1 family protein 5.31 1 2 1 61081.951 2 +Q9VJ60 GM16226p 17.29 3 4 3 177106.4763 4 +Q9VJ61 SD03870p 4.67 2 2 2 8946.472600000001 2 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 336860.2832 15 +Q9VJ80 LD42267p 8.46 10 12 10 177432.4996 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 285125.7942 13 +Q9VJA9 GH07373p 7.69 5 6 0 57182.0182 6 +Q9VJC0 GEO08203p1 37.96 5 8 5 266930.6368 8 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 131216.9657 5 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 1074916.0536 21 +Q9VJD4 LD24721p 34.44 12 41 12 3591124.8504 35 +Q9VJE3 LD24839p 11.63 6 8 6 58133.560699999995 7 +Q9VJH8 FI03416p 3.13 2 2 2 14886.5385 2 +Q9VJI5 Protein yellow 16.56 8 9 8 564931.9394 9 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 181922.7168 5 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 1583469.7625 21 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 26599.773 1 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 372654.7484 10 +Q9VJQ3 Protein yellow 38.13 15 33 14 3717723.5178 30 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 22190.866199999997 3 +Q9VJU6 IP09831p 7.3 2 3 2 55870.9418 3 +Q9VJU8 GH23407p 10.27 5 6 5 78369.6717 4 +Q9VJZ1 FI21342p1 11.57 6 7 6 126969.51626 7 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 3842919.8087999998 40 +Q9VJZ5 LD07294p 26.58 8 14 8 262450.4628 11 +Q9VJZ6 LD40224p 76.39 13 40 13 2021622.59103 35 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 578331.7383 13 +Q9VK11 GH15921p 22.65 6 13 6 958769.8277 13 +Q9VK12 GH20621p 64.8 18 93 18 13099663.3354 85 +Q9VK18 LD36945p 17.14 9 10 9 66131.677 7 +Q9VK19 FI07225p 7.72 1 1 1 7019.7036 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 2465.259 1 +Q9VK31 LD35592p 5.19 2 2 2 5395.4185 1 +Q9VK39 FI09204p 52.83 5 23 5 538859.7295 18 +Q9VK43 LD10135p 7.71 3 3 3 20053.5896 3 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 98892.736 5 +Q9VK59 LD23647p 33.58 28 46 28 674014.34396 38 +Q9VK60 GH25425p 52.14 13 50 13 3979696.2750999997 46 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 3328407.23693 45 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 398150.1825 13 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 163110.099 10 +Q9VK99 Atilla, isoform B 51.75 8 30 8 1768887.46913 28 +Q9VKA1 FI02817p 16.23 4 6 4 46915.337999999996 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 18886.9967 3 +Q9VKC8 FI03495p 14.26 8 10 8 341087.89313 10 +Q9VKD9 MIP16835p1 1.35 1 1 1 4473.504 1 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 32052878.16597 378 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 121478.03727 6 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 151920.63999999998 2 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 25093.445 1 +Q9VKI8 GH03305p 65.36 19 134 19 9795474.527590001 126 +Q9VKJ4 Csl4 18.14 3 4 3 73031.227 3 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 10368179.53706 59 +Q9VKM7 AT01533p 7.09 4 10 0 455154.2184 10 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 157933.1263 15 +Q9VKQ5 GEO07393p1 16.94 2 4 2 221140.67500000002 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 24781.222999999998 3 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 939582.1982699999 21 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 246765.6575 9 +Q9VKU5 LD37206p 14.04 4 4 4 40855.622 2 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 2383421.03064 38 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 53185.854199999994 5 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 122563.2903 7 +Q9VKW1 LD41958p 1.96 1 1 1 4349.0073 1 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 506053.4317 16 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 14913.7216 2 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 17012639.93557 154 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1290850.908 12 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 191357.1612 14 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 977855.76362 30 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 2559819.8622 44 +Q9VL02 GH08677p 19.51 7 7 2 116898.35945 7 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 413205.9477 12 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 115093.0674 5 +Q9VL16 RE45833p 30.77 7 30 7 3302519.2386 27 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 4207.3706 1 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 47166.0804 3 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 3363.0005 1 +Q9VL57 RE10231p 2.85 1 1 0 1615.4083 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 119188.63299999999 2 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 696201.7013999999 10 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 2609630.9255 32 +Q9VL70 HL08109p 80.9 30 111 30 28293727.44542 104 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 149149.1962 5 +Q9VL91 LD23102p 1.8 1 1 1 3202.836 1 +Q9VL93 GEO07195p1 29.09 3 5 3 36718.9778 3 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 167375.8923 8 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 5184793.78149 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 11631645.35992 81 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 134216.869 7 +Q9VLI4 Raw, isoform A 4.85 4 5 1 51679.792 3 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 57695.312 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 1103389.2436 16 +Q9VLP0 IP04187p 32.09 5 7 5 140025.2251 5 +Q9VLP1 GEO08095p1 37.84 6 18 6 749115.7679 13 +Q9VLP2 GEO08076p1 38.78 6 46 6 1660434.6509 40 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 644114.102 6 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1295208.71185 29 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 324715.68899999995 2 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 3949158.5982 41 +Q9VLS5 LD29542p 6.53 3 4 3 13624.716 4 +Q9VLS7 LD21067p 4.91 7 8 0 90313.91146999999 5 +Q9VLT3 LD23292p 15.23 26 42 26 1363935.7413 39 +Q9VLT7 IP17351p 24.04 4 7 4 492337.8908 7 +Q9VLU3 IP09231p 8.63 2 3 0 53541.5908 2 +Q9VLV9 Proctolin 46.43 5 7 5 36589.3151 4 +Q9VLW8 LD06392p 5.79 2 2 2 57522.7174 2 +Q9VLX6 HL01609p 16.49 4 4 0 86069.4878 4 +Q9VLY1 HL02931p 19.01 1 9 1 1007606.556 7 +Q9VLY7 TEP1-F 7.49 10 10 10 135497.8556 9 +Q9VLY9 CD109 antigen 28.88 39 63 2 3157934.0202 60 +Q9VM07 RE43931p 27.85 5 10 4 448263.5851 8 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 305004.2207 12 +Q9VM11 HL01515p 30.55 11 14 11 555395.9269 14 +Q9VM12 MIP26555p1 25.85 8 19 8 947733.894 15 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 27534133.376960002 184 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 19130652.22987 116 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 69037.494 3 +Q9VM47 Menin 4.19 3 3 2 40543.5536 3 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 12641.436400000002 4 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 412715.3123 11 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 226471.7434 5 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 525502.06584 8 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 146591.5405 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 16158485.07145 84 +Q9VMC3 LD35051p 17.28 5 6 5 22758.6955 5 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 73167.8 1 +Q9VMC7 LP11564p 13.92 9 10 3 46741.9866 7 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 585879.5787 16 +Q9VME1 FI01864p 11.22 6 8 6 103810.2938 8 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 199797.78100000002 7 +Q9VMF0 FI04444p 5.9 3 3 3 26515.1717 3 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 136777.543 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 522816.556 11 +Q9VMH8 GEO07746p1 38.1 6 19 6 664719.656 16 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 3067820.0869 29 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 2267588.5564 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 9617161.873610001 48 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 393934.80429999996 8 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 862404.8868 15 +Q9VMR9 acylphosphatase 14.85 2 2 2 66682.381 2 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 16392748.7818 59 +Q9VMT2 GEO07854p1 60.4 9 123 1 16923783.60001 111 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 6670447.3642 40 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 107318.3797 12 +Q9VMV5 Viking, isoform A 9.07 15 21 15 468731.97378 19 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 3524.3817 2 +Q9VMX4 AT19154p 29.08 7 13 7 245674.82640000002 11 +Q9VN01 GH23891p 11.66 7 7 7 125939.0887 7 +Q9VN02 GH14561p 39.46 10 16 10 314851.7062 13 +Q9VN21 LD30155p 57.06 30 110 30 11131866.42777 105 +Q9VN39 RE74585p 24.47 9 13 4 50161.29828 10 +Q9VN44 FI07923p 23.17 21 40 21 1859548.8204299998 39 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 944528.7938 11 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 768808.6797 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 5363.234 1 +Q9VN86 AT14148p 9.07 4 4 4 111152.268 4 +Q9VN88 LD45836p 33.18 6 9 6 286700.7609 9 +Q9VNA3 GH21273p 34.26 7 14 7 706090.9232 13 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 1390228.7909 12 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 201846.82 6 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 27234.472400000002 3 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 7140.2080000000005 2 +Q9VNF3 RE01652p 45.91 11 35 8 962532.54504 29 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 162023.47574999998 7 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 97556.90254000001 8 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 205066.494 9 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 324205.84 1 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 225126.7816 7 +Q9VNI8 Hpr1 10.84 8 8 8 137702.7563 8 +Q9VNI9 IP18173p 25.11 4 7 4 183746.6166 7 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 10932268.68199 82 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 83023.9623 6 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 43927.51473 7 +Q9VNV2 GEO05133p1 15.82 2 3 2 91529.511 3 +Q9VNW0 GEO11142p1 17.97 2 2 2 31660.756 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 12404668.16849 80 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 6926904.9064 95 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 23504.190700000003 3 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 41402.8272 4 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 9014.309 1 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 1357.55 2 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 128436.688 4 +Q9VP51 LD40450p 2.79 1 1 0 692.2682 1 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 202685.0412 7 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 456386.4467 8 +Q9VP57 LD15904p 25.8 20 45 20 1175001.40433 41 +Q9VP77 LD23875p 10.53 6 6 6 122139.57134000001 6 +Q9VP78 GH23156p 11.92 4 5 4 50405.2243 5 +Q9VP84 IP06402p 10.05 2 2 2 41743.629 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 7218.395 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 58414.8025 4 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 74869.428 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 27220.2523 2 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 2534544.58618 39 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 60232.03824 5 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 35377.457500000004 3 +Q9VPH6 LP10922p 8.04 4 5 0 93521.5257 4 +Q9VPJ0 RE58433p 16.84 6 7 2 270438.529 7 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 58305.07278 3 +Q9VPK3 AT24407p 12.35 5 7 1 275029.2988 7 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 95668.744 4 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 5221606.04747 82 +Q9VPP7 AT13539p 22.7 4 4 4 130194.633 4 +Q9VPR1 GH02075p 15.14 2 5 2 5306.7803 1 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 2127.923 1 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 909556.62546 10 +Q9VPU4 FI17537p1 5.33 2 2 2 2194.442 1 +Q9VPU6 Galectin 5.06 2 2 2 51876.773 2 +Q9VPX0 GH26159p 6.97 4 4 4 21300.396699999998 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 1064065.9613 13 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 7414470.3129 71 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 5393.60927 3 +Q9VPY7 LD42035p 2.2 1 1 1 3811.89 1 +Q9VPZ5 GH04232p 25.41 14 33 14 743774.7879 32 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 9948.962200000002 2 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 12345586.0286 105 +Q9VQ83 RE23541p 7.91 3 3 0 21723.0237 2 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 210872.74779999998 6 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 7226572.4712 56 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 4659046.0023 24 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 260890.8498 13 +Q9VQE0 dynamin GTPase 20.82 15 21 15 516521.9568 19 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 52151.9029 7 +Q9VQI6 LD25952p 19.75 7 9 7 121926.6899 8 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 950932.89075 24 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 57802.392 3 +Q9VQK7 LD45152p 6.68 5 5 5 41163.5979 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 5282.8667 1 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 2538546.3989999997 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 2124188.05328 19 +Q9VQQ6 FI18122p1 35.15 14 21 1 752637.72754 21 +Q9VQR0 FI04421p 4.49 2 3 2 103128.0374 3 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 6227322.7321999995 58 +Q9VQR5 IP10807p 19.06 4 6 4 80682.98449999999 5 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 246058.1495 12 +Q9VQT7 RH15675p 14.63 1 2 1 5253.202 2 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 635121.0865 13 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 185566.43600000002 6 +Q9VQX3 HL05328p 18.38 6 6 6 90953.4488 6 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 10954.82445 4 +Q9VR03 AT19250p 4.57 2 2 2 3842.4666 1 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 253903.75864000001 10 +Q9VR30 RE58324p 25.27 9 9 9 361667.336 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 444050.59640000004 10 +Q9VR62 GM14138p 5.53 3 3 3 19208.844 2 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 39377.691999999995 2 +Q9VR79 LD43683p 35.86 11 30 11 1975405.2321 28 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 8652.908800000001 2 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 2985599.8005999997 31 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 1207856.2427 11 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 106235.1175 9 +Q9VRF7 GH09530p 19.59 5 13 0 390182.61929999996 10 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 114855.63930000001 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 325758.3372 14 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 3684874.4449799997 36 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 233724.6983 12 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 68875.218 2 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 8587.783 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 17012914.61007 95 +Q9VRL1 GEO06356p1 53.1 8 42 2 3452472.819 34 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 3362.38 1 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 14817.870499999999 2 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 86001.573 4 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 2800530.8678 44 +Q9VRP3 AT08565p 27.53 8 17 8 913503.0571999999 14 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 151489.22 8 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 2096570.5644 26 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 331236.8184 7 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 253758.2427 8 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 501372.3976 14 +Q9VS11 lysozyme 16.35 4 4 4 83130.917 3 +Q9VS44 Uncharacterized protein 9.82 3 3 3 51256.8606 3 +Q9VS84 FI03225p 11.14 10 13 10 415840.6614 13 +Q9VSA9 CG7409 79.87 15 73 15 11613390.03335 60 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 326236.74057 11 +Q9VSC5 GM09977p 60.12 14 32 14 958566.5707 26 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 241168.805 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 455793.7856 8 +Q9VSH5 IP09562p 4.89 1 1 1 5303.4097 1 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 179994.46500000003 3 +Q9VSI1 LD21269p 7.99 5 5 5 71084.629 4 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 15016.454099999999 3 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 2032852.09045 25 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 3455060.6541 28 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 3909227.7368 35 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 265669.86600000004 8 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 89801.464 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 40140.2698 4 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 2475.1025 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 1198444.6979 17 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 3709564.90226 61 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 138807.509 5 +Q9VSR5 GM03767p 52.2 8 27 8 2673970.7779699997 24 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 166511.2199 9 +Q9VST4 arginine kinase 6.96 3 3 3 15608.406599999998 3 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 5942677.67093 46 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 1607227.842 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 113562.323 3 +Q9VSW7 LD21662p 3.33 1 1 1 8563.107 1 +Q9VSX2 IP01061p 40.0 9 17 9 573964.2259000001 11 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 12735738.60923 52 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 409578.2197 13 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 2554.50276 2 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 928934.24 16 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 11566.288299999998 2 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 2276792.3400999997 26 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 34942.9816 2 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 18180.066 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 60990.359 2 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 99736.4534 5 +Q9VTA8 RE35371p 7.59 2 2 2 6133.2726 2 +Q9VTB0 LD35289p 21.62 8 11 8 357946.504 10 +Q9VTB3 Guanylate kinase 51.07 13 30 13 1895984.76518 28 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 4206887.76227 34 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 99950.7472 5 +Q9VTC3 GH07049p 9.72 4 5 4 165378.807 5 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 47502.3549 3 +Q9VTL0 FI19917p1 7.45 3 3 3 149103.31100000002 3 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 141654.649 3 +Q9VTT2 LD20590p 7.93 4 4 4 52870.029 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 3610721.44606 30 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 446063.1688 9 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 316782.46499999997 6 +Q9VTW1 RE15265p 11.2 5 5 0 497596.672 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 137735.49719999998 7 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 4939686.5165 55 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 689627.6642 19 +Q9VU04 RE60105p 13.85 4 5 4 156026.9744 5 +Q9VU13 LD45603p 9.17 4 12 0 392196.34859999997 12 +Q9VU34 LD45758p 0.89 1 1 1 1703.9965 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 17833651.9029 69 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 81952.8005 4 +Q9VU38 Adenosine kinase 35.94 8 13 0 120773.6799 12 +Q9VU45 LD27581p 21.48 5 15 5 912758.7196 14 +Q9VU53 Capricious, isoform A 5.0 3 3 1 23502.2495 2 +Q9VU75 RH45712p 61.73 12 38 12 781861.39 32 +Q9VU92 Uncharacterized protein 29.76 7 16 7 355776.746 14 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 7992479.37847 91 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 31484.419280000002 5 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 2952605.3332 31 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 2722.539 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 101477.8847 5 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 427331.00200000004 4 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 109913.5495 8 +Q9VUQ7 RE36966p 10.4 6 11 6 136964.3022 11 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 66887.2105 5 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 3474.70517 3 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 29538.634000000002 2 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 237786.70160000003 9 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 447870.36 5 +Q9VUZ8 GEO07442p1 22.56 2 2 2 2547.6116 1 +Q9VV13 GEO08383p1 10.71 1 5 1 414180.561 5 +Q9VV31 Uncharacterized protein 19.35 2 5 2 159442.291 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 430637.13049999997 12 +Q9VV40 Golgin 104 1.42 1 1 1 348.88022 1 +Q9VV42 Fat body protein 2 83.09 26 202 0 54524690.7269 174 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 33352557.27372 217 +Q9VV47 Fat body protein 2 45.17 9 18 7 1988750.7455 17 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 2503301.13065 46 +Q9VV75 AT02348p 82.05 29 251 29 30310884.54205 196 +Q9VV76 Syntaxin 8 37.07 6 10 6 197872.62540000002 9 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 92508.01665 7 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 232095.98559999999 9 +Q9VVB5 LD46723p 30.59 16 56 1 14482.0151 3 +Q9VVB7 FI02842p 43.95 14 57 1 14431.955899999999 3 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 316043.9617 7 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 2253369.49538 45 +Q9VVC8 LD23434p 15.41 8 9 8 130021.63489999999 7 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 640508.92639 25 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 17025156.0343 30 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 902005.89304 12 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 95376.234 3 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 385925.5419 12 +Q9VVL5 FI11325p 14.55 5 7 5 170876.82450000002 7 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 21955621.25571 152 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 69507.33600000001 4 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 54299.268299999996 3 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 203287.7713 10 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 166434.5065 9 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 2840136.3619500003 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 13779713.525929999 60 +Q9VVU2 GEO07453p1 48.32 9 29 8 2415803.1932 28 +Q9VVV6 LD45843p 6.76 5 5 0 37674.10307 5 +Q9VVW7 Canopy b 16.74 4 9 4 296420.1455 9 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 20420.550000000003 2 +Q9VVY7 FI20154p1 10.79 14 19 0 387776.49926 18 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 97565.05322 8 +Q9VVZ6 GEO09638p1 25.95 2 3 0 7383.361199999999 2 +Q9VW00 GH28721p 11.46 4 10 4 415173.2597 9 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 20886.93634 3 +Q9VW17 RE58036p 47.25 6 16 1 255479.63178 15 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 12221.9667 2 +Q9VW34 FI03450p 19.96 11 20 11 816019.2215 18 +Q9VW40 LD31235p 9.3 3 3 3 47499.986 3 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 18613.0445 2 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 92960.2064 8 +Q9VW57 Grasp65 12.61 6 9 6 242263.34586 9 +Q9VW58 LD33138p 35.32 6 11 6 125651.6302 10 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 1739194.3773999999 30 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 4585211.54884 57 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 15755917.003899999 121 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 36716.1235 4 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 230714.37840000002 5 +Q9VWD0 GH23568p 16.89 6 14 6 824534.4214 12 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 14895863.817540001 89 +Q9VWD5 LD35087p 13.54 5 5 5 45830.8459 5 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1261390.85902 39 +Q9VWF0 LP01149p 36.93 9 17 9 139107.1411 13 +Q9VWG1 LD37169p 71.04 12 73 2 350825.7783 12 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 21911.192 2 +Q9VWJ3 LD05272p 8.22 1 2 1 29943.078 1 +Q9VWL4 GH07340p 13.41 7 9 7 188254.5974 9 +Q9VWP2 RH57257p 57.02 12 25 12 1843479.7541999999 23 +Q9VWQ3 LD35981p 6.96 3 3 0 97151.34599999999 3 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 188763.6404 8 +Q9VWS1 Houki 20.44 5 8 5 401843.66673 8 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1270603.1304000001 28 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 31038.7136 5 +Q9VWU0 FI18411p1 5.87 2 2 2 24134.955 2 +Q9VWV6 Transferrin 70.05 43 231 43 25464973.33154 209 +Q9VWW2 GH13094p 20.52 10 18 10 79560.39051 12 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 20085.389499999997 2 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 419750.8747 8 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 28998.844 3 +Q9VX26 Chascon, isoform A 1.62 2 2 0 3892.9788 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 10229517.2464 77 +Q9VX69 FI01450p 18.0 6 23 5 563725.16895 11 +Q9VXA3 LP21163p 17.0 12 21 12 532231.60473 20 +Q9VXA9 RE04047p 6.57 2 3 2 83870.06999999999 3 +Q9VXC1 MIP06432p1 31.28 5 11 3 885379.6166 10 +Q9VXC9 trypsin 52.99 10 17 10 1500902.3033 14 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 156057.87868 4 +Q9VXF9 AT13091p 26.2 10 17 10 413895.36838 17 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 172883.54640000002 6 +Q9VXG9 GH25683p 9.78 2 5 2 35500.1329 3 +Q9VXH4 RE16337p 28.43 2 3 2 296061.664 3 +Q9VXH7 FI17510p1 10.63 3 5 3 342532.6144 5 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 1849165.0182 33 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 10741505.8802 44 +Q9VXJ7 GH03748p1 9.2 9 11 9 52637.369829999996 7 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 553184.0744 13 +Q9VXM4 LD12946p 62.9 13 34 13 1905190.74783 30 +Q9VXN1 LD03728p 12.68 4 4 4 27765.1962 3 +Q9VXN3 LD07988p 29.8 10 15 10 210457.0994 15 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 17061.9152 2 +Q9VXP3 GH05406p 8.26 5 5 5 22885.5397 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 25957.4116 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 20694.565499999997 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 2525647.0198 49 +Q9VXR9 FI03680p 15.76 6 6 6 161430.23200000002 6 +Q9VXV1 RH52220p 4.39 1 1 1 9408.135 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 433628.1411 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 2505943.98569 27 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 447212.654 14 +Q9VY05 GH11762p 12.84 8 13 8 986625.8115 11 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 117516.584 8 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 310445.387 7 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 2051.86 1 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 12167.854 1 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 168870.47960000002 5 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 197468.1088 5 +Q9VY76 AMP deaminase 10.25 8 10 0 70508.23684 9 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 665889.5815 12 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 156126.4037 9 +Q9VY92 GEO07753p1 73.91 8 44 8 7071151.4236 43 +Q9VYA1 RE18811p 3.87 1 1 1 10137.515 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 27167.1976 2 +Q9VYF0 GM09012p 16.04 4 6 4 144009.6024 5 +Q9VYG8 CG15717-PA 10.71 3 5 3 71623.7145 4 +Q9VYJ1 FI12805p 5.04 4 4 4 42335.9875 4 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 99576.8328 3 +Q9VYM0 CG2555-PA 13.2 2 3 1 3419.58297 2 +Q9VYN1 protein kinase C 0.84 2 14 1 7054949.5643 12 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 4003.376 1 +Q9VYS2 GH09980p 9.97 8 11 8 56919.2943 9 +Q9VYT0 RE04130p 37.34 9 17 8 588964.1499 17 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 28174.7523 4 +Q9VYT3 FI23714p1 5.58 7 7 7 32984.5893 6 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 101558.62569999999 6 +Q9VYU9 RH17287p 56.97 9 18 9 803145.99573 17 +Q9VYV4 Amun, isoform A 8.0 3 5 3 162792.368 5 +Q9VYV6 GEO09033p1 28.07 3 3 3 20693.3933 2 +Q9VZ00 FI19420p1 18.03 16 21 0 256600.76097 18 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 3062499.5755000003 33 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 751022.088 15 +Q9VZ24 GEO11412p1 46.9 8 47 8 7483906.59017 47 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 29158.316399999996 3 +Q9VZ34 RH72958p 4.69 2 3 2 33050.167 3 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 57519.114 3 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 472227.94326000003 10 +Q9VZ66 SD22308p 42.86 5 9 5 360288.2792 7 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 81665.2608 6 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 87676.299 3 +Q9VZE4 RE70333p 20.43 10 14 10 526742.3779 12 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 569672.9695 8 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 88808.81 2 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 849399.3041300001 32 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 6123803.3627 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 393225.9925 10 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 7334735.19202 46 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 38824.4827 3 +Q9VZI1 Transgelin 68.09 12 84 1 9207776.34744 71 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 80234.325 3 +Q9VZJ2 GH27759p 14.19 6 10 6 455543.51084 9 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 52797.09 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 412633.27364 24 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 48992.5249 5 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 154961.1785 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 442410.14430000004 10 +Q9VZV2 Chitinase 7 4.64 5 6 5 67866.2688 6 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 38621.269 4 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 20077.2643 4 +Q9VZX6 LD06441p 21.78 7 9 7 419935.8321 9 +Q9VZY0 LD45195p 11.48 3 4 3 184365.778 4 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 10433.280200000001 2 +Q9VZZ5 GEO12033p1 34.27 6 8 6 843115.884 8 +Q9VZZ6 CG16985 protein 38.26 5 11 5 710549.6703 11 +Q9W022 GEO01508p1 62.68 8 41 8 8410995.54476 40 +Q9W073 RH22148p 19.41 3 3 3 53492.3903 3 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 5928277.46237 23 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 1759697.6143 14 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 388738.04689999996 11 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 233127.99985 6 +Q9W0A8 FI01658p 25.63 7 26 7 1283132.6115 26 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 1124882.0204 24 +Q9W0C3 GH11843p 38.78 11 19 11 607084.4749 17 +Q9W0D3 GH15728p 1.29 2 2 2 3820.3912 2 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 66233.82 1 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 71454.2106 4 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 975249.1254 21 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 1347373.00336 26 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 68722.7253 5 +Q9W0J9 GH07301p 34.47 8 12 7 308742.3497 11 +Q9W0K9 LD10220p 23.21 4 4 4 33473.7383 4 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 18005.1288 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 553810.2742999999 14 +Q9W0M5 Protein DPCD 14.41 3 3 3 14346.692200000001 3 +Q9W0N6 LD27967p 9.57 3 3 3 31328.88242 3 +Q9W0P4 GEO05053p1 8.13 1 1 1 37630.465 1 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 34680.778399999996 4 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 39113.09 1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 303286.45434 19 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 51443.37456 4 +Q9W0U0 glycerol kinase 3.9 2 2 0 28856.743000000002 2 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 451580.79540000006 11 +Q9W0X1 GH15894p 6.31 3 3 3 108014.714 3 +Q9W0X2 GEO07322p1 28.1 3 4 3 156817.766 3 +Q9W0X3 LD24657p 22.81 4 4 1 173209.345 4 +Q9W0Z5 LP09747p 22.95 9 13 9 227166.3487 10 +Q9W114 IP05433p 28.33 3 4 3 55518.626449999996 3 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 6612888.09238 53 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 1195286.2774 17 +Q9W136 Uncharacterized protein 19.81 4 18 4 508549.24955 15 +Q9W140 Regulatory protein zeste 3.53 2 3 2 58625.0836 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 34323.1975 4 +Q9W158 LD36772p 14.33 5 7 5 302043.058 6 +Q9W199 GEO07594p1 21.29 4 5 4 316850.326 5 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 5622805.5346 31 +Q9W1C8 LD24355p 19.02 8 8 8 95375.78869999999 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 71227.575 5 +Q9W1F2 FI07217p 5.93 2 3 2 15244.972500000002 3 +Q9W1F7 IP15825p 34.97 12 28 12 2609317.8237 24 +Q9W1F8 GEO08248p1 23.31 4 8 4 511365.206 7 +Q9W1G7 LD21576p 34.32 13 22 13 848170.4623 20 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 298438.5381 11 +Q9W1H6 GH04238p 13.85 3 9 3 363916.84056000004 9 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 6278170.1808 45 +Q9W1I8 LD03592p 39.08 9 25 9 511133.08798 18 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 39015.37275 6 +Q9W1L8 GH11818p 2.66 1 1 1 24402.799 1 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 64849.96135 6 +Q9W1N3 Levy, isoform A 23.85 3 17 3 2472952.6637 16 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 4925.2676 1 +Q9W1R0 RH49821p 4.13 2 2 2 19361.8 2 +Q9W1R3 Golgin-245 12.09 17 20 17 237973.38508 20 +Q9W1V8 CG9893 protein 39.58 8 16 8 414700.9741 15 +Q9W1W4 RE45066p 18.58 6 11 6 303381.21859999996 10 +Q9W1X5 GH04942p 20.82 28 39 4 1948761.60936 36 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 11559226.4784 72 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 1144922.035 15 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 289117.8126 12 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 134438.9037 8 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 588160.22957 22 +Q9W257 RH13652p 6.99 2 4 2 202518.99599999998 4 +Q9W258 Babos, isoform A 33.67 7 13 7 1162913.659 13 +Q9W259 FI23916p1 8.95 4 5 4 141345.5987 5 +Q9W260 GH03113p 15.4 8 12 8 320973.1141 12 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 120177.0334 5 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 285691.8027 24 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 23163.5174 3 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 91654.0353 4 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 1289756.6946 18 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 26243.340500000002 2 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 61107.617999999995 3 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 318637.37653 15 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 120993.30549999999 4 +Q9W2L6 RH02475p 33.73 20 58 20 5955506.8586 53 +Q9W2M0 LD23155p 22.1 15 17 15 333445.35404999997 15 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 16001838.5086 50 +Q9W2M9 FI16623p1 14.71 2 2 2 251179.21745 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 2716.9213 2 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 398017.624 5 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 536214.3125 11 +Q9W2V2 FI20035p1 5.6 3 3 3 10427.0901 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 34262485.03481 89 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 538504.2637 19 +Q9W2Z9 RE65233p 4.81 1 2 1 45023.473 2 +Q9W306 GEO08256p1 25.62 3 4 3 13814.2309 3 +Q9W308 GH05731p 16.18 2 5 2 384966.251 5 +Q9W309 GEO08445p1 33.95 7 11 7 641206.22 11 +Q9W314 GH14088p 9.82 4 5 4 120387.5325 5 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 161775.27360000001 8 +Q9W330 Phosphotransferase 29.76 15 32 2 3876020.5747 31 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 86569.35149999999 2 +Q9W337 GH19985p 44.95 7 14 7 824938.6255999999 14 +Q9W370 GEO12084p1 38.52 4 10 4 296180.1847 9 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 17474.410900000003 2 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 15987.983 2 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 2073342.2983 35 +Q9W396 FI06908p 14.17 4 7 4 276777.2662 6 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 151588.0846 5 +Q9W3C3 LD10016p 12.94 6 8 6 183776.6709 6 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 45902.873999999996 3 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 421517.95246 11 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 150719.0264 3 +Q9W3H4 LD36273p 66.8 13 29 13 1456428.9880600001 25 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 138418.0203 7 +Q9W3J6 FI06457p 8.64 3 4 3 29922.66436 3 +Q9W3K6 LD35927p 4.99 4 5 4 105975.162 4 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 995394.4924999999 23 +Q9W3L4 GH20802p 35.02 10 23 10 1189934.8114 21 +Q9W3M7 RNA helicase 14.07 10 15 9 79989.49642000001 9 +Q9W3M8 LD34211p 47.74 8 17 8 916156.6664 17 +Q9W3N1 RH59310p 7.17 2 2 2 5787.66 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 414018.657 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 2824180.17504 37 +Q9W3Q0 FI07418p 23.39 5 14 4 25011.7892 3 +Q9W3Q1 GM14286p 8.84 3 3 3 25781.5309 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 347287.61523 12 +Q9W3S3 LP10445p 15.68 2 3 2 7152.59944 3 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 136602.40227 6 +Q9W3T9 GM01152p 45.38 9 16 9 823034.7356 16 +Q9W3U9 CG14434-PA 32.62 6 13 0 198124.4191 9 +Q9W3V2 FI19713p1 4.82 4 4 4 23413.172 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 12265.2054 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 69933.65639999999 4 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 6216185.7516 57 +Q9W3X8 RH42690p 10.73 4 5 4 24912.898 4 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 610451.71013 20 +Q9W3Z4 GH18625p 3.75 1 1 1 3541.0903 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 3727534.85756 50 +Q9W403 LD24968p 9.21 5 7 5 65857.9971 7 +Q9W404 GH10714p 31.03 9 12 8 207698.12535 10 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 50991.1954 3 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 1167743.3453 24 +Q9W425 Rabconnectin-3A 1.34 5 5 5 26234.691959999996 4 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 5288958.2148 60 +Q9W461 LD23868p 18.22 7 8 7 120560.9185 8 +Q9W482 Lin-52, isoform A 33.12 4 11 4 133751.957 8 +Q9W483 GH18971p 5.79 2 3 2 58279.361999999994 3 +Q9W486 LD13361p 5.27 3 3 0 46093.276 3 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 118553.7727 4 +Q9W4A0 GH11193p 19.8 4 5 4 224760.049 5 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 127071.1494 8 +Q9W4C2 lysozyme 17.11 3 3 3 64655.6872 3 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 185507.63666 8 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 30027.1333 4 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 2352734.7410999998 30 +Q9W4N8 LD30122p 55.76 15 77 0 6688593.86394 70 +Q9W4U2 RH09070p 41.37 8 24 8 1127527.40219 23 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 11367.938 2 +Q9W4W5 RE47284p 11.15 4 4 4 227884.362 4 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 338743.98342 20 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 549061.7509999999 13 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 18494.438000000002 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 9991.482 3 +Q9W503 RH61816p 38.61 11 14 11 469391.9148 14 +Q9W5B4 GH18858p 31.97 10 21 10 741070.4719700001 18 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 27720.556 2 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 10758.4933 2 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 108954.917 5 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 143582.421 6 +Q9W5W7 GH19483p 2.57 2 3 2 26230.0324 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 5471775.0843 38 +Q9W5X0 LD21953p 26.87 6 25 1 171382.24300000002 4 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 153426.76919999998 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 139605.46347000002 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 6375252.25083 44 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 146156.0576 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 802170.3732 17 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 859544.238 15 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 12082974.7826 98 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 446113.2849 23 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 377572.79504 19 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 11850532.73482 92 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 14005.46 2 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 61619.959800000004 7 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 2187410.18667 37 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 253780.85144 13 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 2917065.5905 41 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 10010321.74706 78 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 2286.0369 1 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 200353.69496 4 +R9PY51 Uncharacterized protein 34.95 6 48 6 4905730.8272 27 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 9784267.51526 106 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 367278.1689 12 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 300940.888 10 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 121337.9073 2 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 232793.68099999998 6 +X2JB48 ADP/ATP translocase 56.86 20 109 1 12757376.08234 101 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 899394.7309 30 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 93517.38560000001 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 24264877.2245 111 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 20256.29 1 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 21858.806 2 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 9185.683 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 14852.09 1 +P10674 Fasciclin-1 49.69 30 164 1 2489.9268 1 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 4519.051 1 +Q08605 Transcription activator GAGA 1.2 1 1 0 30906.996 1 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 9276.227 1 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 3028.4963 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 90532.99130000001 2 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 58014.409 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 6982.6035 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 5676.148 1 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 33121.748 2 +Q9W568 Protein halfway 3.11 1 1 0 1429.4293 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 3969.8792 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 6542.301 1 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 59030.6951 5 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 1737.4678 1 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 31572.174 1 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 40511.074 1 +A1Z7M0 Space blanket 2.86 1 1 1 23400.209 1 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 41273.5137 2 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 208677.41 6 +B5RJS0 IP20241p 1.96 2 2 0 376.87823 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 8586.666 1 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 18819.629 2 +E1JJM0 FI20063p1 22.76 13 20 0 498551.07824 18 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 7952.716 1 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 21218.37 1 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 12413.752 1 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 12972.543000000001 2 +Q0E8R1 FI07211p 34.57 13 35 0 149506.798 2 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 160110.15 10 +Q7JWH6 RE61424p 5.65 2 2 2 6917.834 1 +Q7JXA2 LOBE 5.52 2 2 2 4248.8193 1 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 156837.583 3 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 3285.0623 1 +Q7KVW1 RE73736p 2.8 2 2 0 31708.807 2 +Q7PLV6 FI02158p 0.85 1 2 1 4271.8129 2 +Q8I062 GH23305p 83.33 21 152 1 41011.766 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 32747.4974 2 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 7080.519 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 8977.37884 2 +Q8MPN6 Serpin 4 27.18 9 11 0 16036.832 1 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 36077.766 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 2401.0793 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 15092.535399999999 3 +Q9VKC1 IP16805p 4.28 1 1 1 19171.05 1 +Q9VM94 Homer, isoform B 49.62 17 57 1 21207.424 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 63402.938 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 94115.90607 4 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 66920.266 1 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 22802.142 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 395826.3284 4 +Q9VTY1 LD40136p 5.69 2 2 2 36427.032400000004 2 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 2856.874 1 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 20637.942 2 +Q9W2N5 GH10162p 3.47 2 2 2 54303.4552 2 +Q9W362 La-related protein 7 1.85 1 1 1 439.08618 1 +Q9W525 LD08195p 3.8 2 2 1 27012.445 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 19310.6342 2 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 0.8 1 1 1 524.77716 1 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 55242.415 2 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 20002.392 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 12846.625 1 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 36302.411400000005 2 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 12435.48475 2 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 73943.0106 4 +E1JJ83 Os-C, isoform B 16.34 2 2 1 4084.64725 2 +M9MRG5 Taiman, isoform F 0.94 2 2 0 31044.870000000003 2 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 258948.90073 17 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 6496.1714 1 +O46231 FI18705p1 65.94 22 77 1 92781.945 1 +Q6IDE2 GH07226p 2.0 1 1 1 8473.336 1 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 5200.8716 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 11306.0193 2 +Q7K527 Tetraspanin 4.61 1 1 1 6672.7476 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 228222.62 1 +Q8IQ80 GH06117p 2.97 2 2 0 125304.81899999999 2 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 71486.7732 3 +Q9VHW5 LD38634p 17.32 2 3 2 23072.3004 3 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 68097.531 2 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 35171.566 1 +Q9VVG5 RH19679p 14.44 1 3 1 1224445.8604 3 +P09956 Regulatory protein zeste 2.96 2 2 0 3420.5066 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 7980.3555 1 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 11415.524 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 12061.491 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 54217.32 1 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 16948.871 1 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 34687.312 1 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 16773553.76149 141 +C1C3E7 MIP09364p 61.25 22 85 1 776.659 1 +E1JH70 Kank, isoform E 2.57 2 2 0 6068.37026 2 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 3372.1233 2 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 28100.758 1 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 4444.2646 1 +Q8IRM1 Uncharacterized protein, isoform E 20.86 4 7 1 362.55292 1 +Q9VBS0 CHK domain ov2 4.89 2 2 2 31040.879 2 +Q9VCH9 LD07883p 8.66 2 2 2 38056.379499999995 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 11112.063199999999 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 44981.2759 2 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 10967.265 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 114678.0917 4 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 165462.88 2 +Q9VMY3 FI19613p1 1.5 1 1 1 8271.212 1 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 8637.8444 2 +Q9VS80 FI17864p1 2.34 1 1 1 4184.9126 1 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 3010.8901 1 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 15983.783 1 +Q9VZF0 LD44732p 7.73 2 2 2 13616.082900000001 2 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 2504.4548 1 +Q9VFR1 Protein Abitram 14.95 2 2 2 3016.9197 2 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 17675.861 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 1210573.9213999999 4 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 50390.305 1 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 4756.3506 1 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 3709.9658 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 161141.5941 5 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 7363.9751 2 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 11750.001 1 +Q0KHQ1 GEO13361p1 24.44 2 2 2 84757.8272 2 +Q4QPR8 GEO10187p1 9.76 1 2 1 66738.564 2 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 14683.348000000002 2 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 29479.4704 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 10214.7046 2 +Q9VV37 GEO13385p1 10.1 1 6 1 105363.226 3 +Q9VVX6 BET1 homolog 9.4 1 1 1 39024.59 1 +Q9W152 RH33060p 16.9 1 1 1 2076.4993 1 +P48613 Protein tipE 3.98 2 2 2 11186.5703 2 +Q9VGW1 Cadherin-86C 1.24 2 2 0 7192.9861599999995 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 165334.6355 3 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 15207.189 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 221425.8428 4 +O76895 Arginase 7.69 2 2 2 6646.3479 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 53886.899999999994 2 +Q9VAI3 FI06539p 10.08 1 1 1 9085.602 1 +Q9VB09 IP04131p 12.1 2 2 2 46276.897 2 +Q9VHN8 LD37279p 3.43 1 1 1 496.66827 1 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 140932.78 2 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 35504.122 2 +Q9W1X6 GH06673p 8.33 2 2 2 29858.891000000003 2 +Q9W5E7 LP07417p 11.4 1 2 1 11753.66 2 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 46852.706099999996 4 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 2022.6185 1 +A1ZAU6 FI05912p 1.83 1 1 0 1901.3667 1 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 123709.004 3 +Q7K3Z8 GH01208p 2.35 1 2 1 17041.477 2 +Q9VAN8 FI15955p1 6.46 1 1 1 12452.819 1 +Q9VLL4 FI23523p1 4.52 2 2 2 10598.77 2 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 10936.286 1 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 30184.262600000002 4 +Q9W542 LD07342p 1.62 1 1 1 6801.5454 1 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 2593.9126 1 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 50574.998 2 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 1619.0743 1 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 16699.4347 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 23476.242 2 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 33082.086 2 +A1Z840 Cdc2-related kinase 4.13 2 3 2 47441.0 1 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 8369.334 1 +Q9VXD7 GH04692p 2.55 1 1 1 419.52853 1 +Q9W3S4 LD46272p 3.11 1 1 1 2719.5754 1 +A8JQX3 Nocturnin 1.87 1 1 1 5328.625 1 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 13666.702 1 +Q9VUL1 CTP synthase 1.59 1 1 0 17209.256 1 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 1497.0026 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 661.6135 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 170976.60754 11 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.94 1 1 0 495.50174 1 +O76857 BCL7-like 13.64 2 2 2 25942.368000000002 2 +Q7JY89 RE35124p 15.0 1 1 1 2123.5068 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 69545.42 2 +A8JUP7 Serine protease Hayan 2.2 2 3 2 24587.422599999998 2 +P07664 Serendipity locus protein delta 4.16 2 2 2 22780.057999999997 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 72314.595 2 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 3468.318 1 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 2030.1233 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 1062383.4485000002 4 +Q8IQU7 825-Oak 26.36 2 3 0 7929.2914 2 +Q9VGM4 LD28119p 6.76 2 2 2 3665.7764 2 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 64125.4787 11 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 7013.2207 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 5601.644 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 10567.255 1 +Q962I2 small monomeric GTPase 59.39 10 28 1 219435.615 2 +Q9VSK1 GH09510p 2.72 2 2 2 651.3657 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 212223.49 2 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 4122.3305 2 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 345586.4317 13 +Q29R09 LD28546p 5.79 2 2 2 3934.0346 2 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 985.5188 1 +Q8SXC0 GH10306p 6.03 2 2 2 52931.445439999996 2 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 3.7 2 2 2 1005.25543 1 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 2349.8623 2 +Q9W0A9 GM02612p 3.06 1 1 1 2301.8254 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 16511.438 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 135158.4993 4 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 26021.115 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 6458.986 1 +Q9VV29 GEO12576p1 9.68 1 2 0 80559.616 2 +P45884 Attacin-A 5.36 1 2 0 144249.91 2 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 526.61566 1 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 3519.0251 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 29342.916 1 +Q9VV27 MIP11526p 15.25 2 2 2 65002.306000000004 2 +O76324 Discs overgrown protein kinase 2.27 1 1 0 1895.4978 1 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 6319.256 1 +Q9VFL9 FI07901p 6.08 2 2 2 4476.207 2 +A0A0B4JCW7 TBC1 domain family member 30 0.66 2 2 0 441.77982 1 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 28951.829 2 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 82881.17790000001 3 +Q9VEQ0 Xylulose kinase 1.99 1 1 1 443.48367 1 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 16593.166 1 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 59078.383 1 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 4825.52 1 +Q2PDU0 GEO11169p1 9.84 1 1 1 11456.531 1 +Q9VF46 GH25158p 7.34 2 3 2 45259.206399999995 3 +Q9VSD8 IP10160p 6.67 2 2 2 9368.053 2 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 16659.488 1 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 16886.676 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 47727.923 2 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 4006.5845 1 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 10574.738 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 598.78705 1 +A8JNU1 adenylate cyclase 1.02 1 1 0 4600.188 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 17751.557 1 +Q7JW46 RE25483p 17.0 1 1 1 876.8523 1 +Q7K010 Tetraspanin 5.0 1 2 1 13318.368 2 +Q9VUR4 FI11905p 11.6 4 9 1 18464.758 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 9444.7207 2 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 2773.008 1 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 5412.1045 1 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 38238.849 2 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 52854.4698 3 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 1836.5049 1 +A8JNV2 Uncharacterized protein 10.71 1 2 1 12794.6374 2 +Q9VRX7 LD29573p 1.32 1 1 1 3968.4048 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 46403.504 1 +O46099 EG:8D8.2 protein 0.78 1 1 1 1899.0558 1 +Q8SWU4 RE25571p 17.3 6 12 1 31061.254 1 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 16258.5064 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 70362.879 2 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 779.8328 1 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 23550.865 1 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 42383.453 1 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 977.2126 1 +Q8IRD6 Dro4 protein 33.8 2 2 2 55739.246 2 +Q8SXW3 GV1, isoform B 4.44 1 2 0 34087.998 2 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 25555.816 2 +Q7JWE2 GH09427p 3.96 1 1 1 4195.7383 1 +Q8IRN0 FI06485p 10.84 2 2 2 17566.599000000002 2 +Q9VHS6 Copper transport protein 5.75 1 1 1 407.6929 1 +D8FT19 MIP22288p 2.35 1 1 0 5292.2974 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 13595.3204 2 +Q8ML92 Protein aveugle 7.55 1 1 1 20301.67 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 3.59 1 1 0 616.5867 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 3657.1672 1 +Q9VT15 GH14734p 2.78 1 2 1 52076.074 2 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 15252.73487 2 +A1A750 GEO11067p1 18.81 2 2 2 44736.3182 2 +Q9VF83 LD33178p 2.73 1 1 1 6218.9707 1 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 4278.957 1 +Q9NHV9 Protein vav 3.66 3 3 0 6463.6226 1 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 7327.462 1 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 954.0683 1 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 71999.06 3 +M9PCK0 Decima, isoform D 4.29 1 1 0 11450.285 1 +Q9VPA9 LD24894p 0.92 1 1 1 9433.102 1 +Q9VSS4 IP05455p 10.32 1 1 1 15412.739 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 45121.299 2 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 13868.463 1 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 4523.1278 2 +Q7KV26 Kinase 2.6 1 1 1 2233.6025 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 4666.5215 1 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 5359.8154 1 +Q02427 RNA-binding protein 1 29.86 4 5 1 241858.31 1 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 6500.13 1 +Q9VCQ7 LD40758p 1.61 1 1 1 418.13647 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 8270.2438 2 +Q9VDL4 LP04613p 2.72 1 2 1 5702.8454 2 +Q9VQ52 GH27779p 3.93 2 2 1 42425.5331 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 68183.59700000001 2 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 5585.9467 2 +Q9VGE8 Tachykinins 6.57 2 4 0 25155.69296 4 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 40014.827000000005 2 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 39791.6 2 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 21499.07 2 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 1571.8483 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 10778.886 2 +Q7YU81 Protein charlatan 1.48 2 2 0 10911.4825 2 +Q9VHV3 FI02011p 3.75 2 2 2 18152.1293 2 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 3738.564 1 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 11382.6367 2 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 8161.3433 1 +Q9V3A6 Ero1-like protein 2.28 1 1 1 3205.0425 1 +Q9VIQ4 GH03980p 10.75 2 2 2 33172.4225 2 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 154490.33000000002 2 +Q7K8Y3 IP16419p 26.28 9 11 0 771250.4167 9 +Q8STG9 DSec61alpha 1.89 1 1 1 26844.518 1 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 36994.7776 3 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 11192.033 1 +P22812 Protein Tube 3.9 2 2 2 2944.0264 1 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 98538.664 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 26463.357 2 +Q7JV39 GH01142p 5.05 1 1 1 7226.6333 1 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 16036.662 2 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 38054.605 1 +Q27367 Protein croquemort 4.48 2 2 2 17672.793 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 7696.133 1 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 2208.6758 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 2344.606 1 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 14608.1743 2 +Q9W4F9 IP01388p 3.65 2 2 0 17171.968 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 2401.6555 1 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 2246.1003 1 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 960.436 1 +F0JAQ9 MIP27169p 2.34 1 1 0 1836.9958 1 +P18289 Transcription factor Jra 3.81 1 1 0 2052.0303 1 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 25912.516 1 +Q9VJ77 FI24106p1 2.07 1 1 0 736.0987 1 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 26102.432 1 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 4533.4976 1 +Q9VR55 LD29159p 8.71 1 4 1 59031.41 3 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 8700.05 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 68599.1997 5 +P54194 General odorant-binding protein 84a 6.86 1 1 1 10947.264 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 7409.717 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 53699.6691 2 +Q8IR92 Uncharacterized protein, isoform A 6.03 6 6 0 654.4577 1 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 2316.8552 1 +Q7KVT8 Orion, isoform B 1.7 1 1 0 423.32974 1 +Q9VV26 GEO12049p1 6.84 1 2 1 183332.81600000002 2 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 681.6052 1 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 1741.171 1 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 12953.999 1 +Q9VX14 RH64870p 8.82 2 2 1 12243.2899 2 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 57345.218 2 +Q8MKL1 UPF0598 protein CG30010 7.78 1 1 0 373.70123 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 17094.315000000002 2 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 11507.243 1 +A1ZAG3 Protein G12 2.9 1 1 1 48964.406 1 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 6354.209 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 16185.127400000001 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 30731.145200000003 4 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 1669.2285 1 +Q0E8W6 Small integral membrane protein 14 40.0 2 2 2 767.95276 1 +Q6IJE8 HDC15077 11.85 1 1 1 31770.979 1 +Q9VVI0 SD09427p 1.63 1 1 1 3894.7878 1 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 37915.969 2 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 9711.6443 2 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 17918.502 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 45176.105 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 6100.596 1 +Q9W494 Crossveinless 8.17 2 2 2 31596.217 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 47243.947 3 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 4655.9517 2 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 42866.5554 2 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 19509.88 1 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 6516.3726 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 98691.98 1 +Q95NH6 Attacin-C 2.9 1 1 1 4383.8174 1 +Q86B83 LD12611p 5.44 2 2 2 6998.5635 2 +Q8MRQ1 GH06222p 3.62 2 2 0 13156.771 1 +Q4V6X9 IP01247p 3.24 1 1 1 2255.6545 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 2445.7395 1 +Q9VPR6 Kinase 2.59 1 1 1 6218.0273 1 +Q9VF80 Cysteine protease 1.65 1 1 1 702.16943 1 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 13382.004 1 +Q9V4B8 RE68558p 1.2 1 1 1 13067.105 1 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 6.02 1 1 1 502.0041 1 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 19212.72 1 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 4757.12415 2 +Q8I0J1 RE43539p 2.51 1 1 0 9328.223 1 +Q9VC27 Nicastrin 1.29 1 1 0 15415.053 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 5672.977 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 5132.383 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 702.91925 1 +Q9W0I2 RE15268p 11.17 1 1 1 6085.833 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 6897.6904 1 +Q961R9 GH09241p 1.8 1 1 1 36135.934 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 5577.5283 1 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 976.4096 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 18000.614129999998 2 +Q9VFR4 GH09754p 6.64 1 1 1 51945.8 1 +Q7K490 SD03973p 2.65 1 1 1 5167.427 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 23247.9403 2 +A1Z8N1 Trehalose transporter 1 2.1 1 1 1 350.95383 1 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 8830.501 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 86988.59700000001 3 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 9641.48 2 +Q6NN09 ATPase protein 9 5.07 1 6 1 2099907.196 6 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 4537.475 1 +O76874 SD17974p 1.14 1 1 1 4600.244 1 +Q9VEB2 LD28404p 3.0 1 1 1 19562.312 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.64 1 1 1 520.3085 1 +P41964 Drosomycin 17.14 1 1 0 6362.3594 1 +Q9VL21 LD11652p 6.22 1 1 1 8768.404 1 +Q9VBD8 RT02919p 4.37 1 1 0 19252.535 1 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 6184.9893 1 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 404.83987 1 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 135625.326 2 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 2488.3196 1 +Q9VK20 LD18447p 1.79 1 1 1 9785.555 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 11953.341 1 +Q9VA48 Serpin 100A 2.77 2 2 2 15379.885999999999 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 4119.3477 1 +Q9VBK9 Protein FAM98B 3.08 1 1 1 37739.656 1 +Q9VZC8 GEO12024p1 6.85 1 1 1 383.45428 1 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 20066.6686 2 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 8582.479 1 +Q0E985 RH74701p 15.0 1 1 1 2559.9854 1 +Q9VCC2 RE50040p 4.86 2 2 2 81218.044 2 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 14545.775 1 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 4885.3594 1 +Q7K172 CAAX prenyl protease 3.33 1 1 1 10084.577 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 40215.5 1 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 9946.592 1 +M9PH32 Protein meiotic P26 1.99 1 1 0 796.59845 1 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 68143.8766 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 18193.627 1 +E1JHX0 MIP29328p 3.76 1 1 1 2689.904 1 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 10194.822 1 +A0A126GV08 Uncharacterized protein, isoform G 5.3 2 2 0 526.97504 1 +F9VMG5 GEO02462p1 41.07 2 2 2 28884.888 2 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 14630.078 2 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 20172.766 1 +Q9V9R3 adenylate cyclase 1.29 2 2 2 13184.874 2 +Q9VS39 FI19525p1 5.88 2 2 2 18782.2974 2 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 12802.067 1 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 9201.326 1 +Q9VUE5 LD17962p 0.77 1 1 0 80242.484 1 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 1987.0111 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 15564.7405 2 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 10653.0054 2 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 373.85318 1 +M9PE65 Axotactin 0.69 1 1 1 5260.3105 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 3959.827 1 +Q8IRK0 GH04558p 5.41 2 2 2 90457.0478 2 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 5974.944 1 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 13237.519 1 +Q5BI50 Cullin-4A 1.34 1 1 1 5755.6772 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 848.6982 1 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 911.47986 1 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 880.3176 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 98502.945 1 +P07186 Chorion protein S19 14.45 1 1 1 2086.1533 1 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 9160.857 1 +Q9VJK9 GEO06505p1 9.52 1 1 1 900.6809 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 1759.1473 1 +Q9VL29 GEO11246p1 12.93 1 1 1 9367.655 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 544.22046 1 +Q9W2F6 RE36793p 14.17 2 2 2 15952.3367 2 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 4045.845 1 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 44120.926 1 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 6741.2935 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 5685.9193000000005 2 +Q7JR99 RE31204p 5.59 1 1 1 2827.4 1 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 2483.8792 1 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 91749.259 6 +B7YZZ0 GH19557p 12.64 1 1 1 23772.164 1 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 8577.453099999999 2 +A1Z8D4 AT13868p 4.47 1 1 0 1586.761 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 85252.734 1 +A8DYV9 GEO02589p1 10.53 1 2 1 20757.543400000002 2 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 3694.4514 1 +Q9W1I6 U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein 13.4 1 1 1 338.4183 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 237318.48 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 4574.6123 1 +Q7K1H9 GH07575p 3.69 1 1 1 6626.673 1 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 2974.2388 1 +O76513 Cyclin-H 3.7 1 1 1 8397.068 1 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 1488.3223 1 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 5266.129 1 +Q9V449 Met75Ca 23.53 1 1 1 3736.6584 1 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 2539.351 1 +Q03445 Glutamate receptor 1 1.92 1 1 1 1993.0735 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 6401.795 1 +Q9W0B6 LD14179p 1.48 1 1 1 5146.9536 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 2789.722 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 109851.125 1 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 4528.614 1 +Q9VT01 FI06792p 3.5 1 1 1 1681.5352 1 +Q9VIM8 RE22905p 2.85 2 2 2 5089.0176 1 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 2887.0488 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 17680.83294 2 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 5414.8145 1 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 157295.52 1 +Q9VMM3 RE17389p 2.61 1 1 1 2102.883 1 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 11616.82 1 +Q9W551 GEO02601p1 8.49 1 1 1 815.0148 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 7012.126 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 2944.1882 1 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 2460.4993 1 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 5214.429 1 +Q9VB20 Distracted, isoform B 0.68 1 1 1 458.52548 1 +Q9VA94 GH07782p 2.82 1 1 1 916.75586 1 +Q9VX56 LD03052p 5.94 1 1 1 19759.309 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 7584.6865 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 24280.074 2 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 2003.2196 1 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 4565.2803 1 +Q7JY99 glycerol kinase 1.34 1 1 1 2047.5256 1 +Q9VP08 IP11255p 2.36 1 1 1 1897.3334 1 +Q8MYV9 GEO12865p1 11.04 1 2 1 56245.466 2 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 10850.883 1 +Q9V6L9 F-box/SPRY domain-containing protein 1 4.31 1 1 1 936.0382 1 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 5751.5884 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 36418.35 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 133211.035 2 +Q7JWV7 Tetraspanin 4.85 1 1 1 3391.905 1 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 7102.2085 1 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 1855.8335 1 +Q8IRE5 RH23915p 21.54 1 1 1 768.1007 1 +Q9VWL7 Rho GTPase activating protein at 18B, isoform C 0.76 1 1 0 431.86478 1 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 7595.804 1 +Q9VBQ5 LD38433p 1.91 1 1 1 15798.478 1 +Q9VZR5 RE46159p 11.06 2 2 2 22753.527 2 +Q9VPB7 FI17508p1 1.3 1 1 1 5706.724 1 +Q8T092 LD21421p 2.45 1 1 1 464.5282 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 11951.658 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 2427.5544 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 24642.865 1 +Q7K4G8 LD40944p 1.7 1 1 1 2307.7908 1 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 4658.8203 1 +Q9VHW4 FI21225p1 0.74 1 1 1 3272.0457 1 +Q9VKE7 GH09228p1 10.39 1 1 1 365.1552 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 5373.2886 1 +Q9VMI5 CG9135 protein 1.44 1 1 1 4785.4824 1 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 22804.05 1 +Q9VVJ6 Keren 4.61 1 1 1 6328.8135 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 138050.711 3 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 2256.715 1 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 167540.17 1 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 32746.266 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 10080.105 1 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 1710.7551 1 +E1JH07 LD18062p1 8.0 1 1 1 31891.76 1 +Q9VWG2 FI07430p 2.75 1 1 1 2178.1597 1 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 5531.195 1 +Q9Y113 Negative elongation factor B 1.35 1 1 1 5641.7236 1 +P36192 Defensin 8.7 1 1 1 2992.1128 1 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 7313.2026 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 6944.105 1 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 7835.0244 1 +Q9VAK8 Protein Diedel 8.7 1 1 1 6588.1753 1 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 4495.464 1 +A0A0B4KFX0 Uncharacterized protein, isoform A 21.54 1 1 1 508.40607 1 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 1831.0621 1 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 5327.293 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 64180.875 1 +Q0E908 Hillarin 0.86 1 1 1 2356.35 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 421385.719 2 +Q9VPH4 FI03293p 2.31 1 1 1 2787.3823 1 +Q5BIL9 SD21168p 1.63 1 1 0 28484.67 1 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 7766.2817 1 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 3271.3472 1 +A1Z6H0 Kune-kune 2.65 1 1 1 21172.818 1 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 836.51434 1 +M9MS77 Uncharacterized protein 7.56 1 1 1 9448.867 1 +Q9VHJ4 GH04846p 2.25 1 1 1 4651.918 1 +Q9W226 GEO07239p1 5.88 1 1 1 3300.5266 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 4898.0684 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 3008.7407 1 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 4031.3325 1 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 4985.344 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 33862.594 1 +Q9V412 STING ER exit protein 4.45 1 1 0 2818.0396 1 +Q8MRQ2 GH05923p 2.74 1 1 0 6587.74 1 +Q9VE99 GEO12060p1 16.67 1 1 1 3334.8276 1 +Q6XPX3 Phospholipase A2 4.3 1 2 1 13653.096 2 +Q8SYR5 GEO07715p1 7.1 1 1 1 10453.188 1 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 3866.6902 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 4047.6025 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 5677.813 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 3330.6682 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 8345.372 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 4302.5737 1 +Q7PL72 LD05675p 5.85 1 1 0 3805.8796 1 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 4509.7344 1 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 3270.6313 1 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 10346.166 1 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 4131.875 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 14705.538 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 4536.893 1 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 2901.6628 1 +Q2MGN0 FI01014p 2.5 1 1 0 1741.9551 1 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 3650.38037 2 +A1A6X2 IP16893p 12.07 1 1 1 21900.951 1 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 11700.504 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 693.73083 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 36167.3325 2 +Q7JXE1 Bunker gear 4.75 1 1 1 645.2381 1 +Q9VKZ9 FI06463p 5.39 1 1 1 6676.538 1 +Q7K105 LD20892p 1.3 1 1 1 13646.95 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 23932.234 1 +Q9W081 AT01075p 2.34 1 1 1 2008.1077 1 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 20819.508 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 15483.821 1 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 4463.25 1 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 5955.1626 1 +Q9W009 GH12037p 3.17 1 1 1 6263.589 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 43983.68 1 +Q0E906 GEO11031p1 11.69 1 1 1 9484.427 1 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 3013.5889 1 +Q9VBT7 GH13495p 1.9 1 1 1 3281.7722 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 41194.23 1 +Q9Y1A7 LD25378p 2.0 1 1 1 11304.263 1 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 774.7444 1 +Q7JR91 GH12715p 3.19 1 1 0 5425.0884 1 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 868.31775 1 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 534.14667 1 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 2733.6143 1 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 2212.4111 1 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 160285.77 1 +Q9VJU2 Nimrod C3 3.12 1 1 1 8733.191 1 +Q9W3Q2 SD08447p 1.26 1 1 1 13672.822 1 +A1Z979 Salivary secreted peptide 6.25 1 1 0 16870.238 1 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 4666.8687 1 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 163996.6258 11 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 125245.1877 3 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 57286.90544 6 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 33163.8596 4 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 42216.0605 2 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M1_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M1_TMTa.txt new file mode 100644 index 0000000..9f315b9 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M1_TMTa.txt @@ -0,0 +1,3959 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 127N, Sample, n/a, SFug_M1 Abundances Count: F5: 127N, Sample, n/a, SFug_M1 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 14143.3738 4 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 31465.2729 9 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 1242119.4853 63 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 20448.167950000003 5 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 43185.64344 11 +A0A1F4 Protein eyes shut 9.56 22 68 0 313311.02954 52 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 5841.92865 3 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 88562.74826 15 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 588.8135 1 +A1Z7T0 Serine/threonine-protein kinase N 1.34 2 3 0 797.50415 1 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 3703.78889 3 +A1Z877 Nidogen 24.81 29 66 29 459579.33592 61 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 3187.9934 1 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 511.20242 1 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 99639.63603 50 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 66080.61265 9 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 46103.09805 5 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 89385.03922 30 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 7858.6991 2 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 111309.41238 33 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 34690.22324 4 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 6189.18714 4 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 8983.7989 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 5822.6557 2 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 12640.601999999999 2 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 4395.47846 2 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 100185.1308 6 +A8DYP0 Protein Obscurin 2.11 10 12 10 12469.0005 7 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 161387.7487 8 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 868321.45595 71 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 145354.10296 19 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 320948.98085 48 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 350842.43965 31 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 36385.457200000004 4 +C0HL66 Histone H3.3A 52.94 8 63 0 30844.005299999997 3 +C0HLZ9 Baramicin A1 15.56 4 9 0 23504.972420000002 7 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 266622.54366 28 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 2723.8527 2 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 48822.17413 12 +M9NDE3 Protein bark beetle 3.91 13 19 13 39667.2833 11 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 2696440.45295 98 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 68411.28439999999 6 +O01367 Protein held out wings 21.48 8 10 0 24102.258130000002 8 +O01382 Caspase drICE 17.99 5 7 4 2643.42393 4 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 231090.0077 8 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 2659205.59194 97 +O02194 Presenilin homolog 5.73 3 5 0 4508.954470000001 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 242907.1549 20 +O02649 Heat shock protein 60A 73.47 40 183 25 3726093.46518 144 +O15943 Neural-cadherin 14.89 49 91 2 440676.88949000003 73 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 36452.58122 11 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 38733.6285 3 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 18822.2333 5 +O18333 Ras-related protein Rab-2 18.31 5 10 5 33476.8339 7 +O18334 Ras-related protein Rab6 18.75 5 16 0 6238.9765 2 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 376460.00063 26 +O18388 Importin subunit beta 3.73 4 6 0 3909.43728 3 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 2722071.78682 98 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 222416.52028 29 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 40440.53891 11 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 24171.039099999998 2 +O44342 Protein windbeutel 19.46 5 10 0 27555.91706 8 +O44386 Integrin alpha-PS3 11.84 14 20 12 59903.28235 17 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 2080.8657 1 +O46037 Vinculin 53.69 50 137 0 1335644.52798 110 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 26135.8939 4 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 62425.765 6 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 52501.484300000004 8 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 200684.7635 20 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 2994.8288000000002 3 +O61307 Teneurin-m 0.66 2 2 0 2249.3527 2 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 13322.5604 3 +O61491 Flotillin-1 48.83 23 81 23 792164.83708 66 +O61722 PRL-1 phosphatase 44.32 7 23 7 223173.30198 12 +O62619 Pyruvate kinase 69.23 27 80 27 1854994.6438 59 +O62621 Coatomer subunit beta' 3.17 3 4 3 4387.38734 3 +O76206 Putative riboflavin kinase 49.02 7 15 0 246860.475 12 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 99455.4522 6 +O76742 Ras-related protein Rab7 28.5 6 12 6 97137.05334 10 +O76878 RILP-like protein homolog 9.71 5 10 0 31658.1076 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 82528.58385 15 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 203533.47511 15 +O77051 Transcription factor E2F2 22.97 9 14 0 19285.626 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 12547.0242 4 +O77277 Torsin-like protein 12.65 5 8 0 38457.16734 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 2457.38424 2 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 16420.727 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 47589.595219999996 21 +O96690 Protein PDF 23.53 1 1 1 715.8874 1 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 1699825.88603 57 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 18309.93952 6 +O97125 Heat shock protein 68 24.09 13 89 6 114015.98771 19 +O97172 UPF0729 protein CG18508 29.29 3 8 0 43291.6072 7 +O97394 Protein sidekick 1.89 4 5 0 1280.1734999999999 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 15357.22684 5 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 645886.42538 44 +P00334 Alcohol dehydrogenase 88.28 21 200 21 18869989.90143 139 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 1300095.01843 33 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 4175.4402 3 +P02255 Histone H1 14.45 3 6 0 20549.467259999998 5 +P02283 Histone H2B 56.91 8 70 8 830011.16013 50 +P02299 Histone H3 52.94 8 67 2 1087900.91672 53 +P02515 Heat shock protein 22 40.8 8 18 8 101906.6033 10 +P02516 Heat shock protein 23 84.41 16 83 0 3109549.29404 67 +P02517 Heat shock protein 26 57.69 10 30 0 793959.06992 20 +P02518 Heat shock protein 27 44.13 9 21 0 394425.336 20 +P02572 Actin-42A 64.1 25 768 2 29304090.0776 570 +P02574 Actin, larval muscle 65.96 25 672 0 977294.7384 21 +P02828 Heat shock protein 83 48.4 33 148 0 2179455.41857 125 +P02843 Vitellogenin-1 70.84 32 265 0 3954423.65304 161 +P02844 Vitellogenin-2 59.28 26 187 0 2320549.37532 107 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 174591.7509 13 +P04388 Ras-like protein 2 13.02 2 10 2 32729.99519 9 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 11476.51488 7 +P05205 Heterochromatin protein 1 36.89 8 22 8 152271.96664 19 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 1559721.65955 30 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 465638.0204 16 +P05552 Transcription factor Adf-1 7.63 2 5 0 18194.225899999998 5 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 9927.80366 10 +P05812 Heat shock protein 67B1 12.13 5 7 5 12375.798040000001 5 +P06002 Opsin Rh1 4.56 2 8 2 33328.11371 6 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 14022471.135569999 128 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 2239.383 1 +P06607 Vitellogenin-3 82.14 33 299 0 4400920.20169 207 +P06742 Myosin light chain alkali 56.77 11 71 0 5043148.34756 43 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 4061.5125 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 1281814.38815 40 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 7142861.49831 126 +P07665 Serendipity locus protein beta 8.43 4 5 0 811.2053 1 +P07668 Choline O-acetyltransferase 7.63 5 6 5 13008.1916 4 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 13137587.15076 313 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 10835.51818 7 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 169952.53085 22 +P08144 Alpha-amylase A 18.22 8 15 0 185470.84214 12 +P08171 Esterase-6 13.24 9 22 0 112064.7461 20 +P08182 Casein kinase II subunit beta 38.72 8 38 2 412953.33419 31 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 902593.28816 23 +P08645 Ras-related protein Rap1 25.54 5 15 0 114968.24016 15 +P08646 Ras-like protein 1 30.69 4 10 4 88259.12243 8 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 7941065.16918 162 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 37498.48845 9 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 2693394.76612 100 +P08928 Lamin 67.36 50 193 49 2536693.15562 153 +P08985 Histone H2A.v 42.55 10 47 8 522105.83755999996 27 +P09040 Drosulfakinins 21.99 3 3 3 37215.738 3 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 479771.6271 43 +P09208 Insulin-like receptor 3.03 8 10 8 5819.7113 4 +P09491 Tropomyosin-2 76.76 34 245 2 53791.778300000005 6 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 82701.90262000001 12 +P10180 Homeobox protein cut 0.46 1 3 0 61869.9947 3 +P10379 Protein unzipped 20.29 8 28 0 343846.99330000003 25 +P10552 FMRFamide-related peptides 2.31 1 3 1 40093.906 2 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 167858.06037 54 +P10981 Actin-87E 76.33 30 777 0 932786.18534 33 +P10987 Actin-5C 64.63 27 797 0 356550.44097 26 +P11046 Laminin subunit beta-1 21.09 39 84 39 789281.80823 62 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 16343.258 1 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 13131656.58887 321 +P11584 Integrin beta-PS 18.32 17 45 0 204493.35297 36 +P12024 Chaoptin 30.95 35 88 0 1138768.61123 70 +P12080 Integrin alpha-PS2 11.53 17 39 17 172028.52354 32 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 569073.48906 37 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 5475.057 2 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 266998.91651 31 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 301417.95928999997 35 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 80107.6904 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 88722.93576 8 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 418216.56841 62 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 1103878.84445 81 +P13395 Spectrin alpha chain 65.3 140 542 0 6486716.53555 423 +P13469 DNA-binding protein modulo 4.06 2 2 0 3132.62663 2 +P13496 Dynactin subunit 1 14.23 21 45 21 90573.98623 32 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 3147567.9330599997 122 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 23337.22773 11 +P13678 Protein kinase C 5.01 4 4 0 5724.751700000001 2 +P14199 Protein ref(2)P 13.19 7 32 7 143943.90133999998 28 +P14318 Muscle-specific protein 20 80.43 16 103 16 1471130.49771 69 +P14484 Pupal cuticle protein 27.17 5 39 5 280418.36443 29 +P15007 Enolase 78.0 40 271 1 17949242.41021 214 +P15215 Laminin subunit gamma-1 33.62 53 135 0 1041547.91933 114 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 1176.76456 2 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 1373485.66683 78 +P15364 Protein amalgam 15.92 5 11 0 36283.5698 8 +P15372 Phosrestin-2 67.58 19 65 0 1069357.45597 57 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 96476.82312 7 +P16378 G protein alpha o subunit 29.1 11 46 7 396398.98482 37 +P16554 Protein numb 15.47 8 12 0 44600.924790000005 10 +P16568 Protein bicaudal D 23.4 19 27 0 95917.61546 24 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 46775.49822 11 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 3124.3853 4 +P16914 Protein elav 30.23 13 43 0 400093.53086 33 +P17210 Kinesin heavy chain 34.56 34 100 34 488091.95315 75 +P17276 Protein henna 44.69 15 32 0 581963.98237 27 +P17336 Catalase 41.11 16 61 16 687804.26756 43 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 379344.62809 25 +P17719 Dihydrofolate reductase 4.4 1 2 1 3028.02513 2 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 713509.69663 40 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 8018.214400000001 4 +P18431 Protein kinase shaggy 29.77 14 58 0 932707.0631 47 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 3339856.21902 143 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 58640.44458 10 +P18824 Armadillo segment polarity protein 14.47 12 25 0 82612.80038 15 +P19107 Phosrestin-1 77.56 33 263 33 7464690.83493 226 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 103237.73785 25 +P19334 Transient receptor potential protein 4.39 6 9 4 20862.65527 7 +P19339 Protein sex-lethal 4.52 2 4 0 4415.127 3 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 63888.54283 8 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 2410952.89871 38 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 6034.09145 3 +P20153 Protein ultraspiracle 5.91 4 7 0 21032.8816 5 +P20228 Glutamate decarboxylase 27.84 12 34 0 100173.36423 22 +P20232 Transcription elongation factor S-II 42.81 13 19 0 43114.3213 10 +P20240 Otefin 29.95 11 22 11 80592.06692 16 +P20241 Neuroglian 21.89 29 84 0 605615.28554 69 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 68238.559 5 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 5957.352 3 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 19942.493300000002 3 +P20432 Glutathione S-transferase D1 52.15 12 101 9 5654183.11077 82 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 2336314.86692 55 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 9544281.24743 195 +P21187 Polyadenylate-binding protein 26.81 14 44 14 120430.66136 33 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 3154982.66366 91 +P22465 Annexin B10 65.42 20 129 20 2200007.35595 112 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 486413.2446 29 +P22813 Heat shock factor protein 7.09 5 6 0 9919.814129999999 5 +P22815 Protein bride of sevenless 1.34 1 1 1 3350.9243 1 +P22979 Heat shock protein 67B3 54.27 8 22 8 394762.67003 18 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 14982.9145 7 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 244468.91372 43 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 11282.14546 3 +P23625 G protein alpha q subunit 54.67 20 124 18 2484081.20977 96 +P23654 Neurotactin 8.87 7 17 0 51896.88866 13 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 78186.38216000001 8 +P23779 Cystatin-like protein 63.49 8 26 8 798086.9129700001 19 +P24156 Prohibitin 1 73.91 17 62 0 978048.49338 48 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 6777289.5434 92 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 5063.6236 2 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 322009.07724 37 +P25171 Regulator of chromosome condensation 10.42 5 9 5 37681.116200000004 9 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 2400.978 1 +P25228 Ras-related protein Rab-3 30.45 6 18 0 58853.47209999999 5 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 21365.5086 9 +P25822 Maternal protein pumilio 3.39 5 8 0 18282.13126 6 +P25843 Profilin 88.89 7 27 0 628764.1953 22 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 157419.636 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 47465.556860000004 9 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 383727.22969 26 +P26686 Serine-arginine protein 55 18.35 8 14 0 61701.98956 11 +P27716 Innexin inx1 11.33 5 7 0 29912.307 6 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 79488.4455 14 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 20605.4734 5 +P29052 Transcription initiation factor IIB 13.65 5 13 0 37615.37835 8 +P29310 14-3-3 protein zeta 69.35 18 328 0 7060645.83731 260 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 335671.27733 18 +P29413 Calreticulin 57.64 21 79 0 1665436.67161 71 +P29613 Triosephosphate isomerase 77.73 17 135 16 4690092.00919 107 +P29742 Clathrin heavy chain 8.76 16 22 0 16252.8449 10 +P29746 Protein bangles and beads 59.28 23 66 23 1032738.1857299999 58 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 1067406.2754 62 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 7629.8089 5 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 3446413.89258 123 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 3615170.6708 158 +P30432 Furin-like protease 2 2.44 4 6 0 6732.48422 5 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 601402.94466 38 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 1290827.34451 70 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 464795.0642 31 +P32234 Guanylate binding protein 128up 11.14 4 4 3 31272.257380000003 4 +P32392 Actin-related protein 3 16.99 7 15 7 67098.4079 11 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 34950.78624 13 +P33438 Glutactin 23.98 23 64 0 164425.6243 36 +P34082 Fasciclin-2 23.02 17 30 0 137863.85762 23 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 450468.70287 21 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 353000.16464 18 +P35220 Catenin alpha 24.1 22 60 12 203039.08997 47 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 23622167.6636 382 +P35415 Paramyosin, long form 75.2 85 589 0 10172027.17642 388 +P35416 Paramyosin, short form 62.19 47 347 0 782665.33392 45 +P35421 Phosphoribosylformylglycinamidine synthase 0.59 1 2 1 617.1998 1 +P35554 Flightin 46.7 7 14 0 93548.71343999999 8 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 27226.40852 9 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 1292178.8055 54 +P36188 Troponin I 46.1 16 73 0 1277674.9016800001 63 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 312625.96748 11 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 4440.584 1 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 494883.1867 24 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 1774.4264 1 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 2050804.65983 98 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 123455.814 6 +P37236 Frequenin-1 56.15 9 52 0 106986.9911 8 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 2143.859 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 190122.61562 16 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 1238937.1042 47 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 1201932.03301 54 +P39736 Puff-specific protein Bx42 12.61 6 12 0 12768.96374 7 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 147201.58976 4 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 137528.89283 16 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 41988.9313 4 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 301218.58441999997 23 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 14519.544579999998 9 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 230650.23024 23 +P40427 Homeobox protein extradenticle 3.72 1 4 0 2940.8603000000003 2 +P40792 Ras-related protein Rac1 22.4 4 22 0 80189.7665 18 +P40793 Cdc42 homolog 27.75 5 16 0 112958.51861 10 +P40796 La protein homolog 30.26 11 26 10 82202.33176 15 +P40797 Protein peanut 12.62 7 32 6 130741.89198 26 +P40945 ADP ribosylation factor 4 30.0 4 17 0 2249.4736 1 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 480580.74154 31 +P41043 Glutathione S-transferase S1 75.9 13 61 0 4500890.8966 48 +P41044 Calbindin-32 75.48 25 116 0 2797531.45009 79 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 70978.36872 19 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 172901.09165000002 15 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 243255.62244 18 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 924689.26454 50 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 807576.0850300001 38 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 400565.04783 35 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 66422.9425 12 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 212131.56477 24 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 6643.411300000001 2 +P42207 Septin-1 12.74 5 19 4 22825.77187 5 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 1713908.38296 27 +P42325 Neurocalcin homolog 66.32 14 25 14 503936.52019999997 21 +P42787 Carboxypeptidase D 5.26 8 12 0 60778.86754 10 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 74700.69298 9 +P45437 Coatomer subunit beta 7.57 5 10 5 42640.994900000005 9 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 3774584.97039 84 +P45888 Actin-related protein 2 12.53 5 9 5 28235.728000000003 5 +P45889 Actin-related protein 1 24.47 13 20 13 236695.40511 18 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 20669.504 1 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 239501.98748 13 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 497068.04535000003 25 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 78398.23533 10 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 515669.87069999997 68 +P46824 Kinesin light chain 41.34 24 66 0 462980.9444 49 +P47947 Troponin C, isoform 1 20.78 3 33 0 873779.8476 28 +P47949 Troponin C, isoform 3 51.61 7 20 0 583421.03815 18 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 484589.46225 28 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 409349.955 15 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 280801.81971999997 20 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 1745105.32168 27 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 60099.370800000004 4 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 453.15964 1 +P48554 Ras-related protein Rac2 26.56 5 20 0 11873.3356 4 +P48555 Ras-related protein Ral-a 43.28 8 20 1 203818.215 17 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 37677.82122 5 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1041583.47831 50 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 98558.0291 17 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 680156.81305 50 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 954730.73291 88 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 50609.592 13 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 373972.33243 45 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 486987.06199 52 +P48607 Protein spaetzle 4.29 1 2 0 2676.8188 1 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 24421.5524 4 +P48610 Arginine kinase 1 75.28 38 429 0 15863271.78076 339 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 360011.35058 20 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 407617.05892 45 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 41019.91255 13 +P49028 Protein mago nashi 46.26 6 12 6 124283.1612 7 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 56571.0616 8 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 204924.2103 6 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 4075.9874 2 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 13611.8946 5 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 1046.99186 2 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 16514.569900000002 2 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 7904.80328 4 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 565003.62375 28 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 127109.79858999999 15 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 12206.50872 6 +P51406 Bystin 5.96 3 4 3 739.58923 1 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 43081.0678 9 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 20658.72934 6 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 195482.96802 26 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 14377.915019999999 5 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 1247.72326 2 +P53034 Replication factor C subunit 2 16.31 6 9 6 19511.8652 9 +P53501 Actin-57B 77.13 31 817 3 4534819.80472 100 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 4442.02247 3 +P53777 Muscle LIM protein 1 56.52 5 52 0 219676.57459 31 +P53997 Protein SET 11.52 3 3 3 39718.929000000004 3 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 81735.6995 5 +P54191 General odorant-binding protein 69a 13.51 2 10 2 55471.3339 10 +P54192 General odorant-binding protein 19d 71.33 11 165 11 8086677.021360001 151 +P54193 General odorant-binding protein 83a 42.86 7 24 0 440624.68765 21 +P54195 General odorant-binding protein 28a 26.57 4 24 4 109066.08934 17 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 2129.60212 3 +P54352 Ethanolamine kinase 15.25 7 8 5 38297.37065 7 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 207688.98753 11 +P54357 Myosin-2 essential light chain 89.12 10 58 1 671440.61885 48 +P54359 Septin-2 8.83 4 13 1 34164.8458 10 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 808.825 1 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 928329.95104 76 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 3431.9242999999997 2 +P54399 Protein disulfide-isomerase 67.14 31 156 0 4318663.68943 131 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 4916992.62268 147 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 95469.75068 8 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 77143.33608000001 17 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 228353.67054 10 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 1351840.53418 69 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 557158.63483 26 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 649411.81578 50 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 9281.7256 5 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 55579.47706 10 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 450836.7828 11 +P61849 Dromyosuppressin 28.0 2 2 0 99215.233 2 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 5979171.10255 119 +P61855 Adipokinetic hormone 24.05 1 3 1 28248.61706 3 +P61857 Tubulin beta-2 chain 42.38 15 197 1 1581086.1209999998 3 +P62152 Calmodulin 98.66 18 386 0 15592322.84882 290 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 702122.60362 25 +P81829 Leucokinin 11.88 2 3 2 2386.00944 3 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 1716124.17944 56 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 537720.6714 34 +P82804 Partner of Y14 and mago 7.73 1 2 1 498.78284 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 328383.91934 17 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 18624.3276 7 +P83967 Actin, indirect flight muscle 68.88 28 754 2 123541.73999999999 2 +P84029 Cytochrome c-2 72.22 13 152 0 5273511.15835 125 +P84040 Histone H4 57.28 7 79 0 1743510.48081 64 +P84051 Histone H2A 37.1 7 32 0 488793.53134999995 11 +P84345 ATP synthase protein 8 18.87 1 1 1 30173.914 1 +P91664 Protein max 14.29 3 4 0 9298.4035 3 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 5745.503339999999 3 +P91891 Protein Mo25 24.78 10 27 0 257229.72590000002 22 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 73967.18044 15 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 120657.56325 29 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 1422558.4379 108 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 1261721.99436 43 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 620884.0692 35 +P92029 DnaJ-like protein 60 3.69 1 2 0 394.79144 1 +P92177 14-3-3 protein epsilon 77.86 25 246 23 7598350.76692 148 +P92204 Negative elongation factor E 9.64 3 7 3 15292.0196 4 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 3104.3449 2 +P98081 Protein disabled 4.99 10 17 0 9037.08243 9 +Q00174 Laminin subunit alpha 17.05 68 162 68 1534742.53357 133 +Q00963 Spectrin beta chain 23.88 59 161 1 1232.37702 2 +Q01603 Peroxidase 7.68 5 10 0 71146.67616 9 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 5582560.69281 182 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 25363.45057 6 +Q01819 Connectin 3.52 3 4 0 20691.1054 2 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 43568.924 2 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 149337.16239 28 +Q02910 Calphotin 3.94 3 9 3 46242.03841 7 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 16807.784030000003 6 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 338.79044 1 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 216101.50248 24 +Q03427 Lamin-C 55.88 41 164 3 1242333.97175 109 +Q04047 Protein no-on-transient A 21.86 12 30 0 65694.69046 13 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 76431.3199 22 +Q04691 Fat-body protein 1 28.38 28 55 0 104006.36433 38 +Q05783 High mobility group protein D 24.11 3 11 0 36463.05447 7 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 14357070.21122 438 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 16684.88477 2 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 2196670.95035 89 +Q06943 High mobility group protein Z 31.53 4 12 0 61134.722499999996 8 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 9940.2883 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 397032.38492 16 +Q07171 Gelsolin 24.44 18 56 0 409621.02454 47 +Q07327 Protein ROP 24.79 15 61 0 194773.42277 41 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 288658.8728 18 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 7475.570530000001 4 +Q08473 RNA-binding protein squid 38.08 8 17 0 396431.6697 15 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 18756.48836 5 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 11947.92612 5 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 42182.17409 7 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 14402.41046 6 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 124610.8251 20 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 1960.993 2 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 5281.58544 3 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 136143.82295 19 +Q11002 Calpain-A 3.38 3 4 0 7660.636699999999 3 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 1211286.28013 58 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 1778543.62436 70 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 1636249.90109 77 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 2474622.586 100 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 900425.29736 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 2854960.44259 95 +Q24050 Elongator complex protein 5 26.34 6 9 6 24693.09516 8 +Q24114 Division abnormally delayed protein 9.11 6 13 0 139477.64808 13 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 125300.18535 10 +Q24134 Negative elongation factor D 2.42 2 2 0 10307.067 1 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 16878.146 1 +Q24185 Protein hook 24.45 18 32 18 167354.90467 24 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 518984.01929 29 +Q24207 Protein boule 21.93 4 8 0 31973.832500000004 5 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 102259.6032 17 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 9827.7638 5 +Q24211 Protein stoned-A 45.41 30 66 0 581913.05772 50 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 348781.89978 25 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 21023.627099999998 6 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 12828.17996 7 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 5807409.024110001 131 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 115256.72375 24 +Q24292 Protein dachsous 1.48 5 5 0 2976.39762 2 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 107579.44949999999 2 +Q24298 DE-cadherin 12.94 19 36 19 171874.85459 30 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 28586.93135 5 +Q24318 Transcription factor Dp 18.2 7 10 1 9624.097730000001 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 8707.911680000001 3 +Q24322 Semaphorin-1A 5.78 5 6 0 1013.55055 2 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 33634.33194 6 +Q24372 Lachesin 10.03 5 9 5 22576.84542 6 +Q24388 Larval serum protein 2 9.56 7 10 0 13838.70185 6 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 763905.29909 83 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 2480060.29797 37 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 4984437.46006 164 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 41201.774789999996 22 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 91874.37364 12 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 18365.198089999998 7 +Q24509 Syntaxin-5 8.14 4 5 0 9457.3145 3 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 55585.90939 14 +Q24524 Protein singed 5.66 3 5 0 2337.9417 1 +Q24537 High mobility group protein DSP1 12.21 5 19 0 90166.07806 15 +Q24547 Syntaxin-1A 39.18 13 60 0 913618.33253 52 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 9437685.08739 242 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 29142.993580000002 7 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 60740.702489999996 12 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 585901.62201 40 +Q26377 Pro-corazonin 20.13 3 12 3 38181.6032 6 +Q26416 Adult cuticle protein 1 20.0 1 2 1 79104.08 1 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 25642.90558 13 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 202518.15025 11 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 15683.0533 6 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 481569.11895 43 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 456690.95509 25 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 957725.51981 35 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 110348.46040000001 8 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 73792.09049 21 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 778.781 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 34670.34031 9 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 60570.41645 8 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 6834.6579600000005 4 +Q3KN41 Neurexin 1 4.46 8 11 0 16783.9597 6 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 8619.73965 4 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 28925.0006 2 +Q4V645 Trissin 13.89 2 4 2 10546.6148 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 12216.10804 4 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 25676.3614 4 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 7994.9576 4 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 159971.10666 14 +Q6NN40 Alpha N-terminal protein methyltransferase 1 7.61 2 2 0 407.38535 1 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 7536.0941 3 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 3465.46262 4 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 42720.8245 5 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 8827.240300000001 2 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 106932.47109 9 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 305139.88757 13 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 13842.2189 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 83144.94706 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 546370.3475 29 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 1981.2986 1 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 14792.49893 7 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 18545.4217 4 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 85492.28007 11 +Q7JXF7 Protein seele 23.28 4 11 4 129422.35544 10 +Q7JYV2 Synaptogyrin 7.88 1 1 1 82470.82 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.98 1 1 0 837.4158 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 5676.1886 2 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 92441.23998 22 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 119633.7423 5 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 1426.33 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 20010.750050000002 6 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 20694.739 3 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 390427.62517 40 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 7138.4395 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 52648.154 9 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 48906.57048 20 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 8340.20408 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 138259.68475000001 22 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 40726.0012 8 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 2855541.62271 63 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 38601.18433 12 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 177138.03094 17 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 381553.95318 37 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 1277.82709 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 445628.87094 44 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 25917.600540000003 7 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 85930.56474 9 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 40509.04778 13 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 62611.00105 9 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 6265310.94435 49 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 2389.0006 2 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 94968.54405 15 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 106449.23679 21 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 11109.18054 5 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 43607.42695 7 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 1478922.81624 52 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 2713.486 1 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 38095.21915 6 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 55854.6263 17 +Q868Z9 Papilin 20.36 51 134 51 376119.17529 76 +Q86B87 Modifier of mdg4 7.54 5 9 0 53985.925500000005 8 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 25322.927559999996 5 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 10239.8301 3 +Q86NP2 Negative elongation factor A 8.87 10 18 0 47243.7855 12 +Q86P48 AT-rich binding protein 8.76 3 6 3 2658.32956 2 +Q86S05 Protein lingerer 2.69 3 7 0 8225.0661 2 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 26504.81863 10 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 288313.77245 25 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 29349.96852 11 +Q8IN41 Protein Turandot X 16.2 2 4 2 6795.9329 3 +Q8IN43 Protein Turandot C 48.84 5 12 5 49541.61637999999 5 +Q8IN44 Protein Turandot A 52.71 7 33 7 318270.48456 25 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 70390.16279 15 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 6544.06974 3 +Q8IPM8 Complexin 65.49 10 81 0 23037.40396 5 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 28699.54319 12 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 1364.0008 2 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 7722.096100000001 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 34518.6359 5 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 151130.7956 14 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 36404.2137 6 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 262574.9881 20 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 19373.8475 4 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 11096.9296 3 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 11519.281 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 1626.79577 3 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 79711.1717 12 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 921189.82226 32 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 97492.3297 16 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 602.1233 1 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 20446.22723 7 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 2160.13673 2 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 32659.7728 4 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 98121.03506 12 +Q8MSS1 Protein lava lamp 23.79 65 113 0 169383.15989 74 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 5754.86486 3 +Q8MSV2 Protein alan shepard 8.98 7 17 7 90017.97973 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 1102.6228 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 3336.73207 3 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 27048.21548 9 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 407592.85523 25 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 37141.96549 10 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 173813.5347 15 +Q8SY33 Protein Gawky 8.6 11 32 11 73395.81904 23 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 1984543.50777 59 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 343723.1975 13 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 6714.454100000001 4 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 5482.1196 1 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 1735.08206 2 +Q8SZ63 Golgin-84 10.27 6 8 6 14013.1878 4 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 167507.09056 12 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 5778.8727 4 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 289071.78643 31 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 366787.77156 40 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 2240.3464 1 +Q8T390 Endophilin-A 53.66 19 86 0 1873914.44835 75 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 58627.306899999996 7 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 392019.82981 13 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 138554.1929 10 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 68189.68521 14 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 1915.24984 4 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 223059.48698 26 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 10478.813 3 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 2424801.8063 108 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 3341663.3027399997 77 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 3606791.5161699997 123 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 570378.16985 20 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 560703.3352 25 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 4813641.28222 74 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 587117.26506 32 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 30080.6138 3 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 367704.19809 24 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 8346.56533 4 +Q94547 Regulator of gene activity 11.97 7 14 0 22375.2602 8 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 29294.159600000003 4 +Q94901 RNA-binding protein lark 48.01 19 52 19 160836.20073 32 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 10115.33422 4 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 20204.4132 7 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 13854580.46158 326 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 981.27704 1 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 58078.402200000004 6 +Q95029 Cathepsin L1 35.58 15 83 2 1285662.35881 64 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 318429.0267 20 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 28448.24325 2 +Q95RA9 GILT-like protein 1 30.8 7 22 7 624163.0168999999 17 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 5236.53066 3 +Q95RI5 Failed axon connections 59.09 26 146 0 2536781.0612500003 124 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 3854.484 1 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 41258.150069999996 8 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 40360.37581 14 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 10453.29696 6 +Q95T12 Calcium channel flower 21.13 4 8 4 12557.3831 4 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 15237.1184 6 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 7621.4789 4 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 24194.93084 11 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 10378.6916 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 160415.33362 17 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 33122.18563 8 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 22427.13663 6 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 5640.21653 3 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 1259.24848 2 +Q967D7 Protein turtle 4.18 7 14 0 40553.60068 10 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 61790.1066 22 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 10793.08828 7 +Q9GQQ0 Protein spinster 1.98 1 7 1 17687.12982 5 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 1621980.47129 68 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 781.8178 1 +Q9I7D3 Caprin homolog 9.37 8 18 0 14862.86258 8 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 25649.3226 6 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 17544.705 2 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 13275.1034 3 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 5230.8375 3 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 180999.49226 30 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 8164.38436 6 +Q9I7U4 Titin 2.4 43 56 0 40736.061480000004 29 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 15507.53223 5 +Q9NB04 Patj homolog 25.6 17 47 0 259032.10954 39 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 6997.97315 6 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 9936.8836 5 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 653.8926 1 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 22141.898 7 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 8946.40185 3 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 54004.1653 10 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 4597.73497 2 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 7520.5098 3 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 1001739.27108 57 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 15703.2557 2 +Q9TVM2 Exportin-1 1.88 2 2 0 5501.337 1 +Q9TVP3 J domain-containing protein 59.49 14 117 14 3823187.37772 94 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 117592.3085 13 +Q9U4G1 Protein borderless 16.97 10 26 10 264845.68447 22 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 55662.83737 10 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 54217.4396 13 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 388018.29278 15 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 4402.9805 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 57353.9294 6 +Q9U915 Adenylate kinase 2 75.0 21 56 21 884392.38945 49 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 28703.818 2 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 126705.32326 14 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 73742.39827 13 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 29717.5859 8 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 4760.1237 3 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 822.73987 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 35995.8541 8 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 523557.81454 29 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 12226.46305 6 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 836127.51414 33 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 18780.4176 3 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 114578.73307 16 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 108688.25954 17 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 51473.49065 8 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 1031481.23215 52 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 37187.1943 6 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 123863.79015 28 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 17739.8102 5 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 96371.70968 21 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 5409658.79799 108 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 19509.042540000002 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 14758.397649999999 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 2785.26026 2 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 61701.175729999995 11 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 15263.42167 7 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 333364.12338999996 30 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 20606.11723 7 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 81787.02715 11 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 188199.2038 9 +Q9V3Z2 Serine protease 7 13.55 5 15 4 35161.712980000004 12 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 41223.90992 16 +Q9V427 Innexin inx2 17.17 6 10 0 83405.1271 10 +Q9V429 Thioredoxin-2 66.98 6 56 6 2146672.56817 52 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 86876.85074 15 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 90922.15895 22 +Q9V447 Krueppel homolog 2 22.83 6 13 0 26590.68241 11 +Q9V496 Apolipophorins 33.18 114 349 0 6176023.37965 293 +Q9V4A7 Plexin-B 1.46 3 4 0 2628.24096 2 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 2725.8298 1 +Q9V4C8 Host cell factor 7.33 11 19 11 61864.67733 15 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 6760.007 1 +Q9V4N3 Cytochrome b5 47.76 6 36 6 418767.31245 27 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 24915.46187 7 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 22923.0207 6 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 1598.0946 1 +Q9V521 Phenoloxidase 2 15.35 11 21 10 30135.92147 16 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 185792.4631 15 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 3379.42666 2 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 5153.504 2 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 115460.69930000001 14 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 410620.36600000004 21 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 536230.05628 27 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 7084.6343 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 1001.83714 2 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 38014.49488 10 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 1320.8430600000002 2 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 11073.053530000001 5 +Q9V6G5 Tafazzin 6.08 3 8 1 17652.05015 8 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 1111156.76009 54 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 22752.01498 4 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 16778.3602 3 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 14708.677479999998 6 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 7942.9002 4 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 690866.38496 36 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 1400752.4136 84 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 258754.21293 30 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 27435.920299999998 5 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 20333.728 7 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 1255.9526999999998 2 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 631222.49691 30 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 1215281.30251 127 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 594537.50014 19 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 22337.27507 4 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 8307.199540000001 6 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 9316.7217 4 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 19578.6783 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 10272.281 1 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 2285.9434499999998 3 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 502550.49058 34 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 9763.60956 5 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 116274.3599 14 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 10721.9326 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 5779.3017 3 +Q9VA37 Protein dj-1beta 84.49 13 53 13 937056.88731 36 +Q9VA70 Neutral ceramidase 2.41 2 3 0 7133.003500000001 2 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 1689718.42945 47 +Q9VAF5 Cadherin-99C 4.4 9 18 9 30124.46328 15 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 824211.81356 25 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 363108.31717 14 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 1642814.95021 39 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 26333.983500000002 5 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 399428.76895 47 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 19515.25074 9 +Q9VAW5 La-related protein 1 3.41 5 8 0 7181.99361 6 +Q9VAY3 Mitoferrin 7.65 3 7 3 9405.55931 7 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 20789.30935 5 +Q9VB68 Serine protease grass 12.2 5 13 5 20226.14936 9 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 34466.046500000004 5 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 4633.1064 1 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 14373.2793 5 +Q9VBV3 Protein takeout 9.64 3 11 0 77635.29612 10 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 49195.945 10 +Q9VBZ5 YTH domain-containing family protein 5.86 4 4 4 327.9294 1 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 7089.4287 1 +Q9VC57 Atlastin 4.62 3 6 0 38146.4553 5 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 6253.5329 3 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 44289.51191 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 58273.032 7 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 2656.3154 1 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 1424.3011000000001 2 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 42983.98472 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 93013.87091 19 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 2111.5803 2 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 111912.01703 15 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 90737.9012 10 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 3555.425 1 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 10090.98248 5 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 987.6459600000001 2 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 69768.8843 9 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 51596.3957 8 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 3908.27988 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 5537.80875 3 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 30711.0815 6 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 50517.35905 11 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 8663.3299 3 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 19852.34019 6 +Q9VDL1 Esterase CG5412 15.41 4 11 4 25708.958590000002 8 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 15104.58983 7 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 32943.19699 11 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 6694.2505 1 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 7158.9992999999995 2 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 7438.24272 4 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 514.7185 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 1877720.3083799998 37 +Q9VER6 Modular serine protease 8.76 5 10 5 10867.67945 6 +Q9VET0 Neuropeptide F 30.39 4 12 0 59999.1676 9 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 554825.43508 57 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 26488.65855 6 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 215228.64 1 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 42857.54601 13 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 1396407.82324 51 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 214187.36413 22 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 5025.442 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 26868.07536 5 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 216040.46615 26 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 15396.70286 6 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 2289.15153 2 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 3527.91824 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 4920.13366 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 33144.2313 6 +Q9VFM9 Twinfilin 22.74 7 13 7 30651.82351 11 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 14141.95263 5 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 3940.73107 2 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 20059.2448 6 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 77037.9736 13 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 18515.6056 4 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 4887.97294 4 +Q9VG55 Protein hugin 5.76 1 3 1 364.52112 1 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 100770.47660000001 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 891.64067 2 +Q9VG76 Myc-binding protein 19.34 4 6 4 56717.33973 6 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 5631.7166 2 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 403216.72839999996 14 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 54451.494 4 +Q9VGG5 Cadherin-87A 5.72 11 18 11 40345.40243 12 +Q9VGP4 Importin-9 2.85 3 3 3 4912.4344 2 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 109661.9003 20 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 7537.682 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 10802.6675 4 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 901.64084 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 866799.5633299999 31 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 181437.46891999998 18 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 12784.7441 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 3.64 2 3 2 567.2418 1 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 78843.40104 9 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 7738.3364 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 44733.0715 7 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 93577.8389 4 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 608462.54853 17 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 2830.20696 3 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 6795.26878 2 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 33212.4874 6 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 20268.15425 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 137581.08479999998 12 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 12922.98222 7 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 93030.64839999999 8 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 23614.3574 4 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 65107.27589 23 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 1078.33548 2 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 362388.95617 47 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 957028.4619 37 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 10153.559860000001 4 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 592.1909 1 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 97379.616 12 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 4047.8867 2 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 3824.1582 2 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 21074.53717 6 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 63855.01957 11 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 6791.93 1 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 121569.83664000001 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 181699.66546 15 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 23231.77239 7 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 19645.8163 8 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 8668.34444 4 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 85887.04480999999 11 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 8164.27316 3 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 87614.70446 18 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 32551.733439999996 6 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 92320.13128 20 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 103505.76435 16 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 7231.7193 2 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 731.5132 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 896.2512 1 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 840.6897 1 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 14500.22926 3 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 87066.32431 11 +Q9VJL6 Glia maturation factor 5.8 1 3 1 835.0572 1 +Q9VJQ5 Protein Dr1 8.2 2 4 2 3213.23104 2 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 125281.08165000001 12 +Q9VJY9 Protein Loquacious 11.61 5 9 0 18584.27726 4 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 3015.1895999999997 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 186667.01358 26 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 787.54364 1 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 1273.08142 2 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 37997.76678 12 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 6758.597400000001 4 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 8230.6082 3 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 5351.2305 3 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 3310.0080900000003 3 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 21334.322500000002 3 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 1908.9191 1 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 634293.9754700001 33 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 698082.45065 66 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 20822.726 2 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 21812.19295 6 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 51723.1242 11 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 106318.3584 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 50020.012 5 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 100036.246 6 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 5979.65236 3 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 485853.23575 23 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 20789.74824 3 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 67295.7562 5 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 2531.2436399999997 2 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 3843.18894 3 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 11006.53745 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 9139.26545 6 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 7839.9928 4 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 99092.304 8 +Q9VMD9 Tiggrin 12.16 31 55 0 100349.66124 36 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 1125.55663 2 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 101758.26527999999 15 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 3250.3749 2 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 40240.0215 3 +Q9VMR8 Protein Turandot M 30.53 3 5 0 58622.2595 5 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 50216.56474 16 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 35933.950840000005 9 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 6511.73305 8 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 199401.02328 19 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 2622.8052 1 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 4039.52123 3 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 5936.06985 5 +Q9VMY9 Guanine deaminase 8.93 4 6 4 10776.434220000001 4 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 4643.3095 2 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 73977.7662 9 +Q9VN14 Contactin 17.77 24 48 24 251757.40941 34 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 6312.0471 4 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 20490.1147 8 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 69234.94146 8 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 258277.70172 35 +Q9VN93 Cathepsin F 23.62 16 36 13 457445.27032 30 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 92515.3658 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 499.77594 1 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 151083.4415 4 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 297796.96816 12 +Q9VNE2 Protein krasavietz 22.04 12 30 12 171069.66751 21 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 102087.7842 8 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 5518.27845 3 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 12193.6775 4 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 20389.15439 11 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 23369.671 2 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 9537.871500000001 3 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 23338.60248 7 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 11451.768499999998 3 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 1860870.9926 41 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 352366.81587 21 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 35783.7182 8 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 7822.3837 5 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 32813.3307 4 +Q9VQC4 Glycerate kinase 13.14 9 14 0 49004.42861 13 +Q9VQF7 Bacchus 38.16 4 21 4 281760.85248 19 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 172182.1997 22 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 235120.81388 14 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 18782.5837 6 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 103187.89491999999 19 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 579.89374 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 3003.81146 2 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 9809.50994 2 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 10622.4372 3 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 56660.08857 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 453.32324 1 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 84867.697 4 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 7036.65157 5 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 6657.5236 5 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 25749.54191 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 28906.301199999998 5 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 229758.59159999999 11 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 16201.728 3 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 960726.4797799999 64 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 51945.0156 8 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 1597.6613 1 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 14754.44644 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 11328.17152 6 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 1620512.99702 51 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 4561.478 1 +Q9VSS1 Protein Pixie 5.56 4 4 4 15941.4744 3 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 37554.7234 10 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 19064.58199 8 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 434375.77433 43 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 93995.8487 16 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 909.30756 1 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 8299.5822 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 13697.298999999999 2 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 151737.71063 15 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 31635.2929 4 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 73976.14297 7 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 6383.2462 2 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 16494.3718 3 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 53284.067220000004 10 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 447801.16043 30 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 46417.1626 10 +Q9VTZ5 Transferrin 2 17.95 16 27 16 77263.00854000001 17 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 50252.23797 8 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 96689.73853 2 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 3835522.38406 79 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 204249.25160000002 29 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 10391.31025 5 +Q9VU84 Drebrin-like protein 12.99 8 24 8 133033.64685 19 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 37410.741030000005 9 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 13701.031 5 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 580121.64208 28 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 34165.16637 11 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 268329.52025 31 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 4027.5972 1 +Q9VV36 Retinin 31.94 8 155 8 1508660.08466 78 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 396224.74097 37 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 273996.62767 28 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 7456.186460000001 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 10647.07083 4 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 293128.99616 28 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 16357.77324 6 +Q9VVE2 Protein rogdi 26.49 7 15 7 131911.0986 10 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 24254.95688 6 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 4827.71631 4 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 435400.6155 10 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 10395.95003 5 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 223963.38943 19 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 10210.2233 2 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 32132.4438 3 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 17802.71496 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 15120.33374 6 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 6158.02506 6 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 187701.68758 14 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 16091.81162 6 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 83417.85647999999 12 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 153343.11712 20 +Q9VWA1 Clathrin light chain 41.55 12 58 0 1020206.27151 50 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 22077.045 6 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 13775.708499999999 3 +Q9VWE0 Cytokine receptor 0.78 1 2 1 923.60603 2 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 82309.70716 14 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 7948095.9877 155 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 373936.6482 16 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 46985.60577 17 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 8226.6201 3 +Q9VWU1 Serine protease persephone 8.88 4 6 4 29284.98485 5 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 4475.61684 2 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 10029.7285 3 +Q9VWX8 Frequenin-2 37.43 8 52 3 636529.09979 35 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 5176.211 2 +Q9VX10 Sulfiredoxin 11.73 2 4 0 4289.1703 2 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 212125.95599 16 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 396277.01519 34 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 21593.0357 2 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 100233.8142 9 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 14034.24832 4 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 5815.4247 2 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 480567.01254 63 +Q9VXG4 Annexin B11 23.68 14 41 14 274458.03463 33 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 111139.83122 16 +Q9VXK0 Protein NipSnap 9.89 3 16 0 88114.1039 12 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 42969.84289 10 +Q9VXN2 Protein stunted 81.97 6 16 6 235584.07945 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 26147.98267 7 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 38823.159100000004 4 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 65686.69114000001 6 +Q9VXY0 Probable cytochrome P450 4s3 2.83 2 4 2 403.4888 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 249706.74878999998 18 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 15464.40964 5 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 2879.7832 4 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 79138.02690000001 7 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 16377.41584 3 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 2451.30546 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 245920.68899999998 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 7643.627399999999 2 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 4150.9471 2 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 8794.9415 4 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 44598.89863 11 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 15093.830300000001 2 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 4271.076279999999 3 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 25476.7468 6 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 16407.6738 5 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 406401.60114 33 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 12097.8628 3 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 23242.621 1 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 141788.37132 17 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 60082.2679 10 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 483447.68994 27 +Q9VZ35 Protein Vago 5.0 1 1 1 339.33185 1 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 16172.06334 4 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 267243.15044 22 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 175935.96007 16 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 38447.242 8 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 14148.1876 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 3585.8061 2 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 780.6354 1 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 11652.2398 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 6936.46885 4 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 7050.25033 3 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 51266.11016 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 93160.5104 10 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 172588.22018 27 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 1359118.94604 65 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 144363.4846 16 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 16703.794 2 +Q9W032 Protein ecdysoneless 5.12 4 4 4 419.7147 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 508092.54790999996 44 +Q9W074 Protein HBS1 4.33 3 4 3 3181.79934 4 +Q9W0A0 Protein draper 9.6 8 20 0 25719.773699999998 8 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 760037.75954 28 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 6241.220799999999 2 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 12395.64669 8 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 31618.99013 8 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 613.6882 1 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 188855.61853 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 50836.6874 18 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 90615.163 11 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 650.77625 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 1232182.75916 48 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 43067.36348 7 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 472.99478 1 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 9068361.017070001 87 +Q9W1G0 Probable transaldolase 48.04 12 51 12 977336.387 43 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 19011.8564 3 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 32667.846299999997 5 +Q9W1K5 Sestrin homolog 6.84 4 7 0 14843.002400000001 5 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 36701.604849999996 7 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 6901.1785199999995 3 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 45844.12072 11 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 21634.49554 9 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 74971.27201 11 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 1136527.2954799999 52 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 39962.70326 8 +Q9W266 Protein windpipe 20.68 10 31 10 105896.83353 22 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 301862.35387 20 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 29584.737 5 +Q9W2E7 Protein Rae1 11.56 4 11 4 249229.84898 10 +Q9W2M2 Trehalase 29.36 16 47 0 310122.25894 39 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 15595.693800000001 2 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 822.4564 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 24800.97722 8 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 11655.098699999999 6 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 1442026.24033 66 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 347719.35037 22 +Q9W358 Chaperone Ric-8 10.65 7 8 0 4739.4445 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 1258852.26371 65 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 18772.13875 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 210812.1708 9 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 32713.212549999997 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 9444.9182 4 +Q9W3E2 Protein PIP82 19.83 23 56 23 47984.92277 28 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 25300.54045 12 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 13081.363609999999 6 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 31631.01075 7 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 64948.38948 6 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 77977.6892 5 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 2155.8882 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 6653.003 1 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 8116858.21711 164 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 12519.85196 3 +Q9W436 Neprilysin-1 4.24 4 4 4 9333.9491 4 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 24227.2033 6 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 52686.7117 10 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 622597.87456 23 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 77669.43953 16 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 28536.171599999998 7 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 121068.61664 16 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 45183.8878 4 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 656102.56783 145 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 12354.3326 2 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 66078.84419 22 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 100159.9559 7 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 3654.03643 2 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 105380.9186 12 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 1349.19942 2 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 252900.9247 48 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 25816.5956 2 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 680.8011 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 288899.993 3 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 252751.62256 26 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 35884.73446 7 +Q9XZ14 Protein gone early 4.44 4 4 1 4377.9307 1 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 36341.45198 6 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 174713.1977 20 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 161449.08871 21 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 174396.809 30 +Q9XZL8 Protein sarah 34.25 7 12 0 60280.4925 8 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 1668.9734 1 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 1618.37074 3 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 13495.7779 4 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 464568.64916000003 23 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 131343.8104 3 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 782768.6014 17 +X2JAU8 Protein nervous wreck 29.3 30 114 30 1076734.4969300001 96 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 5827.679609999999 4 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 14057.98427 3 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 81895.11905 18 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 84089.6673 6 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 27313.714920000002 8 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 1502.4152 2 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 1463164.51057 111 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 3190.16107 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 13156.93027 5 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 960.8925 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 77402.56784 23 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 29148.21398 10 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 13127.54358 8 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 174748.04013 33 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 2824586.04343 148 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 12576.88428 5 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 18014.4684 4 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 137619.90634 31 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 32351.616540000003 6 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 14012.14727 5 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 47932.34475 10 +A0A0B4K709 Uncharacterized protein, isoform E 2.78 2 3 0 403.38138 1 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 51793.39754 11 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 2316.7668 1 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 45997.764 11 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 2981.3621000000003 2 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 2398070.40898 124 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 110247.3229 20 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 11816.5075 4 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 15074.4352 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 8508.379959999998 3 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 3041.3657 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 1396930.7371 38 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 26972.245 5 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 363149.88234999997 44 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 4076.97224 5 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 91651.38863 23 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 16832.1134 6 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 15151.30109 8 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 8941.19763 3 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 88057.66158 14 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 84467.9517 9 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 127666.66618 41 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 9613.8983 5 +A0A0B4KEJ7 Coronin 17.01 9 17 0 60761.87822 13 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 11568.2084 4 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 682.91437 1 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 4335.69927 3 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 14129.561 1 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 75725.94322 30 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 2405.10507 2 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 6167.83504 2 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 5842.3379 2 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 64885.4896 13 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 16245.34065 9 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 2320.77 2 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 607224.57984 35 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 19019.8929 4 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 1773786.03343 72 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 12708.919259999999 8 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 107531.6925 19 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 208986.78573 14 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 50390.69827 10 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 4758.5799 3 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 50394.17119 9 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 23599.12572 9 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 5653.66944 4 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 4265.560350000001 4 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 6203.9579 2 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 48495.2362 7 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 22416.15794 7 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 5650.5775 3 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 25342.351329999998 7 +A0A0B4KGF7 beta-mannosidase 2.65 3 4 0 376.22702 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 139662.88718999998 18 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 558848.66726 18 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 303637.15728 43 +A0A0B4KGP4 Beaten path IV, isoform B 1.57 1 2 0 461.38315 1 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 17661.18774 3 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 1907.7363 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 82201.04042 11 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 384.17258 1 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 13467.87534 8 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 4765.7981 2 +A0A0B4KH34 Annexin 67.9 22 147 2 3871424.13167 122 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 8776.84012 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 7305.1285 3 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 154964.25786 20 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 52111.7983 16 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 27690.40406 5 +A0A0B4KHF0 Ferritin 77.97 20 130 1 4717516.95986 100 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 6266077.86279 188 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 73025.44128 7 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 5724.8430499999995 2 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 12352.743 4 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 58340.06532 12 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 88860.38099 16 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 76461.97506 4 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 11921.307700000001 6 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 11893.6961 2 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 14713.94829 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 2.81 1 1 0 578.8047 1 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 1780.6782 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 446657.38056 39 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 558391.0118099999 26 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 6797.0405 1 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 1636.0908 1 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 6174.716 1 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 3166.8486000000003 2 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 188516.17665 24 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 156460.30683 31 +A0A0B4LF95 glutaminase 7.29 4 9 0 38146.9476 7 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 334233.09458 32 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 86259.11732 15 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 20979.1761 5 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 8833.92251 3 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 1916.1688 1 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 1418.246 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 79578.55547 15 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 15238.316350000001 8 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 18879.7997 3 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 23469.02726 7 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 466435.72079 48 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 103914.46845 12 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 6008.3884 4 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 228791.4253 27 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 18274.78505 6 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 1177258.55657 45 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 4723.0254 1 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 25700.7003 6 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 339865.95772 49 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 6302.9398 2 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 4013.4264 4 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 22847.5707 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 49649.36434 11 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 1660.4404 1 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 12236.87901 5 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 6295.650299999999 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 932.08746 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 89479.19633 22 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 6360.4175 1 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 2693.18663 2 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 151040.99614 42 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 3492.0204 3 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 22748.25893 5 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 56660.55162 11 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 405.80795 1 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 60132.99141 11 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 6270.54846 5 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 5613834.2778 112 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 49823.88498 13 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 34642.51985 4 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 4002.0111 2 +A0A1Z1CH25 AT27361p 7.62 4 4 3 5316.336740000001 3 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 103552.19187 11 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 1567.85344 2 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 3349706.64366 129 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 12228.75698 13 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 41759.90575 13 +A0A4P1SAA7 IP07559p 11.17 2 3 0 13639.831100000001 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 4206.57445 3 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 110262.83158 39 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 45647.714 8 +A0A6H2EEJ8 Uncharacterized protein, isoform C 3.44 3 3 0 719.12726 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 8186.384399999999 2 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 1969.9672 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 3086065.88551 295 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 1548.4603 1 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 732792.0068000001 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 7195.9931400000005 5 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 8252.8744 2 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 6797.588 1 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 8265.627840000001 3 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 550.2972 1 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 11821.2998 5 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 1723309.49101 251 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 314986.68235 38 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 562541.94083 31 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 121079.40402 20 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 162305.63939 16 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 39240.283599999995 6 +A1Z6F6 FI18602p1 9.08 8 14 0 82982.4999 11 +A1Z6G9 FI18173p1 9.04 3 5 3 10993.4401 5 +A1Z6H4 RE52822p 6.86 4 9 0 19926.6373 5 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 10399.70946 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 2961.1829 1 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 52218.71394 8 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 121051.82943 17 +A1Z6R7 FI21445p1 33.57 9 21 9 39963.15107 15 +A1Z6V5 FI01422p 37.15 14 45 14 356116.74616 34 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 160035.30965 10 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 24451.15798 9 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 16375.6937 6 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 611.767 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 4654.32846 5 +A1Z7B8 GEO08456p1 12.66 2 6 2 44970.5021 5 +A1Z7G2 MIP13653p 13.39 2 8 2 173347.3065 5 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 102341.25818 15 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 12218.37833 4 +A1Z7K6 FI20236p1 5.61 3 7 3 23706.85514 6 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 47691.62034 14 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 3351.8617 2 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 32584.21398 9 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 361299.64887000003 48 +A1Z7V9 FI20020p1 2.74 2 4 1 4767.01087 3 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 7059.3413 1 +A1Z7X8 FI02944p 15.34 6 12 6 105468.2014 9 +A1Z803 FI02892p 31.76 12 29 12 213837.01533 25 +A1Z843 Nodal modulator 3 9.17 12 20 12 73365.16493 16 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 487653.04459 29 +A1Z871 CAP, isoform B 10.27 19 36 0 44810.0824 4 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 1793044.69736 58 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 10755.72794 4 +A1Z8G7 FI09243p 16.53 2 4 2 555.57654 1 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 2831392.7877599997 59 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 31449.503699999997 3 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 4534.902 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 2169.80587 4 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 21084.011 2 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 419639.57464 8 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 390294.60980000003 12 +A1Z933 GEO02273p1 22.09 2 3 2 11313.7304 3 +A1Z934 SD19268p 36.45 11 34 11 154894.79517 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 7643.904 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 59290.77376 21 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 15052.179 6 +A1Z9B5 IP16508p 15.06 3 7 3 34323.3168 7 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 1797914.7807200002 52 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 170959.41013 20 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 59742.00201 30 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 120593.3095 8 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 23477.62379 7 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 243391.869 3 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 9446.98488 5 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 8914.9853 2 +A1ZA23 FI18007p1 26.91 10 31 10 115074.69861 27 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 1883.2002 1 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 43426.5313 6 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 83191.08976 12 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 8964.1962 3 +A1ZAH3 FI16515p1 3.28 2 4 0 1749.85675 3 +A1ZAK3 Protein DEK 5.4 3 5 0 6609.377 3 +A1ZAL1 lysozyme 30.43 5 6 5 30828.1086 3 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 468.66394 1 +A1ZAU4 RH39096p 50.95 16 45 0 1489037.31534 40 +A1ZB23 IP19117p 16.06 4 12 4 65238.0208 10 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 849.2581 2 +A1ZB68 FI01423p 33.18 8 25 8 178207.33758000002 18 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 334585.0011 26 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 4158.6675 1 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 112120.65417 12 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 340.72977 1 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 674281.4421 35 +A1ZBA5 FI07234p 7.22 2 3 2 28832.059999999998 3 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 12842.3521 3 +A1ZBD8 Mucin-5AC 3.57 5 9 5 2814.56924 5 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 168366.08288 25 +A1ZBK7 Crammer 58.23 4 13 4 151206.14833 11 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 461.20926 1 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 126661.72664000001 12 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 124464.78668 18 +A1ZBU5 GNBP-like 3 27.63 3 9 3 46980.978950000004 7 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 16327.0379 3 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 619771.11424 34 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 988.44101 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 167104.72448 40 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 778.26056 1 +A2VEG3 IP16294p 3.06 3 5 0 11380.383300000001 4 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 38552.81157 8 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 290055.25284 35 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 20443.5643 6 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 184561.15491 22 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 937783.60794 61 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 1388360.4567800001 112 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 1085794.8166399999 47 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 39605.54573 6 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 19548.09075 7 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 738832.37933 12 +A8DYD1 Combgap, isoform L 13.26 10 20 0 65171.76763 13 +A8DYI6 Prohibitin 66.27 22 89 3 1257425.08767 63 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 133350.22387 20 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 30960.77775 14 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 24816.603880000002 10 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 8890.23754 4 +A8DZ06 Stolid, isoform J 10.24 13 34 0 205726.88472 25 +A8DZ14 FI17828p1 20.1 9 32 3 150873.55076 20 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 51149.0927 7 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 5770.7803 1 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 97962.17324 30 +A8E6W0 IP19808p 25.25 5 9 5 31003.95356 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 6389.19048 4 +A8JNJ6 Karst, isoform E 1.54 8 8 0 2085.445 1 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 2540.2888 1 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 22483.94927 6 +A8JNP2 arginine kinase 72.53 37 429 2 420265.44624 13 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 13730.498 4 +A8JNS4 Starvin, isoform E 11.81 7 10 0 13040.1016 7 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 12632.366100000001 4 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 41920.3332 6 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 28080.09488 8 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 6080.4792099999995 3 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 8707.67955 4 +A8JQW3 Pinin, isoform B 20.2 7 10 0 27368.18502 9 +A8JQY2 Uncharacterized protein, isoform C 1.38 1 1 0 740.6412 1 +A8JR01 Kramer, isoform I 3.4 9 12 0 6588.307870000001 5 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 45910.46235 6 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 31155.58379 12 +A8JR58 Hadley, isoform B 2.02 1 1 0 1825.1398 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 1461481.15025 88 +A8JRH3 FI20012p1 60.08 25 75 1 1035638.52498 59 +A8JTM7 Megalin, isoform A 4.53 24 37 24 113894.08087 26 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 26918.5471 9 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 1684.4524000000001 3 +A8JUZ6 MIP03678p 7.28 3 4 0 12202.831 4 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 5848.521919999999 4 +A8JV09 Coronin 1.67 2 2 0 2524.4556 1 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 342546.98611 25 +A8WH76 GEO10024p1 51.85 4 15 4 367388.60469999997 11 +A8Y4V5 FI20903p1 8.21 2 3 2 4181.5711 2 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 16402.1426 3 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 2277600.23108 16 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 2305.9854 1 +B7YZH1 FI20143p1 6.47 4 6 0 5362.8533 5 +B7YZN0 Syndecan 17.81 10 24 0 36969.15867 14 +B7YZN4 GH02741p3 49.23 4 6 4 14904.52205 5 +B7YZN8 GH02741p1 22.37 2 5 2 17238.0339 5 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 28255.245179999998 10 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 2414159.75935 55 +B7YZV2 Phosphodiesterase 6.31 7 15 0 18803.77627 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 129079.46905 21 +B7Z001 Fatty acid synthase 21.46 50 93 0 216764.99042 61 +B7Z005 Drongo, isoform I 9.14 5 11 0 14479.8061 6 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 1347.56734 2 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 4248.1248 4 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 8189.3669 3 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 1984.1254 1 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 34625.63165 4 +B7Z0C9 GH15104p1 41.05 4 6 4 15777.4714 3 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 4651287.18116 127 +B7Z0M0 FI17308p1 18.85 2 3 2 5633.5563999999995 2 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 2421.9058 2 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 46321.8679 15 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 69040.95984 12 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 8183.25036 5 +B7Z107 GH09380p1 52.17 5 7 5 17700.79857 5 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 13178.58592 4 +C0HDP4 MIP05618p 3.77 2 2 0 8147.116 2 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 615202.63264 31 +C7LAG1 CoRest, isoform G 3.76 3 4 1 403.80762 1 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 364494.54375 53 +C9QP70 MIP12608p 15.85 2 3 2 10587.9561 3 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 302814.47514 23 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 180752.9322 17 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 13409.01136 7 +D0Z756 MIP14966p 32.93 13 33 0 960137.05486 29 +D1YSG0 Bent, isoform F 6.65 59 74 0 105697.8734 49 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 86740.4442 10 +D3DMM0 MIP15702p 15.28 8 15 0 53984.75386 11 +D3DMM4 MIP15217p 30.28 24 95 0 602678.1889 75 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 62517.97055 8 +D5SHT6 MIP21537p 4.99 3 4 0 12556.54879 4 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 10991.740699999998 3 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 11963.133800000001 4 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 159668.67429999998 30 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 49166.58696 10 +E1JGR3 GEO02620p1 24.62 3 5 3 2400.07585 2 +E1JGY6 Hulk, isoform F 13.33 23 31 1 198224.36739 27 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 65072.58093 14 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 9295.17682 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 864.80252 2 +E1JH90 Patronin, isoform F 1.38 2 2 0 395.02222 1 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 325384.31101999996 67 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 22572.37373 6 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 4198.6455 1 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 9525.727 1 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 31826.550000000003 8 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 23212.58865 6 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 77509.47376 15 +E1JHP9 Galectin 4.06 2 4 0 6212.51937 3 +E1JHT6 Reticulon-like protein 18.12 11 35 0 586032.22294 30 +E1JHT9 Reticulon-like protein 24.77 6 24 0 5526.6862 2 +E1JI40 Vermiform, isoform I 13.51 7 15 0 132515.10361 15 +E1JI59 Schizo, isoform D 2.87 4 5 0 363.32623 1 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 27850.500500000002 5 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 9811.80315 3 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 23210.2408 4 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 12727.902 1 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 9062.1469 3 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 5685.2965 3 +E1JIY8 L antigen family member 3 20.72 3 8 3 34494.0153 5 +E1JJ33 Complexin, isoform U 65.73 9 79 1 2546453.96097 73 +E1JJA4 Dynamin 27.41 28 73 0 274153.59231 57 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 1662.7168 1 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 4024.4489999999996 2 +E1JJG5 Phospholipase A2 13.81 3 3 1 841.12665 1 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 678414.98913 72 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 8648.90796 7 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 57878.496759999995 13 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 3075.7927 1 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 301909.12114 50 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 2481.5278 1 +E2QD54 Natalisin, isoform D 4.7 3 5 0 1848.39724 3 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 46408.721900000004 6 +E2QD98 Protein PALS1 7.62 16 28 0 122534.77301 24 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 21667.31034 13 +E8NH67 Asperous, isoform B 51.14 19 129 0 1054382.8371 84 +F0JAP7 LP18071p 23.14 6 10 0 2830.67625 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 18394.47662 8 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 1641194.3281 116 +H1UUB1 GEO12465p1 55.04 6 25 1 125634.10291 18 +H8F4T3 Regucalcin 32.35 6 11 0 207197.13932999998 10 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 15625.21254 5 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 1272.11377 3 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 457631.70991 23 +L0MPN7 Asator, isoform H 12.15 13 25 0 74209.61324 16 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 36189.36321 24 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 1647.8042 1 +M9MRX0 Limpet, isoform J 26.49 29 95 0 1268126.0908300001 74 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 163308.07411 57 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 71661.68506 9 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 26672.08687 10 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 19202.963 2 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 933.4862499999999 2 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 312874.90475 22 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 293094.29245 15 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 788478.07717 46 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 678.87103 1 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 10720.2525 5 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 41090.77843 6 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 153247.95966 13 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 28508.78092 16 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 95803.79416 20 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 37649.70458 14 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 6939.8125 2 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 25139.29173 9 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 2886076.69172 361 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 11548.939139999999 4 +M9NDE0 pantothenate kinase 6.54 3 6 0 11446.735400000001 5 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 29637.86084 12 +M9NDS9 chitinase 2.56 12 16 0 25146.753360000002 11 +M9NDX8 Neurabin-1 4.11 8 9 0 8452.743 3 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 13230.42021 8 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 38364.0485 6 +M9NEF2 Histone deacetylase 4.43 4 4 0 3220.03917 2 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 660.93195 1 +M9NEW0 LD39232p2 43.33 7 15 7 99631.18801 12 +M9NEX3 Cytochrome b5 57.55 6 20 0 511247.54757 16 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 23446.9074 5 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 6088.176530000001 3 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 63774.359500000006 7 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 23794.41718 10 +M9NFC0 Troponin I 48.74 15 55 5 146047.4928 11 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 19139.768 2 +M9NFH3 Lasp, isoform D 27.3 8 30 1 6123.581 1 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 81912.38759 18 +M9NH07 Upheld, isoform N 48.73 30 148 0 4808142.08829 129 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 72709.3515 22 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 41106.9878 5 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 4328.7838 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 493742.72218 33 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 1359.2095 2 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 59925.07 2 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 14501.5529 3 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 1022855.2522 135 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 2123.796 1 +M9PBM3 Cysteine protease 6.34 2 4 0 9103.6533 2 +M9PBN2 Apolipoprotein D 29.39 7 23 0 339963.18145000003 17 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 100534.4718 18 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 309.7966 1 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 10641.85624 4 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 44498.51696 11 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 227720.92431 25 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 6996.38084 7 +M9PBW9 Rhea, isoform G 5.83 17 26 0 68775.44370999999 18 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 94435.84243 13 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 8201171.49319 135 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 4844.7918 2 +M9PC74 Reticulocalbin-3 17.11 6 19 0 99281.96276 17 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 39752.3174 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 12902.069 3 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 2001.63429 4 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 27286.16718 14 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 66537.05175 17 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 15209.42808 6 +M9PCT7 Bunched, isoform O 18.75 4 11 1 718.3678 1 +M9PCU0 FI21215p1 26.43 30 64 1 406.09515 1 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 71308.75075 11 +M9PD73 TEP1-F 20.6 32 69 0 583880.06928 53 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 286797.6981 20 +M9PDB2 Varicose, isoform E 8.51 6 10 0 20213.06115 9 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 122715.78536000001 24 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 1164.0964 1 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 11034.001269999999 6 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 432.52252 1 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 11263.9306 6 +M9PDU4 Acyl carrier protein 18.23 4 33 2 2259687.84295 30 +M9PDV2 Tetraspanin 6.97 2 3 0 4396.7679 2 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 151814.80254 44 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 112142.96122 12 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 2830010.57774 44 +M9PE32 Fife, isoform D 12.79 17 34 1 49565.25304 26 +M9PE35 RabX6, isoform B 6.76 2 3 0 7951.1875 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 7.42 3 3 0 536.4369 1 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 5714.2261499999995 5 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 9883.99094 8 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 15566.17202 4 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 6198.841 3 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 36323.438500000004 5 +M9PEC1 IST1 homolog 16.75 7 17 0 60583.47506 12 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 80551.12266 19 +M9PEG1 Uncharacterized protein 36.6 17 48 17 752055.41245 40 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 744406.1484 240 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 10230.35168 5 +M9PEL3 Quemao, isoform C 38.04 11 22 0 89453.52933 16 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 36146.87631 10 +M9PET3 Simjang, isoform D 3.57 3 4 0 2499.5911 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 852.084 1 +M9PF16 Spectrin beta chain 24.44 61 168 3 709745.45457 121 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 230446.63816 28 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 7924.34662 4 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 7463.3929800000005 4 +M9PFH7 Tartan, isoform B 5.99 5 7 0 18976.9944 6 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 475.95508 1 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 20567.687739999998 8 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 4024.6997 3 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 22168.11705 4 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 1747.07107 3 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 53668.02742 13 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 70517.30229 16 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 68958.81448 9 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 4530813.29236 189 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 7822.2224 4 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 34237.62303 5 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 80620.86392999999 8 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 5854.7937 3 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 54272.43383 19 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 16403.790549999998 7 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 125115.42645 26 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 186840.50608 31 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 37666.89049 13 +M9PHX2 Visgun, isoform E 8.78 2 4 1 14896.211229999999 4 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 3067.56054 3 +M9PI33 Inositol oxygenase 7.27 3 4 0 55837.943 3 +M9PI51 Dual specificity protein phosphatase 15 6.04 3 4 0 403.51382 1 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 4590.6847 2 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 4255.3234 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 11742.7505 2 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 2585.7966 1 +M9PJQ5 Troponin I 47.28 13 65 0 91473.33169 11 +O15971 LD39986p 26.96 6 30 3 39867.8983 6 +O16158 Calcium-binding protein 50.0 8 32 8 1097998.66366 25 +O17452 LD20793p 37.83 7 35 4 650093.93348 25 +O18332 FI01544p 72.2 13 63 11 717251.81699 42 +O18335 Rab11 53.27 13 69 13 1176181.7502600001 59 +O18336 Ras-related protein Rab-14 24.65 6 18 0 46004.3538 11 +O18338 LD44762p 27.05 6 31 0 7835.9563 2 +O44226 Elongin-B 91.53 9 34 9 325731.7452 23 +O44434 QKR58E-3 12.62 4 6 3 14957.3498 3 +O46052 EG:152A3.3 protein 18.87 6 8 3 36663.6504 6 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 217200.03386 43 +O46079 Protein KTI12 homolog 13.04 4 11 3 6027.40718 5 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 1006.4035 2 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 16293.55417 4 +O61604 Fimbrin 32.34 22 67 3 680845.14073 57 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 35401.98487 14 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 11363.507309999999 9 +O76521 Importin subunit alpha 9.21 5 12 5 40124.21516 9 +O76752 Sepiapterin reductase 27.2 7 26 7 71074.83475 18 +O76877 EG:132E8.3 protein 10.62 2 5 2 21714.72912 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 1203088.29096 24 +O77259 EG:115C2.5 protein 9.0 2 2 0 9754.478 2 +O77425 Ribokinase 8.88 3 7 3 9753.14513 4 +O77430 GEO01111p1 62.96 11 37 10 243958.86041 31 +O77434 EG:34F3.8 protein 28.91 5 19 1 46145.72843 10 +O77477 LD24471p 20.94 9 15 9 46287.65746 11 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 118923.43925000001 8 +O96692 small monomeric GTPase 12.09 2 6 0 10221.8214 3 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 40440.93686 13 +O97059 Ccp84Ab 19.91 4 8 0 56941.765 7 +O97062 Ccp84Ae 34.13 6 26 6 63189.46727 13 +O97064 Ccp84Ag 25.65 4 10 4 28600.4556 7 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 5843.5167 3 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 1630311.5894 31 +O97111 LD29223p 7.41 3 5 3 9556.18655 5 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 5554.0034 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 15793.61 2 +O97365 BM-40 31.58 9 14 9 119213.5843 11 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 955874.60488 38 +O97428 Ciboulot, isoform A 13.95 2 4 0 20091.677600000003 2 +O97454 Protein BUD31 homolog 13.89 2 3 2 961.05414 1 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 78747.32945 18 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 975.2967 1 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 3137369.52 73 +P92181 Cuticle protein DCP2 36.7 3 15 3 47975.49927 7 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 16834.5416 3 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 1152489.39418 65 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 62758.31643 11 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 28899.6286 8 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 4999.5097 2 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 563518.74133 111 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 2551.386 1 +Q0E8P5 FI05614p 9.28 5 12 5 194171.09 8 +Q0E8S7 Homer, isoform E 37.66 18 48 3 425753.90155999997 40 +Q0E8U4 FI09636p 15.33 6 8 6 16168.0332 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 535257.52233 20 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 21333.93036 6 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 392952.20208 35 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 641714.9538 21 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 108760.8515 19 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 1409.4483 2 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 216475.8326 55 +Q0E9E6 RE33655p 1.32 1 2 1 1680.7598 1 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 77837.40894 13 +Q0E9G4 CG1600-PA 12.6 3 4 0 5716.05037 4 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 74880.19294000001 13 +Q0KHR7 Septin 18.74 8 17 0 132522.2817 16 +Q0KHX7 FI18193p1 6.31 8 11 0 23462.66601 10 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 2694817.85497 136 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 30538.1589 6 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 23231.049030000002 11 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 182033.59648 28 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 10564.39622 6 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 37676.03294 6 +Q0KIB0 Sidestep III 2.61 4 5 4 5063.81 2 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 4514.84241 5 +Q1RL12 IP16413p 60.25 16 101 1 62393.363 1 +Q24090 GH08712p 14.05 6 9 6 29465.276200000004 7 +Q24253 AP complex subunit beta 19.76 16 31 16 157996.9808 26 +Q26459 EN protein binding protein 13.32 8 16 0 29094.2503 9 +Q29QY7 IP15859p 9.86 1 1 0 6486.0776 1 +Q2MGK7 GEO13330p1 26.77 4 11 4 67457.9362 10 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 3078.8677 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 10302.3475 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 3924806.49986 115 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 8061.097839999999 4 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 206945.21056 9 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 4418.31227 4 +Q4QQ49 IP09595p 3.04 1 1 1 1689.7253 1 +Q4QQ70 IP09819p 16.08 7 13 7 49357.6775 8 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 18472.67443 5 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 18785.5212 5 +Q4V619 IP07950p 6.9 2 2 0 3724.3313 1 +Q4V625 lysozyme 6.75 1 2 1 16776.28 1 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 102708.21634 11 +Q500Y7 GEO11443p1 89.47 4 15 4 597883.98818 13 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 8962.43327 6 +Q59E01 FI02065p 5.58 4 7 0 481.42847 1 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 8505.7576 2 +Q5BIA9 RE10908p 2.72 2 2 2 7233.93943 2 +Q5LJT3 MIP01391p 17.0 3 3 3 62900.736000000004 2 +Q5U124 alpha-glucosidase 16.51 11 24 0 210344.00244 21 +Q5U126 GEO11286p1 59.42 7 36 7 1038159.8189099999 30 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 18063.024960000002 5 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 15190.1519 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 206981.59226 16 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 14125.02364 3 +Q6IGN6 HDC05827 11.36 2 8 2 27719.8358 6 +Q6IGW6 GEO13367p1 44.23 2 4 2 24158.870939999997 4 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 738045.4864 16 +Q6IL43 GEO11093p1 27.71 2 6 2 39946.7019 5 +Q6NL44 GH28815p 16.11 6 12 6 13768.726610000002 9 +Q6NLJ9 AT19138p 46.59 3 5 2 19351.74061 5 +Q6NMY2 RH54371p 32.42 5 16 5 194367.55252000003 8 +Q6NNV2 RE44043p 14.68 5 8 0 54978.152969999996 8 +Q6NNV7 RH03309p 29.55 5 15 1 298794.87059999997 11 +Q6NP72 GEO09659p1 53.59 5 28 5 111645.52562 20 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 4124.7921 2 +Q76NR6 Regucalcin 77.74 24 100 0 3118488.01359 77 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 125665.9111 11 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 63754.46294 15 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 993742.2278400001 24 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 4549.23912 3 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 155764.89901 19 +Q7JQX9 FI14001p1 4.65 4 4 0 1119.17758 2 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 2432883.90443 81 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 223399.47175 16 +Q7JRB2 RH09039p 4.52 1 3 1 491.25888 1 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 24918.588129999996 3 +Q7JRH5 RE28271p 1.31 1 2 1 4500.3025 2 +Q7JRL9 GH25289p 67.12 10 56 1 1554077.77101 48 +Q7JRN6 GH06388p 11.21 3 10 3 9624.0591 5 +Q7JS69 FI04632p 45.02 10 65 1 477688.86460000003 14 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 2869.69397 2 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 13228.7134 6 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 493450.93978 38 +Q7JV09 GH28348p 7.5 8 12 5 15522.07691 8 +Q7JV69 SD11922p 6.95 3 6 3 6546.737 4 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 14920.5767 3 +Q7JVH6 LD24696p 27.01 8 20 7 182274.71427 14 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 92277.3585 13 +Q7JVK6 Translin 16.17 4 11 4 56403.9213 9 +Q7JVK8 GEO08987p1 52.05 8 31 8 175655.73090999998 22 +Q7JVM1 GH25962p 22.64 5 16 5 43174.92194 10 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 45979.3483 9 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 2086.9949 1 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 79122.74915999999 9 +Q7JW07 LD08826p 12.12 3 3 3 16113.5795 3 +Q7JW48 RE12410p 8.08 3 8 3 56131.6186 4 +Q7JW66 LD21545p 8.81 3 5 3 20469.8118 5 +Q7JWD6 Elongin-C 52.99 6 18 6 438715.23294 13 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 553175.1575 28 +Q7JWH5 RING-box protein 2 7.96 1 1 1 7935.1772 1 +Q7JWQ7 RE01730p 9.74 4 7 4 3088.19658 4 +Q7JWR4 GH19585p 6.06 1 2 1 12686.714 2 +Q7JWU9 AT07420p 22.49 7 8 7 17933.92903 6 +Q7JWX3 GH10112p 7.35 4 10 4 81565.80962 9 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 345248.77400000003 2 +Q7JX94 Phospholipase A2 13.29 3 6 3 2164.05436 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 58996.6527 8 +Q7JXB9 Endonuclease 8.39 4 4 4 6783.0828 2 +Q7JXC4 CG6459 protein 33.46 6 46 6 1066957.0265600001 40 +Q7JXW8 Off-track2 11.09 5 9 4 24565.54154 8 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 57015.3577 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 201488.24585 6 +Q7JYW9 Phosphotransferase 18.72 9 13 9 28610.25305 12 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 13111.7985 2 +Q7JYZ0 lysozyme 11.18 2 6 2 34078.43775 5 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 53027.15255 8 +Q7JZB1 RE49860p 8.66 3 5 3 7401.3769999999995 2 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 364221.11097 37 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 673.0292 1 +Q7JZE1 Peroxin 11 9.96 3 6 3 9028.05626 5 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 41055.4522 7 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 953149.813 39 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 32476.21157 11 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 4657.35264 2 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 440807.24325999996 23 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 535043.81277 26 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 24999.694499999998 6 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 3608060.17683 145 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 9673.955 3 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 500177.93949 37 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 76552.95889 13 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 746.13916 1 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 11359.0346 2 +Q7K0S1 LD39211p 3.43 2 3 2 4763.9035 2 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 113565.85248 20 +Q7K0S6 LD36817p 21.02 8 13 8 34613.80926 10 +Q7K0T7 LD33470p 1.5 2 2 0 443.35864 1 +Q7K0W1 LD27406p 3.85 2 2 2 4880.09838 2 +Q7K0W4 LD27203p 56.4 18 61 17 1168461.05402 39 +Q7K0X9 LD23667p 8.51 2 17 2 21643.15333 13 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 16023.894099999998 4 +Q7K127 Alpha-galactosidase 18.71 7 24 7 258739.3056 16 +Q7K130 Dynactin subunit 4 4.67 3 4 3 10098.814999999999 2 +Q7K148 Proteasome subunit beta 21.28 6 13 6 95075.469 12 +Q7K159 LD06557p 26.22 6 8 6 4660.40021 5 +Q7K180 LD02709p 17.73 8 12 8 9177.39137 6 +Q7K188 GEO05126p1 29.68 6 49 6 1155239.85912 43 +Q7K1C0 GH23780p 46.53 5 11 1 363610.5493 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 39296.686740000005 8 +Q7K1C5 GH21176p 10.85 7 9 7 38850.97885 8 +Q7K1H0 GH09096p 16.67 6 8 6 25201.4563 7 +Q7K1M4 SD04017p 17.31 5 15 5 34024.082239999996 11 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 54182.55715 10 +Q7K1W5 LD35843p 23.4 10 26 10 288640.64566 23 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 6021.3748399999995 3 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 289083.17265 21 +Q7K2E1 LD05247p 9.07 5 13 5 71098.70917 11 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 12752.3313 2 +Q7K2L7 GH27120p 17.59 3 5 3 29812.6524 4 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 23504.38746 8 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 1715.46567 3 +Q7K2P3 GH20817p 63.48 14 46 1 158710.93838 33 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 7559.641 3 +Q7K2W6 tyrosinase 23.91 16 34 16 73360.42454 19 +Q7K332 GH17623p 6.28 2 11 1 11441.91491 7 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 196258.5643 18 +Q7K3E2 LD34147p 38.81 22 51 22 350740.77763 40 +Q7K3H0 LD28067p 2.93 6 10 0 22467.48163 7 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 602610.57374 40 +Q7K3N4 GH26015p 16.49 7 13 7 49786.645300000004 8 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 23184.5643 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 66529.15944 20 +Q7K3W4 GH08941p 24.88 8 21 8 194625.32292 18 +Q7K3Y9 Spondin-1 5.04 5 7 5 8163.51398 3 +Q7K3Z3 GH01724p 39.07 15 44 15 521279.13974 36 +Q7K485 Cathepsin D 25.51 7 29 7 730503.45326 24 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 12857.35854 6 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 4053.9033 1 +Q7K4J7 LD36653p 4.06 1 1 1 970.3687 1 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 5148.073630000001 2 +Q7K4T8 LD23856p 8.52 4 6 4 10011.8085 5 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 5656.355750000001 3 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 47273.4455 8 +Q7K519 GH16429p 6.75 3 3 3 16303.895400000001 2 +Q7K549 GH13040p 6.1 3 4 3 3945.42005 3 +Q7K568 GH10642p 13.82 5 11 5 92378.7098 10 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 469753.75591 41 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 200000.57254999998 20 +Q7K5M6 GH04176p 19.59 6 16 6 84293.24463 12 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 246876.2602 20 +Q7K860 FI07231p 33.33 5 18 5 554448.7178 14 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 367031.58083 24 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 1125.94476 2 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 4981.30287 4 +Q7KK54 MIP07328p 2.21 2 3 2 16949.0048 3 +Q7KK90 GH14654p 47.77 7 29 7 731715.38393 26 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 137054.8581 20 +Q7KLE5 Amphiphysin 41.86 27 94 3 1123386.98877 75 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 85030.6435 12 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 129602.94275 10 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 53239.4459 4 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 3915.5546 2 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 141571.65454000002 13 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 613864.83037 46 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 9663.88537 4 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 10218.938 1 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 153385.83815999998 37 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 2683119.69733 90 +Q7KND8 FI09619p 9.18 8 10 8 15245.89853 8 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 330895.66743000003 18 +Q7KRT4 GH07253p 2.47 1 1 0 1642.3234 1 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 9188.4532 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 10036.53796 5 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 28792.6359 3 +Q7KSE4 GH05443p 5.39 4 5 4 10691.73846 5 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 132280.8322 14 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 715947.77468 26 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 10270.982539999999 6 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 1600.7239 1 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 171728.36442 29 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 472820.15387 24 +Q7KT58 GH08155p 7.03 4 6 4 9903.39785 5 +Q7KT70 FI18641p1 4.18 4 4 4 6977.934130000001 4 +Q7KTA1 HL01444p 20.43 10 22 10 91876.30113 17 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 91823.8619 25 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 2088170.49901 75 +Q7KTN9 FI01009p 4.26 3 3 0 5048.7199 2 +Q7KTP7 LP22840p 61.88 10 18 10 86558.24479 14 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 1451967.77613 40 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 102115.60051999999 18 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 9957.9271 3 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 267941.02926 32 +Q7KUD4 phospholipase A2 3.95 4 6 0 10501.288100000002 3 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 79153.25962 23 +Q7KUT5 Protein MIX23 21.01 3 4 0 7750.832179999999 3 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 20077.35606 4 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 11827.3637 4 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 117633.7977 21 +Q7KV27 alanine transaminase 47.01 23 110 0 3749249.66321 97 +Q7KV34 Pinkman 39.06 24 47 24 846084.7347799999 39 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 6763.83626 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 635.9776 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 72855.11587000001 13 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 854.04442 2 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 2302814.8448199998 79 +Q7KY04 small monomeric GTPase 15.96 3 10 2 15218.089 2 +Q7PL91 GEO11417p1 26.6 3 13 3 113855.8195 10 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 2462.659 1 +Q7PLI0 P120 catenin 10.5 10 17 10 77523.26814 13 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 142537.17877 26 +Q7PLS1 LD01937p 11.46 5 8 0 16742.89406 7 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 9800.322259999999 4 +Q7YU88 SD08871p 5.67 6 8 0 3329.8057 1 +Q86B44 Glutathione synthetase 11.03 6 11 0 28181.29945 6 +Q86B74 WASp, isoform C 16.19 7 10 0 8031.3231399999995 5 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 7102.237 1 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 4012.0079 2 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 80684.09657 22 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 65998.59739 14 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 360713.45231 35 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 206104.01247 24 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 409772.46576 25 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 229988.7506 40 +Q86BS3 Chromator, isoform A 27.65 20 50 20 124630.77372 37 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 11847.4035 4 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 116423.1142 15 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 14966.9264 5 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 46399.36547 7 +Q8I0D4 RE20510p 20.9 17 39 0 469343.61512000003 26 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 15376.060300000001 5 +Q8I0P9 acid phosphatase 1.76 1 2 0 6050.4077 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 81312.58245 18 +Q8I930 GH14147p 4.68 3 4 0 5838.8754 3 +Q8I941 GH16843p 28.83 7 29 7 153748.25546000001 23 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 5376.738600000001 4 +Q8IGY1 RE08101p 33.61 41 326 0 5317189.0683699995 144 +Q8IH23 GEO02102p1 43.7 5 11 5 41190.8956 9 +Q8IM93 FI18814p1 36.72 17 40 17 131507.19324 27 +Q8IMF4 RE24176p 10.11 5 7 0 8328.46314 4 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 343708.65175 24 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 12348.65 3 +Q8IMQ8 RH29536p 33.72 10 31 0 296245.81788 28 +Q8IMT3 IP12392p 5.95 3 4 3 3163.16394 2 +Q8IMT6 FI01822p 6.64 3 6 3 32814.85188 5 +Q8IMU2 RE10237p 13.88 3 5 0 12376.38464 3 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 1683.3275 1 +Q8IMX4 FI04408p 6.6 2 7 0 16289.139439999999 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 58467.27496 10 +Q8IN49 MIP05539p 7.19 7 14 7 63679.1783 11 +Q8IN51 FI17609p1 21.17 3 9 3 22979.658900000002 6 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 1602.86784 2 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 27020.516 4 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 16660.88665 5 +Q8INH5 Aminopeptidase 5.65 6 9 0 16841.067900000002 9 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 37750.7511 5 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 18440.116439999998 7 +Q8IP52 RE16941p 3.69 4 4 4 555.8929 1 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 4143.82504 3 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 256768.90058 27 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 12979.00697 5 +Q8IP97 Peroxin-19 54.11 10 30 10 496391.4656 25 +Q8IPA5 RE15581p 6.07 2 2 0 9434.3125 1 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 17480.65573 8 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 86571.068 9 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 1614334.92959 98 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 38466.7072 11 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 1592.8212 1 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 178217.85373 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 689.29504 1 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 26039.1181 3 +Q8IPT9 SD05439p1 36.84 12 19 0 229015.55200000003 14 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 567558.28602 48 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 6917.45554 3 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 17590.26286 11 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 18194.757550000002 10 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 10642.818 4 +Q8IQB7 MIP21654p 9.44 3 5 3 955.1850300000001 2 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 10625.6304 4 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 24180.91502 7 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 30103.87664 4 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 8471.7822 3 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 31676.32963 13 +Q8IQH0 FI12817p 5.22 8 11 0 18784.0999 8 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 45637.9696 10 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 4413.8228 3 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 35422.27214 21 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 17519.4697 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 17338.6691 4 +Q8IQW5 RE23625p 79.17 16 78 4 1734708.8022 58 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 900.7202 1 +Q8IR72 FI19011p1 10.06 1 3 1 11634.9674 2 +Q8IR76 FAD synthase 12.59 4 7 0 17104.65855 6 +Q8IRD0 RH17559p 42.86 3 12 3 84271.9565 10 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 2098771.89232 71 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 136161.6507 24 +Q8IRI5 Trio, isoform D 8.83 7 10 0 17452.5883 8 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 4100649.10209 142 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 23933.78025 5 +Q8MLP9 GEO08457p1 16.96 2 5 2 3618.7564 2 +Q8MLQ0 FI14118p 21.05 2 3 2 31297.5838 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 55100.34151 10 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 25844.4204 5 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 848.156 1 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 120704.9939 15 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 1419662.96417 72 +Q8MQP2 MIP16184p 7.0 2 5 0 37685.546 4 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 13375.1029 2 +Q8MRM0 GH16740p 23.63 6 17 6 59588.50373 13 +Q8MRS5 AT03104p 3.18 3 3 0 1722.3567 1 +Q8MRT7 SD26038p 13.22 3 7 3 35335.3451 7 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 4581.3240000000005 2 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 2092.0989 1 +Q8MSI2 GH15296p 77.78 17 127 17 4123860.91022 97 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 2845.1919 2 +Q8MST5 Tubulin beta chain 47.92 18 97 0 568263.7272 36 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 1176371.26363 55 +Q8MZ07 GEO07581p1 10.96 2 5 2 7316.73267 3 +Q8MZI3 RNA helicase 17.36 13 23 6 112162.70384 15 +Q8SWS2 RE29468p 39.05 5 14 0 106640.22224 9 +Q8SWS3 RE26528p 17.13 2 3 2 70916.312 3 +Q8SWZ6 RH51312p 8.33 2 3 2 2508.13585 2 +Q8SX35 GEO07743p1 33.33 3 8 1 30968.73526 6 +Q8SX50 RE04530p 14.96 6 11 0 22444.05784 9 +Q8SX54 CLIP domain-containing serine protease 2.78 1 1 1 357.0562 1 +Q8SX57 LD44221p 42.41 8 19 8 95216.2387 16 +Q8SX78 LD05679p 19.7 8 11 8 14971.49637 8 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 17854.066600000002 5 +Q8SXC2 FI04487p 7.56 4 4 4 6922.0737 3 +Q8SXD5 GH02216p 53.85 11 59 2 363734.54472 39 +Q8SXE1 RH69521p 6.23 3 3 3 411.42603 1 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 49582.0993 7 +Q8SXF2 RH40246p 10.75 5 7 5 13455.8264 5 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 4815.6591 2 +Q8SXK0 RE18748p 10.55 3 3 3 3194.28516 3 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 112627.50178 27 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 15760.9466 3 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 93434.03735 17 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 129442.00675 3 +Q8SXS0 RE40914p 11.92 4 6 4 5210.3134900000005 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 260338.54363 21 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 12847.01058 5 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 123918.42025 8 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 940.7543 1 +Q8SY67 lysozyme 35.85 3 3 3 44623.2417 3 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 229142.68296 10 +Q8SYC4 RE68566p 1.97 1 1 1 593.81866 1 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 1297336.9958600001 76 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 218408.39781999998 15 +Q8SYH8 RE57644p 19.78 5 13 1 41495.33927 9 +Q8SYJ2 GEO09626p1 61.45 8 53 8 2054277.91542 47 +Q8SYN0 RE52086p 9.56 4 5 4 6440.4295 3 +Q8SYQ4 RE42475p 52.03 10 68 10 822620.17386 50 +Q8SYQ8 RE40412p 32.35 5 10 5 35858.703480000004 10 +Q8SZK5 RH26533p 10.93 3 5 3 11646.55754 4 +Q8SZK9 HL04814p 47.19 11 54 11 1500627.58988 44 +Q8SZM2 RH04334p 28.15 10 38 10 987041.5663500001 32 +Q8SZN1 GEO08217p1 51.61 7 31 3 488450.0549 24 +Q8T0I9 GH27479p 23.63 10 27 1 202706.99301 21 +Q8T0J5 GH26851p 29.62 9 33 0 332623.66257 30 +Q8T0N5 GH17516p 16.56 6 16 6 130022.0895 14 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 20031.613299999997 5 +Q8T0V2 GH02495p 21.25 10 23 0 79178.82191 19 +Q8T389 Endophilin B 56.35 18 77 0 3779.9116 1 +Q8T3V6 Large ribosomal subunit protein uL29m 6.27 2 2 2 357.41785 1 +Q8T3W8 Venom allergen-1 20.61 6 10 0 22585.89605 6 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 297731.8961 37 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 875423.36761 61 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 13530.346000000001 2 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 5318.737 1 +Q94513 Boundary element associated factor 12.41 5 12 1 14935.71423 6 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 22206.17724 6 +Q95NU8 GH16255p 16.25 8 18 8 96338.25995 15 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 18159.56898 3 +Q95PE4 GEO07784p1 6.17 1 1 1 431.76263 1 +Q95R34 GH16463p 9.71 3 4 3 7362.0744 2 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 39656.1419 6 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 31540.7516 13 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 11164647.18949 125 +Q95RE4 LD37574p 44.32 15 30 1 26784.59617 18 +Q95RF6 LD34461p 43.27 5 7 5 28718.25 4 +Q95RI2 LD28549p 27.78 9 14 9 30766.55346 8 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 22304.44314 7 +Q95RQ1 LD16414p 3.71 2 2 2 442.606 1 +Q95RR6 LD15002p 64.6 17 77 0 40542.269 2 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 76338.206 12 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 140592.1656 4 +Q95RY2 LD01461p 20.61 5 11 1 71365.37945 9 +Q95SH0 GH26463p 5.58 5 6 5 6431.868 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 163265.64305 28 +Q95SH7 GH26007p 7.94 2 3 2 701.83765 1 +Q95SI7 GH23390p 75.09 17 43 17 804869.60906 37 +Q95SN8 GH12395p 26.76 5 14 5 127672.057 11 +Q95TK5 LD44914p 12.95 7 17 7 50962.6802 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 366884.02992 30 +Q95TP0 LD34582p 1.97 1 1 1 2673.5652 1 +Q95TZ7 GH19182p 79.35 28 155 0 1554764.71365 105 +Q95U15 GH14252p 82.05 32 274 0 899391.05249 22 +Q95U34 GH11113p 20.41 10 36 10 213358.48181 27 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 37912.0802 6 +Q960D4 SD06560p 22.09 14 22 0 98942.29754 18 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 3303707.78836 72 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 76734.02693 23 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 6710.47282 3 +Q961B9 LD24073p 8.37 4 4 4 8493.278 1 +Q961C8 LD22649p 15.3 5 10 0 14417.116119999999 8 +Q961E7 phosphorylase kinase 10.74 5 5 1 9960.980800000001 3 +Q961K6 GH19047p 4.19 3 3 3 5623.77873 3 +Q961Q8 GH10454p 10.86 5 7 5 22968.6635 5 +Q961T9 GH07914p 35.88 6 11 6 69629.60246 8 +Q961X4 Combover, isoform B 10.01 8 13 0 39611.518 8 +Q966T5 Paxillin, isoform D 37.06 7 18 2 30555.21863 6 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 22694.13633 8 +Q9I7I3 GH12831p 9.56 3 4 3 2845.3301 2 +Q9I7J0 GH21596p 73.37 11 57 11 937531.65315 41 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 10055.3654 3 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 11490.406780000001 6 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 540644.33795 26 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 949707.19995 18 +Q9NCC3 Sorting nexin 14.34 8 16 8 52476.10391 16 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 2.35 3 3 0 419.621 1 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 54470.21466 5 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 74235.83353 13 +Q9U6P7 FI18813p1 14.35 7 9 7 41357.5251 8 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 469985.60468 39 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 14203.22568 4 +Q9V393 Kurtz arrestin 10.0 5 9 5 66024.65429 8 +Q9V396 Carbonic anhydrase 46.67 12 54 12 897322.12689 40 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 35639.82827 7 +Q9V3C8 DShc protein 3.42 2 3 2 3334.4482 1 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 79377.16532 13 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 4360.1075 2 +Q9V3E7 LD24793p 42.48 12 35 12 229672.92038 28 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 11069.9333 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 160006.0397 13 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 957.483 1 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 26883.1558 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 82785.1045 6 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 687788.94836 44 +Q9V3N9 B6 5.73 4 6 4 27661.5602 3 +Q9V3P3 LD45860p 40.0 10 21 10 326326.62113 18 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 53650.572700000004 8 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 5254.8722 2 +Q9V3T8 LD32469p 14.36 4 5 4 36384.061200000004 5 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 910984.38032 37 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 644503.05259 41 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 1181335.31156 52 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 393681.00464 34 +Q9V3W2 GM23292p 61.08 12 86 12 1561947.50554 73 +Q9V3W7 LD40489p 41.18 10 24 10 91371.34509 14 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 108159.60063 24 +Q9V3Y4 LD43650p 6.65 2 4 2 1695.1471 1 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 133930.6996 28 +Q9V3Z4 GH11341p 22.31 12 31 12 102420.06203 25 +Q9V3Z9 HL02234p 46.21 14 53 14 1731775.9646100001 37 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 8220.54504 6 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 526813.59916 39 +Q9V406 Activator protein 4 9.03 7 16 7 31138.864139999998 10 +Q9V420 FI02878p 13.91 5 10 5 38509.81582 10 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 142661.81606 17 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 12645.5463 3 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 111657.2681 8 +Q9V455 Importin subunit alpha 15.95 9 16 9 103067.62538 12 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 344011.6083 32 +Q9V491 Plexin A, isoform A 1.03 2 2 0 331.69382 1 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 532601.59703 45 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1024218.83886 63 +Q9V4E0 Complex I-49kD 26.28 9 14 8 84897.82225 9 +Q9V4E7 Transporter 3.62 3 6 2 14694.31392 6 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 3980.8379299999997 3 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 69702.16601 9 +Q9V9Q4 LD43819p 24.01 9 22 9 178834.21351 15 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 76958.7819 3 +Q9V9T5 GM14617p 15.04 10 14 1 15702.8542 8 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 1860.4799 1 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 59785.38045 11 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 3702.444 2 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 79991.67406 12 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 284496.53356 18 +Q9V9W4 GH08048p 3.6 2 2 2 670.22833 1 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 1224.58637 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 39483.8857 7 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 1552690.18672 78 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 66377.7626 9 +Q9VA34 LP06141p 3.64 4 5 4 7837.84944 5 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 103046.77755 20 +Q9VA41 GEO08227p1 42.04 6 16 2 96553.9246 7 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 406685.5416 13 +Q9VA56 GH23271p 60.79 20 66 1 696.40204 1 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 13380.8328 3 +Q9VA71 FI19924p1 6.19 3 3 3 9421.01538 3 +Q9VA76 IP18706p 11.33 4 8 4 13776.99122 5 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 3368.7564 2 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 168100.98508 17 +Q9VAA6 GEO12235p1 10.76 2 6 2 29549.460980000003 6 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 43638.18184 14 +Q9VAC1 GM14349p 63.31 21 113 21 4567845.74572 86 +Q9VAC4 GEO09167p1 23.08 3 12 3 215757.9475 10 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 16756.00854 8 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 4123.8549 2 +Q9VAD7 RH37294p 11.56 2 3 2 1712.20118 3 +Q9VAG3 trypsin 11.46 3 6 3 32940.1471 5 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 15203.3545 5 +Q9VAI9 GEO07291p1 62.25 9 62 5 1949960.4996699998 42 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 76712.81271 13 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 5061.03316 3 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 731181.60985 53 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 6578240.31176 94 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 33146.59085 8 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 3353.9408599999997 4 +Q9VAU6 LD27564p 2.62 2 2 2 5297.1319 2 +Q9VAV2 FI21480p1 16.09 13 25 13 77736.84857 20 +Q9VAY0 Neprilysin 7 5.58 4 4 4 4030.4044000000004 2 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 799873.15118 72 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 18881.328999999998 2 +Q9VAY9 GH07821p 4.83 2 2 2 21187.074 1 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 423429.19137 47 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 827772.51189 47 +Q9VB17 IP11341p 10.12 4 7 4 16134.9235 5 +Q9VB22 LD33695p 13.07 8 14 8 94423.83903999999 9 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 36373.85181 14 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 131814.5063 9 +Q9VB69 Malic enzyme 19.45 12 25 1 57127.64903 16 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 18152.2079 4 +Q9VB77 IP09938p 4.06 1 2 1 3473.8528 1 +Q9VB78 Eater 12.38 3 7 3 2604.512 1 +Q9VB79 IP09473p 14.19 5 15 5 27056.0189 12 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 783937.03956 53 +Q9VB86 LP07342p 7.34 1 1 1 4856.9053 1 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 236747.02610000002 23 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 6871.58822 8 +Q9VBC9 Beaten path VII 3.68 2 4 2 14899.3318 4 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 1382156.2773199999 49 +Q9VBI3 RH72336p 22.66 7 23 7 84264.84761 17 +Q9VBL3 GH01188p 8.54 5 6 5 5481.82104 5 +Q9VBN5 60S ribosomal protein L27 5.93 1 1 1 891.80084 1 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 12210.4146 3 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 3113328.68897 126 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 14548.896700000001 3 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 270546.09032 19 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 13467.6864 6 +Q9VBT2 IP11926p 4.57 2 2 2 904.1445 1 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 5585.4615 3 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 500483.70682 10 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 11439.3555 3 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 8914.929680000001 3 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 868011.20517 57 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 14908.7381 5 +Q9VC06 LD37516p 12.05 9 12 9 39015.6489 10 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 960.1558 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 119297.62541 25 +Q9VC30 RE05274p 13.98 3 7 3 4502.4688 1 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 29660.80385 9 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 85931.6654 14 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 71570.0304 8 +Q9VC58 Syntaxin-18 6.08 3 3 3 826.52124 2 +Q9VC66 AT25567p 25.62 12 25 12 78028.90065 24 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 7149.3381 4 +Q9VC87 RE57978p 7.51 3 5 3 9009.248599999999 2 +Q9VCB9 FI08802p 6.15 2 2 2 15818.9894 2 +Q9VCC9 LD23779p 2.55 3 5 3 1059.85321 2 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 3281.9394 3 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 107043.1849 8 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 9124.33652 7 +Q9VCF8 LD23561p 10.51 4 8 4 31506.5905 6 +Q9VCI4 LD32918p 5.33 4 7 4 346.2221 1 +Q9VCI7 LD02979p 12.03 5 12 1 79402.3663 9 +Q9VCK6 LD34157p 14.88 7 11 7 27043.87143 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 34133.571429999996 6 +Q9VCR4 FI17836p1 3.66 3 5 3 4372.19362 3 +Q9VCR9 RH48101p 20.22 8 34 8 167487.44411 28 +Q9VCT4 Klingon 5.69 3 4 3 4163.29722 3 +Q9VCU0 GEO02312p1 33.33 4 15 4 43683.798670000004 11 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 23715.5043 4 +Q9VCW2 Cardinal 11.33 9 12 9 10460.82156 5 +Q9VCW6 GCS light chain 37.54 12 34 12 206847.74941 29 +Q9VCZ2 FI07970p 5.96 3 4 3 2209.0868 2 +Q9VD00 FI07666p 15.11 4 16 4 71522.9829 13 +Q9VD01 LP12095p 8.52 2 4 2 18629.1694 4 +Q9VD02 GH14779p 37.99 5 19 5 150374.15262 16 +Q9VD13 GH02671p 17.26 8 11 1 28310.10295 7 +Q9VD14 GH07286p 11.88 8 21 8 123118.65013 21 +Q9VD29 small monomeric GTPase 48.19 9 26 9 1234788.07286 23 +Q9VD30 GH05294p 74.19 12 43 12 1154589.94853 39 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 10579.341199999999 3 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 2298840.30908 79 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 18173.0665 3 +Q9VD68 GH19849p 4.3 2 3 2 10800.023000000001 3 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 23277.82886 5 +Q9VDC0 GH01837p 28.0 5 14 5 25842.456729999998 11 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 37887.14 4 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 237304.4454 10 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 221940.6802 4 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 108833.0309 26 +Q9VDH3 GH08630p 66.23 13 38 13 791147.87749 33 +Q9VDI1 LD46328p 53.04 22 79 0 443988.81765 52 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 7192.6055 2 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 27986.7853 4 +Q9VDK2 GH15831p 5.72 4 6 3 13802.38728 5 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 84726.43012 20 +Q9VDK9 GH12359p 6.46 4 6 4 32704.769 5 +Q9VDL5 GEO09602p1 13.43 1 2 1 7206.0612 2 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 252767.3887 19 +Q9VDQ3 Identity crisis 6.53 4 4 4 407.15585 1 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 149940.51487 19 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 146801.70396 14 +Q9VDU7 nicotinamidase 15.69 5 15 5 137692.32213 13 +Q9VDV2 AT06125p 8.54 4 4 3 3843.9794699999998 2 +Q9VDY8 MIP08680p 57.35 14 64 1 673557.77586 53 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 537631.65458 71 +Q9VE08 GH10002p 8.92 2 3 2 3520.9492 2 +Q9VE12 LD27322p 14.81 5 12 5 25029.41482 9 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 17089.14629 5 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 25925.55153 6 +Q9VE56 FI17806p1 7.14 2 3 2 44505.649900000004 3 +Q9VE57 GEO10850p1 12.41 2 3 2 9974.9313 3 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 1159.41775 2 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 12912.9489 3 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 28180.242430000002 8 +Q9VE94 LD14127p 12.24 5 6 5 8371.82118 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 168328.72878 14 +Q9VEA7 FI01460p 28.09 1 3 1 4160.996300000001 2 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 14193217.30174 235 +Q9VEB7 AT04491p 5.94 3 3 3 12724.34056 2 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 21433.84127 4 +Q9VEC8 RE23139p1 14.62 2 4 2 19930.735699999997 4 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 70218.83857 9 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 9830.220150000001 2 +Q9VEG8 RE59232p 2.8 1 1 1 25151.078 1 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 10852.74 3 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 435160.27213 33 +Q9VEJ9 Curly Su 1.2 1 2 1 8126.584699999999 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 110358.17715999999 12 +Q9VEK8 GH07711p 34.05 12 33 12 146584.40816 27 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 56345.39185 16 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 3227.7309999999998 2 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 10124.71533 6 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 97607.21661 21 +Q9VEP8 GH11385p 13.2 10 14 10 34146.4467 9 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 56397.35918 14 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 14898.19935 6 +Q9VES8 RE28913p 27.34 8 16 8 23024.567300000002 10 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 30710.4854 3 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 101056.83589999999 19 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 421.32434 1 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 9368.50207 3 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 96868.17876 19 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 16912.4559 3 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 865669.18651 33 +Q9VEY9 GH15759p 2.33 1 1 1 666.3298 1 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 50270.21146 15 +Q9VF15 GEO09476p1 81.05 12 61 8 694961.07414 44 +Q9VF23 arginine kinase 7.22 4 6 4 5306.49147 2 +Q9VF24 Crossveinless d 5.1 8 12 8 37288.36717 10 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 40138.70116 10 +Q9VF39 FI01459p 4.13 2 2 2 6669.1313 1 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 87260.9393 21 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 16821.5901 6 +Q9VF77 FI16517p1 10.07 4 7 4 13725.79236 4 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 12111.340499999998 3 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 125817.25498 11 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 12889.4936 2 +Q9VFC7 Mf5 protein 84.38 37 292 0 3180724.2131600003 173 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 2236.02085 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 4590044.64602 114 +Q9VFI3 GEO08281p1 21.15 1 1 1 3289.878 1 +Q9VFM0 GH19262p 4.96 3 5 3 3310.5135600000003 4 +Q9VFN7 GEO07678p1 20.13 4 19 4 178745.13734000002 15 +Q9VFN9 GEO07882p1 15.32 2 6 2 24561.215 4 +Q9VFP0 RH07106p 17.84 7 11 7 41410.6609 10 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 485981.72375 29 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 261734.14934 20 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 8138.54635 5 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 24355.632999999998 5 +Q9VFT4 AT27578p 10.58 6 11 6 5585.64839 8 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 16447.96774 5 +Q9VFV1 RE55542p 2.83 2 2 2 15677.4323 2 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 863926.31652 55 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 68204.2142 10 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 6256.53459 4 +Q9VG01 RE12073p 5.26 3 3 3 10508.5615 2 +Q9VG04 Protein MEMO1 10.85 4 6 4 5212.5692500000005 4 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 2020.0691 1 +Q9VG23 GH22994p 65.12 12 32 1 655062.04607 23 +Q9VG26 MIP06012p 38.03 8 22 8 284179.38902 18 +Q9VG28 Beaten path Vc 2.36 1 3 1 349.67487 1 +Q9VG31 Malic enzyme 16.64 15 41 0 214584.44475 35 +Q9VG33 Sulfurtransferase 73.64 6 14 6 485965.435 14 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 45184.138 7 +Q9VG51 Sorting nexin-3 55.69 9 28 9 106881.86772 22 +Q9VG62 Toys are us 1.44 1 1 1 719.42523 1 +Q9VG69 LP03547p 32.01 11 35 11 291145.72649000003 30 +Q9VG81 RH49330p 11.83 6 15 6 29086.89464 9 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 38043.20018 5 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 213702.9172 15 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 4446.5472 2 +Q9VGA3 LD12305p 35.91 7 32 6 263467.04875 23 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 2654.4812 2 +Q9VGE4 FI04457p 9.25 11 16 11 25943.10496 10 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 8110.783289999999 5 +Q9VGF3 IP11040p 11.88 5 6 5 7725.60956 3 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 205931.58516 26 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 80926.35889999999 10 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 57737.60566 8 +Q9VGL0 LD43047p 2.84 4 6 4 1031.8984 2 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 8425593.77321 199 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 30668.773 7 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 2138680.04099 72 +Q9VGQ8 Arfaptin 6.76 3 4 3 15675.860050000001 4 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 5503.422350000001 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 2671.61374 2 +Q9VGS3 RH44771p 14.04 3 26 3 303371.30376 21 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 8210.8128 2 +Q9VGT3 GM04645p 5.3 3 5 3 1448.03375 2 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 13824.41786 3 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 11015.4672 2 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 22509.3496 3 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 38868.4951 6 +Q9VGY2 Peptide deformylase 10.08 3 4 1 13129.1078 4 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 2761.2783 1 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 57239.184850000005 14 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 32983.55615 7 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 164505.73468 16 +Q9VH37 IP06524p 14.29 3 4 3 21251.483119999997 4 +Q9VH63 Uncharacterized protein 3.0 2 2 2 859.9048 1 +Q9VH64 LD29322p 10.03 4 5 4 24554.5496 4 +Q9VH66 FI18258p1 29.61 6 13 6 37240.67602 10 +Q9VH72 TA01656p1 52.94 7 23 7 305500.50107999996 16 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 310113.31301 37 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 23100.36433 10 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 41346.3142 7 +Q9VH85 GH14967p 3.41 3 3 3 3017.7322 1 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 88237.9575 6 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 93493.56349999999 8 +Q9VHA8 LD25575p 12.25 8 20 8 111668.9804 15 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 77676.91262 13 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 37087.672 6 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 70852.072 13 +Q9VHC7 FI21236p1 30.54 19 54 9 647194.89713 38 +Q9VHC8 LD31448p 10.06 2 2 2 547.70703 1 +Q9VHE3 GH05665p 9.38 4 6 4 16964.96212 6 +Q9VHE4 omega-amidase 17.31 5 13 5 37845.7961 12 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 24106.7088 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 90520.64087999999 9 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 21506.075539999998 8 +Q9VHH8 Beag 6.82 4 8 4 17201.13952 7 +Q9VHI1 Hyrax 7.06 4 6 4 7598.1955499999995 4 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 201958.955 20 +Q9VHJ2 LD32381p 2.65 1 1 1 2995.6167 1 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 13174.5378 2 +Q9VHJ7 LD41978p 4.65 3 3 3 6704.341 1 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 409257.62327 39 +Q9VHM3 LD30467p 10.77 5 8 5 19022.0932 6 +Q9VHN4 GH14121p 9.77 3 5 3 4219.99665 4 +Q9VHN7 transketolase 22.36 14 33 2 229806.67270999998 24 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 7804.7366 2 +Q9VHT3 CG9617 protein 15.17 3 3 3 8252.11402 2 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 15749.71348 5 +Q9VHX2 GH08043p 9.4 4 7 4 6755.837170000001 4 +Q9VHX4 LD24679p 66.57 21 108 21 2324362.30994 87 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 13872.694449999999 4 +Q9VI09 GH14494p 49.01 6 27 6 519419.88676 22 +Q9VI21 Dementin, isoform D 3.92 3 3 0 1008.34815 2 +Q9VI24 LD25151p 7.73 3 3 3 3215.6436 1 +Q9VI53 LD44267p 14.93 6 13 6 26129.46732 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 17449.2494 3 +Q9VI64 LD30995p 47.03 13 57 13 694943.86086 49 +Q9VI80 Thawb 1.58 2 3 2 6498.6891 2 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 10527.745930000001 5 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 9264.53777 4 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 11896268.61788 248 +Q9VIF2 GM01519p 8.7 4 11 4 45819.7604 10 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 48312.88315 10 +Q9VIH1 CG9273 protein 16.67 5 12 5 14670.27259 7 +Q9VII5 GEO08323p1 25.79 4 13 4 77711.96253 12 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 1705.154 1 +Q9VIJ3 FI14214p 12.78 2 3 1 751.765 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 1178.5521 2 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 37354.80072 14 +Q9VIL2 LD19544p 8.63 3 8 3 38428.7901 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 92953.59517 15 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 36021.04262 6 +Q9VIQ5 RH02620p 27.49 7 16 7 15352.52618 8 +Q9VIQ6 FI17342p1 14.79 3 8 3 36090.5997 7 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 910888.88956 40 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 12760.0003 3 +Q9VIU3 FI23988p1 6.9 3 4 3 8261.037779999999 4 +Q9VIV6 GH04973p 4.56 2 2 2 827.77527 1 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 20798.918700000002 3 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 1826.6725 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 24775.8721 2 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 64343.77245 8 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 180038.59395 10 +Q9VJ22 GH09876p 5.41 2 3 2 1954.0387 1 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 10776.227069999999 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 197306.6467 12 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 37490.67523 9 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 497859.80442 37 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 39963.308189999996 13 +Q9VJ60 GM16226p 12.15 3 7 3 23438.44726 7 +Q9VJ61 SD03870p 9.81 5 6 5 9728.96769 5 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 113426.30375 15 +Q9VJ80 LD42267p 6.89 9 15 9 33794.96515 13 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 32404.3736 11 +Q9VJA9 GH07373p 0.94 1 1 0 13338.849 1 +Q9VJC0 GEO08203p1 37.23 5 6 5 30104.1984 4 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 27598.9478 5 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 109023.31917 25 +Q9VJD4 LD24721p 33.84 12 37 12 640045.34863 23 +Q9VJE3 LD24839p 14.6 7 7 7 20478.8717 5 +Q9VJH8 FI03416p 5.71 4 5 3 11456.85961 5 +Q9VJI5 Protein yellow 13.91 7 13 7 44955.27053 12 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 207050.29665 13 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 280994.87041000003 24 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 6730.7082 2 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 49125.95254 7 +Q9VJQ3 Protein yellow 22.83 9 30 8 656289.8878 29 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 44134.66222 4 +Q9VJU6 IP09831p 15.87 4 4 4 13943.7444 2 +Q9VJU8 GH23407p 8.48 4 9 4 24071.8567 4 +Q9VJX3 B4, isoform A 2.44 3 3 3 4427.1388 3 +Q9VJZ1 FI21342p1 8.24 5 6 5 12665.66519 5 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 942253.10412 46 +Q9VJZ5 LD07294p 17.89 6 14 6 28027.04695 10 +Q9VJZ6 LD40224p 67.13 10 28 10 289365.60032 20 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 79733.9391 7 +Q9VK11 GH15921p 17.8 5 15 5 142972.26012 15 +Q9VK12 GH20621p 54.0 15 86 15 1246135.46377 64 +Q9VK18 LD36945p 10.11 5 7 5 5812.684859999999 5 +Q9VK19 FI07225p 7.72 2 2 2 564.9396 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 948.4119 1 +Q9VK31 LD35592p 3.65 2 2 2 1452.1093999999998 2 +Q9VK39 FI09204p 45.28 4 21 4 67642.41141 14 +Q9VK43 LD10135p 8.24 3 3 3 734.7493 1 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 419.38492 1 +Q9VK59 LD23647p 32.84 31 71 31 202059.7355 42 +Q9VK60 GH25425p 49.42 10 45 10 1174838.36481 33 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 497785.00815999997 42 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 99482.39665 15 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 185283.96847 14 +Q9VK99 Atilla, isoform B 51.75 9 42 9 482427.11303 29 +Q9VKA1 FI02817p 15.58 3 7 3 1369.28414 2 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 6280.9475999999995 2 +Q9VKC8 FI03495p 11.04 7 13 7 130761.51877 10 +Q9VKD9 MIP16835p1 2.3 2 2 2 7180.5265 2 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 5310496.39664 328 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 41260.2443 8 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 27040.952100000002 6 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 2376.047 1 +Q9VKI8 GH03305p 80.72 20 131 20 1696700.04928 95 +Q9VKJ4 Csl4 22.06 4 6 4 4328.32007 2 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 933244.02903 47 +Q9VKM7 AT01533p 9.31 7 9 4 45060.17418 6 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 87034.02434999999 17 +Q9VKQ5 GEO07393p1 29.03 3 3 3 5993.7837 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 914.79435 2 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 305164.49122 21 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 14990.41525 4 +Q9VKU5 LD37206p 7.02 2 3 2 1522.0396 1 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 438265.33033 33 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 12393.9121 4 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 13350.68949 6 +Q9VKW1 LD41958p 8.58 4 7 4 2431.89179 3 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 26090.250310000003 10 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 3574921.44662 129 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 157881.3825 14 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 9663.23905 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 149801.7035 17 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 376065.06399 42 +Q9VL02 GH08677p 6.78 3 4 2 17418.94126 4 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 15111.557929999999 5 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 6442.691500000001 2 +Q9VL16 RE45833p 30.13 6 46 6 699096.6057 39 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 2515.79153 2 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 2727.32 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 10405.88492 5 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 12040.61384 3 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 726847.12277 41 +Q9VL70 HL08109p 78.89 30 118 30 4283563.2817 101 +Q9VL71 LD29830p 7.02 4 5 4 2845.2225900000003 4 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 46872.7867 5 +Q9VL91 LD23102p 2.06 2 2 2 401.91254 1 +Q9VL93 GEO07195p1 13.64 2 4 2 42093.6489 4 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 50808.1488 7 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 1090928.71115 46 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 1422360.23402 61 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 12047.96942 5 +Q9VLI4 Raw, isoform A 2.53 3 3 0 3158.133 1 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 23016.854 2 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 33381.1159 4 +Q9VLP0 IP04187p 20.32 5 7 5 15251.49666 4 +Q9VLP1 GEO08095p1 36.49 4 22 4 108186.43579 15 +Q9VLP2 GEO08076p1 38.78 8 25 8 115133.94565 14 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 26047.0334 2 +Q9VLQ9 Sorting nexin 31.85 14 43 1 244378.5318 31 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 21407.9075 4 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 17141.2645 4 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 728395.8317 21 +Q9VLS5 LD29542p 12.08 6 8 6 17232.70312 7 +Q9VLS7 LD21067p 0.89 2 3 0 1467.0013 2 +Q9VLT3 LD23292p 13.58 24 53 24 249345.62387 46 +Q9VLT7 IP17351p 16.35 2 5 2 126814.4998 3 +Q9VLV9 Proctolin 19.29 2 4 2 722.51154 1 +Q9VLW8 LD06392p 6.75 2 2 2 10278.9334 2 +Q9VLX6 HL01609p 18.95 5 9 0 37940.67464 7 +Q9VLY1 HL02931p 19.01 1 2 1 59549.176 1 +Q9VLY7 TEP1-F 4.02 7 7 7 11041.94722 6 +Q9VLY9 CD109 antigen 20.51 28 66 0 522275.29492 57 +Q9VM07 RE43931p 18.26 4 9 3 27640.9341 3 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 67053.86888 10 +Q9VM11 HL01515p 16.08 5 9 5 42415.19388 7 +Q9VM12 MIP26555p1 24.49 8 23 8 156560.41706 17 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 6113197.70732 214 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 2027079.73896 70 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 13645.9241 3 +Q9VM47 Menin 4.98 4 8 1 13774.295359999998 3 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 3323.5474999999997 3 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 23751.51104 7 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 20224.9465 3 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 159295.81785999998 10 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 26185.1309 7 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 1825305.42236 77 +Q9VMC3 LD35051p 8.64 4 4 4 5605.3849 2 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 26929.8289 3 +Q9VMC7 LP11564p 6.96 4 5 1 1853.8357299999998 3 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 35599.07434 15 +Q9VME1 FI01864p 16.46 8 16 8 68190.83394000001 14 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 15053.434700000002 7 +Q9VMF0 FI04444p 3.77 2 2 2 5797.070449999999 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 23568.07421 11 +Q9VMH8 GEO07746p1 53.17 8 19 8 285611.408 16 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 338369.18778000004 26 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 841384.37605 36 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 2166733.60137 42 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 94298.04884999999 12 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 97179.70579 10 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 1304025.91 52 +Q9VMT2 GEO07854p1 71.81 9 122 1 1741248.02015 90 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 421642.73416 26 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 36786.73356 8 +Q9VMV5 Viking, isoform A 10.0 19 40 19 62288.2391 28 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 2778.2413500000002 3 +Q9VMX4 AT19154p 13.15 3 7 3 65776.0585 6 +Q9VN01 GH23891p 8.61 5 10 5 17212.5682 6 +Q9VN02 GH14561p 29.6 7 15 7 43812.0985 12 +Q9VN21 LD30155p 49.91 26 129 26 1461376.3478 112 +Q9VN39 RE74585p 17.58 6 13 1 10093.53503 6 +Q9VN44 FI07923p 16.56 15 37 15 121877.28261 22 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 101637.85704 9 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 90193.80244 13 +Q9VN86 AT14148p 14.19 6 10 6 18201.480199999998 5 +Q9VN88 LD45836p 35.98 7 17 7 51863.5123 12 +Q9VNA3 GH21273p 34.26 7 21 7 97982.28318 19 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 238184.26797 13 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 18331.7983 3 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 482.3269 1 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 32801.8049 7 +Q9VNF3 RE01652p 34.63 8 31 6 318289.47326 25 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 9768.25854 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 1119.31022 2 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 56514.7703 8 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 69576.144 2 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 21473.567 7 +Q9VNI8 Hpr1 8.99 6 9 6 12735.76611 8 +Q9VNI9 IP18173p 7.05 1 2 1 5855.4030999999995 2 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 1935208.9839 67 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 3521.94774 2 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 17257.0413 7 +Q9VNW0 GEO11142p1 17.97 2 2 2 11058.562 1 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 1066623.64598 75 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 707954.99801 69 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 2187.7195 1 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 19534.2467 5 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 2021.6003 1 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 10040.08717 4 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 91771.858 2 +Q9VP51 LD40450p 5.59 2 2 0 2379.8044 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 222073.72952 13 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 20287.412500000002 8 +Q9VP57 LD15904p 21.79 19 45 19 296476.62684 35 +Q9VP77 LD23875p 5.73 5 6 5 4106.88746 3 +Q9VP78 GH23156p 7.79 4 6 4 9476.2034 5 +Q9VP84 IP06402p 8.47 2 2 2 522.6902 1 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 969.65186 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 832.94775 1 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 9701.89812 4 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 10217.13602 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 1270329.8431 47 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 41549.83336 8 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 4335.51344 3 +Q9VPH6 LP10922p 6.08 4 6 1 6014.76603 5 +Q9VPJ0 RE58433p 17.91 8 22 2 19966.61656 11 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 7742.0846 3 +Q9VPK3 AT24407p 8.72 4 13 1 23956.36666 11 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 17629.99784 5 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 749155.7618099999 78 +Q9VPP7 AT13539p 4.96 1 3 1 23021.9609 2 +Q9VPR1 GH02075p 11.35 2 3 2 10501.643 1 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 9763.775300000001 2 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 30174.41906 9 +Q9VPU4 FI17537p1 5.33 2 4 2 3918.3127 2 +Q9VPU6 Galectin 5.06 2 3 2 9079.894400000001 3 +Q9VPX0 GH26159p 6.59 4 6 4 7247.4531 4 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 136138.6916 13 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 1246183.97938 60 +Q9VPY7 LD42035p 5.27 3 4 3 1740.6549 1 +Q9VPZ5 GH04232p 15.64 8 27 8 60761.405829999996 16 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 12348.695 1 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 2256040.94304 106 +Q9VQ83 RE23541p 13.29 4 5 0 26800.922249999996 5 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 21954.57357 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1117657.8335 51 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 801134.64958 31 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 168880.36341000002 7 +Q9VQE0 dynamin GTPase 20.27 14 22 14 54578.09983 16 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 4157.08572 2 +Q9VQI6 LD25952p 13.89 5 8 5 20511.5996 5 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 237002.10734 20 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 12126.96515 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 368.48492 1 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 332121.70325 25 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 648.5821 1 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 445722.957 11 +Q9VQQ6 FI18122p1 19.21 10 17 0 78672.07924 16 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 1094547.11553 48 +Q9VQR5 IP10807p 2.5 1 2 1 3049.003 1 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 23687.83353 7 +Q9VQT7 RH15675p 14.63 1 6 1 2173.96475 3 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 57976.310359999996 12 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 33560.16664 11 +Q9VQX3 HL05328p 6.13 2 3 2 5635.80608 3 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 900.3742 1 +Q9VR03 AT19250p 3.98 2 2 2 2377.8843 1 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 57525.5509 6 +Q9VR30 RE58324p 11.81 5 10 5 44040.18886 8 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 30800.648269999998 12 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 13919.226330000001 2 +Q9VR79 LD43683p 40.08 10 47 10 800007.5634300001 38 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 1041.40072 2 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 475088.96263 20 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 161806.2385 13 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 17683.49753 5 +Q9VRF7 GH09530p 10.57 3 5 0 6645.4398 3 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 46798.8526 6 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 7791.34634 5 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 636688.0153 37 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 41442.574 5 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 10109.73553 3 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 1844214.91345 112 +Q9VRL1 GEO06356p1 53.1 8 34 2 536617.6025 24 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 11919.6799 4 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 2959.381 1 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 563655.27517 54 +Q9VRP3 AT08565p 17.07 5 16 5 65920.5973 5 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 7641.0154999999995 3 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 183024.55320999998 16 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 54982.83743 15 +Q9VRV8 Transportin-1 2.69 2 3 2 1124.06479 2 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 27148.63893 6 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 49429.102920000005 11 +Q9VS11 lysozyme 15.97 4 7 4 7433.58599 5 +Q9VS44 Uncharacterized protein 9.45 3 4 3 6097.4351 3 +Q9VS84 FI03225p 7.71 7 15 7 73637.6795 12 +Q9VSA9 CG7409 82.47 15 103 15 1506131.6892 73 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 78735.3536 10 +Q9VSC5 GM09977p 50.76 17 41 17 409023.34750000003 36 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 35477.093179999996 13 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 144547.24814 15 +Q9VSH5 IP09562p 9.77 2 2 2 2793.7148 1 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 13377.60376 3 +Q9VSI1 LD21269p 7.6 5 7 5 19290.33878 6 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 1611.3667 1 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 292268.06690000003 16 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 433682.51540000003 31 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 719239.216 40 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 90939.3251 10 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 1231.9849 2 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 13233.3862 3 +Q9VSM8 TBC1 domain family member 13 2.48 1 1 1 1532.3113 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 116692.2353 8 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 917832.43999 57 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 44555.9039 7 +Q9VSR5 GM03767p 52.75 9 24 9 566425.47056 19 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 7272.6476 2 +Q9VST4 arginine kinase 4.64 2 4 2 3247.5604999999996 2 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 1268840.75769 67 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 210642.42005000002 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 21793.92797 4 +Q9VSW7 LD21662p 5.13 2 3 1 1998.94838 2 +Q9VSX2 IP01061p 30.5 6 17 6 107119.32955 10 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 2514953.13466 57 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 127571.25532 11 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 4220.64286 6 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 86910.4421 14 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 208975.56151 28 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 825.60095 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 45019.16895 3 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 7916.56 4 +Q9VTA8 RE35371p 12.66 3 4 3 307.37582 1 +Q9VTB0 LD35289p 17.94 8 13 8 26886.68634 9 +Q9VTB3 Guanylate kinase 52.79 13 38 13 391828.92096 26 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 513847.46034999995 36 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 13577.622299999999 5 +Q9VTC3 GH07049p 12.22 5 7 5 94293.29945 6 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 2131.8308 1 +Q9VTL0 FI19917p1 10.87 4 4 4 5363.16946 2 +Q9VTP1 IP06473p 3.53 1 2 1 1442.90661 2 +Q9VTT2 LD20590p 6.65 3 4 3 4967.82712 4 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 586745.18933 30 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 187686.11070000002 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 55519.0417 3 +Q9VTW1 RE15265p 7.1 3 5 0 10818.37004 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 1968.2047 1 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 388557.774 31 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 118679.1484 14 +Q9VU04 RE60105p 11.69 3 7 3 40076.223920000004 7 +Q9VU13 LD45603p 8.95 5 14 0 60950.77669 13 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 25226.50723 2 +Q9VU34 LD45758p 1.78 2 3 2 871.6535 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 2120247.35378 69 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 4880.95844 3 +Q9VU38 Adenosine kinase 24.64 6 14 0 238150.82644 14 +Q9VU45 LD27581p 14.79 4 24 4 19312.93006 15 +Q9VU53 Capricious, isoform A 1.85 1 2 0 1527.0116 2 +Q9VU75 RH45712p 37.04 9 31 9 68323.19552000001 22 +Q9VU92 Uncharacterized protein 25.79 6 13 6 61791.263340000005 11 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 1023612.63412 76 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 26906.67483 10 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 420645.13323 31 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 3996.8343999999997 2 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 38264.231 6 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 96174.203 5 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 45801.48265 7 +Q9VUQ7 RE36966p 6.21 4 11 4 30215.63579 9 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 17273.043400000002 4 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 18165.0515 3 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 5102.3553999999995 3 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 39330.79406 10 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 154984.692 5 +Q9VV13 GEO08383p1 10.71 1 1 1 32957.78 1 +Q9VV31 Uncharacterized protein 19.35 2 7 2 1948.312 3 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 69277.62275 13 +Q9VV40 Golgin 104 2.06 2 2 2 4876.001039999999 2 +Q9VV42 Fat body protein 2 79.5 24 224 0 8612055.04494 171 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 4836880.09747 177 +Q9VV47 Fat body protein 2 32.05 7 29 5 605912.7069999999 24 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 237571.77862 47 +Q9VV75 AT02348p 82.73 30 207 30 6584594.13686 153 +Q9VV76 Syntaxin 8 8.62 2 3 2 7241.32752 2 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 42833.1341 8 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 65659.06731 12 +Q9VVB5 LD46723p 28.44 16 70 1 5985.9346000000005 4 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 350764.36498 34 +Q9VVC8 LD23434p 8.08 5 10 5 31971.544700000002 7 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 124415.8379 26 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 2164911.36382 49 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 76465.21743 14 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 35769.7536 8 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 107160.21661999999 18 +Q9VVL5 FI11325p 21.52 7 10 7 52879.8921 9 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 5429275.369 160 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 12856.5134 5 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 25192.96367 8 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 21105.03853 6 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 40132.17071 9 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 369356.20091 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1091334.31642 48 +Q9VVU2 GEO07453p1 29.53 6 31 5 249575.19995 28 +Q9VVV6 LD45843p 12.26 8 10 0 9909.41273 4 +Q9VVW7 Canopy b 12.22 3 8 3 11366.57364 7 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 5717.265380000001 4 +Q9VVY7 FI20154p1 12.22 16 28 0 75730.37073000001 23 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 26904.4634 5 +Q9VW00 GH28721p 6.1 2 3 2 2141.9784600000003 2 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 2555.3653999999997 2 +Q9VW17 RE58036p 29.67 5 15 0 8449.70935 8 +Q9VW19 Phenoloxidase-activating factor 2 3.43 1 2 1 439.15887 1 +Q9VW34 FI03450p 11.65 7 12 7 89461.46526 11 +Q9VW40 LD31235p 9.3 3 4 3 7120.6652 3 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 4878.207200000001 3 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 34699.318400000004 5 +Q9VW57 Grasp65 7.17 4 7 4 30715.30094 5 +Q9VW58 LD33138p 14.87 3 4 3 11921.366479999999 3 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 317633.4486 29 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 929706.7876 43 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 3367945.11247 103 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 18692.41365 5 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 8157.2398 2 +Q9VWD0 GH23568p 19.35 6 13 6 91012.52513 11 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 1530362.07661 76 +Q9VWD5 LD35087p 12.92 5 7 5 16502.10912 4 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 244427.5469 23 +Q9VWF0 LP01149p 34.31 9 18 9 43217.48266 12 +Q9VWG1 LD37169p 76.5 13 51 1 121650.22584 4 +Q9VWJ3 LD05272p 12.79 2 3 2 5005.3252 2 +Q9VWL4 GH07340p 9.39 5 11 5 15315.90178 7 +Q9VWP2 RH57257p 77.69 12 26 12 174512.22183999998 18 +Q9VWQ3 LD35981p 6.12 2 2 0 9378.300299999999 2 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 72370.71746 9 +Q9VWS1 Houki 9.33 2 3 2 30313.401299999998 2 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 180371.18849 27 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 14625.69833 5 +Q9VWU0 FI18411p1 2.23 1 2 1 796.3782 1 +Q9VWV6 Transferrin 63.81 41 264 41 4103791.9984999998 194 +Q9VWW2 GH13094p 17.43 9 19 9 11059.7237 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 37995.48787 9 +Q9VX08 LD10434p 4.16 2 3 2 10748.5954 3 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 5560.3931999999995 3 +Q9VX26 Chascon, isoform A 2.65 4 4 0 5368.78198 3 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 2021016.17756 80 +Q9VX69 FI01450p 6.57 3 29 2 91558.16234 7 +Q9VXA3 LP21163p 16.85 11 23 11 73436.60166 18 +Q9VXA9 RE04047p 8.03 2 3 2 4016.899 1 +Q9VXC1 MIP06432p1 36.87 6 12 3 70803.7298 11 +Q9VXC9 trypsin 49.0 9 23 9 347674.57138 22 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 23736.67425 5 +Q9VXF9 AT13091p 15.5 8 19 8 36398.11604 12 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 25486.573239999998 7 +Q9VXH4 RE16337p 51.96 3 7 3 33878.9539 5 +Q9VXH7 FI17510p1 22.59 6 21 6 192480.37406 17 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 216086.7511 21 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 1405094.42609 35 +Q9VXJ7 GH03748p1 11.25 12 13 12 13807.23017 7 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 82945.5709 12 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 9627.3066 4 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 3204.1877 1 +Q9VXM4 LD12946p 61.29 13 44 13 606952.98976 38 +Q9VXN1 LD03728p 9.22 3 5 3 3645.4373400000004 3 +Q9VXN3 LD07988p 17.42 8 15 8 41790.05941 12 +Q9VXP3 GH05406p 12.21 7 8 7 15352.81515 5 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 37536.4866 4 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 9811.40375 4 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 409021.25868 39 +Q9VXR9 FI03680p 10.91 4 5 4 14290.054399999999 5 +Q9VXV1 RH52220p 19.02 4 5 4 6269.9583999999995 4 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 112958.28719999999 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 181433.84398 16 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 147977.49726 17 +Q9VY05 GH11762p 12.2 8 19 8 70187.31574 14 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 8444.4577 6 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 98249.88063 12 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 11912.44185 5 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 48412.47440000001 6 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 12768.21585 4 +Q9VY76 AMP deaminase 7.13 7 10 0 17641.5722 8 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 88719.1715 6 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 40202.873999999996 9 +Q9VY92 GEO07753p1 73.91 8 47 8 749928.67706 36 +Q9VYA1 RE18811p 8.56 3 6 2 17069.4664 6 +Q9VYB2 LD19061p 2.83 2 2 2 1374.90944 2 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 836.7 1 +Q9VYF0 GM09012p 14.93 4 10 4 17370.65282 7 +Q9VYG8 CG15717-PA 15.08 4 6 4 19815.1836 3 +Q9VYJ1 FI12805p 7.33 5 6 5 6765.67065 4 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 16500.12582 10 +Q9VYM0 CG2555-PA 14.21 3 6 1 3198.8716 2 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 1143.35205 2 +Q9VYN1 protein kinase C 0.84 2 18 1 476482.70509 8 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 3347.68595 2 +Q9VYS2 GH09980p 7.06 6 7 6 16999.5438 6 +Q9VYT0 RE04130p 30.84 7 9 6 139419.47 9 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 8483.4779 3 +Q9VYT3 FI23714p1 3.57 5 7 5 7337.23422 4 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 74509.97495 5 +Q9VYU9 RH17287p 45.02 7 14 7 58426.823430000004 13 +Q9VYV4 Amun, isoform A 4.91 3 5 3 8200.9114 4 +Q9VYV6 GEO09033p1 23.68 3 3 3 14386.19584 3 +Q9VZ00 FI19420p1 19.19 18 25 0 37829.964719999996 10 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 209298.95994 16 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 158553.31649 29 +Q9VZ24 GEO11412p1 44.25 7 77 7 2239592.92236 63 +Q9VZ34 RH72958p 2.64 2 5 2 9046.7489 3 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 2234.2007 1 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 89939.94325 15 +Q9VZ59 LP02042p 6.12 1 4 0 16476.76025 3 +Q9VZ66 SD22308p 35.37 5 12 5 33032.876390000005 9 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 10311.822830000001 7 +Q9VZ71 RE01453p 9.04 2 3 2 2218.3528 1 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 17185.35745 5 +Q9VZE4 RE70333p 17.02 8 19 8 68550.36134 16 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 107301.9139 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 5030.3578 3 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 214446.22818 13 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 2072382.34603 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 99267.11237 13 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 1570156.28695 42 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 7734.51855 7 +Q9VZI1 Transgelin 82.98 14 100 1 2011807.80792 68 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 25900.2708 6 +Q9VZJ2 GH27759p 16.59 7 14 7 34122.24213 10 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 10820.7042 5 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 277701.99733 23 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 8404.10404 7 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 94252.07977 17 +Q9VZV2 Chitinase 7 7.7 7 9 7 20541.24625 5 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 2780.1621 2 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 8452.19982 5 +Q9VZX6 LD06441p 7.98 3 4 3 19896.4661 3 +Q9VZY0 LD45195p 17.62 5 10 5 53005.954730000005 5 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 4048.5446 2 +Q9VZZ5 GEO12033p1 28.67 4 10 4 99263.69923 7 +Q9VZZ6 CG16985 protein 32.21 4 10 4 85525.71685 4 +Q9W022 GEO01508p1 64.08 8 33 8 700672.60495 29 +Q9W073 RH22148p 9.41 2 2 2 5438.894 1 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 505642.26714 16 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 233098.61562 15 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 24302.21678 8 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 20131.384299999998 4 +Q9W095 glycerol kinase 2.78 2 2 2 1431.8917 2 +Q9W0A8 FI01658p 18.77 5 15 5 106336.21965 14 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 189489.93723 22 +Q9W0C3 GH11843p 61.22 12 26 12 218206.1118 17 +Q9W0D3 GH15728p 1.78 3 4 3 3881.27506 2 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 16883.1915 3 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 62921.11245 12 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 241164.88517000002 16 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 14438.18303 4 +Q9W0J9 GH07301p 41.93 10 20 9 182590.03839 15 +Q9W0K9 LD10220p 9.38 2 2 2 10645.586 1 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 12679.12362 4 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 63312.24516 13 +Q9W0M5 Protein DPCD 8.56 2 4 2 4712.28399 4 +Q9W0N6 LD27967p 16.52 5 9 5 14430.05866 8 +Q9W0P4 GEO05053p1 15.45 2 4 2 9927.6664 4 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 22959.2805 6 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 7580.6987 1 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 27844.67188 13 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 6613.609699999999 3 +Q9W0U0 glycerol kinase 2.23 1 1 0 11802.116 1 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 62572.25861 12 +Q9W0X1 GH15894p 1.58 1 1 1 7777.2456 1 +Q9W0X2 GEO07322p1 12.4 2 2 2 11650.626 1 +Q9W0X3 LD24657p 8.75 3 9 1 26358.920570000002 7 +Q9W0Z5 LP09747p 10.07 6 23 6 21942.83355 14 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 1851199.15994 41 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 83325.491 6 +Q9W136 Uncharacterized protein 39.13 6 15 6 142194.6682 9 +Q9W140 Regulatory protein zeste 6.4 3 5 3 739.95067 2 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 2463.5913 2 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 518.37256 1 +Q9W158 LD36772p 7.49 3 11 3 38488.61885 9 +Q9W199 GEO07594p1 14.84 3 3 3 5109.214400000001 2 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 350183.12545 27 +Q9W1C8 LD24355p 16.3 6 14 6 13699.518199999999 8 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 24643.55562 6 +Q9W1F2 FI07217p 5.93 2 4 2 14316.8776 2 +Q9W1F7 IP15825p 25.14 10 36 10 441354.76294000004 31 +Q9W1F8 GEO08248p1 18.05 3 10 3 44938.44165 7 +Q9W1G7 LD21576p 24.05 7 13 7 150568.62410000002 8 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 33012.2831 7 +Q9W1H6 GH04238p 8.46 2 5 2 110927.62299999999 3 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 390266.81231 42 +Q9W1I8 LD03592p 30.28 8 21 8 55949.95003 14 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 17227.87153 6 +Q9W1L8 GH11818p 5.92 2 3 2 7298.3037 1 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 1600.8914 1 +Q9W1N3 Levy, isoform A 50.46 5 24 5 524792.32688 21 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 5568.6406 1 +Q9W1R0 RH49821p 6.07 3 5 3 21303.5424 5 +Q9W1R3 Golgin-245 14.24 21 27 21 52332.30268 21 +Q9W1V8 CG9893 protein 3.65 1 2 1 27669.053999999996 2 +Q9W1W4 RE45066p 22.13 8 19 8 78400.05307 15 +Q9W1X5 GH04942p 13.03 18 41 3 184582.57404 31 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 873927.42113 39 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 277412.4987 8 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 13097.003340000001 5 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 7134.87335 4 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 92429.94282 22 +Q9W257 RH13652p 6.99 2 7 2 132838.7372 6 +Q9W258 Babos, isoform A 27.55 6 28 6 240752.0677 20 +Q9W259 FI23916p1 14.71 5 10 5 58513.927500000005 6 +Q9W260 GH03113p 15.4 9 26 9 79295.93033 23 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 15708.548999999999 3 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 58149.7517 25 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 10353.5921 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 120959.15613999999 13 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 8240.548 3 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 14836.35404 2 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 22932.67024 4 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 12831.327 1 +Q9W2L6 RH02475p 28.13 18 55 18 847803.64764 44 +Q9W2M0 LD23155p 23.8 18 32 18 63545.83949 22 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 2243682.8215 53 +Q9W2M9 FI16623p1 6.47 1 3 1 864.82888 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 25578.7831 4 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 165157.232 7 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 140356.9748 11 +Q9W2V2 FI20035p1 3.86 3 3 3 15403.4487 2 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 5793457.55437 116 +Q9W2Y5 YLP motif-containing protein 1 1.06 2 3 1 8489.5615 2 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 76633.13659 11 +Q9W306 GEO08256p1 14.05 2 4 2 30542.35897 4 +Q9W308 GH05731p 27.17 4 9 4 55470.60518 8 +Q9W309 GEO08445p1 29.63 7 11 7 105877.0956 8 +Q9W314 GH14088p 9.57 4 9 4 23512.6857 7 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 23015.9073 9 +Q9W330 Phosphotransferase 24.4 11 31 3 618016.71562 29 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 72872.20569999999 5 +Q9W337 GH19985p 21.56 4 12 4 44926.14186 9 +Q9W350 C11.1, isoform A 2.12 3 3 3 1356.4139 2 +Q9W370 GEO12084p1 44.26 4 19 4 291169.14863 16 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 27443.6278 5 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 6447.53391 6 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 394180.8298 38 +Q9W396 FI06908p 12.08 3 5 3 14696.8188 3 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 19180.5084 5 +Q9W3C3 LD10016p 17.41 8 12 8 24591.387889999998 9 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 7364.109700000001 3 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 26857.6747 8 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 18105.542999999998 4 +Q9W3H4 LD36273p 62.35 12 36 12 254981.16947 33 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 13208.2453 2 +Q9W3J6 FI06457p 12.29 4 4 4 3048.301 1 +Q9W3K6 LD35927p 5.12 4 6 4 29640.41946 6 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 375985.049 24 +Q9W3L4 GH20802p 12.56 6 12 6 22899.902280000002 6 +Q9W3M7 RNA helicase 9.1 8 19 8 29392.26857 10 +Q9W3M8 LD34211p 32.16 7 17 7 160106.47195 12 +Q9W3N1 RH59310p 7.17 2 3 2 4152.75494 3 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 36483.3868 5 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 208371.75514 27 +Q9W3Q0 FI07418p 18.35 4 11 3 7207.6046 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 32637.496099999997 5 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 19487.58146 9 +Q9W3T9 GM01152p 50.42 10 21 10 125889.2567 15 +Q9W3U9 CG14434-PA 36.9 6 15 0 31279.13276 11 +Q9W3V2 FI19713p1 4.82 4 5 4 82273.74250000001 2 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 2684.4993 1 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 31805.23144 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 941836.5389500001 47 +Q9W3X8 RH42690p 13.47 5 10 5 4171.25046 5 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 67797.014 10 +Q9W3Z4 GH18625p 2.43 1 3 1 2103.4329 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 1395447.68243 47 +Q9W403 LD24968p 11.05 6 14 6 15470.92068 8 +Q9W404 GH10714p 10.34 5 10 4 12661.46232 5 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 7156.3183 2 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 322290.11673999997 32 +Q9W425 Rabconnectin-3A 0.7 3 3 3 5555.067440000001 3 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 873307.49866 61 +Q9W461 LD23868p 10.93 5 10 5 17806.38315 6 +Q9W482 Lin-52, isoform A 19.11 3 3 3 7297.5406 3 +Q9W483 GH18971p 15.83 5 8 5 26530.76163 4 +Q9W486 LD13361p 5.65 3 4 1 9535.5645 4 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 46436.83963 10 +Q9W4A0 GH11193p 24.87 5 10 5 34452.14095 9 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 11328.826930000001 3 +Q9W4C2 lysozyme 18.42 4 5 4 31864.2173 5 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 35420.38576 9 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 13888.370359999999 4 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 334475.25085 17 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 2919.6151 2 +Q9W4N8 LD30122p 72.86 14 57 1 1116764.9091999999 40 +Q9W4U2 RH09070p 31.33 6 19 6 57089.08549 12 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 8620.85435 4 +Q9W4W5 RE47284p 13.77 5 10 5 87248.68239999999 10 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 77788.99547 25 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 43575.02295 11 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 9995.09359 5 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 2853.78775 3 +Q9W503 RH61816p 23.76 8 17 8 53517.982650000005 12 +Q9W5B4 GH18858p 20.38 6 12 6 259343.8986 7 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 1178.02007 2 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 464.61826 1 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 15667.136 6 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 20855.10915 7 +Q9W5W7 GH19483p 6.06 4 6 4 24344.3236 6 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 599917.9350800001 42 +Q9W5X0 LD21953p 23.88 5 25 0 24124.464239999998 3 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 46735.3696 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 44851.73648000001 10 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 1363099.0156699999 38 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 11882.5116 3 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 104318.15194 18 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 154883.9957 14 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 1484518.3334 71 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 178166.32045 41 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 54223.933130000005 18 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 2426692.30902 104 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 8021.8624899999995 5 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 15030.790819999998 6 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 1120977.7322500001 53 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 44057.1467 5 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 218805.3617 35 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 3172133.3148499997 67 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 2498.69384 2 +R9PY51 Uncharacterized protein 34.95 5 42 5 2158289.3275 24 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 1650676.50395 104 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 74217.4538 10 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 34396.8691 5 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 5257.5464 1 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 25964.94101 8 +X2JB48 ADP/ATP translocase 66.22 21 145 1 2063655.21465 104 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 56079.57617 25 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 13162.08819 5 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 5545004.84831 109 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 7777.1667 2 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 3214.7699599999996 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 2356.9192 1 +P10674 Fasciclin-1 43.71 29 142 1 746.95166 1 +Q08605 Transcription activator GAGA 6.37 3 3 0 4720.83663 2 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 4854.8444 2 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 3099.9905 2 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 4622.1416 1 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 2891.13207 2 +Q9VLL3 A-kinase anchor protein 200 22.18 13 38 1 2292.868 1 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 2241.93 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 5327.069299999999 2 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 15753.346300000001 2 +Q9W568 Protein halfway 5.56 3 4 0 474.87292 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 9.68 2 2 1 377.92114 1 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 6722.6517 2 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.08 3 5 0 970.59753 1 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 17854.75732 3 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 1050.88375 2 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 3801.9733 3 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 580777.6 1 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 12251.433 1 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 12792.723399999999 3 +A1Z7M0 Space blanket 5.71 2 4 2 7225.1768 4 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 21689.39932 5 +B5RJS0 IP20241p 2.69 3 3 0 1669.7833 1 +E1JJM0 FI20063p1 14.83 10 14 0 52705.9384 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 1265.55108 2 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 8599.0674 4 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 5948.0866 2 +Q0E8R1 FI07211p 29.47 10 55 0 6225.2582999999995 2 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 59974.037599999996 16 +Q7JWH6 RE61424p 6.99 2 3 2 4004.3774 1 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 1059.44564 2 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 37824.7861 5 +Q7K1W4 Epoxide hydrolase 4.06 2 2 2 572.1708 1 +Q7KVW1 RE73736p 4.94 3 4 0 9944.7662 4 +Q7PLV6 FI02158p 1.7 2 2 2 1285.6508 2 +Q8I062 GH23305p 80.95 19 194 1 4247.0425 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 5646.77283 2 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 2436.5084500000003 2 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 4931.45934 2 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 9038.443 1 +Q9VKC1 IP16805p 2.72 1 1 1 8035.877 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 1347.45304 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 3421.89724 3 +Q9VTE1 Immediate early response 3-interacting protein 1 16.25 1 1 1 445.74905 1 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 5487.51954 2 +Q9VTY1 LD40136p 5.69 2 3 2 456.31152 1 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 356.98688 1 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 823.80414 1 +Q9W2N5 GH10162p 3.47 2 4 2 2653.8354 1 +Q9W362 La-related protein 7 1.51 1 2 1 5166.4305 2 +Q9W525 LD08195p 3.8 2 4 1 1949.6996 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 8039.719660000001 4 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 1855.7297 1 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 5584.0557 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 12248.9201 2 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 1585.9048 1 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 2146.0254 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 734.0467 1 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 1677.6127 1 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 36301.71127 6 +E1JJ83 Os-C, isoform B 7.19 1 4 0 618.54767 1 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 39035.00252 18 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 2759.6098 2 +O46231 FI18705p1 66.21 20 67 1 8092.6443 2 +Q6IDE2 GH07226p 2.0 1 1 1 5217.246 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 22943.4322 2 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 2031.13953 2 +Q8IQ80 GH06117p 1.41 1 3 0 815.7412 1 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 4761.1205 3 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 4509.37364 2 +Q9W5C1 RE02292p 1.13 1 1 1 1699.6558 1 +X2J8M7 Supervillin, isoform AD 4.69 15 20 0 401.54016 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 3474.07984 2 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 2277.2449 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 11790.7136 2 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 16781.1092 4 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 12503.4912 2 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 4036062.56244 120 +E1JH70 Kank, isoform E 1.18 1 1 0 483.5344 1 +M9NFP1 Jim, isoform E 1.94 2 2 0 3626.72285 2 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 1907.9215 1 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 4264.801 1 +Q8IQH6 Nebulosa, isoform A 2.12 1 1 0 423.76627 1 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 1882.07935 3 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 27074.04175 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 1877.0686 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 33483.039000000004 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 95072.496 2 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 4546.216 3 +Q9VZF0 LD44732p 3.61 1 1 1 821.33563 1 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 3640.7405 1 +Q9W249 IP21806p 4.27 2 3 2 2474.1807 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 6237.1831 4 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 18180.944499999998 2 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 324.3394 1 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 2776.3145 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 40420.73287 3 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 8833.054 1 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 718.3249 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 1498.5476 1 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 982.58777 1 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 631.7481 1 +Q9VV37 GEO13385p1 10.1 1 7 1 122356.73962 3 +Q9VVX6 BET1 homolog 6.84 1 1 1 7727.1875 1 +Q9W152 RH33060p 5.63 1 2 1 951.3872 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 2685.0361 1 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 1780.803 1 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 2340.509 1 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 2021.5017 2 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 1195.69764 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 17164.317 2 +Q9VB09 IP04131p 12.1 2 3 2 7771.752469999999 3 +Q9VHN8 LD37279p 1.54 1 1 1 8684.615 1 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 7978.193499999999 2 +Q9W1X6 GH06673p 2.78 1 1 1 315.6103 1 +Q9W5E7 LP07417p 11.4 1 1 1 577.9665 1 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 654.489 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 53842.4918 8 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 840.2923 1 +A1ZAU6 FI05912p 3.24 2 2 1 361.5099 1 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 8374.8979 2 +Q7K3Z8 GH01208p 2.35 1 2 1 3275.00187 2 +Q9VAN8 FI15955p1 6.08 2 2 2 4402.354 1 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 2401.6851 2 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 11621.7686 2 +Q9VV55 GH08429p 3.98 2 3 2 2322.742 1 +Q9W542 LD07342p 1.12 1 1 1 432.2037 1 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 2004.6573 1 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 13649.697 1 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 7123.7844000000005 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 7840.8993 3 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 12546.0923 3 +Q9VXD7 GH04692p 5.61 2 3 2 913.9575 1 +Q9W3S4 LD46272p 5.26 2 3 2 1477.59967 3 +A8JQX3 Nocturnin 3.58 2 2 2 723.8391 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 852.7957799999999 2 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 4899.79343 5 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 2495.3298 1 +O76857 BCL7-like 13.64 2 3 2 948.3972 1 +Q7JY89 RE35124p 25.0 2 5 2 3037.41366 2 +Q8IML5 V-type proton ATPase subunit a 8.28 8 17 0 593.2914 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 3362.84145 3 +A8JUP7 Serine protease Hayan 2.67 2 3 2 9017.802 3 +P07664 Serendipity locus protein delta 4.16 2 3 2 10048.567299999999 3 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 3945.6857 2 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 931.8494 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 12189.50227 6 +Q8IQU7 825-Oak 17.05 2 3 0 9919.3163 2 +Q9VGM4 LD28119p 3.82 1 1 1 520.0771 1 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 52465.69339 23 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 780.70233 1 +Q9V3J8 Protein will die slowly 3.88 1 2 0 4384.14336 2 +Q7K0D3 CG12909 protein 6.76 2 3 2 6565.49077 3 +Q9VF73 FI17904p1 2.24 2 2 0 375.26993 1 +Q9VSK1 GH09510p 1.06 1 1 1 4798.6714 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 12765.144 1 +Q9V6Q2 Histone H3-like centromeric protein cid 8.89 2 3 2 375.0841 1 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 2981.98473 3 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 2668.3855 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 41481.29368 14 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 2836.7351 2 +Q8SXC0 GH10306p 2.86 1 2 1 4002.9912000000004 2 +Q9VQT5 FI01556p 13.92 1 4 1 1363.4856 2 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 4707.96013 3 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 19185.0868 3 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 4763.893 1 +P45884 Attacin-A 5.36 1 1 0 3097.713 1 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 1326.27881 2 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 7444.0318 2 +Q9VV27 MIP11526p 7.63 1 1 1 6502.338 1 +O76324 Discs overgrown protein kinase 7.95 2 3 0 1653.1136999999999 2 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 2134.7378 1 +O18680 5-aminolevulinate synthase 3.34 2 2 2 1695.37 1 +Q29QE1 GH15984p 0.57 1 2 0 6246.8932 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 1505.0679 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 3750.4964 2 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 475.8606 1 +Q9VEQ0 Xylulose kinase 1.99 1 2 1 541.4744 1 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 129461.67385 2 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 13911.10676 2 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 4253.37216 3 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 8540.477 2 +E1JGY7 Hulk, isoform G 10.66 12 17 1 441.43503 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 6122.7604 2 +Q9VF46 GH25158p 7.34 2 7 2 28955.25885 7 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 10086.595 2 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 6483.06785 2 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 3021.8574 2 +A8JNU1 adenylate cyclase 1.02 1 3 0 1126.6733 2 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 641.672 1 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 5473.0244 2 +Q7JW46 RE25483p 9.0 1 1 0 11053.195 1 +Q7K010 Tetraspanin 8.64 2 4 2 5102.97736 4 +Q9VUR4 FI11905p 19.75 6 14 1 2841.6921 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 851.4119 1 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 2607.7485 2 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 2984.2576 2 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 9411.0405 3 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 1455.87346 2 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 3612.4514 1 +A8JNV2 Uncharacterized protein 10.71 1 3 1 4884.5761 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 723.639 1 +Q9VRX7 LD29573p 1.32 1 1 1 2276.9888 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 12078.8588 2 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 2407.4011 2 +O46099 EG:8D8.2 protein 0.63 1 1 1 879.51697 1 +Q7JZZ3 RE03883p 6.99 2 3 2 25492.900800000003 3 +Q8SWU4 RE25571p 17.08 5 12 1 4300.1846 1 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 18840.3934 2 +O16043 Anon1A4 9.84 2 3 2 3224.27466 3 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 1997.9803 1 +Q8SXW3 GV1, isoform B 13.33 2 5 0 16895.3212 4 +Q8IRN0 FI06485p 3.21 1 2 1 2396.42325 2 +Q9VHS6 Copper transport protein 6.32 2 3 2 357.22208 1 +D8FT19 MIP22288p 4.05 2 3 0 8657.8995 2 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 3582.4346 2 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 3080.054 1 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 3.23 1 2 1 846.20123 1 +Q8ML92 Protein aveugle 10.38 1 1 1 409.68564 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 2449.0847 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 400.15198 1 +Q9VT15 GH14734p 8.33 2 4 2 3330.03245 2 +A1A750 GEO11067p1 6.93 1 1 1 6350.823 1 +Q9VF83 LD33178p 4.33 2 4 2 8036.38555 4 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 21609.5252 3 +Q9W590 Large subunit GTPase 1 homolog 1.49 1 1 0 355.86124 1 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 2181.6453 1 +Q9VWA7 Golden goal 0.79 1 3 1 11267.9 1 +M9PCK0 Decima, isoform D 9.87 2 3 0 7442.78996 2 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 19163.4003 2 +Q9VPA9 LD24894p 1.45 1 2 1 3116.46046 2 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 6642.8595000000005 2 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 546.32697 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 4480.9106 2 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 4128.64356 3 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 1296.0820800000001 2 +Q7KV26 Kinase 1.45 1 1 0 1619.6125 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 4045.7734 1 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 21467.002 1 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 657.78424 1 +Q7K4Y8 GH22690p 3.14 2 2 2 498.0674 1 +Q9VCQ7 LD40758p 2.61 2 3 2 1298.8092299999998 2 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 2499.0605 1 +Q9VDL4 LP04613p 2.72 1 3 1 2111.86813 3 +Q9VS55 CTCF 2.2 2 3 2 885.42896 1 +Q9W1Q4 Uncharacterized protein, isoform D 16.57 4 24 1 376.36487 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 4048.4050700000003 4 +Q7K4X4 GH24095p 2.0 1 1 1 530.6293 1 +Q9VJ06 LD05576p 4.55 1 1 1 400.9553 1 +Q9VGE8 Tachykinins 2.42 1 2 0 6736.708 1 +Q29QQ9 Ribosomal RNA-processing protein 42 3.38 1 1 1 1850.1135 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 6740.216 2 +Q7YU81 Protein charlatan 0.66 1 2 0 4497.507439999999 2 +Q9VHV3 FI02011p 1.5 1 1 1 2683.7178 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 579.77295 1 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 2549.40363 3 +Q7K8Y3 IP16419p 17.86 7 17 0 24356.2574 10 +Q8STG9 DSec61alpha 4.2 2 3 2 1118.0206 2 +P22812 Protein Tube 3.9 2 2 2 2760.63204 2 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 2321.5112 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 7211.3623 1 +Q9VZX8 AT02196p 2.89 1 1 1 592.72406 1 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 3626.47786 2 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 3684.059 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 8553.2449 2 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 3431.551 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 809.54193 1 +Q9W3F7 Mitoguardin 4.19 2 3 2 339.18732 1 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 3048.113 1 +Q9W4F9 IP01388p 3.65 2 3 0 881.747 1 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 2163.0454 1 +Q7KMJ6 RNA-binding protein spenito 1.13 1 1 1 551.2951 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 1753.9764 1 +A1ZAX6 FI02012p 1.2 1 1 0 427.01617 1 +F0JAQ9 MIP27169p 5.85 2 3 0 654.27277 1 +P18289 Transcription factor Jra 3.11 1 1 0 5014.5586 1 +Q9VMX1 KIF-binding protein 2.83 2 2 2 5349.9272 1 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 5034.1025 3 +Q9VR55 LD29159p 8.71 1 3 1 3871.0917 2 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 524.5477 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 1855.2506 1 +P54194 General odorant-binding protein 84a 4.57 1 1 1 484.50214 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 685.0332 1 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 16995.42494 6 +Q8IR92 Uncharacterized protein, isoform A 8.58 7 12 0 570.5834 1 +Q7KVT8 Orion, isoform B 3.1 2 2 0 937.2637 1 +Q9VV26 GEO12049p1 6.84 1 4 1 24087.4151 4 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 332.44806 1 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 314.59857 1 +A1Z971 Uncharacterized protein, isoform A 1.0 1 1 1 629.0948 1 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 16231.8377 3 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 2692.5693 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 533.0433 1 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 1797.1528 2 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 4237.124 1 +A1ZAG3 Protein G12 8.33 1 2 1 1153.7604 1 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 6794.732 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 4948.98148 2 +Q7K1R6 LD46221p 7.98 2 3 2 740.95264 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 16675.581599999998 5 +Q6IJE8 HDC15077 17.04 2 5 2 21918.92962 4 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 3 0 933.5564 1 +Q9VVI0 SD09427p 1.81 1 1 1 2181.1934 1 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 4873.98 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 10309.9298 2 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 4279.3174 1 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 423.00262 1 +Q9W494 Crossveinless 8.17 2 4 2 10037.712 2 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 2570.7646 1 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 4043.34513 2 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 13231.4009 5 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 65.12 25 150 0 345.1246 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 1985.4323 1 +Q95NH6 Attacin-C 6.64 2 2 2 1923.5471 1 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 15871.543 1 +Q8ST83 Polycomb protein PHO 2.31 1 1 1 437.61728 1 +Q8MRQ1 GH06222p 1.49 1 1 0 1670.8591 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 472.81772 1 +Q9VPR6 Kinase 2.59 1 1 1 1611.2406 1 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 865.8737 1 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 4406.1251999999995 2 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 11356.8351 3 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 1471.4616999999998 2 +E1JJS1 glutathione transferase 2.61 1 1 0 459.07916 1 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 2087.2221799999998 2 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 680.6486 1 +Q9VC27 Nicastrin 1.15 1 1 0 2445.3992 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 507.86075 1 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 4760.943 1 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 1390.971 2 +E1JIS4 Uncharacterized protein 13.33 2 2 2 659.9249 1 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 5580.531 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 961.4330199999999 2 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 2 0 389.93555 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 3866.5116 2 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 410.5609 1 +Q7K490 SD03973p 4.07 2 2 2 2701.3635 1 +Q7YTZ0 GH09436p 2.16 1 1 0 660.73663 1 +O76876 Protein sex-lethal 3.71 2 3 0 7747.4053 3 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 48167.56 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 3000.1861000000004 2 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 7217.665 1 +Q02936 Protein hedgehog 2.34 1 1 1 2655.0645 1 +Q6NN09 ATPase protein 9 5.07 1 11 1 184089.1192 9 +O76874 SD17974p 1.93 2 3 2 903.41461 2 +Q9VEB2 LD28404p 8.58 2 2 2 14714.688 1 +A0A9F2H0X3 Sidestep II, isoform C 0.75 1 1 0 415.7094 1 +Q9VGL2 GM08392p 2.65 1 1 1 3744.844 1 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.2 1 1 1 344.12988 1 +P41964 Drosomycin 31.43 2 2 0 9958.608 1 +Q9VAX9 MIP05919p 7.94 2 2 2 13792.313 1 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 372.23422 1 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 1008.63337 2 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 908.5864 1 +Q58CJ5 GH01093p 2.34 2 2 0 5461.371 1 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 29562.174 3 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 4960.64484 3 +Q9VK20 LD18447p 4.59 2 3 2 2738.1208 1 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 17614.0568 2 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 804.2449 1 +Q9VX38 CG8326-PA 6.33 2 2 2 11291.2047 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 1675.8522 1 +Q0E985 RH74701p 13.33 1 1 1 2100.2175 1 +Q9VCC2 RE50040p 4.86 2 2 2 8520.5068 2 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 504.16458 1 +P04657 Cytochrome c-1 17.14 2 11 0 6993.23964 2 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 1658.5508 1 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 4403.4226 2 +Q7K172 CAAX prenyl protease 1.77 1 1 1 420.71902 1 +Q9VP56 Cuticular protein 78Ca 13.39 2 2 2 388.97906 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 7854.441 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 1804.7166 1 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 3830.4386000000004 2 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 1588.0642 1 +Q4U2G8 FXNA-like protease 1.8 2 3 0 1198.2964 2 +Q9W123 Protein painting of fourth 3.64 2 3 0 424.35123 1 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 3270.8685 2 +Q9VGZ2 FI06805p 3.86 1 2 1 10377.44374 2 +Q7JY80 M-spondin, isoform A 2.0 1 1 1 1694.8004 1 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 765.8925 1 +E1JHX0 MIP29328p 3.76 1 1 1 3437.137 1 +Q9V451 Mst85C, isoform A 4.96 1 2 1 3383.11605 2 +D6W4V3 MIP19557p 4.74 1 2 0 845.2929 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 2308.5234 1 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 5018.265600000001 2 +Q9V9R3 adenylate cyclase 0.6 1 1 1 2612.845 1 +Q9VX35 LD36501p 5.06 2 2 0 1773.67383 2 +Q9VUE5 LD17962p 1.45 2 3 1 12262.2265 2 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 474.87872 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 5259.055399999999 3 +Q7KJ73 Tetraspanin 3.95 1 1 1 521.6764 1 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 5782.2637 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 2121.6714 1 +Q8IRK0 GH04558p 1.52 1 1 1 10547.783 1 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 2554.393 1 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 2687.837 1 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 687.9968 1 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 8330.414 1 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 10791.155 2 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 330.23096 1 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 1769.5021 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 649.612 1 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 1818.1782 1 +Q9W1H3 FI21285p1 3.25 1 1 1 1636.0419 1 +Q9VV21 GEO07736p1 16.26 1 1 1 23629.996 1 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 480.9916 1 +Q6II41 HDC19846 30.3 1 1 1 833.0903 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 683.6915 1 +Q9W2F6 RE36793p 7.09 1 1 1 4999.184 1 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 2629.0825 2 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 345.831 1 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 45829.86825 10 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 8355.267 1 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 1844.21569 3 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 7751.332399999999 2 +A8DYV9 GEO02589p1 10.53 1 2 1 7272.7954 2 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 381.22208 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 7462.261 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 3445.0957 2 +Q7K1H9 GH07575p 3.69 1 3 1 7725.432199999999 3 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 8800.63 2 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 621.5278 1 +B7Z0J4 COX assembly mitochondrial protein 13.75 1 1 1 371.01138 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 2 1 454.07352 1 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 6774.662 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 383.76825 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 1006.7459699999999 2 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 10244.864 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 65791.9872 2 +Q9W551 GEO02601p1 7.55 1 1 1 1558.6245 1 +A1A753 IP17594p 10.11 1 1 1 3729.0823 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 2561.3462 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 7251.083 2 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 1858.3119 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 839.9811 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 6754.917100000001 3 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 596.74414 1 +Q9BMG9 Beaten path IIa 3.94 2 4 1 5205.3733 2 +Q95RU0 Protein cueball 1.55 1 1 1 3236.509 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 1554.211 1 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 96587.78307 2 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 2075.7043 1 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 2701.526 1 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 1024.13742 2 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 78849.40634 2 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 2933.41947 2 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 3358.5073 2 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 1815.0928 1 +Q9VZR5 RE46159p 4.02 1 1 1 1990.731 1 +Q9VE49 LP06937p 1.3 1 1 1 2040.781 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 383.04605 1 +Q8T092 LD21421p 2.45 1 2 1 336.15558 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 851.7333 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 2869.2444 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 1 352.53735 1 +Q7K4G8 LD40944p 1.7 1 1 1 618.992 1 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 2210.9568 1 +Q9VBA5 GM18993p 2.15 1 1 1 677.94836 1 +Q9VKE7 GH09228p1 10.39 1 2 1 409.5517 1 +Q7KA66 Serpin 43Aa 2.56 1 2 1 4782.4604 2 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 2910.0996999999998 2 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 1747.5989 1 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 369.7584 1 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 1979.741 1 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 7854.546 1 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 531.2201 1 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 1715.0602 1 +Q9VJM4 Beaten path Ic 2.25 1 1 1 714.4463 1 +Q6NMT8 AT01712p 1.8 1 1 1 1763.8696 1 +Q9VZY7 LD20870p 1.77 1 1 1 309.21222 1 +Q9VX17 LD36024p 3.1 1 1 1 782.5128 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 1673.9515 1 +A1ZB29 Thymidylate kinase 5.21 1 1 1 385.36807 1 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 3105.5615 1 +P36192 Defensin 8.7 1 3 1 21193.8631 3 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 1570.5309 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 3127.0111 2 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 1688.094 2 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 109261.574 2 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 145300.619 3 +Q5BIL9 SD21168p 1.63 1 2 0 7568.1584 2 +A1Z6H0 Kune-kune 2.65 1 4 1 10086.46636 3 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 1155.91643 2 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 2991.899 1 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 756.68005 1 +Q9VG84 DNA ligase 1.12 1 1 1 620.0388 1 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 2773.997 1 +Q9VHJ4 GH04846p 2.25 1 1 1 2037.7396 1 +Q9W226 GEO07239p1 5.88 1 2 1 2060.4504 1 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 966.1225 2 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 507.9004 1 +Q9I7U1 LD36721p 5.29 1 1 0 7095.8438 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 742.52325 1 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 76275.507 2 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 13153.03 2 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 383.54648 1 +A0A0B4LIM4 Uncharacterized protein, isoform B 1.03 1 1 0 377.4893 1 +Q8MRQ2 GH05923p 2.74 1 1 0 3514.3665 1 +Q8SY53 GH11935p 2.73 1 2 1 2401.1412 2 +Q7JVN6 GH17672p 2.24 1 2 1 3094.57622 2 +A1Z9W2 RH47216p 3.75 1 1 1 353.75244 1 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 530.051 1 +Q9VDZ9 FI04548p 5.49 1 1 1 359.94354 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 2695.2773 1 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 440.5484 1 +Q9VGW5 GEO08194p1 5.8 1 1 1 512.0214 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 699.37805 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 609.65405 1 +O77237 Protein pellino 1.65 1 1 0 1697.8567 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 9825.847600000001 2 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 337.23703 1 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 8470.9025 2 +Q9VGG0 LD47774p 1.67 1 1 1 932.7094 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 442.9131 1 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 11756.433 1 +Q8SWR2 Bicaudal D-related protein homolog 1.94 1 1 1 391.02295 1 +Q9W1H1 GH17155p 3.28 1 1 1 829.30396 1 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 6512.1953 1 +Q9VKX8 Defective proboscis extension response 19, isoform A 2.86 1 1 1 373.7676 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 15072.7536 2 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 430.37897 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 883.1618 1 +A1A6X2 IP16893p 12.07 1 1 1 447.34406 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 430.0502 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 4628.0456 2 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 389.16275 1 +Q9VJ16 GH26014p 2.96 1 1 1 515.4285 1 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 2 0 573.9094 1 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 9457.887 1 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 2852.0972 2 +Q9VSF4 Probable deoxyhypusine synthase 2.72 1 1 1 694.4 1 +Q9VX71 Uncharacterized protein 5.2 1 2 1 6177.4726 2 +Q6IKC0 HDC12925 14.29 1 1 1 635.94745 1 +Q8IQ51 trypsin 3.05 1 1 1 3502.5312 1 +Q9VHS0 FI07206p 2.49 1 1 1 415.28757 1 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 359.60327 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 2214.5425 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 2 1 332.6675 1 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 967.41842 2 +Q9VEM0 RE41712p 5.62 1 1 1 469.3402 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 383.47876 1 +Q8SXX2 Angiotensin-converting enzyme 1.07 1 1 1 619.4702 1 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 366.1261 1 +Q9W328 Protein LST8 homolog 2.56 1 2 1 7620.508400000001 2 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 660.6905 1 +Q6NR46 Serine palmitoyltransferase 1 1.5 1 1 1 497.23483 1 +Q9VD92 Protein archease-like 5.77 1 1 1 877.2765 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 1005.4101700000001 2 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 21261.10673 2 +Q9VDB8 RH37844p 8.42 1 1 1 4030.3572 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 20753.638 2 +M9PIC9 Spc105-related, isoform B 0.41 1 1 0 305.192 1 +Q8SZB7 RE07960p 3.12 1 2 1 16152.4924 2 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 894.11163 1 +Q7JWF7 RH26557p 5.11 1 1 1 6155.996 1 +Q9W2L2 LD27118p 0.67 1 1 1 643.534 1 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 18181.963 1 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 2020.026 1 +Q9VJU2 Nimrod C3 3.12 1 2 1 7184.191 2 +Q9W3Q2 SD08447p 1.26 1 1 1 2961.686 1 +Q9VAQ3 GH18608p 2.19 1 2 1 965.22125 1 +A1Z979 Salivary secreted peptide 6.25 1 2 0 4159.0676 2 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 29971.91861 12 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 5816.74273 4 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 23254.00429 8 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 3646.38784 4 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 16354.297300000002 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M2_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M2_TMTb.txt new file mode 100644 index 0000000..84a629e --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M2_TMTb.txt @@ -0,0 +1,3769 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 127N, Sample, n/a, SFug_M2 Abundances Count: F5: 127N, Sample, n/a, SFug_M2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 31565.8666 5 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 24865.054529999998 6 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 1505498.10452 55 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 6016.5162 2 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 70066.4976 9 +A0A1F4 Protein eyes shut 12.13 24 45 0 384481.01266 37 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 3096.9363 1 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 111379.1917 16 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 5814.6231 2 +A1Z877 Nidogen 18.37 23 35 23 356378.48497 32 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 11680.535899999999 2 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 17621.1744 2 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 177946.74822 42 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 114982.6229 8 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 60601.2852 6 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 39073.0658 8 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 81967.45053999999 18 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 28847.0193 3 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 7506.837299999999 2 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 31974.2477 4 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 2470.5044 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 2645.9297 1 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 4283.7627 1 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 145926.28280000002 8 +A8DYP0 Protein Obscurin 1.38 6 8 6 16646.0779 6 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 159929.37385 12 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 728910.02123 89 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 112668.06409 16 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 505518.33442 36 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 446834.65754 23 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 53593.4986 3 +C0HL66 Histone H3.3A 52.21 6 31 0 15587.774 2 +C0HLZ9 Baramicin A1 12.45 3 4 0 35066.6802 4 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 191280.84984 23 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 102138.9849 10 +M9NDE3 Protein bark beetle 2.08 7 7 7 29247.0334 7 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 2325849.8662 67 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 32882.39844 8 +O01367 Protein held out wings 10.37 3 4 0 13699.0364 3 +O01382 Caspase drICE 12.68 4 4 4 6612.3585 2 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 171042.9283 11 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 3413007.74856 90 +O02194 Presenilin homolog 5.73 3 3 0 6193.9845 3 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 115818.9544 9 +O02649 Heat shock protein 60A 65.1 34 143 23 3805226.14739 126 +O15943 Neural-cadherin 14.01 44 66 2 744502.344 65 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 49217.5624 9 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 15964.9284 4 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 23261.006500000003 5 +O18333 Ras-related protein Rab-2 24.41 6 11 6 122096.38279999999 11 +O18334 Ras-related protein Rab6 33.65 8 12 0 57796.98174 5 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 331449.17203 16 +O18388 Importin subunit beta 2.26 2 2 0 5136.10373 2 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 3153216.03512 115 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 425767.5251 26 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 148607.1746 12 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 3830.9718999999996 2 +O44342 Protein windbeutel 28.79 7 9 0 51805.09556 9 +O44386 Integrin alpha-PS3 6.1 8 8 8 61981.8047 8 +O46037 Vinculin 55.88 45 103 0 1097633.97992 92 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 22316.221 4 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 102161.37359999999 10 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 45082.7994 4 +O46339 Homeobox protein homothorax 4.72 2 2 2 943.19586 1 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 238677.2619 11 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 10708.917000000001 3 +O61307 Teneurin-m 0.92 2 2 0 25556.928 1 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 93369.7934 10 +O61491 Flotillin-1 45.77 19 45 19 930710.81201 45 +O61722 PRL-1 phosphatase 55.11 7 19 7 265900.8042 16 +O62619 Pyruvate kinase 57.6 24 73 24 2289397.93733 62 +O62621 Coatomer subunit beta' 2.84 3 3 3 5145.1562 3 +O76206 Putative riboflavin kinase 55.56 6 17 0 181886.71374 11 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 95626.105 5 +O76742 Ras-related protein Rab7 36.71 7 10 7 175175.0163 10 +O76878 RILP-like protein homolog 8.35 4 5 0 38672.85675 5 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 97950.793 9 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 104529.844 8 +O77051 Transcription factor E2F2 18.65 7 9 0 25724.9941 8 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 25036.0317 3 +O77277 Torsin-like protein 15.29 6 8 0 49339.28235 8 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 19410.898 4 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 38280.67 1 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 68911.3084 13 +O96690 Protein PDF 23.53 1 1 1 2635.0256 1 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 1752579.98759 75 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 25973.4704 7 +O97125 Heat shock protein 68 35.28 20 66 13 252644.3233 19 +O97172 UPF0729 protein CG18508 21.21 3 5 0 20955.021240000002 4 +O97394 Protein sidekick 1.48 3 3 0 8545.8601 2 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 26359.0787 3 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 869759.50074 38 +P00334 Alcohol dehydrogenase 85.16 20 241 20 8076330.74738 210 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 1304611.84767 17 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 2250.7 1 +P02255 Histone H1 14.45 3 3 0 19859.6025 3 +P02283 Histone H2B 54.47 8 74 8 846470.9311 64 +P02299 Histone H3 52.21 6 34 2 2366837.4248 29 +P02515 Heat shock protein 22 32.76 6 14 6 66269.72804 12 +P02516 Heat shock protein 23 70.97 15 72 0 2586288.10186 68 +P02517 Heat shock protein 26 58.17 9 19 0 994603.9824199999 18 +P02518 Heat shock protein 27 52.11 10 28 0 378191.97656 23 +P02572 Actin-42A 63.83 25 618 2 34776112.70742 521 +P02574 Actin, larval muscle 65.69 27 537 0 434139.42996000004 23 +P02828 Heat shock protein 83 59.27 42 143 0 2857717.87842 127 +P02843 Vitellogenin-1 73.35 27 218 0 2338086.31943 155 +P02844 Vitellogenin-2 67.65 24 169 0 1822993.85716 118 +P04197 Myb protein 2.74 2 2 0 3900.0861000000004 2 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 233329.08 8 +P04388 Ras-like protein 2 33.33 5 7 5 22403.7862 6 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 5342.1722 3 +P05205 Heterochromatin protein 1 32.52 7 16 7 65393.54876 15 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 974637.4676000001 15 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 748601.3601 18 +P05552 Transcription factor Adf-1 12.21 3 3 0 26613.088799999998 3 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 55966.0198 8 +P05812 Heat shock protein 67B1 11.91 5 6 5 35891.5644 5 +P06002 Opsin Rh1 8.85 3 8 3 107259.93685 8 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 13407134.93116 165 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 8567.127199999999 2 +P06607 Vitellogenin-3 79.05 31 233 0 5225126.39166 199 +P06742 Myosin light chain alkali 41.94 6 120 0 4310539.3863 93 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 1625.3147 1 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 2824404.7066 26 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 6236160.59004 101 +P07665 Serendipity locus protein beta 1.97 1 1 0 5930.429 1 +P07668 Choline O-acetyltransferase 9.71 6 7 6 9635.468 5 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 15222731.57127 281 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 16991.442000000003 3 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 92641.30946 10 +P08144 Alpha-amylase A 23.48 10 15 0 353160.338 14 +P08171 Esterase-6 20.22 12 20 0 410559.87645 18 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 53119.7816 3 +P08182 Casein kinase II subunit beta 32.77 7 18 2 329827.5042 15 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 1480359.54877 39 +P08645 Ras-related protein Rap1 40.22 6 12 0 89821.14956 11 +P08646 Ras-like protein 1 37.04 5 13 5 478273.8561 12 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 7465802.36164 116 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 73819.01977 13 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 2775769.68876 67 +P08928 Lamin 66.88 49 174 48 3182166.28132 150 +P08985 Histone H2A.v 41.84 7 43 5 467983.1076 21 +P09040 Drosulfakinins 17.73 3 4 3 86728.151 4 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 703092.27597 45 +P09208 Insulin-like receptor 1.77 5 5 5 874.70446 2 +P09491 Tropomyosin-2 64.44 27 221 1 122434.2046 4 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 52512.8863 7 +P10180 Homeobox protein cut 0.69 1 1 0 554.7959 1 +P10379 Protein unzipped 27.05 12 27 0 518529.3418 24 +P10552 FMRFamide-related peptides 5.76 2 2 2 36236.7 2 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 276242.65335 54 +P10981 Actin-87E 68.62 28 611 0 5074177.524929999 26 +P10987 Actin-5C 64.36 27 636 0 508499.6214 14 +P11046 Laminin subunit beta-1 22.87 37 67 37 1024140.18273 61 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 595.6925 1 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 12680697.01392 285 +P11584 Integrin beta-PS 19.98 17 28 0 270392.6438 26 +P12024 Chaoptin 27.6 35 84 0 1211258.75411 73 +P12080 Integrin alpha-PS2 13.11 18 23 18 358801.8736 22 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 794871.09564 34 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 44991.82853 9 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 166371.9914 14 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 613042.27951 38 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 63264.40003 10 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 36801.23795 6 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 540496.9112 37 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 1267579.19188 91 +P13395 Spectrin alpha chain 63.6 137 494 0 8417214.52213 438 +P13469 DNA-binding protein modulo 6.83 4 4 0 7279.51685 2 +P13496 Dynactin subunit 1 15.18 21 23 21 146404.97414 20 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 3074120.60627 124 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 82576.3684 14 +P13678 Protein kinase C 3.92 3 3 0 61457.476 3 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 6811.1494 1 +P14199 Protein ref(2)P 22.37 11 19 11 148705.5638 16 +P14318 Muscle-specific protein 20 82.61 17 66 17 1097124.00242 61 +P14484 Pupal cuticle protein 27.17 5 19 5 241795.79496 17 +P14599 Amyloid-beta-like protein 1.92 2 2 0 5565.0635 1 +P15007 Enolase 74.2 31 339 1 13894752.8202 288 +P15215 Laminin subunit gamma-1 39.35 55 99 0 1028068.31654 89 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 116880.8664 3 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 1699353.46085 60 +P15364 Protein amalgam 13.21 4 5 0 100611.881 4 +P15372 Phosrestin-2 60.16 20 59 0 1645973.75734 52 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 48062.56416 8 +P16378 G protein alpha o subunit 26.55 10 39 7 472153.82647 37 +P16554 Protein numb 7.73 4 5 0 35382.95025 5 +P16568 Protein bicaudal D 18.8 15 17 0 85307.31537 17 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 120838.4044 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 2668.8555 1 +P16914 Protein elav 23.4 9 28 0 325895.161 25 +P17210 Kinesin heavy chain 44.31 40 74 40 952629.01425 69 +P17276 Protein henna 40.71 15 27 0 534177.11905 25 +P17336 Catalase 34.78 14 49 14 523406.73819 40 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 663648.0068 24 +P17719 Dihydrofolate reductase 19.78 3 4 3 24170.33715 4 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 829000.60117 33 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 2546.1897 1 +P18431 Protein kinase shaggy 33.85 16 43 0 950646.70086 37 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 3855732.13772 166 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 135064.3576 8 +P18824 Armadillo segment polarity protein 22.78 16 24 0 198752.0709 24 +P19107 Phosrestin-1 73.82 32 213 32 6729784.96892 193 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 282331.6164 19 +P19334 Transient receptor potential protein 2.51 4 4 3 12389.2873 3 +P19339 Protein sex-lethal 4.52 2 2 0 5599.6164 2 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 309950.955 14 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 1269723.82426 66 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 19212.5616 4 +P20153 Protein ultraspiracle 2.76 2 2 0 8508.1694 2 +P20228 Glutamate decarboxylase 18.04 8 26 0 193085.0644 19 +P20232 Transcription elongation factor S-II 31.63 7 8 0 101017.4079 7 +P20240 Otefin 32.08 11 14 11 70228.67605 11 +P20241 Neuroglian 25.81 31 74 0 1116787.94696 69 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 34187.418 4 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 4414.489 2 +P20354 G protein alpha s subunit 39.74 13 26 1 655.83716 1 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 2115.036 1 +P20432 Glutathione S-transferase D1 55.5 13 79 9 3391982.531 64 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 1976800.2238999999 51 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 15975026.76759 162 +P21187 Polyadenylate-binding protein 38.01 18 35 18 348919.36673 32 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 3157597.99833 89 +P22465 Annexin B10 76.01 24 139 24 2589443.22984 118 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 506852.98672 32 +P22813 Heat shock factor protein 2.75 2 2 0 2133.9302 1 +P22815 Protein bride of sevenless 1.23 1 1 1 10717.719 1 +P22979 Heat shock protein 67B3 53.77 7 19 7 454676.55334 16 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 6040.842 1 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 136980.65586 24 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 20951.0898 3 +P23625 G protein alpha q subunit 51.56 19 75 16 1453324.4139 64 +P23654 Neurotactin 12.41 10 13 0 61682.1967 13 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 146034.7782 12 +P23779 Cystatin-like protein 63.49 8 32 8 787788.1894200001 25 +P24156 Prohibitin 1 68.48 17 53 0 925813.14703 45 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 3794168.10929 93 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 28869.0309 3 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 296601.7627 21 +P25171 Regulator of chromosome condensation 6.03 4 4 4 62195.092000000004 4 +P25228 Ras-related protein Rab-3 33.64 7 18 0 191701.6124 12 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 15922.9658 6 +P25822 Maternal protein pumilio 2.15 3 5 0 19098.0965 5 +P25843 Profilin 88.89 7 28 0 489851.35715 25 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 107810.35954 5 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 68687.6094 6 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 239354.89529 17 +P26686 Serine-arginine protein 55 9.31 4 7 0 70887.6514 7 +P27716 Innexin inx1 2.21 1 2 0 22244.253 2 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 100510.21184999999 10 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 22947.595100000002 4 +P29052 Transcription initiation factor IIB 16.51 6 8 0 89925.62267 8 +P29310 14-3-3 protein zeta 67.74 17 278 0 9376109.87561 225 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 433081.59807 20 +P29413 Calreticulin 46.55 20 61 0 1296494.4448199999 52 +P29613 Triosephosphate isomerase 76.11 17 131 16 4246717.15244 120 +P29742 Clathrin heavy chain 7.39 13 15 0 28708.6279 13 +P29746 Protein bangles and beads 61.76 24 46 24 1028296.62764 44 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 1210236.5172599999 53 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 29872.7162 7 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 3562416.61602 146 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 4481152.34487 141 +P30432 Furin-like protease 2 0.66 1 1 0 3533.328 1 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 1316796.6491999999 28 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 1587026.08253 77 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 650548.5986499999 24 +P32234 Guanylate binding protein 128up 16.3 6 8 5 44538.51381 8 +P32392 Actin-related protein 3 10.53 4 7 4 103185.1105 7 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 93965.6243 12 +P33438 Glutactin 14.13 17 42 0 168703.51575 29 +P34082 Fasciclin-2 17.18 15 23 0 137626.5065 21 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 410241.2013 20 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 258367.97006 17 +P35220 Catenin alpha 24.86 22 44 14 377896.25085 38 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 20706010.1981 349 +P35415 Paramyosin, long form 73.38 77 511 0 8578147.6077 411 +P35416 Paramyosin, short form 56.41 39 294 0 760583.8708 39 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 2803.6017 2 +P35554 Flightin 49.45 8 18 0 739270.84405 17 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 38734.5491 6 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 871599.4945 35 +P36188 Troponin I 47.58 17 65 0 1555475.9886 55 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 369727.4226 14 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 4551.8154 2 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 566513.4577 29 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 1635.7633 1 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 1376125.06425 83 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 73812.8689 4 +P37236 Frequenin-1 68.98 11 45 0 225443.2396 8 +P37276 Dynein heavy chain, cytoplasmic 0.24 1 1 0 355.43903 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 261468.8782 9 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 1720057.66726 67 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 720155.8812 37 +P39736 Puff-specific protein Bx42 6.4 3 4 0 14954.0782 4 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 112884.8661 7 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 275401.3978 8 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 49877.382 3 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 541983.64083 27 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 10040.59607 5 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 286306.472 17 +P40427 Homeobox protein extradenticle 2.93 1 1 0 512.8226 1 +P40792 Ras-related protein Rac1 22.4 4 7 0 162993.3006 7 +P40793 Cdc42 homolog 37.7 7 8 0 193175.88559999998 7 +P40796 La protein homolog 48.46 17 25 16 130519.34921 22 +P40797 Protein peanut 28.39 14 25 13 359845.17887 25 +P40945 ADP ribosylation factor 4 38.33 5 11 0 29743.373420000004 6 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 45506.663499999995 8 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 589194.55423 33 +P41043 Glutathione S-transferase S1 76.71 15 62 0 3260036.3564999998 60 +P41044 Calbindin-32 77.74 26 146 0 2680499.4155200003 131 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 79365.58627 23 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 530066.48215 16 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 242811.8345 15 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 899665.86094 44 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 658451.26377 42 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 567524.25844 34 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 18438.55561 5 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 322749.1879 17 +P42207 Septin-1 10.8 4 11 3 30072.9961 3 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 1083527.05934 31 +P42325 Neurocalcin homolog 42.63 8 22 8 413046.67125 19 +P42787 Carboxypeptidase D 8.68 10 14 0 96827.21418 12 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 59928.8378 6 +P45437 Coatomer subunit beta 4.67 3 4 3 27461.64828 4 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 2797440.54646 80 +P45888 Actin-related protein 2 15.79 5 7 5 44680.6353 7 +P45889 Actin-related protein 1 23.4 10 13 10 223078.3837 13 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 25674.123 1 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 551123.63998 15 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 836784.21126 32 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 149437.984 10 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 544470.25025 44 +P46824 Kinesin light chain 37.4 23 45 0 565467.79944 40 +P47947 Troponin C, isoform 1 24.68 4 24 0 727222.0154 24 +P47948 Troponin C, isoform 2 47.1 6 9 0 4630.4126 2 +P47949 Troponin C, isoform 3 63.23 9 25 0 491414.7421 20 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 871741.617 20 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 518853.986 21 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 375165.57474 24 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 1171086.08986 28 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 240909.9737 5 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 9946.2002 2 +P48554 Ras-related protein Rac2 26.56 5 10 0 37511.0637 5 +P48555 Ras-related protein Ral-a 49.75 8 21 1 348223.4346 19 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 40561.4066 4 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 2071825.28654 52 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 164697.2647 16 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 805419.68667 34 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 1235354.10004 81 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 59507.6704 5 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 359749.42438000004 31 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 855501.88961 39 +P48607 Protein spaetzle 3.99 1 1 0 2613.2883 1 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 151853.8088 10 +P48610 Arginine kinase 1 75.84 36 446 0 18469546.39813 400 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 643502.7807499999 20 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 295456.54545000003 35 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 49451.07542 6 +P49028 Protein mago nashi 30.61 4 6 4 14551.357500000002 3 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 172949.607 8 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 406960.81966000004 8 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 4526.1113 1 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 11736.49896 2 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 1274.4591 1 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 15596.3255 4 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 772859.074 27 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 125511.55915 9 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 4649.6149000000005 2 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 162477.23149 22 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 40743.022899999996 9 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 233872.62847999998 20 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 67846.3912 7 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 4707.3506 1 +P53034 Replication factor C subunit 2 8.46 3 3 3 22147.165 2 +P53501 Actin-57B 69.15 29 622 4 12505119.3538 70 +P53777 Muscle LIM protein 1 31.52 3 14 0 164328.7406 10 +P53997 Protein SET 15.24 4 9 4 75999.5293 9 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 75223.5321 5 +P54191 General odorant-binding protein 69a 13.51 2 6 2 34400.9623 5 +P54192 General odorant-binding protein 19d 69.33 10 107 10 7401043.39532 102 +P54193 General odorant-binding protein 83a 42.86 7 18 0 661905.7788 16 +P54195 General odorant-binding protein 28a 40.56 4 13 4 224099.77116 11 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 6844.6684000000005 3 +P54352 Ethanolamine kinase 6.76 3 3 2 13149.05046 3 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 149238.17291 15 +P54357 Myosin-2 essential light chain 89.12 10 40 1 1006635.57167 32 +P54359 Septin-2 17.66 7 10 1 145057.5604 10 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 7872.1997 1 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 1195010.05839 73 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 18063.041400000002 2 +P54399 Protein disulfide-isomerase 75.6 37 146 0 5161131.2309 126 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 5680875.40958 131 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 150977.47962 10 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 181001.09883 14 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 512926.9399 14 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 1579080.23294 66 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 833327.25365 28 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 784269.68086 47 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 11183.0816 2 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 65611.33 4 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 546027.09753 17 +P61849 Dromyosuppressin 10.0 2 3 0 26013.7087 3 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 4983778.87022 85 +P61855 Adipokinetic hormone 37.97 2 3 2 30975.706 3 +P61857 Tubulin beta-2 chain 44.39 15 202 2 551494.5255 3 +P62152 Calmodulin 99.33 19 359 0 15478620.414900001 306 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 649354.68353 30 +P81829 Leucokinin 6.25 1 1 1 6562.6333 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 2952550.24507 86 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 827983.4479 33 +P82295 Prominin-like protein 3.75 3 3 0 1895.4565 1 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 252139.2365 14 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 79591.5217 10 +P83967 Actin, indirect flight muscle 68.62 27 587 2 44620.631199999996 4 +P84029 Cytochrome c-2 70.37 11 82 0 3460435.06216 76 +P84040 Histone H4 59.22 9 102 0 2722992.86336 91 +P84051 Histone H2A 37.1 5 48 0 542302.12886 20 +P84345 ATP synthase protein 8 18.87 1 5 1 88583.27984 5 +P91891 Protein Mo25 34.22 13 23 0 296010.3354 19 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 90598.7495 18 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 192583.50340000002 36 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 1876123.27202 91 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 917385.1091 32 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 485219.7456 20 +P92029 DnaJ-like protein 60 4.15 1 1 0 3524.7192 1 +P92177 14-3-3 protein epsilon 72.14 22 257 20 6712300.79054 175 +P92204 Negative elongation factor E 10.0 3 4 3 35760.743 4 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 3393.8052 1 +P98081 Protein disabled 5.35 9 11 0 15107.06567 6 +Q00174 Laminin subunit alpha 22.49 77 124 77 1858972.29088 111 +Q00963 Spectrin beta chain 23.88 58 119 2 4625.50306 3 +Q01603 Peroxidase 8.41 6 6 0 34398.6942 5 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 6954214.71673 213 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 31693.651899999997 4 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 1235.3540600000001 2 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 304172.24266 27 +Q02910 Calphotin 3.36 2 4 2 11053.29 1 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 21231.05841 7 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 5098.83706 3 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 466336.25725 20 +Q03427 Lamin-C 59.74 41 127 3 1108373.04466 97 +Q04047 Protein no-on-transient A 13.43 8 10 0 51542.22265 9 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 125598.674 19 +Q04691 Fat-body protein 1 24.68 26 37 0 222525.19003 35 +Q05783 High mobility group protein D 21.43 2 3 0 25445.2451 3 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 15417806.77897 490 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 1600.1094 1 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 3104342.9496999998 80 +Q06943 High mobility group protein Z 43.24 4 12 0 53215.7555 9 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 11573.0758 4 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 152684.1314 16 +Q07171 Gelsolin 25.81 18 39 0 533768.73666 33 +Q07327 Protein ROP 35.51 20 37 0 402829.44948 32 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 198460.2538 12 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 2102.9053 1 +Q08473 RNA-binding protein squid 42.44 9 32 0 702192.53183 26 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 27342.5902 5 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 30363.8206 3 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 133684.644 12 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 6026.403 2 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 345375.6917 12 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 10356.7996 2 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 20172.175 3 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 97513.7089 10 +Q11002 Calpain-A 7.73 7 8 0 44126.3441 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 1047781.5949 27 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 2143185.3728300002 73 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 1716930.9007 78 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 2419131.5134 90 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 1055578.8582 38 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 2347251.1132 77 +Q24050 Elongator complex protein 5 29.39 7 10 6 45883.98324 7 +Q24114 Division abnormally delayed protein 8.63 5 10 0 81415.7889 10 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 184185.06800000003 13 +Q24134 Negative elongation factor D 2.42 1 1 0 469.94858 1 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 39998.3921 5 +Q24185 Protein hook 20.47 13 18 13 159824.90648 18 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 462842.6751 28 +Q24207 Protein boule 27.63 5 9 0 140233.1232 7 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 179947.84203 17 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 38755.4182 6 +Q24211 Protein stoned-A 37.53 27 59 0 485659.03792000003 49 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 461365.0838 16 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 37673.977999999996 5 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 52337.7489 5 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 6132370.42048 162 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 121573.72250999999 15 +Q24292 Protein dachsous 0.31 1 1 0 1743.4155 1 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 42759.995950000004 6 +Q24298 DE-cadherin 15.06 23 36 23 410476.293 34 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 5150.5913 1 +Q24318 Transcription factor Dp 7.19 3 4 0 9479.714 3 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 48949.8331 8 +Q24322 Semaphorin-1A 2.34 2 3 0 1380.03803 2 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 56286.6333 4 +Q24372 Lachesin 17.83 6 8 6 54236.971600000004 7 +Q24388 Larval serum protein 2 8.84 5 5 0 11001.87836 4 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 970855.0378 62 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 2113036.06085 44 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 6402382.14054 154 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 56648.738620000004 18 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 43619.5187 6 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 11293.5152 3 +Q24509 Syntaxin-5 4.28 2 2 0 5526.1607 2 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 59690.33472 8 +Q24524 Protein singed 5.86 3 3 0 10675.1076 3 +Q24537 High mobility group protein DSP1 13.99 6 14 0 116737.6088 13 +Q24547 Syntaxin-1A 29.21 12 41 0 685135.1117 39 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 8618190.28104 246 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 9310.4875 3 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 121132.0465 15 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 1331727.1041299999 26 +Q26377 Pro-corazonin 40.26 5 12 5 66844.7043 10 +Q26416 Adult cuticle protein 1 20.0 1 5 1 92062.9936 4 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 45802.77825 5 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 515147.2165 18 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 23263.4118 5 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 874401.3046299999 36 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 345217.1315 15 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 1026964.00638 50 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 116880.72146 11 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 152581.6039 12 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 15095.105 1 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 195310.7158 11 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 175600.9074 10 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 5943.8512 3 +Q3KN41 Neurexin 1 1.96 4 4 0 20205.31458 4 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 9462.3207 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 25652.024800000003 2 +Q4V645 Trissin 16.67 2 3 2 29242.196 3 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 14774.339500000002 2 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 53448.289000000004 3 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 14735.117419999999 6 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 137526.5599 13 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 22490.85116 5 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 3593.1216999999997 2 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 16564.5772 4 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 67392.56765 7 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 30705.400999999998 4 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 194663.93964 8 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 171492.58744 12 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 17200.294400000002 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 124986.8991 12 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 528134.61313 29 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 428.30484 1 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 179176.43184 16 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 29265.018899999995 4 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 208951.2002 15 +Q7JXF7 Protein seele 34.92 5 7 5 61436.75004 7 +Q7JYV2 Synaptogyrin 8.3 1 1 1 2335.6196 1 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 5816.95 1 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 26762.323640000002 3 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 67942.50804 11 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 152448.97258 14 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 6626.7915 2 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 49240.58174 10 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 13909.589 2 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 5478.087939999999 2 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 606174.39 39 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 16031.699 1 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 83186.1945 11 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 49502.10604 12 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 19173.1491 6 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 147709.0473 18 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 67316.98772 9 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 2840374.61564 72 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 32732.661799999998 5 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 365548.6751 24 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 904737.3419 34 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 4454.6847 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 812133.0286 51 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 118563.05065 19 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 236830.20286999998 15 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 13374.99102 5 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 8836.558 1 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 76901.34240000001 7 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 4915380.92014 60 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 547.8667 1 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 98321.93993 8 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 146936.0275 20 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 47435.823599999996 3 +Q7KVY7 Syntaxin-4 6.01 2 2 1 10291.217359999999 2 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 26521.8017 5 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 1310954.3718 45 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.94 2 2 2 446.9028 1 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 200224.0211 17 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 63939.5185 5 +Q868Z9 Papilin 18.81 47 94 47 444767.77967 83 +Q86B79 RING finger protein unkempt 3.17 2 2 0 9307.2133 2 +Q86B87 Modifier of mdg4 13.77 6 8 0 68616.9809 7 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 7072.6091 3 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 40289.7761 4 +Q86NP2 Negative elongation factor A 9.51 9 11 0 48009.0766 10 +Q86P48 AT-rich binding protein 7.22 3 5 3 11144.2323 3 +Q86S05 Protein lingerer 2.91 3 4 0 751.08044 1 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 40717.50208 6 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 398706.4602 22 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 14003.954679999999 4 +Q8IN41 Protein Turandot X 8.45 1 1 1 6387.4326 1 +Q8IN43 Protein Turandot C 31.01 4 14 4 69020.75074999999 12 +Q8IN44 Protein Turandot A 58.14 9 20 9 292748.33658 17 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 74344.52126 6 +Q8IPM8 Complexin 66.2 10 69 0 38946.7584 3 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 91383.94423 14 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 35651.24925 7 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 602.3876 1 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 76863.62142 8 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 110363.3128 7 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 43022.3284 7 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 760436.2220600001 30 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 4418.566000000001 2 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 11617.925 1 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 1899.7168 1 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 52385.8038 4 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 29083.9797 3 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 988063.75185 38 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 273552.28615 22 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 3743.8428 1 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 1438.4327 3 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 25044.928 4 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 65941.5552 5 +Q8MSS1 Protein lava lamp 17.06 45 52 0 221445.55789999999 48 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 13512.699700000001 2 +Q8MSV2 Protein alan shepard 12.54 6 13 6 123181.98384 11 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 4668.3292 2 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 3545.8437999999996 2 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 8852.743999999999 2 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 437760.1161 17 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 77957.62842 14 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 259407.3773 16 +Q8SY33 Protein Gawky 11.05 13 19 13 92862.97843 15 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 1048215.12074 55 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 95197.91721 16 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 35813.038400000005 5 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 25904.9025 4 +Q8SZ63 Golgin-84 5.23 3 3 3 6507.2117 2 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 52384.4571 7 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 9602.587 1 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 454224.98711 32 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 390355.4935 30 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 7410.547 1 +Q8T390 Endophilin-A 56.91 20 92 0 1440789.26138 67 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 73536.2372 6 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 810870.2907 20 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 127635.9572 12 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 89560.1057 11 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 1689.6395 1 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 348817.9613 18 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 34261.3592 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 2792897.37028 94 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 2389075.83779 83 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 3485170.96122 110 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 1355.50528 2 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 709801.09736 17 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 831349.1231 27 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 4431684.02481 103 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 436930.31192999997 47 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 28405.7926 3 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 291210.57785 18 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 9421.0835 3 +Q94547 Regulator of gene activity 4.27 3 4 0 56044.856999999996 4 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 15107.6453 4 +Q94901 RNA-binding protein lark 53.69 20 40 20 356645.96445 37 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 673.9612 1 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 73955.2896 7 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 15865990.00509 324 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 4441.9404 1 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 63504.062 6 +Q95029 Cathepsin L1 38.27 16 60 3 1618714.68644 52 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 429830.1915 18 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 14761.656500000001 2 +Q95RA9 GILT-like protein 1 46.4 9 28 9 640052.30267 26 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 2278.7008 2 +Q95RI5 Failed axon connections 54.78 24 114 0 2601489.47914 100 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 713.60156 1 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 68682.05099999999 5 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 49434.8166 11 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 44499.353299999995 4 +Q95T12 Calcium channel flower 12.89 2 3 2 36977.5836 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 16077.555400000001 4 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 2109.9954 1 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 44720.13506 9 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 4257.7173 1 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 216381.03840000002 18 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 34946.067299999995 8 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 62655.0915 6 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 395.59564 1 +Q967D7 Protein turtle 2.74 4 6 0 54828.2909 6 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 36510.884 10 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 34184.0504 4 +Q9GQQ0 Protein spinster 1.98 1 3 1 8703.09334 3 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 2355280.3914 56 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 8474.6013 2 +Q9I7D3 Caprin homolog 12.38 10 12 0 34510.5003 6 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 41557.97774 5 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 53629.6205 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 19148.3233 2 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 61789.5504 6 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 348040.5878 28 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 10065.20593 2 +Q9I7U4 Titin 1.5 22 25 0 53799.8117 19 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 7484.795 1 +Q9NB04 Patj homolog 31.46 20 37 0 378772.63699 32 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 5355.0892699999995 3 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 26723.9237 5 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 19197.5795 3 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 51760.01927999999 4 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 71256.52040000001 6 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 33090.7464 5 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 4742.281 1 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 6654.7304 2 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 1205978.32409 48 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 23139.3316 7 +Q9TVM2 Exportin-1 1.79 2 2 0 9696.01706 2 +Q9TVP3 J domain-containing protein 79.49 16 82 16 2849166.4437 72 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 199192.89098 26 +Q9U4G1 Protein borderless 19.89 13 27 13 453638.6841 24 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 16418.414 3 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 86536.80720000001 11 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 305396.1782 16 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 1973.9591 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 24355.7362 3 +Q9U915 Adenylate kinase 2 72.08 21 51 21 908535.7074 45 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 38036.9493 3 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 93655.6606 9 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 99587.23658 10 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 58010.7574 9 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 2997.3357 1 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 4745.9083 2 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 39153.5017 4 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 584239.5555 24 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 14238.072 1 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 1060128.9848 27 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 39331.87004 5 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 122229.133 6 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 129399.38315000001 5 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 115860.65933 13 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 779368.47876 36 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 44473.793529999995 7 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 86489.0986 14 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 37089.07316 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 163379.4854 19 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 3140410.34192 113 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 105319.6188 15 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 3918.2673 1 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 23946.0299 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 105700.24855999999 7 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 8177.2462 2 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 556556.4802 39 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 29197.3256 3 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 75739.34925 8 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 359385.4214 11 +Q9V3Z2 Serine protease 7 15.35 5 6 4 29894.8708 6 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 58522.032 11 +Q9V427 Innexin inx2 8.99 4 8 0 94528.5399 6 +Q9V429 Thioredoxin-2 68.87 7 37 7 1380870.9255 36 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 169608.4436 17 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 284907.88525 22 +Q9V447 Krueppel homolog 2 12.68 3 3 0 21814.325 3 +Q9V496 Apolipophorins 34.8 114 261 0 7880751.2739 230 +Q9V498 Calsyntenin-1 1.02 1 1 0 14615.02 1 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 9120.5625 1 +Q9V4C8 Host cell factor 4.93 8 11 8 81223.1302 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 4365.642 1 +Q9V4N3 Cytochrome b5 61.19 5 26 5 494623.24079999997 18 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 79324.7889 5 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 92119.2582 11 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 4904.5450599999995 2 +Q9V521 Phenoloxidase 2 22.22 16 20 15 88539.71407 15 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 233140.58969999998 13 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 8657.41483 2 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 141436.2475 13 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 319126.89229 28 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 678897.32468 29 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 393.80902 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 12309.365 1 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 52524.4613 8 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 4781.70956 2 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 29796.546430000002 5 +Q9V6G5 Tafazzin 5.82 3 3 0 18797.4597 3 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 1726126.76374 68 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 16789.931 3 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 17142.7633 3 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 15632.92158 4 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 3052.3406 3 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 1205660.7475400001 64 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 1956198.7341 95 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 389136.43574 21 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 22082.087750000002 2 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 21766.1777 3 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 446868.48008 29 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 1029571.21678 92 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 643837.2146000001 15 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 172784.44133 8 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 18720.6869 5 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 33027.502 2 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 44972.74914 7 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 5271.546 1 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 12683.3702 3 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 4556.6724 1 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 6665.504849999999 4 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 363951.4717 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 55051.72456 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 171732.202 11 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 855.87598 2 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 12630.487 1 +Q9VA37 Protein dj-1beta 72.73 12 59 12 1276373.98136 49 +Q9VA70 Neutral ceramidase 2.41 2 2 0 5933.6902 2 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 1749876.1395400001 43 +Q9VAF5 Cadherin-99C 5.92 10 11 10 28862.9975 9 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 737647.3870400001 23 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 342229.7103 25 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 1365894.39934 68 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 805125.2216 44 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 38597.7898 7 +Q9VAW5 La-related protein 1 4.06 5 5 0 17440.30625 4 +Q9VAY3 Mitoferrin 7.65 3 3 3 14471.2056 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 18167.1895 3 +Q9VB68 Serine protease grass 12.2 5 6 5 17386.98314 4 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 21979.1414 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 4192.91024 3 +Q9VBV3 Protein takeout 26.91 6 7 0 96203.4182 6 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 65143.5772 9 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 5424.4581 2 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 423.6629 1 +Q9VC57 Atlastin 5.91 3 4 0 28193.15656 4 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 5903.5496 2 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 183848.71155 11 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 69215.9762 8 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 9395.3458 3 +Q9VCE8 Actin maturation protease 9.74 1 2 0 642.3017 1 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 124097.96909999999 11 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 112772.94978000001 14 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 51188.97823 4 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 112061.43867999999 12 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 188285.87 11 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 19975.1836 2 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 6016.5987000000005 2 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 4956.241 2 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 192253.7789 10 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 216402.84964 17 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 14537.38434 5 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 41553.3636 4 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 62550.47448 13 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 7458.1795999999995 3 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 2464.844 1 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 15069.527900000001 2 +Q9VDL1 Esterase CG5412 9.68 2 3 2 2271.50537 2 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 4912.572539999999 2 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 69769.92443 8 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 1477.1251 1 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 12485.0747 3 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 7040.0146 1 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 18247.785499999998 2 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 2217.057 1 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 1277799.43971 50 +Q9VER6 Modular serine protease 3.18 2 3 2 5829.4272 2 +Q9VET0 Neuropeptide F 29.41 3 4 0 28212.814 2 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 726644.22893 43 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 70682.44597 5 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 4255.21849 3 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 56580.942259999996 8 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 1920627.41506 58 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 8399.766599999999 3 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 155287.41487 16 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 8345.186 1 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 23966.924 2 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 596128.3910000001 29 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 43119.4119 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 7258.9766 3 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 16828.819 2 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 19403.8584 3 +Q9VFM9 Twinfilin 24.78 8 14 8 97000.7528 11 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 80596.49046 7 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 19556.0787 3 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 6986.896 1 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 54847.06982 9 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 32062.313000000002 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 4538.6675 1 +Q9VG55 Protein hugin 18.32 2 2 2 4369.6912 2 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 149358.36595 9 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 3423.1025 1 +Q9VG76 Myc-binding protein 11.05 2 2 2 10444.609 1 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 6980.65934 3 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 617577.0008 22 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 72614.32209999999 6 +Q9VGG5 Cadherin-87A 5.16 9 12 9 100246.3448 12 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 10425.565 1 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 103116.829 8 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 13374.191 1 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 16488.1695 3 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 12059.325 1 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 1445139.25162 46 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 244329.2228 17 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 38347.764200000005 3 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 580.0417 1 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 168734.4214 14 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 3916.6152 1 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 245021.9552 11 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 244400.1975 7 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 600155.5389 19 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 854.7817 1 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 36089.623900000006 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 22874.8929 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 114958.7438 10 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 26614.377800000002 7 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 112904.3709 6 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 8597.3747 4 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 111608.93622 15 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 707.97 1 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 1099067.14354 49 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 1536678.17366 45 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 72286.7031 6 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 11267.9743 3 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 2175.9597 1 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 44432.0801 8 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 58265.20158 9 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 6711.2835 2 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 264378.22380000004 15 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 260711.6066 14 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 61010.25914 5 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 24982.55314 3 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 18513.964500000002 2 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 4318.0224 3 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 205172.1852 11 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 180532.45833999998 14 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 96664.1207 7 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 58886.21306 7 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 155481.1239 8 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 6956.0757 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 2511.4207 1 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 10725.3297 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 1091.40842 2 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 6461.7295 1 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 54749.10016 10 +Q9VJL6 Glia maturation factor 10.87 2 3 2 34120.543 3 +Q9VJQ5 Protein Dr1 17.49 3 3 3 15667.623100000003 3 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 268162.5568 14 +Q9VJY9 Protein Loquacious 12.69 5 5 0 40375.4648 4 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 6466.4305 2 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 183984.4499 13 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 1857.5214 1 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 1713.4718 1 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 49875.4216 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 22689.413249999998 6 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 30957.179600000003 2 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 44468.3208 4 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 18657.3784 2 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 4737.2705 1 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 761412.2683400001 34 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 936726.8463 57 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 10495.41525 3 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 39843.7086 5 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 40642.4135 6 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 99297.00690000001 8 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 23280.3419 6 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 264320.88925999997 17 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 11643.427399999999 3 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 302049.5783 12 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 74295.20693 8 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 73389.2627 9 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 1809.6272 1 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 10013.569969999999 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 31613.5928 5 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 18391.71954 5 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 18707.3305 6 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 25478.87204 3 +Q9VMD6 Protein real-time 2.58 2 2 0 5921.5041 2 +Q9VMD9 Tiggrin 11.33 29 34 0 137453.39568 29 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 18409.4093 5 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 196006.4428 16 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 7603.89006 3 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 19121.418400000002 3 +Q9VMR8 Protein Turandot M 33.59 3 5 0 28167.9454 5 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 58482.9458 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 24426.228000000003 3 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 18093.1873 5 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 234883.7754 12 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 26455.3575 3 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 28584.9036 3 +Q9VMY9 Guanine deaminase 4.46 2 2 2 15497.9584 2 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 16515.231200000002 4 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 59873.481100000005 5 +Q9VN14 Contactin 19.78 25 34 25 337031.44938 30 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 7133.3054999999995 3 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 21106.9943 2 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 121292.49355 12 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 446538.1197 29 +Q9VN93 Cathepsin F 22.64 13 28 12 518937.4362 24 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 100065.10500000001 6 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 22575.667699999998 3 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 58125.4329 3 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 457339.2737 8 +Q9VNE2 Protein krasavietz 31.28 16 24 16 252308.2835 22 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 271442.2927 12 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 5636.4116 1 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 30004.4889 3 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 30324.5628 4 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 5240.413640000001 4 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 29972.468200000003 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 28849.12467 4 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 27448.102 4 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 70722.98706 7 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 1917350.34752 27 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 500327.56606 12 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 91302.6997 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 9500.3852 4 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 43573.8333 5 +Q9VQC4 Glycerate kinase 12.94 8 8 0 53374.19 8 +Q9VQF7 Bacchus 40.79 6 16 6 133043.09174 13 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 33237.158 3 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 247481.29796 16 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 110242.1381 15 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 20419.182699999998 2 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 73457.37865 10 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 3085.3855 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 4205.74043 2 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 10308.3185 2 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 76372.1946 5 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 18738.81747 7 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 1585.772 1 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 183874.946 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 4033.59706 2 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 41904.2519 4 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 2984.8408 1 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 73860.19554 10 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 145320.42200000002 4 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 13375.7742 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 1579625.3775 67 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 16694.069499999998 2 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 3640.8713 2 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 26174.006589999997 6 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 17121.271 1 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 2268272.47928 59 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 33916.9762 4 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 30588.3354 6 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 12904.7949 3 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 785332.73473 52 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 144328.6195 7 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 4396.30704 3 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 3309.8928 1 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 15255.488000000001 2 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 23220.398 2 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 248798.4375 13 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 37918.77396 4 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 81712.4053 6 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 2880.5977 1 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 27477.625 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 7643.132 1 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 56064.7985 4 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 1243871.3253300001 43 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 55768.758700000006 5 +Q9VTZ5 Transferrin 2 22.59 16 21 16 123754.56595 19 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 52023.188500000004 7 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 31160.879699999998 2 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 3257309.9511700002 98 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 343557.84823 26 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 8646.2539 3 +Q9VU84 Drebrin-like protein 26.18 11 14 11 125048.46343999999 12 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 22504.88706 5 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 3064.0432 1 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 758388.57885 36 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 36769.7535 4 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 373393.03568 27 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 15170.064 1 +Q9VV36 Retinin 29.84 5 91 5 2519913.79496 71 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 569.42694 1 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 1002756.4502600001 35 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 276289.04254 25 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 4428.443 1 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 107303.3777 6 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 265475.0227 22 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 39374.1619 8 +Q9VVE2 Protein rogdi 30.97 7 12 7 100419.0704 10 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 141305.3774 18 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 11994.8518 3 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 330573.86713 30 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 559.4218 1 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 16103.64723 4 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 142792.51133 20 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 25571.186999999998 3 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 24794.6665 2 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 88424.05249999999 6 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 17795.587 2 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 9566.97596 5 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 214198.75625 21 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 5431.15997 2 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 91928.5127 11 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 233127.07319999998 13 +Q9VWA1 Clathrin light chain 40.64 11 40 0 735133.42407 35 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 4868.4088 2 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 11446.486139999999 2 +Q9VWE0 Cytokine receptor 1.56 2 2 2 15964.637999999999 2 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 201113.8674 12 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 7346416.92308 159 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 1077202.74822 23 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 46971.3421 9 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 46218.9943 4 +Q9VWU1 Serine protease persephone 7.61 3 3 3 20002.10696 3 +Q9VWX8 Frequenin-2 52.94 11 47 5 510764.42905 41 +Q9VX10 Sulfiredoxin 4.32 1 1 0 13401.727 1 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 123277.2235 11 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 620882.46097 22 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 18518.499200000002 3 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 206829.83200000002 8 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 10729.73533 5 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 3902.5637 1 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 712717.22794 52 +Q9VXG4 Annexin B11 23.68 13 31 13 418437.39905999997 29 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 198893.03629999998 17 +Q9VXK0 Protein NipSnap 15.38 4 8 0 76848.976 6 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 149799.0127 13 +Q9VXN2 Protein stunted 49.18 3 9 3 68058.6821 5 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 6860.2723 2 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 145403.47509999998 10 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 29026.297300000002 4 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 470.10406 1 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 537056.5405 35 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 21380.9967 4 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 269135.873 9 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 15032.6983 4 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 3729.6565 1 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 74113.70333 7 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 11459.254 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 15938.9646 3 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 30488.862399999998 6 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 2255.2666 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 1489.3163 1 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 3332.4282 1 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 2986.067 1 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 732520.7458 46 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 7976.30976 2 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 104621.6226 11 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 107711.67207 8 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 693411.9658 26 +Q9VZ35 Protein Vago 13.12 2 2 2 1273.28353 2 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 105781.277 3 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 241062.39630000002 14 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 317609.5059 22 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 38882.8748 7 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 28722.9334 4 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 4685.2699 2 +Q9VZE7 Choline transporter-like 1 1.74 1 1 0 308.52908 1 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 5774.4415 2 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 3694.8254 1 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 6271.898 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 11821.6309 3 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 277989.3645 8 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 395681.9747 18 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 1042761.42507 50 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 151264.86860000002 11 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 11373.2918 2 +Q9W032 Protein ecdysoneless 1.9 1 1 1 3884.5088 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 695502.95312 46 +Q9W074 Protein HBS1 3.28 2 2 2 5965.5183 2 +Q9W0A0 Protein draper 4.95 4 5 0 18412.9401 4 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 1985198.3357600002 46 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 1696.9319 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 25355.0753 3 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 58817.6798 9 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 292796.4364 11 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 98011.29797 13 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 78364.92285 16 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 6103.1166 2 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 821473.7834 36 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 111984.35184999999 7 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 5654.0061000000005 2 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 4119250.36636 69 +Q9W1G0 Probable transaldolase 44.71 16 52 16 1140549.94792 44 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 32105.962 2 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 21417.3164 3 +Q9W1K5 Sestrin homolog 1.41 1 1 0 9929.578 1 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 12020.762799999999 3 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 44027.01514 5 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 36860.223 5 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 41724.785 6 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 165522.1538 9 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 1014647.91524 48 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 46127.6435 6 +Q9W266 Protein windpipe 8.12 5 11 5 161840.3151 11 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 256955.6698 11 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 127022.88764 8 +Q9W2E7 Protein Rae1 29.48 9 14 9 271251.59697 12 +Q9W2M2 Trehalase 33.56 19 38 0 399850.16607000004 33 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 51458.3247 5 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 5163.147 1 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 20767.4727 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 83387.95135999999 5 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 1583653.66439 67 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 224537.353 11 +Q9W358 Chaperone Ric-8 12.22 7 7 0 39667.145 7 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 2293851.58205 78 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 33127.99755 6 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 216731.727 5 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 61169.5224 4 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 39195.3623 4 +Q9W3E2 Protein PIP82 19.58 20 31 20 76797.14818 23 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 25756.2929 5 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 23709.02076 4 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 36732.421969999996 6 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 102271.275 3 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 41702.9639 4 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 728.6922 1 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 1635.9402 1 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 3062.1558 1 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 6466492.4399 165 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 149392.9029 7 +Q9W436 Neprilysin-1 2.59 2 2 2 6018.3128 2 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 61100.9139 5 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 20017.258 1 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 59735.41496 9 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 220967.62563999998 14 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 70667.40329999999 11 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 142890.7124 14 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 220570.6646 14 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 42996.3781 5 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 716339.41857 104 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 17561.15 1 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 216935.127 14 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 175912.4787 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 25872.2577 3 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 224814.8375 10 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 18409.3663 4 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 292510.49838 50 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 1691.9469 1 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 2632.5527 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 200842.42134 8 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 467203.77086 30 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 34124.7786 6 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 86630.8471 9 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 202398.7912 16 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 397615.97864 14 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 684768.6165 33 +Q9XZL8 Protein sarah 32.53 7 14 0 92125.75215 12 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 3969.5837 1 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 27808.81 4 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 23751.2285 5 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 261924.0247 16 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 26704.5856 2 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 493924.70433 23 +X2JAU8 Protein nervous wreck 28.19 30 88 30 1285069.59123 77 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 6146.564 1 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 15323.535039999999 8 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 19655.2307 2 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 89216.51315 12 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 413332.1383 5 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 51929.2799 6 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 1734023.1343699999 98 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 4489.2714 2 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 673.6923 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 108559.84987 14 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 31817.59212 8 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 20262.892200000002 4 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 134269.58786 18 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 3375589.83234 151 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 8599.32574 2 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 13705.685 1 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 144795.37927 24 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 86022.082 4 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 52420.3128 3 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 39778.7598 8 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 18630.1806 3 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 89603.1579 7 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 3864.0436 2 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 62432.091369999995 10 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 2891656.31683 113 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 103148.587 7 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 45845.253600000004 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 14405.6346 3 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 13706.506 4 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 2362.6975700000003 2 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 1152309.36204 42 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 17820.712099999997 3 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 448.9927 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 486142.75026 52 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 4942.5275 3 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 238172.82346 23 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 13776.127400000001 2 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 17239.14566 6 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 228672.2971 16 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 128629.62819999999 12 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 302392.94926 40 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 28614.78354 10 +A0A0B4KEJ7 Coronin 12.71 7 7 0 57373.7749 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 8210.3466 3 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 6492.3362 5 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 123351.2813 17 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 5698.631 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 31795.464 2 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 2327.7185 1 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 128751.9576 22 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 374.3697 1 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 660089.85814 41 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 3106.701 2 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 1905349.97623 77 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 11290.86278 7 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 347985.24633 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 261491.75285999998 10 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 68415.359 2 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 2643.0857 1 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 36147.0395 7 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 42211.09942 7 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 359.49625 1 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 4.45 1 1 0 421.56552 1 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 70371.7654 5 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 572.59283 1 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 37197.618539999996 7 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 885.1227 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 42180.5068 7 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 8373.5545 2 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 125642.43405 15 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 494794.58593 22 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 491275.16885 28 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 4468.2085 1 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 7708.2068 2 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 286999.492 22 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 5565.3358 2 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 21774.02583 7 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 7653.845 1 +A0A0B4KH34 Annexin 55.56 21 164 3 5251734.15066 135 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 2626.3823 1 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 2961.8508 1 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 219712.76747999998 17 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 96989.08764 17 +A0A0B4KHF0 Ferritin 75.42 20 121 1 9536318.24406 92 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 10087251.51906 206 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 116860.1555 6 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 8467.129 1 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 3697.288 2 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 85089.2781 8 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 186642.04412 20 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 76931.92 2 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 32247.2791 7 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 15625.44384 6 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 47587.4149 6 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 3301.2515 1 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 431999.42721 42 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 665119.2522999999 23 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 61970.562 3 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 15645.359 2 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 2886.8136000000004 2 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 1679.0217 1 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 401504.42025 23 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 269785.5169 30 +A0A0B4LF95 glutaminase 11.14 7 11 0 53451.30556 9 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 262034.42116 23 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 123640.3121 19 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 23489.4317 5 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 2171.9106 1 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 8525.289 1 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 6077.7798 2 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 920.6375 1 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 48429.2521 6 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 11309.446 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 84791.1067 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 10013.671 2 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 83013.3517 13 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 702409.03669 46 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 89522.2758 10 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 5225.005 1 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 286008.98179 18 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 12071.44406 5 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 1901452.24101 53 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 62601.1926 8 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 554505.73245 36 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 48665.9986 4 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 35888.4551 6 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 2630.2227 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 16351.72215 3 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 40420.82035 8 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 11179.3701 2 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 35343.6894 3 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 20734.6156 3 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 1239.9903 2 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 90911.9301 12 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 7879.457399999999 3 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 4673.5596 1 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 116351.65906 18 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 8661.15655 4 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 11363.1403 2 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 123410.34463 11 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 50918.7647 2 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 77266.6672 10 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 29120.733799999998 7 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 4488897.22395 118 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 56122.41917 8 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 7403.8922 2 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 8138.7981 2 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 335909.08817 16 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 23711.8162 3 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 4556121.87359 127 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 42573.22473 13 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 48294.9849 11 +A0A4P1SAA7 IP07559p 6.8 1 1 0 8857.502 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 276341.11525 44 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 55218.1465 7 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 3626.0657 1 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 4695314.45838 261 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 7863.2131 2 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 781368.6821099999 22 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 42467.6328 7 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 52607.7661 3 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 16929.3694 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 5457.0186 1 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 1691961.93513 218 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 147434.21557 28 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 554712.14072 27 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 255555.4267 15 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 80444.85669999999 6 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 60296.95266 8 +A1Z6F6 FI18602p1 9.88 9 10 0 89845.3606 9 +A1Z6G9 FI18173p1 10.5 3 3 3 9032.0126 2 +A1Z6H4 RE52822p 14.24 7 7 0 40940.692800000004 7 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 19235.47264 7 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 17420.2395 2 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 55474.9166 5 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 63909.56914 10 +A1Z6R7 FI21445p1 40.71 9 20 9 213880.6159 18 +A1Z6V5 FI01422p 40.46 14 31 14 685519.2447 27 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 178547.22175 13 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 55696.7238 8 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 15542.703000000001 2 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 2559.8933 1 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 4245.1379 2 +A1Z7B8 GEO08456p1 21.52 3 5 3 83794.22422999999 5 +A1Z7G2 MIP13653p 13.39 2 4 2 336497.93 4 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 126274.6641 15 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 15253.3174 3 +A1Z7K6 FI20236p1 6.38 3 4 3 31122.2801 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 116059.8921 11 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 11585.7138 3 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 36136.64886 5 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 692623.0509 41 +A1Z7V9 FI20020p1 10.04 5 5 0 40405.9961 4 +A1Z7X8 FI02944p 19.81 7 8 7 62752.583620000005 6 +A1Z803 FI02892p 29.12 12 18 12 373272.2296 18 +A1Z843 Nodal modulator 3 9.42 11 14 11 94647.1655 13 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 404104.41022 25 +A1Z871 CAP, isoform B 13.38 20 35 0 42708.6774 4 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 1132675.88655 45 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 57340.505999999994 4 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 16757.479 1 +A1Z8G7 FI09243p 9.92 1 2 1 450.794 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 3182367.6543 41 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 27854.55544 8 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 6119.3071 2 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 848.61017 1 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 11976.8894 3 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 421941.93534 17 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 229026.45010000002 12 +A1Z933 GEO02273p1 27.91 2 4 2 25333.0649 4 +A1Z934 SD19268p 48.83 13 30 13 342471.35843 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 11910.643 1 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 50833.28297 7 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 6857.373799999999 2 +A1Z9B5 IP16508p 19.88 3 4 3 34212.383799999996 4 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 1380325.2083 44 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 276721.53665 15 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 86010.03033 28 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 216116.26359999998 11 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 8957.4922 4 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 101155.9438 4 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 1803.9381 1 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 11706.3718 2 +A1ZA23 FI18007p1 33.64 10 24 10 145738.87153 22 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 49862.87332 5 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 30797.7507 6 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 10828.1865 3 +A1ZAH3 FI16515p1 1.93 1 1 0 457.7266 1 +A1ZAK3 Protein DEK 4.05 3 3 0 23428.488 3 +A1ZAL1 lysozyme 30.43 5 7 5 165559.95384 7 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 3785.43 1 +A1ZAU4 RH39096p 52.14 16 49 0 1131027.14404 46 +A1ZB23 IP19117p 16.06 4 7 4 50356.447 5 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 3387.6733 1 +A1ZB68 FI01423p 45.91 11 28 11 325844.8785 25 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 306332.0227 21 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 42782.6547 6 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 305354.3834 16 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 7034.4938999999995 2 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 20426.096999999998 2 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 565794.33605 37 +A1ZBA5 FI07234p 7.22 2 2 2 24484.835 2 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 7695.15695 4 +A1ZBD8 Mucin-5AC 2.99 4 4 4 10789.480370000001 3 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 3318.20756 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 370645.37137999997 37 +A1ZBK7 Crammer 31.65 3 11 3 41942.471639999996 9 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 8488.414 1 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 249523.39594999998 11 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 205559.9045 11 +A1ZBU5 GNBP-like 3 28.29 3 10 3 60560.7185 7 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 5610.244 1 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 568876.06165 41 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 6766.4575 1 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 180949.39955 28 +A1ZBX6 lysozyme 9.5 2 2 2 2083.1355 2 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 2752.8652 1 +A2VEG3 IP16294p 1.06 1 1 0 380.29346 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 2120.9888 1 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 50603.091029999996 8 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 692095.52972 31 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 30595.30115 4 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 126905.49748 13 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 1338482.18813 66 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 2013713.36476 90 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 3990.0952 1 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 1205640.0373999998 34 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 115003.2329 11 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 36764.974 2 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 332415.8878 12 +A8DYD1 Combgap, isoform L 10.75 8 11 0 53951.5903 8 +A8DYI6 Prohibitin 65.98 22 79 1 1666132.31158 70 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 141444.4635 16 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 77312.55447999999 8 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 345.44412 1 +A8DZ06 Stolid, isoform J 12.46 14 21 0 180324.90597 16 +A8DZ14 FI17828p1 18.02 9 24 4 363627.63556 20 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 24970.8134 4 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 164502.06066 30 +A8E6W0 IP19808p 19.7 4 5 4 51233.5372 5 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 24383.11671 6 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 10869.928 1 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 24299.918100000003 3 +A8JNP2 arginine kinase 73.07 36 447 2 873141.6749 16 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 5112.49694 5 +A8JNS4 Starvin, isoform E 7.4 4 5 0 29135.688049999997 5 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 7811.5019 2 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 92542.713 3 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 17128.6504 5 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 18506.45003 4 +A8JQW3 Pinin, isoform B 18.24 5 5 0 26024.19094 5 +A8JR01 Kramer, isoform I 1.49 2 2 0 308.56738 1 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 58006.941 2 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 80514.04397 12 +A8JR58 Hadley, isoform B 7.64 2 2 1 1382.96283 2 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 1793341.40787 65 +A8JRH3 FI20012p1 66.73 28 71 1 911266.2397 64 +A8JTM7 Megalin, isoform A 2.81 14 18 14 122265.14596 15 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 29203.7189 6 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 7372.5797 3 +A8JUZ6 MIP03678p 16.77 5 7 0 23617.29128 4 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 525.71826 1 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 244827.20086 26 +A8WH76 GEO10024p1 48.15 4 13 4 235734.1874 10 +A8Y4V5 FI20903p1 5.22 1 1 1 1758.5907 1 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 8200.693 1 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 2156070.2624 12 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 5857.685 1 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 23138.2776 3 +B7YZH1 FI20143p1 7.21 4 4 0 7905.4395 3 +B7YZN0 Syndecan 12.55 6 8 0 75022.30189999999 7 +B7YZN4 GH02741p3 49.23 4 4 4 20996.579700000002 4 +B7YZN8 GH02741p1 10.53 1 1 1 21553.176 1 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 33150.35965 5 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 2218951.76436 78 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 5111.26834 2 +B7YZV2 Phosphodiesterase 6.39 6 8 0 48883.93913 8 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 267087.64024 25 +B7Z001 Fatty acid synthase 20.0 44 74 0 350186.19096 66 +B7Z005 Drongo, isoform I 6.42 3 3 0 9416.744200000001 3 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 465.3101 1 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 3444.3733 1 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 11147.5523 2 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 29151.4235 3 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 36822.01544 8 +B7Z0C9 GH15104p1 34.74 4 7 4 28715.6222 5 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 5611158.50941 137 +B7Z0M0 FI17308p1 22.13 2 2 1 9843.277 1 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 1775.05079 2 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 113241.43160000001 10 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 130419.643 14 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 9249.1507 2 +B7Z107 GH09380p1 29.35 3 5 3 14189.71227 3 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 1727.974 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 18418.799899999998 3 +C0HDP4 MIP05618p 11.31 4 4 0 13155.786 4 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 916547.63752 34 +C7LAG1 CoRest, isoform G 2.31 2 2 1 7778.6957 2 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 683459.78473 51 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 301776.97663 27 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 95756.7083 8 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 35988.3928 3 +D0Z756 MIP14966p 36.55 15 61 0 1338785.69597 57 +D1YSG0 Bent, isoform F 4.99 39 42 0 171496.81988 40 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 132446.2621 7 +D3DMM0 MIP15702p 29.31 12 28 0 452301.7847 28 +D3DMM4 MIP15217p 28.27 22 50 0 543576.11904 44 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 57467.942800000004 5 +D5SHT6 MIP21537p 8.03 3 3 0 43878.1839 3 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 11487.9778 3 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 56583.258440000005 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 120555.12636 21 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 136684.40933 15 +E1JGR3 GEO02620p1 24.62 3 3 3 1556.2186000000002 2 +E1JGY6 Hulk, isoform F 11.14 17 21 0 139349.01633 21 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 73497.09924 12 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 6599.831 1 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 2308.9663 1 +E1JH90 Patronin, isoform F 0.78 1 1 0 638.6597 1 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 531265.71428 48 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 14630.94038 5 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 41826.93348 8 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 16133.103500000001 3 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 25669.031 3 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 90156.46119999999 9 +E1JHP9 Galectin 6.21 3 3 0 11613.809799999999 3 +E1JHT6 Reticulon-like protein 38.71 18 38 0 715285.286 35 +E1JI40 Vermiform, isoform I 11.89 7 9 0 132146.0952 7 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 21371.697 4 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 26788.775999999998 2 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 10682.306 1 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 17130.3213 2 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 3371.0648499999998 2 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 2565.6445 1 +E1JIY8 L antigen family member 3 20.72 3 3 3 33407.811499999996 3 +E1JJ33 Complexin, isoform U 66.43 10 72 2 856366.04796 68 +E1JJA4 Dynamin 35.22 31 59 0 381973.36865 54 +E1JJE4 protein-tyrosine-phosphatase 1.86 3 3 0 366.40753 1 +E1JJG5 Phospholipase A2 2.93 1 1 1 2543.8716 1 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 1014373.07142 65 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 13739.012900000002 5 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 51314.2865 9 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 7271.8751 2 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 440781.04319 40 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 10395.2833 2 +E2QD54 Natalisin, isoform D 5.61 3 3 0 14713.2184 3 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 79794.7778 17 +E2QD98 Protein PALS1 5.59 10 13 0 141693.7871 11 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 33848.3918 6 +E8NH67 Asperous, isoform B 59.09 20 77 0 722919.36597 63 +F0JAP7 LP18071p 13.97 4 5 0 22941.7695 5 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 22706.105600000003 6 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 1636348.47342 100 +H1UUB1 GEO12465p1 48.84 5 11 1 277362.95928 9 +H8F4T3 Regucalcin 45.75 9 15 0 313485.6415 15 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 39921.5228 5 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 39993.0403 6 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 614338.68755 35 +L0MPN7 Asator, isoform H 7.38 8 8 0 56522.148 6 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 22544.0291 9 +M9MRX0 Limpet, isoform J 27.3 27 63 0 1210328.66046 52 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 327301.96018 42 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 43485.11954 8 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 46036.9232 8 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 24112.80266 5 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 219132.08314 17 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 368584.3515 13 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 567392.21894 35 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 6208.4507 1 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 1564.6216 1 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 49498.84246 7 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 72621.5773 10 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 52081.91746 10 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 94646.55186 15 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 85221.0376 14 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 66874.666 9 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 3441227.06622 352 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 686.1741 1 +M9NDE0 pantothenate kinase 4.21 2 3 0 10031.6831 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 23794.863 4 +M9NDS9 chitinase 0.67 3 4 0 22530.166400000002 3 +M9NDX8 Neurabin-1 1.98 4 4 0 5841.2927 2 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 19971.04714 8 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 96114.69177 10 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 4440.624 1 +M9NEW0 LD39232p2 58.67 9 12 9 117414.3395 11 +M9NEX3 Cytochrome b5 57.55 6 27 0 286210.04425 21 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 27159.007700000002 4 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 73733.4978 5 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 74290.13087 9 +M9NFC0 Troponin I 47.24 15 56 5 448727.74184000003 14 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 23595.317199999998 4 +M9NFH3 Lasp, isoform D 39.01 10 22 1 32509.175130000003 3 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 154086.2236 17 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 2386.449 1 +M9NH07 Upheld, isoform N 45.43 30 106 0 4497059.91516 94 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 108044.4645 13 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 52848.57267 6 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 380677.14636 33 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 3316.9631 1 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 25720.650960000003 4 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 1653.803 1 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 1296140.7149 115 +M9PBM3 Cysteine protease 8.54 3 5 0 4125.26988 4 +M9PBN2 Apolipoprotein D 20.82 3 10 0 141943.3265 8 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 248654.4461 23 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 1207.56824 2 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 30714.3227 5 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 130833.79007 17 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 333403.85829 19 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 8374.9213 4 +M9PBW9 Rhea, isoform G 6.64 17 18 0 94201.57749 18 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 116663.80813 10 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 8288652.86133 172 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 23211.0096 2 +M9PC74 Reticulocalbin-3 23.01 10 15 0 175785.4908 13 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 2185.68095 2 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 17431.974 2 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 4210.5825 1 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 7651.0352 3 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 36082.01447 7 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 45134.283299999996 10 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 22627.853900000002 3 +M9PCT7 Bunched, isoform O 16.15 3 5 1 2063.7317 1 +M9PCU0 FI21215p1 30.84 38 66 1 8872.195 1 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 72382.6005 7 +M9PD73 TEP1-F 23.71 32 47 0 638169.09773 44 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 369605.2554 18 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 11430.3591 2 +M9PDB2 Varicose, isoform E 7.69 5 5 0 16935.10391 5 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 260985.47474 27 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 4645.8193 1 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 20374.4864 5 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 18282.548 2 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 40702.2284 6 +M9PDU4 Acyl carrier protein 18.23 4 29 2 1651778.5222 27 +M9PDV2 Tetraspanin 12.89 3 3 0 9606.086 2 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 159420.91802 29 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 104744.7551 11 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 3755676.7753399997 58 +M9PE32 Fife, isoform D 12.56 14 19 0 69090.56815 15 +M9PE35 RabX6, isoform B 8.11 2 2 0 4739.6324 2 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 708.7417 1 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 4593.515 1 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 9249.20466 3 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 7310.91816 2 +M9PEC1 IST1 homolog 21.0 7 10 0 71207.86864 9 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 85723.12058 10 +M9PEG1 Uncharacterized protein 27.38 16 49 16 417698.97202 48 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 1067004.20674 181 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 38455.9802 6 +M9PEL3 Quemao, isoform C 23.62 7 9 0 46852.574640000006 7 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 41364.2138 3 +M9PET3 Simjang, isoform D 2.38 2 2 0 487.89774 1 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 4888.4307 1 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 2726.4165 1 +M9PF16 Spectrin beta chain 24.44 59 123 3 1110970.70571 104 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 408717.0998 23 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 12444.314699999999 2 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 30136.234600000003 7 +M9PFH7 Tartan, isoform B 2.53 2 3 0 3803.2219000000005 2 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 10489.4859 2 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 5640.1865 2 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 17677.183 2 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 3634.09183 3 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 113662.80859999999 10 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 47497.4739 8 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 35840.7742 4 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 3922073.45891 176 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 34908.63153 5 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 28570.383799999996 4 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 233157.87011000002 10 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 2907.388 1 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 71473.26276 12 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 9779.5532 2 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 167973.40936 20 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 182440.26196 19 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 10164.4384 2 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 40824.981400000004 9 +M9PHX2 Visgun, isoform E 3.82 1 1 1 7156.934 1 +M9PI33 Inositol oxygenase 11.64 2 2 0 17005.405 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 13208.552 3 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 22131.99345 3 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 123371.93160000001 4 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 11702.6047 2 +M9PJQ5 Troponin I 45.65 14 66 0 109722.06008000001 14 +O15971 LD39986p 30.39 7 26 4 61794.63137 7 +O16158 Calcium-binding protein 48.91 7 30 7 1206073.6545 25 +O17452 LD20793p 27.83 6 17 4 286231.4691 15 +O18332 FI01544p 60.98 11 51 9 853029.73174 43 +O18335 Rab11 57.94 14 57 14 1408018.0505000001 56 +O18336 Ras-related protein Rab-14 39.07 8 16 1 132079.52169999998 13 +O18338 LD44762p 23.19 5 23 0 404.52005 1 +O44226 Elongin-B 97.46 10 30 10 638774.1828 25 +O44434 QKR58E-3 24.92 7 8 5 54625.008 5 +O46048 EG:133E12.4 protein 0.47 1 1 0 574.8102 1 +O46052 EG:152A3.3 protein 12.67 4 5 1 10228.84083 4 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 466338.70449 40 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 6430.6724 1 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 81812.07119999999 7 +O61604 Fimbrin 37.34 25 48 3 996649.54028 46 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 13519.69716 6 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 15447.7976 3 +O76521 Importin subunit alpha 5.52 3 5 3 29214.7848 3 +O76752 Sepiapterin reductase 28.74 7 12 7 136657.6185 11 +O76877 EG:132E8.3 protein 20.62 3 4 3 110404.9913 4 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 1108029.56978 25 +O77259 EG:115C2.5 protein 4.0 1 1 0 10578.192 1 +O77425 Ribokinase 3.29 1 1 1 7142.9277 1 +O77430 GEO01111p1 71.6 13 21 12 380849.0605 18 +O77434 EG:34F3.8 protein 39.34 7 15 1 63655.2381 10 +O77477 LD24471p 28.57 10 11 10 62022.0533 9 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 15258.9 2 +O96692 small monomeric GTPase 21.98 4 7 1 42331.53425 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 31614.5948 4 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 3063.47992 2 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 4365.555 2 +O97059 Ccp84Ab 36.2 6 6 0 103171.1094 5 +O97062 Ccp84Ae 75.96 13 31 13 191143.49747 22 +O97064 Ccp84Ag 37.17 5 9 5 31702.5654 5 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 16680.004 1 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 919898.1822 24 +O97111 LD29223p 11.97 4 4 4 18731.6509 4 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 2965.5889 1 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 20507.5411 2 +O97365 BM-40 24.01 7 7 7 106816.6504 6 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 659767.62109 34 +O97428 Ciboulot, isoform A 29.46 4 5 1 30211.95086 4 +O97454 Protein BUD31 homolog 19.44 3 3 3 14821.419 1 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 248635.02226 20 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 771.75757 1 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 3695049.10147 60 +P92181 Cuticle protein DCP2 37.61 4 8 4 43155.038870000004 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 11403.3217 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 1737734.3464 44 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 117710.2091 8 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 27097.3399 3 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 704269.72085 80 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 2744.844 1 +Q0E8P5 FI05614p 19.04 11 19 11 37582.28217 14 +Q0E8S7 Homer, isoform E 30.13 14 34 1 738525.4854 30 +Q0E8U4 FI09636p 20.0 6 7 6 57359.0527 7 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 229300.7781 17 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 27112.267200000002 3 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 942015.9389 41 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 545544.0156 18 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 198876.84821 20 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 1397.67492 2 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 392962.00239 49 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 237924.95648 18 +Q0E9G4 CG1600-PA 3.41 1 3 0 38891.3732 3 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 117660.51326 15 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 1009.00397 1 +Q0KHR7 Septin 15.46 9 14 0 205734.57630000002 13 +Q0KHX7 FI18193p1 6.03 7 7 0 40733.6777 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 2511103.39777 104 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 30076.896 4 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 64888.0551 13 +Q0KI39 FI16806p1 18.15 3 6 1 10030.68113 4 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 232733.4328 17 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 29653.8842 9 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 43166.4626 4 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 7053.9209 2 +Q1RL12 IP16413p 54.97 15 74 2 55829.6431 3 +Q24090 GH08712p 7.57 3 3 3 25526.246 3 +Q24253 AP complex subunit beta 20.2 15 23 15 434977.427 21 +Q26459 EN protein binding protein 18.26 9 16 0 94335.89525 13 +Q29QY7 IP15859p 9.86 1 1 0 47106.266 1 +Q2MGK7 GEO13330p1 20.47 3 5 3 46269.476500000004 5 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 6113.8433 1 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 16110.489000000001 2 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 3490317.9624 103 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 18739.718999999997 4 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 166613.51914 9 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 13418.643100000001 3 +Q4QQ49 IP09595p 2.7 1 1 1 12393.1455 1 +Q4QQ70 IP09819p 18.42 6 7 6 30436.6386 5 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 10954.0687 3 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 7386.577 2 +Q4V619 IP07950p 6.9 2 3 0 15663.0906 3 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 116486.43190000001 5 +Q500Y7 GEO11443p1 87.72 4 40 4 322367.12605 33 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 23344.27106 3 +Q5BIA9 RE10908p 2.48 1 1 1 1542.5593 1 +Q5LJT3 MIP01391p 10.93 2 5 2 36495.8726 4 +Q5U124 alpha-glucosidase 17.62 10 18 0 163366.8582 17 +Q5U126 GEO11286p1 59.42 7 37 7 1700337.78 36 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 112435.04377 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 11651.62773 5 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 343522.1741 28 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 6413.5935 2 +Q6IGN6 HDC05827 42.05 4 5 4 83729.4946 4 +Q6IGW6 GEO13367p1 44.23 2 4 2 29237.5008 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 680514.9887 14 +Q6IIF2 GEO11103p1 7.14 1 1 1 5288.222 1 +Q6IL43 GEO11093p1 13.25 1 2 1 37922.811 2 +Q6NL44 GH28815p 20.08 8 10 8 42737.3128 9 +Q6NLJ9 AT19138p 38.64 2 2 2 14732.375 2 +Q6NMY2 RH54371p 21.43 5 27 5 826847.5392 22 +Q6NNV2 RE44043p 5.81 2 2 0 76283.107 2 +Q6NNV7 RH03309p 36.84 7 23 1 350809.50593 19 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 22885.924 2 +Q6NP72 GEO09659p1 33.33 4 16 4 401358.3421 15 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 16019.141 2 +Q76NR6 Regucalcin 83.07 23 133 0 3366555.65441 112 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 92140.5955 12 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 113566.33497 13 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 746209.7545 25 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 5478.95713 2 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 247055.35315 18 +Q7JQX9 FI14001p1 4.33 4 4 0 9790.032 2 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 2341721.98826 94 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 146543.79243 7 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 8434.6662 2 +Q7JRF1 RE48509p 6.5 2 3 1 5893.23456 3 +Q7JRH5 RE28271p 1.31 1 1 1 5698.0977 1 +Q7JRL9 GH25289p 67.12 10 52 1 1253690.63289 46 +Q7JRN6 GH06388p 6.73 2 2 2 7933.1127 2 +Q7JS69 FI04632p 35.69 10 68 1 471556.87 8 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 7381.845499999999 3 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 863334.344 24 +Q7JV09 GH28348p 4.84 5 5 2 8408.40958 4 +Q7JV69 SD11922p 11.76 4 9 4 55494.54859 8 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 5429.81794 3 +Q7JVH6 LD24696p 47.27 12 27 11 198038.71180000002 15 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 48049.574 8 +Q7JVK6 Translin 24.26 6 8 6 84821.8387 8 +Q7JVK8 GEO08987p1 53.42 7 13 7 397938.2486 13 +Q7JVM1 GH25962p 22.64 5 6 5 30462.2143 4 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 69417.5064 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 58272.0945 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 32116.941 4 +Q7JW48 RE12410p 5.57 2 2 2 896.3216 1 +Q7JWD6 Elongin-C 46.15 5 17 5 694880.4634 17 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 744106.0539 28 +Q7JWH5 RING-box protein 2 27.43 2 3 2 33634.7667 3 +Q7JWQ7 RE01730p 5.34 2 3 2 4331.69887 2 +Q7JWU9 AT07420p 19.68 5 5 5 14518.7937 3 +Q7JWX3 GH10112p 22.48 7 11 7 104789.8356 10 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 60358.6972 5 +Q7JX94 Phospholipase A2 15.61 3 3 3 4221.50207 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 66298.6069 7 +Q7JXB9 Endonuclease 10.65 3 3 3 28235.4432 3 +Q7JXC4 CG6459 protein 33.46 6 38 6 1022198.6782 37 +Q7JXW8 Off-track2 4.39 2 2 2 6568.147849999999 2 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 79400.9823 8 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 325732.8067 8 +Q7JYW9 Phosphotransferase 19.38 9 13 9 115733.72297 12 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 24530.537800000002 5 +Q7JYZ0 lysozyme 39.13 4 9 4 113258.62362 9 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 129943.55234 15 +Q7JZB1 RE49860p 2.09 1 1 1 988.14545 1 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 548985.5948 26 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 539.4561 1 +Q7JZE1 Peroxin 11 6.22 2 2 2 18783.4507 2 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 56294.423 3 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 1351993.26497 33 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 63470.19183 10 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 350953.01565 23 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 756399.827 17 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 17670.13654 5 +Q7K076 GEO08269p1 22.14 2 2 0 7953.7446 1 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 6371564.12751 130 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 13427.281 1 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 518079.97793 35 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 32087.98825 4 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 27511.5992 3 +Q7K0S1 LD39211p 1.83 1 1 1 845.04517 1 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 144279.66048 19 +Q7K0S6 LD36817p 19.03 8 9 8 74968.51096 9 +Q7K0W4 LD27203p 46.95 14 45 14 943554.17775 42 +Q7K0X9 LD23667p 23.4 5 12 5 48346.79 11 +Q7K127 Alpha-galactosidase 15.83 7 17 7 115002.09499 14 +Q7K148 Proteasome subunit beta 22.34 6 8 6 74187.98074 7 +Q7K159 LD06557p 22.47 5 6 5 29505.0844 6 +Q7K180 LD02709p 22.5 11 14 11 53493.3173 12 +Q7K188 GEO05126p1 30.97 6 40 6 1302927.8415 36 +Q7K1C0 GH23780p 50.5 6 11 1 71163.4221 9 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 51786.3316 5 +Q7K1C5 GH21176p 9.19 6 7 6 118188.6915 6 +Q7K1H0 GH09096p 20.06 7 8 6 34415.62645 7 +Q7K1M4 SD04017p 16.99 5 12 5 78161.5303 12 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 103996.9415 5 +Q7K1W5 LD35843p 30.05 12 20 12 356194.4002 20 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 11815.14 2 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 396961.76948 26 +Q7K2E1 LD05247p 18.9 10 15 10 138451.66580000002 11 +Q7K2L7 GH27120p 28.14 4 11 4 301649.5119 11 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 13493.9759 3 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 8838.2388 2 +Q7K2P3 GH20817p 58.7 13 31 1 280555.93471 23 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 53375.221699999995 6 +Q7K2W6 tyrosinase 22.32 13 21 13 31505.58897 13 +Q7K332 GH17623p 23.43 6 10 5 141926.7331 7 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 149516.8176 12 +Q7K3E2 LD34147p 59.21 30 59 30 642196.1414 53 +Q7K3H0 LD28067p 1.44 3 3 0 20107.7852 3 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 726096.454 35 +Q7K3N4 GH26015p 14.95 6 7 6 70000.17842 7 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 52535.9773 6 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 106612.6317 11 +Q7K3W4 GH08941p 25.85 8 20 8 337272.96904 17 +Q7K3Z3 GH01724p 51.6 16 44 16 388464.39051 33 +Q7K485 Cathepsin D 35.71 9 36 9 700801.31625 29 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 31823.2507 4 +Q7K4J7 LD36653p 7.38 2 2 2 4559.419980000001 2 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 826.9123 1 +Q7K4T8 LD23856p 6.55 3 4 3 9459.998 2 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 13707.4023 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 46476.746100000004 9 +Q7K519 GH16429p 17.66 5 8 5 28681.782 6 +Q7K533 GH14572p 6.14 2 2 2 18679.81 1 +Q7K549 GH13040p 18.08 8 8 8 34431.9469 8 +Q7K561 GH11294p 6.82 2 2 2 456.54526 1 +Q7K568 GH10642p 8.33 3 3 3 19850.476 3 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 924395.26335 46 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 153602.2245 11 +Q7K5M6 GH04176p 20.95 6 11 6 70768.0279 10 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 236121.04135 22 +Q7K860 FI07231p 39.22 7 12 7 696095.639 11 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 177628.19374000002 12 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 535.7115 1 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 24497.41615 4 +Q7KK90 GH14654p 55.8 9 28 9 778138.8677 23 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 215137.2079 17 +Q7KLE5 Amphiphysin 49.67 26 71 3 1098890.58589 60 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 53818.934279999994 10 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 290661.95374 11 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 105686.0205 7 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 20214.8814 3 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 259975.2072 21 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 681832.61234 53 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 31160.91506 5 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 436958.9458 34 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 1942815.8947 98 +Q7KND8 FI09619p 3.7 3 3 3 31604.0934 3 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 327452.35699999996 13 +Q7KRT4 GH07253p 4.94 2 2 0 4141.1752 2 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 15311.87048 4 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 18421.49742 6 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 131529.87945 10 +Q7KSE4 GH05443p 2.78 2 2 2 8339.8797 2 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 403927.50330000004 15 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 1001936.4713000001 23 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 16369.3696 2 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 4634.0587 2 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 250975.86116 20 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 545392.38469 41 +Q7KT58 GH08155p 3.52 2 3 2 14583.5857 3 +Q7KT70 FI18641p1 2.93 3 3 3 12618.82676 3 +Q7KTA1 HL01444p 17.1 7 10 7 95150.4479 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 188482.45316 24 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 1898817.99867 62 +Q7KTN9 FI01009p 3.11 2 2 0 5514.124400000001 2 +Q7KTP7 LP22840p 31.49 5 7 5 94801.26306 7 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 1019584.11061 55 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 223449.2677 16 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 250899.0067 23 +Q7KUD4 phospholipase A2 2.93 3 3 0 1579.8759 1 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 695648.19995 14 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 27613.978900000002 3 +Q7KUT5 Protein MIX23 26.89 4 6 0 31084.6983 5 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 47276.3467 6 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 17167.6065 3 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 164036.35685 16 +Q7KV27 alanine transaminase 51.76 27 130 0 4336988.09544 119 +Q7KV34 Pinkman 38.9 26 40 26 759199.16956 39 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 11160.068200000002 2 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 4029.8108 1 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 39898.61316 14 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 11229.106 1 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 3620389.2613 82 +Q7KY04 small monomeric GTPase 21.13 4 7 3 6503.6412 2 +Q7PL91 GEO11417p1 19.15 3 8 3 202085.68303 7 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 5487.921 2 +Q7PLI0 P120 catenin 15.62 12 15 12 115485.90926 13 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 204630.92134 14 +Q7PLS1 LD01937p 15.76 6 8 0 58166.4594 8 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 60374.56055 6 +Q7YU88 SD08871p 2.84 3 3 0 1654.55204 2 +Q86B44 Glutathione synthetase 13.17 8 13 0 102014.8506 10 +Q86B74 WASp, isoform C 12.55 5 5 0 23938.3536 5 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 35247.6439 4 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 6500.429 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 153868.4276 21 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 65279.68036 9 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 173037.6194 16 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 304200.08259999997 13 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 607170.63725 15 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 286904.53506 23 +Q86BS3 Chromator, isoform A 28.19 21 40 21 264212.13265 31 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 14161.3924 5 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 272634.4203 20 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 11025.469239999999 3 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 56079.591 4 +Q8I0D4 RE20510p 28.36 21 42 0 496878.64867 39 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 20797.1645 3 +Q8I0P9 acid phosphatase 1.76 1 1 0 29368.115 1 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 313006.84186 18 +Q8I930 GH14147p 2.22 1 1 0 7136.626 1 +Q8I941 GH16843p 35.59 10 23 10 248959.6193 23 +Q8IGY1 RE08101p 30.52 35 241 0 7635008.88334 116 +Q8IH23 GEO02102p1 20.74 4 12 4 271220.20454 11 +Q8IM93 FI18814p1 37.97 17 28 17 204661.52564 25 +Q8IMF4 RE24176p 5.23 3 5 0 17962.9392 5 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 331223.8675 24 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 25310.97987 4 +Q8IMQ8 RH29536p 42.94 12 32 0 693299.2585400001 30 +Q8IMT3 IP12392p 6.19 3 3 2 17824.7478 3 +Q8IMT6 FI01822p 8.29 4 5 4 21744.2072 4 +Q8IMU2 RE10237p 6.53 2 2 0 30530.243000000002 2 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 6582.8734 2 +Q8IMX4 FI04408p 6.6 2 4 0 9279.756 3 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 47278.713 5 +Q8IN49 MIP05539p 9.17 8 10 8 56000.5718 9 +Q8IN51 FI17609p1 37.59 7 17 7 69694.3552 15 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 55339.015400000004 3 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 9614.315200000001 2 +Q8INH5 Aminopeptidase 7.53 7 8 0 26016.70042 8 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 33344.8664 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 3696.6016 1 +Q8IP52 RE16941p 2.66 3 3 3 5867.4367 3 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 66165.5555 8 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 215069.54037 23 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 31672.627 1 +Q8IP97 Peroxin-19 52.05 11 27 11 231277.03858 23 +Q8IPA5 RE15581p 5.36 1 2 0 11396.772 2 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 69018.4857 2 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 72023.8199 9 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 1458711.92225 69 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 29457.9075 4 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 11543.7107 3 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 325032.6443 17 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 7005.4297 1 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 68946.87520000001 6 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 8568.5952 2 +Q8IPT9 SD05439p1 43.49 11 21 0 255222.40586 14 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 504046.7523 31 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 19333.0655 7 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 8422.45155 2 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 6446.9616000000005 2 +Q8IQB7 MIP21654p 9.44 3 4 3 25684.999300000003 3 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 10842.432499999999 4 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 27533.1683 3 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 19077.004 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 55896.5121 6 +Q8IQH0 FI12817p 5.37 8 8 1 24803.1406 7 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 46573.8018 6 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 928.98596 1 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 58905.51876 19 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 30486.474 2 +Q8IQW5 RE23625p 73.96 13 69 3 1540508.9081299999 51 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 20135.929650000002 4 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 2235.9860400000002 2 +Q8IR76 FAD synthase 17.35 5 5 0 18174.9605 4 +Q8IRD0 RH17559p 40.82 2 7 2 63488.4444 6 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 2448146.36081 60 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 106222.92792 17 +Q8IRI5 Trio, isoform D 10.7 8 10 0 62015.340899999996 10 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 3447896.98399 132 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 8101.3079 2 +Q8MLP9 GEO08457p1 33.93 4 5 4 20888.4904 4 +Q8MLQ0 FI14118p 21.05 2 4 2 62344.159600000006 3 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 176999.3249 14 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 105786.05950999999 12 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 209159.28798 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 1356758.47985 71 +Q8MQP2 MIP16184p 7.0 2 2 0 15047.23 2 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 4918.32626 2 +Q8MRM0 GH16740p 35.44 8 18 8 247313.47923 17 +Q8MRT7 SD26038p 9.2 2 2 2 11520.7241 2 +Q8MRW1 SD19278p 5.83 1 1 1 2815.7185 1 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 6680.8023 3 +Q8MSI2 GH15296p 82.01 19 124 19 5960513.87512 106 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 11754.1883 3 +Q8MST5 Tubulin beta chain 45.08 17 105 0 274643.5412 28 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 1476357.34579 61 +Q8MZ07 GEO07581p1 17.81 3 5 3 54911.5753 5 +Q8MZI3 RNA helicase 18.34 13 16 3 105870.036 11 +Q8SWS2 RE29468p 60.95 6 30 0 337944.72784 24 +Q8SWS3 RE26528p 20.44 2 4 2 20164.364299999997 4 +Q8SWZ6 RH51312p 8.33 2 2 2 15268.08984 2 +Q8SX06 GEO08318p1 16.67 2 3 2 22215.6664 3 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 12819.0523 3 +Q8SX35 GEO07743p1 26.53 3 4 0 22140.1567 4 +Q8SX50 RE04530p 17.3 6 7 0 35303.574440000004 6 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 27651.526 3 +Q8SX57 LD44221p 47.08 8 17 8 116842.68110999999 13 +Q8SX78 LD05679p 17.93 7 7 7 26867.3618 7 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 19879.2696 4 +Q8SXC2 FI04487p 9.11 5 5 5 18590.1898 5 +Q8SXD5 GH02216p 55.13 11 33 2 540136.7336 30 +Q8SXE1 RH69521p 2.6 1 2 1 1962.649 2 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 55111.926 4 +Q8SXF2 RH40246p 7.01 3 4 3 25707.0716 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 7496.9537 2 +Q8SXK0 RE18748p 2.91 1 1 1 5466.7144 1 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 156481.65919 21 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 3244.8176 1 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 244871.6873 17 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 4117.18646 3 +Q8SXS0 RE40914p 12.25 5 5 5 9584.9014 3 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 504685.3628 18 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 762.5412 1 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 38759.2 1 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 5538.60115 3 +Q8SY67 lysozyme 14.47 2 3 2 5684.21285 2 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 168601.3301 6 +Q8SYC4 RE68566p 1.72 1 1 1 18818.664 1 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 1091738.99886 50 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 309223.59948 16 +Q8SYH8 RE57644p 18.68 5 10 1 31264.29301 8 +Q8SYJ2 GEO09626p1 67.47 9 59 9 2211063.09717 55 +Q8SYN0 RE52086p 9.3 4 5 4 14233.2906 4 +Q8SYQ4 RE42475p 70.27 11 44 11 894849.3563 39 +Q8SYQ8 RE40412p 19.85 3 3 3 28007.139499999997 3 +Q8SZK5 RH26533p 10.29 3 3 3 6086.652099999999 2 +Q8SZK9 HL04814p 48.48 12 60 12 2083106.7933399999 54 +Q8SZM2 RH04334p 25.19 7 27 7 799502.2115 26 +Q8SZN1 GEO08217p1 51.61 7 29 3 289222.10747 28 +Q8T0I9 GH27479p 16.47 7 12 1 121172.83816 10 +Q8T0J5 GH26851p 41.11 12 33 0 700902.0846000001 30 +Q8T0N5 GH17516p 19.21 6 9 6 157454.8104 8 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 62809.5228 9 +Q8T0V2 GH02495p 19.91 8 13 0 94884.9794 10 +Q8T389 Endophilin B 40.74 15 54 0 3000.8352 1 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 9740.91645 3 +Q8T3W8 Venom allergen-1 9.54 3 3 0 19296.0946 3 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 2322.5083 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 456503.01780000003 32 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 1044168.17189 57 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 13959.0582 3 +Q94513 Boundary element associated factor 18.79 5 10 1 71688.7202 9 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 29136.9752 6 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 5845.625 1 +Q95NU8 GH16255p 13.57 8 12 8 85045.12333 11 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 1861.9734 1 +Q95PE4 GEO07784p1 6.17 1 1 1 9556.343 1 +Q95R34 GH16463p 9.71 3 3 3 20386.1384 3 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 43525.1593 3 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 33302.5804 5 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 7765027.77671 124 +Q95RC5 LD44506p 5.31 3 3 3 12033.0772 3 +Q95RE4 LD37574p 41.48 11 18 0 25742.32411 11 +Q95RF6 LD34461p 34.5 4 13 4 108284.41464 11 +Q95RI2 LD28549p 27.78 8 12 8 67581.0815 10 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 19617.166400000002 4 +Q95RQ1 LD16414p 3.32 2 2 2 4283.6255 1 +Q95RR6 LD15002p 64.6 17 61 0 61326.905 2 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 69513.3991 7 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 228263.213 2 +Q95RY2 LD01461p 48.09 10 18 2 241831.95954 12 +Q95SH0 GH26463p 1.52 2 2 2 6855.747 1 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 177816.30775 11 +Q95SH7 GH26007p 8.57 2 3 2 14262.9195 3 +Q95SI7 GH23390p 65.87 15 59 15 951902.44178 51 +Q95SN8 GH12395p 21.83 5 8 5 89837.34494 8 +Q95TK5 LD44914p 22.77 9 11 8 57973.837 11 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 407064.94412 31 +Q95TP0 LD34582p 3.1 1 1 1 4877.162 1 +Q95TZ7 GH19182p 78.36 26 115 0 1641830.93852 81 +Q95U15 GH14252p 75.64 27 227 0 1655557.9284599999 31 +Q95U34 GH11113p 22.45 11 21 11 293459.62645 18 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 81272.8186 8 +Q960D4 SD06560p 25.8 16 21 1 164030.9614 19 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 3374592.03653 78 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 145950.8199 24 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 53573.544 4 +Q961B9 LD24073p 6.28 3 4 3 25083.059699999998 4 +Q961C8 LD22649p 10.93 4 5 0 6844.54555 4 +Q961E7 phosphorylase kinase 7.16 4 5 1 11793.647860000001 3 +Q961Q8 GH10454p 6.42 3 3 3 19362.108 2 +Q961T9 GH07914p 29.41 6 10 6 132204.6708 10 +Q961X4 Combover, isoform B 11.74 9 14 0 42831.8044 13 +Q966T5 Paxillin, isoform D 28.93 7 18 3 60690.8493 3 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 28621.2667 4 +Q9I7I3 GH12831p 9.56 3 3 3 17176.12585 3 +Q9I7J0 GH21596p 69.23 11 41 11 704546.08844 32 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 4491.9585 1 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 360324.73684 19 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 423700.68435 20 +Q9NCC3 Sorting nexin 9.03 5 7 5 51243.1311 7 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 26205.81125 4 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 90440.4585 6 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 89464.4082 14 +Q9U6P7 FI18813p1 11.39 5 8 5 85008.6028 7 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 915042.90507 55 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 17646.916999999998 4 +Q9V393 Kurtz arrestin 9.57 4 5 4 30176.8216 5 +Q9V396 Carbonic anhydrase 64.44 15 34 15 1088277.6489000001 31 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 38442.712 3 +Q9V3C8 DShc protein 1.71 1 1 1 6568.919 1 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 63508.9051 9 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 32106.196 3 +Q9V3E7 LD24793p 39.85 12 24 12 160459.75161 21 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 593.9838 1 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 203588.9466 12 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 835.75305 1 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 40745.464 2 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 153794.3538 13 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 881439.07164 44 +Q9V3N9 B6 1.79 1 1 1 16242.749 1 +Q9V3P3 LD45860p 35.1 9 21 9 266171.5488 18 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 36740.99685 4 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 3684.8932299999997 2 +Q9V3T8 LD32469p 14.36 3 3 3 15991.1796 3 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 887582.3119 31 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 493874.96222 30 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 1318901.3291800001 47 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 283791.51572 25 +Q9V3W2 GM23292p 61.68 14 52 14 959125.12191 47 +Q9V3W7 LD40489p 47.45 11 20 11 67465.13168 13 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 178598.42836 22 +Q9V3Y4 LD43650p 8.23 2 3 2 3430.3347 1 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 442121.03748 31 +Q9V3Z4 GH11341p 27.89 14 24 14 302800.9318 18 +Q9V3Z9 HL02234p 42.6 15 43 15 1730192.62917 33 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 6167.67743 3 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 476599.2491 29 +Q9V406 Activator protein 4 9.35 6 8 6 63111.5372 6 +Q9V420 FI02878p 19.66 7 10 7 95090.593 8 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 205396.19429 13 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 13906.476200000001 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 468151.6561 21 +Q9V455 Importin subunit alpha 19.84 9 23 9 305957.68291 23 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 477677.19721 38 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 528217.54463 50 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 926317.1391 53 +Q9V4E0 Complex I-49kD 33.97 12 20 11 213248.1974 19 +Q9V4E7 Transporter 3.46 3 4 2 31936.814000000002 3 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 190114.2371 12 +Q9V9Q4 LD43819p 34.18 13 24 13 354208.51477 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 68094.8676 5 +Q9V9T5 GM14617p 2.44 2 2 0 4890.853 2 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 12458.768100000001 2 +Q9V9U0 RE35358p 10.11 2 3 2 22080.4354 3 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 116742.2432 9 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 2597.8088 1 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 163829.31246 15 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 787737.3373 25 +Q9V9W4 GH08048p 1.69 1 1 1 1836.078 1 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 24553.213 5 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 29916.71431 8 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 1073337.35623 56 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 41276.7173 7 +Q9VA34 LP06141p 2.47 3 4 3 8879.02267 4 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 102409.60220000001 14 +Q9VA41 GEO08227p1 52.87 7 17 3 76327.2328 8 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 439223.48772 21 +Q9VA56 GH23271p 54.34 20 59 1 2630.75 1 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 24439.00965 4 +Q9VA71 FI19924p1 7.86 3 3 3 716.7117 1 +Q9VA76 IP18706p 16.71 5 7 5 20519.588499999998 6 +Q9VA81 GEO10172p1 13.57 2 3 2 21314.8052 3 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 7361.8001699999995 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 192842.4127 12 +Q9VAA6 GEO12235p1 19.62 3 4 3 27472.5319 4 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 47206.70795 10 +Q9VAC1 GM14349p 62.05 20 122 20 3759975.90047 101 +Q9VAC4 GEO09167p1 55.77 8 20 8 445691.99555 20 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 17457.04483 5 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 6873.9753 2 +Q9VAD7 RH37294p 5.2 1 1 1 877.3548 1 +Q9VAG3 trypsin 24.11 5 8 5 88935.12425 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 114655.75518000001 15 +Q9VAI9 GEO07291p1 62.25 9 53 5 2099236.10238 48 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 117340.6824 8 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 4541.8619 2 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 632582.50276 48 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 3789642.57246 96 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 30971.682399999998 4 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 4110.365400000001 2 +Q9VAU6 LD27564p 2.99 2 2 2 5503.8127 2 +Q9VAV2 FI21480p1 13.07 11 15 11 121794.2901 15 +Q9VAY0 Neprilysin 7 3.91 3 3 3 12136.095299999999 3 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 818101.43542 67 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 18322.544 2 +Q9VAY9 GH07821p 8.65 3 3 3 8089.9024 3 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 518102.5823 33 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 863040.2762 41 +Q9VB17 IP11341p 10.74 3 3 3 24357.2291 3 +Q9VB22 LD33695p 18.39 9 13 9 38362.623830000004 11 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 138742.2909 16 +Q9VB51 GEO08385p1 13.33 1 1 1 2040.4608 1 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 272381.89917 14 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 15814.117 2 +Q9VB69 Malic enzyme 29.5 16 20 2 68814.04418 15 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 23072.7244 3 +Q9VB77 IP09938p 7.01 2 5 2 20581.7353 4 +Q9VB79 IP09473p 17.65 6 14 6 131731.3484 13 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 807688.3837 37 +Q9VB86 LP07342p 16.78 3 6 3 13971.5485 5 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 347022.4214 21 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 1059.23 2 +Q9VBC9 Beaten path VII 7.74 3 3 3 13285.8036 2 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 1556590.5801 75 +Q9VBI3 RH72336p 22.66 7 16 7 169794.133 14 +Q9VBL3 GH01188p 5.83 3 3 3 15378.346300000001 3 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 39956.8247 2 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 3233.1067 1 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 2910827.81404 86 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 28901.392 3 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 598769.1813 25 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 46532.9677 7 +Q9VBT2 IP11926p 4.33 2 2 2 8797.8641 2 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 8484.4807 2 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 1310450.514 11 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 46412.390400000004 4 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 10457.66 1 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 1038073.7978 44 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 10804.540939999999 4 +Q9VC06 LD37516p 15.62 11 15 11 53225.53039 13 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 11182.668 1 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 215529.53295 26 +Q9VC30 RE05274p 18.28 3 6 3 12877.23925 4 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 160205.07547 8 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 306631.1459 16 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 108183.6484 11 +Q9VC58 Syntaxin-18 4.05 2 2 2 10628.0688 2 +Q9VC66 AT25567p 19.46 8 9 8 105286.1966 9 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 28233.4118 6 +Q9VC87 RE57978p 2.84 1 1 1 6594.417 1 +Q9VCB9 FI08802p 15.16 4 4 4 58845.2414 4 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 3043.2372 2 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 274937.90436 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 62086.62844 5 +Q9VCF8 LD23561p 22.64 7 9 7 87336.00222 9 +Q9VCI4 LD32918p 1.13 1 2 1 2439.7502 1 +Q9VCI7 LD02979p 17.15 6 9 1 50636.5583 7 +Q9VCK6 LD34157p 18.02 7 8 7 64052.597 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 16279.583200000001 4 +Q9VCR4 FI17836p1 5.18 4 6 4 17144.4698 4 +Q9VCR9 RH48101p 43.21 13 26 13 343653.12334 23 +Q9VCT4 Klingon 4.4 2 2 2 14007.2107 2 +Q9VCU0 GEO02312p1 14.17 2 7 2 91367.156 7 +Q9VCU1 FI07649p 1.31 1 1 1 1533.8905 1 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 17104.811 2 +Q9VCW2 Cardinal 4.82 4 4 4 32181.09746 4 +Q9VCW6 GCS light chain 33.33 11 27 11 546879.8497 25 +Q9VCZ2 FI07970p 2.48 1 1 1 6594.5776 1 +Q9VD00 FI07666p 34.53 8 15 8 200526.4321 12 +Q9VD01 LP12095p 4.55 1 1 1 15499.696 1 +Q9VD02 GH14779p 30.73 4 11 4 133277.1886 11 +Q9VD13 GH02671p 10.79 6 7 0 21841.116159999998 7 +Q9VD14 GH07286p 9.57 6 9 6 118534.01329999999 9 +Q9VD29 small monomeric GTPase 49.74 9 33 9 632272.99309 30 +Q9VD30 GH05294p 70.16 12 36 12 675028.01031 31 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 13399.8952 3 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 2458225.98117 89 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 20861.324699999997 3 +Q9VD68 GH19849p 6.84 3 3 3 15093.960769999998 3 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 36064.874 2 +Q9VDC0 GH01837p 24.0 5 14 5 129147.42923000001 14 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 4784.1533 1 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 17629.623 1 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 278670.8501 15 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 554376.39384 11 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 188258.4238 17 +Q9VDH3 GH08630p 55.7 12 33 12 654364.91747 29 +Q9VDI1 LD46328p 48.58 21 60 0 579777.51821 52 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 22438.225730000002 5 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 105336.13319 10 +Q9VDK2 GH15831p 1.18 1 1 0 3997.604 1 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 107247.68513 19 +Q9VDK9 GH12359p 4.71 3 3 3 9094.877199999999 2 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 31141.5441 4 +Q9VDL5 GEO09602p1 13.43 1 1 1 7491.375 1 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 245282.27456 14 +Q9VDQ3 Identity crisis 6.14 3 3 3 9773.6845 3 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 437751.2594 22 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 3830.2424 1 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 333113.0086 17 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 374.21848 1 +Q9VDU7 nicotinamidase 21.57 7 17 7 154519.98895 16 +Q9VDV2 AT06125p 6.34 3 3 2 22649.858 2 +Q9VDY8 MIP08680p 65.44 17 56 1 1084746.50185 47 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 914912.70506 47 +Q9VE08 GH10002p 10.8 2 2 2 34583.1334 2 +Q9VE12 LD27322p 8.02 3 3 3 21071.327100000002 3 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 51280.975399999996 5 +Q9VE31 GEO12059p1 9.91 1 1 1 367.9774 1 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 40650.004499999995 6 +Q9VE56 FI17806p1 11.22 3 3 3 94468.298 3 +Q9VE57 GEO10850p1 5.52 1 2 1 14653.511999999999 2 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 23435.569 3 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 28968.3527 6 +Q9VE94 LD14127p 5.73 2 3 2 11312.6748 2 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 118272.528 8 +Q9VEA7 FI01460p 8.99 1 3 1 84590.77500000001 3 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 14039882.865050001 248 +Q9VEB7 AT04491p 2.05 1 1 1 20276.71 1 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 63408.711 6 +Q9VEC8 RE23139p1 26.92 4 5 4 52811.7414 4 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 31333.1982 4 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 352.1853 1 +Q9VEG8 RE59232p 13.2 3 5 3 36906.405999999995 5 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 29256.516 1 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 563925.49054 25 +Q9VEJ9 Curly Su 4.52 3 3 3 13396.0008 3 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 27151.973400000003 3 +Q9VEK8 GH07711p 35.28 12 21 12 321213.93075 21 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 72958.57167 13 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 11488.312 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 20478.890199999998 4 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 249737.90665000002 20 +Q9VEP8 GH11385p 13.77 10 12 10 103504.97725 12 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 84206.6836 12 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 32923.14696 5 +Q9VES8 RE28913p 26.26 8 9 8 206526.4751 9 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 13085.401 1 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 133251.2359 18 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 22765.263 3 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 7976.2863 2 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 104117.80906 16 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 12794.0098 3 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 749294.93369 42 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 46936.8048 9 +Q9VF15 GEO09476p1 65.36 10 39 7 581324.1505 34 +Q9VF23 arginine kinase 3.28 2 2 2 30008.639 2 +Q9VF24 Crossveinless d 5.17 8 10 8 49576.587100000004 8 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 152489.72808 10 +Q9VF39 FI01459p 15.0 6 10 6 34033.8636 7 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 82298.1113 11 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 31058.084600000002 5 +Q9VF77 FI16517p1 13.42 5 6 5 40988.917499999996 5 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 30729.04614 3 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 43556.3588 5 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 111070.05774999999 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 19201.9669 4 +Q9VFC7 Mf5 protein 78.08 31 236 0 3313732.98421 144 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 5740679.68784 100 +Q9VFI3 GEO08281p1 45.19 3 10 3 44623.7622 7 +Q9VFM0 GH19262p 7.14 4 5 4 10511.59153 4 +Q9VFN7 GEO07678p1 19.5 3 9 3 120578.20876 9 +Q9VFN9 GEO07882p1 41.94 6 7 6 58357.78574 7 +Q9VFP0 RH07106p 23.51 8 9 8 31714.3077 9 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 413872.67806 20 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 278501.94306 15 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 7851.831 3 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 6360.82184 2 +Q9VFT4 AT27578p 13.48 9 12 9 48063.9116 8 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 19052.8687 3 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 906219.6246 37 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 48187.693400000004 3 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 34821.7727 3 +Q9VG01 RE12073p 1.88 1 1 1 5236.2476 1 +Q9VG04 Protein MEMO1 5.42 2 2 2 22505.3637 2 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 2806.4064500000004 2 +Q9VG23 GH22994p 59.07 11 45 1 1060195.42767 37 +Q9VG26 MIP06012p 30.05 7 25 7 578271.1557700001 22 +Q9VG31 Malic enzyme 16.91 13 17 0 232858.6546 17 +Q9VG33 Sulfurtransferase 67.27 7 15 7 381503.03990000003 14 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 39207.517 4 +Q9VG51 Sorting nexin-3 34.13 7 25 7 285104.9839 19 +Q9VG62 Toys are us 6.19 3 3 3 23963.4364 3 +Q9VG69 LP03547p 35.71 12 26 12 382872.54797 23 +Q9VG81 RH49330p 15.78 7 8 7 17997.9774 6 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 49326.2314 3 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 179712.3137 15 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 859.3173 1 +Q9VGA3 LD12305p 33.64 7 18 6 265918.8106 16 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 1755.1477 1 +Q9VGE4 FI04457p 4.49 6 6 6 15082.360940000002 4 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 4235.3749 3 +Q9VGF3 IP11040p 9.86 4 5 4 37734.914600000004 5 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 606489.54694 29 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 137789.605 5 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 64979.96227 10 +Q9VGL0 LD43047p 2.84 3 3 3 6998.108749999999 3 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 6435809.7933 156 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 36184.7567 3 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 2140536.4952 59 +Q9VGQ8 Arfaptin 11.55 4 5 4 35238.825 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 11506.7884 4 +Q9VGS3 RH44771p 14.04 4 12 4 279272.5095 10 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 953.58997 1 +Q9VGT3 GM04645p 1.89 1 1 1 1740.594 1 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 25183.734399999998 5 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 32076.134 2 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 23102.381 2 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 38327.4063 5 +Q9VGY2 Peptide deformylase 14.71 4 4 3 37410.5094 4 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 31065.30185 11 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 36505.08 5 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 118852.31589999999 9 +Q9VH37 IP06524p 14.29 3 4 3 51015.7528 4 +Q9VH64 LD29322p 26.91 9 14 9 80771.1455 14 +Q9VH66 FI18258p1 27.9 6 12 6 116559.35489999999 12 +Q9VH72 TA01656p1 37.25 6 14 6 113857.54632 11 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 217529.5244 22 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 14936.1511 4 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 4595.91165 2 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 78128.84531 9 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 48741.594300000004 5 +Q9VHA8 LD25575p 13.05 7 10 7 205914.0977 10 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 227197.03019999998 17 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 23512.6854 5 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 62380.49582 13 +Q9VHC7 FI21236p1 32.28 15 32 8 417112.47565 22 +Q9VHE3 GH05665p 6.25 2 2 2 5204.223 2 +Q9VHE4 omega-amidase 20.85 7 15 7 137993.43649999998 15 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 131780.6408 10 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 28705.8086 4 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 17839.67607 3 +Q9VHH8 Beag 6.46 4 4 4 17328.8646 4 +Q9VHI1 Hyrax 6.32 3 3 3 12160.257899999999 3 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 436297.0653 17 +Q9VHJ2 LD32381p 2.65 1 2 1 27060.076999999997 2 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 4172.4 1 +Q9VHJ7 LD41978p 3.96 3 4 3 22717.941059999997 4 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 838487.94921 41 +Q9VHM3 LD30467p 9.09 4 4 4 14229.037499999999 3 +Q9VHN4 GH14121p 10.92 3 3 3 15733.450099999998 3 +Q9VHN7 transketolase 35.46 19 30 1 231149.1178 25 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 2348.7056 1 +Q9VHR5 Veneno 3.27 2 2 2 498.21536 1 +Q9VHT3 CG9617 protein 23.6 5 7 5 51528.7032 7 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 25895.493 5 +Q9VHX2 GH08043p 7.23 4 5 4 17541.44308 5 +Q9VHX4 LD24679p 68.09 21 107 21 3195061.57276 97 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 47319.493800000004 5 +Q9VI09 GH14494p 52.48 7 35 7 433652.8211 33 +Q9VI21 Dementin, isoform D 3.92 3 3 0 6741.5668000000005 3 +Q9VI24 LD25151p 3.61 1 1 1 2551.1372 1 +Q9VI53 LD44267p 9.24 4 6 4 69442.1928 6 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 7502.201 1 +Q9VI64 LD30995p 48.16 14 49 14 1037685.1356 44 +Q9VI66 GH28833p 7.57 2 3 2 22169.149400000002 3 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 3318.8832 2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 10928.1957 2 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 12141800.11179 270 +Q9VIF2 GM01519p 9.72 5 6 5 133982.7596 6 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 79938.3119 8 +Q9VIH1 CG9273 protein 16.26 4 5 4 22002.18397 5 +Q9VII5 GEO08323p1 20.75 4 7 4 63018.068119999996 6 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 36174.902 2 +Q9VIJ3 FI14214p 17.78 3 4 1 6150.1903999999995 2 +Q9VIJ5 GEO05038p1 9.7 1 1 1 649.0206 1 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 8595.1532 2 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 38434.94265 10 +Q9VIL2 LD19544p 14.9 4 8 4 51697.519 8 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 108339.4223 8 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 41132.394 3 +Q9VIQ5 RH02620p 40.64 8 10 8 62867.2408 6 +Q9VIQ6 FI17342p1 4.82 1 2 1 4294.3047 2 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 768910.35124 43 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 6185.68953 4 +Q9VIU3 FI23988p1 4.24 2 2 2 475.39993 1 +Q9VIV6 GH04973p 11.11 4 6 4 78163.55345 6 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 12912.133699999998 2 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 570.5561 1 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 78417.43494 7 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 77120.9739 10 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 312436.4865 24 +Q9VJ22 GH09876p 8.0 2 2 2 7329.4683 1 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 42506.195999999996 4 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 211565.0871 10 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 50462.2716 7 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 651231.5648 37 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 98673.10800000001 8 +Q9VJ59 PRA1 family protein 8.7 2 3 2 52862.9384 3 +Q9VJ60 GM16226p 10.28 3 5 3 51673.9218 5 +Q9VJ61 SD03870p 1.64 1 1 1 9643.272 1 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 62418.32184 9 +Q9VJ80 LD42267p 7.96 10 11 10 45404.656989999996 9 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 28960.16525 10 +Q9VJA9 GH07373p 4.86 3 3 0 15713.0584 3 +Q9VJC0 GEO08203p1 37.96 5 6 5 38250.9438 5 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 42399.378600000004 6 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 147463.3822 19 +Q9VJD4 LD24721p 32.33 11 29 11 707159.6335 26 +Q9VJE3 LD24839p 7.67 4 5 4 13749.92673 4 +Q9VJH8 FI03416p 2.58 2 2 2 20886.792999999998 2 +Q9VJI5 Protein yellow 9.71 5 6 5 111938.5151 6 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 55985.6159 6 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 396454.10970000003 13 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 6004.8553 2 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 89995.8915 5 +Q9VJQ3 Protein yellow 25.11 11 28 10 739265.8151 26 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 7886.6425 2 +Q9VJU6 IP09831p 3.17 1 1 1 5259.74 1 +Q9VJU8 GH23407p 10.27 5 6 5 33498.9452 4 +Q9VJZ1 FI21342p1 5.49 3 4 3 26197.421299999998 4 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 1124943.1245 32 +Q9VJZ5 LD07294p 26.58 8 10 8 62258.5301 8 +Q9VJZ6 LD40224p 67.13 11 30 11 207803.02047000002 19 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 199195.1229 12 +Q9VK11 GH15921p 27.51 7 18 7 241672.28759999998 16 +Q9VK12 GH20621p 62.0 17 84 17 1936842.4793 71 +Q9VK18 LD36945p 6.59 3 3 3 8913.9949 3 +Q9VK19 FI07225p 9.35 2 2 2 7127.0711 2 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 32.06 14 22 1 323.52374 1 +Q9VK39 FI09204p 34.91 4 17 4 157730.07270000002 13 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 909.06177 1 +Q9VK59 LD23647p 28.63 23 34 23 209047.61248 23 +Q9VK60 GH25425p 58.37 13 49 13 1205519.71827 42 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 365241.0377 36 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 82222.033 8 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 102765.8061 9 +Q9VK99 Atilla, isoform B 51.75 7 32 7 449023.02799 22 +Q9VKA1 FI02817p 15.58 3 3 3 44488.24346 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 5711.128000000001 2 +Q9VKC8 FI03495p 9.17 5 5 5 149211.86599999998 5 +Q9VKD9 MIP16835p1 1.35 1 1 1 614.5664 1 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 5279468.77226 261 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 21984.3605 5 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 18115.54308 2 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 2433.6958 1 +Q9VKI8 GH03305p 67.77 20 107 20 2459887.98097 99 +Q9VKJ4 Csl4 14.22 3 4 3 36313.0827 4 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 1092696.81942 65 +Q9VKM7 AT01533p 8.57 5 12 1 167092.6563 11 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 5596.263040000001 2 +Q9VKQ5 GEO07393p1 6.45 1 1 1 5547.13 1 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 15823.159 4 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 259058.17163 12 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 11227.1975 2 +Q9VKU5 LD37206p 10.09 2 2 2 4929.4062 1 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 570751.38115 37 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 14923.190999999999 2 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 30357.4892 4 +Q9VKW1 LD41958p 2.21 1 1 1 2098.6946 1 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 61999.2769 10 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 3291859.17494 117 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 134548.85139999999 7 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 16700.65698 6 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 257805.86765 21 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 793757.05522 41 +Q9VL02 GH08677p 10.57 4 4 1 23147.8808 3 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 65164.4765 9 +Q9VL16 RE45833p 30.77 8 26 8 654020.9702999999 22 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 2070.9968 1 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 14215.898 2 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 439.70834 1 +Q9VL57 RE10231p 4.75 3 3 2 21715.721899999997 3 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 47085.844000000005 3 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 74734.5202 7 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 941064.29227 29 +Q9VL70 HL08109p 83.17 25 129 25 4738928.4587 116 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 81809.2364 7 +Q9VL91 LD23102p 1.8 1 1 1 684.0493 1 +Q9VL93 GEO07195p1 13.64 2 2 2 13123.4156 2 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 73985.65299999999 6 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 1474824.4544 55 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 1664096.98307 66 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 31485.43895 5 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 11844.3545 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 332596.9319 17 +Q9VLP0 IP04187p 11.23 2 5 2 33099.10385 5 +Q9VLP1 GEO08095p1 37.84 6 14 6 190351.22874 13 +Q9VLP2 GEO08076p1 38.1 6 40 6 475526.79095 34 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 135595.1153 5 +Q9VLQ9 Sorting nexin 29.4 14 23 1 283307.70546 20 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 74976.73849999999 4 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 681.38055 1 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 402458.9444 32 +Q9VLS5 LD29542p 10.69 5 6 5 18637.4662 5 +Q9VLS7 LD21067p 1.88 4 4 0 22592.8364 4 +Q9VLT3 LD23292p 16.59 28 41 28 387610.6564 36 +Q9VLT7 IP17351p 26.92 4 7 4 126525.538 5 +Q9VLU3 IP09231p 5.4 1 1 0 4326.2334 1 +Q9VLV9 Proctolin 20.71 2 4 2 38782.231700000004 4 +Q9VLW8 LD06392p 13.18 3 3 3 1926.76165 3 +Q9VLX6 HL01609p 6.32 2 2 0 29191.497000000003 2 +Q9VLY1 HL02931p 19.01 1 7 1 82439.8614 6 +Q9VLY7 TEP1-F 3.68 6 7 6 32482.29742 7 +Q9VLY9 CD109 antigen 29.45 37 61 0 765858.13819 55 +Q9VM07 RE43931p 27.85 5 11 4 53665.9323 6 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 71855.0559 8 +Q9VM11 HL01515p 31.19 9 12 9 155191.8748 12 +Q9VM12 MIP26555p1 29.25 10 25 10 323021.3325 21 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 5051175.75807 145 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 2907630.59351 74 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 6426.4165 1 +Q9VM47 Menin 3.15 2 3 0 2795.6129 3 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 13353.6797 2 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 23853.1996 4 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 82869.31994 9 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 259587.4155 11 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 59156.155 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 2308964.69834 58 +Q9VMC3 LD35051p 3.29 1 1 1 3129.9858 1 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 5869.0674 2 +Q9VMC7 LP11564p 9.94 6 6 3 6161.23257 4 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 249242.67479999998 13 +Q9VME1 FI01864p 17.96 7 8 7 35750.8687 7 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 19227.3361 3 +Q9VMF0 FI04444p 4.48 2 2 2 9564.7011 2 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 10048.1059 2 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 105839.2136 11 +Q9VMH8 GEO07746p1 37.3 6 12 6 238790.4448 10 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 493859.32409999997 26 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 417518.81446 29 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 1545026.6036 34 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 41787.7619 4 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 225460.042 21 +Q9VMR9 acylphosphatase 6.93 1 1 1 20358.938 1 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 2425168.9806999997 35 +Q9VMT2 GEO07854p1 52.35 7 122 0 2645588.61929 101 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 1419233.8586 38 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 39809.50326 9 +Q9VMV5 Viking, isoform A 8.2 13 20 13 69538.07634 16 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 6384.258 2 +Q9VMX4 AT19154p 19.52 6 13 6 82304.94831 9 +Q9VN01 GH23891p 16.39 8 12 8 63297.6009 11 +Q9VN02 GH14561p 32.74 7 14 7 81465.52918 13 +Q9VN21 LD30155p 55.05 28 100 28 1593683.97282 89 +Q9VN39 RE74585p 17.58 6 8 2 13931.5565 5 +Q9VN44 FI07923p 18.91 20 39 20 439883.23461 36 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 188656.79700000002 14 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 220875.8254 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 4853.2528999999995 2 +Q9VN86 AT14148p 6.51 3 3 3 19545.33184 3 +Q9VN88 LD45836p 14.49 4 6 4 42481.2595 6 +Q9VNA3 GH21273p 40.28 8 15 8 262974.5008 14 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 245763.8241 8 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 18435.920299999998 3 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 3636.5457 1 +Q9VNF3 RE01652p 39.3 9 23 7 198673.81816999998 16 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 44943.8332 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 11062.4653 2 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 87446.13526 11 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 108338.463 3 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 33494.5597 5 +Q9VNI8 Hpr1 10.7 8 9 8 26665.4734 8 +Q9VNI9 IP18173p 17.18 3 6 3 14856.6131 5 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 2638830.4432800002 71 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 31465.2066 5 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 9011.01314 5 +Q9VNV2 GEO05133p1 8.86 1 2 1 758.7632 1 +Q9VNW0 GEO11142p1 21.88 3 3 3 13137.111700000001 3 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 1558963.7731 61 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 758318.10489 67 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 10328.616300000002 2 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 118084.03852 6 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 12822.211 1 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 580.4088 1 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 62363.779 2 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 258555.7107 14 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 95193.767 5 +Q9VP57 LD15904p 23.19 18 33 18 566767.59993 30 +Q9VP77 LD23875p 10.99 7 7 7 37289.9025 7 +Q9VP78 GH23156p 8.76 4 4 4 20810.0822 4 +Q9VP84 IP06402p 4.76 1 2 1 17649.847999999998 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 2032.0624 1 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 12195.7233 5 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 54645.432199999996 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 28591.012 4 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 970680.0538 41 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 22903.57303 6 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 11406.209200000001 3 +Q9VPH6 LP10922p 9.61 5 8 1 28094.63928 7 +Q9VPJ0 RE58433p 8.29 3 6 0 29359.650700000002 5 +Q9VPK3 AT24407p 19.37 8 11 1 100952.0116 9 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 15879.758609999999 6 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 818114.11483 63 +Q9VPR1 GH02075p 11.35 2 2 2 11932.682 1 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 157234.5098 7 +Q9VPU4 FI17537p1 8.88 3 3 3 7348.9429 3 +Q9VPU6 Galectin 7.28 3 3 3 33159.021 3 +Q9VPX0 GH26159p 4.9 3 3 3 21321.9174 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 240082.94676000002 13 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 1164656.0779 49 +Q9VPZ5 GH04232p 26.62 14 24 14 231784.01127 22 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 590.2873 1 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 2411518.79626 101 +Q9VQ83 RE23541p 7.28 2 2 0 6846.673000000001 2 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 35563.1618 3 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 1766160.13434 49 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 592604.3592300001 29 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 115907.88992 6 +Q9VQE0 dynamin GTPase 17.01 12 12 12 82771.9874 11 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 1636.0396 1 +Q9VQI6 LD25952p 12.35 4 6 4 41016.1906 5 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 201739.14525 18 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 23381.4966 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 3026.5442 1 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 485771.67225 35 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 490870.68338 17 +Q9VQQ6 FI18122p1 15.72 8 13 0 204155.4527 13 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 779981.9068 38 +Q9VQR5 IP10807p 2.5 1 1 1 7322.1973 1 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 19274.66775 4 +Q9VQT7 RH15675p 14.63 1 2 1 3694.4507 2 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 206771.0668 10 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 24135.1744 4 +Q9VQX3 HL05328p 13.09 6 7 6 31974.578999999998 7 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 57890.53865 9 +Q9VR30 RE58324p 19.51 8 10 8 97272.58734999999 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 75904.82034 10 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 5357.192 1 +Q9VR79 LD43683p 30.8 8 30 8 542485.23891 30 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 6688.862300000001 2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 511730.25719 28 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 379883.5343 13 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 60478.640320000006 10 +Q9VRF7 GH09530p 13.92 4 7 0 84936.10821 7 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 31169.6064 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 37625.32066 11 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 628733.02826 39 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 99752.4956 4 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 49767.84257 5 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 1978.0161 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 2735937.50917 77 +Q9VRL1 GEO06356p1 53.1 8 28 2 512989.9325 21 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 2969.55125 2 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 520.54114 1 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 12836.2721 3 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 612694.244 31 +Q9VRP3 AT08565p 23.69 6 12 6 104705.1826 8 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 3387.675 1 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 325323.0837 27 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 80127.4711 8 +Q9VRV8 Transportin-1 3.02 2 2 2 4357.2309000000005 2 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 58798.4642 5 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 179595.2413 8 +Q9VS11 lysozyme 12.55 3 4 2 13123.8129 4 +Q9VS44 Uncharacterized protein 12.36 4 4 4 37277.0317 4 +Q9VS84 FI03225p 7.34 7 8 7 65264.5824 7 +Q9VSA9 CG7409 80.52 14 73 14 1603616.58103 54 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 141088.374 8 +Q9VSC5 GM09977p 55.29 11 26 11 262771.89801 23 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 24734.1563 8 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 71540.44746 7 +Q9VSH5 IP09562p 4.89 1 2 1 5083.796 1 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 56493.380999999994 2 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 3032.5886 1 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 469135.71988 24 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 555796.031 26 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 756180.2013 33 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 121703.91565 9 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 21554.71904 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 25416.4943 3 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 2137.61845 2 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 241989.0161 14 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 545403.4253 46 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 45294.68550000001 6 +Q9VSR5 GM03767p 48.9 9 20 9 492490.5449 18 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 21597.5091 5 +Q9VST4 arginine kinase 2.06 1 1 1 2373.824 1 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 1296418.49308 38 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 150176.55161 20 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 28594.7973 3 +Q9VSX2 IP01061p 30.5 6 12 6 63880.5969 8 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 2042006.49174 61 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 99697.8402 8 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 219504.7407 20 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 16105.9234 2 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 326522.1256 20 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 6129.039 1 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 28665.557 1 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 48069.185399999995 5 +Q9VTB0 LD35289p 18.18 7 9 7 62813.5104 9 +Q9VTB3 Guanylate kinase 35.62 10 23 10 214851.18518 20 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 551043.8422 18 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 41207.655399999996 6 +Q9VTC3 GH07049p 7.78 3 3 3 89085.38699999999 2 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 3400.0818 1 +Q9VTL0 FI19917p1 2.48 1 2 1 4514.7414 2 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 620.8032 1 +Q9VTP1 IP06473p 8.24 2 2 2 5615.0814 2 +Q9VTT2 LD20590p 3.84 2 2 2 5004.8469000000005 2 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 789521.12317 33 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 154012.10700000002 12 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 69480.04525 7 +Q9VTW1 RE15265p 11.2 5 7 0 81037.1577 7 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 30173.2532 3 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 627365.40188 38 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 160933.6226 14 +Q9VU04 RE60105p 6.49 2 2 2 39828.0123 2 +Q9VU13 LD45603p 8.3 4 6 0 77678.1058 5 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 24939.502 2 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 2449651.0963 57 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 12741.056 1 +Q9VU38 Adenosine kinase 29.28 6 13 0 51259.9915 12 +Q9VU45 LD27581p 20.42 5 16 5 197182.77098 14 +Q9VU53 Capricious, isoform A 3.7 2 2 0 6092.0755 2 +Q9VU75 RH45712p 40.33 9 32 9 164154.89820999998 28 +Q9VU92 Uncharacterized protein 35.71 7 12 7 217978.3009 11 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 1149099.62033 73 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 31722.1631 6 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 389813.8588 16 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 2947.8923 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 68824.4706 8 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 94315.1913 5 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 102004.4174 9 +Q9VUQ7 RE36966p 11.91 6 10 6 70364.58989 10 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 6622.74026 3 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 60704.01 1 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 26970.85 2 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 21975.17943 4 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 38208.7748 5 +Q9VV13 GEO08383p1 20.71 2 4 2 126147.90999999999 3 +Q9VV31 Uncharacterized protein 19.35 2 7 2 26385.163099999998 7 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 91047.73150000001 10 +Q9VV40 Golgin 104 1.42 1 1 1 842.63947 1 +Q9VV42 Fat body protein 2 79.5 25 188 0 7926199.72014 160 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 3752543.29515 141 +Q9VV47 Fat body protein 2 45.17 9 22 7 411311.4421 17 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 555341.63548 44 +Q9VV75 AT02348p 79.09 28 196 28 5673009.71868 148 +Q9VV76 Syntaxin 8 11.64 3 4 3 105984.243 4 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 29924.3848 6 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 165537.2995 11 +Q9VVB5 LD46723p 33.45 17 44 1 6954.73463 3 +Q9VVB7 FI02842p 48.97 15 44 1 6475.4036 2 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 79645.907 3 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 288031.83755 27 +Q9VVC8 LD23434p 6.95 5 8 5 80388.8503 8 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 97953.97357 16 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 1793766.7284 34 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 98012.2815 10 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 18009.377999999997 2 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 136176.01664 14 +Q9VVL5 FI11325p 27.27 9 14 9 191709.3671 13 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 4287709.04193 169 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 43106.1726 6 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 31269.2095 5 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 62377.146759999996 8 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 43993.233199999995 3 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 779579.67304 26 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 3267502.7596 48 +Q9VVU2 GEO07453p1 48.32 9 36 8 635195.95464 34 +Q9VVV6 LD45843p 11.01 5 5 1 10745.8747 5 +Q9VVW7 Canopy b 16.74 4 6 4 74351.9543 6 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 5994.9595 1 +Q9VVY7 FI20154p1 10.24 13 16 0 86638.4486 15 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 10597.4845 2 +Q9VW00 GH28721p 12.2 4 8 4 56604.0405 6 +Q9VW17 RE58036p 26.37 5 12 0 46413.9649 10 +Q9VW34 FI03450p 17.01 9 14 9 264968.08915 13 +Q9VW40 LD31235p 12.62 4 5 4 14492.36011 5 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 6121.1655 1 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 31588.247 2 +Q9VW57 Grasp65 8.04 4 6 4 44256.7661 5 +Q9VW58 LD33138p 11.15 3 5 3 5995.9146 1 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 462676.61579999997 21 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 1156269.14378 27 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 4096209.20415 120 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 4129.16886 2 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 2522.0498 1 +Q9VWD0 GH23568p 26.43 8 13 8 83790.0061 13 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 2521551.15178 80 +Q9VWD5 LD35087p 6.46 3 3 3 7457.5307999999995 3 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 320074.33433 26 +Q9VWF0 LP01149p 9.8 3 5 3 32750.4744 4 +Q9VWG1 LD37169p 72.68 11 62 1 79414.2907 6 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 8650.164499999999 2 +Q9VWJ3 LD05272p 4.57 1 1 1 8778.862 1 +Q9VWL4 GH07340p 9.77 5 5 5 24799.3938 5 +Q9VWP2 RH57257p 64.88 12 25 12 362986.9633 23 +Q9VWQ3 LD35981p 5.27 2 4 0 30385.7131 4 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 117462.8011 9 +Q9VWS1 Houki 29.33 6 7 6 69143.58426 6 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 304457.88437 20 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 5162.665800000001 2 +Q9VWU0 FI18411p1 2.63 1 2 1 2311.9569 2 +Q9VWV6 Transferrin 57.72 35 174 35 3979330.80233 153 +Q9VWW2 GH13094p 14.17 6 13 6 12073.35686 5 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 63058.92557 3 +Q9VX08 LD10434p 6.85 2 2 2 3103.3008600000003 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 1550845.9731 84 +Q9VX69 FI01450p 8.27 4 13 3 125846.81999999999 6 +Q9VXA3 LP21163p 16.69 10 15 10 89854.67356 13 +Q9VXA9 RE04047p 10.58 3 3 3 7560.5605 3 +Q9VXC1 MIP06432p1 27.93 5 10 3 156230.77906 9 +Q9VXC9 trypsin 54.18 11 21 11 190255.1494 17 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 39443.871900000006 5 +Q9VXF9 AT13091p 15.94 7 13 7 91195.0515 11 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 81457.055 4 +Q9VXH4 RE16337p 28.43 2 4 2 93553.04370000001 4 +Q9VXH7 FI17510p1 13.95 5 10 5 149997.81829999998 10 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 374230.7242 25 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 1581494.4406 56 +Q9VXJ7 GH03748p1 5.19 5 5 5 11157.22732 5 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 191141.87410000002 10 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 12089.0449 2 +Q9VXM4 LD12946p 62.9 15 37 15 456488.71053 32 +Q9VXN1 LD03728p 7.2 2 2 2 6643.2954 1 +Q9VXN3 LD07988p 25.25 9 14 9 53393.34062 10 +Q9VXP3 GH05406p 9.87 5 5 5 25718.4474 3 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 17014.35 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 7449.6775 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 748971.0369 42 +Q9VXR9 FI03680p 5.45 2 2 2 10984.5918 2 +Q9VXV1 RH52220p 4.39 1 1 1 5486.4106 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 146620.2997 11 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 291509.90375 25 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 130189.2884 13 +Q9VY05 GH11762p 9.47 7 15 7 192991.45266 14 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 16964.5749 4 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 106879.71143 9 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 12089.675 1 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 53024.761399999996 4 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 9562.5161 2 +Q9VY76 AMP deaminase 9.21 8 10 0 17781.210870000003 8 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 86959.2643 9 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 59600.905 5 +Q9VY92 GEO07753p1 73.91 8 32 8 946781.5564 32 +Q9VYA1 RE18811p 3.87 1 2 1 655.3831 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 6698.8114000000005 2 +Q9VYF0 GM09012p 18.66 5 7 5 55713.0065 7 +Q9VYG8 CG15717-PA 17.86 4 4 4 10304.9622 3 +Q9VYJ1 FI12805p 2.29 2 2 1 17919.512600000002 2 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 18501.60516 6 +Q9VYM0 CG2555-PA 13.2 2 2 1 383.30096 1 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 12086.8035 4 +Q9VYN1 protein kinase C 0.42 1 11 1 268540.8245 9 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 8600.746 1 +Q9VYS2 GH09980p 4.78 4 4 4 8867.393 4 +Q9VYT0 RE04130p 23.7 6 10 5 131622.8275 10 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 10652.992400000001 2 +Q9VYT3 FI23714p1 4.8 6 7 6 13923.684640000001 6 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 36524.641 2 +Q9VYU9 RH17287p 36.65 6 11 6 67474.4822 9 +Q9VYV4 Amun, isoform A 12.0 4 4 4 20941.6361 4 +Q9VYV6 GEO09033p1 6.14 1 1 1 17624.459 1 +Q9VZ00 FI19420p1 3.92 4 7 1 12365.368 4 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 418649.88295 22 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 234601.9515 20 +Q9VZ24 GEO11412p1 43.36 6 33 6 1423635.45 31 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 4896.0234 1 +Q9VZ34 RH72958p 2.64 1 1 1 4870.7075 1 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 171228.64927 14 +Q9VZ66 SD22308p 35.37 5 8 5 51156.9663 8 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 19162.462199999998 3 +Q9VZ71 RE01453p 9.04 2 5 2 51240.797 5 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 5110.65477 2 +Q9VZE4 RE70333p 19.57 9 13 9 125348.08704 13 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 63368.260800000004 4 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 39076.3925 5 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 227191.42872 20 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 1103353.53308 42 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 67536.53719999999 8 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 1526022.95921 44 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 18676.879800000002 3 +Q9VZI1 Transgelin 74.47 11 82 1 1054847.96645 58 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 40298.9373 4 +Q9VZJ2 GH27759p 12.66 5 8 5 57833.37322 7 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 17609.658600000002 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 246863.6421 18 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 26544.0924 3 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 85084.47762 13 +Q9VZV2 Chitinase 7 3.75 4 5 4 11437.8294 4 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 55871.3998 5 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 3500.8966 3 +Q9VZX6 LD06441p 3.99 1 1 1 52132.3 1 +Q9VZY0 LD45195p 18.85 5 7 5 100590.71887 6 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 15375.79276 4 +Q9VZZ5 GEO12033p1 21.68 3 7 3 153991.90449999998 6 +Q9VZZ6 CG16985 protein 34.9 5 11 5 268783.9091 11 +Q9W022 GEO01508p1 49.3 7 34 7 765755.9406 34 +Q9W073 RH22148p 9.41 2 2 2 15296.34916 2 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 606686.0774 20 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 242899.1048 11 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 68190.7745 7 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 73584.3566 5 +Q9W095 glycerol kinase 2.6 2 2 2 492.70325 1 +Q9W0A8 FI01658p 14.08 4 10 4 235392.2007 10 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 237581.1029 18 +Q9W0C3 GH11843p 46.94 12 16 12 142124.53744 14 +Q9W0D3 GH15728p 1.09 2 2 2 7069.264 1 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 26634.652 1 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 123084.59235 12 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 283030.1547 18 +Q9W0J9 GH07301p 33.85 8 16 8 256179.28486 14 +Q9W0K9 LD10220p 11.61 2 3 2 5818.4932 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 100783.71887 11 +Q9W0M5 Protein DPCD 9.91 2 2 2 4166.9571 2 +Q9W0N6 LD27967p 9.57 3 3 3 9897.7844 3 +Q9W0P4 GEO05053p1 15.45 3 3 3 29013.7388 3 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 37506.982 2 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 7023.198 1 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 35679.73284 8 +Q9W0U0 glycerol kinase 5.39 2 3 1 13205.8837 3 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 91763.489 7 +Q9W0X1 GH15894p 5.72 3 3 3 20005.3289 3 +Q9W0X2 GEO07322p1 33.88 4 5 4 38677.3453 4 +Q9W0X3 LD24657p 12.55 3 6 1 86985.6852 6 +Q9W0Z5 LP09747p 10.07 5 12 5 73526.44699 12 +Q9W114 IP05433p 22.5 2 3 2 8136.4743 2 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 655225.20074 36 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 151561.924 11 +Q9W136 Uncharacterized protein 33.82 6 17 6 119350.1329 13 +Q9W140 Regulatory protein zeste 14.35 5 7 5 12445.73734 6 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 8183.8150000000005 2 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 3591.4728999999998 2 +Q9W158 LD36772p 6.51 2 3 2 61608.13 3 +Q9W199 GEO07594p1 10.97 2 3 2 56471.519 3 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 921201.2390000001 17 +Q9W1C8 LD24355p 20.11 8 10 8 41601.2317 9 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 10685.0388 3 +Q9W1F2 FI07217p 5.93 2 2 2 6478.191 1 +Q9W1F7 IP15825p 26.5 11 33 11 621204.87158 29 +Q9W1F8 GEO08248p1 23.31 4 8 4 108315.7827 8 +Q9W1G7 LD21576p 31.62 10 17 10 337449.73018 17 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 114960.621 9 +Q9W1H6 GH04238p 13.85 3 7 3 20582.3122 4 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 779059.4495 38 +Q9W1I8 LD03592p 36.97 8 15 8 144693.77949000002 10 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 13530.398299999999 3 +Q9W1L8 GH11818p 5.92 2 2 2 2557.46314 2 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 9040.4948 3 +Q9W1N3 Levy, isoform A 32.11 4 16 4 549385.6492 14 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 6556.868 1 +Q9W1R0 RH49821p 4.13 2 2 2 14270.0 2 +Q9W1R3 Golgin-245 5.17 7 8 7 36712.8287 7 +Q9W1V8 CG9893 protein 27.6 5 7 5 35334.85365 7 +Q9W1W4 RE45066p 15.81 5 7 5 69274.67629999999 6 +Q9W1X5 GH04942p 16.93 24 31 4 352033.24155000004 29 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 1576320.51655 50 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 208374.45309999998 6 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 64590.82447 8 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 24969.427900000002 5 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 138956.95653999998 21 +Q9W257 RH13652p 6.99 2 3 2 51780.972 3 +Q9W258 Babos, isoform A 30.1 6 17 6 312975.9679 15 +Q9W259 FI23916p1 18.69 7 10 7 77628.2675 8 +Q9W260 GH03113p 12.2 7 13 7 89353.0236 11 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 9475.301599999999 2 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 114895.37779 17 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 5887.1062999999995 3 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 14554.2942 2 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 437279.29335 23 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 16737.6754 2 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 68880.13161 10 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 26492.757 2 +Q9W2L6 RH02475p 36.23 21 49 21 840752.21081 48 +Q9W2M0 LD23155p 16.85 11 18 11 124096.8857 17 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 2332776.6778 42 +Q9W2M9 FI16623p1 14.71 2 3 2 20367.7398 3 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 20233.4676 3 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 150503.7911 6 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 83637.1499 5 +Q9W2V2 FI20035p1 10.07 5 5 5 19042.13 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 7975571.60661 90 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 87548.82594 15 +Q9W2Z9 RE65233p 8.65 2 2 2 12757.611 2 +Q9W306 GEO08256p1 14.05 2 2 2 19699.154 2 +Q9W308 GH05731p 16.18 2 3 2 28160.489 3 +Q9W309 GEO08445p1 38.27 7 10 7 115658.7457 8 +Q9W314 GH14088p 9.07 4 4 3 42238.2626 4 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 53887.6634 8 +Q9W330 Phosphotransferase 44.18 19 34 3 717040.3131 32 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 52197.004499999995 3 +Q9W337 GH19985p 44.5 8 13 8 79095.6296 11 +Q9W370 GEO12084p1 38.52 4 8 4 213949.14275 7 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 4251.449 1 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 1623.7705 1 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 520640.06443 27 +Q9W396 FI06908p 17.5 6 7 6 89171.9048 6 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 11440.8415 2 +Q9W3C3 LD10016p 19.53 9 11 9 52111.13965 9 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 30157.454569999998 5 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 23693.341399999998 6 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 17211.185 3 +Q9W3H4 LD36273p 52.23 11 23 11 282196.2412 19 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 30446.80937 5 +Q9W3J6 FI06457p 2.33 1 1 1 2318.7534 1 +Q9W3K6 LD35927p 4.62 4 5 3 64976.22549999999 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 347982.6812 13 +Q9W3L4 GH20802p 20.29 8 14 8 126388.5349 12 +Q9W3M7 RNA helicase 13.12 12 14 11 49537.1669 10 +Q9W3M8 LD34211p 38.19 8 9 8 187239.3968 7 +Q9W3N1 RH59310p 3.12 1 1 1 7286.83 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 44217.0172 6 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 709512.3668 33 +Q9W3Q0 FI07418p 10.09 2 5 1 583.04425 1 +Q9W3Q1 GM14286p 5.68 2 2 2 4642.92834 2 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 71788.55227 10 +Q9W3S3 LP10445p 16.22 2 3 2 2547.2566 1 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 49031.977100000004 7 +Q9W3T9 GM01152p 31.93 8 17 8 209039.24713 15 +Q9W3U9 CG14434-PA 26.74 5 6 0 77809.361 6 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 8217.7183 2 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 52907.3663 5 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 1678320.0835 50 +Q9W3X8 RH42690p 11.42 4 5 4 9030.3073 4 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 104987.22503 10 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 862228.17157 44 +Q9W403 LD24968p 14.47 6 7 6 27378.4951 7 +Q9W404 GH10714p 17.98 6 8 5 40285.9456 7 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 12952.4439 2 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 436480.84133 27 +Q9W425 Rabconnectin-3A 0.99 3 3 3 6198.9805 1 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 1282073.41785 48 +Q9W461 LD23868p 11.54 6 8 6 38573.55864 7 +Q9W483 GH18971p 8.49 3 6 3 28530.2462 3 +Q9W486 LD13361p 3.58 2 2 0 5674.37017 2 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 80809.3192 4 +Q9W4A0 GH11193p 31.98 6 10 6 108018.8072 9 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 11806.3069 3 +Q9W4C2 lysozyme 11.84 2 3 2 21945.2846 3 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 61089.55276 8 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 7907.9736 1 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 360608.31532 18 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 797.4476 1 +Q9W4N8 LD30122p 50.93 10 48 0 1148539.40282 44 +Q9W4U2 RH09070p 45.38 8 22 8 258570.9305 17 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 4050.0325 1 +Q9W4W5 RE47284p 13.77 5 6 5 87884.3024 6 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 69187.8561 13 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 115471.3232 10 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 3226.2326000000003 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 24496.47803 5 +Q9W503 RH61816p 35.31 10 15 10 200615.7805 12 +Q9W5B4 GH18858p 27.59 8 18 8 76069.49036 13 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 5199.3853 1 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 25640.432500000003 2 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 19307.5487 4 +Q9W5W7 GH19483p 5.32 3 3 3 21481.8356 2 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 530405.1484 26 +Q9W5X0 LD21953p 19.4 4 21 0 63793.774000000005 2 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 62031.30336 10 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 63971.854550000004 7 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 2946823.7223900002 49 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 47577.4487 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 188720.96394 19 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 179947.0516 15 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 2137828.59828 63 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 231053.37435 29 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 64373.43746 17 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 2461103.3818 68 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 28694.418 4 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 24395.22196 6 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 764598.88956 34 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 18233.096100000002 3 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 607080.19605 39 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 2004606.45041 78 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 2822.9204 1 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 27588.9922 6 +R9PY51 Uncharacterized protein 34.95 5 71 5 660048.28105 27 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 1559694.9616 78 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 55636.8559 5 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 53544.746100000004 7 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 27785.8927 2 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 32686.5189 5 +X2JB48 ADP/ATP translocase 67.56 22 106 1 1715700.88008 87 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 157737.10650999998 22 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 12301.2288 2 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 2559487.14593 68 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 16685.298000000003 2 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 10646.2683 2 +P10674 Fasciclin-1 51.07 33 127 1 1933.5449 1 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 1636.5837 1 +Q08605 Transcription activator GAGA 2.24 1 1 0 9074.919 1 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 3328.4675 1 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 3575.5662 2 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 4219.773 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 15293.475 1 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 8490.416 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 13794.0776 3 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 4923.4746 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 599.419 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 25673.9177 3 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 12118.725600000002 2 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 2287.2378 1 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 4712.3677 1 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 3756.2532 1 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 35250.255 2 +A1Z7M0 Space blanket 5.71 1 1 1 3647.594 1 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 26050.606399999997 3 +B5RJS0 IP20241p 0.73 1 1 0 475.29672 1 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 3242.0846 2 +E1JJM0 FI20063p1 16.38 9 12 0 86861.92259999999 10 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 1905.1326 1 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 10810.348 1 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 62294.038609999996 4 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 9052.729 1 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 554.15027 1 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 116692.36846000001 8 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 47443.778999999995 2 +Q7PLV6 FI02158p 0.85 1 1 1 734.1803 1 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 8921.1744 3 +Q8MPN6 Serpin 4 17.68 6 7 0 2492.5076 1 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 5417.8857 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 8385.182 1 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 5077.554 1 +Q9VHX1 LD44032p 4.04 1 1 1 934.00714 1 +Q9VKC1 IP16805p 3.89 1 1 1 4603.5186 1 +Q9VM94 Homer, isoform B 43.32 14 33 1 4237.994 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 5933.1944 2 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 3266.1623 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 63270.2033 3 +Q9VTY1 LD40136p 2.4 1 2 1 6409.7085 1 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 786.99115 1 +Q9W2N5 GH10162p 3.47 2 2 2 926.0212 1 +Q9W362 La-related protein 7 1.85 1 1 1 855.75323 1 +Q9W525 LD08195p 2.32 1 1 0 4941.222 1 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 32065.861 1 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 907.44574 1 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 46913.814 5 +E1JJ83 Os-C, isoform B 7.19 1 1 0 1678.307 1 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 110978.99029 15 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 3436.3257 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 5263.72 1 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 3803.0542 1 +Q8IQ80 GH06117p 3.39 2 2 0 3370.38045 2 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 17539.5159 2 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 3134.9478 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 1739.0723 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 2076.2120400000003 2 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 9771.761 1 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 3621037.06014 112 +E1JH70 Kank, isoform E 1.28 1 1 0 2081.564 1 +M9NFP1 Jim, isoform E 0.85 1 1 0 5404.1133 1 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 2452.79326 2 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 1698.1866 1 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 4744.251399999999 2 +Q9VBS0 CHK domain ov2 2.2 1 1 1 1700.8684 1 +Q9VCH9 LD07883p 4.72 1 1 1 715.4463 1 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 6427.80024 3 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 7375.9185 1 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 7184.2627 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 30601.867 3 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 1685.8862 1 +Q9VMY3 FI19613p1 1.5 1 1 1 6498.8433 1 +Q9VS80 FI17864p1 2.6 1 2 1 2591.542 1 +Q9VZF0 LD44732p 3.61 1 1 1 2345.5862 1 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 100215.4541 4 +Q9W249 IP21806p 2.24 1 1 1 377.91534 1 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 4917.2344 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 26284.384 3 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 15340.79 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 89580.96860000001 7 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 4306.477 1 +Q0KHQ1 GEO13361p1 11.11 1 1 1 646.28455 1 +Q4QPR8 GEO10187p1 19.51 2 2 2 12121.864500000001 2 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 45358.136 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 1761.9047 1 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 4722.013 1 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 653.08093 1 +Q9VV37 GEO13385p1 10.1 1 5 1 5447.8243999999995 2 +Q9VVX6 BET1 homolog 16.24 2 2 2 24899.666 2 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 6477.2983 1 +Q9W152 RH33060p 16.9 1 1 1 1858.1748 1 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 3846.5259699999997 2 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 25475.836000000003 2 +M9PDY5 Girdin, isoform C 0.94 1 1 0 3657.7847 1 +Q9VAI3 FI06539p 10.08 1 2 1 9713.3907 2 +Q9VB09 IP04131p 5.73 1 1 1 9795.162 1 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 23186.489999999998 3 +Q9W5E7 LP07417p 11.4 1 1 1 1960.9218 1 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 4326.3164 1 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 115820.2877 6 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 1687.7593 1 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 3134.853 2 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 8644.044 1 +A1Z872 CAP, isoform D 25.05 11 20 1 1814.4913 1 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 5171.302 1 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 5114.334 1 +Q7K3Z8 GH01208p 13.24 2 2 2 828.9819 1 +Q9VAN8 FI15955p1 6.46 1 1 1 3467.6343 1 +Q9VLL4 FI23523p1 1.81 1 1 1 858.1613 1 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 25763.383700000002 2 +P08841 Tubulin beta-3 chain 23.13 10 131 0 5031.9634 1 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 9733.905 1 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 633.7407 1 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 4719.9644 1 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 1786.9165 1 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 8528.8348 2 +Q9W3S4 LD46272p 3.11 1 1 1 2379.8237 1 +A8JQX3 Nocturnin 1.71 1 1 1 2041.5413 1 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 15920.002999999999 2 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 1 0 492.6343 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 37916.48504 7 +Q7JY89 RE35124p 15.0 1 1 1 1604.7085 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 21101.420299999998 3 +A8JUP7 Serine protease Hayan 1.1 1 1 1 2504.03 1 +P07664 Serendipity locus protein delta 2.54 1 1 1 8108.428 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 216317.755 4 +Q9VGM4 LD28119p 2.94 1 1 1 1419.5747 1 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 17794.96822 5 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 9955.0047 2 +E1JJ37 Complexin, isoform W 65.47 9 67 1 4197.3726 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 983.9722 1 +Q962I2 small monomeric GTPase 50.76 8 21 1 3600.942 1 +Q9VF73 FI17904p1 0.98 1 1 0 1652.8224 1 +Q9VSK1 GH09510p 2.72 2 2 2 2106.6357 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 31760.2226 2 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 5240.994 1 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 34099.29994 7 +Q29R09 LD28546p 3.02 1 1 1 660.2178 1 +Q6AWJ5 LP12324p 23.56 8 11 1 763.7987 1 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1547.3468 1 +Q9VQT5 FI01556p 13.92 1 3 1 57373.382600000004 3 +Q9W0A9 GM02612p 3.06 1 1 1 3656.597 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 1848.0048 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 8864.354 1 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 4186.4 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 3492.724 1 +Q9VV29 GEO12576p1 9.68 1 2 0 6573.8758 2 +P45884 Attacin-A 5.36 1 1 0 5264.9736 1 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 755.2039 1 +O61348 Bobby sox 3.51 2 2 2 328.1642 1 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 2560.1333 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 15612.723 1 +Q9VV27 MIP11526p 7.63 1 1 1 9890.8545 1 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 16416.1363 2 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 3645.8252 2 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 23755.248 2 +M9PE05 Encore, isoform H 0.6 1 1 0 998.39667 1 +Q2PDU0 GEO11169p1 9.84 1 2 1 6556.6416 1 +Q9VF46 GH25158p 4.13 1 2 1 19395.593999999997 2 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 5267.509 1 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 3201.4944 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 12674.784500000002 2 +A8JNU1 adenylate cyclase 1.78 2 3 0 2192.35267 3 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 631.0386 1 +Q7K010 Tetraspanin 3.64 1 1 1 2656.102 1 +Q9VUR4 FI11905p 18.81 5 8 1 4168.1724 1 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 6389.6978 1 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 2424.8876 2 +A8JNV2 Uncharacterized protein 10.71 1 2 1 3841.6319 2 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 4687.91006 2 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 7067.161 1 +Q8SWU4 RE25571p 17.3 6 13 1 10969.002499999999 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 34862.074 1 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 671.9991 1 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 417.94678 1 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 3967.4823 2 +Q8SXW3 GV1, isoform B 4.44 1 1 0 9329.153 1 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 4474.6465 1 +Q8IRN0 FI06485p 3.21 1 1 1 2104.1946 1 +Q9VHS6 Copper transport protein 5.75 1 1 1 1805.3578 1 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 3530.5342 1 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 338.37097 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 1435.4402 1 +Q8ML92 Protein aveugle 7.55 1 1 1 3467.154 1 +Q9VT15 GH14734p 8.33 2 2 2 13206.3754 2 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 3994.1555 1 +A1A750 GEO11067p1 6.93 1 1 1 4691.0483 1 +Q9VF83 LD33178p 2.73 1 1 1 3134.318 1 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 19630.4163 2 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 10321.76 1 +M9PCK0 Decima, isoform D 9.87 2 2 0 10310.0634 2 +Q9VPA9 LD24894p 1.45 1 1 1 5751.7314 1 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 2470.5513 1 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 420.82608 1 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 5120.1455 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 5776.5693 1 +Q02427 RNA-binding protein 1 14.58 2 4 1 19658.277 1 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 8079.8091 2 +Q7K4Y8 GH22690p 1.65 1 1 1 957.6242 1 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 2922.1536 1 +Q9VDL4 LP04613p 2.72 1 1 1 1725.2087 1 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 9055.99835 3 +Q7K4X4 GH24095p 2.0 1 1 1 1657.3445 1 +Q9VJ06 LD05576p 7.07 2 2 2 4052.3208 2 +Q9VGE8 Tachykinins 6.57 2 2 0 9317.1899 2 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 6688.0596 1 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 5083.378 1 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 1253.06101 2 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 7033.496 1 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 3562.6443 1 +Q9V3A6 Ero1-like protein 1.45 1 1 1 5581.5337 1 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 8775.68 1 +Q0E8K5 AT10158p 4.1 1 1 0 521.8947 1 +Q7K8Y3 IP16419p 14.29 5 6 0 41980.18866 4 +Q8STG9 DSec61alpha 1.89 1 1 1 8275.674 1 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 3691.5346 2 +P22812 Protein Tube 3.9 2 3 2 1109.5100499999999 2 +Q9VYX8 LD04844p 9.38 2 2 2 3963.9026 1 +Q7JV39 GH01142p 5.05 1 2 1 4531.909900000001 2 +Q9VZX8 AT02196p 2.37 1 1 1 1976.0328 1 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 32111.483 2 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 4661.0723 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 726.8163 1 +Q9W3F7 Mitoguardin 4.19 2 2 2 1792.01899 2 +Q9W4F9 IP01388p 1.92 1 1 0 5533.673 1 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 2741.018 1 +F0JAQ9 MIP27169p 5.85 2 4 0 460.9553 1 +P18289 Transcription factor Jra 3.11 1 1 0 3567.1914 1 +Q9VJ77 FI24106p1 3.28 2 2 0 4179.4146 1 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 3334.9573 1 +Q9VR55 LD29159p 8.71 1 1 1 4083.5203 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 3725.9497 1 +P54194 General odorant-binding protein 84a 11.43 2 2 2 881.6913 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 10038.987000000001 2 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 2837.3983399999997 3 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 1468.2426 1 +Q9VV26 GEO12049p1 6.84 1 1 1 26167.996 1 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 2211.221 1 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 891.7655 2 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 760.6832 1 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 7988.928 1 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 4760.832 1 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 1664.7046 1 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 5841.37 1 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 12876.52 1 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 1544.7324 1 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 13395.2762 3 +Q6IJE8 HDC15077 17.04 2 3 2 20273.2972 3 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 676.2897 1 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 20746.12775 3 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 2115.037 1 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 3398.0823 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 4619.5146 1 +Q9W494 Crossveinless 3.5 1 1 1 973.5143 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 12774.7183 2 +Q7KN04 Spondin-1 2.1 1 1 1 2969.7712 1 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 3742.7144 1 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 2740.3887 1 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 5328.859 2 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 809.90265 1 +Q8MRQ1 GH06222p 1.49 1 1 0 2256.614 1 +Q9VPR6 Kinase 3.56 1 1 1 1803.866 1 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 2604.3652 1 +E1JJS1 glutathione transferase 5.6 2 2 0 25942.479 2 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 975.2773 1 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 1888.07 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 2289.1692 1 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 1844.5227 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 1627.9519 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 911.4047 1 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 729.11804 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 1905.0354 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 10176.7759 2 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 883.20013 1 +A1Z8N1 Trehalose transporter 1 1.05 1 1 1 598.8855 1 +O76876 Protein sex-lethal 1.86 1 1 0 405.9264 1 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 11502.829 1 +Q9VY55 FI09726p 8.08 1 1 1 1535.2532 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 35619.312 1 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 632.3791 1 +Q02936 Protein hedgehog 2.34 1 1 1 5500.402 1 +Q6NN09 ATPase protein 9 5.07 1 6 1 117925.175 4 +O76874 SD17974p 1.14 1 1 1 2275.468 1 +Q9VGL2 GM08392p 2.12 1 1 1 5911.62 1 +Q9VAX9 MIP05919p 3.7 1 1 1 6481.355 1 +Q9VK20 LD18447p 2.81 1 1 1 5829.084 1 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 3103.3381 1 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 2677.7678 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 2416.0818 1 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 1749.5051 1 +Q9VZC8 GEO12024p1 6.16 1 1 1 3924.895 1 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 564.94885 1 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 4706.922 1 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 3755.9126 1 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 615.4536 1 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 2088.5757 1 +Q9W123 Protein painting of fourth 2.22 1 1 0 508.81595 1 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 8865.913 1 +Q9VGZ2 FI06805p 3.86 1 1 1 6779.4575 1 +Q7JWS8 AT17867p 10.26 2 2 2 17431.37 1 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 423.43494 1 +E1JHX0 MIP29328p 3.76 1 1 1 8491.86 1 +Q9VGH2 Uncharacterized protein, isoform A 2.59 1 1 1 917.661 1 +D6W4V3 MIP19557p 4.74 1 1 0 1685.4685 1 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 429.86307 1 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 1921.6923 1 +Q9V9R3 adenylate cyclase 0.6 1 1 1 4756.1987 1 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 7008.7114 1 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 5874.113 1 +Q8IRK0 GH04558p 3.9 1 1 1 3423.1128 1 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 5675.74 1 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 17667.3667 2 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 2676.3538 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 14730.603 1 +Q9VV21 GEO07736p1 16.26 1 2 1 20056.840799999998 2 +Q9VL29 GEO11246p1 12.93 1 1 1 2472.698 1 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 625.4386 1 +Q9W2F6 RE36793p 7.09 1 1 1 31577.469 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 1539.992 1 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 18074.79597 4 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 4270.04 1 +Q7K1D7 Choline/ethanolamine transporter FLVCR1 2.9 1 1 1 475.3189 1 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 2001.038 1 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 3412.7744 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 17397.867 1 +Q9W513 GEO10196p1 12.86 1 1 1 45461.332 1 +A8DYV9 GEO02589p1 10.53 1 1 1 8893.473 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 8006.485 1 +O76513 Cyclin-H 3.7 1 1 1 1664.8309 1 +Q8IPJ5 FI18525p1 3.83 1 1 1 665.4519 1 +Q9W0B6 LD14179p 1.48 1 1 1 923.42865 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 706.18066 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 5051.585 1 +Q05201 Protein phosphatase eya 2.22 1 1 0 2428.7747 1 +Q9VIM8 RE22905p 1.6 1 1 1 3179.3074 1 +Q7JRC9 RE73310p 1.89 1 1 1 1483.0018 1 +Q9VGJ7 FI23918p1 1.01 1 1 1 596.2732 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 3261.4963 1 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 14922.901 1 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 32710.8256 2 +A1A753 IP17594p 10.11 1 1 1 3819.6033 1 +Q9VX56 LD03052p 5.94 1 1 1 675.15906 1 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 4264.859 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 1871.995 1 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 309.4815 1 +Q8MYV9 GEO12865p1 11.04 1 3 1 38898.8212 3 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 1998.9508 1 +Q9W366 RE59932p 1.08 1 1 1 8212.286 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 728.5959 1 +Q8T4F7 Protein enabled 0.82 1 1 0 1620.2433 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 70688.19099999999 2 +Q9VBQ5 LD38433p 1.91 1 1 1 2138.1099 1 +Q9VE49 LP06937p 1.86 1 1 1 822.0991 1 +Q9VH82 FI02086p 7.14 1 1 1 4815.5806 1 +Q9W092 Probable chitinase 2 1.65 1 1 0 2481.9932 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 1714.5575 1 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 917.3934 1 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 2298.867 1 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 2123.9211 1 +Q9VPN3 GEO07775p1 12.0 1 1 1 2602.4648 1 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 854.25006 1 +Q9VKE7 GH09228p1 10.39 1 1 1 1653.5852 1 +Q7KA66 Serpin 43Aa 2.56 1 1 1 705.33136 1 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 8086.4746 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 59109.901 3 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 9769.68 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 2453.5217 1 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 8089.39 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 2236.1558 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 28351.314 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 114168.829 2 +Q5BIL9 SD21168p 1.63 1 1 0 11510.889 1 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 5296.049 1 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 35320.395 1 +Q9VHJ4 GH04846p 2.25 1 1 1 1903.455 1 +Q9W0I9 FI01805p 3.22 1 1 1 2298.3555 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 897.95917 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 6560.8545 1 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 342.29236 1 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 2290.5403 1 +Q8SY53 GH11935p 2.73 1 1 1 325.20822 1 +Q7JVN6 GH17672p 2.24 1 1 1 1753.8251 1 +P25159 Maternal effect protein staufen 0.68 1 1 0 726.6037 1 +Q9VLE1 RH63449p 4.29 1 1 1 6864.2017 1 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 423.213 1 +Q24040 Protein big brother 5.16 1 1 0 402.63095 1 +Q6XPX3 Phospholipase A2 4.3 1 1 1 2607.3508 1 +F3YD72 SD23574p 20.45 1 1 1 1769.0942 1 +Q8SYR5 GEO07715p1 7.1 1 1 1 2435.6438 1 +Q8STI6 RE53401p 4.27 1 1 1 309.98373 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 546.56165 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 987.681 1 +Q7K2B1 LD11371p 5.85 1 1 1 5318.5615 1 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 4943.6333 1 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 3836.077 1 +Q9W168 GEO02361p1 9.23 1 1 1 4105.6597 1 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 3577.0352 1 +Q9VVX3 Frizzled-2 1.15 1 1 0 431.18616 1 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 9689.274 1 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 3379.2725 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 2313.6108 1 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 1782.0865 1 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 9256.496 2 +A1A6X2 IP16893p 12.07 1 1 1 3703.949 1 +Q8MZ28 GEO09656p1 8.16 1 1 1 7420.2114 1 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 3368.7004 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 443.3503 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 11654.6794 2 +Q9VL31 RIP-like protein 4.06 1 1 1 2706.9436 1 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 3283.7349 1 +Q9VX71 Uncharacterized protein 5.2 1 1 1 27353.465 1 +Q8IQ51 trypsin 3.05 1 1 1 8866.784 1 +Q9VHS0 FI07206p 2.49 1 1 1 3309.7903 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 6026.41 1 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 2672.26 1 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 510.71848 1 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 393.2274 1 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 4044.134 1 +Q9XZF0 Protein yippee 5.79 1 1 0 6106.974 1 +Q9VD92 Protein archease-like 5.77 1 1 1 5832.9614 1 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 3884.3142 1 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 1915.7161 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 13752.024 1 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 770.8795 1 +Q961D1 Cyclin-K 1.75 1 1 1 644.30884 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 22476.176 1 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 743.43646 1 +Q9VKZ7 Nicalin 1.25 1 1 1 16226.919 1 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 17505.2254 2 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 10436.725 1 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 2132.2761 1 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 2467.1208 1 +P54398 Fat body protein 2 3.52 1 1 0 12806.8125 1 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 641.9361 1 +Q9VJ98 GH05617p 2.44 1 1 1 5490.877 1 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 2179.2522 1 +Q9VYC9 FI16963p1 4.12 1 1 1 370.59952 1 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 38903.44567 8 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 14431.0286 4 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 15535.0619 5 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 3895.5894 2 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 36401.1921 3 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M3_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M3_TMTc.txt new file mode 100644 index 0000000..7ec6203 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/SFug_M3_TMTc.txt @@ -0,0 +1,4085 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 127N, Sample, n/a, SFug_M3 Abundances Count: F8: 127N, Sample, n/a, SFug_M3 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 236137.5777 7 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 93899.4398 9 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 8914761.14886 65 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 81771.2943 8 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 200824.34373999998 11 +A0A1F4 Protein eyes shut 12.91 28 65 0 1842597.8583199999 59 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 15015.0265 4 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 206739.86983 15 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 16896.079719999998 3 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 10312.6221 2 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 11337.86644 4 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 15205.9957 4 +A1Z877 Nidogen 21.48 28 49 28 2415405.8337 46 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 66206.299 6 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 469316.65954 57 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 439577.7654 7 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 166524.77665 11 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 304728.16053 25 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 12291.93174 3 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 8704.169 1 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 247121.4184 19 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 30967.145 2 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 60853.27835 8 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 118670.79631 6 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 12893.494 1 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 79536.375 4 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 9404.6443 2 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 848692.11085 10 +A8DYP0 Protein Obscurin 1.87 8 8 8 22097.07268 8 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 440457.63056 10 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 4391954.84001 117 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 702511.4725 23 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 1938236.26676 45 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1468972.50055 21 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 165174.0741 8 +C0HL66 Histone H3.3A 55.15 7 37 0 48400.914 5 +C0HLZ9 Baramicin A1 17.51 4 6 0 104457.61140000001 5 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 1436309.142 39 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 12396.7775 2 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 172054.39457 12 +M9NDE3 Protein bark beetle 4.42 14 14 14 108720.84798 12 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 11540358.305499999 69 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 111904.3643 10 +O01367 Protein held out wings 18.52 7 14 0 248119.13725 12 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 738592.8828 13 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 12996129.7501 127 +O02194 Presenilin homolog 5.73 2 2 0 14066.439 1 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 1128960.1701 18 +O02649 Heat shock protein 60A 76.27 44 168 28 17743974.21743 147 +O15943 Neural-cadherin 17.05 53 82 2 1861234.33682 78 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 159626.8607 12 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 90523.7011 5 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 21968.8954 3 +O18333 Ras-related protein Rab-2 44.6 9 17 9 505821.72813999996 17 +O18334 Ras-related protein Rab6 33.17 8 22 0 149573.0135 8 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 1168892.9282 21 +O18388 Importin subunit beta 3.85 4 4 0 69187.94902 4 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 13874470.75256 120 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 1318793.8541 37 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 496937.6633 14 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 5563.9697 1 +O44342 Protein windbeutel 17.51 4 5 0 46084.9485 5 +O44386 Integrin alpha-PS3 7.26 8 10 6 153411.8443 8 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 529917.4539999999 5 +O46037 Vinculin 59.31 53 121 0 3275145.1348 107 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 12751.609 1 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 710372.1174999999 17 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 208363.5798 10 +O46339 Homeobox protein homothorax 5.54 2 2 2 6912.570299999999 2 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 864542.6291 18 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 34029.19 2 +O61307 Teneurin-m 2.01 4 4 0 64717.78200000001 2 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 178979.4864 10 +O61491 Flotillin-1 57.51 24 64 24 3424890.3851 59 +O61722 PRL-1 phosphatase 67.05 10 24 10 414059.6133 20 +O62619 Pyruvate kinase 69.79 30 93 30 9328756.58415 76 +O62621 Coatomer subunit beta' 2.08 2 2 2 5949.53 1 +O76206 Putative riboflavin kinase 39.87 6 13 0 516855.09599999996 9 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 338215.77249999996 6 +O76742 Ras-related protein Rab7 37.68 8 13 8 533954.847 12 +O76878 RILP-like protein homolog 18.96 7 9 0 64295.8398 7 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 268402.4817 10 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 462692.2724 14 +O77051 Transcription factor E2F2 16.76 6 8 0 46509.574049999996 6 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 68411.8278 6 +O77277 Torsin-like protein 10.0 4 5 0 135028.685 5 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 48523.2592 4 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 293531.9999 22 +O96690 Protein PDF 15.69 1 2 1 10651.395 1 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 6177203.87861 92 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 132815.903 8 +O97125 Heat shock protein 68 30.39 17 74 11 873092.2884 25 +O97172 UPF0729 protein CG18508 29.29 3 3 0 26944.454 2 +O97394 Protein sidekick 0.45 1 1 0 993.6179 1 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 55340.289000000004 3 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 4102743.9036499998 43 +P00334 Alcohol dehydrogenase 88.28 23 232 23 83897929.75442 200 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 3670998.4238 22 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 15345.2232 3 +P02255 Histone H1 25.0 5 6 0 51153.5742 6 +P02283 Histone H2B 56.91 8 80 8 8147874.72041 72 +P02299 Histone H3 55.15 7 35 2 6788427.04947 29 +P02515 Heat shock protein 22 38.51 7 11 7 194166.5207 10 +P02516 Heat shock protein 23 84.95 16 72 0 8615518.921 64 +P02517 Heat shock protein 26 48.08 8 23 0 3140132.4226 23 +P02518 Heat shock protein 27 55.87 11 23 0 1877602.9716999999 18 +P02572 Actin-42A 74.2 30 655 3 229813976.585 583 +P02574 Actin, larval muscle 66.22 27 546 0 1967129.6604999998 19 +P02828 Heat shock protein 83 51.74 42 171 0 13359783.22851 162 +P02843 Vitellogenin-1 65.15 29 248 0 13836618.11984 177 +P02844 Vitellogenin-2 66.97 26 196 0 10792772.17179 144 +P04197 Myb protein 2.28 2 2 0 6059.6598 2 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 467199.88 8 +P04388 Ras-like protein 2 25.0 4 8 4 252021.5405 7 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 13639.988000000001 2 +P05205 Heterochromatin protein 1 44.66 9 23 9 647236.5274 18 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 3011231.78 36 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 2473141.9776 12 +P05552 Transcription factor Adf-1 17.56 4 5 0 81589.7533 4 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 165795.71839999998 9 +P05812 Heat shock protein 67B1 22.7 8 11 8 162225.75582000002 11 +P06002 Opsin Rh1 7.24 3 7 3 597930.6438 6 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 85498753.40294 188 +P06607 Vitellogenin-3 80.0 35 270 0 25419178.64618 232 +P06742 Myosin light chain alkali 55.48 9 117 0 18107267.13489 92 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 6829.866 2 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 9279611.8529 33 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 33579869.19276 133 +P07665 Serendipity locus protein beta 5.9 3 4 0 67736.42593 4 +P07668 Choline O-acetyltransferase 14.7 8 8 8 40290.61788 8 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 107429576.38656 330 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 76313.1369 8 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 421595.266 21 +P08144 Alpha-amylase A 22.87 10 19 0 928671.3139599999 17 +P08171 Esterase-6 15.26 8 18 0 865286.7542 17 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 89451.9736 5 +P08182 Casein kinase II subunit beta 38.72 8 19 2 1075701.0479300001 18 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 7133797.6201 45 +P08645 Ras-related protein Rap1 40.76 6 13 0 334867.98215999996 12 +P08646 Ras-like protein 1 38.62 7 19 7 1192727.3016000001 17 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 44485328.39784 156 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 278190.75561 12 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 9494730.96136 99 +P08928 Lamin 75.72 60 199 59 10461200.16863 172 +P08985 Histone H2A.v 42.55 10 39 8 3637014.82762 27 +P09040 Drosulfakinins 17.73 3 4 3 98629.3264 3 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 2864344.9622400003 47 +P09208 Insulin-like receptor 2.19 5 6 5 20796.7697 5 +P09491 Tropomyosin-2 82.39 40 292 3 880362.9375 10 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 174163.97139999998 8 +P10379 Protein unzipped 27.46 11 26 0 1150545.3684999999 24 +P10552 FMRFamide-related peptides 8.36 3 4 3 259892.28600000002 4 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 985372.10948 64 +P10981 Actin-87E 69.15 30 649 0 13767225.5371 27 +P10987 Actin-5C 74.2 31 679 0 3647347.5922 23 +P11046 Laminin subunit beta-1 29.14 47 83 47 4193631.0179 74 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 991.21405 1 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 62486397.09344 335 +P11584 Integrin beta-PS 27.54 22 46 0 1858128.5632 42 +P12024 Chaoptin 34.98 42 110 0 5437040.8731700005 100 +P12080 Integrin alpha-PS2 12.39 17 21 17 954638.7668 18 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 18144.74954 3 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 4334402.023 50 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 37611.856 3 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 537443.0292400001 15 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 33390.832 3 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 3421954.5611 43 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 386317.90447 11 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 397976.74950000003 9 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 2006093.5709 39 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 5132487.54824 108 +P13395 Spectrin alpha chain 66.34 150 596 0 37689329.5593 539 +P13469 DNA-binding protein modulo 6.83 4 4 0 81155.0826 4 +P13496 Dynactin subunit 1 19.53 26 29 26 507886.94118 28 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 11776740.85124 135 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 209666.9265 12 +P13678 Protein kinase C 6.22 5 6 0 81563.5637 4 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 16820.229 1 +P14199 Protein ref(2)P 21.04 10 16 10 612593.1765000001 15 +P14318 Muscle-specific protein 20 83.15 21 93 21 9406514.3195 85 +P14484 Pupal cuticle protein 27.17 5 23 5 1115727.9326 21 +P15007 Enolase 77.8 36 335 1 69313907.93482 297 +P15215 Laminin subunit gamma-1 38.87 56 107 0 5177418.08574 100 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 31898.714500000002 4 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 8280038.679599999 57 +P15364 Protein amalgam 24.62 6 10 0 228508.83990000002 9 +P15372 Phosrestin-2 69.78 24 97 0 5541951.74779 88 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 177713.747 4 +P16378 G protein alpha o subunit 26.27 11 43 8 4015003.3737 39 +P16554 Protein numb 19.06 9 11 0 232699.8553 11 +P16568 Protein bicaudal D 20.59 17 19 0 268158.7 18 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 367700.22860000003 8 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 6927.1655 1 +P16914 Protein elav 34.58 12 38 0 1517674.9436 34 +P17210 Kinesin heavy chain 46.77 45 96 45 2901701.7477700002 83 +P17276 Protein henna 40.04 15 35 0 2468152.28474 33 +P17336 Catalase 44.47 19 65 19 3062871.22937 53 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 1896190.04735 28 +P17719 Dihydrofolate reductase 26.92 4 8 4 102206.9951 7 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 3901751.4017000003 41 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 19360.261 2 +P18431 Protein kinase shaggy 43.77 19 57 0 2945832.3754000003 51 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 22566631.34833 222 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 229879.5771 12 +P18824 Armadillo segment polarity protein 17.67 13 22 0 208765.9963 17 +P19107 Phosrestin-1 71.82 33 296 33 37483947.53842 275 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 1314896.80414 23 +P19334 Transient receptor potential protein 4.39 6 7 5 16381.90338 5 +P19339 Protein sex-lethal 5.65 2 2 0 20928.054 2 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 813528.0394 11 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 7347998.67883 59 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 21937.559500000003 3 +P20153 Protein ultraspiracle 1.57 1 1 0 18376.547 1 +P20228 Glutamate decarboxylase 20.78 11 32 0 549849.90139 30 +P20232 Transcription elongation factor S-II 38.02 12 19 0 419075.80587000004 17 +P20240 Otefin 40.8 14 20 14 248793.27701 17 +P20241 Neuroglian 26.04 33 88 0 4505610.7348 82 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 416376.25238 11 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 56497.903999999995 3 +P20354 G protein alpha s subunit 47.01 15 32 1 4183.7207 1 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 38139.79933 5 +P20432 Glutathione S-transferase D1 52.15 14 87 11 19596453.1348 76 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 10808386.1344 66 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 60398826.31813 178 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1467534.9585 31 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 11766654.9711 108 +P22465 Annexin B10 76.01 24 137 24 13888881.93365 119 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 1871796.0477 26 +P22813 Heat shock factor protein 4.34 3 3 0 11367.1013 2 +P22815 Protein bride of sevenless 2.01 2 3 2 27391.2019 3 +P22979 Heat shock protein 67B3 55.28 7 20 7 933963.3049999999 18 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 47150.7131 6 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 595045.17632 37 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 28212.375999999997 2 +P23625 G protein alpha q subunit 57.51 21 85 18 7936499.1508 77 +P23654 Neurotactin 15.84 11 14 0 186267.99203999998 14 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 484636.3031 12 +P23779 Cystatin-like protein 57.94 7 40 7 2602277.7811 36 +P24156 Prohibitin 1 68.12 18 72 0 5541595.56394 68 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 31544748.55783 121 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 163631.14 2 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 49539.200000000004 4 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 1369574.663 27 +P25171 Regulator of chromosome condensation 10.42 5 6 5 164229.80469999998 5 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 5923.8261 2 +P25228 Ras-related protein Rab-3 37.73 7 22 0 294355.5946 9 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 137125.7977 9 +P25822 Maternal protein pumilio 3.13 5 6 0 74312.9062 6 +P25843 Profilin 88.89 7 37 0 1842131.81983 34 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 2152276.069 9 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 180334.9496 12 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 1053613.6075 21 +P26686 Serine-arginine protein 55 19.68 7 14 0 314470.71869999997 14 +P27716 Innexin inx1 2.49 1 1 0 2753.7305 1 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 561384.3456 8 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 79070.8692 9 +P29052 Transcription initiation factor IIB 16.83 6 10 0 187145.8433 10 +P29310 14-3-3 protein zeta 68.55 19 282 0 46429761.61331 236 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 910050.70344 15 +P29413 Calreticulin 58.13 22 67 0 6870486.08221 62 +P29613 Triosephosphate isomerase 78.54 20 145 19 31655952.68128 138 +P29742 Clathrin heavy chain 7.99 13 14 0 104087.4041 12 +P29746 Protein bangles and beads 63.12 27 57 27 4583616.5027 56 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 4333184.70865 66 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 177465.1708 6 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 16270585.8793 173 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 17771291.61015 165 +P30432 Furin-like protease 2 2.5 4 4 0 27882.945 3 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 7325.392 1 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 5665844.3025 37 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 6170390.57841 83 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 2163159.1618 29 +P32234 Guanylate binding protein 128up 16.85 6 9 5 154657.2844 8 +P32392 Actin-related protein 3 26.56 9 16 9 414838.01466 16 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 582643.9396 18 +P33438 Glutactin 36.94 29 56 0 762155.59153 42 +P34082 Fasciclin-2 26.8 21 34 0 993827.72636 29 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 1651834.51285 23 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 1219984.4077 23 +P35220 Catenin alpha 26.39 24 38 14 749718.05025 35 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 114340867.63461 368 +P35415 Paramyosin, long form 75.2 91 521 0 42216031.24548 455 +P35416 Paramyosin, short form 60.0 45 292 0 5513406.22336 51 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 12132.8984 4 +P35554 Flightin 54.4 9 20 0 2665252.6777999997 19 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 72030.66106 7 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 4263583.63148 55 +P36188 Troponin I 57.99 21 83 0 7462109.16441 77 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 1098893.7667999999 16 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 8099.3812 4 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 2258286.1352 31 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 73635.19177 2 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 7110693.60602 112 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 300036.319 9 +P37236 Frequenin-1 71.66 12 40 0 1282665.5234 12 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 10046.117 1 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 937465.4051 12 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 9830061.50555 71 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 5152061.8767 52 +P39736 Puff-specific protein Bx42 9.87 4 5 0 42801.7498 4 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 306168.5356 6 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 761235.4292 12 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 289223.2707 6 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 1684415.8983 32 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 4330.309310000001 4 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1012285.6677999999 20 +P40427 Homeobox protein extradenticle 9.31 3 4 0 125583.6535 4 +P40792 Ras-related protein Rac1 34.38 6 13 0 1129904.81615 13 +P40793 Cdc42 homolog 24.61 4 8 0 530306.0523 7 +P40796 La protein homolog 40.51 13 18 12 340148.5452 16 +P40797 Protein peanut 38.4 19 35 18 1625915.4542 35 +P40945 ADP ribosylation factor 4 38.33 5 12 0 215434.6356 7 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 507589.5544 5 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1349360.4936 33 +P41043 Glutathione S-transferase S1 83.53 19 72 0 9696538.12455 66 +P41044 Calbindin-32 76.77 26 157 0 12411779.3556 144 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 482832.3418 23 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 1556769.9724 21 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 803891.7197 14 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 3699866.1240999997 43 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 3051008.1588000003 40 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 2946827.7122 40 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 174822.7886 7 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 811776.95 18 +P41900 General transcription factor IIF subunit 2 6.86 1 1 1 483.0703 1 +P42207 Septin-1 12.47 5 7 4 155036.3712 5 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 5299616.76052 45 +P42325 Neurocalcin homolog 61.05 12 34 12 1845597.55323 31 +P42787 Carboxypeptidase D 5.33 7 15 0 314236.3042 12 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 251121.134 5 +P45437 Coatomer subunit beta 8.61 5 8 5 108815.34597 7 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 18285112.51836 87 +P45888 Actin-related protein 2 28.82 9 17 9 1016783.27 15 +P45889 Actin-related protein 1 37.23 12 24 12 961620.3224 22 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 27945.69 1 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 1207295.62718 16 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 2508194.5925 35 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 590109.705 10 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 2364877.8585800002 72 +P46824 Kinesin light chain 48.43 25 56 0 2465360.4583 51 +P47947 Troponin C, isoform 1 20.78 3 32 0 2610544.8449999997 31 +P47948 Troponin C, isoform 2 48.39 6 16 0 155571.1198 9 +P47949 Troponin C, isoform 3 62.58 8 28 0 1540857.20616 23 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 4000575.4891 30 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 2179591.2724 26 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 1857019.9 36 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 9434991.8042 39 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 309046.64376 9 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 40808.182 3 +P48554 Ras-related protein Rac2 26.04 5 12 0 27031.68 1 +P48555 Ras-related protein Ral-a 58.21 10 29 1 1928897.4915 28 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 82415.95119999998 4 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 10044231.26754 60 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 503822.47 14 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 2166141.18835 47 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 5803417.1444999995 104 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 348771.4108 12 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 2720848.0351 37 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 2925479.0515799997 46 +P48607 Protein spaetzle 9.2 3 4 0 2868.3931000000002 2 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 161485.458 8 +P48610 Arginine kinase 1 76.69 46 489 0 107922811.39785 436 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 2247412.7631 33 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2196200.14624 37 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 713605.8585999999 8 +P49028 Protein mago nashi 11.56 2 7 2 85227.6211 5 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 315522.9475 7 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 64919.592599999996 3 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 855428.4513000001 8 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 4872.828 1 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 91042.00543 7 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 4848.094800000001 2 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 11053.302800000001 2 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 81522.74088 5 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 2920251.1882 28 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 609802.33395 12 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 13313.7416 2 +P51406 Bystin 1.83 1 1 1 951.1397 1 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 647127.8538 25 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 71539.3031 13 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 777035.33846 22 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 551548.966 9 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 8146.43633 2 +P53034 Replication factor C subunit 2 20.24 6 6 6 85870.706 6 +P53501 Actin-57B 70.21 33 663 5 57228805.12468 92 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 18308.288 2 +P53777 Muscle LIM protein 1 56.52 6 24 0 937920.8251 17 +P53997 Protein SET 15.24 4 9 4 450441.9422 9 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 125204.0334 5 +P54191 General odorant-binding protein 69a 6.08 1 1 1 25114.076 1 +P54192 General odorant-binding protein 19d 71.33 13 119 13 25789728.71974 113 +P54193 General odorant-binding protein 83a 42.86 7 17 0 1920536.425 13 +P54195 General odorant-binding protein 28a 40.56 4 17 4 498103.82181 14 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 62434.0273 4 +P54352 Ethanolamine kinase 13.9 6 7 4 241111.9063 6 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 696651.63333 26 +P54357 Myosin-2 essential light chain 89.12 10 58 1 3711052.1752 49 +P54359 Septin-2 13.13 7 12 1 692543.9279 12 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 28097.957 2 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 5634945.86341 92 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 65824.0674 4 +P54399 Protein disulfide-isomerase 76.81 40 203 0 19812857.85357 179 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 25858847.45125 164 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 547025.1159999999 7 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 864434.8296 14 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 2600570.7834 14 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 6352219.62565 63 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 2406886.8876 27 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 3020675.7364 45 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 77617.3651 3 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 206071.109 4 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 2207033.7314999998 22 +P61849 Dromyosuppressin 29.0 3 3 0 90678.01000000001 3 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 18643143.36812 109 +P61855 Adipokinetic hormone 37.97 2 4 2 57974.0975 4 +P61857 Tubulin beta-2 chain 36.55 15 179 2 3537177.353 3 +P62152 Calmodulin 99.33 19 482 0 99615313.75414 423 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 2298693.7026 24 +P81829 Leucokinin 6.25 1 2 1 19462.305 1 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 13047393.26568 86 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 4934326.45595 35 +P82295 Prominin-like protein 0.99 1 1 0 986843.25 1 +P82804 Partner of Y14 and mago 24.15 5 6 4 17282.07348 5 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 916242.068 11 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 286625.6615 11 +P83967 Actin, indirect flight muscle 69.15 30 612 3 546824.37454 12 +P84029 Cytochrome c-2 76.85 13 103 0 25013750.37384 100 +P84040 Histone H4 60.19 11 107 0 10112572.0949 92 +P84051 Histone H2A 42.74 7 32 0 2314286.1713300003 14 +P84345 ATP synthase protein 8 18.87 1 11 1 371372.3694 11 +P91664 Protein max 4.35 1 1 0 26432.92 1 +P91891 Protein Mo25 34.22 13 25 0 1489505.524 22 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 405040.9283 23 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 997879.53854 55 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 7647409.46815 110 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 6151219.306 45 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 3096471.5668 40 +P92029 DnaJ-like protein 60 5.53 1 1 0 9210.37 1 +P92177 14-3-3 protein epsilon 79.01 28 274 26 33482782.599150002 203 +P92204 Negative elongation factor E 14.64 4 4 4 129536.28199999999 4 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 25984.30605 4 +P98081 Protein disabled 6.16 12 15 0 59665.49195 11 +Q00174 Laminin subunit alpha 22.68 79 156 79 8668649.88244 143 +Q01603 Peroxidase 10.14 6 8 0 182887.66389999999 7 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 29326671.03418 209 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 124445.3276 7 +Q01819 Connectin 2.64 2 2 0 68890.27 1 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 17032.444 2 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 2178780.3688 31 +Q02910 Calphotin 6.83 4 15 4 214016.9867 12 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 128845.75352 8 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 22452.31878 5 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 1781371.1296599999 27 +Q03427 Lamin-C 66.67 46 141 3 6660093.69362 125 +Q04047 Protein no-on-transient A 16.14 9 10 0 165086.9092 9 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 290680.0699 15 +Q04691 Fat-body protein 1 29.93 28 50 0 433877.28321 47 +Q05783 High mobility group protein D 21.43 2 7 0 187401.54953 5 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 81943544.59155001 511 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 41144.304000000004 2 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 16308603.91746 104 +Q06943 High mobility group protein Z 21.62 3 10 0 100832.03562 10 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 22378.3185 6 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 1433749.0181 22 +Q07171 Gelsolin 22.06 16 44 0 3224838.7735200003 43 +Q07327 Protein ROP 24.29 15 40 0 1353055.40377 35 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 1175106.4601 25 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 3272.4137 2 +Q08473 RNA-binding protein squid 43.31 10 27 0 2493998.4116 24 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 193330.0891 8 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 22898.6209 3 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 589698.33949 16 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 112960.3769 7 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1424613.061 14 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 13777.058249999998 4 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 2558.0417 1 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 274740.023 11 +Q11002 Calpain-A 7.37 6 7 0 112665.2425 7 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 3056245.6629 31 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 10249077.70255 85 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 6801953.60793 81 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 10242295.94339 105 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 5454873.90194 51 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 12269669.6349 89 +Q24050 Elongator complex protein 5 27.48 6 10 6 233244.2184 9 +Q24114 Division abnormally delayed protein 20.93 10 15 0 360856.48128 14 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 784351.5446 21 +Q24134 Negative elongation factor D 4.84 2 2 0 31394.9364 2 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 12337.659899999999 4 +Q24185 Protein hook 28.28 21 32 21 683835.8034 31 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1289719.24016 32 +Q24207 Protein boule 36.4 6 12 0 373686.7917 10 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 356093.026 17 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 20580.553 7 +Q24211 Protein stoned-A 42.71 35 65 0 1895013.47404 61 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 6004278.9205 28 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 209487.53845 9 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 104378.8947 4 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 35097118.8973 166 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 660504.78929 26 +Q24292 Protein dachsous 0.54 2 2 0 27643.6483 2 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 203822.2543 2 +Q24298 DE-cadherin 21.57 29 50 29 1490533.5138 47 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 49292.6239 5 +Q24318 Transcription factor Dp 16.18 7 8 0 72053.4611 6 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 469910.345 8 +Q24322 Semaphorin-1A 4.67 4 5 0 34385.3497 5 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 375921.556 4 +Q24372 Lachesin 27.58 9 17 9 585574.2043 16 +Q24388 Larval serum protein 2 12.27 8 11 0 103986.2705 8 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 5659386.05074 72 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 10914352.80284 59 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 46510633.12787 181 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 176245.53391 20 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 509664.35349999997 9 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 72474.94039999999 8 +Q24509 Syntaxin-5 4.93 2 3 0 23563.913 3 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 485077.41803999996 14 +Q24524 Protein singed 10.35 5 5 0 20894.1903 4 +Q24537 High mobility group protein DSP1 22.9 8 15 0 690331.8314 14 +Q24547 Syntaxin-1A 43.64 15 53 0 4032829.3039 48 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 52912732.48502 255 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 129701.748 6 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 430203.2699 8 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 4324459.96033 31 +Q26377 Pro-corazonin 44.81 5 17 5 215493.02935 14 +Q26416 Adult cuticle protein 1 20.0 1 3 1 275178.36 2 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 317093.99345 12 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 755456.6675 16 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 66788.1348 4 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 3948386.445 50 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 1137207.97113 14 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 4109032.91592 49 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 583455.5345 10 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 207852.9328 11 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 627803.92611 18 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 728549.5125 15 +Q3KN41 Neurexin 1 3.37 5 5 0 23926.877999999997 5 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 4321.80698 2 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 116860.991 4 +Q4V645 Trissin 7.41 1 1 1 29452.941 1 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 175105.08330000003 5 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 38957.436 2 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 385689.99340000004 17 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 16134.7948 4 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 7335.27745 4 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 105684.13025999999 7 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 143196.864 6 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 214490.80299999999 6 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 956488.9464 11 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 831112.8306 14 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 88276.26670000001 4 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 480771.0259 14 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 1033053.3624 27 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 25018.396 2 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 214054.2979 11 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 120982.004 7 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 809240.423 17 +Q7JXF7 Protein seele 39.15 6 16 6 454768.3738 15 +Q7JYV2 Synaptogyrin 8.3 1 2 1 5813.6014 2 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 40532.202 5 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 59221.18764 4 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 194722.18846 14 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 187024.3843 9 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 197085.0672 11 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 137823.25699999998 4 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 4770.7837 1 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 2770260.2011 37 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 60803.44960000001 3 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 398083.5461 11 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 458158.2095 21 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 48014.7543 3 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 829748.36497 23 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 65767.939 5 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 15688038.317599999 72 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 105960.8691 6 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 2328408.6495 27 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 2359380.53393 36 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 15183.216 2 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 2995044.30957 65 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 232916.36834000002 15 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 573521.3215 13 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 23567.887600000002 8 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 71757.2564 2 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 518274.0282 11 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 27639315.2121 75 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 6873.5283 2 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 245310.3518 9 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 529861.7948 16 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 134220.0884 4 +Q7KVY7 Syntaxin-4 14.11 4 6 1 45272.704620000004 6 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 61588.605899999995 6 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 5603026.84394 54 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 2207.4377 1 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 2076849.8647 28 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 588427.6573 19 +Q868Z9 Papilin 23.81 59 118 59 2174360.86009 102 +Q86B79 RING finger protein unkempt 6.18 3 3 0 38328.9384 3 +Q86B87 Modifier of mdg4 5.74 3 6 0 88100.7564 5 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 59054.547399999996 4 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 4853.229899999999 2 +Q86NP2 Negative elongation factor A 11.99 11 18 0 134196.0385 14 +Q86P48 AT-rich binding protein 5.15 1 2 1 2738.2556 1 +Q86S05 Protein lingerer 5.96 6 8 0 12223.489 5 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 133966.233 5 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 1790552.2499 35 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 119168.5598 9 +Q8IN41 Protein Turandot X 16.2 2 4 2 37010.9093 4 +Q8IN43 Protein Turandot C 48.84 5 12 5 321990.3169 12 +Q8IN44 Protein Turandot A 64.34 9 34 9 2054740.4027 29 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 328704.5793 10 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 2161.01265 2 +Q8IPM8 Complexin 71.13 11 97 0 31267.283300000003 4 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 350826.4104 17 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 177152.3754 6 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 31099.315 3 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 139753.6012 10 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 387291.3203 9 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 438851.117 6 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 2410124.39573 41 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 60999.45710000001 4 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 14187.9422 4 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 16727.0269 3 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 408701.91549999994 5 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 119555.4252 6 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 3434756.72981 44 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 839005.1775 19 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 26531.949 2 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 48974.354849999996 7 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 18202.7765 3 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 272314.57063000003 10 +Q8MSS1 Protein lava lamp 22.63 60 78 0 519280.03593 69 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 44026.065 3 +Q8MSV2 Protein alan shepard 16.78 8 21 8 970397.5036 18 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 11434.894 1 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 26622.38708 7 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1231654.3801 18 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 567234.99636 30 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1567209.3591999998 18 +Q8SY33 Protein Gawky 14.09 15 25 15 218535.4939 22 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 4744366.49404 53 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 706828.6139 18 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 78071.2643 5 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 9596.3394 2 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 14067.2936 2 +Q8SZ63 Golgin-84 13.57 7 7 7 17689.9953 4 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 503729.9328 14 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 1662798.004 41 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 2097717.4232 55 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 7542.1387 1 +Q8T390 Endophilin-A 62.33 23 114 0 6447982.09048 99 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 186684.6415 7 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 1927220.1013 19 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 534330.5713600001 19 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 377709.00639999995 14 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 7831.593699999999 3 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 1361013.5664 23 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 38956.98066 5 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 14776530.8704 119 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 14418525.22581 90 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 21353994.13694 140 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 2369.8892 1 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 3286479.89972 36 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 3267287.5862000003 24 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 18407471.10181 104 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 3010823.04506 56 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 87073.215 5 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1098085.99654 38 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 2665.4477699999998 3 +Q94547 Regulator of gene activity 10.77 6 9 0 185453.0863 8 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 63452.4641 5 +Q94901 RNA-binding protein lark 44.03 16 37 16 904867.40905 33 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 27901.256000000005 3 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 218039.47854 8 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 136638699.88704 328 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 2574.219 1 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 94349.376 4 +Q95029 Cathepsin L1 36.39 19 81 3 7074950.0264 74 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 1988151.2224 26 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 35223.843 3 +Q95RA9 GILT-like protein 1 40.0 8 30 8 1885668.28425 27 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 14829.5228 4 +Q95RI5 Failed axon connections 63.16 27 130 0 9348092.44009 121 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 38263.6225 3 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 184580.987 5 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 9866.1707 2 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 336201.437 18 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 111722.1416 3 +Q95T12 Calcium channel flower 12.89 2 3 2 138070.481 3 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 8030.402 2 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 24511.90535 3 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 55644.089100000005 7 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 16486.974000000002 2 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 376984.07399999996 20 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 50518.128899999996 7 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 217258.046 7 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 23883.051 4 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 16453.737800000003 3 +Q967D7 Protein turtle 4.51 7 9 0 138929.7414 7 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 134127.81109 16 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 314182.7595 7 +Q9GQQ0 Protein spinster 1.98 1 3 1 26689.015 2 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 10481806.8774 49 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 25534.1794 4 +Q9I7D3 Caprin homolog 15.09 10 12 0 50704.4196 8 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 130917.0377 7 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 107948.27116 4 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 168266.61260000002 5 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 263224.63575 11 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1079620.052 29 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 38501.237 5 +Q9I7U4 Titin 3.75 33 36 0 203689.75685 28 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 66711.3947 3 +Q9NB04 Patj homolog 33.87 24 53 0 1000534.56437 47 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 10828.8659 5 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 101024.07800000001 2 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 13767.217 2 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 196637.0422 7 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 491688.62690000003 5 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 49172.3545 8 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 34889.914000000004 2 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 755.0039 1 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 3749924.23453 60 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 58187.36834 5 +Q9TVM2 Exportin-1 0.85 1 1 0 3472.9568 1 +Q9TVP3 J domain-containing protein 85.64 19 103 19 17957324.8965 96 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 1492265.2814 17 +Q9U4G1 Protein borderless 18.5 13 29 13 1275917.2072700001 27 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 287897.123 9 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 504366.22097 16 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 1140700.4633 19 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 3430.277 1 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 79094.2813 5 +Q9U915 Adenylate kinase 2 75.83 22 60 22 3498671.45348 54 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 259912.147 7 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 571334.52073 13 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 424639.9386 17 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 594127.1706 15 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 10291.0459 2 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 2297.8247 1 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 98080.376 5 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 2147658.4613 36 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 28491.2534 2 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 2977395.4979 26 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 19297.54946 6 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 393464.2013 8 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 1245361.33926 17 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 430326.9131 14 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 3021253.9582 47 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 240492.651 8 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 542370.3697 21 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 118622.582 5 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 614516.0937600001 24 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 23585241.8439 118 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 136683.53819999998 9 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 22193.3371 3 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 40254.4626 3 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 360417.8409 13 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 23339.6266 3 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 5224277.43874 55 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 233923.6941 7 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 572481.8698 10 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1154472.2467 9 +Q9V3Z2 Serine protease 7 15.86 5 6 4 122700.69569999998 6 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 90619.9044 8 +Q9V427 Innexin inx2 18.26 7 11 0 573588.1950000001 9 +Q9V429 Thioredoxin-2 65.09 6 47 6 11778223.6617 47 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 611329.2037 13 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 881609.8669 22 +Q9V447 Krueppel homolog 2 17.03 4 4 0 52359.6726 4 +Q9V496 Apolipophorins 38.44 126 319 0 36424082.76234 289 +Q9V498 Calsyntenin-1 2.97 3 3 0 15146.9593 3 +Q9V4A7 Plexin-B 0.54 1 1 0 1830.2952 1 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 16443.179 2 +Q9V4C8 Host cell factor 7.0 10 13 10 250441.8305 11 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 39824.480800000005 4 +Q9V4N3 Cytochrome b5 44.03 5 20 5 1072910.8311 15 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 203293.8438 9 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 228443.7388 8 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 39315.17027 8 +Q9V521 Phenoloxidase 2 28.36 22 33 21 339260.29959 29 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 563977.2545 17 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 25666.853300000002 6 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 708541.4932 20 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 1801311.5204999999 27 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 3286729.0965 30 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 10711.096 1 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 19819.9961 4 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 235475.70176 14 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 5116.0903 1 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 123496.20610000001 8 +Q9V6G5 Tafazzin 8.2 4 4 2 32490.011599999998 4 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 8047083.2051 75 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 59192.9608 5 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 67077.092 2 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 79659.4323 7 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 19962.8747 2 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 3932177.5439400002 65 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 13984047.00671 112 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 935405.99077 24 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 100552.8016 6 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 132145.374 3 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 979.23254 1 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 1061628.27172 40 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 5702757.50418 142 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 1005967.3952 17 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 447086.191 12 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 76367.2927 4 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 152617.717 5 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 172883.2085 8 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 63989.712999999996 4 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 17721.5425 2 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 17557.1732 3 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1262153.1664 25 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 97276.1745 9 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 746508.5495 16 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 25943.18135 4 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 43292.3338 4 +Q9VA37 Protein dj-1beta 83.96 12 76 12 7897098.5933 65 +Q9VA70 Neutral ceramidase 3.98 3 3 0 37245.6033 3 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 10864223.5581 51 +Q9VAF5 Cadherin-99C 6.33 10 10 10 87391.50959999999 10 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 3726138.3231 18 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 1995545.3306 18 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 7229661.21318 62 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 49338.8962 4 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 2771557.9754 31 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 267067.3095 6 +Q9VAW5 La-related protein 1 5.5 7 8 0 27060.1137 5 +Q9VAY3 Mitoferrin 5.8 2 2 2 9805.669100000001 2 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 64349.6915 4 +Q9VB68 Serine protease grass 9.28 4 4 4 67686.0614 4 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 333988.6585 8 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 218060.79664999997 4 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 33332.74446 5 +Q9VBV3 Protein takeout 33.33 6 7 0 321751.6924 7 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 202588.8956 13 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 15561.701 1 +Q9VC57 Atlastin 3.14 2 2 0 84342.613 2 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 32461.339 4 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 3029.62026 2 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1271799.1193 12 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 416803.5994 8 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 58876.518000000004 3 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 31560.406 2 +Q9VCE8 Actin maturation protease 16.48 2 4 1 6966.746 2 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 277363.99338 10 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 415664.6057 19 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 60955.510899999994 3 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 339208.91504 11 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 676384.4268 14 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 40794.06 2 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 19837.3087 4 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 29209.499 2 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 347144.81327000004 11 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1163518.2733 20 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 32580.124499999998 3 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 3170.2644 1 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 92321.42480000001 5 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 214029.9744 11 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 16449.855199999998 3 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 140342.859 2 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 10639.665 1 +Q9VDL1 Esterase CG5412 18.28 5 11 5 94221.8425 11 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 37622.0907 6 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 601452.7905 9 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 34361.573000000004 3 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 300213.4153 10 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 15836.70136 2 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 11631189.07247 56 +Q9VER6 Modular serine protease 10.51 7 8 7 110644.89289999999 7 +Q9VET0 Neuropeptide F 29.41 3 4 0 37412.825 3 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 2915999.506 55 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 172639.4036 9 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 24922.36085 4 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 104495.85339999999 9 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 10171335.35961 77 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 17378.656 2 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 1205434.8856 18 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 66293.911 3 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 325885.98099999997 4 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 2671370.3933 37 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 114190.7877 8 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 30484.623 1 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 9159.022799999999 2 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 9208.243330000001 3 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 133582.18427 5 +Q9VFM9 Twinfilin 30.03 10 13 10 343699.8596 11 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 32152.92043 5 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 91069.31760000001 5 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 11273.6129 4 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 211944.05374 13 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 10608.932 2 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 2822.32147 2 +Q9VG55 Protein hugin 14.66 2 3 2 74235.9162 3 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 348286.5299 12 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 7474.1694 1 +Q9VG76 Myc-binding protein 15.47 3 3 3 82258.33899999999 2 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 20540.473 3 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 1251800.2056 17 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 61406.207200000004 5 +Q9VGG5 Cadherin-87A 8.35 12 13 12 198577.314 13 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 40921.7505 2 +Q9VGP4 Importin-9 3.63 3 3 3 28219.6863 3 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 514194.74575999996 14 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 180753.38168 7 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 5796.7447 2 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 6117953.4608 38 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 356275.488 9 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 16529.1527 2 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 5259.3811000000005 3 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 606472.8074 16 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 43674.795 2 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 593930.76295 9 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 374930.43200000003 4 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 4024573.35295 22 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 7905.2855 2 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 30057.0709 4 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 248059.0177 8 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 85362.9377 5 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 539414.2177 11 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 84513.7132 10 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 597949.1259 10 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 73691.73250000001 4 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 484738.66222999996 16 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 2506.5503 1 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 2831540.57686 57 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 4581780.3944 43 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 46603.815 3 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 95739.5297 7 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 117396.422 10 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 52061.5972 5 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 112449.13 5 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 192077.53742 17 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 12164.9415 4 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 1117214.9081 12 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 1160125.13818 15 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 49071.554 5 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 91113.644 4 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 488342.5014 11 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 18615.2749 4 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 307113.9314 15 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 8252.033 1 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 5492.38 2 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1080682.3379 16 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 376888.89297 9 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 399475.3213 9 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 1165117.6372 9 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 111960.8 1 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 5972.4866 2 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 32363.5367 3 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 69829.59300000001 3 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 9211.287100000001 2 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 392640.2692 15 +Q9VJL6 Glia maturation factor 23.91 3 4 3 75035.109 3 +Q9VJQ5 Protein Dr1 26.78 4 4 4 52743.3624 3 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 1192543.3699999999 14 +Q9VJY9 Protein Loquacious 8.17 4 6 0 190186.3332 6 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 9653.7629 3 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 1010901.439 17 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 6659.1044999999995 2 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 44650.8955 3 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 169859.99599999998 9 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 27709.5834 8 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 9996.369 1 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 93653.5487 7 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 2034.9695 1 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 206096.92200000002 5 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 30751.595999999998 4 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 3516248.51147 66 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 3196419.94486 71 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 246974.366 5 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 65311.4768 8 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 117774.37564 14 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 200224.4529 13 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 163115.4548 7 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 737932.875 12 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 20810.8636 4 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 1530320.2856 23 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 294177.017 7 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 272143.5919 7 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 13908.233 1 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 17126.7692 2 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 40376.925540000004 4 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 12819.1278 4 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 92143.8367 6 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 47562.52908 10 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 68019.168 2 +Q9VMD6 Protein real-time 1.52 1 1 0 541.8545 1 +Q9VMD9 Tiggrin 19.93 46 58 0 829976.1091 54 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 267596.02658 9 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 624863.1453399999 17 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 17635.6814 3 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 69244.124 2 +Q9VMR8 Protein Turandot M 41.98 4 7 0 152702.9909 7 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 75181.8533 10 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 62991.305 2 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 190429.09664 9 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 1219877.0014 21 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 20230.5544 2 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 164341.06650000002 9 +Q9VMY9 Guanine deaminase 8.04 4 4 4 30007.162300000004 3 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 15760.398400000002 2 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 224171.95523 7 +Q9VN14 Contactin 19.93 25 44 25 1310239.3263 39 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 46256.251500000006 2 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 13288.82013 3 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 444076.83890000003 7 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 1812789.8297 25 +Q9VN93 Cathepsin F 34.85 22 48 19 2304152.2957699997 42 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 534919.05307 12 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 77493.052 4 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 183931.8236 8 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 662489.74 11 +Q9VNE2 Protein krasavietz 19.91 11 23 11 729140.9539 20 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 961115.2343 12 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 7410.6206 1 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 8713.445 1 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 91161.06735 12 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 47309.149300000005 6 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 104456.756 3 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 177406.94819999998 7 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 102250.7905 5 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 203838.53942000002 12 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 6923155.2123 48 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 957621.18 16 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 186019.4097 11 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 73402.818 7 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 166462.3013 4 +Q9VQC4 Glycerate kinase 15.61 8 9 0 64662.8493 9 +Q9VQF7 Bacchus 40.79 6 15 6 1042630.0698 14 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 60261.001000000004 3 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 1092644.6507 20 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 329583.8616 11 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 59023.265 7 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 271800.8417 12 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 554.1933 1 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 53349.40652 5 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 9868.9656 3 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 66913.6629 4 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 159298.8553 12 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 12731.0959 3 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 42459.5365 4 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 21222.0432 4 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 72846.89170000001 5 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 327727.75580000004 5 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 274224.805 7 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 40203.829 2 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 7563621.2876 89 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 235676.40000000002 10 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 15131.8356 3 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 63625.4739 8 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 11495.251 2 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 14813399.1865 59 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 87599.35715 3 +Q9VSS1 Protein Pixie 1.15 1 1 1 13003.048 1 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 123773.8904 9 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 17401.209 2 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 2057504.15796 51 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 268954.1312 5 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 9733.365 1 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 16358.743999999999 2 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 28178.6344 3 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 10362.4431 2 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1024514.2829 18 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 173923.3401 6 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 274508.8943 8 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 57631.28 3 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 204130.17200000002 3 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 89716.10930000001 6 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 87358.71834 5 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 3065862.7943 44 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 319582.463 11 +Q9VTZ5 Transferrin 2 24.42 20 23 20 511498.68080000003 20 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 206373.8126 11 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 28343.828 1 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 26374154.02313 109 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 1726625.07166 36 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 58740.626240000005 5 +Q9VU84 Drebrin-like protein 33.33 15 28 15 829239.87745 26 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 162097.84219999998 7 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 126628.30500000001 5 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 3562216.8984 47 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 252681.1608 10 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 1964247.8856499998 39 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 967.7199 1 +Q9VV36 Retinin 29.84 5 103 5 27052298.85226 83 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 2797799.85357 42 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 1472980.9716 27 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 54325.0934 4 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 246296.2181 6 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 781528.55006 24 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 68428.2018 7 +Q9VVE2 Protein rogdi 33.96 9 14 9 551247.01882 14 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 755104.6803 12 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 56349.2261 5 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 1125636.0449 28 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 46482.7581 7 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 11489.488299999999 3 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 1007484.92454 33 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 46779.47065 5 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 69217.7904 4 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 246837.067 7 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 101794.1485 4 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 32861.0345 6 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 1262255.1339 20 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 6250.5162 3 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 185358.08656999998 10 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 798699.9111799999 20 +Q9VWA1 Clathrin light chain 43.84 14 43 0 3487566.78184 36 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 39502.753 2 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 33469.27766 4 +Q9VWE0 Cytokine receptor 3.28 4 4 4 8164.2518 3 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 4027.515 1 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 595626.5906 11 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 34286673.1323 200 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 4132094.8266999996 26 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 221402.3988 14 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 58713.5177 6 +Q9VWU1 Serine protease persephone 6.85 2 2 2 18928.021 2 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 371805.42314 2 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 1988.3014 1 +Q9VWX8 Frequenin-2 54.01 10 42 4 2861065.5890699998 41 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 23230.719 2 +Q9VX10 Sulfiredoxin 11.73 2 3 0 50671.6533 3 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 354119.8268 12 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 2920906.7689 27 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 13069.457 1 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 352554.4329 10 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 26967.37845 4 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 21872.48373 4 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 3196740.2675 52 +Q9VXG4 Annexin B11 22.31 13 30 13 1618185.72143 26 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 715769.16228 18 +Q9VXK0 Protein NipSnap 15.38 4 6 0 272159.97250000003 6 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 213841.7625 13 +Q9VXN2 Protein stunted 55.74 4 15 4 612542.274 9 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 57480.7105 5 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 802675.07404 19 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 507028.11199999996 7 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 9760.139299999999 3 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 1923884.2560999999 31 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 42338.02477 5 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 6058.9920999999995 3 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 771663.11006 11 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 96912.35 3 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 9685.181199999999 2 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 692543.64217 12 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 1971.1268 1 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 28166.725 2 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 4065.6116 1 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 497338.8186 10 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 17656.416 1 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 42256.73850000001 4 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 145605.35885 4 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 25580.271999999997 2 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 3595104.67127 57 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 59906.5417 4 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 92417.9467 2 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 708667.51532 18 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 330153.591 10 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 4255048.1132000005 33 +Q9VZ35 Protein Vago 20.62 2 2 2 9604.7119 2 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 236749.0994 6 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 696250.9467 24 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 1205206.5994 23 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 149056.31590000002 11 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 179507.5747 3 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 14757.3677 3 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 12791.783 1 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 35240.0126 6 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 14473.8455 2 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 9924.831 1 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 83157.606 2 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 445992.2569 9 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 1797321.7457 32 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 2916573.79144 67 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 673242.0197000001 18 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 64935.74 1 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 3684726.43954 57 +Q9W074 Protein HBS1 4.63 3 3 3 26592.7894 3 +Q9W0A0 Protein draper 6.21 5 7 0 31635.1049 5 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 4255000.0759 36 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 4991.9404 1 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 59347.9024 6 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 139955.6859 13 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 949698.47716 17 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 747420.0941 20 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 237173.40168 11 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 35311.722 2 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 3248.2722 1 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 11221591.6832 41 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 258992.27649999998 7 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 14164.99466 4 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 49343709.52 90 +Q9W1G0 Probable transaldolase 56.5 17 62 17 6158803.37895 59 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 12941.801 1 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 852149.491 6 +Q9W1K5 Sestrin homolog 1.41 1 1 0 27878.758 1 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 177367.664 3 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 491397.1754 6 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 68582.88773 8 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 51999.051 5 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 53881.376099999994 7 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 376004.64259999996 6 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 4768033.5711 49 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 255769.3564 10 +Q9W266 Protein windpipe 13.44 10 18 10 551539.9496 18 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 1932267.7271999998 23 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 755928.84222 14 +Q9W2E7 Protein Rae1 17.63 6 8 6 339153.17415 8 +Q9W2M2 Trehalase 40.94 22 40 0 1161678.1688 37 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 310216.084 6 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 45664.115000000005 2 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 19887.6404 4 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 150129.8703 7 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 4558872.1941 73 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 671097.8589 14 +Q9W358 Chaperone Ric-8 8.55 6 6 0 50636.6463 5 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 7332917.13124 95 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 227710.7127 8 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 291622.6096 6 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 192756.5482 6 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 95660.227 4 +Q9W3E2 Protein PIP82 26.03 29 40 29 226014.92791 30 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 182050.9435 11 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 29667.32974 3 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 103904.5069 9 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 228516.494 4 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 148371.19580000002 8 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 6290.08186 3 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 7131.0265 2 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 44484665.68089 182 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 190968.1452 5 +Q9W436 Neprilysin-1 7.54 6 7 6 45564.1708 6 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 81419.3659 8 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 717.96423 1 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 159330.6187 5 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 1238711.0199 18 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 397023.93595 23 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 375605.9485 11 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 1690739.0671299999 23 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 103437.94208000001 6 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 3015357.8144900003 149 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 87200.257 4 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 1297393.793 25 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 206538.7524 10 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 41953.2797 3 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 756270.776 15 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 3735.3284 1 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 1116390.1759 65 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 2111.3022 1 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 8617.656 1 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 1004337.1300000001 10 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 1674440.7869000002 29 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 87520.508 5 +Q9XZ14 Protein gone early 8.19 5 6 0 29003.65345 5 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 137712.37946999999 13 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 766408.221 16 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 2086868.14343 20 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 3787783.737 35 +Q9XZL8 Protein sarah 31.16 7 13 0 248124.44254 11 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 8920.449400000001 2 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 80872.5468 2 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 29097.6165 6 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 704476.2368 20 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 369788.9491 4 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 2207468.54887 16 +X2JAU8 Protein nervous wreck 40.0 41 115 41 6757924.30176 99 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 22185.158 1 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 170970.94333 15 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 21491.82 1 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 350982.8807 15 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 98525.5097 5 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 284856.6099 14 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 5744.6509 2 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 7497134.14257 117 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 13528.6623 3 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 1136.1194 1 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 338239.77604 29 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 173539.33264 13 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 40980.3198 5 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 595342.69973 21 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 16120361.09347 166 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 37810.58476 7 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 94469.61 7 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 713847.6814 37 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 507801.28189999994 13 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 85266.5221 4 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 249245.2927 12 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 78532.9944 6 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 278503.9961 8 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 22286.126360000002 4 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 289565.854 17 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 3281.4211 1 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 10043923.18042 126 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 695589.034 15 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 105790.1485 7 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 31217.3546 2 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 27379.5843 5 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 805.4666 1 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 5480293.04645 42 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 65017.5971 6 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 3015.4175 1 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 2360010.52597 66 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 45155.90474 5 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 732442.16507 26 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 138504.51440000001 4 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 173564.5327 9 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 63839.792700000005 3 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 485054.48734 15 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 738634.85064 19 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 1514349.03435 44 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 63226.325600000004 6 +A0A0B4KEJ7 Coronin 14.21 7 8 0 129063.4323 7 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 19241.9391 3 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 19159.0487 3 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 64117.223 4 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 425920.30027 27 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 2950.4216 1 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 33018.321500000005 3 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 23836.9941 4 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 246631.98286 20 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 92265.2327 8 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 35429.1183 3 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2170996.3295 43 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 61103.84 4 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 9034551.75505 93 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 77233.03044 13 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 780405.7784 24 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 840706.0394 15 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 337624.41579999996 6 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 5258.859240000001 2 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 217725.1398 10 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 80875.4918 8 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 26524.023 2 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 654.8295 1 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 8243.7264 2 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 34582.0957 2 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 419811.4549 8 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 34662.660099999994 3 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 68853.98359999999 6 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 5746.065 1 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 104643.59890000001 7 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 39679.004 1 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 427914.0784 18 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 1854454.1318 23 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 3585716.2944 42 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 2522.4754000000003 2 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 11894.0566 2 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 10625.949799999999 2 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 34510.715 1 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 1841322.9095 39 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 27110.641499999998 3 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 9312.9401 3 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 53783.826499999996 4 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 75399.40315 6 +A0A0B4KH34 Annexin 57.41 23 123 4 13848647.94876 114 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 10572.3632 2 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 11349.35084 2 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 1087523.4840000002 13 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 265312.7493 25 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 66500.948 4 +A0A0B4KHF0 Ferritin 77.97 21 133 1 38735483.93312 105 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 46487575.58527 276 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 170765.6579 10 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 4704.636 1 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 27192.7255 5 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 558516.1034 16 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 749765.40955 28 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 347674.1 3 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 121409.2694 9 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 16836.2752 5 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 251422.1779 6 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 2357622.66755 41 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 1897106.69674 28 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 72220.0323 5 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 14221.876 1 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 40952.1382 7 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 1844.8701 2 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 13934.11247 4 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 1756773.7666 26 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 658812.83806 31 +A0A0B4LF95 glutaminase 18.84 10 11 0 237059.4064 11 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 1476881.20024 21 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 358645.59074 18 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 57883.2529 4 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 21673.1788 3 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 59634.1301 5 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 14526.8724 3 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 27541.555800000002 4 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 188610.363 9 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 54327.5536 2 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 357193.9429 13 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 25795.811 2 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 160264.015 11 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 1798083.41694 47 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 378104.4388 10 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 38866.8015 3 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 705857.2315 22 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 35476.3081 8 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 8018760.5226 58 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 60269.8348 3 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 94292.4996 9 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 2085636.34336 38 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 31746.352 6 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 157382.0436 7 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 22138.465 1 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 9002.46296 2 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 87714.3732 9 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 29723.021 1 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 22263.328 1 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 16271.932700000001 2 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 7583.011 1 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 270701.8653 18 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 17367.7994 2 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 38800.8523 3 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 246398.63564 28 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 130504.50200000001 9 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 88120.99599999998 6 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 524571.72374 12 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 6108.4136 1 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 605812.3042 15 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 66780.3255 6 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 29228834.30595 159 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 202455.37976 9 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 54872.6254 3 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 4103.758 1 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 4774695.37161 17 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 15167979.592670001 130 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 107295.78178 18 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 76242.9811 9 +A0A4P1SAA7 IP07559p 11.17 2 3 1 36108.5852 3 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 363.1147 1 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 839175.60732 61 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 353550.4564 16 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 2048.0461 1 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 13049.646 1 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 10256.92123 2 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 17428684.8036 288 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 5611.031 1 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 3692080.0875 21 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 149183.9149 8 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 46651.79565 6 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 26501.1959 2 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 47695.28705 2 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 8609.866 2 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 115195.17689999999 8 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 7777463.63945 297 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1381818.2986 39 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 2227397.87895 35 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 1530090.9933 23 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 109431.37425 10 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 197015.419 11 +A1Z6F6 FI18602p1 16.42 12 15 0 436546.29556 12 +A1Z6G9 FI18173p1 7.0 2 2 2 18773.87217 2 +A1Z6H4 RE52822p 16.12 8 11 0 281282.9388 10 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 69962.0354 8 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 7949.025 2 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 299183.31716 9 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 668983.20218 33 +A1Z6R7 FI21445p1 51.79 12 20 12 574907.0862499999 18 +A1Z6V5 FI01422p 44.02 15 36 15 1523054.41407 30 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 425605.858 10 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 212650.1305 11 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 43737.5135 3 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 18674.214200000002 3 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 3522.8518000000004 2 +A1Z7B8 GEO08456p1 21.52 3 10 3 319776.76355000003 10 +A1Z7G2 MIP13653p 13.39 2 8 2 2714352.595 8 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 362410.878 12 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 23558.4425 4 +A1Z7K6 FI20236p1 10.06 4 4 4 40525.907 4 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 267444.54844 10 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 126528.8458 4 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 180268.9994 8 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 1687787.62716 41 +A1Z7V9 FI20020p1 6.93 4 6 1 46446.5377 5 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 13810.7827 3 +A1Z7X8 FI02944p 18.53 7 7 7 143403.5756 6 +A1Z803 FI02892p 32.35 12 17 12 546372.1252 17 +A1Z843 Nodal modulator 3 13.26 15 17 15 385005.7659 16 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 1849420.23775 37 +A1Z871 CAP, isoform B 14.53 25 34 0 337728.98855 6 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 6179790.1736 50 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 496791.8323 7 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 252437.762 3 +A1Z8G7 FI09243p 16.53 2 4 2 1639.0813 1 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 19267152.694000002 47 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 194998.57359 16 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 16939.9085 3 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 29254.17565 4 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 1965479.3826 19 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 451259.5022 16 +A1Z933 GEO02273p1 25.58 2 4 2 243483.384 4 +A1Z934 SD19268p 39.46 11 28 11 1168346.4422 25 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 73316.412 4 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 181799.08221999998 21 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 8895.4575 4 +A1Z9B5 IP16508p 15.06 3 3 3 63856.952999999994 3 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 5993657.2042 49 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 1309026.8480000002 22 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 227482.97556 41 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 405606.131 9 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 51830.23841 9 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 614513.9214 7 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 5926.6297 2 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 12183.773000000001 2 +A1ZA23 FI18007p1 29.23 9 23 9 593520.3226000001 21 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 717.05566 1 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 339583.8913 9 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 133715.06170000002 6 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 48185.84 4 +A1ZAH3 FI16515p1 4.82 2 2 0 546.3312 1 +A1ZAK3 Protein DEK 4.05 3 4 0 28415.480499999998 3 +A1ZAL1 lysozyme 30.43 5 7 5 220887.633 7 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 499.93747 1 +A1ZAU4 RH39096p 50.48 18 44 0 3738492.72808 41 +A1ZB23 IP19117p 10.88 2 2 2 18703.831 2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 8106.581 1 +A1ZB68 FI01423p 47.27 11 25 11 806767.0309 24 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 3933649.54472 27 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 251511.81199999998 5 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 1296246.4625 22 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 71626.66519999999 3 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 11638.955839999999 4 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 3357774.19353 40 +A1ZBA5 FI07234p 4.64 2 2 2 87231.576 2 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 53622.4403 6 +A1ZBD8 Mucin-5AC 6.1 7 9 7 85123.7989 7 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 3966.309 2 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 1364583.2956 46 +A1ZBK7 Crammer 27.85 2 11 2 293136.24820000003 10 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 70040.3478 3 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 644033.4789 13 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 585959.3817 14 +A1ZBU5 GNBP-like 3 41.45 4 4 4 68156.953 4 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 46569.3636 4 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 2439607.8390699998 49 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 14052.282500000001 2 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 979766.58709 42 +A1ZBX6 lysozyme 14.53 3 4 3 20142.699 4 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 2521.76607 2 +A2VEG3 IP16294p 1.06 1 1 0 1891.2992 1 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 3445.506 1 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 218414.765 5 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 1127190.5663 28 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 55797.784 3 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 1658492.0992 19 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 5604516.8933 71 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 7471130.10549 99 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 9432.1301 2 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 6814119.0195 37 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 345382.6373 11 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 129597.25993999999 9 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 1864835.1674 14 +A8DYD1 Combgap, isoform L 11.11 9 11 0 104904.81014 11 +A8DYI6 Prohibitin 69.53 23 83 3 8031856.9968 74 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 651010.8523 27 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 123855.94975 9 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 1906.34983 2 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 49369.42453 5 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 9522.99705 3 +A8DZ06 Stolid, isoform J 11.43 13 22 0 394659.82826 17 +A8DZ14 FI17828p1 24.09 13 28 7 1960119.3235 25 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 44095.7327 4 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 25511.564 2 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 610429.4549 39 +A8E6W0 IP19808p 28.28 5 8 5 103501.963 8 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 106874.79999999999 3 +A8JNJ6 Karst, isoform E 2.12 9 9 0 26781.4746 7 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 5398.28605 3 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 56304.585 3 +A8JNP2 arginine kinase 73.87 45 492 2 6133307.7654 21 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 125622.34135 13 +A8JNS4 Starvin, isoform E 10.08 5 6 0 44435.70878 5 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 34205.4126 4 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 149622.69400000002 7 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 63399.447199999995 6 +A8JQT5 Moesin/ezrin/radixin homolog 1 0.7 2 2 2 421.14755 1 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 9082.2877 2 +A8JQW3 Pinin, isoform B 17.26 5 5 0 35010.201799999995 5 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 56925.5324 2 +A8JR01 Kramer, isoform I 1.39 5 5 0 14110.7791 3 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 127837.34199999999 3 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 198495.8055 8 +A8JR58 Hadley, isoform B 11.24 3 3 2 16820.29 1 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 8413847.19339 81 +A8JRH3 FI20012p1 71.29 30 91 1 4496336.83412 82 +A8JTM7 Megalin, isoform A 4.74 23 27 23 339620.96212 25 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 66754.02035 7 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 11822.3241 3 +A8JUZ6 MIP03678p 13.29 4 5 0 220123.168 5 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 3092.2424 1 +A8JV09 Coronin 0.64 1 1 0 10029.98 1 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1053519.15776 35 +A8WH76 GEO10024p1 51.85 5 19 5 707270.29207 13 +A8Y4V5 FI20903p1 8.21 2 2 2 14225.661039999999 2 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 4482.19478 2 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 5483494.614999999 20 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 48916.942500000005 3 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 12861.322 1 +B7YZH1 FI20143p1 5.74 3 3 0 25975.2297 3 +B7YZN0 Syndecan 13.56 7 9 0 135074.1831 6 +B7YZN4 GH02741p3 38.46 3 3 3 101574.00949999999 3 +B7YZN8 GH02741p1 10.53 1 1 1 33589.066 1 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 37045.8853 8 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 8833829.43149 82 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 7050.29996 2 +B7YZV2 Phosphodiesterase 10.49 9 10 0 154668.4748 10 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 921497.73472 31 +B7Z001 Fatty acid synthase 18.78 43 71 0 1364096.3624 67 +B7Z002 Kismet, isoform C 1.2 4 4 1 6352.5234 1 +B7Z005 Drongo, isoform I 13.62 6 7 0 24353.5332 4 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 14350.17145 3 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 51329.56048 7 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 31497.7938 3 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 70823.63714 7 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 23167.69774 3 +B7Z0C9 GH15104p1 23.16 3 5 3 134839.807 4 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 28579472.334200002 129 +B7Z0M0 FI17308p1 21.31 2 2 1 3511.919 1 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 26706.713 2 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 277954.2401 8 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 490744.33988000004 20 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 75010.1711 5 +B7Z107 GH09380p1 43.48 4 7 4 395229.519 7 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 25199.47 1 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 24726.75836 4 +C0HDP4 MIP05618p 5.36 2 2 0 35091.45 2 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 2324812.40608 45 +C7LAG1 CoRest, isoform G 6.67 5 5 1 14855.598 4 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 2767749.65851 67 +C9QP70 MIP12608p 25.61 4 4 4 29520.283 3 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 1222172.11475 24 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 114423.6586 10 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 42077.0293 5 +D0Z756 MIP14966p 31.93 16 55 0 3813765.5138 52 +D1YSG0 Bent, isoform F 4.91 37 40 0 250225.80416 35 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 645680.0440999999 13 +D3DMM0 MIP15702p 23.27 9 24 0 1090537.4266000001 23 +D3DMM4 MIP15217p 36.68 27 74 0 4076484.9117 66 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 249030.68730000002 10 +D5SHT6 MIP21537p 7.48 3 3 0 13131.4357 2 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 7354.9511999999995 2 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 208946.16606999998 6 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 379210.433 20 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 344447.3722 20 +E1JGR3 GEO02620p1 24.62 3 4 3 4625.2995 3 +E1JGY6 Hulk, isoform F 16.85 27 41 0 910589.6407999999 40 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 349805.6996 16 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 18819.2406 2 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 7663.65312 2 +E1JH90 Patronin, isoform F 2.57 4 4 0 63722.5413 4 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 1504459.827 53 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 40390.3021 8 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 8812.914 1 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 53920.290100000006 4 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 157334.1068 5 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 123432.8098 7 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 125566.65693 9 +E1JHP9 Galectin 5.97 2 2 0 22688.408 2 +E1JHT6 Reticulon-like protein 32.13 17 35 0 3115285.4397 33 +E1JHT9 Reticulon-like protein 36.04 8 13 0 4156.782 1 +E1JI40 Vermiform, isoform I 19.64 10 13 0 518070.42209999997 11 +E1JI59 Schizo, isoform D 3.03 2 2 0 3496.9204 1 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 135388.1121 6 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 12092.51618 2 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 199997.8189 5 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 5328.9243 1 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 60923.4485 3 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 33128.447 4 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 4131.0341 3 +E1JIY8 L antigen family member 3 20.72 3 5 3 119401.416 5 +E1JJ33 Complexin, isoform U 71.33 11 97 2 8302479.57666 92 +E1JJA4 Dynamin 38.05 35 64 0 937559.8358 56 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 13697.5298 2 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 584.20386 1 +E1JJG5 Phospholipase A2 7.53 2 2 1 24220.138 2 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 5918576.6885 93 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 41169.870299999995 7 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 278137.7687 10 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 40641.1467 4 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 1531461.34619 53 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 56188.6506 4 +E2QD54 Natalisin, isoform D 5.61 3 3 0 37712.221600000004 3 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 224991.64744 15 +E2QD98 Protein PALS1 8.22 17 22 0 268209.2561 20 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 147287.9295 12 +E8NH67 Asperous, isoform B 58.41 20 78 0 3640643.48666 61 +F0JAP7 LP18071p 19.65 5 5 0 57104.9665 4 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 88182.7627 7 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 9007979.10495 122 +H1UUB1 GEO12465p1 49.61 5 18 1 700920.7853999999 17 +H8F4T3 Regucalcin 46.08 10 21 0 619771.13972 21 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 78146.9424 4 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 44448.26 7 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 3979491.8292 36 +L0MPN7 Asator, isoform H 11.57 11 14 0 92462.0246 12 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 79692.12312 18 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 1701.3551 1 +M9MRX0 Limpet, isoform J 28.01 28 72 0 7521247.194379999 67 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 880840.44799 59 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 135720.71765 13 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 135035.3134 8 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 83378.525 3 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 10593.8587 2 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 907705.5152 22 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 1476729.1683 16 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 3446096.0376 57 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 18812.8172 4 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 51580.649 3 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 249849.122 9 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 774314.16298 30 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 136738.13113 18 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 227277.2409 13 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 100933.5175 9 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 6679.6807 1 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 124264.88793 8 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 10918742.20961 397 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 11181.166799999999 2 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 1710.2369 1 +M9NDE0 pantothenate kinase 5.37 3 3 0 47945.498 3 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 23885.26814 6 +M9NDS9 chitinase 0.98 4 4 0 44581.946899999995 3 +M9NDX8 Neurabin-1 3.12 6 6 0 6662.3926 3 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 107840.6525 7 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 142194.5004 10 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 8716.12044 3 +M9NEF2 Histone deacetylase 3.95 3 4 0 27030.51308 2 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 6605.753 1 +M9NEW0 LD39232p2 63.33 10 18 10 669282.1288000001 18 +M9NEX3 Cytochrome b5 63.21 7 22 0 2347642.73828 21 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 98955.94 3 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 16299.073 2 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 146460.69612 6 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 82165.08299 9 +M9NFC0 Troponin I 50.75 16 66 5 1550789.3523600001 15 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 490583.6574 4 +M9NFH3 Lasp, isoform D 36.88 10 31 1 315452.6611 3 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 466076.01247 38 +M9NH07 Upheld, isoform N 53.05 36 130 0 15985585.4425 120 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 348055.05653 19 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 185580.8888 10 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 16996.7615 2 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 1252500.73862 48 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 2433.7563 1 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 129840.36730000001 4 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 23589.88 2 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 6607523.63149 183 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 68651.9925 2 +M9PBM3 Cysteine protease 8.54 3 4 0 73977.0667 4 +M9PBN2 Apolipoprotein D 24.08 6 18 0 591555.04024 17 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 668475.4242 19 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 14349.232 1 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 30341.656 2 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 373160.65056 21 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 1238449.9725 22 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 63308.1595 6 +M9PBW9 Rhea, isoform G 8.06 23 26 0 276961.29174 24 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 523976.93549999996 16 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 41454711.55098 186 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 556.5647 1 +M9PC74 Reticulocalbin-3 24.48 10 18 0 772599.9831 17 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 3343.6912 1 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 93557.1029 6 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 5133.13 1 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 54730.5982 6 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 133885.38466 12 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 155512.4284 22 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 26498.1014 5 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 115581.707 6 +M9PCT7 Bunched, isoform O 19.79 4 11 1 37533.841499999995 3 +M9PCU0 FI21215p1 31.45 40 59 2 117119.688 3 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 189601.3351 11 +M9PD73 TEP1-F 26.63 37 63 0 2845551.3013 63 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 971256.5271000001 20 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 6613.7343 2 +M9PDB2 Varicose, isoform E 8.51 6 6 0 69903.1233 6 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 1316777.3599 26 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 11054.342 2 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 95485.381 13 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 123901.5242 9 +M9PDU4 Acyl carrier protein 19.34 5 38 3 16497536.2534 38 +M9PDV2 Tetraspanin 12.89 3 5 0 80423.4463 5 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 521990.93211 40 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 258097.97434000002 12 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 16533100.16326 58 +M9PE32 Fife, isoform D 14.76 16 27 1 222254.68352999998 24 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 1373.26578 2 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 7682.18011 6 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 57276.93734 11 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 54008.8695 4 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 5048.863 2 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 19276.571770000002 6 +M9PEC1 IST1 homolog 22.5 9 19 0 410802.3956 18 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 281017.9169 11 +M9PEG1 Uncharacterized protein 34.58 16 38 16 1984155.26226 38 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 3353792.10533 219 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 71579.88459999999 6 +M9PEL3 Quemao, isoform C 30.67 10 17 0 554682.311 15 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 80354.40318 8 +M9PET3 Simjang, isoform D 4.11 3 3 0 2091.65295 2 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 31354.846100000002 4 +M9PF16 Spectrin beta chain 29.64 75 147 5 3872383.64374 134 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 1660938.7225 34 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 11656.350600000002 2 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 31456.19885 6 +M9PFH7 Tartan, isoform B 3.73 3 3 0 5958.6075 2 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 7828.082 2 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 53367.91343 5 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 3970.3212999999996 2 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 37997.414 1 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 5944.84693 3 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 445757.1008 21 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 230065.92018000002 15 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 225835.4678 9 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 21425121.50009 184 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 148277.57505 5 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 57074.814000000006 3 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 590030.3293 13 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 277780.66962 24 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 35423.602 2 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 480349.45366 25 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 1292119.1261 25 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 63304.0714 3 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 166099.9207 14 +M9PHX2 Visgun, isoform E 8.78 2 5 1 32640.70655 5 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 16260.433 1 +M9PI33 Inositol oxygenase 6.91 2 4 0 138573.4167 3 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 3491.5985 2 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 29724.7493 3 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 2428.5298 1 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 32630.835 2 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 126388.71600000001 4 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 11136.336 1 +M9PJQ5 Troponin I 49.46 15 70 0 601874.7488 14 +O15971 LD39986p 23.53 5 25 2 419973.944 4 +O16158 Calcium-binding protein 52.72 8 47 8 4987209.9769 38 +O17452 LD20793p 27.83 6 24 4 1664075.9736 21 +O18332 FI01544p 60.98 11 59 9 3209483.69164 43 +O18335 Rab11 64.49 14 53 14 6045404.96242 47 +O18336 Ras-related protein Rab-14 36.28 8 18 1 969284.1039999999 15 +O18338 LD44762p 33.33 7 28 1 14593.0824 2 +O44226 Elongin-B 97.46 10 37 10 2291179.693 31 +O44434 QKR58E-3 22.08 7 9 6 76342.0146 7 +O46052 EG:152A3.3 protein 22.91 6 6 1 70978.3994 6 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 1159416.23137 45 +O46079 Protein KTI12 homolog 7.69 3 3 2 631.84955 1 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 57088.9442 6 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 129522.7407 5 +O61604 Fimbrin 32.5 22 57 2 3575541.90704 56 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 55058.9308 7 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 26778.9446 4 +O76521 Importin subunit alpha 7.0 4 6 4 88236.09760000001 6 +O76752 Sepiapterin reductase 36.02 9 16 9 415182.59 14 +O76877 EG:132E8.3 protein 20.62 3 8 3 462363.6758 8 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 7007079.0982 25 +O77259 EG:115C2.5 protein 4.5 1 1 0 2660.2285 1 +O77425 Ribokinase 19.41 5 5 5 64915.403 4 +O77430 GEO01111p1 83.95 15 32 13 1389532.4111 28 +O77434 EG:34F3.8 protein 34.6 6 12 1 280499.83104 7 +O77477 LD24471p 22.41 8 11 8 234732.76024 10 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 26974.5 1 +O96692 small monomeric GTPase 27.47 5 6 2 281365.9498 6 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 171074.0658 6 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 989.77423 1 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 22827.268900000003 3 +O97059 Ccp84Ab 44.8 7 12 0 294318.9554 12 +O97062 Ccp84Ae 70.19 12 29 12 802033.3582 26 +O97064 Ccp84Ag 39.27 6 11 6 286108.5252 10 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 100564.5076 2 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 3188943.3416999998 31 +O97111 LD29223p 11.68 4 6 4 25022.0149 5 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 840.4609 1 +O97365 BM-40 26.32 10 12 10 401765.30700000003 12 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 3852523.8438 28 +O97428 Ciboulot, isoform A 37.21 4 6 1 184449.2157 6 +O97454 Protein BUD31 homolog 21.53 4 5 4 61909.8922 4 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 250918.17616 12 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 11108689.30835 129 +P92181 Cuticle protein DCP2 37.61 3 10 3 110277.0073 7 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 46900.684400000006 2 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 8707609.0865 77 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 611174.0643999999 9 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 153259.328 6 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 2288.0383 1 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 2861584.85781 107 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 6847.797 1 +Q0E8P5 FI05614p 22.24 11 21 11 408589.14535999997 18 +Q0E8S7 Homer, isoform E 45.76 21 61 4 4463997.1171 54 +Q0E8U4 FI09636p 17.67 5 6 5 91713.1802 6 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 1206580.46258 23 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 112009.92139999999 5 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 4598709.572 52 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 2224135.28424 18 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 509060.0418 24 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 27867.1077 3 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 1015841.7781 56 +Q0E9E6 RE33655p 5.43 3 3 1 24774.9202 3 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 655475.6505400001 20 +Q0E9G4 CG1600-PA 14.96 4 7 0 163849.0127 7 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 535184.3649 15 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 4173.5566 1 +Q0KHR7 Septin 13.58 6 8 0 151080.171 7 +Q0KHX7 FI18193p1 7.31 9 9 0 26212.9198 7 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 15314818.7502 127 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 30309.302 4 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 282211.99950000003 12 +Q0KI39 FI16806p1 18.15 3 5 1 2402.0142 1 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 763460.7096 24 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 112376.421 12 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 203068.3093 7 +Q0KIB0 Sidestep III 0.95 1 1 1 6003.029 1 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 77007.6543 5 +Q1RL12 IP16413p 55.9 15 82 2 352055.135 4 +Q24090 GH08712p 12.43 5 7 5 114325.99254 6 +Q24253 AP complex subunit beta 20.63 16 21 16 963685.3265 21 +Q26459 EN protein binding protein 26.32 12 22 0 219326.51144 19 +Q29QY7 IP15859p 22.54 3 5 1 565142.3137 5 +Q2MGK7 GEO13330p1 48.03 7 9 7 251358.4034 9 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 19988.4188 2 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 41286.39 1 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 13625994.7713 152 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 70735.8127 6 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 1167806.1201 16 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 96824.98099999999 4 +Q4QQ49 IP09595p 7.43 2 3 2 5745.78395 3 +Q4QQ70 IP09819p 23.98 7 9 7 58245.6778 7 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 5887.854 1 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 69896.4862 5 +Q4V619 IP07950p 27.16 5 6 1 33176.3772 5 +Q4V625 lysozyme 13.5 2 4 2 47380.08997 4 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 695680.78327 16 +Q500Y7 GEO11443p1 54.39 4 28 4 1394363.47973 25 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 6641.977800000001 2 +Q59E01 FI02065p 7.44 5 6 0 15460.376100000001 4 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 29302.0816 4 +Q5BIA9 RE10908p 0.99 1 1 1 19036.305 1 +Q5LJT3 MIP01391p 25.1 4 10 4 245371.239 10 +Q5U124 alpha-glucosidase 20.95 11 16 0 586102.5157 14 +Q5U126 GEO11286p1 59.42 7 33 7 5928413.9668 31 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 191563.10968 10 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 15988.1218 4 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 1226277.0906 27 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 28447.801600000003 3 +Q6IGN6 HDC05827 50.0 4 7 4 201430.60139999999 7 +Q6IGW6 GEO13367p1 44.23 2 5 2 44016.5042 3 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 3478210.0470000003 19 +Q6IIF2 GEO11103p1 24.29 3 4 3 12762.7987 3 +Q6IL43 GEO11093p1 27.71 2 4 2 232115.82259999998 4 +Q6NL44 GH28815p 13.18 6 6 6 46956.6567 5 +Q6NLJ9 AT19138p 53.41 5 6 5 67612.4712 4 +Q6NMY2 RH54371p 36.81 6 28 6 3627785.8570000003 18 +Q6NNV2 RE44043p 5.5 2 2 0 163585.054 2 +Q6NNV7 RH03309p 47.37 7 19 1 915785.75983 18 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 74855.57035000001 5 +Q6NP72 GEO09659p1 33.33 4 18 4 617626.5443000001 18 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 69105.573 3 +Q76NR6 Regucalcin 81.19 23 173 0 16316316.80746 156 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 381948.47105 11 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 31772.679799999998 5 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 414687.5197 13 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 3140783.34492 28 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 4266.4325 2 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 907605.40277 27 +Q7JQX9 FI14001p1 7.6 5 5 1 33716.271100000005 5 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 15209829.9827 108 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 749046.49035 16 +Q7JRB2 RH09039p 4.52 1 1 1 643.69586 1 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 66487.1592 3 +Q7JRF1 RE48509p 8.67 2 3 1 16819.2324 2 +Q7JRH5 RE28271p 5.61 3 3 3 16380.4866 2 +Q7JRL9 GH25289p 70.78 13 48 1 5128633.8877 47 +Q7JRN6 GH06388p 11.21 3 8 3 59286.9107 6 +Q7JS69 FI04632p 40.84 11 75 1 2008742.6786 14 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 12084.4311 3 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 20982.0817 2 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 4215906.558499999 33 +Q7JV09 GH28348p 6.55 7 8 3 67289.18059999999 8 +Q7JV69 SD11922p 10.96 4 6 4 239417.943 6 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 61220.701199999996 4 +Q7JVH6 LD24696p 37.3 11 25 10 1134986.7093 15 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 362391.6388 10 +Q7JVK6 Translin 22.13 5 11 5 423567.34839999996 10 +Q7JVK8 GEO08987p1 71.92 10 16 10 792755.4502999999 15 +Q7JVM1 GH25962p 11.79 3 6 3 67980.676 4 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 270737.989 7 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 347586.957 8 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 311186.3995 9 +Q7JW07 LD08826p 5.63 1 1 1 2448.9224 1 +Q7JW48 RE12410p 2.23 1 2 1 46011.03 1 +Q7JW66 LD21545p 4.83 2 2 2 37146.436 2 +Q7JWD6 Elongin-C 63.25 7 34 7 2738037.2824500003 29 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 2917429.1982 39 +Q7JWH5 RING-box protein 2 19.47 1 1 1 16843.076 1 +Q7JWQ7 RE01730p 14.62 5 8 5 67378.6482 8 +Q7JWR4 GH19585p 9.09 1 1 1 30410.508 1 +Q7JWU9 AT07420p 30.12 8 10 8 76946.0287 8 +Q7JWX3 GH10112p 35.92 11 23 11 502956.88117 21 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 697417.47957 9 +Q7JX94 Phospholipase A2 15.61 3 4 3 6038.1417 2 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 331270.0967 12 +Q7JXB9 Endonuclease 16.77 5 5 5 507923.814 5 +Q7JXC4 CG6459 protein 35.74 7 44 7 6735033.52755 43 +Q7JXW8 Off-track2 12.24 5 5 5 83294.603 4 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 485732.0033 12 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 1566931.3989999997 7 +Q7JYW9 Phosphotransferase 22.25 10 12 10 364738.1878 10 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 58882.2948 3 +Q7JYZ0 lysozyme 39.13 4 10 4 155077.57526 10 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 922238.30213 19 +Q7JZB1 RE49860p 3.58 1 1 1 17412.97 1 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 1826654.8474 29 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 6396.4846 3 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 207308.001 4 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 3920164.21055 36 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 188328.67062 19 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 4610.5069 2 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 1759008.36357 28 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 1888854.18265 32 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 141167.2796 8 +Q7K076 GEO08269p1 34.35 3 4 0 73648.1348 4 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 29895546.88502 166 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 8898.1455 1 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 1292551.58277 31 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 167191.8914 11 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 357.04004 1 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 56225.537 4 +Q7K0S1 LD39211p 3.66 2 2 2 34957.6262 2 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 448336.46113999997 24 +Q7K0S6 LD36817p 27.56 10 14 10 313350.93799999997 14 +Q7K0T7 LD33470p 2.07 2 3 0 5855.203 1 +Q7K0W1 LD27406p 3.67 2 2 2 31764.190000000002 2 +Q7K0W4 LD27203p 57.93 19 64 18 6559802.55863 59 +Q7K0X9 LD23667p 28.72 6 13 6 179727.55466 12 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 88087.70969999999 3 +Q7K127 Alpha-galactosidase 35.97 13 22 13 785131.53106 22 +Q7K130 Dynactin subunit 4 13.04 5 6 5 27629.6263 4 +Q7K148 Proteasome subunit beta 17.73 5 7 5 115649.416 7 +Q7K159 LD06557p 13.11 4 5 4 25528.9326 5 +Q7K180 LD02709p 23.18 10 13 10 165899.1277 11 +Q7K188 GEO05126p1 32.9 7 45 7 12895590.088 40 +Q7K1C0 GH23780p 50.5 7 12 1 831073.6986 11 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 371320.35020000004 10 +Q7K1C5 GH21176p 6.62 4 5 4 272113.5031 5 +Q7K1H0 GH09096p 20.37 6 7 6 146783.1411 7 +Q7K1M4 SD04017p 24.68 8 15 8 408041.99904 14 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 67021.2864 4 +Q7K1W5 LD35843p 35.11 14 28 14 2029908.5165 27 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 31225.458749999998 8 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 1569097.9069 27 +Q7K2E1 LD05247p 11.72 7 10 7 144654.98330000002 8 +Q7K2K2 FI04612p 7.06 2 3 1 15952.18772 2 +Q7K2L7 GH27120p 17.59 3 12 3 439844.36179999996 10 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 56687.5244 6 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 48240.015 4 +Q7K2P3 GH20817p 63.91 15 37 1 769715.99577 33 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 151974.23746 5 +Q7K2W6 tyrosinase 26.81 17 23 17 75231.31021 18 +Q7K332 GH17623p 30.96 8 10 7 176225.70705 8 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 757032.25303 16 +Q7K3E2 LD34147p 66.97 33 68 33 3761536.0837 63 +Q7K3H0 LD28067p 2.56 5 7 0 47744.307 4 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 2207339.2508 36 +Q7K3N4 GH26015p 15.98 7 11 7 201877.20515 10 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 218871.88559999998 8 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 329465.3897 16 +Q7K3W4 GH08941p 26.81 8 27 8 1173122.3264 26 +Q7K3Y9 Spondin-1 4.58 3 3 3 3598.7672000000002 2 +Q7K3Z3 GH01724p 56.76 18 53 18 1122220.08345 47 +Q7K485 Cathepsin D 28.83 8 27 8 3040772.6135 25 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 110267.311 7 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 12046.0988 2 +Q7K4J7 LD36653p 7.38 2 3 2 34138.1785 3 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 47688.447 4 +Q7K4T8 LD23856p 6.99 3 4 3 6592.73587 3 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 2385.81907 2 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 230793.5186 9 +Q7K519 GH16429p 23.9 7 8 7 115685.10582 8 +Q7K533 GH14572p 5.48 2 2 2 12152.534 2 +Q7K549 GH13040p 21.35 8 10 8 56584.8662 10 +Q7K568 GH10642p 21.49 6 8 6 92029.9647 5 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 4398528.77577 61 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 277976.63365 14 +Q7K5M6 GH04176p 37.5 9 17 9 687866.42666 15 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 956560.023 23 +Q7K860 FI07231p 39.22 6 19 6 5184237.384000001 19 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 1976370.13814 17 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 11145.1222 2 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 38265.38986 5 +Q7KK54 MIP07328p 10.52 7 7 7 89451.21745 7 +Q7KK90 GH14654p 50.0 8 36 8 4095042.7373 25 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 1192332.6242 24 +Q7KLE5 Amphiphysin 37.04 23 65 2 3431647.2468700004 60 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 348861.91959999996 14 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 1789569.039 12 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 164257.57679999998 5 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 34894.89565 5 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 1912409.85643 22 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 2563627.14535 66 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 15260.8843 2 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 78073.07543999999 7 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 9258.8406 2 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 1348285.13754 37 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 11165591.14648 99 +Q7KND8 FI09619p 6.03 4 5 4 35742.1204 4 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 1562123.77225 16 +Q7KRT4 GH07253p 2.47 1 1 0 6383.426 1 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 39802.90283 6 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 111772.0998 6 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 531041.0388 12 +Q7KSE4 GH05443p 2.78 2 2 2 7771.3044 2 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 753627.5811 17 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 4042586.5037 32 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 26946.994599999998 3 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 19360.64966 6 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1192981.95744 25 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 2513526.83361 47 +Q7KT58 GH08155p 4.4 1 1 1 6073.012 1 +Q7KT70 FI18641p1 0.94 1 1 1 3618.085 1 +Q7KTA1 HL01444p 20.67 8 10 8 123323.94570000001 9 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 448461.0097 25 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 7055772.12132 77 +Q7KTN9 FI01009p 3.11 2 2 0 11582.7485 2 +Q7KTP7 LP22840p 45.86 7 12 7 383736.5144 11 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 5877430.34919 83 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 811192.8039 30 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 4424.136 1 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 924048.27814 20 +Q7KUD4 phospholipase A2 6.43 6 7 0 38554.526099999995 6 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 202545.16206 14 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 1346.47168 2 +Q7KUT5 Protein MIX23 26.89 3 3 0 37521.4494 3 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 137120.4099 6 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 51022.087999999996 6 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 365730.39577 31 +Q7KV27 alanine transaminase 54.93 32 121 0 19741233.058 113 +Q7KV34 Pinkman 57.32 33 64 33 4159551.98532 62 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 66893.978 4 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 560673.35525 16 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 36713.241299999994 4 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 17833459.13106 83 +Q7KY04 small monomeric GTPase 23.47 5 14 4 14243.9218 2 +Q7PL91 GEO11417p1 30.85 5 12 5 871826.70115 10 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 7232.32174 3 +Q7PLI0 P120 catenin 17.03 14 17 14 459837.51060000004 15 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 464552.7418 26 +Q7PLS1 LD01937p 14.61 5 6 0 163333.39640000003 4 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 74056.1344 4 +Q7YU88 SD08871p 4.1 3 3 0 1822.9994 1 +Q86B44 Glutathione synthetase 19.4 8 9 0 100048.9255 8 +Q86B74 WASp, isoform C 10.53 4 4 0 56258.9793 4 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 21543.396 2 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 9031.559 1 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 484987.6069 16 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 245462.23979999998 14 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 841498.93114 27 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1248072.24795 22 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 1697178.3455 21 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 992138.6992 36 +Q86BS3 Chromator, isoform A 35.53 26 44 26 764170.01713 37 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 7212.2783 3 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 937509.36867 25 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 82346.6183 4 +Q8I077 BcDNA.LD22910 1.76 2 2 2 10284.5905 2 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 200157.7498 7 +Q8I0D4 RE20510p 21.32 17 37 0 2574968.5734200003 35 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 43118.5087 5 +Q8I0P9 acid phosphatase 9.67 4 4 0 118444.07759999999 3 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 1589085.1635 23 +Q8I930 GH14147p 3.57 3 4 0 23803.823 4 +Q8I941 GH16843p 32.88 8 25 8 785936.92318 24 +Q8IG84 SD21996p 13.42 14 125 0 472.1052 1 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 18363.3357 2 +Q8IGY1 RE08101p 33.19 42 295 0 20642923.15107 159 +Q8IH23 GEO02102p1 67.41 6 14 6 1268728.91596 14 +Q8IM93 FI18814p1 35.27 16 37 16 1361485.37537 30 +Q8IMF4 RE24176p 6.68 3 3 0 15086.6352 3 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 1621226.28028 35 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 26821.328999999998 3 +Q8IMQ8 RH29536p 46.4 14 49 0 6428799.43517 47 +Q8IMT3 IP12392p 10.71 4 5 4 62805.14 4 +Q8IMT6 FI01822p 10.66 5 6 5 123929.8946 6 +Q8IMU2 RE10237p 19.18 4 5 0 151798.5886 5 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 25130.543700000002 4 +Q8IMX4 FI04408p 10.85 4 6 0 69616.2762 6 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 313140.40454 10 +Q8IN49 MIP05539p 11.03 10 11 10 194730.9292 9 +Q8IN51 FI17609p1 37.59 7 14 7 387135.178 14 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 66505.235 2 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 152996.89500000002 4 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 34029.03707 4 +Q8INH5 Aminopeptidase 7.53 7 11 0 163662.8573 11 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 145422.998 3 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 42336.871 2 +Q8IP52 RE16941p 0.86 1 1 1 8343.657 1 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 222593.82214 7 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 885851.89616 18 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 22890.787500000002 5 +Q8IP97 Peroxin-19 35.62 9 32 9 2536459.6835 28 +Q8IPA5 RE15581p 10.0 3 3 0 71829.908 3 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 23992.564 3 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 776100.292 14 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 9493635.69051 99 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 76513.8808 8 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 12622.01 1 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 15733.0177 3 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 867861.7621 18 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 70629.70449999999 4 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 165341.6654 6 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 516.9866 1 +Q8IPT9 SD05439p1 39.06 11 32 0 1160179.58018 28 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 3160920.4782100003 49 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 10203.1621 2 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 20894.4294 4 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 44271.2414 7 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 4320.2104 1 +Q8IQB7 MIP21654p 9.44 3 3 3 170980.2882 3 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 138531.72534 12 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 115100.29389999999 5 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 111517.79299999999 3 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 17912.18 1 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 126039.47274 9 +Q8IQH0 FI12817p 4.98 8 9 1 125216.06460000001 8 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 175035.4202 9 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 167710.76087 22 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 14920.3262 2 +Q8IQU1 LD36620p 19.62 9 13 1 112269.4647 2 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 53673.4268 2 +Q8IQW5 RE23625p 70.83 13 77 3 6124388.73433 64 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 51361.776 5 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 38182.3422 3 +Q8IR72 FI19011p1 10.06 1 1 1 19004.604 1 +Q8IR76 FAD synthase 16.33 4 4 0 32761.080500000004 4 +Q8IRD0 RH17559p 42.86 3 8 3 511292.2167 8 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 15617157.4133 69 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 518949.45936 18 +Q8IRI5 Trio, isoform D 15.92 12 15 2 163339.22136 13 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 15626646.46819 128 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 37551.762 2 +Q8MLP9 GEO08457p1 33.04 4 5 4 72585.1177 4 +Q8MLQ0 FI14118p 11.84 1 1 1 4174.35 1 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 626454.2474999999 12 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 649395.8293 16 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 27043.3841 3 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 637098.5904999999 14 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 5221399.50618 94 +Q8MQP2 MIP16184p 2.67 1 1 0 72474.18 1 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 10522.314900000001 2 +Q8MRM0 GH16740p 27.0 6 9 6 697955.2749 8 +Q8MRS5 AT03104p 0.71 1 1 0 6371.383 1 +Q8MRT7 SD26038p 13.79 3 4 3 63764.214 4 +Q8MRW1 SD19278p 14.08 2 4 2 177373.951 4 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 13451.926360000001 6 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 7446.6514 1 +Q8MSI2 GH15296p 85.19 22 138 22 26855242.97656 122 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 53297.1017 6 +Q8MST5 Tubulin beta chain 40.7 17 120 0 1275052.42692 29 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 6311197.08618 70 +Q8MZ07 GEO07581p1 6.16 1 1 1 46482.78 1 +Q8MZI3 RNA helicase 14.91 11 20 5 644323.86916 11 +Q8SWS2 RE29468p 77.51 8 32 0 1000272.3265600001 27 +Q8SWS3 RE26528p 17.13 2 6 2 142762.37537 5 +Q8SWZ6 RH51312p 15.35 3 7 3 29566.235370000002 5 +Q8SX06 GEO08318p1 15.43 2 2 2 6329.5695 2 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 10783.99 1 +Q8SX35 GEO07743p1 55.78 5 9 1 167883.28644 8 +Q8SX50 RE04530p 17.6 6 7 0 140843.852 7 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 10222.8123 2 +Q8SX57 LD44221p 38.91 7 17 7 341291.6529 17 +Q8SX78 LD05679p 21.72 9 9 9 144496.418 9 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 49924.49644 6 +Q8SXC2 FI04487p 9.56 5 5 5 36413.1098 5 +Q8SXD5 GH02216p 57.69 13 41 2 2268669.368 36 +Q8SXE1 RH69521p 4.68 2 2 2 35616.8527 2 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 122921.0856 6 +Q8SXF2 RH40246p 8.18 4 4 4 69860.902 4 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 39669.252 2 +Q8SXK0 RE18748p 6.55 2 2 2 35209.5904 2 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 720736.2066 22 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 37417.59857 8 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 1193144.939 19 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 3663.728 1 +Q8SXS0 RE40914p 16.23 5 6 5 45640.2813 5 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 2072753.1471 30 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 24094.862500000003 4 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 272343.6981 7 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 4492.013 1 +Q8SY67 lysozyme 14.47 2 6 2 302086.2541 6 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 1106729.035 7 +Q8SYC4 RE68566p 3.93 2 2 2 55914.206 2 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 3976816.14596 70 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 1659902.3045 25 +Q8SYH8 RE57644p 19.05 5 10 0 152346.51365 10 +Q8SYJ2 GEO09626p1 67.47 10 68 10 8833376.0035 65 +Q8SYQ4 RE42475p 69.59 10 50 10 3301987.18018 46 +Q8SYQ8 RE40412p 27.94 4 9 4 113097.75206 9 +Q8SZK5 RH26533p 16.4 3 4 3 84838.3636 3 +Q8SZK9 HL04814p 59.31 15 64 15 8403411.2472 62 +Q8SZM2 RH04334p 28.15 9 35 9 5772388.9424 33 +Q8SZN1 GEO08217p1 73.39 10 27 5 1526534.3875 27 +Q8T0I9 GH27479p 28.88 11 16 1 454293.4072 14 +Q8T0J5 GH26851p 40.42 12 39 0 4952123.900049999 39 +Q8T0N5 GH17516p 19.54 8 15 8 568856.0913 15 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 61626.3095 5 +Q8T0V2 GH02495p 25.5 11 20 0 406100.0812 15 +Q8T389 Endophilin B 43.12 16 71 0 8380.6292 2 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 33797.837999999996 5 +Q8T3W8 Venom allergen-1 12.6 4 6 0 85072.6903 5 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 8374.332 1 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 1579453.3313 31 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 3685100.44422 76 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 11976.333999999999 2 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 7958.266 1 +Q94513 Boundary element associated factor 18.79 5 8 1 59666.49972 7 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 17789.723400000003 2 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 54349.536 3 +Q95NU8 GH16255p 14.82 7 11 7 211095.537 10 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 16790.5714 4 +Q95PE4 GEO07784p1 5.56 1 1 1 6778.2373 1 +Q95R34 GH16463p 12.62 4 5 4 101682.0925 4 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 161174.6859 6 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 55830.49021 8 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 27534279.481540002 157 +Q95RC5 LD44506p 4.95 3 3 3 20129.4414 3 +Q95RE4 LD37574p 51.42 13 23 0 62426.29172 17 +Q95RF6 LD34461p 34.5 4 12 4 327238.1405 12 +Q95RI2 LD28549p 31.37 9 11 9 136498.1772 11 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 75488.26909999999 5 +Q95RP1 LD18295p 10.71 2 2 2 20050.8826 2 +Q95RQ1 LD16414p 3.32 2 2 2 5541.7073 2 +Q95RR6 LD15002p 64.6 18 79 0 84050.641 2 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 306254.188 8 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 603581.4262999999 7 +Q95RY2 LD01461p 45.04 9 18 2 319395.8179 15 +Q95SH0 GH26463p 2.44 2 2 2 148920.3315 2 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 574291.7493 23 +Q95SH7 GH26007p 3.49 1 2 1 172043.03 2 +Q95SI7 GH23390p 75.09 18 61 18 3603097.95613 57 +Q95SN8 GH12395p 15.49 4 7 4 201151.1101 6 +Q95TK5 LD44914p 21.21 9 14 8 277513.63196 13 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 1602937.71076 31 +Q95TP0 LD34582p 4.51 2 2 2 8726.963 1 +Q95TZ7 GH19182p 85.32 28 147 0 12055835.38974 119 +Q95U15 GH14252p 83.65 34 259 0 3244761.0741 29 +Q95U34 GH11113p 30.82 13 27 13 1569801.2505 26 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 261367.0841 9 +Q960D4 SD06560p 20.91 13 13 0 429633.66370000003 13 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 18046247.58414 96 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 518174.3049 24 +Q961A8 LD25351p 2.07 1 1 0 2988.9358 1 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 130795.4407 3 +Q961B9 LD24073p 3.72 2 2 2 67486.577 2 +Q961C8 LD22649p 9.84 4 4 0 47245.2563 4 +Q961E7 phosphorylase kinase 7.88 4 5 0 60186.293 3 +Q961K6 GH19047p 3.18 2 2 2 3354.037 1 +Q961Q8 GH10454p 8.89 4 5 4 60190.352100000004 5 +Q961T9 GH07914p 32.94 6 12 6 501741.4031 12 +Q961X4 Combover, isoform B 17.43 11 13 0 54295.904129999995 12 +Q966T5 Paxillin, isoform D 28.93 7 20 4 94523.2179 6 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 81161.96126 7 +Q9I7H8 LD37276p 14.29 4 5 4 39318.2957 4 +Q9I7I3 GH12831p 12.97 4 4 4 54681.0295 4 +Q9I7J0 GH21596p 72.19 11 40 11 2691989.86421 36 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 45222.51 2 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 84162.27748 5 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 1012423.2848 25 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 2197689.87567 23 +Q9NCC3 Sorting nexin 15.58 8 10 8 303490.37309999997 10 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 17342.01915 2 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 4412.0436 2 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 283214.8147 8 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 445739.72965 15 +Q9U6P7 FI18813p1 10.55 5 7 5 292174.3102 7 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 1891142.6862 59 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 109140.89039999999 7 +Q9V393 Kurtz arrestin 5.32 2 3 2 32519.171 2 +Q9V396 Carbonic anhydrase 58.15 15 45 15 3096923.50756 42 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 43906.5901 3 +Q9V3C8 DShc protein 5.62 2 2 2 22396.1005 2 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 383962.76430000004 16 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 92319.0017 5 +Q9V3E7 LD24793p 42.86 14 26 14 451120.17867 23 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 15158.846150000001 4 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 461373.5362 14 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 430359.58979999996 8 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 265073.1585 9 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 2912864.8257 56 +Q9V3N9 B6 4.48 3 3 3 107240.52100000001 3 +Q9V3P3 LD45860p 39.18 10 21 10 899131.0028 21 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 43340.9069 4 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 22458.4156 2 +Q9V3T8 LD32469p 18.46 4 6 4 68537.8312 4 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 4411308.0785 34 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 2692542.29334 54 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 5903385.9282 63 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 931266.13741 32 +Q9V3W2 GM23292p 66.47 16 60 16 4442828.5107 53 +Q9V3W7 LD40489p 52.16 11 26 11 494980.89135 21 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 675101.1406 32 +Q9V3Y4 LD43650p 20.57 5 8 5 144641.4284 7 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 1291109.94419 30 +Q9V3Z4 GH11341p 30.28 14 31 14 1207607.3392 24 +Q9V3Z9 HL02234p 42.6 17 39 17 4323955.1563 37 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 23314.7661 5 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 2523178.41844 48 +Q9V406 Activator protein 4 13.31 7 11 7 340859.21885999996 11 +Q9V420 FI02878p 15.83 8 12 8 408741.0266 10 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 668343.0429 16 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 41808.5103 5 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 880142.4046 17 +Q9V455 Importin subunit alpha 22.37 11 25 11 1664913.7196 24 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 2085834.61605 42 +Q9V491 Plexin A, isoform A 1.44 3 3 0 25506.875 3 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 2220350.2587099997 69 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 5967699.4518 69 +Q9V4E0 Complex I-49kD 31.41 12 19 11 481758.4526 19 +Q9V4E7 Transporter 9.12 6 7 3 337607.068 7 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 11834.614 3 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 803162.4526000001 11 +Q9V9Q4 LD43819p 30.23 12 26 12 695665.8383 22 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 159303.9739 8 +Q9V9T5 GM14617p 13.75 10 10 0 81724.9432 9 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 25435.709000000003 2 +Q9V9U0 RE35358p 4.79 1 2 1 72975.739 2 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 546681.33008 12 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 6716.66242 2 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 754840.8189 17 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 1784922.9184 24 +Q9V9W4 GH08048p 1.69 1 1 1 3081.9844 1 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 24423.174600000002 2 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 258570.84999999998 6 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 4360835.57037 82 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 454208.23136 13 +Q9VA34 LP06141p 1.88 2 2 2 27204.698 2 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 347821.87849 20 +Q9VA41 GEO08227p1 52.87 7 18 3 422986.63080000004 12 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 2487052.9758 24 +Q9VA56 GH23271p 63.77 23 81 2 49123.2299 5 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 40248.715 1 +Q9VA71 FI19924p1 4.52 1 2 1 5568.8096000000005 2 +Q9VA76 IP18706p 16.43 6 8 6 46922.551999999996 4 +Q9VA81 GEO10172p1 29.29 5 5 5 96206.58750000001 5 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 96346.53300000001 3 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 404858.91610000003 13 +Q9VAA6 GEO12235p1 19.62 3 7 3 191257.05500000002 7 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 273386.9595 18 +Q9VAC1 GM14349p 45.49 17 130 17 18141380.89225 120 +Q9VAC4 GEO09167p1 63.46 7 16 7 992643.8104 15 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 58681.37833 8 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 9725.564 2 +Q9VAD7 RH37294p 18.5 3 3 3 51898.0684 3 +Q9VAG3 trypsin 17.0 4 7 4 127479.84349999999 7 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 539238.3095 13 +Q9VAI9 GEO07291p1 62.25 8 60 5 5900593.1305 54 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 439725.2623 15 +Q9VAL5 protein-tyrosine-phosphatase 0.86 1 1 0 754.9551 1 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 1544744.52112 64 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 21109034.95637 126 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 65018.64413 6 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 10757.378 1 +Q9VAU6 LD27564p 2.99 2 2 2 17052.253 2 +Q9VAV2 FI21480p1 16.52 13 16 13 335571.9547 15 +Q9VAY0 Neprilysin 7 5.16 4 4 4 31594.076399999998 4 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 4215424.64516 75 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 41645.520000000004 3 +Q9VAY9 GH07821p 7.89 3 3 3 42871.0786 3 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 2159781.30607 46 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 3561562.4811 45 +Q9VB17 IP11341p 7.98 3 3 3 99792.04 1 +Q9VB22 LD33695p 14.29 8 11 8 157631.8077 10 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 373444.27999999997 20 +Q9VB51 GEO08385p1 42.96 3 3 3 45270.149000000005 2 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 674930.9116 23 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 24064.891600000003 3 +Q9VB69 Malic enzyme 20.75 12 16 1 109843.1141 15 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 7815.142099999999 2 +Q9VB77 IP09938p 12.18 4 4 4 93173.57 4 +Q9VB79 IP09473p 24.22 8 17 8 586831.2305 15 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 5952636.32496 53 +Q9VB86 LP07342p 10.14 2 3 1 22842.1447 3 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 1982267.5996 29 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 26259.669 3 +Q9VBC9 Beaten path VII 13.15 4 4 4 132520.32650000002 4 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 9019459.57433 83 +Q9VBI3 RH72336p 28.52 9 21 9 778859.85755 19 +Q9VBL3 GH01188p 13.79 7 7 7 42647.4419 7 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 1210479.41 6 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 24976.614 2 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 21039687.09625 133 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 15152.755 1 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 1052488.79684 24 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 282971.3724 8 +Q9VBT2 IP11926p 9.86 4 4 4 17986.6649 3 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 37015.0119 3 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 3533545.1119999997 8 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 237032.0125 9 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 3286295.8876 44 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 36706.6747 6 +Q9VC06 LD37516p 15.21 10 15 10 149110.41306 15 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 13795.6116 2 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 634105.3935 20 +Q9VC30 RE05274p 8.06 1 2 1 4455.6358 2 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 496584.2952 15 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 529403.5161 14 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 385368.663 10 +Q9VC58 Syntaxin-18 8.86 4 4 4 21336.932 4 +Q9VC66 AT25567p 28.82 13 18 13 306123.21895 18 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 30424.6266 4 +Q9VC87 RE57978p 10.75 4 4 4 13802.588069999998 3 +Q9VCB9 FI08802p 26.23 6 12 6 579117.1923 12 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 812190.8691700001 10 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 62992.376449999996 3 +Q9VCF8 LD23561p 23.45 8 11 8 220599.91915 11 +Q9VCI4 LD32918p 3.55 3 3 3 37705.414000000004 3 +Q9VCI7 LD02979p 17.37 7 12 0 242279.92012999998 11 +Q9VCK6 LD34157p 20.89 8 10 8 225107.85856 7 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 74156.93299999999 4 +Q9VCR4 FI17836p1 7.58 6 7 6 69046.927 6 +Q9VCR9 RH48101p 39.61 11 25 11 1209683.4647300001 22 +Q9VCT4 Klingon 6.06 3 4 3 29098.6956 4 +Q9VCU0 GEO02312p1 34.17 4 8 4 406420.6874 8 +Q9VCU1 FI07649p 1.31 1 1 1 5947.103 1 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 62575.166 2 +Q9VCW2 Cardinal 5.3 5 6 5 71981.9501 6 +Q9VCW6 GCS light chain 36.14 13 31 13 1651175.0826 27 +Q9VCZ2 FI07970p 2.48 1 1 1 22350.977 1 +Q9VD00 FI07666p 23.74 6 12 6 206901.82693 11 +Q9VD01 LP12095p 18.75 3 3 3 65879.255 2 +Q9VD02 GH14779p 30.73 4 10 4 313815.49177 10 +Q9VD13 GH02671p 14.64 8 9 0 99040.64425 8 +Q9VD14 GH07286p 17.02 9 13 9 179939.30943 12 +Q9VD29 small monomeric GTPase 54.92 10 33 10 1590275.85663 26 +Q9VD30 GH05294p 79.44 14 60 14 6079569.19066 48 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 23966.656 1 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 14558725.5229 79 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 92927.5311 6 +Q9VD68 GH19849p 6.84 3 3 3 31693.256 3 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 26172.318 1 +Q9VDC0 GH01837p 24.0 5 14 5 450689.4489 12 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 8594.851200000001 2 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 8556.6973 2 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 908386.5636999999 13 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 930348.5873 14 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 896786.0271 25 +Q9VDH3 GH08630p 58.77 13 36 13 2665192.23783 33 +Q9VDI1 LD46328p 56.88 24 81 1 2153399.54337 71 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 64797.29 3 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 160793.18633 13 +Q9VDK2 GH15831p 3.87 3 3 2 40508.2603 3 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 370519.4882 26 +Q9VDK9 GH12359p 4.89 3 4 3 135519.95299999998 4 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 85009.67499999999 4 +Q9VDL5 GEO09602p1 52.24 3 3 3 65520.21374000001 3 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 586597.8033 8 +Q9VDQ3 Identity crisis 8.06 4 4 4 26699.3106 4 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 1061168.1113 20 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 12366.581 2 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 708180.91605 17 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 22272.0553 5 +Q9VDU7 nicotinamidase 31.37 11 16 11 418779.4107 16 +Q9VDV2 AT06125p 8.26 4 4 3 49581.4595 3 +Q9VDY8 MIP08680p 74.26 18 75 2 4446315.56693 62 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 3366994.907 46 +Q9VE08 GH10002p 13.62 3 3 3 27497.9194 3 +Q9VE12 LD27322p 19.44 7 8 7 62332.8166 5 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 83873.6063 5 +Q9VE31 GEO12059p1 18.92 2 2 2 3329.1669 2 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 63123.5297 7 +Q9VE56 FI17806p1 18.88 4 7 4 333840.2817 5 +Q9VE57 GEO10850p1 6.9 1 2 1 21578.7524 2 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 11765.0926 2 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 35735.564 2 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 103193.4762 9 +Q9VE94 LD14127p 8.85 3 4 3 55157.490099999995 4 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 515117.5475 13 +Q9VEA7 FI01460p 44.94 3 5 3 479706.5175 5 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 62177212.57443 262 +Q9VEB7 AT04491p 12.1 4 4 4 35419.097499999996 4 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 224886.69439999998 9 +Q9VEC6 LD29902p 14.83 12 17 0 2102.4416 2 +Q9VEC8 RE23139p1 26.15 3 3 3 159540.95270000002 3 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 151374.7953 7 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 41210.724 3 +Q9VEG8 RE59232p 10.8 2 2 2 36160.0504 2 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 171127.5388 4 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 1484440.8306 28 +Q9VEJ9 Curly Su 2.39 2 2 2 9237.0288 2 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 136656.46899999998 7 +Q9VEK8 GH07711p 39.88 11 22 11 579162.1516 21 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 346638.73086 15 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 14123.471 1 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 28386.8437 5 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 514337.10730000003 22 +Q9VEP8 GH11385p 21.38 13 18 13 221459.7295 17 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 346901.30559 20 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 149403.0344 8 +Q9VES8 RE28913p 29.5 9 16 9 1121602.8823 16 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 134585.904 3 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 506415.24665 19 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 9457.1636 2 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 17949.2887 2 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 59403.956999999995 5 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 712261.9626 27 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 18818.822 1 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 2651522.539 32 +Q9VEY9 GH15759p 3.1 1 1 1 650.605 1 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 155053.5937 11 +Q9VF15 GEO09476p1 81.05 12 39 8 2655215.2968 38 +Q9VF23 arginine kinase 12.25 6 7 6 85931.014 7 +Q9VF24 Crossveinless d 3.88 6 7 6 89818.9326 7 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 406374.2282 17 +Q9VF39 FI01459p 13.04 5 7 5 166803.60022999998 6 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 316884.8913 14 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 83707.5916 7 +Q9VF77 FI16517p1 10.74 4 5 4 76463.98905 5 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 17707.968 2 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 44662.745299999995 3 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 302780.549 8 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 45122.8147 4 +Q9VFC7 Mf5 protein 84.93 39 273 0 11270030.6991 175 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 33936.681 2 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 24996096.74046 130 +Q9VFI3 GEO08281p1 45.19 3 10 3 176534.49254 6 +Q9VFM0 GH19262p 7.14 4 5 4 57988.842699999994 5 +Q9VFN7 GEO07678p1 27.67 5 18 5 498598.441 18 +Q9VFN9 GEO07882p1 54.84 7 9 7 101008.01923 8 +Q9VFP0 RH07106p 18.65 6 7 6 120932.78959999999 6 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 2189412.5672 37 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 955647.5449 22 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 4829.0127 1 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 91753.8124 5 +Q9VFT4 AT27578p 16.09 9 13 9 102233.14295 9 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 32140.068 2 +Q9VFV1 RE55542p 9.81 5 7 5 50703.661400000005 7 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 7007132.2587 47 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 127025.26819999999 4 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 53129.892 5 +Q9VG01 RE12073p 1.88 1 1 1 8965.6455 1 +Q9VG04 Protein MEMO1 2.71 1 1 1 5417.3945 1 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 19415.659 3 +Q9VG23 GH22994p 69.3 12 69 1 5618339.9305300005 60 +Q9VG26 MIP06012p 45.07 9 28 9 1153949.74096 22 +Q9VG28 Beaten path Vc 5.39 2 2 2 28589.465 2 +Q9VG31 Malic enzyme 19.79 16 26 0 991117.0377 24 +Q9VG33 Sulfurtransferase 85.45 8 22 8 1811342.31607 20 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 40504.96286 6 +Q9VG44 RE14195p 2.98 2 2 2 5567.528 1 +Q9VG51 Sorting nexin-3 51.5 8 25 8 1308666.3955 18 +Q9VG62 Toys are us 2.89 2 2 2 19765.3357 2 +Q9VG69 LP03547p 42.59 16 39 16 2141926.64217 36 +Q9VG81 RH49330p 11.14 5 6 5 93487.8386 6 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 58549.90127 5 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 1195784.0042 22 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 59845.924000000006 4 +Q9VGA3 LD12305p 36.82 8 23 7 1814737.8842 19 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 23142.1856 2 +Q9VGE4 FI04457p 6.96 8 8 8 87787.47676 8 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 17854.6493 3 +Q9VGF3 IP11040p 18.84 6 7 6 119001.2384 7 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 3285970.65095 40 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 428620.232 6 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 185580.19389999998 15 +Q9VGL0 LD43047p 2.61 3 3 3 11167.8514 3 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 66496650.17139 183 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 111885.7666 4 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 13811402.4276 68 +Q9VGQ8 Arfaptin 25.35 9 11 9 213431.6147 9 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 21632.117 3 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 29690.893399999997 4 +Q9VGS3 RH44771p 23.39 4 22 4 1157252.506 19 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 14091.11 2 +Q9VGT3 GM04645p 3.98 2 2 2 2140.3201 2 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 42680.35062 7 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 46191.38 1 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 128997.07800000001 5 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 363120.7862 10 +Q9VGY2 Peptide deformylase 5.88 2 3 1 40284.037 3 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 108232.27429999999 6 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 81092.49513 14 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 111019.4752 7 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 640330.9316499999 15 +Q9VH37 IP06524p 27.09 5 7 5 313019.816 7 +Q9VH64 LD29322p 19.0 7 8 7 315537.2944 8 +Q9VH66 FI18258p1 24.89 5 9 5 140377.9548 9 +Q9VH72 TA01656p1 37.25 6 10 6 435182.1174 10 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1100396.6596 43 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 141745.359 7 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 25796.015 3 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 72876.12992 10 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 211074.9945 6 +Q9VHA8 LD25575p 15.06 10 12 10 549184.8691 12 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 933841.9692599999 19 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 50709.5687 4 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 301808.25017 21 +Q9VHC7 FI21236p1 34.65 17 32 9 1009545.2951999999 26 +Q9VHC8 LD31448p 10.06 2 2 2 2945.4238 1 +Q9VHE3 GH05665p 1.79 1 1 1 12317.169 1 +Q9VHE4 omega-amidase 20.85 7 16 7 714811.758 16 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 229370.9767 6 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 345072.302 6 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 122670.2324 4 +Q9VHH8 Beag 1.26 1 1 1 3259.4846 1 +Q9VHI1 Hyrax 8.36 4 4 4 26300.545699999995 4 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 1869132.5211 21 +Q9VHJ2 LD32381p 9.12 3 3 3 138019.1824 3 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 5242.3237 1 +Q9VHJ7 LD41978p 4.48 3 3 3 59934.42334 3 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 3050591.32209 44 +Q9VHM3 LD30467p 8.85 4 4 4 34872.457800000004 3 +Q9VHN4 GH14121p 12.64 3 4 3 38860.29725 4 +Q9VHN7 transketolase 30.51 16 25 2 478954.34375 21 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 24930.21 2 +Q9VHR5 Veneno 2.96 2 2 2 2995.5203 1 +Q9VHT3 CG9617 protein 20.79 4 5 4 71407.4231 5 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 83920.9117 5 +Q9VHX2 GH08043p 4.58 2 2 2 37552.768 2 +Q9VHX4 LD24679p 77.51 23 101 23 10183061.91246 90 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 269250.43973 11 +Q9VI09 GH14494p 52.48 7 29 7 1460973.87153 28 +Q9VI21 Dementin, isoform D 2.98 2 2 0 7062.3946 2 +Q9VI24 LD25151p 4.38 1 1 1 2887.6929 1 +Q9VI53 LD44267p 19.43 7 13 7 112553.55726 11 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 84440.6472 4 +Q9VI64 LD30995p 46.46 14 42 14 3166235.5699 37 +Q9VI66 GH28833p 15.54 4 6 4 146170.9045 6 +Q9VI80 Thawb 2.46 2 4 2 15432.35364 4 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 27639.64462 6 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 63678.6913 5 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 71064219.55904 305 +Q9VIF2 GM01519p 11.13 6 8 6 414446.778 7 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 434346.82245000004 12 +Q9VIH1 CG9273 protein 29.27 6 7 6 146798.903 7 +Q9VII5 GEO08323p1 20.13 3 8 3 475748.62225 8 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 114134.75764 2 +Q9VIJ3 FI14214p 45.0 7 10 2 113566.74333 6 +Q9VIJ5 GEO05038p1 20.15 2 3 2 16555.8848 3 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 11043.906799999999 2 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 154262.29690000002 16 +Q9VIL2 LD19544p 23.14 4 5 4 31714.0767 4 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 570200.463 12 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 161283.728 5 +Q9VIQ5 RH02620p 29.08 5 7 5 219837.21000000002 4 +Q9VIQ6 FI17342p1 17.68 4 5 4 34094.8148 5 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 6354827.0253 60 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 15990.5312 3 +Q9VIU3 FI23988p1 3.98 2 2 2 12143.1547 2 +Q9VIV6 GH04973p 8.83 3 3 3 220099.5143 3 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 54055.838 2 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 3281.9249600000003 2 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 375631.849 4 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 353245.13245 14 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 993941.7263 20 +Q9VJ22 GH09876p 5.41 2 2 2 29540.2457 2 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 107064.398 3 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 964654.548 18 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 184234.7182 8 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 1924715.2748 29 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 258084.22295999998 14 +Q9VJ59 PRA1 family protein 5.31 1 2 1 71942.322 2 +Q9VJ60 GM16226p 17.29 3 4 3 146159.421 4 +Q9VJ61 SD03870p 4.67 2 2 2 8126.443799999999 2 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 322997.99425 15 +Q9VJ80 LD42267p 8.46 10 12 10 158648.5442 12 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 181488.58954 13 +Q9VJA9 GH07373p 7.69 5 6 0 54340.9121 6 +Q9VJC0 GEO08203p1 37.96 5 8 5 211907.15949999998 8 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 120690.6703 5 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 969302.1963 21 +Q9VJD4 LD24721p 34.44 12 41 12 3598578.5944 35 +Q9VJE3 LD24839p 11.63 6 8 6 52304.33145 8 +Q9VJH8 FI03416p 3.13 2 2 2 9378.365 2 +Q9VJI5 Protein yellow 16.56 8 9 8 544065.0938 9 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 171827.033 5 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 1448104.2372 21 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 25366.201 1 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 348044.0962 10 +Q9VJQ3 Protein yellow 38.13 15 33 14 3695256.02343 31 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 20082.4692 3 +Q9VJU6 IP09831p 7.3 2 3 2 50890.363 2 +Q9VJU8 GH23407p 10.27 5 6 5 59416.3352 5 +Q9VJZ1 FI21342p1 11.57 6 7 6 123429.46294999999 7 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 2756272.8126 40 +Q9VJZ5 LD07294p 26.58 8 14 8 220518.4292 12 +Q9VJZ6 LD40224p 76.39 13 40 13 1417283.7202 35 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 590968.0755 13 +Q9VK11 GH15921p 22.65 6 13 6 743822.8003 13 +Q9VK12 GH20621p 64.8 18 93 18 9011847.98581 85 +Q9VK18 LD36945p 17.14 9 10 9 65797.6219 7 +Q9VK19 FI07225p 7.72 1 1 1 6833.523 1 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 3158.5195 1 +Q9VK31 LD35592p 5.19 2 2 2 2560.6885 1 +Q9VK39 FI09204p 52.83 5 23 5 481917.833 18 +Q9VK43 LD10135p 7.71 3 3 3 13440.482629999999 3 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 128197.53897 4 +Q9VK59 LD23647p 33.58 28 46 28 602648.3345 39 +Q9VK60 GH25425p 52.14 13 50 13 3093477.63248 46 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 3118084.585 44 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 333599.4642 13 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 148325.90240000002 10 +Q9VK99 Atilla, isoform B 51.75 8 30 8 1586390.9874200001 27 +Q9VKA1 FI02817p 16.23 4 6 4 43376.0983 3 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 20994.3044 3 +Q9VKC8 FI03495p 14.26 8 10 8 296443.45665 10 +Q9VKD9 MIP16835p1 1.35 1 1 1 4490.8213 1 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 24444890.63563 368 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 94267.68683999998 6 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 122894.946 2 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 15150.061 1 +Q9VKI8 GH03305p 65.36 19 134 19 7944489.84859 125 +Q9VKJ4 Csl4 18.14 3 4 3 70983.49 3 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 7565358.87295 59 +Q9VKM7 AT01533p 7.09 4 10 0 329914.8725 10 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 167265.9377 16 +Q9VKQ5 GEO07393p1 16.94 2 4 2 171614.435 2 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 24363.6624 3 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 897868.8185 21 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 233633.09350000002 9 +Q9VKU5 LD37206p 14.04 4 4 4 47204.590000000004 2 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 2063330.07983 37 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 49521.6039 5 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 101426.6139 7 +Q9VKW1 LD41958p 1.96 1 1 1 1972.5459 1 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 288296.83935 16 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 14268.243020000002 2 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 13977771.76928 156 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1082103.374 12 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 154819.8138 14 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 929831.83205 30 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 2551017.01283 44 +Q9VL02 GH08677p 19.51 7 7 2 96949.3583 7 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 255833.09 12 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 93737.6982 5 +Q9VL16 RE45833p 30.77 7 30 7 2932567.29615 27 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 4762.435 1 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 41972.4794 3 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 742.87054 1 +Q9VL57 RE10231p 2.85 1 1 0 1536.6499 1 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 91118.921 2 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 539882.05044 10 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 2114927.1554 32 +Q9VL70 HL08109p 80.9 30 111 30 24924311.89823 104 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 126241.29250000001 5 +Q9VL91 LD23102p 1.8 1 1 1 2912.0935 1 +Q9VL93 GEO07195p1 29.09 3 5 3 29758.804399999997 3 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 183938.368 8 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 4716193.42963 56 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 8811670.14468 82 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 99487.4105 7 +Q9VLI4 Raw, isoform A 4.85 4 5 1 51667.101800000004 3 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 52517.45 1 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 1036533.2787 16 +Q9VLP0 IP04187p 32.09 5 7 5 120977.9006 5 +Q9VLP1 GEO08095p1 37.84 6 18 6 609679.35975 13 +Q9VLP2 GEO08076p1 38.78 6 46 6 1527910.9501 40 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 703417.3574 6 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1076812.44124 28 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 230886.74229999998 2 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 3762619.90813 41 +Q9VLS5 LD29542p 6.53 3 4 3 10987.10198 3 +Q9VLS7 LD21067p 4.91 7 8 0 73344.061 4 +Q9VLT3 LD23292p 15.23 26 42 26 1221382.69184 39 +Q9VLT7 IP17351p 24.04 4 7 4 460854.7161 7 +Q9VLU3 IP09231p 8.63 2 3 0 39982.2502 2 +Q9VLV9 Proctolin 46.43 5 7 5 52544.4727 4 +Q9VLW8 LD06392p 5.79 2 2 2 44803.0855 2 +Q9VLX6 HL01609p 16.49 4 4 0 93535.4419 4 +Q9VLY1 HL02931p 19.01 1 9 1 1492533.6006 7 +Q9VLY7 TEP1-F 7.49 10 10 10 110784.0322 9 +Q9VLY9 CD109 antigen 28.88 39 63 2 2804901.85312 60 +Q9VM07 RE43931p 27.85 5 10 4 389008.53487000003 8 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 304069.5086 12 +Q9VM11 HL01515p 30.55 11 14 11 415605.0183 14 +Q9VM12 MIP26555p1 25.85 8 19 8 686754.9687 15 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 24025249.4663 182 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 14201541.902139999 115 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 54295.793 3 +Q9VM47 Menin 4.19 3 3 2 31289.628 3 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 12363.160100000001 4 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 404898.83772999997 11 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 135855.2292 5 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 394724.85647 8 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 132169.423 5 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 14027233.21421 84 +Q9VMC3 LD35051p 17.28 5 6 5 20780.9266 5 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 59526.613 1 +Q9VMC7 LP11564p 13.92 9 10 3 37401.178400000004 7 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 612614.2467 16 +Q9VME1 FI01864p 11.22 6 8 6 106089.1132 8 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 198874.69973999998 7 +Q9VMF0 FI04444p 5.9 3 3 3 18076.9372 3 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 86244.5256 3 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 445142.0619 11 +Q9VMH8 GEO07746p1 38.1 6 19 6 655665.9667 16 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 2363480.227 29 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 1793601.5234 32 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 8779453.9504 46 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 356864.04010000004 8 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 663262.87627 15 +Q9VMR9 acylphosphatase 14.85 2 2 2 46649.2196 2 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 13173487.6488 59 +Q9VMT2 GEO07854p1 60.4 9 123 1 13007574.5954 110 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 5805904.3829 40 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 78525.26431 12 +Q9VMV5 Viking, isoform A 9.07 15 21 15 399851.71280000004 18 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 3260.5664 2 +Q9VMX4 AT19154p 29.08 7 13 7 204910.6636 11 +Q9VN01 GH23891p 11.66 7 7 7 111690.135 7 +Q9VN02 GH14561p 39.46 10 16 10 216235.78830000001 13 +Q9VN21 LD30155p 57.06 30 110 30 10288921.10862 104 +Q9VN39 RE74585p 24.47 9 13 4 46503.102549999996 9 +Q9VN44 FI07923p 23.17 21 40 21 1211732.33088 38 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 740187.3102 11 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 619179.07316 13 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 4211.6133 1 +Q9VN86 AT14148p 9.07 4 4 4 62254.537000000004 4 +Q9VN88 LD45836p 33.18 6 9 6 260072.92415 9 +Q9VNA3 GH21273p 34.26 7 14 7 643520.6370999999 13 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 1425666.57465 13 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 193392.93469999998 6 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 24992.591699999997 3 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 6035.78966 3 +Q9VNF3 RE01652p 45.91 11 35 8 779644.36395 28 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 123145.4968 6 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 85149.6848 8 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 242101.8651 9 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 260905.92 1 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 210211.81800000003 7 +Q9VNI8 Hpr1 10.84 8 8 8 112521.1376 8 +Q9VNI9 IP18173p 25.11 4 7 4 148520.3597 7 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 11500324.34265 82 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 73768.2072 6 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 40398.16257 7 +Q9VNV2 GEO05133p1 15.82 2 3 2 90006.867 3 +Q9VNW0 GEO11142p1 17.97 2 2 2 23834.5744 2 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 6584922.03985 80 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 3476107.67061 95 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 18127.019 3 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 65493.3636 4 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 4616.8926 1 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 2262.8787 1 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 100681.9717 4 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 244805.15649999998 7 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 429808.31950000004 8 +Q9VP57 LD15904p 25.8 20 45 20 1332865.74329 41 +Q9VP77 LD23875p 10.53 6 6 6 89241.78887 6 +Q9VP78 GH23156p 11.92 4 5 4 43064.5496 5 +Q9VP84 IP06402p 10.05 2 2 2 28901.665999999997 2 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 10341.8706 2 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 51593.0049 4 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 57544.159 3 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 33906.609 2 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 2062460.3673999999 38 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 34869.31052 5 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 35522.3984 3 +Q9VPH6 LP10922p 8.04 4 5 0 44346.8096 4 +Q9VPJ0 RE58433p 16.84 6 7 2 259591.02946 7 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 59058.3832 2 +Q9VPK3 AT24407p 12.35 5 7 1 238141.1721 7 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 91827.79879999999 4 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 4223660.17159 83 +Q9VPP7 AT13539p 22.7 4 4 4 72281.24650000001 4 +Q9VPR1 GH02075p 15.14 2 5 2 4402.7896 1 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 860.6201 1 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 708164.2156 9 +Q9VPU4 FI17537p1 5.33 2 2 2 3402.1198 2 +Q9VPU6 Galectin 5.06 2 2 2 41293.582 2 +Q9VPX0 GH26159p 6.97 4 4 4 12562.5504 3 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 1109442.741 13 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 7525410.818829999 71 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 6531.45355 3 +Q9VPY7 LD42035p 2.2 1 1 1 1324.3772 1 +Q9VPZ5 GH04232p 25.41 14 33 14 746856.1429 33 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 10271.4093 2 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 9298979.1983 105 +Q9VQ83 RE23541p 7.91 3 3 0 17897.2009 2 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 210608.02899999998 6 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 6619780.4737 56 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 4012127.6124 24 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 247537.57185 13 +Q9VQE0 dynamin GTPase 20.82 15 21 15 324703.1485 19 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 48752.7845 7 +Q9VQI6 LD25952p 19.75 7 9 7 159645.2194 8 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 906609.6516999999 24 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 50885.7005 3 +Q9VQK7 LD45152p 6.68 5 5 5 27592.1744 4 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 4689.4097 1 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 2040197.3647 36 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 1800050.34306 18 +Q9VQQ6 FI18122p1 35.15 14 21 1 508372.7072 20 +Q9VQR0 FI04421p 4.49 2 3 2 67112.8275 3 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 5216543.9423 58 +Q9VQR5 IP10807p 19.06 4 6 4 64372.3514 5 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 166064.53592999998 12 +Q9VQT7 RH15675p 14.63 1 2 1 4696.9356 2 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 840700.6203 13 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 143832.5888 6 +Q9VQX3 HL05328p 18.38 6 6 6 66075.2027 6 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 9777.68215 4 +Q9VR03 AT19250p 4.57 2 2 2 3346.0925 1 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 205618.67653 10 +Q9VR30 RE58324p 25.27 9 9 9 349682.979 9 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 373410.19550000003 10 +Q9VR62 GM14138p 5.53 3 3 3 16722.3615 2 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 31250.887600000002 2 +Q9VR79 LD43683p 35.86 11 30 11 1892977.4392 28 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 6010.1408 2 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 2633328.5301 31 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 1046408.2818 11 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 124960.6983 9 +Q9VRF7 GH09530p 19.59 5 13 0 343358.96605 10 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 111154.63220000001 4 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 229325.3008 13 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 3160728.3895 36 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 171650.1891 11 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 53804.968 2 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 7410.5767 1 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 11812776.05143 91 +Q9VRL1 GEO06356p1 53.1 8 42 2 2745376.9399 34 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 3526.4468 1 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 1867.0778 1 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 20767.7612 4 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 2522358.4363 44 +Q9VRP3 AT08565p 27.53 8 17 8 815561.1042 14 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 98340.84443 8 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 1493874.5088 26 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 344324.5882 7 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 247607.1446 8 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 385006.0022 14 +Q9VS11 lysozyme 16.35 4 4 4 68889.496 3 +Q9VS44 Uncharacterized protein 9.82 3 3 3 45370.310079999996 3 +Q9VS84 FI03225p 11.14 10 13 10 388712.0253 13 +Q9VSA9 CG7409 79.87 15 73 15 7879347.4706 59 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 310040.4043 10 +Q9VSC5 GM09977p 60.12 14 32 14 793286.9956 26 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 117911.304 10 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 364762.7064 8 +Q9VSH5 IP09562p 4.89 1 1 1 4006.3972 1 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 175764.71000000002 3 +Q9VSI1 LD21269p 7.99 5 5 5 53431.485 4 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 12642.4239 3 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 1637737.5506 25 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 2643822.3493 28 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 3153396.926 35 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 228121.42309999999 8 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 57379.8657 4 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 26319.6608 4 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 1140.5726 1 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 1349902.2803 18 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 3743035.27175 60 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 108635.99549999999 5 +Q9VSR5 GM03767p 52.2 8 27 8 2836273.6962 24 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 141102.8107 9 +Q9VST4 arginine kinase 6.96 3 3 3 7373.5279 2 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 4970861.47533 45 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 982416.1917000001 23 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 62300.557 3 +Q9VSW7 LD21662p 3.33 1 1 1 6130.063 1 +Q9VSX2 IP01061p 40.0 9 17 9 423355.4163 10 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 10123324.882410001 53 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 444328.8642 12 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 3789.2797 2 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 670332.8218 16 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 14202.84856 2 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 1614224.8845 26 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 33050.312 2 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 12422.4162 2 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 60877.299999999996 2 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 97595.09599999999 5 +Q9VTA8 RE35371p 7.59 2 2 2 7203.6853 2 +Q9VTB0 LD35289p 21.62 8 11 8 284565.6977 10 +Q9VTB3 Guanylate kinase 51.07 13 30 13 1563705.61983 29 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 3348638.3172 34 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 82805.0893 5 +Q9VTC3 GH07049p 9.72 4 5 4 144048.0416 5 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 42735.468740000004 3 +Q9VTL0 FI19917p1 7.45 3 3 3 124864.755 3 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 89649.463 3 +Q9VTT2 LD20590p 7.93 4 4 4 25401.2467 3 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 2905011.7558999998 30 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 581475.4720000001 9 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 234176.108 6 +Q9VTW1 RE15265p 11.2 5 5 0 357886.92600000004 4 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 142541.8846 7 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 3947808.6759099998 55 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 674922.031 19 +Q9VU04 RE60105p 13.85 4 5 4 142152.928 5 +Q9VU13 LD45603p 9.17 4 12 0 363508.6873 12 +Q9VU34 LD45758p 0.89 1 1 1 1052.6046 1 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 14461293.97924 69 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 65813.2496 4 +Q9VU38 Adenosine kinase 35.94 8 13 0 98795.3914 12 +Q9VU45 LD27581p 21.48 5 15 5 663000.3905 14 +Q9VU53 Capricious, isoform A 5.0 3 3 1 23495.0728 2 +Q9VU75 RH45712p 61.73 12 38 12 686544.3332 33 +Q9VU92 Uncharacterized protein 29.76 7 16 7 312080.277 14 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 7399353.11414 91 +Q9VUE8 Big bang, isoform C 0.64 1 1 0 464.47388 1 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 36604.1766 4 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 2822167.035 31 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 1575.535 1 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 84377.14846 5 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 391803.56859999994 4 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 109055.18169999999 8 +Q9VUQ7 RE36966p 10.4 6 11 6 127544.41222 11 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 44165.5761 5 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 3303.1844 2 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 26032.902000000002 2 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 220445.90755 9 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 371870.73099999997 5 +Q9VUZ8 GEO07442p1 22.56 2 2 2 2166.621 1 +Q9VV13 GEO08383p1 10.71 1 5 1 483144.004 5 +Q9VV31 Uncharacterized protein 19.35 2 5 2 121430.1437 5 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 423328.2138 12 +Q9VV40 Golgin 104 1.42 1 1 1 939.58655 1 +Q9VV42 Fat body protein 2 83.09 26 202 0 43136900.99973 174 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 22668412.82125 213 +Q9VV47 Fat body protein 2 45.17 9 18 7 1647588.9527 17 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 1955094.0495200001 46 +Q9VV75 AT02348p 82.05 29 251 29 24878780.10986 196 +Q9VV76 Syntaxin 8 37.07 6 10 6 190895.4189 9 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 79852.3713 6 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 232384.9937 9 +Q9VVB5 LD46723p 30.59 16 56 1 17683.0973 3 +Q9VVB7 FI02842p 43.95 14 57 1 7332.55329 3 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 362983.6402 7 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 2118492.54877 46 +Q9VVC8 LD23434p 15.41 8 9 8 146902.0403 7 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 614409.01596 23 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 12179702.9267 31 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 671628.3741 12 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 84551.0318 4 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 426680.6381 12 +Q9VVL5 FI11325p 14.55 5 7 5 137430.1699 7 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 19798392.67157 153 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 63031.063 4 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 53503.078 3 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 237905.29664999997 11 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 143281.6885 10 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 2371180.5653399997 31 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 11152241.33511 60 +Q9VVU2 GEO07453p1 48.32 9 29 8 1670941.9929 28 +Q9VVV6 LD45843p 6.76 5 5 0 24630.6378 4 +Q9VVW7 Canopy b 16.74 4 9 4 260047.40899999999 9 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 21771.43 2 +Q9VVY7 FI20154p1 10.79 14 19 0 379196.10177 18 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 83649.55571 8 +Q9VVZ6 GEO09638p1 25.95 2 3 0 4753.3972 2 +Q9VW00 GH28721p 11.46 4 10 4 302165.6195 9 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 19174.1318 3 +Q9VW17 RE58036p 47.25 6 16 1 208389.15834999998 14 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 9367.27604 3 +Q9VW34 FI03450p 19.96 11 20 11 792852.0800000001 16 +Q9VW40 LD31235p 9.3 3 3 3 34955.877 3 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 19836.2662 2 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 82903.9627 8 +Q9VW57 Grasp65 12.61 6 9 6 236627.87874999997 9 +Q9VW58 LD33138p 35.32 6 11 6 114263.12349999999 11 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 1687113.4876 30 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 4372172.0645 58 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 12987388.04015 121 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 29855.532699999996 4 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 39614.422640000004 5 +Q9VWD0 GH23568p 16.89 6 14 6 605129.46372 12 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 13103848.4651 88 +Q9VWD5 LD35087p 13.54 5 5 5 43164.4903 5 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1142702.7052 37 +Q9VWF0 LP01149p 36.93 9 17 9 126821.9333 12 +Q9VWG1 LD37169p 71.04 12 73 2 319859.49830000004 12 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 17452.682 2 +Q9VWJ3 LD05272p 8.22 1 2 1 27850.943 1 +Q9VWL4 GH07340p 13.41 7 9 7 126824.4687 9 +Q9VWP2 RH57257p 57.02 12 25 12 1356774.8633 24 +Q9VWQ3 LD35981p 6.96 3 3 0 72082.954 3 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 216110.5798 8 +Q9VWS1 Houki 20.44 5 8 5 388065.50409999996 7 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1207240.56742 29 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 25564.6268 5 +Q9VWU0 FI18411p1 5.87 2 2 2 16175.129 2 +Q9VWV6 Transferrin 70.05 43 231 43 19343882.45285 210 +Q9VWW2 GH13094p 20.52 10 18 10 59618.27004 12 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 19865.447 2 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 387338.1899 8 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 25676.4565 3 +Q9VX26 Chascon, isoform A 1.62 2 2 0 10406.9055 2 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 8887820.05564 77 +Q9VX69 FI01450p 18.0 6 23 5 602613.03968 11 +Q9VXA3 LP21163p 17.0 12 21 12 423005.76780000003 20 +Q9VXA9 RE04047p 6.57 2 3 2 71692.109 3 +Q9VXC1 MIP06432p1 31.28 5 11 3 654549.7998 10 +Q9VXC9 trypsin 52.99 10 17 10 1220934.5376 15 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 137360.406 4 +Q9VXF9 AT13091p 26.2 10 17 10 390257.36305000004 17 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 150827.41908 7 +Q9VXG9 GH25683p 9.78 2 5 2 29498.86418 3 +Q9VXH4 RE16337p 28.43 2 3 2 241974.736 3 +Q9VXH7 FI17510p1 10.63 3 5 3 259860.7008 5 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 1846697.133 33 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 8235894.3732 44 +Q9VXJ7 GH03748p1 9.2 9 11 9 39043.431059999995 8 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 412493.1826 13 +Q9VXM4 LD12946p 62.9 13 34 13 1634101.15002 30 +Q9VXN1 LD03728p 12.68 4 4 4 31109.6438 4 +Q9VXN3 LD07988p 29.8 10 15 10 162102.63233 14 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 16226.6163 2 +Q9VXP3 GH05406p 8.26 5 5 5 21992.594100000002 4 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 26621.546000000002 2 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 19465.351300000002 2 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 2446334.7773 49 +Q9VXR9 FI03680p 15.76 6 6 6 123186.7274 6 +Q9VXV1 RH52220p 4.39 1 1 1 9068.202 1 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 392240.55724 18 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 1848105.79326 27 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 350016.3235 14 +Q9VY05 GH11762p 12.84 8 13 8 532875.17966 11 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 103535.49369999999 8 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 242853.1106 7 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 1823.7605 1 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 13952.413 1 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 124162.9701 5 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 148813.0495 5 +Q9VY76 AMP deaminase 10.25 8 10 0 37544.842699999994 8 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 660319.6469 11 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 105265.5319 9 +Q9VY92 GEO07753p1 73.91 8 44 8 6255438.87135 43 +Q9VYA1 RE18811p 3.87 1 1 1 7283.9214 1 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 23020.932 2 +Q9VYF0 GM09012p 16.04 4 6 4 157745.23129999998 5 +Q9VYG8 CG15717-PA 10.71 3 5 3 53784.53424 4 +Q9VYJ1 FI12805p 5.04 4 4 4 39170.74 4 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 70677.0695 3 +Q9VYM0 CG2555-PA 13.2 2 3 1 3886.044 1 +Q9VYN1 protein kinase C 0.84 2 14 1 5887778.8081 12 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 3411.2493 1 +Q9VYS2 GH09980p 9.97 8 11 8 43431.09566 9 +Q9VYT0 RE04130p 37.34 9 17 8 422774.5488 17 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 24965.3669 4 +Q9VYT3 FI23714p1 5.58 7 7 7 29320.410799999998 6 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 91160.4158 6 +Q9VYU9 RH17287p 56.97 9 18 9 599216.0876399999 17 +Q9VYV4 Amun, isoform A 8.0 3 5 3 138133.72489999997 5 +Q9VYV6 GEO09033p1 28.07 3 3 3 25951.8635 2 +Q9VZ00 FI19420p1 18.03 16 21 0 203496.63512 19 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 1748555.439 33 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 629721.7537 15 +Q9VZ24 GEO11412p1 46.9 8 47 8 7256515.53345 47 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 35216.8421 3 +Q9VZ34 RH72958p 4.69 2 3 2 33796.4684 3 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 63540.890199999994 3 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 428080.98679999996 9 +Q9VZ66 SD22308p 42.86 5 9 5 319372.6892 8 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 70995.4728 6 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 65003.302599999995 3 +Q9VZE4 RE70333p 20.43 10 14 10 546202.50418 14 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 511504.0751 8 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 76467.4107 3 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 643192.96548 33 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 6623955.386 47 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 314006.43285 10 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 8587942.61973 45 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 30945.601 3 +Q9VZI1 Transgelin 68.09 12 84 1 7651819.417400001 70 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 62354.615 3 +Q9VZJ2 GH27759p 14.19 6 10 6 364169.18645000004 9 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 44158.3975 3 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 393426.7576 24 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 43845.0276 5 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 142891.59276 5 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 334097.677 10 +Q9VZV2 Chitinase 7 4.64 5 6 5 51172.4274 6 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 30082.3993 4 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 9526.3865 4 +Q9VZX6 LD06441p 21.78 7 9 7 400835.5634 9 +Q9VZY0 LD45195p 11.48 3 4 3 238742.0925 4 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 8039.6158 2 +Q9VZZ5 GEO12033p1 34.27 6 8 6 621246.2228 8 +Q9VZZ6 CG16985 protein 38.26 5 11 5 657204.8553 11 +Q9W022 GEO01508p1 62.68 8 41 8 6753314.3769 40 +Q9W073 RH22148p 19.41 3 3 3 63581.770800000006 3 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 5279174.40379 23 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 1713141.3630000001 14 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 358274.4797 11 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 238246.41499999998 6 +Q9W0A8 FI01658p 25.63 7 26 7 889083.1079000001 26 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 945404.0601 24 +Q9W0C3 GH11843p 38.78 11 19 11 707209.72425 18 +Q9W0D3 GH15728p 1.29 2 2 2 3360.3004 2 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 57074.766 1 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 54733.394360000006 4 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 859379.91442 23 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 1228716.5337 27 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 57334.3362 5 +Q9W0J9 GH07301p 34.47 8 12 7 273279.64874 11 +Q9W0K9 LD10220p 23.21 4 4 4 24342.076 4 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 14560.2551 2 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 497947.68095999997 14 +Q9W0M5 Protein DPCD 14.41 3 3 3 15966.80646 3 +Q9W0N6 LD27967p 9.57 3 3 3 31298.6977 3 +Q9W0P4 GEO05053p1 8.13 1 1 1 31639.564 1 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 29951.499299999996 4 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 29415.37 1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 229443.6703 19 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 41266.246 3 +Q9W0U0 glycerol kinase 3.9 2 2 0 15416.0 2 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 371196.5588 11 +Q9W0X1 GH15894p 6.31 3 3 3 87303.166 3 +Q9W0X2 GEO07322p1 28.1 3 4 3 127904.25700000001 3 +Q9W0X3 LD24657p 22.81 4 4 1 162287.8563 4 +Q9W0Z5 LP09747p 22.95 9 13 9 265029.86933 10 +Q9W114 IP05433p 28.33 3 4 3 43002.5633 4 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 5664874.5506 52 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 898842.1957 17 +Q9W136 Uncharacterized protein 19.81 4 18 4 530448.05246 15 +Q9W140 Regulatory protein zeste 3.53 2 3 2 48781.244999999995 3 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 28283.97382 5 +Q9W158 LD36772p 14.33 5 7 5 277116.749 6 +Q9W199 GEO07594p1 21.29 4 5 4 302157.1129 5 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 4929562.7343999995 31 +Q9W1C8 LD24355p 19.02 8 8 8 325480.1286 7 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 55863.9788 5 +Q9W1F2 FI07217p 5.93 2 3 2 11562.453119999998 3 +Q9W1F7 IP15825p 34.97 12 28 12 2517254.9948 24 +Q9W1F8 GEO08248p1 23.31 4 8 4 456194.81200000003 7 +Q9W1G7 LD21576p 34.32 13 22 13 621226.5524 19 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 319625.573 11 +Q9W1H6 GH04238p 13.85 3 9 3 254778.5853 7 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 4319983.9978 45 +Q9W1I8 LD03592p 39.08 9 25 9 504359.43755000003 18 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 46671.8243 6 +Q9W1L8 GH11818p 2.66 1 1 1 13737.193 1 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 52386.85183 6 +Q9W1N3 Levy, isoform A 23.85 3 17 3 2149186.4803 16 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 4034.2202 1 +Q9W1R0 RH49821p 4.13 2 2 2 18121.701999999997 2 +Q9W1R3 Golgin-245 12.09 17 20 17 191563.44824 19 +Q9W1V8 CG9893 protein 39.58 8 16 8 431456.8896 16 +Q9W1W4 RE45066p 18.58 6 11 6 303445.78969999996 10 +Q9W1X5 GH04942p 20.82 28 39 4 1808817.72182 36 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 9583163.3146 70 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 814452.55995 15 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 194251.2598 12 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 114671.86540000001 8 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 512239.3617 23 +Q9W257 RH13652p 6.99 2 4 2 194037.772 4 +Q9W258 Babos, isoform A 33.67 7 13 7 1040857.5941999999 13 +Q9W259 FI23916p1 8.95 4 5 4 106032.3885 5 +Q9W260 GH03113p 15.4 8 12 8 343759.625 12 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 155259.017 5 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 208261.61800000002 25 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 18674.3509 3 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 65492.3138 4 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 976988.306 18 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 25814.096299999997 2 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 33096.523 3 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 257491.35940000002 11 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 119577.2742 4 +Q9W2L6 RH02475p 33.73 20 58 20 4943720.9524 52 +Q9W2M0 LD23155p 22.1 15 17 15 253284.8928 15 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 11842267.755 51 +Q9W2M9 FI16623p1 14.71 2 2 2 147739.9005 2 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 1420.32926 2 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 407156.233 5 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 404767.5757 11 +Q9W2V2 FI20035p1 5.6 3 3 3 7709.428 3 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 27883091.22375 84 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 393941.1522 19 +Q9W2Z9 RE65233p 4.81 1 2 1 37992.529 2 +Q9W306 GEO08256p1 25.62 3 4 3 11000.60324 4 +Q9W308 GH05731p 16.18 2 5 2 293210.207 5 +Q9W309 GEO08445p1 33.95 7 11 7 547368.7485999999 11 +Q9W314 GH14088p 9.82 4 5 4 118815.63659999998 5 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 141132.9655 8 +Q9W330 Phosphotransferase 29.76 15 32 2 3030889.6204 31 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 64769.2592 2 +Q9W337 GH19985p 44.95 7 14 7 724636.7259 14 +Q9W370 GEO12084p1 38.52 4 10 4 363775.7601 9 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 11353.6065 2 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 11915.063 2 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 1878724.7446 35 +Q9W396 FI06908p 14.17 4 7 4 260947.61820000003 6 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 127107.18400000001 5 +Q9W3C3 LD10016p 12.94 6 8 6 111721.25734000001 7 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 31200.886 3 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 301928.45136 11 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 101395.8306 3 +Q9W3H4 LD36273p 66.8 13 29 13 976440.21636 25 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 112405.26226 7 +Q9W3J6 FI06457p 8.64 3 4 3 23397.936560000002 3 +Q9W3K6 LD35927p 4.99 4 5 4 75556.1364 5 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 808210.09177 24 +Q9W3L4 GH20802p 35.02 10 23 10 823076.7914 21 +Q9W3M7 RNA helicase 14.07 10 15 9 67915.9382 9 +Q9W3M8 LD34211p 47.74 8 17 8 835555.686 17 +Q9W3N1 RH59310p 7.17 2 2 2 7711.192 1 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 366051.8922 8 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 2348906.2378000002 37 +Q9W3Q0 FI07418p 23.39 5 14 4 23030.3919 3 +Q9W3Q1 GM14286p 8.84 3 3 3 16776.621199999998 3 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 248439.3665 11 +Q9W3S3 LP10445p 15.68 2 3 2 5124.71154 3 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 80919.9005 5 +Q9W3T9 GM01152p 45.38 9 16 9 713288.1816 16 +Q9W3U9 CG14434-PA 32.62 6 13 0 192179.81077 9 +Q9W3V2 FI19713p1 4.82 4 4 4 20163.3721 4 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 11661.1905 3 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 63007.8787 4 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 5474124.4144 57 +Q9W3X8 RH42690p 10.73 4 5 4 17681.69723 4 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 521631.781 20 +Q9W3Z4 GH18625p 3.75 1 1 1 2421.241 1 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 2773535.65734 50 +Q9W403 LD24968p 9.21 5 7 5 66053.1202 7 +Q9W404 GH10714p 31.03 9 12 8 149347.80354 9 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 49483.498 3 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 899010.3611 24 +Q9W425 Rabconnectin-3A 1.34 5 5 5 22312.9844 3 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 4638937.1418 60 +Q9W461 LD23868p 18.22 7 8 7 106159.81884 8 +Q9W482 Lin-52, isoform A 33.12 4 11 4 135298.69030000002 8 +Q9W483 GH18971p 5.79 2 3 2 60382.441000000006 3 +Q9W486 LD13361p 5.27 3 3 0 38053.128 3 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 82307.9558 4 +Q9W4A0 GH11193p 19.8 4 5 4 188470.49 5 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 91884.45134 8 +Q9W4C2 lysozyme 17.11 3 3 3 59372.234000000004 3 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 187225.4047 8 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 29424.0917 4 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 2147483.98684 28 +Q9W4N8 LD30122p 55.76 15 77 0 5565382.47331 71 +Q9W4U2 RH09070p 41.37 8 24 8 878906.31134 21 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 10252.9696 2 +Q9W4W5 RE47284p 11.15 4 4 4 216721.61200000002 4 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 257349.3203 19 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 480951.602 13 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 18601.675 2 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 9391.00416 3 +Q9W503 RH61816p 38.61 11 14 11 417644.7478 14 +Q9W5B4 GH18858p 31.97 10 21 10 838125.5538999999 17 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 20991.1763 2 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 10277.769 2 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 107704.972 5 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 124541.56 6 +Q9W5W7 GH19483p 2.57 2 3 2 23120.7046 3 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 4777172.13763 38 +Q9W5X0 LD21953p 26.87 6 25 1 136578.131 4 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 117120.5833 9 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 136263.6411 12 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 4536493.67444 44 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 171111.4684 6 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 679169.3593 17 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 779674.0878 15 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 9694182.4354 98 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 413511.52804999996 23 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 202997.8418 18 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 9891043.42415 92 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 10020.850999999999 2 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 67855.7455 7 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 1815634.7217 37 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 272217.63745 13 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 2394964.5905 41 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 8847985.79132 77 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 2539.2769 1 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 178117.37170000002 4 +R9PY51 Uncharacterized protein 34.95 6 48 6 4463845.4887 27 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 7429040.19965 105 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 330838.351 11 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 309816.44670000003 10 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 97290.477 2 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 201995.0307 6 +X2JB48 ADP/ATP translocase 56.86 20 109 1 7954454.48696 100 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 706277.9401 30 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 99102.506 7 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 21927941.75016 111 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 14109.839 1 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 17489.1064 2 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 13991.292300000001 2 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 12301.537 1 +P10674 Fasciclin-1 49.69 30 164 1 2038.5463 1 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 3205.5356 1 +Q08605 Transcription activator GAGA 1.2 1 1 0 26238.416 1 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 8348.953 1 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 2256.7463 1 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 79454.34346999999 3 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 50277.706 2 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 4453.2046 1 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 4833.2173 1 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 39050.435 2 +Q9W568 Protein halfway 3.11 1 1 0 640.1615 1 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 3044.1284 1 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 7359.33 1 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 53506.4694 5 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 2522.5017 1 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 22128.549 1 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 27149.67 1 +A1Z7M0 Space blanket 2.86 1 1 1 19812.832 1 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 24619.9501 2 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 196979.8408 6 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 4327.59 1 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 14218.4365 2 +E1JJM0 FI20063p1 22.76 13 20 0 482282.2626 18 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 9392.6455 1 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 19179.375 1 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 8019.0405 1 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 12331.1395 2 +Q0E8R1 FI07211p 34.57 13 35 0 97266.628 2 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 129017.3322 10 +Q7JWH6 RE61424p 5.65 2 2 2 7365.3315 1 +Q7JXA2 LOBE 5.52 2 2 2 3395.0151 1 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 111042.85449999999 3 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 2030.2833 1 +Q7KVW1 RE73736p 2.8 2 2 0 23189.265 2 +Q7PLV6 FI02158p 0.85 1 2 1 5047.1596 2 +Q8I062 GH23305p 83.33 21 152 1 26757.842 1 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 19295.6002 2 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 6410.218 1 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 4503.571 1 +Q8MPN6 Serpin 4 27.18 9 11 0 14478.308 1 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 25138.3912 3 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 1656.1228 1 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 11084.9732 3 +Q9VKC1 IP16805p 4.28 1 1 1 13992.351 1 +Q9VM94 Homer, isoform B 49.62 17 57 1 23981.436 1 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 60941.223 1 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 102559.6924 4 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 35977.848 1 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 16713.1755 2 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 392507.54199999996 4 +Q9VTY1 LD40136p 5.69 2 2 2 28168.86 2 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 2485.1692 1 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 17430.3405 2 +Q9W2N5 GH10162p 3.47 2 2 2 46672.035800000005 2 +Q9W525 LD08195p 3.8 2 2 1 26245.907 2 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 16870.5386 2 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 0.8 1 1 1 370.40344 1 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 51755.938 2 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 20491.029 2 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 13673.985 1 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 35218.2817 2 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 11083.68074 2 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 63051.5502 4 +E1JJ83 Os-C, isoform B 16.34 2 2 1 4435.523 1 +M9MRG5 Taiman, isoform F 0.94 2 2 0 27543.5785 2 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 270483.06639 18 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 4374.4067 1 +O46231 FI18705p1 65.94 22 77 1 76308.45 1 +Q6IDE2 GH07226p 2.0 1 1 1 7742.4 1 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 4592.5557 1 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 12964.219799999999 2 +Q7K527 Tetraspanin 4.61 1 1 1 4382.81 1 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 139653.89 1 +Q8IQ80 GH06117p 2.97 2 2 0 66497.514 2 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 90921.3873 3 +Q9VHW5 LD38634p 17.32 2 3 2 19000.724000000002 3 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 70384.60994 2 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 29392.686 1 +Q9VVG5 RH19679p 14.44 1 3 1 1133878.707 3 +P09956 Regulatory protein zeste 2.96 2 2 0 2832.9163 1 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 5876.069 1 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 5552.7354 1 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 14722.702 1 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 45995.734 1 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 14001.1455 1 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 37475.54 1 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 14650159.37432 140 +C1C3E7 MIP09364p 61.25 22 85 1 2024.5746 1 +E1JH70 Kank, isoform E 2.57 2 2 0 3052.1562999999996 2 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 4391.2343 2 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 18167.441 1 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 3545.2004 1 +Q8IRM1 Uncharacterized protein, isoform E 20.86 4 7 1 718.7375 1 +Q9VBS0 CHK domain ov2 4.89 2 2 2 20070.2103 2 +Q9VCH9 LD07883p 8.66 2 2 2 33868.32 2 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 11829.92215 2 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 44436.24027 2 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 8068.684 1 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 104682.8113 4 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 162677.46600000001 2 +Q9VMY3 FI19613p1 1.5 1 1 1 7894.728 1 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 7959.046899999999 2 +Q9VS80 FI17864p1 2.34 1 1 1 4506.1685 1 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 1953.2786 1 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 13804.576 1 +Q9VZF0 LD44732p 7.73 2 2 2 10677.0566 2 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 149013.48 1 +Q9VFR1 Protein Abitram 14.95 2 2 2 2835.9123 2 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 17172.314 1 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 758976.862 4 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 36283.76 1 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 6016.859 1 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 1740.1454 1 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 105411.49095 5 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 7105.708699999999 2 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 6556.8135 1 +Q0KHQ1 GEO13361p1 24.44 2 2 2 93378.31134 2 +Q4QPR8 GEO10187p1 9.76 1 2 1 57433.810000000005 2 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 7019.3814 2 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 28700.617 3 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 9370.9767 2 +Q9VLL5 Alpha-N-acetylglucosaminidase 1.29 1 1 1 3599.7756 1 +Q9VV37 GEO13385p1 10.1 1 6 1 103826.45999999999 3 +Q9VVX6 BET1 homolog 9.4 1 1 1 27964.125 1 +Q9W152 RH33060p 16.9 1 1 1 1546.6188 1 +P48613 Protein tipE 3.98 2 2 2 9466.7983 2 +Q9VGW1 Cadherin-86C 1.24 2 2 0 6691.3141 2 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 150887.3397 3 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 13208.95 1 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 208288.5969 4 +O76895 Arginase 7.69 2 2 2 5356.1794 2 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 47941.243 2 +Q9VAI3 FI06539p 10.08 1 1 1 8205.163 1 +Q9VB09 IP04131p 12.1 2 2 2 38090.793000000005 2 +Q9VHN8 LD37279p 3.43 1 1 1 766.2335 1 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 103070.913 2 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 24958.338 2 +Q9W1X6 GH06673p 8.33 2 2 2 18031.365 2 +Q9W5E7 LP07417p 11.4 1 2 1 8833.8036 2 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 37615.2954 4 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 1621.5405 1 +A1ZAU6 FI05912p 1.83 1 1 0 3544.629 1 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 96804.814 3 +Q7K3Z8 GH01208p 2.35 1 2 1 15514.630000000001 2 +Q9VAN8 FI15955p1 6.46 1 1 1 13135.433 1 +Q9VLL4 FI23523p1 4.52 2 2 2 10603.0787 2 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 6529.3374 1 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 28563.4093 4 +Q9W542 LD07342p 1.62 1 1 1 3521.6504 1 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 2191.5164 1 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 42147.829999999994 2 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 827.95447 1 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 13540.875 2 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 19270.837799999998 2 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 21999.0966 2 +A1Z840 Cdc2-related kinase 4.13 2 3 2 53601.062 1 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 8417.414 1 +Q9W3S4 LD46272p 3.11 1 1 1 2526.5454 1 +A8JQX3 Nocturnin 1.87 1 1 1 4980.166 1 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 8908.539 1 +Q9VUL1 CTP synthase 1.59 1 1 0 13479.796 1 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 1650.0913 1 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 915.4372 1 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 138670.5397 10 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.94 1 1 0 354.01572 1 +O76857 BCL7-like 13.64 2 2 2 21482.545 2 +Q7JY89 RE35124p 15.0 1 1 1 2588.346 1 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 82963.61859999999 2 +A8JUP7 Serine protease Hayan 2.2 2 3 2 23024.8437 2 +P07664 Serendipity locus protein delta 4.16 2 2 2 20171.459 2 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 65527.959 2 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 4617.41338 2 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 1489.9489 1 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 828504.7817 4 +Q8IQU7 825-Oak 26.36 2 3 0 7457.497 2 +Q9VGM4 LD28119p 6.76 2 2 2 2627.1319 2 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 39529.2815 11 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 5624.3594 1 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 4344.0317 1 +Q7K0D3 CG12909 protein 3.2 1 1 1 5097.261 1 +Q962I2 small monomeric GTPase 59.39 10 28 1 187542.885 2 +Q9VSK1 GH09510p 2.72 2 2 2 1534.922 1 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 137138.557 2 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 2686.7506 2 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 265020.87345 13 +Q29R09 LD28546p 5.79 2 2 2 2624.4755 2 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 1751.7463 1 +Q8SXC0 GH10306p 6.03 2 2 2 34414.564099999996 2 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 3015.7728 2 +Q9W0A9 GM02612p 3.06 1 1 1 1861.1036 1 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 9609.542 1 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 173498.36119999998 4 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 22705.08 1 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 4943.678 1 +Q9VV29 GEO12576p1 9.68 1 2 0 52270.8755 2 +P45884 Attacin-A 5.36 1 2 0 29560.6137 2 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 876.80225 1 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 2663.2654 1 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 26082.838 1 +Q9VV27 MIP11526p 15.25 2 2 2 52524.26 2 +O76324 Discs overgrown protein kinase 2.27 1 1 0 2510.565 1 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 5789.158 1 +Q9VFL9 FI07901p 6.08 2 2 2 3884.5235000000002 2 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 21907.834199999998 2 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 47660.7448 3 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 14331.934 1 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 56022.42 1 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 4668.7007 1 +Q2PDU0 GEO11169p1 9.84 1 1 1 5253.57 1 +Q9VF46 GH25158p 7.34 2 3 2 110516.5352 3 +Q9VSD8 IP10160p 6.67 2 2 2 7231.4908 2 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 14503.202 1 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 13474.757 1 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 40671.1645 2 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 3139.21 1 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 3224.4102 1 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 651.1625 1 +A8JNU1 adenylate cyclase 1.02 1 1 0 3759.6438 1 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 20257.465 1 +Q7JW46 RE25483p 17.0 1 1 1 838.9399 1 +Q7K010 Tetraspanin 5.0 1 2 1 12316.114300000001 2 +Q9VUR4 FI11905p 11.6 4 9 1 11493.959 1 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 7411.6993999999995 2 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 3028.2078 1 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 5040.491 1 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 23706.237 2 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 34219.235 3 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 894.07153 1 +A8JNV2 Uncharacterized protein 10.71 1 2 1 8107.7544 2 +Q9VRX7 LD29573p 1.32 1 1 1 4811.365 1 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 43704.184 1 +O46099 EG:8D8.2 protein 0.78 1 1 1 905.0643 1 +Q8SWU4 RE25571p 17.3 6 12 1 35607.54 1 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 18774.227 2 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 61934.324 2 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 1739.3477 1 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 16382.011 1 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 40133.805 1 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 669.4103 1 +Q8IRD6 Dro4 protein 33.8 2 2 2 36365.313 2 +Q8SXW3 GV1, isoform B 4.44 1 2 0 28008.4614 2 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 24535.3995 2 +Q7JWE2 GH09427p 3.96 1 1 1 3406.5044 1 +Q8IRN0 FI06485p 10.84 2 2 2 11494.996500000001 2 +Q9VHS6 Copper transport protein 5.75 1 1 1 372.82266 1 +D8FT19 MIP22288p 2.35 1 1 0 3831.8208 1 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 21603.6074 2 +Q8ML92 Protein aveugle 7.55 1 1 1 32968.164 1 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 3.59 1 1 0 443.25546 1 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 3622.2725 1 +Q9VT15 GH14734p 2.78 1 2 1 31052.9185 2 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 16696.55635 2 +A1A750 GEO11067p1 18.81 2 2 2 26978.714 2 +Q9VF83 LD33178p 2.73 1 1 1 5080.83 1 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 3534.8086 1 +Q9NHV9 Protein vav 3.66 3 3 0 5983.076 1 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 4648.6685 1 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 428.2895 1 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 58518.416 3 +M9PCK0 Decima, isoform D 4.29 1 1 0 10141.218 1 +Q9VPA9 LD24894p 0.92 1 1 1 7150.2056 1 +Q9VSS4 IP05455p 10.32 1 1 1 13539.304 1 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 39688.867 2 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 10698.496 1 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 4816.4048999999995 2 +Q7KV26 Kinase 2.6 1 1 1 2128.7124 1 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 4095.452 1 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 4703.8286 1 +Q02427 RNA-binding protein 1 29.86 4 5 1 168830.52 1 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 6167.5054 1 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 6573.5926 2 +Q9VDL4 LP04613p 2.72 1 2 1 4162.0396 2 +Q9VQ52 GH27779p 3.93 2 2 1 42090.122500000005 2 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 45883.765 2 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 6069.327499999999 2 +Q7K4X4 GH24095p 1.8 1 1 1 509.2815 1 +Q9VGE8 Tachykinins 6.57 2 4 0 31881.20226 4 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 29634.642 2 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 31723.097 2 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 19212.739 2 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 1710.6572 1 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 9536.015 2 +Q7YU81 Protein charlatan 1.48 2 2 0 7236.063700000001 2 +Q9VHV3 FI02011p 3.75 2 2 2 16955.049 2 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 3414.4702 1 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 11378.943 2 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 6078.6196 1 +Q9V3A6 Ero1-like protein 2.28 1 1 1 2683.1472 1 +Q9VIQ4 GH03980p 10.75 2 2 2 38816.2986 2 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 128979.897 2 +Q7K8Y3 IP16419p 26.28 9 11 0 597825.99284 10 +Q8STG9 DSec61alpha 1.89 1 1 1 22080.285 1 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 30577.819300000003 3 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 7179.328 1 +P22812 Protein Tube 3.9 2 2 2 2389.73738 2 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 59384.504 1 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 23570.667 2 +Q7JV39 GH01142p 5.05 1 1 1 9927.775 1 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 13458.8036 2 +Q8T088 WD repeat-containing protein 55 homolog 2.41 1 1 1 2741.2368 1 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 41869.746 1 +Q27367 Protein croquemort 4.48 2 2 2 18102.441 1 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 5306.607 1 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 872.7359 1 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 1962.0286 1 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 11119.373 2 +Q9W4F9 IP01388p 3.65 2 2 0 14319.970599999999 2 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 2395.7568 1 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 2632.2458 1 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 1875.9877 1 +F0JAQ9 MIP27169p 2.34 1 1 0 1965.3037 1 +P18289 Transcription factor Jra 3.81 1 1 0 2264.2358 1 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 24436.877 1 +Q9VJ77 FI24106p1 2.07 1 1 0 561.146 1 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 19728.295 1 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 4932.7593 1 +Q9VR55 LD29159p 8.71 1 4 1 45509.6696 3 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 8152.097 1 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 58328.5049 5 +P54194 General odorant-binding protein 84a 6.86 1 1 1 5422.9565 1 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 5708.306 1 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 81913.7683 2 +Q8IR92 Uncharacterized protein, isoform A 6.03 6 6 0 452.6996 1 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 2791.8274 1 +Q9VV26 GEO12049p1 6.84 1 2 1 140543.413 2 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 2047.2345 1 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 10187.503 1 +Q9VX14 RH64870p 8.82 2 2 1 7858.0664 2 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 51047.148 2 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 14917.401399999999 2 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 14631.283 1 +A1ZAG3 Protein G12 2.9 1 1 1 146648.14 1 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 6355.1406 1 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 13936.206 2 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 28200.8417 4 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 749.88885 1 +Q0E8W6 Small integral membrane protein 14 40.0 2 2 2 651.4022 1 +Q6IJE8 HDC15077 11.85 1 1 1 30917.873 1 +Q9VVI0 SD09427p 1.63 1 1 1 3272.9495 1 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 33213.762 2 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 8071.636 2 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 22732.973 1 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 84785.945 1 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 6345.12 1 +Q9W494 Crossveinless 8.17 2 2 2 25011.889 1 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 48362.239700000006 3 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 3744.0553 2 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 33374.9644 2 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 13871.407 1 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 5019.8994 1 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 105707.44 1 +Q95NH6 Attacin-C 2.9 1 1 1 1943.2283 1 +Q86B83 LD12611p 5.44 2 2 2 10107.8465 2 +Q8MRQ1 GH06222p 3.62 2 2 0 10328.931 1 +Q4V6X9 IP01247p 3.24 1 1 1 2256.8765 1 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 1720.7336 1 +Q9VPR6 Kinase 2.59 1 1 1 6406.49 1 +Q9VF80 Cysteine protease 1.65 1 1 1 344.2401 1 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 12011.601 1 +Q9V4B8 RE68558p 1.2 1 1 1 13750.356 1 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 25870.654 1 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 3750.48632 2 +Q8I0J1 RE43539p 2.51 1 1 0 14742.259 1 +Q9VC27 Nicastrin 1.29 1 1 0 8102.239 1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 5855.6265 1 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 4330.182 1 +E1JIS4 Uncharacterized protein 5.93 1 1 1 344.05124 1 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 1553.4928 1 +Q9W0I2 RE15268p 11.17 1 1 1 5659.6426 1 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 5047.0195 1 +Q961R9 GH09241p 1.8 1 1 1 25884.477 1 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 5245.4795 1 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 605.8626 1 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 19711.9076 2 +Q9VFR4 GH09754p 6.64 1 1 1 49584.67 1 +Q7K490 SD03973p 2.65 1 1 1 4254.188 1 +Q7KE33 Odorant binding protein c 9.4 1 2 1 17407.9176 2 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 7050.0317 1 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 80625.06899999999 3 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 9708.8934 2 +Q6NN09 ATPase protein 9 5.07 1 6 1 1774465.0645 6 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 4630.2397 1 +O76874 SD17974p 1.14 1 1 1 4837.202 1 +Q9VEB2 LD28404p 3.0 1 1 1 17364.258 1 +P41964 Drosomycin 17.14 1 1 0 5487.6406 1 +Q9VL21 LD11652p 6.22 1 1 1 11774.959 1 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 3682.2878 1 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 143424.724 2 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 1938.9961 1 +Q9VK20 LD18447p 1.79 1 1 1 6024.63 1 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 7907.8154 1 +Q9VA48 Serpin 100A 2.77 2 2 2 12241.8036 2 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 2578.2717 1 +Q9VBK9 Protein FAM98B 3.08 1 1 1 20466.617 1 +Q9VZC8 GEO12024p1 6.85 1 1 1 398.49252 1 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 11022.538199999999 2 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 11628.931 1 +Q0E985 RH74701p 15.0 1 1 1 3281.1523 1 +Q9VCC2 RE50040p 4.86 2 2 2 58291.327999999994 2 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 12816.371 1 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 6334.0093 1 +Q7K172 CAAX prenyl protease 3.33 1 1 1 11277.166 1 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 30893.44 1 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 11230.128 1 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 42641.983 2 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 16889.809 1 +E1JHX0 MIP29328p 3.76 1 1 1 1633.1381 1 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 9319.87 1 +A0A126GV08 Uncharacterized protein, isoform G 5.3 2 2 0 809.0532 1 +F9VMG5 GEO02462p1 41.07 2 2 2 29490.239 2 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 9262.2395 2 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 18377.771 1 +Q9V9R3 adenylate cyclase 1.29 2 2 2 11777.8953 2 +Q9VS39 FI19525p1 5.88 2 2 2 8365.8893 2 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 11408.219 1 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 4873.255 1 +Q9VUE5 LD17962p 0.77 1 1 0 231689.98 1 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 2017.8314 1 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 11085.0354 2 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 14394.704 2 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 468.89484 1 +M9PE65 Axotactin 0.69 1 1 1 5626.7095 1 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 4282.175 1 +Q8IRK0 GH04558p 5.41 2 2 2 95570.0719 2 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 4643.4478 1 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 25210.549 1 +Q5BI50 Cullin-4A 1.34 1 1 1 5324.439 1 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 594.69775 1 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 962.343 1 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 3260.2793 1 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 85908.01 1 +P07186 Chorion protein S19 14.45 1 1 1 774.8658 1 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 8757.177 1 +Q9VJK9 GEO06505p1 9.52 1 1 1 1644.9373 1 +E1JHN0 FI16804p1 13.08 1 1 1 453.62885 1 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 1976.7814 1 +Q9VL29 GEO11246p1 12.93 1 1 1 10394.6875 1 +Q9W2F6 RE36793p 14.17 2 2 2 13993.6045 2 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 3531.1067 1 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 48388.45 1 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 4935.725 1 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 5420.9051 2 +Q7JR99 RE31204p 5.59 1 1 1 2575.7937 1 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 2463.243 1 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 111805.73 6 +B7YZZ0 GH19557p 12.64 1 1 1 18248.86 1 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 13286.0497 2 +A1Z8D4 AT13868p 4.47 1 1 0 1869.1243 1 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 79237.66 1 +A8DYV9 GEO02589p1 10.53 1 2 1 18342.564 2 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 3247.8237 1 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 208441.27 1 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 4898.2183 1 +Q7K1H9 GH07575p 3.69 1 1 1 2870.3145 1 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 3785.8926 1 +O76513 Cyclin-H 3.7 1 1 1 7393.0386 1 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 992.58594 1 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 6915.081 1 +Q9V449 Met75Ca 23.53 1 1 1 5070.1934 1 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 2417.9182 1 +Q03445 Glutamate receptor 1 1.92 1 1 1 904.77435 1 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 5477.152 1 +Q9W0B6 LD14179p 1.48 1 1 1 3234.8147 1 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 5279.0093 1 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 52998.773 1 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 3859.5972 1 +Q9VT01 FI06792p 3.5 1 1 1 899.0679 1 +Q9VIM8 RE22905p 2.85 2 2 2 4222.092 1 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 1018.1976 1 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 18324.05284 2 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 4455.5054 1 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 159268.28 1 +Q9VMM3 RE17389p 2.61 1 1 1 734.49274 1 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 8348.295 1 +Q9W551 GEO02601p1 8.49 1 1 1 971.03784 1 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 7917.4775 1 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 3567.5288 1 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 1894.2573 1 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 3086.9011 1 +Q9VB20 Distracted, isoform B 0.68 1 1 1 712.66925 1 +Q9VA94 GH07782p 2.82 1 1 1 387.46445 1 +Q9VX56 LD03052p 5.94 1 1 1 14189.718 1 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 7469.163 1 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 23036.6896 2 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 908.1253 1 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 3205.6758 1 +Q7JY99 glycerol kinase 1.34 1 1 1 1775.9183 1 +Q9VP08 IP11255p 2.36 1 1 1 2644.4058 1 +Q8MYV9 GEO12865p1 11.04 1 2 1 57835.24 2 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 10749.076 1 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 3686.1025 1 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 26659.422 1 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 93923.416 2 +Q7JWV7 Tetraspanin 4.85 1 1 1 6346.687 1 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 6052.89 1 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 994.27 1 +Q8IRE5 RH23915p 21.54 1 1 1 338.04254 1 +Q9VWL7 Rho GTPase activating protein at 18B, isoform C 0.76 1 1 0 856.4342 1 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 6923.581 1 +Q9VBQ5 LD38433p 1.91 1 1 1 10033.6 1 +Q9VZR5 RE46159p 11.06 2 2 2 19693.659 2 +Q9VPB7 FI17508p1 1.3 1 1 1 3704.9177 1 +Q8T092 LD21421p 2.45 1 1 1 647.41547 1 +Q9V3E5 Tetraspanin 3.75 1 1 1 10043.74 1 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 1866.9177 1 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 17088.33 1 +Q7K4G8 LD40944p 1.7 1 1 1 2570.4163 1 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 4647.8965 1 +Q9VHW4 FI21225p1 0.74 1 1 1 1440.507 1 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 3460.3982 1 +Q9VMI5 CG9135 protein 1.44 1 1 1 4572.299 1 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 21712.42 1 +Q9VVJ6 Keren 4.61 1 1 1 5487.1357 1 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 166942.2725 3 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 962.954 1 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 134157.52 1 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 31232.217 1 +Q9VV94 Uncharacterized protein 10.66 1 1 1 10043.578 1 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 493.46964 1 +E1JH07 LD18062p1 8.0 1 1 1 27150.357 1 +Q9VWG2 FI07430p 2.75 1 1 1 2108.2253 1 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 5366.1475 1 +Q9Y113 Negative elongation factor B 1.35 1 1 1 3967.613 1 +P36192 Defensin 8.7 1 1 1 3513.8818 1 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 5276.8086 1 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 4584.318 1 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 5741.279 1 +Q9VAK8 Protein Diedel 8.7 1 1 1 750.61646 1 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 4345.008 1 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 951.5281 1 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 4753.9004 1 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 51146.688 1 +Q0E908 Hillarin 0.86 1 1 1 808.72894 1 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 456131.45399999997 2 +Q9VPH4 FI03293p 2.31 1 1 1 2223.7427 1 +Q5BIL9 SD21168p 1.63 1 1 0 23911.016 1 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 6619.3306 1 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 3803.2803 1 +A1Z6H0 Kune-kune 2.65 1 1 1 13796.156 1 +M9MS77 Uncharacterized protein 7.56 1 1 1 5474.2476 1 +Q9VHJ4 GH04846p 2.25 1 1 1 2619.0278 1 +Q9W226 GEO07239p1 5.88 1 1 1 3454.6077 1 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 7129.8467 1 +Q9VC44 Allatostatin-A 4.64 1 1 0 4167.3716 1 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 4712.0723 1 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 5818.2017 1 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 23246.479 1 +Q9V412 STING ER exit protein 4.45 1 1 0 3144.0195 1 +Q8MRQ2 GH05923p 2.74 1 1 0 5710.5454 1 +Q9VE99 GEO12060p1 16.67 1 1 1 3275.479 1 +Q6XPX3 Phospholipase A2 4.3 1 2 1 13427.054199999999 2 +Q8SYR5 GEO07715p1 7.1 1 1 1 8726.679 1 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 1910.0128 1 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 6093.121 1 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 3511.2136 1 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 3068.229 1 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 9774.424 1 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 3583.9497 1 +Q7PL72 LD05675p 5.85 1 1 0 3232.5903 1 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 5254.2876 1 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 3350.2437 1 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 7217.0024 1 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 3144.1514 1 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 12472.209 1 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 4782.24 1 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 2617.8176 1 +Q2MGN0 FI01014p 2.5 1 1 0 827.35284 1 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 4701.8337 2 +A1A6X2 IP16893p 12.07 1 1 1 22375.492 1 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 9274.734 1 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 1742.4403 1 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 31673.495000000003 2 +Q7JXE1 Bunker gear 4.75 1 1 1 547.1392 1 +Q9VKZ9 FI06463p 5.39 1 1 1 3727.424 1 +Q7K105 LD20892p 1.3 1 1 1 8242.307 1 +Q9VE10 Uncharacterized protein 2.69 1 1 1 17173.416 1 +Q9W081 AT01075p 2.34 1 1 1 1919.7657 1 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 16722.318 1 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 14848.531 1 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 3154.5706 1 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 5216.146 1 +Q9W009 GH12037p 3.17 1 1 1 4534.9585 1 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 42825.656 1 +Q0E906 GEO11031p1 11.69 1 1 1 12579.419 1 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 2029.3787 1 +Q9VBT7 GH13495p 1.9 1 1 1 2611.8496 1 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 40364.95 1 +Q9Y1A7 LD25378p 2.0 1 1 1 10977.997 1 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 701.8049 1 +Q7JR91 GH12715p 3.19 1 1 0 4366.188 1 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 982.56995 1 +B7YZH7 GM12693p 21.43 1 1 0 681.63824 1 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 481.5195 1 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 3305.725 1 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 3384.0085 1 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 99467.85 1 +Q9VUB4 GATOR complex protein NPRL3 1.97 1 1 0 299.07587 1 +Q9VJU2 Nimrod C3 3.12 1 1 1 9571.939 1 +Q9W3Q2 SD08447p 1.26 1 1 1 10069.765 1 +A1Z979 Salivary secreted peptide 6.25 1 1 0 8755.579 1 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 3304.4805 1 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 123358.17880000001 11 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 128539.50970000001 3 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 29102.79656 6 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 30606.39335 5 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 57381.955 2 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTa.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTa.txt new file mode 100644 index 0000000..49fce9a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTa.txt @@ -0,0 +1,4103 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 130C, Sample, n/a, ctrl_pool_1 Abundance: F5: 131, Sample, n/a, ctrl_pool_2 Modifications +A0A0B4K692 Neprilysin-2 4.01 3 4 3 12694.29245 11591.24217 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.79 10 14 10 75120.4748 52012.290199999996 +A0A0B4KGY6 RNA-binding protein Pasilla 23.21 19 70 19 2271608.8363 1757886.42865 +A0A0B7P9G0 Unextended protein 5.4 5 6 5 18968.00113 18227.12143 +A0A126GUP6 Melanization protease 1 23.0 8 16 7 48765.989310000004 36018.303 +A0A1F4 Protein eyes shut 9.56 22 68 0 807487.36505 586759.3787 +A1Z6H7 Nuclear pore membrane glycoprotein 210 2.93 6 7 6 9359.6044 9197.4969 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 14.17 11 23 10 163955.22367 133186.0919 +A1Z713 Intermembrane lipid transfer protein Vps13 0.27 1 1 1 657.6401 467.70508 +A1Z7G7 Latrophilin Cirl 0.41 1 1 0 1549.5828 986.90063 +A1Z7T0 Serine/threonine-protein kinase N 1.34 2 3 0 1754.74 972.8829 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 9.07 4 4 1 4924.39032 5257.283149999999 +A1Z877 Nidogen 24.81 29 66 29 471989.35168 357647.50504 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 2 0 8665.3295 5915.2231 +A1Z8D0 Periodic tryptophan protein 1 homolog 6.75 3 3 3 895.492 2010.77677 +A1Z8P9 Nucleoprotein TPR 19.69 51 83 0 387717.10654 286084.62208 +A1Z9A2 UPF0587 protein CG4646 30.67 5 10 0 87991.7119 71901.2378 +A1Z9A8 Small ribosomal subunit protein mS39 6.75 5 5 5 42254.33384 37450.78690000001 +A1Z9E2 Protein lin-54 homolog 24.95 21 43 0 253059.44183 183742.28522 +A1Z9X0 Atypical protein kinase C 2.97 2 2 0 14088.751 11029.4884 +A1ZA47 PDZ and LIM domain protein Zasp 26.48 51 158 0 78106.79571 53136.20757 +A1ZA77 Transmembrane protein 208 10.92 2 5 2 56228.0232 43369.6661 +A1ZAJ2 Kinesin-like protein unc-104 3.41 6 6 0 11025.855 8294.1112 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 9.78 10 12 0 36347.91247 28915.56958 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 11.11 3 3 3 9211.53666 7549.2919 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 3.05 2 2 2 10580.0236 8981.493999999999 +A4VCL2 Extracellular serine/threonine protein CG31145 3.79 2 2 0 9318.8298 6241.1371 +A8DYH2 Ubiquitin-fold modifier 1 66.67 4 8 0 228965.5949 175659.4701 +A8DYP0 Protein Obscurin 2.11 10 12 10 48027.80664 31008.73486 +B7YZT2 Mitochondrial fission 1 protein 40.91 6 9 6 248746.10619999998 206573.46435999998 +C0HK92 Uncharacterized protein CG45076 49.92 34 106 0 2731672.36351 1962902.04748 +C0HK94 Uncharacterized protein CG45078 50.92 11 31 9 372860.86534 285400.4426 +C0HK95 Protein anoxia up-regulated 87.02 11 88 9 998875.28265 697067.77355 +C0HKA0 Small ribosomal subunit protein uS11A 48.34 8 36 0 574787.12656 475137.67582 +C0HL62 Larval cuticle protein 65Ab1 8.65 1 4 0 130435.11 82605.226 +C0HL66 Histone H3.3A 52.94 8 63 0 71054.89145 57049.291699999994 +C0HLZ9 Baramicin A1 15.56 4 9 0 67996.9964 51076.82934 +C4NYP8 Hsc70-interacting protein 1 47.21 17 41 0 1099049.4708699998 871526.23781 +E1JIT7 PH and SEC7 domain-containing protein 2.81 4 8 4 6316.89844 4365.2241300000005 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 14.19 11 16 0 57848.782439999995 48804.0699 +M9NDE3 Protein bark beetle 3.91 13 19 13 39096.09031 27958.962509999998 +M9PF61 Aldo-keto reductase 1B 60.57 23 109 23 4754030.74647 4025617.88683 +M9PFN0 Phosphatase Herzog 6.25 3 7 3 163232.09840000002 146115.05180000002 +O01367 Protein held out wings 21.48 8 10 0 113578.83945 36100.56744 +O01382 Caspase drICE 17.99 5 7 4 3682.92619 2369.4602999999997 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.97 4 9 0 333980.10547 239060.67799999999 +O01666 ATP synthase subunit gamma, mitochondrial 58.92 19 129 19 3299914.66635 2698271.20199 +O02194 Presenilin homolog 5.73 3 5 0 7473.70246 6293.6071 +O02195 Eukaryotic translation initiation factor 3 subunit I 24.23 7 23 7 210237.8445 196492.2862 +O02649 Heat shock protein 60A 73.47 40 183 25 7450513.12676 5865292.02532 +O15943 Neural-cadherin 14.89 49 91 2 723115.10483 510918.98698 +O16797 Large ribosomal subunit protein uL3 15.62 7 14 7 129049.0085 111417.6862 +O17444 Vesicular acetylcholine transporter 11.25 5 6 5 75328.46554 47099.9729 +O17445 Large ribosomal subunit protein eL15 12.25 3 8 0 68994.20937 67455.8973 +O18333 Ras-related protein Rab-2 18.31 5 10 5 65960.01165 41985.88253 +O18334 Ras-related protein Rab6 18.75 5 16 0 8654.58986 6488.351320000001 +O18373 Inactive selenide, water dikinase-like protein 23.87 9 27 9 372126.50694 306091.4817 +O18388 Importin subunit beta 3.73 4 6 0 3017.33727 2656.2126 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 89.02 18 147 18 6310275.04346 5522643.11122 +O18413 26S proteasome regulatory subunit 8 36.54 15 53 6 230828.934 200516.92054 +O18640 Small ribosomal subunit protein RACK1 13.52 5 12 0 116091.8536 93912.39334 +O44081 H/ACA ribonucleoprotein complex subunit 4 6.3 4 4 0 77966.1906 66122.6888 +O44342 Protein windbeutel 19.46 5 10 0 43056.8909 37101.0171 +O44386 Integrin alpha-PS3 11.84 14 20 12 73119.99703 59328.010460000005 +O44437 Small nuclear ribonucleoprotein Sm D3 11.26 2 2 2 529.54156 481.24048 +O46037 Vinculin 53.69 50 137 0 2828055.32581 2292991.79653 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 36913.8891 24037.6948 +O46098 LYR motif-containing protein 4 homolog 36.96 4 10 4 131286.314 116308.4345 +O46106 Splicing factor 3A subunit 3 9.15 5 10 5 172851.5502 123845.7865 +O46339 Homeobox protein homothorax 6.16 3 3 3 0.0 377.7637 +O61231 Large ribosomal subunit protein uL16 43.12 9 25 0 356077.7565 230164.55742 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 5769.49597 4836.63174 +O61307 Teneurin-m 0.66 2 2 0 5607.26845 3927.3558000000003 +O61443 Mitogen-activated protein kinase p38b 7.67 3 6 2 21650.79635 13755.38216 +O61491 Flotillin-1 48.83 23 81 23 1195262.52198 954285.86348 +O61722 PRL-1 phosphatase 44.32 7 23 7 501228.30564 423602.80160999997 +O62619 Pyruvate kinase 69.23 27 80 27 2484000.17172 2159195.99733 +O62621 Coatomer subunit beta' 3.17 3 4 3 19188.393 13854.2938 +O76206 Putative riboflavin kinase 49.02 7 15 0 397095.42422 348028.826 +O76454 Pterin-4-alpha-carbinolamine dehydratase 23.96 3 7 3 173598.7183 185756.9197 +O76742 Ras-related protein Rab7 28.5 6 12 6 124762.9736 90373.5798 +O76878 RILP-like protein homolog 9.71 5 10 0 146493.45734 89189.87491 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 18.35 7 17 7 134749.5437 95260.39617 +O76927 Small ribosomal subunit protein eS21 50.6 5 22 0 554703.70622 301152.22060999996 +O77051 Transcription factor E2F2 22.97 9 14 0 33028.30192 26446.07077 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 5 3 23983.0135 19780.9082 +O77277 Torsin-like protein 12.65 5 8 0 70178.9467 37981.18896 +O77410 Eukaryotic translation initiation factor 3 subunit E 3.68 2 2 2 8542.6394 8120.1391 +O77460 Inorganic pyrophosphatase 61.24 15 67 1 33729.395 31581.754 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 17 27 0 175119.05196 125522.00018 +O96690 Protein PDF 23.53 1 1 1 3208.5847 2297.3042 +O96827 Probable elongation factor 1-beta 83.78 18 82 0 3417859.30886 2716117.25005 +O97067 Probable peptidyl-tRNA hydrolase 2 31.18 5 9 0 42125.958510000004 27056.728 +O97125 Heat shock protein 68 24.09 13 89 6 85400.14758 64982.75111 +O97172 UPF0729 protein CG18508 29.29 3 8 0 70028.5278 55992.2606 +O97394 Protein sidekick 1.89 4 5 0 2882.09354 3549.86665 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 6 3 35383.9408 26315.96336 +O97477 Inositol-3-phosphate synthase 33.81 15 58 15 965866.77115 785216.75861 +P00334 Alcohol dehydrogenase 88.28 21 200 21 26628712.25074 25223839.330989998 +P00408 Cytochrome c oxidase subunit 2 33.77 7 40 7 2256148.8641 1947659.11636 +P00522 Tyrosine-protein kinase Abl 3.33 4 6 0 10773.02645 4635.847299999999 +P02255 Histone H1 14.45 3 6 0 35590.6271 29751.0951 +P02283 Histone H2B 56.91 8 70 8 3201708.73521 2626077.66663 +P02299 Histone H3 52.94 8 67 2 2092618.8462 1591640.2443 +P02515 Heat shock protein 22 40.8 8 18 8 100064.93765 83714.64985 +P02516 Heat shock protein 23 84.41 16 83 0 3336457.51261 2735479.58836 +P02517 Heat shock protein 26 57.69 10 30 0 780505.93538 671646.32845 +P02518 Heat shock protein 27 44.13 9 21 0 326955.66116 268454.75542 +P02572 Actin-42A 64.1 25 768 2 40629501.66679 31034004.91638 +P02574 Actin, larval muscle 65.96 25 672 0 956953.2823 691921.8860099999 +P02828 Heat shock protein 83 48.4 33 148 0 3552004.51117 3124540.14634 +P02843 Vitellogenin-1 70.84 32 265 0 31485454.22306 23168567.9482 +P02844 Vitellogenin-2 59.28 26 187 0 14320218.32956 11282003.04061 +P04197 Myb protein 3.81 3 3 0 1517.56034 1402.82586 +P04359 Large ribosomal subunit protein eL32 33.58 5 17 5 594503.5639 509816.27847 +P04388 Ras-like protein 2 13.02 2 10 2 72990.2732 44444.15505 +P05031 Aromatic-L-amino-acid decarboxylase 10.78 5 9 5 27958.896 18402.201849999998 +P05205 Heterochromatin protein 1 36.89 8 22 8 301934.3044 208633.89483 +P05303 Elongation factor 1-alpha 2 68.4 29 177 0 2031205.25852 1639115.58101 +P05389 Large ribosomal subunit protein P2 31.86 4 18 4 1356540.1626 1074357.5918999999 +P05552 Transcription factor Adf-1 7.63 2 5 0 101100.2434 44473.4316 +P05661 Myosin heavy chain, muscle 50.46 119 519 1 92647.1351 62156.19196 +P05812 Heat shock protein 67B1 12.13 5 7 5 23854.865550000002 15430.977 +P06002 Opsin Rh1 4.56 2 8 2 61510.5293 56461.77453 +P06603 Tubulin alpha-1 chain 64.67 27 183 0 10410652.38945 8909320.3663 +P06604 Tubulin alpha-2 chain 38.75 18 147 1 2874.1038 2742.8481 +P06607 Vitellogenin-3 82.14 33 299 0 29773339.18752 24335852.62648 +P06742 Myosin light chain alkali 56.77 11 71 0 12496825.88018 8808075.41857 +P07207 Neurogenic locus Notch protein 0.48 1 1 0 4865.67 5623.111 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 70.18 22 133 9 1352987.67044 937603.8250600001 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 156 0 9783794.62735 7227990.84764 +P07665 Serendipity locus protein beta 8.43 4 5 0 3477.3851 2290.1450800000002 +P07668 Choline O-acetyltransferase 7.63 5 6 5 24247.5723 18689.1441 +P07764 Fructose-bisphosphate aldolase 93.63 43 422 0 24122723.59544 18898305.6071 +P08111 Lethal(2) giant larvae protein 5.43 7 9 0 22012.9904 13440.27107 +P08120 Collagen alpha-1(IV) chain 5.96 7 22 7 250427.16854 187643.56766 +P08144 Alpha-amylase A 18.22 8 15 0 193676.584 157822.64337 +P08171 Esterase-6 13.24 9 22 0 187046.41978 170917.1104 +P08182 Casein kinase II subunit beta 38.72 8 38 2 713426.94993 492432.09786 +P08570 Large ribosomal subunit protein P1 75.89 5 33 0 2412871.71746 1757492.90977 +P08645 Ras-related protein Rap1 25.54 5 15 0 136405.2565 146253.6318 +P08646 Ras-like protein 1 30.69 4 10 4 78528.9677 71082.35725 +P08736 Elongation factor 1-alpha 1 70.84 34 198 17 16961788.44585 13120033.68969 +P08761 Peptide methionine sulfoxide reductase 27.64 6 13 0 71290.13356 56855.34191 +P08879 Nucleoside diphosphate kinase 69.28 8 136 0 6282055.84956 5800270.9363 +P08928 Lamin 67.36 50 193 49 4557231.59392 3481861.9800299997 +P08985 Histone H2A.v 42.55 10 47 8 1936119.3286000001 1478201.62025 +P09040 Drosulfakinins 21.99 3 3 3 73317.822 56825.4995 +P09180 Large ribosomal subunit protein uL4 47.13 20 61 20 1203828.19847 1034980.54372 +P09208 Insulin-like receptor 3.03 8 10 8 4974.86649 3226.88143 +P09491 Tropomyosin-2 76.76 34 245 2 91453.31692000001 63922.1221 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 35.63 4 16 4 261029.8249 168623.61813999998 +P10180 Homeobox protein cut 0.46 1 3 0 66649.1408 43261.95879999999 +P10379 Protein unzipped 20.29 8 28 0 495111.904 375243.0914 +P10552 FMRFamide-related peptides 2.31 1 3 1 61739.748 50622.770000000004 +P10676 Neither inactivation nor afterpotential protein C 25.98 40 88 11 1399321.10567 1204266.35903 +P10981 Actin-87E 76.33 30 777 0 577037.06317 565778.05217 +P10987 Actin-5C 64.63 27 797 0 992577.85065 591816.96692 +P11046 Laminin subunit beta-1 21.09 39 84 39 934345.5337 779587.97213 +P11146 Heat shock 70 kDa protein cognate 2 13.9 6 46 1 21961.707 11932.544 +P11147 Heat shock 70 kDa protein cognate 4 77.73 48 406 0 22019726.80251 16776288.9596 +P11584 Integrin beta-PS 18.32 17 45 0 236367.25054 148273.78049 +P12024 Chaoptin 30.95 35 88 0 2801849.09376 2319847.94902 +P12080 Integrin alpha-PS2 11.53 17 39 17 164527.0164 122678.27526 +P12370 cAMP-dependent protein kinase catalytic subunit 1 45.61 16 49 15 720332.87793 565170.46216 +P12426 Adenine phosphoribosyltransferase 14.29 3 5 0 13916.207 12949.2872 +P12613 T-complex protein 1 subunit alpha 23.7 13 37 0 454680.77418 363819.63546 +P12881 Proteasome subunit alpha type-1 49.82 13 50 0 576946.05092 503783.9425 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 21.85 6 14 1 116154.15773 112415.14073 +P13008 Small ribosomal subunit protein eS26 21.05 2 12 0 250605.40529999998 244349.52766 +P13060 Eukaryotic translation elongation factor 2 39.22 27 75 27 1353335.8294 1019499.26414 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 34.7 38 97 0 1484786.6183799999 1175649.80503 +P13395 Spectrin alpha chain 65.3 140 542 0 15305013.52142 12338903.96529 +P13469 DNA-binding protein modulo 4.06 2 2 0 7379.91668 8698.71696 +P13496 Dynactin subunit 1 14.23 21 45 21 143764.42267 112754.08411 +P13607 Sodium/potassium-transporting ATPase subunit alpha 38.14 36 144 1 4068783.34581 3311894.57433 +P13677 Protein kinase C, eye isozyme 12.57 9 13 9 134905.9241 103416.8726 +P13678 Protein kinase C 5.01 4 4 0 10128.876499999998 9272.29624 +P14199 Protein ref(2)P 13.19 7 32 7 290796.8617 217140.4765 +P14318 Muscle-specific protein 20 80.43 16 103 16 2945912.70694 2252248.40849 +P14484 Pupal cuticle protein 27.17 5 39 5 454541.90062000003 271800.46235 +P14599 Amyloid-beta-like protein 1.92 2 2 0 1251.4483500000001 0.0 +P15007 Enolase 78.0 40 271 1 31757335.5733 26586420.96672 +P15215 Laminin subunit gamma-1 33.62 53 135 0 1516064.18461 1179434.55733 +P15330 Embryonic polarity protein dorsal 1.4 2 3 0 4486.3984 479.87863 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 84 1 1883100.1253 1609384.68219 +P15364 Protein amalgam 15.92 5 11 0 55271.51852 40481.729999999996 +P15372 Phosrestin-2 67.58 19 65 0 1380220.3798 1225966.21 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 20.68 4 10 4 135439.5587 122374.50738 +P16378 G protein alpha o subunit 29.1 11 46 7 1096480.73819 827066.18386 +P16554 Protein numb 15.47 8 12 0 71477.0211 54387.3791 +P16568 Protein bicaudal D 23.4 19 27 0 272729.62617 217750.94853 +P16620 Tyrosine-protein phosphatase 69D 5.88 9 13 9 52671.43163 45067.42764 +P16621 Tyrosine-protein phosphatase Lar 1.43 3 6 0 5158.56952 3339.24752 +P16914 Protein elav 30.23 13 43 0 642498.94676 519170.55561 +P17210 Kinesin heavy chain 34.56 34 100 34 926089.51625 705559.77006 +P17276 Protein henna 44.69 15 32 0 490912.05732 443539.50916 +P17336 Catalase 41.11 16 61 16 1169360.74784 1102362.75839 +P17704 Small ribosomal subunit protein eS17 69.47 10 30 10 1227146.46306 960281.72992 +P17719 Dihydrofolate reductase 4.4 1 2 1 7696.18 3692.90686 +P18053 Proteasome subunit alpha type-4 40.53 10 51 8 1277467.97559 1017361.04683 +P18173 Glucose dehydrogenase [FAD, quinone] 5.76 4 5 0 10800.012859999999 8294.4391 +P18431 Protein kinase shaggy 29.77 14 58 0 1226264.89577 1026769.30718 +P18432 Myosin regulatory light chain 2 86.94 19 167 19 13953341.03861 10149005.417679999 +P18459 Tyrosine 3-monooxygenase 6.91 5 11 0 73870.14003 56431.94426 +P18824 Armadillo segment polarity protein 14.47 12 25 0 113856.60009 86726.11743 +P19107 Phosrestin-1 77.56 33 263 33 8581271.30687 7638297.73158 +P19109 ATP-dependent RNA helicase p62 22.67 17 36 0 108971.48083 91621.48056 +P19334 Transient receptor potential protein 4.39 6 9 4 84781.06802 59324.1137 +P19339 Protein sex-lethal 4.52 2 4 0 4348.830220000001 6285.05695 +P19351 Troponin T, skeletal muscle 49.37 30 130 0 193483.0461 128433.0278 +P19889 Large ribosomal subunit protein uL10 48.58 12 46 0 6533311.88483 6376835.93796 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 5 8 3 13440.471099999999 7517.72904 +P20153 Protein ultraspiracle 5.91 4 7 0 21500.915 18680.07227 +P20228 Glutamate decarboxylase 27.84 12 34 0 586444.08632 503534.72447 +P20232 Transcription elongation factor S-II 42.81 13 19 0 128519.62943 109882.01034 +P20240 Otefin 29.95 11 22 11 124712.32786 89298.31763 +P20241 Neuroglian 21.89 29 84 0 967071.70002 704424.9153999999 +P20348 Sex-regulated protein janus-A 28.89 4 7 4 222212.61966 142780.13037 +P20351 Tryptophan 2,3-dioxygenase 7.92 3 4 3 7557.2353299999995 5872.8929 +P20385 Chorion transcription factor Cf2 9.8 5 6 0 47157.36024 37526.00955 +P20432 Glutathione S-transferase D1 52.15 12 101 9 6027339.03474 5250004.47644 +P20477 Glutamine synthetase 1, mitochondrial 44.11 16 73 0 3712136.4719000002 2586241.56122 +P20478 Glutamine synthetase 2 cytoplasmic 82.38 24 230 0 12017318.8672 8826166.375330001 +P21187 Polyadenylate-binding protein 26.81 14 44 14 96081.07976000001 75623.03749 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 117 18 5504184.90596 4404097.46158 +P22465 Annexin B10 65.42 20 129 20 3966917.46998 3702645.1167 +P22769 Proteasome subunit alpha type-7-1 39.36 9 33 8 807004.9194 621296.7828 +P22813 Heat shock factor protein 7.09 5 6 0 68031.01915000001 23376.8405 +P22815 Protein bride of sevenless 1.34 1 1 1 4852.6973 3423.5725 +P22979 Heat shock protein 67B3 54.27 8 22 8 605480.5877299999 465383.83758 +P23128 ATP-dependent RNA helicase me31b 5.23 3 7 3 47308.0501 43738.2669 +P23226 205 kDa microtubule-associated protein 24.39 23 63 0 506265.64983999997 359235.51859 +P23257 Tubulin gamma-1 chain 5.68 3 4 1 15549.086200000002 12367.5972 +P23625 G protein alpha q subunit 54.67 20 124 18 3900523.43018 3141880.64218 +P23654 Neurotactin 8.87 7 17 0 131330.6279 105176.74567 +P23696 Serine/threonine-protein phosphatase PP2A 18.12 5 10 0 70022.30616000001 45013.5605 +P23779 Cystatin-like protein 63.49 8 26 8 1596055.35882 1264387.34377 +P24156 Prohibitin 1 73.91 17 62 0 1184273.74475 976787.89154 +P25007 Peptidyl-prolyl cis-trans isomerase 51.98 15 120 10 12692794.30568 10647658.02085 +P25160 ADP-ribosylation factor-like protein 1 4.44 1 2 1 2598.7934 4130.3038 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 40 0 302803.65165 258684.87471 +P25171 Regulator of chromosome condensation 10.42 5 9 5 39679.10493 35747.55104 +P25172 Protein suppressor 2 of zeste 1.75 2 2 0 2887.5819 2099.41 +P25228 Ras-related protein Rab-3 30.45 6 18 0 108160.62689999999 105960.1724 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 5.69 9 11 9 41901.4792 34136.362550000005 +P25822 Maternal protein pumilio 3.39 5 8 0 27144.066170000002 22971.67344 +P25843 Profilin 88.89 7 27 0 809420.05845 747168.88916 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 6 0 242941.1808 264943.2803 +P26270 26S proteasome non-ATPase regulatory subunit 7 7.69 3 9 0 124901.1107 122816.6436 +P26308 Guanine nucleotide-binding protein subunit beta-1 24.71 7 32 0 1086794.7856 794716.1865300001 +P26686 Serine-arginine protein 55 18.35 8 14 0 168536.67316 121983.037 +P27716 Innexin inx1 11.33 5 7 0 56713.9109 59438.8459 +P27779 Pupal cuticle protein Edg-78E 38.52 3 20 0 193475.28127 93747.68634 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.9 9 11 9 33360.38276 23564.32743 +P29052 Transcription initiation factor IIB 13.65 5 13 0 47010.8861 40497.600640000004 +P29310 14-3-3 protein zeta 69.35 18 328 0 17399250.27776 13963035.49229 +P29327 Small ribosomal subunit protein eS6 26.21 6 24 2 419552.80077 324824.31737 +P29413 Calreticulin 57.64 21 79 0 5096219.31356 4118587.12976 +P29613 Triosephosphate isomerase 77.73 17 135 16 10630353.12595 8436011.07591 +P29742 Clathrin heavy chain 8.76 16 22 0 78475.74315 61891.43047 +P29746 Protein bangles and beads 59.28 23 66 23 1222502.31798 875411.65459 +P29829 Guanine nucleotide-binding protein subunit beta-2 48.55 16 75 16 3259094.04411 2731953.12783 +P29843 Heat shock 70 kDa protein cognate 1 25.59 15 100 2 6062.2086 3850.9602999999997 +P29844 Endoplasmic reticulum chaperone BiP 65.7 42 234 0 7137949.58086 5839437.5942 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 206 0 6222035.31171 4853137.05908 +P30432 Furin-like protease 2 2.44 4 6 0 12485.7249 6880.41856 +P31009 Small ribosomal subunit protein uS5 41.2 11 51 0 694842.19272 560293.4577799999 +P31409 V-type proton ATPase subunit B 52.45 21 89 0 1710115.3733700002 1445294.5769500001 +P32100 Large ribosomal subunit protein uL30 45.24 15 40 0 1056424.0984 965729.3865400001 +P32234 Guanylate binding protein 128up 11.14 4 4 3 85193.5967 69340.6223 +P32392 Actin-related protein 3 16.99 7 15 7 85192.97927000001 63976.137780000005 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 15.06 7 17 7 23889.2105 19933.45045 +P33438 Glutactin 23.98 23 64 0 546829.95625 604451.4242 +P34082 Fasciclin-2 23.02 17 30 0 240205.30813 124529.02248 +P35122 Ubiquitin carboxyl-terminal hydrolase 55.07 9 24 0 840992.60412 664452.14982 +P35128 Ubiquitin-conjugating enzyme E2 N 60.93 8 20 0 807267.9377 633158.20187 +P35220 Catenin alpha 24.1 22 60 12 446567.96043 380954.19339000003 +P35381 ATP synthase subunit alpha, mitochondrial 73.91 46 498 46 29608148.42676 22597069.55376 +P35415 Paramyosin, long form 75.2 85 589 0 31889870.12788 25212618.53495 +P35416 Paramyosin, short form 62.19 47 347 0 2579516.9324 2003261.79659 +P35421 Phosphoribosylformylglycinamidine synthase 0.59 1 2 1 2310.1455 1856.8894 +P35554 Flightin 46.7 7 14 0 83440.72649 52655.62888 +P35992 Tyrosine-protein phosphatase 10D 4.62 10 11 9 35448.08064 24589.687280000002 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 36.55 21 62 0 1317585.70749 1191484.63438 +P36188 Troponin I 46.1 16 73 0 6148881.0326000005 4754856.73512 +P36241 Large ribosomal subunit protein eL19 24.14 5 17 5 1197685.04946 979648.32638 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 7.82 4 5 0 3510.3675499999995 1738.4667 +P36951 Putative hydroxypyruvate isomerase 43.18 10 27 10 799727.3284 650180.4539000001 +P36958 DNA-directed RNA polymerase II subunit RPB9 5.43 1 1 0 3672.5642 2743.1804 +P36975 Synaptosomal-associated protein 25 85.38 19 157 17 4990295.71678 3878380.16958 +P37193 Adrenodoxin-like protein 1, mitochondrial 29.07 4 7 0 215461.27065 188299.17157 +P37236 Frequenin-1 56.15 9 52 0 184842.29499999998 140609.05917 +P37276 Dynein heavy chain, cytoplasmic 0.86 5 6 0 4451.10573 3884.1013900000003 +P38040 Guanine nucleotide-binding protein subunit gamma-1 77.14 6 36 6 412225.7005 318615.42385 +P38979 Small ribosomal subunit protein uS2 81.85 17 57 17 2743215.59385 2511026.61784 +P39018 Small ribosomal subunit protein eS19A 53.85 11 59 0 4899444.98406 3968291.2484 +P39736 Puff-specific protein Bx42 12.61 6 12 0 26762.02245 20511.9434 +P40301 Proteasome subunit alpha type-2 15.81 3 4 3 142208.5411 130545.8657 +P40304 Proteasome subunit beta type-1 33.62 7 18 7 166017.75218 146749.89441 +P40320 S-adenosylmethionine synthase 8.33 4 6 0 43192.1162 45079.5784 +P40417 Mitogen-activated protein kinase ERK-A 36.17 12 29 7 250166.5737 282369.58914 +P40421 Serine/threonine-protein phosphatase rdgC 6.96 5 12 0 102382.7412 77205.25906 +P40423 Myosin regulatory light chain sqh 33.91 5 29 0 421240.21423000004 345176.29466 +P40427 Homeobox protein extradenticle 3.72 1 4 0 5209.56188 5263.9398 +P40792 Ras-related protein Rac1 22.4 4 22 0 162275.9498 124889.34240000001 +P40793 Cdc42 homolog 27.75 5 16 0 169751.28579999998 127958.79933 +P40796 La protein homolog 30.26 11 26 10 360296.50567 310191.13246 +P40797 Protein peanut 12.62 7 32 6 141673.96083 123594.31318 +P40945 ADP ribosylation factor 4 30.0 4 17 0 908.74 871.26575 +P41042 Small ribosomal subunit protein eS4 41.76 12 39 0 537771.2104699999 458100.2511 +P41043 Glutathione S-transferase S1 75.9 13 61 0 3551239.80278 3317079.73422 +P41044 Calbindin-32 75.48 25 116 0 5815281.958 4985722.2345 +P41073 Zinc finger protein on ecdysone puffs 22.07 14 39 0 287169.77079 232772.88277 +P41092 Large ribosomal subunit protein uL15 41.61 7 22 0 580046.74182 500174.72225999995 +P41093 Large ribosomal subunit protein eL20 33.33 7 21 7 604266.1274 454275.40159 +P41094 Small ribosomal subunit protein uS13 59.87 15 60 15 2289819.79185 1989846.89496 +P41126 Large ribosomal subunit protein eL13 48.17 12 57 0 2674308.8516 2285307.78138 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.45 15 42 0 579811.57914 476363.21256 +P41375 Eukaryotic translation initiation factor 2 subunit 2 19.87 7 16 7 133651.55752 115971.92968 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 23.49 10 30 0 262148.516 254956.30155 +P41900 General transcription factor IIF subunit 2 8.3 2 2 2 24288.021299999997 20901.787 +P42207 Septin-1 12.74 5 19 4 19691.7939 18814.9745 +P42281 Acyl-CoA-binding protein homolog 73.26 6 30 5 6130182.89488 4857186.6478 +P42325 Neurocalcin homolog 66.32 14 25 14 1072801.8725 928747.3244 +P42787 Carboxypeptidase D 5.26 8 12 0 56234.18755 40788.210060000005 +P43332 U1 small nuclear ribonucleoprotein A 18.98 5 13 5 143486.2823 149117.83994 +P45437 Coatomer subunit beta 7.57 5 10 5 48075.483700000004 37702.48921 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 16 118 16 6351650.85865 5093688.88718 +P45888 Actin-related protein 2 12.53 5 9 5 22760.7817 19542.65334 +P45889 Actin-related protein 1 24.47 13 20 13 316109.32374 276010.5119 +P46150 Moesin/ezrin/radixin homolog 1 34.6 27 64 0 27319.854 17024.691 +P46222 Large ribosomal subunit protein uL5 21.2 4 19 0 270371.85196999996 231540.92495 +P46223 Large ribosomal subunit protein eL8 33.58 8 36 0 1089668.21649 855306.18282 +P46415 Alcohol dehydrogenase class-3 18.47 6 12 6 280588.03349999996 159167.4201 +P46461 Vesicle-fusing ATPase 1 39.19 29 83 0 1364218.57381 1064948.80728 +P46824 Kinesin light chain 41.34 24 66 0 1285948.13583 988196.52655 +P47947 Troponin C, isoform 1 20.78 3 33 0 1373052.17057 1031598.24888 +P47948 Troponin C, isoform 2 27.74 4 7 0 584.1458 854.9765 +P47949 Troponin C, isoform 3 51.61 7 20 0 990937.03555 715238.19386 +P48148 Ras-like GTP-binding protein Rho1 66.67 10 36 10 622699.80995 476778.21268 +P48149 Small ribosomal subunit protein uS8A 38.46 6 23 0 551746.82773 409573.19818 +P48159 Large ribosomal subunit protein uL14 70.71 8 26 8 831694.5452 628486.8283 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 60.19 5 36 5 3736115.12897 2762894.3978 +P48451 Calcineurin subunit B type 1 55.88 7 25 0 135902.771 85065.3402 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 19.88 6 11 0 1353.3763 1180.3297 +P48554 Ras-related protein Rac2 26.56 5 20 0 20801.9443 15900.3328 +P48555 Ras-related protein Ral-a 43.28 8 20 1 415231.07553 335116.07237 +P48588 Small ribosomal subunit protein eS25 8.55 1 6 1 51580.420079999996 51585.651699999995 +P48596 GTP cyclohydrolase 1 46.91 13 74 13 1046536.94803 867369.19948 +P48598 Eukaryotic translation initiation factor 4E1 26.64 4 17 0 225182.90904 175521.51045 +P48601 26S proteasome regulatory subunit 4 51.25 22 73 0 878341.04305 810503.6651 +P48602 V-type proton ATPase catalytic subunit A isoform 1 55.7 28 113 0 1946932.2656100001 1341131.95406 +P48603 F-actin-capping protein subunit beta 20.65 7 16 0 76902.28399 55181.71654 +P48604 GrpE protein homolog, mitochondrial 42.72 11 48 11 688286.66654 521414.23167999997 +P48605 T-complex protein 1 subunit gamma 34.56 21 73 0 754932.9958800001 424096.44523 +P48607 Protein spaetzle 4.29 1 2 0 4807.183 3198.0962 +P48609 Cyclin-dependent kinase 5 homolog 16.67 5 8 4 25621.48362 24181.70967 +P48610 Arginine kinase 1 75.28 38 429 0 30053947.27654 24551460.80947 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 63.1 8 28 8 562643.53979 444504.79425 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 41.57 12 53 0 802890.58418 545814.7023 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 19.48 6 18 0 36334.92883 24807.273500000003 +P49028 Protein mago nashi 46.26 6 12 6 197188.83774 170278.0626 +P49071 MAP kinase-activated protein kinase 2 13.93 6 12 0 61846.5893 54413.0248 +P49455 Tropomyosin-1, isoforms 33/34 42.08 34 310 1 458.68732 0.0 +P49630 Large ribosomal subunit protein eL36 16.52 2 8 0 580060.49562 599811.76924 +P49657 Serine/threonine-protein kinase minibrain 1.65 2 2 0 6973.0008 4050.47235 +P49847 Transcription initiation factor TFIID subunit 6 11.22 6 8 1 32406.9437 24638.9689 +P49866 Transcription factor HNF-4 homolog 2.7 2 3 0 2708.4688 827.73376 +P49906 Transcription initiation factor TFIID subunit 11 9.69 2 2 2 7608.498799999999 6765.502700000001 +P49963 Signal recognition particle 19 kDa protein 29.38 3 5 3 9583.3049 9374.12707 +P50882 Large ribosomal subunit protein uL6 58.42 10 32 0 948375.3796 796768.74234 +P50887 Large ribosomal subunit protein eL22 24.08 8 18 8 130992.41541 85858.59929 +P51140 Segment polarity protein dishevelled 7.06 5 6 5 11904.4262 9835.6788 +P51406 Bystin 5.96 3 4 3 2848.8262 515.83124 +P52029 Glucose-6-phosphate isomerase 13.44 7 11 7 177931.46816 141094.59236 +P52034 ATP-dependent 6-phosphofructokinase 7.99 7 11 1 69149.398 55948.0105 +P52302 Protein lethal(3)malignant blood neoplasm 1 20.37 10 33 0 461857.76214999997 373694.1531 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 39.7 8 14 0 19796.23576 12293.15374 +P52654 Transcription initiation factor IIA subunit 1 5.19 2 2 2 558.5607 1177.91992 +P53034 Replication factor C subunit 2 16.31 6 9 6 19361.1208 16420.60937 +P53501 Actin-57B 77.13 31 817 3 6267292.471940001 5467272.05213 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 3.9 3 4 0 9519.6231 6385.7528999999995 +P53777 Muscle LIM protein 1 56.52 5 52 0 803556.8164 597535.06713 +P53997 Protein SET 11.52 3 3 3 66911.1194 36568.253 +P54185 Putative odorant-binding protein A5 12.38 3 6 3 52492.95 45819.0725 +P54191 General odorant-binding protein 69a 13.51 2 10 2 17282.291 19453.8285 +P54192 General odorant-binding protein 19d 71.33 11 165 11 18161339.30833 12918054.606 +P54193 General odorant-binding protein 83a 42.86 7 24 0 201442.87305 141053.03005 +P54195 General odorant-binding protein 28a 26.57 4 24 4 28200.27293 14496.76616 +P54351 Vesicle-fusing ATPase 2 15.16 12 32 0 6371.58696 5049.88703 +P54352 Ethanolamine kinase 15.25 7 8 5 39858.68952 36963.3159 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 41.57 6 13 6 409368.0528 340029.8139 +P54357 Myosin-2 essential light chain 89.12 10 58 1 1399390.83632 934401.06158 +P54359 Septin-2 8.83 4 13 1 35631.1761 25320.64373 +P54367 Casein kinase I isoform alpha 5.04 2 2 0 1581.4701 1966.9349 +P54385 Glutamate dehydrogenase, mitochondrial 47.69 26 97 7 2770373.58397 2264159.28608 +P54397 39 kDa FK506-binding nuclear protein 4.2 2 2 2 9380.0543 5440.90704 +P54399 Protein disulfide-isomerase 67.14 31 156 0 7983257.985 6606458.63721 +P54611 V-type proton ATPase subunit E 84.07 25 202 0 11114469.98946 8682362.48965 +P54622 Single-stranded DNA-binding protein, mitochondrial 23.97 4 9 4 113233.1989 96655.05649999999 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.82 11 28 0 143818.98071 109276.70885000001 +P55828 Small ribosomal subunit protein uS10 41.67 5 13 5 815084.9966000001 522203.5141 +P55830 Small ribosomal subunit protein eS1 59.7 19 95 19 4648806.6021 3396311.44 +P55841 Large ribosomal subunit protein eL14 45.78 10 32 10 1218934.70769 943329.8597 +P55935 Small ribosomal subunit protein uS4 53.33 15 63 0 1500095.08482 1396248.99258 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 4.03 2 5 0 23937.633850000002 23195.8445 +P56538 Eukaryotic translation initiation factor 6 11.43 3 12 3 94191.8884 68174.79707 +P61209 ADP-ribosylation factor 1 35.16 5 15 0 355414.10323999997 372001.32518 +P61849 Dromyosuppressin 28.0 2 2 0 146976.672 91376.87700000001 +P61851 Superoxide dismutase [Cu-Zn] 78.43 12 152 12 12363104.23172 8943684.90887 +P61855 Adipokinetic hormone 24.05 1 3 1 3613.0236 2085.8347 +P61857 Tubulin beta-2 chain 42.38 15 197 1 2003065.762 1539725.7820000001 +P62152 Calmodulin 98.66 18 386 0 24124326.23502 17326561.698310003 +P80455 Small ribosomal subunit protein eS12 70.5 7 43 7 1833622.24807 1372486.30601 +P81829 Leucokinin 11.88 2 3 2 10119.80185 3921.37616 +P81900 cAMP-dependent protein kinase type II regulatory subunit 58.89 19 69 19 2101115.3403 1600930.46765 +P82147 Protein lethal(2)essential for life 67.91 11 56 0 952446.16329 833820.77529 +P82295 Prominin-like protein 2.47 2 2 0 821.3122 309.6709 +P82804 Partner of Y14 and mago 7.73 1 2 1 814.17755 569.0561 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 28.39 5 20 5 855074.0816 699913.65815 +P83094 Stromal interaction molecule homolog 13.86 8 20 0 57800.35355 43176.313630000004 +P83967 Actin, indirect flight muscle 68.88 28 754 2 55993.202000000005 45922.153 +P84029 Cytochrome c-2 72.22 13 152 0 21338771.15778 14164404.68022 +P84040 Histone H4 57.28 7 79 0 6239788.9382299995 5667643.80845 +P84051 Histone H2A 37.1 7 32 0 1740714.3225 1660725.9271 +P84345 ATP synthase protein 8 18.87 1 1 1 130696.15 93741.305 +P91664 Protein max 14.29 3 4 0 25207.042999999998 19186.949399999998 +P91685 Metabotropic glutamate receptor 3.28 4 6 0 8882.71178 6053.3241 +P91891 Protein Mo25 24.78 10 27 0 409232.04342 382910.3359 +P91926 AP-2 complex subunit alpha 10.32 12 23 11 154437.22977 138065.24875 +P91927 Mitochondrial proton/calcium exchanger protein 16.58 20 38 20 545132.73933 411892.674 +P91928 MICOS complex subunit Mic60 45.33 36 145 0 3430591.40245 2911214.28513 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 32.43 13 57 0 1701896.77195 1368132.32087 +P91938 Thioredoxin reductase 1, mitochondrial 35.4 13 36 0 731235.4855 622638.91094 +P92029 DnaJ-like protein 60 3.69 1 2 0 1454.0517 1193.73145 +P92177 14-3-3 protein epsilon 77.86 25 246 23 14108485.19164 11411661.62759 +P92204 Negative elongation factor E 9.64 3 7 3 21584.209600000002 20441.453700000002 +P92208 Stress-activated protein kinase JNK 4.3 2 3 0 13370.28494 11774.1649 +P98081 Protein disabled 4.99 10 17 0 43415.36108 31121.88541 +Q00174 Laminin subunit alpha 17.05 68 162 68 1475279.0265 1217995.61934 +Q00963 Spectrin beta chain 23.88 59 161 1 6502.1148 5141.9287 +Q01603 Peroxidase 7.68 5 10 0 112101.3824 59037.50500999999 +Q01604 Phosphoglycerate kinase 83.37 30 234 0 9545049.92891 8484262.98558 +Q01637 Uridine 5'-monophosphate synthase 10.34 6 8 6 25854.11536 17299.0584 +Q01819 Connectin 3.52 3 4 0 43424.73867 25404.037 +Q01989 Myosin heavy chain 95F 2.08 3 3 0 67661.651 69946.5623 +Q02748 Eukaryotic initiation factor 4A 39.7 15 35 13 374994.99308 311032.85157 +Q02910 Calphotin 3.94 3 9 3 88232.44497 78825.5689 +Q03017 NF-kappa-B inhibitor cactus 15.8 6 13 0 57853.18374 36339.552299999996 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 6.25 5 5 0 965.4324 1259.9802 +Q03334 Small ribosomal subunit protein uS15 42.38 9 34 0 661247.64554 685335.08245 +Q03427 Lamin-C 55.88 41 164 3 2453996.55936 1848242.7584 +Q04047 Protein no-on-transient A 21.86 12 30 0 65975.07790999999 44259.95831 +Q04164 Putative epidermal cell surface receptor 8.39 15 27 0 141723.36653 98110.98525 +Q04691 Fat-body protein 1 28.38 28 55 0 198326.54894 137866.85918 +Q05783 High mobility group protein D 24.11 3 11 0 116577.1251 82535.47707 +Q05825 ATP synthase subunit beta, mitochondrial 86.93 39 648 0 23261200.49468 18637022.69743 +Q05856 Small nuclear ribonucleoprotein-associated protein B 14.07 3 4 3 13591.28805 12652.789 +Q06559 Small ribosomal subunit protein uS3 80.89 23 114 0 2780644.1717 2507859.90674 +Q06943 High mobility group protein Z 31.53 4 12 0 262260.643 175133.75445 +Q07093 Head-specific guanylate cyclase 9.32 7 10 7 33023.053 28531.5494 +Q07152 Inosine-5'-monophosphate dehydrogenase 14.34 7 18 0 330490.58548 267108.2251 +Q07171 Gelsolin 24.44 18 56 0 571981.07426 472982.82055 +Q07327 Protein ROP 24.79 15 61 0 502708.74821 462092.23724 +Q08012 Growth factor receptor-bound protein 2 40.28 9 23 9 413130.47075 367953.27083 +Q08180 Irregular chiasm C-roughest protein 4.97 4 7 0 10969.65562 5816.71685 +Q08473 RNA-binding protein squid 38.08 8 17 0 395243.38494 424196.39846 +Q09024 Neural/ectodermal development factor IMP-L2 10.11 3 5 0 18972.1973 11668.9023 +Q09101 Locomotion-related protein Hikaru genki 4.49 4 8 4 29811.273 13980.926500000001 +Q0E8C8 Serine protease inhibitor 77Ba 9.11 4 8 4 33534.1522 33220.8018 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.23 5 6 0 23735.957000000002 22715.211499999998 +Q0E9B6 Small ribosomal subunit protein uS17 45.81 11 25 7 211411.55515 125309.4565 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 3733.33346 1590.4476 +Q0KIC3 Uncharacterized protein CG43427 6.27 9 12 0 11271.05854 9027.5975 +Q10714 Angiotensin-converting enzyme 10.08 10 20 0 146470.46854 109484.72684 +Q11002 Calpain-A 3.38 3 4 0 14596.35 11590.1142 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 59 9 388556.9505 353419.06867 +Q23983 Alpha-soluble NSF attachment protein 74.32 19 81 19 3612773.9191 2817618.38733 +Q23997 Imaginal disk growth factor 6 56.64 25 99 0 3756769.89832 3336359.9364 +Q24008 Inactivation-no-after-potential D protein 55.93 36 157 1 2811313.42221 2438789.39404 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 44.01 14 59 0 1332558.54406 1097912.3666100001 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 67.8 18 110 0 3820884.57723 3387630.24996 +Q24050 Elongator complex protein 5 26.34 6 9 6 44209.9962 36900.95554 +Q24114 Division abnormally delayed protein 9.11 6 13 0 330136.41634 261803.2277 +Q24133 DnaJ protein homolog 1 14.37 5 14 0 273589.3246 194170.23119 +Q24134 Negative elongation factor D 2.42 2 2 0 12697.625 11769.906 +Q24180 Deformed epidermal autoregulatory factor 1 3.82 2 2 0 26685.057 16990.828 +Q24185 Protein hook 24.45 18 32 18 344807.63628 255735.07968 +Q24186 Small ribosomal subunit protein uS7A 31.58 9 35 0 1097131.60503 924335.14138 +Q24207 Protein boule 21.93 4 8 0 44894.94968 33282.3741 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 25.68 14 24 0 131274.44381 114115.1615 +Q24210 Peripheral plasma membrane protein CASK 6.35 6 7 0 27954.2038 22345.6193 +Q24211 Protein stoned-A 45.41 30 66 0 1781248.8000999999 1367529.23304 +Q24214 Calcineurin subunit B type 2 62.35 8 29 0 478058.6634 517960.76773 +Q24238 Alkaline phosphatase 4 11.91 7 13 7 49233.986170000004 35891.352060000005 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.43 4 9 0 16842.7902 16547.5371 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 166 0 12863634.10667 9311273.487329999 +Q24276 Hsp90 co-chaperone Cdc37 29.31 11 31 11 447118.10347 318475.05215 +Q24292 Protein dachsous 1.48 5 5 0 4152.37974 2982.8568299999997 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 9 3 147988.47606 135566.62900000002 +Q24298 DE-cadherin 12.94 19 36 19 275681.09691 279918.14702000003 +Q24312 DNA-binding protein Ewg 4.64 4 6 2 45663.454939999996 43660.3496 +Q24318 Transcription factor Dp 18.2 7 10 1 22014.82585 13768.809 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 6.24 3 5 3 14984.74914 11279.97239 +Q24322 Semaphorin-1A 5.78 5 6 0 1281.19718 1071.86292 +Q24337 Protein enhancer of rudimentary 39.42 5 10 0 49334.3787 49470.30417 +Q24372 Lachesin 10.03 5 9 5 50184.760800000004 39610.45787 +Q24388 Larval serum protein 2 9.56 7 10 0 106905.7705 77201.3929 +Q24400 Muscle LIM protein Mlp84B 46.87 24 110 23 2040341.61696 1413365.14682 +Q24407 ATP synthase-coupling factor 6, mitochondrial 59.43 8 46 0 4750683.43684 3346492.75961 +Q24439 ATP synthase subunit O, mitochondrial 72.73 19 198 19 11539133.45206 10877711.8934 +Q24478 Centrosome-associated zinc finger protein Cp190 14.42 15 51 15 325486.11413 237040.86713 +Q24491 RNA-binding protein Rsf1 32.49 8 22 0 78426.76336 60816.4992 +Q24492 Replication protein A 70 kDa DNA-binding subunit 10.78 7 9 7 23557.63773 20580.13702 +Q24509 Syntaxin-5 8.14 4 5 0 15689.6135 12123.551 +Q24523 Protein bunched, class 2/F/G isoform 5.48 8 20 0 108003.17858 73661.41529 +Q24524 Protein singed 5.66 3 5 0 10468.19457 9668.90564 +Q24537 High mobility group protein DSP1 12.21 5 19 0 200276.76465 143592.7852 +Q24547 Syntaxin-1A 39.18 13 60 0 3049473.6654600003 2466506.15159 +Q24560 Tubulin beta-1 chain 83.45 27 307 3 10229589.51775 7740381.8186 +Q24562 Splicing factor U2AF 50 kDa subunit 10.1 4 7 0 46693.56513 22526.37623 +Q24572 Chromatin assembly factor 1 p55 subunit 17.67 7 16 1 45532.06597 32721.091689999997 +Q24583 V-type proton ATPase subunit F 1 57.26 7 48 7 1123584.48297 913184.14202 +Q26377 Pro-corazonin 20.13 3 12 3 107286.2534 67562.1008 +Q26416 Adult cuticle protein 1 20.0 1 2 1 176983.6623 146135.6614 +Q27237 DnaJ homolog l(2)tid, mitochondrial 24.81 11 16 2 47439.49214 35133.7209 +Q27268 ATP-dependent RNA helicase WM6 25.71 10 16 5 274222.9922 238936.25716 +Q27272 Transcription initiation factor TFIID subunit 9 23.38 6 8 6 42942.7082 29965.500600000003 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 55.05 29 112 0 615143.15212 539033.6996 +Q27377 Putative odorant-binding protein A10 43.87 6 31 6 388271.44662999996 206861.73871 +Q27415 Nucleoplasmin-like protein 43.42 6 51 0 1688791.85065 1395095.5987200001 +Q27580 Adenosylhomocysteinase 17.13 6 9 0 215984.1248 197401.7274 +Q27597 NADPH--cytochrome P450 reductase 13.99 11 25 0 107977.16641 92937.64629 +Q27606 Cytochrome P450 4e2 5.89 3 4 0 3925.765 2959.67 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 15.04 3 13 0 66923.48837 47538.152539999995 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 35.96 16 64 0 76008.75259 73160.66286 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 6.15 4 4 4 18184.862699999998 11439.152600000001 +Q3KN41 Neurexin 1 4.46 8 11 0 29655.74334 23735.23992 +Q45VV3 Transcriptional coactivator yorkie 11.65 5 7 0 18660.85475 13026.38241 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 32.52 2 2 2 46076.122 33869.03 +Q4V645 Trissin 13.89 2 4 2 24372.223 15670.5649 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 5 0 14695.051749999999 16388.23856 +Q59E04 Neuroendocrine protein 7B2 7.97 2 4 2 48885.123999999996 37513.587499999994 +Q5U117 Complex I assembly factor Egm, mitochondrial 6.1 4 6 4 15856.5492 11824.6535 +Q6AWN0 Acireductone dioxygenase 43.01 7 14 7 335473.66240000003 245332.71859 +Q6NN40 Alpha N-terminal protein methyltransferase 1 7.61 2 2 0 752.70026 710.0591 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 6.32 4 5 4 10086.0686 5679.1255 +Q709R6 LEM domain-containing protein Bocksbeutel 12.53 5 5 5 14518.0797 8639.5696 +Q70PY2 Peptidoglycan-recognition protein SB1 14.74 3 6 3 97108.9785 92050.18359999999 +Q7JQW6 Lipoyl synthase, mitochondrial 4.24 2 4 2 15232.042000000001 10168.922599999998 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 11 3 176129.96396 169566.9252 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 21 1 588172.07135 356685.11114 +Q7JUR6 Protein GDAP2 homolog 8.89 5 6 0 39726.6398 29895.5912 +Q7JUY7 PTB domain-containing adapter protein ced-6 16.63 7 19 0 133780.90981 115336.9984 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 27.91 9 32 0 759388.6513 682950.2073 +Q7JW27 WASH complex subunit 1 7.01 3 3 3 5559.514 4287.6724 +Q7JWD3 ATPase ASNA1 homolog 25.6 7 12 7 28069.70944 24721.67011 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 10.4 4 7 0 52375.92053 40810.593199999996 +Q7JXF5 Nuclear pore glycoprotein p62 13.96 6 14 6 149178.6843 106815.82777 +Q7JXF7 Protein seele 23.28 4 11 4 222633.68333 209195.6657 +Q7JYV2 Synaptogyrin 7.88 1 1 1 48607.098 49884.008 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.98 1 1 0 674.0513 429.4346 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 18472.2929 13235.774949999999 +Q7K0D8 Nuclear pore complex protein Nup50 20.21 12 24 12 201512.3319 153516.933 +Q7K0E3 MOB kinase activator-like 4 22.42 4 5 0 242281.726 200337.872 +Q7K0L4 WD repeat-containing protein 26 homolog 2.22 2 3 0 6377.7405 6824.62726 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 22.83 7 13 7 43154.79944 37376.95207 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 33.54 4 8 4 71336.27146999999 54472.630399999995 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 504.7915 0.0 +Q7K2D2 Dynactin subunit 2 46.58 16 45 16 887579.10785 672933.2921 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 53.47 14 39 1 20730.638430000003 16835.56834 +Q7K486 Armadillo repeat-containing protein 6 homolog 13.58 7 11 7 87976.61906 80599.6773 +Q7K4Q5 Probable protein phosphatase CG10417 21.9 11 25 0 172324.88544 126729.88198 +Q7K4Z4 Protein immune deficiency 14.65 3 8 3 18737.37302 16095.08953 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 36.44 8 22 0 378236.81553 289496.75288 +Q7K556 TRPL translocation defect protein 14 10.11 5 8 0 40285.8405 32603.4293 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 44.66 16 73 16 3004490.14243 2721422.9414 +Q7K5M0 Inactive serine protease scarface 14.35 6 17 6 98342.28122 66211.19983 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 54.55 7 19 7 452713.5865 360344.50754 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 45.26 20 45 0 610077.4594 495247.25062 +Q7KML2 Acyl-coenzyme A oxidase 1 3.89 3 4 3 12741.7545 12676.7739 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 26.34 22 54 1 503001.56813 440584.53515 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 7.96 7 12 7 44113.2209 38114.03755 +Q7KNF2 Polyadenylate-binding protein 2 27.68 7 11 0 108946.5589 82004.13103 +Q7KQM6 GIGYF family protein Gyf 7.56 13 18 13 68274.34364 46839.5807 +Q7KRI2 Longitudinals lacking protein-like 29.13 4 12 0 99849.3074 105902.60983 +Q7KRU8 Ferritin heavy chain 75.12 12 70 2 6221354.115119999 4992509.9037 +Q7KRW8 Pre-mRNA-processing factor 39 3.85 4 4 4 7934.5027 4733.966 +Q7KTH8 COP9 signalosome complex subunit 8 21.43 5 15 5 222573.48304 152521.3063 +Q7KUT2 Lon protease homolog, mitochondrial 11.33 13 27 13 112489.8233 93334.31207 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.13 3 5 3 5908.503919999999 6894.94152 +Q7KW14 Coiled-coil domain-containing protein CG32809 11.43 11 14 0 28616.7151 18808.87954 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 34.23 14 60 14 1710067.84261 1315314.32442 +Q7PLI7 Serine/threonine-protein kinase CG17528 4.41 3 3 3 2349.3667 2496.2537 +Q7YTY6 Serine protease inhibitor 42Dd 16.4 5 9 5 52101.80247 50282.93375 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 11.75 10 23 3 144509.59729 115209.90591 +Q868Z9 Papilin 20.36 51 134 51 1646213.80466 1077243.25991 +Q86B79 RING finger protein unkempt 1.34 1 2 0 0.0 394.40433 +Q86B87 Modifier of mdg4 7.54 5 9 0 97922.03629999999 73803.20819 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 28.38 4 7 4 44453.3405 33257.617 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 13.0 3 3 3 16654.0459 14082.8945 +Q86NP2 Negative elongation factor A 8.87 10 18 0 118845.15238 99608.02847 +Q86P48 AT-rich binding protein 8.76 3 6 3 3447.3877 1938.3597599999998 +Q86S05 Protein lingerer 2.69 3 7 0 11636.886629999999 11150.19468 +Q8I0G5 Coatomer subunit gamma 10.08 10 16 0 34410.7181 30374.3108 +Q8I7C3 LIM and SH3 domain protein Lasp 17.66 12 37 0 644230.88008 459640.14353 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 14.26 15 19 15 43543.01004 26545.6739 +Q8IN41 Protein Turandot X 16.2 2 4 2 21601.9936 17150.8855 +Q8IN43 Protein Turandot C 48.84 5 12 5 287453.54202 206424.10733 +Q8IN44 Protein Turandot A 52.71 7 33 7 940024.13222 622475.59337 +Q8INI8 Major heat shock 70 kDa protein Ba 22.93 14 84 0 106287.92244 55985.05961 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 1.14 4 4 1 27145.704999999998 15404.5085 +Q8IPM8 Complexin 65.49 10 81 0 43092.7313 21874.22964 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 14.23 7 19 7 48085.06515 29871.98397 +Q8IPX7 Exosome complex component RRP40 17.24 4 5 4 4782.6492 2891.9060499999996 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 11.62 4 9 4 22337.027199999997 18081.9582 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 23.63 5 10 0 52580.4117 48475.5964 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.57 5 16 5 145597.3369 120824.4867 +Q8IQG1 MOB kinase activator-like 2 10.07 6 10 0 41516.40305 47526.335999999996 +Q8IQG9 Adenylate kinase 1 48.91 9 31 9 560498.76996 484317.90296000004 +Q8IR45 BLOC-1-related complex subunit 8 homolog 16.94 3 6 3 34585.2941 28328.5657 +Q8IRH5 Zinc finger protein indra 3.27 3 4 3 33070.5107 22759.02475 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 1 0 20755.654 16918.447 +Q8MKK0 General odorant-binding protein 57a 10.65 2 3 2 4888.4298 3022.5108999999998 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 18.1 6 16 6 206992.3763 158599.5297 +Q8MLY8 Small ribosomal subunit protein eS8 49.04 10 42 0 1094545.34144 973498.95606 +Q8MLZ7 Chitinase-like protein Idgf3 24.49 9 20 0 139086.827 114394.77534000001 +Q8MM24 Chitinase-like protein Idgf1 1.59 1 1 1 0.0 451.66168 +Q8MMC4 Protein CDV3 homolog 22.14 6 10 1 44235.21883 28188.89488 +Q8MR31 Slo-interacting protein 1 4.69 4 5 0 2294.58096 1162.68705 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.65 3 6 3 63517.3928 46771.8469 +Q8MR62 Phosducin-like protein 2 16.25 5 13 5 180190.3063 135595.896 +Q8MSS1 Protein lava lamp 23.79 65 113 0 566297.99239 418622.89063 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 10641.113 6778.8387999999995 +Q8MSV2 Protein alan shepard 8.98 7 17 7 180473.147 118208.85745 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 8.43 2 2 0 1292.02448 1126.67343 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.1 2 3 2 17340.1136 4216.6162 +Q8SWR8 Ataxin-2 homolog 7.29 7 15 2 41685.32062 29571.65941 +Q8SWU7 Obg-like ATPase 1 34.26 13 28 0 813858.81045 665547.8906 +Q8SX68 CTTNBP2 N-terminal-like protein 21.18 12 21 12 103417.37269999999 80404.22054 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 32.04 5 18 5 289418.9183 202644.6732 +Q8SY33 Protein Gawky 8.6 11 32 11 150088.69913 103782.8411 +Q8SY61 General odorant-binding protein 56d 66.41 8 69 0 3788583.5846599997 2803748.43188 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.86 7 15 7 677978.0785000001 516219.67085999995 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 7.05 3 6 3 12674.1426 13398.82854 +Q8SYG2 COP9 signalosome complex subunit 3 1.8 1 1 1 13537.541 7410.8755 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 3989.9228 2312.5688 +Q8SZ63 Golgin-84 10.27 6 8 6 19395.03092 15406.2871 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 38.82 4 12 4 319325.40626 231141.45944 +Q8T045 O-glucosyltransferase rumi 7.79 4 4 1 4465.2876400000005 5005.26405 +Q8T079 Cytokine-like nuclear factor N-PAC 28.57 13 37 0 252636.74579 203191.27853 +Q8T0Q4 Charged multivesicular body protein 4 52.65 15 48 15 1026624.99905 735742.80017 +Q8T0R7 Chitinase-like protein Idgf5 4.95 2 2 2 1996.2837 2054.5518 +Q8T390 Endophilin-A 53.66 19 86 0 4773036.58445 3736635.10462 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 14.78 7 9 7 119219.1795 92701.2868 +Q8T3U2 Small ribosomal subunit protein uS12 47.55 7 19 0 446691.72956999997 379373.14016 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 44.62 5 14 5 211278.81642 154962.0867 +Q8T6B9 Poly(U)-binding-splicing factor hfp 9.42 6 16 2 76608.63190000001 57433.4658 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 43.03 6 10 6 8970.56953 4868.74968 +Q8T9B6 LDLR chaperone boca 54.44 10 38 10 664051.39759 346813.641 +Q8WTC1 Small ribosomal subunit protein uS15m 15.36 4 7 4 28081.01142 22630.3908 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 64.16 37 121 0 2803345.77699 2109074.7764 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 52.35 10 106 0 8306838.30295 6304305.18456 +Q94516 ATP synthase subunit b, mitochondrial 61.73 18 163 18 8644110.43508 7644410.10561 +Q94517 Histone deacetylase HDAC1 4.61 1 1 1 1962.4607 1822.2681 +Q94518 Nascent polypeptide-associated complex subunit alpha 57.14 9 22 0 1171110.5776 952413.76734 +Q94521 Arylalkylamine N-acetyltransferase 1 20.73 6 27 0 916752.1917600001 787757.12587 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 46.95 17 89 16 11075960.372890001 8616956.89609 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 27.38 16 46 16 1219902.49645 1093868.55479 +Q94524 Dynein light chain Tctex-type 25.23 2 3 2 25831.3197 24177.186 +Q94529 Probable pseudouridine-5'-phosphatase 39.39 8 35 5 721678.9852100001 697731.26759 +Q94535 Splicing factor U2af 38 kDa subunit 15.15 4 8 0 19483.5044 11277.52579 +Q94547 Regulator of gene activity 11.97 7 14 0 36270.0245 27829.785060000002 +Q94899 COP9 signalosome complex subunit 2 7.21 4 8 0 44928.9697 31084.5317 +Q94901 RNA-binding protein lark 48.01 19 52 19 151721.54391 105085.47927 +Q94913 Rhythmically expressed gene 5 protein 7.29 2 4 0 16090.233400000001 10810.213600000001 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 12 4 37974.41704 26308.7662 +Q94920 Voltage-dependent anion-selective channel 91.13 27 395 0 18980287.62614 17077383.41145 +Q94981 E3 ubiquitin-protein ligase ariadne-1 1.99 1 1 0 1995.7458 778.1006 +Q95028 L-lactate dehydrogenase 14.46 4 10 0 55216.66943 43621.8398 +Q95029 Cathepsin L1 35.58 15 83 2 3425767.9521999997 2423136.97954 +Q95083 Proteasome subunit alpha type-5 43.03 7 22 7 337287.39768 282082.78119999997 +Q95RA8 MOB kinase activator-like 1 8.68 2 4 0 66687.8593 61539.6988 +Q95RA9 GILT-like protein 1 30.8 7 22 7 1092733.40308 885574.81882 +Q95RG8 ARF GTPase-activating protein Git 5.2 4 5 4 9244.4741 4502.97498 +Q95RI5 Failed axon connections 59.09 26 146 0 8434768.717459999 6587848.222890001 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 3.43 2 2 2 5157.9678 5560.306 +Q95RN0 FAM172 family protein homolog CG10038 17.23 5 8 5 44117.0388 33768.72406 +Q95SK3 CDK5RAP3 protein homolog 14.34 8 16 8 103928.72633 87329.48172 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 10 3 18050.02655 11665.0337 +Q95T12 Calcium channel flower 21.13 4 8 4 31490.33739 26463.61794 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 6 4 15649.506430000001 12067.2457 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 3.74 3 4 3 11009.9494 9065.2086 +Q960V3 Trafficking kinesin-binding protein milt 7.66 9 13 0 49610.915389999995 40450.89296 +Q960W6 Putative fatty acyl-CoA reductase CG8306 9.11 5 5 4 27205.3259 20471.182 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 13.82 10 23 10 270367.35393 213433.38991 +Q960Z0 Kinesin-like protein Klp10A 10.06 8 13 0 39231.96024 30593.76174 +Q961C9 Transport and Golgi organization protein 11 12.27 4 8 0 68914.41871 53893.6587 +Q961D9 Protein BCL9 homolog 2.79 4 5 4 8056.0627 5455.993649999999 +Q961G1 Conserved oligomeric Golgi complex subunit 3 1.88 2 2 2 414.5189 375.31244 +Q967D7 Protein turtle 4.18 7 14 0 79287.3175 57793.40562 +Q99323 Myosin heavy chain, non-muscle 8.75 19 31 0 288702.18438 227888.3857 +Q9GPJ1 Protein Skeletor, isoforms D/E 3.19 5 11 0 16468.97663 8283.20067 +Q9GQQ0 Protein spinster 1.98 1 7 1 26822.95113 23980.34245 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 78 14 4122463.2727099997 3058663.58425 +Q9GYU8 Nuclear pore complex protein Nup88 2.56 2 2 2 549.12854 456.41144 +Q9I7D3 Caprin homolog 9.37 8 18 0 47660.72076 41026.08156 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 9 0 44491.7518 37983.5348 +Q9I7K0 Microtubule-associated protein Jupiter 12.02 2 2 2 74782.043 49134.013999999996 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 3.24 1 3 0 20809.244899999998 15403.7922 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 4.67 3 4 3 11070.4944 7462.01413 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 33.1 14 39 1 514021.91948 330130.95795 +Q9I7T7 La-related protein Larp4B 4.51 6 11 6 9931.65235 7147.539559999999 +Q9I7U4 Titin 2.4 43 56 0 153419.88747000002 104748.30774 +Q9I7X6 Carnosine N-methyltransferase unmet 5.92 3 5 3 20394.8894 12185.0568 +Q9NB04 Patj homolog 25.6 17 47 0 412865.44938 359775.76695 +Q9NBD7 CLIP-associating protein 6.17 8 12 8 24252.94444 14544.74431 +Q9NBK5 Serine/threonine-protein kinase tricornered 8.64 4 7 0 13845.3778 9520.1746 +Q9NEF6 V-type proton ATPase subunit D 2 16.47 6 17 0 3902.0828 1749.0717 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.41 6 9 6 37337.4832 21990.58631 +Q9NHD5 Probable N-acetyltransferase san 17.39 3 8 3 18306.7346 9587.8207 +Q9NHE5 Calcium-dependent secretion activator 6.98 11 15 11 63414.73494 45526.27732 +Q9NIP6 Cardio acceleratory peptide 2b 13.91 2 2 2 14487.243999999999 9681.2424 +Q9NJB5 Homeobox protein onecut 3.15 4 5 0 14755.25615 13274.176019999999 +Q9NJH0 Elongation factor 1-gamma 41.53 18 73 18 1201399.5373499999 995269.85316 +Q9NK57 NIF3-like protein 1 12.67 3 4 3 34742.0605 29826.328 +Q9TVM2 Exportin-1 1.88 2 2 0 7933.8395 7439.446 +Q9TVP3 J domain-containing protein 59.49 14 117 14 7037077.15327 5070359.81812 +Q9U3Z7 NHP2-like protein 1 homolog 59.84 7 19 0 275003.1588 196320.0751 +Q9U4G1 Protein borderless 16.97 10 26 10 343354.9819 312898.64279 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 18.31 6 14 0 127762.81236 98015.52487 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.71 14 18 14 74955.35917 66952.55856 +Q9U616 Glycine cleavage system H protein, mitochondrial 35.15 5 17 5 1191790.47168 868267.96044 +Q9U6L5 Ejaculatory bulb-specific protein 1 6.1 3 4 0 9374.07696 6919.6942 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 10.27 5 8 5 129602.64920000001 73607.5473 +Q9U915 Adenylate kinase 2 75.0 21 56 21 2177706.4446 1680657.26947 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 9.16 3 3 3 30395.4211 28386.4653 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 13.91 5 15 5 150564.63953000001 110702.5978 +Q9V345 COP9 signalosome complex subunit 4 18.18 8 17 0 93767.22022 74671.20314 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 12.86 4 11 0 52896.1003 36847.3809 +Q9V3B6 Protein CWC15 homolog 13.51 4 5 4 24281.2722 18057.52038 +Q9V3C0 ATP-dependent RNA helicase abstrakt 2.91 2 2 2 3215.18237 1685.0648 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 12.31 5 10 0 61978.914000000004 41381.1385 +Q9V3D4 Chitinase-like protein Idgf2 39.09 13 31 0 677147.1754300001 585711.17065 +Q9V3F3 Transcription termination factor, mitochondrial 8.54 4 7 4 14616.44453 13095.9465 +Q9V3G1 Large ribosomal subunit protein uL2 51.95 12 40 12 1596090.19835 1161028.6997 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 12.67 3 4 3 17828.838900000002 12810.278900000001 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 17.48 7 23 7 169122.51075 126358.03778 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 25.65 6 22 6 107437.6265 102290.11589 +Q9V3I2 Ras-related protein Rab5 21.46 4 14 4 84405.45129 71480.88763 +Q9V3J1 V-type proton ATPase subunit H 55.98 22 61 0 1009184.92665 897291.63062 +Q9V3J4 Protein SEC13 homolog 11.8 4 12 4 60102.699210000006 49703.67606 +Q9V3K3 RuvB-like helicase 2 29.73 17 38 0 152639.67877 104178.26214 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 7 4 14523.9682 13595.62704 +Q9V3N1 Serine protease inhibitor 27A 18.79 7 28 7 112035.10277 113043.5702 +Q9V3P0 Peroxiredoxin 2 75.26 16 164 0 12404192.649559999 8823320.6887 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 9.8 10 13 0 42313.443100000004 31563.5809 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 5.41 4 5 0 32092.7381 22662.931900000003 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 1.72 1 2 1 3841.8283 2260.6162 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 22.5 5 13 0 119249.36852999999 104025.46766 +Q9V3V0 Serine/arginine-rich splicing factor x16 20.16 5 9 5 24375.49505 19767.20937 +Q9V3W0 RutC family protein UK114 60.14 8 40 8 1852584.99077 1164820.44592 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 18.14 4 9 4 34005.3738 27716.0391 +Q9V3Y2 Anamorsin homolog 26.61 7 16 7 142938.83153999998 123018.0141 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 10 0 242080.1122 235572.22460000002 +Q9V3Z2 Serine protease 7 13.55 5 15 4 40396.96708 25498.4386 +Q9V419 Probable cytochrome P450 28a5 16.44 10 18 10 109831.40285 87107.77881 +Q9V427 Innexin inx2 17.17 6 10 0 115069.3643 92012.95999999999 +Q9V429 Thioredoxin-2 66.98 6 56 6 4201078.13277 3450891.74281 +Q9V431 Apoptosis inhibitor 5 homolog 18.1 10 18 10 238336.1782 177281.10247 +Q9V438 Protein disulfide-isomerase A6 homolog 14.55 10 30 10 241471.33327 150788.43627 +Q9V447 Krueppel homolog 2 22.83 6 13 0 45991.3914 35969.64756 +Q9V496 Apolipophorins 33.18 114 349 0 7534858.13022 6435031.2243 +Q9V498 Calsyntenin-1 1.74 2 2 0 449.51447 1145.52324 +Q9V4A7 Plexin-B 1.46 3 4 0 7558.997439999999 4577.484640000001 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 3 2 6012.9106 6311.9985 +Q9V4C8 Host cell factor 7.33 11 19 11 103760.9699 77236.67689 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 7.46 2 3 0 9314.872 6411.384 +Q9V4N3 Cytochrome b5 47.76 6 36 6 835556.60619 690530.02102 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 6.79 2 9 2 87938.35152 62458.7584 +Q9V4S8 COP9 signalosome complex subunit 7 25.54 5 9 5 45821.15014 45998.9732 +Q9V4W1 mRNA export factor Gle1 6.06 4 6 4 4784.5495 1268.52164 +Q9V521 Phenoloxidase 2 15.35 11 21 10 209292.30015 178869.65214 +Q9V535 RNA-binding protein 8A 30.91 5 16 5 379968.82397 270802.2876 +Q9V558 Cytochrome P450 4p1 6.24 3 4 3 3416.25267 3406.17607 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.62 5 6 5 6886.0494 4890.6810000000005 +Q9V595 Uroporphyrinogen decarboxylase 27.81 6 16 6 249338.745 184045.4376 +Q9V597 Large ribosomal subunit protein eL31 55.65 7 25 7 2762258.20847 1454806.92044 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 35 11 812659.57551 665669.84934 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 9.55 8 20 1 19331.867 15316.812 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 35.94 2 3 2 10818.06143 4044.12975 +Q9V637 Proteasome inhibitor PI31 subunit 28.89 7 16 0 92641.86323 77598.54752000001 +Q9V674 Cytochrome P450 6g1 5.53 3 3 0 7841.012650000001 4826.49211 +Q9V6B9 Probable nucleoporin Nup54 7.05 4 8 4 13449.089399999999 15476.3068 +Q9V6G5 Tafazzin 6.08 3 8 1 25109.6011 18796.10592 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 56.86 18 67 18 1504870.0263 1297944.02483 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 7.71 4 6 0 46543.696599999996 38471.3702 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 4 2 37952.6053 30402.58673 +Q9V773 Probable cytochrome P450 6a20 9.78 6 9 5 34058.1053 32582.207769999997 +Q9V784 SAM50-like protein CG7639 9.93 6 7 6 57099.026 45981.5464 +Q9V7D2 V-type proton ATPase subunit D 1 55.69 14 55 9 1566429.55846 1325635.61809 +Q9V7N5 V-type proton ATPase subunit C 26.56 23 108 0 2919636.3404200003 2664750.47298 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 44.98 11 42 0 428570.24253 342224.47289 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 11.88 3 5 0 73572.802 58472.98849999999 +Q9V8F5 Bomanin Bicipital 1 36.75 4 14 4 64459.83046 46729.11915 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 6.54 3 5 3 8775.0343 6345.113160000001 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 60.8 13 38 13 1919100.1968399999 1526400.47845 +Q9V8R9 Protein 4.1 homolog 38.34 63 167 1 3139386.80964 2441029.5942 +Q9V8Y2 General odorant-binding protein 56a 38.85 5 21 5 727551.65 516863.32677 +Q9V931 General odorant-binding protein 57c 12.75 2 7 2 58275.8183 35393.9449 +Q9V968 MIP18 family protein galla-1 27.06 5 10 0 22514.75094 14773.3336 +Q9V998 Ubiquitin-like protein 5 24.66 2 4 2 33349.8761 19644.40424 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 15.05 8 13 8 11721.4864 9505.25199 +Q9V9J3 Tyrosine-protein kinase Src42A 3.09 2 4 1 13728.575 8208.023 +Q9V9N4 Transcription factor Clamp 3.21 2 3 2 1065.7671 0.0 +Q9V9S7 Rho GTPase-activating protein 100F 2.47 4 8 0 15521.9741 7855.98331 +Q9V9S8 Ferrochelatase, mitochondrial 32.29 13 37 13 661001.98128 546915.9125399999 +Q9V9U4 Deoxyhypusine hydroxylase 12.91 4 10 4 24833.77743 19694.91117 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 25.27 11 19 11 152890.32634 110413.38322999999 +Q9V9Y9 Protein spindle-F 12.64 4 5 0 21161.9704 15295.60205 +Q9V9Z1 Large ribosomal subunit protein bL32m 8.72 2 4 2 10138.1244 8642.7603 +Q9VA37 Protein dj-1beta 84.49 13 53 13 2457653.32272 1797760.28624 +Q9VA70 Neutral ceramidase 2.41 2 3 0 7072.147999999999 7240.6638 +Q9VA91 Small ribosomal subunit protein eS7 53.09 12 58 0 2057570.03146 1819418.72842 +Q9VAF5 Cadherin-99C 4.4 9 18 9 42086.61101 32603.32609 +Q9VAI6 General odorant-binding protein 99b 59.73 7 37 0 4065287.4468 3372333.16894 +Q9VAJ4 General odorant-binding protein 99a 38.03 6 25 0 983301.7173 747421.84788 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 47 6 4666931.42834 3734248.5783700002 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 13.41 3 5 3 65795.7902 49469.861399999994 +Q9VAN0 Phosphoserine aminotransferase 32.42 11 57 11 486192.51914 411815.52284 +Q9VAP3 Choline transporter-like 2 7.66 6 11 6 64144.31676 35628.04104 +Q9VAW5 La-related protein 1 3.41 5 8 0 22581.0487 15270.0974 +Q9VAY3 Mitoferrin 7.65 3 7 3 20654.7754 16238.3111 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 10.19 6 7 6 23901.90605 24377.18933 +Q9VB68 Serine protease grass 12.2 5 13 5 24782.80816 19867.6402 +Q9VBC7 Neuroendocrine convertase 2 5.05 4 7 4 31304.50757 24268.8775 +Q9VBG6 Co-chaperone protein HGH1 homolog 1.9 1 1 0 8685.324 6671.443 +Q9VBP9 Nuclear protein localization protein 4 homolog 9.2 6 8 6 28367.1927 19989.18695 +Q9VBV3 Protein takeout 9.64 3 11 0 57926.0644 46242.62025 +Q9VBV5 Nucleotide exchange factor Sil1 12.82 6 14 6 100279.52526 81962.45369 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 7.2 3 3 3 9360.9142 5127.556030000001 +Q9VC57 Atlastin 4.62 3 6 0 29381.4672 28873.4098 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 2.89 2 3 2 15437.168699999998 13709.305400000001 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.65 2 3 0 422.14163 442.87097 +Q9VCA9 Signal peptidase complex subunit 3 18.99 4 19 0 57800.952280000005 47100.982149999996 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 17.8 6 12 6 83135.81867000001 86210.07822 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 3.1 2 2 2 1875.4645 1916.4595 +Q9VCE1 Beclin-1-like protein 4.27 2 3 2 5132.39032 1831.2279700000001 +Q9VCG3 Putative OPA3-like protein CG13603 25.1 5 13 0 120080.19154 102335.7488 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 5.61 9 26 9 216962.31494 155801.12046 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 2700.799 2829.7713 +Q9VCJ8 Spaetzle-processing enzyme 24.5 10 25 8 112939.07832 100351.1783 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 7.32 5 10 4 65147.93565 55461.736 +Q9VCK1 GILT-like protein 2 3.86 1 1 1 18249.703 8381.4795 +Q9VCR3 Proteoglycan Cow 9.38 6 10 0 34683.78924 25701.8473 +Q9VCX3 Large ribosomal subunit protein mL45 7.76 3 3 3 915.5152700000001 573.23444 +Q9VCY3 COP9 signalosome complex subunit 6 17.3 7 13 7 68014.6599 61220.75114 +Q9VCZ8 Probable prefoldin subunit 5 34.52 5 13 0 101611.28695 81327.0644 +Q9VD09 Retinol-binding protein pinta 14.65 4 6 4 9641.56805 8017.325639999999 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 5.8 2 3 0 6272.66744 3965.52584 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 9 4 76333.55589999999 52018.4412 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 7.62 8 15 8 103566.44034 94294.71833 +Q9VDD1 DDRGK domain-containing protein 1 13.92 5 6 5 50239.8589 33001.2859 +Q9VDE4 Protein Bride of doubletime 12.94 5 7 5 33844.4072 27989.67306 +Q9VDL1 Esterase CG5412 15.41 4 11 4 56357.02077 43814.04801 +Q9VDS5 Rho GTPase-activating protein 92B 8.38 7 8 0 95546.38404 22185.1382 +Q9VDV3 Nuclear pore complex protein Nup58 10.81 6 17 6 73055.92986 54599.0406 +Q9VDW3 Dystrophin, isoform B 1.56 3 3 2 8553.73206 6018.6855 +Q9VE50 Golgi SNAP receptor complex member 1 6.9 2 4 2 14669.014500000001 13725.9352 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 5.44 1 2 0 1585.1265 449.5227 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 23.02 4 4 4 11030.8868 10686.06595 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 3120.5544 3257.627 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 11 48 11 2469901.82445 2434706.8453100002 +Q9VER6 Modular serine protease 8.76 5 10 5 24821.78328 9593.62964 +Q9VET0 Neuropeptide F 30.39 4 12 0 120566.22229 90483.23254 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 45.03 29 68 29 1034628.31197 815945.96657 +Q9VEX9 Histone deacetylase complex subunit SAP18 23.33 4 8 0 51996.9954 36009.7003 +Q9VEZ3 Protein mini spindles 2.25 4 6 0 438066.8052 363303.49614999996 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 42.55 6 14 0 154700.151 114972.6964 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 51.61 13 60 13 2448415.70858 1977361.1371 +Q9VF71 Copper homeostasis protein cutC homolog 32.32 7 26 0 272591.31976 210229.69306999998 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 3 2 7568.0054 4024.045 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 5 2 48688.70774 47752.835 +Q9VFC2 Serine protease inhibitor 88Ea 40.98 15 41 14 230415.04564 163553.29003 +Q9VFC8 Glycogen [starch] synthase 7.62 6 9 0 42982.140759999995 41566.850230000004 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 3.76 4 6 0 6069.253930000001 5584.07228 +Q9VFJ0 Probable cytochrome P450 313a1 6.1 3 3 3 16036.794 12188.9504 +Q9VFJ2 Large ribosomal subunit protein uL11m 10.71 3 5 3 11865.840400000001 9630.3415 +Q9VFJ3 Serine protease HTRA2, mitochondrial 8.77 4 7 0 36195.9576 31718.1267 +Q9VFM9 Twinfilin 22.74 7 13 7 35658.71089 26758.88691 +Q9VFP1 Probable cytochrome P450 6d5 8.46 5 7 5 82282.6935 70901.5667 +Q9VFR0 Protein BCCIP homolog 8.42 4 4 4 7260.6383 5950.83618 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 3.88 5 6 0 19016.84667 15949.9271 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 40.91 9 19 9 182982.60299 116897.07844 +Q9VFW4 Elongator complex protein 6 15.54 3 5 3 20846.372150000003 15673.6157 +Q9VG08 L-dopachrome tautomerase yellow-f2 5.97 3 6 3 5859.892 3951.2048 +Q9VG55 Protein hugin 5.76 1 3 1 2389.7795 1773.28 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 13.38 4 10 4 161625.28794 113606.45575000001 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.11 2 2 2 2544.5526 2140.73416 +Q9VG76 Myc-binding protein 19.34 4 6 4 139609.694 102468.7446 +Q9VG82 Probable cytochrome P450 9f2 5.23 3 5 0 29187.46656 25561.14118 +Q9VG97 Inactive glutathione S-transferase D3 32.66 6 15 6 565828.8192 579167.1705 +Q9VG98 Glutathione S-transferase D2 11.63 3 10 1 73918.453 65970.2335 +Q9VGG5 Cadherin-87A 5.72 11 18 11 60986.823359999995 49738.80891 +Q9VGP4 Importin-9 2.85 3 3 3 4648.1951 5829.1898 +Q9VGP6 Prefoldin subunit 3 47.42 8 22 8 207812.68154 158076.51022999999 +Q9VGQ9 Diphthamide biosynthesis protein 3 13.95 1 2 1 10700.653 8163.9136 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 6.86 3 5 3 16246.09693 13543.04723 +Q9VGR7 J domain-containing protein CG6693 9.36 3 3 0 3498.37486 3599.7024 +Q9VGS2 Translationally-controlled tumor protein homolog 62.21 10 39 0 2079123.31515 1633522.0984 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 41.2 10 28 10 302229.42308 215168.56233 +Q9VGV8 Phosducin-like protein 3 4.63 1 2 1 29931.327 21160.531300000002 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 3.64 2 3 2 637.8156 698.78334 +Q9VH07 RuvB-like helicase 1 11.62 4 9 4 97066.92967 86059.8177 +Q9VH19 Leishmanolysin-like peptidase 2.34 2 3 2 11743.591939999998 11468.478 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 27.09 5 9 5 171045.5703 125876.2299 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 7 0 290142.8611 240712.0643 +Q9VH95 Cytosolic Prostaglandin E synthase 58.15 9 21 9 1210869.97314 1022575.9651500001 +Q9VHA0 Polycomb protein Scm 6.39 5 6 0 14887.457480000001 6122.77794 +Q9VHB3 U6 snRNA phosphodiesterase 1 5.81 2 2 2 6094.61054 6209.30705 +Q9VHD2 Probable maleylacetoacetate isomerase 2 16.3 3 7 3 27184.179659999998 29450.49635 +Q9VHD3 Probable maleylacetoacetate isomerase 1 15.04 4 6 4 37098.2511 34146.270730000004 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 15.31 5 13 5 224753.83675 174327.15132 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 17.89 5 14 5 33499.41714 22503.83375 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 22.73 4 10 4 238168.67994 158830.641 +Q9VHN6 Large ribosomal subunit protein bL19m 11.44 4 5 4 41180.854999999996 20194.216099999998 +Q9VHP0 ATP-dependent RNA helicase bel 23.06 15 40 0 78200.3789 57752.64344 +Q9VHR6 Autophagy-related protein 13 homolog 7.46 4 5 4 1289.1403 1245.6702300000002 +Q9VHR8 Dipeptidyl peptidase 3 25.06 21 60 21 317305.58687 253803.40309 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 42 0 2967529.81515 2567019.23047 +Q9VHS8 Eukaryotic initiation factor 4A-III 7.27 4 9 2 21332.595 18845.74546 +Q9VHV5 ADP-ribosylation factor-like protein 8 17.2 3 4 0 401.2003 500.61472 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 38.66 5 16 5 181885.5578 170212.1552 +Q9VI13 Serine/threonine-protein kinase Pak 1.42 1 2 0 11538.829 4845.4002 +Q9VI25 Neurochondrin homolog 4.29 3 3 3 5418.854300000001 5040.5305 +Q9VI55 E3 UFM1-protein ligase 1 homolog 6.27 6 9 0 45504.2852 35726.33975 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 49.79 19 103 2 202313.34649999999 149649.1705 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.93 3 4 3 9255.49 10129.17276 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 32.65 4 18 4 324815.84103 243913.57707 +Q9VII1 UPAR/Ly6 domain-containing protein bero 47.3 5 22 5 574684.82306 435006.20389 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 17.94 5 8 0 36478.3307 33664.941210000005 +Q9VIT0 DNA sliding clamp PCNA2 13.73 5 12 5 31989.209600000002 23883.66365 +Q9VIV2 Zinc finger protein swm 5.65 6 8 0 30880.6805 23711.124900000003 +Q9VIW3 Ran GTPase-activating protein 13.59 8 15 0 142951.3223 150466.58490000002 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 19.05 2 3 1 19575.143539999997 13969.575100000002 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 529.1313 0.0 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.54 8 20 0 144122.4554 127176.7893 +Q9VJ31 Betaine-homocysteine S-methyltransferase 10.88 4 8 4 51349.9907 44298.24852 +Q9VJ33 Ubiquitin-like protein NEDD8 23.81 2 21 0 192790.03274 153145.48914 +Q9VJC7 Elongation factor Ts, mitochondrial 24.84 8 18 8 189418.43398 145032.0256 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 24.19 2 3 0 15989.6172 12852.484400000001 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 2.4 2 2 0 1707.7948 817.3026 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 8.55 1 1 1 2978.035 3095.5244 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.24 3 4 3 3871.22343 2646.1495000000004 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 32.94 3 5 3 33561.409700000004 35978.25453 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 20.58 6 13 6 180617.8063 113720.18460000001 +Q9VJL6 Glia maturation factor 5.8 1 3 1 1166.78786 477.59164 +Q9VJQ5 Protein Dr1 8.2 2 4 2 5128.8116 3918.5895 +Q9VJY6 Large ribosomal subunit protein eL24 34.84 7 12 0 158522.6535 150987.78734 +Q9VJY9 Protein Loquacious 11.61 5 9 0 27221.2405 26103.36 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 3 1 7796.9803999999995 6549.2546999999995 +Q9VKD3 Cysteine desulfurase, mitochondrial 21.86 9 30 9 160147.89362 142781.07864999998 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 7.02 4 4 4 1774.4321 586.6979 +Q9VKJ8 Alpha-L-iduronidase 3.62 3 3 3 2459.43965 1298.61065 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.33 8 16 0 107891.54447 62449.22688 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 5.47 8 12 8 16630.16479 12534.16694 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 9.4 4 4 4 38767.7237 26973.0674 +Q9VKX4 Small ribosomal subunit protein uS7m 16.97 4 6 0 22976.69411 22002.788679999998 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 2.56 4 5 0 16892.40975 14161.954839999999 +Q9VL00 Ubiquitin thioesterase otubain-like 11.45 3 5 3 29910.755400000002 17351.7994 +Q9VL13 MOB kinase activator-like 3 5.0 1 2 1 4820.8154 5116.6465 +Q9VL18 Probable elongation factor 1-delta 58.59 17 35 17 1559781.30072 1167466.9593 +Q9VL78 FK506-binding protein 59 55.81 26 79 0 1139499.18401 898288.84389 +Q9VLF6 UPF0585 protein CG18661 11.71 3 3 0 31526.691 26825.96 +Q9VLJ6 Angiotensin-converting enzyme-related protein 10.63 8 10 0 75594.28786000001 59525.9862 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.14 10 13 10 175247.4468 139149.53532 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 46.72 5 18 5 193514.39685999998 144198.48992 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 6 3 239298.662 196196.3214 +Q9VLS9 Beta-lactamase-like protein 2 homolog 21.58 5 12 5 230221.22249999997 211255.0641 +Q9VLT8 WASH complex subunit 3 10.23 2 3 2 11667.2731 7687.7976 +Q9VLU0 Barrier-to-autointegration factor 74.44 5 26 0 940027.56021 708773.86501 +Q9VLU4 Serine protease inhibitor 28Dc 4.29 3 3 3 34327.18698 30581.667 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 174337.4137 124678.0561 +Q9VLV7 Protein spaetzle 3 6.06 3 3 3 4403.07604 3236.6722600000003 +Q9VM33 Elongation factor G, mitochondrial 4.7 4 4 4 12214.5208 9283.3367 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.51 6 7 0 18332.84459 13572.868699999999 +Q9VM71 5'-3' exoribonuclease 2 homolog 0.88 1 1 1 798.41766 680.9122 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 11.14 5 9 0 32050.7409 28117.65466 +Q9VMA7 Transport and Golgi organization protein 1 7.41 12 14 0 61754.23976 41688.09158 +Q9VMC8 PHD finger-like domain-containing protein 5A 33.33 5 10 5 169245.88400000002 106704.4715 +Q9VMD9 Tiggrin 12.16 31 55 0 197729.60201 172589.62899 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 10.65 3 3 3 993.9711 723.0929 +Q9VMM6 Protein obstructor-E 35.34 7 17 7 197129.2649 153223.84709999998 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 5.87 3 3 3 4073.3792000000003 4417.45503 +Q9VMQ7 Elongator complex protein 4 3.43 2 3 2 41172.2007 42064.554000000004 +Q9VMR8 Protein Turandot M 30.53 3 5 0 187791.1373 175055.15420000002 +Q9VMT5 Probable cytochrome P450 28d1 15.54 9 20 9 190011.89916 159514.27707 +Q9VMU4 Large ribosomal subunit protein eL43 27.17 3 9 0 65542.5492 53088.53219 +Q9VMU5 Protein quick-to-court 9.57 8 10 0 24885.1827 21380.25807 +Q9VMW7 Inosine triphosphate pyrophosphatase 49.74 11 23 11 496198.4844 348601.85197 +Q9VMW9 GDP-mannose 4,6 dehydratase 4.05 2 2 2 3222.19634 3728.6038 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 4 0 5426.7291000000005 4019.2478 +Q9VMY1 Large ribosomal subunit protein uL24m 21.46 7 7 7 12842.6161 6724.05171 +Q9VMY9 Guanine deaminase 8.93 4 6 4 51312.2143 42365.23064 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 3.0 1 3 0 10023.5501 5034.5129 +Q9VN13 Sideroflexin-1-3 16.51 5 12 5 131902.00654 121506.6454 +Q9VN14 Contactin 17.77 24 48 24 233059.96623 179879.93349999998 +Q9VN19 Golgi to ER traffic protein 4 homolog 13.57 4 6 0 12732.3196 8209.0141 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 5.61 8 12 8 49811.57105 34292.87395 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 29.29 7 13 7 77607.8284 69861.39563 +Q9VN91 MORN repeat-containing protein 4 homolog 47.98 9 46 9 300682.55545 233580.16085 +Q9VN93 Cathepsin F 23.62 16 36 13 1055649.6412 836595.79231 +Q9VN95 Enolase-phosphatase E1 17.97 4 13 4 139183.352 124998.52547 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 3327.7780000000002 940.5924 +Q9VNA5 Proteasome subunit beta type-4 27.99 5 5 5 262536.0045 216362.9325 +Q9VND8 GTP-binding protein Rheb homolog 26.37 6 15 6 179466.44738 162020.96673000001 +Q9VNE2 Protein krasavietz 22.04 12 30 12 453890.35891 406101.78427 +Q9VNE9 Large ribosomal subunit protein uL13 24.39 7 12 3 208882.74693 186199.601 +Q9VNI3 Histone PARylation factor 1 9.8 4 4 4 9096.8682 9909.43194 +Q9VP48 Ras-related protein Rab-26 12.89 5 12 0 17762.8663 13928.33584 +Q9VP61 Acetyl-coenzyme A synthetase 13.58 10 14 0 133580.2154 111480.3001 +Q9VPC1 Distal membrane arm assembly component 2 6.34 2 2 2 41306.546700000006 27216.66 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 3.65 2 3 0 14958.0983 6987.69416 +Q9VPL3 Large ribosomal subunit protein uL10m 12.5 4 7 4 53118.6249 37958.76933 +Q9VPQ2 DnaJ homolog shv 8.76 4 6 4 31755.03534 19192.214200000002 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 42.17 8 52 8 2374273.68315 1972052.11011 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 25 5 777703.8718 610011.2101799999 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 11.91 8 11 0 44024.0879 29157.3535 +Q9VQ91 Tudor and KH domain-containing protein homolog 11.46 6 9 6 24246.368000000002 15223.19674 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 9.86 4 6 4 79964.7927 69423.4211 +Q9VQC4 Glycerate kinase 13.14 9 14 0 140272.69805 99807.1809 +Q9VQF7 Bacchus 38.16 4 21 4 446436.15578 271882.1385 +Q9VQG4 Congested-like trachea protein 24.84 9 25 8 225393.1747 189137.23028 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 17.59 7 17 7 329799.67459999997 273143.2058 +Q9VQX4 Nicotinate phosphoribosyltransferase 6.85 4 7 0 36238.6967 27632.69416 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 12.56 9 22 0 180162.3155 164249.32194 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 2.0 3 3 0 3295.8362 1915.2094 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 3.84 2 4 0 2104.95085 1654.8359 +Q9VR89 RNA-binding protein pno1 6.25 2 3 2 12144.8596 10071.2252 +Q9VR94 General odorant-binding protein 19a 10.27 2 3 2 5420.0575 4651.80124 +Q9VRJ9 Ubiquitin thioesterase Otu1 14.41 5 17 0 89003.56257 59380.582109999996 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 6 3 2900.9649600000002 1220.74017 +Q9VRL3 Probable prefoldin subunit 4 14.49 3 6 3 163200.1802 111646.5215 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 5.56 7 8 0 24449.7244 14420.3405 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 5.88 3 8 3 13770.12284 7308.83948 +Q9VRV7 Splicing factor 3B subunit 6 30.58 4 7 4 35204.42243 29033.16947 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 85351.19579 66424.05127 +Q9VS34 Large ribosomal subunit protein eL18 26.06 4 16 0 287739.4962 349568.15386 +Q9VS97 Peptidoglycan-recognition protein SD 12.9 3 4 3 28806.549600000002 25729.5396 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 47.02 20 86 20 1452423.36299 1146595.54228 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 25.97 6 11 0 73715.89853 70595.2096 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 3.37 2 2 1 2498.8381 3142.875 +Q9VSJ8 Exocyst complex component 7 10.53 8 12 8 26247.25688 21364.42546 +Q9VSK9 Pseudouridylate synthase 7 homolog 7.77 6 6 6 23478.54847 18461.972840000002 +Q9VSL3 Pyrimidodiazepine synthase 55.97 11 73 10 1671824.43374 1685547.07845 +Q9VSR3 Translational regulator orb2 7.39 4 5 0 5121.40768 2436.4705 +Q9VSS1 Protein Pixie 5.56 4 4 4 41651.7944 24359.7756 +Q9VSS2 Signal recognition particle subunit SRP68 12.42 8 13 8 48156.33297 41319.36376000001 +Q9VSU7 Vesicle transport protein USE1 22.8 6 9 6 57615.273199999996 38796.47687 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 33.84 18 61 8 1031341.57776 773871.6163999999 +Q9VSY6 Phosphoserine phosphatase 30.0 7 20 7 146152.8663 113945.99934000001 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 2259.778 891.5746 +Q9VT70 Nuclear distribution protein nudE homolog 7.26 2 2 0 16582.9093 13329.4054 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 4.4 1 2 1 27800.67 20667.673 +Q9VTE5 Probable prefoldin subunit 2 35.66 5 16 0 232321.0787 177625.86560000002 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 13.93 7 9 0 29079.18725 21897.25175 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 8.23 4 9 4 125073.28782 92785.34874 +Q9VTJ4 Putative alpha-L-fucosidase 4.45 3 4 3 8711.38296 8341.4176 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 15.25 2 3 0 39680.967000000004 32197.992 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 31.65 4 11 4 99324.26762 62797.04372 +Q9VTP4 Large ribosomal subunit protein uL1 40.55 9 32 9 1414603.1889 1168003.13206 +Q9VTU3 Rho GTPase-activating protein 68F 15.76 8 12 0 57422.5032 50804.00177 +Q9VTZ5 Transferrin 2 17.95 16 27 16 152615.93565 109673.2369 +Q9VTZ6 Phosphomannomutase 21.26 5 11 5 84683.7649 81440.73741999999 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.38 2 10 2 177922.2876 151728.91950000002 +Q9VU58 Neuropeptide-like 2 66.28 6 133 0 10315665.12039 7477287.74374 +Q9VU68 Actin-interacting protein 1 21.38 13 35 13 301047.17559 251988.01633 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 17.84 4 6 4 41020.51004 25575.2 +Q9VU84 Drebrin-like protein 12.99 8 24 8 320318.36342 217663.10394 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.17 6 12 6 43365.68303 37248.13801 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 7 5 21825.69934 15865.8904 +Q9VUK8 Glycine--tRNA ligase 17.12 14 37 14 891469.38905 705683.50142 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 16.47 7 12 0 202798.69113999998 37562.87414 +Q9VUY9 Phosphoglucomutase 1 30.36 18 47 18 386730.91977000004 343002.7051 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 5.76 1 1 1 5854.169 4893.439 +Q9VV36 Retinin 31.94 8 155 8 4607206.57549 3471326.37459 +Q9VV43 Tubulin polymerization-promoting protein homolog 53.12 9 54 0 905841.46427 775722.96297 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 22.91 12 33 12 221624.98916 192432.30754 +Q9VV74 Survival motor neuron protein 11.95 3 4 3 17754.39675 10645.692500000001 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 5 0 15983.18 10983.4499 +Q9VVA6 Nuclear migration protein nudC 27.41 10 34 10 486728.59803 405111.35504 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 10.99 6 10 6 46184.1126 28760.91105 +Q9VVE2 Protein rogdi 26.49 7 15 7 252379.67656 243385.1227 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 12.2 4 7 0 34555.8525 27270.630839999998 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 12.69 4 6 0 16155.5189 16189.5656 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 49.18 5 14 5 1264911.59708 1075894.53556 +Q9VVI2 Enhancer of mRNA-decapping protein 3 8.24 6 7 6 21518.01794 14212.30214 +Q9VVI9 Charged multivesicular body protein 5 52.65 10 29 0 588031.39399 390493.67055 +Q9VVN2 Small ribosomal subunit protein mS26 17.78 4 6 4 22879.025200000004 17133.5193 +Q9VVU5 COP9 signalosome complex subunit 1b 5.71 3 5 3 15585.1404 15651.5974 +Q9VVW3 Sideroflexin-2 10.7 4 10 4 15161.15696 12595.93334 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 16.0 4 8 4 36017.7281 29253.0066 +Q9VVY3 Glycogen-binding subunit 76A 6.17 4 8 0 11621.5755 6614.4709 +Q9VW12 UPF0389 protein CG9231 41.6 5 24 0 579391.15659 483625.3902 +Q9VW14 rRNA methyltransferase 3, mitochondrial 18.18 7 11 7 23061.20177 17234.24609 +Q9VW26 Ornithine aminotransferase, mitochondrial 18.1 8 17 8 101083.2524 83085.76905 +Q9VW56 Probable prefoldin subunit 6 44.8 6 30 0 341253.27429 246926.19338 +Q9VWA1 Clathrin light chain 41.55 12 58 0 2715213.55664 1995802.7467399999 +Q9VWA8 Protein FRG1 homolog 11.07 4 7 4 27065.4583 18240.6675 +Q9VWB1 DCN1-like protein 4 8.87 2 3 1 24301.5517 18822.3852 +Q9VWE0 Cytokine receptor 0.78 1 2 1 835.8231 1148.87208 +Q9VWG3 Small ribosomal subunit protein eS10B 28.12 7 15 0 371283.8938 258082.75826 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 69.23 29 196 28 16035300.88929 13969025.01914 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 57.38 7 25 7 1162997.42995 784248.8064 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.32 9 22 0 46541.8182 34752.10736 +Q9VWP4 Sulfite oxidase, mitochondrial 8.55 5 7 5 10855.29329 6526.69477 +Q9VWU1 Serine protease persephone 8.88 4 6 4 32425.1105 26046.5464 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 10.75 3 3 3 13774.4263 7467.6697 +Q9VWW0 Cyclic AMP response element-binding protein B 6.41 3 4 0 24476.343 15132.91615 +Q9VWX8 Frequenin-2 37.43 8 52 3 1294211.06984 927616.28388 +Q9VWY6 Transcription initiation factor TFIID subunit 8 6.1 2 4 2 16416.61 11742.704099999999 +Q9VX10 Sulfiredoxin 11.73 2 4 0 16722.9374 13126.7792 +Q9VX98 Density-regulated protein homolog 29.63 4 17 4 434114.6508 365723.50667 +Q9VXB0 NECAP-like protein CG9132 44.72 9 39 3 563366.5945 439619.38406 +Q9VXB5 Large ribosomal subunit protein uL22m 12.88 3 3 3 16572.12795 15112.723399999999 +Q9VXE0 Probable small nuclear ribonucleoprotein G 59.21 4 9 4 182458.8026 125047.55720000001 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.76 4 9 4 13185.7424 10911.31363 +Q9VXE6 Nuclear pore complex protein Nup153 1.91 3 4 0 14403.5701 8762.603920000001 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 39.9 18 82 0 598789.05904 451419.53841 +Q9VXG4 Annexin B11 23.68 14 41 14 613481.34316 565229.22667 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 21.07 11 19 0 112255.9181 113268.6279 +Q9VXK0 Protein NipSnap 9.89 3 16 0 254918.15933999998 246964.68774000002 +Q9VXK6 Eukaryotic translation initiation factor 5 18.32 10 21 9 199720.67081 167134.60530999998 +Q9VXN2 Protein stunted 81.97 6 16 6 682035.5921 421427.0147 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 12.63 9 10 9 27131.1522 22973.78623 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 18.22 3 5 3 66588.0165 58121.2959 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 9 0 74577.92940000001 58134.76861 +Q9VXY0 Probable cytochrome P450 4s3 2.83 2 4 2 889.13513 0.0 +Q9VXY7 Lipid storage droplets surface-binding protein 2 35.8 10 28 0 1233115.5945 1008586.78137 +Q9VY28 Small ribosomal subunit protein mS25 23.95 4 7 4 22384.56683 19278.35427 +Q9VY77 LIM domain-containing protein jub 4.67 3 6 0 5118.223 2340.3054700000002 +Q9VY78 Chloride intracellular channel Clic 38.46 8 8 8 94720.629 70056.8361 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 7.05 2 3 0 29425.088799999998 20544.8084 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 2 0 10686.2392 4639.26405 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 55.79 4 9 0 443412.31799999997 371094.9825 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 9.97 3 4 0 9731.358 8106.235500000001 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 1.78 1 2 0 4372.5013 2739.6977 +Q9VYG2 Brahma-associated protein of 60 kDa 11.26 6 7 6 15501.4934 11653.653699999999 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 104304.2896 84175.03436 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 2 0 17222.7977 14338.8675 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 3.99 5 7 0 8663.844000000001 6932.63112 +Q9VYR0 LSM12 homolog A 14.29 3 8 3 51533.040550000005 45515.04464 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 9.88 4 5 4 28251.5781 31612.7536 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 47.84 17 42 17 625536.60988 530703.37938 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.61 3 3 0 20886.993560000003 17423.0827 +Q9VYX1 Enhancer of yellow 2 transcription factor 23.76 2 2 2 39673.895 30052.652 +Q9VYY2 Signal peptidase complex subunit 2 33.67 8 20 0 401009.66974000004 251710.0406 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.52 9 15 9 73040.82117 54410.945850000004 +Q9VZ23 GTP-binding nuclear protein Ran 51.85 11 32 0 547617.95245 402447.62497 +Q9VZ35 Protein Vago 5.0 1 1 1 0.0 313.27625 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 5 0 38919.4665 26386.4969 +Q9VZ49 Endoribonuclease Arlr 16.72 10 23 10 370182.04747 283332.30919 +Q9VZ64 Probable 6-phosphogluconolactonase 32.1 7 18 7 407819.44508 372991.23589999997 +Q9VZA4 Band 7 protein CG42540 12.08 6 14 0 58719.117 38168.517 +Q9VZD5 Small ribosomal subunit protein bS6m 10.2 2 4 0 26618.5046 22043.7042 +Q9VZD8 THUMP domain-containing protein 1 homolog 8.64 4 6 4 18459.47236 8941.42166 +Q9VZE7 Choline transporter-like 1 3.76 2 3 0 3612.3675000000003 2780.685 +Q9VZI3 Unc-112-related protein 3.39 3 3 2 29682.422000000002 19275.009 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 6.21 2 4 2 6720.2528 6198.4838 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 5.77 2 3 2 6950.956899999999 5449.1437000000005 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 10.83 1 3 0 76588.1449 70256.451 +Q9VZS3 Eukaryotic translation initiation factor eIF1 59.09 5 12 5 204988.1273 147126.67295 +Q9VZS5 Large ribosomal subunit protein eL28 45.14 8 37 0 735335.09473 614012.74826 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 47.55 12 78 12 4142901.6331 2744963.50929 +Q9VZX9 Adenosylhomocysteinase-like 1 21.69 11 18 10 210766.83364 160918.39694 +Q9W021 Large ribosomal subunit protein uL23m 9.33 2 4 0 17632.5692 11669.103 +Q9W032 Protein ecdysoneless 5.12 4 4 4 486.53497 514.7015 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 40.89 16 58 1 825491.29784 752460.83351 +Q9W074 Protein HBS1 4.33 3 4 3 8477.0823 6349.806189999999 +Q9W0A0 Protein draper 9.6 8 20 0 40566.3534 29617.63353 +Q9W0C1 Neuronal synaptobrevin 43.17 4 30 4 1925209.7637999998 1522243.7077 +Q9W0C7 Protein OPI10 homolog 6.6 1 2 1 5270.125840000001 6505.4344 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 11.13 7 10 3 14900.28813 13771.50677 +Q9W0H3 Lipid droplet-associated hydrolase 11.4 4 10 4 109303.30990000001 80632.8395 +Q9W0K4 Protein bric-a-brac 2 2.53 2 2 0 1798.9404 795.7044 +Q9W0P5 UDP-glucose 4-epimerase 19.43 8 15 0 205482.82341 186434.33617 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 14.25 13 21 13 101688.3951 78096.50052 +Q9W0Y1 Troponin C-akin-1 protein 26.95 5 16 3 135416.10834 131878.33402 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 5.1 1 2 0 0.0 445.04028 +Q9W0Y6 Transient receptor potential cation channel protein painless 2.85 3 4 2 3724.0409 2419.3271999999997 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 63 6 3193070.48045 2488283.15956 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 9 5 101619.5879 65344.98117 +Q9W1A4 Protein tamozhennic 5.52 2 2 0 1584.4883 860.4421 +Q9W1C9 Ejaculatory bulb-specific protein 3 58.73 13 119 0 26526862.45324 19319817.79224 +Q9W1G0 Probable transaldolase 48.04 12 51 12 2549299.5272 2292642.8944699997 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 15.31 3 3 3 22720.976199999997 22441.5336 +Q9W1K0 Transmembrane protein 14 homolog 28.57 3 8 0 38658.085600000006 32766.6685 +Q9W1K5 Sestrin homolog 6.84 4 7 0 18200.4448 14026.4735 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 12.79 6 9 6 37206.3137 30784.80383 +Q9W1X4 Nuclear pore complex protein Nup214 2.75 5 6 5 11515.69403 5489.126 +Q9W1X8 Probable GDP-L-fucose synthase 12.77 5 11 5 95204.98206 70948.16350000001 +Q9W1X9 OCIA domain-containing protein 1 33.07 7 9 0 68874.40520000001 47043.44902 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 24.63 4 12 4 96471.55226 72548.30533999999 +Q9W237 Small ribosomal subunit protein uS9 66.89 13 65 0 2709664.80571 2282886.12471 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 10.34 6 9 6 59290.51973 45744.60366 +Q9W266 Protein windpipe 20.68 10 31 10 412154.9536 310519.89782 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 22 5 662150.36385 506982.53825 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 28.38 5 8 5 64154.16157 38053.572700000004 +Q9W2E7 Protein Rae1 11.56 4 11 4 163551.41877 137592.64514 +Q9W2M2 Trehalase 29.36 16 47 0 408017.64849 382580.51083 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 3 3 26711.7377 20382.856499999998 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 3.03 3 3 3 1760.0663 1750.6959 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 15.6 9 17 1 126678.52885 90997.24225 +Q9W2Y3 NAD(P)H-hydrate epimerase 7.83 2 6 2 19820.838499999998 21136.82691 +Q9W303 Chitinase-like protein Idgf4 64.25 25 96 0 2991175.60931 2532645.20312 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 26 0 768633.18533 637720.89587 +Q9W358 Chaperone Ric-8 10.65 7 8 0 14736.04336 10594.6054 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 50.65 20 79 20 4201760.446 3162088.5671900003 +Q9W379 Zinc finger protein ZPR1 12.91 6 9 6 38200.121 23718.8272 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 12 2 474798.6046 407690.936 +Q9W385 Frataxin homolog, mitochondrial 10.0 2 6 2 59893.9815 48397.5764 +Q9W3C7 Palmitoyl-protein thioesterase 1 12.42 4 7 0 10765.81607 7977.24427 +Q9W3E2 Protein PIP82 19.83 23 56 23 413183.02995 297753.08181 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 14.86 8 17 8 43990.69805 33996.67104 +Q9W3K5 Glutamate--cysteine ligase 4.88 4 7 0 32312.687300000005 24814.57684 +Q9W3N6 General vesicular transport factor p115 8.37 7 9 7 33241.72486 29523.06076 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 6 2 116829.4568 89194.039 +Q9W3W8 Large ribosomal subunit protein uL22 14.52 3 5 0 102064.7093 137795.1045 +Q9W3Y0 Zinc finger protein 593 homolog 11.11 1 1 1 3884.7102 2135.1726 +Q9W3Y4 GAS2-like protein pickled eggs 2.35 3 3 3 7852.44376 7855.07465 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.84 2 2 2 2868.9656299999997 2446.8774 +Q9W401 Probable citrate synthase, mitochondrial 55.39 30 238 30 10187283.30669 8034174.98139 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 14.86 4 5 4 17047.9982 19600.6386 +Q9W436 Neprilysin-1 4.24 4 4 4 17527.7413 11817.04274 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 9 3 63930.654050000005 51338.2156 +Q9W4K2 Uncharacterized protein CG3556 6.72 4 17 0 89620.21016 66424.7531 +Q9W4P5 V-type proton ATPase subunit d 1 36.86 10 24 10 815410.2101499999 778146.68206 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.34 12 23 0 101531.08009999999 70900.93498 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 12.38 5 7 0 28354.507129999998 27138.58823 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 18.59 7 21 7 275136.01316 198946.15763 +Q9W552 Vacuolar protein sorting-associated protein 26 5.44 3 5 3 50184.4138 48091.037500000006 +Q9W596 Microtubule-associated protein futsch 26.66 89 189 0 2062982.98477 1540503.39625 +Q9W5E1 RING-box protein 1A 7.41 1 2 0 22473.713900000002 17661.325 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 32.71 9 25 0 139261.08255 111355.65 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 12 0 463623.13321999996 468324.64200000005 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 3 4 3 3712.1142 4770.5725999999995 +Q9W5R8 Large ribosomal subunit protein uL18 33.78 8 14 0 236224.67071 180704.78184 +Q9W5Y0 Neprilysin-3 2.04 2 3 2 1683.5398 0.0 +Q9XTL9 Glycogen phosphorylase 31.87 30 75 0 2212047.21312 1914633.83919 +Q9XTM1 Exocyst complex component 5 2.96 3 3 3 20946.6074 30949.8349 +Q9XTN2 Insulin receptor substrate 1 1.96 2 4 0 776.83887 956.5175 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 4 2 393381.923 404166.91000000003 +Q9XYM0 Adapter molecule Crk 49.45 11 28 0 585085.4328 427952.50125000003 +Q9XYZ5 DNA damage-binding protein 1 3.95 5 8 5 37587.3635 28469.6934 +Q9XZ14 Protein gone early 4.44 4 4 1 9538.6779 11253.529 +Q9XZ58 COP9 signalosome complex subunit 5 10.4 4 7 1 63452.27761 40843.6559 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 34.68 7 22 7 897427.525 360248.24689999997 +Q9XZH6 V-type proton ATPase subunit G 31.62 5 27 0 702819.27773 481801.70509 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 13 36 0 240388.62364 167492.59322 +Q9XZL8 Protein sarah 34.25 7 12 0 148909.31989 106110.19007 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 4695.4694 2450.5862 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 11.79 3 6 0 8704.60795 6019.74856 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 32.48 4 6 4 42671.66656 37423.885800000004 +Q9Y0Y2 Adenylosuccinate synthetase 32.44 11 27 11 376276.1193 350927.15696 +Q9Y105 Probable glutamine--tRNA ligase 3.6 3 3 3 274673.35229999997 237217.5621 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 63.64 6 18 0 1424450.7258000001 1074649.5585 +X2JAU8 Protein nervous wreck 29.3 30 114 30 2553431.4018200003 2088882.94594 +A0A023GPM5 Diacylglycerol kinase 7.87 8 12 0 49394.38548 32262.180249999998 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 5.03 3 3 0 18087.47372 14294.4476 +A0A0B4JCR9 Uncharacterized protein, isoform D 5.04 2 2 0 784.7941 1691.2812 +A0A0B4JCT7 Jabba, isoform F 19.37 11 28 0 339601.4955 290349.70116 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.86 25 140 0 179190.4778 183839.597 +A0A0B4JCX2 RIM-binding protein, isoform G 5.01 9 16 0 33844.13758 18516.4156 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 8.07 5 5 0 5694.2119 2307.8224099999998 +A0A0B4JCY6 Cheerio, isoform I 31.43 63 129 0 1481359.74227 1124368.7672 +A0A0B4JCZ0 Oxysterol-binding protein 4.44 5 8 0 25790.08244 16335.42974 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 7.48 4 6 0 20076.772100000002 13207.76485 +A0A0B4JD47 Missing-in-metastasis, isoform E 4.61 4 4 0 452.87845 543.5769 +A0A0B4JD57 Zipper, isoform F 9.7 20 33 0 9312.65378 7910.067 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 12.56 17 31 0 181514.32025 120871.22165 +A0A0B4K615 Smallish, isoform O 8.18 11 16 0 81953.70047 62467.90853 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 8.5 6 10 0 15435.420559999999 11264.78376 +A0A0B4K620 Oxidation resistance protein 1 13.76 18 38 0 358488.18379 287469.38085 +A0A0B4K661 Tropomyosin 1, isoform Q 75.2 34 259 0 6715831.65675 4726014.53353 +A0A0B4K663 Non-specific lethal 1, isoform N 4.02 5 8 0 23118.87886 15030.186419999998 +A0A0B4K6C8 Uncharacterized protein, isoform G 5.14 6 7 0 33503.64228 18839.084830000003 +A0A0B4K6I1 Scribble, isoform N 9.51 23 39 0 362539.71987 225092.81505 +A0A0B4K6K8 Musashi, isoform D 12.73 5 9 0 48587.35804000001 44469.6128 +A0A0B4K6P4 Hephaestus, isoform W 2.88 3 5 0 15944.3712 12592.83383 +A0A0B4K6Z2 Dystrobrevin 11.84 8 16 0 59398.99983 49213.89516 +A0A0B4K709 Uncharacterized protein, isoform E 2.78 2 3 0 6829.3518 0.0 +A0A0B4K716 Diacylglycerol kinase 5.54 9 14 0 66833.8451 48550.72894 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 3372.8615999999997 4180.7554 +A0A0B4K774 Abelson interacting protein, isoform D 15.72 8 16 0 104835.64703000001 78518.3612 +A0A0B4K775 Golgin 97, isoform B 5.14 3 4 0 6757.24626 6020.778200000001 +A0A0B4K7A5 Hu li tai shao, isoform Q 53.59 36 151 0 4126022.17168 3049511.96356 +A0A0B4K7B0 Smooth, isoform O 19.03 8 23 0 134968.89645 74944.57023 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 3.86 4 6 0 34377.9891 29014.8361 +A0A0B4K7D8 Uncharacterized protein, isoform B 4.31 2 3 0 15693.2081 14070.183 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.72 4 7 0 14889.10885 8505.1777 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 3.29 3 3 0 9917.228 10525.779 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 43 2 3285385.33474 2460634.6335 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.62 5 6 0 30523.3228 22110.2902 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 2.19 5 5 0 824.7734 405.666 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 8.12 19 54 0 926928.39076 701486.46875 +A0A0B4K7V8 Bruchpilot, isoform K 51.55 104 349 1 22409.07082 10980.697540000001 +A0A0B4K7X5 glycogenin glucosyltransferase 13.58 7 31 0 226082.5438 184559.21136 +A0A0B4K885 Kenny, isoform B 17.48 7 9 2 39071.558899999996 28211.5978 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 16.15 8 14 0 78537.32699 27261.41217 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 4 0 15938.9323 13269.30587 +A0A0B4KEE1 Aldehyde dehydrogenase 23.34 11 18 0 168873.54499999998 128230.58655 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 12.46 23 62 0 234279.58440000002 151285.9043 +A0A0B4KEH7 CAP, isoform Y 12.79 32 56 0 226785.57134 161560.77399000002 +A0A0B4KEI5 Serrate RNA effector molecule homolog 8.34 9 11 1 27177.85627 22884.780710000003 +A0A0B4KEJ7 Coronin 17.01 9 17 0 85378.83409 58633.7304 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.5 5 7 0 14017.680980000001 9026.27533 +A0A0B4KEP4 Myocyte enhancer factor 2, isoform G 2.35 1 1 0 2977.2764 2473.665 +A0A0B4KER0 Relative of woc, isoform C 3.23 3 3 0 10396.4532 6687.6056 +A0A0B4KEW6 Amphiphysin, isoform B 47.41 25 90 1 38336.06 29805.338 +A0A0B4KEX6 Jitterbug, isoform M 8.52 25 39 0 98515.73016 74508.96194000001 +A0A0B4KF06 Valine--tRNA ligase 1.52 2 2 0 3383.5233 3118.5368 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 10.63 3 4 0 10401.22121 6295.71564 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 5 8 0 12971.856749999999 11886.34913 +A0A0B4KF46 E1 ubiquitin-activating enzyme 8.93 10 20 0 250602.38016 196340.13222 +A0A0B4KF84 Stretchin-Mlck, isoform S 1.17 10 13 0 18281.6451 8502.031649999999 +A0A0B4KFA3 Uncharacterized protein, isoform F 3.66 5 6 0 6196.0854 5335.519200000001 +A0A0B4KFA6 alpha-glucosidase 31.75 16 39 0 1264095.6429 1118509.304 +A0A0B4KFD1 LDL receptor protein 1, isoform F 1.22 6 8 0 36334.37483 20721.35875 +A0A0B4KFE2 Like-AP180, isoform I 25.26 20 101 0 2947706.8792 2542569.97579 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.91 10 15 0 109366.785 68598.01552 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 22.44 9 22 1 173473.49119 124947.35376 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 13.88 7 20 0 460420.9655 366289.29296 +A0A0B4KFK4 Uncharacterized protein, isoform E 9.98 5 10 0 64121.447199999995 50863.65942 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 15.03 4 7 0 15213.918940000001 10972.13133 +A0A0B4KFT3 Protein kinase C 11.94 9 12 0 113374.12005 79704.3274 +A0A0B4KFT9 Quaking related 54B, isoform E 8.1 5 12 0 68056.8042 54206.56088 +A0A0B4KFX8 Flapper, isoform C 3.46 3 5 0 15032.824700000001 10575.1829 +A0A0B4KFZ2 Uncharacterized protein, isoform G 4.13 4 5 0 19434.45244 14122.34767 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 3.42 1 2 0 14111.7116 9823.4971 +A0A0B4KG94 Uncharacterized protein, isoform B 7.71 4 8 0 67394.24256 36029.8518 +A0A0B4KGE5 Bonus, isoform C 8.86 10 13 0 32002.4753 28279.82582 +A0A0B4KGF0 Protein kinase D, isoform H 18.87 3 3 0 13274.8188 11297.991699999999 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.33 5 7 0 43397.051100000004 27043.50973 +A0A0B4KGF7 beta-mannosidase 2.65 3 4 0 841.7553 517.6498 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 22 0 117887.47073999999 91384.40421000001 +A0A0B4KGI5 Carboxylic ester hydrolase 13.05 8 25 0 960107.2361 744977.14086 +A0A0B4KGK8 Syncrip, isoform R 29.0 15 48 0 290866.90429 209724.55122 +A0A0B4KGP4 Beaten path IV, isoform B 1.57 1 2 0 0.0 722.04535 +A0A0B4KGQ4 Easter, isoform B 12.26 3 3 1 21462.716 16578.4774 +A0A0B4KGS4 non-specific serine/threonine protein kinase 4.46 2 3 0 2541.0234 2193.9206 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 11.23 10 21 1 133846.63693 89994.5921 +A0A0B4KGW3 Uncharacterized protein, isoform B 1.68 1 1 0 659.8354 468.88354 +A0A0B4KH03 Tetraspanin 20.77 6 13 1 63810.9905 53608.96441 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 3 0 8555.24 7441.007100000001 +A0A0B4KH34 Annexin 67.9 22 147 2 6794883.851100001 6193185.5 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.97 2 2 0 7959.2363 7032.342 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 3.05 3 4 0 11068.1351 7723.45424 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 29.75 10 25 0 162062.79356 110505.39679 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 17.18 14 30 0 119226.59543 105103.85557 +A0A0B4KHE1 Uncharacterized protein, isoform B 10.93 4 7 0 64312.2249 46943.78127000001 +A0A0B4KHF0 Ferritin 77.97 20 130 1 3458632.38245 2880822.49395 +A0A0B4KHJ9 Tropomyosin 2, isoform E 79.23 37 254 5 14616797.27801 11822444.19077 +A0A0B4KHL4 non-specific serine/threonine protein kinase 11.92 7 10 1 138589.30808000002 103067.9877 +A0A0B4KHN1 Cheerio, isoform O 26.89 63 126 1 10439.4274 6684.29705 +A0A0B4KHN3 Scribble, isoform S 10.17 18 29 2 29491.13628 22359.7912 +A0A0B4KHP4 Couch potato, isoform P 4.28 3 13 0 106962.83736 84815.81332999999 +A0A0B4KHS1 Crumbs, isoform D 6.08 12 31 0 129340.6431 95381.53881 +A0A0B4KHT5 Syncrip, isoform J 20.89 15 48 0 54940.4001 65454.46168 +A0A0B4KHT8 Julius seizure, isoform E 5.14 3 7 0 21494.316 16664.668400000002 +A0A0B4KHV1 Ecdysone-induced protein 93F, isoform C 6.14 4 4 0 29244.31464 28781.074620000003 +A0A0B4KHW3 Aralar1, isoform F 6.48 5 8 1 79779.85459999999 61359.66186 +A0A0B4KHZ0 Without children, isoform E 1.76 3 3 0 908.349 563.2432 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 49.63 17 58 1 1259866.372 939399.781 +A0A0B4KI23 Uncharacterized protein 28.46 5 32 5 2077159.5112 1322816.51923 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 3.95 1 1 0 12142.595 9199.533 +A0A0B4LEH1 Sticks and stones, isoform C 2.01 4 4 0 1572.2353699999999 2765.77344 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 3.7 1 1 0 362.93292 0.0 +A0A0B4LEW1 Bloated, isoform E 2.31 3 4 0 11897.24763 8454.13155 +A0A0B4LEY1 Protein transport protein Sec31A 1.91 3 3 0 5456.620800000001 5183.90805 +A0A0B4LF49 Menage a trois, isoform D 21.79 12 30 0 239470.49912 185094.51712 +A0A0B4LF88 Tripeptidyl-peptidase 2 20.51 30 47 0 446342.48855999997 346180.01019 +A0A0B4LF95 glutaminase 7.29 4 9 0 38726.4802 41665.417199999996 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 51.65 15 39 2 599576.26346 459559.65082 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.27 15 21 0 234492.2471 197614.53317 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 9 0 52712.16292 46301.03964 +A0A0B4LFH2 Caspar, isoform C 5.51 4 6 0 15674.533350000002 7924.88305 +A0A0B4LFL6 Double hit, isoform C 8.12 2 2 0 443.15628 0.0 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.16 2 2 0 3970.9010000000003 3082.99842 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 2 0 2524.9624 2170.2817 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 21 0 241076.54080000002 180142.24626 +A0A0B4LG34 Liprin-gamma, isoform E 2.4 3 3 0 958.615 493.96234 +A0A0B4LG88 Quaking related 58E-1, isoform D 18.21 7 9 0 41513.060000000005 33219.231120000004 +A0A0B4LG95 Lethal (2) k09913, isoform F 4.9 2 4 0 58526.5555 54290.7196 +A0A0B4LGB0 Gp150, isoform E 10.44 13 14 0 44717.62593 36356.58345 +A0A0B4LGB7 Calcium-transporting ATPase 25.63 24 67 0 581568.63558 503796.37152 +A0A0B4LGD3 Kazachoc, isoform G 6.31 8 15 0 188062.04299000002 146403.23141 +A0A0B4LGH8 Oxysterol-binding protein 5.91 3 5 0 13828.368 10722.3415 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 48.43 15 42 1 240571.68113 209205.55776 +A0A0B4LGM0 Prominin, isoform E 7.16 8 10 0 54267.75727 41511.56844 +A0A0B4LGQ1 Superoxide dismutase 38.25 9 60 0 1786857.64015 1481145.05679 +A0A0B4LGT9 Uncharacterized protein, isoform B 2.65 1 2 0 10110.387 6379.1787 +A0A0B4LGV6 Insulator binding factor 1, isoform B 17.72 4 8 0 45052.387 33304.25065 +A0A0B4LGY1 Uncoordinated 115a, isoform G 24.76 21 59 0 669707.18791 489981.05928 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 62.82 20 141 0 1709.3402 4074.6164 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 6.06 2 5 0 13838.85812 12482.629180000002 +A0A0B4LHH8 Argus, isoform C 2.62 3 4 0 32047.8284 28933.336000000003 +A0A0B4LHL1 Uncharacterized protein, isoform C 1.96 1 2 0 433.70767 485.7587 +A0A0B4LHR8 Uncharacterized protein, isoform G 9.01 8 13 0 90811.92225999999 60772.27906 +A0A0B4LHS0 Lnk, isoform E 3.26 2 2 0 1397.8726 2054.2397 +A0A0B4LI09 Uncharacterized protein, isoform C 6.2 3 5 0 16052.8614 14196.156799999999 +A0A0B4LIA3 non-specific serine/threonine protein kinase 7.92 3 4 1 11751.820199999998 9315.8396 +A0A0B4LIC4 Uncharacterized protein, isoform C 3.41 3 3 0 3096.70205 2103.53118 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 23.71 14 27 0 136678.44065 107824.73822 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 2.2 1 1 0 10655.349 7758.495 +A0A0C4DH96 Sidestep V, isoform B 2.73 4 4 0 2869.2142 1116.355 +A0A0C4DHA8 Nuclear protein MDM1 30.66 23 55 1 666161.03703 445009.66249 +A0A0C4DHF6 Dystroglycan 1 2.54 3 5 0 7933.09844 5971.0936 +A0A0C4DHN4 Defective proboscis extension response 21 9.22 3 5 2 30991.370899999998 24898.5376 +A0A0C4FEI8 Granny smith, isoform F 7.79 5 12 0 79379.7779 58034.24978 +A0A0S0WGZ0 Still life, isoform Q 0.86 2 2 0 739.7926 503.51532 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 25.36 7 16 0 196966.58107000001 155900.03571 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 7.84 5 9 0 17942.320209999998 13814.49084 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.94 25 140 0 9499520.23141 8515041.01193 +A0A126GV06 Uncharacterized protein, isoform B 20.95 7 15 0 69044.8441 53388.3724 +A0A126GV33 Uncharacterized protein, isoform F 9.17 3 4 0 94343.7304 71465.6533 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.46 2 3 0 10151.55607 6186.2976 +A0A1Z1CH25 AT27361p 7.62 4 4 3 11496.196899999999 8074.5085 +A0A4D6K1L3 8 kDa dynein light chain 19.85 4 13 0 241364.66613000003 171333.48154 +A0A4D6K4X9 Axundead, isoform F 2.92 2 3 0 2739.4057 725.32214 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 45.92 25 155 0 7137825.1342400005 5792840.78656 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 11.71 16 23 0 52235.85256 36412.25467 +A0A4P1SA55 alpha-glucosidase 13.72 9 13 0 129821.62109999999 112521.5447 +A0A4P1SAA7 IP07559p 11.17 2 3 0 18828.7336 15761.0165 +A0A4P7V9T9 polynucleotide adenylyltransferase 5.82 4 6 0 4397.1594000000005 3608.58242 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 22.45 39 90 0 524900.80962 389106.70928999997 +A0A6H2EDG9 Uncharacterized protein, isoform G 12.75 10 15 0 60064.15717 42965.68204 +A0A6H2EEJ8 Uncharacterized protein, isoform C 3.44 3 3 0 2764.7554 1979.2317 +A0A6H2EEL7 Uncharacterized protein, isoform A 8.46 3 3 3 16973.806800000002 12525.4797 +A0A6H2EEU5 Nuak family kinase, isoform J 2.71 5 5 1 3424.2189000000003 2126.42817 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 32.93 106 406 0 4052897.61223 3017611.76829 +A0A6H2EG45 Uncharacterized protein, isoform D 5.13 2 3 0 4110.64864 2230.078 +A0A6H2EG56 Tropomyosin 1, isoform T 75.89 29 269 2 1321076.5803 1127530.2765100002 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 25.0 3 6 3 18907.6836 14032.956 +A0A6H2EIE0 Amino acid transporter 7.93 4 6 0 17783.792680000002 12325.454300000001 +A0A6M3Q7Q7 Hu li tai shao, isoform T 58.96 36 151 1 16074.044 9582.179 +A0A6M3Q951 CAP, isoform AA 20.98 18 36 0 13924.73088 8848.5337 +A0ACA5YM07 Uncharacterized protein, isoform I 2.41 2 2 0 5883.3396 2747.2077 +A0ACD4DAN3 Uncharacterized protein, isoform Y 10.17 7 9 0 29339.42747 20489.754399999998 +A0ACD4DAP6 Bruchpilot, isoform N 41.24 109 369 0 11134227.05968 8180290.52316 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 21.58 19 48 0 556628.41351 460307.31744 +A0ACD4DAT6 Glorund, isoform D 24.06 13 40 0 821415.4519 636371.66736 +A0ACD4DAU9 Found in neurons, isoform K 24.8 9 36 0 185928.2584 122591.18786 +A0ACD4DAV1 Lethal (1) G0289, isoform D 12.26 8 20 1 247567.34845 214427.36408 +A0AQH0 Proteasome subunit beta 29.02 5 13 5 74485.1297 62211.8814 +A1Z6F6 FI18602p1 9.08 8 14 0 88972.92167 66369.91917 +A1Z6G9 FI18173p1 9.04 3 5 3 14267.0901 9854.556700000001 +A1Z6H4 RE52822p 6.86 4 9 0 39193.383700000006 32210.56567 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.34 10 18 9 20355.00174 14774.7427 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 1.82 1 1 1 5880.0654 4997.672 +A1Z6P3 Eb1, isoform F 45.45 13 44 3 115928.34006000002 88363.7909 +A1Z6Q0 Klaroid, isoform D 25.84 9 24 0 265662.1266 205218.6131 +A1Z6R7 FI21445p1 33.57 9 21 9 63706.450860000004 50703.142139999996 +A1Z6V5 FI01422p 37.15 14 45 14 449084.60516000004 321271.38413 +A1Z6X6 Lactoylglutathione lyase 31.82 5 10 5 242910.0499 230773.31253 +A1Z729 NADP-retinol dehydrogenase 10.0 4 11 2 30223.25292 21037.4374 +A1Z759 Uncharacterized protein, isoform A 10.92 6 7 0 29199.9735 24737.8835 +A1Z765 Uncharacterized protein, isoform A 8.91 2 3 0 1636.17028 3760.2507 +A1Z784 Acetyl-CoA carboxylase, isoform A 3.34 8 10 0 16824.31948 16194.88264 +A1Z7B8 GEO08456p1 12.66 2 6 2 58797.5735 50208.807100000005 +A1Z7G2 MIP13653p 13.39 2 8 2 214161.93720000001 173005.0582 +A1Z7H7 Phenoloxidase-activating factor 2 13.74 8 22 8 121554.29233 90336.53004 +A1Z7H8 Phenoloxidase-activating factor 2 6.97 4 6 4 17635.43175 16502.85325 +A1Z7K6 FI20236p1 5.61 3 7 3 42713.686 33667.61885 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.24 8 17 8 134368.148 103947.47645 +A1Z7P1 Phosphoglucomutase 2a 4.49 3 4 3 4389.18013 2450.9029 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 16.72 7 15 2 52085.8958 36838.11942 +A1Z7S3 Rab32, isoform B 26.53 18 67 9 603969.474 499210.21589 +A1Z7V9 FI20020p1 2.74 2 4 1 23159.53114 18179.7535 +A1Z7X7 Glutathione S transferase T2 4.39 1 1 1 26168.395 21012.182 +A1Z7X8 FI02944p 15.34 6 12 6 102905.4457 95580.06445 +A1Z803 FI02892p 31.76 12 29 12 291856.03578 203946.52493 +A1Z843 Nodal modulator 3 9.17 12 20 12 111803.13663 103310.52621 +A1Z847 Uncharacterized protein, isoform B 21.97 15 35 3 858413.88532 611694.04597 +A1Z871 CAP, isoform B 10.27 19 36 0 59516.7205 47153.527 +A1Z893 1-Cys peroxiredoxin 56.36 11 68 1 3265883.19047 2556350.67254 +A1Z8D3 (S)-2-hydroxy-acid oxidase 10.66 4 5 4 34878.2787 23063.01426 +A1Z8G0 Menage a trois, isoform A 20.17 12 26 0 527.1165 0.0 +A1Z8G7 FI09243p 16.53 2 4 2 3757.72646 802.61835 +A1Z8H1 Cuticular protein 47Ea 73.33 7 69 7 6233038.61509 4763726.00949 +A1Z8H6 Cuticular protein 47Ee 20.87 4 5 4 78977.75054 63904.3218 +A1Z8I8 Uncharacterized protein, isoform E 9.29 1 2 1 10709.3833 7407.7444000000005 +A1Z8J3 No mechanoreceptor potential A, isoform C 3.16 5 5 0 6425.54967 2668.98585 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 23952.874 17103.6801 +A1Z8Z3 Cuticular protein 49Ag 37.31 3 10 3 974296.5355 820878.10234 +A1Z8Z7 Cuticular protein 49Ah 24.21 6 14 6 640501.5192099999 526444.93076 +A1Z933 GEO02273p1 22.09 2 3 2 20147.4804 13418.251800000002 +A1Z934 SD19268p 36.45 11 34 11 349930.8914 431940.20132 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 1.21 1 1 0 12114.786 10553.26 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 18.15 26 42 12 197939.48828 153662.29809 +A1Z992 1,4-alpha-glucan branching enzyme 5.4 4 8 4 139595.1763 118973.77044 +A1Z9B5 IP16508p 15.06 3 7 3 96158.19510000001 48700.62767 +A1Z9E3 Elongation factor Tu 57.26 23 57 23 2127817.42975 1846370.60533 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 25.74 13 24 13 509357.6135 437972.04269000003 +A1Z9J3 Short stop, isoform H 5.25 48 57 6 143832.08439 106811.91915999999 +A1Z9M2 Receptor expression-enhancing protein 13.48 4 10 1 231692.1986 207833.58336 +A1Z9M5 SAXO downstream of blistered 4.71 10 17 10 31021.3044 25901.298160000002 +A1Z9U2 Jet fuel, isoform A 4.46 2 3 2 470660.98600000003 380340.478 +A1Z9X4 Hibris, isoform B 2.67 4 5 0 17438.992299999998 7518.1703 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 6600.3318 5507.4941 +A1ZA23 FI18007p1 26.91 10 31 10 204730.60763 147986.17258 +A1ZA73 Stretchin-Mlck, isoform R 3.65 8 12 3 4336.4261 1643.64912 +A1ZA83 ER membrane protein complex subunit 7 10.2 2 8 2 100964.8553 59211.87955 +A1ZAA9 Uncharacterized protein, isoform B 21.18 5 12 5 109786.9068 87389.84625 +A1ZAC7 Coiled-coil domain-containing protein 93 1.85 1 4 1 16607.358 15709.480899999999 +A1ZAH3 FI16515p1 3.28 2 4 0 3342.23799 1245.72347 +A1ZAK3 Protein DEK 5.4 3 5 0 20036.58754 14569.6138 +A1ZAL1 lysozyme 30.43 5 6 5 67869.1494 65598.9743 +A1ZAP8 Uncharacterized protein, isoform C 1.93 3 4 0 2474.5366 1971.7865 +A1ZAU4 RH39096p 50.95 16 45 0 2820998.11534 2587606.8222 +A1ZB23 IP19117p 16.06 4 12 4 141068.7716 86915.47592 +A1ZB61 Bomanin bicipital 2, isoform A 6.49 1 3 1 3133.0974 3249.4547000000002 +A1ZB68 FI01423p 33.18 8 25 8 301454.333 288417.68295 +A1ZB69 Glutathione S transferase E4 45.05 9 39 9 351130.24742 322662.37198 +A1ZB70 Glutathione S transferase E5 18.02 4 5 4 6887.743659999999 7149.705639999999 +A1ZB71 Glutathione S transferase E6 22.07 5 17 5 126605.00763000001 103625.20521 +A1ZB73 Glutathione S transferase E8, isoform A 17.57 4 6 4 4661.6733 2990.07243 +A1ZB79 Uncharacterized protein, isoform M 56.44 11 40 2 1382731.97467 1096667.35188 +A1ZBA5 FI07234p 7.22 2 3 2 29286.447 25889.1033 +A1ZBB4 Uncharacterized protein, isoform B 4.8 5 5 0 49485.048899999994 38444.62593 +A1ZBD8 Mucin-5AC 3.57 5 9 5 3103.83082 2140.49601 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 31.9 15 32 15 397765.27573 325873.86246 +A1ZBK7 Crammer 58.23 4 13 4 298034.5262 205173.88450000001 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 15.81 16 30 0 2367.1677 1568.5079 +A1ZBM2 Tubulin-binding cofactor B 26.64 8 20 8 214331.67038 170662.6379 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 7 22 0 220752.12975 147831.8437 +A1ZBU5 GNBP-like 3 27.63 3 9 3 121028.408 86626.06617 +A1ZBU6 Uncharacterized protein 9.22 2 3 2 24664.7998 19176.2514 +A1ZBU8 Uncharacterized protein, isoform A 36.73 8 46 8 1380295.74216 1053552.3973 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 5 2 4160.21267 2456.93066 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 32.27 16 51 0 345766.11578 282481.41152 +A1ZBX6 lysozyme 3.91 1 2 1 0.0 359.73364 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 3 1 2028.1022 964.79183 +A2VEG3 IP16294p 3.06 3 5 0 15435.00254 8880.8421 +A4V0U4 Leukotriene A(4) hydrolase 7.67 5 9 0 108382.47733 88185.7574 +A4V2A4 Mushroom-body expressed, isoform G 37.33 14 43 0 426700.58433 304214.90642 +A4V2C3 calcium/calmodulin-dependent protein kinase 11.24 8 11 0 22476.55704 15533.308649999999 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 26.04 9 27 0 183815.29760999998 166112.07314 +A4V4F2 Flotillin 2, isoform F 54.35 22 86 0 1671321.5964 1366243.75517 +A4V4U5 Proline dehydrogenase 49.03 34 133 0 1763052.34231 1588106.69651 +A8DRW0 Cuticular protein 49Aa 47.22 5 62 5 2966769.51891 2068588.1099 +A8DY78 Protein-serine/threonine kinase 16.82 7 10 2 38416.3069 26648.53577 +A8DY95 Uncharacterized protein, isoform C 7.45 6 8 0 38363.26915 26229.41375 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 46.58 4 12 1 1942198.5032000002 1430294.8466999999 +A8DYD1 Combgap, isoform L 13.26 10 20 0 149801.5681 119997.52679 +A8DYI6 Prohibitin 66.27 22 89 3 1909696.4678 1654062.72258 +A8DYJ6 Sidestep VIII, isoform B 9.99 12 32 0 239958.68746 177290.46469 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 14.48 7 17 2 47060.02024 34717.60984 +A8DYW2 Uncharacterized protein, isoform B 6.06 10 12 0 48887.04596 36327.008160000005 +A8DYZ9 Uncharacterized protein, isoform G 3.18 3 5 0 21248.831469999997 15404.98475 +A8DZ06 Stolid, isoform J 10.24 13 34 0 415021.7442 347288.56698 +A8DZ14 FI17828p1 20.1 9 32 3 246719.91376 183609.94452 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 7.19 8 10 0 73443.20467 63442.73042 +A8DZ27 Defective proboscis extension response 7, isoform F 5.13 2 2 0 5425.0977 4291.4795 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 10.21 21 42 0 159025.72699999998 110858.64035999999 +A8E6W0 IP19808p 25.25 5 9 5 59128.2235 43664.5665 +A8JNG6 Kazal-like domain-containing protein 27.82 3 4 3 28391.2665 21009.6422 +A8JNJ6 Karst, isoform E 1.54 8 8 0 10937.9093 7444.8611599999995 +A8JNJ8 Uncharacterized protein, isoform M 4.31 4 5 0 11407.25533 8741.09794 +A8JNM0 Target of wingless, isoform C 8.52 5 8 0 50858.01936 39461.22316 +A8JNP2 arginine kinase 72.53 37 429 2 629858.72445 623772.6634 +A8JNP7 Inhibitor-2, isoform B 26.13 5 9 0 42522.73351 28949.33051 +A8JNS4 Starvin, isoform E 11.81 7 10 0 37494.53 33343.319 +A8JNT1 Uncharacterized protein, isoform B 10.78 2 4 0 14160.420740000001 11877.99283 +A8JNT7 Heat shock protein cognate 20 10.42 3 7 3 75422.0144 66963.4451 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 9.22 5 11 0 64395.9628 49471.05235 +A8JQT5 Moesin/ezrin/radixin homolog 1 2.86 11 11 9 18035.84737 8988.7509 +A8JQV2 Nuclear protein MDM1 31.93 28 60 3 32586.9012 20985.96227 +A8JQW3 Pinin, isoform B 20.2 7 10 0 76118.14995 56442.8866 +A8JQY2 Uncharacterized protein, isoform C 1.38 1 1 0 2696.3264 704.89233 +A8JR01 Kramer, isoform I 3.4 9 12 0 25813.91947 15534.67956 +A8JR25 Fasciclin 1, isoform D 43.66 30 147 2 111082.07089999999 67210.76626 +A8JR57 Uncharacterized protein, isoform D 12.12 7 15 0 87467.52536 60844.3275 +A8JR58 Hadley, isoform B 2.02 1 1 0 3350.7778 2783.1135 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.78 19 113 0 2057510.60468 1639553.414 +A8JRH3 FI20012p1 60.08 25 75 1 2681192.35771 2279003.85402 +A8JTM7 Megalin, isoform A 4.53 24 37 24 115296.62357 85544.16999 +A8JUQ2 Dual specificity protein phosphatase 19.03 5 12 0 67844.99254 49426.88061 +A8JUU1 Secretory 16, isoform E 1.14 2 3 0 12064.1047 10536.7906 +A8JUZ6 MIP03678p 7.28 3 4 0 7379.4432 3824.85352 +A8JUZ7 Uncharacterized protein, isoform B 4.82 7 9 0 14556.70651 10896.0559 +A8JV09 Coronin 1.67 2 2 0 8188.7188 5459.731 +A8JV25 Uncharacterized protein, isoform D 18.34 12 31 0 571398.93838 516071.16553 +A8WH76 GEO10024p1 51.85 4 15 4 602041.0192 488380.70463 +A8Y4V5 FI20903p1 8.21 2 3 2 4597.34843 3337.3441000000003 +A8Y527 Homeobox protein ceh-24 10.42 4 7 0 48311.4882 33413.4979 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 19 3 4402358.34521 3334962.88861 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.04 3 5 0 2637.37 2100.8264 +B7YZH1 FI20143p1 6.47 4 6 0 12588.0003 9457.37737 +B7YZN0 Syndecan 17.81 10 24 0 129828.84413 95918.0533 +B7YZN4 GH02741p3 49.23 4 6 4 17120.4334 14071.217560000001 +B7YZN8 GH02741p1 22.37 2 5 2 36430.4095 24096.6762 +B7YZQ1 Sterile20-like kinase, isoform F 5.99 10 14 0 72164.54217 53126.448 +B7YZQ7 Inorganic pyrophosphatase 71.03 16 70 0 4367888.3251 3784884.50195 +B7YZQ9 Neuropeptide-like 1, isoform C 2.87 1 1 0 481.54666 0.0 +B7YZV2 Phosphodiesterase 6.31 7 15 0 17865.11654 13372.22914 +B7YZX0 Hig-anchoring scaffold protein, isoform G 9.42 16 27 0 141124.47785 123272.56193 +B7Z001 Fatty acid synthase 21.46 50 93 0 943446.3283 781433.4319 +B7Z002 Kismet, isoform C 0.6 2 2 0 4814.9141 2451.6086 +B7Z005 Drongo, isoform I 9.14 5 11 0 30206.082300000002 22781.29755 +B7Z010 Cappuccino, isoform E 3.83 4 4 0 12284.53463 2480.85112 +B7Z060 TBP-associated factor 4, isoform E 4.69 5 7 0 7752.5718 4245.30876 +B7Z078 E3 ubiquitin-protein ligase 6.03 3 5 2 19725.7558 13107.79166 +B7Z0B2 Uncharacterized protein, isoform E 7.22 3 4 0 3179.89946 2770.91165 +B7Z0B9 Farmer, isoform H 2.46 3 8 0 79373.18043 53368.60873000001 +B7Z0C9 GH15104p1 41.05 4 6 4 43869.9448 33575.28144 +B7Z0E0 Isocitrate dehydrogenase [NADP] 67.22 34 156 0 4877654.15821 4459856.95564 +B7Z0M0 FI17308p1 18.85 2 3 2 16064.875 9076.3227 +B7Z0N0 Uncharacterized protein, isoform B 7.89 3 5 3 7591.154500000001 3763.5660000000003 +B7Z0P8 uridine/cytidine kinase 25.9 8 18 0 89898.35524 79132.71435 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 14.85 7 13 3 71582.0784 61494.16416 +B7Z0T5 Metastasis-associated protein MTA3 6.33 6 8 0 13538.41984 9546.98001 +B7Z107 GH09380p1 52.17 5 7 5 38551.4931 24535.84396 +B7Z126 non-specific serine/threonine protein kinase 2.08 1 1 0 0.0 404.51007 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 7.78 5 8 0 12761.091049999999 11098.368310000002 +C0HDP4 MIP05618p 3.77 2 2 0 10715.0908 8446.3906 +C0PDF4 palmitoyl-protein hydrolase 47.51 8 42 0 890330.23482 710852.53906 +C7LAG1 CoRest, isoform G 3.76 3 4 1 751.97473 500.05298 +C7LAH9 Moesin/ezrin/radixin homolog 1 30.96 27 67 1 586625.58722 498065.01158 +C9QP70 MIP12608p 15.85 2 3 2 36985.615 27536.146699999998 +C9QPE7 Trehalose 6-phosphate phosphatase 33.78 11 32 0 827231.8624 791821.193 +D0IQJ8 Cysteine string protein, isoform F 32.13 8 20 0 499239.68003 438349.15251 +D0UGE6 Tenectin isoform 1 2.52 8 10 8 34769.39282 28046.3668 +D0Z756 MIP14966p 32.93 13 33 0 1134865.98033 1080261.9833 +D1YSG0 Bent, isoform F 6.65 59 74 0 321326.19447 239114.31462 +D3DML3 Connector of kinase to AP-1, isoform E 9.21 7 17 0 97917.37581 83549.93918 +D3DMM0 MIP15702p 15.28 8 15 0 96874.8201 58118.81375 +D3DMM4 MIP15217p 30.28 24 95 0 1393823.49165 1129928.77022 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 27.6 4 9 1 164570.23886 105891.084 +D5SHT6 MIP21537p 4.99 3 4 0 16960.02114 18814.372199999998 +E1JGK8 Uncharacterized protein, isoform A 21.18 2 3 2 24990.3995 23685.0734 +E1JGL5 Uncharacterized protein, isoform L 64.59 9 40 1 28297.23408 20564.41416 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 13.41 16 32 0 296333.0528 229100.62687 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 14.56 6 15 0 98804.04851 70743.10532 +E1JGR3 GEO02620p1 24.62 3 5 3 6184.69637 5085.8225 +E1JGY6 Hulk, isoform F 13.33 23 31 1 361671.93924 329886.22228 +E1JH26 Superoxide dismutase [Cu-Zn] 43.94 12 20 0 100005.34408 85053.48057 +E1JH43 Deneddylase 1, isoform C 6.43 2 2 0 15321.5504 10923.448 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 3 1 2317.46315 718.26086 +E1JH90 Patronin, isoform F 1.38 2 2 0 1677.9185 1625.1389 +E1JHA6 Uninflatable, isoform C 13.32 48 90 0 326375.0019 237042.18011 +E1JHE4 long-chain-fatty-acid--CoA ligase 7.64 6 6 0 60025.69607 57301.4957 +E1JHJ2 Uncharacterized protein, isoform C 8.46 3 4 0 6122.1058 5759.941150000001 +E1JHJ5 Myosin heavy chain, isoform P 51.92 121 527 0 37912.46 31499.977 +E1JHK2 Dorsal-related immunity factor, isoform C 5.78 6 10 0 53793.2123 33784.52654 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 17.99 5 8 0 69588.16475 45888.415 +E1JHP3 No long nerve cord, isoform D 8.86 12 18 0 118268.04071 76744.19804 +E1JHP9 Galectin 4.06 2 4 0 15522.30967 10480.84365 +E1JHT6 Reticulon-like protein 18.12 11 35 0 663401.7976 614543.90111 +E1JHT9 Reticulon-like protein 24.77 6 24 0 8383.3784 5294.8651 +E1JI40 Vermiform, isoform I 13.51 7 15 0 138035.73089 96266.41912 +E1JI59 Schizo, isoform D 2.87 4 5 0 3953.3043399999997 494.0957 +E1JIC5 Uncharacterized protein, isoform G 7.46 3 6 0 43845.93935 42580.3116 +E1JID9 Multiplexin, isoform G 2.83 3 3 0 18543.9114 21893.3791 +E1JIE5 Wurmchen 1, isoform B 10.83 2 5 0 72175.2847 40805.282999999996 +E1JIK9 Myofilin, isoform I 83.48 24 234 1 38721.37 31072.994 +E1JIR1 Pseudouridylate synthase 1 homolog 4.98 2 3 0 12334.8585 9873.6173 +E1JIS1 Spermathreecae, isoform D 4.67 5 5 0 14566.0846 10552.71866 +E1JIY8 L antigen family member 3 20.72 3 8 3 77265.19866 58871.64105 +E1JJ33 Complexin, isoform U 65.73 9 79 1 6472969.4725 4928407.96504 +E1JJ60 Uncharacterized protein, isoform M 28.44 5 18 1 0.0 468.06396 +E1JJA4 Dynamin 27.41 28 73 0 1433800.82773 1136196.87165 +E1JJE4 protein-tyrosine-phosphatase 0.93 2 3 0 450.58542 617.75366 +E1JJE6 Otopetrin-like a, isoform C 4.44 5 5 0 16570.859 10035.6386 +E1JJG5 Phospholipase A2 13.81 3 3 1 1742.8139 2416.3316 +E1JJH5 Discs large 1, isoform M 25.05 25 109 6 1049957.80713 831638.58992 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 33411.62092 25779.295 +E2QCN9 pseudouridine 5'-phosphatase 29.44 8 18 5 124570.01587 114356.43059999999 +E2QCY2 Long-chain-fatty-acid--CoA ligase 1.07 1 1 0 5988.532 5602.225 +E2QCY9 Synapsin, isoform D 29.97 30 73 0 618836.14744 513105.40309 +E2QCZ0 Synapsin, isoform E 42.71 24 64 1 9242.446 9106.729 +E2QD54 Natalisin, isoform D 4.7 3 5 0 9876.8834 8346.2808 +E2QD66 Lipid droplet defective, isoform D 3.74 7 13 0 83788.44464 78202.00113 +E2QD98 Protein PALS1 7.62 16 28 0 167432.2384 101938.22387 +E6EK17 Calcium-transporting ATPase 10.03 12 14 0 45219.4448 31626.05058 +E8NH67 Asperous, isoform B 51.14 19 129 0 2138540.4705600003 1446534.41499 +F0JAP7 LP18071p 23.14 6 10 0 19165.00114 10565.98522 +F2FB81 Wiskott-Aldrich syndrome protein family member 11.13 5 11 0 52585.04324 42114.63863 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 45.34 40 145 0 3235597.86038 2419848.9107 +H1UUB1 GEO12465p1 55.04 6 25 1 337507.9565 261006.05116 +H8F4T3 Regucalcin 32.35 6 11 0 270206.7303 227703.65353 +H9XVM9 Uncharacterized protein, isoform L 26.52 24 59 0 23060.425499999998 18424.296000000002 +H9XVP2 Unc-13, isoform E 1.66 5 7 0 6194.5166 3518.0451000000003 +L0MLR4 calcium/calmodulin-dependent protein kinase 28.35 13 31 0 588058.2935 470337.93880999996 +L0MPN7 Asator, isoform H 12.15 13 25 0 83026.70315 65318.85712 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 3.33 28 37 0 93857.17723 71802.51896 +M9MRS6 Uncharacterized protein, isoform D 1.31 2 2 0 4112.1855 737.6217 +M9MRX0 Limpet, isoform J 26.49 29 95 0 2085750.95392 1725781.59234 +M9MRX4 Ankyrin 2, isoform U 12.38 49 79 0 489095.76211 287111.33221 +M9MRY7 Uncharacterized protein, isoform C 25.27 6 10 0 129448.7243 114170.81825000001 +M9MS47 Uncharacterized protein, isoform B 14.68 7 13 0 39842.33058 36114.4111 +M9MS48 Rbp1-like, isoform B 4.86 1 3 0 112123.14755000001 100528.938 +M9MS70 Uncharacterized protein, isoform C 8.99 3 3 1 1746.5228 1157.24454 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 38.05 10 33 1 645047.59553 416812.28113 +M9MSI3 Vajk1, isoform B 32.68 12 20 0 565246.72355 424917.64998000005 +M9MSK4 Sh3beta, isoform D 56.02 14 57 3 1606679.9437 1138667.25229 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 1.64 3 4 0 4439.4771 1666.3402 +M9NCP5 Uncharacterized protein, isoform C 7.8 4 6 0 9415.7075 8233.17564 +M9NCR4 Dumpy, isoform J 13.57 172 400 0 59103.331340000004 50393.917 +M9NCS7 Uncharacterized protein, isoform G 17.21 14 22 0 270614.06181 196056.56812 +M9NCX5 Chitin deacetylase-like 5, isoform I 8.49 16 28 0 56091.39049 37690.06305 +M9ND42 Cdc42-interacting protein 4, isoform H 11.65 9 22 0 205330.5438 147250.18095 +M9ND57 Large proline-rich protein BAG6 8.71 12 22 0 62349.86831 40620.118 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 8.19 5 6 0 11098.44814 8372.6248 +M9ND89 Nuclear fallout, isoform J 11.09 6 13 0 56525.653940000004 42104.66563 +M9ND95 Myosin heavy chain, isoform U 51.51 121 525 1 20041539.64276 15151465.20444 +M9NDB5 RNA-binding protein 6, isoform F 15.11 3 6 1 820.67883 0.0 +M9NDC5 Uncharacterized protein, isoform B 10.61 2 6 0 30556.2226 18678.05205 +M9NDE0 pantothenate kinase 6.54 3 6 0 12422.524720000001 9411.671 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 13.1 11 21 0 92139.09372 65706.70608 +M9NDS9 chitinase 2.56 12 16 0 45443.65644 35306.837999999996 +M9NDX8 Neurabin-1 4.11 8 9 0 25057.0546 19271.7387 +M9NE05 Neuromusculin, isoform E 2.46 6 11 0 25953.0206 19743.33688 +M9NE56 Terribly reduced optic lobes, isoform AK 29.98 100 367 0 24203.75766 14079.9193 +M9NEF2 Histone deacetylase 4.43 4 4 0 5424.1461 2991.9802 +M9NEH6 Histone deacetylase 6, isoform F 2.64 3 3 0 10342.91747 7581.1079 +M9NEW0 LD39232p2 43.33 7 15 7 275627.0353 200113.2903 +M9NEX3 Cytochrome b5 57.55 6 20 0 1358184.1817 1310395.2702000001 +M9NF03 Uncharacterized protein, isoform F 11.34 4 12 0 41003.9009 27563.13424 +M9NF14 IGF-II mRNA-binding protein, isoform L 17.55 12 18 1 11975.8029 7353.00624 +M9NF32 Leucine carboxyl methyltransferase 1 9.68 4 8 0 41186.25348 56449.71857 +M9NF47 Uncharacterized protein, isoform J 5.38 13 19 0 165112.54587 130164.20444 +M9NFC0 Troponin I 48.74 15 55 5 727347.203 573760.562 +M9NFF0 Uncharacterized protein, isoform H 3.73 1 2 0 24563.475 26009.815000000002 +M9NFH3 Lasp, isoform D 27.3 8 30 1 21371.965 13911.458 +M9NFH8 Glutamate synthase [NADH] 8.46 19 28 0 217053.68527999998 174530.36596 +M9NH07 Upheld, isoform N 48.73 30 148 0 13911249.19083 9828541.11115 +M9NH46 Mind-meld, isoform E 14.43 17 30 0 119397.12067 85256.47286 +M9PAY6 Uncharacterized protein, isoform D 8.6 6 8 0 90480.38276 60449.52846 +M9PAY9 Uncharacterized protein, isoform B 3.27 2 2 0 6568.0364 6981.072 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 15.86 16 49 0 980076.69694 660034.09938 +M9PB37 Uncharacterized protein, isoform F 1.85 3 3 0 3438.0683 1464.99015 +M9PB89 Uncharacterized protein, isoform B 28.57 2 2 0 186674.07 79452.402 +M9PBA3 Uncharacterized protein, isoform A 21.52 2 3 2 14710.0835 11635.7429 +M9PBF6 Dynamin associated protein 160, isoform G 44.58 49 193 0 3363226.60033 2423939.44252 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.17 4 5 0 9166.6144 18133.383599999997 +M9PBM3 Cysteine protease 6.34 2 4 0 15654.384000000002 11309.497 +M9PBN2 Apolipoprotein D 29.39 7 23 0 454311.14562 382773.47454 +M9PBR6 Uncharacterized protein, isoform F 10.4 7 23 0 164655.84158 137167.59530000002 +M9PBT2 Cornetto, isoform E 2.27 2 3 0 779.35675 459.9412 +M9PBU4 Sorting nexin 21, isoform B 8.75 3 5 0 14950.07515 14748.28857 +M9PBU6 Liquid facets, isoform I 16.01 8 14 0 146527.60665 104319.35883 +M9PBV2 nucleoside diphosphate phosphatase 14.89 9 26 0 307707.5303 259352.74743 +M9PBV5 JNK-interacting protein 3 3.52 5 8 0 10735.64487 9771.1376 +M9PBW9 Rhea, isoform G 5.83 17 26 0 154517.46685 120044.8559 +M9PBZ2 RNA-binding protein 9, isoform J 13.89 10 34 0 163321.57815 113699.04613999999 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 201 1 14451039.98912 12673388.0741 +M9PC64 Forkhead box K, isoform P 2.95 3 3 0 6691.3752 6275.5283 +M9PC74 Reticulocalbin-3 17.11 6 19 0 208266.47466 159574.36794999999 +M9PCA6 Beta galactosidase, isoform B 7.01 5 7 0 65050.8156 40995.6534 +M9PCA7 Sodium chloride cotransporter 69, isoform C 3.11 4 5 0 22326.4341 17823.75944 +M9PCC4 Sin3A-associated protein 130, isoform G 6.2 7 11 0 10801.53415 6228.05087 +M9PCD4 Liprin-alpha, isoform E 10.96 15 19 0 72425.81114 51079.690090000004 +M9PCE5 Hemolectin, isoform B 4.79 20 30 0 108433.17973 95432.90427 +M9PCI6 Echinoid, isoform C 4.06 5 6 0 38979.35663 23125.51313 +M9PCT7 Bunched, isoform O 18.75 4 11 1 832.367 926.6306 +M9PCU0 FI21215p1 26.43 30 64 1 559.7232 646.4094 +M9PD23 DnaJ homolog, isoform C 16.36 7 13 0 101948.9889 77522.17508 +M9PD73 TEP1-F 20.6 32 69 0 941092.0266 789930.51475 +M9PD88 Copper transport protein ATOX1 62.92 5 25 0 667338.0622299999 471652.34876 +M9PDB2 Varicose, isoform E 8.51 6 10 0 40876.978749999995 26220.4667 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 28.62 9 32 1 272218.92966 208601.68533 +M9PDC7 Dynamin associated protein 160, isoform H 47.96 47 166 0 5065.238 3939.9653 +M9PDE6 Uncharacterized protein, isoform K 3.24 6 10 0 21802.98584 13873.085500000001 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 1.88 1 1 0 847.1314 377.56107 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 5.62 6 8 0 15625.63297 13543.6642 +M9PDU4 Acyl carrier protein 18.23 4 33 2 3852790.2676299997 3007757.722 +M9PDV2 Tetraspanin 6.97 2 3 0 15544.1991 11347.450400000002 +M9PDW8 Uncharacterized protein, isoform T 8.88 48 81 0 328021.98414 219134.1742 +M9PDX2 Uncharacterized protein, isoform B 18.39 5 13 1 193277.76872 129781.50409999999 +M9PDX8 Nervana 3, isoform E 45.37 10 47 1 3823022.09357 3265381.5849 +M9PE32 Fife, isoform D 12.79 17 34 1 110849.32862 79583.19582 +M9PE35 RabX6, isoform B 6.76 2 3 0 12831.51454 9374.3275 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 7.42 3 3 0 2815.532 947.39905 +M9PE74 No circadian temperature entrainment, isoform D 5.47 9 14 0 10816.334289999999 4510.67534 +M9PE93 Ensconsin, isoform K 10.05 10 17 0 86584.55882 61610.73367 +M9PE96 Uncharacterized protein, isoform B 1.13 3 5 0 20393.8246 16265.0613 +M9PEA2 CDK2-associated protein 1, isoform B 11.53 3 4 0 14585.484499999999 9188.7233 +M9PEB1 Fiery mountain, isoform B 2.07 2 6 0 66943.6096 56155.6616 +M9PEC1 IST1 homolog 16.75 7 17 0 185986.4627 138848.63176 +M9PEE1 Smallminded, isoform H 8.85 8 21 0 194759.77455 145829.93517 +M9PEG1 Uncharacterized protein 36.6 17 48 17 2110392.95203 1538794.8617 +M9PEI1 Dumpy, isoform U 10.31 188 422 0 1578275.15663 1024644.16055 +M9PEJ9 Uncharacterized protein, isoform B 16.82 7 10 0 21460.94556 21327.40221 +M9PEL3 Quemao, isoform C 38.04 11 22 0 118268.22572 97157.65645 +M9PEM1 Syntaxin 17, isoform B 12.14 5 11 0 69055.83116 59634.7921 +M9PET3 Simjang, isoform D 3.57 3 4 0 6074.2127 7152.815500000001 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 2.76 2 3 0 2662.928 610.3807 +M9PF16 Spectrin beta chain 24.44 61 168 3 1990975.20313 1514704.43472 +M9PF36 Uncharacterized protein, isoform C 26.62 10 37 0 418037.99732 377760.81635 +M9PF85 CCR4-NOT transcription complex subunit 9 5.98 2 5 0 12938.7222 9887.6772 +M9PFF7 Uncharacterized protein, isoform E 6.66 4 7 0 25820.259449999998 16720.77377 +M9PFH7 Tartan, isoform B 5.99 5 7 0 21993.492810000003 14752.91939 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.17 2 2 0 2454.7092 1728.6531 +M9PFU5 Uncharacterized protein, isoform K 10.78 8 9 0 58066.0092 41484.73656 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 4.72 3 4 0 5179.4888900000005 3425.8066900000003 +M9PFV4 Uncharacterized protein, isoform B 9.62 3 5 0 31844.3348 30824.0547 +M9PFV8 Regeneration, isoform B 6.19 5 7 0 27295.2629 9096.402849999999 +M9PFX4 Cuticular protein 76Bd, isoform C 7.8 9 17 0 69092.66044 50138.2005 +M9PG20 HP1 and insulator partner protein 1, isoform C 16.76 16 24 0 113243.32817 77320.9189 +M9PG87 Uncharacterized protein, isoform B 4.47 7 10 0 93551.9282 58216.469849999994 +M9PGA7 Alpha-actinin, sarcomeric 60.74 55 232 0 5085133.41221 4504256.92722 +M9PGB6 Uncharacterized protein, isoform B 15.89 3 5 0 10447.65004 9069.04035 +M9PGD7 Uncharacterized protein, isoform B 8.5 4 5 0 22817.5106 22872.95864 +M9PGG8 Uncharacterized protein, isoform B 30.22 5 12 4 221177.0354 161606.13366999998 +M9PGW8 Bifocal, isoform D 14.61 15 29 0 11135.5252 10035.2445 +M9PHA0 Bifocal, isoform F 15.33 19 31 5 191322.00746 122157.4081 +M9PHI7 Uracil phosphoribosyltransferase homolog 18.77 5 8 0 40658.5743 28906.9785 +M9PHI8 Uncharacterized protein, isoform B 14.45 15 32 1 224233.40554 171068.98931 +M9PHK8 Discs large 1, isoform R 24.28 24 99 1 187571.85497000001 146705.64989 +M9PHS8 Uncharacterized protein, isoform C 13.87 8 16 0 56774.03254 44388.18945 +M9PHX2 Visgun, isoform E 8.78 2 4 1 41100.11503 28308.569340000002 +M9PHY9 Uncharacterized protein, isoform B 13.55 3 6 0 8402.84192 5789.765600000001 +M9PI33 Inositol oxygenase 7.27 3 4 0 96438.18400000001 94245.264 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.79 3 3 0 5902.535339999999 3729.4446 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 5.06 4 4 0 10860.6206 7357.5257 +M9PIL1 Juvenile hormone binding protein 6, isoform C 2.59 1 2 0 18632.682999999997 13059.9346 +M9PJM6 Upheld, isoform Q 48.45 30 129 1 2832.1438 810.5814 +M9PJQ5 Troponin I 47.28 13 65 0 337023.05939999997 277266.9317 +O15971 LD39986p 26.96 6 30 3 76630.7647 51458.869300000006 +O16158 Calcium-binding protein 50.0 8 32 8 1794727.8991099999 1537698.2291 +O17452 LD20793p 37.83 7 35 4 1293566.66447 909077.7909499999 +O18332 FI01544p 72.2 13 63 11 741786.59629 620641.96219 +O18335 Rab11 53.27 13 69 13 1733834.55389 1496583.05931 +O18336 Ras-related protein Rab-14 24.65 6 18 0 46438.78372 34350.23654 +O18338 LD44762p 27.05 6 31 0 13248.376400000001 9025.628 +O44226 Elongin-B 91.53 9 34 9 620288.3761999999 492340.26144000003 +O44434 QKR58E-3 12.62 4 6 3 25736.421 21669.2624 +O46052 EG:152A3.3 protein 18.87 6 8 3 73319.4293 53444.4609 +O46067 Hypoxia up-regulated protein 1 20.69 18 56 18 560052.24321 427543.10752 +O46079 Protein KTI12 homolog 13.04 4 11 3 10828.37779 7958.34789 +O46085 Peroxisomal targeting signal 1 receptor 4.23 3 3 0 2032.65425 1402.9870999999998 +O61444 mitogen-activated protein kinase kinase 10.14 4 6 4 48352.9408 22756.2792 +O61604 Fimbrin 32.34 22 67 3 759884.94673 632751.31023 +O62530 Adaptor protein complex 2, mu subunit, isoform A 12.81 7 14 7 132038.7487 105480.2599 +O62602 mitogen-activated protein kinase kinase 23.35 8 12 8 24997.8962 23899.9962 +O76521 Importin subunit alpha 9.21 5 12 5 94117.5966 60912.58021 +O76752 Sepiapterin reductase 27.2 7 26 7 126442.58877 105554.98724 +O76877 EG:132E8.3 protein 10.62 2 5 2 36574.990600000005 23157.613 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 48.15 6 28 5 4093028.45886 3079791.6583999996 +O77259 EG:115C2.5 protein 9.0 2 2 0 21063.503 15815.86 +O77425 Ribokinase 8.88 3 7 3 25450.1601 16659.822099999998 +O77430 GEO01111p1 62.96 11 37 10 488550.3122 372369.0589 +O77434 EG:34F3.8 protein 28.91 5 19 1 74935.82201999999 65977.25886 +O77477 LD24471p 20.94 9 15 9 54223.14131 43811.12355 +O96299 Sorbitol dehydrogenase 26.94 9 28 4 167858.23067000002 180737.93679 +O96692 small monomeric GTPase 12.09 2 6 0 21233.8497 18902.0795 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 49.0 5 13 5 103613.58276 76009.48164 +O96880 General transcription factor IIE subunit 1 2.33 1 1 1 661.75977 693.2859 +O97059 Ccp84Ab 19.91 4 8 0 43894.44314 43754.7633 +O97062 Ccp84Ae 34.13 6 26 6 185671.94104 141076.93313999998 +O97064 Ccp84Ag 25.65 4 10 4 78337.3743 58036.97944 +O97066 Signal peptidase complex catalytic subunit SEC11 14.59 3 6 3 2677.444 6105.6439 +O97102 Small ubiquitin-related modifier 44.44 5 37 5 3823992.15337 2599231.45776 +O97111 LD29223p 7.41 3 5 3 15246.1501 13645.40407 +O97182 Actin-related protein 2/3 complex subunit 5.04 2 2 2 11423.156 11234.199920000001 +O97183 DNA-directed RNA polymerase II subunit RPB3 2.55 1 2 1 30379.377 20452.6335 +O97365 BM-40 31.58 9 14 9 238531.4259 136321.7125 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 50.49 7 48 7 2494300.06079 1849257.58366 +O97428 Ciboulot, isoform A 13.95 2 4 0 23222.910399999997 21244.1755 +O97454 Protein BUD31 homolog 13.89 2 3 2 3251.024 3324.3828 +O97479 Sorbitol dehydrogenase 25.83 10 26 5 188875.97302 146025.50304 +P91939 Cuticle protein LCP65Ad 19.44 2 2 2 8135.4517000000005 7205.605600000001 +P91941 Adult cuticle protein 65Aa 60.0 5 113 5 6091595.54922 5090254.82421 +P92181 Cuticle protein DCP2 36.7 3 15 3 95044.68504 71045.40550000001 +Q0E8E2 Phenoloxidase-activating factor 2 3.29 4 5 0 14364.3287 12808.17606 +Q0E8E8 Phosphate carrier protein, mitochondrial 37.92 14 79 11 1412919.4455 1350787.4024 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 27.43 7 13 1 71805.39163 63724.11767 +Q0E8H9 beta-N-acetylhexosaminidase 8.04 6 9 0 40036.560979999995 32226.8638 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 1.74 2 2 2 8576.910100000001 7476.6607 +Q0E8J3 Zormin, isoform I 18.49 68 152 0 828201.63649 631601.19828 +Q0E8P1 Uncharacterized protein, isoform B 9.92 2 3 0 21139.0957 11055.001980000001 +Q0E8P5 FI05614p 9.28 5 12 5 296024.06355 289566.55897 +Q0E8S7 Homer, isoform E 37.66 18 48 3 714539.34188 549124.78555 +Q0E8U4 FI09636p 15.33 6 8 6 36331.20665 27593.5714 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 66.67 6 25 6 1404010.10624 1004662.8569499999 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 7 0 29848.91915 19777.6053 +Q0E8X7 Reduction of Rh1, isoform A 46.34 6 42 6 1430501.69016 1040350.1235 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 25 5 574357.97304 395887.61671000003 +Q0E980 Uncharacterized protein, isoform C 18.77 10 25 10 220565.8888 163468.96701999998 +Q0E9B7 DNAation factor-related protein 3, isoform A 13.53 3 5 3 4192.568310000001 3251.5796499999997 +Q0E9E2 Pyruvate carboxylase 26.4 31 77 0 949144.5900900001 790305.49386 +Q0E9E6 RE33655p 1.32 1 2 1 3719.39274 1868.3073399999998 +Q0E9F9 Zinc carboxypeptidase A 1 20.97 8 18 8 91104.53783 88420.61437 +Q0E9G4 CG1600-PA 12.6 3 4 0 7018.7972 4323.6614 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 14.74 8 14 0 152989.87660000002 115575.85186 +Q0KHR7 Septin 18.74 8 17 0 151621.97285 104565.4331 +Q0KHX7 FI18193p1 6.31 8 11 0 67591.60336 35753.35353 +Q0KHZ6 Electron transfer flavoprotein subunit beta 82.61 19 174 19 9299043.09379 6977247.71067 +Q0KI15 Complex III assembly factor LYRM7 24.82 4 7 4 65641.4733 52858.04066 +Q0KI25 Uncharacterized protein, isoform B 7.82 10 17 0 35881.97217 32680.012759999998 +Q0KI76 Uncharacterized protein, isoform A 18.53 12 34 1 389018.67461 285782.32705 +Q0KI81 protein-tyrosine-phosphatase 4.34 6 10 6 24128.59565 16940.8097 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 9.3 5 7 5 36603.892230000005 36594.8386 +Q0KIB0 Sidestep III 2.61 4 5 4 7137.5327 7970.947 +Q0KIE7 Ankyrin, isoform B 4.0 7 7 6 16884.506 8753.68854 +Q1RL12 IP16413p 60.25 16 101 1 43600.49 36278.22 +Q24090 GH08712p 14.05 6 9 6 27423.27146 24428.95769 +Q24253 AP complex subunit beta 19.76 16 31 16 143442.9031 127987.40911 +Q26459 EN protein binding protein 13.32 8 16 0 118565.92058 63767.26422 +Q29QY7 IP15859p 9.86 1 1 0 10661.711 10697.681 +Q2MGK7 GEO13330p1 26.77 4 11 4 78675.9509 75184.8649 +Q2PDM3 Uncharacterized protein, isoform C 0.87 2 2 2 3049.876 2811.1277 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 2 1 12560.6023 11663.888500000001 +Q3YMU0 Protein disulfide-isomerase (Fragment) 61.76 29 142 29 8125913.18753 6963267.36879 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.47 6 7 6 13490.035319999999 12179.9548 +Q4LDP7 NADH-cytochrome b5 reductase 10.44 4 14 0 252150.2841 264636.6956 +Q4QPU3 Synaptic plasticity regulator PANTS 15.38 3 5 3 10402.8527 8525.992619999999 +Q4QQ49 IP09595p 3.04 1 1 1 2262.38 2053.2268 +Q4QQ70 IP09819p 16.08 7 13 7 102178.64226 68397.68436 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 76140.4153 38260.619000000006 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 16.94 3 8 3 30294.699699999997 23496.45486 +Q4V619 IP07950p 6.9 2 2 0 5393.54 5857.1084 +Q4V625 lysozyme 6.75 1 2 1 36888.797 24079.928 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 23.94 4 11 4 186492.23386 143889.93281 +Q500Y7 GEO11443p1 89.47 4 15 4 848713.3115999999 1038459.4956 +Q59DP4 Uncharacterized protein, isoform A 6.79 5 6 0 34207.29896 16607.39615 +Q59E01 FI02065p 5.58 4 7 0 4964.86957 1943.34013 +Q59E14 Neural cell adhesion molecule 2 5.56 3 3 3 15357.0853 12789.184000000001 +Q5BIA9 RE10908p 2.72 2 2 2 23599.555 16206.2923 +Q5LJT3 MIP01391p 17.0 3 3 3 94058.274 80487.754 +Q5U124 alpha-glucosidase 16.51 11 24 0 337721.22625 283390.7083 +Q5U126 GEO11286p1 59.42 7 36 7 1268013.953 1025974.99954 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 11.23 5 6 1 20816.3813 17439.182670000002 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 8.25 3 4 3 40651.259999999995 29300.9107 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 54.87 7 21 7 900749.4373 597996.9435 +Q6IGM9 LYR motif-containing protein 2 21.11 2 3 2 58525.7376 46320.8382 +Q6IGN6 HDC05827 11.36 2 8 2 78587.45319999999 61988.55494 +Q6IGW6 GEO13367p1 44.23 2 4 2 40337.9746 48545.1867 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 16 2 1616943.075 1274393.2096 +Q6IL43 GEO11093p1 27.71 2 6 2 125494.53929999999 88706.26449999999 +Q6NL44 GH28815p 16.11 6 12 6 12811.12082 10132.749749999999 +Q6NLJ9 AT19138p 46.59 3 5 2 34737.91515 25986.43604 +Q6NMY2 RH54371p 32.42 5 16 5 212438.7136 184203.8119 +Q6NNV2 RE44043p 14.68 5 8 0 60093.62418 48429.9778 +Q6NNV7 RH03309p 29.55 5 15 1 418412.07180000003 402412.8771 +Q6NP69 GST-containing FLYWCH zinc-finger protein 2.68 2 2 1 396.03656 0.0 +Q6NP72 GEO09659p1 53.59 5 28 5 202533.3783 178237.49805 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 4 3 6717.0942 5952.1469400000005 +Q76NR6 Regucalcin 77.74 24 100 0 5094697.85677 4351378.74444 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 18.02 9 14 1 336373.4966 254286.3003 +Q7JNE1 Regulatory protein zeste 30.92 10 17 10 125695.26665 87809.69306 +Q7JPS2 Igloo, isoform A 48.33 10 28 3 1996025.06533 1552463.1859199998 +Q7JQH9 carnitine O-palmitoyltransferase 3.46 3 4 0 19610.97617 20863.422 +Q7JQR3 Sulfhydryl oxidase 19.0 12 28 12 290659.9126 231072.15321000002 +Q7JQX9 FI14001p1 4.65 4 4 0 3487.3976199999997 2020.66716 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 63.05 14 99 14 5097436.17841 5091198.077 +Q7JR69 Cuticular protein 49Ac, isoform C 23.46 8 20 0 322679.69496 209582.2583 +Q7JRB2 RH09039p 4.52 1 3 1 3340.84946 2704.3489 +Q7JRC3 Epoxide hydrolase 3.38 2 3 1 63047.676699999996 55178.424060000005 +Q7JRF1 RE48509p 3.41 1 1 0 1847.8462 805.0839 +Q7JRH5 RE28271p 1.31 1 2 1 7064.4403999999995 6405.793960000001 +Q7JRL9 GH25289p 67.12 10 56 1 2866050.07595 2116629.90048 +Q7JRN6 GH06388p 11.21 3 10 3 25843.32408 17502.79143 +Q7JS69 FI04632p 45.02 10 65 1 316783.1558 362106.2297 +Q7JUN9 Deoxyribonuclease TATDN1 9.97 3 3 3 9836.8756 2769.24354 +Q7JUS1 NADP-retinol dehydrogenase 20.85 7 10 6 19770.931800000002 16966.42409 +Q7JUS9 Phosphate carrier protein, mitochondrial 27.81 14 56 11 715022.96555 564395.67285 +Q7JV09 GH28348p 7.5 8 12 5 39356.408070000005 24679.0192 +Q7JV69 SD11922p 6.95 3 6 3 12279.81242 12098.37138 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 28.81 5 8 5 40951.6595 24867.485660000002 +Q7JVH6 LD24696p 27.01 8 20 7 202803.83666 191754.4956 +Q7JVI6 Glutathione S transferase E13, isoform A 28.32 6 16 6 95806.33802 92481.93868 +Q7JVK6 Translin 16.17 4 11 4 111180.38354 87830.4182 +Q7JVK8 GEO08987p1 52.05 8 31 8 375701.1202 255252.94523 +Q7JVM1 GH25962p 22.64 5 16 5 61821.355899999995 43718.5481 +Q7JVX3 Zinc carboxypeptidase A 1 14.56 6 11 0 64275.989050000004 38875.10962 +Q7JVZ8 Glutathione S transferase E11, isoform A 12.89 3 5 3 7004.2581 5379.4372299999995 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 13.11 3 9 3 166741.3703 123031.2816 +Q7JW07 LD08826p 12.12 3 3 3 17271.1235 16601.766499999998 +Q7JW48 RE12410p 8.08 3 8 3 78504.485 50933.626000000004 +Q7JW66 LD21545p 8.81 3 5 3 25146.0004 18412.8733 +Q7JWD6 Elongin-C 52.99 6 18 6 818124.2530200001 691679.04254 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.05 12 33 12 549885.6739 417920.48088 +Q7JWH5 RING-box protein 2 7.96 1 1 1 10970.055 9742.853 +Q7JWQ7 RE01730p 9.74 4 7 4 11595.621299999999 10424.706400000001 +Q7JWR4 GH19585p 6.06 1 2 1 12576.582 14564.2202 +Q7JWU9 AT07420p 22.49 7 8 7 85379.14140000001 34407.561440000005 +Q7JWX3 GH10112p 7.35 4 10 4 120487.52025 87861.27417 +Q7JX87 1-Cys peroxiredoxin 56.36 11 67 1 465344.013 460358.182 +Q7JX94 Phospholipase A2 13.29 3 6 3 3201.7813499999997 1723.7440000000001 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.72 7 13 0 76529.08218 56057.84467 +Q7JXB9 Endonuclease 8.39 4 4 4 9773.55486 7961.45 +Q7JXC4 CG6459 protein 33.46 6 46 6 1917592.27427 1504318.2418499999 +Q7JXW8 Off-track2 11.09 5 9 4 43723.72772 19752.42445 +Q7JXZ2 cystathionine gamma-lyase 15.01 5 12 5 91327.524 73892.8172 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 42.94 5 7 5 187288.69402000002 144717.24448999998 +Q7JYW9 Phosphotransferase 18.72 9 13 9 70267.13534 60913.56358 +Q7JYX5 Vesicle-associated membrane protein 7 6.42 2 3 2 9003.4134 7288.5055 +Q7JYZ0 lysozyme 11.18 2 6 2 72912.4531 52808.9442 +Q7JYZ9 Glutathione S transferase E2 8.6 2 8 2 94152.2045 83545.3851 +Q7JZB1 RE49860p 8.66 3 5 3 13348.8887 12393.01228 +Q7JZD3 Eb1, isoform A 53.61 14 46 1 847376.39872 716545.80175 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 1581.3663 503.8473 +Q7JZE1 Peroxin 11 9.96 3 6 3 17735.379249999998 15565.01425 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 24.29 5 8 5 66134.7557 43828.6738 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 38.71 7 43 7 2103507.97344 1915672.82238 +Q7JZN0 Protein transport protein Sec61 subunit beta 58.0 6 22 6 130438.22038 103220.71434 +Q7JZR5 asparagine--tRNA ligase 3.7 2 3 2 7819.2603 6492.705999999999 +Q7JZW0 Cuticular protein 51A 54.86 8 28 8 692334.3716 407575.76025 +Q7JZW2 40S ribosomal protein S15 50.68 8 27 3 2163926.30226 1873630.88874 +Q7K012 Brahma associated protein 55kD 12.0 5 8 5 16932.38655 15133.89528 +Q7K084 Odorant-binding protein 44a, isoform A 75.52 18 208 18 8572098.12298 6624292.18531 +Q7K0A0 Large ribosomal subunit protein mL42 15.32 2 4 2 35110.2586 21245.99365 +Q7K0B6 Glutathione S transferase T1 52.63 13 44 13 958459.14975 799370.76689 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 17.7 8 14 8 100420.9599 78352.1532 +Q7K0L5 5'-nucleotidase 3.67 2 4 1 5986.333299999999 1462.0463 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 19883.194 18573.3708 +Q7K0S1 LD39211p 3.43 2 3 2 8345.4979 4111.1812 +Q7K0S5 UBX domain-containing protein 6 30.39 15 33 15 151919.66746 124605.71115 +Q7K0S6 LD36817p 21.02 8 13 8 62618.9151 46648.5933 +Q7K0T7 LD33470p 1.5 2 2 0 1789.4532 646.0129 +Q7K0W1 LD27406p 3.85 2 2 2 18661.582000000002 13756.07037 +Q7K0W4 LD27203p 56.4 18 61 17 2486487.48437 1818407.16558 +Q7K0X9 LD23667p 8.51 2 17 2 72753.78164 48798.325769999996 +Q7K126 CCR4-NOT transcription complex subunit 3 5.21 5 8 5 39728.22761 23724.5616 +Q7K127 Alpha-galactosidase 18.71 7 24 7 360573.3855 292903.1657 +Q7K130 Dynactin subunit 4 4.67 3 4 3 10595.1112 8479.3704 +Q7K148 Proteasome subunit beta 21.28 6 13 6 137352.1755 116964.32844 +Q7K159 LD06557p 26.22 6 8 6 10255.74024 10219.12948 +Q7K180 LD02709p 17.73 8 12 8 31239.5824 21137.79868 +Q7K188 GEO05126p1 29.68 6 49 6 3628632.1193 2782590.7392 +Q7K1C0 GH23780p 46.53 5 11 1 884030.6932 753960.7767 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 11.58 4 9 4 53820.190650000004 41779.02087 +Q7K1C5 GH21176p 10.85 7 9 7 68624.72924 51732.518579999996 +Q7K1H0 GH09096p 16.67 6 8 6 56955.144140000004 50538.7832 +Q7K1M4 SD04017p 17.31 5 15 5 55515.33738 43350.571410000004 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 11 4 45343.4265 47030.2409 +Q7K1W5 LD35843p 23.4 10 26 10 424160.8966 352158.9007 +Q7K204 17S U2 SnRNP complex component HTATSF1 6.65 4 6 4 42847.93705 30943.587939999998 +Q7K221 Aspartate aminotransferase, cytoplasmic 38.22 12 26 0 472306.65571 418700.05546 +Q7K2E1 LD05247p 9.07 5 13 5 107957.72163 94891.3151 +Q7K2I4 Peptidyl-prolyl cis-trans isomerase 35.98 7 24 2 9651.5802 6521.4547 +Q7K2L7 GH27120p 17.59 3 5 3 65865.8846 73584.5365 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 17.57 6 8 6 76689.7924 53804.6426 +Q7K2P1 Cuticular protein 50Cb 7.3 1 3 1 6095.867969999999 7682.128199999999 +Q7K2P3 GH20817p 63.48 14 46 1 554277.53647 389809.23647 +Q7K2Q8 Trafficking protein particle complex subunit 5 23.2 5 5 5 14383.5346 10587.591699999999 +Q7K2W6 tyrosinase 23.91 16 34 16 430745.6826 363842.61101 +Q7K332 GH17623p 6.28 2 11 1 32395.65227 24827.46239 +Q7K3D4 peptidylprolyl isomerase 28.97 12 23 12 295727.27463999996 208646.74910000002 +Q7K3E2 LD34147p 38.81 22 51 22 648893.89509 508967.90111 +Q7K3H0 LD28067p 2.93 6 10 0 83268.359 61773.22954 +Q7K3J0 T-complex protein 1 subunit theta 44.14 21 47 21 545009.18191 490376.05763 +Q7K3N4 GH26015p 16.49 7 13 7 77016.3452 56158.04754 +Q7K3V6 Elongation factor Tu, mitochondrial 8.77 4 6 4 23105.6698 18253.4405 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 19.06 9 22 9 81958.17329 49330.30848 +Q7K3W4 GH08941p 24.88 8 21 8 326362.52489 251528.21222 +Q7K3Y9 Spondin-1 5.04 5 7 5 19537.08873 9808.607 +Q7K3Z3 GH01724p 39.07 15 44 15 1121879.09897 887743.21762 +Q7K485 Cathepsin D 25.51 7 29 7 652540.37615 683880.7748 +Q7K4C7 choline-phosphate cytidylyltransferase 8.94 5 11 4 23628.7961 16853.1236 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 6506.754 4588.9917 +Q7K4J7 LD36653p 4.06 1 1 1 6396.48 4997.227 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 3.44 2 3 2 10450.1669 7733.975 +Q7K4T8 LD23856p 8.52 4 6 4 18517.15 15448.4557 +Q7K4Y0 Desaturase 1, isoform A 7.57 3 3 2 10639.01676 9592.80264 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 15.2 7 10 7 69077.08046 69436.34338 +Q7K519 GH16429p 6.75 3 3 3 14796.8875 14698.0477 +Q7K533 GH14572p 6.14 2 2 2 539.04346 0.0 +Q7K549 GH13040p 6.1 3 4 3 2098.39293 2047.9554400000002 +Q7K561 GH11294p 1.75 1 1 1 385.1575 417.42255 +Q7K568 GH10642p 13.82 5 11 5 129362.3434 86831.53704000001 +Q7K569 Glycerol-3-phosphate dehydrogenase 19.48 16 42 16 539662.17574 424558.70701 +Q7K5J8 Cuticular protein 57A, isoform A 34.78 6 25 6 364632.43734 271569.7614 +Q7K5M6 GH04176p 19.59 6 16 6 187129.84615 136905.60433 +Q7K7G0 Coatomer subunit delta 13.94 8 23 0 233375.6576 231158.0785 +Q7K860 FI07231p 33.33 5 18 5 90303.20994 83463.30986 +Q7K8X7 Glutathione S transferase E9 27.15 6 28 6 431257.1591 398857.1482 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.2 4 6 4 2425.7556 2560.7442499999997 +Q7KJ08 receptor protein-tyrosine kinase 3.41 6 8 6 8731.517749999999 3793.404 +Q7KK54 MIP07328p 2.21 2 3 2 15109.729 14915.2776 +Q7KK90 GH14654p 47.77 7 29 7 1299592.78884 1218008.6038900001 +Q7KKI0 T-complex protein 1 subunit epsilon 19.74 12 22 1 136028.34559 107368.40648 +Q7KLE5 Amphiphysin 41.86 27 94 3 3131077.77747 2485129.16988 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 8 15 8 90122.17193 71168.69939 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 18 4 270375.69387 218544.60969 +Q7KM15 Transcription factor BTF3 39.05 5 6 5 140741.474 107140.94750000001 +Q7KMM4 Glucosidase II subunit alpha 4.0 4 5 4 6537.8213 7360.2852 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 16.23 7 17 7 152349.23167 155510.6236 +Q7KMQ0 26S proteasome regulatory subunit 7 57.51 25 63 23 1182870.27128 966155.0748 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 3.5 2 2 0 0.0 382.5012 +Q7KMS3 Dynein light chain roadblock 22.68 3 4 3 18764.9313 13683.77585 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 4032.7283 2858.3167 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 14.83 22 43 22 268574.15465 204318.48002 +Q7KN94 Electron transfer flavoprotein subunit alpha 78.48 21 113 21 5606644.16161 4544821.5809 +Q7KND8 FI09619p 9.18 8 10 8 28505.410780000002 22218.79139 +Q7KNM2 Dorsal interacting protein 4 23.27 4 20 4 468420.97910000006 394368.18875 +Q7KRT4 GH07253p 2.47 1 1 0 3295.0752 2435.1929 +Q7KRZ3 Exocyst complex component 8 6.25 5 7 0 11858.914 9086.8635 +Q7KS11 Uracil-DNA degrading factor, isoform B 9.49 3 6 3 53050.108 41148.8208 +Q7KSD3 non-specific serine/threonine protein kinase 8.7 2 3 0 42117.0833 42126.510800000004 +Q7KSE4 GH05443p 5.39 4 5 4 22824.87914 19496.8544 +Q7KSM5 SUMO-activating enzyme subunit 1 30.56 9 17 9 145477.81384000002 116607.18137 +Q7KSQ0 Citrate transport protein 26.81 10 28 10 843024.3921599999 729156.8325799999 +Q7KSQ2 Tyrosine-protein kinase 5.95 5 6 0 12757.100999999999 8160.51684 +Q7KSV7 Uncharacterized protein, isoform D 9.49 3 3 0 2124.3518 922.13837 +Q7KSW3 pyridoxal 5'-phosphate synthase 42.19 11 42 1 306031.55925 224492.8116 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 59.2 13 35 0 1066013.77914 959551.47991 +Q7KT58 GH08155p 7.03 4 6 4 12971.6394 11280.84137 +Q7KT70 FI18641p1 4.18 4 4 4 11946.57243 8158.9433 +Q7KTA1 HL01444p 20.43 10 22 10 258894.45225 148305.15503999998 +Q7KTG2 Apolipoprotein lipid transfer particle 3.85 19 26 19 87730.48522 67218.90102 +Q7KTJ7 Basigin, isoform G 28.55 19 87 5 3778422.36181 3005859.2025200003 +Q7KTN9 FI01009p 4.26 3 3 0 7829.29322 9015.83426 +Q7KTP7 LP22840p 61.88 10 18 10 209770.9884 166976.05688 +Q7KTW5 Inositol-1-monophosphatase 56.12 16 54 16 2354174.18439 1824415.7483700002 +Q7KUA4 SUMO-activating enzyme subunit 18.14 12 21 12 225393.59046 183097.57836 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 3.03 4 5 4 14240.41055 9748.336800000001 +Q7KUC2 Pyridoxal kinase 36.18 11 37 10 555026.864 480988.45844 +Q7KUD4 phospholipase A2 3.95 4 6 0 22661.50025 20049.9621 +Q7KUK9 Uncharacterized protein, isoform B 9.36 17 32 8 134435.25755 94399.59197 +Q7KUT5 Protein MIX23 21.01 3 4 0 17523.720699999998 12473.1536 +Q7KUU5 Sulfhydryl oxidase 13.41 4 7 0 43625.84024 36401.93792 +Q7KUW2 5' nucleotidase B, isoform B 5.56 4 6 0 41735.13753 29874.25075 +Q7KUX7 Eukaryotic translation initiation factor 4H 56.42 15 46 0 294546.65131 223899.80630999999 +Q7KV27 alanine transaminase 47.01 23 110 0 3955017.18097 3511342.95482 +Q7KV34 Pinkman 39.06 24 47 24 1296803.40495 1027103.91524 +Q7KV94 Purine nucleoside phosphorylase 6.52 2 2 1 15213.17025 7832.4528 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 3.67 3 3 0 1971.0621199999998 1663.5275 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 23 1 169500.38749 148791.59782 +Q7KVL7 Vacuolar protein sorting-associated protein 35 2.24 2 2 0 4114.436 2738.624 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 48.76 18 101 0 1984541.90123 1613385.92615 +Q7KY04 small monomeric GTPase 15.96 3 10 2 23348.389600000002 15944.832 +Q7PL91 GEO11417p1 26.6 3 13 3 288233.96944 292111.6425 +Q7PLE9 Ras-related protein Rab-21 8.56 2 3 1 4092.5325 3252.8398 +Q7PLI0 P120 catenin 10.5 10 17 10 93626.26899 75256.855 +Q7PLL3 Eukaryotic initiation factor 4B 33.12 15 31 2 330493.2303 277298.71429 +Q7PLS1 LD01937p 11.46 5 8 0 14215.91591 15844.89774 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 24.28 4 7 4 15451.27796 10425.54103 +Q7YU88 SD08871p 5.67 6 8 0 14285.6851 9502.88743 +Q86B44 Glutathione synthetase 11.03 6 11 0 63376.09692 57496.250199999995 +Q86B74 WASp, isoform C 16.19 7 10 0 13262.137599999998 6587.73553 +Q86B93 Uncharacterized protein, isoform D 8.54 1 1 0 9726.832 6232.4897 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 5.62 2 2 0 7582.8315 8639.009399999999 +Q86BI3 Zinc-finger protein at 72D, isoform B 17.31 15 26 3 120926.50018 83108.31867 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 23 8 135780.80119 111607.6798 +Q86BM5 A kinase anchor protein 200, isoform D 20.07 15 41 3 1217820.8926 869046.8014 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 29.79 10 25 0 284769.3822 233890.11961 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 65.08 6 28 0 1138181.21837 885190.33535 +Q86BR8 Mitochondrial transcription factor A, isoform B 37.68 13 45 0 670657.39123 521152.33745 +Q86BS3 Chromator, isoform A 27.65 20 50 20 401288.67437 260644.25871 +Q86BS7 Glycogen debranching enzyme 3.17 6 9 0 48742.99334 41917.40076 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 21.51 7 17 7 231712.9499 195046.1874 +Q86PF5 PRKCA-binding protein 8.62 5 7 0 22459.4577 19600.757400000002 +Q8I077 BcDNA.LD22910 1.48 2 2 2 406.48978 0.0 +Q8I099 Uncharacterized protein, isoform A 16.56 5 8 5 67847.4458 59877.83684 +Q8I0D4 RE20510p 20.9 17 39 0 1212986.6152000001 1165290.3329999999 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 35.63 3 6 3 27337.9352 17828.593240000002 +Q8I0P9 acid phosphatase 1.76 1 2 0 3120.6252 3009.977 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 23.63 10 20 10 90635.27427 67702.02121 +Q8I930 GH14147p 4.68 3 4 0 18631.2824 6934.942770000001 +Q8I941 GH16843p 28.83 7 29 7 327536.7735 301288.35607 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 18.8 8 19 1 8958.7291 7534.6452 +Q8IGY1 RE08101p 33.61 41 326 0 13441958.36966 8332841.7842 +Q8IH23 GEO02102p1 43.7 5 11 5 71414.18902 51370.0984 +Q8IM93 FI18814p1 36.72 17 40 17 345776.04125999997 234044.5776 +Q8IMF4 RE24176p 10.11 5 7 0 22225.56508 14183.70815 +Q8IMJ0 VhaAC45-related protein, isoform A 16.41 7 31 0 473427.4864 381198.5279 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 21608.0614 19851.108500000002 +Q8IMQ8 RH29536p 33.72 10 31 0 305198.13166 242777.14777 +Q8IMT3 IP12392p 5.95 3 4 3 8880.0577 6751.3481 +Q8IMT6 FI01822p 6.64 3 6 3 52916.59331 50637.85824 +Q8IMU2 RE10237p 13.88 3 5 0 20579.581400000003 13886.3871 +Q8IMV6 Scaffold attachment factor B, isoform B 4.42 3 3 3 5915.9035699999995 4995.996359999999 +Q8IMX4 FI04408p 6.6 2 7 0 23890.1627 16559.2226 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 124367.80841 97001.86514000001 +Q8IN49 MIP05539p 7.19 7 14 7 79845.7151 59841.1115 +Q8IN51 FI17609p1 21.17 3 9 3 33489.41823 36187.74354 +Q8IN95 Nuclear migration protein nudC 5.56 2 2 2 1418.32248 803.80634 +Q8INA9 Fasciclin 1, isoform C 43.97 29 147 1 38092.478200000005 30094.6493 +Q8ING0 Peptidase S1 domain-containing protein 6.92 4 8 4 18676.239419999998 17597.191 +Q8INH5 Aminopeptidase 5.65 6 9 0 36028.0168 26003.2033 +Q8INQ9 LIM domain-containing protein 10.63 4 5 0 56522.6694 45449.410299999996 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 16.21 6 16 4 44362.2561 32354.1363 +Q8IP52 RE16941p 3.69 4 4 4 512.8723 746.40408 +Q8IP62 Small ribosomal subunit protein mS23 23.28 4 4 4 8729.93905 7563.84656 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 24.93 10 32 1 349839.37071 271329.24305 +Q8IP94 threonine--tRNA ligase 5.36 4 6 0 74576.28623 55247.69182000001 +Q8IP97 Peroxin-19 54.11 10 30 10 950342.8643 692924.00773 +Q8IPA5 RE15581p 6.07 2 2 0 14902.091 12751.553 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 37.93 6 9 0 26887.26144 22753.064319999998 +Q8IPD8 Cuticular protein 30F 40.41 6 12 6 182194.02485 136140.10002 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 62.77 38 117 1 1927406.81448 1573089.14897 +Q8IPG8 Uncharacterized protein 17.77 4 12 4 87613.4679 66857.48765 +Q8IPK0 Stathmin, isoform B 5.3 2 2 0 4523.1646 2684.0774 +Q8IPP8 Ketoreductase domain-containing protein 45.31 9 24 8 297274.8935 221317.71888 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 6.5 2 2 0 0.0 728.2752 +Q8IPT0 ER membrane protein complex subunit 10 18.94 4 4 0 41965.73620000001 32310.73115 +Q8IPT9 SD05439p1 36.84 12 19 0 392619.25615 316060.2503 +Q8IPU3 hydroxyacylglutathione hydrolase 29.31 9 60 0 1205897.58548 875523.7887 +Q8IPU7 BNIP3, isoform C 10.17 2 3 0 14286.580600000001 10216.18575 +Q8IPW1 Arouser, isoform A 10.81 8 14 0 37161.79168 28342.93227 +Q8IPZ5 Uncharacterized protein, isoform B 15.12 8 14 0 39449.0818 24663.0531 +Q8IQ99 PAR-domain protein 1, isoform J 4.11 3 4 0 20816.4222 15139.9427 +Q8IQB7 MIP21654p 9.44 3 5 3 0.0 1047.5398 +Q8IQB8 Tequila, isoform D 5.66 7 7 1 33924.2579 22847.3458 +Q8IQC6 Small VCP interacting protein, isoform A 42.68 6 10 6 118759.3719 54098.31591 +Q8IQD3 Uncharacterized protein, isoform C 5.3 3 6 3 33417.10794 25593.12774 +Q8IQD7 Phospholipid scramblase 5.15 1 3 0 16621.5723 16896.456700000002 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.34 9 17 2 68027.50347 56334.367710000006 +Q8IQH0 FI12817p 5.22 8 11 0 42521.68554 36153.44195 +Q8IQM5 Uncharacterized protein, isoform A 20.82 6 14 1 143651.16875 97941.63875 +Q8IQM9 folate gamma-glutamyl hydrolase 6.43 3 5 3 8605.222259999999 6577.9024 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 15.63 17 30 1 397733.90599 324339.32437 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 3 1 46818.919850000006 33412.888399999996 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 2.71 2 4 2 31235.255400000002 23079.84777 +Q8IQW5 RE23625p 79.17 16 78 4 3762000.36859 2756001.42404 +Q8IR41 Uncharacterized protein, isoform C 0.61 1 1 0 3245.6106 2487.5637 +Q8IR72 FI19011p1 10.06 1 3 1 15398.069340000002 13425.67488 +Q8IR76 FAD synthase 12.59 4 7 0 30497.70623 22196.79 +Q8IRD0 RH17559p 42.86 3 12 3 177828.1115 153711.0503 +Q8IRD3 Glutathione peroxidase 51.68 11 86 0 4425008.45664 3410882.7428699997 +Q8IRH0 Puromycin-sensitive aminopeptidase 14.15 17 31 0 164122.38221 124562.96071 +Q8IRI5 Trio, isoform D 8.83 7 10 0 25146.4186 20722.574800000002 +Q8IRQ5 fumarate hydratase 74.95 29 186 0 7893411.61644 6303216.25114 +Q8MKJ5 GEO08105p1 19.47 2 3 2 1163.9245 533.17017 +Q8MKK1 AaRS-interacting multifunctional protein 3 15.08 3 6 3 64478.8989 43818.9312 +Q8MLP9 GEO08457p1 16.96 2 5 2 11817.2844 8758.059669999999 +Q8MLQ0 FI14118p 21.05 2 3 2 66357.00200000001 55971.6957 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 17.91 4 14 4 219476.35671999998 161305.98073 +Q8MLS2 ribose-5-phosphate isomerase 25.31 5 5 5 32165.6472 28166.8187 +Q8MLW0 Receptor protein-tyrosine kinase 0.8 1 1 0 2434.4329 977.84686 +Q8MLW4 Uncharacterized protein, isoform A 31.39 8 17 8 199716.40445 198578.99863 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.55 32 79 0 2788153.88831 2184748.59075 +Q8MQP2 MIP16184p 7.0 2 5 0 36808.314 26420.7747 +Q8MRI4 Diphthine--ammonia ligase 5.99 5 5 5 17892.159659999998 13789.29928 +Q8MRM0 GH16740p 23.63 6 17 6 164486.08694 123411.5309 +Q8MRS5 AT03104p 3.18 3 3 0 4185.5791 1963.0896 +Q8MRT7 SD26038p 13.22 3 7 3 51032.65128 39798.0609 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 4.73 2 3 2 7557.0289999999995 3981.6147 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 11.17 4 4 4 4545.454 3617.7005799999997 +Q8MSI2 GH15296p 77.78 17 127 17 1630526.29272 1319166.79299 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 4 3 5281.6698 5324.582399999999 +Q8MST5 Tubulin beta chain 47.92 18 97 0 658170.33669 565979.1364900001 +Q8MT58 Carnosine dipeptidase 2, isoform A 44.77 20 64 4 1242996.42448 1005788.66761 +Q8MZ07 GEO07581p1 10.96 2 5 2 19294.4463 11967.30634 +Q8MZI3 RNA helicase 17.36 13 23 6 93858.1777 68191.39834 +Q8SWS2 RE29468p 39.05 5 14 0 476262.4617 307573.22250000003 +Q8SWS3 RE26528p 17.13 2 3 2 139080.7774 85579.82830000001 +Q8SWZ6 RH51312p 8.33 2 3 2 2607.8606 2250.9697 +Q8SX06 GEO08318p1 6.17 1 1 1 532.5121 0.0 +Q8SX35 GEO07743p1 33.33 3 8 1 78193.5555 52187.931 +Q8SX50 RE04530p 14.96 6 11 0 55354.56246 46344.11196 +Q8SX54 CLIP domain-containing serine protease 2.78 1 1 1 0.0 378.7496 +Q8SX57 LD44221p 42.41 8 19 8 161799.7235 124328.07866 +Q8SX78 LD05679p 19.7 8 11 8 29513.989 18485.9984 +Q8SX89 Kugelkern, isoform A 9.82 5 6 5 48579.665 26935.94093 +Q8SXC2 FI04487p 7.56 4 4 4 29534.7435 24239.184 +Q8SXD5 GH02216p 53.85 11 59 2 1050339.86044 909930.03661 +Q8SXE1 RH69521p 6.23 3 3 3 18593.523 0.0 +Q8SXF0 Small ribosomal subunit protein uS9m 8.35 4 9 4 53688.6118 40603.43226 +Q8SXF2 RH40246p 10.75 5 7 5 23742.468399999998 22362.2256 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 4211.54976 2052.1658 +Q8SXK0 RE18748p 10.55 3 3 3 4211.54244 3673.94933 +Q8SXM8 Lysine--tRNA ligase 21.95 13 35 0 119158.54783 99291.65418 +Q8SXP8 TAR DNA-binding protein 43 9.98 5 5 2 14429.7867 11685.9888 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 28.15 13 30 13 161329.44545 118698.85518 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 6 2 208876.18222000002 220364.95528 +Q8SXS0 RE40914p 11.92 4 6 4 13330.597099999999 7668.20866 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 35.15 13 28 13 238876.3622 205081.00985 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 6 0 19208.6237 15133.53354 +Q8SY19 Microsomal glutathione S-transferase 1 13.16 2 10 1 246230.84837000002 175924.60238 +Q8SY58 Ketimine reductase mu-crystallin 6.48 2 3 2 2604.3987 1794.2096 +Q8SY67 lysozyme 35.85 3 3 3 106435.4434 69668.0767 +Q8SY69 MICOS complex subunit MIC10 29.17 3 11 3 298926.01003 291093.0256 +Q8SYC4 RE68566p 1.97 1 1 1 1468.8398 806.0439 +Q8SYD9 Endophilin B, isoform A 57.69 19 89 0 2478843.56898 2070228.87518 +Q8SYG3 E2 ubiquitin-conjugating enzyme 52.98 9 22 1 335170.98909000005 294414.0383 +Q8SYH8 RE57644p 19.78 5 13 1 129332.38536 97831.52646000001 +Q8SYJ2 GEO09626p1 61.45 8 53 8 6021288.35457 4860694.5101499995 +Q8SYN0 RE52086p 9.56 4 5 4 27564.084899999998 20952.09216 +Q8SYQ4 RE42475p 52.03 10 68 10 1826180.59175 1228248.70338 +Q8SYQ8 RE40412p 32.35 5 10 5 61975.797399999996 54203.6823 +Q8SZK5 RH26533p 10.93 3 5 3 15019.2169 15512.776 +Q8SZK9 HL04814p 47.19 11 54 11 2269875.0767 1731626.56533 +Q8SZM2 RH04334p 28.15 10 38 10 1654545.13492 1334700.62235 +Q8SZN1 GEO08217p1 51.61 7 31 3 1642371.25477 1196318.97964 +Q8T0I9 GH27479p 23.63 10 27 1 445965.1565 324261.5622 +Q8T0J5 GH26851p 29.62 9 33 0 580426.65578 420903.02632 +Q8T0N5 GH17516p 16.56 6 16 6 245189.31925 173837.25433 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 13 0 43078.5664 30952.797 +Q8T0V2 GH02495p 21.25 10 23 0 98961.16306 69376.9541 +Q8T389 Endophilin B 56.35 18 77 0 9634.701 6202.2974 +Q8T3V6 Large ribosomal subunit protein uL29m 6.27 2 2 2 530.307 363.04492 +Q8T3W8 Venom allergen-1 20.61 6 10 0 49195.7963 26007.5488 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 26.51 22 41 2 332179.84138 226753.87833 +Q8T6I0 Achaete scute target 1, isoform B 50.94 25 77 0 1576281.78551 1358053.30165 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 6.49 1 2 0 23943.678600000003 20562.4247 +Q8WR19 AFGF intracellular binding protein 2.23 1 1 1 6047.954 5022.838 +Q94513 Boundary element associated factor 12.41 5 12 1 40024.8229 27038.03842 +Q94533 Ribosomal protein S6 kinase 5.31 3 7 3 49934.9772 38061.57016 +Q95NU8 GH16255p 16.25 8 18 8 179330.71325 118414.26289 +Q95NV8 Allatostatin C, isoform B 9.92 1 4 0 36985.47 25603.123199999998 +Q95PE4 GEO07784p1 6.17 1 1 1 816.17523 1614.4478 +Q95R34 GH16463p 9.71 3 4 3 9921.9251 7882.3377 +Q95R98 Protein phosphatase methylesterase 1 12.22 5 11 5 35179.45581 32586.57948 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 19 8 58979.27829 39146.66196 +Q95RB2 Cuticular protein 49Ae 81.34 9 171 9 20045787.414189998 14509283.76536 +Q95RE4 LD37574p 44.32 15 30 1 157229.60877 123433.30426 +Q95RF6 LD34461p 43.27 5 7 5 94436.61505 72015.6281 +Q95RI2 LD28549p 27.78 9 14 9 64094.6133 48967.11294 +Q95RI7 Survival of motor neuron-related-splicing factor 30 24.69 6 8 1 57084.31526 36851.1791 +Q95RQ1 LD16414p 3.71 2 2 2 2292.9272 739.90875 +Q95RR6 LD15002p 64.6 17 77 0 34594.2775 59615.731999999996 +Q95RS6 Phenoloxidase-activating factor 2 17.34 6 13 6 83059.3789 67102.7236 +Q95RV5 Ribulose-phosphate 3-epimerase 12.22 2 4 2 413079.984 357696.456 +Q95RY2 LD01461p 20.61 5 11 1 127769.45924 83417.879 +Q95SH0 GH26463p 5.58 5 6 5 8169.7583 6084.563 +Q95SH2 Charged multivesicular body protein 1, isoform A 33.99 9 38 9 492928.72958 335708.4136 +Q95SH7 GH26007p 7.94 2 3 2 1661.1317 466.28693 +Q95SI7 GH23390p 75.09 17 43 17 1999036.67909 1671340.21865 +Q95SN8 GH12395p 26.76 5 14 5 146789.58536 108139.3447 +Q95TK5 LD44914p 12.95 7 17 7 136625.32692 98693.61055 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 30.58 13 39 0 648533.1506 555093.31413 +Q95TP0 LD34582p 1.97 1 1 1 4575.366 2853.755 +Q95TZ7 GH19182p 79.35 28 155 0 5308293.46607 3432064.5406400003 +Q95U15 GH14252p 82.05 32 274 0 4019289.5205 2237692.32483 +Q95U34 GH11113p 20.41 10 36 10 301588.99306 233815.28126000002 +Q95WY3 Nucleolar protein 56 9.68 5 6 5 45258.5261 38189.6682 +Q960D4 SD06560p 22.09 14 22 0 203090.9786 154446.0424 +Q960M4 Peroxiredoxin-5 64.74 12 97 12 9359008.5812 6402859.684909999 +Q960Y8 Aluminum tubes, isoform G 21.28 19 34 0 253978.15661 193723.29502000002 +Q961A8 LD25351p 1.27 1 1 1 526.0337 0.0 +Q961B3 5'-nucleotidase domain-containing protein 1 4.49 3 5 0 12702.2192 8660.15846 +Q961B9 LD24073p 8.37 4 4 4 8787.84367 8258.271 +Q961C8 LD22649p 15.3 5 10 0 32183.9605 25310.41936 +Q961E7 phosphorylase kinase 10.74 5 5 1 26632.09998 16864.7946 +Q961K6 GH19047p 4.19 3 3 3 12139.8161 4975.6302 +Q961Q8 GH10454p 10.86 5 7 5 28215.211799999997 17238.17685 +Q961T9 GH07914p 35.88 6 11 6 102323.35584 72705.94086 +Q961X4 Combover, isoform B 10.01 8 13 0 83539.0826 68227.63736 +Q966T5 Paxillin, isoform D 37.06 7 18 2 82481.1898 59525.2236 +Q967S0 Amidophosphoribosyltransferase 10.97 6 11 0 85401.5777 68377.48454 +Q9I7I3 GH12831p 9.56 3 4 3 8115.4705 4183.7838 +Q9I7J0 GH21596p 73.37 11 57 11 1991974.40059 1686435.14282 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.49 2 4 2 33975.0126 22437.1876 +Q9I7L9 Uncharacterized protein, isoform A 15.91 6 8 0 13082.44888 13436.60535 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 30 1 832137.72403 679526.07839 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 19 7 3956240.2794 3305973.897 +Q9NCC3 Sorting nexin 14.34 8 16 8 85880.61317 56553.78732 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 2.35 3 3 0 393.90305 375.4809 +Q9U1K7 Thioredoxin domain-containing protein 17 16.3 3 10 3 67740.17635000001 65648.72714 +Q9U1L2 EG:BACR7A4.14 protein 37.05 9 16 9 217016.5843 201449.9181 +Q9U6P7 FI18813p1 14.35 7 9 7 48769.430700000004 43591.1083 +Q9U6R9 Gamma-soluble NSF attachment protein 57.28 17 44 15 1325568.5774 1085663.9634099999 +Q9U9Q2 Neosin, isoform A 12.13 5 6 5 31605.58665 18953.371 +Q9V393 Kurtz arrestin 10.0 5 9 5 114160.93255 97506.55766 +Q9V396 Carbonic anhydrase 46.67 12 54 12 1243397.83935 1021974.05096 +Q9V3A8 Ergic53, isoform A 11.13 7 10 7 54449.5477 40964.878 +Q9V3C8 DShc protein 3.42 2 3 2 4928.3145 2977.335 +Q9V3D9 Signal recognition particle 54 kDa protein 13.19 8 16 8 103259.82263 72514.27894999999 +Q9V3E3 Large ribosomal subunit protein mL50 10.05 2 3 2 9481.239 5266.3762 +Q9V3E7 LD24793p 42.48 12 35 12 602749.27792 471349.40417 +Q9V3E9 RNA polymerase II-associated protein 3 5.24 3 4 3 28333.4281 22335.4397 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 230970.48196 170319.13814 +Q9V3H0 DNAation factor-related protein 4 4.22 2 2 2 1597.042 587.5705 +Q9V3I0 EG:BACR42I17.2 protein 6.09 2 8 2 34206.346099999995 22871.3862 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.0 4 6 4 151632.9754 121655.6685 +Q9V3N7 dihydropyrimidinase 38.03 21 56 6 866760.34256 674757.20735 +Q9V3N9 B6 5.73 4 6 4 38694.3966 30254.219399999998 +Q9V3P3 LD45860p 40.0 10 21 10 757211.11496 639779.18726 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 11.16 3 9 3 85892.74966 59887.02946 +Q9V3R3 GPN-loop GTPase 5.5 2 3 2 11793.4972 9139.42998 +Q9V3T8 LD32469p 14.36 4 5 4 88887.495 72232.085 +Q9V3U6 26-29kD-proteinase 24.41 11 43 11 1935420.9269400002 1505343.4920599998 +Q9V3V2 peptidylprolyl isomerase 67.59 13 44 1 1478118.41968 1200054.93501 +Q9V3V6 26S proteasome regulatory complex subunit p50 53.27 21 64 20 1745202.659 1481995.26748 +Q9V3V9 Endonuclease G inhibitor, isoform A 47.63 16 37 16 723938.2162 614117.33592 +Q9V3W2 GM23292p 61.08 12 86 12 3892283.45571 2780551.51653 +Q9V3W7 LD40489p 41.18 10 24 10 479921.15807000006 409979.17693 +Q9V3W9 UV excision repair protein RAD23 28.5 9 33 4 207957.03732 161300.96437 +Q9V3Y4 LD43650p 6.65 2 4 2 6828.09 6126.0083 +Q9V3Y7 Uncharacterized protein, isoform A 37.54 11 33 11 256038.64682 217047.88086 +Q9V3Z4 GH11341p 22.31 12 31 12 140824.81042 104328.86739 +Q9V3Z9 HL02234p 46.21 14 53 14 2365364.98505 1824543.44705 +Q9V400 Integrin linked kinase, isoform A 6.7 4 6 3 39173.43814 28916.524299999997 +Q9V405 26S proteasome regulatory subunit 6B 41.65 19 51 11 716751.06931 566963.37531 +Q9V406 Activator protein 4 9.03 7 16 7 56920.64721 39372.31874 +Q9V420 FI02878p 13.91 5 10 5 64343.83626 54214.6522 +Q9V428 Ras suppressor protein 1 29.33 9 20 9 207808.6168 198068.79275 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 4.66 3 5 3 30928.953 29635.423600000002 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 29.17 7 12 7 188610.1803 159589.131 +Q9V455 Importin subunit alpha 15.95 9 16 9 282186.512 245215.60407 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 33.41 15 35 15 457014.29044 367517.37818 +Q9V491 Plexin A, isoform A 1.03 2 2 0 1155.3271599999998 0.0 +Q9V4C1 Uncharacterized protein, isoform E 29.3 23 61 0 1796463.61424 1342832.36078 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.0 17 75 0 1606471.94484 1319087.8332 +Q9V4E0 Complex I-49kD 26.28 9 14 8 228459.41226 205014.38796999998 +Q9V4E7 Transporter 3.62 3 6 2 29680.3958 24212.755299999997 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 8.88 3 3 3 5062.5419999999995 4953.0373 +Q9V9M7 Large ribosomal subunit protein eL21 35.22 6 13 6 130197.51365000001 106063.27781 +Q9V9Q4 LD43819p 24.01 9 22 9 233436.83239 177718.033 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 8.81 2 5 2 100909.5234 103625.64648 +Q9V9T5 GM14617p 15.04 10 14 1 34365.33963 26325.12358 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 3756.53397 2378.7001 +Q9V9U0 RE35358p 10.11 2 3 2 1073.82186 933.8648000000001 +Q9V9U7 Tubulin-specific chaperone A 24.55 4 12 4 107771.09481 83040.64845 +Q9V9V0 Cleavage stimulation factor subunit 1 6.6 3 3 3 5426.6383000000005 3004.62843 +Q9V9V4 CRAL-TRIO domain-containing protein 13.76 5 13 5 133718.34406 125042.58125999999 +Q9V9W2 Large ribosomal subunit protein eL6 21.4 7 29 0 649326.00976 534613.80604 +Q9V9W4 GH08048p 3.6 2 2 2 1703.37 797.7367 +Q9V9Y6 Carbonic anhydrase 2.65 1 2 1 1127.04334 397.0955 +Q9VA09 Guanylate cyclase soluble subunit beta-1 4.57 5 9 5 43615.9074 35987.6578 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.92 20 89 20 4926022.80008 3545611.50843 +Q9VA32 Cuticular protein 100A 15.35 4 16 4 140660.12935 86748.9715 +Q9VA34 LP06141p 3.64 4 5 4 16945.20666 9906.605739999999 +Q9VA36 CIN85 and CD2AP related, isoform C 17.91 16 33 0 164253.8806 118432.37133 +Q9VA41 GEO08227p1 42.04 6 16 2 113247.07483 73575.73946 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 22 4 760113.4924199999 534928.67898 +Q9VA56 GH23271p 60.79 20 66 1 4710.4927 3658.224 +Q9VA69 procollagen-proline 4-dioxygenase 1.27 1 3 1 13319.785100000001 12530.45 +Q9VA71 FI19924p1 6.19 3 3 3 9306.5324 5239.902099999999 +Q9VA76 IP18706p 11.33 4 8 4 16303.4346 14208.53077 +Q9VA81 GEO10172p1 7.14 1 1 1 493.89117 372.66766 +Q9VA95 Trafficking protein particle complex subunit 5.52 1 2 1 3372.8319300000003 3577.9089 +Q9VA97 Pyridoxal phosphate homeostasis protein 34.25 10 19 10 274773.9098 235064.96102 +Q9VAA6 GEO12235p1 10.76 2 6 2 51224.8914 41035.2502 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 16.21 9 20 9 122984.0909 86215.91028000001 +Q9VAC1 GM14349p 63.31 21 113 21 5373788.37828 4975888.07084 +Q9VAC4 GEO09167p1 23.08 3 12 3 331579.5687 291892.5306 +Q9VAC9 Uncharacterized protein, isoform A 28.12 9 17 1 38729.91891 28204.61063 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.5 3 4 3 5217.92513 5159.7617 +Q9VAD7 RH37294p 11.56 2 3 2 2040.3605000000002 1589.90369 +Q9VAG3 trypsin 11.46 3 6 3 83904.01550000001 55371.35601 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 20.92 7 10 7 38673.31736 30111.216699999997 +Q9VAI9 GEO07291p1 62.25 9 62 5 3673905.59327 3047595.89243 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 23.34 8 14 8 175361.4129 159394.64346 +Q9VAL5 protein-tyrosine-phosphatase 2.29 3 4 0 6152.7834 2968.7836 +Q9VAL7 Calnexin 99A, isoform A 32.07 20 84 1 2541671.23317 1887054.33997 +Q9VAN7 Phosphoglycerate mutase 63.53 18 121 16 13947286.65834 10743913.93372 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 10 5 70693.7486 58428.1299 +Q9VAS1 Neprilysin-like 19 3.58 3 5 3 4311.9852 4364.1862 +Q9VAU6 LD27564p 2.62 2 2 2 10721.109799999998 6477.2325 +Q9VAV2 FI21480p1 16.09 13 25 13 109690.51357 82965.81964999999 +Q9VAY0 Neprilysin 7 5.58 4 4 4 3805.12207 1543.65239 +Q9VAY2 Heat shock protein 83 34.31 28 98 27 1363007.51884 1084745.81433 +Q9VAY6 Pre-mRNA-splicing factor SPF27 7.19 2 2 2 45785.131 33773.021 +Q9VAY9 GH07821p 4.83 2 2 2 14942.222 12321.884 +Q9VB05 ALG-2 interacting protein X 17.46 19 58 19 640512.62939 525878.7197 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.54 18 54 18 1039612.41295 862074.71663 +Q9VB17 IP11341p 10.12 4 7 4 20070.2334 16946.7514 +Q9VB22 LD33695p 13.07 8 14 8 280919.4364 219265.89489999998 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 14.5 9 31 1 158917.92736 99057.37384 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 41.98 7 10 7 171012.81483 146543.6072 +Q9VB66 CLIP domain-containing serine protease 7.35 3 3 2 1156.0369 0.0 +Q9VB69 Malic enzyme 19.45 12 25 1 535665.8669 336847.72204 +Q9VB76 Carbonic anhydrase 5.79 2 4 2 19925.181 13750.542 +Q9VB77 IP09938p 4.06 1 2 1 3716.3179 3390.44477 +Q9VB78 Eater 12.38 3 7 3 11414.9187 6862.850850000001 +Q9VB79 IP09473p 14.19 5 15 5 47590.67091 46039.21616 +Q9VB81 Cuticular protein 97Eb 42.98 11 59 11 1293121.2522 752465.145 +Q9VB86 LP07342p 7.34 1 1 1 7146.353 5961.89 +Q9VB96 Uncharacterized protein, isoform A 24.33 11 26 2 219422.27362 235911.70715 +Q9VBC1 Uncharacterized protein, isoform A 39.78 4 8 4 20388.014 12065.068739999999 +Q9VBC9 Beaten path VII 3.68 2 4 2 22308.6967 16101.853200000001 +Q9VBI2 UMP-CMP kinase 50.99 13 74 13 2841059.60341 2203432.7952 +Q9VBI3 RH72336p 22.66 7 23 7 324356.10735999997 256768.63116 +Q9VBL3 GH01188p 8.54 5 6 5 11637.7711 5603.9809399999995 +Q9VBN5 60S ribosomal protein L27 5.93 1 1 1 525.458 674.68646 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 7.44 3 3 2 32020.711799999997 23662.654000000002 +Q9VBP6 Succinate-semialdehyde dehydrogenase 76.03 33 149 33 5798125.25554 4582245.24486 +Q9VBR3 Astrocytic leucine-rich repeat molecule 3.4 2 4 2 14014.6363 15224.398399999998 +Q9VBS7 Uncharacterized protein, isoform B 30.82 11 20 11 275492.89504 278762.38054 +Q9VBT1 CHK kinase-like domain-containing protein 9.59 4 6 4 13352.829 10688.26306 +Q9VBT2 IP11926p 4.57 2 2 2 1711.3159 525.2094 +Q9VBU0 Uncharacterized protein, isoform A 8.15 4 5 3 11997.73237 12820.82096 +Q9VBU9 40S ribosomal protein S27 22.62 2 16 2 952777.6782300001 757779.66608 +Q9VBV4 Juvenile hormone binding protein 7 7.6 2 3 1 15381.500119999999 10733.4046 +Q9VBX3 Vig2, isoform B 9.03 3 4 0 75836.06 36319.4265 +Q9VBY7 Protein lin-7 homolog 54.36 10 72 1 2028358.9921 1538726.12117 +Q9VC05 Oxysterol-binding protein 3.19 3 5 3 35414.8641 27628.9496 +Q9VC06 LD37516p 12.05 9 12 9 55306.65715 41028.06828 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.87 1 1 1 1615.3346 2215.0605 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 21.53 13 33 13 190635.43529 167260.01136 +Q9VC30 RE05274p 13.98 3 7 3 12818.623379999999 9603.030980000001 +Q9VC31 Ras-related protein Rab-1 25.82 6 20 4 57858.335170000006 40995.419250000006 +Q9VC48 Methionine aminopeptidase 19.52 7 14 7 130985.0135 99058.265 +Q9VC53 BolA-like protein DDB_G0274169 28.0 5 12 5 198386.3611 149654.7805 +Q9VC58 Syntaxin-18 6.08 3 3 3 1750.70777 997.68609 +Q9VC66 AT25567p 25.62 12 25 12 180352.79788 132181.41212 +Q9VC67 Juvenile hormone binding protein 12 11.51 3 6 3 21432.1233 15029.10554 +Q9VC87 RE57978p 7.51 3 5 3 7700.27166 5522.2731 +Q9VCB9 FI08802p 6.15 2 2 2 26663.655000000002 26624.29635 +Q9VCC9 LD23779p 2.55 3 5 3 5137.42975 3271.43613 +Q9VCD8 Structural maintenance of chromosomes protein 3.15 4 7 4 6604.8411 2171.24469 +Q9VCD9 Uncharacterized protein, isoform C 27.27 4 9 4 132139.91858 132944.1573 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 6.94 3 7 3 25903.5297 19431.155359999997 +Q9VCF8 LD23561p 10.51 4 8 4 44707.45353 32241.2307 +Q9VCI4 LD32918p 5.33 4 7 4 2757.41842 2111.60797 +Q9VCI7 LD02979p 12.03 5 12 1 171965.6726 132365.4455 +Q9VCK6 LD34157p 14.88 7 11 7 69368.641 45337.441439999995 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.23 4 8 4 32043.4999 43141.26408 +Q9VCR4 FI17836p1 3.66 3 5 3 18278.36466 13053.4911 +Q9VCR9 RH48101p 20.22 8 34 8 191518.29858 148767.08092 +Q9VCT4 Klingon 5.69 3 4 3 4580.0348699999995 3212.6918 +Q9VCU0 GEO02312p1 33.33 4 15 4 55106.72645 47196.01526 +Q9VCU1 FI07649p 2.77 2 2 2 671.56805 720.2348 +Q9VCU6 Heterochromatin protein 1c 6.75 2 4 2 38500.1486 32079.3084 +Q9VCW2 Cardinal 11.33 9 12 9 14870.40007 12061.2279 +Q9VCW6 GCS light chain 37.54 12 34 12 337933.06796 256239.66058 +Q9VCZ2 FI07970p 5.96 3 4 3 6536.9857 4416.1731 +Q9VD00 FI07666p 15.11 4 16 4 126667.71848 108112.91377 +Q9VD01 LP12095p 8.52 2 4 2 14718.5504 8617.89476 +Q9VD02 GH14779p 37.99 5 19 5 337391.53035 297317.3265 +Q9VD13 GH02671p 17.26 8 11 1 93466.21721999999 66667.5234 +Q9VD14 GH07286p 11.88 8 21 8 141945.92266 118651.06722 +Q9VD29 small monomeric GTPase 48.19 9 26 9 2022679.5568199998 1997448.01892 +Q9VD30 GH05294p 74.19 12 43 12 1509381.6136 1557892.40219 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 13285.1691 11482.5002 +Q9VD58 Isocitric dehydrogenase subunit beta 45.95 14 105 14 2116984.70849 1839992.0783300002 +Q9VD64 ADP-ribosylation factor-like protein 3 24.58 4 5 4 28023.150999999998 20414.919 +Q9VD68 GH19849p 4.3 2 3 2 16375.64703 9095.29532 +Q9VD72 Vacuolar-sorting protein SNF8 7.09 2 5 2 59290.7699 43181.01185 +Q9VDC0 GH01837p 28.0 5 14 5 50485.3032 38557.24449 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 6.25 2 4 2 25213.489999999998 15647.08906 +Q9VDC3 AP complex subunit sigma 35.92 5 12 5 371867.161 299730.856 +Q9VDE2 oxaloacetate tautomerase 34.09 6 7 6 283549.8019 277197.24929999997 +Q9VDF4 Cortactin, isoform A 27.73 15 34 15 271429.50731 173381.69215000002 +Q9VDH3 GH08630p 66.23 13 38 13 677232.85094 628288.83068 +Q9VDI1 LD46328p 53.04 22 79 0 1195549.77776 928100.84412 +Q9VDI3 Myosin-2 essential light chain 17.45 3 4 3 10932.44708 7992.2126 +Q9VDI5 Uncharacterized protein, isoform A 29.18 5 11 3 41601.4328 31026.43716 +Q9VDK2 GH15831p 5.72 4 6 3 20586.7716 18832.6205 +Q9VDK7 Signal recognition particle subunit SRP72 25.54 16 32 16 160185.11789 136810.18825 +Q9VDK9 GH12359p 6.46 4 6 4 39752.177200000006 32197.93636 +Q9VDL5 GEO09602p1 13.43 1 2 1 17894.735 12331.897 +Q9VDP9 S-formylglutathione hydrolase 29.02 6 23 1 383277.49479 279424.9713 +Q9VDQ3 Identity crisis 6.53 4 4 4 5055.2569 1210.496 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 32.84 12 22 12 153369.10728999999 130648.81552999999 +Q9VDT5 Carboxypeptidase 20.54 8 17 8 412291.49675 338082.63164 +Q9VDU7 nicotinamidase 15.69 5 15 5 125561.69739 90689.79226 +Q9VDV2 AT06125p 8.54 4 4 3 4737.909 4178.19404 +Q9VDY8 MIP08680p 57.35 14 64 1 1002091.87154 854123.68776 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 41.59 20 73 0 775269.96689 604352.57236 +Q9VE08 GH10002p 8.92 2 3 2 7738.83806 4955.05127 +Q9VE12 LD27322p 14.81 5 12 5 50286.17954 41170.12691 +Q9VE24 N-sulfoglucosamine sulfohydrolase 6.68 4 7 4 14254.27174 13186.74395 +Q9VE31 GEO12059p1 16.22 2 3 2 1864.24509 1195.0378 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 49176.4014 39779.85697 +Q9VE56 FI17806p1 7.14 2 3 2 65030.5306 60102.592300000004 +Q9VE57 GEO10850p1 12.41 2 3 2 13253.161 11066.0645 +Q9VE73 WD repeat-containing protein 37 3.29 2 2 2 3244.5974 2441.0121 +Q9VE75 V-type proton ATPase subunit a 2.76 3 4 2 18316.186 11690.1649 +Q9VE85 Nucleoporin 43kD 12.57 5 11 5 22163.20671 19523.70585 +Q9VE94 LD14127p 12.24 5 6 5 12274.30302 10443.528 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 17 6 289840.187 238809.1792 +Q9VEA7 FI01460p 28.09 1 3 1 18631.652000000002 18953.6 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 303 28 23916023.24461 17396804.69709 +Q9VEB7 AT04491p 5.94 3 3 3 11906.78744 11639.4971 +Q9VEC2 Proteasome assembly chaperone 2 14.57 4 6 4 36746.1584 37451.7536 +Q9VEC8 RE23139p1 14.62 2 4 2 40245.445999999996 33105.0948 +Q9VED8 Deoxyribonuclease II 10.11 4 12 4 72824.9079 61898.3856 +Q9VEF5 Inhibitor of growth protein 7.39 3 4 3 12342.289799999999 9900.786189999999 +Q9VEG8 RE59232p 2.8 1 1 1 44352.027 29043.67 +Q9VEH2 Transmembrane protein 192 6.15 2 5 2 31451.447099999998 19915.5609 +Q9VEJ3 Pyrroline-5-carboxylate reductase 51.28 10 39 2 1074434.35663 867257.08943 +Q9VEJ9 Curly Su 1.2 1 2 1 17999.6264 10365.142600000001 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 28.91 6 14 1 224033.61966 175761.17487999998 +Q9VEK8 GH07711p 34.05 12 33 12 334806.65667 264540.47853 +Q9VEN3 non-specific serine/threonine protein kinase 17.6 12 21 12 124782.79611 102878.3128 +Q9VEN6 Mitochondrial ribosomal protein S11 7.5 2 2 2 3275.3063 3622.4439 +Q9VEN9 Protein associated with topo II related - 1, isoform A 6.51 6 8 6 23050.80214 16102.61513 +Q9VEP6 Adenylosuccinate lyase 11.64 7 24 7 216263.62041 152630.45412 +Q9VEP8 GH11385p 13.2 10 14 10 48195.9701 33503.59334 +Q9VEP9 Splicing factor 3A subunit 1 15.05 12 22 12 102553.67667 84444.75125 +Q9VEQ2 ER membrane protein complex subunit 2 14.18 4 10 1 25702.66406 19192.656629999998 +Q9VES8 RE28913p 27.34 8 16 8 46434.17375 31389.97474 +Q9VET3 peptidyl-tRNA hydrolase 11.76 2 3 2 65202.55499999999 39431.6316 +Q9VEV3 Tetratricopeptide repeat protein 1 24.33 9 26 9 236012.74125 156138.4239 +Q9VEV7 Protein farnesyltransferase subunit beta 5.73 3 3 3 5905.0693 0.0 +Q9VEW1 Jiangshi, isoform A 4.4 3 4 3 14236.3161 14799.12499 +Q9VEY0 Uncharacterized protein, isoform C 34.23 11 25 3 123653.87397 76756.50771 +Q9VEY4 Growth hormone-regulated TBC protein 1 4.85 2 3 2 22600.557200000003 17048.79954 +Q9VEY5 MICOS complex subunit 55.31 12 37 12 1612296.79386 1409827.0381200002 +Q9VEY9 GH15759p 2.33 1 1 1 1767.0563 1588.6147 +Q9VF03 Brahma associated protein 155 kDa 12.32 12 17 1 120064.4124 91660.57324 +Q9VF15 GEO09476p1 81.05 12 61 8 2180847.41399 1925404.41762 +Q9VF23 arginine kinase 7.22 4 6 4 5583.78326 3920.0647 +Q9VF24 Crossveinless d 5.1 8 12 8 34797.348679999996 22520.39548 +Q9VF28 Actin-related protein 2/3 complex subunit 3 33.33 6 19 6 111525.1396 74152.59197 +Q9VF39 FI01459p 4.13 2 2 2 18196.674 14703.346 +Q9VF51 Aldehyde oxidase 3, isoform A 9.89 13 22 10 160317.59047 136325.645 +Q9VF70 Cerebral cavernous malformation 3 16.35 4 7 4 35906.9063 31057.41425 +Q9VF77 FI16517p1 10.07 4 7 4 30431.7909 21737.140799999997 +Q9VF82 Trafficking protein particle complex subunit 6B 22.37 4 4 4 31124.2394 22422.089930000002 +Q9VF86 N-acetyl-D-glucosamine kinase 13.79 5 12 5 117075.8762 106882.36600000001 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 9.52 1 2 1 61713.371 29628.6 +Q9VFC7 Mf5 protein 84.38 37 292 0 10416507.13374 7500882.5289900005 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 3.84 2 3 2 3037.24374 1441.3020999999999 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 67.02 24 158 24 5090528.85706 3648162.41174 +Q9VFI3 GEO08281p1 21.15 1 1 1 6043.691 6471.1157 +Q9VFM0 GH19262p 4.96 3 5 3 5838.35572 3079.64536 +Q9VFN7 GEO07678p1 20.13 4 19 4 543246.82998 384198.53479 +Q9VFN9 GEO07882p1 15.32 2 6 2 36403.4338 22603.5913 +Q9VFP0 RH07106p 17.84 7 11 7 131088.9202 100585.17 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 39 14 867509.88284 729272.89777 +Q9VFQ9 Dipeptidase B, isoform A 18.7 11 26 11 358743.56618 271533.57107 +Q9VFS1 Adenosine deaminase 6.77 5 9 5 39153.3522 30341.0341 +Q9VFS4 Cilia- and flagella-associated protein 36 13.23 4 7 4 63681.115300000005 24700.99746 +Q9VFT4 AT27578p 10.58 6 11 6 25848.5041 15983.8382 +Q9VFU7 Sidestep IV, isoform C 3.8 4 6 4 18308.3723 14063.85155 +Q9VFV1 RE55542p 2.83 2 2 2 24270.479 19469.302499999998 +Q9VFV9 DnaJ-like-2, isoform A 55.83 19 59 19 1652102.8305 1347514.46343 +Q9VFZ4 Methanethiol oxidase 9.67 5 11 5 100591.2552 83749.2732 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 15.45 3 5 3 14353.827140000001 10826.8669 +Q9VG01 RE12073p 5.26 3 3 3 2463.3374 3068.3566699999997 +Q9VG04 Protein MEMO1 10.85 4 6 4 16151.995499999999 14911.2917 +Q9VG06 peptidyl-tRNA hydrolase 5.76 1 1 1 5151.751 4011.415 +Q9VG23 GH22994p 65.12 12 32 1 1293249.2266199999 967570.64142 +Q9VG26 MIP06012p 38.03 8 22 8 772917.2717 529463.64647 +Q9VG28 Beaten path Vc 2.36 1 3 1 836.16064 511.06134 +Q9VG31 Malic enzyme 16.64 15 41 0 770635.0881 646837.02962 +Q9VG33 Sulfurtransferase 73.64 6 14 6 1013645.2249 731097.1231 +Q9VG42 Glycine N-methyltransferase 15.57 5 8 5 40678.24345 44241.07544 +Q9VG44 RE14195p 2.84 2 2 2 2335.16593 1272.65177 +Q9VG51 Sorting nexin-3 55.69 9 28 9 289273.83884 223764.33437 +Q9VG62 Toys are us 1.44 1 1 1 1699.7463 899.2459 +Q9VG69 LP03547p 32.01 11 35 11 547168.06567 430875.76633 +Q9VG81 RH49330p 11.83 6 15 6 65780.79488 47646.14699 +Q9VG92 Glutathione S transferase D8 13.21 3 20 2 51376.3502 45130.03163 +Q9VGA0 Glutathione S transferase D9, isoform A 42.66 9 19 8 252048.12394 271929.90234 +Q9VGA1 Glutathione S transferase D10, isoform A 10.48 3 17 1 7943.0491 5350.81566 +Q9VGA3 LD12305p 35.91 7 32 6 342940.48724 300304.55580000003 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.58 2 2 2 2348.3544 2574.0161 +Q9VGE4 FI04457p 9.25 11 16 11 68088.14630000001 46094.3087 +Q9VGE7 Beta-galactosidase 8.01 4 9 4 14667.15524 14619.4445 +Q9VGF3 IP11040p 11.88 5 6 5 15988.599059999999 16067.95263 +Q9VGF7 Mitochondrial glutamate carrier 2 21.5 8 32 6 237042.21284 197892.0742 +Q9VGJ9 Heme oxygenase 14.53 5 10 5 135690.4264 128197.15109999999 +Q9VGK3 peptidylprolyl isomerase 36.96 4 9 4 163565.7974 125450.0333 +Q9VGL0 LD43047p 2.84 4 6 4 2080.1334699999998 2552.11148 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 13 246 0 21239699.08439 17538482.00539 +Q9VGP7 Large ribosomal subunit protein mL40 12.76 3 7 3 60049.5846 45885.3817 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 20 85 20 2589690.00989 2191969.24293 +Q9VGQ8 Arfaptin 6.76 3 4 3 29272.3659 23719.9456 +Q9VGR0 DnaJ homolog subfamily C member 17 13.04 4 4 4 10536.337 4874.349 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 5 3 13724.881249999999 8080.44927 +Q9VGS3 RH44771p 14.04 3 26 3 394619.91375 330359.70256 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 2 1 50102.342000000004 44397.407999999996 +Q9VGT3 GM04645p 5.3 3 5 3 8309.70289 6736.78909 +Q9VGT8 UDP-glucuronosyltransferase 3.68 3 7 3 34602.6177 26096.839910000002 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 6.56 3 4 3 12654.69094 8808.2209 +Q9VGV9 palmitoyl-protein hydrolase 14.47 4 5 4 30901.63846 22162.97722 +Q9VGW7 type I protein arginine methyltransferase 15.16 5 7 5 49736.10175 38211.2356 +Q9VGY2 Peptide deformylase 10.08 3 4 1 10487.66647 7153.6116 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 3.82 1 1 1 4271.172 2469.689 +Q9VGZ3 Cytoplasmic aconitate hydratase 13.79 14 24 9 173763.65774 130072.94657 +Q9VH25 Gamma-soluble NSF attachment protein 19.79 6 13 4 90811.91118 63421.10106 +Q9VH26 Carbonic anhydrase 17.11 6 21 6 203933.80083000002 191790.85104 +Q9VH37 IP06524p 14.29 3 4 3 29887.8601 22558.7549 +Q9VH63 Uncharacterized protein 3.0 2 2 2 4890.6229 4100.8754 +Q9VH64 LD29322p 10.03 4 5 4 199280.039 135255.6483 +Q9VH66 FI18258p1 29.61 6 13 6 42842.886340000005 36207.70895 +Q9VH72 TA01656p1 52.94 7 23 7 363147.21265999996 322281.83478000003 +Q9VH76 Synaptosomal-associated protein 68.87 15 67 13 665395.13585 509709.53566 +Q9VH77 mannose-6-phosphate isomerase 7.58 4 10 4 23581.17298 14137.06209 +Q9VH81 protein-serine/threonine phosphatase 8.85 5 7 5 70204.2588 52328.349140000006 +Q9VH85 GH14967p 3.41 3 3 3 6109.15 3676.1377 +Q9VH98 Diuretic hormone 44, isoform A 21.91 6 8 6 243038.54719999997 157262.3351 +Q9VHA1 Spermidine synthase, isoform A 10.45 3 12 0 241385.9573 188345.5556 +Q9VHA8 LD25575p 12.25 8 20 8 167428.2196 117040.00136 +Q9VHB1 Mitochondrial pyruvate carrier 35.06 5 19 1 150691.79736 164192.35126 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.74 4 7 4 54345.0287 43203.6063 +Q9VHC3 Blistery, isoform A 13.19 10 18 10 111367.85925000001 87389.6046 +Q9VHC7 FI21236p1 30.54 19 54 9 1226287.70741 922860.09934 +Q9VHC8 LD31448p 10.06 2 2 2 2258.1326 870.53864 +Q9VHE3 GH05665p 9.38 4 6 4 53819.488269999994 38549.7186 +Q9VHE4 omega-amidase 17.31 5 13 5 70650.84385 47613.857039999995 +Q9VHE5 Large ribosomal subunit protein eL34 17.86 4 9 0 63779.742999999995 49760.9318 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 10 2 182007.2206 155046.19868 +Q9VHG6 Insulator binding factor 2 22.05 5 9 5 42247.3287 33271.21435 +Q9VHH8 Beag 6.82 4 8 4 45683.4495 34265.2791 +Q9VHI1 Hyrax 7.06 4 6 4 14100.463099999999 8645.63954 +Q9VHI8 Uncharacterized protein, isoform A 26.09 8 21 1 227264.70333 184034.9285 +Q9VHJ2 LD32381p 2.65 1 1 1 924.49036 870.6244 +Q9VHJ5 Carbonic anhydrase 10.98 3 4 2 22355.2307 24516.485 +Q9VHJ7 LD41978p 4.65 3 3 3 12806.554 7172.613 +Q9VHL2 T-complex protein 1 subunit eta 38.79 20 47 20 640087.29426 521931.45037 +Q9VHM3 LD30467p 10.77 5 8 5 35718.9274 28707.30348 +Q9VHN4 GH14121p 9.77 3 5 3 6377.7136 3694.88637 +Q9VHN7 transketolase 22.36 14 33 2 1329134.4502700001 980883.13517 +Q9VHQ0 Large ribosomal subunit protein mL66 5.16 1 2 1 10426.65634 7516.0095 +Q9VHT3 CG9617 protein 15.17 3 3 3 15581.628 15458.9475 +Q9VHT5 Large ribosomal subunit protein uL1m 10.73 4 7 4 36634.0542 28356.68101 +Q9VHX2 GH08043p 9.4 4 7 4 15134.47262 15053.65204 +Q9VHX4 LD24679p 66.57 21 108 21 5818517.09043 4539799.6743 +Q9VI04 Beta-ureidopropionase 13.47 5 8 5 22603.2336 14096.0882 +Q9VI09 GH14494p 49.01 6 27 6 915080.62927 729214.267 +Q9VI21 Dementin, isoform D 3.92 3 3 0 5633.401400000001 3941.2842 +Q9VI24 LD25151p 7.73 3 3 3 5401.40524 4095.22357 +Q9VI53 LD44267p 14.93 6 13 6 53679.74061 42871.111399999994 +Q9VI57 Dephospho-CoA kinase domain-containing protein 16.95 4 6 4 19102.30315 17251.034330000002 +Q9VI64 LD30995p 47.03 13 57 13 831905.54528 773123.19354 +Q9VI80 Thawb 1.58 2 3 2 11327.46696 8524.4754 +Q9VIB5 Carboxylic ester hydrolase 6.99 4 5 3 86259.6036 81503.5778 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 5.86 4 7 4 18506.9418 14659.84444 +Q9VIE8 Aconitate hydratase, mitochondrial 71.92 51 330 44 8997151.25986 7297168.662070001 +Q9VIF2 GM01519p 8.7 4 11 4 58538.9551 47340.849799999996 +Q9VIG0 Malectin domain-containing protein 18.16 7 12 7 60159.8218 49034.09578 +Q9VIH1 CG9273 protein 16.67 5 12 5 37323.1057 27531.21454 +Q9VII5 GEO08323p1 25.79 4 13 4 148682.82844 92033.3903 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 2.76 1 1 0 3636.265 3523.564 +Q9VIJ3 FI14214p 12.78 2 3 1 3544.3669800000002 2384.17685 +Q9VIJ5 GEO05038p1 9.7 1 1 1 700.57886 0.0 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 8.04 3 3 3 1642.6615 1618.3278 +Q9VIK6 Centrocortin, isoform A 14.56 12 20 12 78762.474 54976.10599 +Q9VIL2 LD19544p 8.63 3 8 3 101291.7743 75832.5541 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 9.05 6 18 6 141212.72359 96934.89258 +Q9VIN9 Small ribosomal subunit protein mS40 15.2 3 6 3 77936.16695000001 59929.01705 +Q9VIQ5 RH02620p 27.49 7 16 7 25899.84805 19838.29982 +Q9VIQ6 FI17342p1 14.79 3 8 3 88531.11405 58723.12581 +Q9VIQ8 Cytochrome c oxidase subunit 4 47.25 11 50 11 1497415.3900000001 1196310.21929 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.13 3 3 3 24900.5154 18818.3596 +Q9VIU3 FI23988p1 6.9 3 4 3 13776.5942 9645.24522 +Q9VIW6 small monomeric GTPase 11.72 3 3 3 18498.5959 17442.718399999998 +Q9VIW9 alkaline phosphatase 2.35 1 1 1 2169.971 688.50964 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 2 2 2 24347.7346 36507.521 +Q9VIX7 Fondue, isoform B 19.41 7 15 1 164871.03313 133135.98979999998 +Q9VJ19 Large ribosomal subunit protein eL30 42.34 4 18 4 321201.35524 268369.06854999997 +Q9VJ22 GH09876p 5.41 2 3 2 3494.3669600000003 2793.57337 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 29081.316700000003 24397.8907 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 18.02 7 14 7 132924.2568 123812.72538 +Q9VJ30 non-specific serine/threonine protein kinase 5.24 7 13 2 41296.0839 35640.55277 +Q9VJ43 Sterol carrier protein 2 26.47 13 48 6 700415.62916 536791.1283 +Q9VJ58 Fas-associated factor 2, isoform A 18.1 9 20 9 49195.5683 41388.46132 +Q9VJ59 PRA1 family protein 5.31 1 1 1 400.74725 0.0 +Q9VJ60 GM16226p 12.15 3 7 3 69020.3365 50732.3557 +Q9VJ61 SD03870p 9.81 5 6 5 16695.97835 23227.4153 +Q9VJ68 Hydroxylysine kinase 17.03 8 19 8 150221.38532 154506.54332 +Q9VJ80 LD42267p 6.89 9 15 9 46610.25376 34953.152050000004 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.85 14 16 14 71655.89828 56696.70024 +Q9VJA9 GH07373p 0.94 1 1 0 2928.3652 2753.5647 +Q9VJC0 GEO08203p1 37.23 5 6 5 89817.6135 60592.6403 +Q9VJD0 Mitochondrial inner membrane protease ATP23 13.78 4 8 4 40983.9651 31394.66266 +Q9VJD1 Glucosidase 2 subunit beta 21.17 12 35 12 222743.52 159444.93385 +Q9VJD4 LD24721p 33.84 12 37 12 1372790.5907 1053038.3899400001 +Q9VJE3 LD24839p 14.6 7 7 7 36360.0207 26990.9214 +Q9VJH8 FI03416p 5.71 4 5 3 20593.31224 15728.56543 +Q9VJI5 Protein yellow 13.91 7 13 7 44561.78751 34630.89292 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 50.0 6 14 6 286560.4495 240482.11616 +Q9VJJ0 Proteasome subunit beta 44.78 8 27 8 482695.14517 421192.55728 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 19366.5093 14291.9586 +Q9VJN0 Carboxypeptidase 11.48 5 7 5 63302.59916 54681.33558 +Q9VJQ3 Protein yellow 22.83 9 30 8 574456.28743 527018.1796 +Q9VJQ6 Dynactin subunit 5 11.11 2 5 2 34363.03445 26696.634000000002 +Q9VJU6 IP09831p 15.87 4 4 4 23455.470500000003 19864.561540000002 +Q9VJU8 GH23407p 8.48 4 9 4 35541.68402 27901.623050000002 +Q9VJX3 B4, isoform A 2.44 3 3 3 3567.8738 4078.6649 +Q9VJZ1 FI21342p1 8.24 5 6 5 10940.8608 7576.1035 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 63.19 12 61 12 2537043.88819 2084476.1856999998 +Q9VJZ5 LD07294p 17.89 6 14 6 64767.02538 50921.60816 +Q9VJZ6 LD40224p 67.13 10 28 10 589345.8256999999 527535.5787 +Q9VK00 Uncharacterized protein, isoform A 13.78 4 8 4 90200.18789999999 74872.91277 +Q9VK11 GH15921p 17.8 5 15 5 299620.886 241211.2623 +Q9VK12 GH20621p 54.0 15 86 15 2955702.34955 2234045.3592 +Q9VK18 LD36945p 10.11 5 7 5 15646.35112 10064.794100000001 +Q9VK19 FI07225p 7.72 2 2 2 2370.2358 3044.087 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 24.68 10 30 1 861.597 982.69226 +Q9VK31 LD35592p 3.65 2 2 2 3531.9761 2766.8921 +Q9VK39 FI09204p 45.28 4 21 4 176824.77240000002 126777.29381 +Q9VK43 LD10135p 8.24 3 3 3 2266.9112 962.5673 +Q9VK58 PIH1 domain containing 1, isoform D 7.13 4 5 3 4327.7714 1632.10123 +Q9VK59 LD23647p 32.84 31 71 31 419699.1864 313785.42932 +Q9VK60 GH25425p 49.42 10 45 10 2370203.68388 1970227.77947 +Q9VK69 T-complex protein 1 subunit delta 38.84 20 55 19 668808.90614 497767.09079 +Q9VK85 Eukaryotic translation release factor 3, isoform A 12.76 9 21 1 156211.21948 135365.09064 +Q9VK90 Heat shock factor-binding protein 1 87.21 5 17 1 461372.84839999996 342865.29623 +Q9VK99 Atilla, isoform B 51.75 9 42 9 1178153.46413 699749.7825 +Q9VKA1 FI02817p 15.58 3 7 3 5821.796 2283.23027 +Q9VKC7 Endoplasmic reticulum lectin 1 2.86 2 2 2 16400.9543 13091.100999999999 +Q9VKC8 FI03495p 11.04 7 13 7 119920.98245 87140.64876 +Q9VKD9 MIP16835p1 2.3 2 2 2 8751.228 8826.2596 +Q9VKE2 Crystallin, isoform A 70.65 45 521 45 17726218.27463 12680121.83975 +Q9VKF0 Cyclin Y, isoform A 5.67 3 8 3 101283.3968 70123.4441 +Q9VKG4 BcDNA.GH07269 5.57 3 9 3 71722.18737 60457.2076 +Q9VKI2 Buddy of Hmr 2, isoform A 9.92 3 4 3 3563.95302 4839.5273 +Q9VKI8 GH03305p 80.72 20 131 20 4604831.50375 3698229.9087 +Q9VKJ4 Csl4 22.06 4 6 4 9024.67744 8264.9872 +Q9VKM3 ATP synthase subunit g 46.46 6 71 6 2448280.69729 2511407.3643 +Q9VKM7 AT01533p 9.31 7 9 4 160947.54992 124618.53521 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 20 5 125790.12213999999 105949.57643 +Q9VKQ5 GEO07393p1 29.03 3 3 3 13661.9117 11022.8745 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 7 2 724.173 707.00775 +Q9VKR4 Aminomethyltransferase 24.94 9 23 9 729536.75563 551782.9051 +Q9VKU3 Large ribosomal subunit protein mL62 18.72 4 5 4 22750.4561 18589.17082 +Q9VKU5 LD37206p 7.02 2 3 2 2716.2576 1976.0187 +Q9VKV1 Alpha-mannosidase 20.28 20 43 1 724836.53904 667345.70835 +Q9VKV2 Alpha-mannosidase 4.11 5 5 5 18526.591399999998 13513.0485 +Q9VKV9 Methionine aminopeptidase 10.09 3 6 3 17034.1384 12872.172849999999 +Q9VKW1 LD41958p 8.58 4 7 4 22305.8246 18197.3231 +Q9VKW5 Prolyl endopeptidase 11.77 10 13 10 92125.5529 71592.1167 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 24.03 3 3 3 440.66476 431.39453 +Q9VKX2 Malate dehydrogenase 54.6 21 158 21 8076771.65151 6448040.76155 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 38.34 7 17 7 352750.21037 270938.0471 +Q9VKZ6 Uncharacterized protein, isoform A 11.81 9 11 1 30759.9014 19448.46302 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 14.11 7 19 7 123779.20083 104559.03719999999 +Q9VL01 Phenoloxidase-activating factor 2 40.89 15 58 15 614708.41601 521284.06474 +Q9VL02 GH08677p 6.78 3 4 2 15243.6405 12019.210900000002 +Q9VL10 Acylglycerol kinase, mitochondrial 11.52 5 8 5 27537.314300000002 15137.81047 +Q9VL11 Transcriptional regulatory protein 9.76 2 3 2 16015.5655 10263.41604 +Q9VL16 RE45833p 30.13 6 46 6 1164482.6838 966474.45702 +Q9VL24 Niemann-Pick type C-1a, isoform A 1.32 2 2 0 5550.1681 5257.6157 +Q9VL27 Alpha-galactosidase 2.42 1 1 1 1839.6714 2308.0486 +Q9VL50 Translocation protein SEC62 2.41 1 1 0 1644.8119 651.8131 +Q9VL57 RE10231p 3.23 2 2 0 397.09528 0.0 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 7 2 15971.9141 12906.7987 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 3.21 1 4 1 24331.9561 22196.1331 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 41.28 12 48 12 1494778.82478 1261490.73178 +Q9VL70 HL08109p 78.89 30 118 30 8242738.49449 6574622.06323 +Q9VL71 LD29830p 7.02 4 5 4 5714.783719999999 3964.7634399999997 +Q9VL89 Methionine aminopeptidase 2 9.82 5 5 5 67691.30040000001 56571.11612 +Q9VL91 LD23102p 2.06 2 2 2 10255.8696 6701.9329 +Q9VL93 GEO07195p1 13.64 2 4 2 78970.099 58416.1716 +Q9VLB1 Cuticular protein 30B 25.49 3 10 3 47238.106 35886.92527 +Q9VLB7 Rab GDP dissociation inhibitor 39.95 16 51 16 960913.35768 856669.21812 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 66 21 1694719.41854 1565008.32472 +Q9VLG9 Argininosuccinate lyase, isoform B 5.97 3 6 3 34687.771680000005 24832.739799999996 +Q9VLI4 Raw, isoform A 2.53 3 3 0 3696.3098 2170.4683 +Q9VLI9 Trafficking protein particle complex subunit 9.59 2 4 2 20938.927499999998 18366.964 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 8 15 8 52929.77396 35000.20037 +Q9VLP0 IP04187p 20.32 5 7 5 55832.86218 40673.71942 +Q9VLP1 GEO08095p1 36.49 4 22 4 276662.8269 199801.44917 +Q9VLP2 GEO08076p1 38.78 8 25 8 408084.78784 255334.03346 +Q9VLQ6 Uncharacterized protein, isoform A 7.1 1 2 1 48785.448000000004 34197.988 +Q9VLQ9 Sorting nexin 31.85 14 43 1 641728.49476 523651.36831 +Q9VLR3 Cytidine deaminase 9.49 2 7 2 26722.2338 27206.26505 +Q9VLS0 Chitinase domain-containing protein 1 3.98 2 4 2 23198.9458 21692.3612 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 9 25 9 1524660.71855 1158769.6577400002 +Q9VLS5 LD29542p 12.08 6 8 6 42160.7747 32131.59983 +Q9VLS7 LD21067p 0.89 2 3 0 4525.2681 1549.1297 +Q9VLT3 LD23292p 13.58 24 53 24 270440.17435 204549.09875 +Q9VLT7 IP17351p 16.35 2 5 2 291039.7563 217559.67359999998 +Q9VLU3 IP09231p 5.4 1 1 0 579.5025 0.0 +Q9VLV9 Proctolin 19.29 2 4 2 2175.4553 429.50626 +Q9VLW8 LD06392p 6.75 2 2 2 24943.871 20527.81 +Q9VLX6 HL01609p 18.95 5 9 0 56209.8484 43097.9411 +Q9VLY1 HL02931p 19.01 1 2 1 107497.13 71963.98763 +Q9VLY7 TEP1-F 4.02 7 7 7 7411.7807999999995 5370.86314 +Q9VLY9 CD109 antigen 20.51 28 66 0 711948.10602 601798.48059 +Q9VM07 RE43931p 18.26 4 9 3 31039.61244 21043.8018 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 14.74 7 13 7 104886.90709 72888.95374 +Q9VM11 HL01515p 16.08 5 9 5 45278.3414 50193.67752999999 +Q9VM12 MIP26555p1 24.49 8 23 8 263902.21952 231150.85678 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.07 29 264 0 7898092.1083 7289187.63851 +Q9VM18 Trehalose 6-phosphate phosphatase 76.45 19 95 19 3960285.3026699997 3206407.30029 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 24642.5106 22567.622199999998 +Q9VM47 Menin 4.98 4 8 1 13739.48868 14851.663990000001 +Q9VM50 Ras-related protein Rab-30 14.8 3 12 2 4668.8868600000005 4641.9204 +Q9VM58 hydroxymethylglutaryl-CoA lyase 15.48 5 10 5 72612.04520000001 47690.34956 +Q9VM69 Nucleolar protein 58 6.07 3 4 3 40840.0718 38477.8378 +Q9VMB3 5'-deoxynucleotidase HDDC2 9.79 4 12 4 326215.0842 240461.8074 +Q9VMB4 Venom dipeptidyl peptidase 4 3.53 4 8 0 28678.0697 22268.6201 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 49.17 7 106 7 4330948.2692599995 3079584.99211 +Q9VMC3 LD35051p 8.64 4 4 4 10244.62036 8578.5291 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 4.53 2 4 2 71278.1794 47449.812 +Q9VMC7 LP11564p 6.96 4 5 1 8313.656500000001 5089.72096 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 33.75 9 16 9 48044.6478 30180.582 +Q9VME1 FI01864p 16.46 8 16 8 111081.24487 88711.69714 +Q9VME3 Neprilysin-like 5 7.16 6 9 6 12748.7757 13717.087 +Q9VMF0 FI04444p 3.77 2 2 2 14696.7113 12599.1634 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 26.79 5 17 5 26401.09396 27640.21511 +Q9VMH8 GEO07746p1 53.17 8 19 8 545796.199 421101.9266 +Q9VMH9 Uncharacterized protein 44.62 9 29 9 400547.18344 332568.2944 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 38.4 13 46 10 1117809.82875 933039.11973 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 13 46 13 4485944.48341 3067285.60346 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 14 6 106018.5239 94409.97535 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 12.82 8 12 8 85484.81975 76832.96485 +Q9VMS1 Cyclope, isoform A 74.03 8 79 8 3356730.04527 2753675.07602 +Q9VMT2 GEO07854p1 71.81 9 122 1 3702508.66605 2678885.57434 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 55.56 8 32 8 764536.11639 536244.7874 +Q9VMU2 4'-phosphopantetheine phosphatase 11.36 5 8 5 65412.455400000006 41247.44242 +Q9VMV5 Viking, isoform A 10.0 19 40 19 223688.2814 144103.19941 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 9.61 3 3 3 4777.025750000001 3125.2149 +Q9VMX4 AT19154p 13.15 3 7 3 73449.6232 79468.72899999999 +Q9VN01 GH23891p 8.61 5 10 5 15671.244859999999 15786.0328 +Q9VN02 GH14561p 29.6 7 15 7 111884.99574 94039.0844 +Q9VN21 LD30155p 49.91 26 129 26 1804905.22934 1467259.31262 +Q9VN39 RE74585p 17.58 6 13 1 35447.99933 21676.603479999998 +Q9VN44 FI07923p 16.56 15 37 15 155319.38287 115232.85145 +Q9VN71 Juvenile hormone binding protein 3, isoform A 32.11 5 11 5 63076.22596 65263.15224 +Q9VN73 Juvenile hormone binding protein 1 22.36 6 15 6 106117.4509 91224.79686 +Q9VN86 AT14148p 14.19 6 10 6 66570.73137 54012.48549 +Q9VN88 LD45836p 35.98 7 17 7 97220.90785 76103.24710000001 +Q9VNA3 GH21273p 34.26 7 21 7 181903.8854 144916.85254 +Q9VNB9 Large ribosomal subunit protein eL33 26.11 5 16 5 215219.08800000002 159050.00487 +Q9VNC1 Large ribosomal subunit protein mL44 7.79 3 4 3 17380.75666 12176.6025 +Q9VND3 Phosphatidylinositol 4-kinase type 2 1.55 1 1 1 679.12384 0.0 +Q9VND7 RNA-binding protein 42 17.22 5 9 5 85572.66100000001 68001.7419 +Q9VNF3 RE01652p 34.63 8 31 6 711299.9898999999 548033.71 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 13.24 6 11 6 15086.646560000001 8552.379 +Q9VNF9 Ethanol sensitive with low memory, isoform A 4.23 1 2 1 3856.26985 3039.22846 +Q9VNH5 m7GpppX diphosphatase 20.86 8 12 8 95486.35354000001 57851.9312 +Q9VNH7 Uncharacterized protein, isoform A 51.23 16 81 0 54690.236000000004 61673.935 +Q9VNI4 Proteasome assembly chaperone 1 21.28 4 9 4 49609.86367 35588.0788 +Q9VNI8 Hpr1 8.99 6 9 6 18026.34819 15521.89824 +Q9VNI9 IP18173p 7.05 1 2 1 9857.9507 8474.506000000001 +Q9VNL0 Gasp, isoform A 76.74 15 89 2 1862898.89874 1402836.8562099999 +Q9VNQ3 ER membrane protein complex subunit 4 12.65 2 3 2 9573.343130000001 11381.02023 +Q9VNR6 Lethal (3) 04053 16.41 7 13 7 38572.4727 24114.74187 +Q9VNW0 GEO11142p1 17.97 2 2 2 23787.4396 16115.284 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 33.25 23 91 23 2147586.05295 1675928.685 +Q9VNX4 Multifunctional fusion protein 55.23 29 86 29 2602102.59448 2369407.12666 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 6650.739 5392.2435 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 25.5 3 7 3 11516.964820000001 8601.69347 +Q9VP02 Aldose 1-epimerase 5.95 3 3 3 6232.29823 3959.8965 +Q9VP13 Large ribosomal subunit protein mL64 9.05 3 5 3 22139.4002 15327.520849999999 +Q9VP18 V-type proton ATPase subunit 20.22 2 2 2 134482.464 114169.57699999999 +Q9VP51 LD40450p 5.59 2 2 0 3189.8480999999997 2816.9527 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 312692.07304 223326.19254 +Q9VP55 Cuticular protein 78Cb, isoform A 12.86 2 9 2 49457.25358 22940.2658 +Q9VP57 LD15904p 21.79 19 45 19 665589.75833 489716.31762 +Q9VP77 LD23875p 5.73 5 6 5 10589.23918 5423.85111 +Q9VP78 GH23156p 7.79 4 6 4 15601.05853 11748.325799999999 +Q9VP84 IP06402p 8.47 2 2 2 2478.8503 2377.6416 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 2 1 4744.7507000000005 2026.1287 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 22.03 9 28 0 514.69055 530.50946 +Q9VPB8 Peroxisomal membrane protein PEX14 14.64 4 6 4 30323.14595 19355.361599999997 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 5 2 22231.630259999998 15713.3086 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 44.23 15 56 15 1343541.11453 1173803.2910499999 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 13.42 5 10 1 49233.38309 54328.94499 +Q9VPF6 Large ribosomal subunit protein uL15m 6.99 2 3 2 10403.2418 7026.238600000001 +Q9VPH6 LP10922p 6.08 4 6 1 36552.716700000004 30149.86647 +Q9VPJ0 RE58433p 17.91 8 22 2 35056.467000000004 23048.53661 +Q9VPJ9 Uncharacterized protein, isoform B 5.44 4 5 1 18143.408499999998 11181.7854 +Q9VPK3 AT24407p 8.72 4 13 1 20152.93111 15814.89805 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 15.56 5 5 5 16386.1901 10457.2352 +Q9VPN5 Stress-induced-phosphoprotein 1 45.1 27 103 27 1712400.36229 1326839.16879 +Q9VPP7 AT13539p 4.96 1 3 1 53101.269 41890.740000000005 +Q9VPR1 GH02075p 11.35 2 3 2 13919.449 10336.615 +Q9VPR5 Splicing factor 3B subunit 1 3.21 4 5 4 21426.13905 16943.68735 +Q9VPT9 Integral membrane protein 2 20.38 7 11 1 60904.7599 39995.4978 +Q9VPU4 FI17537p1 5.33 2 4 2 12567.84215 7712.12213 +Q9VPU6 Galectin 5.06 2 3 2 7848.7761 3912.54047 +Q9VPX0 GH26159p 6.59 4 6 4 13254.2609 10366.2668 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 15 6 111665.43906 106963.0287 +Q9VPX6 Adenylyl cyclase-associated protein 35.89 24 69 3 2103955.31596 1411942.34677 +Q9VPY7 LD42035p 5.27 3 4 3 8898.182 9554.6335 +Q9VPZ5 GH04232p 15.64 8 27 8 98995.07895 74120.03043 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 18.23 3 3 3 17538.73113 12640.4843 +Q9VQ61 Aspartate aminotransferase 68.16 29 146 2 6429237.33617 5134530.85767 +Q9VQ83 RE23541p 13.29 4 5 0 50200.358499999995 39002.46067 +Q9VQ88 Uncharacterized protein 25.97 2 5 2 71599.5708 57986.066000000006 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 49.25 18 64 18 1778978.78575 1413599.52588 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 35 6 1911964.7969 1792825.41252 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 20.53 3 10 3 182856.24709999998 138208.71013 +Q9VQE0 dynamin GTPase 20.27 14 22 14 92328.95284 76870.98685 +Q9VQI5 Interferon-related developmental regulator 1 2.12 1 2 1 13009.828899999999 5113.8613 +Q9VQI6 LD25952p 13.89 5 8 5 57801.3986 49805.11053 +Q9VQI7 1-Cys peroxiredoxin 45.95 10 23 10 419654.67416 323289.4246 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 10.05 2 4 2 21397.892760000002 20777.9072 +Q9VQK7 LD45152p 1.2 1 1 1 2417.5398 1832.8019 +Q9VQK8 Histidine protein methyltransferase 1 homolog 6.84 2 2 2 2021.3832 662.21136 +Q9VQL1 serine--tRNA ligase 31.74 15 31 15 510757.59249999997 397566.07037000003 +Q9VQM0 Toucan, isoform A 1.3 2 3 1 1869.2878 0.0 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 47.41 5 14 5 827419.927 684476.7407 +Q9VQQ6 FI18122p1 19.21 10 17 0 150207.3673 106920.9516 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 85.53 17 61 17 2824376.75665 2013935.09825 +Q9VQR5 IP10807p 2.5 1 2 1 2639.5918 2414.4026 +Q9VQR9 PAT complex subunit CCDC47 10.5 5 10 5 65007.61556 53085.0343 +Q9VQT7 RH15675p 14.63 1 6 1 24285.0752 3731.78744 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 16 2 86154.61525 70262.81436 +Q9VQV7 Centrosomal protein of 97 kDa 10.42 9 14 6 61131.50004 37490.1185 +Q9VQX3 HL05328p 6.13 2 3 2 15167.688 14389.3089 +Q9VQZ3 Uncharacterized protein, isoform A 3.22 3 4 3 1688.0177 1505.782 +Q9VR03 AT19250p 3.98 2 2 2 3433.0121999999997 3789.504 +Q9VR25 Factor of interpulse interval 12.0 6 9 6 146415.27685 99539.08187 +Q9VR30 RE58324p 11.81 5 10 5 38965.65659 32171.558 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 21.15 7 15 7 53272.66532 45551.80777 +Q9VR69 Chitin deacetylase-like 4 3.29 2 2 2 11018.7863 5717.2988 +Q9VR79 LD43683p 40.08 10 47 10 1144644.77161 812813.6554800001 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 1 5047.7459 2719.1452 +Q9VRD4 Uncharacterized protein, isoform A 42.71 9 21 9 588105.44413 464297.3016 +Q9VRD6 NTF2-related export protein 54.62 5 17 0 182136.12615999999 165970.5525 +Q9VRD9 Cystathionine beta-synthase 9.58 5 7 5 20998.07344 14054.508160000001 +Q9VRF7 GH09530p 10.57 3 5 0 17800.4316 11232.27288 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 20.16 5 11 5 70752.50335 66528.34154 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 5.4 5 7 5 10265.41027 11193.36176 +Q9VRJ4 Dehydrogenase/reductase 4 45.43 14 45 14 990223.62392 888135.41781 +Q9VRJ5 Charged multivesicular body protein 2b 11.79 3 6 3 135342.1205 100697.0442 +Q9VRJ6 non-specific serine/threonine protein kinase 10.71 3 3 3 23262.646099999998 22176.176059999998 +Q9VRK9 Kinesin-like protein 4.43 3 4 2 2233.0362 1003.64184 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 56.68 16 138 16 6882139.07083 4788733.56672 +Q9VRL1 GEO06356p1 53.1 8 34 2 1068264.18182 822964.08952 +Q9VRM1 Uncharacterized protein, isoform A 12.63 3 6 3 16005.75357 11562.3823 +Q9VRM8 alkaline phosphatase 1.34 1 1 1 811.37976 368.2634 +Q9VRM9 alkaline phosphatase 1.74 1 1 1 5460.613 3562.5264 +Q9VRP2 Uncharacterized protein, isoform A 34.78 14 64 14 1018527.08883 805438.87753 +Q9VRP3 AT08565p 17.07 5 16 5 98038.88222 82716.8761 +Q9VRP4 Bifunctional coenzyme A synthase 6.18 3 5 3 14955.6316 10407.0686 +Q9VRR3 Uncharacterized protein, isoform A 41.08 9 20 9 653311.8014 557439.80889 +Q9VRU1 Aldose 1-epimerase 15.38 6 17 6 87615.14357 63158.78648 +Q9VRV8 Transportin-1 2.69 2 3 2 7637.885759999999 4025.0420000000004 +Q9VRY5 Ribosome maturation protein SBDS 15.87 5 6 5 50640.758499999996 46614.1998 +Q9VS02 Serine protease K12H4.7 14.76 7 11 7 112739.0389 97402.57825 +Q9VS11 lysozyme 15.97 4 7 4 25048.34745 19055.841800000002 +Q9VS44 Uncharacterized protein 9.45 3 4 3 7062.9686 5672.4704600000005 +Q9VS84 FI03225p 7.71 7 15 7 116879.81486 76526.64458000001 +Q9VSA9 CG7409 82.47 15 103 15 3879999.0123199997 2658348.19196 +Q9VSC3 Ribonuclease X25 8.31 3 12 3 81867.44729 78137.3577 +Q9VSC5 GM09977p 50.76 17 41 17 1175141.97154 773495.31151 +Q9VSD6 D-Importin 7/RanBP7 8.58 9 14 9 97998.71673 74331.28767 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 17 1 226418.77209999997 144052.81826 +Q9VSH5 IP09562p 9.77 2 2 2 5617.2904 5301.62596 +Q9VSH7 Cuticular protein 66Cb 12.96 2 19 1 23164.0865 13653.8619 +Q9VSI1 LD21269p 7.6 5 7 5 26047.605 13438.41681 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.25 1 1 1 3206.016 2770.5833 +Q9VSK4 Adipose-secreted signaling protein 55.56 9 26 9 367287.16236 356645.08813 +Q9VSL2 Glutathione S transferase O3 52.7 13 45 11 802501.04594 676544.8674400001 +Q9VSL4 Glutathione S transferase O2, isoform B 42.0 12 48 10 1366696.7301999999 1149309.7856 +Q9VSL5 Glutathione S transferase O2, isoform A 16.73 4 10 4 123075.34909999999 111715.7045 +Q9VSL6 Glutathione S transferase O1 9.84 3 10 2 3634.2758000000003 3895.3442699999996 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 5.48 3 3 3 12146.423 11350.4211 +Q9VSM8 TBC1 domain family member 13 2.48 1 1 1 721.46515 1746.4435 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 68.48 12 99 0 288937.5008 190175.9859 +Q9VSN3 Cuticular protein 66D 50.37 12 75 12 1559867.3121200001 1181653.97899 +Q9VSN9 Signal recognition particle receptor subunit beta 14.75 4 8 4 107236.1911 85229.42020000001 +Q9VSR5 GM03767p 52.75 9 24 9 1095993.5917 781202.4842500001 +Q9VSR8 Amine oxidase domain-containing protein 7.56 4 5 4 18896.9083 12262.824 +Q9VST4 arginine kinase 4.64 2 4 2 9179.7055 4232.29295 +Q9VSU6 Dihydropteridine reductase 74.89 14 75 14 3325327.7897200002 2628646.45063 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 23.78 13 27 0 1070819.1967 882211.55536 +Q9VSW4 Ribosome-recycling factor, mitochondrial 7.48 2 6 2 118010.32554 71670.4989 +Q9VSW7 LD21662p 5.13 2 3 1 11752.303 8405.1077 +Q9VSX2 IP01061p 30.5 6 17 6 151457.53468 130336.73216999999 +Q9VSY0 Cuticular protein 67B 65.0 13 81 13 4911669.1025 3312454.17348 +Q9VSY8 Trafficking protein particle complex subunit 31.46 5 12 5 215249.61951 187630.88185 +Q9VT21 Cyclophilin 40, isoform A 8.88 4 7 4 13277.114 7962.36035 +Q9VT23 Peptidase S1 domain-containing protein 11.2 3 22 3 81771.88243 58195.2769 +Q9VT33 ribose-phosphate diphosphokinase 31.44 12 32 0 276942.7521 246179.01906 +Q9VT61 Ciz1 zinc finger protein, isoform A 3.37 3 4 3 1127.24455 1157.06316 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 22.08 4 5 0 69107.27978 68295.23094 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 15.82 3 6 3 8146.043 6369.67974 +Q9VTA8 RE35371p 12.66 3 4 3 939.4744000000001 0.0 +Q9VTB0 LD35289p 17.94 8 13 8 43713.48433 27874.96284 +Q9VTB3 Guanylate kinase 52.79 13 38 13 752447.13494 596594.3966 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 8 37 8 1572320.8572 1150080.1713999999 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.62 6 9 6 23077.42994 16379.4741 +Q9VTC3 GH07049p 12.22 5 7 5 204726.66317 140345.4996 +Q9VTF8 Mitochondrial ribosomal protein L2 2.38 1 1 1 1531.8092 0.0 +Q9VTL0 FI19917p1 10.87 4 4 4 5846.785400000001 6203.5722 +Q9VTP1 IP06473p 3.53 1 2 1 4649.8735 3811.7579 +Q9VTT2 LD20590p 6.65 3 4 3 12796.312600000001 8298.81696 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 33 8 1644291.9146 1318217.49955 +Q9VTU8 carbonic anhydrase 24.18 8 15 1 360086.5264 285487.60485 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 3 3 3 64240.626 57618.7574 +Q9VTW1 RE15265p 7.1 3 5 0 16940.5671 13972.3394 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.06 2 3 0 5590.0509 4281.88766 +Q9VTY2 Uncharacterized protein, isoform A 38.8 13 45 12 822919.89934 727550.58785 +Q9VTZ4 Phosphoacetylglucosamine mutase 18.4 10 18 10 102631.15035 92786.84612999999 +Q9VU04 RE60105p 11.69 3 7 3 56216.1766 46901.75694 +Q9VU13 LD45603p 8.95 5 14 0 293488.7165 150150.93911 +Q9VU15 Splicing factor 3A subunit 2 14.39 3 6 3 58653.83004 41780.453 +Q9VU34 LD45758p 1.78 2 3 2 3354.6466 3140.65428 +Q9VU35 10 kDa heat shock protein, mitochondrial 65.05 7 91 6 5518887.59874 4149228.96694 +Q9VU36 Large ribosomal subunit protein bL20m 11.33 2 3 2 8393.293099999999 6650.683 +Q9VU38 Adenosine kinase 24.64 6 14 0 434274.32300000003 356222.9791 +Q9VU45 LD27581p 14.79 4 24 4 91212.28008 65098.11464 +Q9VU53 Capricious, isoform A 1.85 1 2 0 832.29438 2555.0412699999997 +Q9VU75 RH45712p 37.04 9 31 9 157070.58172 121962.11984 +Q9VU92 Uncharacterized protein 25.79 6 13 6 66403.3873 60171.95953 +Q9VUC1 Hsc70Cb, isoform A 38.93 30 94 0 1115164.46991 938032.52172 +Q9VUE8 Big bang, isoform C 0.83 2 3 0 820.4359 0.0 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 8.61 8 14 8 48705.31979 28539.71357 +Q9VUJ1 Proteasome subunit beta 38.6 11 35 9 512212.19559 391762.27426 +Q9VUL8 Peroxisomal biogenesis factor 3 4.42 2 3 2 5109.8652999999995 3808.8873000000003 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 8.58 5 7 5 53921.5011 43770.2439 +Q9VUM2 Reactive oxygen species modulator 1 10.13 1 5 1 115615.9315 90668.72350000001 +Q9VUN9 ubiquitinyl hydrolase 1 18.27 6 10 6 99292.97654 68793.62288 +Q9VUQ7 RE36966p 6.21 4 11 4 39692.121159999995 31856.183100000002 +Q9VUV6 GXIVsPLA2, isoform A 7.39 2 5 2 25667.452599999997 23200.0956 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 5 2 19395.89475 16065.940900000001 +Q9VUW4 Inositol-1-monophosphatase 6.25 2 4 2 10708.649969999999 8417.2602 +Q9VUX1 Small ribosomal subunit protein mS31 14.1 9 17 9 86765.60668 67831.8757 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 5 3 269297.28150000004 192147.46730000002 +Q9VV13 GEO08383p1 10.71 1 1 1 24076.957 21053.32 +Q9VV31 Uncharacterized protein 19.35 2 7 2 13169.24916 9915.58223 +Q9VV39 Mitochondrial ribosomal protein S34 35.64 6 15 6 117901.24607000001 88526.8468 +Q9VV40 Golgin 104 2.06 2 2 2 20678.6714 15136.1116 +Q9VV42 Fat body protein 2 79.5 24 224 0 13477987.43632 12613847.07215 +Q9VV46 Cuticular protein 72Ec 59.67 35 258 35 18605939.93367 13468036.54002 +Q9VV47 Fat body protein 2 32.05 7 29 5 1083516.8815 924660.11013 +Q9VV60 Tyrosine--tRNA ligase 44.38 23 59 23 442816.83629 390965.51831 +Q9VV75 AT02348p 82.73 30 207 30 11084047.72716 8314525.26761 +Q9VV76 Syntaxin 8 8.62 2 3 2 14853.3686 9985.7468 +Q9VV89 Coatomer subunit zeta 10.34 2 11 0 72745.70432 71763.13128 +Q9VVA7 Tumor suppressor protein 101 15.2 7 13 7 65540.54876 57543.4053 +Q9VVB5 LD46723p 28.44 16 70 1 9738.6022 5008.30058 +Q9VVC3 Cuticular protein 73D, isoform B 38.02 20 56 1 839117.54441 637724.37529 +Q9VVC8 LD23434p 8.08 5 10 5 58742.113000000005 51646.3156 +Q9VVG0 Cadherin 74A, isoform A 9.29 18 30 18 190778.61135 140235.74904999998 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 55 6 6387425.5905 4562025.70192 +Q9VVJ7 Selenoprotein F 34.83 7 19 7 184421.32096 131214.32872 +Q9VVK5 Adenosine deaminase 6.15 4 8 4 53456.466459999996 48879.70065 +Q9VVK7 Nucleobindin 1 14.06 10 23 10 260846.388 184218.73466000002 +Q9VVL5 FI11325p 21.52 7 10 7 63544.984899999996 51163.88168 +Q9VVL7 Dihydrolipoyl dehydrogenase 63.29 28 179 28 8501562.06399 7177587.34352 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 4.96 3 5 3 23355.6113 14540.730800000001 +Q9VVM1 Uncharacterized protein, isoform B 9.91 6 9 6 45389.3675 31658.9904 +Q9VVP9 Gamma-glutamylcyclotransferase 18.18 4 8 4 33763.12694 25473.8401 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 15.45 5 9 5 60362.08647 50796.38096 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 39 8 804181.6055 627782.61201 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 32.13 13 68 13 1933627.2071 1498610.29976 +Q9VVU2 GEO07453p1 29.53 6 31 5 946344.5354 700535.22435 +Q9VVV6 LD45843p 12.26 8 10 0 92850.35717999999 82389.2671 +Q9VVW7 Canopy b 12.22 3 8 3 37628.3879 24388.536760000003 +Q9VVX4 Large ribosomal subunit protein bL21m 20.4 5 5 5 6024.88906 3892.6636000000003 +Q9VVY7 FI20154p1 12.22 16 28 0 103811.70745 77981.22885 +Q9VVZ4 Uncharacterized protein 56.79 4 7 4 91922.0 63746.0125 +Q9VW00 GH28721p 6.1 2 3 2 3431.5345300000004 4144.45054 +Q9VW13 ATP-binding cassette sub-family F member 3 3.67 3 4 3 6809.224829999999 3111.5474400000003 +Q9VW17 RE58036p 29.67 5 15 0 50121.23988 36936.93013 +Q9VW19 Phenoloxidase-activating factor 2 3.43 1 2 1 1238.0236 1221.4927500000001 +Q9VW34 FI03450p 11.65 7 12 7 123568.0441 85474.25364 +Q9VW40 LD31235p 9.3 3 4 3 21200.49284 15341.072500000002 +Q9VW52 Precursor RNA processing 3, isoform A 6.19 4 4 1 9302.32601 6271.06129 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 4.24 5 9 5 55013.312229999996 41441.33724 +Q9VW57 Grasp65 7.17 4 7 4 33408.1468 29103.4848 +Q9VW58 LD33138p 14.87 3 4 3 14541.117 21239.993 +Q9VW59 Rho GDP-dissociation inhibitor 3 39.3 10 33 10 400114.62395 356199.46496 +Q9VW66 Uncharacterized protein, isoform A 65.59 9 50 5 1736826.5458499999 1317237.62304 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 63.99 30 123 30 3198586.23013 2979046.67591 +Q9VW73 Ragulator complex protein LAMTOR1 9.44 3 6 3 46110.926 25383.1415 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 2542.2122 1867.5586 +Q9VWD0 GH23568p 19.35 6 13 6 210741.67855 190180.91783999998 +Q9VWD1 Cytochrome c oxidase subunit 79.17 11 99 1 3124441.08972 2497448.97763 +Q9VWD5 LD35087p 12.92 5 7 5 17591.43619 15304.888299999999 +Q9VWD9 Ubiquilin-like protein 36.56 15 29 15 435025.2456 402658.3181 +Q9VWF0 LP01149p 34.31 9 18 9 74396.80025 59520.04662 +Q9VWG1 LD37169p 76.5 13 51 1 281898.9753 192846.7159 +Q9VWJ3 LD05272p 12.79 2 3 2 12498.5155 6937.9766 +Q9VWL4 GH07340p 9.39 5 11 5 81465.13680000001 57614.727 +Q9VWP2 RH57257p 77.69 12 26 12 418747.88139 376620.6811 +Q9VWQ3 LD35981p 6.12 2 2 0 8025.4812999999995 9732.4896 +Q9VWQ7 Coactosin-like protein 29.45 6 11 0 52987.474259999995 42036.30411 +Q9VWS1 Houki 9.33 2 3 2 84730.2273 59467.582819999996 +Q9VWT1 histidine--tRNA ligase 27.78 14 37 1 265596.88169 206192.33369 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 7.94 5 5 5 21923.9632 16718.39995 +Q9VWU0 FI18411p1 2.23 1 2 1 2525.8317 1928.9454 +Q9VWV6 Transferrin 63.81 41 264 41 14336898.86683 9652976.00694 +Q9VWW2 GH13094p 17.43 9 19 9 116164.00185 31410.31616 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 11 3 46053.81932 38544.034719999996 +Q9VX08 LD10434p 4.16 2 3 2 17528.7683 15344.9347 +Q9VX15 Replication factor C subunit 2 7.08 3 5 3 7307.7354000000005 3817.8427 +Q9VX26 Chascon, isoform A 2.65 4 4 0 12564.71386 8254.7128 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 63.22 17 91 17 4255252.61156 3483045.82515 +Q9VX69 FI01450p 6.57 3 29 2 110562.702 89707.2502 +Q9VXA3 LP21163p 16.85 11 23 11 115283.44771000001 122621.73495 +Q9VXA9 RE04047p 8.03 2 3 2 5223.643 4064.958 +Q9VXC1 MIP06432p1 36.87 6 12 3 172478.9086 127506.16967999999 +Q9VXC9 trypsin 49.0 9 23 9 476363.38512 300967.35595 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 18.56 4 8 4 41872.84458 29660.91833 +Q9VXF9 AT13091p 15.5 8 19 8 82118.5434 61149.25864 +Q9VXG0 Cell division cycle 50, isoform A 8.96 3 8 1 58489.5972 44649.9351 +Q9VXG9 GH25683p 5.43 1 1 1 1215.291 873.44214 +Q9VXH4 RE16337p 51.96 3 7 3 68854.5494 69105.7101 +Q9VXH7 FI17510p1 22.59 6 21 6 247590.07606 222790.98211 +Q9VXI1 L-gulonate 3-dehydrogenase 54.6 11 26 11 422682.70583 389539.49202 +Q9VXI6 Cytochrome b-c1 complex subunit 7 64.86 9 43 7 3520571.7387200003 2726750.86976 +Q9VXJ7 GH03748p1 11.25 12 13 12 50289.43745 32403.07377 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 32.13 7 15 6 196690.05473 147565.44144999998 +Q9VXK9 Centrosomal protein 164, isoform A 2.57 4 5 4 25915.1815 16445.26164 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 6974.622 5602.5723 +Q9VXM4 LD12946p 61.29 13 44 13 2443483.34258 1245158.02363 +Q9VXN1 LD03728p 9.22 3 5 3 6714.1189 6223.8922 +Q9VXN3 LD07988p 17.42 8 15 8 137189.21535 91940.7901 +Q9VXP1 RING-type E3 ubiquitin transferase 4.69 1 1 0 396.01062 0.0 +Q9VXP3 GH05406p 12.21 7 8 7 19137.693339999998 11602.15926 +Q9VXQ0 Large ribosomal subunit protein uL3m 7.73 3 4 3 29140.958860000002 24124.91817 +Q9VXQ3 Diphosphomevalonate decarboxylase 7.47 3 4 3 11386.979249999999 8157.2669 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 41.46 21 49 21 472518.82041000004 398456.03712 +Q9VXR9 FI03680p 10.91 4 5 4 21706.3954 17198.0192 +Q9VXV1 RH52220p 19.02 4 5 4 18078.7614 15524.85384 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 21.0 10 26 10 200392.92883000002 162287.97764 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 18.8 2 26 2 378700.64084 376939.63789 +Q9VXZ8 Luciferin 4-monooxygenase 18.93 10 20 10 179098.04747 135907.7165 +Q9VY05 GH11762p 12.2 8 19 8 222295.91236000002 176151.96605 +Q9VY16 Uncharacterized protein, isoform A 8.35 6 9 0 30419.25546 22970.8868 +Q9VY24 Uncharacterized protein, isoform B 17.19 7 15 7 159370.67395 138353.05104 +Q9VY27 Nucleoside diphosphate kinase 18.54 3 3 3 602.0477 562.33905 +Q9VY33 Defective proboscis extension response 8, isoform A 9.59 4 7 3 18451.917999999998 15844.60784 +Q9VY41 Plasminogen receptor (KT) 35.06 3 6 3 54267.2376 43048.43235 +Q9VY42 Tyrosine aminotransferase 9.58 5 7 5 18185.5993 14145.967499999999 +Q9VY76 AMP deaminase 7.13 7 10 0 61125.183000000005 50887.3061 +Q9VY87 Cathepsin B, isoform A 20.59 5 11 5 110145.34294 98894.74045 +Q9VY91 Programmed cell death protein 4 8.25 6 10 6 113969.80198999999 92438.84284 +Q9VY92 GEO07753p1 73.91 8 47 8 1718474.72684 1253445.22856 +Q9VYA1 RE18811p 8.56 3 6 2 33392.3917 24959.257700000002 +Q9VYB2 LD19061p 2.83 2 2 2 4489.257799999999 1388.65341 +Q9VYD5 Branched-chain-amino-acid aminotransferase 2.26 1 1 1 1696.4985 509.096 +Q9VYF0 GM09012p 14.93 4 10 4 16342.5678 8244.0548 +Q9VYG8 CG15717-PA 15.08 4 6 4 37249.8083 28004.79416 +Q9VYJ1 FI12805p 7.33 5 6 5 10120.371060000001 8823.94473 +Q9VYK6 Tomosyn, isoform C 5.24 8 14 1 37372.15988 28092.55668 +Q9VYM0 CG2555-PA 14.21 3 6 1 5766.3645 5779.39819 +Q9VYM7 Uncharacterized protein, isoform C 14.62 6 14 2 5152.5341 3216.2627 +Q9VYN1 protein kinase C 0.84 2 18 1 529762.7073199999 441268.00325999997 +Q9VYR4 Furrowed, isoform A 1.96 2 5 0 8714.52554 6132.04335 +Q9VYS2 GH09980p 7.06 6 7 6 32899.7724 29484.0099 +Q9VYT0 RE04130p 30.84 7 9 6 247152.31100000002 179223.3199 +Q9VYT1 BLOC-1-related complex subunit 5 8.6 3 8 3 15201.41143 8663.85864 +Q9VYT3 FI23714p1 3.57 5 7 5 15396.8766 13877.15142 +Q9VYT6 P24-related-1, isoform A 7.14 3 9 3 119280.67426 104825.74455 +Q9VYU9 RH17287p 45.02 7 14 7 129209.88065 97757.4292 +Q9VYV4 Amun, isoform A 4.91 3 5 3 26946.364 21363.9794 +Q9VYV6 GEO09033p1 23.68 3 3 3 29160.2902 22982.494899999998 +Q9VZ00 FI19420p1 19.19 18 25 0 88879.33840000001 61397.61517 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 126694.70993 124401.01645000001 +Q9VZ20 Dynein light intermediate chain 28.4 16 40 4 203871.13251 154456.32668 +Q9VZ24 GEO11412p1 44.25 7 77 7 4852981.0527 3319559.62806 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 798.2639 0.0 +Q9VZ34 RH72958p 2.64 2 5 2 5788.505300000001 3309.2925999999998 +Q9VZ37 Uncharacterized protein, isoform A 7.81 1 1 1 5050.458 2800.485 +Q9VZ58 Purple acid phosphatase 15.78 8 16 7 90572.47774 90467.23696 +Q9VZ59 LP02042p 6.12 1 4 0 31852.164150000004 18388.389130000003 +Q9VZ66 SD22308p 35.37 5 12 5 104504.5201 65009.724 +Q9VZ67 Uncharacterized protein 28.99 2 9 2 25651.738699999998 26094.337799999998 +Q9VZ71 RE01453p 9.04 2 3 2 8685.40484 3979.8176 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 7 3 20731.90039 17750.71439 +Q9VZE4 RE70333p 17.02 8 19 8 57938.62169 46113.253300000004 +Q9VZE9 V-type proton ATPase subunit 9.41 1 4 1 190875.538 176631.0257 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 3.94 2 3 2 10456.24 8480.999 +Q9VZF9 Cuticular protein 64Ad 32.79 6 20 6 588895.0909 395251.97604 +Q9VZG0 Cuticular protein 64Ac 43.62 9 67 9 2181777.14991 1506503.66894 +Q9VZG1 Cuticular protein 64Ab 42.5 4 17 4 255294.14444 181867.84603 +Q9VZG2 Cuticular protein 64Aa 76.04 10 55 10 1972204.45496 1260658.96899 +Q9VZH5 CLIP domain-containing serine protease 11.35 8 9 1 13829.4546 8822.23594 +Q9VZI1 Transgelin 82.98 14 100 1 5404082.54589 3891144.00171 +Q9VZI8 Fumarylacetoacetase 10.07 4 7 4 58814.6982 47061.303400000004 +Q9VZJ2 GH27759p 16.59 7 14 7 76132.9274 69113.4462 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.57 4 8 4 24375.50506 20387.02593 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 41.89 6 25 1 420104.6829 336636.13537000003 +Q9VZL3 very-long-chain enoyl-CoA reductase 3.64 1 1 1 453.56775 0.0 +Q9VZS1 protein-serine/threonine phosphatase 13.21 5 9 4 16894.87112 9267.72213 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 10.76 10 21 10 144502.3568 112569.75343 +Q9VZV2 Chitinase 7 7.7 7 9 7 24806.87857 18518.49688 +Q9VZW1 Phospholipid scramblase 7.22 2 4 2 10797.940340000001 10317.42215 +Q9VZW7 Carnitine palmitoyltransferase 2 11.54 7 9 7 95514.81291000001 73966.8297 +Q9VZX6 LD06441p 7.98 3 4 3 32761.794800000003 23742.8815 +Q9VZY0 LD45195p 17.62 5 10 5 150041.7153 122214.4923 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.8 3 4 2 5370.413930000001 4667.867200000001 +Q9VZZ5 GEO12033p1 28.67 4 10 4 286794.3726 199319.11951 +Q9VZZ6 CG16985 protein 32.21 4 10 4 160583.33500000002 127697.6825 +Q9W022 GEO01508p1 64.08 8 33 8 1400879.55628 1048265.05244 +Q9W073 RH22148p 9.41 2 2 2 8253.7511 5548.155 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 17 4 1164419.24225 751058.3378 +Q9W078 Cuticular protein 62Bb, isoform A 24.23 3 20 2 378068.99298 271465.47134 +Q9W086 Large ribosomal subunit protein mL46 20.54 6 11 6 39560.0097 30299.042800000003 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 24.21 3 5 2 32624.91935 30525.1236 +Q9W095 glycerol kinase 2.78 2 2 2 19752.263 14785.5373 +Q9W0A8 FI01658p 18.77 5 15 5 214807.81040000002 182482.7916 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 29.11 10 34 10 513796.39068 423293.84992999997 +Q9W0C3 GH11843p 61.22 12 26 12 284360.65165 219829.36784 +Q9W0D3 GH15728p 1.78 3 4 3 8837.395 5573.5868 +Q9W0D9 choline-phosphate cytidylyltransferase 6.82 3 10 2 24515.203999999998 23612.9463 +Q9W0H6 Acetyl-CoA acetyltransferase 2 29.08 9 25 9 97061.34820000001 83399.41112 +Q9W0H8 Reticulocalbin-3 24.32 9 18 4 324508.24431 247768.07587 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 7.33 6 6 6 23525.77538 19141.6871 +Q9W0J9 GH07301p 41.93 10 20 9 201720.39335 179959.88115 +Q9W0K9 LD10220p 9.38 2 2 2 23253.672 10657.481 +Q9W0L7 ubiquitinyl hydrolase 1 3.16 5 5 0 17252.89015 11228.83319 +Q9W0M4 Endoplasmic reticulum transmembrane protein 27.63 8 19 7 122979.61323 85925.7908 +Q9W0M5 Protein DPCD 8.56 2 4 2 4899.6906 3269.9119 +Q9W0N6 LD27967p 16.52 5 9 5 23535.349299999998 23585.7084 +Q9W0P4 GEO05053p1 15.45 2 4 2 19170.166400000002 13709.208849999999 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 32.39 6 10 6 37769.6441 28058.01325 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 16866.52 11640.167 +Q9W0R0 Cell division cycle 5, isoform A 14.0 11 18 11 73309.26857 55830.5 +Q9W0S6 Large ribosomal subunit protein bL17m 18.18 4 4 4 12320.4933 9993.813 +Q9W0U0 glycerol kinase 2.23 1 1 0 29028.51 21928.168 +Q9W0X0 Scavenger receptor class B member 1 12.89 8 13 0 68635.42252 52785.1639 +Q9W0X1 GH15894p 1.58 1 1 1 6767.4917 9107.37 +Q9W0X2 GEO07322p1 12.4 2 2 2 29859.383139999998 20442.2783 +Q9W0X3 LD24657p 8.75 3 9 1 42855.254230000006 34589.97356 +Q9W0Z5 LP09747p 10.07 6 23 6 103964.40413 72426.80181 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 68.0 9 46 9 4310806.90087 3458045.31861 +Q9W127 Isochorismatase domain-containing protein 1 25.96 5 8 5 249796.695 184863.68449999997 +Q9W136 Uncharacterized protein 39.13 6 15 6 230801.56258 194719.28075 +Q9W140 Regulatory protein zeste 6.4 3 5 3 7299.21912 5646.88735 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 9.89 6 8 6 9542.1069 5772.336219999999 +Q9W149 RING-type E3 ubiquitin transferase 2.19 2 2 2 1695.5908 901.1426 +Q9W158 LD36772p 7.49 3 11 3 64738.1419 42709.66206 +Q9W199 GEO07594p1 14.84 3 3 3 11714.662100000001 8427.5403 +Q9W1B9 Large ribosomal subunit protein uL11 46.67 8 31 8 1024666.3448000001 651790.9901 +Q9W1C8 LD24355p 16.3 6 14 6 30400.47528 20451.59379 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 15.18 3 6 3 42860.7385 36206.67942 +Q9W1F2 FI07217p 5.93 2 4 2 16407.8206 10261.8468 +Q9W1F7 IP15825p 25.14 10 36 10 670207.73453 560894.9401 +Q9W1F8 GEO08248p1 18.05 3 10 3 85888.01485 83467.72976999999 +Q9W1G7 LD21576p 24.05 7 13 7 271741.0 218856.2534 +Q9W1H5 Decapping protein 1, isoform A 12.37 4 8 4 41843.4147 29591.3414 +Q9W1H6 GH04238p 8.46 2 5 2 181149.00314 174403.7726 +Q9W1H8 acetyl-CoA C-acyltransferase 31.77 14 54 14 550393.53921 472913.77932000003 +Q9W1I8 LD03592p 30.28 8 21 8 107358.97200000001 84784.43476 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 4 8 4 45680.104380000004 26577.38363 +Q9W1L8 GH11818p 5.92 2 3 2 10540.1422 15811.548 +Q9W1M9 Exosome complex component RRP4 16.11 4 5 4 4021.63634 2713.3313 +Q9W1N3 Levy, isoform A 50.46 5 24 5 1446805.96752 1213704.00939 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 4943.689 4427.8535 +Q9W1R0 RH49821p 6.07 3 5 3 11496.9597 8436.23047 +Q9W1R3 Golgin-245 14.24 21 27 21 157080.94506 128157.12204 +Q9W1V8 CG9893 protein 3.65 1 2 1 45060.186 31367.616 +Q9W1W4 RE45066p 22.13 8 19 8 191864.8616 125502.20579 +Q9W1X5 GH04942p 13.03 18 41 3 266975.66728 187472.38562 +Q9W227 Peptidyl-prolyl cis-trans isomerase 64.39 13 56 13 1967326.68586 1674685.13203 +Q9W229 40S ribosomal protein S24 37.4 5 11 5 357064.2673 458713.2327 +Q9W236 Vacuolar protein sorting 20, isoform A 8.02 3 7 3 35869.9044 32083.53925 +Q9W253 Small ribosomal subunit protein mS29 13.01 5 5 5 11480.67586 8700.430499999999 +Q9W254 Quaking related 58E-2, isoform A 30.53 10 30 9 217212.06529 160579.78619 +Q9W257 RH13652p 6.99 2 7 2 196139.5448 163902.2793 +Q9W258 Babos, isoform A 27.55 6 28 6 424087.12664 348222.93645000004 +Q9W259 FI23916p1 14.71 5 10 5 84042.85949999999 76289.5193 +Q9W260 GH03113p 15.4 9 26 9 129368.35749 81444.73786 +Q9W287 Cuticle protein 16.5-like 4.15 1 3 1 14804.3162 12782.175899999998 +Q9W289 Golgi matrix protein 130 kD 16.6 13 32 13 174545.1449 132507.53136 +Q9W299 Sugar phosphate phosphatase 4.13 2 3 2 14297.2611 13464.3345 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 16.36 2 17 2 495099.02045999997 381071.23986 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 8.16 3 3 3 12175.5765 9416.6394 +Q9W2J4 UDP-glucuronosyltransferase 2.82 2 2 2 68466.486 61455.823300000004 +Q9W2J5 Uncharacterized protein, isoform A 17.66 7 16 0 44771.48752 36577.91728 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 17.52 2 2 2 23339.635 21667.99 +Q9W2L6 RH02475p 28.13 18 55 18 1107304.80214 823406.19384 +Q9W2M0 LD23155p 23.8 18 32 18 167658.56797 112901.7453 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 12 62 12 2986030.91084 2704310.75923 +Q9W2M9 FI16623p1 6.47 1 3 1 5865.35553 3307.34256 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 39.24 4 9 4 42236.20128 30820.32858 +Q9W2S2 Autophagy-related 8a, isoform A 11.57 2 9 1 221764.1524 162336.57259999998 +Q9W2U8 Neb-cGP, isoform A 83.33 3 21 3 541268.0861 337440.2334 +Q9W2V2 FI20035p1 3.86 3 3 3 31617.040999999997 22956.574 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 164 11 13395656.86487 10161945.75288 +Q9W2Y5 YLP motif-containing protein 1 1.06 2 3 1 1363.8285 0.0 +Q9W2Z7 Uncharacterized protein, isoform B 23.63 8 28 1 169249.06214 144589.32425 +Q9W306 GEO08256p1 14.05 2 4 2 64673.35575 40712.73557 +Q9W308 GH05731p 27.17 4 9 4 86073.4547 65803.78294 +Q9W309 GEO08445p1 29.63 7 11 7 252679.2791 228330.6161 +Q9W314 GH14088p 9.57 4 9 4 22237.01265 15537.7199 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.06 8 13 8 50278.60956 38773.2318 +Q9W330 Phosphotransferase 24.4 11 31 3 611800.5114 624583.82173 +Q9W335 Translocon-associated protein subunit alpha 21.19 3 5 3 116468.4646 153124.672 +Q9W337 GH19985p 21.56 4 12 4 135110.97837 88934.55225 +Q9W350 C11.1, isoform A 2.12 3 3 3 5923.5566 5024.4003299999995 +Q9W370 GEO12084p1 44.26 4 19 4 245442.77876 152792.92554999999 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 8.8 5 7 5 27641.1924 22087.429200000002 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 8.15 9 12 9 40437.12916 27953.8744 +Q9W392 T-complex protein 1 subunit beta 41.12 18 46 18 400541.11817000003 361837.76969 +Q9W396 FI06908p 12.08 3 5 3 24978.2323 22659.8057 +Q9W3B3 Uroporphyrinogen-III synthase 13.0 4 6 4 17010.41047 13571.54996 +Q9W3C3 LD10016p 17.41 8 12 8 94115.19066 74571.79634 +Q9W3C4 beta-N-acetylhexosaminidase 4.34 3 6 3 43177.17864 41738.6126 +Q9W3F6 Bleomycin hydrolase 12.91 5 9 1 90515.6923 66676.9315 +Q9W3G8 pyridoxal 5'-phosphate synthase 16.43 4 7 4 33699.91083 26122.770239999998 +Q9W3H4 LD36273p 62.35 12 36 12 627676.4129 514626.99215 +Q9W3J1 G protein beta subunit 5 6.7 2 3 2 80119.308 22110.716 +Q9W3J6 FI06457p 12.29 4 4 4 7551.7758 4703.5295 +Q9W3K6 LD35927p 5.12 4 6 4 60556.7675 47199.9766 +Q9W3K9 Short-chain dehydrogenase/reductase 3 30.31 9 24 9 720630.03123 571045.0305999999 +Q9W3L4 GH20802p 12.56 6 12 6 74684.79643999999 67735.60093 +Q9W3M7 RNA helicase 9.1 8 19 8 40473.138699999996 35224.06719 +Q9W3M8 LD34211p 32.16 7 17 7 154460.44308 123870.00655 +Q9W3N1 RH59310p 7.17 2 3 2 14083.5702 10185.0 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 273421.48744 136360.11238 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 37.56 13 35 13 571842.23118 370760.542 +Q9W3Q0 FI07418p 18.35 4 11 3 11377.719799999999 9699.664639999999 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 7.14 3 5 3 78056.563 60335.2456 +Q9W3S3 LP10445p 10.27 1 4 1 337.41934 0.0 +Q9W3T2 Coiled-coil domain-containing protein 25 18.66 5 11 5 59172.46303 47754.65149 +Q9W3T9 GM01152p 50.42 10 21 10 197799.91755 171557.25906 +Q9W3U9 CG14434-PA 36.9 6 15 0 59483.7941 39668.444 +Q9W3V2 FI19713p1 4.82 4 5 4 20919.62423 11004.8069 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 6.6 2 5 2 9978.0414 2473.63875 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 9.59 2 6 2 57664.867959999996 42266.6936 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 58 10 2530169.3324 1942689.11593 +Q9W3X8 RH42690p 13.47 5 10 5 15881.69333 10278.07442 +Q9W3Y3 Calcyclin-binding protein 27.83 6 12 6 112706.2569 100494.92420000001 +Q9W3Z4 GH18625p 2.43 1 3 1 3966.7615 3717.92 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 11 56 11 3253331.25082 2658277.49457 +Q9W403 LD24968p 11.05 6 14 6 29824.41422 21026.08491 +Q9W404 GH10714p 10.34 5 10 4 15132.43183 11013.72776 +Q9W411 Uncharacterized protein, isoform A 20.81 3 4 3 15132.4785 12234.677859999998 +Q9W414 Regulatory particle triple-A ATPase 4 47.86 16 41 11 333596.27194 322195.59194 +Q9W425 Rabconnectin-3A 0.7 3 3 3 17560.0735 11787.444300000001 +Q9W457 Serine hydroxymethyltransferase 33.71 20 77 0 1536228.24719 1246643.40348 +Q9W461 LD23868p 10.93 5 10 5 28429.589359999998 22283.00218 +Q9W482 Lin-52, isoform A 19.11 3 3 3 10677.2811 9607.163 +Q9W483 GH18971p 15.83 5 8 5 41068.742 34535.81576 +Q9W486 LD13361p 5.65 3 4 1 10348.35303 9136.8168 +Q9W499 Large ribosomal subunit protein uL29 12.2 2 11 2 362517.69149999996 258759.1508 +Q9W4A0 GH11193p 24.87 5 10 5 59032.9954 46937.623400000004 +Q9W4A6 Otopetrin-like a, isoform A 3.6 4 4 1 44216.49800000001 28363.809999999998 +Q9W4C2 lysozyme 18.42 4 5 4 64069.5585 48288.0855 +Q9W4I3 Large ribosomal subunit protein uL30m 43.33 8 11 8 86089.3543 63236.34055 +Q9W4J7 Uncharacterized protein 11.79 3 5 3 21141.93723 15280.268660000002 +Q9W4K0 CHOp24, isoform A 36.06 7 24 7 403277.725 363606.86053 +Q9W4M7 Twenty-four, isoform B 2.46 5 7 3 6472.816 6121.752750000001 +Q9W4N8 LD30122p 72.86 14 57 1 3032858.84088 2646649.4529 +Q9W4U2 RH09070p 31.33 6 19 6 114629.09550000001 91413.26438000001 +Q9W4W4 RING-type E3 ubiquitin transferase 6.71 4 5 4 16889.059 10613.592 +Q9W4W5 RE47284p 13.77 5 10 5 90209.2982 75566.06262 +Q9W4W8 Paraplegin, isoform A 15.26 14 34 14 135321.17217 105470.65269 +Q9W4Y1 aralkylamine N-acetyltransferase 25.88 6 13 6 55923.7301 47252.68677 +Q9W4Z1 EG:BACH48C10.5 protein 6.97 9 12 0 20126.668700000002 16950.49088 +Q9W4Z2 Large ribosomal subunit protein uL14m 19.25 4 7 4 13091.01023 13068.19428 +Q9W503 RH61816p 23.76 8 17 8 136198.21606 79215.20427 +Q9W5B4 GH18858p 20.38 6 12 6 587102.5539 527491.93706 +Q9W5B5 Gamma-butyrobetaine dioxygenase 9.61 3 3 3 1035.733 1692.5331 +Q9W5E2 EG:115C2.8 protein 5.64 2 3 2 1852.0176 886.6052 +Q9W5G7 EG:BACR37P7.8 protein 17.32 5 8 0 20742.2479 15575.322540000001 +Q9W5R5 Sarcolemmal membrane-associated protein 6.8 7 9 7 34918.2091 27812.13217 +Q9W5W7 GH19483p 6.06 4 6 4 25140.95622 18156.839939999998 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.51 13 44 13 1022542.98505 803263.3973899999 +Q9W5X0 LD21953p 23.88 5 25 0 35456.4931 26607.348199999997 +Q9XTL2 Jak pathway signal transduction adaptor molecule 8.85 7 11 7 128649.7764 101354.4855 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 26.3 8 14 8 72365.3308 53817.81044 +Q9XYZ9 Glutathione S transferase E12, isoform A 80.27 12 52 12 3533165.5243800003 2693526.2787099998 +Q9XZ19 Uncharacterized protein 5.14 2 3 2 13636.2184 14686.2156 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 30.25 9 22 9 177264.87177 140628.6723 +Q9Y0Y5 Coatomer subunit epsilon 27.78 8 17 8 207393.3917 165960.49533 +Q9Y112 BcDNA.GH10614 54.75 18 86 16 1894578.16091 1473834.14822 +Q9Y114 UBX domain-containing protein 4 30.49 22 52 22 433633.16828 313312.09682 +Q9Y119 BcDNA.GH08860 18.54 16 35 16 495775.90335000004 398368.3814 +Q9Y125 BcDNA.GH08312 25.5 27 141 2 6318858.82867 4524681.90891 +Q9Y128 Ceramide transfer protein 9.65 6 10 3 10184.710869999999 7258.9443200000005 +Q9Y136 Neprilysin-like 21 7.92 6 11 3 21502.846599999997 15687.26544 +Q9Y143 BcDNA.GH05536 50.38 11 64 11 2522369.41764 2114525.2145000002 +Q9Y156 BcDNA.GH02976 14.84 5 5 5 57752.4531 39010.104 +Q9Y162 vesicle-fusing ATPase 26.02 15 42 15 380093.35614 328220.40546 +Q9Y164 BcDNA.GH02439 51.63 16 81 0 3614159.95183 3212965.35424 +Q9Y171 BcDNA.GH02220 4.76 2 5 2 6588.50767 3630.5268800000003 +R9PY51 Uncharacterized protein 34.95 5 42 5 4724991.00607 3302287.2133 +X2J4C1 Synaptotagmin 1, isoform I 51.48 24 139 0 5269219.4392800005 4754115.26222 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.58 11 17 0 71597.2552 56813.84177 +X2J979 Synaptotagmin 1, isoform H 56.45 24 135 1 95803.4579 91846.0146 +X2JAT7 Fasciclin 3, isoform G 16.7 7 28 0 14438.196 9530.299 +X2JAZ3 mitogen-activated protein kinase kinase 15.52 7 10 1 24105.3213 18097.95856 +X2JB48 ADP/ATP translocase 66.22 21 145 1 9662009.18563 8569609.05597 +X2JCY4 Stoned B, isoform H 11.76 13 30 1 99446.422 74627.32915 +X2JDJ5 Multiple edematous wings, isoform F 4.34 5 8 0 22384.66714 16711.2573 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 22.69 9 158 0 17499711.43174 11751136.29936 +X2JEN5 Uncharacterized protein, isoform H 30.54 5 8 3 24582.5594 17386.7444 +X2JKC1 Lipid storage droplet-2, isoform E 35.52 10 28 0 10389.3596 5576.443 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 6.51 2 2 0 4049.32312 4763.14027 +P10674 Fasciclin-1 43.71 29 142 1 1672.3256 2374.2507 +P32865 G protein-coupled receptor kinase 1 2.57 2 2 0 377.7011 0.0 +Q08605 Transcription activator GAGA 6.37 3 3 0 8386.2312 7509.9412 +Q9V3H8 NTF2-related export protein 12.03 2 2 1 7634.4924 5806.114 +Q9V7Y2 Sphingosine-1-phosphate lyase 4.77 3 3 3 14836.833599999998 7075.4153 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.72 3 3 3 364.14743 0.0 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 9582.759 8403.73 +Q9VK68 PITH domain-containing protein CG6153 7.11 2 4 0 2976.27334 1720.347 +Q9VLL3 A-kinase anchor protein 200 22.18 13 38 1 3576.8745 0.0 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 6.15 2 3 2 953.6089 1577.4324 +Q9VVW5 Dual specificity protein phosphatase Mpk3 4.62 2 3 0 10209.357899999999 9065.0296 +Q9VWS2 Nucleoporin Nup35 6.65 3 4 3 16862.9775 13506.575 +Q9W568 Protein halfway 5.56 3 4 0 2612.5707 1755.8911 +Q9Y0Y6 Nuclear receptor-binding protein homolog 3.3 2 4 0 8644.08008 6395.164 +A0A0B4K7U4 Muscleblind, isoform H 2.42 2 4 0 52986.0956 30826.995639999997 +A0A0B4KEZ2 Nervy, isoform D 2.11 2 2 0 2990.4244 2222.17608 +A0A0B4KFE3 Toutatis, isoform F 0.29 1 1 0 390.03558 444.28293 +A0A0B4KFK9 Canoe, isoform F 1.69 3 5 0 9158.82367 5264.4379 +A0A0B4KGN2 MICOS complex subunit MIC60 45.84 36 139 1 59414.883 49297.695 +A0A0B4LGY0 Uncoordinated 115a, isoform H 26.04 20 57 1 23176.438 14977.764 +A0A0S0WPM5 Uncharacterized protein, isoform D 3.57 1 1 0 685.3921 0.0 +A0ACD4DAB9 Bruchpilot, isoform R 51.29 108 368 0 51238.2135 37404.456 +A1Z7M0 Space blanket 5.71 2 4 2 15320.2508 10499.1312 +A8JNQ4 RNA-binding Fox protein 1, isoform I 2.39 2 6 0 38940.4866 25498.851799999997 +B5RJS0 IP20241p 2.69 3 3 0 2518.62318 1702.3955 +E1JJM0 FI20063p1 14.83 10 14 0 71213.9727 56958.92005 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 5.9 2 3 1 9188.1818 5660.860000000001 +M9PEX2 Uncharacterized protein, isoform D 25.93 10 33 1 13648.450100000002 8268.730749999999 +M9PHI0 Hyperkinetic, isoform M 2.03 2 3 0 26313.9674 24004.989 +Q0E8R1 FI07211p 29.47 10 55 0 10705.149 11596.8583 +Q5U0V7 phosphoinositide 5-phosphatase 2.13 3 3 3 448.2574 0.0 +Q6NLA3 V-type proton ATPase subunit a 7.98 8 19 0 108635.10952 77065.94357 +Q7JWH6 RE61424p 6.99 2 3 2 4877.5566 3974.8823 +Q7JZJ3 Cuticular protein 56F 11.98 3 4 3 2127.82986 1357.20396 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 5 3 68106.6574 51109.348710000006 +Q7K1W4 Epoxide hydrolase 4.06 2 2 2 672.1375 399.82397 +Q7KVW1 RE73736p 4.94 3 4 0 23744.1137 15679.4316 +Q7PLV6 FI02158p 1.7 2 2 2 675.99744 931.2808 +Q8I062 GH23305p 80.95 19 194 1 45559.8443 17710.9967 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 3 2 6062.7537999999995 5925.4334 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 2.93 1 1 0 432.2173 459.55652 +Q9I7N2 Nucleoporin NUP42 4.27 2 3 0 4775.7347 2834.32849 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 7.52 2 3 1 18050.237439999997 14680.0455 +Q9VCS2 Short-chain dehydrogenase/reductase 3 2.49 1 3 1 2139.21955 2833.9102 +Q9VG79 Xaa-Pro dipeptidase 4.89 3 3 3 1576.37875 1080.4640200000001 +Q9VHX1 LD44032p 1.41 1 1 1 1997.7101 738.34985 +Q9VKC1 IP16805p 2.72 1 1 1 10790.576 12401.963 +Q9VPY2 Phospholipase A2 activator protein, isoform A 3.43 3 4 3 2727.43516 3318.765 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 5.9 3 4 3 5458.1103 4443.98525 +Q9VTE1 Immediate early response 3-interacting protein 1 16.25 1 1 1 551.0175 0.0 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 13034.325 6916.0919 +Q9VTY1 LD40136p 5.69 2 3 2 1501.30585 1275.1497 +Q9VVU6 Pre-mRNA-processing factor 6 2.15 2 2 2 1832.2251 1945.0956 +Q9VYI2 BRMS1 transcriptional repressor 6.18 2 2 2 2917.19797 835.0309 +Q9W2N5 GH10162p 3.47 2 4 2 5213.79469 3312.92583 +Q9W362 La-related protein 7 1.51 1 2 1 12825.042 10527.3588 +Q9W525 LD08195p 3.8 2 4 1 8909.53328 3128.2844999999998 +P0C919 Molybdopterin synthase sulfur carrier subunit 31.11 3 5 3 10951.2395 10770.16573 +Q24314 Vacuolar protein sorting-associated protein 18 homolog 2.69 3 3 3 1769.6185 2174.5024 +Q9VI58 Terminal uridylyltransferase Tailor 3.39 2 2 0 6874.046 6139.427 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 2 1 11074.9318 5368.398 +A0A0B4JCU7 Matrix metalloproteinase 1, isoform E 5.17 3 3 0 1292.65143 1085.78187 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.31 8 12 0 2964.4546 3062.6602 +A0A6M3Q6Z1 Stambha A, isoform F 1.2 1 1 0 3202.7249 1977.443 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 1.54 1 1 0 6559.3965 3570.2454 +B7YZX9 Uncharacterized protein, isoform B 11.92 2 7 0 53498.0057 44218.362649999995 +M9PCB7 Trailer hitch, isoform G 20.37 10 32 0 59167.62798 40093.21348 +M9PG97 Female sterile (2) ltoPP43, isoform C 2.97 1 2 0 8338.0132 5455.151330000001 +O46231 FI18705p1 66.21 20 67 1 23170.017 16536.942 +Q6IDE2 GH07226p 2.0 1 1 1 18271.158 10507.064 +Q7JVH0 Splicing factor YJU2 2.7 2 2 2 3094.3997 996.69867 +Q7K527 Tetraspanin 6.91 2 2 2 426.96884 0.0 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 3 1 101599.4848 71609.522 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 23 1 2635.43897 2321.2988 +Q8IQ80 GH06117p 1.41 1 3 0 1475.93314 993.8132 +Q9VD61 Sulfhydryl oxidase 4.89 3 3 3 8141.79208 5326.8195000000005 +Q9VJG2 RRM domain-containing protein 5.75 3 3 3 6956.27534 7686.052900000001 +Q9W5C1 RE02292p 1.13 1 1 1 2577.9597 2074.822 +X2J8M7 Supervillin, isoform AD 4.69 15 20 0 0.0 349.7474 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 2.91 2 3 0 11642.993900000001 4922.5873 +Q7KNS3 Lissencephaly-1 homolog 4.14 2 2 0 7337.494 4335.276 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 12.31 2 3 2 10533.398000000001 9723.9686 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 14.65 2 5 0 15797.50581 17759.01338 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 4 1 21397.293 11764.58667 +B7Z0L1 Fasciclin 1, isoform E 45.35 29 143 0 5835932.31564 4618728.67988 +E1JH70 Kank, isoform E 1.18 1 1 0 1926.8701 944.1863 +M9MRD4 Muscle-specific protein 300 kDa, isoform B 3.84 34 44 0 2817.1238 456.36127 +M9NFP1 Jim, isoform E 1.94 2 2 0 6258.22666 6079.6326 +Q7K231 RING-type E3 ubiquitin transferase 1.93 1 1 1 3499.4148 2177.1157 +Q7YZ93 Uncharacterized protein, isoform B 3.14 2 3 0 8389.6875 5392.893 +Q8IQH6 Nebulosa, isoform A 2.12 1 1 0 3060.9822 1580.8403 +Q9VAI2 ADAM10 endopeptidase 1.76 3 3 1 2192.8477000000003 506.16525 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 86092.71187 45231.628699999994 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 5.2 1 1 1 877.259 600.80664 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 52451.9137 36270.2267 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 348527.6 240050.22000000003 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 3 2 7631.863300000001 7115.7399000000005 +Q9VWE8 Actin-related protein 10, isoform A 2.65 1 1 1 0.0 363.35486 +Q9VZF0 LD44732p 3.61 1 1 1 3723.5127 1957.3865 +Q9W249 IP21806p 4.27 2 3 2 3746.6839 2376.949 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 1.97 3 5 0 18401.1283 9874.82554 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 35132.50803 28517.47884 +A0A0B4K7M9 DnaJ homolog l(2)tid, mitochondrial 22.76 10 14 1 966.32605 0.0 +A0A0B4KHR2 BRCA1-associated protein 1.25 1 1 0 3096.7532 2598.9253 +A0A6F7R657 Widerborst, isoform H 13.26 9 30 1 670.6205 591.93933 +D1YSG8 calcium/calmodulin-dependent protein kinase 27.5 14 33 0 55664.8223 51174.3717 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 12.96 13 19 0 12162.596 9884.769 +M9PG37 Cytoplasmic linker protein 190, isoform R 22.3 36 84 1 2092.3672 2472.066 +Q4QPR8 GEO10187p1 19.51 2 2 2 4170.8486 3015.5623 +Q7KB18 Epoxide hydrolase 6.91 2 3 1 3386.6084 4147.4224 +Q8IPL4 Lethal (2) 05714, isoform B 3.32 1 1 0 4515.5874 792.37646 +Q9VAS9 APC-like, isoform A 1.2 3 3 1 1870.3708 1234.0455 +Q9VV37 GEO13385p1 10.1 1 7 1 250889.42265000002 184380.54112 +Q9VVX6 BET1 homolog 6.84 1 1 1 15531.287 12204.771 +Q9W152 RH33060p 5.63 1 2 1 992.9741 654.1801 +P48613 Protein tipE 3.54 1 1 1 0.0 372.18842 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 2 1 5029.649 4472.7124 +Q9W4M9 tRNA (cytosine(34)-C(5))-methyltransferase 3.49 3 3 3 5106.28545 3153.2458 +A0A0B4K7H1 Hulk, isoform M 10.65 12 16 0 4440.7715 3169.484 +B7Z058 Rho GTPase activating protein at 71E, isoform D 3.09 2 2 0 1771.8324 1604.521 +E1JGW3 Ion transport peptide, isoform E 8.33 1 1 0 551.42145 0.0 +M9PDY5 Girdin, isoform C 0.65 1 1 0 389.37988 0.0 +Q0KHU0 Myosin 10A, isoform D 1.59 3 3 0 1783.398 1822.4592 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 1.75 1 2 1 25358.807999999997 22631.629 +Q9VB09 IP04131p 12.1 2 3 2 8864.461599999999 8047.2739 +Q9VHN8 LD37279p 1.54 1 1 1 7609.9395 8287.272 +Q9VIT5 ascorbate ferrireductase (transmembrane) 3.72 1 3 0 22280.625300000003 20514.8918 +Q9VV18 Cuticle protein 16.5 8.24 1 1 1 402.36124 402.01328 +Q9W1X6 GH06673p 2.78 1 1 1 0.0 507.96 +Q9W5E7 LP07417p 11.4 1 1 1 2728.151 1927.9486 +P17917 DNA sliding clamp PCNA 3.08 1 1 1 1573.05 1761.8525 +Q9VMP9 Glucosamine-6-phosphate deaminase 16.12 5 11 0 116333.4875 80907.6838 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 15.59 4 5 0 9567.49492 5546.6797 +A1ZAU6 FI05912p 3.24 2 2 1 598.2041 0.0 +Q0KI97 Protein FMC1 homolog 6.93 1 2 1 16895.536 17730.835199999998 +Q7K3Z8 GH01208p 2.35 1 2 1 2831.3782499999998 2449.8925 +Q9VAN8 FI15955p1 6.08 2 2 2 4728.963 4471.843 +Q9VP66 Uncharacterized protein, isoform L 16.18 8 10 1 15151.5376 12664.398000000001 +Q9VT55 Uncharacterized protein, isoform N 5.45 7 13 0 20301.653 13783.0555 +Q9VV55 GH08429p 3.98 2 3 2 5896.809270000001 4529.459599999999 +Q9W542 LD07342p 1.12 1 1 1 901.4232 552.6769 +Q9W543 Rabconnectin-3B, isoform A 1.18 2 2 2 4419.05824 3961.48823 +Q7JZM8 Large ribosomal subunit protein mL41 6.63 1 1 1 39732.086 27899.613 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 12.08 7 16 1 1231.0210499999998 316.92734 +Q9VTT0 Semaphorin 5c 0.91 1 2 1 13463.8682 10291.777 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 5.48 1 3 1 15382.6253 14360.8186 +A0A0B4LF27 Uncharacterized protein, isoform C 9.34 5 9 0 28598.78067 18017.8297 +A1Z840 Cdc2-related kinase 4.39 2 2 2 416.08887 0.0 +Q9VXD7 GH04692p 5.61 2 3 2 626.2268 526.12396 +Q9W3S4 LD46272p 5.26 2 3 2 7039.8312000000005 5402.56425 +A8JQX3 Nocturnin 3.58 2 2 2 1316.0908 788.756 +A8JNM1 Formin 3, isoform B 1.69 3 3 0 1751.2217 652.2693 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 2 0 1516.5196999999998 1033.71083 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.6 7 9 0 11462.5916 8204.00893 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.85 1 1 0 12559.654 3829.462 +O76857 BCL7-like 13.64 2 3 2 4807.6178 3884.44925 +Q7JY89 RE35124p 25.0 2 5 2 9174.1567 6495.9627 +Q8IML5 V-type proton ATPase subunit a 8.28 8 17 0 1751.0386 806.5097 +Q9VAN1 Reelin domain-containing protein 12.5 2 4 2 5118.99255 3105.4461 +A8JUP7 Serine protease Hayan 2.67 2 3 2 13150.1507 10075.586 +P07664 Serendipity locus protein delta 4.16 2 3 2 17822.015 14573.796400000001 +Q9VGP0 D-aminoacyl-tRNA deacylase 8.86 2 4 2 6854.92797 6941.9847 +L0MPR2 Unc-13, isoform F 0.85 2 2 0 7782.1147 4597.776 +M9MS21 Uncharacterized protein, isoform A 2.77 1 8 0 28508.36372 28556.9832 +Q8IQU7 825-Oak 17.05 2 3 0 22573.5065 15267.6783 +Q9VGM4 LD28119p 3.82 1 1 1 594.40924 462.93518 +M9MRD1 Muscle-specific protein 300 kDa 3.4 44 55 0 98358.11325 79280.18617 +P11996 Larval serum protein 1 beta chain 1.77 2 2 0 4731.9634 4576.1895 +Q9V3J8 Protein will die slowly 3.88 1 2 0 8956.718 6331.658 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 0.0 445.34503 +Q7K0D3 CG12909 protein 6.76 2 3 2 13096.113 12050.0659 +Q9VSK1 GH09510p 1.06 1 1 1 6481.237 5248.163 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 1 1 21233.252 20525.277 +Q9V6Q2 Histone H3-like centromeric protein cid 8.89 2 3 2 567.9066 461.5921 +A0A0B4KGQ7 Uncharacterized protein, isoform D 6.51 2 5 0 10710.24816 7482.4011 +A4V134 calcium/calmodulin-dependent protein kinase 31.24 15 34 1 13724.85 5375.0327 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.53 14 20 0 104214.85461 66038.9945 +Q29R09 LD28546p 3.02 1 1 1 520.44604 0.0 +Q8I0P8 Cuticular protein 65Av 10.81 1 4 1 16210.224699999999 12305.8683 +Q8SXC0 GH10306p 2.86 1 2 1 9889.7756 6499.3277 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 1.35 1 1 1 612.3727 1371.2638 +Q9VQT5 FI01556p 13.92 1 4 1 4485.39783 1814.0488 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 3.53 2 3 2 14011.853 12158.38543 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 3 2 124464.595 43101.3318 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 17493.184 12505.912 +Q9VV29 GEO12576p1 9.68 1 1 0 315.9935 783.2883 +P45884 Attacin-A 5.36 1 1 0 5645.4717 3827.392 +A8JNC7 Dpr-interacting protein delta, isoform D 4.26 2 3 0 2829.58124 2633.5778 +Q9VI70 GPN-loop GTPase 3 7.77 2 3 2 9712.6178 7964.3187 +Q9VV27 MIP11526p 7.63 1 1 1 6611.7227 5949.7827 +O76324 Discs overgrown protein kinase 7.95 2 3 0 1201.9819 718.43677 +Q8MUJ1 Tumor necrosis factor family member eiger 1.93 1 1 1 7074.4204 4071.0774 +O18680 5-aminolevulinate synthase 3.34 2 2 2 2525.721 2157.6533 +Q29QE1 GH15984p 0.57 1 2 0 12770.8815 11987.032799999999 +A0A0B4LGV1 ER membrane protein complex subunit 1 0.77 1 1 0 3324.3018 3223.771 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 10522.3135 10071.9146 +Q9VAW3 glutamine--fructose-6-phosphate transaminase (isomerizing) 1.32 1 1 1 2831.6543 2539.0352 +Q9VEQ0 Xylulose kinase 1.99 1 2 1 4204.40424 3386.13712 +Q9W2Y4 RNA-binding protein NOB1 5.08 2 2 2 198009.5405 169340.50569999998 +Q94900 Glutamate-gated chloride channel 1.97 1 2 0 12000.63064 12952.7961 +Q9VKJ1 MPN domain-containing protein CG4751 0.71 1 1 1 381.00726 0.0 +A0A0B4KI11 Uncharacterized protein, isoform E 2.85 2 3 0 6431.1106 6204.226 +A0A6M3Q6V5 poly(A)-specific ribonuclease 2.64 1 2 0 20238.476000000002 12194.361499999999 +E1JGY7 Hulk, isoform G 10.66 12 17 1 451.3737 479.64136 +Q2PDU0 GEO11169p1 9.84 1 2 1 11179.8585 8440.9709 +Q9VF46 GH25158p 7.34 2 7 2 23190.05383 12941.55542 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 2 1 34724.2145 23638.904 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 6.4 2 2 2 14341.4116 12082.6838 +Q9VYX7 Peptidoglycan-recognition protein SA 9.85 2 2 0 4153.1248000000005 3311.2129000000004 +Q7KST5 L-serine deaminase 5.06 2 2 0 765.65515 606.8027 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.32 1 1 1 507.24243 453.24136 +A8JNU1 adenylate cyclase 1.02 1 3 0 6085.97602 4928.06278 +Q7KVR7 AP-1 complex subunit gamma 1.02 1 1 0 2071.9155 2158.2148 +Q9W2E3 Negative cofactor 2alpha 5.57 2 4 2 19943.826 15075.8145 +Q7JW46 RE25483p 9.0 1 1 0 11072.136 9696.693 +Q7K010 Tetraspanin 8.64 2 4 2 13697.169740000001 9958.00096 +Q9VUR4 FI11905p 19.75 6 14 1 5541.346 5771.2085 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 2076.944 2009.8707 +A0A0B4LGA2 RRM domain-containing protein 4.67 2 3 2 5317.46115 4586.02596 +A8DYU1 GRAM domain containing 1B, isoform D 1.32 2 3 0 3199.0618 2633.5083999999997 +Q9VLR2 Cytidine deaminase 9.41 2 3 2 21235.4492 10075.3876 +P52656 Transcription initiation factor IIA subunit 2 8.49 1 2 1 3051.737 2477.5311 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 4.78 1 1 0 2916.5513 1666.2775 +A8JNV2 Uncharacterized protein 10.71 1 3 1 13679.8095 9910.4907 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 1 1 888.34235 1661.2244 +Q9VRX7 LD29573p 1.32 1 1 1 827.40686 395.12466 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 5.38 2 2 0 21505.097 14263.216 +A1Z7M8 Angiotensin-converting enzyme 2.79 2 2 1 6196.6238 6607.947700000001 +O46099 EG:8D8.2 protein 0.63 1 1 1 3608.6868 2177.3015 +Q7JZZ3 RE03883p 6.99 2 3 2 11414.774300000001 7635.3048 +Q8SWU4 RE25571p 17.08 5 12 1 50204.32316 4893.6852499999995 +Q8SWX4 Aminopeptidase 2.39 2 2 2 989.1944 0.0 +Q9VRA0 Migration and invasion enhancer 1 23.16 2 3 2 25690.989 24064.06 +O16043 Anon1A4 9.84 2 3 2 7463.21918 4564.2519 +Q9VEP0 Regulatory protein zeste 2.17 1 1 1 3750.3918 4024.2031 +Q8SXW3 GV1, isoform B 13.33 2 5 0 45619.459 33119.576499999996 +Q8IRN0 FI06485p 3.21 1 2 1 30841.646 5457.6609 +Q9VHS6 Copper transport protein 6.32 2 3 2 5230.8729 4045.98668 +D8FT19 MIP22288p 4.05 2 3 0 9691.216639999999 6620.7197 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 5.75 1 2 1 10253.175299999999 6708.29375 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 3.23 2 2 2 3546.465 3398.7441 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 0.0 385.93814 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 3.23 1 2 1 1823.4635 575.6269 +Q8ML92 Protein aveugle 10.38 1 1 1 725.21783 451.17654 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 4.99 2 2 0 3306.6316 2455.8408 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 725.56934 765.54407 +Q9VT15 GH14734p 8.33 2 4 2 9462.607 8296.0466 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 439.80356 0.0 +A1A750 GEO11067p1 6.93 1 1 1 8263.264 7097.425 +Q9VF83 LD33178p 4.33 2 4 2 15660.7025 10772.74 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 4 2 41862.915 40167.1385 +Q9W590 Large subunit GTPase 1 homolog 1.49 1 1 0 1471.9086 944.74097 +A0A0B4KEC3 D4, isoform D 4.23 2 2 0 2828.97 1775.4565 +Q9VWA7 Golden goal 0.79 1 3 1 16865.637 27409.023 +M9PCK0 Decima, isoform D 9.87 2 3 0 24205.9389 16119.5256 +Q9VUQ8 DCN1-like protein 1 10.42 2 2 0 15240.305059999999 14514.5392 +Q9VPA9 LD24894p 1.45 1 2 1 5546.2165 4820.8407 +Q9VTG8 Ig-like domain-containing protein 14.37 2 2 2 6700.9141 4599.6853 +Q8IN81 Sex determination protein fruitless 1.47 1 1 0 2375.0962 969.005 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 6.67 1 2 1 11227.351999999999 8398.3057 +Q9VT51 Insulin-like peptide 2 19.71 2 3 2 16614.2083 11413.3211 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 1701.7628 1161.0082 +Q7KV26 Kinase 1.45 1 1 0 3737.439 2406.6238 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 6108.5996 4556.4775 +A0A0B4JCY1 Anoctamin 0.82 1 1 0 27316.818 17713.758 +M9PBB3 Uncharacterized protein, isoform D 2.35 1 1 0 948.1073 1350.608 +Q7K4Y8 GH22690p 3.14 2 2 2 920.84033 763.4131 +Q9VCQ7 LD40758p 2.61 2 3 2 4788.911700000001 3289.2228999999998 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 6241.8239 4223.588 +Q9VDL4 LP04613p 2.72 1 3 1 5497.5886 4624.23366 +Q9VS55 CTCF 2.2 2 3 2 5677.9079 3596.68043 +Q9W1Q4 Uncharacterized protein, isoform D 16.57 4 24 1 459.4289 0.0 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 2521.40485 4078.8864599999997 +Q7K4X4 GH24095p 2.0 1 1 1 571.69745 596.22485 +Q9VJ06 LD05576p 4.55 1 1 1 485.2282 343.69815 +Q9VGE8 Tachykinins 2.42 1 2 0 15409.077 8536.29 +Q29QQ9 Ribosomal RNA-processing protein 42 3.38 1 1 1 670.04016 444.64517 +Q9VR90 Syntaxin 16 3.12 1 1 1 424.224 394.55075 +Q9W4K1 AP-3 complex subunit beta 0.86 1 2 1 2726.4832 603.5471 +P42282 Protein tramtrack, alpha isoform 2.21 2 3 0 14781.691599999998 12228.9343 +Q7YU81 Protein charlatan 0.66 1 2 0 12262.9318 7444.30903 +Q9VHV3 FI02011p 1.5 1 1 1 3320.712 2931.3523 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 2366.1697 849.1941 +Q9VE11 UPF0488 protein CG14286 10.0 2 3 2 6168.8767 3288.7492 +Q7K8Y3 IP16419p 17.86 7 17 0 30574.58514 28516.227590000002 +Q8STG9 DSec61alpha 4.2 2 3 2 4393.933730000001 525.4241 +Q8IGV3 RE23632p 6.34 2 2 2 438.59827 474.59512 +P22812 Protein Tube 3.9 2 2 2 5642.9868 4467.1645 +Q9VJ45 UDP-glucuronosyltransferase 3.48 2 2 2 1096.8540699999999 560.3272 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 2132.886 3829.2153 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 29194.16 15603.67 +Q9VZX8 AT02196p 2.89 1 1 1 768.46344 1011.98126 +Q9W0M0 Dodecenoyl-CoA delta-isomerase 6.49 2 2 2 8213.6679 5553.901099999999 +Q8T088 WD repeat-containing protein 55 homolog 1.81 1 1 1 6865.056 6121.201 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 3.9 1 2 0 17480.0732 9757.2533 +Q7YZA2 Uncharacterized protein CG7065 0.81 1 1 1 757.4536 0.0 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 6283.8384 5206.6606 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 2712.9759400000003 3315.0913 +Q9W3F7 Mitoguardin 4.19 2 3 2 1485.00286 381.5602 +A1Z814 Oxysterol-binding protein 1.02 1 1 0 8253.228 5442.275 +Q9W4F9 IP01388p 3.65 2 3 0 2868.2992600000002 2255.896 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 1.77 1 1 0 3650.9863 2110.0483 +Q7KMJ6 RNA-binding protein spenito 1.13 1 1 1 689.10486 416.30676 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 5893.8786 4244.1177 +A1ZAX6 FI02012p 1.2 1 1 0 1537.813 976.64294 +F0JAQ9 MIP27169p 5.85 2 3 0 813.13904 688.6069 +P18289 Transcription factor Jra 3.11 1 1 0 17354.768 8179.0566 +Q9VMX1 KIF-binding protein 2.83 2 2 2 8683.80603 8253.681 +Q7K0F7 Carbonyl reductase, isoform A 4.51 2 3 2 8364.1201 7691.011199999999 +O18405 Surfeit locus protein 4 homolog 7.04 2 2 2 1785.9775 935.87286 +Q9VR55 LD29159p 8.71 1 3 1 10219.2962 7432.558599999999 +Q9VHH7 Adenosine deaminase-like protein 2.37 1 1 1 809.72284 873.14 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 4.42 1 1 0 3819.872 2956.9243 +Q9BLX1 PDGF- and VEGF-related factor 1, isoform B 7.64 2 2 0 922.7309700000001 1033.84376 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 516.8937 0.0 +Q95RQ8 Zinc finger protein pita 2.34 2 6 2 40434.615399999995 28884.2183 +Q8IR92 Uncharacterized protein, isoform A 8.58 7 12 0 878.19556 905.141 +Q7KVT8 Orion, isoform B 3.1 2 2 0 3426.7776 2708.4246 +Q9VV26 GEO12049p1 6.84 1 4 1 36687.18 25837.967399999998 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 492.95428 359.81683 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 388.73172 633.25824 +A1Z971 Uncharacterized protein, isoform A 1.0 1 1 1 4765.0415 569.96204 +Q9VX14 RH64870p 6.47 1 1 0 532.5069 647.6554 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 4 0 21107.6342 13788.748099999999 +Q8MKL1 UPF0598 protein CG30010 4.79 1 1 0 4811.353 4094.2725 +Q9W3C8 Carbonic anhydrase 3, isoform A 4.4 1 2 1 842.9389 981.93787 +M9PGK3 Uncharacterized protein, isoform I 1.54 2 3 0 1221.79214 1366.8265999999999 +Q9VH09 Glycine cleavage system P protein 0.91 1 2 1 5537.196099999999 2840.48974 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 10371.903 7728.1816 +A1ZAG3 Protein G12 8.33 1 2 1 1999.92317 1424.4596299999998 +Q9W452 Peptidase S1 domain-containing protein 2.61 1 1 1 10086.2295 7843.5356 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 28713.9891 15166.54163 +Q7K1R6 LD46221p 7.98 2 3 2 2470.39205 1806.1344 +A0A0B4JCQ5 phosphatidate phosphatase 5.24 6 8 0 39139.9078 30974.170299999998 +Q6IJE8 HDC15077 17.04 2 5 2 79971.8672 51439.48155 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 3 0 528.69946 392.30655 +Q9VVI0 SD09427p 1.81 1 1 1 3124.9858 2331.3406 +A0A0B4KH70 Trivet, isoform F 4.22 2 2 0 11431.558 5978.75486 +E1JIN2 Beaten path IIb, isoform C 1.98 1 2 0 16319.488 13026.6321 +Q9VYI6 Coenzyme Q8 1.21 1 1 1 8693.034 6805.3296 +Q9VYX5 Transmembrane protein 242 5.48 1 1 1 1991.099 498.61896 +Q9W494 Crossveinless 8.17 2 4 2 14983.0047 12044.6075 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 3434.6973 2150.521 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 3 0 6501.8369999999995 4116.68203 +A0A0B4K6Y7 Polychaetoid, isoform O 2.59 6 7 0 28395.1719 21622.1417 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 65.12 25 150 0 2104.6758 997.42163 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 2 1 2776.7734 3103.8765 +Q95NH6 Attacin-C 6.64 2 2 2 5277.5195 3850.5093 +Q9VZR2 Drosomycin-like 5 34.78 2 2 1 37126.297 31034.543 +Q8ST83 Polycomb protein PHO 2.31 1 1 1 421.8193 0.0 +Q8MRQ1 GH06222p 1.49 1 1 0 765.0029 2157.701 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 2.14 1 1 0 2012.926 1528.3176 +Q9VPR6 Kinase 2.59 1 1 1 1000.3621 868.40564 +Q7KRY6 Nucleosomal histone kinase 1 1.34 1 1 0 2152.119 1704.5515 +M9PEL6 Geranylgeranyl transferase type-1 subunit beta 3.99 2 3 0 4178.3773 5004.8991 +Q9W0F9 Mitochondrial assembly of ribosomal large subunit protein 1 7.88 2 3 2 15744.267 13027.4476 +Q8WSF3 Probable beta-hexosaminidase fdl 2.12 2 2 0 0.0 481.28345 +Q9VMQ6 Cytochrome c oxidase assembly protein COX11, mitochondrial 4.15 1 2 1 956.77063 0.0 +Q9W547 Large ribosomal subunit protein uL16m 3.29 1 1 1 647.3168 0.0 +E1JJS1 glutathione transferase 2.61 1 1 0 571.859 1605.7899 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 3.95 2 2 2 3563.4948 2542.86904 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 3.9 1 1 1 747.9624 0.0 +Q9VAM2 Aminopeptidase 2.71 2 2 2 1687.391 634.11475 +M9PEU6 Uncharacterized protein, isoform F 2.38 2 2 0 906.2604 612.7631 +Q9VC27 Nicastrin 1.15 1 1 0 6713.7207 4399.3813 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 2306.5044 547.8619 +Q9VSP9 Acyl-CoA binding protein 5 9.76 1 1 1 3274.5408 3510.832 +Q9TVQ5 Transcription elongation factor SPT4 13.79 2 4 2 9058.388630000001 3727.1282 +E1JIS4 Uncharacterized protein 13.33 2 2 2 4352.47286 2121.5771 +Q7K2B0 Ribosomal RNA-processing protein 8 6.15 2 2 2 7976.331 6917.466 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 8.84 2 3 0 4547.4786 1320.7565399999999 +A1ZAI5 Putative fatty acyl-CoA reductase CG5065 4.16 2 2 0 1094.43439 0.0 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 2 0 0.0 528.5394 +A0A0S0WIE7 Glutamate receptor IB, isoform D 0.81 1 2 0 3412.4247 3349.149 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 3619.485 2041.1665 +Q7JX82 GH21964p 6.85 2 3 2 821.1718599999999 825.9918 +Q7K490 SD03973p 4.07 2 2 2 1479.5669 644.78796 +Q9VP69 ADP-ribose glycohydrolase OARD1 7.84 1 1 0 556.83185 0.0 +Q7KE33 Odorant binding protein c 9.4 1 1 1 888.52057 1608.8893 +Q7YTZ0 GH09436p 2.16 1 1 0 891.0645 954.3413 +A0A0B4LG67 Uncharacterized protein, isoform E 4.2 2 3 0 831.0578 0.0 +O76876 Protein sex-lethal 3.71 2 3 0 10700.62 7868.510399999999 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 88531.2 72060.32 +M9PGK1 Glycosyltransferase family 92 protein 3.52 2 2 0 444.89893 0.0 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 3 0 5789.5232 5588.9220000000005 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 18651.668 11710.792 +Q02936 Protein hedgehog 2.34 1 1 1 5745.2617 2730.8662 +Q6NN09 ATPase protein 9 5.07 1 11 1 271590.3141 158669.00154 +O76874 SD17974p 1.93 2 3 2 1803.3564099999999 1285.1621599999999 +Q9VEB2 LD28404p 8.58 2 2 2 28317.89 20216.855 +A0A9F2H0X3 Sidestep II, isoform C 0.75 1 1 0 0.0 451.35284 +Q9VGL2 GM08392p 2.65 1 1 1 7929.0186 3079.827 +Q9W541 Translation initiation factor eIF2B subunit epsilon 1.2 1 1 1 0.0 336.96024 +Q9VB59 Filamin-A 8.86 2 2 2 443.42264 0.0 +P41964 Drosomycin 31.43 2 2 0 19819.82644 14167.124 +Q9VAX9 MIP05919p 7.94 2 2 2 19305.322 18621.322 +Q9VGH7 Chloride channel protein 2 1.26 2 6 2 2681.2158 1771.1256 +A0A0B4K7P8 Short stop, isoform Z 7.29 41 50 0 2446.6098 595.66235 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 3143.9446 2285.6907 +Q58CJ5 GH01093p 2.34 2 2 0 20044.703 6498.478 +P10735 Small ribosomal subunit protein uS12m 5.71 1 3 0 62228.253 46439.9 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 3.94 2 3 2 8810.6867 4544.98584 +Q9VK20 LD18447p 4.59 2 3 2 4921.10506 3454.80975 +Q7KQM8 Uncharacterized protein, isoform D 6.92 2 2 0 47318.103500000005 45106.7997 +Q9VU87 Vacuolar protein-sorting-associated protein 36 4.51 2 2 2 3664.12953 2916.166 +Q9VX38 CG8326-PA 6.33 2 2 2 55942.52463 42883.048859999995 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 497.2432 568.6676 +Q9VDY6 RNA polymerase II subunit M 2.45 1 2 1 1862.713 1004.81283 +Q9V426 LD07162p 5.51 2 3 2 1550.45191 0.0 +Q0E985 RH74701p 13.33 1 1 1 4046.6384 5221.1606 +Q9VCC2 RE50040p 4.86 2 2 2 29648.444 21005.917 +M9PEX7 Leucine-rich repeat-containing protein 59 2.14 1 1 0 0.0 642.4129 +P04657 Cytochrome c-1 17.14 2 11 0 14980.4468 9970.1549 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 1.95 1 1 1 2711.3198 1763.1654 +Q02926 Ribonucleoprotein RB97D 2.97 2 4 0 3994.4784600000003 4298.30567 +Q9VF10 F-box and leucine-rich repeat protein 7 4.4 1 1 1 504.14062 0.0 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 7.85 2 2 2 19515.8333 14063.027 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 2489.933 2776.7808 +Q9VWF5 N-alpha-acetyltransferase 20 5.71 1 2 1 5737.8473 4461.0587 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 3371.5466 2536.0222 +Q4U2G8 FXNA-like protease 1.8 2 3 0 819.96533 2014.7489 +Q9W123 Protein painting of fourth 3.64 2 3 0 0.0 656.36115 +Q9W2C9 Lysyl oxidase-like 2 3.33 2 2 2 11444.134699999999 7324.5043000000005 +Q9VGZ2 FI06805p 3.86 1 2 1 13547.458 9380.4125 +Q7JY80 M-spondin, isoform A 2.0 1 1 1 322.9612 0.0 +Q9V785 SH3 domain-binding protein 5 homolog 1.47 1 2 1 2697.7608 1526.82769 +E1JHX0 MIP29328p 3.76 1 1 1 8391.319 5704.6577 +Q9V451 Mst85C, isoform A 4.96 1 2 1 7792.6292 6001.4976 +Q9VUX2 E3 ubiquitin-protein ligase mind-bomb 0.98 1 1 1 336.33218 0.0 +D6W4V3 MIP19557p 4.74 1 2 0 2498.8046 1363.5733 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 4417.724 2826.4077 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 577.62427 0.0 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 1.28 2 2 0 8340.5147 7037.5236 +Q9V9R3 adenylate cyclase 0.6 1 1 1 2043.5367 2175.2048 +Q9VX35 LD36501p 5.06 2 2 0 3399.8852 1330.79675 +P39205 Molybdenum cofactor synthesis protein cinnamon 1.33 1 1 1 0.0 628.6579 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 473.01285 0.0 +Q9VUE5 LD17962p 1.45 2 3 1 92270.04526 12947.574499999999 +B8BPV3 Uncharacterized protein, isoform C 0.95 1 1 0 0.0 516.5201 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 3 2 12608.3085 7299.3321000000005 +Q7KJ73 Tetraspanin 3.95 1 1 1 2122.0854 2293.55 +Q9VCZ7 Uncharacterized protein 3.49 1 2 1 7440.95226 7865.28643 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.54 1 1 1 2743.996 2308.4766 +Q8IRK0 GH04558p 1.52 1 1 1 18998.016 13132.794 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 1.91 1 1 1 3235.8325 1691.1149 +Q9VD04 Uncharacterized protein, isoform B 2.85 2 4 1 4620.4775 3210.457 +Q9W1B0 Serine/threonine-protein kinase Genghis Khan 0.55 1 1 1 548.7065 775.45496 +A0A6M3Q6L8 Bruno 3, isoform Q 2.36 1 1 0 15468.562 14960.586 +M9PDX4 Uncharacterized protein, isoform B 3.88 2 2 0 27163.7085 19142.609 +M9PHU0 Uncharacterized protein, isoform C 1.37 1 1 0 2507.493 498.14136 +Q6IIA4 Adenosine 5'-monophosphoramidase HINT3 15.11 2 2 2 4129.394 3089.0742 +P29349 Tyrosine-protein phosphatase corkscrew 1.07 1 1 0 3223.3093 2485.1758 +Q9Y110 BcDNA.GH10711 1.48 1 1 1 3769.9783 2657.604 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 465.08142 0.0 +Q9W1H3 FI21285p1 3.25 1 1 1 5552.9604 4530.661 +Q9VV21 GEO07736p1 16.26 1 1 1 32261.992 23514.982 +A1Z9J6 Large ribosomal subunit protein mL53 6.45 1 1 1 2032.4052 2253.6953 +Q6II41 HDC19846 30.3 1 1 1 11473.979 3599.1865 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 2200.9292 938.74426 +Q9W2F6 RE36793p 7.09 1 1 1 9743.574 6408.0913 +Q9VPW8 Protein pinocchio 4.42 1 1 1 497.23178 498.88727 +A0A4D6K2J4 Aftiphilin, isoform E 1.38 2 2 0 1749.3561399999999 580.8418 +Q9VDM7 Trimethyllysine dioxygenase, mitochondrial 2.2 1 1 1 0.0 388.54587 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 750.5523700000001 575.1061 +M9PC30 Uncharacterized protein, isoform Q 23.41 7 12 0 87454.8798 66116.16958 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 1 1 4229.633 3312.8262 +O46040 SET domain-containing protein SmydA-8, isoform A 3.9 2 3 0 2484.40624 2715.79712 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 2 1 14221.302399999999 12198.7697 +A8DYV9 GEO02589p1 10.53 1 2 1 11496.9352 9996.2147 +Q9VY47 phosphatidylinositol-3,4-bisphosphate 4-phosphatase 1.48 2 2 1 2954.9585 682.8336 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 7723.5537 8053.482 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 20.45 2 3 1 4876.74966 2741.34817 +Q7K1H9 GH07575p 3.69 1 3 1 2434.54504 2814.92673 +A0A0B4KFZ1 Entomoglyceroporin 4, isoform F 5.72 2 2 0 19364.9513 17296.168 +Q7JQN4 RNA helicase 1.66 1 1 1 621.46484 942.8345 +Q7KPG8 CDK-activating kinase assembly factor MAT1 3.44 1 1 1 1773.4595 698.0612 +B7Z0J4 COX assembly mitochondrial protein 13.75 1 1 1 2199.2825 875.05096 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 2 1 408.3344 0.0 +Q9VEA6 Protein AAR2 homolog 3.17 1 1 1 0.0 511.95505 +Q9VL14 REPTOR-binding partner 7.63 1 2 1 17385.0776 12425.67464 +Q9VGJ7 FI23918p1 1.01 1 1 1 2963.1946 2125.09 +Q8IPS9 Small integral membrane protein 8 10.59 1 3 1 11021.3568 6993.7291000000005 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 0.0 413.14432 +Q24306 Death-associated inhibitor of apoptosis 1 3.2 1 2 0 678.9437 632.42084 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 12505.589 11786.458 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 3 2 66131.791 61174.157 +Q9VMM3 RE17389p 2.61 1 1 1 727.97626 620.1511 +Q9W551 GEO02601p1 7.55 1 1 1 3014.5247 2227.2258 +A1A753 IP17594p 10.11 1 1 1 8713.538 5271.888 +Q9VTG6 Ubiquitin carboxyl-terminal hydrolase MINDY 2.46 1 1 1 423.63846 0.0 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 3509.7554 4796.8916 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 2 1 17730.1872 14017.7425 +Q9V8Y9 General odorant-binding protein 56h 7.46 1 2 0 5446.9272 3652.4658 +Q7K3D8 DNA methyltransferase 1-associated protein 1 1.85 1 1 1 992.3763 1657.4076 +A0A0B4K6Z5 GEO13417p1 6.1 1 3 0 23725.051 14141.1905 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 1888.305 970.1957 +Q9BMG9 Beaten path IIa 3.94 2 4 1 7417.8027999999995 7676.1055 +Q95RU0 Protein cueball 1.55 1 1 1 3598.8325 3048.8887 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 2164.374 666.2745 +Q7JY99 glycerol kinase 1.34 1 1 1 0.0 544.28656 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 3.09 2 2 2 101768.57556 66569.09 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 3630.723 509.7008 +Q9VV77 Polycomb group RING finger protein 3 5.41 1 1 1 2423.3447 1772.6099 +Q7JZ37 WD repeat-containing protein 89 3.41 2 2 1 1514.36056 601.4266 +Q8MSW0 Isoleucine--tRNA ligase, cytoplasmic 0.57 1 4 1 190575.0583 141574.19607 +Q9VM63 YEATS domain-containing protein 4 8.37 2 2 2 1633.6918 888.7328 +Q23982 Ejaculatory bulb-specific protein 2 18.18 1 2 0 9770.268 4705.9689 +Q9V3A4 Protein catecholamines up 2.23 1 1 1 11013.599 9805.342 +Q9VZR5 RE46159p 4.02 1 1 1 3135.2568 2166.4973 +Q9VE49 LP06937p 1.3 1 1 1 2198.8848 537.564 +Q9W092 Probable chitinase 2 1.65 1 1 0 1693.1567 579.4708 +Q9VQU0 BPTI/Kunitz inhibitor domain-containing protein 8.53 1 1 1 977.82104 628.8648 +Q8T092 LD21421p 2.45 1 2 1 3170.4248399999997 614.19556 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 2 0 1590.6234 1181.89408 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 2 0 6000.836 4482.6777 +Q7K4G8 LD40944p 1.7 1 1 1 913.6649 719.5886 +M9MSG2 Uncharacterized protein, isoform B 15.87 1 1 0 6253.545 5459.597 +Q9VBA5 GM18993p 2.15 1 1 1 1825.7767 1923.5095 +Q9VKE7 GH09228p1 10.39 1 2 1 2285.1879 954.24832 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 576.1803 0.0 +Q7KA66 Serpin 43Aa 2.56 1 2 1 4645.7098 2796.5724 +M9PDB0 Bruno 1, isoform H 1.4 1 2 0 5038.2914 3602.2001 +Q9VVJ6 Keren 4.61 1 1 1 305.66196 505.81332 +Q24368 Chromatin-remodeling complex ATPase chain Iswi 0.97 1 1 1 13322.4375 8325.36 +A8DYW8 Rap GTPase activating protein 1, isoform H 1.15 1 1 0 1832.4548 903.38794 +Q9VV28 Neuropeptide-like 3 12.22 1 2 1 5108.0093 2525.1045 +Q95RC0 N-alpha-acetyltransferase 30A 2.92 1 1 0 14718.069 11181.75 +B9A0N7 BTB domain-containing protein 2.69 1 1 1 3013.3643 1770.959 +Q8SXY1 Hadley, isoform A 4.51 2 4 1 4783.0917 4124.2168599999995 +Q9VJM4 Beaten path Ic 2.25 1 1 1 3748.472 2374.6375 +Q6NMT8 AT01712p 1.8 1 1 1 30727.652 2024.7375 +M9PHP7 Faulty attraction, isoform F 0.84 1 1 1 615.0886 349.05136 +Q9VX17 LD36024p 3.1 1 1 1 2263.0815 2184.4382 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 1872.6033 659.739 +A0A0B4K682 Javelin-like, isoform D 0.91 1 1 0 320.019 0.0 +A1ZB29 Thymidylate kinase 5.21 1 1 1 385.52402 526.80853 +Q9VMI8 Metallo-beta-lactamase domain-containing protein 1 4.39 1 1 1 4884.0845 4132.8354 +P36192 Defensin 8.7 1 3 1 46540.854999999996 30339.2435 +M9PHL2 Heterochromatin protein 5, isoform C 3.11 1 1 0 3787.2925 2578.6619 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 2 1 6024.752399999999 4523.8922 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 2 0 2010.30104 1935.2357299999999 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 2 1 214850.14 150526.926 +Q0E908 Hillarin 0.86 1 1 1 724.5742 504.25708 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 3 1 268331.874 225728.547 +Q5BIL9 SD21168p 1.63 1 2 0 9310.774 6831.6303 +O61345 Protein penguin 1.76 1 1 1 2309.4155 751.6064 +A1Z6H0 Kune-kune 2.65 1 4 1 25912.1761 16592.688000000002 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 3 0 2719.1243999999997 4009.93995 +Q9VXY5 Cytochrome c oxidase copper chaperone 10.23 1 3 1 6862.1539999999995 3838.5096 +A0A6H2EG63 Twin of eyeless, isoform D 1.53 1 2 0 3206.42625 2212.9246 +Q9VG84 DNA ligase 1.12 1 1 1 457.21057 384.64334 +Q9VAP8 alpha-1,2-Mannosidase 1.02 1 1 1 4558.494 2487.3699 +Q9VHJ4 GH04846p 2.25 1 1 1 4206.6655 3388.459 +Q9W226 GEO07239p1 5.88 1 2 1 10631.4719 5579.4715 +Q2PDQ6 Seminal fluid protein 7.14 1 2 1 2704.6194 1473.7809 +Q9VC52 Protoporphyrinogen oxidase 1.68 1 1 1 2898.6592 2664.845 +Q9I7U1 LD36721p 5.29 1 1 0 12190.797 8768.305 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 3517.2754 3266.792 +A0A4D6K1E7 Uncharacterized protein, isoform J 3.3 1 2 0 103205.935 76860.3687 +A0A0B4KEC2 Uncharacterized protein, isoform C 2.13 1 2 0 20596.3813 16673.97204 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 534.1735 795.44916 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 0.0 591.4304 +Q9V412 STING ER exit protein 4.45 1 1 0 692.2771 0.0 +Q9VVG4 Exocyst complex component 1 1.01 1 1 1 384.4378 0.0 +A0A0B4LIM4 Uncharacterized protein, isoform B 1.03 1 1 0 346.19693 342.32547 +Q8MRQ2 GH05923p 2.74 1 1 0 4153.9736 5818.786 +Q8SY53 GH11935p 2.73 1 2 1 3975.0586599999997 2940.52 +Q7JVN6 GH17672p 2.24 1 2 1 4919.7873 4810.7931 +A1Z9W2 RH47216p 3.75 1 1 1 0.0 783.2418 +Q8IRM2 Uncharacterized protein, isoform D 2.66 1 1 0 700.73285 654.7741 +Q9VDZ9 FI04548p 5.49 1 1 1 417.84308 537.97974 +Q6XPX3 Phospholipase A2 4.3 1 1 1 7892.427 6966.988 +Q95U54 MMS19 nucleotide excision repair protein 1.15 1 2 1 2033.6328 722.1054 +Q9VGW5 GEO08194p1 5.8 1 1 1 2675.4697 2200.0786 +Q8SYR5 GEO07715p1 7.1 1 1 1 736.8117 683.6266 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 826.8976 648.4929 +Q9VJV8 DNA polymerase subunit gamma-2, mitochondrial 2.77 1 1 1 939.5777 599.1248 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 433.8559 0.0 +A0A0B4LHK8 Uncharacterized protein, isoform D 2.93 1 2 0 444.8408 521.6443 +O77237 Protein pellino 1.65 1 1 0 4040.8975 2188.8042 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 3 1 13740.4922 10635.6636 +Q02870 General transcription and DNA repair factor IIH helicase/translocase subunit XPB 4.39 1 1 0 886.45374 653.9042 +Q7KUD5 Insulin-like peptide 5 7.41 1 2 1 22767.929 15366.217 +Q9V9X7 polyribonucleotide nucleotidyltransferase 1.3 1 1 1 613.0201 518.2411 +Q9VGG0 LD47774p 1.67 1 1 1 597.66974 790.3202 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 10 1 927.4524 0.0 +L0MLI5 Uncharacterized protein, isoform D 1.63 1 1 0 37512.906 19419.94 +Q8SWR2 Bicaudal D-related protein homolog 1.94 1 1 1 614.34436 515.9328 +Q9W1H1 GH17155p 3.28 1 1 1 2385.2478 544.3777 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 2 0 0.0 445.69498 +A0A0B4K8A8 Uncharacterized protein, isoform B 5.97 1 1 0 37024.047 24193.758 +Q9VKX8 Defective proboscis extension response 19, isoform A 2.86 1 1 1 557.5386 0.0 +Q4V3U8 IP10038p 2.76 1 1 1 669.0187 0.0 +Q9VLK4 Diuretic hormone class 2 6.9 1 2 0 20457.5515 16488.0147 +Q9VB21 Uncharacterized protein 0.6 1 1 1 829.61774 520.8084 +Q4V6L7 IP04672p 6.72 1 1 1 959.74304 467.73264 +Q9VBI0 Pre-rRNA-processing protein TSR2 homolog 5.13 1 1 1 1735.3739 1585.4652 +Q9VXY2 MAP kinase-activating death domain protein 0.91 2 2 0 501.07156 0.0 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 1 1 3854.2695 3123.4172 +A1A6X2 IP16893p 12.07 1 1 1 2791.012 2020.857 +Q8MZ28 GEO09656p1 8.16 1 1 1 455.88693 640.364 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 2 0 8171.5206 5850.84423 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 389.91357 0.0 +Q9VJ16 GH26014p 2.96 1 1 1 1824.389 931.4145 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 2 0 1711.8188 1461.2404 +A0A0B4KHH6 KAT8 regulatory NSL complex subunit 2 2.12 1 1 0 14946.346 8785.48 +Q9V4I1 Cytochrome P450 9b2 2.18 1 1 1 1384.8231 516.4639 +Q0E8F2 Mitochondrial adenyl nucleotide antiporter SCaMC 1.37 1 2 0 11430.067299999999 11432.245299999999 +Q9VSF4 Probable deoxyhypusine synthase 2.72 1 1 1 624.87946 638.12836 +Q9VX71 Uncharacterized protein 5.2 1 2 1 11778.332699999999 9433.7693 +Q6IKC0 HDC12925 14.29 1 1 1 4236.0723 3735.0068 +Q8IQ51 trypsin 3.05 1 1 1 3641.7664 2922.709 +Q9VLG0 Sex-regulated protein janus-B 6.16 1 1 1 0.0 507.25854 +Q9VE10 Uncharacterized protein 2.69 1 1 1 1538.2887 967.08594 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 2 1 654.9831 0.0 +A0A0B4K6S3 Uncharacterized protein 5.79 1 2 1 1819.3491 1311.9281999999998 +Q9VEM0 RE41712p 5.62 1 1 1 851.4102 435.82498 +Q9W081 AT01075p 2.34 1 1 1 668.77185 553.0204 +Q9VJ08 LD29741p 1.48 1 1 1 0.0 520.6685 +Q8SXX2 Angiotensin-converting enzyme 1.07 1 1 1 344.7749 719.52856 +A0A0B4KHQ8 Microtubule-associated protein 4.01 1 1 0 1806.0734 588.61255 +Q9W328 Protein LST8 homolog 2.56 1 2 1 4974.315 4843.342 +B7Z048 Dyschronic, isoform E 1.04 1 2 0 1202.9826400000002 720.1664 +Q6NR46 Serine palmitoyltransferase 1 1.5 1 1 1 4653.3086 0.0 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 0.0 424.70453 +Q9VD92 Protein archease-like 5.77 1 1 1 356.04306 864.7641 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 2 0 754.32166 456.40552 +A0A6H2EJZ8 Headbutt, isoform E 1.1 1 1 0 1585.8845 723.2622 +Q8SZ87 Thioredoxin-like protein 4.93 1 3 1 28025.61336 17177.2076 +Q9VDB8 RH37844p 8.42 1 1 1 6555.3467 3871.2122 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 2 1 30098.815000000002 32382.428 +M9PIC9 Spc105-related, isoform B 0.41 1 1 0 505.73862 0.0 +Q8SZB7 RE07960p 3.12 1 2 1 12287.4464 12303.43 +Q9VFX8 FI14740p 2.51 1 1 1 1647.1365 830.1896 +E1JH94 GEO02631p1 7.03 1 1 1 2376.2158 599.2666 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 4510.617 2392.8936 +Q7JWF7 RH26557p 5.11 1 1 1 6394.6846 5983.7314 +Q9W2L2 LD27118p 0.67 1 1 1 788.88434 629.0182 +Q9VLL8 Peritrophin-15a 7.61 1 1 1 9998.419 9458.026 +Q9VFE6 RRP15-like protein 3.26 1 1 1 1735.9904 1428.2416 +Q7JXV9 Vacuolar protein-sorting-associated protein 25 5.17 1 1 1 1651.3987 509.22067 +Q9VJU2 Nimrod C3 3.12 1 2 1 11961.1955 8615.901399999999 +Q9W3Q2 SD08447p 1.26 1 1 1 3748.611 5336.582 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 690.0026 718.21326 +Q9VAQ3 GH18608p 2.19 1 2 1 1558.1184 1790.4645 +A1Z979 Salivary secreted peptide 6.25 1 2 0 6384.8315 4742.696 +A0A0B4LFH8 ATP-citrate synthase 8.49 11 17 0 143711.2096 137152.9512 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 58.9 18 121 0 20887.165 11271.28873 +M9MRN1 Supervillin, isoform AG 5.72 10 13 0 107070.0926 79585.09618 +M9MRN5 Supervillin, isoform G 3.36 6 8 0 12212.94132 6724.105820000001 +M9PC24 Uncharacterized protein, isoform K 14.54 7 13 0 29621.5439 20996.27774 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTb.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTb.txt new file mode 100644 index 0000000..0cad093 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTb.txt @@ -0,0 +1,3844 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F5: 130C, Sample, n/a, ctrl_pool_1 Abundance: F5: 131, Sample, n/a, ctrl_pool_2 Modifications +A0A0B4K692 Neprilysin-2 5.43 4 5 4 27667.6968 36730.625 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 3.16 7 9 7 68289.5736 66736.40144 +A0A0B4KGY6 RNA-binding protein Pasilla 26.79 19 67 19 2835810.41149 3274809.28642 +A0A0B7P9G0 Unextended protein 3.96 3 3 3 4553.9712 5199.2725 +A0A126GUP6 Melanization protease 1 25.5 8 12 7 79457.9226 88369.8105 +A0A1F4 Protein eyes shut 12.13 24 45 0 898652.0064 1011417.6401 +A1Z6H7 Nuclear pore membrane glycoprotein 210 0.48 1 1 1 5075.0723 6669.156 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 18.11 11 17 9 178864.9642 205956.7337 +A1Z713 Intermembrane lipid transfer protein Vps13 0.39 1 1 1 752.52356 855.9148 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 3.92 2 2 0 10486.1654 9979.1646 +A1Z877 Nidogen 18.37 23 35 23 453601.2367 474213.64639999997 +A1Z897 Succinate dehydrogenase assembly factor 2-B, mitochondrial 31.41 2 3 0 41105.1434 55857.3805 +A1Z8D0 Periodic tryptophan protein 1 homolog 3.92 2 2 2 33558.309 50955.5024 +A1Z8P9 Nucleoprotein TPR 20.29 45 54 0 762655.70922 895144.28087 +A1Z9A2 UPF0587 protein CG4646 36.2 6 8 0 156682.50335999997 205729.83975 +A1Z9A8 Small ribosomal subunit protein mS39 7.67 5 6 5 66120.5967 74880.9113 +A1Z9E2 Protein lin-54 homolog 8.95 9 9 0 123633.652 125141.568 +A1ZA47 PDZ and LIM domain protein Zasp 25.71 45 119 0 94567.63385 123367.16003 +A1ZA77 Transmembrane protein 208 6.9 1 3 1 40698.4694 57852.0933 +A1ZAJ2 Kinesin-like protein unc-104 1.32 2 2 0 7816.78025 10967.1134 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 5.71 6 6 0 99184.0995 100428.4933 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 4.37 1 1 1 6447.4272 10056.607 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 1.71 1 1 1 3292.6467 3632.0852 +A4VCL2 Extracellular serine/threonine protein CG31145 2.08 1 1 0 12255.325 12138.767 +A8DYH2 Ubiquitin-fold modifier 1 49.43 4 11 0 304807.205 459536.2773 +A8DYP0 Protein Obscurin 1.38 6 8 6 49366.0712 46895.729 +B7YZT2 Mitochondrial fission 1 protein 44.81 7 12 7 347548.37 413386.0834 +C0HK92 Uncharacterized protein CG45076 57.19 35 108 0 3911607.3535 4011647.89997 +C0HK94 Uncharacterized protein CG45078 67.48 12 27 10 327633.49916 341748.0299 +C0HK95 Protein anoxia up-regulated 85.5 11 57 9 1709456.5107 1647677.35997 +C0HKA0 Small ribosomal subunit protein uS11A 46.36 7 25 0 847398.5464000001 963828.6842199999 +C0HL62 Larval cuticle protein 65Ab1 22.12 2 3 0 118568.057 166290.32499999998 +C0HL66 Histone H3.3A 52.21 6 31 0 33571.559 27403.438000000002 +C0HLZ9 Baramicin A1 12.45 3 4 0 114468.55799999999 106577.172 +C4NYP8 Hsc70-interacting protein 1 36.07 13 29 0 808849.80266 967177.9874999999 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 11.49 8 12 0 160987.2782 190783.8639 +M9NDE3 Protein bark beetle 2.08 7 7 7 38601.0535 46238.54355 +M9PF61 Aldo-keto reductase 1B 51.71 18 74 18 4687524.3188 5718432.1069 +M9PFN0 Phosphatase Herzog 26.42 7 11 7 75222.598 135103.1555 +O01367 Protein held out wings 10.37 3 4 0 23520.9578 31635.4908 +O01382 Caspase drICE 12.68 4 4 4 8829.609499999999 9018.8171 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 13.15 4 12 0 182788.6597 263641.0796 +O01666 ATP synthase subunit gamma, mitochondrial 61.95 20 106 20 5127907.40672 5783508.0459199995 +O02194 Presenilin homolog 5.73 3 3 0 12122.23528 12262.2111 +O02195 Eukaryotic translation initiation factor 3 subunit I 27.61 7 12 7 160789.4011 156527.2125 +O02649 Heat shock protein 60A 65.1 34 143 23 7441947.4677099995 9283384.01107 +O15943 Neural-cadherin 14.01 44 66 2 1185818.34703 1338656.0336 +O16797 Large ribosomal subunit protein uL3 13.7 6 9 6 207702.3917 214748.227 +O17444 Vesicular acetylcholine transporter 10.03 5 6 5 17746.709779999997 23537.824500000002 +O17445 Large ribosomal subunit protein eL15 14.22 3 6 0 125446.863 126140.3616 +O18333 Ras-related protein Rab-2 24.41 6 11 6 281008.10730000003 298113.5714 +O18334 Ras-related protein Rab6 33.65 8 12 0 84978.3481 92472.5565 +O18373 Inactive selenide, water dikinase-like protein 16.33 8 17 8 439901.48864 498876.03935 +O18388 Importin subunit beta 2.26 2 2 0 13417.653 6155.7077 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 79.22 16 133 16 7960545.13885 9652431.30435 +O18413 26S proteasome regulatory subunit 8 45.68 18 36 6 460104.60396 562285.9595 +O18640 Small ribosomal subunit protein RACK1 22.64 8 13 0 567241.6769 643292.262 +O44081 H/ACA ribonucleoprotein complex subunit 4 2.95 2 2 0 22747.8663 28126.674 +O44342 Protein windbeutel 28.79 7 9 0 111429.44339999999 146281.6641 +O44386 Integrin alpha-PS3 6.1 8 8 8 109004.6666 163854.59530000002 +O46037 Vinculin 55.88 45 103 0 3296512.58807 3405628.84452 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 11.76 3 4 0 30786.5608 31914.7519 +O46098 LYR motif-containing protein 4 homolog 65.22 7 12 7 296840.776 330862.185 +O46106 Splicing factor 3A subunit 3 9.54 4 4 4 98609.55540000001 117425.372 +O46339 Homeobox protein homothorax 4.72 2 2 2 4427.1606 4522.3125 +O61231 Large ribosomal subunit protein uL16 27.06 8 15 0 404898.7954 420875.092 +O61305 DEAD-box helicase Dbp80 3.91 2 3 0 25658.984 32732.375999999997 +O61307 Teneurin-m 0.92 2 2 0 18760.0965 63092.024919999996 +O61443 Mitogen-activated protein kinase p38b 12.88 4 10 3 130682.3829 163382.3039 +O61491 Flotillin-1 45.77 19 45 19 1240165.1367 1584031.7252 +O61722 PRL-1 phosphatase 55.11 7 19 7 807497.5706 858899.5101999999 +O62619 Pyruvate kinase 57.6 24 73 24 3315847.79128 4292416.09874 +O62621 Coatomer subunit beta' 2.84 3 3 3 27733.579 36999.4153 +O76206 Putative riboflavin kinase 55.56 6 17 0 496376.69667 498765.92754 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 6 4 247166.8745 317021.97145 +O76742 Ras-related protein Rab7 36.71 7 10 7 265318.8409 322133.99820000003 +O76878 RILP-like protein homolog 8.35 4 5 0 78589.8925 103398.04550000001 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 27.85 8 10 8 169664.8432 177989.50866999998 +O76927 Small ribosomal subunit protein eS21 50.6 5 14 0 234856.77419999999 275526.2089 +O77051 Transcription factor E2F2 18.65 7 9 0 83240.4921 75251.0859 +O77263 tRNA (guanine-N(7)-)-methyltransferase 12.5 3 4 3 59976.678 79182.71924 +O77277 Torsin-like protein 15.29 6 8 0 133702.26817 94442.74740000001 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.28 4 4 4 65948.3626 78974.5736 +O77460 Inorganic pyrophosphatase 62.72 16 93 1 74438.61 98026.37 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 15.39 15 15 0 281460.22244 337647.52390000003 +O96690 Protein PDF 23.53 1 1 1 6762.2456 7609.6675 +O96827 Probable elongation factor 1-beta 83.78 17 84 0 4104973.00018 4982325.00479 +O97067 Probable peptidyl-tRNA hydrolase 2 26.34 4 7 0 62763.1957 65657.4893 +O97125 Heat shock protein 68 35.28 20 66 13 184670.615 197214.79262999998 +O97172 UPF0729 protein CG18508 21.21 3 5 0 69371.3107 76064.5248 +O97394 Protein sidekick 1.48 3 3 0 22186.574 23162.655 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.82 3 3 3 34810.519 54574.835999999996 +O97477 Inositol-3-phosphate synthase 36.28 15 41 15 1200917.5576 1376753.0479 +P00334 Alcohol dehydrogenase 85.16 20 241 20 15828659.87592 18540899.80293 +P00408 Cytochrome c oxidase subunit 2 33.77 7 20 7 2992112.1347 3621477.1415 +P00522 Tyrosine-protein kinase Abl 3.7 4 4 0 5124.28294 8253.743699999999 +P02255 Histone H1 14.45 3 3 0 34763.987 49426.562 +P02283 Histone H2B 54.47 8 74 8 4433344.0091 3920984.02176 +P02299 Histone H3 52.21 6 34 2 5754735.5838 5925207.6513 +P02515 Heat shock protein 22 32.76 6 14 6 88789.51286 84579.63718 +P02516 Heat shock protein 23 70.97 15 72 0 3493811.7639699997 4040510.22509 +P02517 Heat shock protein 26 58.17 9 19 0 894609.272 1084467.1442 +P02518 Heat shock protein 27 52.11 10 28 0 470204.5553 606706.2014 +P02572 Actin-42A 63.83 25 618 2 52851065.01822 57870721.14843 +P02574 Actin, larval muscle 65.69 27 537 0 380784.5885 381032.8446 +P02828 Heat shock protein 83 59.27 42 143 0 6073099.19034 7263620.68988 +P02843 Vitellogenin-1 73.35 27 218 0 19563933.22287 21130357.65453 +P02844 Vitellogenin-2 67.65 24 169 0 12300297.1196 12845825.22107 +P04197 Myb protein 2.74 2 2 0 15345.3779 18884.82 +P04359 Large ribosomal subunit protein eL32 18.66 3 8 3 926521.704 1127137.693 +P04388 Ras-like protein 2 33.33 5 7 5 40919.8403 46078.15398 +P05031 Aromatic-L-amino-acid decarboxylase 7.06 3 3 3 10786.4894 13226.5371 +P05205 Heterochromatin protein 1 32.52 7 16 7 165551.3285 160727.8233 +P05303 Elongation factor 1-alpha 2 59.74 24 115 0 1372427.8063 1826655.66606 +P05389 Large ribosomal subunit protein P2 29.2 3 18 3 2009205.768 2690092.396 +P05552 Transcription factor Adf-1 12.21 3 3 0 103300.974 102813.385 +P05661 Myosin heavy chain, muscle 53.72 124 410 1 525031.2798 657523.656 +P05812 Heat shock protein 67B1 11.91 5 6 5 80576.764 96734.4863 +P06002 Opsin Rh1 8.85 3 8 3 249493.75549999997 265245.637 +P06603 Tubulin alpha-1 chain 58.44 23 182 0 11648463.88905 13790053.97961 +P06604 Tubulin alpha-2 chain 34.52 15 132 1 7461.924800000001 9622.0708 +P06607 Vitellogenin-3 79.05 31 233 0 42137303.54636 43600833.47056 +P06742 Myosin light chain alkali 41.94 6 120 0 10149116.7685 13086451.262529999 +P07207 Neurogenic locus Notch protein 0.3 1 1 0 2043.4257 3625.345 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 64.16 18 104 6 2642776.9054 2707579.4669 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 81.33 20 112 0 8664879.67419 9596841.16809 +P07665 Serendipity locus protein beta 1.97 1 1 0 8266.484 11097.909 +P07668 Choline O-acetyltransferase 9.71 6 7 6 80951.7891 74982.1424 +P07764 Fructose-bisphosphate aldolase 89.2 36 369 0 27998794.829520002 31759070.9745 +P08111 Lethal(2) giant larvae protein 2.76 3 3 0 22592.4877 26372.1177 +P08120 Collagen alpha-1(IV) chain 3.93 5 12 5 122802.8379 147775.735 +P08144 Alpha-amylase A 23.48 10 15 0 415364.8723 527166.6525 +P08171 Esterase-6 20.22 12 20 0 734462.6135 797171.16 +P08181 Casein kinase II subunit alpha 10.71 2 4 0 73124.56857 90520.375 +P08182 Casein kinase II subunit beta 32.77 7 18 2 493236.31018000003 533571.8861 +P08570 Large ribosomal subunit protein P1 70.54 4 40 0 3858576.1305 4371089.0561 +P08645 Ras-related protein Rap1 40.22 6 12 0 132037.8187 196544.69305 +P08646 Ras-like protein 1 37.04 5 13 5 465420.6328 610499.0594 +P08736 Elongation factor 1-alpha 1 57.67 27 135 12 15007042.1163 17600595.2773 +P08761 Peptide methionine sulfoxide reductase 36.18 8 13 0 177042.10345999998 213917.4751 +P08879 Nucleoside diphosphate kinase 51.63 8 80 0 7539942.9999 9081401.33248 +P08928 Lamin 66.88 49 174 48 5939690.39719 6924749.58078 +P08985 Histone H2A.v 41.84 7 43 5 2019882.0556 2271516.5121 +P09040 Drosulfakinins 17.73 3 4 3 232203.351 202639.428 +P09180 Large ribosomal subunit protein uL4 47.38 20 55 20 2163816.5761 2625025.589 +P09208 Insulin-like receptor 1.77 5 5 5 2781.38272 1597.8001100000001 +P09491 Tropomyosin-2 64.44 27 221 1 267055.722 217879.829 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 45.98 5 9 5 171381.169 179581.114 +P10180 Homeobox protein cut 0.69 1 1 0 2447.3665 2289.8916 +P10379 Protein unzipped 27.05 12 27 0 900255.6238 978933.2042 +P10552 FMRFamide-related peptides 5.76 2 2 2 91380.71800000001 103950.032 +P10676 Neither inactivation nor afterpotential protein C 26.52 43 73 6 2768214.19424 3103472.3893999998 +P10981 Actin-87E 68.62 28 611 0 4548083.62706 4915254.34281 +P10987 Actin-5C 64.36 27 636 0 777947.1888 926988.2784 +P11046 Laminin subunit beta-1 22.87 37 67 37 1242755.32021 1525043.74163 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 34 1 1941.345 1695.5494 +P11147 Heat shock 70 kDa protein cognate 4 78.49 51 327 0 21501829.81889 23236494.49204 +P11584 Integrin beta-PS 19.98 17 28 0 259878.09247 291280.62524 +P12024 Chaoptin 27.6 35 84 0 3741977.1298 4588339.102 +P12080 Integrin alpha-PS2 13.11 18 23 18 487579.39879999997 572996.805 +P12370 cAMP-dependent protein kinase catalytic subunit 1 40.51 17 41 16 1059653.2637 1195361.22126 +P12426 Adenine phosphoribosyltransferase 25.82 5 9 0 159852.7632 171011.2816 +P12613 T-complex protein 1 subunit alpha 21.54 12 16 0 318338.865 367580.3754 +P12881 Proteasome subunit alpha type-1 59.86 13 42 0 1284449.7072 1807719.505 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 28.15 8 12 1 108971.27534000001 127489.36566 +P13008 Small ribosomal subunit protein eS26 21.05 2 7 0 149231.46850000002 179689.9413 +P13060 Eukaryotic translation elongation factor 2 30.81 23 41 23 1765150.2743 2141741.0368 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 37.99 40 102 0 1922493.13407 2187147.71746 +P13395 Spectrin alpha chain 63.6 137 494 0 21547563.33789 25499330.78511 +P13469 DNA-binding protein modulo 6.83 4 4 0 21656.6536 22345.582300000002 +P13496 Dynactin subunit 1 15.18 21 23 21 262109.9258 274691.79661 +P13607 Sodium/potassium-transporting ATPase subunit alpha 39.48 36 135 0 5067678.44908 5757430.57233 +P13677 Protein kinase C, eye isozyme 14.14 11 17 10 456532.54934 531676.1464 +P13678 Protein kinase C 3.92 3 3 0 165129.406 183204.52300000002 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 77.41 27 201 0 10981.125 14061.587 +P14199 Protein ref(2)P 22.37 11 19 11 320415.56330000004 356081.1993 +P14318 Muscle-specific protein 20 82.61 17 66 17 2571350.9167 2931762.77502 +P14484 Pupal cuticle protein 27.17 5 19 5 609801.4319 430307.0338 +P14599 Amyloid-beta-like protein 1.92 2 2 0 24378.807 14583.690499999999 +P15007 Enolase 74.2 31 339 1 30367693.40322 33932657.03498 +P15215 Laminin subunit gamma-1 39.35 55 99 0 1345019.90575 1694485.8592 +P15330 Embryonic polarity protein dorsal 3.4 3 3 0 286098.21760000003 332008.0356 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.95 7 62 2 3521220.17107 3193484.8293500002 +P15364 Protein amalgam 13.21 4 5 0 116422.77100000001 138966.64299999998 +P15372 Phosrestin-2 60.16 20 59 0 2434420.28616 3078056.2574 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 32.91 5 10 5 92266.9235 105862.87476 +P16378 G protein alpha o subunit 26.55 10 39 7 1408376.4187 1432762.9359 +P16554 Protein numb 7.73 4 5 0 58279.0061 62630.6517 +P16568 Protein bicaudal D 18.8 15 17 0 284183.2167 326390.4205 +P16620 Tyrosine-protein phosphatase 69D 4.86 8 9 8 158875.44595999998 209161.83307 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 3113.28 3314.7168 +P16914 Protein elav 23.4 9 28 0 559126.43794 684768.26675 +P17210 Kinesin heavy chain 44.31 40 74 40 2051143.3257 2228724.20133 +P17276 Protein henna 40.71 15 27 0 532852.7091 630709.9963 +P17336 Catalase 34.78 14 49 14 1138647.6772 1303565.7994 +P17704 Small ribosomal subunit protein eS17 65.65 7 25 7 2089767.9004 2638139.98587 +P17719 Dihydrofolate reductase 19.78 3 4 3 34008.846600000004 51647.5539 +P18053 Proteasome subunit alpha type-4 50.0 12 38 10 1761908.246 1890762.8381 +P18173 Glucose dehydrogenase [FAD, quinone] 2.72 1 1 0 7512.3853 7810.1396 +P18431 Protein kinase shaggy 33.85 16 43 0 1475604.72276 1570467.31311 +P18432 Myosin regulatory light chain 2 84.68 19 189 19 16224137.18056 22780358.43672 +P18459 Tyrosine 3-monooxygenase 11.57 7 9 0 169653.5832 245132.0768 +P18824 Armadillo segment polarity protein 22.78 16 24 0 300975.48620000004 372926.2982 +P19107 Phosrestin-1 73.82 32 213 32 9717045.18455 11096820.14728 +P19109 ATP-dependent RNA helicase p62 22.67 15 21 1 390354.3112 369772.00273 +P19334 Transient receptor potential protein 2.51 4 4 3 50836.4646 50796.2777 +P19339 Protein sex-lethal 4.52 2 2 0 6229.526 9754.0178 +P19351 Troponin T, skeletal muscle 46.1 30 101 0 843133.132 1139067.91 +P19889 Large ribosomal subunit protein uL10 48.58 14 75 0 4771637.65745 5353962.53991 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 6.65 5 5 4 37269.9067 38524.746 +P20153 Protein ultraspiracle 2.76 2 2 0 12890.652699999999 11856.7415 +P20228 Glutamate decarboxylase 18.04 8 26 0 1551559.0095000002 2144750.58873 +P20232 Transcription elongation factor S-II 31.63 7 8 0 329770.9561 361258.3584 +P20240 Otefin 32.08 11 14 11 130081.611 117953.4759 +P20241 Neuroglian 25.81 31 74 0 1836802.57696 1964826.25404 +P20348 Sex-regulated protein janus-A 38.52 5 5 5 70694.428 80932.96860000001 +P20351 Tryptophan 2,3-dioxygenase 5.28 2 2 2 9509.1993 11102.990399999999 +P20354 G protein alpha s subunit 39.74 13 26 1 559.87964 549.8845 +P20385 Chorion transcription factor Cf2 1.76 1 1 0 3741.4053 3739.701 +P20432 Glutathione S-transferase D1 55.5 13 79 9 5162380.5995000005 5564066.6985 +P20477 Glutamine synthetase 1, mitochondrial 41.85 14 59 0 3398537.1885 3824141.5415 +P20478 Glutamine synthetase 2 cytoplasmic 81.03 24 179 0 18071131.1567 20713352.0507 +P21187 Polyadenylate-binding protein 38.01 18 35 18 442709.06034 570781.78092 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 53.2 18 100 16 6623659.87315 6463888.88492 +P22465 Annexin B10 76.01 24 139 24 5940768.4593400005 7766343.14536 +P22769 Proteasome subunit alpha type-7-1 53.82 12 32 10 999654.834 1040606.92624 +P22813 Heat shock factor protein 2.75 2 2 0 4522.9526 6801.9462 +P22815 Protein bride of sevenless 1.23 1 1 1 13703.687 19118.791 +P22979 Heat shock protein 67B3 53.77 7 19 7 562397.68207 777980.3161 +P23128 ATP-dependent RNA helicase me31b 6.1 3 3 3 15617.7091 17105.4657 +P23226 205 kDa microtubule-associated protein 21.86 16 32 0 310596.26273 367090.20155 +P23257 Tubulin gamma-1 chain 5.89 3 3 2 31438.902000000002 33408.1025 +P23625 G protein alpha q subunit 51.56 19 75 16 2482644.96316 2714132.8071 +P23654 Neurotactin 12.41 10 13 0 282707.7426 295655.67829999997 +P23696 Serine/threonine-protein phosphatase PP2A 20.39 5 14 0 181364.18427 168796.72828 +P23779 Cystatin-like protein 63.49 8 32 8 1840755.40784 2291335.48235 +P24156 Prohibitin 1 68.48 17 53 0 1171239.00147 1429792.36382 +P25007 Peptidyl-prolyl cis-trans isomerase 55.95 13 102 10 7559031.62 8235744.5071 +P25160 ADP-ribosylation factor-like protein 1 6.11 1 3 1 25196.601 29467.6672 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 16 24 0 482595.84784 427079.4162 +P25171 Regulator of chromosome condensation 6.03 4 4 4 88453.542 119237.437 +P25228 Ras-related protein Rab-3 33.64 7 18 0 376446.5865 460468.0846 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 4.86 7 7 7 42690.7474 46741.909700000004 +P25822 Maternal protein pumilio 2.15 3 5 0 29785.6955 39529.7995 +P25843 Profilin 88.89 7 28 0 753997.2835 880219.1842 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 7.48 1 5 0 237695.83000000002 291785.2978 +P26270 26S proteasome non-ATPase regulatory subunit 7 10.65 4 6 0 308994.959 342058.42 +P26308 Guanine nucleotide-binding protein subunit beta-1 33.53 8 21 0 628633.7069 685549.88595 +P26686 Serine-arginine protein 55 9.31 4 7 0 214605.102 232703.622 +P27716 Innexin inx1 2.21 1 2 0 70360.452 88472.238 +P27779 Pupal cuticle protein Edg-78E 38.52 3 11 0 310179.5617 187908.2196 +P28668 Bifunctional glutamate/proline--tRNA ligase 2.28 4 4 4 54330.4339 56041.9782 +P29052 Transcription initiation factor IIB 16.51 6 8 0 174040.9643 219348.2403 +P29310 14-3-3 protein zeta 67.74 17 278 0 21866828.14424 22225870.26104 +P29327 Small ribosomal subunit protein eS6 20.16 5 20 2 525378.6168 523537.8068 +P29413 Calreticulin 46.55 20 61 0 4718863.52246 6520926.3781200005 +P29613 Triosephosphate isomerase 76.11 17 131 16 9482864.086339999 10805324.20595 +P29742 Clathrin heavy chain 7.39 13 15 0 194365.3063 212331.4648 +P29746 Protein bangles and beads 61.76 24 46 24 1352772.27265 1351327.40426 +P29829 Guanine nucleotide-binding protein subunit beta-2 51.45 16 61 16 3789095.91989 4382535.84029 +P29843 Heat shock 70 kDa protein cognate 1 24.65 14 65 1 35277.1959 44251.2096 +P29844 Endoplasmic reticulum chaperone BiP 61.28 42 212 0 8825674.22811 9425142.308840001 +P29845 Heat shock 70 kDa protein cognate 5 62.97 44 178 0 8754562.44258 9610019.89098 +P30432 Furin-like protease 2 0.66 1 1 0 3918.7568 4433.887 +P31009 Small ribosomal subunit protein uS5 44.94 11 28 0 2010959.9507 2299854.7 +P31409 V-type proton ATPase subunit B 59.59 22 96 0 2356748.85972 2708630.81858 +P32100 Large ribosomal subunit protein uL30 38.49 12 29 0 2007829.4732000001 2040951.84644 +P32234 Guanylate binding protein 128up 16.3 6 8 5 85665.48182999999 86766.4886 +P32392 Actin-related protein 3 10.53 4 7 4 159514.5314 159778.69400000002 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.69 9 12 9 86902.93919 99572.14749999999 +P33438 Glutactin 14.13 17 42 0 642442.3123100001 684367.12284 +P34082 Fasciclin-2 17.18 15 23 0 190069.9418 223447.66806 +P35122 Ubiquitin carboxyl-terminal hydrolase 40.97 9 24 0 704737.4094 791268.6656 +P35128 Ubiquitin-conjugating enzyme E2 N 56.29 7 17 0 731025.5712 905303.56 +P35220 Catenin alpha 24.86 22 44 14 876287.24286 1032376.8775000001 +P35381 ATP synthase subunit alpha, mitochondrial 71.38 43 407 43 26013197.8 29071531.23524 +P35415 Paramyosin, long form 73.38 77 511 0 31302217.39172 34101740.03897 +P35416 Paramyosin, short form 56.41 39 294 0 2055391.449 2481161.4437700002 +P35421 Phosphoribosylformylglycinamidine synthase 1.33 2 2 2 10469.747599999999 14666.6067 +P35554 Flightin 49.45 8 18 0 250499.14845 350807.90410000004 +P35992 Tyrosine-protein phosphatase 10D 3.27 6 6 4 71855.339 71108.4975 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 38.92 19 38 0 1131239.9885 1322340.1639 +P36188 Troponin I 47.58 17 65 0 10388562.649969999 11777322.64893 +P36241 Large ribosomal subunit protein eL19 32.51 7 18 7 1648355.358 1876996.609 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.81 3 3 0 27534.90336 30599.9736 +P36951 Putative hydroxypyruvate isomerase 56.82 13 31 13 997916.4238 1149700.1594 +P36958 DNA-directed RNA polymerase II subunit RPB9 21.71 2 3 0 3037.758 5750.428 +P36975 Synaptosomal-associated protein 25 85.38 19 114 17 4373518.4675 4934718.0168 +P37193 Adrenodoxin-like protein 1, mitochondrial 18.02 3 4 0 98094.92414 205673.065 +P37236 Frequenin-1 68.98 11 45 0 496068.4665 575393.3215 +P37276 Dynein heavy chain, cytoplasmic 0.24 1 1 0 395.29022 644.5915 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 14 5 471304.24400000006 483909.8051 +P38979 Small ribosomal subunit protein uS2 82.59 17 93 17 4068912.43193 4808718.58987 +P39018 Small ribosomal subunit protein eS19A 53.85 11 39 0 3893804.2343 3777066.8688 +P39736 Puff-specific protein Bx42 6.4 3 4 0 36555.46704 48732.32 +P40301 Proteasome subunit alpha type-2 21.79 4 7 4 108938.524 143365.4661 +P40304 Proteasome subunit beta type-1 28.94 6 8 6 323089.512 338577.1374 +P40320 S-adenosylmethionine synthase 8.33 4 5 0 78377.92 92926.916 +P40417 Mitogen-activated protein kinase ERK-A 42.82 13 29 7 744399.0533 916547.05373 +P40421 Serine/threonine-protein phosphatase rdgC 9.83 6 8 0 49814.360199999996 66435.09796 +P40423 Myosin regulatory light chain sqh 44.25 6 19 0 694676.1655 873330.056 +P40427 Homeobox protein extradenticle 2.93 1 1 0 1611.7524 1955.1753 +P40792 Ras-related protein Rac1 22.4 4 7 0 304310.467 371015.21390000003 +P40793 Cdc42 homolog 37.7 7 8 0 297673.8767 274573.76800000004 +P40796 La protein homolog 48.46 17 25 16 799495.65403 907749.9801 +P40797 Protein peanut 28.39 14 25 13 486320.658 597170.1499 +P40945 ADP ribosylation factor 4 38.33 5 11 0 34571.26935 47318.9786 +P40946 ADP-ribosylation factor 6 38.86 5 8 5 57498.5334 51324.551699999996 +P41042 Small ribosomal subunit protein eS4 54.02 15 42 0 726610.66545 842571.00661 +P41043 Glutathione S-transferase S1 76.71 15 62 0 4317772.9152999995 4738671.6858 +P41044 Calbindin-32 77.74 26 146 0 6869512.16292 8045163.63139 +P41073 Zinc finger protein on ecdysone puffs 17.18 12 29 0 374901.7702 394816.83869999996 +P41092 Large ribosomal subunit protein uL15 36.24 6 16 0 2541771.1833 2593172.514 +P41093 Large ribosomal subunit protein eL20 49.15 10 17 10 727127.2254 744566.8147999999 +P41094 Small ribosomal subunit protein uS13 56.58 14 48 14 2691811.0253 3345219.1261 +P41126 Large ribosomal subunit protein eL13 47.71 12 50 0 2673011.39609 3108224.112 +P41374 Eukaryotic translation initiation factor 2 subunit 1 45.16 17 35 0 1088614.78593 1276662.4284 +P41375 Eukaryotic translation initiation factor 2 subunit 2 18.27 6 6 6 82207.6294 67417.34694 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 28.48 12 22 0 499464.906 527262.52147 +P42207 Septin-1 10.8 4 11 3 42338.133 43442.83 +P42281 Acyl-CoA-binding protein homolog 73.26 6 37 5 3663928.5534 4653569.5095 +P42325 Neurocalcin homolog 42.63 8 22 8 868574.4211 1032079.0029 +P42787 Carboxypeptidase D 8.68 10 14 0 133204.73807000002 128114.14575 +P43332 U1 small nuclear ribonucleoprotein A 21.3 5 6 5 180140.2426 203959.2557 +P45437 Coatomer subunit beta 4.67 3 4 3 42738.014299999995 51873.23895 +P45594 Cofilin/actin-depolymerizing factor homolog 75.68 13 89 13 5229752.5142 5967806.9125 +P45888 Actin-related protein 2 15.79 5 7 5 62066.933469999996 74505.5723 +P45889 Actin-related protein 1 23.4 10 13 10 281462.4 309090.7584 +P46150 Moesin/ezrin/radixin homolog 1 38.06 29 62 0 67348.62599999999 42223.14225 +P46222 Large ribosomal subunit protein uL5 33.15 5 17 0 641636.36585 800238.2444 +P46223 Large ribosomal subunit protein eL8 33.58 10 33 0 1980598.694 2567955.2248 +P46415 Alcohol dehydrogenase class-3 13.98 5 11 5 590212.117 494986.674 +P46461 Vesicle-fusing ATPase 1 35.44 26 45 0 1537933.18133 1772835.7195 +P46824 Kinesin light chain 37.4 23 45 0 1488332.23787 1742676.1842 +P47947 Troponin C, isoform 1 24.68 4 24 0 1532715.8749 1693235.3719 +P47948 Troponin C, isoform 2 47.1 6 9 0 11098.1692 13384.2845 +P47949 Troponin C, isoform 3 63.23 9 25 0 835920.8069000001 1117462.5119 +P48148 Ras-like GTP-binding protein Rho1 64.58 10 22 10 1073138.2247000001 1055001.23465 +P48149 Small ribosomal subunit protein uS8A 64.62 8 24 0 816161.4845 1039610.2834000001 +P48159 Large ribosomal subunit protein uL14 70.71 8 28 8 1475672.6095 1605060.6565699999 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 71.3 5 29 5 2791452.2397 3850697.0959 +P48451 Calcineurin subunit B type 1 62.35 7 17 0 334862.439 467165.4787 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 23.24 7 11 0 24020.1532 28613.256 +P48554 Ras-related protein Rac2 26.56 5 10 0 83175.6605 83396.658 +P48555 Ras-related protein Ral-a 49.75 8 21 1 639944.97996 826871.8537 +P48588 Small ribosomal subunit protein eS25 16.24 2 4 2 71074.3095 85041.7194 +P48596 GTP cyclohydrolase 1 42.59 13 60 13 2175129.47267 2491779.5338 +P48598 Eukaryotic translation initiation factor 4E1 32.82 6 16 0 402247.6577 473817.454 +P48601 26S proteasome regulatory subunit 4 44.65 20 44 0 1474872.61813 1569653.5406 +P48602 V-type proton ATPase catalytic subunit A isoform 1 64.17 30 96 0 2702091.08856 2675202.17741 +P48603 F-actin-capping protein subunit beta 24.28 6 7 0 85827.23847 93343.2827 +P48604 GrpE protein homolog, mitochondrial 47.89 11 32 11 776358.80634 946285.6011 +P48605 T-complex protein 1 subunit gamma 46.32 25 48 0 1194755.54124 1019445.77628 +P48607 Protein spaetzle 3.99 1 1 0 8364.166 11624.594 +P48609 Cyclin-dependent kinase 5 homolog 20.75 8 11 7 199568.5705 240842.46970000002 +P48610 Arginine kinase 1 75.84 36 446 0 40878236.42597 43855561.52029 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 54.76 8 27 8 1084123.26474 1332819.62345 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 36.82 10 43 0 451738.21631 522946.05681 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 18.44 5 9 0 45563.2255 52093.9916 +P49028 Protein mago nashi 30.61 4 6 4 23806.540399999998 29897.659399999997 +P49071 MAP kinase-activated protein kinase 2 13.65 6 9 0 203522.229 266920.3475 +P49630 Large ribosomal subunit protein eL36 32.17 4 9 0 2017798.6462 2100823.4496 +P49657 Serine/threonine-protein kinase minibrain 0.77 1 1 0 7431.044 8737.13 +P49847 Transcription initiation factor TFIID subunit 6 2.64 2 2 0 23777.124 28856.638700000003 +P49866 Transcription factor HNF-4 homolog 1.42 1 1 0 4498.8535 4493.5864 +P49963 Signal recognition particle 19 kDa protein 31.88 4 4 4 24292.411399999997 32827.0896 +P50882 Large ribosomal subunit protein uL6 70.0 12 29 0 1297141.4265 1449731.0996 +P50887 Large ribosomal subunit protein eL22 22.07 5 10 5 127973.2857 105210.1968 +P51140 Segment polarity protein dishevelled 2.89 2 2 2 7585.064200000001 7825.6057 +P52029 Glucose-6-phosphate isomerase 36.38 15 22 15 1328760.8422 1397449.857 +P52034 ATP-dependent 6-phosphofructokinase 10.53 8 11 0 211944.1197 233822.8643 +P52302 Protein lethal(3)malignant blood neoplasm 1 14.24 7 21 0 537499.1961 670930.5577 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 25.13 6 10 0 81770.69069999999 109976.4855 +P52654 Transcription initiation factor IIA subunit 1 3.28 1 2 1 12700.428 11521.196 +P53034 Replication factor C subunit 2 8.46 3 3 3 34738.142 36567.452000000005 +P53501 Actin-57B 69.15 29 622 4 20066888.94807 21222623.79226 +P53777 Muscle LIM protein 1 31.52 3 14 0 770331.0604 894372.1579 +P53997 Protein SET 15.24 4 9 4 206547.0745 272079.941 +P54185 Putative odorant-binding protein A5 25.71 5 6 5 23373.2659 33703.2694 +P54191 General odorant-binding protein 69a 13.51 2 6 2 25697.0141 29114.788599999996 +P54192 General odorant-binding protein 19d 69.33 10 107 10 15935711.439860001 16967116.98056 +P54193 General odorant-binding protein 83a 42.86 7 18 0 140973.5133 187212.5195 +P54195 General odorant-binding protein 28a 40.56 4 13 4 72660.86855 71243.75129999999 +P54351 Vesicle-fusing ATPase 2 14.76 12 17 0 18805.4047 20208.6814 +P54352 Ethanolamine kinase 6.76 3 3 2 16913.1362 25471.74304 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 42.77 7 19 7 411719.77853 478998.45404 +P54357 Myosin-2 essential light chain 89.12 10 40 1 2016936.45786 2293338.476 +P54359 Septin-2 17.66 7 10 1 133095.0082 168265.3697 +P54367 Casein kinase I isoform alpha 2.67 1 1 0 46202.082 48434.78 +P54385 Glutamate dehydrogenase, mitochondrial 42.35 24 79 6 4027087.38273 4697570.9028 +P54397 39 kDa FK506-binding nuclear protein 5.04 2 2 2 48908.598 66953.937 +P54399 Protein disulfide-isomerase 75.6 37 146 0 11511555.6832 12595052.47167 +P54611 V-type proton ATPase subunit E 79.65 21 159 0 13651723.45986 16066896.0891 +P54622 Single-stranded DNA-binding protein, mitochondrial 43.15 6 12 6 227884.44073 294871.2881 +P55035 26S proteasome non-ATPase regulatory subunit 4 56.57 11 22 0 372461.92224 445432.25645 +P55828 Small ribosomal subunit protein uS10 34.17 4 15 4 1439157.0377 1770796.8730000001 +P55830 Small ribosomal subunit protein eS1 60.45 16 81 16 5723323.8358 6287479.88193 +P55841 Large ribosomal subunit protein eL14 48.8 10 35 10 1864890.54449 2053176.3723 +P55935 Small ribosomal subunit protein uS4 61.03 19 57 0 2770417.9664 3047675.18374 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 4 4 0 40705.9658 48930.8421 +P56538 Eukaryotic translation initiation factor 6 15.92 4 6 4 130483.712 180773.95799999998 +P61209 ADP-ribosylation factor 1 39.01 5 19 0 571218.31017 687901.47236 +P61849 Dromyosuppressin 10.0 2 3 0 62839.421 87519.13799999999 +P61851 Superoxide dismutase [Cu-Zn] 78.43 11 105 11 9573856.07191 11570174.22215 +P61855 Adipokinetic hormone 37.97 2 3 2 15474.724400000001 19632.0347 +P61857 Tubulin beta-2 chain 44.39 15 202 2 576833.0655 732285.4728 +P62152 Calmodulin 99.33 19 359 0 28179812.79357 32048825.43194 +P80455 Small ribosomal subunit protein eS12 67.63 7 31 7 1429028.9176 1701781.7178 +P81829 Leucokinin 6.25 1 1 1 19014.572 14448.694 +P81900 cAMP-dependent protein kinase type II regulatory subunit 59.42 19 94 19 3296275.24293 4592243.7779 +P82147 Protein lethal(2)essential for life 66.31 11 40 0 1544051.9819 1846409.7922 +P82295 Prominin-like protein 3.75 3 3 0 4610.2036 3985.12544 +P82804 Partner of Y14 and mago 7.73 1 1 1 541.1347 456.89517 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 15 5 560223.5045 711406.176 +P83094 Stromal interaction molecule homolog 22.81 12 15 1 229595.1678 246722.25643 +P83967 Actin, indirect flight muscle 68.62 27 587 2 6499.7780299999995 6114.2507000000005 +P84029 Cytochrome c-2 70.37 11 82 0 10055393.7388 11450694.1101 +P84040 Histone H4 59.22 9 102 0 14178969.54226 16060794.1891 +P84051 Histone H2A 37.1 5 48 0 3271329.4781400003 3610420.7482999996 +P84345 ATP synthase protein 8 18.87 1 5 1 333416.8013 458076.73199999996 +P91891 Protein Mo25 34.22 13 23 0 597125.7726 671651.2739 +P91926 AP-2 complex subunit alpha 19.04 16 20 15 282765.5399 280056.8863 +P91927 Mitochondrial proton/calcium exchanger protein 34.75 30 42 30 1209320.74826 1341761.3464 +P91928 MICOS complex subunit Mic60 47.63 35 96 0 6001171.6447 6759740.9828 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 38.08 14 37 0 1052406.52737 1362343.00924 +P91938 Thioredoxin reductase 1, mitochondrial 35.07 15 24 0 729410.7537 816674.1635 +P92029 DnaJ-like protein 60 4.15 1 1 0 5329.284 7123.2974 +P92177 14-3-3 protein epsilon 72.14 22 257 20 15129278.102599999 16343664.3154 +P92204 Negative elongation factor E 10.0 3 4 3 58948.486000000004 84881.881 +P92208 Stress-activated protein kinase JNK 4.3 2 4 0 16834.883 21187.275 +P98081 Protein disabled 5.35 9 11 0 55537.5231 60494.721340000004 +Q00174 Laminin subunit alpha 22.49 77 124 77 1819771.6685 2092785.04706 +Q00963 Spectrin beta chain 23.88 58 119 2 14165.086200000002 15634.5625 +Q01603 Peroxidase 8.41 6 6 0 33123.4149 44871.2016 +Q01604 Phosphoglycerate kinase 83.61 31 247 0 14239592.99702 16816676.2311 +Q01637 Uridine 5'-monophosphate synthase 6.69 4 4 4 29877.1285 31612.074259999998 +Q01989 Myosin heavy chain 95F 1.84 2 2 0 12167.152 19082.139000000003 +Q02748 Eukaryotic initiation factor 4A 31.27 15 31 13 1125349.967 1226613.567 +Q02910 Calphotin 3.36 2 4 2 37435.6319 57759.063200000004 +Q03017 NF-kappa-B inhibitor cactus 12.4 5 9 0 45776.2367 51851.8866 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 2.48 4 4 0 21099.009299999998 27963.5577 +Q03334 Small ribosomal subunit protein uS15 52.32 9 28 0 2486905.52982 2910905.19217 +Q03427 Lamin-C 59.74 41 127 3 2471447.60924 2747722.16762 +Q04047 Protein no-on-transient A 13.43 8 10 0 42028.52334 49509.65447 +Q04164 Putative epidermal cell surface receptor 8.8 13 21 0 202917.5247 235251.8017 +Q04691 Fat-body protein 1 24.68 26 37 0 398772.83482 343621.94397 +Q05783 High mobility group protein D 21.43 2 3 0 89819.44 82881.26749999999 +Q05825 ATP synthase subunit beta, mitochondrial 85.15 34 605 0 26357879.3262 32416552.91829 +Q05856 Small nuclear ribonucleoprotein-associated protein B 10.55 2 2 2 1627.8976 797.6953 +Q06559 Small ribosomal subunit protein uS3 80.89 25 88 0 5280271.5471 5873974.0981 +Q06943 High mobility group protein Z 43.24 4 12 0 257614.875 234430.2883 +Q07093 Head-specific guanylate cyclase 5.47 4 4 4 61741.746 66084.27100000001 +Q07152 Inosine-5'-monophosphate dehydrogenase 21.23 9 18 0 153570.7615 190026.19603 +Q07171 Gelsolin 25.81 18 39 0 827090.10055 998775.79263 +Q07327 Protein ROP 35.51 20 37 0 1255502.4748 1476517.0729999999 +Q08012 Growth factor receptor-bound protein 2 40.76 9 18 9 331023.7411 417297.0952 +Q08180 Irregular chiasm C-roughest protein 2.36 2 2 0 2977.9268 2349.6584 +Q08473 RNA-binding protein squid 42.44 9 32 0 869113.10018 1307223.5745 +Q09024 Neural/ectodermal development factor IMP-L2 18.73 5 5 0 28606.9319 26869.8361 +Q09101 Locomotion-related protein Hikaru genki 3.97 4 5 4 43049.9576 53232.8335 +Q0E8C8 Serine protease inhibitor 77Ba 16.89 8 13 8 175337.3851 218045.13525 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 2.17 2 2 0 15348.808699999998 19096.495 +Q0E9B6 Small ribosomal subunit protein uS17 45.16 8 12 4 695241.914 616985.651 +Q0KHQ5 Serine/threonine-protein kinase Tao 1.73 2 2 0 20220.3917 22923.94 +Q0KIC3 Uncharacterized protein CG43427 7.43 10 12 0 40738.051 41517.6114 +Q10714 Angiotensin-converting enzyme 13.33 10 11 0 115856.5386 118867.5774 +Q11002 Calpain-A 7.73 7 8 0 137399.327 169975.82692 +Q23970 Pheromone-binding protein-related protein 6 58.87 8 28 8 479258.43175 614311.13453 +Q23983 Alpha-soluble NSF attachment protein 69.18 19 85 19 4162234.7025 4980928.6931 +Q23997 Imaginal disk growth factor 6 52.65 24 100 0 5233196.89636 6327762.85013 +Q24008 Inactivation-no-after-potential D protein 46.44 34 113 0 3213637.9252 3727402.3838 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 49.51 15 41 0 2046288.7451 2161700.7564 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 50.46 15 82 0 3642616.4131400003 4036127.3077 +Q24050 Elongator complex protein 5 29.39 7 10 6 101877.0762 119883.3099 +Q24114 Division abnormally delayed protein 8.63 5 10 0 227796.6068 250020.493 +Q24133 DnaJ protein homolog 1 27.25 7 16 0 399120.5019 498178.27150000003 +Q24134 Negative elongation factor D 2.42 1 1 0 965.12854 2039.6726 +Q24180 Deformed epidermal autoregulatory factor 1 8.51 5 5 0 74068.6416 74351.81 +Q24185 Protein hook 20.47 13 18 13 419669.6058 464969.7007 +Q24186 Small ribosomal subunit protein uS7A 22.81 8 31 0 1160936.4312 1024899.5432 +Q24207 Protein boule 27.63 5 9 0 183152.5724 265477.3047 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 36.0 16 20 0 295291.5866 316211.05628 +Q24210 Peripheral plasma membrane protein CASK 6.01 5 6 0 133240.7522 162660.5258 +Q24211 Protein stoned-A 37.53 27 59 0 1492590.44837 1631643.7105 +Q24214 Calcineurin subunit B type 2 45.88 6 17 0 703595.728 1085345.9599000001 +Q24238 Alkaline phosphatase 4 9.56 5 6 5 78454.7847 88990.2966 +Q24246 Cytoplasmic dynein 1 intermediate chain 7.99 5 6 0 84288.4821 101094.9759 +Q24251 ATP synthase subunit d, mitochondrial 80.34 18 188 0 14191609.47773 15602930.02933 +Q24276 Hsp90 co-chaperone Cdc37 32.9 13 18 13 462749.06289999996 650235.6699999999 +Q24292 Protein dachsous 0.31 1 1 0 1855.1066 2808.1733 +Q24297 Small nuclear ribonucleoprotein F 34.09 3 6 3 66895.9748 90663.5973 +Q24298 DE-cadherin 15.06 23 36 23 741244.6257 944799.4599 +Q24312 DNA-binding protein Ewg 3.68 3 4 1 10298.01797 14496.8 +Q24318 Transcription factor Dp 7.19 3 4 0 21706.624929999998 18457.30274 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 12.92 6 8 6 112273.40580000001 130559.8995 +Q24322 Semaphorin-1A 2.34 2 3 0 2796.64268 2135.4813 +Q24337 Protein enhancer of rudimentary 24.04 3 4 0 125545.554 123188.65899999999 +Q24372 Lachesin 17.83 6 8 6 108824.0864 128703.1087 +Q24388 Larval serum protein 2 8.84 5 5 0 133386.876 151841.478 +Q24400 Muscle LIM protein Mlp84B 44.24 20 67 19 2233055.76012 2435798.704 +Q24407 ATP synthase-coupling factor 6, mitochondrial 52.83 7 55 0 3844528.0846 4945244.22375 +Q24439 ATP synthase subunit O, mitochondrial 73.68 19 177 19 20521489.08226 20958246.2663 +Q24478 Centrosome-associated zinc finger protein Cp190 21.44 19 26 19 243342.79107 263048.0218 +Q24491 RNA-binding protein Rsf1 25.89 5 12 0 70064.68235 62454.1201 +Q24492 Replication protein A 70 kDa DNA-binding subunit 7.13 5 6 5 21282.32905 24733.4162 +Q24509 Syntaxin-5 4.28 2 2 0 13998.926 14623.438 +Q24523 Protein bunched, class 2/F/G isoform 3.38 5 8 0 133720.352 171322.1557 +Q24524 Protein singed 5.86 3 3 0 61316.895000000004 68911.448 +Q24537 High mobility group protein DSP1 13.99 6 14 0 325391.4091 399121.5676 +Q24547 Syntaxin-1A 29.21 12 41 0 2696567.37 2992114.6131 +Q24560 Tubulin beta-1 chain 67.56 21 292 1 9698640.59056 11211561.29339 +Q24562 Splicing factor U2AF 50 kDa subunit 11.06 3 3 0 14501.8485 13327.712500000001 +Q24572 Chromatin assembly factor 1 p55 subunit 18.6 7 15 1 115623.45115000001 143335.51584 +Q24583 V-type proton ATPase subunit F 1 86.29 8 28 8 3096141.5605 3547094.3005 +Q26377 Pro-corazonin 40.26 5 12 5 128731.3939 174746.5356 +Q26416 Adult cuticle protein 1 20.0 1 5 1 211807.3336 247582.41090000002 +Q27237 DnaJ homolog l(2)tid, mitochondrial 11.35 5 5 1 56275.4837 73054.6625 +Q27268 ATP-dependent RNA helicase WM6 28.77 12 19 6 389779.4082 456446.2068 +Q27272 Transcription initiation factor TFIID subunit 9 19.78 5 5 5 63191.917 59529.739 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 59.45 30 84 0 1501064.41048 1383837.0406 +Q27377 Putative odorant-binding protein A10 34.84 5 16 5 211436.10317 126898.80905 +Q27415 Nucleoplasmin-like protein 43.42 6 50 0 2053448.5955400001 2797150.4641 +Q27580 Adenosylhomocysteinase 16.9 10 11 0 283262.7006 292625.2507 +Q27597 NADPH--cytochrome P450 reductase 15.02 11 14 0 302242.782 366131.819 +Q27606 Cytochrome P450 4e2 1.9 1 1 0 2019.4417 1695.824 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 34.51 6 12 2 358790.4869 472614.32935 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 42.98 18 50 0 299626.49539999996 366436.9664 +Q2PE14 Zinc finger CCHC domain-containing protein 8 homolog 5.06 3 3 3 15058.6414 16503.5294 +Q3KN41 Neurexin 1 1.96 4 4 0 53764.4492 53837.186499999996 +Q45VV3 Transcriptional coactivator yorkie 6.84 3 3 0 14407.317299999999 17483.787 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 34.97 2 3 2 48490.5975 72399.3395 +Q4V645 Trissin 16.67 2 3 2 67641.478 82825.515 +Q4Z8K6 Ran-binding proteins 9/10 homolog 3.33 3 3 0 34283.24 51516.576 +Q59E04 Neuroendocrine protein 7B2 7.97 2 3 2 80794.685 108787.93599999999 +Q5U117 Complex I assembly factor Egm, mitochondrial 9.08 6 8 6 44824.6878 58929.44507 +Q6AWN0 Acireductone dioxygenase 43.55 8 15 8 303614.73116 349100.12467 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.22 4 5 0 52646.611 73778.7587 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 3.0 2 2 2 10368.5619 18294.993000000002 +Q709R6 LEM domain-containing protein Bocksbeutel 18.8 7 7 7 63426.278999999995 68155.8274 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 7 4 207175.7642 240199.6162 +Q7JQW6 Lipoyl synthase, mitochondrial 8.22 3 4 3 44812.2454 55577.849 +Q7JR49 V-type proton ATPase subunit S1 16.89 5 9 5 302797.21619999997 376585.5918 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 27.07 4 15 1 258897.9399 335597.1428 +Q7JUR6 Protein GDAP2 homolog 8.33 4 5 0 51997.721999999994 42029.3594 +Q7JUY7 PTB domain-containing adapter protein ced-6 30.56 12 17 0 288325.95466 309627.43745 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 14 31 0 1082971.28461 1238898.7538 +Q7JW27 WASH complex subunit 1 2.61 1 1 1 2030.3425 2667.2078 +Q7JWD3 ATPase ASNA1 homolog 20.24 6 20 6 357948.59262 439523.41036000004 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 14.6 6 7 0 79099.27799999999 64856.90325999999 +Q7JXF5 Nuclear pore glycoprotein p62 25.13 9 15 9 383502.2876 592979.0213 +Q7JXF7 Protein seele 34.92 5 7 5 164469.3097 172297.4601 +Q7JYV2 Synaptogyrin 8.3 1 1 1 2004.7693 1000.0342 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 2.71 1 1 0 24437.96 13067.34 +Q7JZV0 Cuticular protein 47Eg 19.66 2 3 2 92133.9697 116493.96100000001 +Q7K0D8 Nuclear pore complex protein Nup50 18.26 10 11 10 157542.7027 191264.651 +Q7K0E3 MOB kinase activator-like 4 32.29 5 14 0 405717.78884 427527.2444 +Q7K0L4 WD repeat-containing protein 26 homolog 2.7 2 2 0 16048.655999999999 17446.115999999998 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 34.65 8 13 8 179976.8514 140239.15194 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 11.59 2 5 2 59776.16951 52671.4176 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.41 2 2 0 16611.8082 18148.1192 +Q7K2D2 Dynactin subunit 2 59.21 18 43 18 1388138.8191 1592401.8493000001 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.33 15 29 1 22920.926 27101.469 +Q7K486 Armadillo repeat-containing protein 6 homolog 25.86 11 12 11 206594.07020000002 237860.4338 +Q7K4Q5 Probable protein phosphatase CG10417 17.37 8 12 0 182276.1996 192066.1887 +Q7K4Z4 Protein immune deficiency 18.32 4 6 4 46199.2625 60422.5687 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 42.8 8 20 0 576651.006 543673.1595000001 +Q7K556 TRPL translocation defect protein 14 12.0 6 9 0 80076.26030000001 96077.3701 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 18 82 18 3252941.56974 4615948.97117 +Q7K5M0 Inactive serine protease scarface 9.01 4 6 4 76114.3929 73403.9554 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 55.19 9 24 9 1155903.0718 1493013.5233 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 37.91 18 36 0 1337274.7684 1789344.4615 +Q7KML2 Acyl-coenzyme A oxidase 1 3.74 2 3 2 23245.8964 27410.905400000003 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 40.45 29 60 1 1067939.80094 1315426.54281 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 26.32 18 25 18 256633.32202999998 299154.85135 +Q7KNF2 Polyadenylate-binding protein 2 26.79 6 16 0 381920.5147 345993.8901 +Q7KQM6 GIGYF family protein Gyf 3.37 5 5 5 24106.2198 26885.099189999997 +Q7KR04 Small ribosomal subunit protein uS8B 53.85 7 18 1 13309.724 15947.028 +Q7KRI2 Longitudinals lacking protein-like 32.28 4 8 0 145961.8927 174226.1239 +Q7KRU8 Ferritin heavy chain 52.2 8 65 1 4757782.02135 5466328.49354 +Q7KRW8 Pre-mRNA-processing factor 39 1.03 1 1 1 3534.0547 2699.7737 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 8 6 250109.2867 302711.2845 +Q7KUT2 Lon protease homolog, mitochondrial 17.97 16 21 16 203040.05622 239809.72384 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 9.7 3 3 3 32583.831 50808.416000000005 +Q7KVY7 Syntaxin-4 6.01 2 2 1 18351.2316 28707.542 +Q7KW14 Coiled-coil domain-containing protein CG32809 4.38 5 5 0 46097.18645 55152.3186 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 52.69 20 51 20 1794553.7358 2075207.42337 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.94 2 2 2 795.2644 2645.5464 +Q7YTY6 Serine protease inhibitor 42Dd 24.73 8 18 8 436422.2529 554081.8715 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 6.91 5 8 1 160173.4917 199606.08224000002 +Q868Z9 Papilin 18.81 47 94 47 1946837.0476 1875881.68936 +Q86B79 RING finger protein unkempt 3.17 2 2 0 39813.171 52955.277 +Q86B87 Modifier of mdg4 13.77 6 8 0 113227.1455 164254.1123 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 19.59 3 3 3 12551.0508 12812.683099999998 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 10.0 3 4 3 69031.6097 78132.6073 +Q86NP2 Negative elongation factor A 9.51 9 11 0 112365.9856 121995.6516 +Q86P48 AT-rich binding protein 7.22 3 5 3 20166.789 20355.1115 +Q86S05 Protein lingerer 2.91 3 4 0 2257.7598 0.0 +Q8I0G5 Coatomer subunit gamma 6.68 6 6 0 59945.6178 70806.2836 +Q8I7C3 LIM and SH3 domain protein Lasp 21.0 12 23 0 895863.5428 1034389.4994000001 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 3.86 4 4 4 21039.8831 20688.60002 +Q8IN41 Protein Turandot X 8.45 1 1 1 34739.7 37346.617 +Q8IN43 Protein Turandot C 31.01 4 14 4 311137.03466 342799.76185 +Q8IN44 Protein Turandot A 58.14 9 20 9 850436.1377 1018923.1476 +Q8INI8 Major heat shock 70 kDa protein Ba 21.22 13 59 0 83206.9806 92851.4537 +Q8IPM8 Complexin 66.2 10 69 0 84072.35399999999 100671.046 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 21.35 9 16 9 154636.1434 188728.0922 +Q8IPX7 Exosome complex component RRP40 29.74 7 8 7 52999.9456 74648.08452 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 3.15 1 1 1 2382.7168 2754.7266 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 19.78 4 13 0 109676.25134 130912.42048 +Q8IQ70 Calcium uniporter protein, mitochondrial 12.84 5 7 5 161775.2674 185878.2144 +Q8IQG1 MOB kinase activator-like 2 6.36 4 7 0 111570.292 97701.2858 +Q8IQG9 Adenylate kinase 1 44.54 8 37 8 1660079.57158 2122044.68526 +Q8IR45 BLOC-1-related complex subunit 8 homolog 13.11 2 2 2 12844.943 13779.7373 +Q8IRH5 Zinc finger protein indra 3.14 2 2 2 44731.734 45878.754 +Q8MKJ4 General odorant-binding protein 57b 6.38 1 2 0 3359.9294 4893.0234 +Q8MKK0 General odorant-binding protein 57a 10.65 2 4 2 181708.9099 199154.5466 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 12.88 4 4 4 44662.119040000005 44695.12965 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 47 0 1393198.08217 1507181.8268 +Q8MLZ7 Chitinase-like protein Idgf3 27.66 10 23 0 348358.0441 425422.70316 +Q8MM24 Chitinase-like protein Idgf1 2.28 1 1 1 7186.782 7934.1963 +Q8MMC4 Protein CDV3 homolog 12.92 3 4 1 1622.96954 1564.34658 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 3.56 1 4 1 37045.05 42164.3057 +Q8MR62 Phosducin-like protein 2 22.92 5 6 5 156294.03934000002 166514.9185 +Q8MSS1 Protein lava lamp 17.06 45 52 0 799578.5324 894155.90595 +Q8MSU3 Ferric reductase 1 3.55 2 3 0 24521.0837 23122.801 +Q8MSV2 Protein alan shepard 12.54 6 13 6 312505.1657 251608.52649999998 +Q8MSX2 Mediator of RNA polymerase II transcription subunit 6 7.23 2 2 0 9379.9782 9324.908599999999 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 3.79 2 2 2 12561.3197 18612.592800000002 +Q8SWR8 Ataxin-2 homolog 3.41 3 3 1 14160.0455 15775.06162 +Q8SWU7 Obg-like ATPase 1 30.73 14 18 0 1063788.5663 1178196.669 +Q8SX68 CTTNBP2 N-terminal-like protein 23.65 11 15 11 213151.93399999998 225981.2045 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 33.5 7 17 7 492328.10349999997 592183.7754 +Q8SY33 Protein Gawky 11.05 13 19 13 210042.9674 229830.41808 +Q8SY61 General odorant-binding protein 56d 56.49 7 62 0 1988913.3173 2530292.8136 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 32.51 6 18 6 239136.14174 259299.0018 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 10.3 4 6 4 104010.6737 137277.5773 +Q8SYG2 COP9 signalosome complex subunit 3 8.76 4 5 4 28827.3526 79018.53916 +Q8SZ63 Golgin-84 5.23 3 3 3 19686.46998 10737.27896 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 36.84 3 8 3 117404.1636 157878.9145 +Q8T045 O-glucosyltransferase rumi 2.92 1 1 0 21175.773 17068.078 +Q8T079 Cytokine-like nuclear factor N-PAC 37.54 17 37 0 501134.87836 573735.82634 +Q8T0Q4 Charged multivesicular body protein 4 66.37 15 35 15 1049697.2205 1175455.1883 +Q8T0R7 Chitinase-like protein Idgf5 2.25 1 1 1 13839.063 14273.172 +Q8T390 Endophilin-A 56.91 20 92 0 3847725.73879 4172415.12286 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 15.3 6 6 6 140071.0664 169761.5295 +Q8T3U2 Small ribosomal subunit protein uS12 42.66 6 22 0 1559326.4376 1434824.7357 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 56.15 7 13 7 297919.8363 329257.61 +Q8T6B9 Poly(U)-binding-splicing factor hfp 14.44 8 12 1 143496.35379999998 177769.2114 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 4.85 1 1 1 2344.5679 1838.7933 +Q8T9B6 LDLR chaperone boca 55.0 10 20 10 1212805.715 925149.421 +Q8WTC1 Small ribosomal subunit protein uS15m 18.21 5 6 5 134152.4756 113113.35900000001 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 60.47 36 112 0 3426288.3246999998 3918359.44854 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 10 96 0 6674678.92933 8078448.88392 +Q94516 ATP synthase subunit b, mitochondrial 45.27 16 122 16 9392866.4374 11737586.8297 +Q94517 Histone deacetylase HDAC1 6.14 2 2 2 10443.0172 11601.687600000001 +Q94518 Nascent polypeptide-associated complex subunit alpha 51.15 7 19 0 1899626.9797 2378783.8473 +Q94521 Arylalkylamine N-acetyltransferase 1 37.09 8 29 0 1632305.67165 1911870.8717 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 47.56 15 116 14 9129349.88345 10754008.22323 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 37.52 19 51 19 1613331.6818 1553547.9682 +Q94524 Dynein light chain Tctex-type 34.23 3 3 3 33036.6897 62558.007 +Q94529 Probable pseudouridine-5'-phosphatase 41.99 9 25 5 710691.9136 863682.03993 +Q94535 Splicing factor U2af 38 kDa subunit 12.12 3 3 0 32003.448399999997 24503.5124 +Q94547 Regulator of gene activity 4.27 3 4 0 116119.001 129679.25099999999 +Q94899 COP9 signalosome complex subunit 2 8.33 4 4 0 46984.799 43357.5065 +Q94901 RNA-binding protein lark 53.69 20 40 20 407828.53323 472078.50698 +Q94913 Rhythmically expressed gene 5 protein 3.12 1 1 0 1760.1532 2818.24 +Q94915 Rhythmically expressed gene 2 protein 11.92 4 7 4 163570.502 209383.092 +Q94920 Voltage-dependent anion-selective channel 91.84 26 349 0 23771249.72286 28590460.78016 +Q94981 E3 ubiquitin-protein ligase ariadne-1 2.39 1 1 0 4767.7783 7821.0405 +Q95028 L-lactate dehydrogenase 17.17 5 6 0 71341.1076 102299.4037 +Q95029 Cathepsin L1 38.27 16 60 3 4346354.8475 4688017.9141 +Q95083 Proteasome subunit alpha type-5 45.9 8 19 8 518692.8112 684611.5973 +Q95RA8 MOB kinase activator-like 1 11.42 2 2 0 38268.579 53127.72 +Q95RA9 GILT-like protein 1 46.4 9 28 9 1175118.4051 1380503.2232 +Q95RG8 ARF GTPase-activating protein Git 2.6 2 2 2 5345.518260000001 9171.085500000001 +Q95RI5 Failed axon connections 54.78 24 114 0 9293312.27513 9432770.13326 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 1.86 1 1 1 2887.5957 2177.233 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 87857.3294 120167.29550000001 +Q95SK3 CDK5RAP3 protein homolog 20.43 9 11 8 167694.8175 194488.1196 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 11.44 3 4 3 94265.1678 108098.6463 +Q95T12 Calcium channel flower 12.89 2 3 2 90610.945 100710.25200000001 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 9.13 4 4 4 30346.3918 35226.640400000004 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 0.9 1 1 1 1828.8942 2490.4983 +Q960V3 Trafficking kinesin-binding protein milt 6.42 8 9 0 100104.0116 113755.7074 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.88 2 2 2 16876.13206 20213.6815 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 17.63 14 20 14 433477.04835 538143.04763 +Q960Z0 Kinesin-like protein Klp10A 11.06 9 9 0 35574.7235 41949.479999999996 +Q961C9 Transport and Golgi organization protein 11 12.64 4 7 0 175251.885 170398.961 +Q961D9 Protein BCL9 homolog 1.43 2 2 2 1804.7345 908.04706 +Q967D7 Protein turtle 2.74 4 6 0 162435.9623 188534.6041 +Q99323 Myosin heavy chain, non-muscle 5.15 10 12 1 149395.9577 199237.85547 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.26 3 4 0 49042.6354 47271.0855 +Q9GQQ0 Protein spinster 1.98 1 3 1 31235.351199999997 30796.968500000003 +Q9GU68 Eukaryotic translation initiation factor 5A 74.21 14 62 14 5181207.0053 6417796.9543 +Q9GYU8 Nuclear pore complex protein Nup88 3.7 2 2 2 9831.582 12667.644400000001 +Q9I7D3 Caprin homolog 12.38 10 12 0 106589.89476 141504.8689 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 12.11 4 6 0 68437.75905 85009.1745 +Q9I7K0 Microtubule-associated protein Jupiter 25.96 5 5 4 161193.60950000002 188303.2253 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 3 3 0 22458.2755 29641.858999999997 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 9.76 4 7 4 144313.76 184934.3867 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 41.72 18 34 1 1091496.3533 1219492.58666 +Q9I7T7 La-related protein Larp4B 1.7 2 3 2 26702.311700000002 30181.63177 +Q9I7U4 Titin 1.5 22 25 0 198318.92257999998 204060.8534 +Q9I7X6 Carnosine N-methyltransferase unmet 7.24 2 2 2 13788.774 22579.055699999997 +Q9NB04 Patj homolog 31.46 20 37 0 722449.6676 921497.59185 +Q9NBD7 CLIP-associating protein 4.09 5 6 5 16471.3204 22596.51838 +Q9NBK5 Serine/threonine-protein kinase tricornered 10.58 5 5 0 41251.6086 41419.34 +Q9NEF6 V-type proton ATPase subunit D 2 23.69 8 21 0 48496.863 61106.967000000004 +Q9NHA8 Gram-negative bacteria-binding protein 3 10.0 5 6 5 45003.96568 50682.490999999995 +Q9NHD5 Probable N-acetyltransferase san 35.87 5 9 5 104877.3098 121019.977 +Q9NHE5 Calcium-dependent secretion activator 3.39 5 5 5 62043.396700000005 67794.724 +Q9NIP6 Cardio acceleratory peptide 2b 6.62 1 1 1 9867.55 11295.513 +Q9NJB5 Homeobox protein onecut 1.85 2 2 0 17075.7833 19684.0864 +Q9NJH0 Elongation factor 1-gamma 41.07 17 52 17 1655547.84506 1944294.4224 +Q9NK57 NIF3-like protein 1 18.49 5 10 5 47648.5209 59291.4865 +Q9TVM2 Exportin-1 1.79 2 2 0 16545.4685 30324.29 +Q9TVP3 J domain-containing protein 79.49 16 82 16 5262903.4463 6786765.42232 +Q9U3Z7 NHP2-like protein 1 homolog 48.03 6 31 0 512768.7634 656489.55183 +Q9U4G1 Protein borderless 19.89 13 27 13 624772.38946 888748.0734999999 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 9.01 3 3 0 41737.82 55811.948000000004 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 17.1 11 13 11 155310.772 216350.736 +Q9U616 Glycine cleavage system H protein, mitochondrial 55.15 5 17 5 938861.60675 1174486.8869 +Q9U6L5 Ejaculatory bulb-specific protein 1 2.39 1 1 0 5314.4453 5978.7646 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 6.11 3 3 3 46453.26122 47219.460999999996 +Q9U915 Adenylate kinase 2 72.08 21 51 21 2253439.4104 2415860.6886 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 8.06 3 4 3 57931.057 72632.924 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 17.16 6 13 6 127168.00690000001 153906.3104 +Q9V345 COP9 signalosome complex subunit 4 20.88 8 12 0 138167.6643 175231.7905 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 24.76 6 10 0 183259.4867 154302.4436 +Q9V3B6 Protein CWC15 homolog 8.49 2 3 2 14586.3966 17058.66065 +Q9V3C0 ATP-dependent RNA helicase abstrakt 3.23 2 3 2 8820.769 12364.635699999999 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 13.33 5 5 0 71011.3906 63366.854799999994 +Q9V3D4 Chitinase-like protein Idgf2 31.59 11 24 1 718260.4591 924986.2209000001 +Q9V3F3 Transcription termination factor, mitochondrial 3.41 2 2 2 12030.5559 15813.5086 +Q9V3G1 Large ribosomal subunit protein uL2 45.31 13 29 13 2031342.6395999999 2211129.9545 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 20.0 5 6 5 68431.90950000001 104588.601 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 13.11 5 7 5 169156.73 185883.117 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 11.04 4 6 4 162518.36500000002 164976.3592 +Q9V3I2 Ras-related protein Rab5 53.88 9 15 9 263292.00704 327367.8748 +Q9V3J1 V-type proton ATPase subunit H 48.5 18 41 0 944094.37506 998268.90256 +Q9V3J4 Protein SEC13 homolog 17.7 6 7 6 55147.54259999999 63096.6992 +Q9V3K3 RuvB-like helicase 2 26.61 13 16 0 114959.359 129027.3613 +Q9V3L6 Nuclear cap-binding protein subunit 2 22.73 4 5 4 58724.392499999994 51769.732659999994 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 22 11 306842.24487 331386.59055 +Q9V3P0 Peroxiredoxin 2 74.23 15 136 0 6826928.539150001 7308990.9428 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 12.16 12 16 0 338269.2723 268950.2496 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 2.25 2 2 0 11198.975 11622.328 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 8.15 4 4 4 24900.6014 32292.533000000003 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 24.38 4 7 0 276282.6073 328478.54850000003 +Q9V3V0 Serine/arginine-rich splicing factor x16 6.98 2 2 2 16453.913 18759.2023 +Q9V3W0 RutC family protein UK114 52.17 8 41 8 2921279.9842 3407355.3142 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 15.35 3 3 3 55130.807 66949.6425 +Q9V3Y2 Anamorsin homolog 30.24 5 8 5 171904.2053 211384.5508 +Q9V3Y3 Defense protein l(2)34Fc 34.59 4 11 0 626342.7756 858568.7992 +Q9V3Z2 Serine protease 7 15.35 5 6 4 42338.266 42813.9769 +Q9V419 Probable cytochrome P450 28a5 16.24 9 11 9 212224.4535 212252.568 +Q9V427 Innexin inx2 8.99 4 8 0 151874.815 185223.709 +Q9V429 Thioredoxin-2 68.87 7 37 7 2922724.8468 3338764.3757 +Q9V431 Apoptosis inhibitor 5 homolog 22.2 11 18 11 485623.78271 559489.9680999999 +Q9V438 Protein disulfide-isomerase A6 homolog 24.71 12 28 12 612419.0431 754850.41786 +Q9V447 Krueppel homolog 2 12.68 3 3 0 41304.2466 61702.5523 +Q9V496 Apolipophorins 34.8 114 261 0 11612189.18184 13218009.90514 +Q9V498 Calsyntenin-1 1.02 1 1 0 55678.527 72948.52 +Q9V4C0 Dopaminechrome tautomerase 4.32 2 2 1 16600.76128 21557.172 +Q9V4C8 Host cell factor 4.93 8 11 8 117085.9239 140288.81149999998 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 3.98 1 1 0 9900.955 6647.3613 +Q9V4N3 Cytochrome b5 61.19 5 26 5 832823.54694 1414412.1133 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 15.09 5 8 5 190426.214 271054.9023 +Q9V4S8 COP9 signalosome complex subunit 7 25.18 7 12 7 226833.17200000002 296581.979 +Q9V4W1 mRNA export factor Gle1 3.69 2 3 2 9093.51512 8977.02105 +Q9V521 Phenoloxidase 2 22.22 16 20 15 779494.1972 968873.9392 +Q9V535 RNA-binding protein 8A 40.61 5 16 5 400449.94789999997 525678.42396 +Q9V564 Conserved oligomeric Golgi complex subunit 6 4.76 3 3 3 14113.4473 15888.722199999998 +Q9V595 Uroporphyrinogen decarboxylase 32.3 11 17 11 357254.57996 396222.06768 +Q9V597 Large ribosomal subunit protein eL31 56.45 10 34 10 1804358.6348 1568602.84274 +Q9V5C6 Proteasome subunit alpha type-3 51.38 11 38 11 1012753.82577 1328155.62384 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 7.68 5 8 1 1518.4163 2733.5369 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 21.88 1 2 1 36715.797 54365.598 +Q9V637 Proteasome inhibitor PI31 subunit 25.93 7 10 0 144068.34064 225080.858 +Q9V674 Cytochrome P450 6g1 3.24 2 2 0 14779.172 22862.756400000002 +Q9V6B9 Probable nucleoporin Nup54 7.38 4 5 4 60597.051100000004 71113.046 +Q9V6G5 Tafazzin 5.82 3 3 0 31396.917 29768.4519 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 50.7 16 73 16 2662664.49456 3196406.36654 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 5.97 3 3 0 33825.7465 36056.948 +Q9V6Y3 Small ribosomal subunit protein bS16m 14.73 2 3 2 40422.8824 44932.419 +Q9V773 Probable cytochrome P450 6a20 9.38 5 6 4 45261.7464 52739.4458 +Q9V784 SAM50-like protein CG7639 6.09 3 4 3 21124.094 23218.1773 +Q9V7D2 V-type proton ATPase subunit D 1 58.94 15 70 10 3257933.6681600004 3778943.83285 +Q9V7N5 V-type proton ATPase subunit C 26.08 22 104 0 4961780.4873 5916945.4105 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 45.33 12 24 0 745135.4791 893940.1636 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 8.05 2 2 0 65786.364 72455.55459999999 +Q9V8F5 Bomanin Bicipital 1 36.75 4 8 4 68040.195 74693.81 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 50.0 11 33 11 1184104.9372 1478944.93739 +Q9V8R9 Protein 4.1 homolog 40.99 59 107 1 2786124.28657 3226074.4972 +Q9V8Y2 General odorant-binding protein 56a 28.06 4 15 4 790734.2542 982260.6160000002 +Q9V931 General odorant-binding protein 57c 46.98 7 8 7 283025.7313 359597.24569999997 +Q9V968 MIP18 family protein galla-1 30.28 6 9 0 44798.115600000005 46568.1224 +Q9V998 Ubiquitin-like protein 5 28.77 2 2 2 95458.447 83079.73999999999 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 10.21 6 7 6 33731.9597 43661.4397 +Q9V9J3 Tyrosine-protein kinase Src42A 3.68 2 4 0 11206.252 13626.507 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 3 2 16069.5414 26769.119 +Q9V9N4 Transcription factor Clamp 1.96 1 1 1 9633.1875 10520.085 +Q9V9S7 Rho GTPase-activating protein 100F 4.77 6 7 0 27565.18206 30279.8886 +Q9V9S8 Ferrochelatase, mitochondrial 30.99 11 26 11 544806.52964 746858.7910999999 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 126169.53837000001 174442.4287 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 31.87 10 12 10 187005.6808 246864.5807 +Q9V9Y9 Protein spindle-F 5.77 2 2 0 1233.8148 1489.5133 +Q9V9Z1 Large ribosomal subunit protein bL32m 4.1 1 1 1 27891.486 30416.734 +Q9VA37 Protein dj-1beta 72.73 12 59 12 3289580.4132 4135373.43434 +Q9VA70 Neutral ceramidase 2.41 2 2 0 16416.415 17041.8835 +Q9VA91 Small ribosomal subunit protein eS7 59.28 13 48 0 2982538.769 3213163.8834 +Q9VAF5 Cadherin-99C 5.92 10 11 10 48730.4835 57449.9279 +Q9VAI6 General odorant-binding protein 99b 46.31 5 29 0 4282883.587400001 5622810.9860000005 +Q9VAJ4 General odorant-binding protein 99a 41.55 7 29 0 1162710.1606 1244899.9772 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 73 6 3735391.48226 4648891.83683 +Q9VAN0 Phosphoserine aminotransferase 42.58 13 46 13 1149974.16924 1456102.68094 +Q9VAP3 Choline transporter-like 2 6.53 6 7 6 108567.64 113151.2412 +Q9VAW5 La-related protein 1 4.06 5 5 0 42642.1652 46511.1471 +Q9VAY3 Mitoferrin 7.65 3 3 3 24638.6676 29186.0812 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 4.84 2 3 2 30617.061999999998 44302.605 +Q9VB68 Serine protease grass 12.2 5 6 5 20659.509299999998 23215.8357 +Q9VBC7 Neuroendocrine convertase 2 7.65 4 5 4 22398.211900000002 29299.7144 +Q9VBP9 Nuclear protein localization protein 4 homolog 2.91 2 3 2 8742.17618 9970.1986 +Q9VBV3 Protein takeout 26.91 6 7 0 78241.0025 106419.82699999999 +Q9VBV5 Nucleotide exchange factor Sil1 18.65 8 10 8 165416.7446 202256.2364 +Q9VBZ5 YTH domain-containing family protein 2.71 2 2 2 6340.840099999999 6921.160400000001 +Q9VC03 Nicotinamide-nucleotide adenylyltransferase 5.14 2 2 2 587.403 448.65244 +Q9VC57 Atlastin 5.91 3 4 0 34380.198 40381.2967 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.96 3 3 3 26160.82918 34976.9693 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.6 2 2 0 3367.0571 2730.67734 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 14 0 317152.1293 368457.51869999996 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 15.54 6 8 6 120055.91370000002 176040.9413 +Q9VCE1 Beclin-1-like protein 4.74 2 3 2 14505.178100000001 21331.9237 +Q9VCE8 Actin maturation protease 9.74 1 2 0 2290.8749 4302.7576 +Q9VCG3 Putative OPA3-like protein CG13603 26.27 6 11 0 387697.0096 436042.9514 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 6.99 10 16 10 244003.2341 284272.5034 +Q9VCI0 RNA exonuclease 2 23.7 4 4 4 119854.3614 166497.28306 +Q9VCJ8 Spaetzle-processing enzyme 17.5 7 14 5 219905.3266 230946.90318 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 14.82 7 12 6 270597.81494 261739.638 +Q9VCK1 GILT-like protein 2 9.66 2 2 2 64569.805 56921.998 +Q9VCR3 Proteoglycan Cow 2.86 2 3 0 12067.7044 14011.8123 +Q9VCX3 Large ribosomal subunit protein mL45 8.03 2 2 2 4706.9708 5012.0380000000005 +Q9VCY3 COP9 signalosome complex subunit 6 28.74 8 11 8 296791.7141 356619.17100000003 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 20 0 401949.51509 582783.5436 +Q9VD09 Retinol-binding protein pinta 15.75 5 6 5 48078.52 47101.0398 +Q9VD26 Zinc finger protein-like 1 homolog 12.04 3 4 3 136248.89359999998 73418.087 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 14.79 14 17 14 195568.3191 205852.94982 +Q9VDD1 DDRGK domain-containing protein 1 11.65 3 3 3 53345.2484 52749.641 +Q9VDE4 Protein Bride of doubletime 2.45 1 1 1 4858.1914 3190.8313 +Q9VDG5 Sodium/calcium exchanger Calx 2.11 2 2 0 26598.837 32191.771 +Q9VDL1 Esterase CG5412 9.68 2 3 2 7542.3526 7734.3646 +Q9VDS5 Rho GTPase-activating protein 92B 3.65 2 2 0 11041.2246 10814.0461 +Q9VDV3 Nuclear pore complex protein Nup58 12.27 8 8 8 207458.2049 228724.3216 +Q9VDW3 Dystrophin, isoform B 0.48 1 1 0 2655.0862 3382.007 +Q9VE50 Golgi SNAP receptor complex member 1 14.66 3 4 3 43681.204060000004 52064.625 +Q9VE61 E3 ubiquitin-protein ligase RNF181 homolog 8.16 1 1 0 12814.26 16561.342 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 25.9 3 3 3 45106.153000000006 59756.943999999996 +Q9VEB3 Ribosome production factor 2 homolog 5.62 2 2 2 5723.89617 6917.7935 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 48.29 9 55 9 2317638.4169 2699115.94203 +Q9VER6 Modular serine protease 3.18 2 3 2 30192.4613 5973.9954 +Q9VET0 Neuropeptide F 29.41 3 4 0 56856.863099999995 74001.06049999999 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 34.27 24 46 24 1549715.12304 1753089.6401 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 6 0 116984.4166 117211.514 +Q9VEZ3 Protein mini spindles 1.52 3 4 0 5984.4858 10875.531299999999 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 38.3 6 8 0 452889.55694000004 238084.73796 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 59 15 4563115.98857 5059161.76837 +Q9VF36 Acylphosphatase-2 27.45 3 3 0 21686.223 23885.368000000002 +Q9VF71 Copper homeostasis protein cutC homolog 28.9 7 18 0 209849.64904 249218.1535 +Q9VF89 Large ribosomal subunit protein bL9m 6.05 2 2 2 6650.9927 10446.035 +Q9VFB2 Small ribosomal subunit protein uS10m 11.56 2 2 2 62227.709 67709.46 +Q9VFC2 Serine protease inhibitor 88Ea 31.38 13 30 12 576610.8913 690772.769 +Q9VFC8 Glycogen [starch] synthase 10.44 7 9 1 185331.8429 215108.63799999998 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 2.68 3 3 0 14559.6344 23602.8362 +Q9VFJ0 Probable cytochrome P450 313a1 4.67 2 2 2 6871.299300000001 8840.9746 +Q9VFJ2 Large ribosomal subunit protein uL11m 19.9 4 4 4 37209.164 50625.73299999999 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 3 0 27752.0726 31033.6534 +Q9VFM9 Twinfilin 24.78 8 14 8 138160.2967 165630.39416 +Q9VFP1 Probable cytochrome P450 6d5 11.81 6 7 6 273863.8436 345753.64160000003 +Q9VFR0 Protein BCCIP homolog 5.05 2 3 2 74155.348 92463.957 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 0.71 1 1 0 12135.9795 14408.59 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 36.36 8 10 8 158239.06475 133648.05528 +Q9VFW4 Elongator complex protein 6 3.98 1 2 1 37586.579 48617.233 +Q9VG08 L-dopachrome tautomerase yellow-f2 1.99 1 1 1 7041.066 8150.62 +Q9VG55 Protein hugin 18.32 2 2 2 11567.444 13542.2646 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.0 8 11 8 226927.536 286338.80578 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 1.88 1 1 1 8243.869 8024.174 +Q9VG76 Myc-binding protein 11.05 2 2 2 41487.652 45978.043 +Q9VG82 Probable cytochrome P450 9f2 5.43 3 3 3 49205.8143 67848.0618 +Q9VG97 Inactive glutathione S-transferase D3 43.72 9 23 9 1452065.7218 1784750.3465 +Q9VG98 Glutathione S-transferase D2 19.53 6 13 1 124803.757 145552.568 +Q9VGG5 Cadherin-87A 5.16 9 12 9 278186.7252 236006.02104 +Q9VGN9 Probable ribosome biogenesis protein RLP24 6.28 1 1 1 21360.89 29035.766 +Q9VGP6 Prefoldin subunit 3 29.9 6 8 6 237509.134 260244.097 +Q9VGQ9 Diphthamide biosynthesis protein 3 10.47 1 1 1 7694.0933 8119.771 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 8.01 3 3 3 17777.1889 26585.5407 +Q9VGR7 J domain-containing protein CG6693 3.34 1 1 0 18423.312 23856.334 +Q9VGS2 Translationally-controlled tumor protein homolog 76.16 12 49 0 3883160.99245 4702717.77295 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 43.98 11 17 11 414408.2645 485126.04360000003 +Q9VGV8 Phosducin-like protein 3 8.8 2 3 2 23687.8388 28351.443 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 2.11 1 1 1 3178.0884 5694.9976 +Q9VH07 RuvB-like helicase 1 23.03 7 14 7 182766.9156 233782.66499999998 +Q9VH19 Leishmanolysin-like peptidase 2.64 2 2 2 10586.471 9208.633 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 47.29 9 11 9 1014743.27 1176627.4675 +Q9VH69 Small ribosomal subunit protein uS14 35.71 2 9 0 1127073.607 1474370.389 +Q9VH95 Cytosolic Prostaglandin E synthase 47.83 8 26 8 1484492.0374 1698415.104 +Q9VHA0 Polycomb protein Scm 2.74 2 2 0 732.7403 1858.1696 +Q9VHD2 Probable maleylacetoacetate isomerase 2 21.59 5 8 5 60943.961950000004 71103.1939 +Q9VHD3 Probable maleylacetoacetate isomerase 1 20.73 4 5 4 60858.528 70351.1222 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 10 6 200836.6956 239035.3755 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.74 7 10 7 49056.2133 58548.20368 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 21.43 4 6 4 288223.389 261460.912 +Q9VHN6 Large ribosomal subunit protein bL19m 8.82 2 4 2 16179.5659 12006.302099999999 +Q9VHP0 ATP-dependent RNA helicase bel 25.06 16 22 0 152296.38836 160723.21412 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3179.1323 2778.8293 +Q9VHR8 Dipeptidyl peptidase 3 35.75 26 55 26 1109974.57634 1334282.16015 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 75.28 8 49 0 5655344.55886 5848171.05301 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 40.34 5 6 5 214440.9276 216652.7186 +Q9VI13 Serine/threonine-protein kinase Pak 4.26 3 3 0 26901.257100000003 34698.7886 +Q9VI25 Neurochondrin homolog 2.35 2 2 2 2065.9644 3042.5488 +Q9VI55 E3 UFM1-protein ligase 1 homolog 9.97 9 9 0 88568.2253 112050.0469 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 56.2 20 89 2 144364.89058 164325.98808 +Q9VIH3 Microsomal triacylglycerol transfer protein 2.03 2 2 2 18374.207000000002 24661.79 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 15 6 525134.8974 677009.1154 +Q9VII1 UPAR/Ly6 domain-containing protein bero 54.05 7 16 7 541640.6430500001 520608.37710000004 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 23.26 6 6 0 96663.482 117554.78 +Q9VIQ0 Short neuropeptide F 9.25 2 3 2 26640.8409 42538.3777 +Q9VIT0 DNA sliding clamp PCNA2 12.94 4 4 4 31132.856 32573.22743 +Q9VIV2 Zinc finger protein swm 2.92 3 4 0 15533.9458 14410.30747 +Q9VIW3 Ran GTPase-activating protein 13.42 8 13 0 411280.675 495893.782 +Q9VJ26 EF-hand domain-containing protein D2 homolog 46.08 9 15 0 417148.1839 448838.6639 +Q9VJ31 Betaine-homocysteine S-methyltransferase 13.9 5 7 5 153994.6163 197407.3683 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 122626.15419999999 153796.3765 +Q9VJC7 Elongation factor Ts, mitochondrial 18.87 6 10 6 266708.70149999997 294192.178 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 6.45 1 1 0 9532.042 13408.017 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 1.07 1 1 0 2752.0098 3369.0466 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 26.5 3 3 3 19861.9056 26194.964999999997 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 3.43 2 2 2 15413.43 18148.563000000002 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 1 1 25826.828 28685.553 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 37.3 9 11 9 131944.77168 142325.1501 +Q9VJL6 Glia maturation factor 10.87 2 3 2 67344.38399999999 73586.207 +Q9VJQ5 Protein Dr1 17.49 3 3 3 35477.3128 34815.7485 +Q9VJY6 Large ribosomal subunit protein eL24 29.68 7 17 0 444259.0405 894386.2329 +Q9VJY9 Protein Loquacious 12.69 5 5 0 137379.104 84303.84446 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 9.93 1 2 1 10323.968 10738.972699999998 +Q9VKD3 Cysteine desulfurase, mitochondrial 23.38 10 14 9 207035.5226 222510.099 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 1.93 1 1 1 2333.5168 2776.5564 +Q9VKJ8 Alpha-L-iduronidase 1.42 1 1 1 3059.4136 3308.7595 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 10.54 9 11 0 117131.9907 142731.94823 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.62 6 8 6 34040.554339999995 42931.33008 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 5.64 2 2 2 94379.73999999999 85780.949 +Q9VKX4 Small ribosomal subunit protein uS7m 16.51 4 5 0 122833.515 142688.4693 +Q9VL00 Ubiquitin thioesterase otubain-like 9.16 2 2 2 104342.215 43079.464 +Q9VL13 MOB kinase activator-like 3 4.09 1 1 1 15237.773 13394.808 +Q9VL18 Probable elongation factor 1-delta 54.69 16 44 16 2095693.65732 2165430.88458 +Q9VL78 FK506-binding protein 59 55.58 29 59 0 1920519.5367 2218413.1085 +Q9VLF6 UPF0585 protein CG18661 17.57 3 3 0 34170.5472 39110.4733 +Q9VLJ6 Angiotensin-converting enzyme-related protein 7.78 6 6 0 106252.61360000001 110789.4584 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 10.77 9 11 9 128520.30148 143039.52 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 51.64 6 9 6 172903.66150000002 189643.3804 +Q9VLR5 RNA polymerase II transcriptional coactivator 25.45 3 7 3 177176.8272 132880.8234 +Q9VLS9 Beta-lactamase-like protein 2 homolog 48.63 10 19 10 590430.62205 757178.9194 +Q9VLT8 WASH complex subunit 3 19.89 3 3 3 18231.1004 21198.5115 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 13 0 599316.8164 738898.1656 +Q9VLU4 Serine protease inhibitor 28Dc 13.43 6 8 6 141437.8228 159563.8155 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 9 3 170060.0327 250339.8566 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 3213.307 4242.888 +Q9VM33 Elongation factor G, mitochondrial 3.89 3 3 3 27963.5277 28332.8197 +Q9VM65 FGFR1 oncogene partner 2 homolog 14.29 5 6 0 65324.934499999996 75028.916 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 5.71 3 6 0 53853.7424 53902.1985 +Q9VMA7 Transport and Golgi organization protein 1 3.36 6 6 1 60478.9264 76468.3046 +Q9VMC8 PHD finger-like domain-containing protein 5A 26.13 3 3 3 48707.5317 55598.691699999996 +Q9VMD6 Protein real-time 2.58 2 2 0 25816.591 24309.66 +Q9VMD9 Tiggrin 11.33 29 34 0 358008.01 386679.80749 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 20.37 4 5 4 29137.245199999998 29711.60794 +Q9VMM6 Protein obstructor-E 36.95 8 16 8 323690.07039999997 344261.2748 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 4 3 14316.7476 14782.486369999999 +Q9VMQ7 Elongator complex protein 4 14.42 5 5 5 52120.295 55534.8723 +Q9VMR8 Protein Turandot M 33.59 3 5 0 190787.8577 275763.45 +Q9VMT5 Probable cytochrome P450 28d1 14.94 10 14 10 216375.7793 305411.19299999997 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 3 0 35512.719 35996.043 +Q9VMU5 Protein quick-to-court 5.55 4 5 0 56198.3358 51654.37 +Q9VMW7 Inosine triphosphate pyrophosphatase 31.41 7 13 7 741729.6004 864084.5366 +Q9VMX0 Large ribosomal subunit protein bL28m 9.93 3 3 0 51171.643 64684.215000000004 +Q9VMY1 Large ribosomal subunit protein uL24m 9.31 3 4 3 44564.717300000004 46514.102 +Q9VMY9 Guanine deaminase 4.46 2 2 2 51326.280999999995 71650.57699999999 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 4 0 46044.129 45341.128 +Q9VN13 Sideroflexin-1-3 16.2 5 7 5 146809.9885 166651.30299999999 +Q9VN14 Contactin 19.78 25 34 25 411910.40892 434392.9574 +Q9VN19 Golgi to ER traffic protein 4 homolog 5.9 2 3 0 14958.1188 15021.0908 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 3.07 4 4 4 59620.709 63914.2672 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 28.57 8 15 8 209327.84326 204318.2076 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 40 8 369452.62385 410613.16985 +Q9VN93 Cathepsin F 22.64 13 28 12 1397051.3671 1521541.7363 +Q9VN95 Enolase-phosphatase E1 23.83 5 11 5 221761.412 203197.772 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 3 0 65008.657999999996 84429.848 +Q9VNA5 Proteasome subunit beta type-4 5.22 2 4 2 76626.05185999999 89894.8876 +Q9VND8 GTP-binding protein Rheb homolog 22.53 5 9 5 209449.23502000002 211434.43643 +Q9VNE2 Protein krasavietz 31.28 16 24 16 988306.868 1040630.9346 +Q9VNE9 Large ribosomal subunit protein uL13 27.8 9 17 6 649444.49 759293.2535 +Q9VNI3 Histone PARylation factor 1 4.45 2 2 2 8447.921 9937.541 +Q9VP48 Ras-related protein Rab-26 9.79 4 7 0 49615.8867 53187.153399999996 +Q9VP61 Acetyl-coenzyme A synthetase 8.51 6 6 0 165330.2652 165727.4343 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 25.81 2 4 2 13026.6541 14811.5445 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 44061.0563 61986.0086 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 8.45 4 4 0 33409.409 44863.4323 +Q9VPL3 Large ribosomal subunit protein uL10m 9.68 3 4 3 56062.222200000004 54897.8628 +Q9VPQ2 DnaJ homolog shv 16.67 6 7 6 196116.4355 216538.80289999998 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 36 10 3110652.17837 3272990.46298 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 13 5 941764.27336 1002447.5262 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 14.61 9 11 0 154521.5664 164754.19685 +Q9VQ91 Tudor and KH domain-containing protein homolog 7.47 5 6 5 21193.6436 25171.5694 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 16.33 4 5 4 108559.36077 114659.41803 +Q9VQC4 Glycerate kinase 12.94 8 8 0 132155.678 171899.652 +Q9VQF7 Bacchus 40.79 6 16 6 173255.3533 233542.96469999998 +Q9VQF9 SNAPIN protein homolog 16.42 2 3 2 79819.00099999999 94608.667 +Q9VQG4 Congested-like trachea protein 29.74 9 17 8 369088.2386 459927.02916000003 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 22.61 9 15 9 335964.6987 361649.4493 +Q9VQX4 Nicotinate phosphoribosyltransferase 4.14 2 2 0 40486.434 41227.30100000001 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 11.03 7 10 0 159348.51499999998 192013.915 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 1.89 2 2 0 4328.6934 4882.4062 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 4.8 2 3 0 5695.87796 5912.87174 +Q9VR89 RNA-binding protein pno1 6.25 2 2 2 26876.841999999997 23903.336 +Q9VR94 General odorant-binding protein 19a 15.75 3 6 3 110819.94459999999 131602.6799 +Q9VRJ9 Ubiquitin thioesterase Otu1 12.39 4 8 0 30807.17524 40218.0412 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 10.19 2 2 2 5641.7055 6278.731400000001 +Q9VRL3 Probable prefoldin subunit 4 10.87 2 3 2 360293.4 407942.69 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 1.63 2 2 0 13022.5821 18041.441 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 12.65 5 6 5 64722.041 121671.59683 +Q9VRV7 Splicing factor 3B subunit 6 9.92 1 2 1 5508.9028 7739.436540000001 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 24.32 6 12 6 177439.5721 201720.66451 +Q9VS34 Large ribosomal subunit protein eL18 22.34 3 6 0 659723.887 404145.162 +Q9VS97 Peptidoglycan-recognition protein SD 9.14 2 3 2 27647.904000000002 30216.814 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 54.89 20 73 20 2310382.9389 2809073.7386000003 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 17.68 3 4 0 31636.118000000002 41050.544 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 1.69 1 2 0 15463.717 19569.763 +Q9VSJ8 Exocyst complex component 7 8.66 6 7 6 61016.61586 65815.5009 +Q9VSK9 Pseudouridylate synthase 7 homolog 5.45 3 3 3 28329.326 32939.48 +Q9VSL3 Pyrimidodiazepine synthase 61.32 13 64 12 3296587.0219 3540948.88725 +Q9VSR3 Translational regulator orb2 5.82 4 4 0 56333.108 52251.9724 +Q9VSS2 Signal recognition particle subunit SRP68 8.44 5 6 5 45994.9007 56963.6224 +Q9VSU7 Vesicle transport protein USE1 22.0 4 4 4 41282.9355 43751.331 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 39.26 19 55 8 1936075.5793 2345819.44395 +Q9VSY6 Phosphoserine phosphatase 20.0 5 8 5 190925.79609999998 240183.325 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 6.7 3 3 3 8936.2981 11050.097099999999 +Q9VT70 Nuclear distribution protein nudE homolog 7.57 2 2 0 9457.0946 13330.9353 +Q9VTC4 MIP18 family protein galla-2 5.13 2 3 2 34173.952 39963.062999999995 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 11.32 2 2 2 37178.3087 53311.151399999995 +Q9VTE5 Probable prefoldin subunit 2 56.64 8 13 0 430938.9083 536058.6209 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 7.82 4 4 0 41541.4995 55580.785 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 14.87 6 7 6 107023.2294 111995.277 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 1.53 1 1 1 4472.8228 7160.022 +Q9VTJ4 Putative alpha-L-fucosidase 4.86 3 3 3 48501.727 86091.734 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 7.63 1 1 0 22616.533 29155.258 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 4 3 79950.4785 61689.375700000004 +Q9VTP4 Large ribosomal subunit protein uL1 53.46 12 49 12 4140500.04235 4686940.7997 +Q9VTU3 Rho GTPase-activating protein 68F 12.61 5 6 0 108337.456 121597.20857 +Q9VTZ5 Transferrin 2 22.59 16 21 16 259948.37487 361980.30350000004 +Q9VTZ6 Phosphomannomutase 22.44 5 8 5 96487.07303 115970.82417 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 4 1 50141.218 91864.203 +Q9VU58 Neuropeptide-like 2 66.28 6 107 0 7632682.62913 11295451.8618 +Q9VU68 Actin-interacting protein 1 32.89 20 31 20 657708.3703 770498.3959 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 9.73 2 3 2 25074.956599999998 24547.7546 +Q9VU84 Drebrin-like protein 26.18 11 14 11 229000.52775 267065.69266 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 10.32 4 6 4 18607.17997 24371.828700000002 +Q9VUJ0 Large ribosomal subunit protein mL39 3.6 1 1 1 2729.2922 2948.9058 +Q9VUK8 Glycine--tRNA ligase 28.63 20 41 20 1090256.9409999999 1319332.38814 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 12.87 5 6 0 43022.771499999995 56130.51207 +Q9VUY9 Phosphoglucomutase 1 31.43 15 31 15 700236.4433 911698.473 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 10.79 2 2 2 30190.451 36780.48 +Q9VV36 Retinin 29.84 5 91 5 6770234.67824 8046518.03586 +Q9VV41 Probable tRNA N6-adenosine threonylcarbamoyltransferase 8.07 2 2 2 969.39273 3329.94286 +Q9VV43 Tubulin polymerization-promoting protein homolog 67.19 12 38 0 2538244.47107 2965661.1905 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 28.27 13 29 13 317130.44916 344837.4425 +Q9VV74 Survival motor neuron protein 3.1 1 1 1 11546.654 12549.146 +Q9VVA0 Cold shock domain-containing protein CG9705 17.48 2 7 0 220823.5643 253528.15 +Q9VVA6 Nuclear migration protein nudC 32.53 12 23 12 540228.7941 598761.0157 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 116077.7961 137106.9374 +Q9VVE2 Protein rogdi 30.97 7 12 7 245518.18863 335830.6674 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 32.52 8 18 0 189618.7654 306834.6108 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 7.09 2 3 0 35256.639599999995 64671.2877 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 33 7 1214164.70797 1397040.143 +Q9VVI2 Enhancer of mRNA-decapping protein 3 4.41 2 3 2 4306.2741000000005 4077.8728 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 3.97 4 5 0 33544.772600000004 30709.888899999998 +Q9VVI9 Charged multivesicular body protein 5 66.81 12 24 0 413929.3606 419554.7493 +Q9VVN2 Small ribosomal subunit protein mS26 11.11 3 3 3 54192.096 56580.827000000005 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 3 2 20075.327800000003 24948.268500000002 +Q9VVW3 Sideroflexin-2 19.57 6 6 6 105198.1826 131618.127 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 5.67 2 3 2 59884.945 69020.773 +Q9VVY3 Glycogen-binding subunit 76A 9.84 5 6 0 19999.92785 30182.82791 +Q9VW12 UPF0389 protein CG9231 38.4 4 24 0 867690.9031 975820.8242500001 +Q9VW14 rRNA methyltransferase 3, mitochondrial 6.39 3 3 3 11980.4719 16007.3791 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 8 13 8 133484.9504 170954.47590000002 +Q9VW56 Probable prefoldin subunit 6 56.0 7 13 0 502339.9631 575651.4768000001 +Q9VWA1 Clathrin light chain 40.64 11 40 0 1896854.659 2043275.8776 +Q9VWA8 Protein FRG1 homolog 9.54 2 2 2 10296.3775 12480.9136 +Q9VWB1 DCN1-like protein 4 8.06 2 2 1 26935.096999999998 31074.58237 +Q9VWE0 Cytokine receptor 1.56 2 2 2 16205.681700000001 13250.847000000002 +Q9VWG3 Small ribosomal subunit protein eS10B 45.62 7 15 0 778669.778 902546.363 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 72.15 29 182 28 16526320.82234 19614804.67378 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 58.47 8 33 8 2848255.55892 3443720.64735 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 17.86 9 13 0 60868.03436 58035.785299999996 +Q9VWP4 Sulfite oxidase, mitochondrial 6.63 4 4 4 63046.8824 71994.9672 +Q9VWU1 Serine protease persephone 7.61 3 3 3 25212.441 33428.0714 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.84 3 3 3 687.19183 335.3328 +Q9VWX8 Frequenin-2 52.94 11 47 5 1023520.7225 1330265.2327 +Q9VX10 Sulfiredoxin 4.32 1 1 0 33809.74 34789.65 +Q9VX98 Density-regulated protein homolog 41.8 7 12 7 302668.4412 358317.5004 +Q9VXB0 NECAP-like protein CG9132 46.34 9 24 2 1101937.1144 1265205.43473 +Q9VXB5 Large ribosomal subunit protein uL22m 18.03 4 4 4 33303.1708 28620.9484 +Q9VXE0 Probable small nuclear ribonucleoprotein G 47.37 4 10 4 388462.58499999996 456354.2353 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 15.49 5 5 5 14954.910039999999 15042.724080000002 +Q9VXE6 Nuclear pore complex protein Nup153 0.48 1 1 0 10514.937 9843.451 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 45.72 20 57 0 1045184.63433 1125630.99796 +Q9VXG4 Annexin B11 23.68 13 31 13 1360703.9873 1278589.80345 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.75 14 17 0 235326.4043 307976.8699 +Q9VXK0 Protein NipSnap 15.38 4 8 0 308702.1679 354121.4306 +Q9VXK6 Eukaryotic translation initiation factor 5 25.22 12 16 12 588590.5443000001 706720.7443 +Q9VXN2 Protein stunted 49.18 3 9 3 290659.04082 365195.2342 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 3.46 2 2 2 14329.1441 13862.5202 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 22.22 5 11 5 355967.744 380396.8856 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 9.64 3 4 0 49814.5613 61077.077999999994 +Q9VXY0 Probable cytochrome P450 4s3 2.02 1 1 1 633.3598 1690.3733 +Q9VXY7 Lipid storage droplets surface-binding protein 2 50.28 13 41 1 2596088.0888 3092184.3301 +Q9VY28 Small ribosomal subunit protein mS25 24.55 4 4 4 34653.430159999996 51320.185699999995 +Q9VY78 Chloride intracellular channel Clic 31.54 7 10 7 423855.86439999996 510293.68246 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 11.45 3 4 0 32576.8083 33488.2615 +Q9VYB7 Protein-tyrosine sulfotransferase 1.6 1 1 0 7387.39 8135.2505 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 48.42 5 8 0 144311.36 148040.797 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 2.33 1 1 0 17245.496 22263.004 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 5.14 3 3 0 21824.1883 27717.4218 +Q9VYH3 Probable alpha-aspartyl dipeptidase 22.08 5 7 0 73896.8131 82977.6982 +Q9VYI3 Large ribosomal subunit protein mL49 11.73 2 2 0 4681.248 3275.567 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 0.71 1 1 0 2418.8003 3181.6978 +Q9VYR0 LSM12 homolog A 5.99 1 1 1 3782.5415 7572.4478 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 3 2 9917.475 7588.413 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 50.48 23 50 23 1304336.8525 1624956.3383 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 21.43 4 4 0 16255.075809999998 19114.3307 +Q9VYY2 Signal peptidase complex subunit 2 38.19 7 11 0 419380.59739999997 406591.0398 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 21.78 9 12 9 229852.1702 247963.61956 +Q9VZ23 GTP-binding nuclear protein Ran 57.87 11 26 0 671528.8295 879830.2112 +Q9VZ35 Protein Vago 13.12 2 2 2 5693.035 4470.3567 +Q9VZ40 Uncharacterized protein CG1552 3.8 1 3 0 250945.29 304615.36 +Q9VZ49 Endoribonuclease Arlr 12.5 7 15 7 393846.8674 438491.7843 +Q9VZ64 Probable 6-phosphogluconolactonase 45.68 10 23 10 788364.7466 936305.3686 +Q9VZA4 Band 7 protein CG42540 10.69 5 8 0 59057.9471 64651.11 +Q9VZD5 Small ribosomal subunit protein bS6m 19.05 3 4 0 86056.0895 83405.1886 +Q9VZD8 THUMP domain-containing protein 1 homolog 12.35 4 4 4 27246.2561 26735.675499999998 +Q9VZE7 Choline transporter-like 1 1.74 1 1 0 2169.3926 820.20984 +Q9VZI3 Unc-112-related protein 4.66 4 4 3 18836.653000000002 16425.2938 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 3.25 1 1 1 5106.9053 5423.7505 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 1.65 1 1 1 7978.5107 7921.1646 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 4 0 19929.586199999998 28427.758599999997 +Q9VZS3 Eukaryotic translation initiation factor eIF1 50.0 6 9 6 674984.4310000001 981672.994 +Q9VZS5 Large ribosomal subunit protein eL28 50.0 10 21 0 1833880.731 2054787.957 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 62.26 15 65 15 2461386.76622 2757101.7371300003 +Q9VZX9 Adenosylhomocysteinase-like 1 17.08 7 13 6 255726.8211 298805.7534 +Q9W021 Large ribosomal subunit protein uL23m 16.67 3 3 0 15233.2884 14916.459 +Q9W032 Protein ecdysoneless 1.9 1 1 1 7877.452 7368.7754 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 49.03 19 52 0 1489979.83844 1644439.65524 +Q9W074 Protein HBS1 3.28 2 2 2 15868.5862 19636.579999999998 +Q9W0A0 Protein draper 4.95 4 5 0 25642.107799999998 25903.30296 +Q9W0C1 Neuronal synaptobrevin 43.72 5 57 5 5292423.62662 6154633.06275 +Q9W0C7 Protein OPI10 homolog 6.6 1 1 1 2561.9934 2548.879 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 3.28 2 3 0 47572.77159999999 50589.644799999995 +Q9W0H3 Lipid droplet-associated hydrolase 23.13 7 10 7 222040.2501 283402.9483 +Q9W0P5 UDP-glucose 4-epimerase 25.71 11 12 0 499755.375 667563.135 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 12.53 11 13 11 240625.484 273322.2779 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 20 2 184131.10085 220021.1289 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 10.19 2 2 0 16102.2229 20526.7703 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 1679.8551 2381.5017 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 42 6 2221281.1908 2522277.9266 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 17.55 6 9 6 223828.6065 233928.046 +Q9W1A4 Protein tamozhennic 2.51 2 2 0 8666.6773 12918.904299999998 +Q9W1C9 Ejaculatory bulb-specific protein 3 42.86 8 79 0 12746639.82914 14192637.529 +Q9W1G0 Probable transaldolase 44.71 16 52 16 3914992.9491 4210466.3438 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 7.14 2 2 2 63764.608 52666.149 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 4 0 43173.922 41115.236000000004 +Q9W1K5 Sestrin homolog 1.41 1 1 0 11690.262 13751.236 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 6.69 2 3 2 7648.3305 14047.5644 +Q9W1X4 Nuclear pore complex protein Nup214 2.92 5 5 5 52633.13653 64474.7497 +Q9W1X8 Probable GDP-L-fucose synthase 22.74 6 6 6 74854.0066 100028.1456 +Q9W1X9 OCIA domain-containing protein 1 21.79 5 8 0 144940.518 155430.52000000002 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 33.5 6 9 6 175701.3155 204554.28 +Q9W237 Small ribosomal subunit protein uS9 69.59 14 59 0 2832835.81171 3306830.7373 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 9.91 5 6 5 70506.02858 77336.7088 +Q9W266 Protein windpipe 8.12 5 11 5 554748.6925 716499.713 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 57.61 5 13 5 668388.317 669134.937 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 32.43 6 10 6 255842.82410000003 268601.3312 +Q9W2E7 Protein Rae1 29.48 9 14 9 238750.0867 286070.9519 +Q9W2M2 Trehalase 33.56 19 38 0 662929.6619 813174.797 +Q9W2N0 F-actin-capping protein subunit alpha 9.44 3 5 3 95279.851 110259.393 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 0.88 1 1 1 6719.228 10046.661 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 8.54 5 5 0 91371.4501 104586.40060000001 +Q9W2Y3 NAD(P)H-hydrate epimerase 24.78 5 5 5 167132.8231 213885.7921 +Q9W303 Chitinase-like protein Idgf4 54.52 23 99 0 4533495.39001 5194289.3064 +Q9W334 Small ribosomal subunit protein eS28 63.08 4 19 0 643439.58458 743014.5062299999 +Q9W358 Chaperone Ric-8 12.22 7 7 0 80693.1502 103840.499 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 52.97 19 85 19 8980351.1821 10895459.9551 +Q9W379 Zinc finger protein ZPR1 15.97 6 7 6 79491.6125 87310.26150000001 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 18.18 2 6 2 551962.578 583194.468 +Q9W385 Frataxin homolog, mitochondrial 10.53 2 4 2 142596.411 161070.7247 +Q9W3C7 Palmitoyl-protein thioesterase 1 11.46 4 4 0 59801.2805 66942.128 +Q9W3E2 Protein PIP82 19.58 20 31 20 456457.74960000004 525744.7762 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 7.43 4 5 4 48498.176699999996 54611.8555 +Q9W3K5 Glutamate--cysteine ligase 4.74 4 4 0 50078.5431 61228.5616 +Q9W3N6 General vesicular transport factor p115 9.93 6 6 6 53378.67396 58887.99836 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 3 2 202763.187 230656.11 +Q9W3W8 Large ribosomal subunit protein uL22 20.97 4 7 0 107013.6566 81410.60104000001 +Q9W3Y0 Zinc finger protein 593 homolog 8.64 1 1 1 2039.4795 1807.7161 +Q9W3Y4 GAS2-like protein pickled eggs 2.66 2 2 2 6574.3623 7875.735 +Q9W3Z3 Alanine--glyoxylate aminotransferase 1.78 1 1 1 17845.332 18973.463 +Q9W401 Probable citrate synthase, mitochondrial 55.17 23 206 23 8954913.10612 10070326.20578 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 20.52 7 10 7 235198.15746000002 305167.50179999997 +Q9W436 Neprilysin-1 2.59 2 2 2 7086.41 9533.627 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 15.38 3 6 3 173473.11 205403.019 +Q9W4D2 RNA-binding protein 4F 1.59 1 1 0 25235.736 30773.434 +Q9W4K2 Uncharacterized protein CG3556 7.9 5 11 0 112687.08956 113505.82673 +Q9W4P5 V-type proton ATPase subunit d 1 21.43 7 14 7 421552.1178 472488.0133 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 10.67 11 14 0 121289.15525 133835.19939999998 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 25.0 9 14 0 212725.0165 251925.16700000002 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 28.62 9 19 8 557792.9219 509034.60480000003 +Q9W552 Vacuolar protein sorting-associated protein 26 19.04 5 8 5 72565.8454 78629.1004 +Q9W596 Microtubule-associated protein futsch 23.75 79 122 0 2194790.85942 2640239.43858 +Q9W5E1 RING-box protein 1A 7.41 1 1 0 29745.752 28727.176 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 36.47 10 17 0 395088.789 509540.94073 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 10 0 888539.4745 1037684.387 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 27.46 3 4 3 36984.578 48061.135599999994 +Q9W5R8 Large ribosomal subunit protein uL18 20.74 8 10 0 582730.683 624364.097 +Q9W5Y0 Neprilysin-3 5.22 4 4 4 25492.1399 23946.4943 +Q9XTL9 Glycogen phosphorylase 33.29 31 64 0 3383172.7682 3936812.3034 +Q9XTM1 Exocyst complex component 5 1.13 1 1 1 2376.5847 3771.0122 +Q9XTN2 Insulin receptor substrate 1 2.17 2 2 0 5484.514 6798.447 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 11 2 391093.708 479977.36819999997 +Q9XYM0 Adapter molecule Crk 31.37 9 30 0 833657.6152 974397.4776999999 +Q9XYZ5 DNA damage-binding protein 1 6.84 7 7 7 45108.1017 59770.656970000004 +Q9XZ58 COP9 signalosome complex subunit 5 22.32 6 10 1 176182.92893 180229.65515 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 27.17 8 17 8 677948.154 644411.102 +Q9XZH6 V-type proton ATPase subunit G 27.35 3 14 0 1631278.688 1798574.8040999998 +Q9XZJ4 Proteasome subunit alpha type-6 45.49 11 36 0 770982.72013 897003.5714 +Q9XZL8 Protein sarah 32.53 7 14 0 277368.7409 349381.1318 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 4.29 2 2 0 9166.60753 13404.8256 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 18.4 5 6 0 69537.2025 82139.1856 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 50.43 5 5 5 55895.061799999996 67470.758 +Q9Y0Y2 Adenylosuccinate synthetase 22.82 9 16 9 316375.0746 388385.80876000004 +Q9Y105 Probable glutamine--tRNA ligase 1.93 2 3 2 22694.9067 71754.7942 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 80.68 7 23 0 770920.0004 1246563.0113 +X2JAU8 Protein nervous wreck 28.19 30 88 30 3873953.6096 4662608.73817 +A0A021WW32 Verthandi, isoform B 3.48 2 2 0 8256.101 9879.583 +A0A023GPM5 Diacylglycerol kinase 7.57 6 8 0 141332.68339999998 151819.066 +A0A0B4JCQ7 Suppressor of variegation 2-10, isoform K 7.45 3 3 0 29176.740999999998 25000.297 +A0A0B4JCR9 Uncharacterized protein, isoform D 3.12 1 1 0 0.0 333.232 +A0A0B4JCT7 Jabba, isoform F 17.5 8 13 0 470466.17793 551242.7037 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 62.97 24 141 0 1018143.4503 768806.4964 +A0A0B4JCX2 RIM-binding protein, isoform G 4.02 6 6 0 57460.8279 69558.3131 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.0 2 2 0 2757.6797 3384.868 +A0A0B4JCY6 Cheerio, isoform I 35.09 66 105 0 2115037.77404 2312864.14899 +A0A0B4JCZ0 Oxysterol-binding protein 2.93 3 3 0 61573.496 15691.074999999999 +A0A0B4JD57 Zipper, isoform F 5.41 10 12 0 5066.1963 6905.5044 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 11.5 15 15 0 245318.9208 259857.8928 +A0A0B4K615 Smallish, isoform O 8.11 10 13 0 106358.5004 112977.8774 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 4.94 4 4 0 27610.1966 32514.5674 +A0A0B4K620 Oxidation resistance protein 1 13.32 16 21 0 342083.89613 394511.7233 +A0A0B4K661 Tropomyosin 1, isoform Q 78.4 35 201 0 7924501.50063 8218781.23512 +A0A0B4K663 Non-specific lethal 1, isoform N 1.98 2 3 0 16938.23435 14424.7793 +A0A0B4K6C8 Uncharacterized protein, isoform G 1.71 2 3 0 28601.3715 25035.9885 +A0A0B4K6I1 Scribble, isoform N 10.69 22 27 0 361885.77825000003 413857.3519 +A0A0B4K6K8 Musashi, isoform D 5.62 3 4 0 144747.575 183227.16100000002 +A0A0B4K6P4 Hephaestus, isoform W 3.0 3 3 0 40718.086299999995 45207.8686 +A0A0B4K6Z2 Dystrobrevin 10.34 6 8 0 68420.174 66508.94930000001 +A0A0B4K709 Uncharacterized protein, isoform E 6.62 4 4 0 32992.47156 36309.2142 +A0A0B4K716 Diacylglycerol kinase 4.67 7 7 0 85323.5045 108148.31109999999 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.98 4 4 0 7147.875169999999 6344.21935 +A0A0B4K774 Abelson interacting protein, isoform D 23.27 9 12 0 138542.1569 158801.913 +A0A0B4K775 Golgin 97, isoform B 1.49 1 1 0 485.98215 418.91922 +A0A0B4K7A5 Hu li tai shao, isoform Q 67.39 41 134 1 4753919.3655900005 5545329.8386699995 +A0A0B4K7B0 Smooth, isoform O 14.37 6 10 0 131064.3159 105804.7479 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 7.22 6 7 0 107664.576 148162.039 +A0A0B4K7D8 Uncharacterized protein, isoform B 7.76 3 3 0 23308.8028 27603.264 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 7.98 4 4 0 22133.7378 30051.9687 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 4.47 4 4 0 12302.4203 19535.8937 +A0A0B4K7H3 Eucalyptus, isoform B 54.46 6 49 1 2947306.83939 3314013.8774 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 2.33 5 5 0 25426.9269 36007.6685 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 0.86 2 2 0 2103.597 1717.1565 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.64 24 57 0 1368901.3741000001 1534343.61761 +A0A0B4K7V8 Bruchpilot, isoform K 52.37 92 259 1 51673.89236 33768.5886 +A0A0B4K7X5 glycogenin glucosyltransferase 14.86 7 30 0 797329.8341 861917.9157 +A0A0B4K885 Kenny, isoform B 4.63 2 2 0 36205.755 44067.207 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 11.35 5 7 0 51415.6449 42833.7331 +A0A0B4KEE1 Aldehyde dehydrogenase 27.57 14 19 0 411731.37734 552949.52075 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 20.05 31 70 0 387385.5546 431439.55279999995 +A0A0B4KEH7 CAP, isoform Y 13.91 30 46 0 552902.63779 679488.15276 +A0A0B4KEI5 Serrate RNA effector molecule homolog 11.12 11 11 0 92177.3524 117173.7496 +A0A0B4KEJ7 Coronin 12.71 7 7 0 93793.6294 110710.33679999999 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 3.85 4 4 0 13663.7264 13755.8044 +A0A0B4KEW6 Amphiphysin, isoform B 51.59 24 73 1 17149.7137 20068.3193 +A0A0B4KEX6 Jitterbug, isoform M 6.16 17 19 0 196371.54646 220121.16645 +A0A0B4KF06 Valine--tRNA ligase 1.04 1 1 0 31245.828 51051.76 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 6.3 2 2 0 42738.881 43023.456 +A0A0B4KF34 Uncharacterized protein, isoform D 4.31 2 3 0 8655.9267 10780.4897 +A0A0B4KF46 E1 ubiquitin-activating enzyme 16.87 17 25 0 537532.4617 639683.11 +A0A0B4KF84 Stretchin-Mlck, isoform S 2.13 3 3 0 545.5768 383.61618 +A0A0B4KFA3 Uncharacterized protein, isoform F 0.88 1 1 0 400.19434 358.34766 +A0A0B4KFA6 alpha-glucosidase 34.04 16 46 0 1652573.98526 1985233.89802 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.99 4 4 0 4548.714 7340.3097 +A0A0B4KFE2 Like-AP180, isoform I 30.03 21 90 0 4333011.9019 4627498.82543 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 9.34 7 10 0 132693.3099 173794.3566 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 52.81 15 24 1 606942.50165 705479.55066 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 16.1 8 15 0 638648.9218 710283.07838 +A0A0B4KFK4 Uncharacterized protein, isoform E 3.85 2 2 0 202095.03000000003 224197.41 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 9.8 2 2 0 3885.6677 5883.953 +A0A0B4KFT3 Protein kinase C 11.34 9 10 0 95205.2066 106918.64730000001 +A0A0B4KFT9 Quaking related 54B, isoform E 9.56 6 7 0 98125.45629999999 120747.57500000001 +A0A0B4KFX8 Flapper, isoform C 3.24 2 2 0 4469.359649999999 2935.1204 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 4.45 1 1 0 830.99976 1595.8217 +A0A0B4KG94 Uncharacterized protein, isoform B 10.6 5 5 0 115562.3605 90004.3017 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 2.38 1 1 0 2876.233 2272.679 +A0A0B4KGE5 Bonus, isoform C 6.21 7 7 0 67838.5143 79302.6245 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 2 0 6377.531199999999 4349.441699999999 +A0A0B4KGF5 Uncharacterized protein, isoform C 12.0 7 7 0 56047.8372 56230.1769 +A0A0B4KGF7 beta-mannosidase 1.66 2 2 0 13398.8827 16355.0352 +A0A0B4KGG9 C-terminal binding protein, isoform F 28.98 10 17 0 128323.39245 161260.07417 +A0A0B4KGI5 Carboxylic ester hydrolase 18.08 10 26 0 1042387.72914 1464748.13003 +A0A0B4KGK8 Syncrip, isoform R 30.58 17 32 0 472341.4192 542913.34475 +A0A0B4KGM5 Uncharacterized protein, isoform B 1.13 1 1 0 3047.2349 413.81476 +A0A0B4KGP4 Beaten path IV, isoform B 4.04 2 2 0 10758.4304 13692.6263 +A0A0B4KGS4 non-specific serine/threonine protein kinase 3.77 2 2 0 16604.007 19950.1458 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 25.41 18 24 1 440656.8496 459825.8645 +A0A0B4KGW3 Uncharacterized protein, isoform B 3.49 2 2 0 7809.646000000001 9612.237000000001 +A0A0B4KH03 Tetraspanin 15.85 5 8 1 109023.9228 126353.36475000001 +A0A0B4KH14 Ras modification protein ERF4 10.98 2 2 0 15333.9121 20398.3874 +A0A0B4KH34 Annexin 55.56 21 164 3 14276376.21916 16197459.49505 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 2.09 2 2 0 3594.678 5438.453 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 1 0 3163.2915 2230.5486 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 39.39 11 19 0 274654.16674 331941.0509 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 18.72 12 21 0 259577.52360000001 322374.83722 +A0A0B4KHF0 Ferritin 75.42 20 121 1 7306239.31143 8617127.23609 +A0A0B4KHJ9 Tropomyosin 2, isoform E 72.54 30 248 4 24565932.79061 30900520.81188 +A0A0B4KHL4 non-specific serine/threonine protein kinase 15.08 8 8 1 192634.2719 249772.36810000002 +A0A0B4KHN1 Cheerio, isoform O 31.04 67 106 0 4784.0596 11747.4795 +A0A0B4KHN3 Scribble, isoform S 6.19 9 12 0 25631.697999999997 29968.718 +A0A0B4KHP4 Couch potato, isoform P 5.11 4 8 0 178498.7825 212031.6563 +A0A0B4KHS1 Crumbs, isoform D 8.35 15 25 0 305955.09711 328926.76566 +A0A0B4KHT5 Syncrip, isoform J 25.36 19 34 0 57483.352 86575.73000000001 +A0A0B4KHT8 Julius seizure, isoform E 11.46 5 7 0 76201.8518 80863.8334 +A0A0B4KHW3 Aralar1, isoform F 7.49 5 6 1 101524.01 117657.5134 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.01 4 6 0 61576.909 73316.0657 +A0A0B4KHZ0 Without children, isoform E 0.76 1 1 0 4525.9185 6788.0674 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 50.86 17 48 1 1368330.45127 1585293.98735 +A0A0B4KI23 Uncharacterized protein 27.64 4 24 4 2177291.6732 2318233.4275 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 13.16 3 3 0 101345.272 143382.353 +A0A0B4LEH1 Sticks and stones, isoform C 1.07 2 2 0 31818.947999999997 34688.816 +A0A0B4LEW1 Bloated, isoform E 1.91 2 2 0 15813.921699999999 15583.296699999999 +A0A0B4LEY1 Protein transport protein Sec31A 2.3 2 2 0 6183.592000000001 6960.4181 +A0A0B4LF49 Menage a trois, isoform D 30.04 14 26 0 544841.25714 582934.7724 +A0A0B4LF88 Tripeptidyl-peptidase 2 18.33 22 31 0 734483.2127 921788.1698 +A0A0B4LF95 glutaminase 11.14 7 11 0 90844.922 99719.19326 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 46.93 16 27 2 496661.72904999997 552570.4957 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 20.32 21 23 0 362337.8077 429813.2733 +A0A0B4LFE1 Uncharacterized protein, isoform B 18.1 4 6 0 52080.735799999995 65606.6884 +A0A0B4LFH2 Caspar, isoform C 2.9 2 2 0 1655.8135 1861.0449 +A0A0B4LFL6 Double hit, isoform C 5.17 2 3 0 30408.9209 30224.932099999998 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 3.79 2 2 0 13844.708999999999 15932.257000000001 +A0A0B4LFU6 Beta-glucuronidase 1.77 1 1 0 2551.057 3531.1877 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 28.24 4 6 0 125090.88040000001 193666.452 +A0A0B4LG34 Liprin-gamma, isoform E 1.48 2 2 0 28423.415999999997 30476.038999999997 +A0A0B4LG88 Quaking related 58E-1, isoform D 19.0 8 13 0 242601.4108 276858.9174 +A0A0B4LG95 Lethal (2) k09913, isoform F 2.84 1 2 0 34684.146 43147.015 +A0A0B4LGB0 Gp150, isoform E 10.25 12 14 0 212172.4731 231686.2573 +A0A0B4LGB7 Calcium-transporting ATPase 29.73 28 50 0 1134438.0177499999 1386703.02235 +A0A0B4LGD3 Kazachoc, isoform G 8.26 10 12 0 203772.98474 241677.43953 +A0A0B4LGH8 Oxysterol-binding protein 1.97 1 1 0 12093.712 17663.7 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 39.27 13 28 1 336067.0445 373411.1736 +A0A0B4LGM0 Prominin, isoform E 4.6 5 6 0 40870.5582 56196.137 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 55 0 3684400.73764 3580222.22326 +A0A0B4LGT9 Uncharacterized protein, isoform B 4.92 1 1 0 1977.8407 2014.983 +A0A0B4LGV6 Insulator binding factor 1, isoform B 39.66 7 8 0 113052.3416 139048.3812 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.05 18 39 0 1031876.2399599999 1307830.6531 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 74.93 20 140 0 55096.408 59118.409 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 14.24 5 6 0 142581.5274 159674.35460000002 +A0A0B4LHH8 Argus, isoform C 0.63 1 1 0 5500.658 5192.3213 +A0A0B4LHL1 Uncharacterized protein, isoform C 3.6 2 3 0 41947.693400000004 41791.7508 +A0A0B4LHR8 Uncharacterized protein, isoform G 14.03 9 9 0 95808.7288 101724.0906 +A0A0B4LHS0 Lnk, isoform E 2.45 2 2 0 17914.093 20381.713 +A0A0B4LI09 Uncharacterized protein, isoform C 7.23 3 3 0 63888.412 76807.48300000001 +A0A0B4LIA3 non-specific serine/threonine protein kinase 4.72 3 3 0 33028.6176 37936.031500000005 +A0A0B4LIC4 Uncharacterized protein, isoform C 2.27 2 2 0 7369.281 4411.5115 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 20.47 10 17 0 144063.22628 152591.07965 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 3 0 19328.1044 20841.04376 +A0A0C4DH96 Sidestep V, isoform B 0.77 1 1 0 4629.08 6359.5425 +A0A0C4DHA8 Nuclear protein MDM1 30.22 21 27 1 547681.8124 578552.76747 +A0A0C4DHF6 Dystroglycan 1 3.33 4 5 0 19670.176 25553.6833 +A0A0C4DHN4 Defective proboscis extension response 21 6.74 2 2 1 32496.064 25847.7265 +A0A0C4FEI8 Granny smith, isoform F 17.25 10 12 0 158732.94376 188551.0417 +A0A0S0WGZ0 Still life, isoform Q 0.71 2 2 0 174425.4994 97549.88 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 18.66 6 12 0 250829.81057 304922.0186 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 8.78 6 8 0 67379.6724 79007.3975 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 63.05 24 139 0 9339535.710169999 10415921.59134 +A0A126GV06 Uncharacterized protein, isoform B 17.91 6 10 0 104002.6385 121930.4555 +A0A126GV33 Uncharacterized protein, isoform F 3.85 1 2 0 18199.405 15886.716 +A0A1W5PXH3 Uncharacterized protein, isoform E 1.37 2 2 0 24832.871 27832.624000000003 +A0A4D6K1L3 8 kDa dynein light chain 15.73 4 23 0 902594.90178 1059285.4458 +A0A4D6K4X9 Axundead, isoform F 6.01 3 4 0 40888.141 54898.818 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 47.55 22 141 0 10651958.33932 13275976.813 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 12.99 14 15 0 95476.8588 121897.01509999999 +A0A4P1SA55 alpha-glucosidase 12.52 8 11 0 206986.87970000002 246501.9884 +A0A4P1SAA7 IP07559p 6.8 1 1 0 9794.119 11143.568 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 28.69 45 76 1 1052222.94495 1207875.41344 +A0A6H2EDG9 Uncharacterized protein, isoform G 7.51 6 7 0 90306.85800000001 93432.0275 +A0A6H2EEL7 Uncharacterized protein, isoform A 2.94 1 1 1 5035.9873 5610.1753 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 38.12 123 317 0 6433691.82611 6942972.97925 +A0A6H2EG45 Uncharacterized protein, isoform D 5.9 2 2 0 16981.25 14074.2304 +A0A6H2EG56 Tropomyosin 1, isoform T 72.34 26 225 3 1572403.4862 1975881.1896000002 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 28.85 4 7 4 150638.395 158656.793 +A0A6H2EIE0 Amino acid transporter 4.88 2 3 0 114734.3279 146122.8256 +A0A6M3Q951 CAP, isoform AA 27.82 19 35 0 17851.7826 17425.6165 +A0ACD4DAN3 Uncharacterized protein, isoform Y 4.65 3 4 0 9504.038 9371.944 +A0ACD4DAP6 Bruchpilot, isoform N 42.4 99 280 0 11784181.64856 12731723.42598 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 22.96 16 32 0 274831.21265 301946.08515 +A0ACD4DAT6 Glorund, isoform D 29.52 15 36 0 811109.6589 929623.01938 +A0ACD4DAU9 Found in neurons, isoform K 29.92 10 26 0 409635.4126 416215.11866 +A0ACD4DAV1 Lethal (1) G0289, isoform D 10.51 6 8 0 130253.7631 146387.3496 +A0AQH0 Proteasome subunit beta 34.38 5 9 5 58506.3074 68545.01524000001 +A1Z6F6 FI18602p1 9.88 9 10 0 128134.5804 153173.8713 +A1Z6G9 FI18173p1 10.5 3 3 3 24044.027 27815.85942 +A1Z6H4 RE52822p 14.24 7 7 0 123909.6827 128332.3894 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 11.14 7 15 6 39930.1361 47745.5356 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 3.64 2 2 2 38716.914000000004 42317.543000000005 +A1Z6P3 Eb1, isoform F 50.17 13 30 3 160970.6984 169446.93584 +A1Z6Q0 Klaroid, isoform D 24.94 9 13 0 175660.62099999998 207665.3617 +A1Z6R7 FI21445p1 40.71 9 20 9 376209.55252 502975.33530000004 +A1Z6V5 FI01422p 40.46 14 31 14 801540.1784 944454.6272 +A1Z6X6 Lactoylglutathione lyase 44.89 6 14 6 305245.1869 341350.8798 +A1Z729 NADP-retinol dehydrogenase 22.42 7 8 4 79080.13309999999 103089.8224 +A1Z759 Uncharacterized protein, isoform A 3.4 2 2 0 24245.87 24406.169 +A1Z765 Uncharacterized protein, isoform A 9.9 1 1 0 10339.57 13067.613 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.21 3 3 0 25234.5615 24242.578 +A1Z7B8 GEO08456p1 21.52 3 5 3 150184.3659 212658.3756 +A1Z7G2 MIP13653p 13.39 2 4 2 497208.546 598667.55 +A1Z7H7 Phenoloxidase-activating factor 2 26.8 11 17 11 176031.4263 202077.76843 +A1Z7H8 Phenoloxidase-activating factor 2 5.88 3 3 3 20251.0207 23680.4777 +A1Z7K6 FI20236p1 6.38 3 4 3 53512.2345 64682.032 +A1Z7K8 AaRS-interacting multifunctional protein 1 27.55 8 11 8 317112.391 322405.0496 +A1Z7P1 Phosphoglucomutase 2a 4.98 3 3 3 47034.155 33301.2505 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 14.37 5 7 1 75243.9847 86729.9863 +A1Z7S3 Rab32, isoform B 33.53 20 44 7 1428091.67487 1512909.01725 +A1Z7V9 FI20020p1 10.04 5 5 0 220115.6834 255452.65136 +A1Z7X8 FI02944p 19.81 7 8 7 96679.7924 91212.93819999999 +A1Z803 FI02892p 29.12 12 18 12 417854.2735 532424.4308 +A1Z843 Nodal modulator 3 9.42 11 14 11 195703.8928 214271.1014 +A1Z847 Uncharacterized protein, isoform B 22.48 15 31 3 1026088.8174 1224228.5811 +A1Z871 CAP, isoform B 13.38 20 35 0 62709.531 67524.66798 +A1Z893 1-Cys peroxiredoxin 55.0 11 51 1 2293812.9927 2703901.18065 +A1Z8D3 (S)-2-hydroxy-acid oxidase 9.29 4 8 4 256291.815 189263.358 +A1Z8G0 Menage a trois, isoform A 28.07 13 24 0 14653.316 16577.396 +A1Z8G7 FI09243p 9.92 1 2 1 992.39276 1762.055 +A1Z8H1 Cuticular protein 47Ea 73.33 6 49 6 7671952.1849 9514781.80456 +A1Z8H6 Cuticular protein 47Ee 29.54 6 13 6 114277.13422 137287.20028 +A1Z8I8 Uncharacterized protein, isoform E 12.14 2 2 2 28265.25 34525.695 +A1Z8J3 No mechanoreceptor potential A, isoform C 1.23 2 2 0 1969.6143 3421.2373 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 4 2 18082.68698 19396.0151 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 1133706.6971 1387693.94946 +A1Z8Z7 Cuticular protein 49Ah 32.63 6 12 6 393893.44180000003 395416.9004 +A1Z933 GEO02273p1 27.91 2 4 2 37105.0822 49097.7615 +A1Z934 SD19268p 48.83 13 30 13 815832.40778 1517338.9045 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 3.79 2 2 0 19187.389 24448.47 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 7.86 10 12 5 169950.68996 194154.21240000002 +A1Z992 1,4-alpha-glucan branching enzyme 3.36 3 3 3 107122.9096 106392.803 +A1Z9B5 IP16508p 19.88 3 4 3 73569.06934 66872.0983 +A1Z9E3 Elongation factor Tu 53.17 21 46 21 1931738.5497 2068730.33155 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 33.94 13 15 13 859709.8955 1000987.355 +A1Z9J3 Short stop, isoform H 3.61 32 35 4 241752.86344 270860.93929999997 +A1Z9M2 Receptor expression-enhancing protein 17.42 5 12 2 838278.7235 784906.073 +A1Z9M5 SAXO downstream of blistered 3.81 7 10 7 12051.3415 12816.1064 +A1Z9U2 Jet fuel, isoform A 2.36 1 4 1 247931.941 300477.54 +A1Z9X4 Hibris, isoform B 1.13 1 1 0 1546.7959 2683.3235 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.62 2 2 2 13593.8213 16729.056 +A1ZA23 FI18007p1 33.64 10 24 10 256871.40825 310464.03093999997 +A1ZA83 ER membrane protein complex subunit 7 13.88 4 6 4 131237.9154 149259.2666 +A1ZAA9 Uncharacterized protein, isoform B 18.23 4 6 4 46416.9567 50617.6946 +A1ZAC7 Coiled-coil domain-containing protein 93 6.39 4 5 4 27197.3314 27424.7733 +A1ZAH3 FI16515p1 1.93 1 1 0 738.2387 1967.128 +A1ZAK3 Protein DEK 4.05 3 3 0 51832.034 57899.608 +A1ZAL1 lysozyme 30.43 5 7 5 290085.4617 428622.5665 +A1ZAP8 Uncharacterized protein, isoform C 0.43 1 1 0 8776.824 11593.045 +A1ZAU4 RH39096p 52.14 16 49 0 2912942.4908000003 3691161.3705 +A1ZB23 IP19117p 16.06 4 7 4 86691.15000000001 129400.2 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 11245.928 18366.523 +A1ZB68 FI01423p 45.91 11 28 11 801936.6041 960242.59484 +A1ZB69 Glutathione S transferase E4 45.05 10 25 10 431776.3899 563641.1993 +A1ZB70 Glutathione S transferase E5 13.51 3 7 3 107308.791 124826.7074 +A1ZB71 Glutathione S transferase E6 31.53 7 17 7 448417.1875 504880.9446 +A1ZB72 Glutathione S transferase E7 17.49 4 11 3 12422.1787 17342.430999999997 +A1ZB73 Glutathione S transferase E8, isoform A 13.06 3 3 3 74882.3231 89535.56177 +A1ZB79 Uncharacterized protein, isoform M 58.42 11 38 2 1308597.0468 1557450.5915 +A1ZBA5 FI07234p 7.22 2 2 2 33337.179 53684.21 +A1ZBB4 Uncharacterized protein, isoform B 3.78 4 4 0 46448.18429999999 49819.8428 +A1ZBD8 Mucin-5AC 2.99 4 4 4 19202.473100000003 15856.716 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 1.76 2 2 2 9422.5584 9579.6775 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 33.97 18 41 18 1075740.9253 1369130.19142 +A1ZBK7 Crammer 31.65 3 11 3 128800.6199 121855.48878 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 14.7 13 17 0 13368.609 15162.1875 +A1ZBM2 Tubulin-binding cofactor B 19.67 6 11 6 305502.64290000004 320762.11590000003 +A1ZBQ3 Odorant-binding protein 56g, isoform A 46.56 6 11 0 288741.254 363588.403 +A1ZBU5 GNBP-like 3 28.29 3 10 3 154472.6642 139833.1717 +A1ZBU6 Uncharacterized protein 3.55 1 1 1 12658.262 12573.916 +A1ZBU8 Uncharacterized protein, isoform A 54.29 10 59 10 1635543.72104 1795853.94596 +A1ZBV5 BLOC-1-related complex subunit 7 7.62 1 1 1 16775.986 17357.428 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 25.7 14 31 0 411110.55053999997 473269.41207 +A1ZBX6 lysozyme 9.5 2 2 2 3814.9968 6225.7106 +A1ZBY3 Defective proboscis extension response 1, isoform A 3.0 1 1 1 5546.144 9007.989 +A2VEG3 IP16294p 1.06 1 1 0 2070.8755 672.2564 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.67 1 1 0 2802.45 2955.4182 +A4V0U4 Leukotriene A(4) hydrolase 11.09 7 8 0 232179.1517 199187.6276 +A4V2A4 Mushroom-body expressed, isoform G 48.19 15 35 0 1139016.11292 1227260.7197 +A4V2C3 calcium/calmodulin-dependent protein kinase 5.48 4 4 0 36125.8996 40542.4885 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 31.58 9 17 1 131803.35352 153665.66394 +A4V4F2 Flotillin 2, isoform F 53.88 24 69 0 2568326.1906 2864147.8104 +A4V4U5 Proline dehydrogenase 53.06 41 101 0 3454961.11458 3943170.1537099998 +A4V4V2 DISCO interacting protein 1, isoform B 3.67 2 2 0 6704.6025 10268.243 +A8DRW0 Cuticular protein 49Aa 47.22 5 36 5 2356827.8192 3127325.7929 +A8DY78 Protein-serine/threonine kinase 16.11 7 11 0 134723.5992 171507.03639999998 +A8DY95 Uncharacterized protein, isoform C 2.27 2 2 0 68203.449 87076.268 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 35.62 3 13 1 953761.9273 1004208.5582999999 +A8DYD1 Combgap, isoform L 10.75 8 11 0 119478.7709 142421.05018 +A8DYI6 Prohibitin 65.98 22 79 1 2808624.22407 3321956.2193899998 +A8DYJ6 Sidestep VIII, isoform B 12.07 14 22 0 303888.8332 313589.50873 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 13.59 7 9 2 319463.88565999997 150161.73477 +A8DYL2 Uncharacterized protein, isoform G 1.16 1 1 1 657.0721 0.0 +A8DYW2 Uncharacterized protein, isoform B 0.39 1 1 0 888.65894 1886.0511 +A8DZ06 Stolid, isoform J 12.46 14 21 0 502479.0837 555277.6860999999 +A8DZ14 FI17828p1 18.02 9 24 4 519372.4383 655095.2045999999 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 2.47 3 4 0 32350.6917 40554.425 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 18.81 27 36 0 274067.11206 326528.49511 +A8E6W0 IP19808p 19.7 4 5 4 113874.448 145951.899 +A8JNG6 Kazal-like domain-containing protein 20.3 2 6 2 83535.2624 114807.7843 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 3 0 18989.102759999998 24393.058660000002 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 50387.3474 54308.0165 +A8JNP2 arginine kinase 73.07 36 447 2 1664163.3736999999 1952910.6448000001 +A8JNP7 Inhibitor-2, isoform B 29.03 6 8 0 26222.7616 19257.99434 +A8JNS4 Starvin, isoform E 7.4 4 5 0 82600.01389999999 99724.8386 +A8JNT1 Uncharacterized protein, isoform B 6.86 1 2 0 10367.5981 10634.0025 +A8JNT7 Heat shock protein cognate 20 10.0 3 3 3 193027.284 242132.27500000002 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 7.05 4 5 0 36171.2509 43315.224 +A8JQT5 Moesin/ezrin/radixin homolog 1 1.31 4 6 3 1946.32676 3457.51318 +A8JQV2 Nuclear protein MDM1 25.73 21 28 1 43334.48316 53562.1634 +A8JQW3 Pinin, isoform B 18.24 5 5 0 70121.3717 85773.9348 +A8JR01 Kramer, isoform I 1.49 2 2 0 815.65106 621.8808 +A8JR25 Fasciclin 1, isoform D 50.91 33 128 1 164388.168 106318.21 +A8JR57 Uncharacterized protein, isoform D 16.57 9 12 0 274338.5959 295988.072 +A8JR58 Hadley, isoform B 7.64 2 2 1 4635.2396 5929.039 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 63.52 18 79 0 2696396.4279 2743274.2479000003 +A8JRH3 FI20012p1 66.73 28 71 1 2323484.08223 2751865.78698 +A8JTM7 Megalin, isoform A 2.81 14 18 14 189070.3331 166986.4763 +A8JUQ2 Dual specificity protein phosphatase 15.93 4 7 0 56127.61259999999 74732.8206 +A8JUU1 Secretory 16, isoform E 1.83 3 3 0 23808.314 27556.827 +A8JUZ6 MIP03678p 16.77 5 7 0 4507.4873 8855.3168 +A8JUZ7 Uncharacterized protein, isoform B 4.38 5 5 0 5534.2117 6308.3302 +A8JV25 Uncharacterized protein, isoform D 22.71 15 33 0 558944.9353 715210.00324 +A8WH76 GEO10024p1 48.15 4 13 4 511146.1506 594132.4753 +A8Y4V5 FI20903p1 5.22 1 1 1 941.9938 3073.5244 +A8Y527 Homeobox protein ceh-24 2.61 1 1 0 17773.676 28484.914 +A8Y535 Cytochrome b-c1 complex subunit 6 55.29 4 13 3 4865074.9567 5458818.508 +A8Y589 Programmed cell death protein 6 8.99 2 2 2 590960.56 16080.476 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 2.59 4 4 0 39880.029 39026.8977 +B7YZH1 FI20143p1 7.21 4 4 0 21550.476 28609.1218 +B7YZN0 Syndecan 12.55 6 8 0 337227.4503 361601.304 +B7YZN4 GH02741p3 49.23 4 4 4 60841.376000000004 65349.7955 +B7YZN8 GH02741p1 10.53 1 1 1 35693.727 46360.707 +B7YZQ1 Sterile20-like kinase, isoform F 3.43 5 6 0 82675.65920000001 102649.588 +B7YZQ7 Inorganic pyrophosphatase 71.72 16 95 0 5404796.57758 6235594.06449 +B7YZQ9 Neuropeptide-like 1, isoform C 5.95 2 2 0 6475.4474 7497.45523 +B7YZV2 Phosphodiesterase 6.39 6 8 0 65278.7802 86498.7771 +B7YZX0 Hig-anchoring scaffold protein, isoform G 13.0 20 28 0 353940.14265 430138.23338 +B7Z001 Fatty acid synthase 20.0 44 74 0 1862591.27523 2176871.2046000003 +B7Z005 Drongo, isoform I 6.42 3 3 0 24471.084600000002 23641.1081 +B7Z010 Cappuccino, isoform E 0.78 1 1 0 3086.4797 2752.1016 +B7Z060 TBP-associated factor 4, isoform E 0.74 1 1 0 7843.257 12712.025 +B7Z078 E3 ubiquitin-protein ligase 5.36 2 2 1 26571.308 30780.840000000004 +B7Z0B2 Uncharacterized protein, isoform E 3.92 2 4 0 36030.2266 45736.636 +B7Z0B9 Farmer, isoform H 5.0 5 10 0 67954.0346 83924.1572 +B7Z0C9 GH15104p1 34.74 4 7 4 80843.9565 84316.1594 +B7Z0E0 Isocitrate dehydrogenase [NADP] 77.87 41 152 0 7211513.8205 8037903.07607 +B7Z0M0 FI17308p1 22.13 2 2 1 29255.348 26496.275 +B7Z0N0 Uncharacterized protein, isoform B 5.92 2 2 2 5519.9768 7781.2212 +B7Z0P8 uridine/cytidine kinase 29.51 8 13 0 237030.3934 304572.2108 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 18.97 8 14 2 149222.9631 207807.6169 +B7Z0T5 Metastasis-associated protein MTA3 2.34 2 2 0 18446.732 22516.2286 +B7Z107 GH09380p1 29.35 3 5 3 28325.201 30384.467 +B7Z126 non-specific serine/threonine protein kinase 1.14 1 1 0 2700.226 3694.7358 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 5.24 3 3 0 38522.5062 46515.6018 +C0HDP4 MIP05618p 11.31 4 4 0 10777.3521 12906.047199999999 +C0PDF4 palmitoyl-protein hydrolase 57.92 10 39 0 1456064.34951 1631989.7432000001 +C7LAG1 CoRest, isoform G 2.31 2 2 1 26812.0195 27600.383 +C7LAH9 Moesin/ezrin/radixin homolog 1 34.06 29 61 1 1443162.10517 1619224.7314 +C9QPE7 Trehalose 6-phosphate phosphatase 47.64 12 33 0 999851.22575 1147459.0689400001 +D0IQJ8 Cysteine string protein, isoform F 22.09 6 9 0 368960.9958 480729.62510000006 +D0UGE6 Tenectin isoform 1 1.17 4 4 4 93667.392 137385.735 +D0Z756 MIP14966p 36.55 15 61 0 2338075.6391 2679861.98117 +D1YSG0 Bent, isoform F 4.99 39 42 0 557450.5423 648751.41275 +D3DML3 Connector of kinase to AP-1, isoform E 8.68 7 8 0 143694.3336 160729.5344 +D3DMM0 MIP15702p 29.31 12 28 0 839921.91596 1025310.3018 +D3DMM4 MIP15217p 28.27 22 50 0 1392120.7413599999 1664643.40485 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.69 5 6 2 219193.254 152938.817 +D5SHT6 MIP21537p 8.03 3 3 0 29950.4744 41494.441300000006 +E1JGK8 Uncharacterized protein, isoform A 35.29 3 4 3 45138.375 49478.0735 +E1JGL5 Uncharacterized protein, isoform L 58.37 10 37 0 141757.83130000002 175264.5864 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 15.43 16 21 0 329524.24463 290666.8648 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 33.12 12 18 0 392389.02073 425338.45114 +E1JGR3 GEO02620p1 24.62 3 3 3 5691.17967 5963.17582 +E1JGY6 Hulk, isoform F 11.14 17 21 0 289663.1183 356698.6602 +E1JH26 Superoxide dismutase [Cu-Zn] 44.32 10 18 0 155998.51207 209035.25 +E1JH43 Deneddylase 1, isoform C 3.21 1 1 0 7308.544 13027.774 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 10.03 3 4 1 7500.365 14860.48475 +E1JH90 Patronin, isoform F 0.78 1 1 0 3436.7964 3567.1008 +E1JHA6 Uninflatable, isoform C 12.82 43 56 0 448523.12175 500648.52873 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.71 5 5 0 57012.93520000001 59445.5987 +E1JHJ2 Uncharacterized protein, isoform C 2.11 1 1 0 470.2003 382.6125 +E1JHJ5 Myosin heavy chain, isoform P 54.69 126 422 0 582099.2045 529042.199 +E1JHK2 Dorsal-related immunity factor, isoform C 2.53 2 3 0 22874.7422 27049.088 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 10.38 3 3 0 76006.347 64150.338 +E1JHP3 No long nerve cord, isoform D 7.13 9 9 0 117688.2801 140178.6752 +E1JHP9 Galectin 6.21 3 3 0 29888.3014 28502.549 +E1JHT6 Reticulon-like protein 38.71 18 38 0 1061756.45175 1253318.77113 +E1JI40 Vermiform, isoform I 11.89 7 9 0 116778.7815 129231.5303 +E1JIC5 Uncharacterized protein, isoform G 14.64 4 4 0 32200.0723 42027.2724 +E1JIE5 Wurmchen 1, isoform B 15.92 3 3 0 67932.18299999999 70575.804 +E1JIH1 Uncoordinated 115a, isoform J 25.95 17 38 0 17171.39 14044.048 +E1JIK9 Myofilin, isoform I 75.65 21 175 1 55907.656579999995 81479.645 +E1JIR1 Pseudouridylate synthase 1 homolog 4.07 2 2 0 7570.501 8661.2728 +E1JIS1 Spermathreecae, isoform D 1.31 1 1 0 7013.955 3886.1475 +E1JIY8 L antigen family member 3 20.72 3 3 3 84631.519 90331.142 +E1JJ33 Complexin, isoform U 66.43 10 72 2 2331750.63065 2514533.71269 +E1JJA4 Dynamin 35.22 31 59 0 2349956.18553 2761449.2263 +E1JJE4 protein-tyrosine-phosphatase 1.86 3 3 0 755.5597 936.9869 +E1JJG5 Phospholipase A2 2.93 1 1 1 6834.8906 9175.057 +E1JJH5 Discs large 1, isoform M 35.73 31 86 7 1673711.81991 1875050.96828 +E1JJK6 Retinal degeneration B, isoform H 4.91 7 9 0 49784.68785 58526.991 +E2QCN9 pseudouridine 5'-phosphatase 35.5 10 16 6 147245.057 154645.6313 +E2QCY2 Long-chain-fatty-acid--CoA ligase 3.82 2 2 0 18778.463 21120.0924 +E2QCY9 Synapsin, isoform D 32.85 29 53 0 1097645.11842 1243223.80544 +E2QCZ0 Synapsin, isoform E 39.87 22 46 1 21190.056 41810.693 +E2QD54 Natalisin, isoform D 5.61 3 3 0 37637.1038 48803.6452 +E2QD66 Lipid droplet defective, isoform D 7.32 12 19 0 208258.36956 257457.3608 +E2QD98 Protein PALS1 5.59 10 13 0 167994.245 185583.9354 +E6EK17 Calcium-transporting ATPase 6.15 6 6 0 91904.8977 100292.31999999999 +E8NH67 Asperous, isoform B 59.09 20 77 0 1312863.57283 1355626.1639999999 +F0JAP7 LP18071p 13.97 4 5 0 65618.0185 80399.6027 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 6 7 0 79442.5889 100105.2576 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 47.85 37 121 0 3030261.07281 3280679.18052 +H1UUB1 GEO12465p1 48.84 5 11 1 601446.1248999999 771686.4959000001 +H8F4T3 Regucalcin 45.75 9 15 0 586154.8696 821353.059 +H9XVM9 Uncharacterized protein, isoform L 35.91 28 62 0 70079.90299999999 83233.3561 +H9XVP2 Unc-13, isoform E 2.2 7 7 0 72785.4587 87224.9574 +L0MLR4 calcium/calmodulin-dependent protein kinase 31.42 17 37 1 915620.17755 1184076.8427000002 +L0MPN7 Asator, isoform H 7.38 8 8 0 87447.66604 89896.79149999999 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.78 11 11 0 84612.5577 81663.53409999999 +M9MRX0 Limpet, isoform J 27.3 27 63 0 2021805.7602 2323628.63042 +M9MRX4 Ankyrin 2, isoform U 6.34 37 45 0 936098.94077 864089.36893 +M9MRY7 Uncharacterized protein, isoform C 21.66 5 9 0 175907.96014 175202.3652 +M9MS47 Uncharacterized protein, isoform B 12.84 7 9 0 113197.1956 112029.8277 +M9MS48 Rbp1-like, isoform B 8.5 2 5 0 103845.6412 136033.878 +M9MS70 Uncharacterized protein, isoform C 2.9 1 1 0 0.0 426.2504 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 35.35 11 21 1 374838.6031 398318.07126 +M9MSI3 Vajk1, isoform B 26.26 11 16 0 727195.851 803216.125 +M9MSK4 Sh3beta, isoform D 68.98 14 39 2 1240747.2211 1558193.40411 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 0.55 1 1 0 13251.351 19346.99 +M9NCP5 Uncharacterized protein, isoform C 2.89 1 1 0 896.9536 2142.324 +M9NCR4 Dumpy, isoform J 11.24 137 226 0 106064.929 113349.4368 +M9NCS7 Uncharacterized protein, isoform G 15.87 10 11 0 154472.127 181417.6852 +M9NCX5 Chitin deacetylase-like 5, isoform I 5.62 10 13 0 91920.31403 170623.10379999998 +M9ND42 Cdc42-interacting protein 4, isoform H 15.68 10 15 0 254315.0411 282842.7428 +M9ND57 Large proline-rich protein BAG6 8.86 10 16 0 138306.5525 129606.37580000001 +M9ND89 Nuclear fallout, isoform J 19.96 10 11 0 126080.141 166204.454 +M9ND95 Myosin heavy chain, isoform U 54.28 125 413 1 26592530.43306 30502226.8706 +M9NDB5 RNA-binding protein 6, isoform F 36.89 6 15 1 0.0 509.96216 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 4719.442 3186.1467 +M9NDE0 pantothenate kinase 4.21 2 3 0 17131.445 13733.8798 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 8.31 7 8 0 68159.42023 73311.59092 +M9NDS9 chitinase 0.67 3 4 0 29009.890699999996 40952.7676 +M9NDX8 Neurabin-1 1.98 4 4 0 23192.2747 29301.394 +M9NE05 Neuromusculin, isoform E 2.97 6 11 0 47972.8922 59113.5844 +M9NE56 Terribly reduced optic lobes, isoform AK 34.96 114 289 0 106704.049 152798.33169999998 +M9NEF2 Histone deacetylase 2.33 1 1 0 903.16223 0.0 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 21186.973 18998.93 +M9NEW0 LD39232p2 58.67 9 12 9 347690.0785 390230.6595 +M9NEX3 Cytochrome b5 57.55 6 27 0 838548.9048 938696.4276 +M9NF03 Uncharacterized protein, isoform F 11.63 4 9 0 62054.711800000005 63684.4335 +M9NF32 Leucine carboxyl methyltransferase 1 14.37 6 6 0 59931.707460000005 56634.765660000005 +M9NF47 Uncharacterized protein, isoform J 5.26 10 12 0 264111.9154 277750.7317 +M9NFC0 Troponin I 47.24 15 56 5 2437856.7145000002 3002653.9755 +M9NFF0 Uncharacterized protein, isoform H 8.21 2 4 0 51049.764 38359.0016 +M9NFH3 Lasp, isoform D 39.01 10 22 1 81601.371 91060.57449999999 +M9NFH8 Glutamate synthase [NADH] 7.33 17 20 0 481544.27852 478180.41545 +M9NGY7 Hyperkinetic, isoform I 17.56 5 5 1 5612.311 5419.232 +M9NH07 Upheld, isoform N 45.43 30 106 0 13052442.6517 16417084.2985 +M9NH46 Mind-meld, isoform E 11.58 12 16 0 216362.83114 206386.4961 +M9PAY6 Uncharacterized protein, isoform D 9.92 7 7 0 97462.2393 132266.596 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 18.13 19 33 0 758603.47929 914242.21216 +M9PB37 Uncharacterized protein, isoform F 0.46 1 1 0 5017.9863 5084.851 +M9PB89 Uncharacterized protein, isoform B 24.37 2 7 0 56228.411499999995 74592.77557 +M9PBA3 Uncharacterized protein, isoform A 8.86 1 1 1 2588.4985 3194.3164 +M9PBF6 Dynamin associated protein 160, isoform G 47.98 47 143 0 4404373.85026 5384119.59892 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 0.34 1 1 0 1819.7357 680.6074 +M9PBM3 Cysteine protease 8.54 3 5 0 11076.61656 10549.7195 +M9PBN2 Apolipoprotein D 20.82 3 10 0 162907.27386 249974.8254 +M9PBR6 Uncharacterized protein, isoform F 14.22 9 28 0 386381.7992 552355.94922 +M9PBT2 Cornetto, isoform E 1.96 2 2 0 5227.8312000000005 2725.2231 +M9PBU4 Sorting nexin 21, isoform B 15.31 5 5 0 60205.7818 60224.1141 +M9PBU6 Liquid facets, isoform I 20.25 9 18 0 395953.09226 502573.45855 +M9PBV2 nucleoside diphosphate phosphatase 20.8 10 20 0 548468.2476 604570.4392 +M9PBV5 JNK-interacting protein 3 3.77 4 4 0 20771.0631 20655.21404 +M9PBW9 Rhea, isoform G 6.64 17 18 0 234669.9689 292287.1359 +M9PBZ2 RNA-binding protein 9, isoform J 11.11 8 19 0 204078.96240000002 206671.9204 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 77.9 27 223 1 17325709.32776 19063630.98944 +M9PC64 Forkhead box K, isoform P 2.82 3 3 0 41407.104999999996 42551.65 +M9PC74 Reticulocalbin-3 23.01 10 15 0 367478.8594 526015.848 +M9PC99 Secretory 24CD, isoform C 3.25 3 3 0 6129.2798999999995 8396.1783 +M9PCA6 Beta galactosidase, isoform B 2.69 2 2 0 38665.417 34565.273 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.34 2 2 0 12694.127 12857.914 +M9PCC4 Sin3A-associated protein 130, isoform G 4.96 5 5 0 19293.4916 24834.307399999998 +M9PCD4 Liprin-alpha, isoform E 6.43 9 9 0 118371.2577 106893.3959 +M9PCE5 Hemolectin, isoform B 3.57 13 13 0 69749.4773 68215.2691 +M9PCI1 Uncharacterized protein, isoform B 2.85 2 2 0 2317.9539999999997 4500.4897 +M9PCI6 Echinoid, isoform C 2.19 3 3 0 25302.9503 30453.730499999998 +M9PCT7 Bunched, isoform O 16.15 3 5 1 6663.382 8184.4204 +M9PCU0 FI21215p1 30.84 38 66 1 72881.83 87738.336 +M9PD23 DnaJ homolog, isoform C 17.27 6 11 0 100242.19166 121678.18935 +M9PD73 TEP1-F 23.71 32 47 0 1160083.42598 1441271.29505 +M9PD88 Copper transport protein ATOX1 56.18 5 19 0 835628.5319399999 1030312.4109 +M9PD94 Crooked legs, isoform F 1.87 2 2 0 28878.16 21400.961 +M9PDB2 Varicose, isoform E 7.69 5 5 0 34384.8778 46503.0317 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 56.27 13 32 3 546571.32525 637533.12457 +M9PDC7 Dynamin associated protein 160, isoform H 51.64 45 132 0 17280.324 18661.457 +M9PDE6 Uncharacterized protein, isoform K 2.51 5 6 0 37723.145 43153.4963 +M9PDJ9 Tetratricopeptide repeat protein 2, isoform C 3.97 2 2 0 31657.256 37232.635 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 4.48 5 6 0 66864.041 82519.7956 +M9PDU4 Acyl carrier protein 18.23 4 29 2 3923373.536 3957974.3645 +M9PDV2 Tetraspanin 12.89 3 3 0 30721.930999999997 27700.585 +M9PDW8 Uncharacterized protein, isoform T 6.7 32 38 0 386067.86017 426707.39386 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 133035.5327 191783.7656 +M9PDX8 Nervana 3, isoform E 36.1 10 62 1 4197961.95416 6233356.86135 +M9PE32 Fife, isoform D 12.56 14 19 0 145776.99344 161994.38105 +M9PE35 RabX6, isoform B 8.11 2 2 0 6237.83 8214.8002 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 2.37 1 1 0 6982.183 6239.1787 +M9PE74 No circadian temperature entrainment, isoform D 3.47 5 6 0 10616.5613 13304.4895 +M9PE93 Ensconsin, isoform K 6.31 6 6 0 48730.1858 59834.5656 +M9PE96 Uncharacterized protein, isoform B 1.26 2 2 0 15949.1917 20134.199999999997 +M9PEC1 IST1 homolog 21.0 7 10 0 198765.554 261398.503 +M9PEE1 Smallminded, isoform H 11.33 10 12 0 232229.2182 252544.63825 +M9PEG1 Uncharacterized protein 27.38 16 49 16 1865342.8033 2159016.56524 +M9PEI1 Dumpy, isoform U 8.38 147 234 0 1679321.39602 1856071.08646 +M9PEJ9 Uncharacterized protein, isoform B 12.44 5 8 0 84959.475 100057.4326 +M9PEL3 Quemao, isoform C 23.62 7 9 0 104340.85867 97013.2168 +M9PEM1 Syntaxin 17, isoform B 14.16 4 5 0 117573.43349999998 113450.40597 +M9PET3 Simjang, isoform D 2.38 2 2 0 2264.83054 2916.42176 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 1.1 1 1 0 7079.148 7030.4565 +M9PF08 Uncharacterized protein, isoform D 1.12 1 1 0 4559.3906 6215.1396 +M9PF16 Spectrin beta chain 24.44 59 123 3 3643395.4161 4158874.9649 +M9PF36 Uncharacterized protein, isoform C 25.29 12 29 0 1033849.8541 1202164.3687 +M9PF85 CCR4-NOT transcription complex subunit 9 5.65 2 2 0 27650.589 29485.64 +M9PFF7 Uncharacterized protein, isoform E 14.85 7 7 1 62109.0497 77970.0479 +M9PFH7 Tartan, isoform B 2.53 2 3 0 8173.456099999999 11337.341199999999 +M9PFU5 Uncharacterized protein, isoform K 5.73 3 3 0 21573.3252 33380.7448 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 3.31 2 2 0 9931.2436 9305.8222 +M9PFV4 Uncharacterized protein, isoform B 5.13 2 2 0 41112.149999999994 39867.283 +M9PFV8 Regeneration, isoform B 5.94 4 5 0 22404.0844 16548.3476 +M9PFX4 Cuticular protein 76Bd, isoform C 12.67 10 11 0 173166.0486 220607.1321 +M9PG20 HP1 and insulator partner protein 1, isoform C 9.84 8 9 0 79640.7604 91301.88 +M9PG87 Uncharacterized protein, isoform B 3.24 5 5 0 48705.0 54691.3883 +M9PGA7 Alpha-actinin, sarcomeric 58.67 56 203 1 5891584.67666 6489097.14954 +M9PGB6 Uncharacterized protein, isoform B 30.46 5 5 0 78166.49734999999 90727.71476 +M9PGD7 Uncharacterized protein, isoform B 7.77 4 4 0 36000.609 34050.748400000004 +M9PGG8 Uncharacterized protein, isoform B 31.32 5 11 4 627460.4003 725422.3553 +M9PGW8 Bifocal, isoform D 13.51 12 15 0 8690.914 8635.266 +M9PHA0 Bifocal, isoform F 12.03 13 16 2 156641.83595 184794.11106 +M9PHI7 Uracil phosphoribosyltransferase homolog 11.88 3 3 0 30458.853 33964.806 +M9PHI8 Uncharacterized protein, isoform B 13.28 16 21 0 321461.72478 346615.1525 +M9PHK8 Discs large 1, isoform R 33.87 31 75 1 223892.52196 240799.5269 +M9PHM9 Wurmchen 2, isoform A 35.09 2 2 2 25462.724000000002 34810.57 +M9PHS8 Uncharacterized protein, isoform C 12.33 7 9 0 72150.6296 79602.5894 +M9PHX2 Visgun, isoform E 3.82 1 1 1 16344.073 18608.043 +M9PI33 Inositol oxygenase 11.64 2 2 0 62958.394 45858.063 +M9PI51 Dual specificity protein phosphatase 15 2.24 1 1 0 1758.9579 389.18735 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.58 3 3 0 19933.6912 22952.764 +M9PIL1 Juvenile hormone binding protein 6, isoform C 11.11 3 3 0 32253.3471 40369.3153 +M9PJJ5 Uncharacterized protein 18.1 5 5 4 200648.80299999999 258540.701 +M9PJM6 Upheld, isoform Q 44.85 29 100 1 25512.176 84186.485 +M9PJQ5 Troponin I 45.65 14 66 0 711943.0046 825382.9937999999 +O15971 LD39986p 30.39 7 26 4 134238.3521 143855.6717 +O16158 Calcium-binding protein 48.91 7 30 7 2138119.1659 2586629.6536 +O17452 LD20793p 27.83 6 17 4 372593.9612 377889.174 +O18332 FI01544p 60.98 11 51 9 951954.49309 1088444.07784 +O18335 Rab11 57.94 14 57 14 2590329.6178 2940829.8727 +O18336 Ras-related protein Rab-14 39.07 8 16 1 191086.7205 247973.2431 +O18338 LD44762p 23.19 5 23 0 1765.5969 723.71936 +O44226 Elongin-B 97.46 10 30 10 1527369.9071 1658209.2813 +O44434 QKR58E-3 24.92 7 8 5 140133.4545 197771.723 +O46048 EG:133E12.4 protein 0.47 1 1 0 1739.647 1488.3069 +O46052 EG:152A3.3 protein 12.67 4 5 1 26939.589500000002 27739.2758 +O46067 Hypoxia up-regulated protein 1 32.72 26 48 26 1190576.91122 1344952.16105 +O46085 Peroxisomal targeting signal 1 receptor 1.47 1 1 0 33258.24 22066.338 +O61444 mitogen-activated protein kinase kinase 17.69 7 9 7 176819.8331 190246.91625 +O61604 Fimbrin 37.34 25 48 3 1118396.6332 1374137.6239 +O62530 Adaptor protein complex 2, mu subunit, isoform A 13.27 7 8 7 86893.9622 105946.79000000001 +O62602 mitogen-activated protein kinase kinase 12.28 4 4 4 38640.2105 55701.255 +O76521 Importin subunit alpha 5.52 3 5 3 45226.3318 50365.6857 +O76752 Sepiapterin reductase 28.74 7 12 7 303810.071 350800.232 +O76877 EG:132E8.3 protein 20.62 3 4 3 320376.97000000003 296463.41 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 34.57 6 30 5 4491795.6585 4411658.001 +O77259 EG:115C2.5 protein 4.0 1 1 0 29201.656 41238.855 +O77425 Ribokinase 3.29 1 1 1 11808.936 8718.336 +O77430 GEO01111p1 71.6 13 21 12 762285.9774 804574.733 +O77434 EG:34F3.8 protein 39.34 7 15 1 171175.6249 201223.54853 +O77477 LD24471p 28.57 10 11 10 93812.0497 112955.0299 +O96299 Sorbitol dehydrogenase 20.83 8 17 2 26931.382 27168.299 +O96692 small monomeric GTPase 21.98 4 7 1 114086.3359 131323.31885 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 29.0 3 4 3 131849.014 136210.493 +O96880 General transcription factor IIE subunit 1 4.9 2 2 2 9471.9551 11900.2952 +O96881 Transcription initiation factor IIE subunit beta 9.25 2 2 1 13459.547700000001 19226.8746 +O97059 Ccp84Ab 36.2 6 6 0 191604.33725 203825.21980000002 +O97062 Ccp84Ae 75.96 13 31 13 463470.60753 570571.61112 +O97064 Ccp84Ag 37.17 5 9 5 66696.258 85591.837 +O97066 Signal peptidase complex catalytic subunit SEC11 4.32 1 1 1 10189.983 40578.598 +O97102 Small ubiquitin-related modifier 44.44 5 27 5 1905446.809 2856721.8223 +O97111 LD29223p 11.97 4 4 4 38638.5483 44229.831999999995 +O97182 Actin-related protein 2/3 complex subunit 2.39 1 1 1 13838.922 14846.805 +O97183 DNA-directed RNA polymerase II subunit RPB3 14.18 3 3 3 32246.2311 41592.8023 +O97365 BM-40 24.01 7 7 7 258244.872 202765.23 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 67.96 7 40 7 1899148.51357 2034395.92595 +O97428 Ciboulot, isoform A 29.46 4 5 1 42000.2709 44238.5785 +O97454 Protein BUD31 homolog 19.44 3 3 3 28834.00967 36286.1922 +O97479 Sorbitol dehydrogenase 26.11 10 22 4 519485.91846 717949.9096 +P91939 Cuticle protein LCP65Ad 10.19 1 1 1 4969.225 6436.9287 +P91941 Adult cuticle protein 65Aa 60.0 4 89 4 8377597.618430001 9457602.1467 +P92181 Cuticle protein DCP2 37.61 4 8 4 111236.5727 111828.8927 +Q0E8E2 Phenoloxidase-activating factor 2 2.19 2 2 0 18984.692000000003 21370.785 +Q0E8E8 Phosphate carrier protein, mitochondrial 44.66 14 49 12 2825511.2242 3040213.136 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 16.03 5 8 1 168422.11349999998 205676.7586 +Q0E8H9 beta-N-acetylhexosaminidase 4.5 3 3 0 49248.1305 55907.4827 +Q0E8J3 Zormin, isoform I 17.77 62 96 0 1262354.08537 1470184.81488 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 7427.9087 8750.879 +Q0E8P5 FI05614p 19.04 11 19 11 80471.89818 101546.35578 +Q0E8S7 Homer, isoform E 30.13 14 34 1 1228054.7703 1523820.5749 +Q0E8U4 FI09636p 20.0 6 7 6 117863.256 127196.3135 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 19 7 521730.957 604634.9097 +Q0E8X6 Translation initiation factor eIF2B subunit delta 6.6 3 3 0 33539.965 37411.1121 +Q0E8X7 Reduction of Rh1, isoform A 50.0 6 42 6 5230634.8657 4060417.519 +Q0E8X8 ATP synthase F1 subunit epsilon 48.6 7 19 7 710484.1631 735026.77415 +Q0E980 Uncharacterized protein, isoform C 29.77 14 23 14 351279.4692 472321.32598 +Q0E9B7 DNAation factor-related protein 3, isoform A 9.77 2 3 2 9359.80603 5176.61975 +Q0E9E2 Pyruvate carboxylase 32.66 33 58 0 1822946.7105 2318552.32832 +Q0E9F9 Zinc carboxypeptidase A 1 26.71 10 19 10 317212.29871 411505.05128 +Q0E9G4 CG1600-PA 3.41 1 3 0 42620.905399999996 72205.165 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 21.08 10 15 0 242271.9011 308262.4019 +Q0KHR3 Bazooka, isoform B 0.79 1 1 0 934.48065 1682.0278 +Q0KHR7 Septin 15.46 9 14 0 273454.3053 256383.1241 +Q0KHX7 FI18193p1 6.03 7 7 0 86869.4235 104243.64619999999 +Q0KHZ6 Electron transfer flavoprotein subunit beta 79.05 17 123 17 9051529.2667 10524446.5158 +Q0KI15 Complex III assembly factor LYRM7 23.36 4 4 4 104781.63399999999 99182.7742 +Q0KI25 Uncharacterized protein, isoform B 10.67 11 14 1 130344.17480000001 136237.48135 +Q0KI39 FI16806p1 18.15 3 6 1 12955.8979 16939.9806 +Q0KI76 Uncharacterized protein, isoform A 15.47 10 19 0 533586.3110999999 661260.4304 +Q0KI81 protein-tyrosine-phosphatase 6.86 10 11 10 60529.8709 83175.7714 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 7.91 3 4 3 56794.7048 75387.298 +Q0KIE7 Ankyrin, isoform B 1.23 2 2 2 15285.8942 22550.8444 +Q1RL12 IP16413p 54.97 15 74 2 72114.3193 78443.579 +Q24090 GH08712p 7.57 3 3 3 31460.553 45808.4 +Q24253 AP complex subunit beta 20.2 15 23 15 587967.7079 680995.3354 +Q26459 EN protein binding protein 18.26 9 16 0 499181.40645 403554.60287 +Q29QY7 IP15859p 9.86 1 1 0 117283.586 149198.5 +Q2MGK7 GEO13330p1 20.47 3 5 3 92781.979 94813.15550000001 +Q2PDM3 Uncharacterized protein, isoform C 0.44 1 1 1 4378.4736 8800.436 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 23.4 2 2 2 49620.096000000005 55327.09 +Q3YMU0 Protein disulfide-isomerase (Fragment) 63.19 31 117 31 8822532.35406 9711118.53575 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 9.31 5 5 5 32636.07743 37762.9067 +Q4LDP7 NADH-cytochrome b5 reductase 18.35 7 13 0 333846.30775000004 385076.63037 +Q4QPU3 Synaptic plasticity regulator PANTS 20.51 3 3 3 19228.43 24767.908 +Q4QQ49 IP09595p 2.7 1 1 1 21908.176 19858.084 +Q4QQ70 IP09819p 18.42 6 7 6 63289.5695 87838.25997 +Q4V429 Cytochrome c oxidase assembly factor 5 22.78 2 5 2 22044.337 23197.1386 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 13.11 2 2 2 15467.2665 14716.6895 +Q4V619 IP07950p 6.9 2 3 0 38893.871999999996 30272.369000000002 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 28.87 4 5 4 315965.566 373374.333 +Q500Y7 GEO11443p1 87.72 4 40 4 782153.6633 1077379.0644999999 +Q59E01 FI02065p 3.0 2 2 0 2349.1895 2712.4482 +Q59E14 Neural cell adhesion molecule 2 5.98 3 3 3 30087.7855 40038.8958 +Q5BIA9 RE10908p 2.48 1 1 1 3368.3818 3676.2874 +Q5LJT3 MIP01391p 10.93 2 5 2 73656.9846 98968.2059 +Q5U124 alpha-glucosidase 17.62 10 18 0 298500.5336 360473.12679999997 +Q5U126 GEO11286p1 59.42 7 37 7 2095024.1443 2405784.41463 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 17.84 7 10 0 162743.8522 177503.71255 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 15.87 5 6 5 44363.42986 46692.40854 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 30 8 1102587.8569 1288125.7475 +Q6IGM9 LYR motif-containing protein 2 21.11 2 2 2 44122.592 23314.864 +Q6IGN6 HDC05827 42.05 4 5 4 102004.241 119370.611 +Q6IGW6 GEO13367p1 44.23 2 4 2 69761.27900000001 74612.8932 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 14 2 1969005.551 2115411.5902 +Q6IIF2 GEO11103p1 7.14 1 1 1 17925.443 19995.332 +Q6IL43 GEO11093p1 13.25 1 2 1 104133.076 121245.746 +Q6NL44 GH28815p 20.08 8 10 8 59601.077379999995 73437.29130000001 +Q6NLJ9 AT19138p 38.64 2 2 2 23887.578999999998 25174.5775 +Q6NMY2 RH54371p 21.43 5 27 5 1030135.402 1144385.0361 +Q6NNV2 RE44043p 5.81 2 2 0 147880.331 132416.763 +Q6NNV7 RH03309p 36.84 7 23 1 634952.44443 722453.58261 +Q6NP69 GST-containing FLYWCH zinc-finger protein 1.34 1 2 0 15330.8373 25188.939 +Q6NP72 GEO09659p1 33.33 4 16 4 776667.61484 1137238.9958 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 4.8 2 2 2 26996.398 34064.458 +Q76NR6 Regucalcin 83.07 23 133 0 6685238.60095 8341490.29197 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 22.72 8 15 0 300927.9107 356749.6778 +Q7JNE1 Regulatory protein zeste 29.48 9 14 9 238864.38572 256764.0737 +Q7JPS2 Igloo, isoform A 48.75 10 29 3 1472686.0377 1986507.98694 +Q7JQH9 carnitine O-palmitoyltransferase 2.18 2 2 0 31620.880800000003 34661.38998 +Q7JQR3 Sulfhydryl oxidase 24.96 15 20 15 542510.4969 654765.7229 +Q7JQX9 FI14001p1 4.33 4 4 0 22446.91 27678.760000000002 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 59.66 13 107 13 7617827.02864 8440491.64634 +Q7JR69 Cuticular protein 49Ac, isoform C 25.93 6 8 0 226241.79254999998 250036.3012 +Q7JRC3 Epoxide hydrolase 9.28 4 4 3 40478.172 55309.309 +Q7JRF1 RE48509p 6.5 2 3 1 12010.9231 18072.5572 +Q7JRH5 RE28271p 1.31 1 1 1 15939.259 20118.033 +Q7JRL9 GH25289p 67.12 10 52 1 2967526.9802 3373606.0169 +Q7JRN6 GH06388p 6.73 2 2 2 14775.783 15598.278 +Q7JS69 FI04632p 35.69 10 68 1 798607.608 726433.507 +Q7JUN9 Deoxyribonuclease TATDN1 9.62 3 3 3 19561.8191 13480.731 +Q7JUS9 Phosphate carrier protein, mitochondrial 31.82 13 33 11 1269890.2647 1502810.6835 +Q7JV09 GH28348p 4.84 5 5 2 28347.749799999998 27566.7722 +Q7JV69 SD11922p 11.76 4 9 4 120912.97215 147062.5511 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 15.82 2 3 2 14713.65 20090.949 +Q7JVH6 LD24696p 47.27 12 27 11 324385.9456 389835.40544 +Q7JVI6 Glutathione S transferase E13, isoform A 14.6 3 9 3 67004.3844 86438.5103 +Q7JVK6 Translin 24.26 6 8 6 175654.8866 200408.109 +Q7JVK8 GEO08987p1 53.42 7 13 7 893799.6673999999 1083521.9849 +Q7JVM1 GH25962p 22.64 5 6 5 43547.0678 41856.1573 +Q7JVX3 Zinc carboxypeptidase A 1 18.2 7 8 0 118647.69404999999 121595.2463 +Q7JVZ8 Glutathione S transferase E11, isoform A 23.56 7 8 7 142598.3922 156746.8076 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 18.58 4 8 4 72810.152 103875.06599999999 +Q7JW48 RE12410p 5.57 2 2 2 655.22406 657.1305 +Q7JWD6 Elongin-C 46.15 5 17 5 1612375.1345 1724449.4078 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 18.21 12 28 12 956697.9534 1067553.1397 +Q7JWH5 RING-box protein 2 27.43 2 3 2 57597.106 60852.845 +Q7JWQ7 RE01730p 5.34 2 3 2 18746.9368 21645.767 +Q7JWU9 AT07420p 19.68 5 5 5 36472.7229 55403.648 +Q7JWX3 GH10112p 22.48 7 11 7 159920.40855999998 185858.2996 +Q7JX87 1-Cys peroxiredoxin 55.0 11 48 1 112136.022 149861.6587 +Q7JX94 Phospholipase A2 15.61 3 3 3 11853.664200000001 11058.4483 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 9.56 7 7 1 114793.71770000001 135241.324 +Q7JXB9 Endonuclease 10.65 3 3 3 47081.2546 53504.0935 +Q7JXC4 CG6459 protein 33.46 6 38 6 2013848.5532000002 2443310.5557 +Q7JXW8 Off-track2 4.39 2 2 2 13435.838399999999 13016.529999999999 +Q7JXZ2 cystathionine gamma-lyase 19.59 6 8 6 96820.9172 137918.2082 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 30.59 4 8 4 383640.543 438233.615 +Q7JYW9 Phosphotransferase 19.38 9 13 9 332731.948 404981.9615 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 5 3 23347.2327 25059.0735 +Q7JYZ0 lysozyme 39.13 4 9 4 315038.28466 281396.33565 +Q7JYZ9 Glutathione S transferase E2 31.22 7 19 7 312226.1047 383279.40387 +Q7JZB1 RE49860p 2.09 1 1 1 11858.939 8910.668 +Q7JZD3 Eb1, isoform A 56.7 14 33 0 1569444.64676 1705887.518 +Q7JZD5 Dorsal interacting protein 3 6.32 2 2 2 4875.5687 5720.9232 +Q7JZE1 Peroxin 11 6.22 2 2 2 78623.648 79526.372 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 8.57 2 3 2 79653.64 89354.87299999999 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 47.58 10 37 10 4211855.86728 4666546.5128 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 15 5 411919.6382 384988.2696 +Q7JZW0 Cuticular protein 51A 62.5 11 31 11 558901.0204 614812.94218 +Q7JZW2 40S ribosomal protein S15 61.49 7 18 2 3542033.264 3765710.7800000003 +Q7K012 Brahma associated protein 55kD 13.18 4 6 4 16763.8223 21514.850899999998 +Q7K076 GEO08269p1 22.14 2 2 0 17941.742 25054.256 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 13 163 13 15142814.99326 17182188.51135 +Q7K0A0 Large ribosomal subunit protein mL42 7.26 1 1 1 34394.914 36815.504 +Q7K0B6 Glutathione S transferase T1 57.46 14 37 14 1480039.55246 1736733.56185 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 13.37 5 7 5 53241.29840000001 68758.30077 +Q7K0P0 Juvenile hormone-inducible protein 26 4.1 2 3 2 60524.074 79815.891 +Q7K0S1 LD39211p 1.83 1 1 1 1941.2758 2241.706 +Q7K0S5 UBX domain-containing protein 6 34.47 18 25 18 258931.33805 295555.69878 +Q7K0S6 LD36817p 19.03 8 9 8 124892.24949999999 145309.0029 +Q7K0W4 LD27203p 46.95 14 45 14 2198378.70675 2326072.91611 +Q7K0X9 LD23667p 23.4 5 12 5 142839.4261 162411.271 +Q7K127 Alpha-galactosidase 15.83 7 17 7 260777.41728999998 186638.5801 +Q7K148 Proteasome subunit beta 22.34 6 8 6 153541.62119 182032.72499999998 +Q7K159 LD06557p 22.47 5 6 5 76437.414 77040.2569 +Q7K180 LD02709p 22.5 11 14 11 142806.4421 177203.2504 +Q7K188 GEO05126p1 30.97 6 40 6 4136255.7111 4056928.68035 +Q7K1C0 GH23780p 50.5 6 11 1 178632.28399999999 197824.13569999998 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 17.89 5 5 5 127607.727 138283.883 +Q7K1C5 GH21176p 9.19 6 7 6 213820.75650000002 276599.71160000004 +Q7K1H0 GH09096p 20.06 7 8 6 90503.0267 114860.178 +Q7K1M4 SD04017p 16.99 5 12 5 98122.0725 140136.1451 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 9.91 4 6 4 92617.243 121081.5705 +Q7K1W5 LD35843p 30.05 12 20 12 609093.1743000001 615045.23027 +Q7K204 17S U2 SnRNP complex component HTATSF1 5.58 2 2 2 58842.50199999999 50777.8947 +Q7K221 Aspartate aminotransferase, cytoplasmic 31.01 12 32 1 911610.1542 962206.6884999999 +Q7K2E1 LD05247p 18.9 10 15 10 255168.826 329297.6146 +Q7K2L7 GH27120p 28.14 4 11 4 569234.9371 670456.4258 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 7.49 3 3 3 44698.5166 42342.2265 +Q7K2P1 Cuticular protein 50Cb 11.24 2 3 2 22758.970999999998 25265.881 +Q7K2P3 GH20817p 58.7 13 31 1 906880.3622999999 1018910.5408 +Q7K2Q8 Trafficking protein particle complex subunit 5 35.57 7 8 7 174546.24654 130577.44896000001 +Q7K2W6 tyrosinase 22.32 13 21 13 316483.8125 383163.1624 +Q7K332 GH17623p 23.43 6 10 5 188972.4258 325581.1725 +Q7K3D4 peptidylprolyl isomerase 34.76 12 14 12 238067.8509 330181.13300000003 +Q7K3E2 LD34147p 59.21 30 59 30 1186584.0765 1429439.20295 +Q7K3H0 LD28067p 1.44 3 3 0 86790.5 71031.1125 +Q7K3J0 T-complex protein 1 subunit theta 41.21 21 39 21 850126.3607 949524.2527 +Q7K3N4 GH26015p 14.95 6 7 6 93733.2276 113564.9313 +Q7K3V6 Elongation factor Tu, mitochondrial 10.31 5 7 5 69425.7832 79984.92259999999 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 18.35 9 12 9 114555.5443 134414.2636 +Q7K3W4 GH08941p 25.85 8 20 8 619089.44621 844291.1758 +Q7K3Y9 Spondin-1 1.26 1 1 1 592.308 497.87103 +Q7K3Z3 GH01724p 51.6 16 44 16 983111.8207500001 1028540.40238 +Q7K485 Cathepsin D 35.71 9 36 9 817579.05827 1145659.12974 +Q7K4C7 choline-phosphate cytidylyltransferase 4.18 2 4 0 69972.5935 82141.1617 +Q7K4I5 UBX domain-containing protein 7 4.03 2 2 2 0.0 477.0585 +Q7K4J7 LD36653p 7.38 2 2 2 14758.8072 17376.953 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 1.94 1 1 1 2864.0068 3119.3687 +Q7K4T8 LD23856p 6.55 3 4 3 32338.4866 31646.752999999997 +Q7K4Y0 Desaturase 1, isoform A 5.48 2 2 1 32805.8294 34748.217000000004 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 17.45 7 10 7 123327.179 163814.8541 +Q7K519 GH16429p 17.66 5 8 5 50501.4257 62662.59587 +Q7K533 GH14572p 6.14 2 2 2 23659.6736 19420.7529 +Q7K549 GH13040p 18.08 8 8 8 30888.276700000002 37175.7487 +Q7K561 GH11294p 6.82 2 2 2 2303.574 2450.1016 +Q7K568 GH10642p 8.33 3 3 3 35941.579 48076.806599999996 +Q7K569 Glycerol-3-phosphate dehydrogenase 35.36 26 53 26 971118.34085 1165318.13986 +Q7K5J8 Cuticular protein 57A, isoform A 45.11 7 14 7 304127.83150000003 344524.67895000003 +Q7K5M6 GH04176p 20.95 6 11 6 182256.70190000001 200886.942 +Q7K7G0 Coatomer subunit delta 28.44 13 24 0 293647.95932 402771.842 +Q7K860 FI07231p 39.22 7 12 7 73117.13631 90108.9376 +Q7K8X7 Glutathione S transferase E9 33.03 7 15 7 268419.0063 287075.65532 +Q7K9H6 Zinc finger FYVE domain-containing protein 4.77 4 5 4 1700.5762 1296.3304600000001 +Q7KJ08 receptor protein-tyrosine kinase 2.12 3 4 3 22399.3162 28110.1241 +Q7KK90 GH14654p 55.8 9 28 9 2057418.6048 2006265.62806 +Q7KKI0 T-complex protein 1 subunit epsilon 26.94 14 19 0 258194.5222 279555.31690000003 +Q7KLE5 Amphiphysin 49.67 26 71 3 3471587.3518000003 3691514.63857 +Q7KLW9 Pre-mRNA-processing factor 19 16.04 7 10 7 69379.7209 67921.5953 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 23 4 790252.4105199999 959736.6629300001 +Q7KM15 Transcription factor BTF3 32.54 4 7 4 271096.789 340989.749 +Q7KMM4 Glucosidase II subunit alpha 3.9 4 4 4 32275.322500000002 38433.47525 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 28.53 10 21 10 368497.3809 421037.6826 +Q7KMQ0 26S proteasome regulatory subunit 7 51.73 22 57 20 1470569.31924 1633138.0899 +Q7KMS3 Dynein light chain roadblock 43.3 3 5 3 85290.2747 99032.9617 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 19.75 24 36 24 672248.08245 842700.72894 +Q7KN94 Electron transfer flavoprotein subunit alpha 71.52 18 114 18 4703425.21253 5589086.1884 +Q7KND8 FI09619p 3.7 3 3 3 47565.107 61772.015 +Q7KNM2 Dorsal interacting protein 4 26.42 6 14 6 643706.2115 829406.575 +Q7KRT4 GH07253p 4.94 2 2 0 14958.827000000001 15476.684099999999 +Q7KRZ3 Exocyst complex component 8 5.36 4 4 0 19322.7213 18881.89004 +Q7KS11 Uracil-DNA degrading factor, isoform B 12.66 4 6 4 102920.1481 136004.1117 +Q7KSD3 non-specific serine/threonine protein kinase 13.77 6 10 1 257221.2539 294624.1622 +Q7KSE4 GH05443p 2.78 2 2 2 16243.598 27475.407 +Q7KSM5 SUMO-activating enzyme subunit 1 29.08 9 15 9 525606.7979 694755.5525 +Q7KSQ0 Citrate transport protein 28.71 10 26 10 1180843.8577 1341921.2733 +Q7KSQ2 Tyrosine-protein kinase 2.21 2 3 0 18520.023699999998 22756.629 +Q7KSV7 Uncharacterized protein, isoform D 12.54 3 3 0 10918.7984 14839.601999999999 +Q7KSW3 pyridoxal 5'-phosphate synthase 45.99 12 24 1 496589.73054 597095.66295 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 76.07 16 43 0 1846302.5228 2336731.5929 +Q7KT58 GH08155p 3.52 2 3 2 21223.415200000003 26589.926 +Q7KT70 FI18641p1 2.93 3 3 3 17556.1719 17750.23357 +Q7KTA1 HL01444p 17.1 7 10 7 194679.3294 209823.7984 +Q7KTG2 Apolipoprotein lipid transfer particle 5.72 25 28 25 214372.34436000002 286077.57454 +Q7KTJ7 Basigin, isoform G 22.69 14 67 3 3523111.4286 3605370.2584 +Q7KTN9 FI01009p 3.11 2 2 0 10059.741 10138.1409 +Q7KTP7 LP22840p 31.49 5 7 5 237121.5302 257470.8554 +Q7KTW5 Inositol-1-monophosphatase 52.88 17 62 17 1883186.31812 2419802.53986 +Q7KUA4 SUMO-activating enzyme subunit 18.71 11 17 11 522397.469 579665.4692 +Q7KUC2 Pyridoxal kinase 38.49 11 26 10 806466.9392 803961.3182 +Q7KUD4 phospholipase A2 2.93 3 3 0 5167.8331 5437.8557 +Q7KUK9 Uncharacterized protein, isoform B 7.73 13 14 8 1398140.7451 1093965.9258 +Q7KUL1 Dally-like, isoform C 4.58 3 3 0 42009.643 53510.936 +Q7KUT5 Protein MIX23 26.89 4 6 0 78366.43980000001 73319.15205 +Q7KUU5 Sulfhydryl oxidase 19.16 5 7 0 136565.3545 163312.94 +Q7KUW2 5' nucleotidase B, isoform B 7.68 5 6 0 68982.611 89525.82366000001 +Q7KUX7 Eukaryotic translation initiation factor 4H 46.09 14 24 0 448622.70525999996 552553.73038 +Q7KV27 alanine transaminase 51.76 27 130 0 5362293.8931 6539255.25797 +Q7KV34 Pinkman 38.9 26 40 26 1633155.6272 1675092.8671 +Q7KV94 Purine nucleoside phosphorylase 7.08 2 2 0 20899.143 26729.032 +Q7KVB1 Iron-sulfur clusters transporter ABCB7, mitochondrial 1.27 1 1 0 15508.712 19859.467 +Q7KVI9 Uncharacterized protein, isoform B 22.04 4 19 1 116813.3189 136592.9492 +Q7KVL7 Vacuolar protein sorting-associated protein 35 0.87 1 1 0 44696.883 55191.72 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 46.05 19 92 0 3997440.95974 4771515.6467 +Q7KY04 small monomeric GTPase 21.13 4 7 3 13327.275 16887.3716 +Q7PL91 GEO11417p1 19.15 3 8 3 985646.7441 874843.2775000001 +Q7PLE9 Ras-related protein Rab-21 12.16 3 3 0 10888.73697 9529.3068 +Q7PLI0 P120 catenin 15.62 12 15 12 192405.10223 223059.9827 +Q7PLL3 Eukaryotic initiation factor 4B 28.1 12 14 1 402022.9937 582132.0509 +Q7PLS1 LD01937p 15.76 6 8 0 91530.6072 88518.5384 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 6 3 89184.80729999999 98997.84500000002 +Q7YU88 SD08871p 2.84 3 3 0 9285.9451 8982.552599999999 +Q86B44 Glutathione synthetase 13.17 8 13 0 265697.9147 291464.9535 +Q86B74 WASp, isoform C 12.55 5 5 0 45394.8092 57984.5797 +Q86B93 Uncharacterized protein, isoform D 24.39 3 4 0 53627.5539 80885.9054 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 22342.033 29983.057 +Q86BI3 Zinc-finger protein at 72D, isoform B 24.66 17 22 5 247944.2147 312314.67256 +Q86BM0 Uncharacterized protein, isoform A 45.45 8 11 8 183242.6604 207753.3972 +Q86BM5 A kinase anchor protein 200, isoform D 12.78 10 19 1 599560.1716 666186.363 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 32.12 10 16 0 435053.6952 524795.8807999999 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 54.76 6 15 0 2113935.038 2230836.1807 +Q86BR8 Mitochondrial transcription factor A, isoform B 39.08 13 28 0 972316.0053 1021653.3038999999 +Q86BS3 Chromator, isoform A 28.19 21 40 21 763965.52813 839053.0788 +Q86BS7 Glycogen debranching enzyme 3.75 6 6 0 121929.09405 145147.76786 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 42.29 11 23 11 539287.8899 625712.7088 +Q86PF5 PRKCA-binding protein 5.34 3 3 0 20767.974800000004 23721.1042 +Q8I099 Uncharacterized protein, isoform A 16.56 5 5 5 106579.616 126965.911 +Q8I0D4 RE20510p 28.36 21 42 0 1693735.9295 2280608.3163 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 19.54 2 3 2 41933.4665 67546.45 +Q8I0P9 acid phosphatase 1.76 1 1 0 27770.988 41108.574 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 32.56 12 18 12 323325.78583999997 425541.7107 +Q8I930 GH14147p 2.22 1 1 0 26078.977 12239.637 +Q8I941 GH16843p 35.59 10 23 10 1003403.4822 1093893.8553 +Q8IG84 SD21996p 13.42 13 108 0 0.0 352.3211 +Q8IGY1 RE08101p 30.52 35 241 0 20226350.315700002 22359050.55484 +Q8IH23 GEO02102p1 20.74 4 12 4 526913.2867 626949.0393000001 +Q8IM93 FI18814p1 37.97 17 28 17 580007.92175 671520.00444 +Q8IMF4 RE24176p 5.23 3 5 0 44408.7904 56036.4589 +Q8IMJ0 VhaAC45-related protein, isoform A 27.86 11 29 0 485205.93915 514311.36878 +Q8IMK7 Alphabet, isoform B 9.97 4 4 0 49770.695999999996 61586.24747 +Q8IMQ8 RH29536p 42.94 12 32 0 649158.75228 780385.775 +Q8IMT3 IP12392p 6.19 3 3 2 64192.766 72999.345 +Q8IMT6 FI01822p 8.29 4 5 4 64560.0057 64345.364 +Q8IMU2 RE10237p 6.53 2 2 0 30500.567000000003 31154.611100000002 +Q8IMV6 Scaffold attachment factor B, isoform B 3.88 2 2 1 25480.3037 27878.3203 +Q8IMX4 FI04408p 6.6 2 4 0 13133.824 10923.37326 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 26.21 2 7 2 95582.04108 124762.44984 +Q8IN49 MIP05539p 9.17 8 10 8 95553.6547 112302.8104 +Q8IN51 FI17609p1 37.59 7 17 7 121363.67792 158671.5302 +Q8INA9 Fasciclin 1, isoform C 51.3 33 128 1 88338.706 68692.746 +Q8ING0 Peptidase S1 domain-containing protein 3.65 2 3 2 18648.911 26963.9246 +Q8INH5 Aminopeptidase 7.53 7 8 0 63809.82157 93806.3691 +Q8INQ9 LIM domain-containing protein 8.62 3 4 0 34789.288 52731.020000000004 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 9.79 3 7 1 7880.8423 10204.835 +Q8IP52 RE16941p 2.66 3 3 3 14281.024 14735.0627 +Q8IP62 Small ribosomal subunit protein mS23 46.03 7 8 7 126609.0603 153318.1264 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 32.55 14 25 1 330914.4064 384340.94097 +Q8IP94 threonine--tRNA ligase 2.46 2 2 0 83293.0967 111457.24299999999 +Q8IP97 Peroxin-19 52.05 11 27 11 651055.1666 572921.42606 +Q8IPA5 RE15581p 5.36 1 2 0 28527.84 32917.863 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 9.77 2 2 0 136514.331 135783.577 +Q8IPD8 Cuticular protein 30F 29.45 4 10 4 211755.45990000002 242330.8566 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 56.85 33 79 1 1887127.9389799999 2189772.08806 +Q8IPG8 Uncharacterized protein 14.21 4 4 4 93695.861 93641.24900000001 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 3.52 3 3 0 53249.240999999995 54193.006 +Q8IPP8 Ketoreductase domain-containing protein 57.03 12 23 11 579121.3709 598544.9726 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 3.71 1 1 0 17449.64 14789.178 +Q8IPT0 ER membrane protein complex subunit 10 24.67 5 6 0 99858.7946 131372.5515 +Q8IPT6 small monomeric GTPase 11.95 5 9 1 14906.21 16207.022 +Q8IPT9 SD05439p1 43.49 11 21 0 430286.70794 583699.65005 +Q8IPU3 hydroxyacylglutathione hydrolase 35.92 10 34 0 1109724.5768 1231051.4374 +Q8IPW1 Arouser, isoform A 8.2 6 7 0 44524.05717 47413.872 +Q8IPZ5 Uncharacterized protein, isoform B 4.51 3 3 0 17584.6885 20001.915399999998 +Q8IQ99 PAR-domain protein 1, isoform J 2.69 2 2 0 13208.711299999999 10681.072 +Q8IQB7 MIP21654p 9.44 3 4 3 42796.5965 45285.8987 +Q8IQB8 Tequila, isoform D 2.9 4 4 0 30003.75785 34770.922040000005 +Q8IQC6 Small VCP interacting protein, isoform A 23.17 3 3 3 90299.664 69913.589 +Q8IQD3 Uncharacterized protein, isoform C 1.57 1 1 1 23704.438 30227.578 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 7.06 8 9 2 89615.64404 127165.06478 +Q8IQH0 FI12817p 5.37 8 8 1 58218.7185 66858.94410000001 +Q8IQM5 Uncharacterized protein, isoform A 19.87 5 8 1 110443.7295 129923.66870000001 +Q8IQM9 folate gamma-glutamyl hydrolase 2.14 1 2 1 6121.666300000001 5290.2339 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 14.45 14 23 0 545697.8046 684751.8051 +Q8IQT0 Gamma-glutamylcyclotransferase 8.72 2 2 1 68784.752 60811.948 +Q8IQW5 RE23625p 73.96 13 69 3 2833308.04408 3803905.35651 +Q8IQX3 Uncharacterized protein, isoform A 32.26 4 4 4 42112.32002 29391.7298 +Q8IR41 Uncharacterized protein, isoform C 2.56 2 3 0 9426.490099999999 11517.1721 +Q8IR76 FAD synthase 17.35 5 5 0 36205.833699999996 34197.3159 +Q8IRD0 RH17559p 40.82 2 7 2 146049.4992 196345.101 +Q8IRD3 Glutathione peroxidase 47.06 9 62 0 5513667.68013 6030167.53124 +Q8IRH0 Puromycin-sensitive aminopeptidase 11.59 13 18 0 172413.0773 189412.2263 +Q8IRI5 Trio, isoform D 10.7 8 10 0 116581.99220000001 123253.24119999999 +Q8IRQ5 fumarate hydratase 73.45 29 159 0 7966769.53837 8614491.61148 +Q8MKJ5 GEO08105p1 13.27 1 1 1 3227.5913 2358.7876 +Q8MKK1 AaRS-interacting multifunctional protein 3 6.15 1 2 1 15585.756300000001 16813.454400000002 +Q8MLP9 GEO08457p1 33.93 4 5 4 49571.6643 58384.0174 +Q8MLQ0 FI14118p 21.05 2 4 2 120978.5935 152373.144 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 33.33 7 15 7 785243.105 914962.121 +Q8MLS2 ribose-5-phosphate isomerase 34.02 6 13 6 165673.8953 163919.18574 +Q8MLW4 Uncharacterized protein, isoform A 32.29 8 15 8 605480.86953 653370.24052 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 32.47 33 84 0 3025680.08435 3595252.2103 +Q8MQP2 MIP16184p 7.0 2 2 0 17248.555 17579.434 +Q8MRI4 Diphthine--ammonia ligase 1.11 1 2 1 4489.9619 4991.9385999999995 +Q8MRM0 GH16740p 35.44 8 18 8 573945.59174 684213.70607 +Q8MRT7 SD26038p 9.2 2 2 2 22561.762 21338.349000000002 +Q8MRW1 SD19278p 5.83 1 1 1 2653.7092 4701.9927 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 4.31 2 3 2 12320.9597 17397.083599999998 +Q8MSI2 GH15296p 82.01 19 124 19 3419670.54981 3886724.63857 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 5 3 23825.900199999996 24463.171299999998 +Q8MST5 Tubulin beta chain 45.08 17 105 0 378806.58856 436269.0125 +Q8MT58 Carnosine dipeptidase 2, isoform A 61.3 28 65 6 1697162.5302 2101608.05297 +Q8MZ07 GEO07581p1 17.81 3 5 3 86651.65830000001 106588.661 +Q8MZI3 RNA helicase 18.34 13 16 3 99801.5514 114091.4031 +Q8SWS2 RE29468p 60.95 6 30 0 892721.5648 1115711.205 +Q8SWS3 RE26528p 20.44 2 4 2 34694.793 44965.623 +Q8SWZ6 RH51312p 8.33 2 2 2 25262.137400000003 23014.1033 +Q8SX06 GEO08318p1 16.67 2 3 2 41680.166 47165.873999999996 +Q8SX32 type I protein arginine methyltransferase 8.21 2 3 2 16016.9443 21864.2874 +Q8SX35 GEO07743p1 26.53 3 4 0 49403.840000000004 59909.056000000004 +Q8SX50 RE04530p 17.3 6 7 0 110825.8729 128234.85089999999 +Q8SX54 CLIP domain-containing serine protease 8.33 3 3 3 34248.1204 30115.137600000002 +Q8SX57 LD44221p 47.08 8 17 8 226447.2196 240491.14680000002 +Q8SX78 LD05679p 17.93 7 7 7 50570.0634 52396.043699999995 +Q8SX89 Kugelkern, isoform A 7.37 3 4 3 56159.9082 66028.6914 +Q8SXC2 FI04487p 9.11 5 5 5 89789.3963 85145.4737 +Q8SXD5 GH02216p 55.13 11 33 2 1523864.01258 2070513.1624 +Q8SXE1 RH69521p 2.6 1 2 1 3696.8597 4419.4299 +Q8SXF0 Small ribosomal subunit protein uS9m 13.42 6 6 5 63367.739 88665.97 +Q8SXF2 RH40246p 7.01 3 4 3 68543.402 80637.114 +Q8SXG7 tRNA selenocysteine-associated protein 1 7.44 3 3 3 5803.286700000001 9490.554699999999 +Q8SXK0 RE18748p 2.91 1 1 1 9512.92 12914.781 +Q8SXM8 Lysine--tRNA ligase 22.82 14 23 0 228998.78795 245522.2427 +Q8SXP8 TAR DNA-binding protein 43 7.91 3 3 0 2537.8088 2954.8225 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 27.22 14 21 14 431115.64633 405037.0624 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 10.06 2 5 2 13981.8972 12568.1289 +Q8SXS0 RE40914p 12.25 5 5 5 40445.316 44102.821 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 28.71 11 22 11 590926.5766 734775.657 +Q8SY13 Beaten path IIIc, isoform A 5.74 2 2 0 3031.7907 2534.9886 +Q8SY19 Microsomal glutathione S-transferase 1 15.13 2 2 1 84443.27 83481.04 +Q8SY58 Ketimine reductase mu-crystallin 5.63 2 3 2 9954.7026 12811.715100000001 +Q8SY67 lysozyme 14.47 2 3 2 12145.7495 18298.4565 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 292028.19 365961.126 +Q8SYC4 RE68566p 1.72 1 1 1 23354.248 31525.219 +Q8SYD9 Endophilin B, isoform A 42.56 16 65 0 2277553.7551 2777195.70213 +Q8SYG3 E2 ubiquitin-conjugating enzyme 41.67 7 19 0 754548.4281 826899.4092999999 +Q8SYH8 RE57644p 18.68 5 10 1 75528.92390000001 94175.4979 +Q8SYJ2 GEO09626p1 67.47 9 59 9 7926022.0889 8802590.4954 +Q8SYN0 RE52086p 9.3 4 5 4 59921.9804 79426.8502 +Q8SYQ4 RE42475p 70.27 11 44 11 1665786.47755 2134222.76237 +Q8SYQ8 RE40412p 19.85 3 3 3 74174.746 62441.025 +Q8SZK5 RH26533p 10.29 3 3 3 25629.725700000003 30650.5514 +Q8SZK9 HL04814p 48.48 12 60 12 3088047.4575 3819027.1944999998 +Q8SZM2 RH04334p 25.19 7 27 7 1612712.416 1477768.5525 +Q8SZN1 GEO08217p1 51.61 7 29 3 1140874.4535 1338238.4426 +Q8T0I9 GH27479p 16.47 7 12 1 293423.1598 357119.28740000003 +Q8T0J5 GH26851p 41.11 12 33 0 1361088.7003 1312296.2416 +Q8T0N5 GH17516p 19.21 6 9 6 258163.391 326265.858 +Q8T0U6 Serine/threonine-protein phosphatase 16.92 8 14 0 105871.2518 128977.647 +Q8T0V2 GH02495p 19.91 8 13 0 100652.3663 111452.28210000001 +Q8T389 Endophilin B 40.74 15 54 0 4458.078 5822.383 +Q8T3V6 Large ribosomal subunit protein uL29m 11.07 3 3 3 22968.65845 32145.6452 +Q8T3W8 Venom allergen-1 9.54 3 3 0 29674.2677 33904.1117 +Q8T4C4 ATP synthase subunit beta 11.25 5 66 1 4388.103 5826.173 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 31.84 25 39 2 614659.6589 594640.37766 +Q8T6I0 Achaete scute target 1, isoform B 58.99 29 65 0 2181273.3616 2790814.9932999997 +Q8WR19 AFGF intracellular binding protein 8.94 3 3 1 23951.8341 27277.182 +Q94513 Boundary element associated factor 18.79 5 10 1 170265.3897 169757.21029999998 +Q94533 Ribosomal protein S6 kinase 9.8 5 7 5 63119.231 73144.408 +Q94883 DNA replication-related element factor, isoform A 3.1 2 2 2 13709.804100000001 19953.309299999997 +Q95NU8 GH16255p 13.57 8 12 8 162680.2334 194762.99143 +Q95NV8 Allatostatin C, isoform B 9.92 1 1 0 2201.83 3670.9866 +Q95PE4 GEO07784p1 6.17 1 1 1 15843.333 23643.215 +Q95R34 GH16463p 9.71 3 3 3 28488.89592 35310.89205 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 4 3 51209.2811 61408.275700000006 +Q95RB1 Pre-mRNA-splicing factor RBM22 12.2 5 6 5 60431.282999999996 71648.5965 +Q95RB2 Cuticular protein 49Ae 81.34 7 149 7 16577311.60565 20218521.95544 +Q95RC5 LD44506p 5.31 3 3 3 15993.4296 18233.475899999998 +Q95RE4 LD37574p 41.48 11 18 0 125938.32674 141804.03985 +Q95RF6 LD34461p 34.5 4 13 4 282909.69833 347951.2706 +Q95RI2 LD28549p 27.78 8 12 8 174133.3608 184819.7483 +Q95RI7 Survival of motor neuron-related-splicing factor 30 17.28 4 4 0 37298.6655 58114.016 +Q95RQ1 LD16414p 3.32 2 2 2 9602.189 10675.747 +Q95RR6 LD15002p 64.6 17 61 0 124622.13 120556.79000000001 +Q95RS6 Phenoloxidase-activating factor 2 21.62 7 8 7 61921.77042 86162.1413 +Q95RV5 Ribulose-phosphate 3-epimerase 3.62 1 2 1 581556.806 703814.45 +Q95RY2 LD01461p 48.09 10 18 2 397516.804 503624.29267 +Q95SH0 GH26463p 1.52 2 2 2 7669.5 8933.39 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 14 8 477208.754 561439.61364 +Q95SH7 GH26007p 8.57 2 3 2 42970.096 46518.6805 +Q95SI7 GH23390p 65.87 15 59 15 2206597.02183 2810070.27371 +Q95SN8 GH12395p 21.83 5 8 5 110278.12453 124861.1515 +Q95TK5 LD44914p 22.77 9 11 8 120777.0196 142973.4847 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 36.17 17 31 0 1064654.1654 1330354.8433 +Q95TP0 LD34582p 3.1 1 1 1 11140.462 9213.465 +Q95TZ7 GH19182p 78.36 26 115 0 5262120.56154 5358744.08632 +Q95U15 GH14252p 75.64 27 227 0 5319900.46296 6328565.55976 +Q95U34 GH11113p 22.45 11 21 11 526653.5145 607773.6685 +Q95WY3 Nucleolar protein 56 13.1 6 8 6 150305.849 157241.4347 +Q960D4 SD06560p 25.8 16 21 1 337349.9349 394077.3884 +Q960M4 Peroxiredoxin-5 52.63 9 87 9 7763591.1172400005 10055068.40175 +Q960Y8 Aluminum tubes, isoform G 21.97 19 26 1 512139.5582 609164.4242 +Q961A8 LD25351p 1.59 1 1 0 2343.014 2436.351 +Q961B3 5'-nucleotidase domain-containing protein 1 6.93 4 4 0 82169.004 93646.79860000001 +Q961B9 LD24073p 6.28 3 4 3 33504.6126 41429.8863 +Q961C8 LD22649p 10.93 4 5 0 22143.8511 26798.243069999997 +Q961E7 phosphorylase kinase 7.16 4 5 1 25949.3942 32538.5035 +Q961Q8 GH10454p 6.42 3 3 3 46851.0323 52062.898 +Q961T9 GH07914p 29.41 6 10 6 294162.3103 283587.99 +Q961X4 Combover, isoform B 11.74 9 14 0 121818.23999 148942.87394 +Q966T5 Paxillin, isoform D 28.93 7 18 3 136340.2809 192826.1469 +Q967S0 Amidophosphoribosyltransferase 9.69 5 5 0 192428.78 245062.7112 +Q9I7H8 LD37276p 5.84 1 1 1 688.77576 453.0417 +Q9I7I3 GH12831p 9.56 3 3 3 43157.3549 50727.7488 +Q9I7J0 GH21596p 69.23 11 41 11 1862895.5732 2262698.1949 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 2.0 1 1 1 26903.557 31284.69 +Q9I7L9 Uncharacterized protein, isoform A 4.28 1 1 0 469.94516 473.85095 +Q9I7M3 Uncharacterized protein, isoform A 32.89 10 21 0 817886.4374 859405.8804 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 5 29 5 2026935.4367 2574521.5171 +Q9NCC3 Sorting nexin 9.03 5 7 5 68059.106 95716.14199999999 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 3.02 4 4 0 124397.9127 142205.46 +Q9U1K7 Thioredoxin domain-containing protein 17 26.67 4 6 4 235417.693 285268.879 +Q9U1L2 EG:BACR7A4.14 protein 47.01 11 15 11 441226.271 547687.176 +Q9U6P7 FI18813p1 11.39 5 8 5 123883.712 139491.2776 +Q9U6R9 Gamma-soluble NSF attachment protein 49.01 19 59 16 2811365.2174 3198698.25541 +Q9U9Q2 Neosin, isoform A 11.59 5 5 5 40760.580400000006 46641.6054 +Q9V393 Kurtz arrestin 9.57 4 5 4 39124.3913 76971.7415 +Q9V396 Carbonic anhydrase 64.44 15 34 15 2013324.8447 2252410.6606 +Q9V3A8 Ergic53, isoform A 4.69 3 3 3 62916.924 85021.66799999999 +Q9V3C8 DShc protein 1.71 1 1 1 9880.251 10646.528 +Q9V3D9 Signal recognition particle 54 kDa protein 14.37 8 11 8 78265.48105 92208.19552 +Q9V3E3 Large ribosomal subunit protein mL50 14.29 3 3 3 62382.339 55680.845 +Q9V3E7 LD24793p 39.85 12 24 12 506080.4953 530819.66854 +Q9V3E9 RNA polymerase II-associated protein 3 1.87 1 1 1 2750.6545 4161.431 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 13 5 342821.07483 365606.90495 +Q9V3H0 DNAation factor-related protein 4 2.67 1 1 1 5123.842 1750.2207 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 3 3 51302.574 42692.232 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 52.0 6 14 6 222855.27370000002 347055.761 +Q9V3N7 dihydropyrimidinase 45.16 25 46 6 1139848.3726 1315149.9693 +Q9V3N9 B6 1.79 1 1 1 20551.523 25977.639 +Q9V3P3 LD45860p 35.1 9 21 9 699061.6224 884897.1246 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 17.36 4 4 4 82516.4477 81924.4648 +Q9V3R3 GPN-loop GTPase 5.5 2 2 2 6407.6134 7453.497 +Q9V3T8 LD32469p 14.36 3 3 3 47012.9264 47883.466 +Q9V3U6 26-29kD-proteinase 24.41 11 33 11 1975231.1377 2113822.6143 +Q9V3V2 peptidylprolyl isomerase 56.48 12 33 2 1283922.7517 1589084.0178 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.21 22 52 21 2415105.61076 2874845.15265 +Q9V3V9 Endonuclease G inhibitor, isoform A 50.97 17 25 17 619716.8916 785082.6289 +Q9V3W2 GM23292p 61.68 14 52 14 2191903.37206 2343174.1008 +Q9V3W7 LD40489p 47.45 11 20 11 357826.66803 504143.81857999996 +Q9V3W9 UV excision repair protein RAD23 33.57 10 25 3 376012.52016 414527.5345 +Q9V3Y4 LD43650p 8.23 2 3 2 20041.145 25377.062 +Q9V3Y7 Uncharacterized protein, isoform A 62.76 17 33 17 1035235.47257 1302400.0228 +Q9V3Z4 GH11341p 27.89 14 24 14 381750.1815 489546.5199 +Q9V3Z9 HL02234p 42.6 15 43 15 2698845.59043 2948514.78683 +Q9V400 Integrin linked kinase, isoform A 5.13 3 3 3 33784.053700000004 33141.231 +Q9V405 26S proteasome regulatory subunit 6B 38.74 20 32 12 828632.0210000001 1169422.8066 +Q9V406 Activator protein 4 9.35 6 8 6 125712.08780000001 140061.5178 +Q9V420 FI02878p 19.66 7 10 7 133204.713 149389.2063 +Q9V428 Ras suppressor protein 1 27.92 8 14 8 477772.51645 600631.36714 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 7.35 5 5 5 82860.506 90360.177 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 39.39 10 21 10 1029070.9670000001 1255221.7206000001 +Q9V455 Importin subunit alpha 19.84 9 23 9 505951.46776 576803.85984 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 46.15 16 45 16 761040.62924 1055480.20822 +Q9V4C1 Uncharacterized protein, isoform E 40.5 28 61 0 1570628.75685 1765128.69116 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 18 66 0 1860300.0423100002 1970542.12026 +Q9V4E0 Complex I-49kD 33.97 12 20 11 741979.7779699999 850876.4558 +Q9V4E7 Transporter 3.46 3 4 2 97304.605 108932.34 +Q9V9M7 Large ribosomal subunit protein eL21 38.36 7 13 7 392549.9987 522648.2863 +Q9V9Q4 LD43819p 34.18 13 24 13 546200.78944 556526.087 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 11.64 3 5 3 158623.2483 191903.4352 +Q9V9T5 GM14617p 2.44 2 2 0 17978.189700000003 15224.626 +Q9V9T9 Beta-glucuronidase 2.62 2 2 2 17213.565000000002 21028.627999999997 +Q9V9U0 RE35358p 10.11 2 3 2 37030.897000000004 40583.09 +Q9V9U7 Tubulin-specific chaperone A 39.09 6 10 6 274271.575 365615.63555 +Q9V9V0 Cleavage stimulation factor subunit 1 2.12 1 1 1 3521.7292 4056.7603 +Q9V9V4 CRAL-TRIO domain-containing protein 27.85 7 17 7 249950.95352 302128.0132 +Q9V9W2 Large ribosomal subunit protein eL6 24.69 8 26 0 1992164.7897 2503597.2373 +Q9V9W4 GH08048p 1.69 1 1 1 8160.7573 4040.9631 +Q9V9Y6 Carbonic anhydrase 8.94 3 5 3 60143.9397 52320.537000000004 +Q9VA09 Guanylate cyclase soluble subunit beta-1 7.62 6 8 6 41319.801 50528.10346 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 19 64 19 3381425.5369 2898829.0193 +Q9VA32 Cuticular protein 100A 21.99 4 10 4 86305.4153 87417.5411 +Q9VA34 LP06141p 2.47 3 4 3 22135.3394 23997.035 +Q9VA36 CIN85 and CD2AP related, isoform C 16.67 13 19 0 196803.65325 193570.9104 +Q9VA41 GEO08227p1 52.87 7 17 3 78828.6339 83801.4012 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 28 4 857125.74224 929682.5262000001 +Q9VA56 GH23271p 54.34 20 59 1 5492.781 7186.912 +Q9VA69 procollagen-proline 4-dioxygenase 7.09 4 4 4 30719.8365 38210.2737 +Q9VA71 FI19924p1 7.86 3 3 3 412.788 373.27213 +Q9VA76 IP18706p 16.71 5 7 5 30698.5485 31384.2367 +Q9VA81 GEO10172p1 13.57 2 3 2 48294.015 56297.41099999999 +Q9VA95 Trafficking protein particle complex subunit 15.17 2 3 2 13021.8846 13114.25816 +Q9VA97 Pyridoxal phosphate homeostasis protein 32.28 9 13 9 430521.5781 492270.4085 +Q9VAA6 GEO12235p1 19.62 3 4 3 75591.739 70580.8849 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 23.58 9 11 9 133432.95304 151569.0293 +Q9VAC1 GM14349p 62.05 20 122 20 5544584.23438 6630237.64448 +Q9VAC4 GEO09167p1 55.77 8 20 8 852446.5475 1076955.9978 +Q9VAC9 Uncharacterized protein, isoform A 11.98 4 6 0 35973.437000000005 36134.6677 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 9.15 3 3 3 16080.3132 17502.03485 +Q9VAD7 RH37294p 5.2 1 1 1 2812.6687 2664.881 +Q9VAG3 trypsin 24.11 5 8 5 178469.70693000001 225809.78616000002 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 37.91 10 19 10 264324.43634 268817.2883 +Q9VAI9 GEO07291p1 62.25 9 53 5 4281159.37754 5139039.06835 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 25.87 9 9 9 293481.22000000003 323642.6177 +Q9VAL5 protein-tyrosine-phosphatase 2.72 3 3 0 4398.54543 5135.6669999999995 +Q9VAL7 Calnexin 99A, isoform A 37.52 23 55 1 2910327.5787 3191495.4775 +Q9VAN7 Phosphoglycerate mutase 65.88 17 107 15 7796857.8709 8922217.4543 +Q9VAQ4 Peptidase S1 domain-containing protein 13.48 4 4 4 56633.551999999996 54059.0625 +Q9VAS1 Neprilysin-like 19 2.53 2 2 2 7496.170300000001 8126.20314 +Q9VAU6 LD27564p 2.99 2 2 2 7817.327300000001 11689.171900000001 +Q9VAV2 FI21480p1 13.07 11 15 11 202995.21296 236644.80917 +Q9VAY0 Neprilysin 7 3.91 3 3 3 14218.306199999999 10598.2729 +Q9VAY2 Heat shock protein 83 39.9 31 79 30 1686404.3593600001 1922632.8628 +Q9VAY6 Pre-mRNA-splicing factor SPF27 11.87 3 4 3 54354.629 61817.866 +Q9VAY9 GH07821p 8.65 3 3 3 10712.937600000001 11114.6104 +Q9VB05 ALG-2 interacting protein X 24.28 25 38 25 880626.77528 1118409.73852 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 42.72 16 48 16 1070035.09418 1194547.40578 +Q9VB17 IP11341p 10.74 3 3 3 42256.9687 46464.9035 +Q9VB22 LD33695p 18.39 9 13 9 112079.42676999999 126090.6414 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 21.76 12 22 1 518870.82733999996 588548.5307499999 +Q9VB51 GEO08385p1 13.33 1 1 1 3020.0361 3498.7288 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 46.7 8 15 8 363899.0699 537365.74313 +Q9VB66 CLIP domain-containing serine protease 4.72 2 2 2 23149.1196 22034.781 +Q9VB69 Malic enzyme 29.5 16 20 2 890616.753 924035.6758399999 +Q9VB76 Carbonic anhydrase 9.32 3 3 3 39668.536 41030.227 +Q9VB77 IP09938p 7.01 2 5 2 27847.8103 40046.2047 +Q9VB79 IP09473p 17.65 6 14 6 228359.141 331742.9996 +Q9VB81 Cuticular protein 97Eb 66.81 11 42 11 1098675.1603299999 1496885.9430500001 +Q9VB86 LP07342p 16.78 3 6 3 31552.808100000002 32272.615299999998 +Q9VB96 Uncharacterized protein, isoform A 20.21 10 22 0 449223.4284 619289.3356 +Q9VBC1 Uncharacterized protein, isoform A 19.35 2 2 2 5538.5496 5465.6448 +Q9VBC9 Beaten path VII 7.74 3 3 3 50174.26083 35686.61862 +Q9VBI2 UMP-CMP kinase 50.99 13 81 13 3194643.60005 3870757.0406 +Q9VBI3 RH72336p 22.66 7 16 7 585594.9565 706884.9335 +Q9VBL3 GH01188p 5.83 3 3 3 35394.1515 42683.6403 +Q9VBN5 60S ribosomal protein L27 15.56 2 2 2 56362.466 66259.288 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 2.38 1 1 1 8718.971 7461.092 +Q9VBP6 Succinate-semialdehyde dehydrogenase 72.5 26 100 26 5585487.5249 6469261.25604 +Q9VBR3 Astrocytic leucine-rich repeat molecule 5.94 3 4 3 43477.2005 53550.090000000004 +Q9VBS7 Uncharacterized protein, isoform B 27.76 12 26 12 874566.8346000001 1063143.8014 +Q9VBT1 CHK kinase-like domain-containing protein 14.15 6 7 6 64989.5957 75211.4816 +Q9VBT2 IP11926p 4.33 2 2 2 22107.2404 18770.13 +Q9VBU0 Uncharacterized protein, isoform A 4.08 2 2 2 19567.894 26411.354 +Q9VBU9 40S ribosomal protein S27 23.81 3 11 3 2721202.664 3355302.316 +Q9VBV4 Juvenile hormone binding protein 7 15.2 4 4 3 63886.1318 72487.8897 +Q9VBX3 Vig2, isoform B 1.58 1 1 0 25570.682 31785.842 +Q9VBY7 Protein lin-7 homolog 72.82 13 48 1 2634661.0594 2955778.7531 +Q9VC05 Oxysterol-binding protein 8.55 6 6 6 32621.4273 32707.314270000003 +Q9VC06 LD37516p 15.62 11 15 11 97119.1917 132332.88199999998 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 1.49 1 1 1 11589.14 19302.756 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 35.93 19 29 19 503189.5747 583891.1838 +Q9VC30 RE05274p 18.28 3 6 3 20418.133869999998 15378.09044 +Q9VC31 Ras-related protein Rab-1 28.64 6 12 4 234286.562 298662.4313 +Q9VC48 Methionine aminopeptidase 28.88 10 16 10 614203.5399 714882.9823 +Q9VC53 BolA-like protein DDB_G0274169 31.33 5 13 5 261466.8659 310480.9725 +Q9VC58 Syntaxin-18 4.05 2 2 2 35533.47 36920.235 +Q9VC66 AT25567p 19.46 8 9 8 277465.031 295352.346 +Q9VC67 Juvenile hormone binding protein 12 27.38 7 10 7 86884.08593999999 93785.85616 +Q9VC87 RE57978p 2.84 1 1 1 6624.684 7652.0537 +Q9VCB9 FI08802p 15.16 4 4 4 140583.079 153679.159 +Q9VCD8 Structural maintenance of chromosomes protein 2.5 3 3 3 8522.291799999999 7704.53594 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 11 5 606062.0518 700769.2557 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 9.17 4 5 4 243644.7663 243746.61067 +Q9VCF8 LD23561p 22.64 7 9 7 126605.26849999999 140989.5909 +Q9VCI4 LD32918p 1.13 1 2 1 6679.972 8887.038 +Q9VCI7 LD02979p 17.15 6 9 1 144381.5893 129490.7384 +Q9VCK6 LD34157p 18.02 7 8 7 113658.275 147716.43455 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 8.98 4 4 4 32868.0919 34648.0413 +Q9VCR4 FI17836p1 5.18 4 6 4 43097.83725 56944.2037 +Q9VCR9 RH48101p 43.21 13 26 13 392787.1789 421569.87343 +Q9VCT4 Klingon 4.4 2 2 2 11347.6617 14079.9993 +Q9VCU0 GEO02312p1 14.17 2 7 2 264713.6604 322074.55 +Q9VCU1 FI07649p 1.31 1 1 1 9343.34 11281.92 +Q9VCU6 Heterochromatin protein 1c 6.75 2 3 2 33309.69 43526.17 +Q9VCW2 Cardinal 4.82 4 4 4 63711.210900000005 58528.893899999995 +Q9VCW6 GCS light chain 33.33 11 27 11 1128803.1703 1403859.8362 +Q9VCZ2 FI07970p 2.48 1 1 1 15037.787 20392.705 +Q9VD00 FI07666p 34.53 8 15 8 434448.23438000004 480762.7509 +Q9VD01 LP12095p 4.55 1 1 1 17662.863 34395.547 +Q9VD02 GH14779p 30.73 4 11 4 278003.476 386865.4296 +Q9VD13 GH02671p 10.79 6 7 0 76621.21426000001 110414.39306999999 +Q9VD14 GH07286p 9.57 6 9 6 133756.5105 140060.3676 +Q9VD29 small monomeric GTPase 49.74 9 33 9 1635662.10244 1962177.8269 +Q9VD30 GH05294p 70.16 12 36 12 1352681.6471 1532986.79617 +Q9VD55 Holocytochrome c-type synthase 5.34 2 3 2 28911.2118 28559.7103 +Q9VD58 Isocitric dehydrogenase subunit beta 50.54 16 106 16 3013540.74994 3588690.2539 +Q9VD64 ADP-ribosylation factor-like protein 3 20.11 3 5 3 35287.80645999999 38867.837199999994 +Q9VD68 GH19849p 6.84 3 3 3 26659.985099999998 28729.359 +Q9VD72 Vacuolar-sorting protein SNF8 5.91 2 2 2 90397.592 112025.34300000001 +Q9VDC0 GH01837p 24.0 5 14 5 251837.9636 285891.9463 +Q9VDC1 Deoxyribonuclease TATDN1 3.45 1 1 1 7250.081 13389.182 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 2.73 1 1 1 24624.465 29708.518 +Q9VDC3 AP complex subunit sigma 35.92 5 15 5 483372.68269999995 505211.7422 +Q9VDE2 oxaloacetate tautomerase 33.18 6 15 6 1405386.5159 1770150.6691 +Q9VDF4 Cortactin, isoform A 30.95 16 23 16 505901.873 618200.5139 +Q9VDH3 GH08630p 55.7 12 33 12 789193.87207 838362.08395 +Q9VDI1 LD46328p 48.58 21 60 0 1783461.0104 1966838.9305999998 +Q9VDI3 Myosin-2 essential light chain 28.19 4 5 4 41359.4884 58682.9871 +Q9VDI5 Uncharacterized protein, isoform A 29.18 6 16 4 170343.1046 234638.95187 +Q9VDK2 GH15831p 1.18 1 1 0 6883.7554 6297.7876 +Q9VDK7 Signal recognition particle subunit SRP72 33.54 18 21 18 231682.80238 251996.28265 +Q9VDK9 GH12359p 4.71 3 3 3 15142.92242 21579.24743 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 102901.978 118251.148 +Q9VDL5 GEO09602p1 13.43 1 1 1 18534.203 15871.432 +Q9VDP9 S-formylglutathione hydrolase 45.8 8 15 1 397271.61 419547.0005 +Q9VDQ3 Identity crisis 6.14 3 3 3 51107.39599999999 41234.369 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 27.9 11 25 11 546409.4717 679074.32856 +Q9VDT4 Uncharacterized protein, isoform A 7.73 1 1 1 6149.45 6936.5747 +Q9VDT5 Carboxypeptidase 18.05 8 20 8 1013781.3450999999 1070792.95113 +Q9VDU1 Acyl-CoA synthetase X3 2.04 1 1 1 6189.3257 6067.733 +Q9VDU7 nicotinamidase 21.57 7 17 7 211283.20888999998 236377.0782 +Q9VDV2 AT06125p 6.34 3 3 2 36333.893 43712.627 +Q9VDY8 MIP08680p 65.44 17 56 1 2101458.96629 2385647.21424 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 48.13 22 50 0 1570262.43885 1813807.00594 +Q9VE08 GH10002p 10.8 2 2 2 70178.58780000001 96579.7985 +Q9VE12 LD27322p 8.02 3 3 3 78881.01699999999 80956.356 +Q9VE24 N-sulfoglucosamine sulfohydrolase 7.44 5 6 5 58037.942 69817.314 +Q9VE31 GEO12059p1 9.91 1 1 1 2108.438 2385.9187 +Q9VE52 Cleavage stimulation factor 64 kD subunit 12.41 5 6 5 82864.08600000001 97174.777 +Q9VE56 FI17806p1 11.22 3 3 3 152673.128 202957.70599999998 +Q9VE57 GEO10850p1 5.52 1 2 1 31259.414000000004 30707.375 +Q9VE75 V-type proton ATPase subunit a 4.92 4 4 3 35855.49183 41393.56854 +Q9VE85 Nucleoporin 43kD 13.41 4 6 4 23539.37985 29128.8501 +Q9VE94 LD14127p 5.73 2 3 2 29405.487999999998 36290.637 +Q9VEA1 Eukaryotic translation initiation factor 4C 24.32 5 9 5 265754.9856 303762.2787 +Q9VEA7 FI01460p 8.99 1 3 1 160132.207 233492.44 +Q9VEB1 Malate dehydrogenase, mitochondrial 84.52 28 296 28 21355048.83181 24555968.0953 +Q9VEB7 AT04491p 2.05 1 1 1 18844.873 21503.52 +Q9VEC2 Proteasome assembly chaperone 2 21.86 5 7 5 77884.3397 94955.76759999999 +Q9VEC8 RE23139p1 26.92 4 5 4 130390.99137 157289.19819999998 +Q9VED8 Deoxyribonuclease II 8.2 3 4 3 36933.533500000005 47480.0906 +Q9VEF5 Inhibitor of growth protein 3.0 1 2 1 4110.8257 2541.162 +Q9VEG8 RE59232p 13.2 3 5 3 63654.0031 78020.7577 +Q9VEH2 Transmembrane protein 192 6.15 2 2 2 68503.71710000001 89310.8171 +Q9VEJ3 Pyrroline-5-carboxylate reductase 50.55 10 29 2 1515185.749 1928967.7644 +Q9VEJ9 Curly Su 4.52 3 3 3 27020.4012 27586.2294 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 15.17 4 4 1 37787.723 58385.6804 +Q9VEK8 GH07711p 35.28 12 21 12 746961.231 911127.0104 +Q9VEN3 non-specific serine/threonine protein kinase 19.63 11 18 11 176505.9432 199226.65568 +Q9VEN6 Mitochondrial ribosomal protein S11 4.5 1 1 1 13143.438 20197.742 +Q9VEN9 Protein associated with topo II related - 1, isoform A 4.75 4 4 4 31999.881999999998 43916.7487 +Q9VEP6 Adenylosuccinate lyase 20.79 10 22 10 618440.1423000001 762161.2853 +Q9VEP8 GH11385p 13.77 10 12 10 141578.6941 173600.22465 +Q9VEP9 Splicing factor 3A subunit 1 16.96 11 16 11 169713.519 187203.5278 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 7 1 77594.92480000001 91659.5234 +Q9VES8 RE28913p 26.26 8 9 8 323456.815 436670.831 +Q9VET3 peptidyl-tRNA hydrolase 5.88 1 1 1 269181.75 24313.922 +Q9VEV3 Tetratricopeptide repeat protein 1 52.85 13 19 13 362686.9993 345342.439 +Q9VEV6 Uncharacterized protein, isoform A 3.5 1 1 0 444.25418 0.0 +Q9VEV7 Protein farnesyltransferase subunit beta 6.68 3 3 3 28465.502800000002 47028.5424 +Q9VEW1 Jiangshi, isoform A 5.65 3 3 3 12602.5873 23251.855000000003 +Q9VEY0 Uncharacterized protein, isoform C 45.28 12 18 4 139047.15445 178027.58436 +Q9VEY4 Growth hormone-regulated TBC protein 1 5.15 2 3 2 13369.1555 21324.6589 +Q9VEY5 MICOS complex subunit 64.16 13 43 13 1870897.32523 1922864.29818 +Q9VF03 Brahma associated protein 155 kDa 7.03 9 10 0 127133.74100000001 130578.88 +Q9VF15 GEO09476p1 65.36 10 39 7 2257055.4196 2776945.10874 +Q9VF23 arginine kinase 3.28 2 2 2 36569.743 51690.433000000005 +Q9VF24 Crossveinless d 5.17 8 10 8 73398.7292 72781.1434 +Q9VF28 Actin-related protein 2/3 complex subunit 3 46.89 7 11 7 399590.681 407797.1139 +Q9VF39 FI01459p 15.0 6 10 6 96574.1088 119072.8077 +Q9VF51 Aldehyde oxidase 3, isoform A 4.94 7 13 5 222890.446 237067.2685 +Q9VF70 Cerebral cavernous malformation 3 13.94 4 5 4 102140.971 97725.5756 +Q9VF77 FI16517p1 13.42 5 6 5 99536.528 118238.026 +Q9VF82 Trafficking protein particle complex subunit 6B 13.16 2 3 2 91248.351 102498.125 +Q9VF85 serine--tRNA ligase 13.67 5 5 5 85370.0054 79285.45270000001 +Q9VF86 N-acetyl-D-glucosamine kinase 14.66 7 11 7 166048.4033 189226.1978 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 34.29 3 4 3 53010.6765 74324.942 +Q9VFC7 Mf5 protein 78.08 31 236 0 10163516.50883 11659575.47474 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 59.15 23 134 23 5135709.44822 5913847.24618 +Q9VFI3 GEO08281p1 45.19 3 10 3 116660.06 146165.0515 +Q9VFM0 GH19262p 7.14 4 5 4 16617.68425 19200.730799999998 +Q9VFN7 GEO07678p1 19.5 3 9 3 446934.8468 409372.503 +Q9VFN9 GEO07882p1 41.94 6 7 6 102051.8023 131682.31773 +Q9VFP0 RH07106p 23.51 8 9 8 118378.5145 118902.13947000001 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.2 13 32 13 774554.8989 1024427.9751800001 +Q9VFQ9 Dipeptidase B, isoform A 33.07 14 17 14 433969.81210000004 521893.7605 +Q9VFS1 Adenosine deaminase 4.98 3 3 3 28493.894 33158.3483 +Q9VFS4 Cilia- and flagella-associated protein 36 7.1 2 2 2 201870.4899 16880.956 +Q9VFT4 AT27578p 13.48 9 12 9 76544.50630000001 88404.0922 +Q9VFU7 Sidestep IV, isoform C 1.7 2 3 2 45791.1325 45057.621 +Q9VFV9 DnaJ-like-2, isoform A 43.18 19 40 19 1788166.2967 2055683.4293 +Q9VFZ4 Methanethiol oxidase 6.38 3 3 3 118311.533 134417.642 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 30.0 4 5 4 74034.842 69336.29740000001 +Q9VG01 RE12073p 1.88 1 1 1 7584.9365 9000.265 +Q9VG04 Protein MEMO1 5.42 2 2 2 83616.037 107779.818 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 2 2 4668.5007 6307.8616999999995 +Q9VG23 GH22994p 59.07 11 45 1 2369493.03083 2969271.66414 +Q9VG26 MIP06012p 30.05 7 25 7 1168513.31647 1381999.16326 +Q9VG31 Malic enzyme 16.91 13 17 0 1029356.499 1173826.181 +Q9VG33 Sulfurtransferase 67.27 7 15 7 782042.92296 894113.1317 +Q9VG42 Glycine N-methyltransferase 20.07 6 6 6 55035.2543 79329.4669 +Q9VG44 RE14195p 1.7 1 1 1 426.67566 544.84705 +Q9VG51 Sorting nexin-3 34.13 7 25 7 1002521.693 931860.4037 +Q9VG62 Toys are us 6.19 3 3 3 27355.529000000002 37547.4066 +Q9VG69 LP03547p 35.71 12 26 12 877136.2378 1206102.858 +Q9VG81 RH49330p 15.78 7 8 7 48727.5049 54600.5836 +Q9VG92 Glutathione S transferase D8 13.21 3 17 2 80775.9197 115165.27343 +Q9VGA0 Glutathione S transferase D9, isoform A 39.91 9 19 7 414093.09214 480353.0227 +Q9VGA1 Glutathione S transferase D10, isoform A 7.62 2 14 1 5158.1626 6696.0337 +Q9VGA3 LD12305p 33.64 7 18 6 379447.8576 405007.4028 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 2.41 1 1 1 2949.236 2993.399 +Q9VGE4 FI04457p 4.49 6 6 6 60737.4741 62116.9705 +Q9VGE7 Beta-galactosidase 9.11 4 4 4 24542.52317 28710.8538 +Q9VGF3 IP11040p 9.86 4 5 4 100541.724 123256.93400000001 +Q9VGF7 Mitochondrial glutamate carrier 2 34.27 11 32 9 895721.6274 1096404.2011 +Q9VGJ9 Heme oxygenase 16.22 5 5 5 368100.359 373825.24199999997 +Q9VGK3 peptidylprolyl isomerase 60.87 6 10 6 167045.5912 213180.82319999998 +Q9VGL0 LD43047p 2.84 3 3 3 11408.717499999999 15669.212800000001 +Q9VGM2 Fatty acid-binding protein, muscle 84.62 12 193 0 18734859.7186 21162190.393459998 +Q9VGP7 Large ribosomal subunit protein mL40 15.31 3 4 3 52656.62537 87622.86066 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 42.52 16 67 16 3080298.9191 3321653.6534 +Q9VGQ8 Arfaptin 11.55 4 5 4 68778.1758 90254.1235 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 5.04 4 4 4 42246.5554 34314.7264 +Q9VGS3 RH44771p 14.04 4 12 4 403231.138 466245.8045 +Q9VGT0 UDP-glucuronosyltransferase 1.36 1 1 1 3348.534 4746.9087 +Q9VGT3 GM04645p 1.89 1 1 1 3891.8972 4716.0186 +Q9VGT8 UDP-glucuronosyltransferase 10.83 5 5 5 85514.5613 94221.77399999999 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 5.03 2 2 2 38808.95 38658.503 +Q9VGV9 palmitoyl-protein hydrolase 7.66 2 2 2 34293.618 45027.936 +Q9VGW7 type I protein arginine methyltransferase 18.09 5 5 5 53916.497599999995 61935.948300000004 +Q9VGY2 Peptide deformylase 14.71 4 4 3 40433.186 46339.658299999996 +Q9VGZ3 Cytoplasmic aconitate hydratase 9.79 9 11 6 179445.619 215245.8641 +Q9VH25 Gamma-soluble NSF attachment protein 26.5 8 14 5 104613.956 131039.49102999999 +Q9VH26 Carbonic anhydrase 17.43 6 11 6 237025.77567 263786.038 +Q9VH37 IP06524p 14.29 3 4 3 86258.06599999999 103265.848 +Q9VH64 LD29322p 26.91 9 14 9 532510.7844 684677.1306 +Q9VH66 FI18258p1 27.9 6 12 6 160346.6526 191125.45275 +Q9VH72 TA01656p1 37.25 6 14 6 263595.74433 328308.1406 +Q9VH76 Synaptosomal-associated protein 53.3 11 43 9 494413.9367 619392.5181 +Q9VH77 mannose-6-phosphate isomerase 6.31 3 5 3 31397.3321 32734.4111 +Q9VH81 protein-serine/threonine phosphatase 9.42 5 5 5 9071.44764 12796.6702 +Q9VH98 Diuretic hormone 44, isoform A 22.19 6 10 6 236554.67570000002 257066.6426 +Q9VHA1 Spermidine synthase, isoform A 15.33 4 6 1 193977.22449999998 236099.606 +Q9VHA8 LD25575p 13.05 7 10 7 356866.4874 443410.8146 +Q9VHB1 Mitochondrial pyruvate carrier 55.19 7 19 2 609475.7417 609986.8359000001 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 5.47 3 5 3 38659.3637 43033.2554 +Q9VHC3 Blistery, isoform A 16.39 11 15 11 90700.1854 109691.94588 +Q9VHC7 FI21236p1 32.28 15 32 8 768596.33983 881691.67278 +Q9VHE3 GH05665p 6.25 2 2 2 17803.023 19431.432 +Q9VHE4 omega-amidase 20.85 7 15 7 254981.4972 302035.5775 +Q9VHE5 Large ribosomal subunit protein eL34 32.14 7 10 2 387627.1669 412880.8609 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 5 2 55649.248999999996 64733.2081 +Q9VHG6 Insulator binding factor 2 16.92 4 5 4 38954.7222 52698.968329999996 +Q9VHH8 Beag 6.46 4 4 4 37287.2125 45809.44 +Q9VHI1 Hyrax 6.32 3 3 3 13182.643100000001 16637.427 +Q9VHI8 Uncharacterized protein, isoform A 31.01 12 19 2 466656.827 595506.16986 +Q9VHJ2 LD32381p 2.65 1 2 1 16539.0467 22436.71 +Q9VHJ5 Carbonic anhydrase 4.31 1 1 1 11044.449 14602.925 +Q9VHJ7 LD41978p 3.96 3 4 3 26819.11634 33070.1601 +Q9VHL2 T-complex protein 1 subunit eta 43.01 21 50 21 1486599.6975 1698370.5221 +Q9VHM3 LD30467p 9.09 4 4 4 24082.48247 23277.1555 +Q9VHN4 GH14121p 10.92 3 3 3 22268.1663 26429.174 +Q9VHN7 transketolase 35.46 19 30 1 1231841.4002 1478563.7438 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 3 2 2165.7874 2573.8516 +Q9VHR5 Veneno 3.27 2 2 2 1933.303 2695.2708 +Q9VHT3 CG9617 protein 23.6 5 7 5 103548.84449999999 115414.42319999999 +Q9VHT5 Large ribosomal subunit protein uL1m 13.56 5 6 5 48711.17695 57793.6291 +Q9VHX2 GH08043p 7.23 4 5 4 36907.8413 48435.1644 +Q9VHX4 LD24679p 68.09 21 107 21 8626949.18252 10156164.64835 +Q9VI04 Beta-ureidopropionase 9.84 3 5 3 79494.739 104280.3487 +Q9VI09 GH14494p 52.48 7 35 7 1020545.46 1263344.5501 +Q9VI21 Dementin, isoform D 3.92 3 3 0 37925.1595 29907.5025 +Q9VI24 LD25151p 3.61 1 1 1 6676.689 6654.8574 +Q9VI53 LD44267p 9.24 4 6 4 137424.944 151105.423 +Q9VI57 Dephospho-CoA kinase domain-containing protein 3.81 1 1 1 9770.557 12047.937 +Q9VI64 LD30995p 48.16 14 49 14 1289552.1338 1596096.0134 +Q9VI66 GH28833p 7.57 2 3 2 59572.5766 82460.474 +Q9VIB5 Carboxylic ester hydrolase 3.5 2 2 2 25959.785000000003 34825.2 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 2.93 2 2 2 29321.7155 36297.502199999995 +Q9VIE8 Aconitate hydratase, mitochondrial 65.82 43 300 37 9965466.22771 11994698.38924 +Q9VIF2 GM01519p 9.72 5 6 5 177616.289 209912.78 +Q9VIG0 Malectin domain-containing protein 14.12 5 9 5 144055.0782 163493.0084 +Q9VIH1 CG9273 protein 16.26 4 5 4 49574.7352 55907.9004 +Q9VII5 GEO08323p1 20.75 4 7 4 109228.283 128914.37696 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 6.44 2 2 0 74760.786 84564.811 +Q9VIJ3 FI14214p 17.78 3 4 1 14619.0394 14417.224 +Q9VIJ5 GEO05038p1 9.7 1 1 1 4558.28 4337.1562 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 7.77 3 4 3 8860.7152 8937.4573 +Q9VIK6 Centrocortin, isoform A 11.77 10 11 10 96246.1972 110817.2136 +Q9VIL2 LD19544p 14.9 4 8 4 138044.9053 141801.6333 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 11.58 6 9 6 159405.9699 173104.58364 +Q9VIN9 Small ribosomal subunit protein mS40 11.27 2 3 2 86626.897 108315.508 +Q9VIQ5 RH02620p 40.64 8 10 8 141511.2425 155317.5792 +Q9VIQ6 FI17342p1 4.82 1 2 1 9443.9774 11836.443299999999 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 12 56 12 2005575.9507 2299480.13776 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 6.79 4 4 4 12397.452299999999 16342.1718 +Q9VIU3 FI23988p1 4.24 2 2 2 1001.07764 1790.9822 +Q9VIV6 GH04973p 11.11 4 6 4 75807.67917 102930.16010000001 +Q9VIW6 small monomeric GTPase 8.59 2 2 2 23253.5946 24046.002 +Q9VIW9 alkaline phosphatase 4.7 2 2 2 939.7858 649.54974 +Q9VIX1 Galactose-specific C-type lectin, isoform A 24.19 3 7 3 121279.67367 143135.28814 +Q9VIX7 Fondue, isoform B 11.79 5 13 1 157691.52195 196204.2458 +Q9VJ19 Large ribosomal subunit protein eL30 59.46 5 24 5 631017.2184 721915.5817 +Q9VJ22 GH09876p 8.0 2 2 2 6993.135 9122.157 +Q9VJ25 Membrane magnesium transporter 16.51 2 4 2 174673.933 165671.242 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 15.82 7 11 7 229397.2939 251218.9417 +Q9VJ30 non-specific serine/threonine protein kinase 4.1 5 8 0 78543.3732 85029.3554 +Q9VJ43 Sterol carrier protein 2 37.5 16 45 7 738925.7417 998738.0014 +Q9VJ58 Fas-associated factor 2, isoform A 16.81 8 9 8 138726.962 173329.148 +Q9VJ59 PRA1 family protein 8.7 2 3 2 87030.04699999999 112241.35399999999 +Q9VJ60 GM16226p 10.28 3 5 3 113160.9913 152409.2856 +Q9VJ61 SD03870p 1.64 1 1 1 11653.752 14080.371 +Q9VJ68 Hydroxylysine kinase 17.03 7 10 7 152168.59274 164243.6879 +Q9VJ80 LD42267p 7.96 10 11 10 80296.44464 65980.5425 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 8.36 11 14 10 70826.7304 98173.66047 +Q9VJA9 GH07373p 4.86 3 3 0 17135.8594 26114.985 +Q9VJC0 GEO08203p1 37.96 5 6 5 111300.18 136695.433 +Q9VJD0 Mitochondrial inner membrane protease ATP23 18.37 5 6 5 77150.882 71709.382 +Q9VJD1 Glucosidase 2 subunit beta 21.53 12 24 12 303724.6509 329317.2975 +Q9VJD4 LD24721p 32.33 11 29 11 1604220.8379000002 1853868.9740000002 +Q9VJE3 LD24839p 7.67 4 5 4 34177.090299999996 32098.28144 +Q9VJH8 FI03416p 2.58 2 2 2 43623.481 52855.403 +Q9VJI5 Protein yellow 9.71 5 6 5 115209.9417 145492.2725 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 64.55 6 8 6 115591.29978 124431.97122 +Q9VJJ0 Proteasome subunit beta 37.81 6 14 6 790019.653 1093808.194 +Q9VJJ1 COX assembly mitochondrial protein 14.41 2 2 2 21919.465799999998 23434.059 +Q9VJN0 Carboxypeptidase 7.49 4 5 4 158507.65350000001 203242.72100000002 +Q9VJQ3 Protein yellow 25.11 11 28 10 811749.6616 1049570.5469 +Q9VJQ6 Dynactin subunit 5 15.87 3 3 3 9966.98342 12215.999220000002 +Q9VJU6 IP09831p 3.17 1 1 1 10527.828 11954.703 +Q9VJU8 GH23407p 10.27 5 6 5 60491.04497000001 73215.68406999999 +Q9VJZ1 FI21342p1 5.49 3 4 3 29196.30975 37555.345 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 64.58 12 41 12 3585038.92456 4124368.62676 +Q9VJZ5 LD07294p 26.58 8 10 8 153812.2275 217970.2538 +Q9VJZ6 LD40224p 67.13 11 30 11 627161.43666 816833.0791000001 +Q9VK00 Uncharacterized protein, isoform A 18.77 6 13 6 382825.91240000003 447082.1426 +Q9VK11 GH15921p 27.51 7 18 7 399610.66388 569373.10065 +Q9VK12 GH20621p 62.0 17 84 17 5093946.4474 5663825.9933 +Q9VK18 LD36945p 6.59 3 3 3 16147.203300000001 15805.896499999999 +Q9VK19 FI07225p 9.35 2 2 2 15516.6465 15349.380700000002 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 32.06 14 22 1 0.0 350.77798 +Q9VK39 FI09204p 34.91 4 17 4 380582.8856 452111.6588 +Q9VK58 PIH1 domain containing 1, isoform D 7.86 5 6 5 12640.514659999999 8713.7436 +Q9VK59 LD23647p 28.63 23 34 23 338595.6436 446702.7424 +Q9VK60 GH25425p 58.37 13 49 13 2640077.5044899997 2844252.1019 +Q9VK69 T-complex protein 1 subunit delta 39.96 20 43 19 629249.6142 616489.9591 +Q9VK85 Eukaryotic translation release factor 3, isoform A 11.95 7 8 0 179570.1758 183123.8661 +Q9VK90 Heat shock factor-binding protein 1 65.12 4 10 0 283861.3065 351841.5286 +Q9VK99 Atilla, isoform B 51.75 7 32 7 765081.8546 708075.16262 +Q9VKA1 FI02817p 15.58 3 3 3 104777.8314 140097.5153 +Q9VKC7 Endoplasmic reticulum lectin 1 5.52 3 3 3 19586.4415 19461.316 +Q9VKC8 FI03495p 9.17 5 5 5 157494.6458 162337.713 +Q9VKD9 MIP16835p1 1.35 1 1 1 2083.9944 2717.9338 +Q9VKE2 Crystallin, isoform A 62.89 33 403 33 15118350.62366 18351443.13194 +Q9VKF0 Cyclin Y, isoform A 15.52 6 7 6 107092.357 78909.01574 +Q9VKG4 BcDNA.GH07269 4.55 2 2 2 85651.3399 98086.7518 +Q9VKI2 Buddy of Hmr 2, isoform A 3.97 1 1 1 6818.472 11210.677 +Q9VKI8 GH03305p 67.77 20 107 20 6699368.95255 7548707.8958 +Q9VKJ4 Csl4 14.22 3 4 3 81029.234 81947.70999999999 +Q9VKM3 ATP synthase subunit g 52.53 7 78 7 3658838.29586 4388979.5109399995 +Q9VKM7 AT01533p 8.57 5 12 1 468529.901 626128.6193 +Q9VKQ2 Uncharacterized protein, isoform A 21.43 2 7 2 9070.261 10666.9658 +Q9VKQ5 GEO07393p1 6.45 1 1 1 27799.127 34900.79 +Q9VKR0 ER membrane protein complex subunit 3 21.46 4 5 4 25533.8922 35423.496900000006 +Q9VKR4 Aminomethyltransferase 19.01 8 13 8 727947.7502 944497.2143 +Q9VKU3 Large ribosomal subunit protein mL62 10.84 2 2 2 22251.479 23775.711000000003 +Q9VKU5 LD37206p 10.09 2 2 2 16638.2834 13696.4998 +Q9VKV1 Alpha-mannosidase 22.31 22 44 2 1255678.72776 1378132.7858 +Q9VKV2 Alpha-mannosidase 2.84 3 3 3 25070.232300000003 30242.1133 +Q9VKV9 Methionine aminopeptidase 14.51 3 4 3 50477.7286 63637.919299999994 +Q9VKW1 LD41958p 2.21 1 1 1 13285.897 13942.269 +Q9VKW5 Prolyl endopeptidase 10.85 9 11 9 268413.71 329699.69550000003 +Q9VKX2 Malate dehydrogenase 56.38 18 145 18 7496242.75431 9738291.625740001 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 13.44 5 7 5 319928.6672 368887.1342 +Q9VKZ6 Uncharacterized protein, isoform A 8.16 5 6 0 40340.1027 35720.408 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 24 14 324830.77054 352950.2651 +Q9VL01 Phenoloxidase-activating factor 2 46.31 17 48 17 1477473.59195 1670299.9937800001 +Q9VL02 GH08677p 10.57 4 4 1 27664.0951 36168.10145 +Q9VL10 Acylglycerol kinase, mitochondrial 20.1 8 11 8 90456.254 103957.9756 +Q9VL16 RE45833p 30.77 8 26 8 1459596.93 1590478.4579999999 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.54 1 1 0 4112.7744 4848.141 +Q9VL27 Alpha-galactosidase 7.99 3 3 3 22686.725 27576.694 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 3624.9343 2850.2551 +Q9VL57 RE10231p 4.75 3 3 2 38156.698000000004 50022.301999999996 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 3 2 87336.01000000001 104733.705 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 7 4 137518.7961 192017.2417 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 26.69 9 33 9 2159728.3305800003 2609254.49953 +Q9VL70 HL08109p 83.17 25 129 25 9305292.27843 10689640.18754 +Q9VL89 Methionine aminopeptidase 2 15.4 7 8 7 122373.829 161645.66606 +Q9VL91 LD23102p 1.8 1 1 1 5953.146 5644.6294 +Q9VL93 GEO07195p1 13.64 2 2 2 35123.918999999994 32297.085 +Q9VLB1 Cuticular protein 30B 21.57 4 8 4 72317.788 93028.0747 +Q9VLB7 Rab GDP dissociation inhibitor 53.95 21 60 21 1515540.9321 1971180.76094 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 62.88 23 75 23 2635274.2593 3239184.10363 +Q9VLG9 Argininosuccinate lyase, isoform B 7.04 3 5 3 133630.801 105239.3889 +Q9VLI9 Trafficking protein particle complex subunit 6.85 2 2 2 12004.618 15551.344 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 36.86 10 23 10 693665.4917 793168.9355 +Q9VLP0 IP04187p 11.23 2 5 2 102653.6765 130659.6589 +Q9VLP1 GEO08095p1 37.84 6 14 6 411801.6977 425650.2166 +Q9VLP2 GEO08076p1 38.1 6 40 6 987049.7905 1100561.9267 +Q9VLQ6 Uncharacterized protein, isoform A 33.14 4 5 4 219127.512 260441.6244 +Q9VLQ9 Sorting nexin 29.4 14 23 1 831518.8172 970657.9688 +Q9VLR3 Cytidine deaminase 22.15 3 4 3 146334.356 221234.545 +Q9VLS0 Chitinase domain-containing protein 1 2.24 1 1 1 1804.413 933.3524 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 92.22 9 33 9 774852.5172 951238.2079 +Q9VLS5 LD29542p 10.69 5 6 5 52504.501000000004 49810.8543 +Q9VLS7 LD21067p 1.88 4 4 0 46079.142 56863.268 +Q9VLT3 LD23292p 16.59 28 41 28 483618.04628 511404.26543 +Q9VLT7 IP17351p 26.92 4 7 4 482374.60712 473844.972 +Q9VLU3 IP09231p 5.4 1 1 0 5837.904 5784.2983 +Q9VLV9 Proctolin 20.71 2 4 2 68492.66010000001 60447.633160000005 +Q9VLW8 LD06392p 13.18 3 3 3 8981.5852 8098.6516 +Q9VLX6 HL01609p 6.32 2 2 0 55224.44 79016.449 +Q9VLY1 HL02931p 19.01 1 7 1 184201.227 196385.1442 +Q9VLY7 TEP1-F 3.68 6 7 6 46285.2182 47385.0617 +Q9VLY9 CD109 antigen 29.45 37 61 0 1142023.9458 1365371.45348 +Q9VM07 RE43931p 27.85 5 11 4 49236.73783 76705.73324 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 15.28 7 9 7 137297.8896 151447.0235 +Q9VM11 HL01515p 31.19 9 12 9 235865.5145 320310.7795 +Q9VM12 MIP26555p1 29.25 10 25 10 605151.6879 786476.2416000001 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 50.0 30 175 0 9694869.97791 10433013.3631 +Q9VM18 Trehalose 6-phosphate phosphatase 63.04 16 82 16 7202153.08775 8236484.32067 +Q9VM22 MTOR-associated protein MEAK7 2.23 1 1 1 11890.14 14026.9 +Q9VM47 Menin 3.15 2 3 0 5060.114 6056.58415 +Q9VM50 Ras-related protein Rab-30 12.56 3 6 2 18057.5919 15913.6275 +Q9VM58 hydroxymethylglutaryl-CoA lyase 14.86 4 5 4 55836.3467 59433.291900000004 +Q9VM69 Nucleolar protein 58 16.24 7 9 7 182234.9975 228190.1256 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.69 6 12 6 675754.0811000001 758594.6935 +Q9VMB4 Venom dipeptidyl peptidase 4 5.24 5 5 0 71221.205 85312.8264 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 59.17 6 66 6 4917217.7945 5715963.51908 +Q9VMC3 LD35051p 3.29 1 1 1 8128.7637 8668.899 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 2 1 13797.129 18532.9906 +Q9VMC7 LP11564p 9.94 6 6 3 23712.3864 25762.9303 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 28.79 10 14 10 296546.6023 352602.4734 +Q9VME1 FI01864p 17.96 7 8 7 83632.70095 110018.1627 +Q9VME3 Neprilysin-like 5 4.09 3 3 3 26064.2621 25688.706700000002 +Q9VMF0 FI04444p 4.48 2 2 2 18375.627999999997 23054.5077 +Q9VMF1 Uncharacterized protein, isoform A 7.19 3 5 3 8719.8244 11437.3359 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 30.36 6 11 6 139765.7285 170351.7057 +Q9VMH8 GEO07746p1 37.3 6 12 6 531118.431 639989.72 +Q9VMH9 Uncharacterized protein 55.78 11 30 11 646251.35003 754755.401 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 34.18 14 37 11 622732.98086 696980.62935 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.13 12 36 12 3833402.0763399997 4154320.256 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 19.07 4 5 4 89797.71990000001 90528.059 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 19.73 13 24 13 241689.8584 297071.22086 +Q9VMR9 acylphosphatase 6.93 1 1 1 36336.926 23880.982 +Q9VMS1 Cyclope, isoform A 50.65 5 44 5 8095584.7752 8335463.10033 +Q9VMT2 GEO07854p1 52.35 7 122 0 6140894.39059 7864831.6858 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 40 9 3050975.8317 3655696.7823 +Q9VMU2 4'-phosphopantetheine phosphatase 16.9 7 9 7 76580.4602 81066.7634 +Q9VMV5 Viking, isoform A 8.2 13 20 13 278455.4386 308081.5847 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 5.71 2 2 2 10897.4328 12638.401399999999 +Q9VMX4 AT19154p 19.52 6 13 6 187196.85600000003 185102.1228 +Q9VN01 GH23891p 16.39 8 12 8 66854.31844 81607.6373 +Q9VN02 GH14561p 32.74 7 14 7 277999.4054 336137.1652 +Q9VN21 LD30155p 55.05 28 100 28 2408789.647 2716880.00809 +Q9VN39 RE74585p 17.58 6 8 2 33210.2546 31527.8137 +Q9VN44 FI07923p 18.91 20 39 20 771196.3128 818910.03272 +Q9VN71 Juvenile hormone binding protein 3, isoform A 46.34 8 14 8 208185.4206 227027.18075 +Q9VN73 Juvenile hormone binding protein 1 28.86 7 15 7 345680.31585 389651.3639 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 4.66 2 3 2 9662.406200000001 13097.0259 +Q9VN86 AT14148p 6.51 3 3 3 78744.61304 93706.8761 +Q9VN88 LD45836p 14.49 4 6 4 99809.8414 119615.62299999999 +Q9VNA3 GH21273p 40.28 8 15 8 611795.3653 681725.2141 +Q9VNB9 Large ribosomal subunit protein eL33 32.48 6 9 6 272744.3716 287907.95146 +Q9VNC1 Large ribosomal subunit protein mL44 5.3 2 3 2 41165.2045 40119.117 +Q9VND7 RNA-binding protein 42 7.95 2 2 2 11958.008399999999 13691.450799999999 +Q9VNF3 RE01652p 39.3 9 23 7 442761.25820000004 530000.6126 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.04 7 7 7 87365.7106 73222.935 +Q9VNF9 Ethanol sensitive with low memory, isoform A 9.52 2 2 2 42600.35019999999 20947.9902 +Q9VNH5 m7GpppX diphosphatase 27.54 10 12 10 110661.36375 125830.2396 +Q9VNH7 Uncharacterized protein, isoform A 56.16 18 86 0 98859.463 126278.4957 +Q9VNI4 Proteasome assembly chaperone 1 24.68 5 8 5 74835.5271 97880.59079999999 +Q9VNI8 Hpr1 10.7 8 9 8 45499.9529 56602.450500000006 +Q9VNI9 IP18173p 17.18 3 6 3 32834.5708 43803.882 +Q9VNL0 Gasp, isoform A 49.22 10 77 1 2191430.72047 2554908.44696 +Q9VNQ3 ER membrane protein complex subunit 4 37.95 5 7 5 78858.63287 104687.23449999999 +Q9VNR6 Lethal (3) 04053 13.68 6 6 6 20416.46483 23634.8191 +Q9VNV2 GEO05133p1 8.86 1 2 1 4977.7227 4805.5121 +Q9VNW0 GEO11142p1 21.88 3 3 3 51635.5189 51694.001099999994 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 30.15 22 68 22 3250739.7019 3801565.2675 +Q9VNX4 Multifunctional fusion protein 54.01 30 84 30 4080939.02076 4611209.43871 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 12.5 2 2 2 18076.296000000002 24570.123 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 40.94 5 8 5 50988.23223 56225.73094 +Q9VP02 Aldose 1-epimerase 2.16 1 1 1 32236.465 40885.582 +Q9VP13 Large ribosomal subunit protein mL64 14.22 2 2 2 4600.3833 3347.7305 +Q9VP18 V-type proton ATPase subunit 15.73 2 3 2 125805.70999999999 168209.776 +Q9VP53 Cuticular protein 78Cc 10.08 1 16 1 411132.2045 553199.9456 +Q9VP55 Cuticular protein 78Cb, isoform A 22.14 3 5 3 189125.60030000002 225153.071 +Q9VP57 LD15904p 23.19 18 33 18 1144336.51936 1230156.41002 +Q9VP77 LD23875p 10.99 7 7 7 111194.0414 126746.1066 +Q9VP78 GH23156p 8.76 4 4 4 37123.2504 40179.138 +Q9VP84 IP06402p 4.76 1 2 1 52794.319 76521.45300000001 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 2.23 1 1 1 2099.8977 3584.2178 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 27.65 12 23 0 20923.89015 17660.3474 +Q9VPB8 Peroxisomal membrane protein PEX14 17.14 4 4 4 148971.464 189668.0921 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 4 2 58096.2327 71780.103 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 57.69 19 44 19 1088648.99206 1291151.16665 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 14.74 5 8 2 76882.9473 86487.9136 +Q9VPF6 Large ribosomal subunit protein uL15m 9.79 3 3 3 21861.950900000003 25869.887 +Q9VPH6 LP10922p 9.61 5 8 1 217331.9125 242589.7289 +Q9VPJ0 RE58433p 8.29 3 6 0 36128.73183 44818.3815 +Q9VPK3 AT24407p 19.37 8 11 1 135087.988 134137.8012 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 17.87 6 7 6 23748.902199999997 29557.2018 +Q9VPN5 Stress-induced-phosphoprotein 1 49.39 25 70 25 2177772.85678 2422538.78395 +Q9VPR1 GH02075p 11.35 2 2 2 32119.219 13516.21 +Q9VPT9 Integral membrane protein 2 18.18 6 8 0 260989.2229 316029.8764 +Q9VPU4 FI17537p1 8.88 3 3 3 24175.8128 26395.429 +Q9VPU6 Galectin 7.28 3 3 3 18528.0478 20008.0635 +Q9VPX0 GH26159p 4.9 3 3 3 45140.418 42183.974 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 310570.502 334656.3209 +Q9VPX6 Adenylyl cyclase-associated protein 29.5 19 52 2 5644036.1757000005 1935465.9774 +Q9VPZ5 GH04232p 26.62 14 24 14 334612.24457 406027.1675 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 11.05 2 3 2 543.94617 1714.566 +Q9VQ61 Aspartate aminotransferase 59.2 24 129 2 5817305.23004 7112057.1916499995 +Q9VQ83 RE23541p 7.28 2 2 0 18811.0384 20667.693 +Q9VQ88 Uncharacterized protein 25.97 2 4 2 106025.339 108853.194 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 51.94 18 54 18 3122242.3577 3417834.7373 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 36.62 5 31 5 2098158.2237 2209291.3721 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 31.79 5 10 5 174319.6406 178015.62480000002 +Q9VQE0 dynamin GTPase 17.01 12 12 12 200246.56567 202180.54194999998 +Q9VQI5 Interferon-related developmental regulator 1 1.88 1 1 1 1423.8352 2741.1855 +Q9VQI6 LD25952p 12.35 4 6 4 104465.985 120033.69 +Q9VQI7 1-Cys peroxiredoxin 44.59 12 18 12 434643.6997 512021.42328 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 23.29 4 4 4 42232.68429999999 57260.4005 +Q9VQK8 Histidine protein methyltransferase 1 homolog 2.61 1 1 1 5783.673 6009.8423 +Q9VQL1 serine--tRNA ligase 46.71 18 39 18 844902.2529 1002418.929 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 55.17 5 23 5 863342.18691 1088652.0091 +Q9VQQ6 FI18122p1 15.72 8 13 0 460634.0675 544974.888 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 66.04 12 44 12 1904598.819 2188527.5668 +Q9VQR5 IP10807p 2.5 1 1 1 10355.094 15852.311 +Q9VQR9 PAT complex subunit CCDC47 7.77 5 5 5 100984.3185 95853.3466 +Q9VQT7 RH15675p 14.63 1 2 1 4713.08103 6028.52094 +Q9VQT8 Immune induced molecule 33, isoform A 26.83 2 11 2 193648.8089 303301.67470000003 +Q9VQV7 Centrosomal protein of 97 kDa 7.94 6 6 2 48866.951199999996 39942.8324 +Q9VQX3 HL05328p 13.09 6 7 6 98388.7751 116449.868 +Q9VR25 Factor of interpulse interval 16.44 7 9 7 121257.6489 152905.48750000002 +Q9VR30 RE58324p 19.51 8 10 8 151918.3792 150175.2113 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 23.26 7 10 7 141597.37114 169518.82400000002 +Q9VR69 Chitin deacetylase-like 4 2.47 1 1 1 3231.7446 7119.5107 +Q9VR79 LD43683p 30.8 8 30 8 878097.32494 953108.76439 +Q9VRA1 Uncharacterized protein, isoform B 3.12 2 2 2 13823.573100000001 14248.2 +Q9VRD4 Uncharacterized protein, isoform A 60.76 13 31 13 649947.23046 752331.68386 +Q9VRD6 NTF2-related export protein 60.0 6 15 0 522906.09770000004 575946.931 +Q9VRD9 Cystathionine beta-synthase 13.6 6 10 6 62099.496 83451.0019 +Q9VRF7 GH09530p 13.92 4 7 0 157744.74795000002 200237.03657 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 5 3 70108.16339999999 81060.1136 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 16.08 10 13 10 48572.51476 61846.687900000004 +Q9VRJ4 Dehydrogenase/reductase 4 40.38 14 42 14 1157964.4904 1408530.1657 +Q9VRJ5 Charged multivesicular body protein 2b 16.98 4 6 4 281950.677 311312.716 +Q9VRJ6 non-specific serine/threonine protein kinase 28.12 6 6 6 120091.0106 168847.5837 +Q9VRK9 Kinesin-like protein 3.55 2 2 2 5343.9457600000005 3899.8051400000004 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 58.96 15 87 15 10546419.572209999 10946240.0261 +Q9VRL1 GEO06356p1 53.1 8 28 2 827790.3578 1084289.0587 +Q9VRM1 Uncharacterized protein, isoform A 9.09 2 2 2 6806.4509 4090.3187 +Q9VRM8 alkaline phosphatase 2.67 1 1 1 1565.8889 877.10846 +Q9VRM9 alkaline phosphatase 5.22 3 3 3 36605.5844 28740.278299999998 +Q9VRP2 Uncharacterized protein, isoform A 41.43 16 33 16 1317753.9938 1315061.05947 +Q9VRP3 AT08565p 23.69 6 12 6 134242.353 159505.84252 +Q9VRP4 Bifunctional coenzyme A synthase 6.37 3 3 3 7750.2598 9152.9379 +Q9VRR3 Uncharacterized protein, isoform A 50.62 11 28 11 1107690.9191 1545352.4833 +Q9VRU1 Aldose 1-epimerase 12.91 5 8 5 138444.8114 135948.9039 +Q9VRV8 Transportin-1 3.02 2 2 2 14831.1787 14966.6496 +Q9VRY5 Ribosome maturation protein SBDS 16.67 5 5 5 98521.0697 113244.3426 +Q9VS02 Serine protease K12H4.7 10.04 5 8 5 438297.346 530990.456 +Q9VS11 lysozyme 12.55 3 4 2 54763.7606 55075.045 +Q9VS44 Uncharacterized protein 12.36 4 4 4 46209.409499999994 51585.31999999999 +Q9VS84 FI03225p 7.34 7 8 7 112586.768 124356.4312 +Q9VSA9 CG7409 80.52 14 73 14 3148546.93445 4244584.62294 +Q9VSC3 Ribonuclease X25 17.85 6 9 6 209897.2647 234836.353 +Q9VSC5 GM09977p 55.29 11 26 11 643238.2654 786092.5129 +Q9VSD6 D-Importin 7/RanBP7 6.1 6 8 6 98461.0201 112284.6281 +Q9VSE5 Uncharacterized protein, isoform C 13.25 2 9 0 138289.4759 140501.20426 +Q9VSH5 IP09562p 4.89 1 2 1 17229.5293 14181.8222 +Q9VSH7 Cuticular protein 66Cb 20.37 3 8 2 61461.922 109606.67199999999 +Q9VSK2 E3 ubiquitin-protein ligase CBL 1.82 2 2 0 4659.085 6815.0894 +Q9VSK4 Adipose-secreted signaling protein 65.0 10 26 10 1000669.2114 1258779.79293 +Q9VSL2 Glutathione S transferase O3 52.28 11 35 10 1692303.15993 1750266.1774 +Q9VSL4 Glutathione S transferase O2, isoform B 40.0 12 37 11 1946622.2764 2413740.336 +Q9VSL5 Glutathione S transferase O2, isoform A 25.1 6 9 6 263720.4987 422374.6095 +Q9VSL6 Glutathione S transferase O1 12.99 4 10 3 53574.6961 59099.6817 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 6.67 3 3 3 31693.8204 36309.7493 +Q9VSM8 TBC1 domain family member 13 7.94 3 3 2 3486.18503 5963.970299999999 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 70.3 12 64 1 601196.1636 642630.3024 +Q9VSN3 Cuticular protein 66D 59.26 14 56 14 1014477.40809 1171763.52316 +Q9VSN9 Signal recognition particle receptor subunit beta 23.36 6 7 6 130500.04740000001 154873.8254 +Q9VSR5 GM03767p 48.9 9 20 9 916954.42394 1172934.8101299999 +Q9VSR8 Amine oxidase domain-containing protein 11.55 6 6 6 83247.4587 86669.7234 +Q9VST4 arginine kinase 2.06 1 1 1 5067.8003 6107.779 +Q9VSU6 Dihydropteridine reductase 71.06 13 49 13 2855654.8002 3777296.6022 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 30.21 14 21 0 917663.6636 1195589.1631 +Q9VSW4 Ribosome-recycling factor, mitochondrial 6.3 2 3 2 56425.986 70888.393 +Q9VSX2 IP01061p 30.5 6 12 6 139653.03975999999 160279.2902 +Q9VSY0 Cuticular protein 67B 73.46 13 74 13 4126224.6223 4866659.50117 +Q9VSY8 Trafficking protein particle complex subunit 19.66 4 9 4 192123.268 234995.721 +Q9VT23 Peptidase S1 domain-containing protein 35.14 8 21 8 239265.16700000002 279830.9034 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 7.0 2 2 2 14942.722399999999 19737.7321 +Q9VT33 ribose-phosphate diphosphokinase 38.66 15 24 0 552435.2495 702383.6989 +Q9VT59 Ankyrin repeat domain-containing protein 54 2.51 1 1 1 7812.923 9535.334 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 13.85 2 2 0 24038.701 24453.326 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 27.04 5 6 5 68973.1194 66058.0409 +Q9VTA8 RE35371p 9.7 1 1 1 501.28046 688.8646 +Q9VTB0 LD35289p 18.18 7 9 7 142260.7895 147039.3024 +Q9VTB3 Guanylate kinase 35.62 10 23 10 412104.20946 486672.29209999996 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 52.42 6 18 6 1664713.172 1922030.2951 +Q9VTC1 ATP-dependent RNA helicase DDX42 7.46 6 6 5 69983.06286 84718.84180000001 +Q9VTC3 GH07049p 7.78 3 3 3 212187.10599999997 231221.736 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 1 1 10405.855 10337.408 +Q9VTL0 FI19917p1 2.48 1 2 1 4801.85175 8634.859 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 5.04 1 1 1 1653.8461 2603.6973 +Q9VTP1 IP06473p 8.24 2 2 2 10774.2431 13301.569 +Q9VTT2 LD20590p 3.84 2 2 2 24073.114 31111.638 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 36 8 2622940.9999 3155798.2989 +Q9VTU8 carbonic anhydrase 21.79 7 13 3 360199.0205 475026.9225 +Q9VTV9 Delta-aminolevulinic acid dehydratase 15.6 5 8 5 76245.8141 104753.3892 +Q9VTW1 RE15265p 11.2 5 7 0 177900.677 209790.541 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 4.7 2 4 0 60611.797000000006 78362.197 +Q9VTY2 Uncharacterized protein, isoform A 52.68 16 49 15 1469022.02197 1849533.28605 +Q9VTZ4 Phosphoacetylglucosamine mutase 23.86 12 15 12 151044.32742 173774.52076 +Q9VU04 RE60105p 6.49 2 2 2 92109.281 94443.72099999999 +Q9VU13 LD45603p 8.3 4 6 0 322569.3374 343097.704 +Q9VU15 Splicing factor 3A subunit 2 9.09 2 2 2 77215.44 77573.772 +Q9VU35 10 kDa heat shock protein, mitochondrial 71.84 10 66 9 7459901.56923 8316020.7532 +Q9VU36 Large ribosomal subunit protein bL20m 6.67 1 1 1 16785.379 30028.795 +Q9VU38 Adenosine kinase 29.28 6 13 0 84715.72839999999 98797.4496 +Q9VU45 LD27581p 20.42 5 16 5 601634.2435 652025.2045999999 +Q9VU53 Capricious, isoform A 3.7 2 2 0 12915.337 13885.1807 +Q9VU75 RH45712p 40.33 9 32 9 362708.80822 420807.36425 +Q9VU92 Uncharacterized protein 35.71 7 12 7 227744.6775 232008.0139 +Q9VUC1 Hsc70Cb, isoform A 47.64 31 88 1 1269045.2015 1377767.78381 +Q9VUE8 Big bang, isoform C 0.53 1 1 0 382.8827 0.0 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 6.34 6 6 6 53007.8417 60500.0697 +Q9VUJ1 Proteasome subunit beta 35.29 9 19 7 387128.0845 492752.555 +Q9VUL8 Peroxisomal biogenesis factor 3 4.68 2 2 2 5196.0767 4818.524 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 13.77 8 9 8 136506.779 189290.807 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 5 2 145306.617 169925.931 +Q9VUN9 ubiquitinyl hydrolase 1 24.36 8 10 8 229759.1666 275668.03 +Q9VUQ7 RE36966p 11.91 6 10 6 124650.9053 137645.11 +Q9VUV6 GXIVsPLA2, isoform A 10.87 3 3 3 18699.1528 19802.166 +Q9VUW2 Inositol-1-monophosphatase 9.15 2 2 2 77015.28 123831.9 +Q9VUW4 Inositol-1-monophosphatase 5.56 2 2 2 32165.547 42936.09 +Q9VUX1 Small ribosomal subunit protein mS31 5.59 4 5 4 61502.678700000004 54397.72247 +Q9VUZ0 Translocon-associated protein subunit beta 34.74 3 7 3 92703.79887 122065.2623 +Q9VUZ8 GEO07442p1 6.77 1 1 1 1849.238 438.80832 +Q9VV13 GEO08383p1 20.71 2 4 2 216369.9459 265781.797 +Q9VV31 Uncharacterized protein 19.35 2 7 2 88848.9306 112091.355 +Q9VV39 Mitochondrial ribosomal protein S34 30.85 6 12 6 164263.2897 196403.4816 +Q9VV40 Golgin 104 1.42 1 1 1 2013.0122 3289.1104 +Q9VV42 Fat body protein 2 79.5 25 188 0 12304438.9891 15524727.7376 +Q9VV46 Cuticular protein 72Ec 49.65 29 180 29 14481073.69856 15753575.8467 +Q9VV47 Fat body protein 2 45.17 9 22 7 863640.3209 1076522.6983 +Q9VV60 Tyrosine--tRNA ligase 43.81 24 47 24 1237467.18576 1427105.60785 +Q9VV75 AT02348p 79.09 28 196 28 9055887.3265 10832298.48464 +Q9VV76 Syntaxin 8 11.64 3 4 3 136281.3814 171793.3584 +Q9VV89 Coatomer subunit zeta 36.21 5 10 0 72816.08260000001 72487.28682000001 +Q9VVA7 Tumor suppressor protein 101 23.28 9 12 9 204573.1544 236190.9099 +Q9VVB5 LD46723p 33.45 17 44 1 13496.8329 9042.7646 +Q9VVB7 FI02842p 48.97 15 44 1 11518.8936 10261.1494 +Q9VVC2 Uncharacterized protein 8.08 1 3 1 62920.27099999999 174613.901 +Q9VVC3 Cuticular protein 73D, isoform B 33.84 16 40 2 844857.7576 928083.13674 +Q9VVC8 LD23434p 6.95 5 8 5 134364.3768 152246.5558 +Q9VVG0 Cadherin 74A, isoform A 9.12 16 18 16 164145.37092 197906.91552 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 40 6 5816424.0444 6224542.0872 +Q9VVJ7 Selenoprotein F 30.9 5 10 5 306164.734 346461.0756 +Q9VVK5 Adenosine deaminase 2.71 2 3 2 22308.754 29340.949 +Q9VVK7 Nucleobindin 1 20.21 13 16 13 385034.58673 361571.3197 +Q9VVL5 FI11325p 27.27 9 14 9 230771.8927 314826.2022 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.86 27 194 27 7779301.52726 7718296.90238 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 8.12 5 6 5 81561.0065 95893.63 +Q9VVM1 Uncharacterized protein, isoform B 6.32 4 7 4 52734.552500000005 53237.4429 +Q9VVP9 Gamma-glutamylcyclotransferase 38.18 7 9 7 131008.6903 134292.7679 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 11.82 3 3 3 94534.33 108391.05 +Q9VVT6 Glutaredoxin-2, mitochondrial 69.3 8 27 8 2124049.4361 2464765.6113 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 42.27 14 53 14 6372887.3407 7354845.751 +Q9VVU2 GEO07453p1 48.32 9 36 8 2604876.9468 2895052.1903 +Q9VVV6 LD45843p 11.01 5 5 1 62479.8411 78706.457 +Q9VVW7 Canopy b 16.74 4 6 4 201291.7144 251464.834 +Q9VVX4 Large ribosomal subunit protein bL21m 3.48 1 1 1 5455.038 7365.413 +Q9VVY7 FI20154p1 10.24 13 16 0 119014.03080000001 129560.31646 +Q9VVZ4 Uncharacterized protein 27.78 2 6 2 26914.117469999997 48099.89186999999 +Q9VVZ6 GEO09638p1 16.03 1 1 0 365.06763 3128.2432 +Q9VW00 GH28721p 12.2 4 8 4 125788.06450000001 126541.04860000001 +Q9VW17 RE58036p 26.37 5 12 0 199411.00089999998 239941.7821 +Q9VW34 FI03450p 17.01 9 14 9 388297.918 379006.99879 +Q9VW40 LD31235p 12.62 4 5 4 63881.9322 70736.07754 +Q9VW52 Precursor RNA processing 3, isoform A 2.01 1 1 0 8225.728 10689.665 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 2.61 3 3 3 60701.68312 70346.01732000001 +Q9VW57 Grasp65 8.04 4 6 4 68543.5906 87621.23300000001 +Q9VW58 LD33138p 11.15 3 5 3 9095.206 18308.610800000002 +Q9VW59 Rho GDP-dissociation inhibitor 3 47.26 10 23 10 738229.393 825099.023 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 31 4 2516938.0969 3023214.5828 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 68.93 31 129 31 4678379.28894 5303492.25145 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 9474.6787 14734.1108 +Q9VW90 Chitin-binding type-2 domain-containing protein 6.23 2 3 2 3801.4822 2505.7668 +Q9VWD0 GH23568p 26.43 8 13 8 238398.3314 245063.054 +Q9VWD1 Cytochrome c oxidase subunit 86.46 12 97 2 5599147.28245 6318965.69137 +Q9VWD5 LD35087p 6.46 3 3 3 10107.28213 11102.9251 +Q9VWD9 Ubiquilin-like protein 40.77 16 27 16 639828.0002 836193.5209 +Q9VWF0 LP01149p 9.8 3 5 3 69131.091 73253.653 +Q9VWG1 LD37169p 72.68 11 62 1 151711.8464 172703.48559999999 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 2 2 20771.555 32254.152000000002 +Q9VWJ3 LD05272p 4.57 1 1 1 18488.299 21159.523 +Q9VWL4 GH07340p 9.77 5 5 5 130806.0232 140278.6245 +Q9VWP2 RH57257p 64.88 12 25 12 956483.2158 1262125.9868 +Q9VWQ3 LD35981p 5.27 2 4 0 66718.90460000001 77525.1715 +Q9VWQ7 Coactosin-like protein 38.65 7 10 1 119129.8805 134749.4832 +Q9VWS1 Houki 29.33 6 7 6 137118.1577 168129.3832 +Q9VWT1 histidine--tRNA ligase 32.18 15 25 1 565521.08474 686390.44426 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 3.45 2 2 2 8165.174000000001 12425.4045 +Q9VWU0 FI18411p1 2.63 1 2 1 2082.68894 3601.1238 +Q9VWV6 Transferrin 57.72 35 174 35 12395761.01982 13465189.2414 +Q9VWW2 GH13094p 14.17 6 13 6 38364.07933 25948.5986 +Q9VX02 Mitochondrial fission process protein 1 14.02 3 5 3 93368.85429999999 108137.1492 +Q9VX08 LD10434p 6.85 2 2 2 8376.23777 11763.307 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 72.73 18 89 18 3441673.55346 4022860.22947 +Q9VX69 FI01450p 8.27 4 13 3 198328.52899999998 222789.04499999998 +Q9VXA3 LP21163p 16.69 10 15 10 176316.33116 166187.03343 +Q9VXA9 RE04047p 10.58 3 3 3 10022.0514 12375.1172 +Q9VXC1 MIP06432p1 27.93 5 10 3 360761.98294 435441.46115 +Q9VXC9 trypsin 54.18 11 21 11 198482.12604 195854.1386 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 12.57 2 7 2 138931.5285 177447.08416000003 +Q9VXF9 AT13091p 15.94 7 13 7 190442.78163 229403.9683 +Q9VXG0 Cell division cycle 50, isoform A 9.52 3 7 1 180039.556 184572.22 +Q9VXH4 RE16337p 28.43 2 4 2 258825.01499999998 310427.449 +Q9VXH7 FI17510p1 13.95 5 10 5 205371.0174 279718.5075 +Q9VXI1 L-gulonate 3-dehydrogenase 60.0 12 25 12 991536.3339 1231490.341 +Q9VXI6 Cytochrome b-c1 complex subunit 7 61.26 10 60 9 4817840.5273 5574531.6995 +Q9VXJ7 GH03748p1 5.19 5 5 5 37753.96755 47577.87666 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 35.75 7 14 5 513670.73813 674822.49816 +Q9VXK9 Centrosomal protein 164, isoform A 1.77 2 2 2 0.0 723.616 +Q9VXL4 Nuclear nucleic acid-binding protein C1D 10.69 2 2 2 22896.813000000002 26797.2 +Q9VXM4 LD12946p 62.9 15 37 15 2425916.6269 1429425.5760000001 +Q9VXN1 LD03728p 7.2 2 2 2 11283.16 13903.743999999999 +Q9VXN3 LD07988p 25.25 9 14 9 163066.40326 186527.95554999998 +Q9VXP3 GH05406p 9.87 5 5 5 35781.62674 39294.18594 +Q9VXQ0 Large ribosomal subunit protein uL3m 4.42 2 2 2 20209.3536 22094.716500000002 +Q9VXQ3 Diphosphomevalonate decarboxylase 3.09 1 2 1 10082.945 9672.0614 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 40.34 21 46 21 1020144.37652 1194229.4477 +Q9VXR9 FI03680p 5.45 2 2 2 23196.2707 28545.0066 +Q9VXV1 RH52220p 4.39 1 1 1 12994.935 9843.06 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 13.42 7 11 7 321237.7889 351450.1713 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 27 3 717097.49473 879237.9108 +Q9VXZ8 Luciferin 4-monooxygenase 21.61 11 13 11 202642.826 210292.2339 +Q9VY05 GH11762p 9.47 7 15 7 654278.953 805822.8215000001 +Q9VY16 Uncharacterized protein, isoform A 3.79 3 4 0 60209.3545 80551.99100000001 +Q9VY24 Uncharacterized protein, isoform B 20.82 9 9 9 218682.94203 251005.7721 +Q9VY33 Defective proboscis extension response 8, isoform A 2.62 1 1 1 19219.918 32974.758 +Q9VY41 Plasminogen receptor (KT) 35.71 4 4 4 86889.6386 90448.31599999999 +Q9VY42 Tyrosine aminotransferase 3.59 2 3 2 17737.4922 22153.9903 +Q9VY76 AMP deaminase 9.21 8 10 0 116249.45700000001 134739.44640000002 +Q9VY87 Cathepsin B, isoform A 30.29 7 10 7 152714.14190000002 125441.64803 +Q9VY91 Programmed cell death protein 4 9.63 6 6 6 160997.5914 161583.46 +Q9VY92 GEO07753p1 73.91 8 32 8 2279972.525 2736548.3351 +Q9VYA1 RE18811p 3.87 1 2 1 878.5898 2406.0342 +Q9VYD5 Branched-chain-amino-acid aminotransferase 9.03 3 3 3 6192.626899999999 12266.3757 +Q9VYF0 GM09012p 18.66 5 7 5 55830.2291 64629.1365 +Q9VYG8 CG15717-PA 17.86 4 4 4 129135.9016 23044.0615 +Q9VYJ1 FI12805p 2.29 2 2 1 29084.7105 27238.206 +Q9VYK6 Tomosyn, isoform C 2.86 5 6 0 33588.2099 32780.263399999996 +Q9VYM0 CG2555-PA 13.2 2 2 1 1825.3137 2411.6825 +Q9VYM7 Uncharacterized protein, isoform C 21.08 6 30 1 24995.6647 33235.0735 +Q9VYN1 protein kinase C 0.42 1 11 1 402185.25430000003 642661.3873000001 +Q9VYR4 Furrowed, isoform A 0.77 1 1 0 20069.932 25206.78 +Q9VYS2 GH09980p 4.78 4 4 4 20350.532 24878.4518 +Q9VYT0 RE04130p 23.7 6 10 5 206186.16999999998 243910.482 +Q9VYT1 BLOC-1-related complex subunit 5 4.87 2 2 2 17211.525 22070.607 +Q9VYT3 FI23714p1 4.8 6 7 6 42473.65934 57157.6831 +Q9VYT6 P24-related-1, isoform A 9.52 2 2 2 49936.773 72326.755 +Q9VYU9 RH17287p 36.65 6 11 6 138763.9792 158739.8258 +Q9VYV4 Amun, isoform A 12.0 4 4 4 75819.068 87062.207 +Q9VYV6 GEO09033p1 6.14 1 1 1 28683.424 41732.58 +Q9VZ00 FI19420p1 3.92 4 7 1 23123.51327 27350.89724 +Q9VZ19 Antennal dehydrogenase 35.6 6 24 6 339808.5096 494704.60970000003 +Q9VZ20 Dynein light intermediate chain 35.09 16 23 5 360759.32806 417229.55325 +Q9VZ24 GEO11412p1 43.36 6 33 6 2499432.8376 2872631.0637000003 +Q9VZ25 Uncharacterized protein, isoform A 6.96 1 1 1 6752.681 6932.3 +Q9VZ34 RH72958p 2.64 1 1 1 5733.016 5018.7935 +Q9VZ58 Purple acid phosphatase 9.11 4 14 4 269874.7035 337969.8227 +Q9VZ66 SD22308p 35.37 5 8 5 123803.1863 159245.4573 +Q9VZ67 Uncharacterized protein 28.99 2 3 2 56754.8033 69053.023 +Q9VZ71 RE01453p 9.04 2 5 2 121164.438 136076.503 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 8.28 2 2 2 10125.6093 7973.6651 +Q9VZE4 RE70333p 19.57 9 13 9 142297.4956 139059.9081 +Q9VZE9 V-type proton ATPase subunit 10.59 2 4 2 168613.7776 182426.7625 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 13.13 5 5 5 80046.8694 96235.95 +Q9VZF9 Cuticular protein 64Ad 41.3 7 23 7 627474.7068 779493.85505 +Q9VZG0 Cuticular protein 64Ac 51.06 8 46 8 1058940.35923 1207784.6111299999 +Q9VZG1 Cuticular protein 64Ab 42.5 4 8 4 189858.0335 234748.9168 +Q9VZG2 Cuticular protein 64Aa 76.04 10 59 10 2107088.85457 2252853.86309 +Q9VZH5 CLIP domain-containing serine protease 4.7 3 3 1 27749.345 34461.377 +Q9VZI1 Transgelin 74.47 11 82 1 2893686.5210700002 3067622.45336 +Q9VZI8 Fumarylacetoacetase 10.31 4 4 4 94308.492 106033.59 +Q9VZJ2 GH27759p 12.66 5 8 5 121620.26617999999 139468.315 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 3.28 2 3 2 42739.30100000001 46055.020000000004 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 66.89 9 19 1 442262.214 490214.2886 +Q9VZS1 protein-serine/threonine phosphatase 12.67 4 4 4 28160.23 37234.441 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 14.15 11 14 11 177416.09449000002 174668.88269 +Q9VZV2 Chitinase 7 3.75 4 5 4 14979.770659999998 17182.277000000002 +Q9VZW1 Phospholipid scramblase 11.03 3 6 3 170662.2996 212008.751 +Q9VZW7 Carnitine palmitoyltransferase 2 4.2 3 3 3 21061.0615 24940.623 +Q9VZX6 LD06441p 3.99 1 1 1 55681.266 73577.29 +Q9VZY0 LD45195p 18.85 5 7 5 348443.89300000004 422074.226 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 11.35 5 5 3 34647.186 29711.40327 +Q9VZZ5 GEO12033p1 21.68 3 7 3 390030.5815 495417.01800000004 +Q9VZZ6 CG16985 protein 34.9 5 11 5 515340.9054 746983.083 +Q9W022 GEO01508p1 49.3 7 34 7 1617042.9764999999 1941947.3299 +Q9W073 RH22148p 9.41 2 2 2 21457.8214 24946.82044 +Q9W077 Cuticular protein 62Bc, isoform A 26.11 3 20 3 1141154.354 1366248.4302 +Q9W078 Cuticular protein 62Bb, isoform A 35.05 4 11 3 440201.19100000005 574606.967 +Q9W086 Large ribosomal subunit protein mL46 23.64 6 8 6 110068.29139999999 123863.1953 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 6 3 128822.90049999999 163998.569 +Q9W095 glycerol kinase 2.6 2 2 2 6422.303 5315.534 +Q9W0A8 FI01658p 14.08 4 10 4 549737.846 608803.8385 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 31.33 10 18 10 619227.3939 671452.36394 +Q9W0C3 GH11843p 46.94 12 16 12 237852.4029 172413.52554 +Q9W0D3 GH15728p 1.09 2 2 2 12972.858 16801.516 +Q9W0D9 choline-phosphate cytidylyltransferase 7.61 3 5 1 43072.383 54616.28 +Q9W0H6 Acetyl-CoA acetyltransferase 2 31.12 9 14 9 207191.76196 274488.025 +Q9W0H8 Reticulocalbin-3 37.39 12 19 6 615429.9592 743324.451 +Q9W0J9 GH07301p 33.85 8 16 8 313299.1361 373804.62710000004 +Q9W0K9 LD10220p 11.61 2 3 2 12665.5 13078.6793 +Q9W0M4 Endoplasmic reticulum transmembrane protein 25.88 6 13 5 176959.006 194930.8663 +Q9W0M5 Protein DPCD 9.91 2 2 2 4495.3531 6122.3921 +Q9W0N6 LD27967p 9.57 3 3 3 23127.3621 20366.0894 +Q9W0P4 GEO05053p1 15.45 3 3 3 43038.64136 55425.2784 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 10.23 2 2 2 52365.923 75072.302 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.31 1 1 1 13472.535 20014.705 +Q9W0R0 Cell division cycle 5, isoform A 10.44 8 9 8 128542.51026 126109.1263 +Q9W0U0 glycerol kinase 5.39 2 3 1 63149.365 72754.522 +Q9W0X0 Scavenger receptor class B member 1 8.89 5 7 0 101205.248 138014.2456 +Q9W0X1 GH15894p 5.72 3 3 3 39348.80100000001 47775.448000000004 +Q9W0X2 GEO07322p1 33.88 4 5 4 107041.8337 125540.85224 +Q9W0X3 LD24657p 12.55 3 6 1 154351.674 192400.754 +Q9W0Z5 LP09747p 10.07 5 12 5 273483.0164 306339.1702 +Q9W114 IP05433p 22.5 2 3 2 20410.25167 27552.57475 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 63.43 9 41 9 1226777.7791 1529866.3519 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 12 6 395564.16099999996 445532.695 +Q9W136 Uncharacterized protein 33.82 6 17 6 259685.2212 291597.0623 +Q9W140 Regulatory protein zeste 14.35 5 7 5 43726.1825 52182.3052 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.36 4 4 4 32504.0383 41270.0969 +Q9W149 RING-type E3 ubiquitin transferase 1.96 2 2 2 8587.6855 7463.3936 +Q9W158 LD36772p 6.51 2 3 2 117573.087 144303.751 +Q9W199 GEO07594p1 10.97 2 3 2 116886.73000000001 159980.435 +Q9W1B9 Large ribosomal subunit protein uL11 24.24 5 19 5 1335740.6586 2310910.1776 +Q9W1C8 LD24355p 20.11 8 10 8 110115.2881 139593.871 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 10.47 2 3 2 20464.7823 26599.432999999997 +Q9W1F2 FI07217p 5.93 2 2 2 6836.851 6162.2183 +Q9W1F7 IP15825p 26.5 11 33 11 1030426.51651 1239631.3776 +Q9W1F8 GEO08248p1 23.31 4 8 4 237213.514 282477.57 +Q9W1G7 LD21576p 31.62 10 17 10 722565.8132 859228.8689 +Q9W1H5 Decapping protein 1, isoform A 18.82 6 9 6 221781.99987 238405.0809 +Q9W1H6 GH04238p 13.85 3 7 3 49626.479199999994 66924.893 +Q9W1H8 acetyl-CoA C-acyltransferase 36.89 17 44 17 1379604.6252000001 1689668.42691 +Q9W1I8 LD03592p 36.97 8 15 8 312382.2286 353329.20923000004 +Q9W1L1 Large ribosomal subunit protein mL43 17.19 3 4 3 33381.5237 33190.6322 +Q9W1L8 GH11818p 5.92 2 2 2 4541.9688 7023.6562 +Q9W1M9 Exosome complex component RRP4 20.47 5 5 5 23257.4 22833.056 +Q9W1N3 Levy, isoform A 32.11 4 16 4 2146670.6336 2743466.5312 +Q9W1N4 Serine-threonine kinase receptor-associated protein 2.74 1 1 1 10711.603 15555.87 +Q9W1R0 RH49821p 4.13 2 2 2 21605.659 24993.334000000003 +Q9W1R3 Golgin-245 5.17 7 8 7 159059.2259 166813.0785 +Q9W1V8 CG9893 protein 27.6 5 7 5 66571.46399999999 73199.74517 +Q9W1W4 RE45066p 15.81 5 7 5 180120.018 218154.1737 +Q9W1X5 GH04942p 16.93 24 31 4 572376.4216 625048.58745 +Q9W227 Peptidyl-prolyl cis-trans isomerase 63.9 12 62 12 4414036.3647 5275937.7704 +Q9W229 40S ribosomal protein S24 37.4 5 7 5 413621.76999999996 424263.1495 +Q9W236 Vacuolar protein sorting 20, isoform A 19.34 6 8 6 289918.1119 319551.51330000005 +Q9W253 Small ribosomal subunit protein mS29 11.48 4 5 4 33891.0266 37507.2674 +Q9W254 Quaking related 58E-2, isoform A 28.12 13 21 12 415689.6638 427577.0442 +Q9W257 RH13652p 6.99 2 3 2 111867.58600000001 110824.656 +Q9W258 Babos, isoform A 30.1 6 17 6 605719.3171 713146.6443 +Q9W259 FI23916p1 18.69 7 10 7 101985.4381 116454.0649 +Q9W260 GH03113p 12.2 7 13 7 150950.5844 162222.0084 +Q9W287 Cuticle protein 16.5-like 15.21 2 2 2 6751.1697 7226.7512 +Q9W289 Golgi matrix protein 130 kD 25.53 17 22 17 257613.6019 282728.93426 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 8632.5926 9842.7051 +Q9W299 Sugar phosphate phosphatase 3.9 2 2 2 37105.883 40949.792 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 40.0 4 25 4 1723065.5322999998 1965506.4616 +Q9W2J4 UDP-glucuronosyltransferase 4.14 2 2 2 100014.236 118248.076 +Q9W2J5 Uncharacterized protein, isoform A 20.87 8 12 0 134735.07968 161286.73193 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 22.63 3 3 3 59479.28 76626.7 +Q9W2L6 RH02475p 36.23 21 49 21 2034839.8550500001 1481481.1309 +Q9W2M0 LD23155p 16.85 11 18 11 346758.9644 396432.9354 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 10 44 10 4327302.0137 5013092.2135 +Q9W2M9 FI16623p1 14.71 2 3 2 51962.82399999999 79049.372 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 13.92 1 3 1 52588.095 66298.895 +Q9W2S2 Autophagy-related 8a, isoform A 17.36 3 7 1 410316.9965 393922.77499999997 +Q9W2U8 Neb-cGP, isoform A 20.83 1 9 1 291068.382 378683.44999999995 +Q9W2V2 FI20035p1 10.07 5 5 5 78997.24590000001 36076.4499 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 109 11 16930473.2428 22069879.62147 +Q9W2Z7 Uncharacterized protein, isoform B 15.93 6 22 0 203982.8771 219497.25185 +Q9W2Z9 RE65233p 8.65 2 2 2 30697.474000000002 47321.564 +Q9W306 GEO08256p1 14.05 2 2 2 48568.210999999996 55647.713 +Q9W308 GH05731p 16.18 2 3 2 56562.686 71658.185 +Q9W309 GEO08445p1 38.27 7 10 7 382495.294 344821.529 +Q9W314 GH14088p 9.07 4 4 3 57280.961800000005 73248.7206 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 14.85 10 10 10 104735.6857 121102.1991 +Q9W330 Phosphotransferase 44.18 19 34 3 907017.197 1066462.29914 +Q9W335 Translocon-associated protein subunit alpha 20.2 3 3 3 65597.38399999999 68830.5365 +Q9W337 GH19985p 44.5 8 13 8 227045.58564 291907.547 +Q9W350 C11.1, isoform A 1.55 2 2 2 2404.8586 4312.086 +Q9W370 GEO12084p1 38.52 4 8 4 158948.66744 158823.6677 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 1.4 1 1 1 3913.5427 4233.8438 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 0.87 1 1 1 2883.778 4931.6987 +Q9W392 T-complex protein 1 subunit beta 31.96 16 29 16 597680.7294 748085.0892 +Q9W396 FI06908p 17.5 6 7 6 202645.022 248527.69 +Q9W3B3 Uroporphyrinogen-III synthase 6.86 2 2 2 13644.95 16581.2644 +Q9W3C3 LD10016p 19.53 9 11 9 274176.30689999997 329378.981 +Q9W3C4 beta-N-acetylhexosaminidase 8.36 5 5 5 59842.53516 62580.08404 +Q9W3F6 Bleomycin hydrolase 17.01 7 8 1 88347.32519999999 102368.3769 +Q9W3G8 pyridoxal 5'-phosphate synthase 15.02 3 3 3 46115.1964 51929.7293 +Q9W3H4 LD36273p 52.23 11 23 11 663454.40218 862707.49577 +Q9W3J1 G protein beta subunit 5 19.27 5 5 5 60103.884900000005 80825.7734 +Q9W3J6 FI06457p 2.33 1 1 1 5073.2676 9010.203 +Q9W3K6 LD35927p 4.62 4 5 3 134485.61419999998 149649.974 +Q9W3K9 Short-chain dehydrogenase/reductase 3 26.25 9 16 9 760395.24875 863207.9207 +Q9W3L4 GH20802p 20.29 8 14 8 472586.49552 609122.5708 +Q9W3M7 RNA helicase 13.12 12 14 11 73135.82703 84509.79003999999 +Q9W3M8 LD34211p 38.19 8 9 8 254333.72209999998 272652.68477 +Q9W3N1 RH59310p 3.12 1 1 1 24975.28 33499.082 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 35.71 2 6 2 334767.037 164701.27 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 42.44 14 33 14 1356322.8973 1671940.46 +Q9W3Q0 FI07418p 10.09 2 5 1 2450.8645 4477.149 +Q9W3Q1 GM14286p 5.68 2 2 2 4495.754 5565.142 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 21.43 6 10 6 225217.9127 252655.0696 +Q9W3S3 LP10445p 16.22 2 3 2 2622.6814 4768.8022 +Q9W3T2 Coiled-coil domain-containing protein 25 23.92 7 8 7 188825.4465 189204.8664 +Q9W3T9 GM01152p 31.93 8 17 8 445775.2768 519346.8728 +Q9W3U9 CG14434-PA 26.74 5 6 0 143224.46015 192543.6355 +Q9W3V2 FI19713p1 1.82 2 2 2 2823.189 857.8021 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 10.89 3 4 3 13670.38203 17440.281 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 17.81 4 5 4 151802.57 209607.50900000002 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 57.71 11 52 11 4781674.8819 5322105.8911 +Q9W3X8 RH42690p 11.42 4 5 4 20201.759899999997 24960.305800000002 +Q9W3Y3 Calcyclin-binding protein 39.13 9 14 9 246923.1366 312036.1808 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 55.19 10 61 10 2405338.89372 2685352.32725 +Q9W403 LD24968p 14.47 6 7 6 49442.438200000004 59130.509 +Q9W404 GH10714p 17.98 6 8 5 49435.6547 53313.4762 +Q9W411 Uncharacterized protein, isoform A 4.7 1 2 1 19962.288 20854.809 +Q9W414 Regulatory particle triple-A ATPase 4 44.33 18 28 13 541462.96826 687858.48496 +Q9W425 Rabconnectin-3A 0.99 3 3 3 21366.4512 26501.1954 +Q9W457 Serine hydroxymethyltransferase 33.15 22 60 0 2124328.14113 2538294.94693 +Q9W461 LD23868p 11.54 6 8 6 83231.57979999999 99478.62324 +Q9W483 GH18971p 8.49 3 6 3 33613.5254 45005.165 +Q9W486 LD13361p 3.58 2 2 0 10346.70656 11976.3089 +Q9W499 Large ribosomal subunit protein uL29 11.38 2 5 2 648508.9497 627803.305 +Q9W4A0 GH11193p 31.98 6 10 6 201744.66090000002 268630.457 +Q9W4A6 Otopetrin-like a, isoform A 4.8 4 4 1 45036.881199999996 38270.39216 +Q9W4C2 lysozyme 11.84 2 3 2 67854.291 88238.409 +Q9W4I3 Large ribosomal subunit protein uL30m 35.56 8 8 8 147628.1738 169613.3878 +Q9W4J7 Uncharacterized protein 3.66 1 1 1 8049.075 12069.034 +Q9W4K0 CHOp24, isoform A 42.79 8 22 8 536779.618 644280.88008 +Q9W4M7 Twenty-four, isoform B 1.2 2 2 1 4031.05746 2624.6429 +Q9W4N8 LD30122p 50.93 10 48 0 3307354.7239 3901127.3009 +Q9W4U2 RH09070p 45.38 8 22 8 792710.7135000001 961488.8967 +Q9W4W4 RING-type E3 ubiquitin transferase 1.44 1 1 1 8429.005 9201.127 +Q9W4W5 RE47284p 13.77 5 6 5 124008.58929999999 138332.2106 +Q9W4W8 Paraplegin, isoform A 15.26 12 16 12 145827.05336000002 184961.33389 +Q9W4Y1 aralkylamine N-acetyltransferase 26.32 6 10 6 185050.4039 247919.5843 +Q9W4Z1 EG:BACH48C10.5 protein 3.08 3 3 0 5523.17896 7750.7567 +Q9W4Z2 Large ribosomal subunit protein uL14m 25.47 5 5 5 70823.1959 89321.4454 +Q9W503 RH61816p 35.31 10 15 10 421538.3114 478529.225 +Q9W5B4 GH18858p 27.59 8 18 8 191063.84523 238701.86933000002 +Q9W5B5 Gamma-butyrobetaine dioxygenase 2.46 1 1 1 13456.966 15145.958 +Q9W5G7 EG:BACR37P7.8 protein 4.25 1 2 0 37570.6577 44943.618 +Q9W5R5 Sarcolemmal membrane-associated protein 4.12 4 4 4 34837.648199999996 42844.3284 +Q9W5W7 GH19483p 5.32 3 3 3 24072.352069999997 31923.6947 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 45.83 13 26 13 942715.9614500001 1058154.7889 +Q9W5X0 LD21953p 19.4 4 21 0 95001.61799999999 100485.307 +Q9XTL2 Jak pathway signal transduction adaptor molecule 13.79 9 11 9 185190.7538 243890.7576 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 22.49 6 7 6 121323.3386 115240.8286 +Q9XYZ9 Glutathione S transferase E12, isoform A 59.64 11 56 11 9456018.427339999 9768294.17973 +Q9XZ19 Uncharacterized protein 13.29 4 6 4 93624.6141 123462.2231 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 38.58 12 21 12 436720.0566 551027.0705 +Q9Y0Y5 Coatomer subunit epsilon 29.41 9 16 9 367750.3211 383674.74443 +Q9Y112 BcDNA.GH10614 74.68 22 78 20 3151194.05286 3494473.18932 +Q9Y114 UBX domain-containing protein 4 32.77 19 32 19 579999.69528 625849.87295 +Q9Y119 BcDNA.GH08860 19.65 16 22 16 869472.20885 796093.4696 +Q9Y125 BcDNA.GH08312 23.19 22 81 2 6222153.5009 7019568.60222 +Q9Y128 Ceramide transfer protein 6.16 4 5 2 55403.2692 61284.9111 +Q9Y136 Neprilysin-like 21 9.9 6 6 5 33685.62035 35495.4345 +Q9Y143 BcDNA.GH05536 50.38 10 42 10 1892589.5492 2295383.5332 +Q9Y156 BcDNA.GH02976 10.39 3 4 3 25043.939 31084.726199999997 +Q9Y162 vesicle-fusing ATPase 36.88 21 44 21 1628134.128 1775031.2093 +Q9Y164 BcDNA.GH02439 56.52 18 85 0 2941638.30769 3085335.4927 +Q9Y165 E2 ubiquitin-conjugating enzyme 6.31 2 2 2 6399.759 6809.3306 +Q9Y171 BcDNA.GH02220 10.2 4 6 4 40672.7399 40473.0564 +R9PY51 Uncharacterized protein 34.95 5 71 5 1391249.13957 1844967.93416 +X2J4C1 Synaptotagmin 1, isoform I 63.35 27 89 1 7259816.86766 8079213.6327 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 6.13 8 8 1 100452.03050000001 90152.32728 +X2J979 Synaptotagmin 1, isoform H 64.06 28 90 1 185207.12600000002 300660.069 +X2JAT7 Fasciclin 3, isoform G 15.26 7 20 1 38652.966 66639.136 +X2JAZ3 mitogen-activated protein kinase kinase 5.85 3 5 0 43391.4684 49806.2281 +X2JB48 ADP/ATP translocase 67.56 22 106 1 12095669.16814 12613325.2245 +X2JCY4 Stoned B, isoform H 15.39 15 23 0 283675.34678 324767.0904 +X2JDJ5 Multiple edematous wings, isoform F 2.09 2 2 0 16111.0607 20319.763 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 21.85 11 91 0 7152898.963 8586056.6736 +X2JEN5 Uncharacterized protein, isoform H 20.36 4 6 2 26985.715 34414.505000000005 +X2JKC1 Lipid storage droplet-2, isoform E 43.58 12 36 0 25222.868 25984.2116 +P10674 Fasciclin-1 51.07 33 127 1 6241.5796 4600.8057 +P32865 G protein-coupled receptor kinase 1 1.0 1 1 0 3276.672 3385.4583 +Q08605 Transcription activator GAGA 2.24 1 1 0 14608.25 16766.389 +Q9V3H8 NTF2-related export protein 5.26 1 1 0 7188.96 7419.077 +Q9V770 Probable cytochrome P450 6a17 4.99 3 4 0 14662.721000000001 19076.869 +Q9VE09 Glutamyl-tRNA(Gln) amidotransferase subunit A, mitochondrial 4.13 2 2 2 6460.536 7312.102 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 4.06 1 1 0 33381.81 30357.71 +Q9VK68 PITH domain-containing protein CG6153 3.79 1 1 0 8515.983 10582.795 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 2649.3608 2169.8247 +Q9VVW5 Dual specificity protein phosphatase Mpk3 6.57 3 3 0 16923.0227 20143.808 +Q9VWS2 Nucleoporin Nup35 2.11 1 1 1 8217.77 8032.4746 +Q9W568 Protein halfway 3.11 1 1 0 916.4142 1741.5452 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 0 1944.7638 2398.3252 +Q9Y0Y6 Nuclear receptor-binding protein homolog 1.73 1 1 0 420.18924 545.3489 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 9 0 39570.7123 40651.7702 +A0A0B4K7U4 Muscleblind, isoform H 2.0 2 2 0 32497.722999999998 29344.261000000002 +A0A0B4KEZ2 Nervy, isoform D 2.77 2 2 0 7103.848 6099.5317 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 6416.6963 7265.8975 +A0A0S0WPM5 Uncharacterized protein, isoform D 6.85 2 2 0 8740.9925 8714.6386 +A0ACD4DAB9 Bruchpilot, isoform R 53.14 99 280 0 114675.727 150430.66999999998 +A1Z7M0 Space blanket 5.71 1 1 1 13523.254 8452.364 +A1ZA97 Carboxylic ester hydrolase 1.79 1 1 1 392.4795 0.0 +A8JNQ4 RNA-binding Fox protein 1, isoform I 5.65 4 4 0 46988.815 51148.87 +B5RJS0 IP20241p 0.73 1 1 0 818.33575 1717.5917 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 31.18 45 75 1 12293.0434 20273.8855 +E1JJM0 FI20063p1 16.38 9 12 0 115373.09305 126545.3701 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 3.22 1 1 1 5357.333 8515.046 +M9PEX2 Uncharacterized protein, isoform D 24.63 12 25 1 14670.299 17870.695 +M9PHI0 Hyperkinetic, isoform M 7.78 5 5 1 94614.69384 85153.18375 +Q0E9D9 Uncharacterized protein, isoform A 23.19 13 25 1 17319.594 25706.014 +Q5U0V7 phosphoinositide 5-phosphatase 0.66 1 1 1 3599.787 4889.432 +Q6NLA3 V-type proton ATPase subunit a 7.39 5 8 0 193808.06530000002 279049.223 +Q7K1Q7 Ribosome assembly factor mrt4 9.77 3 3 3 106956.379 126034.205 +Q7K1W4 Epoxide hydrolase 2.35 1 1 1 0.0 380.18024 +Q7PLV6 FI02158p 0.85 1 1 1 1741.4819 1797.8739 +Q8I937 Ribosome biogenesis regulatory protein 7.45 3 3 3 43735.9425 43795.978 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.96 2 2 1 798.00494 396.61923 +Q8MPN6 Serpin 4 17.68 6 7 0 2348.151 3530.288 +Q9I7N2 Nucleoporin NUP42 2.01 1 1 0 7597.9688 10558.966 +Q9VCS2 Short-chain dehydrogenase/reductase 3 7.17 2 2 2 12835.045 19266.518 +Q9VG79 Xaa-Pro dipeptidase 3.26 2 2 2 26799.232 25110.7 +Q9VHX1 LD44032p 4.04 1 1 1 3041.1465 3421.9111 +Q9VKC1 IP16805p 3.89 1 1 1 7019.99 9717.33 +Q9VM94 Homer, isoform B 43.32 14 33 1 5852.0522 5785.9126 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 3 2 11314.7041 15100.0615 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 3.85 2 2 2 29627.291 6082.2734 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 14.74 2 3 2 119858.33799999999 127491.8015 +Q9VTY1 LD40136p 2.4 1 2 1 20810.5 20331.936 +Q9VYI2 BRMS1 transcriptional repressor 3.09 1 1 1 4973.3447 5887.769 +Q9W2N5 GH10162p 3.47 2 2 2 906.5418 1976.57 +Q9W362 La-related protein 7 1.85 1 1 1 3492.4873 5660.948 +Q9W525 LD08195p 2.32 1 1 0 10480.782 13061.754 +Q9XYN7 Proteasome subunit beta type-3 4.88 1 1 1 18857.98 21530.584 +A0A6M3Q6Z1 Stambha A, isoform F 1.56 1 1 0 18950.16 4193.323 +B7YZX9 Uncharacterized protein, isoform B 17.62 3 5 0 59243.033599999995 69499.136 +E1JJ83 Os-C, isoform B 7.19 1 1 0 505.19974 0.0 +M9PCB7 Trailer hitch, isoform G 21.93 10 18 0 177024.92596 200767.60323 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 12371.789 14320.335 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 7792.818 9207.923 +Q86BB4 Transforming acidic coiled-coil protein, isoform E 39.18 10 10 1 5502.2505 7157.936 +Q8IQ80 GH06117p 3.39 2 2 0 7439.7285999999995 6410.5465 +Q9VHW5 LD38634p 4.76 1 1 1 1534.3397 2356.1123 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 25044.3307 28291.8555 +Q9VJG2 RRM domain-containing protein 1.84 1 1 1 7822.8384 9904.112 +Q9W5C1 RE02292p 1.55 1 1 1 679.2738 987.0056 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 6749.2593 6151.655 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 10.1 1 2 0 7256.866 4368.522 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 17005.46 19072.85 +B7Z0L1 Fasciclin 1, isoform E 51.92 32 126 0 6003081.27384 6722926.94597 +E1JH70 Kank, isoform E 1.28 1 1 0 7098.798 6305.794 +M9NFP1 Jim, isoform E 0.85 1 1 0 9395.523 11594.375 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 2 2 5038.7407 4824.6821 +Q7KN85 ATP-citrate synthase 10.79 9 11 1 4695.0464 3424.7688 +Q8IQH6 Nebulosa, isoform A 4.88 2 2 0 14676.82843 18148.5646 +Q9VBS0 CHK domain ov2 2.2 1 1 1 2571.9673 5486.7637 +Q9VCH9 LD07883p 4.72 1 1 1 4154.4487 4362.0137 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 18066.24246 13579.6276 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 10180.11062 10290.530439999999 +Q9VID7 Lethal (2) k14505, isoform A 2.51 1 1 1 15182.041 15731.266 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 3 2 79278.08 81637.535 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 1 1 9968.386 10878.737 +Q9VMY3 FI19613p1 1.5 1 1 1 7184.9185 10577.384 +Q9VS80 FI17864p1 2.6 1 2 1 4214.5796 5721.46 +Q9VZF0 LD44732p 3.61 1 1 1 8224.448 7311.0547 +Q9VZX7 Autophagy-related protein 2 1.05 2 4 2 35420.727 38771.905 +Q9W249 IP21806p 2.24 1 1 1 2121.6682 1834.7886 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 10896.417 15172.452 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 3 0 53190.132 56574.463 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 3.64 1 1 0 24973.44 28412.049 +D1YSG8 calcium/calmodulin-dependent protein kinase 33.15 19 42 1 87996.0954 132461.2615 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 6.66 7 7 0 14185.537 11029.6875 +Q0KHQ1 GEO13361p1 11.11 1 1 1 1375.2002 0.0 +Q4QPR8 GEO10187p1 19.51 2 2 2 34575.823000000004 38170.29 +Q7KV89 Mitogen-activated protein kinase kinase kinase kinase 0.64 1 3 0 89057.33 109170.004 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.1 1 1 1 2219.2446 2570.7397 +Q9VEV5 Small ribosomal subunit protein mS33 6.19 1 1 1 15836.466 20274.27 +Q9VLL5 Alpha-N-acetylglucosaminidase 0.9 1 1 1 2343.727 2545.524 +Q9VV37 GEO13385p1 10.1 1 5 1 18132.477 18044.277000000002 +Q9VVX6 BET1 homolog 16.24 2 2 2 75220.054 96299.453 +Q9VWH1 Uncharacterized protein, isoform D 4.94 1 1 0 13412.175 12444.43 +Q9W152 RH33060p 16.9 1 1 1 5903.1484 7810.4766 +A0A0B4K7H1 Hulk, isoform M 7.71 7 9 0 12312.7887 16462.9943 +E1JGW3 Ion transport peptide, isoform E 8.33 1 2 0 45778.945 56325.534 +M9PDY5 Girdin, isoform C 0.94 1 1 0 5815.403 6142.3237 +Q9VAI3 FI06539p 10.08 1 2 1 18633.838000000003 25325.790999999997 +Q9VB09 IP04131p 5.73 1 1 1 27231.164 29620.379 +Q9VV18 Cuticle protein 16.5 8.24 1 3 1 73932.6074 81378.4662 +Q9W5E7 LP07417p 11.4 1 1 1 3872.546 3743.2502 +P17917 DNA sliding clamp PCNA 2.69 1 1 1 6502.7476 7849.537 +Q9VMP9 Glucosamine-6-phosphate deaminase 15.02 5 7 0 202297.96910000002 235030.239 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 5095.562 5541.1514 +A0A0B4KHA7 Julius seizure, isoform D 18.01 5 8 0 17005.7674 16480.1086 +A0A0C4DHE7 Glutamate dehydrogenase 47.83 18 60 1 28023.855 34195.543 +A1Z872 CAP, isoform D 25.05 11 20 1 3004.4526 2089.3628 +A4UZU8 Sterile20-like kinase, isoform G 5.13 6 7 1 10093.778 15881.925 +Q0KI97 Protein FMC1 homolog 6.93 1 1 1 20054.586 23492.902 +Q7K3Z8 GH01208p 13.24 2 2 2 704.14014 2285.1873 +Q9VAN8 FI15955p1 6.46 1 1 1 5680.438 7698.709 +Q9VLL4 FI23523p1 1.81 1 1 1 1754.3326 2984.124 +Q9VT55 Uncharacterized protein, isoform N 3.73 5 8 0 40423.992 70387.41 +P08841 Tubulin beta-3 chain 23.13 10 131 0 7759.529 8687.637 +Q7JZM8 Large ribosomal subunit protein mL41 9.64 1 1 1 19469.045 23320.613 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 16.77 9 12 1 2335.2842 2663.4023 +Q9VTT0 Semaphorin 5c 0.91 1 1 1 11548.193 11664.273 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 8.9 1 1 1 5738.8813 3851.8647 +A0A0B4LF27 Uncharacterized protein, isoform C 6.31 3 3 0 14806.043699999998 14362.42 +Q9W3S4 LD46272p 3.11 1 1 1 6123.6157 4895.4316 +A8JQX3 Nocturnin 1.71 1 1 1 4877.509 4215.48 +Q9VCI5 Succinate dehydrogenase [ubiquinone] cytochrome b small subunit, mitochondrial 5.49 1 2 1 89421.149 93616.76999999999 +A8JNM1 Formin 3, isoform B 0.58 1 1 0 444.09326 418.6592 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 1.09 1 1 0 1625.6495 2349.645 +B7Z0Z7 Venom dipeptidyl peptidase 4 6.9 6 7 0 66968.8242 81362.7015 +Q7JY89 RE35124p 15.0 1 1 1 6085.4204 5765.0015 +Q9VAN1 Reelin domain-containing protein 12.5 2 3 2 23860.5584 28931.605600000003 +A8JUP7 Serine protease Hayan 1.1 1 1 1 7315.6777 5500.409 +P07664 Serendipity locus protein delta 2.54 1 1 1 37349.094 28551.408 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 216057.692 512625.393 +Q9VGM4 LD28119p 2.94 1 1 1 3645.6855 3169.8025 +M9MRD1 Muscle-specific protein 300 kDa 1.44 17 17 0 36210.7269 49113.9539 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 7.36 2 2 2 33471.84 31890.922 +E1JJ37 Complexin, isoform W 65.47 9 67 1 8963.364 8571.9 +Q7K0D3 CG12909 protein 3.2 1 1 1 8590.6455 8444.2705 +Q962I2 small monomeric GTPase 50.76 8 21 1 6547.8594 6858.7207 +Q9VF73 FI17904p1 0.98 1 1 0 4634.124 4833.3306 +Q9VSK1 GH09510p 2.72 2 2 2 781.1314 1742.194 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 76636.512 81388.535 +A4V134 calcium/calmodulin-dependent protein kinase 33.99 19 42 1 24884.709 14345.298 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 6.1 7 7 0 108877.8864 86512.7515 +Q29R09 LD28546p 3.02 1 1 1 867.1053 682.3439 +Q6AWJ5 LP12324p 23.56 8 11 1 2854.4065 2220.7288 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 3791.441 6261.906000000001 +Q9VQT5 FI01556p 13.92 1 3 1 58350.5672 104976.01900000001 +Q9W0A9 GM02612p 3.06 1 1 1 10834.674 9625.373 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 11182.568 17287.309 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 2 2 32937.918 36642.34 +Q9VKW3 Activator 1 subunit 5 8.13 3 3 3 6592.426 7621.896 +Q9VT02 Chitin-binding type-2 domain-containing protein 6.36 1 1 1 8961.471 13071.349 +Q9VV29 GEO12576p1 9.68 1 2 0 20674.12 25027.2605 +P45884 Attacin-A 5.36 1 1 0 11162.339 12521.153 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 1011.2149 1847.2035 +O61348 Bobby sox 3.51 2 2 2 2215.7385 3094.2469499999997 +Q8INE8 type I protein arginine methyltransferase 1.69 1 1 0 2435.1506 2853.9673 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 16415.475 17735.887 +Q9VV27 MIP11526p 7.63 1 1 1 10922.765 11245.64 +A1ZAX7 Uncharacterized protein 6.35 1 2 1 50528.225 57300.113 +Q9VEQ0 Xylulose kinase 3.62 2 2 2 16355.929 17846.1023 +A0A6M3Q6V5 poly(A)-specific ribonuclease 6.16 2 2 0 35954.429000000004 44196.646 +M9PE05 Encore, isoform H 0.6 1 1 0 2553.365 3455.054 +Q2PDU0 GEO11169p1 9.84 1 2 1 15146.971300000001 14886.3146 +Q9VF46 GH25158p 4.13 1 2 1 10064.7816 10484.4783 +Q9VV95 Uncharacterized protein, isoform B 25.42 2 2 2 18321.6182 22064.291400000002 +Q9W4I1 Uncharacterized protein 1.26 1 1 1 10339.096 7230.8594 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 29.85 2 2 2 39413.824 45305.11 +A8JNU1 adenylate cyclase 1.78 2 3 0 8889.61584 10110.7019 +Q7KVR7 AP-1 complex subunit gamma 1.13 1 1 0 2813.2585 2448.6638 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 2312.4758 3325.2083 +Q7K010 Tetraspanin 3.64 1 1 1 5033.6045 5730.021 +Q9VUR4 FI11905p 18.81 5 8 1 9649.531 11868.467 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 5.81 1 1 1 0.0 371.72986 +Q9VLR2 Cytidine deaminase 5.29 1 1 1 12071.484 12505.387 +P52656 Transcription initiation factor IIA subunit 2 6.6 1 2 1 2735.9061 4075.0393000000004 +A8JNV2 Uncharacterized protein 10.71 1 2 1 10011.5659 9504.277 +Q9VDD0 Protein-lysine N-trimethyltransferase SMYD5 3.31 1 2 1 7112.0375 7992.305 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 14183.6045 19032.625 +Q8SWU4 RE25571p 17.3 6 13 1 61110.187999999995 17801.1024 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 1 1 70893.54 78167.01 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 1787.4066 2606.2952 +Q8T4E1 Putative GPI-anchor transamidase 3.1 1 1 1 1715.6193 1816.3995 +Q9VEP0 Regulatory protein zeste 5.59 2 2 2 8002.9925 10672.4619 +Q8SXW3 GV1, isoform B 4.44 1 1 0 28546.12 29692.715 +A1Z9M6 Vesicular inhibitory amino acid transporter 1.46 1 1 1 8991.787 14302.3545 +Q8IRN0 FI06485p 3.21 1 1 1 5994.1826 4786.864 +Q9VHS6 Copper transport protein 5.75 1 1 1 7031.2847 7801.3867 +Q9V5Q4 Pre-mRNA-splicing factor Syf2 12.83 2 2 2 10702.287 16209.976 +Q9VAD6 Conserved oligomeric Golgi complex subunit 7 1.75 1 1 1 782.08276 611.21216 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 9.16 1 1 1 3443.3303 3289.784 +Q8ML92 Protein aveugle 7.55 1 1 1 8395.37 11675.238 +Q9VT15 GH14734p 8.33 2 2 2 29707.278000000002 39907.4 +Q9W2M8 Large ribosomal subunit protein mL54 7.58 1 1 1 8608.355 12737.892 +A1A750 GEO11067p1 6.93 1 1 1 8167.5537 9273.451 +Q9VF83 LD33178p 2.73 1 1 1 7295.9937 9336.221 +X2JCX4 Uncharacterized protein, isoform A 33.33 2 2 2 56710.716 60889.848999999995 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 1 1 25444.598 30514.82 +M9PCK0 Decima, isoform D 9.87 2 2 0 41913.996 36305.875 +Q9VPA9 LD24894p 1.45 1 1 1 10019.063 11085.192 +Q9VTG8 Ig-like domain-containing protein 8.98 1 1 1 3973.6267 4497.1016 +Q8IN81 Sex determination protein fruitless 1.36 1 1 0 415.4013 1755.4633 +Q9VT51 Insulin-like peptide 2 5.11 1 1 1 15442.215 13238.99 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 7.95 1 1 1 7323.836 7881.967 +Q02427 RNA-binding protein 1 14.58 2 4 1 87007.94 112226.766 +M9PBB3 Uncharacterized protein, isoform D 3.92 2 2 0 16935.5293 21274.635 +M9PD90 Discs large 5, isoform D 0.57 1 1 0 0.0 446.5947 +Q7K4Y8 GH22690p 1.65 1 1 1 2771.7388 3679.1833 +Q9VCQ7 LD40758p 1.61 1 1 1 872.7793 1814.2039 +Q9VD48 Bomanin bicipital 3, isoform A 15.31 1 1 1 6798.167 12028.281 +Q9VDL4 LP04613p 2.72 1 1 1 2968.0251 2579.0571 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 4 0 12771.227299999999 16763.6221 +Q7K4X4 GH24095p 2.0 1 1 1 6086.0967 3418.1262 +Q9VJ06 LD05576p 7.07 2 2 2 6145.1959 7747.67664 +Q9VGE8 Tachykinins 6.57 2 2 0 22220.9936 27018.545 +A0A0B4KFH9 Uncharacterized protein, isoform B 6.13 1 1 0 8397.724 6907.5317 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 402.36862 402.84006 +P42282 Protein tramtrack, alpha isoform 1.11 1 1 0 22898.72 27762.36 +Q8T9L5 Serine/threonine-protein kinase STK11 3.7 2 2 2 5803.3525 4277.315 +Q9VN42 Dorsal interacting protein 2 3.1 1 1 1 9388.338 14076.827 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 7.73 2 2 2 8389.2364 7909.96 +Q9V3A6 Ero1-like protein 1.45 1 1 1 8226.25 10428.604 +Q7KSP6 SET domain binding factor, isoform B 0.86 1 1 0 15880.616 18316.877 +Q0E8K5 AT10158p 4.1 1 1 0 849.54456 467.2771 +Q7K8Y3 IP16419p 14.29 5 6 0 74487.0711 81781.3268 +Q8STG9 DSec61alpha 1.89 1 1 1 17059.105 26305.418 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 9.79 1 2 1 8467.502199999999 10174.5707 +P22812 Protein Tube 3.9 2 3 2 3973.991 4612.59905 +Q9VYX8 LD04844p 9.38 2 2 2 7998.3706 6120.253 +Q7JV39 GH01142p 5.05 1 2 1 12563.094000000001 17392.610999999997 +Q9VZX8 AT02196p 2.37 1 1 1 3604.4983 3566.5022 +Q8IN02 diphthine methyl ester synthase 8.9 2 2 2 28058.338 41653.676 +M9PF57 Uncharacterized protein, isoform M 4.69 6 9 0 9112.513 11765.801 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 2 0 1847.7299 2951.4084 +Q9W3F7 Mitoguardin 4.19 2 2 2 4486.8222 4342.2908 +Q9W4F9 IP01388p 1.92 1 1 0 12822.38 13580.72 +A0A0B4LHE6 Orcokinin, isoform B 12.6 2 2 2 6802.033899999999 8845.098800000002 +F0JAQ9 MIP27169p 5.85 2 4 0 2541.4218 1915.8008599999998 +P18289 Transcription factor Jra 3.11 1 1 0 9206.608 9677.362 +Q9VJ77 FI24106p1 3.28 2 2 0 16465.932099999998 19131.4067 +Q9VDN4 Uncharacterized protein, isoform A 4.68 2 2 1 7741.06624 7078.527 +Q9VR55 LD29159p 8.71 1 1 1 20665.78 20087.236 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 22.65 2 2 0 7599.767 11155.187 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 27024.581 26975.214 +Q8IR92 Uncharacterized protein, isoform A 7.51 7 8 0 2017.0002 1016.11926 +Q9W3U1 Actin-histidine N-methyltransferase 4.28 2 3 2 7754.6806 5427.69607 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.42 1 1 0 605.5362 1512.2482 +Q9VV26 GEO12049p1 6.84 1 1 1 20072.514 40033.73 +A0A0B4JD13 Snustorr, isoform D 1.18 1 1 0 3303.2456 4287.602 +A0A0B4KEG0 NAD kinase 2, mitochondrial 4.84 2 2 0 5299.833500000001 6265.6651999999995 +Q9VPU0 RCC1-like domain-containing protein 2.2 1 1 1 3797.4238 4564.6655 +Q24192 Ras-like GTP-binding protein RhoL 4.21 1 1 0 14153.828 17060.373 +Q8MKL1 UPF0598 protein CG30010 7.78 1 1 0 0.0 447.81738 +Q9W3C8 Carbonic anhydrase 3, isoform A 2.8 1 1 1 12463.66 13185.12 +Q9VH09 Glycine cleavage system P protein 1.73 2 2 2 14213.306 20643.716399999998 +Q9VW71 Fat-like cadherin-related tumor suppressor homolog 0.19 1 1 0 16016.419 20250.95 +A1Z8Q0 Tweedlebeta 6.06 1 1 1 24614.533 19381.994 +Q9Y166 BcDNA.GH02431 2.86 1 1 1 8653.368 7466.1255 +A0A0B4JCQ5 phosphatidate phosphatase 5.15 4 4 0 21671.6384 25638.7693 +Q6IJE8 HDC15077 17.04 2 3 2 63295.4667 81051.159 +A1Z782 PX domain-containing protein kinase-like protein 2.32 1 1 0 980.74146 1631.3813 +A0A0B4KH70 Trivet, isoform F 8.63 3 3 0 36608.3429 45523.357 +E1JIN2 Beaten path IIb, isoform C 4.95 2 2 0 2781.1108 3298.8315 +Q9VYI6 Coenzyme Q8 1.82 1 1 1 11442.925 11410.594 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 10520.382 13582.266 +Q9W494 Crossveinless 3.5 1 1 1 3398.8015 4696.742 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 2 0 41528.706999999995 43353.352 +Q7KN04 Spondin-1 2.1 1 1 1 4281.5454 3532.613 +Q9VEI2 Uncharacterized protein 2.33 1 1 1 3886.4321 4169.309 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 6.52 1 1 1 5954.461 5336.942 +A0A0B4K6Y7 Polychaetoid, isoform O 2.17 5 5 0 15323.09972 15433.632599999999 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 64.19 23 104 0 7496.7603 4034.6052 +Q8MRQ1 GH06222p 1.49 1 1 0 5973.8325 9475.709 +Q9VPR6 Kinase 3.56 1 1 1 3568.0579 3162.1272 +Q9W3R7 Autophagy protein 5 7.81 2 2 2 3891.4747399999997 3034.681 +E1JJS1 glutathione transferase 5.6 2 2 0 48307.102 54102.933000000005 +O18399 EG:152A3.5 protein (Fbgn0003116;pn protein) 1.98 1 1 1 4402.932 5817.108 +X2JAW9 Inwardly rectifying potassium channel 3, isoform C 5.85 1 1 1 4452.063 7952.685 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 753.5143 872.04395 +Q9TVQ5 Transcription elongation factor SPT4 7.76 1 1 1 3015.0078 3323.8296 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 3635.8752 1968.3835 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 4946.773 4105.9478 +Q9VCC6 Luciferin 4-monooxygenase 1.84 1 1 1 3514.4727 3977.2358 +M9PDC4 Misexpression suppressor of ras 3, isoform B 5.69 1 1 0 3875.0662 5706.7974 +A8MPH9 Transcription factor kayak, isoforms D/sro 2.49 1 1 0 2153.135 2204.7046 +Q7KE33 Odorant binding protein c 9.4 1 2 1 63413.916 75389.301 +A0A0B4LG67 Uncharacterized protein, isoform E 2.22 1 1 0 815.90704 883.4024 +A1Z8N1 Trehalose transporter 1 1.05 1 1 1 2128.9478 1731.1313 +O76876 Protein sex-lethal 1.86 1 1 0 1681.2101 2541.8472 +Q7KSC4 Mitochondrial pyruvate carrier 1 8.41 1 1 0 21968.04 27200.297 +Q9VY55 FI09726p 8.08 1 1 1 1606.156 1624.2466 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 4.43 1 2 0 72290.68 76613.3 +Q8IMK6 Uncharacterized protein 5.72 1 1 1 1505.2083 879.36316 +Q02936 Protein hedgehog 2.34 1 1 1 18602.53 15625.598 +Q6NN09 ATPase protein 9 5.07 1 6 1 383806.236 189762.696 +O76874 SD17974p 1.14 1 1 1 3773.4265 3014.6877 +Q9W424 Splicing factor 3B subunit 4 2.59 1 1 1 780.8269 568.76306 +Q9VGL2 GM08392p 2.12 1 1 1 14427.799 18201.379 +Q9VAX9 MIP05919p 3.7 1 1 1 12418.583 15016.227 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 2671.5535 2747.0403 +Q9VK20 LD18447p 2.81 1 1 1 15971.077 12573.907 +Q7KQM8 Uncharacterized protein, isoform D 3.08 1 1 0 6158.8765 7485.681 +Q9VU87 Vacuolar protein-sorting-associated protein 36 2.01 1 1 1 7567.8213 5616.9536 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 7136.831 8006.648 +Q9VP25 Carboxylic ester hydrolase 1.61 1 1 1 8563.233 10521.279 +Q9VBK9 Protein FAM98B 2.42 1 1 1 0.0 400.66266 +Q9VZC8 GEO12024p1 6.16 1 1 1 11189.859 17631.945 +Q9VDY6 RNA polymerase II subunit M 2.45 1 1 1 1938.999 2163.0386 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 7971.155 11461.618 +Q9VM54 J domain-containing protein 3.9 1 1 1 1896.142 894.7107 +Q9VZE6 Ribosome biogenesis protein BRX1 homolog 2.51 1 1 1 4504.567 5829.0835 +Q7JV70 Activity-regulated cytoskeleton associated protein 2 3.63 1 1 1 2384.6135 3369.5059 +Q7JYV7 Adenylate kinase isoenzyme 6 homolog 4.57 1 1 1 4703.0986 4037.2058 +Q4AB30 GUK-holder, isoform C 1.25 1 1 0 2184.6072 2015.7621 +B7Z153 Dpr-interacting protein beta, isoform C 1.98 1 1 0 586.91266 830.0705 +Q9W123 Protein painting of fourth 2.22 1 1 0 3726.3293 3941.184 +Q9W2C9 Lysyl oxidase-like 2 1.57 1 1 1 27965.918 36164.848 +Q9VGZ2 FI06805p 3.86 1 1 1 6664.109 11619.829 +Q7JWS8 AT17867p 10.26 2 2 2 13457.717 23987.81 +Q7JY80 M-spondin, isoform A 2.33 1 1 1 560.44855 642.2968 +E1JHX0 MIP29328p 3.76 1 1 1 16144.463 20782.12 +D6W4V3 MIP19557p 4.74 1 1 0 2601.5093 2011.4731 +Q9W062 Microfibrillar-associated protein 1 2.3 1 1 1 1996.4689 2019.1951 +Q9VWS3 Rab11 interacting protein, isoform A 1.2 1 1 0 3763.2947 3973.902 +Q9V9R3 adenylate cyclase 0.6 1 1 1 4368.399 4867.2812 +Q9VE01 Probable cytochrome P450 12a5, mitochondrial 1.49 1 1 1 6883.9795 11661.275 +P39205 Molybdenum cofactor synthesis protein cinnamon 2.16 1 1 1 1873.7659 2708.8574 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 0.81 1 1 0 15363.621 14332.352 +M9PE65 Axotactin 0.55 1 1 1 1702.7378 776.80524 +Q8IRK0 GH04558p 3.9 1 1 1 4199.7983 4227.495 +X2JC90 Uncharacterized protein, isoform K 3.22 1 1 0 8039.269 8205.672 +A0A6M3Q6L8 Bruno 3, isoform Q 4.35 2 2 0 28232.601000000002 31277.186999999998 +P22978 Rhodanese domain-containing protein CG4456 9.01 1 1 0 2822.0366 2786.7043 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 33093.89 34486.117 +Q9VV21 GEO07736p1 16.26 1 2 1 16374.304 18825.0635 +P07186 Chorion protein S19 14.45 1 2 1 2105.26426 1492.6507299999998 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 0.0 368.10077 +Q9VL29 GEO11246p1 12.93 1 1 1 4838.512 5694.5137 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 2310.8499 1728.5486 +Q9W2F6 RE36793p 7.09 1 1 1 79983.016 58727.21 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 1 0 4231.226 3909.4666 +M9PC30 Uncharacterized protein, isoform Q 15.72 5 6 0 36877.8021 44782.0995 +Q9VV17 Uncharacterized protein, isoform A 4.37 1 1 1 7831.2344 8127.5635 +Q7K1D7 Choline/ethanolamine transporter FLVCR1 2.9 1 1 1 1906.4716 1803.7855 +Q9VNI6 Uncharacterized protein, isoform B 3.01 1 1 1 2358.8906 2490.8347 +Q9VHY5 Transcription initiation factor TFIID subunit 7 1.88 1 1 0 9310.565 10601.344 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 39961.93 48225.684 +Q9W513 GEO10196p1 12.86 1 1 1 225641.52 174469.02 +A8DYV9 GEO02589p1 10.53 1 1 1 17088.371 28153.156 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 10326.309 12166.79 +O76513 Cyclin-H 3.7 1 1 1 4213.189 3874.6755 +Q8IPJ5 FI18525p1 3.83 1 1 1 1947.2385 2004.4861 +Q9W0B6 LD14179p 1.48 1 1 1 3391.2026 4909.4043 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 2260.1355 664.4174 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 712.19714 2361.4602 +Q05201 Protein phosphatase eya 2.22 1 1 0 4323.426 4490.662 +Q9VIM8 RE22905p 1.6 1 1 1 6541.0723 8590.696 +Q7JRC9 RE73310p 1.89 1 1 1 2417.0222 2718.1965 +Q9VGJ7 FI23918p1 1.01 1 1 1 4157.6904 5537.6475 +Q8IPS9 Small integral membrane protein 8 10.59 1 1 1 10000.573 7340.388 +Q9VG38 Suppressor of fused homolog 1.71 1 1 1 16725.686 15482.925 +M9PCM2 Uncharacterized protein, isoform B 11.11 2 2 2 52787.645000000004 69099.271 +A1A753 IP17594p 10.11 1 1 1 8815.508 12798.746 +Q9VX56 LD03052p 5.94 1 1 1 983.5687 636.7786 +Q9W112 Neuralized-like protein 2 3.11 1 1 1 6025.2783 6143.1343 +A0A0B4K6Z5 GEO13417p1 6.1 1 1 0 6066.0723 5013.353 +Q8MQJ7 Autophagy-related 1, isoform B 1.05 1 1 0 922.1587 539.5541 +Q7JY99 glycerol kinase 1.34 1 1 1 980.08704 745.26245 +Q8MYV9 GEO12865p1 11.04 1 3 1 46823.254 63254.626 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 5371.139 5521.886 +Q9W366 RE59932p 1.08 1 1 1 10532.428 12937.522 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 1 972.43884 775.7597 +Q8T4F7 Protein enabled 0.82 1 1 0 4072.622 5176.472 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 2 1 327971.48 165797.082 +Q9VB08 E3 ubiquitin-protein ligase RING1 2.53 1 1 1 528.39514 473.16345 +Q9VBQ5 LD38433p 1.91 1 1 1 4933.1226 5322.3 +Q9VE49 LP06937p 1.86 1 1 1 506.64758 514.11804 +Q9VH82 FI02086p 7.14 1 1 1 6791.6343 9982.958 +Q9W092 Probable chitinase 2 1.65 1 1 0 4351.586 5424.5225 +Q9V3E5 Tetraspanin 3.75 1 1 1 4299.0923 3994.7566 +A0A0B4LFF6 Uncharacterized protein, isoform B 2.69 1 1 0 2326.6497 2771.139 +Q9VEX0 Extracellular sulfatase SULF-1 homolog 0.9 1 1 0 3916.2837 6721.4585 +Q9VDD5 Common Dpr-interacting protein 3.07 1 1 1 2608.4048 3598.5388 +Q9VPN3 GEO07775p1 12.0 1 1 1 5439.5938 8792.139 +A0A0B4KG96 polynucleotide adenylyltransferase 1.45 1 1 0 932.6961 1684.0032 +Q9VKE7 GH09228p1 10.39 1 1 1 2405.0256 2815.525 +Q7KA66 Serpin 43Aa 2.56 1 1 1 2598.295 2533.9258 +A1Z8R1 Expansion, isoform A 3.12 1 1 1 22280.35 23725.531 +A8JUR4 Kinesin associated protein 3, isoform H 1.59 1 1 0 1898.9392 859.8827 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 156987.112 188137.461 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 17252.395 29683.545 +Q9VV94 Uncharacterized protein 10.66 1 1 1 4337.9233 5643.348 +Q9VEF0 LD33778p 3.49 1 1 1 877.50916 1646.102 +Q9VJ11 Calcium load-activated calcium channel 4.92 1 1 1 15677.493 11633.501 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 6192.637 6552.393 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 60493.816 74177.24 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 207090.722 272574.515 +Q5BIL9 SD21168p 1.63 1 1 0 11714.541 15030.933 +Q9V3L1 Bifunctional heparan sulfate N-deacetylase/N-sulfotransferase 0.95 1 1 0 7933.4844 8555.672 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 0.0 367.70602 +Q9VJ34 Glutathione S-transferase C-terminal domain-containing protein homolog 2.91 1 1 1 70736.234 102287.33 +Q9VHJ4 GH04846p 2.25 1 1 1 4252.9478 4446.609 +Q9W226 GEO07239p1 5.88 1 1 1 3050.187 2750.5422 +Q9W0I9 FI01805p 3.22 1 1 1 2356.7158 1726.1255 +Q9VC44 Allatostatin-A 4.64 1 1 0 8503.945 9644.96 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 16475.344 18064.844 +P07701 Salivary glue protein Sgs-5 7.36 1 1 1 3608.529 3138.2363 +Q8IMT4 CHK kinase-like domain-containing protein 2.34 1 1 1 2437.2703 2350.119 +Q8SY53 GH11935p 2.73 1 1 1 3158.5093 2468.955 +Q7JVN6 GH17672p 2.24 1 1 1 6077.0566 7381.511 +P25159 Maternal effect protein staufen 0.68 1 1 0 649.7327 563.6139 +Q9VLE1 RH63449p 4.29 1 1 1 31547.574 24604.588 +Q9W3T5 Ubiquinol-cytochrome c reductase complex assembly factor 5 10.13 1 1 1 3018.5417 3582.497 +Q24040 Protein big brother 5.16 1 1 0 727.4122 716.6294 +Q6XPX3 Phospholipase A2 4.3 1 1 1 7039.5034 9272.208 +F3YD72 SD23574p 20.45 1 1 1 1924.1129 2338.9077 +Q8SYR5 GEO07715p1 7.1 1 1 1 4648.1226 4818.697 +Q8STI6 RE53401p 4.27 1 1 1 1005.5951 805.6544 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 4349.8687 3016.0886 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 3760.2053 3770.6155 +Q7K2B1 LD11371p 5.85 1 1 1 12191.741 14835.849 +Q9VS90 Missing minor mitochondria 1.15 1 1 1 15252.283 13743.892 +Q9VJ46 UDP-glucuronosyltransferase 1.93 1 1 1 17419.053 16039.845 +Q9W168 GEO02361p1 9.23 1 1 1 4999.276 11491.041 +A0A0B4KER3 Stac-like, isoform O 1.04 1 1 0 6443.147 8670.348 +Q9VN27 Putative lipoyltransferase 2, mitochondrial 3.85 1 1 0 0.0 442.13922 +Q9VVX3 Frizzled-2 1.15 1 1 0 582.83606 675.3505 +Q9VPT8 Cleavage and polyadenylation specificity factor subunit 4 4.05 1 1 1 19529.297 24756.305 +A0A0B4KFW1 Flyers-cup, isoform G 1.45 1 1 0 17341.525 18249.664 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 4033.9473 10769.2295 +Q9V3H9 Zinc finger CCCH domain-containing protein 14 1.1 1 1 1 4150.4907 3736.9265 +Q6IGE3 DNA-directed RNA polymerases I, II, and III subunit RPABC4 12.28 1 2 1 30545.734 41664.776 +A1A6X2 IP16893p 12.07 1 1 1 15947.405 12888.446 +Q8MZ28 GEO09656p1 8.16 1 1 1 25084.98 30873.023 +A0A021WZA4 Sodium/potassium/calcium exchanger 5 1.6 1 1 0 5493.1543 5936.4106 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 2080.5374 2564.2861 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 33280.833 34694.744 +Q7JXE1 Bunker gear 4.75 1 1 1 0.0 427.88074 +Q9VL31 RIP-like protein 4.06 1 1 1 6062.9717 7997.512 +Q9V9V9 Alpha/beta-tubulin-N-acetyltransferase 9 4.5 1 1 0 5680.583 6686.03 +M9PC68 Dpt-YFP repressor by overexpression, isoform D 2.11 1 1 0 1650.7098 2154.8137 +Q9VX71 Uncharacterized protein 5.2 1 1 1 65730.164 62402.766 +Q8IQ51 trypsin 3.05 1 1 1 11475.929 8780.011 +Q9VHS0 FI07206p 2.49 1 1 1 3265.9238 3171.2666 +Q9VE10 Uncharacterized protein 2.69 1 1 1 6890.0664 8033.472 +Q95T98 Elongation of very long chain fatty acids protein 2.54 1 1 1 3332.6418 3271.4475 +O97159 ATP-dependent chromatin remodeler Mi-2 0.45 1 1 0 1881.5122 2125.6921 +Q9VQY8 Vacuolar protein sorting-associated protein 53 homolog 0.9 1 1 1 451.06912 369.8347 +Q8IP73 DET1- and DDB1-associated protein 1 7.34 1 1 1 1763.2788 2363.3545 +Q9VC65 Iron-sulfur cluster assembly 2 homolog, mitochondrial 10.07 1 1 1 6814.8955 7452.7676 +Q9XZF0 Protein yippee 5.79 1 1 0 14444.278 12321.843 +A8DYR5 Shaw-like, isoform C 1.17 1 1 0 620.58075 0.0 +Q9VD92 Protein archease-like 5.77 1 1 1 9192.618 9177.257 +A0A0B4KH69 Uncharacterized protein, isoform B 5.49 1 1 0 6938.7847 6406.343 +E1JIF5 Uncharacterized protein, isoform D 4.28 1 1 0 2108.6748 3755.7869 +Q9W009 GH12037p 3.17 1 1 1 658.64844 0.0 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 28758.125 20223.736 +Q8MKW7 Ribonuclease Z, mitochondrial 1.31 1 1 1 2175.242 2223.3584 +Q961D1 Cyclin-K 1.75 1 1 1 1751.8359 1870.5029 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 62170.566 63149.727 +Q24151 Signal transducer and transcription activator 1.31 1 1 0 2303.1052 2236.5386 +Q9VKZ7 Nicalin 1.25 1 1 1 24734.824 25248.05 +P23380 V-type proton ATPase 16 kDa proteolipid subunit c 11.32 1 2 1 35216.233 23408.653 +Q8T0B1 Nuclear envelope phosphatase-regulatory subunit 1 homolog 8.4 1 1 1 1789.8105 898.0084 +Q9VNL1 Odorant-binding protein 83cd 2.89 1 1 1 18777.875 20671.75 +Q9VV59 Nondiscriminating glutamyl-tRNA synthetase EARS2, mitochondrial 1.76 1 1 1 4132.283 4150.7427 +Q9VS47 Lysosomal dipeptide transporter MFSD1 2.09 1 1 1 6053.123 8565.375 +P54398 Fat body protein 2 3.52 1 1 0 20358.332 42907.496 +Q9W394 Activator of basal transcription 1 3.77 1 1 1 1658.6366 3181.8582 +Q9VJ98 GH05617p 2.44 1 1 1 5599.4683 4621.5767 +O62531 Adaptor protein complex 1, mu subunit 1.88 1 1 1 7175.4644 7895.5996 +A0A0B4LFH8 ATP-citrate synthase 9.22 8 10 0 202654.5577 263291.9375 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 57.67 17 75 0 34088.3184 39803.8333 +M9MRN1 Supervillin, isoform AG 2.51 5 5 0 70708.7043 82648.3063 +M9MRN5 Supervillin, isoform G 1.12 2 2 0 16929.5375 19285.177 +M9PC24 Uncharacterized protein, isoform K 12.95 6 9 0 69707.22899999999 65702.77900000001 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTc.txt b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTc.txt new file mode 100644 index 0000000..3e7d66d --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_all_from_psm_pdlike_ms3fix/pool_TMTc.txt @@ -0,0 +1,4122 @@ +Accession Description Coverage [%] # Peptides # PSMs # Unique Peptides Abundance: F8: 130C, Sample, n/a, ctrl_pool_1 Abundance: F8: 131, Sample, n/a, ctrl_pool_2 Modifications +A0A0B4K692 Neprilysin-2 7.62 6 7 6 106758.204 135820.9774 +A0A0B4K7J2 E3 SUMO-protein ligase RanBP2 4.16 10 10 10 186510.89578 208763.9309 +A0A0B4KGY6 RNA-binding protein Pasilla 20.77 19 75 19 9864302.76613 11049327.04008 +A0A0B7P9G0 Unextended protein 11.87 9 10 9 42925.22655 57393.875199999995 +A0A126GUP6 Melanization protease 1 31.25 10 14 9 130082.9321 160849.9145 +A0A1F4 Protein eyes shut 12.91 28 65 0 2740308.02697 3423438.8529 +A1Z6H7 Nuclear pore membrane glycoprotein 210 3.2 5 5 5 14448.4653 17424.0265 +A1Z6S7 GTPase-GDP dissociation stimulator vimar 21.73 13 17 11 193289.9252 215856.85187 +A1Z713 Intermembrane lipid transfer protein Vps13 0.96 3 3 3 13918.575060000001 22893.8603 +A1Z7G7 Latrophilin Cirl 1.24 2 2 0 8417.45425 14368.0043 +A1Z7T0 Serine/threonine-protein kinase N 3.78 4 4 0 17713.5631 23174.9382 +A1Z830 28S rRNA (uridine-N(3))-methyltransferase 10.1 5 6 1 19552.482 22917.344 +A1Z877 Nidogen 21.48 28 49 28 1114639.68522 1502314.07157 +A1Z8D0 Periodic tryptophan protein 1 homolog 15.25 5 7 5 73408.47614 81661.9758 +A1Z8P9 Nucleoprotein TPR 24.08 56 65 0 1321244.0574999999 1613659.71607 +A1Z9A2 UPF0587 protein CG4646 24.54 4 8 0 322442.4388 451787.44200000004 +A1Z9A8 Small ribosomal subunit protein mS39 19.33 9 11 9 109087.60579999999 128013.4913 +A1Z9E2 Protein lin-54 homolog 24.32 22 26 0 452477.2947 586651.88726 +A1Z9S1 Biogenesis of lysosome-related organelles complex 1 subunit 1 31.29 3 4 3 11537.30155 13897.29172 +A1Z9X0 Atypical protein kinase C 3.96 2 2 0 7139.143 9674.205 +A1ZA47 PDZ and LIM domain protein Zasp 28.08 49 133 0 128811.1578 172382.0767 +A1ZA77 Transmembrane protein 208 10.92 2 2 2 53348.136 47918.947 +A1ZAJ2 Kinesin-like protein unc-104 5.09 8 8 0 71718.4208 100358.6418 +A1ZAX1 Eukaryotic translation initiation factor 3 subunit C 7.36 7 7 0 222943.95010000002 299721.6479 +A1ZBT5 Mediator of RNA polymerase II transcription subunit 8 6.75 2 2 2 18540.074 21781.215 +A2VEI2 Calcium uptake protein 1 homolog, mitochondrial 4.95 3 4 3 38807.8714 45921.386 +A4VCL2 Extracellular serine/threonine protein CG31145 3.22 2 2 0 11976.2835 13711.521700000001 +A8DYH2 Ubiquitin-fold modifier 1 71.26 5 11 0 1130089.2110000001 1514004.59693 +A8DYP0 Protein Obscurin 1.87 8 8 8 45736.42219 51957.612 +B7YZT2 Mitochondrial fission 1 protein 38.96 6 13 6 484190.5185 509994.91183 +C0HK92 Uncharacterized protein CG45076 59.45 40 132 0 12849915.84095 14567870.2829 +C0HK94 Uncharacterized protein CG45078 64.42 14 34 12 1200810.91263 1380841.49407 +C0HK95 Protein anoxia up-regulated 87.02 12 67 10 3899630.53287 4457931.467 +C0HKA0 Small ribosomal subunit protein uS11A 47.68 7 23 0 1277916.3635 1863887.70825 +C0HL62 Larval cuticle protein 65Ab1 46.15 3 8 0 164405.928 386197.601 +C0HL66 Histone H3.3A 55.15 7 37 0 92493.0117 39365.72327 +C0HLZ9 Baramicin A1 17.51 4 6 0 202526.3498 269424.664 +C4NYP8 Hsc70-interacting protein 1 40.85 15 41 0 4693163.2262699995 5167984.6912 +E1JIT7 PH and SEC7 domain-containing protein 2.12 3 3 3 16313.7114 23034.9781 +F3YDF1 ATP-dependent zinc metalloprotease YME1L 12.7 9 13 0 125298.7224 155261.6247 +M9NDE3 Protein bark beetle 4.42 14 14 14 82355.68723 110044.20214 +M9PF61 Aldo-keto reductase 1B 60.0 21 73 21 11867791.5464 16051474.8798 +M9PFN0 Phosphatase Herzog 21.88 7 13 7 110982.5651 166611.0875 +O01367 Protein held out wings 18.52 7 14 0 362195.5477 426843.02270000003 +O01404 Peptidylglycine alpha-hydroxylating monooxygenase 17.26 6 16 0 496669.7525 721539.4844 +O01666 ATP synthase subunit gamma, mitochondrial 59.26 19 142 19 11063762.181739999 11275764.85455 +O02194 Presenilin homolog 5.73 2 2 0 16708.14216 17830.746 +O02195 Eukaryotic translation initiation factor 3 subunit I 44.48 11 19 11 495452.05730000004 674554.7684 +O02649 Heat shock protein 60A 76.27 44 168 28 21403764.64608 26970019.96767 +O15943 Neural-cadherin 17.05 53 82 2 1619119.31115 2110617.51735 +O16797 Large ribosomal subunit protein uL3 15.62 8 13 8 372983.152 453647.157 +O17444 Vesicular acetylcholine transporter 10.9 5 7 5 67618.47284 85763.9551 +O17445 Large ribosomal subunit protein eL15 12.25 3 6 0 62962.048 69175.974 +O18333 Ras-related protein Rab-2 44.6 9 17 9 519492.94086000003 540749.9199 +O18334 Ras-related protein Rab6 33.17 8 22 0 93683.43400000001 119907.2709 +O18373 Inactive selenide, water dikinase-like protein 21.36 10 22 10 758517.22826 836380.78704 +O18388 Importin subunit beta 3.85 4 4 0 64137.057 88893.10380000001 +O18404 3-hydroxyacyl-CoA dehydrogenase type-2 83.53 18 148 18 15000784.00537 24997146.52655 +O18413 26S proteasome regulatory subunit 8 48.4 20 54 8 711304.5719 895852.32473 +O18640 Small ribosomal subunit protein RACK1 27.67 11 15 0 844045.6164 1094057.9141 +O44081 H/ACA ribonucleoprotein complex subunit 4 3.15 2 2 0 20020.268 16397.838 +O44342 Protein windbeutel 17.51 4 5 0 72354.9691 73734.3064 +O44386 Integrin alpha-PS3 7.26 8 10 6 119031.31066 139938.39387 +O44437 Small nuclear ribonucleoprotein Sm D3 24.5 4 6 4 206397.87529999999 234073.4157 +O46037 Vinculin 59.31 53 121 0 5224176.17296 5519756.9860000005 +O46084 Serine/threonine-protein phosphatase Pgam5, mitochondrial 3.46 1 1 0 8813.542 10103.206 +O46098 LYR motif-containing protein 4 homolog 69.57 8 18 8 1047974.9074 1315362.7741 +O46106 Splicing factor 3A subunit 3 23.06 9 11 9 290115.5025 409047.0524 +O46339 Homeobox protein homothorax 5.54 2 2 2 11980.081999999999 16489.184 +O61231 Large ribosomal subunit protein uL16 44.04 12 22 0 693459.37798 824112.79194 +O61305 DEAD-box helicase Dbp80 3.7 2 2 0 43219.08 57097.514 +O61307 Teneurin-m 2.01 4 4 0 115420.705 169413.06 +O61443 Mitogen-activated protein kinase p38b 15.89 6 10 3 129339.1102 181248.6302 +O61491 Flotillin-1 57.51 24 64 24 3032638.27404 3471695.5968 +O61722 PRL-1 phosphatase 67.05 10 24 10 529539.70677 681237.23797 +O62619 Pyruvate kinase 69.79 30 93 30 7506932.63944 9711156.51756 +O62621 Coatomer subunit beta' 2.08 2 2 2 16508.131699999998 19745.9877 +O76206 Putative riboflavin kinase 39.87 6 13 0 542106.8614 739023.3187000001 +O76454 Pterin-4-alpha-carbinolamine dehydratase 33.85 4 7 4 483087.83759999997 525505.2 +O76742 Ras-related protein Rab7 37.68 8 13 8 353645.4067 458208.6707 +O76878 RILP-like protein homolog 18.96 7 9 0 153623.8615 202702.1063 +O76902 Pleckstrin homology domain-containing family F member 1 homolog 11.39 4 10 4 232514.184 306783.4484 +O76927 Small ribosomal subunit protein eS21 72.29 6 20 0 934614.0201 741356.9112 +O77051 Transcription factor E2F2 16.76 6 8 0 65304.286 93919.8304 +O77263 tRNA (guanine-N(7)-)-methyltransferase 24.61 4 6 4 67389.7185 86898.6094 +O77277 Torsin-like protein 10.0 4 5 0 84976.507 94888.1984 +O77410 Eukaryotic translation initiation factor 3 subunit E 8.97 4 5 4 71193.8536 111361.482 +O96553 C-1-tetrahydrofolate synthase, cytoplasmic 20.35 21 24 0 562928.6634 841273.10106 +O96690 Protein PDF 15.69 1 2 1 15417.949 19345.787 +O96827 Probable elongation factor 1-beta 83.78 18 101 0 8333832.757230001 9297986.89001 +O97067 Probable peptidyl-tRNA hydrolase 2 30.65 5 9 0 191453.9077 213916.5743 +O97125 Heat shock protein 68 30.39 17 74 11 324429.2814 396724.42845 +O97172 UPF0729 protein CG18508 29.29 3 3 0 33372.421 36051.729 +O97394 Protein sidekick 0.45 1 1 0 712.1333 1799.563 +O97422 Galactosylgalactosylxylosylprotein 3-beta-glucuronosyltransferase I 8.17 3 3 3 37421.972 54389.695999999996 +O97477 Inositol-3-phosphate synthase 29.56 14 50 14 2724896.1783000003 3606175.5552 +P00334 Alcohol dehydrogenase 88.28 23 232 23 66368517.48843 87788676.66415 +P00408 Cytochrome c oxidase subunit 2 33.77 7 27 7 3474216.9581 4964156.2453 +P00522 Tyrosine-protein kinase Abl 2.9 3 4 0 36123.111300000004 43482.0853 +P02255 Histone H1 25.0 5 6 0 54394.3361 62838.4777 +P02283 Histone H2B 56.91 8 80 8 21331168.28395 20657281.07946 +P02299 Histone H3 55.15 7 35 2 9383372.80903 9988335.28326 +P02515 Heat shock protein 22 38.51 7 11 7 120053.52453 138897.16319999998 +P02516 Heat shock protein 23 84.95 16 72 0 5609492.73366 7026892.08823 +P02517 Heat shock protein 26 48.08 8 23 0 1598224.7374 2214539.0089 +P02518 Heat shock protein 27 55.87 11 23 0 993666.1539500001 1200944.04656 +P02572 Actin-42A 74.2 30 655 3 191959398.15389 244230583.74659 +P02574 Actin, larval muscle 66.22 27 546 0 851459.11546 1123753.9305 +P02828 Heat shock protein 83 51.74 42 171 0 14431366.92821 19028000.80502 +P02843 Vitellogenin-1 65.15 29 248 0 69248722.31308 76416811.45811 +P02844 Vitellogenin-2 66.97 26 196 0 45760414.75286 55170741.74916 +P04197 Myb protein 2.28 2 2 0 11597.2429 15836.061 +P04359 Large ribosomal subunit protein eL32 38.81 5 9 5 1284914.887 1252723.236 +P04388 Ras-like protein 2 25.0 4 8 4 311223.56419999996 392909.86899999995 +P05031 Aromatic-L-amino-acid decarboxylase 6.47 2 2 2 13745.3428 22651.3226 +P05205 Heterochromatin protein 1 44.66 9 23 9 876573.38759 1168289.7662 +P05303 Elongation factor 1-alpha 2 53.9 27 157 0 2697077.633 3634651.71563 +P05389 Large ribosomal subunit protein P2 29.2 3 13 3 4697600.7277 5635587.2508 +P05552 Transcription factor Adf-1 17.56 4 5 0 150614.97100000002 165784.865 +P05661 Myosin heavy chain, muscle 53.31 127 445 0 936576.5676300001 1126858.44875 +P05812 Heat shock protein 67B1 22.7 8 11 8 147923.61922 201066.63184000002 +P06002 Opsin Rh1 7.24 3 7 3 900940.371 1012497.1899000001 +P06603 Tubulin alpha-1 chain 59.33 26 218 0 34151365.48973 45780677.887889996 +P06607 Vitellogenin-3 80.0 35 270 0 109867991.20427 127187102.00147 +P06742 Myosin light chain alkali 55.48 9 117 0 27042222.483349998 31770529.64045 +P07207 Neurogenic locus Notch protein 1.0 2 2 0 5336.1309 7524.4823 +P07486 Glyceraldehyde-3-phosphate dehydrogenase 1 76.81 23 131 9 5176491.50366 6088553.83616 +P07487 Glyceraldehyde-3-phosphate dehydrogenase 2 84.04 23 146 0 24319024.76766 32787021.73227 +P07665 Serendipity locus protein beta 5.9 3 4 0 102315.5291 127503.93359999999 +P07668 Choline O-acetyltransferase 14.7 8 8 8 122829.6529 164409.766 +P07764 Fructose-bisphosphate aldolase 88.92 42 386 0 103879476.53634 137245209.91943 +P08111 Lethal(2) giant larvae protein 9.3 10 10 0 117464.9377 120825.35194 +P08120 Collagen alpha-1(IV) chain 6.35 9 22 9 361363.0689 471315.36702 +P08144 Alpha-amylase A 22.87 10 19 0 623561.94086 778010.9646000001 +P08171 Esterase-6 15.26 8 18 0 941965.2389 1060967.1322 +P08181 Casein kinase II subunit alpha 10.42 3 5 0 157479.70510000002 200545.1343 +P08182 Casein kinase II subunit beta 38.72 8 19 2 965749.2023 1215241.89276 +P08570 Large ribosomal subunit protein P1 70.54 4 46 0 12086355.2062 13910963.8468 +P08645 Ras-related protein Rap1 40.76 6 13 0 361597.7869 398969.0163 +P08646 Ras-like protein 1 38.62 7 19 7 524261.96324 867439.7487 +P08736 Elongation factor 1-alpha 1 49.46 27 176 12 43213738.66638 52427763.36615 +P08761 Peptide methionine sulfoxide reductase 35.77 7 12 0 321555.5195 368547.5659 +P08879 Nucleoside diphosphate kinase 69.28 8 123 0 13255473.44442 18351358.16736 +P08928 Lamin 75.72 60 199 59 11179732.71953 13870276.99144 +P08985 Histone H2A.v 42.55 10 39 8 8392639.7676 10459229.2243 +P09040 Drosulfakinins 17.73 3 4 3 175479.1825 171419.2699 +P09180 Large ribosomal subunit protein uL4 45.14 22 52 22 4297772.66 5186397.7458 +P09208 Insulin-like receptor 2.19 5 6 5 16967.53013 16642.25543 +P09491 Tropomyosin-2 82.39 40 292 3 1267810.6542 1053774.653 +P0DKM0 Cytochrome c oxidase assembly factor 3, mitochondrial 41.38 5 9 5 352180.988 329212.91469999996 +P10379 Protein unzipped 27.46 11 26 0 894107.2050000001 1354837.8392999999 +P10552 FMRFamide-related peptides 8.36 3 4 3 413423.949 471729.654 +P10676 Neither inactivation nor afterpotential protein C 30.38 50 73 12 5974459.4363 7105509.5674 +P10981 Actin-87E 69.15 30 649 0 5188933.96865 6368072.8223 +P10987 Actin-5C 74.2 31 679 0 4069716.0045 4125423.5447 +P11046 Laminin subunit beta-1 29.14 47 83 47 2645818.56377 3475595.8768 +P11146 Heat shock 70 kDa protein cognate 2 11.37 6 39 1 635.1386 403.5789 +P11147 Heat shock 70 kDa protein cognate 4 86.18 55 389 0 65405629.69022 79343227.75089 +P11584 Integrin beta-PS 27.54 22 46 0 888668.7372 1271097.25841 +P12024 Chaoptin 34.98 42 110 0 9002738.9951 10872831.67314 +P12080 Integrin alpha-PS2 12.39 17 21 17 511663.40926 691163.82058 +P12252 3',5'-cyclic-AMP phosphodiesterase 18.88 16 26 0 17515.489199999996 16355.24625 +P12370 cAMP-dependent protein kinase catalytic subunit 1 51.84 21 54 20 2537913.074 2977934.74265 +P12426 Adenine phosphoribosyltransferase 20.88 4 4 0 45641.2924 60913.634900000005 +P12613 T-complex protein 1 subunit alpha 23.88 13 17 0 525590.39274 671312.0844 +P12646 Glucose-6-phosphate 1-dehydrogenase 3.63 2 3 2 51959.312999999995 73704.62299999999 +P12881 Proteasome subunit alpha type-1 64.52 16 47 0 4359355.4184 5512218.4975000005 +P12982 Serine/threonine-protein phosphatase alpha-2 isoform 22.52 6 16 1 318323.2807 378801.452 +P13008 Small ribosomal subunit protein eS26 21.05 2 10 0 904529.7317 943511.8426000001 +P13060 Eukaryotic translation elongation factor 2 27.96 24 44 24 3691817.93585 5224359.3171 +P13217 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase 43.56 47 121 0 4121501.86536 5228279.0033 +P13395 Spectrin alpha chain 66.34 150 596 0 54113805.95269 67219867.15812 +P13469 DNA-binding protein modulo 6.83 4 4 0 65944.9555 113742.922 +P13496 Dynactin subunit 1 19.53 26 29 26 415328.5401 514570.0264 +P13607 Sodium/potassium-transporting ATPase subunit alpha 44.67 44 149 0 9356127.32337 12802322.97423 +P13677 Protein kinase C, eye isozyme 10.71 8 13 7 714556.7267 964482.39 +P13678 Protein kinase C 6.22 5 6 0 93769.8328 126588.2334 +P13706 Glycerol-3-phosphate dehydrogenase [NAD(+)], cytoplasmic 87.88 29 188 0 18110.15 9647.07 +P14199 Protein ref(2)P 21.04 10 16 10 790648.1447000001 908110.5907000001 +P14318 Muscle-specific protein 20 83.15 21 93 21 13158798.62937 16759517.4048 +P14484 Pupal cuticle protein 27.17 5 23 5 1134012.4165999999 1290969.896 +P15007 Enolase 77.8 36 335 1 68708138.97986 86538638.81318 +P15215 Laminin subunit gamma-1 38.87 56 107 0 3371826.12212 4992477.8202 +P15330 Embryonic polarity protein dorsal 5.31 4 4 0 37495.04696 48131.0969 +P15357 Ubiquitin-ribosomal protein eS31 fusion protein 42.31 6 62 1 8322995.393700001 7588875.24395 +P15364 Protein amalgam 24.62 6 10 0 175025.59819999998 185715.158 +P15372 Phosrestin-2 69.78 24 97 0 4168231.79795 5850243.76734 +P15425 Peptidyl-prolyl cis-trans isomerase, rhodopsin-specific isozyme 24.05 4 5 4 129177.421 213848.32 +P16378 G protein alpha o subunit 26.27 11 43 8 7789695.069 8706270.3948 +P16554 Protein numb 19.06 9 11 0 199403.54394 259285.2923 +P16568 Protein bicaudal D 20.59 17 19 0 371136.6071 484171.818 +P16620 Tyrosine-protein phosphatase 69D 5.81 8 9 8 209937.3684 301782.4497 +P16621 Tyrosine-protein phosphatase Lar 0.59 1 1 0 5473.0376 7400.335 +P16914 Protein elav 34.58 12 38 0 1644879.80096 1953523.3523 +P17210 Kinesin heavy chain 46.77 45 96 45 3418403.88582 4512398.6055499995 +P17276 Protein henna 40.04 15 35 0 998494.54643 1179175.0265 +P17336 Catalase 44.47 19 65 19 3839147.47304 5102635.8953 +P17704 Small ribosomal subunit protein eS17 58.78 9 30 9 2961913.5674 4019135.1763 +P17719 Dihydrofolate reductase 26.92 4 8 4 96515.894 133223.4471 +P18053 Proteasome subunit alpha type-4 56.06 13 46 11 3837410.511 4885697.2765 +P18173 Glucose dehydrogenase [FAD, quinone] 2.56 2 2 0 23171.848 24125.13 +P18431 Protein kinase shaggy 43.77 19 57 0 2086713.8013 2963050.86645 +P18432 Myosin regulatory light chain 2 84.68 18 240 18 61802436.15586 79950583.77445 +P18459 Tyrosine 3-monooxygenase 16.75 11 13 0 157657.6666 181872.1173 +P18824 Armadillo segment polarity protein 17.67 13 22 0 175336.66580000002 182795.4167 +P19107 Phosrestin-1 71.82 33 296 33 25605179.20806 32264080.8225 +P19109 ATP-dependent RNA helicase p62 21.7 15 25 0 599724.7548 855187.5177 +P19334 Transient receptor potential protein 4.39 6 7 5 49510.244 55579.47675 +P19339 Protein sex-lethal 5.65 2 2 0 12310.8671 21376.398 +P19351 Troponin T, skeletal muscle 53.4 35 115 0 1372160.3157 1663018.0525 +P19889 Large ribosomal subunit protein uL10 50.79 15 61 0 13881166.5316 16995677.1747 +P20007 Phosphoenolpyruvate carboxykinase [GTP] 5.87 4 4 3 15943.6028 20362.260000000002 +P20153 Protein ultraspiracle 1.57 1 1 0 16628.492 17997.959 +P20228 Glutamate decarboxylase 20.78 11 32 0 2838366.4073 3367229.2238 +P20232 Transcription elongation factor S-II 38.02 12 19 0 967072.24815 898842.8435 +P20240 Otefin 40.8 14 20 14 350765.12866 347085.89793 +P20241 Neuroglian 26.04 33 88 0 3869325.0789 4675941.66894 +P20348 Sex-regulated protein janus-A 39.26 6 13 6 752135.15785 862552.9985 +P20351 Tryptophan 2,3-dioxygenase 9.5 3 3 3 46640.458 47664.87 +P20354 G protein alpha s subunit 47.01 15 32 1 2306.8252 2215.4709000000003 +P20385 Chorion transcription factor Cf2 11.96 6 6 0 56947.752700000005 59837.23332 +P20432 Glutathione S-transferase D1 52.15 14 87 11 13760112.453 17046941.8134 +P20477 Glutamine synthetase 1, mitochondrial 53.38 20 72 0 9038209.2847 11479353.8826 +P20478 Glutamine synthetase 2 cytoplasmic 76.96 26 204 0 37688974.39448 45481393.495009996 +P21187 Polyadenylate-binding protein 26.81 13 31 13 1002478.1579 1353463.3893 +P21914 Succinate dehydrogenase [ubiquinone] iron-sulfur subunit, mitochondrial 60.61 20 123 18 12909160.44005 14351918.399500001 +P22465 Annexin B10 76.01 24 137 24 15930742.7047 21255841.6125 +P22769 Proteasome subunit alpha type-7-1 58.63 12 28 10 1769719.60355 2238061.5042 +P22813 Heat shock factor protein 4.34 3 3 0 23050.302 27707.495000000003 +P22815 Protein bride of sevenless 2.01 2 3 2 21388.8486 25230.0034 +P22979 Heat shock protein 67B3 55.28 7 20 7 887388.40021 1064659.2447 +P23128 ATP-dependent RNA helicase me31b 12.2 5 6 5 71587.7401 89426.59240000001 +P23226 205 kDa microtubule-associated protein 27.34 25 45 0 884251.78785 1006220.33742 +P23257 Tubulin gamma-1 chain 3.58 2 2 0 15754.6086 24286.862999999998 +P23625 G protein alpha q subunit 57.51 21 85 18 6855118.3833 8280597.6541 +P23654 Neurotactin 15.84 11 14 0 411665.0895 570717.4037 +P23696 Serine/threonine-protein phosphatase PP2A 37.86 9 15 0 383316.1235 328494.11 +P23779 Cystatin-like protein 57.94 7 40 7 3825667.0483500003 3968518.46061 +P24156 Prohibitin 1 68.12 18 72 0 3279211.7996 4366421.12579 +P25007 Peptidyl-prolyl cis-trans isomerase 44.05 12 142 9 37126817.00787 40190294.45788 +P25153 Ubiquitin-conjugating enzyme E2-17 kDa 17.22 2 3 0 195958.256 273513.65 +P25160 ADP-ribosylation factor-like protein 1 10.56 2 4 2 27624.4908 35561.0853 +P25161 Probable 26S proteasome non-ATPase regulatory subunit 3 29.76 17 28 0 632838.53172 954392.04133 +P25171 Regulator of chromosome condensation 10.42 5 6 5 88363.40239999999 156284.867 +P25172 Protein suppressor 2 of zeste 1.61 2 2 0 5485.52 7879.4988 +P25228 Ras-related protein Rab-3 37.73 7 22 0 320516.9637 469408.6112 +P25455 1-phosphatidylinositol 4,5-bisphosphate phosphodiesterase classes I and II 6.37 9 10 9 155234.0862 189003.884 +P25822 Maternal protein pumilio 3.13 5 6 0 79468.08039999999 99191.7792 +P25843 Profilin 88.89 7 37 0 1170211.31737 1505850.54748 +P25867 Ubiquitin-conjugating enzyme E2-17 kDa 12.24 2 9 0 2077030.8 2425457.3619999997 +P26270 26S proteasome non-ATPase regulatory subunit 7 15.38 6 12 0 499858.9287 634622.6169 +P26308 Guanine nucleotide-binding protein subunit beta-1 25.29 9 25 0 1808545.9325 2094899.6968 +P26686 Serine-arginine protein 55 19.68 7 14 0 578323.1103000001 701608.8883 +P27716 Innexin inx1 2.49 1 1 0 3532.3135 6104.789 +P27779 Pupal cuticle protein Edg-78E 9.84 2 9 0 1418239.7903 506771.3613 +P28668 Bifunctional glutamate/proline--tRNA ligase 4.67 8 9 8 93081.73060000001 114827.023 +P29052 Transcription initiation factor IIB 16.83 6 10 0 203918.3525 248724.654 +P29310 14-3-3 protein zeta 68.55 19 282 0 73971745.70666 76907840.43648 +P29327 Small ribosomal subunit protein eS6 20.16 5 15 2 475606.37553 519350.2028 +P29413 Calreticulin 58.13 22 67 0 13832127.73195 18851434.43558 +P29613 Triosephosphate isomerase 78.54 20 145 19 38270082.12573 48687533.67039 +P29742 Clathrin heavy chain 7.99 13 14 0 306578.41397 335768.00836 +P29746 Protein bangles and beads 63.12 27 57 27 3452770.16503 3996022.5263 +P29829 Guanine nucleotide-binding protein subunit beta-2 50.58 17 78 17 6914144.92794 9317360.43905 +P29843 Heat shock 70 kDa protein cognate 1 27.15 16 75 2 117363.0602 142983.9065 +P29844 Endoplasmic reticulum chaperone BiP 65.24 43 255 0 23048070.76915 27066847.29488 +P29845 Heat shock 70 kDa protein cognate 5 59.18 46 196 0 18666279.77646 23601286.85291 +P30432 Furin-like protease 2 2.5 4 4 0 20285.087 30301.631 +P31007 Disks large 1 tumor suppressor protein 34.33 35 113 1 5235.205 7353.986 +P31009 Small ribosomal subunit protein uS5 50.56 12 38 0 3612720.67465 4665833.9065 +P31409 V-type proton ATPase subunit B 62.65 26 100 0 4490448.71643 6105419.43149 +P32100 Large ribosomal subunit protein uL30 44.44 13 35 0 3355510.5892 3730085.54132 +P32234 Guanylate binding protein 128up 16.85 6 9 5 109347.0858 154744.15587 +P32392 Actin-related protein 3 26.56 9 16 9 312344.98003 324969.54963 +P32748 Dihydroorotate dehydrogenase (quinone), mitochondrial 24.2 10 18 10 230277.1617 330036.8275 +P33438 Glutactin 36.94 29 56 0 1464243.0134 1812502.24677 +P34082 Fasciclin-2 26.8 21 34 0 949491.80684 1218030.12612 +P35122 Ubiquitin carboxyl-terminal hydrolase 59.91 10 28 0 2049814.2187 2463340.28936 +P35128 Ubiquitin-conjugating enzyme E2 N 50.99 6 24 0 1773928.0384 2254937.52384 +P35220 Catenin alpha 26.39 24 38 14 1119602.8725 1306076.65437 +P35381 ATP synthase subunit alpha, mitochondrial 67.57 50 417 50 78572996.77504 100172763.50201 +P35415 Paramyosin, long form 75.2 91 521 0 85120239.59218 108367874.90247 +P35416 Paramyosin, short form 60.0 45 292 0 7591203.1813 10012941.74014 +P35421 Phosphoribosylformylglycinamidine synthase 2.81 4 4 4 32083.7385 45256.403 +P35554 Flightin 54.4 9 20 0 246820.70255999998 250325.42930000002 +P35992 Tyrosine-protein phosphatase 10D 2.86 7 7 6 55835.91470000001 73674.7982 +P36179 Serine/threonine-protein phosphatase PP2A 65 kDa regulatory subunit 47.88 23 58 0 2391535.23041 3202593.33828 +P36188 Troponin I 57.99 21 83 0 27921773.33025 30999323.27786 +P36241 Large ribosomal subunit protein eL19 31.53 7 19 7 2275992.8035 3736779.5805 +P36872 Protein phosphatase PP2A 55 kDa regulatory subunit 5.21 3 4 0 30672.0308 35385.6645 +P36951 Putative hydroxypyruvate isomerase 42.05 10 33 10 1949329.25315 2489652.5174 +P36958 DNA-directed RNA polymerase II subunit RPB9 31.01 3 6 0 76474.8849 114621.31950000001 +P36975 Synaptosomal-associated protein 25 87.74 21 143 19 17390646.6324 18637759.31579 +P37193 Adrenodoxin-like protein 1, mitochondrial 22.67 3 9 0 425104.8253 530671.85674 +P37236 Frequenin-1 71.66 12 40 0 1974775.4736000001 1720016.2946 +P37276 Dynein heavy chain, cytoplasmic 0.17 1 1 0 7508.676 15248.127 +P38040 Guanine nucleotide-binding protein subunit gamma-1 68.57 5 24 5 1440643.1872399999 1671348.3575000002 +P38979 Small ribosomal subunit protein uS2 75.19 16 83 16 11902943.97447 16101561.791299999 +P39018 Small ribosomal subunit protein eS19A 64.74 14 52 0 15414971.211 17186358.309499998 +P39736 Puff-specific protein Bx42 9.87 4 5 0 63363.9213 89443.41917 +P40301 Proteasome subunit alpha type-2 23.08 5 8 5 126148.9852 188343.33757 +P40304 Proteasome subunit beta type-1 31.91 7 13 7 410093.3369 544675.9258 +P40320 S-adenosylmethionine synthase 12.5 6 7 0 203329.7436 263901.8875 +P40417 Mitogen-activated protein kinase ERK-A 55.59 15 36 8 967301.45359 1193893.71286 +P40421 Serine/threonine-protein phosphatase rdgC 8.77 5 6 0 19072.36607 23741.5492 +P40423 Myosin regulatory light chain sqh 51.15 7 22 0 1131852.232 1534051.0336 +P40427 Homeobox protein extradenticle 9.31 3 4 0 191270.7257 216050.7063 +P40792 Ras-related protein Rac1 34.38 6 13 0 1131176.86965 1387167.0432 +P40793 Cdc42 homolog 24.61 4 8 0 435806.23030000005 513485.9625 +P40796 La protein homolog 40.51 13 18 12 1011455.7759 1360382.3975 +P40797 Protein peanut 38.4 19 35 18 1149407.7077 1538792.7473 +P40945 ADP ribosylation factor 4 38.33 5 12 0 91214.2591 118801.99119999999 +P40946 ADP-ribosylation factor 6 21.14 3 5 3 250128.9777 249455.41479999997 +P41042 Small ribosomal subunit protein eS4 45.59 12 38 0 1178831.53166 988666.2257000001 +P41043 Glutathione S-transferase S1 83.53 19 72 0 5983892.999340001 7308286.39583 +P41044 Calbindin-32 76.77 26 157 0 15748234.53648 20870423.51765 +P41073 Zinc finger protein on ecdysone puffs 19.55 13 28 0 1189060.8504 1775642.5836 +P41092 Large ribosomal subunit protein uL15 36.24 6 22 0 3847180.5244 3894598.4358 +P41093 Large ribosomal subunit protein eL20 44.07 8 14 8 1252999.1111 1303015.0320000001 +P41094 Small ribosomal subunit protein uS13 60.53 15 46 15 5854648.26955 7324448.8557 +P41126 Large ribosomal subunit protein eL13 44.5 13 50 0 6517252.89936 7585477.05316 +P41374 Eukaryotic translation initiation factor 2 subunit 1 48.39 18 46 0 2422768.47663 3234672.8052 +P41375 Eukaryotic translation initiation factor 2 subunit 2 16.67 6 8 6 209420.9929 219919.29677 +P41572 6-phosphogluconate dehydrogenase, decarboxylating 32.22 12 20 0 602956.16463 696427.93695 +P41900 General transcription factor IIF subunit 2 6.86 1 1 1 1574.6714 878.3466 +P42207 Septin-1 12.47 5 7 4 85443.2509 115163.7288 +P42281 Acyl-CoA-binding protein homolog 77.91 8 49 7 13620185.91867 17111472.647549998 +P42325 Neurocalcin homolog 61.05 12 34 12 2579411.35548 2975110.56465 +P42787 Carboxypeptidase D 5.33 7 15 0 219335.0233 217503.36296 +P43332 U1 small nuclear ribonucleoprotein A 17.59 4 5 4 465784.681 452841.174 +P45437 Coatomer subunit beta 8.61 5 8 5 95814.66667 120160.17794 +P45594 Cofilin/actin-depolymerizing factor homolog 85.81 15 98 15 17960888.92589 20068044.68935 +P45888 Actin-related protein 2 28.82 9 17 9 424255.41991 675150.77393 +P45889 Actin-related protein 1 37.23 12 24 12 482945.02353 684440.9209 +P46150 Moesin/ezrin/radixin homolog 1 44.12 31 74 0 27359.43 18849.604 +P46222 Large ribosomal subunit protein uL5 32.61 7 20 0 874467.0516 1154613.3099 +P46223 Large ribosomal subunit protein eL8 34.69 11 35 0 3539286.0914000003 4460055.2877 +P46415 Alcohol dehydrogenase class-3 14.25 6 12 6 641121.23 929253.987 +P46461 Vesicle-fusing ATPase 1 51.81 38 76 0 4174253.81726 5494782.4429 +P46824 Kinesin light chain 48.43 25 56 0 4419032.4067 5552286.23365 +P47947 Troponin C, isoform 1 20.78 3 32 0 2542880.9164 2712840.2003 +P47948 Troponin C, isoform 2 48.39 6 16 0 248059.68349999998 233872.6027 +P47949 Troponin C, isoform 3 62.58 8 28 0 1622036.6383 2007707.7802 +P48148 Ras-like GTP-binding protein Rho1 61.98 12 32 12 2568868.119 3336944.4733 +P48149 Small ribosomal subunit protein uS8A 43.85 7 30 0 1886234.1097000001 2252716.7502 +P48159 Large ribosomal subunit protein uL14 70.71 8 39 8 3881110.5634999997 4263682.228829999 +P48375 Peptidyl-prolyl cis-trans isomerase Fkbp12 76.85 7 40 7 17253756.7179 19017274.2797 +P48451 Calcineurin subunit B type 1 62.35 8 26 0 239471.69379999998 471413.41995 +P48461 Serine/threonine-protein phosphatase alpha-1 isoform 24.16 7 16 0 49038.82 60280.10400000001 +P48554 Ras-related protein Rac2 26.04 5 12 0 35169.52 54236.37 +P48555 Ras-related protein Ral-a 58.21 10 29 1 1917192.3861999998 2570160.2508 +P48588 Small ribosomal subunit protein eS25 19.66 2 4 2 47002.0321 53071.0305 +P48596 GTP cyclohydrolase 1 56.79 16 71 16 4209713.09664 5451977.24598 +P48598 Eukaryotic translation initiation factor 4E1 39.77 7 16 0 736580.7217 1076712.1946 +P48601 26S proteasome regulatory subunit 4 63.33 29 66 0 2079937.89311 2584965.8723 +P48602 V-type proton ATPase catalytic subunit A isoform 1 66.29 32 113 0 5396352.88207 7278255.8548 +P48603 F-actin-capping protein subunit beta 38.77 10 12 0 287551.5261 363943.7956 +P48604 GrpE protein homolog, mitochondrial 45.07 11 39 11 2856050.7742000003 4955276.1727 +P48605 T-complex protein 1 subunit gamma 40.44 24 51 0 2320566.0616 2499517.49166 +P48607 Protein spaetzle 9.2 3 4 0 5832.0202 6774.1135 +P48609 Cyclin-dependent kinase 5 homolog 17.35 6 8 5 128704.4043 161986.3513 +P48610 Arginine kinase 1 76.69 46 489 0 124654043.44759 146191475.93855 +P48611 6-pyruvoyl tetrahydrobiopterin synthase 71.43 10 38 10 1755332.16774 2135317.42784 +P48809 Heterogeneous nuclear ribonucleoprotein 27C 37.05 11 43 0 2034000.9305999998 2327584.55656 +P48810 Heterogeneous nuclear ribonucleoprotein 87F 28.31 7 11 0 372021.5285 506977.6565 +P49028 Protein mago nashi 11.56 2 7 2 75550.243 140450.9958 +P49071 MAP kinase-activated protein kinase 2 11.14 5 9 0 261890.9624 344615.914 +P49455 Tropomyosin-1, isoforms 33/34 46.53 39 282 3 23278.710300000002 26661.9584 +P49630 Large ribosomal subunit protein eL36 26.96 3 8 0 1835165.6586 2056324.1047 +P49657 Serine/threonine-protein kinase minibrain 1.1 1 1 0 3100.6702 4646.538 +P49847 Transcription initiation factor TFIID subunit 6 9.57 6 7 0 110516.36720000001 138014.0519 +P49866 Transcription factor HNF-4 homolog 4.12 2 2 0 7302.4352 9435.436 +P49906 Transcription initiation factor TFIID subunit 11 9.18 2 3 2 19562.992 23555.8443 +P49963 Signal recognition particle 19 kDa protein 42.5 5 6 5 73409.1274 99148.83582 +P50882 Large ribosomal subunit protein uL6 62.11 11 30 0 2410242.2583 2911882.78994 +P50887 Large ribosomal subunit protein eL22 32.78 7 14 7 377592.22980000003 365424.37556 +P51140 Segment polarity protein dishevelled 5.78 3 3 3 8484.478 11989.83623 +P51406 Bystin 1.83 1 1 1 774.6353 2441.9668 +P52029 Glucose-6-phosphate isomerase 38.35 17 26 17 2301697.6791000003 2607312.3059 +P52034 ATP-dependent 6-phosphofructokinase 16.12 12 16 1 207927.23739999998 235697.8082 +P52302 Protein lethal(3)malignant blood neoplasm 1 21.13 10 25 0 1083861.84697 1441131.0049 +P52486 Ubiquitin-conjugating enzyme E2-22 kDa 35.68 5 9 0 338707.5552 434981.5034 +P52654 Transcription initiation factor IIA subunit 1 8.74 2 2 2 13536.5993 17427.9443 +P53034 Replication factor C subunit 2 20.24 6 6 6 81265.1348 95635.78480000001 +P53501 Actin-57B 70.21 33 663 5 41551803.51124 52557034.22912 +P53624 Mannosyl-oligosaccharide alpha-1,2-mannosidase IA 2.85 2 2 0 26364.636 31114.578999999998 +P53777 Muscle LIM protein 1 56.52 6 24 0 1586854.2002 2103765.23766 +P53997 Protein SET 15.24 4 9 4 581086.086 835956.299 +P54185 Putative odorant-binding protein A5 15.71 3 5 3 9116.5157 21430.004399999998 +P54191 General odorant-binding protein 69a 6.08 1 1 1 4546.1387 4551.839 +P54192 General odorant-binding protein 19d 71.33 13 119 13 39692350.43338 43504371.02133 +P54193 General odorant-binding protein 83a 42.86 7 17 0 204678.7224 351859.1267 +P54195 General odorant-binding protein 28a 40.56 4 17 4 112980.95306 123549.32686 +P54351 Vesicle-fusing ATPase 2 24.73 20 27 0 72388.8667 105427.18729999999 +P54352 Ethanolamine kinase 13.9 6 7 4 275480.1937 312833.9183 +P54353 Putative peptidyl-prolyl cis-trans isomerase dodo 36.75 7 29 7 1350747.33204 1730323.5079 +P54357 Myosin-2 essential light chain 89.12 10 58 1 4800489.6887 5620240.96306 +P54359 Septin-2 13.13 7 12 1 395114.0185 502457.7155 +P54367 Casein kinase I isoform alpha 5.93 2 2 0 69702.63399999999 89642.514 +P54385 Glutamate dehydrogenase, mitochondrial 46.09 26 97 6 11147284.5846 13276962.4894 +P54397 39 kDa FK506-binding nuclear protein 9.52 4 4 4 83881.0184 100381.9837 +P54399 Protein disulfide-isomerase 76.81 40 203 0 20924202.44332 28158460.35197 +P54611 V-type proton ATPase subunit E 84.51 26 193 0 31594980.1376 46478600.9633 +P54622 Single-stranded DNA-binding protein, mitochondrial 36.3 5 9 5 400657.13300000003 627890.2220000001 +P55035 26S proteasome non-ATPase regulatory subunit 4 46.97 11 19 0 809320.8582 888637.01565 +P55828 Small ribosomal subunit protein uS10 57.5 7 17 7 3937257.05 5160136.0705 +P55830 Small ribosomal subunit protein eS1 66.42 20 75 20 11908064.6997 14545695.22243 +P55841 Large ribosomal subunit protein eL14 52.41 13 29 13 2897793.379 3698478.945 +P55935 Small ribosomal subunit protein uS4 56.41 17 49 0 5150407.6776 5822695.0557 +P56079 Phosphatidate cytidylyltransferase, photoreceptor-specific 8.28 3 3 0 162109.3995 224049.43584 +P56538 Eukaryotic translation initiation factor 6 11.43 3 4 3 239308.777 272072.198 +P61209 ADP-ribosylation factor 1 40.66 6 23 0 728435.30166 1116976.1128 +P61849 Dromyosuppressin 29.0 3 3 0 120198.1937 126180.253 +P61851 Superoxide dismutase [Cu-Zn] 77.78 10 121 10 19705180.61973 23513440.62346 +P61855 Adipokinetic hormone 37.97 2 4 2 3800.4979599999997 5816.35845 +P61857 Tubulin beta-2 chain 36.55 15 179 2 2706440.453 3389658.9230000004 +P62152 Calmodulin 99.33 19 482 0 114618963.59387 125225520.86138 +P80455 Small ribosomal subunit protein eS12 79.14 8 24 8 2434124.07214 4352571.7946 +P81829 Leucokinin 6.25 1 2 1 30190.324 21262.084 +P81900 cAMP-dependent protein kinase type II regulatory subunit 51.46 18 92 18 9163547.53396 11541118.473199999 +P82147 Protein lethal(2)essential for life 68.45 12 45 0 5382727.227729999 7090376.90637 +P82295 Prominin-like protein 0.99 1 1 0 1223384.1 1860794.4 +P82804 Partner of Y14 and mago 24.15 5 6 4 26633.64802 30828.7392 +P82890 Low molecular weight phosphotyrosine protein phosphatase 1 38.71 5 12 5 1175790.875 1555826.4640000002 +P83094 Stromal interaction molecule homolog 21.93 11 15 1 498101.3898 640013.2239 +P83967 Actin, indirect flight muscle 69.15 30 612 3 34726.8935 21737.6455 +P84029 Cytochrome c-2 76.85 13 103 0 52793075.84063 56822910.0739 +P84040 Histone H4 60.19 11 107 0 26205861.59787 29990177.48994 +P84051 Histone H2A 42.74 7 32 0 4745705.9883 7465133.250700001 +P84345 ATP synthase protein 8 18.87 1 11 1 955222.8374999999 1285615.091 +P91664 Protein max 4.35 1 1 0 42459.86 66793.69 +P91891 Protein Mo25 34.22 13 25 0 1554263.6544 2058815.9504 +P91926 AP-2 complex subunit alpha 20.0 20 24 20 643652.2756 710164.82836 +P91927 Mitochondrial proton/calcium exchanger protein 40.67 35 59 35 3739384.35661 4947340.5634 +P91928 MICOS complex subunit Mic60 51.69 42 120 0 11528718.254 15970449.65865 +P91929 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 10, mitochondrial 46.68 16 47 0 4247536.5002 5468708.07233 +P91938 Thioredoxin reductase 1, mitochondrial 39.43 19 46 0 2060049.9791 2661345.2294 +P92029 DnaJ-like protein 60 5.53 1 1 0 11196.356 13419.79 +P92177 14-3-3 protein epsilon 79.01 28 274 26 43998347.92603 52582487.12312 +P92204 Negative elongation factor E 14.64 4 4 4 125778.008 169076.48799999998 +P92208 Stress-activated protein kinase JNK 10.75 5 7 0 75678.9321 82735.44649999999 +P98081 Protein disabled 6.16 12 15 0 143569.45118 168257.0047 +Q00174 Laminin subunit alpha 22.68 79 156 79 4485445.1488 5014007.80472 +Q01603 Peroxidase 10.14 6 8 0 111230.2547 128378.0614 +Q01604 Phosphoglycerate kinase 85.06 32 227 0 31798416.69825 43498751.27729 +Q01637 Uridine 5'-monophosphate synthase 9.94 6 7 6 81305.826 85482.9474 +Q01819 Connectin 2.64 2 2 0 35898.887 43919.29 +Q01989 Myosin heavy chain 95F 2.55 4 4 0 21174.73994 31279.9534 +Q02748 Eukaryotic initiation factor 4A 45.66 19 33 17 4029437.8563 4879215.84649 +Q02910 Calphotin 6.83 4 15 4 367649.40128 402610.1044 +Q03017 NF-kappa-B inhibitor cactus 17.2 6 9 0 191862.2378 208262.21016000002 +Q03043 cGMP-dependent protein kinase, isozyme 2 forms cD4/T1/T3A/T3B 3.95 5 5 0 52514.3002 67562.68920000001 +Q03334 Small ribosomal subunit protein uS15 52.98 9 32 0 4805477.2668 5008100.8647 +Q03427 Lamin-C 66.67 46 141 3 7851489.52607 9389063.84708 +Q04047 Protein no-on-transient A 16.14 9 10 0 79372.3105 104487.4701 +Q04164 Putative epidermal cell surface receptor 8.21 11 17 0 321306.17689999996 307482.98625 +Q04691 Fat-body protein 1 29.93 28 50 0 378100.85277 334982.38302 +Q05783 High mobility group protein D 21.43 2 7 0 376590.20233000006 432526.83139999997 +Q05825 ATP synthase subunit beta, mitochondrial 86.34 36 599 0 67190628.96159 103086296.18326999 +Q05856 Small nuclear ribonucleoprotein-associated protein B 21.61 3 4 3 16812.217 23034.938000000002 +Q06559 Small ribosomal subunit protein uS3 82.11 25 107 0 12231218.0618 15303038.5746 +Q06943 High mobility group protein Z 21.62 3 10 0 380998.46 365351.4017 +Q07093 Head-specific guanylate cyclase 8.43 7 7 7 82360.043 105200.0169 +Q07152 Inosine-5'-monophosphate dehydrogenase 30.35 12 23 0 696152.422 853022.3494 +Q07171 Gelsolin 22.06 16 44 0 2421245.5189 3392117.4261 +Q07327 Protein ROP 24.29 15 40 0 2776004.1041 3484823.57345 +Q08012 Growth factor receptor-bound protein 2 52.61 11 29 11 1040495.9867 1395376.7345 +Q08180 Irregular chiasm C-roughest protein 3.53 3 3 0 4381.341 3727.36795 +Q08473 RNA-binding protein squid 43.31 10 27 0 1902188.64154 2959449.2621999998 +Q09024 Neural/ectodermal development factor IMP-L2 15.36 4 9 0 95572.3178 112397.27116 +Q09101 Locomotion-related protein Hikaru genki 5.74 4 4 4 10350.19 14338.3024 +Q0E8C8 Serine protease inhibitor 77Ba 21.56 10 16 10 444248.01937 500562.66904 +Q0E940 Eukaryotic translation initiation factor 3 subunit B 6.96 6 7 0 146469.1484 163554.235 +Q0E9B6 Small ribosomal subunit protein uS17 34.84 8 15 6 1145853.2872 1455294.0445 +Q0KHQ5 Serine/threonine-protein kinase Tao 5.39 6 6 0 15233.576099999998 16768.1273 +Q0KIC3 Uncharacterized protein CG43427 8.82 11 11 0 7526.653 12588.782 +Q10714 Angiotensin-converting enzyme 11.54 11 12 0 150691.203 182408.88640000002 +Q11002 Calpain-A 7.37 6 7 0 182008.0006 238951.3033 +Q23970 Pheromone-binding protein-related protein 6 58.87 9 33 9 393769.95251 515295.74282 +Q23983 Alpha-soluble NSF attachment protein 62.67 17 91 17 10694877.5769 13942630.259300001 +Q23997 Imaginal disk growth factor 6 52.88 27 100 0 9238989.18583 13034104.7801 +Q24008 Inactivation-no-after-potential D protein 48.37 37 127 0 6840821.534349999 8778513.3038 +Q24046 Sodium/potassium-transporting ATPase subunit beta-1 45.63 17 54 0 4669306.9765 6810043.4156 +Q24048 Sodium/potassium-transporting ATPase subunit beta-2 51.39 15 95 0 9434662.8059 12496287.39807 +Q24050 Elongator complex protein 5 27.48 6 10 6 380922.9918 453962.5385 +Q24114 Division abnormally delayed protein 20.93 10 15 0 558762.4911399999 696430.17735 +Q24133 DnaJ protein homolog 1 44.91 13 23 0 827790.741 952076.5474 +Q24134 Negative elongation factor D 4.84 2 2 0 14513.9344 19786.206100000003 +Q24180 Deformed epidermal autoregulatory factor 1 8.68 4 4 0 11777.47994 16703.1588 +Q24185 Protein hook 28.28 21 32 21 1070305.78786 1322943.0566 +Q24186 Small ribosomal subunit protein uS7A 53.07 11 37 0 1921834.9461400001 2173466.7526000002 +Q24207 Protein boule 36.4 6 12 0 296093.61179999996 434732.9442 +Q24208 Eukaryotic translation initiation factor 2 subunit 3 34.53 15 21 0 241991.31220000001 346813.56387 +Q24210 Peripheral plasma membrane protein CASK 8.46 7 7 0 38155.79736 49472.3477 +Q24211 Protein stoned-A 42.71 35 65 0 4706242.4008 5003281.08287 +Q24214 Calcineurin subunit B type 2 62.35 7 30 0 5590102.15917 7104284.4721 +Q24238 Alkaline phosphatase 4 16.61 8 10 8 240331.4882 290241.6784 +Q24246 Cytoplasmic dynein 1 intermediate chain 5.88 4 4 0 84489.2206 101218.9062 +Q24251 ATP synthase subunit d, mitochondrial 84.27 18 187 0 55245219.35983 60849787.99904 +Q24276 Hsp90 co-chaperone Cdc37 35.73 15 26 15 1726079.17594 2016644.5965 +Q24292 Protein dachsous 0.54 2 2 0 29879.807 41831.468 +Q24297 Small nuclear ribonucleoprotein F 25.0 2 2 2 154118.0783 227381.922 +Q24298 DE-cadherin 21.57 29 50 29 1854328.1800900002 1851653.26514 +Q24312 DNA-binding protein Ewg 7.5 6 6 1 54256.3232 76347.50200000001 +Q24318 Transcription factor Dp 16.18 7 8 0 68959.5606 75282.1012 +Q24319 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase 48 kDa subunit 14.48 6 9 6 536524.632 742662.895 +Q24322 Semaphorin-1A 4.67 4 5 0 26896.26891 38309.4352 +Q24337 Protein enhancer of rudimentary 16.35 2 4 0 361872.01 455093.169 +Q24372 Lachesin 27.58 9 17 9 714380.9048 716133.4369 +Q24388 Larval serum protein 2 12.27 8 11 0 650918.106 739309.1529999999 +Q24400 Muscle LIM protein Mlp84B 45.05 21 79 20 9221330.308699999 11127851.67236 +Q24407 ATP synthase-coupling factor 6, mitochondrial 62.26 8 71 0 14051438.17645 15058711.5681 +Q24439 ATP synthase subunit O, mitochondrial 78.47 24 198 24 66914821.9138 80010612.32236 +Q24478 Centrosome-associated zinc finger protein Cp190 15.69 16 27 16 931703.1028999999 1128941.62914 +Q24491 RNA-binding protein Rsf1 38.07 7 10 0 358035.0135 418388.73179999995 +Q24492 Replication protein A 70 kDa DNA-binding subunit 13.43 8 8 8 80619.3581 97622.9397 +Q24509 Syntaxin-5 4.93 2 3 0 34217.2627 41993.7656 +Q24523 Protein bunched, class 2/F/G isoform 7.89 10 15 0 553443.92256 707701.73036 +Q24524 Protein singed 10.35 5 5 0 42468.544 47073.9233 +Q24537 High mobility group protein DSP1 22.9 8 15 0 1294984.045 1566766.082 +Q24547 Syntaxin-1A 43.64 15 53 0 9431540.36703 12039519.868730001 +Q24560 Tubulin beta-1 chain 68.46 25 308 2 31839861.74039 41024851.26855 +Q24562 Splicing factor U2AF 50 kDa subunit 12.26 5 6 0 70388.26060000001 72787.2837 +Q24572 Chromatin assembly factor 1 p55 subunit 11.16 5 10 0 237904.0893 315762.7501 +Q24583 V-type proton ATPase subunit F 1 79.84 9 33 9 5605823.2846 6448728.55594 +Q26377 Pro-corazonin 44.81 5 17 5 324791.65565000003 460410.29274 +Q26416 Adult cuticle protein 1 20.0 1 3 1 546122.05 546685.3 +Q27237 DnaJ homolog l(2)tid, mitochondrial 25.77 11 12 3 240905.447 295739.89687 +Q27268 ATP-dependent RNA helicase WM6 27.83 11 18 7 511388.98653999995 648898.92686 +Q27272 Transcription initiation factor TFIID subunit 9 16.19 4 4 4 86004.14499999999 132577.9594 +Q27331 V-type proton ATPase catalytic subunit A isoform 2 66.61 35 119 0 2500753.2387800002 3541938.82406 +Q27377 Putative odorant-binding protein A10 41.94 7 16 7 186229.04339 199083.43249 +Q27415 Nucleoplasmin-like protein 43.42 6 53 0 4557393.1004 6557014.69223 +Q27580 Adenosylhomocysteinase 23.61 9 11 0 502254.66235999996 741815.6458 +Q27597 NADPH--cytochrome P450 reductase 11.78 8 11 0 239136.047 327026.0782 +Q27869 Protein-L-isoaspartate(D-aspartate) O-methyltransferase 42.04 8 20 2 939782.7043999999 1042980.5277 +Q27889 Serine/threonine-protein phosphatase 2B catalytic subunit 2 37.02 18 55 0 558594.3316 828329.2841 +Q3KN41 Neurexin 1 3.37 5 5 0 43747.35185 37226.7785 +Q45VV3 Transcriptional coactivator yorkie 4.81 2 2 0 6083.68603 5599.1712 +Q4V5I9 Succinate dehydrogenase assembly factor 2-A, mitochondrial 41.72 3 5 3 139544.47482 170544.11648 +Q4V645 Trissin 7.41 1 1 1 22634.898 30038.875 +Q59E04 Neuroendocrine protein 7B2 14.49 3 5 3 239879.4482 317449.37500000006 +Q5U117 Complex I assembly factor Egm, mitochondrial 2.66 2 2 2 40096.796 56841.221399999995 +Q6AWN0 Acireductone dioxygenase 43.55 8 18 8 538564.5889 673969.5363 +Q6NN40 Alpha N-terminal protein methyltransferase 1 15.58 4 5 0 19479.53976 31707.25822 +Q6WV19 Polypeptide N-acetylgalactosaminyltransferase 2 8.21 5 6 5 13312.5313 17262.6394 +Q709R6 LEM domain-containing protein Bocksbeutel 20.55 8 8 8 158092.88784 218011.26322999998 +Q70PY2 Peptidoglycan-recognition protein SB1 22.11 4 6 4 229088.229 238028.39039999997 +Q7JQW6 Lipoyl synthase, mitochondrial 9.02 4 6 4 298408.64900000003 438329.0356 +Q7JR49 V-type proton ATPase subunit S1 9.23 3 12 3 775332.9676000001 919014.4217699999 +Q7JR71 Extracellular superoxide dismutase [Cu-Zn] 28.73 5 15 1 780663.29208 940841.91 +Q7JUR6 Protein GDAP2 homolog 7.04 3 4 0 107985.2969 104241.6952 +Q7JUY7 PTB domain-containing adapter protein ced-6 15.28 7 14 0 601984.577 722160.4728 +Q7JVI3 Eukaryotic translation initiation factor 3 subunit M 40.31 15 28 0 943059.0522500001 1113968.26585 +Q7JW27 WASH complex subunit 1 4.41 2 2 2 37865.388 55582.111 +Q7JWD3 ATPase ASNA1 homolog 23.51 7 11 7 170300.31636 261503.02976 +Q7JWR9 Zinc finger CCCH domain-containing protein 15 homolog 22.28 7 9 0 143780.4352 193033.8767 +Q7JXF5 Nuclear pore glycoprotein p62 37.31 11 18 11 927794.4162 1276292.923 +Q7JXF7 Protein seele 39.15 6 16 6 556429.4351 698521.2364 +Q7JYV2 Synaptogyrin 8.3 1 2 1 4090.6863 6673.799 +Q7JZB4 Mannose-1-phosphate guanylyltransferase catalytic subunit beta 12.2 3 6 0 34262.24116 44602.90544 +Q7JZV0 Cuticular protein 47Eg 19.66 2 4 2 143358.89882 158595.52539999998 +Q7K0D8 Nuclear pore complex protein Nup50 23.76 12 15 12 268542.80942 385718.906 +Q7K0E3 MOB kinase activator-like 4 27.8 4 12 0 199114.84050000002 275848.1769 +Q7K1U0 Activity-regulated cytoskeleton associated protein 1 42.91 9 15 9 267401.85728 338271.4389 +Q7K1Z5 Ubiquitin-fold modifier-conjugating enzyme 1 14.63 3 4 3 233183.186 243487.321 +Q7K237 Glycoprotein-N-acetylgalactosamine 3-beta-galactosyltransferase 1 5.15 2 2 0 6433.1304 8936.4732 +Q7K2D2 Dynactin subunit 2 57.37 23 42 23 4077376.82518 4785815.8915 +Q7K2G1 Proteasomal ubiquitin receptor ADRM1 homolog 48.59 14 28 1 80430.6972 82142.758 +Q7K486 Armadillo repeat-containing protein 6 homolog 20.26 9 12 9 521500.2961 554146.57346 +Q7K4Q5 Probable protein phosphatase CG10417 24.17 12 21 0 978982.84416 1080888.5922 +Q7K4Z4 Protein immune deficiency 14.65 3 4 3 73160.9382 72483.506 +Q7K550 Eukaryotic translation initiation factor 3 subunit J 41.1 9 23 0 1782502.9581 2196287.289 +Q7K556 TRPL translocation defect protein 14 8.63 4 5 0 45673.9256 62354.748999999996 +Q7K5K3 Pyruvate dehydrogenase E1 component subunit beta, mitochondrial 53.15 16 79 16 7203210.3394 13890833.86806 +Q7K5M0 Inactive serine protease scarface 12.06 6 8 6 183045.87863 179426.24293 +Q7K738 Ubiquitin-conjugating enzyme E2-18 kDa 65.58 11 30 11 4709995.864399999 5899349.679 +Q7KLV9 26S proteasome non-ATPase regulatory subunit 11 46.68 18 39 0 2098107.04375 2762751.8666 +Q7KML2 Acyl-coenzyme A oxidase 1 2.69 2 2 2 61904.0098 63623.7624 +Q7KN62 Transitional endoplasmic reticulum ATPase TER94 53.81 36 74 2 2083228.91086 2567367.6034999997 +Q7KN90 Cysteine--tRNA ligase, cytoplasmic 19.84 15 17 15 293038.3295 360854.4823 +Q7KNF2 Polyadenylate-binding protein 2 34.38 7 14 0 463824.07999999996 521574.5012 +Q7KQM6 GIGYF family protein Gyf 4.26 7 9 7 32007.482539999997 39105.5423 +Q7KR04 Small ribosomal subunit protein uS8B 43.85 7 24 1 42460.968199999996 63206.523700000005 +Q7KRI2 Longitudinals lacking protein-like 27.56 4 11 0 428023.21499999997 567430.308 +Q7KRU8 Ferritin heavy chain 53.66 9 80 1 13262130.34194 17459754.5804 +Q7KRW8 Pre-mRNA-processing factor 39 1.69 2 2 2 31384.739 13344.038100000002 +Q7KTH8 COP9 signalosome complex subunit 8 26.92 6 10 6 302078.2191 355260.021 +Q7KUT2 Lon protease homolog, mitochondrial 16.8 14 19 14 296796.3652 387919.97786 +Q7KVQ0 H/ACA ribonucleoprotein complex subunit 1 10.97 3 4 3 66091.027 76641.65635 +Q7KVY7 Syntaxin-4 14.11 4 6 1 67527.95199999999 87002.959 +Q7KW14 Coiled-coil domain-containing protein CG32809 5.83 6 8 0 58018.9133 68417.91070000001 +Q7KW39 Probable methylmalonate-semialdehyde/malonate-semialdehyde dehydrogenase [acylating], mitochondrial 48.08 19 59 19 3772222.30684 4789484.6695 +Q7PLI7 Serine/threonine-protein kinase CG17528 2.01 1 1 1 2000.0018 2273.0574 +Q7YTY6 Serine protease inhibitor 42Dd 34.95 11 28 11 1621385.68676 2661991.8726 +Q867Z4 Longitudinals lacking protein, isoforms F/I/K/T 13.09 11 21 2 839460.119 1032704.83305 +Q868Z9 Papilin 23.81 59 118 59 4880884.02211 6825360.65988 +Q86B79 RING finger protein unkempt 6.18 3 3 0 52767.082 87189.90299999999 +Q86B87 Modifier of mdg4 5.74 3 6 0 89391.95330000001 130055.1173 +Q86BL4 Glutamyl-tRNA(Gln) amidotransferase subunit C, mitochondrial 37.84 5 6 5 54096.5072 87674.2785 +Q86BN8 Phosphatidylglycerophosphatase and protein-tyrosine phosphatase 1 9.5 2 2 2 4473.9426 6762.3668 +Q86NP2 Negative elongation factor A 11.99 11 18 0 189720.14973 247515.0326 +Q86P48 AT-rich binding protein 5.15 1 2 1 2540.307 2502.7432 +Q86S05 Protein lingerer 5.96 6 8 0 16541.33026 12107.89503 +Q8I0G5 Coatomer subunit gamma 5.21 5 5 0 92856.427 109028.36499999999 +Q8I7C3 LIM and SH3 domain protein Lasp 27.85 16 37 0 2144797.2221 2615151.4975 +Q8IH18 Eukaryotic translation initiation factor 4E transporter 8.71 9 9 9 121828.73594 132441.7988 +Q8IN41 Protein Turandot X 16.2 2 4 2 67987.091 98916.39429999999 +Q8IN43 Protein Turandot C 48.84 5 12 5 1233563.56 1208915.081 +Q8IN44 Protein Turandot A 64.34 9 34 9 3974015.01623 4324721.66254 +Q8INI8 Major heat shock 70 kDa protein Ba 22.0 13 64 0 256609.1528 274464.316 +Q8IPJ3 E3 ubiquitin-protein ligase lubel 0.66 2 2 1 1834.8615 2885.5730599999997 +Q8IPM8 Complexin 71.13 11 97 0 32959.9842 41447.073000000004 +Q8IPW2 SH2/SH3 adapter protein dreadlocks 23.91 12 18 12 363517.1423 324498.11 +Q8IPX7 Exosome complex component RRP40 28.02 6 8 6 154894.2678 194231.49200000003 +Q8IPZ3 NAD(P)H oxidoreductase RTN4IP1, mitochondrial 9.93 3 3 3 42925.5738 53860.133 +Q8IQ56 Transmembrane protein 11 homolog, mitochondrial 29.67 5 16 0 67645.66203 95872.31089000001 +Q8IQ70 Calcium uniporter protein, mitochondrial 15.3 7 9 7 234772.6561 320515.2009 +Q8IQG1 MOB kinase activator-like 2 7.6 5 7 0 343652.1818 446646.14379999996 +Q8IQG9 Adenylate kinase 1 53.28 10 53 10 2880140.3862 4026246.2914899997 +Q8IR45 BLOC-1-related complex subunit 8 homolog 24.04 4 4 4 76451.8723 105245.3004 +Q8IRH5 Zinc finger protein indra 8.19 5 5 5 44441.0622 41176.089 +Q8MKJ4 General odorant-binding protein 57b 19.15 3 3 0 16487.064300000002 25641.3582 +Q8MKK0 General odorant-binding protein 57a 17.16 3 7 3 647210.2482 803059.5905999999 +Q8MKN0 Ubiquinone biosynthesis protein COQ9, mitochondrial 11.66 4 6 4 188129.29700000002 187388.52599999998 +Q8MLY8 Small ribosomal subunit protein eS8 50.96 11 50 0 2043930.40119 3068164.17925 +Q8MLZ7 Chitinase-like protein Idgf3 36.73 13 21 0 569466.16137 602313.5319 +Q8MM24 Chitinase-like protein Idgf1 5.24 2 2 2 15796.1826 19424.123 +Q8MMC4 Protein CDV3 homolog 22.51 5 8 0 63817.2103 68590.216 +Q8MR45 Putative N(4)-(beta-N-acetylglucosaminyl)-L-asparaginase CG1827 8.91 3 4 3 22170.038200000003 30300.86733 +Q8MR62 Phosducin-like protein 2 30.83 8 10 8 307791.9869 419784.45900000003 +Q8MSS1 Protein lava lamp 22.63 60 78 0 1288990.97233 1536783.35107 +Q8MSU3 Ferric reductase 1 5.56 3 3 0 38841.5696 39850.0055 +Q8MSV2 Protein alan shepard 16.78 8 21 8 1119116.9328 1213101.3425 +Q8MT06 Guanine nucleotide-binding protein-like 3 homolog 1.72 1 1 1 16553.053 31699.178 +Q8SWR8 Ataxin-2 homolog 6.09 5 7 2 33956.0837 39578.96342 +Q8SWU7 Obg-like ATPase 1 37.28 16 20 0 1190153.163 1693690.8336 +Q8SX68 CTTNBP2 N-terminal-like protein 32.68 18 31 18 960177.8611000001 1204027.4098 +Q8SXY6 Transmembrane emp24 domain-containing protein bai 36.89 7 18 7 1531365.7233 1949981.6599 +Q8SY33 Protein Gawky 14.09 15 25 15 260830.79109999997 378362.39103 +Q8SY61 General odorant-binding protein 56d 56.49 7 55 0 4888571.7517 6749762.108 +Q8SY96 NFU1 iron-sulfur cluster scaffold homolog, mitochondrial 45.23 9 19 9 781015.3652 996279.1906 +Q8SYD0 Tetratricopeptide repeat protein 19 homolog, mitochondrial 15.18 4 5 4 103581.7042 125425.5414 +Q8SYG2 COP9 signalosome complex subunit 3 13.48 5 6 5 3011.1811000000002 5573.9761 +Q8SYS7 Probable cytosolic Fe-S cluster assembly factor CG17683 3.98 2 2 2 19587.313000000002 15533.216 +Q8SZ63 Golgin-84 13.57 7 7 7 37591.346600000004 39575.8144 +Q8SZA8 Adrenodoxin-like protein 2, mitochondrial 44.08 6 15 6 960104.779 965635.15 +Q8T079 Cytokine-like nuclear factor N-PAC 49.17 22 47 0 959263.39503 1159572.485 +Q8T0Q4 Charged multivesicular body protein 4 81.42 20 58 20 3876649.3398 4844809.10693 +Q8T0R7 Chitinase-like protein Idgf5 1.58 1 1 1 8737.052 6537.671 +Q8T390 Endophilin-A 62.33 23 114 0 10446537.3143 11749080.13994 +Q8T3L6 Probable malonyl-CoA-acyl carrier protein transacylase, mitochondrial 12.66 5 7 5 224185.513 299103.785 +Q8T3U2 Small ribosomal subunit protein uS12 34.27 7 23 0 1554200.5717 1711088.2774 +Q8T3X9 Iron-sulfur cluster assembly 1 homolog, mitochondrial 64.62 7 20 7 568937.2153 924238.6262 +Q8T6B9 Poly(U)-binding-splicing factor hfp 15.23 8 15 3 299855.9703 364615.4393 +Q8T8R1 CCHC-type zinc finger nucleic acid binding protein 27.88 3 4 3 8104.4409 10742.1954 +Q8T9B6 LDLR chaperone boca 41.11 9 23 9 1971562.9896 2408698.0125 +Q8WTC1 Small ribosomal subunit protein uS15m 11.43 3 5 3 59097.089869999996 73434.32516 +Q94511 NADH-ubiquinone oxidoreductase 75 kDa subunit, mitochondrial 63.06 38 137 0 8266021.92218 11165034.44094 +Q94514 Cytochrome c oxidase subunit 5A, mitochondrial 57.72 11 103 0 25687538.17704 31120117.976999998 +Q94516 ATP synthase subunit b, mitochondrial 47.33 19 148 19 28210162.9801 42997819.53684 +Q94517 Histone deacetylase HDAC1 6.91 2 2 2 8920.238 9283.855 +Q94518 Nascent polypeptide-associated complex subunit alpha 63.59 10 41 0 5524017.37986 6972741.62167 +Q94521 Arylalkylamine N-acetyltransferase 1 24.73 6 26 0 3842689.5661 4723138.3396 +Q94522 Succinate--CoA ligase [ADP/GDP-forming] subunit alpha, mitochondrial 49.09 19 114 18 20883910.32644 28923623.78078 +Q94523 Succinate dehydrogenase [ubiquinone] flavoprotein subunit, mitochondrial 34.64 20 61 20 4506220.8358 5009471.90465 +Q94524 Dynein light chain Tctex-type 45.95 4 6 4 56025.013 94460.75200000001 +Q94529 Probable pseudouridine-5'-phosphatase 45.02 11 42 7 1374405.18592 1901513.46406 +Q94535 Splicing factor U2af 38 kDa subunit 13.26 3 4 0 3443.6741 5189.30049 +Q94547 Regulator of gene activity 10.77 6 9 0 154072.2009 226018.8083 +Q94899 COP9 signalosome complex subunit 2 10.36 4 6 0 114460.92670000001 133696.5673 +Q94901 RNA-binding protein lark 44.03 16 37 16 486385.87599000003 614372.09935 +Q94913 Rhythmically expressed gene 5 protein 14.58 3 3 1 29393.166660000003 37688.078330000004 +Q94915 Rhythmically expressed gene 2 protein 33.46 9 9 9 298136.6676 298572.8813 +Q94920 Voltage-dependent anion-selective channel 92.55 27 346 0 100062392.71243 123701096.83872999 +Q94981 E3 ubiquitin-protein ligase ariadne-1 3.58 2 2 0 2220.1885 1656.0745 +Q95028 L-lactate dehydrogenase 18.98 5 5 0 59859.0347 70431.186 +Q95029 Cathepsin L1 36.39 19 81 3 11174817.2437 13271125.9257 +Q95083 Proteasome subunit alpha type-5 46.31 9 27 9 1279758.838 1701207.4815 +Q95RA8 MOB kinase activator-like 1 16.44 3 4 0 50747.017 61453.894 +Q95RA9 GILT-like protein 1 40.0 8 30 8 1861013.4731 2370699.57565 +Q95RG8 ARF GTPase-activating protein Git 5.47 4 6 4 20174.3174 20212.4825 +Q95RI5 Failed axon connections 63.16 27 130 0 19235467.26148 23304921.0063 +Q95RJ9 F-box-like/WD repeat-containing protein ebi 5.0 3 3 3 50426.2592 54144.6771 +Q95RN0 FAM172 family protein homolog CG10038 9.54 3 5 3 139117.15899999999 154067.103 +Q95RX5 E3 ubiquitin-protein ligase Kcmf1 4.01 2 3 2 13510.2439 12922.7037 +Q95SK3 CDK5RAP3 protein homolog 24.36 14 19 13 561959.8065000001 601537.561 +Q95SS8 Transmembrane protein 70 homolog, mitochondrial 12.29 3 3 3 89351.753 139594.77120000002 +Q95T12 Calcium channel flower 12.89 2 3 2 196940.69400000002 218402.47699999998 +Q95TN1 Probable trafficking protein particle complex subunit 13 homolog 5.48 3 3 3 5387.6074 7891.0553 +Q95TN4 Conserved oligomeric Golgi complex subunit 4 4.38 4 4 4 26591.7995 43129.3607 +Q960V3 Trafficking kinesin-binding protein milt 5.35 7 7 0 72208.838 92417.6003 +Q960W6 Putative fatty acyl-CoA reductase CG8306 3.49 2 2 2 29022.4455 35744.107 +Q960X8 Hepatocyte growth factor-regulated tyrosine kinase substrate 22.89 16 23 16 488043.354 487690.1468 +Q960Z0 Kinesin-like protein Klp10A 7.7 6 7 0 26274.7189 24107.73518 +Q961C9 Transport and Golgi organization protein 11 16.61 5 8 0 395151.86449999997 446994.946 +Q961D9 Protein BCL9 homolog 3.27 4 4 4 28781.8037 46331.192 +Q961G1 Conserved oligomeric Golgi complex subunit 3 3.43 3 3 3 9267.8675 16416.8403 +Q967D7 Protein turtle 4.51 7 9 0 153443.9728 203450.488 +Q99323 Myosin heavy chain, non-muscle 8.85 17 17 1 358086.06605 444422.75093 +Q9GPJ1 Protein Skeletor, isoforms D/E 2.99 5 7 0 162670.9027 227311.65987 +Q9GQQ0 Protein spinster 1.98 1 3 1 44593.186 50185.69 +Q9GU68 Eukaryotic translation initiation factor 5A 73.58 13 51 13 12609445.8621 16791449.5397 +Q9GYU8 Nuclear pore complex protein Nup88 6.98 4 4 4 15495.5885 24454.8911 +Q9I7D3 Caprin homolog 15.09 10 12 0 96236.4991 126183.3752 +Q9I7I7 NAD-dependent protein deacetylase Sirt2 14.08 5 7 0 128312.39859999999 171113.1996 +Q9I7K0 Microtubule-associated protein Jupiter 27.88 5 6 2 227785.54634 247721.3594 +Q9I7K5 Transmembrane emp24 domain-containing protein eca 16.2 4 5 0 203925.46169999999 198071.2452 +Q9I7K6 Nuclear autoantigenic sperm protein homolog 26.02 8 13 8 408818.0294 507602.57168 +Q9I7S8 Bifunctional phosphoribosylaminoimidazole carboxylase/phosphoribosylaminoimidazole succinocarboxamide synthetase 35.66 18 36 0 1739996.8917999999 1990326.9395 +Q9I7T7 La-related protein Larp4B 3.4 4 5 4 54157.473999999995 51775.6361 +Q9I7U4 Titin 3.75 33 36 0 499846.84566 583058.4148 +Q9I7X6 Carnosine N-methyltransferase unmet 5.48 3 3 3 68618.028 82446.462 +Q9NB04 Patj homolog 33.87 24 53 0 992694.10585 1444250.7406 +Q9NBD7 CLIP-associating protein 2.82 4 5 4 23452.5398 29370.3078 +Q9NBK5 Serine/threonine-protein kinase tricornered 4.54 2 2 0 126212.106 119494.15400000001 +Q9NEF6 V-type proton ATPase subunit D 2 27.71 10 27 0 13183.635699999999 14349.6456 +Q9NHA8 Gram-negative bacteria-binding protein 3 13.47 7 7 7 155704.90093 171817.85183 +Q9NHD5 Probable N-acetyltransferase san 28.26 5 8 5 271735.366 374292.5686 +Q9NHE5 Calcium-dependent secretion activator 6.7 9 10 9 66955.9131 77303.0593 +Q9NIP6 Cardio acceleratory peptide 2b 12.58 2 2 2 63668.669 91833.838 +Q9NJB5 Homeobox protein onecut 1.76 2 3 0 776.57227 1922.7305 +Q9NJH0 Elongation factor 1-gamma 49.88 23 66 23 2732073.74354 3197856.2641 +Q9NK57 NIF3-like protein 1 12.33 3 7 3 72484.22134 92426.9406 +Q9TVM2 Exportin-1 0.85 1 1 0 3664.0376 5674.46 +Q9TVP3 J domain-containing protein 85.64 19 103 19 20420493.7082 28462949.2691 +Q9U3Z7 NHP2-like protein 1 homolog 55.12 6 20 0 2324704.3412 2829184.3863999997 +Q9U4G1 Protein borderless 18.5 13 29 13 1131496.58014 1487782.75394 +Q9U4L6 Mitochondrial import receptor subunit TOM40 homolog 1 15.99 5 9 0 333927.0748 468949.1552 +Q9U5L1 Signal recognition particle receptor subunit alpha homolog 19.22 12 16 12 429510.48709999997 536459.20684 +Q9U616 Glycine cleavage system H protein, mitochondrial 42.42 6 22 6 2692086.0535999998 2748457.1948700002 +Q9U6L5 Ejaculatory bulb-specific protein 1 4.51 1 1 0 8193.063 7968.246 +Q9U6M0 Evolutionarily conserved signaling intermediate in Toll pathway, mitochondrial 16.63 6 7 6 86245.234 105401.46250000001 +Q9U915 Adenylate kinase 2 75.83 22 60 22 5353477.8044300005 5603208.930269999 +Q9U9P7 Cytoplasmic phosphatidylinositol transfer protein 1 16.12 5 7 5 177025.3686 216184.598 +Q9U9Q4 Eukaryotic translation initiation factor 3 subunit H 26.04 8 14 8 373391.875 470349.5634 +Q9V345 COP9 signalosome complex subunit 4 32.43 12 19 0 261508.8896 304965.58217 +Q9V359 Vacuolar protein sorting-associated protein 28 homolog 30.0 6 15 0 719778.2572 828832.9362600001 +Q9V3B6 Protein CWC15 homolog 11.2 3 3 3 38115.9707 31295.5252 +Q9V3C0 ATP-dependent RNA helicase abstrakt 1.78 1 1 1 2266.6423 2357.9756 +Q9V3D2 Oxygen-dependent coproporphyrinogen-III oxidase 9.74 4 5 0 85701.5377 98483.03700000001 +Q9V3D4 Chitinase-like protein Idgf2 43.41 16 36 1 1497710.56089 1745704.2296 +Q9V3F3 Transcription termination factor, mitochondrial 4.15 2 2 2 27050.4336 31519.7497 +Q9V3G1 Large ribosomal subunit protein uL2 49.22 11 26 11 3234464.3619999997 3611023.6166 +Q9V3G3 Peptidyl-prolyl cis-trans isomerase E 22.67 4 6 4 12013.56666 20331.033620000002 +Q9V3G7 26S proteasome non-ATPase regulatory subunit 6 19.28 8 10 8 196649.16749999998 313538.17579999997 +Q9V3H2 26S proteasome non-ATPase regulatory subunit 14 26.62 6 19 6 668509.6618 971404.4813999999 +Q9V3I2 Ras-related protein Rab5 36.07 6 14 6 446568.74604999996 581683.0088 +Q9V3J1 V-type proton ATPase subunit H 58.12 23 55 0 1569172.1766 1730971.9779400001 +Q9V3J4 Protein SEC13 homolog 15.17 5 8 5 159540.2552 182643.8486 +Q9V3K3 RuvB-like helicase 2 24.32 14 23 0 372477.3271 443753.99746 +Q9V3L6 Nuclear cap-binding protein subunit 2 20.13 4 6 4 56747.134 50199.538 +Q9V3N1 Serine protease inhibitor 27A 29.31 11 28 11 577258.11651 712599.4556999999 +Q9V3P0 Peroxiredoxin 2 75.26 18 133 0 29094725.9511 35818986.8083 +Q9V3P6 26S proteasome non-ATPase regulatory subunit 1 7.35 8 9 0 159062.9318 178594.8487 +Q9V3S9 Very long-chain-fatty-acid--CoA ligase bubblegum 3.75 3 3 0 28497.030300000002 37620.437 +Q9V3T9 NADPH:adrenodoxin oxidoreductase, mitochondrial 7.3 4 4 4 19371.0508 32783.7448 +Q9V3U2 H/ACA ribonucleoprotein complex subunit 2 33.75 6 13 0 463304.1541 665128.4462 +Q9V3V0 Serine/arginine-rich splicing factor x16 17.44 4 5 4 30054.370000000003 36377.488 +Q9V3W0 RutC family protein UK114 69.57 10 60 10 14036695.9431 21200093.7352 +Q9V3Y0 Ankyrin repeat domain-containing protein 49 25.12 5 7 5 354451.5641 371428.2594 +Q9V3Y2 Anamorsin homolog 31.85 6 10 6 639579.5556000001 841399.06436 +Q9V3Y3 Defense protein l(2)34Fc 23.9 3 9 0 1077731.5751 1311916.8946 +Q9V3Z2 Serine protease 7 15.86 5 6 4 85346.7875 109935.7505 +Q9V419 Probable cytochrome P450 28a5 15.25 8 8 8 181975.5243 230685.2856 +Q9V427 Innexin inx2 18.26 7 11 0 458257.4593 493504.4036 +Q9V429 Thioredoxin-2 65.09 6 47 6 24923223.1212 19996015.0325 +Q9V431 Apoptosis inhibitor 5 homolog 15.86 9 13 9 1009274.9799999999 1149581.408 +Q9V438 Protein disulfide-isomerase A6 homolog 20.55 12 23 12 1130097.3347 1386507.8443 +Q9V447 Krueppel homolog 2 17.03 4 4 0 72831.5699 91546.1884 +Q9V496 Apolipophorins 38.44 126 319 0 24609982.01014 29170408.9921 +Q9V498 Calsyntenin-1 2.97 3 3 0 18333.7941 21737.0761 +Q9V4A7 Plexin-B 0.54 1 1 0 1783.8179 2321.1292 +Q9V4C0 Dopaminechrome tautomerase 3.02 2 2 1 15130.063000000002 20862.792 +Q9V4C8 Host cell factor 7.0 10 13 10 255564.442 301546.0307 +Q9V4L4 NF-kappa-B inhibitor-interacting Ras-like protein 17.91 3 4 0 33862.3592 34340.0574 +Q9V4N3 Cytochrome b5 44.03 5 20 5 1038658.6839000001 2077185.0108999999 +Q9V4Q8 Probable U2 small nuclear ribonucleoprotein A' 21.51 7 12 7 269172.1492 406872.5084 +Q9V4S8 COP9 signalosome complex subunit 7 20.5 4 8 4 310397.5838 377895.1254 +Q9V4W1 mRNA export factor Gle1 10.34 7 8 7 55432.5667 65117.435099999995 +Q9V521 Phenoloxidase 2 28.36 22 33 21 1530510.5025 1809659.9204 +Q9V535 RNA-binding protein 8A 30.91 5 17 5 629652.0566 757476.9103999999 +Q9V564 Conserved oligomeric Golgi complex subunit 6 7.94 5 6 5 24731.4801 27579.809699999998 +Q9V595 Uroporphyrinogen decarboxylase 38.76 12 21 12 805281.7034 1027224.3005 +Q9V597 Large ribosomal subunit protein eL31 54.84 7 29 7 4794186.0597 5151401.2633 +Q9V5C6 Proteasome subunit alpha type-3 62.45 13 40 13 2469857.572 3317160.5809 +Q9V5M6 Longitudinals lacking protein, isoforms J/P/Q/S/Z 11.94 10 18 1 15217.534 20730.248 +Q9V5P6 H/ACA ribonucleoprotein complex subunit 3 23.44 2 5 2 42771.400200000004 53076.208 +Q9V637 Proteasome inhibitor PI31 subunit 33.33 9 17 0 452119.311 627972.5776 +Q9V674 Cytochrome P450 6g1 1.91 1 1 0 21168.89 31393.166 +Q9V6B9 Probable nucleoporin Nup54 12.46 7 8 7 124480.2614 156274.68289999999 +Q9V6G5 Tafazzin 8.2 4 4 2 30646.87686 38395.74835 +Q9V6U9 Enoyl-[acyl-carrier-protein] reductase, mitochondrial 48.46 17 80 17 5251855.87594 7203192.2192400005 +Q9V6X7 GDP-fucose protein O-fucosyltransferase 1 12.44 4 5 0 68276.26324 80818.9308 +Q9V6Y3 Small ribosomal subunit protein bS16m 22.48 3 3 3 77332.06599999999 99678.05 +Q9V773 Probable cytochrome P450 6a20 11.38 7 7 6 172431.1681 210823.13559999998 +Q9V784 SAM50-like protein CG7639 6.77 3 3 3 82805.4357 118838.631 +Q9V7D2 V-type proton ATPase subunit D 1 56.5 16 78 9 5140437.9459999995 6052189.3761 +Q9V7N5 V-type proton ATPase subunit C 28.83 27 130 0 16919581.5415 21564636.87734 +Q9V813 S-methyl-5'-thioadenosine phosphorylase 57.09 15 27 0 908468.49236 1344374.5824 +Q9V895 Acidic leucine-rich nuclear phosphoprotein 32 family member A 16.86 5 8 0 273196.4438 270774.2777 +Q9V8F5 Bomanin Bicipital 1 35.9 3 4 3 281015.402 358112.595 +Q9V8M2 Probable cytochrome P450 12b2, mitochondrial 2.62 1 1 1 6149.504 7798.5938 +Q9V8M5 3-hydroxyisobutyrate dehydrogenase, mitochondrial 73.46 15 41 15 1532720.9640000002 2317797.6395 +Q9V8R9 Protein 4.1 homolog 50.06 71 156 1 10164673.03127 12972006.55995 +Q9V8Y2 General odorant-binding protein 56a 34.53 5 18 5 875232.14126 947359.3893 +Q9V931 General odorant-binding protein 57c 46.98 6 13 6 517557.8062 752804.6362000001 +Q9V968 MIP18 family protein galla-1 25.23 5 6 0 84489.05099999999 68691.39600000001 +Q9V998 Ubiquitin-like protein 5 41.1 3 5 3 223604.98200000002 236514.017 +Q9V9A7 Probable methylcrotonoyl-CoA carboxylase beta chain, mitochondrial 11.25 7 9 7 195077.5617 225595.52370000002 +Q9V9J3 Tyrosine-protein kinase Src42A 9.09 5 5 2 85835.15359999999 104514.3227 +Q9V9M8 Iron-sulfur cluster transfer protein Nubpl 7.85 2 2 2 9261.69294 16073.1424 +Q9V9S7 Rho GTPase-activating protein 100F 2.68 4 5 0 37074.2105 42935.4721 +Q9V9S8 Ferrochelatase, mitochondrial 31.25 14 28 14 1025212.2797 1203369.7706 +Q9V9U4 Deoxyhypusine hydroxylase 21.85 6 10 6 152166.4646 187741.6622 +Q9V9X4 Methylthioribose-1-phosphate isomerase 1 40.93 12 18 12 449092.95180000004 662474.5322 +Q9V9Y9 Protein spindle-F 14.56 5 7 0 38563.5919 48859.9823 +Q9V9Z1 Large ribosomal subunit protein bL32m 13.33 3 4 3 39540.512 59392.399000000005 +Q9VA37 Protein dj-1beta 83.96 12 76 12 12213995.21278 16396732.22728 +Q9VA70 Neutral ceramidase 3.98 3 3 0 37614.301 58231.9143 +Q9VA91 Small ribosomal subunit protein eS7 60.31 14 52 0 8357748.6304 10390595.14611 +Q9VAF5 Cadherin-99C 6.33 10 10 10 76383.55377 100193.21459999999 +Q9VAI6 General odorant-binding protein 99b 32.21 4 28 0 17680447.625 20984707.5518 +Q9VAJ4 General odorant-binding protein 99a 32.39 6 19 0 3580356.957 4258700.573 +Q9VAM6 CDGSH iron-sulfur domain protein 52.63 6 66 6 11600127.56677 15575027.93427 +Q9VAM9 Guanosine-3',5'-bis(diphosphate) 3'-pyrophosphohydrolase MESH1 22.35 4 4 4 87704.223 121890.4536 +Q9VAN0 Phosphoserine aminotransferase 42.86 13 33 13 1648124.66244 1841871.53054 +Q9VAP3 Choline transporter-like 2 6.41 5 6 5 224889.60743 216146.8126 +Q9VAW5 La-related protein 1 5.5 7 8 0 34464.3253 40509.4964 +Q9VAY3 Mitoferrin 5.8 2 2 2 8287.4003 10139.0859 +Q9VB46 Adipocyte plasma membrane-associated protein Hemomucin 6.22 3 4 3 67030.264 78946.6926 +Q9VB68 Serine protease grass 9.28 4 4 4 43311.68695 45698.4359 +Q9VBC7 Neuroendocrine convertase 2 9.94 6 8 6 257345.60080000001 237579.25439999998 +Q9VBG6 Co-chaperone protein HGH1 homolog 9.76 3 4 0 46585.9239 49779.976800000004 +Q9VBP9 Nuclear protein localization protein 4 homolog 7.21 5 5 5 32399.07414 37320.335 +Q9VBV3 Protein takeout 33.33 6 7 0 81224.22456999999 111339.9803 +Q9VBV5 Nucleotide exchange factor Sil1 20.51 9 15 9 348614.69404000003 434870.33905999997 +Q9VBZ5 YTH domain-containing family protein 1.43 1 1 1 11873.825 13560.673 +Q9VC57 Atlastin 3.14 2 2 0 46557.824 51635.246 +Q9VCA5 Phenylalanine--tRNA ligase beta subunit 6.11 4 4 4 39364.9215 66606.649 +Q9VCA8 Ankyrin repeat and KH domain-containing protein mask 0.82 3 3 0 5205.4116 7145.05186 +Q9VCA9 Signal peptidase complex subunit 3 24.58 5 13 0 1019844.456 1056683.5564000001 +Q9VCC0 Cysteine and histidine-rich domain-containing protein morgana 20.62 5 8 5 306905.0476 419142.1792 +Q9VCD0 Glutamyl-tRNA(Gln) amidotransferase subunit B, mitochondrial 4.46 3 3 3 39698.3177 48226.939 +Q9VCE1 Beclin-1-like protein 4.5 2 2 2 29115.2943 47286.043999999994 +Q9VCE8 Actin maturation protease 16.48 2 4 1 7871.0874 11434.1777 +Q9VCG3 Putative OPA3-like protein CG13603 38.82 7 12 0 489818.72226 625181.5453 +Q9VCH5 Nuclear pore complex protein Nup98-Nup96 9.49 13 21 13 538394.3275 678854.61834 +Q9VCI0 RNA exonuclease 2 9.95 2 3 2 62240.5573 61561.825 +Q9VCJ8 Spaetzle-processing enzyme 20.25 8 12 6 320460.3544 285954.56690000003 +Q9VCK0 Eukaryotic translation initiation factor 3 subunit D-1 17.14 9 14 8 389352.56258 472402.374 +Q9VCK1 GILT-like protein 2 6.76 2 2 2 73785.0578 61555.1768 +Q9VCR3 Proteoglycan Cow 5.25 3 4 0 38436.1448 47219.3745 +Q9VCX3 Large ribosomal subunit protein mL45 10.8 3 3 3 27556.71 35271.8385 +Q9VCY3 COP9 signalosome complex subunit 6 18.18 6 11 6 284888.26746 325754.2778 +Q9VCZ8 Probable prefoldin subunit 5 63.1 10 24 0 1317400.71273 1775399.91869 +Q9VD09 Retinol-binding protein pinta 7.69 3 3 3 42622.947 58394.5726 +Q9VD25 DNA-directed RNA polymerase III subunit RPC6 3.41 1 1 0 5088.3735 5393.1235 +Q9VD26 Zinc finger protein-like 1 homolog 17.06 5 7 4 93820.4572 111223.42 +Q9VDC6 Beta-alanyl-bioamine nonribosomal peptide synthetase ebony 10.92 10 12 10 340656.9887 426847.4147 +Q9VDD1 DDRGK domain-containing protein 1 12.62 3 3 3 47773.027 52557.33899999999 +Q9VDE4 Protein Bride of doubletime 6.99 2 3 2 128980.9936 173689.83284 +Q9VDG5 Sodium/calcium exchanger Calx 0.95 1 1 0 10140.828 13571.552 +Q9VDL1 Esterase CG5412 18.28 5 11 5 120905.71280000001 158896.4907 +Q9VDS5 Rho GTPase-activating protein 92B 5.14 5 6 0 121106.82359999999 52184.2191 +Q9VDV3 Nuclear pore complex protein Nup58 11.54 7 9 7 900213.5171999999 986424.9602 +Q9VE50 Golgi SNAP receptor complex member 1 11.21 3 3 3 52454.044 81454.121 +Q9VEA5 DNA-directed RNA polymerase II subunit Rpb4 55.4 7 12 7 305584.3135 386034.3656 +Q9VEB3 Ribosome production factor 2 homolog 5.31 2 2 2 25217.4615 29791.2638 +Q9VEJ0 Thioredoxin-dependent peroxide reductase, mitochondrial 51.28 13 62 13 10618101.2838 14109803.09594 +Q9VER6 Modular serine protease 10.51 7 8 7 68860.9196 96858.8532 +Q9VET0 Neuropeptide F 29.41 3 4 0 43815.4429 69152.13999999998 +Q9VEX6 ATPase family AAA domain-containing protein 3A homolog 46.52 30 58 30 3755548.6001999998 4424154.2748 +Q9VEX9 Histone deacetylase complex subunit SAP18 29.33 4 10 0 126149.13659000001 145122.2993 +Q9VEZ3 Protein mini spindles 1.81 4 4 0 26552.749350000002 36406.255 +Q9VF08 Mitochondrial import inner membrane translocase subunit Tim16 36.88 6 9 0 496983.57006999996 245681.998 +Q9VF27 NADH dehydrogenase (ubiquinone) 23 kDa subunit 60.83 15 80 15 11840718.81021 14085106.55153 +Q9VF36 Acylphosphatase-2 13.73 2 2 0 20344.5158 18806.1905 +Q9VF71 Copper homeostasis protein cutC homolog 41.83 10 19 0 749146.5384 1066195.0728 +Q9VF89 Large ribosomal subunit protein bL9m 13.71 3 3 3 56188.328 85099.201 +Q9VFB2 Small ribosomal subunit protein uS10m 17.92 3 5 3 508682.08800000005 579864.807 +Q9VFC2 Serine protease inhibitor 88Ea 41.92 17 40 16 1420160.78789 1874425.34216 +Q9VFC8 Glycogen [starch] synthase 7.05 6 9 0 217795.5978 316381.356 +Q9VFI9 cGMP-specific 3',5'-cyclic phosphodiesterase 0.63 1 1 0 19198.287 26310.56 +Q9VFJ0 Probable cytochrome P450 313a1 8.13 4 4 4 39869.31796 66154.3547 +Q9VFJ2 Large ribosomal subunit protein uL11m 38.27 8 9 8 16645.22255 15593.399599999999 +Q9VFJ3 Serine protease HTRA2, mitochondrial 7.82 3 5 0 99602.82746999999 142755.35197 +Q9VFM9 Twinfilin 30.03 10 13 10 209250.06538 265381.5977 +Q9VFP1 Probable cytochrome P450 6d5 13.19 7 7 7 122976.70580000001 152769.3062 +Q9VFR0 Protein BCCIP homolog 24.92 6 7 6 172304.09101 225547.1257 +Q9VFS5 Serine/threonine-protein phosphatase 4 regulatory subunit 3 4.08 4 4 0 9968.45912 8471.04054 +Q9VFS8 26S proteasome non-ATPase regulatory subunit 9 45.91 9 13 9 341857.3359 387513.787 +Q9VFW4 Elongator complex protein 6 9.56 3 3 3 5989.43966 7434.3575 +Q9VG08 L-dopachrome tautomerase yellow-f2 4.2 2 2 2 2720.4391 4827.85217 +Q9VG55 Protein hugin 14.66 2 3 2 61201.354900000006 116108.6702 +Q9VG73 Interleukin enhancer-binding factor 2 homolog 25.76 8 12 8 209208.72274 284364.8968 +Q9VG74 N-acetylneuraminate-9-phosphate synthase 5.38 2 2 2 5202.0081 6877.7095 +Q9VG76 Myc-binding protein 15.47 3 3 3 153281.592 180247.59000000003 +Q9VG82 Probable cytochrome P450 9f2 4.07 3 3 1 74762.85800000001 65562.321 +Q9VG97 Inactive glutathione S-transferase D3 48.74 10 19 10 1197393.5463 1627742.061 +Q9VG98 Glutathione S-transferase D2 18.6 5 9 2 37131.9878 55403.4533 +Q9VGG5 Cadherin-87A 8.35 12 13 12 208931.4873 260161.50078 +Q9VGN9 Probable ribosome biogenesis protein RLP24 9.95 2 2 2 62389.7895 74279.8165 +Q9VGP4 Importin-9 3.63 3 3 3 46566.294200000004 48274.7815 +Q9VGP6 Prefoldin subunit 3 52.06 9 16 9 549586.41255 659061.50496 +Q9VGR2 Protein arginine methyltransferase NDUFAF7 homolog, mitochondrial 13.73 5 8 5 158703.20258 181508.58610000001 +Q9VGR7 J domain-containing protein CG6693 6.35 2 2 0 7819.966899999999 9647.5681 +Q9VGS2 Translationally-controlled tumor protein homolog 62.79 11 41 0 8157678.13754 10457228.459 +Q9VGU6 GTP:AMP phosphotransferase, mitochondrial 37.96 9 11 9 317740.11950000003 333636.0744 +Q9VGV8 Phosducin-like protein 3 8.8 2 2 2 12041.625 18405.6526 +Q9VGZ0 Probable cytochrome P450 12e1, mitochondrial 7.85 4 5 4 18244.1113 23186.1032 +Q9VH07 RuvB-like helicase 1 32.89 10 16 10 309283.1887 425000.4414 +Q9VH19 Leishmanolysin-like peptidase 4.39 3 3 3 53654.344 55673.634 +Q9VH39 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 4 34.98 7 10 7 1115362.49566 1473269.9079000002 +Q9VH69 Small ribosomal subunit protein uS14 48.21 3 6 0 847002.77 964405.11 +Q9VH95 Cytosolic Prostaglandin E synthase 59.24 11 32 11 6469200.0674 7378885.6411 +Q9VHA0 Polycomb protein Scm 3.53 3 3 0 5225.6041000000005 7420.5059 +Q9VHB3 U6 snRNA phosphodiesterase 1 10.85 3 4 3 23284.2795 29193.9575 +Q9VHD2 Probable maleylacetoacetate isomerase 2 24.23 6 9 6 152128.77645 224677.9937 +Q9VHD3 Probable maleylacetoacetate isomerase 1 17.07 4 5 4 117240.2495 131032.07620000001 +Q9VHG4 ATPase H(+)-transporting accessory protein 2 16.56 6 11 6 468929.4056 622034.135 +Q9VHI7 E3 ubiquitin-protein ligase Iruka 24.47 6 12 6 111356.01652 128811.184 +Q9VHK6 Iron-sulfur cluster assembly enzyme IscU 26.62 5 10 5 859152.9368 864254.1619000001 +Q9VHN6 Large ribosomal subunit protein bL19m 10.13 3 4 3 44291.365 51930.32 +Q9VHP0 ATP-dependent RNA helicase bel 27.82 17 24 0 318597.72948 446819.56359999994 +Q9VHR6 Autophagy-related protein 13 homolog 1.72 1 1 1 3796.276 3530.7068 +Q9VHR8 Dipeptidyl peptidase 3 39.19 29 60 29 1402231.5295 1934322.7708 +Q9VHS2 Cytochrome c oxidase subunit 7A, mitochondrial 76.4 9 45 0 8072603.96335 10134376.24333 +Q9VHS8 Eukaryotic initiation factor 4A-III 9.02 5 9 3 69288.69200000001 99836.645 +Q9VHV5 ADP-ribosylation factor-like protein 8 25.81 4 7 0 70993.11690000001 103402.3653 +Q9VI10 Probable small nuclear ribonucleoprotein Sm D2 54.62 6 11 6 174656.28389999998 194241.8568 +Q9VI13 Serine/threonine-protein kinase Pak 4.97 5 5 0 127897.719 90605.43950000001 +Q9VI55 E3 UFM1-protein ligase 1 homolog 3.96 4 5 0 129278.92199999999 179409.671 +Q9VI75 Phosphatidylinositol-binding clathrin assembly protein LAP 50.85 21 110 2 306266.0217 360812.37724 +Q9VIH3 Microsomal triacylglycerol transfer protein 3.84 4 5 4 26067.1965 39859.7546 +Q9VIH9 UPAR/Ly6 domain-containing protein CG9338 48.3 6 12 6 1638737.1717 2369816.7746 +Q9VII1 UPAR/Ly6 domain-containing protein bero 53.38 6 17 6 1131711.8174 1656884.199 +Q9VIM5 Actin-related protein 2/3 complex subunit 2 9.97 4 5 0 32187.8191 46041.6525 +Q9VIQ0 Short neuropeptide F 12.46 3 5 3 92421.35793 120122.97869999999 +Q9VIT0 DNA sliding clamp PCNA2 29.02 8 11 8 502875.843 640553.1033 +Q9VIV2 Zinc finger protein swm 6.21 5 5 0 30276.5156 33084.37517 +Q9VIW3 Ran GTPase-activating protein 23.15 10 15 0 389595.01245 441955.80655 +Q9VIZ0 DNA-directed RNA polymerases I and III subunit RPAC2 10.48 1 2 1 11948.7295 17076.54 +Q9VJ10 FAD-dependent oxidoreductase domain-containing protein 1 homolog 4.08 2 2 2 9904.317299999999 10287.9585 +Q9VJ26 EF-hand domain-containing protein D2 homolog 40.09 8 18 0 1460567.8941 1632868.2116 +Q9VJ31 Betaine-homocysteine S-methyltransferase 21.15 7 10 7 356764.5979 419079.3948 +Q9VJ33 Ubiquitin-like protein NEDD8 27.38 3 9 0 817146.4875 731700.0721 +Q9VJC7 Elongation factor Ts, mitochondrial 29.87 8 11 8 741980.8585 978467.9315 +Q9VJD2 Ragulator complex protein LAMTOR3 homolog 12.1 2 2 0 116989.48 150179.05 +Q9VJD3 Conserved oligomeric Golgi complex subunit 5 3.33 2 2 0 7453.773999999999 11302.8037 +Q9VJE4 DNA-directed RNA polymerase II subunit RPB11 31.62 3 3 3 22625.17266 40633.04675 +Q9VJG0 Xaa-Pro aminopeptidase ApepP 4.73 3 3 3 141522.063 188967.87099999998 +Q9VJG4 Electron transfer flavoprotein regulatory factor 1 homolog 11.76 1 2 1 27869.006999999998 34056.766 +Q9VJI9 Cytosolic Fe-S cluster assembly factor Nubp1 homolog 32.48 9 16 9 454920.73775000003 651655.538 +Q9VJL6 Glia maturation factor 23.91 3 4 3 67175.388 87429.886 +Q9VJQ5 Protein Dr1 26.78 4 4 4 73448.1367 80745.22869999999 +Q9VJY6 Large ribosomal subunit protein eL24 41.29 10 16 0 987837.1454 1028898.5008 +Q9VJY9 Protein Loquacious 8.17 4 6 0 215930.3441 296434.7862 +Q9VKA0 UPAR/Ly6 domain-containing protein crok 15.23 2 4 2 10731.4077 10743.8492 +Q9VKD3 Cysteine desulfurase, mitochondrial 26.84 12 18 11 519252.92110000004 643785.0558999999 +Q9VKH0 Conserved oligomeric Golgi complex subunit 8 5.96 3 3 3 4813.9156 5513.2181 +Q9VKJ8 Alpha-L-iduronidase 5.5 3 3 3 40649.836599999995 48113.609 +Q9VKJ9 Coiled-coil and C2 domain-containing protein 1-like 8.58 8 9 0 237011.0616 285162.829 +Q9VKK1 Enhancer of mRNA-decapping protein 4 homolog 3.91 6 9 6 38173.14152 44352.69225 +Q9VKV5 CD2 antigen cytoplasmic tail-binding protein 2 homolog 3.45 1 1 1 51180.984 53814.22 +Q9VKX4 Small ribosomal subunit protein uS7m 26.61 6 7 0 150551.7932 164620.4184 +Q9VKY2 Cullin-associated NEDD8-dissociated protein 1 0.64 1 1 0 6518.4995 7398.3525 +Q9VL00 Ubiquitin thioesterase otubain-like 21.37 5 5 5 182457.9527 202861.08299999998 +Q9VL13 MOB kinase activator-like 3 15.0 3 4 3 30788.222999999998 38757.7926 +Q9VL18 Probable elongation factor 1-delta 71.48 21 75 21 6113650.10283 7363611.78314 +Q9VL78 FK506-binding protein 59 65.38 31 72 0 3219350.04245 4022799.3331 +Q9VLF6 UPF0585 protein CG18661 22.52 4 5 0 378018.50899999996 564977.9809999999 +Q9VLJ6 Angiotensin-converting enzyme-related protein 12.7 8 8 0 160970.45010000002 181282.813 +Q9VLM8 Alanine--tRNA ligase, cytoplasmic 15.84 14 14 14 267612.03106999997 299055.1607 +Q9VLP3 Guanine nucleotide exchange factor MSS4 homolog 45.9 5 13 5 240388.55419999998 300313.972 +Q9VLR5 RNA polymerase II transcriptional coactivator 49.09 5 10 5 494198.79574 593787.435 +Q9VLS9 Beta-lactamase-like protein 2 homolog 36.3 8 14 8 755288.307 1035296.2226 +Q9VLT8 WASH complex subunit 3 20.45 3 4 3 38319.044499999996 39152.1433 +Q9VLU0 Barrier-to-autointegration factor 55.56 4 25 0 1695700.5399 2157508.6121 +Q9VLU4 Serine protease inhibitor 28Dc 13.99 7 7 7 223459.58909999998 270251.29829999997 +Q9VLV5 Probable small nuclear ribonucleoprotein E 27.66 3 7 3 377900.0212 521521.13000000006 +Q9VLV7 Protein spaetzle 3 1.8 1 1 1 16475.557 15510.501 +Q9VM33 Elongation factor G, mitochondrial 4.83 4 4 4 24323.139 28883.1308 +Q9VM65 FGFR1 oncogene partner 2 homolog 16.19 5 6 0 50230.6742 64579.014160000006 +Q9VM71 5'-3' exoribonuclease 2 homolog 3.08 3 4 3 9997.5532 10575.8153 +Q9VMA2 Probable galactose-1-phosphate uridylyltransferase 13.43 4 7 0 139499.6671 155668.48015000002 +Q9VMA7 Transport and Golgi organization protein 1 7.97 11 12 1 146357.71586 163915.2388 +Q9VMC8 PHD finger-like domain-containing protein 5A 14.41 2 2 2 81736.73000000001 96358.518 +Q9VMD6 Protein real-time 1.52 1 1 0 3197.3545 2938.496 +Q9VMD9 Tiggrin 19.93 46 58 0 983056.64464 1275472.66965 +Q9VMG0 Arylalkylamine N-acetyltransferase-like 2 51.39 9 10 9 176557.2169 237372.27145 +Q9VMM6 Protein obstructor-E 34.54 7 18 7 762473.564 902424.9015 +Q9VMQ5 Ubiquinone biosynthesis monooxygenase COQ6, mitochondrial 7.55 3 3 3 10905.758600000001 16025.996599999999 +Q9VMQ7 Elongator complex protein 4 3.89 2 2 2 87068.99279999999 103834.23049999999 +Q9VMR8 Protein Turandot M 41.98 4 7 0 564447.83 682646.1166 +Q9VMT5 Probable cytochrome P450 28d1 14.54 9 12 9 178703.92810000002 216199.15099999998 +Q9VMU4 Large ribosomal subunit protein eL43 18.48 2 2 0 48419.934 53432.513999999996 +Q9VMU5 Protein quick-to-court 13.04 9 9 0 291666.3531 349801.9742 +Q9VMW7 Inosine triphosphate pyrophosphatase 63.35 12 22 12 1877296.915 2553987.0962 +Q9VMX0 Large ribosomal subunit protein bL28m 6.62 2 2 0 20313.5978 25026.286 +Q9VMY1 Large ribosomal subunit protein uL24m 27.94 8 9 8 97940.9615 130031.8758 +Q9VMY9 Guanine deaminase 8.04 4 4 4 54223.2123 70633.1477 +Q9VN12 Probable sodium/potassium/calcium exchanger CG1090 4.58 2 2 0 21203.033199999998 27312.127 +Q9VN13 Sideroflexin-1-3 14.02 6 8 6 352355.239 468910.80744 +Q9VN14 Contactin 19.93 25 44 25 687945.2604 797554.05436 +Q9VN19 Golgi to ER traffic protein 4 homolog 10.32 3 3 0 22275.112599999997 34434.505000000005 +Q9VN25 Eukaryotic translation initiation factor 3 subunit A 2.28 3 3 3 27411.46525 33536.3412 +Q9VN50 Eukaryotic translation initiation factor 3 subunit F-1 20.36 6 9 6 266714.00560000003 307510.4496 +Q9VN91 MORN repeat-containing protein 4 homolog 43.43 8 35 8 846431.41857 890834.6125500001 +Q9VN93 Cathepsin F 34.85 22 48 19 3232752.553 3657720.29214 +Q9VN95 Enolase-phosphatase E1 37.11 7 12 7 608923.8186400001 581376.2907100001 +Q9VNA4 Uncharacterized protein CG1161 9.25 2 4 0 109993.993 143783.441 +Q9VNA5 Proteasome subunit beta type-4 40.3 7 9 7 95885.7894 136575.9384 +Q9VND8 GTP-binding protein Rheb homolog 21.98 5 11 5 340639.9201 421094.80005 +Q9VNE2 Protein krasavietz 19.91 11 23 11 1388521.8477 1783700.5631 +Q9VNE9 Large ribosomal subunit protein uL13 33.66 9 15 6 1059061.0406 1147669.3773 +Q9VNI3 Histone PARylation factor 1 1.56 1 1 1 7265.774 8721.478 +Q9VP48 Ras-related protein Rab-26 7.99 3 12 0 10470.7705 10677.114 +Q9VP61 Acetyl-coenzyme A synthetase 13.88 10 12 0 401018.0677 591497.4388 +Q9VP65 Multifunctional methyltransferase subunit TRM112-like protein 26.61 3 6 3 74247.9955 83229.421 +Q9VPC1 Distal membrane arm assembly component 2 9.15 3 3 3 96545.43669999999 123500.087 +Q9VPH7 Eukaryotic peptide chain release factor subunit 1 11.42 5 7 0 76408.7223 101152.4374 +Q9VPL3 Large ribosomal subunit protein uL10m 14.92 4 5 4 124827.7828 148321.84034 +Q9VPQ2 DnaJ homolog shv 22.88 8 13 8 392093.674 503018.8174 +Q9VQ29 Cytochrome b-c1 complex subunit Rieske, mitochondrial 43.04 10 55 10 4740346.62721 5507834.3149 +Q9VQ62 NPC intracellular cholesterol transporter 2 homolog a 47.3 5 18 5 1381401.683 1450514.8821 +Q9VQ79 Putative apoptosis-inducing factor 1, mitochondrial 12.04 7 12 0 157560.4775 209322.29425 +Q9VQ91 Tudor and KH domain-containing protein homolog 12.33 7 10 7 116432.84135999999 136053.8831 +Q9VQ93 Golgi phosphoprotein 3 homolog sauron 18.71 5 6 5 275145.82794 272053.9428 +Q9VQC4 Glycerate kinase 15.61 8 9 0 115063.678 157548.2074 +Q9VQF7 Bacchus 40.79 6 15 6 552672.2673 1025948.8548999999 +Q9VQF9 SNAPIN protein homolog 28.36 3 3 3 79774.7 96190.911 +Q9VQG4 Congested-like trachea protein 27.45 9 22 8 877437.7915 1041754.7691 +Q9VQQ0 Serine/threonine-protein phosphatase 2A activator 21.86 8 12 8 465018.6975 543113.28298 +Q9VQX4 Nicotinate phosphoribosyltransferase 10.45 7 7 0 68843.87455000001 76315.156 +Q9VR35 Eukaryotic translation initiation factor 4E-binding protein Mextli 17.15 11 12 0 323228.75560000003 431259.82644 +Q9VR59 Inositol hexakisphosphate and diphosphoinositol-pentakisphosphate kinase 0.53 1 1 0 2619.9023 900.35376 +Q9VR81 N-acetylglucosamine-6-phosphate deacetylase 9.59 4 5 0 39055.8675 42385.68573 +Q9VR89 RNA-binding protein pno1 10.42 2 3 2 8194.7437 10313.2829 +Q9VR94 General odorant-binding protein 19a 10.27 2 4 2 24138.542699999998 22701.258700000002 +Q9VRJ9 Ubiquitin thioesterase Otu1 22.77 6 12 0 153382.0106 189102.54869999998 +Q9VRL2 Probable Golgi SNAP receptor complex member 2 13.43 3 3 3 22021.60904 24398.5664 +Q9VRP9 E3 ubiquitin-protein ligase Bre1 2.78 3 4 0 66780.4607 112536.8365 +Q9VRQ9 Glutaminyl-peptide cyclotransferase 7.94 3 5 3 25217.5816 29884.1236 +Q9VRV7 Splicing factor 3B subunit 6 16.53 2 5 2 65100.1213 84275.68 +Q9VRZ7 Ubiquinol-cytochrome c reductase complex assembly factor 1 16.22 4 6 4 542821.859 540359.24 +Q9VS34 Large ribosomal subunit protein eL18 20.21 3 8 0 199419.2014 292274.972 +Q9VS97 Peptidoglycan-recognition protein SD 16.67 2 3 2 53235.596999999994 75491.626 +Q9VSA3 Medium-chain specific acyl-CoA dehydrogenase, mitochondrial 49.16 20 98 20 6126854.73869 7589518.36656 +Q9VSF3 Nedd8-conjugating enzyme UbcE2M 33.7 6 11 0 249486.8505 336403.2987 +Q9VSH4 Cleavage and polyadenylation specificity factor subunit 6 4.29 3 3 0 33684.1812 46179.543900000004 +Q9VSJ8 Exocyst complex component 7 8.23 6 8 6 62144.43582 70978.35216 +Q9VSK9 Pseudouridylate synthase 7 homolog 4.63 3 3 3 10550.8754 12466.682799999999 +Q9VSL3 Pyrimidodiazepine synthase 62.14 14 64 13 9480141.52885 11466048.09245 +Q9VSR3 Translational regulator orb2 4.26 3 3 0 59678.8869 76361.6467 +Q9VSS1 Protein Pixie 1.15 1 1 1 19871.791 27814.111 +Q9VSS2 Signal recognition particle subunit SRP68 13.08 8 10 8 114062.6244 147209.4699 +Q9VSU7 Vesicle transport protein USE1 11.2 3 3 3 36081.907999999996 51045.981 +Q9VSY4 Alpha-tubulin N-acetyltransferase 1 45.99 18 56 7 2825596.46007 3914068.9058499997 +Q9VSY6 Phosphoserine phosphatase 16.3 4 5 4 201889.59425999998 220459.27820000003 +Q9VSZ6 Queuine tRNA-ribosyltransferase accessory subunit 2 1.91 1 1 1 32696.904 23988.121 +Q9VT70 Nuclear distribution protein nudE homolog 11.67 3 3 0 30623.879999999997 29723.279000000002 +Q9VTC4 MIP18 family protein galla-2 13.46 2 3 2 38058.5834 46121.1183 +Q9VTE0 Biogenesis of lysosome-related organelles complex 1 subunit 2 15.72 3 3 3 13478.562600000001 20898.82 +Q9VTE5 Probable prefoldin subunit 2 53.15 8 18 0 1221042.491 1478051.53 +Q9VTE9 Nedd8-activating enzyme E1 regulatory subunit 10.31 5 6 0 99066.01495 123645.89235000001 +Q9VTF9 Ubiquitin fusion degradation protein 1 homolog 17.09 6 8 6 179054.3625 190662.2315 +Q9VTH0 Procollagen-lysine,2-oxoglutarate 5-dioxygenase 3.19 3 3 3 55311.61 68596.0775 +Q9VTJ4 Putative alpha-L-fucosidase 3.24 2 3 2 155777.802 201709.82799999998 +Q9VTJ8 Mitochondrial import inner membrane translocase subunit TIM14 27.97 4 6 0 195103.4106 255132.512 +Q9VTM6 UPAR/Ly6 domain-containing protein crim 20.25 3 5 3 51338.6557 68495.43862999999 +Q9VTP4 Large ribosomal subunit protein uL1 39.63 8 50 8 5266544.7899 7537444.3857 +Q9VTU3 Rho GTPase-activating protein 68F 19.54 9 12 0 308756.4584 382859.9447 +Q9VTZ5 Transferrin 2 24.42 20 23 20 552802.1553 811347.9923 +Q9VTZ6 Phosphomannomutase 39.37 10 13 10 135661.0764 192364.63654 +Q9VU08 Intermembrane lipid transfer protein Vps13D 0.2 1 3 1 9196.62 20149.203 +Q9VU58 Neuropeptide-like 2 67.44 7 116 0 36894999.26754 48259623.22142 +Q9VU68 Actin-interacting protein 1 29.77 20 40 20 1512974.8609 1816018.0138 +Q9VU70 Tetratricopeptide repeat protein 36 homolog 28.11 4 5 4 98517.57200000001 126010.47959999999 +Q9VU84 Drebrin-like protein 33.33 15 28 15 1091732.52486 1242791.7003000001 +Q9VU95 Alanine--glyoxylate aminotransferase 2-like 14.57 6 8 6 62940.769700000004 75226.36445000001 +Q9VUJ0 Large ribosomal subunit protein mL39 16.82 5 5 5 91846.3707 124825.38799999999 +Q9VUK8 Glycine--tRNA ligase 27.58 20 47 20 2294288.1845 3374673.4911 +Q9VUR3 Probable aminoacyl tRNA synthase complex-interacting multifunctional protein 2 19.16 8 10 1 164763.3405 192357.2455 +Q9VUY9 Phosphoglucomutase 1 38.04 20 45 20 1824240.3885 2438856.20688 +Q9VUZ1 Probable trafficking protein particle complex subunit 2 21.58 2 2 2 0.0 747.7989 +Q9VV36 Retinin 29.84 5 103 5 54810323.05916 63112068.28957 +Q9VV43 Tubulin polymerization-promoting protein homolog 66.15 11 50 0 4009781.03574 5174893.00037 +Q9VV72 Multiple inositol polyphosphate phosphatase 1 31.05 15 28 15 825941.42616 1166717.4835 +Q9VV74 Survival motor neuron protein 14.6 3 5 3 113555.0251 117696.51499999998 +Q9VVA0 Cold shock domain-containing protein CG9705 13.29 2 6 0 259905.5034 317469.927 +Q9VVA6 Nuclear migration protein nudC 34.64 13 27 13 1151716.3506 1116568.18653 +Q9VVB4 Coiled-coil domain-containing protein 22 homolog 13.15 7 8 7 133135.26799999998 153289.84420000002 +Q9VVE2 Protein rogdi 33.96 9 14 9 854890.2173 957405.4802700001 +Q9VVE5 RNA-binding protein Musashi homolog Rbp6 14.63 5 13 0 688770.542 930964.1028999999 +Q9VVG6 Ubiquinone biosynthesis protein COQ4 homolog, mitochondrial 13.43 4 5 0 87529.0932 102322.3466 +Q9VVH3 MICOS complex subunit MIC13 homolog QIL1 67.21 7 29 7 2128002.4308 2583822.6154 +Q9VVI2 Enhancer of mRNA-decapping protein 3 11.76 7 8 7 34964.903300000005 56205.6591 +Q9VVI3 E3 ubiquitin-protein ligase Nedd-4 2.88 3 3 0 21192.7008 22691.828999999998 +Q9VVI9 Charged multivesicular body protein 5 69.47 12 41 0 2374197.4742 2446242.98406 +Q9VVN2 Small ribosomal subunit protein mS26 19.56 4 6 4 86871.33840000001 105171.654 +Q9VVU5 COP9 signalosome complex subunit 1b 4.0 2 4 2 25713.9312 37617.1057 +Q9VVW3 Sideroflexin-2 15.6 5 7 5 149614.7805 213958.0885 +Q9VVW8 ATP-dependent (S)-NAD(P)H-hydrate dehydratase 23.33 5 6 5 73043.4191 122619.25469999999 +Q9VVY3 Glycogen-binding subunit 76A 12.48 7 8 0 48635.17510000001 74422.41422 +Q9VW12 UPF0389 protein CG9231 44.0 5 24 0 3169464.3793 3740471.38515 +Q9VW14 rRNA methyltransferase 3, mitochondrial 7.13 3 3 3 4908.06415 7455.5224 +Q9VW26 Ornithine aminotransferase, mitochondrial 19.03 7 12 7 122085.03124 163762.94988 +Q9VW56 Probable prefoldin subunit 6 60.8 7 20 0 1008477.53013 1469091.5849 +Q9VWA1 Clathrin light chain 43.84 14 43 0 6143877.945 6336929.97312 +Q9VWA8 Protein FRG1 homolog 6.49 2 2 2 51209.793000000005 64162.221 +Q9VWB1 DCN1-like protein 4 15.73 4 4 0 43525.782999999996 48864.274939999996 +Q9VWE0 Cytokine receptor 3.28 4 4 4 7724.9366 9972.244 +Q9VWF4 Dual specificity protein phosphatase MPK-4 6.46 2 2 2 5945.30533 7020.115 +Q9VWG3 Small ribosomal subunit protein eS10B 30.62 7 15 0 1160100.4649999999 1466866.366 +Q9VWH4 Probable isocitrate dehydrogenase [NAD] subunit alpha, mitochondrial 70.56 29 221 28 40479162.6527 52925356.16837 +Q9VWI0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 4, mitochondrial 39.89 6 39 6 8356400.94525 9703668.1619 +Q9VWN5 Ubiquitin carboxyl-terminal hydrolase MINDY-3 homolog 22.5 12 16 0 132057.22830000002 155928.1508 +Q9VWP4 Sulfite oxidase, mitochondrial 10.12 6 6 6 42552.40503 63844.7569 +Q9VWU1 Serine protease persephone 6.85 2 2 2 47204.015 16618.774999999998 +Q9VWV8 Nitric oxide synthase-interacting protein homolog 6.51 2 4 2 390415.77846 401863.39783 +Q9VWW0 Cyclic AMP response element-binding protein B 2.51 1 1 0 3187.2808 3736.5596 +Q9VWX8 Frequenin-2 54.01 10 42 4 3071505.87415 3766637.9807 +Q9VWY6 Transcription initiation factor TFIID subunit 8 9.15 3 3 3 20897.835 28090.178 +Q9VX10 Sulfiredoxin 11.73 2 3 0 50393.676999999996 108392.3834 +Q9VX98 Density-regulated protein homolog 50.26 8 14 8 309626.9678 511556.869 +Q9VXB0 NECAP-like protein CG9132 45.53 10 29 2 2550884.1825 2876130.3396 +Q9VXB5 Large ribosomal subunit protein uL22m 5.58 1 1 1 7851.0044 10201.862 +Q9VXE0 Probable small nuclear ribonucleoprotein G 76.32 6 10 6 388135.1837 476966.6768 +Q9VXE5 Serine/threonine-protein kinase PAK mbt 8.61 5 6 5 21430.58785 25659.819199999998 +Q9VXE6 Nuclear pore complex protein Nup153 2.44 3 4 0 29117.9049 30532.2922 +Q9VXF1 Serine/threonine-protein phosphatase 2B catalytic subunit 3 38.87 19 55 0 2240070.08305 2646571.5231 +Q9VXG4 Annexin B11 22.31 13 30 13 2522875.5771999997 2815939.6325 +Q9VXJ0 Peroxisomal multifunctional enzyme type 2 25.25 14 19 0 490492.81374 589018.4481599999 +Q9VXK0 Protein NipSnap 15.38 4 6 0 590199.8763 745643.937 +Q9VXK6 Eukaryotic translation initiation factor 5 23.92 10 14 10 685573.1471 903735.8843 +Q9VXN2 Protein stunted 55.74 4 15 4 1108730.932 2002481.854 +Q9VXN4 Probable arginine--tRNA ligase, cytoplasmic 6.62 4 5 4 26848.818300000003 41938.2217 +Q9VXP4 Platelet-activating factor acetylhydrolase IB subunit beta homolog 38.22 8 21 8 1054743.51146 1453894.5877399999 +Q9VXT7 Probable isoaspartyl peptidase/L-asparaginase CG7860 12.95 4 7 0 465592.7935 737428.463 +Q9VXY0 Probable cytochrome P450 4s3 4.44 3 3 3 16339.4473 13054.6524 +Q9VXY7 Lipid storage droplets surface-binding protein 2 53.41 15 33 1 7231453.4522 8866811.4975 +Q9VY28 Small ribosomal subunit protein mS25 19.16 3 5 3 44262.5307 61637.4499 +Q9VY77 LIM domain-containing protein jub 6.04 4 4 0 9933.88474 7752.1592 +Q9VY78 Chloride intracellular channel Clic 23.46 6 14 6 587499.15924 785249.8080000001 +Q9VY93 Probable methylthioribulose-1-phosphate dehydratase 14.1 3 3 0 105562.61 104282.8126 +Q9VYB7 Protein-tyrosine sulfotransferase 5.61 3 3 0 22310.0072 14759.6885 +Q9VYD7 Mitochondrial import inner membrane translocase subunit Tim9 67.37 6 12 0 957418.7531399999 1221519.36535 +Q9VYF8 2-methoxy-6-polyprenyl-1,4-benzoquinol methylase, mitochondrial 3.99 1 1 0 1101.9755 1826.8523 +Q9VYG1 26S proteasome non-ATPase regulatory subunit 5 3.56 2 2 0 21710.835 19503.0553 +Q9VYG2 Brahma-associated protein of 60 kDa 2.33 1 1 1 2701.792 3588.3096 +Q9VYH3 Probable alpha-aspartyl dipeptidase 29.17 6 13 0 690884.3847 964932.8962999999 +Q9VYI3 Large ribosomal subunit protein mL49 5.59 1 1 0 14453.228 18861.398 +Q9VYQ8 Ubiquitin carboxyl-terminal hydrolase 7 4.25 5 5 0 33614.56132 39208.6521 +Q9VYR0 LSM12 homolog A 14.29 3 5 3 139071.3612 206005.25579999998 +Q9VYS5 NADH dehydrogenase (ubiquinone) complex I, assembly factor 6 homolog 5.09 2 2 2 19306.011 24852.656 +Q9VYV3 Thioredoxin domain-containing protein 5 homolog 59.13 24 58 24 3940228.37183 4962155.3412999995 +Q9VYV9 COMM domain-containing protein 10 homolog Vlet 12.18 3 4 0 47970.097 81430.372 +Q9VYX1 Enhancer of yellow 2 transcription factor 40.59 3 4 3 84603.5849 135964.41449999998 +Q9VYY2 Signal peptidase complex subunit 2 49.25 11 18 0 1407481.347 1512142.1697 +Q9VYY3 Ubiquitin-like modifier-activating enzyme 5 22.77 9 11 9 246326.481 326100.398 +Q9VZ23 GTP-binding nuclear protein Ran 54.63 11 34 0 2225288.7641 2700595.8545999997 +Q9VZ35 Protein Vago 20.62 2 2 2 13820.255000000001 15574.018 +Q9VZ40 Uncharacterized protein CG1552 33.7 4 7 0 378033.5084 515396.48949999997 +Q9VZ49 Endoribonuclease Arlr 18.07 10 26 10 644621.33245 788415.66176 +Q9VZ64 Probable 6-phosphogluconolactonase 52.26 12 25 12 1502439.5086 2059787.2899 +Q9VZA4 Band 7 protein CG42540 16.24 7 11 0 126075.67585999999 169412.18928 +Q9VZD5 Small ribosomal subunit protein bS6m 13.61 2 3 0 285601.505 390527.6586 +Q9VZD8 THUMP domain-containing protein 1 homolog 13.89 4 4 4 52173.6645 55334.9272 +Q9VZE7 Choline transporter-like 1 2.32 1 1 0 21193.016 25823.738 +Q9VZI3 Unc-112-related protein 9.18 6 6 6 44157.043000000005 47823.2192 +Q9VZJ9 Mitochondrial E3 ubiquitin protein ligase 1 9.76 3 3 3 12816.1396 12486.8915 +Q9VZL5 Vacuolar fusion protein CCZ1 homolog 3.09 1 1 1 12425.126 12866.982 +Q9VZL6 Ragulator complex protein LAMTOR4 homolog 21.67 2 3 0 68814.709 123346.1 +Q9VZS3 Eukaryotic translation initiation factor eIF1 81.82 7 11 7 425968.4673 944247.568 +Q9VZS5 Large ribosomal subunit protein eL28 59.72 12 34 0 4436423.7971 4992578.5253 +Q9VZU4 NADH dehydrogenase [ubiquinone] iron-sulfur protein 3, mitochondrial 64.53 16 83 16 4623091.77115 5684173.7605 +Q9VZX9 Adenosylhomocysteinase-like 1 24.76 11 18 9 575991.2283 827543.3112 +Q9W021 Large ribosomal subunit protein uL23m 11.33 2 2 0 36712.516 41988.277 +Q9W058 Succinyl-CoA:3-ketoacid-coenzyme A transferase, mitochondrial 53.1 19 62 1 3947302.90828 4693563.05505 +Q9W074 Protein HBS1 4.63 3 3 3 37992.6676 46786.763 +Q9W0A0 Protein draper 6.21 5 7 0 33141.88082 34063.40707 +Q9W0C1 Neuronal synaptobrevin 47.54 7 38 7 5737547.946599999 6542091.35554 +Q9W0C7 Protein OPI10 homolog 11.68 2 2 2 3112.0457 3608.4082 +Q9W0G1 Tyrosine-protein phosphatase non-receptor type 61F 9.49 6 7 4 58222.4532 74450.69835 +Q9W0H3 Lipid droplet-associated hydrolase 24.1 8 13 8 263109.895 330050.202 +Q9W0P5 UDP-glucose 4-epimerase 30.29 11 17 0 796755.6876000001 1021523.8511000001 +Q9W0S7 Staphylococcal nuclease domain-containing protein 1 18.36 17 22 17 806564.8891 939784.2826 +Q9W0Y1 Troponin C-akin-1 protein 24.55 5 11 2 231928.1433 300230.89535999997 +Q9W0Y2 Putative gamma-glutamylcyclotransferase CG2811 7.64 2 2 0 42067.9516 71924.493 +Q9W0Y6 Transient receptor potential cation channel protein painless 1.1 1 1 1 4655.3164 6499.0376 +Q9W141 Putative ATP synthase subunit f, mitochondrial 49.53 6 53 6 19165150.2769 23493495.0396 +Q9W197 7-methylguanosine phosphate-specific 5'-nucleotidase 14.42 5 7 5 278770.9225 368310.8885 +Q9W1A4 Protein tamozhennic 6.65 4 5 0 14902.603169999998 17931.6455 +Q9W1C9 Ejaculatory bulb-specific protein 3 57.14 13 92 0 101148385.3711 119114380.7297 +Q9W1G0 Probable transaldolase 56.5 17 62 17 10087252.8378 13258526.5536 +Q9W1H9 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex assembly factor 3 8.16 1 1 1 4918.489 5587.1646 +Q9W1K0 Transmembrane protein 14 homolog 13.39 2 7 0 655668.536 639982.716 +Q9W1K5 Sestrin homolog 1.41 1 1 0 22646.84 19214.15 +Q9W1L5 Peptidyl-alpha-hydroxyglycine alpha-amidating lyase 2 8.87 2 3 0 62692.595 76329.8745 +Q9W1V3 rRNA 2'-O-methyltransferase fibrillarin 21.51 7 8 7 142124.39 204084.0572 +Q9W1X4 Nuclear pore complex protein Nup214 5.26 7 8 7 43557.092639999995 56707.2353 +Q9W1X8 Probable GDP-L-fucose synthase 19.63 5 6 5 47388.3017 67632.25630000001 +Q9W1X9 OCIA domain-containing protein 1 27.63 5 8 0 87255.7692 115463.9043 +Q9W1Y1 ER membrane protein complex subunit 8/9 homolog 21.67 4 6 4 193037.6554 344342.6241 +Q9W237 Small ribosomal subunit protein uS9 70.95 16 57 0 6100107.05147 7761998.8944 +Q9W265 Probable hydroxyacid-oxoacid transhydrogenase, mitochondrial 18.97 9 10 9 212767.0861 274066.43340000004 +Q9W266 Protein windpipe 13.44 10 18 10 1218240.9164 1598471.7988 +Q9W2D6 Mitochondrial import inner membrane translocase subunit Tim10 72.83 7 23 7 2526768.174 3148509.264 +Q9W2D9 Eukaryotic translation initiation factor 3 subunit K 41.89 7 15 7 780186.7722 952196.0475000001 +Q9W2E7 Protein Rae1 17.63 6 8 6 132066.5269 155587.90016 +Q9W2M2 Trehalase 40.94 22 40 0 909718.9705 1312011.2645 +Q9W2N0 F-actin-capping protein subunit alpha 17.83 5 7 5 259051.48500000002 396095.68200000003 +Q9W2R3 Phosphatidylinositol 4-phosphate 5-kinase type-1 sktl 1.89 2 2 2 33627.1636 35319.3238 +Q9W2U4 Serine/threonine-protein phosphatase 4 regulatory subunit 2 12.64 6 6 0 77356.8388 94129.9756 +Q9W2Y3 NAD(P)H-hydrate epimerase 38.7 7 8 7 145623.7388 194939.6348 +Q9W303 Chitinase-like protein Idgf4 54.3 23 92 0 5783050.18063 7644154.9029 +Q9W334 Small ribosomal subunit protein eS28 69.23 5 18 0 1086942.7705 1585504.4561 +Q9W358 Chaperone Ric-8 8.55 6 6 0 64609.149900000004 74265.33649999999 +Q9W369 Beta-alanyl-dopamine/carcinine hydrolase 57.88 22 103 22 15304946.72275 20028113.0082 +Q9W379 Zinc finger protein ZPR1 22.32 8 9 8 242256.6906 316816.7992 +Q9W380 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 3 19.48 3 8 3 456950.1573 520753.95300000004 +Q9W385 Frataxin homolog, mitochondrial 16.84 4 6 4 302281.882 334446.148 +Q9W3C7 Palmitoyl-protein thioesterase 1 5.73 2 4 0 72598.8182 96266.41649999999 +Q9W3E2 Protein PIP82 26.03 29 40 29 1346775.2897 1634474.845 +Q9W3J5 Phenylalanine--tRNA ligase alpha subunit 18.88 10 11 10 201384.7923 238669.8676 +Q9W3K5 Glutamate--cysteine ligase 3.77 3 3 0 49477.2191 51385.5254 +Q9W3N6 General vesicular transport factor p115 13.88 9 11 9 71104.47836 88786.99789999999 +Q9W3T7 UPAR/Ly6 domain-containing protein bou 12.08 2 4 2 274481.186 321450.545 +Q9W3W8 Large ribosomal subunit protein uL22 29.03 6 9 0 322907.7836 184163.71850000002 +Q9W3Y0 Zinc finger protein 593 homolog 27.16 3 3 3 7837.1956 10153.8138 +Q9W3Z3 Alanine--glyoxylate aminotransferase 5.08 2 4 2 31604.618000000002 41202.29 +Q9W401 Probable citrate synthase, mitochondrial 60.99 28 217 28 30405184.71871 40411318.98476 +Q9W415 tRNA (guanine-N(7)-)-methyltransferase non-catalytic subunit wuho 18.16 6 7 6 109060.30983 177134.02883 +Q9W436 Neprilysin-1 7.54 6 7 6 98513.90260000002 51439.3597 +Q9W445 Malignant T-cell-amplified sequence 1 homolog 37.36 6 8 6 99425.83499999999 135124.1879 +Q9W4D2 RNA-binding protein 4F 2.44 2 2 0 4282.0628 3549.2702 +Q9W4K2 Uncharacterized protein CG3556 6.39 4 7 0 271709.6553 290433.8892 +Q9W4P5 V-type proton ATPase subunit d 1 31.14 9 18 9 976158.3389 1355745.6085 +Q9W4T4 3',5'-cyclic-AMP phosphodiesterase, isoform I 17.12 17 26 0 287614.8475 382572.43736 +Q9W4V8 Mitochondrial import inner membrane translocase subunit TIM50-C 20.09 7 11 0 249340.16019999998 301673.607 +Q9W4X7 Eukaryotic translation initiation factor 3 subunit G-1 34.2 10 24 9 2157603.927 2610075.3674 +Q9W552 Vacuolar protein sorting-associated protein 26 19.67 6 9 6 72530.01525 100512.65674 +Q9W596 Microtubule-associated protein futsch 30.08 101 161 0 5662488.82234 7285333.6083 +Q9W5E1 RING-box protein 1A 22.22 2 4 0 92352.14499999999 106599.218 +Q9W5N0 Cytochrome c oxidase assembly factor 7 homolog 39.1 11 25 0 1411047.4361999999 2039845.5651000002 +Q9W5N2 Large ribosomal subunit protein eL38 28.57 2 11 0 453227.8985 721521.689 +Q9W5P1 Mediator of RNA polymerase II transcription subunit 21 13.38 2 3 2 30988.827000000005 48955.8963 +Q9W5R8 Large ribosomal subunit protein uL18 21.07 9 16 0 1148232.1922 1504971.5384000002 +Q9W5Y0 Neprilysin-3 1.02 1 1 1 9041.507 8082.765 +Q9XTL9 Glycogen phosphorylase 43.13 40 74 0 8434758.11098 9755239.6612 +Q9XTM1 Exocyst complex component 5 1.27 1 1 1 2460.5574 2626.0334 +Q9XTN2 Insulin receptor substrate 1 1.86 2 2 0 5970.4277 5779.247 +Q9XY35 Cytochrome b-c1 complex subunit 9 41.82 2 12 2 808641.51258 936578.2283399999 +Q9XYM0 Adapter molecule Crk 49.45 13 35 0 1646381.1488 1945076.582 +Q9XYZ5 DNA damage-binding protein 1 4.82 6 6 6 60494.77797 97431.587 +Q9XZ14 Protein gone early 8.19 5 6 0 50454.2918 57640.844000000005 +Q9XZ58 COP9 signalosome complex subunit 5 25.99 7 13 1 130459.42569999999 165926.87300000002 +Q9XZ63 Mesencephalic astrocyte-derived neurotrophic factor homolog 31.21 7 16 7 2602130.652 2051788.1764 +Q9XZH6 V-type proton ATPase subunit G 40.17 6 24 0 6673669.1169 7074336.5342 +Q9XZJ4 Proteasome subunit alpha type-6 44.26 12 38 0 2630862.9375 3245222.9584 +Q9XZL8 Protein sarah 31.16 7 13 0 474794.9979 598492.414 +Q9Y091 Pre-mRNA-splicing regulator female-lethal(2)D 3.73 2 2 0 14165.001 21623.749000000003 +Q9Y0I1 NuA4 complex subunit EAF3 homolog 6.6 2 2 0 56592.339 86604.67599999999 +Q9Y0V3 Mitochondrial import inner membrane translocase subunit Tim10B 47.01 5 8 5 44368.0273 47759.5509 +Q9Y0Y2 Adenylosuccinate synthetase 30.43 12 21 12 485194.1592 491329.86354 +Q9Y105 Probable glutamine--tRNA ligase 4.76 4 5 4 89580.198 429831.22000000003 +Q9Y1A3 Mitochondrial import inner membrane translocase subunit Tim8 44.32 5 17 0 1232000.7729 3722362.76004 +X2JAU8 Protein nervous wreck 40.0 41 115 41 11090621.14819 13313550.78873 +A0A021WW32 Verthandi, isoform B 2.21 2 2 0 14179.979 19638.256 +A0A023GPM5 Diacylglycerol kinase 13.32 12 17 0 711791.8563999999 925829.9053 +A0A0B4JCR9 Uncharacterized protein, isoform D 2.88 1 1 0 28547.96 33568.35 +A0A0B4JCT7 Jabba, isoform F 15.27 8 17 0 1002735.4201199999 1340764.33116 +A0A0B4JCW4 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.08 27 176 0 84582.6612 148188.7715 +A0A0B4JCX2 RIM-binding protein, isoform G 8.37 12 16 0 204570.8849 216697.5369 +A0A0B4JCY5 Myosin heavy chain-like, isoform H 3.38 2 2 0 21594.049 23265.466500000002 +A0A0B4JCY6 Cheerio, isoform I 37.5 70 122 0 4197737.89287 5157231.47922 +A0A0B4JCZ0 Oxysterol-binding protein 2.73 3 3 0 22562.416 31552.3346 +A0A0B4JD18 Related to the N terminus of tre oncogene, isoform E 2.35 1 1 0 786.36334 2086.958 +A0A0B4JD47 Missing-in-metastasis, isoform E 2.46 1 1 0 502.4438 625.5135 +A0A0B4JD97 Transforming acidic coiled-coil protein, isoform K 16.49 21 30 0 421672.3975 524969.58589 +A0A0B4K615 Smallish, isoform O 10.77 14 16 0 309911.70586 343957.9636 +A0A0B4K618 Fragile X messenger ribonucleoprotein 1, isoform G 10.29 6 7 0 40982.11875 39055.7631 +A0A0B4K620 Oxidation resistance protein 1 13.84 17 21 0 851153.44393 1085377.0851 +A0A0B4K661 Tropomyosin 1, isoform Q 82.4 41 229 0 26436018.25836 27488037.4607 +A0A0B4K663 Non-specific lethal 1, isoform N 5.54 6 9 0 50515.4023 49893.19976 +A0A0B4K6C8 Uncharacterized protein, isoform G 3.9 5 7 0 55200.5271 61689.208 +A0A0B4K6I1 Scribble, isoform N 11.94 25 37 0 1048084.33545 1290567.1041 +A0A0B4K6K8 Musashi, isoform D 16.69 7 14 0 553516.34146 642509.6455 +A0A0B4K6P4 Hephaestus, isoform W 4.51 4 4 0 39079.9604 54816.801699999996 +A0A0B4K6Z2 Dystrobrevin 16.46 11 13 0 209255.61376 246960.94286 +A0A0B4K709 Uncharacterized protein, isoform E 9.93 6 7 0 80803.0 97849.685 +A0A0B4K716 Diacylglycerol kinase 4.47 7 8 0 157964.5361 159006.1373 +A0A0B4K765 Paired amphipathic helix protein Sin3a 1.89 4 5 0 15312.816710000001 23084.0621 +A0A0B4K774 Abelson interacting protein, isoform D 29.77 11 19 0 382121.56354 437486.9401 +A0A0B4K775 Golgin 97, isoform B 1.99 1 1 0 3306.133 4856.6934 +A0A0B4K7A5 Hu li tai shao, isoform Q 62.38 42 137 1 8619958.95887 10775999.39228 +A0A0B4K7B0 Smooth, isoform O 20.65 9 17 0 365711.4077 455610.0511 +A0A0B4K7C1 Aspartyl beta-hydroxylase, isoform H 8.47 7 9 0 124879.1335 155121.91 +A0A0B4K7D8 Uncharacterized protein, isoform B 5.46 2 2 0 26023.094299999997 33110.214 +A0A0B4K7E3 Phosphatidylinositol 4-phosphate 5-kinase 59B, isoform F 11.71 6 6 0 25816.9558 37426.8188 +A0A0B4K7H0 Tetratricopeptide repeat domain 7, isoform B 1.29 1 1 0 2112.3706 3352.9946 +A0A0B4K7H3 Eucalyptus, isoform B 81.25 8 45 2 8531094.40906 9715888.1846 +A0A0B4K7H7 Down syndrome cell adhesion molecule 1, isoform BY (Fragment) 3.51 7 8 0 39120.3456 52294.6074 +A0A0B4K7T7 Rho guanine nucleotide exchange factor 2, isoform G 1.13 3 3 0 6230.0008 6413.7110999999995 +A0A0B4K7U0 Myosin-7a binding protein, isoform M 12.92 28 69 0 3440277.12591 4616339.14195 +A0A0B4K7V8 Bruchpilot, isoform K 54.13 106 316 1 342133.878 187675.83899999998 +A0A0B4K7X5 glycogenin glucosyltransferase 19.27 10 31 0 1200601.47477 1236571.6471 +A0A0B4K885 Kenny, isoform B 20.57 6 6 1 159061.767 141952.446 +A0A0B4K891 Poly(A) binding protein interacting protein 1, isoform E 21.54 9 10 0 237058.51213 225717.32526 +A0A0B4KED6 Defective proboscis extension response 12, isoform D 8.72 3 3 0 52122.601299999995 62896.3829 +A0A0B4KEE1 Aldehyde dehydrogenase 26.16 12 21 0 572010.8649 718404.1995 +A0A0B4KEE5 Myosin-7a binding protein, isoform Q 22.09 37 89 0 1454523.7896 1696933.6369 +A0A0B4KEH7 CAP, isoform Y 15.82 36 48 0 1466076.2056 1799864.34163 +A0A0B4KEI5 Serrate RNA effector molecule homolog 7.91 7 7 0 127779.7894 140721.2292 +A0A0B4KEJ7 Coronin 14.21 7 8 0 73517.8587 105440.11893 +A0A0B4KEP1 Reduction in Cnn dots 1, isoform D 4.03 4 4 0 16745.86457 19857.2767 +A0A0B4KER0 Relative of woc, isoform C 2.69 3 3 0 22673.8076 27751.5011 +A0A0B4KEW6 Amphiphysin, isoform B 43.82 22 66 1 108195.607 148110.63900000002 +A0A0B4KEX6 Jitterbug, isoform M 8.63 24 27 0 330374.90544 383057.93173 +A0A0B4KF06 Valine--tRNA ligase 1.99 2 2 0 4742.0107 5843.0796 +A0A0B4KF22 Juvenile hormone binding protein 2, isoform E 11.42 3 3 0 17400.514900000002 25155.2629 +A0A0B4KF34 Uncharacterized protein, isoform D 5.75 4 4 0 61615.123999999996 60693.845 +A0A0B4KF46 E1 ubiquitin-activating enzyme 19.64 18 23 0 476811.63060000003 688425.99246 +A0A0B4KF84 Stretchin-Mlck, isoform S 3.13 8 8 0 97888.2476 112511.6926 +A0A0B4KFA3 Uncharacterized protein, isoform F 1.9 3 4 0 43775.35198 64995.223 +A0A0B4KFA6 alpha-glucosidase 35.27 17 46 0 2773533.7745 3489171.85176 +A0A0B4KFD1 LDL receptor protein 1, isoform F 0.86 4 4 0 41128.3013 54742.9847 +A0A0B4KFE2 Like-AP180, isoform I 30.15 24 115 0 12038453.5782 13773618.267199999 +A0A0B4KFE4 long-chain-fatty-acid--CoA ligase 12.64 10 15 0 1027260.3720399999 1347250.2257700001 +A0A0B4KFE5 methenyltetrahydrofolate cyclohydrolase 46.53 13 25 1 1003285.5277 1091673.5935 +A0A0B4KFF6 DNAation factor-related protein 2, isoform D 22.54 10 18 0 884932.852 1188257.2242 +A0A0B4KFK4 Uncharacterized protein, isoform E 11.56 5 6 0 441597.8535 384562.9967 +A0A0B4KFQ3 DNAation factor-related protein 1, isoform B 6.21 2 2 0 5515.0001 7908.3661999999995 +A0A0B4KFT3 Protein kinase C 14.33 11 13 0 309107.39136 294250.094 +A0A0B4KFT9 Quaking related 54B, isoform E 10.37 6 8 0 166400.6306 212450.8763 +A0A0B4KFX8 Flapper, isoform C 3.79 2 3 0 33214.97 51114.6251 +A0A0B4KFY9 Lamin C, isoform B 63.12 45 133 2 589.2943 1993.4275 +A0A0B4KFZ2 Uncharacterized protein, isoform G 2.41 3 3 0 17392.941 21114.532 +A0A0B4KFZ4 Transmembrane 4 superfamily, isoform C 7.88 2 2 0 48818.479999999996 69209.932 +A0A0B4KG94 Uncharacterized protein, isoform B 12.53 6 8 0 183567.34994 250832.79015999998 +A0A0B4KGC9 Mitochondrial calcium uptake 3, isoform F 4.36 3 3 0 35944.6684 40123.0986 +A0A0B4KGE5 Bonus, isoform C 6.46 7 7 0 61758.46377 77170.113 +A0A0B4KGF0 Protein kinase D, isoform H 8.96 1 1 0 10335.265 11252.832 +A0A0B4KGF5 Uncharacterized protein, isoform C 9.9 6 7 0 109701.3509 64678.5477 +A0A0B4KGF7 beta-mannosidase 0.77 1 1 0 49524.043 54786.848 +A0A0B4KGG9 C-terminal binding protein, isoform F 22.98 10 18 0 218718.63225 268297.8191 +A0A0B4KGI5 Carboxylic ester hydrolase 20.91 12 28 0 2264140.33824 3119978.1267999997 +A0A0B4KGK8 Syncrip, isoform R 34.8 18 45 0 1532433.26795 2020634.1583 +A0A0B4KGM5 Uncharacterized protein, isoform B 2.63 3 3 0 10276.585 5040.38623 +A0A0B4KGP4 Beaten path IV, isoform B 1.79 1 2 0 17278.053 23337.175000000003 +A0A0B4KGQ4 Easter, isoform B 6.51 2 2 1 6878.250599999999 9821.0393 +A0A0B4KGS4 non-specific serine/threonine protein kinase 2.74 1 1 0 50305.39 50993.023 +A0A0B4KGU9 Extended synaptotagmin-like protein 2, isoform D 33.1 23 41 0 1464842.2245 1679649.83125 +A0A0B4KGW3 Uncharacterized protein, isoform B 4.05 3 3 0 27835.870000000003 35411.249599999996 +A0A0B4KGY2 Uncharacterized protein, isoform E 2.64 3 3 0 8235.2818 9186.0674 +A0A0B4KH03 Tetraspanin 14.44 4 7 1 128396.069 158111.4389 +A0A0B4KH14 Ras modification protein ERF4 33.54 4 6 0 96016.3676 105857.77560000001 +A0A0B4KH34 Annexin 57.41 23 123 4 15010514.28945 18158584.87232 +A0A0B4KH38 Low-density lipoprotein receptor-related protein 8 1.86 2 2 0 6787.3986 9061.5738 +A0A0B4KH68 Lysosomal enzyme receptor protein, isoform E 1.2 1 2 0 7830.393 13252.860700000001 +A0A0B4KH84 Cuticular protein 97Ea, isoform B 32.78 10 18 0 599317.74753 780922.4093 +A0A0B4KHB9 Serine/threonine protein phosphatase 2A regulatory subunit 27.23 18 31 0 464638.2094 589030.9335 +A0A0B4KHE1 Uncharacterized protein, isoform B 12.58 4 4 0 105216.975 140909.034 +A0A0B4KHF0 Ferritin 77.97 21 133 1 18622476.69074 22824800.32651 +A0A0B4KHJ9 Tropomyosin 2, isoform E 82.39 41 309 4 114852684.39668 94975544.73382 +A0A0B4KHL4 non-specific serine/threonine protein kinase 17.88 9 10 2 175096.78833 224159.0699 +A0A0B4KHN1 Cheerio, isoform O 32.63 70 122 0 3641.8857 7923.061 +A0A0B4KHN3 Scribble, isoform S 11.19 17 27 0 93897.95999999999 88291.533 +A0A0B4KHP4 Couch potato, isoform P 5.11 5 16 0 657772.9526 854288.048 +A0A0B4KHS1 Crumbs, isoform D 9.8 20 31 1 645275.84707 848480.71013 +A0A0B4KHT5 Syncrip, isoform J 26.02 18 40 0 166823.006 224641.16199999998 +A0A0B4KHT8 Julius seizure, isoform E 12.85 7 11 0 251005.1395 288462.8144 +A0A0B4KHW3 Aralar1, isoform F 7.64 5 6 1 118816.718 120963.213 +A0A0B4KHW7 Uncharacterized protein, isoform P 16.29 5 6 0 89807.37281999999 114114.1544 +A0A0B4KHZ0 Without children, isoform E 0.53 1 1 0 558.6653 463.22498 +A0A0B4KHZ1 Lipid storage droplet-1, isoform D 41.73 15 44 1 3043435.13274 4150336.9486 +A0A0B4KI23 Uncharacterized protein 27.64 4 29 4 3918957.68246 4985337.0775 +A0A0B4KI57 Glucosamine 6-phosphate N-acetyltransferase 18.42 4 5 0 61335.633 81698.3303 +A0A0B4LEH1 Sticks and stones, isoform C 0.47 1 1 0 5935.728 9929.454 +A0A0B4LES9 Phosphatidylinositol-glycan biosynthesis class X protein 13.99 4 7 0 31440.9747 46931.2509 +A0A0B4LEW1 Bloated, isoform E 2.94 3 4 0 6372.6998 7758.82574 +A0A0B4LEY1 Protein transport protein Sec31A 3.57 4 4 0 22347.9482 22366.58527 +A0A0B4LF49 Menage a trois, isoform D 38.64 18 29 0 969511.5925799999 1232839.4017 +A0A0B4LF88 Tripeptidyl-peptidase 2 16.65 22 35 0 1280894.3398 1639590.1976 +A0A0B4LF95 glutaminase 18.84 10 11 0 232458.1109 243167.2722 +A0A0B4LFA6 Proteasomal ubiquitin receptor ADRM1 homolog 47.17 15 27 2 1736340.48492 1807747.40565 +A0A0B4LFB8 Dynamin-like GTPase OPA1, mitochondrial 15.7 15 18 0 628024.7154 868842.548 +A0A0B4LFE1 Uncharacterized protein, isoform B 14.29 3 5 0 94865.3173 117387.3248 +A0A0B4LFH2 Caspar, isoform C 3.62 3 3 0 25770.917999999998 27434.3407 +A0A0B4LFL6 Double hit, isoform C 18.45 5 5 0 93988.6641 109885.6497 +A0A0B4LFR4 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 2 5.06 3 3 0 15455.5039 19880.4274 +A0A0B4LFU6 Beta-glucuronidase 4.82 3 4 0 32800.423240000004 38889.955 +A0A0B4LFW3 Odorant-binding protein 56e, isoform B 35.11 5 9 0 435090.42 500516.60630000004 +A0A0B4LG34 Liprin-gamma, isoform E 1.57 2 2 0 38441.97623 50028.12216 +A0A0B4LG88 Quaking related 58E-1, isoform D 22.69 10 15 0 543783.61605 758937.79368 +A0A0B4LG95 Lethal (2) k09913, isoform F 11.08 3 3 0 75311.74336000001 73160.8569 +A0A0B4LGB0 Gp150, isoform E 9.48 11 14 0 267658.8696 394927.276 +A0A0B4LGB7 Calcium-transporting ATPase 35.04 33 52 1 1490628.1423199999 1882108.10777 +A0A0B4LGD3 Kazachoc, isoform G 9.38 10 11 0 501610.5884 552522.227 +A0A0B4LGH8 Oxysterol-binding protein 6.35 3 3 0 54993.7163 65424.771 +A0A0B4LGI1 Guanine nucleotide-binding protein G(s) subunit alpha 46.6 15 33 1 401100.66839999997 416799.17071 +A0A0B4LGM0 Prominin, isoform E 7.93 9 9 0 73476.3445 82268.9947 +A0A0B4LGQ1 Superoxide dismutase 53.92 11 62 0 8054151.8774 8425512.46826 +A0A0B4LGT9 Uncharacterized protein, isoform B 10.61 3 3 0 125048.21900000001 118119.951 +A0A0B4LGV6 Insulator binding factor 1, isoform B 38.4 7 10 0 103726.1688 141288.2193 +A0A0B4LGY1 Uncoordinated 115a, isoform G 27.29 20 41 0 2256606.21514 2735685.3587 +A0A0B4LH71 Synapse-associated protein 47kD, isoform K 72.05 20 145 0 28330.6547 32479.8043 +A0A0B4LHC9 Thioredoxin-related transmembrane protein 1 11.52 4 7 0 392707.0584 516572.5487 +A0A0B4LHH8 Argus, isoform C 0.81 1 1 0 23057.143 33529.797 +A0A0B4LHL1 Uncharacterized protein, isoform C 4.09 2 2 0 11214.86796 16705.8125 +A0A0B4LHR8 Uncharacterized protein, isoform G 11.63 8 9 0 126525.079 162660.5489 +A0A0B4LHS0 Lnk, isoform E 1.14 1 1 0 21262.93 45724.75 +A0A0B4LI09 Uncharacterized protein, isoform C 4.3 2 2 0 20516.379 25510.361 +A0A0B4LIA3 non-specific serine/threonine protein kinase 3.21 2 2 0 12732.371 20481.58 +A0A0B4LIC4 Uncharacterized protein, isoform C 1.14 1 1 0 8132.422 6800.21 +A0A0B4LID7 Caseinolytic protease chaperone subunit, isoform C 28.42 14 18 0 424169.1516 341914.30456 +A0A0B4LIE8 Mitochondrial coenzyme A transporter SLC25A42 8.52 2 2 0 25225.854 33700.486300000004 +A0A0C4DH96 Sidestep V, isoform B 1.7 2 3 0 26756.542 27922.360999999997 +A0A0C4DHA8 Nuclear protein MDM1 33.43 21 33 1 706273.13 841648.9856 +A0A0C4DHF6 Dystroglycan 1 5.63 8 9 0 150371.8271 174919.593 +A0A0C4DHN4 Defective proboscis extension response 21 20.57 5 6 5 70718.5823 90748.688 +A0A0C4FEI8 Granny smith, isoform F 16.95 9 13 0 399348.20499999996 536011.0501999999 +A0A0S0WGZ0 Still life, isoform Q 1.01 3 3 0 8981.5607 10175.9293 +A0A0U1RVK6 Fructose-1,6-bisphosphatase isozyme 2 32.36 9 16 0 1082316.7897 1297206.4871 +A0A126GUQ4 Carnitine O-Acetyl-Transferase, isoform E 9.09 6 6 0 101584.25279999999 128135.25 +A0A126GUR6 Succinate--CoA ligase [ADP-forming] subunit beta, mitochondrial 66.15 27 176 0 33009340.57311 38468761.41981 +A0A126GV06 Uncharacterized protein, isoform B 17.23 6 9 0 158768.63619999998 260054.811 +A0A126GV33 Uncharacterized protein, isoform F 7.4 2 3 0 30244.319199999998 57679.082 +A0A1W5PXH3 Uncharacterized protein, isoform E 0.81 1 1 0 9050.678 11380.013 +A0A4D6K1L3 8 kDa dynein light chain 22.85 5 17 1 5932732.26518 8421431.88144 +A0A4D6K4X9 Axundead, isoform F 3.44 2 2 0 0.0 484.63013 +A0A4D6K595 Synapse-associated protein 47kD, isoform M 43.74 22 141 0 19233119.63016 27377501.21945 +A0A4D6K5M0 Golgi microtubule-associated protein, isoform D 15.2 19 20 0 249902.41016 296466.78729999997 +A0A4P1SA55 alpha-glucosidase 12.35 8 10 0 196159.3033 200113.262 +A0A4P1SAA7 IP07559p 11.17 2 3 1 28803.0312 48760.507 +A0A4P7V9T9 polynucleotide adenylyltransferase 2.78 1 2 0 0.0 1295.29906 +A0A6F7UQK0 Cytoplasmic linker protein 190, isoform W 31.59 53 97 1 2384908.92621 2797722.44738 +A0A6H2EDG9 Uncharacterized protein, isoform G 18.84 14 16 0 235523.7149 295474.4345 +A0A6H2EEJ8 Uncharacterized protein, isoform C 2.43 2 2 0 3345.7297 2936.386 +A0A6H2EEL7 Uncharacterized protein, isoform A 7.35 2 2 2 14468.258 18724.082 +A0A6H2EEU5 Nuak family kinase, isoform J 0.99 2 2 0 14302.869180000002 24248.5822 +A0A6H2EG25 Terribly reduced optic lobes, isoform BC 39.02 125 332 0 10959348.84334 14133241.54706 +A0A6H2EG45 Uncharacterized protein, isoform D 2.82 1 1 0 6410.5107 7022.366 +A0A6H2EG56 Tropomyosin 1, isoform T 82.27 34 244 3 7646575.342999999 6232575.2467 +A0A6H2EGA2 Mitochondrial nucleoid factor 1 45.19 5 9 4 292962.9345 305231.441 +A0A6H2EIE0 Amino acid transporter 6.91 3 7 0 53847.8621 74594.18525 +A0A6M3Q7Q7 Hu li tai shao, isoform T 65.78 41 137 1 22908.8297 32102.282 +A0A6M3Q951 CAP, isoform AA 33.33 26 35 0 41538.956 53701.314699999995 +A0ACA5YM07 Uncharacterized protein, isoform I 3.3 2 2 0 13473.470299999999 18701.0317 +A0ACD4DAN3 Uncharacterized protein, isoform Y 14.07 9 9 0 133449.1438 180651.04537 +A0ACD4DAP6 Bruchpilot, isoform N 44.32 115 345 0 41414503.88023 48756216.90066 +A0ACD4DAQ1 P-element somatic inhibitor, isoform E 32.62 24 44 0 1162929.16069 1635498.60359 +A0ACD4DAT6 Glorund, isoform D 37.03 17 39 0 1914510.9257 2368809.4952 +A0ACD4DAU9 Found in neurons, isoform K 33.69 12 33 0 1427780.6618 1729436.1127 +A0ACD4DAV1 Lethal (1) G0289, isoform D 11.78 7 12 0 78785.7495 102624.6601 +A0AQH0 Proteasome subunit beta 37.95 7 12 7 90744.78672 118436.86415 +A1Z6F6 FI18602p1 16.42 12 15 0 278822.93429999996 358681.873 +A1Z6G9 FI18173p1 7.0 2 2 2 25541.65312 22980.30242 +A1Z6H4 RE52822p 16.12 8 11 0 422038.0337 552075.4546 +A1Z6L9 Heat shock protein 75 kDa, mitochondrial 15.48 9 21 8 64772.571599999996 68940.8916 +A1Z6N5 FAD-dependent oxidoreductase domain-containing protein 1 4.09 2 2 2 16953.0295 25744.625 +A1Z6P3 Eb1, isoform F 46.46 12 36 3 517065.0358 577254.1836 +A1Z6Q0 Klaroid, isoform D 35.86 13 35 0 981128.91966 1234822.71775 +A1Z6R7 FI21445p1 51.79 12 20 12 463847.88629999995 632085.58778 +A1Z6V5 FI01422p 44.02 15 36 15 746941.0285 1041669.3783 +A1Z6X6 Lactoylglutathione lyase 52.84 7 12 7 403716.28825 557333.36315 +A1Z729 NADP-retinol dehydrogenase 22.42 7 12 4 133321.1304 192455.97484 +A1Z759 Uncharacterized protein, isoform A 5.1 3 3 0 43371.782 55746.82 +A1Z765 Uncharacterized protein, isoform A 23.76 3 4 0 40792.125 54212.3446 +A1Z784 Acetyl-CoA carboxylase, isoform A 1.69 4 4 0 8275.3704 10545.954399999999 +A1Z7B8 GEO08456p1 21.52 3 10 3 319134.7582 435316.8709 +A1Z7G2 MIP13653p 13.39 2 8 2 2288616.746 2950991.5379999997 +A1Z7H7 Phenoloxidase-activating factor 2 18.24 7 13 7 197562.9438 302116.81717 +A1Z7H8 Phenoloxidase-activating factor 2 9.8 4 4 4 16493.4138 21752.7048 +A1Z7K6 FI20236p1 10.06 4 4 4 43972.322 64149.144 +A1Z7K8 AaRS-interacting multifunctional protein 1 37.77 9 11 9 470789.3515 538980.1163 +A1Z7P1 Phosphoglucomutase 2a 6.58 4 4 4 118023.084 187103.28 +A1Z7Q8 5'-AMP-activated protein kinase subunit beta-1 20.53 7 11 1 215433.6669 276932.98 +A1Z7S3 Rab32, isoform B 37.61 22 43 8 1536664.9165 2118206.3346 +A1Z7V9 FI20020p1 6.93 4 6 1 134605.892 137691.37797 +A1Z7X7 Glutathione S transferase T2 15.79 3 3 3 23018.012400000003 41154.256499999996 +A1Z7X8 FI02944p 18.53 7 7 7 105794.5785 128892.43 +A1Z803 FI02892p 32.35 12 17 12 376227.4903 541029.5026 +A1Z843 Nodal modulator 3 13.26 15 17 15 411125.7259 457909.3257 +A1Z847 Uncharacterized protein, isoform B 24.39 15 42 3 3266505.91412 3633370.5782799996 +A1Z871 CAP, isoform B 14.53 25 34 0 320939.6413 397775.29 +A1Z893 1-Cys peroxiredoxin 50.0 9 54 1 7314272.38237 9217987.53372 +A1Z8D3 (S)-2-hydroxy-acid oxidase 14.48 5 9 5 744832.3322999999 675177.9321000001 +A1Z8G0 Menage a trois, isoform A 38.99 19 32 0 163423.4565 213140.38499999998 +A1Z8G7 FI09243p 16.53 2 4 2 1982.3225 3471.1616 +A1Z8H1 Cuticular protein 47Ea 73.33 6 53 6 28699538.9588 33644031.8545 +A1Z8H6 Cuticular protein 47Ee 40.38 7 19 7 380760.0759 543227.92196 +A1Z8I8 Uncharacterized protein, isoform E 15.71 2 3 2 94393.12400000001 109238.25940000001 +A1Z8Y3 Cuticular protein 49Ab 8.88 2 5 2 21292.51332 29030.5343 +A1Z8Z3 Cuticular protein 49Ag 64.18 4 21 4 3671953.0576 4299752.2075000005 +A1Z8Z7 Cuticular protein 49Ah 37.89 7 17 7 666943.3544 536901.06675 +A1Z933 GEO02273p1 25.58 2 4 2 310493.755 393237.67299999995 +A1Z934 SD19268p 39.46 11 28 11 1677020.9945 2290318.6328000003 +A1Z935 Proton-coupled zinc antiporter SLC30A9, mitochondrial 7.42 4 5 0 63188.203 73945.94900000001 +A1Z968 Eukaryotic translation initiation factor 4 gamma 2 15.86 21 25 8 416280.90713999997 458183.14837 +A1Z992 1,4-alpha-glucan branching enzyme 6.28 4 4 4 81713.0834 104386.92199999999 +A1Z9B5 IP16508p 15.06 3 3 3 86858.28725 98763.61600000001 +A1Z9E3 Elongation factor Tu 56.03 21 56 21 4402977.74684 5623782.2227 +A1Z9I0 Cathepsin propeptide inhibitor domain-containing protein 32.8 13 24 13 2224610.3740000003 3028881.4076 +A1Z9J3 Short stop, isoform H 4.83 42 45 4 316721.4795 363025.57814 +A1Z9M2 Receptor expression-enhancing protein 12.92 3 10 1 542176.736 682597.194 +A1Z9M5 SAXO downstream of blistered 4.51 9 10 9 62736.86643 52294.91464 +A1Z9U2 Jet fuel, isoform A 4.46 2 7 2 987242.6784 1309803.7476 +A1Z9X4 Hibris, isoform B 2.35 2 2 0 5745.6612000000005 7393.2727 +A1ZA22 Translation initiation factor eIF2B subunit gamma 4.18 2 2 2 12359.372299999999 12563.947 +A1ZA23 FI18007p1 29.23 9 23 9 565007.0326 743002.8698 +A1ZA73 Stretchin-Mlck, isoform R 2.82 5 5 2 545.00684 549.57935 +A1ZA83 ER membrane protein complex subunit 7 23.67 5 10 5 391556.61 429137.628 +A1ZAA9 Uncharacterized protein, isoform B 17.73 4 6 4 84088.6483 122012.58499999999 +A1ZAC7 Coiled-coil domain-containing protein 93 8.91 6 6 6 40168.9026 59367.3785 +A1ZAH3 FI16515p1 4.82 2 2 0 2601.544 1195.28125 +A1ZAK3 Protein DEK 4.05 3 4 0 42500.916 55145.831999999995 +A1ZAL1 lysozyme 30.43 5 7 5 226535.233 359725.023 +A1ZAP8 Uncharacterized protein, isoform C 0.48 1 1 0 5962.8003 2627.679 +A1ZAU4 RH39096p 50.48 18 44 0 4946493.86288 6411320.2142 +A1ZB23 IP19117p 10.88 2 2 2 26151.5153 26275.800000000003 +A1ZB61 Bomanin bicipital 2, isoform A 8.44 1 1 1 12659.33 16822.256 +A1ZB68 FI01423p 47.27 11 25 11 963754.27584 1123801.59556 +A1ZB69 Glutathione S transferase E4 45.95 11 30 11 2422514.86294 4100117.7822000002 +A1ZB70 Glutathione S transferase E5 13.51 3 5 3 327645.478 460032.91099999996 +A1ZB71 Glutathione S transferase E6 31.53 8 23 8 887026.1325 1162098.4912 +A1ZB72 Glutathione S transferase E7 18.39 4 19 3 47638.3886 86774.89694 +A1ZB73 Glutathione S transferase E8, isoform A 14.41 3 4 3 30845.4352 39687.4973 +A1ZB79 Uncharacterized protein, isoform M 76.73 13 42 3 5235089.8016 6573821.7439 +A1ZBA5 FI07234p 4.64 2 2 2 152421.272 127490.054 +A1ZBB4 Uncharacterized protein, isoform B 7.63 6 7 0 133769.69 192628.1272 +A1ZBD8 Mucin-5AC 6.1 7 9 7 128911.77829999999 120724.0382 +A1ZBE9 Methionine--tRNA ligase, cytoplasmic 4.01 3 4 3 7411.715 12431.154999999999 +A1ZBJ2 Very long-chain specific acyl-CoA dehydrogenase, mitochondrial 35.25 20 52 20 2095560.4561 2687104.2586000003 +A1ZBK7 Crammer 27.85 2 11 2 257605.41710000002 512017.20790000004 +A1ZBL7 MAP/microtubule affinity-regulating kinase 3 21.15 18 21 0 43627.8196 53917.1957 +A1ZBM2 Tubulin-binding cofactor B 33.2 9 13 9 751395.6043 947346.6301000001 +A1ZBQ3 Odorant-binding protein 56g, isoform A 48.09 7 14 0 393895.6652 656154.787 +A1ZBU5 GNBP-like 3 41.45 4 4 4 99096.3097 145143.524 +A1ZBU6 Uncharacterized protein 19.15 3 4 3 41333.236399999994 54051.3733 +A1ZBU8 Uncharacterized protein, isoform A 54.29 11 60 11 4894214.87944 4986898.6283599995 +A1ZBV5 BLOC-1-related complex subunit 7 20.0 2 3 2 13282.6834 12205.8073 +A1ZBW0 Heterogeneous nuclear ribonucleoprotein K, isoform C 30.88 16 47 0 1371665.83603 1600810.7101 +A1ZBX6 lysozyme 14.53 3 4 3 34350.3794 30703.464399999997 +A1ZBY3 Defective proboscis extension response 1, isoform A 6.27 2 3 2 887.31067 1586.19587 +A2VEG3 IP16294p 1.06 1 1 0 4375.826 1850.8582 +A4UZL3 Eps15 homology domain containing protein-binding protein 1, isoform F 1.93 2 2 0 3334.3828 7111.346 +A4V0U4 Leukotriene A(4) hydrolase 7.83 5 5 0 194896.285 340135.20499999996 +A4V2A4 Mushroom-body expressed, isoform G 39.28 13 33 0 925582.4045000001 1160088.7427 +A4V2C3 calcium/calmodulin-dependent protein kinase 10.95 7 8 0 46170.5818 55714.310300000005 +A4V3J6 Heterogeneous nuclear ribonucleoprotein at 98DE, isoform F 25.48 9 21 0 958531.5406 1189059.3424 +A4V4F2 Flotillin 2, isoform F 54.82 25 77 0 5465693.48044 6868797.33493 +A4V4U5 Proline dehydrogenase 46.19 38 103 0 5624062.83188 7138199.4842799995 +A4V4V2 DISCO interacting protein 1, isoform B 11.98 3 4 0 10476.01298 14477.9887 +A8DRW0 Cuticular protein 49Aa 62.5 5 41 5 12591833.0545 14636497.89016 +A8DY78 Protein-serine/threonine kinase 20.38 8 13 1 222421.3501 245908.11222 +A8DY95 Uncharacterized protein, isoform C 8.96 8 11 0 152742.8821 191169.2941 +A8DYC5 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 1 38.36 4 14 2 3082409.4888 4980457.2574 +A8DYD1 Combgap, isoform L 11.11 9 11 0 152417.2967 166477.7739 +A8DYI6 Prohibitin 69.53 23 83 3 6952936.73396 8445180.22377 +A8DYJ6 Sidestep VIII, isoform B 12.99 14 33 0 676123.54965 794139.9194 +A8DYK6 Rad, Gem/Kir family member 3, isoform C 15.37 8 10 2 102773.1431 122970.52914 +A8DYL2 Uncharacterized protein, isoform G 2.21 2 2 2 4591.42067 3714.8338 +A8DYW2 Uncharacterized protein, isoform B 3.09 5 5 0 58578.2467 79808.2689 +A8DYZ9 Uncharacterized protein, isoform G 4.35 4 4 0 12647.7788 17797.332000000002 +A8DZ06 Stolid, isoform J 11.43 13 22 0 712694.2193 883301.11497 +A8DZ14 FI17828p1 24.09 13 28 7 1528957.7759 2111562.9197 +A8DZ20 Rho-type guanine nucleotide exchange factor, isoform D 3.49 4 4 0 27844.0878 34700.0098 +A8DZ27 Defective proboscis extension response 7, isoform F 6.73 2 2 0 27338.131 37689.242 +A8DZ29 Eukaryotic translation initiation factor 4G1, isoform B 19.85 30 41 0 628752.14489 805776.4985 +A8E6W0 IP19808p 28.28 5 8 5 125333.2804 144286.5964 +A8JNG6 Kazal-like domain-containing protein 27.82 3 3 3 292553.074 378184.198 +A8JNJ6 Karst, isoform E 2.12 9 9 0 56249.56912 52353.2034 +A8JNJ8 Uncharacterized protein, isoform M 3.56 3 4 0 14661.919 14773.835430000001 +A8JNM0 Target of wingless, isoform C 4.93 3 3 0 65505.503000000004 88648.55900000001 +A8JNP2 arginine kinase 73.87 45 492 2 5312257.665800001 6953997.4765 +A8JNP7 Inhibitor-2, isoform B 47.1 10 14 0 206362.08905 261424.43668 +A8JNS4 Starvin, isoform E 10.08 5 6 0 90178.19967 89184.5322 +A8JNT1 Uncharacterized protein, isoform B 14.22 3 4 0 21460.016 26124.6443 +A8JNT7 Heat shock protein cognate 20 22.92 6 7 6 184810.5333 252244.591 +A8JNX0 ADP-ribosylation factor GTPase activating protein 3, isoform H 15.37 7 8 0 105020.1618 122578.56390000001 +A8JQT5 Moesin/ezrin/radixin homolog 1 0.7 2 2 2 1748.1146 2226.072 +A8JQV2 Nuclear protein MDM1 24.91 19 30 1 31142.4714 35915.48457 +A8JQW3 Pinin, isoform B 17.26 5 5 0 50545.381499999996 79513.5536 +A8JQY2 Uncharacterized protein, isoform C 5.34 2 2 0 103746.21530000001 171910.603 +A8JR01 Kramer, isoform I 1.39 5 5 0 27499.3125 40248.38216 +A8JR25 Fasciclin 1, isoform D 49.55 30 166 1 118687.667 146928.817 +A8JR57 Uncharacterized protein, isoform D 11.92 6 8 0 374515.549 464783.7226 +A8JR58 Hadley, isoform B 11.24 3 3 2 23994.25 29569.803399999997 +A8JRB8 Isocitrate dehydrogenase (NAD(+)) 3 non-catalytic subunit gamma, isoform C 57.65 17 93 0 6383455.66929 7456705.2215 +A8JRH3 FI20012p1 71.29 30 91 1 7303176.95277 8954042.726400001 +A8JTM7 Megalin, isoform A 4.74 23 27 23 215789.09046 236444.5417 +A8JUQ2 Dual specificity protein phosphatase 28.32 6 7 0 68899.46549999999 75215.79443 +A8JUU1 Secretory 16, isoform E 2.82 4 4 0 27271.1627 23480.513700000003 +A8JUZ6 MIP03678p 13.29 4 5 0 136087.36299999998 75097.6262 +A8JUZ7 Uncharacterized protein, isoform B 1.06 2 2 0 8790.704 9954.476 +A8JV09 Coronin 0.64 1 1 0 29864.223 42110.477 +A8JV25 Uncharacterized protein, isoform D 26.78 16 43 0 1669251.15214 2003009.0977399999 +A8WH76 GEO10024p1 51.85 5 19 5 726468.0123000001 1099410.38286 +A8Y4V5 FI20903p1 8.21 2 2 2 25552.8307 26063.3441 +A8Y527 Homeobox protein ceh-24 5.21 1 3 0 3294.1613500000003 5579.16974 +A8Y535 Cytochrome b-c1 complex subunit 6 41.18 4 22 2 7002979.83854 8181619.08828 +A8Y589 Programmed cell death protein 6 15.73 3 3 3 49133.0697 63931.005 +B6IDV6 PDGF- and VEGF-receptor related, isoform G 1.29 2 3 0 13308.323 11499.302 +B7YZH1 FI20143p1 5.74 3 3 0 28589.9182 30413.0206 +B7YZN0 Syndecan 13.56 7 9 0 251766.4377 368267.38420000003 +B7YZN4 GH02741p3 38.46 3 3 3 152726.782 181688.949 +B7YZN8 GH02741p1 10.53 1 1 1 33798.895 39943.28 +B7YZQ1 Sterile20-like kinase, isoform F 5.2 8 8 0 52839.0054 69546.5375 +B7YZQ7 Inorganic pyrophosphatase 60.0 16 89 0 10779508.19646 12460449.98572 +B7YZQ9 Neuropeptide-like 1, isoform C 10.27 3 3 1 11510.95457 17634.119229999997 +B7YZV2 Phosphodiesterase 10.49 9 10 0 86432.68213 114806.273 +B7YZX0 Hig-anchoring scaffold protein, isoform G 15.21 21 35 0 600258.77101 889238.94828 +B7Z001 Fatty acid synthase 18.78 43 71 0 3867692.17774 5017951.96341 +B7Z002 Kismet, isoform C 1.2 4 4 1 19643.035 26209.846 +B7Z005 Drongo, isoform I 13.62 6 7 0 23707.49685 30477.977 +B7Z010 Cappuccino, isoform E 1.95 3 3 0 18212.2749 22240.745799999997 +B7Z060 TBP-associated factor 4, isoform E 7.44 8 8 0 79883.1293 82657.91609 +B7Z078 E3 ubiquitin-protein ligase 7.81 3 3 1 48990.8615 67199.862 +B7Z0B2 Uncharacterized protein, isoform E 17.53 7 7 0 67313.78705 77274.09820000001 +B7Z0B9 Farmer, isoform H 1.78 2 5 0 35629.60964 44100.71874 +B7Z0C9 GH15104p1 23.16 3 5 3 167216.108 195601.75400000002 +B7Z0E0 Isocitrate dehydrogenase [NADP] 70.35 37 137 0 18276736.18625 25341016.2175 +B7Z0M0 FI17308p1 21.31 2 2 1 4823.5674 6656.8403 +B7Z0N0 Uncharacterized protein, isoform B 6.2 2 2 2 28388.281000000003 37374.125 +B7Z0P8 uridine/cytidine kinase 24.92 7 9 1 306678.74194 408180.93600000005 +B7Z0Q1 inositol-polyphosphate 5-phosphatase 25.36 11 20 3 318113.23147 380983.1288 +B7Z0T5 Metastasis-associated protein MTA3 5.63 5 6 0 44953.19026 50122.1713 +B7Z107 GH09380p1 43.48 4 7 4 355900.0182 427969.14300000004 +B7Z126 non-specific serine/threonine protein kinase 1.21 2 2 1 14513.973 18581.572 +B7Z143 Protein interacting with Ttk69 and Sin3A, isoform D 10.32 4 4 0 37559.9972 44920.4928 +C0HDP4 MIP05618p 5.36 2 2 0 19724.9774 19125.4127 +C0PDF4 palmitoyl-protein hydrolase 57.92 9 47 0 1917919.59626 2625682.9054 +C7LAG1 CoRest, isoform G 6.67 5 5 1 42580.96399999999 31025.562899999997 +C7LAH9 Moesin/ezrin/radixin homolog 1 39.47 31 75 1 2834359.55435 3235457.32422 +C9QP70 MIP12608p 25.61 4 4 4 60731.375700000004 58809.009 +C9QPE7 Trehalose 6-phosphate phosphatase 43.92 12 27 0 2350164.561 2756058.0468 +D0IQJ8 Cysteine string protein, isoform F 32.53 9 12 0 260951.52178 238030.20346 +D0UGE6 Tenectin isoform 1 2.31 7 8 7 77674.4528 104346.0224 +D0Z756 MIP14966p 31.93 16 55 0 3472883.11535 4291669.45722 +D1YSG0 Bent, isoform F 4.91 37 40 0 436533.48592 562700.6555 +D3DML3 Connector of kinase to AP-1, isoform E 11.75 8 14 0 339645.0078 386437.658 +D3DMM0 MIP15702p 23.27 9 24 0 1281058.669 1635847.0201 +D3DMM4 MIP15217p 36.68 27 74 0 5728528.3361 7476984.64379 +D3DMP0 Peptide-methionine (R)-S-oxide reductase 29.17 6 10 3 549550.85737 419556.42883 +D5SHT6 MIP21537p 7.48 3 3 0 13563.276000000002 17647.7518 +E1JGK8 Uncharacterized protein, isoform A 12.94 1 2 1 10518.884699999999 9819.75 +E1JGL5 Uncharacterized protein, isoform L 76.08 11 38 1 310236.3846 357482.7819 +E1JGN0 MAP/microtubule affinity-regulating kinase 3 19.46 19 23 0 486236.59774999996 475117.20523 +E1JGP2 RIC3 acetylcholine receptor chaperone, isoform N 26.58 10 21 0 360127.179 444215.8886 +E1JGR3 GEO02620p1 24.62 3 4 3 7205.361 10117.853000000001 +E1JGY6 Hulk, isoform F 16.85 27 41 0 961293.01236 1663956.2627 +E1JH26 Superoxide dismutase [Cu-Zn] 53.41 13 21 1 394374.787 476487.14989999996 +E1JH43 Deneddylase 1, isoform C 6.83 2 2 0 17059.0747 15073.051500000001 +E1JH79 Myelodysplasia/myeloid leukemia factor, isoform E 7.74 3 3 0 8456.9293 7478.7833 +E1JH90 Patronin, isoform F 2.57 4 4 0 40579.5171 68673.95180000001 +E1JHA6 Uninflatable, isoform C 12.98 42 57 0 644769.85906 874627.3885 +E1JHE4 long-chain-fatty-acid--CoA ligase 8.45 7 8 0 126875.20069999999 157235.5968 +E1JHJ2 Uncharacterized protein, isoform C 4.44 2 2 0 6399.5216 12902.39853 +E1JHJ5 Myosin heavy chain, isoform P 55.16 130 449 0 581056.389 717963.1799999999 +E1JHK2 Dorsal-related immunity factor, isoform C 4.15 4 6 0 124115.81 163164.24899999998 +E1JHN2 Ubiquinone biosynthesis O-methyltransferase, mitochondrial 16.26 5 7 0 222430.8175 246532.62410000002 +E1JHP3 No long nerve cord, isoform D 6.56 8 11 0 74424.10747 92560.8987 +E1JHP9 Galectin 5.97 2 2 0 22688.801 26129.703999999998 +E1JHT6 Reticulon-like protein 32.13 17 35 0 2479386.9074 2664498.0497 +E1JHT9 Reticulon-like protein 36.04 8 13 0 2683.8774 6064.5493 +E1JI40 Vermiform, isoform I 19.64 10 13 0 189592.50530000002 290468.50445 +E1JI59 Schizo, isoform D 3.03 2 2 0 3525.966 4294.7847 +E1JIC5 Uncharacterized protein, isoform G 14.36 4 6 0 110148.9766 149900.6477 +E1JID9 Multiplexin, isoform G 3.23 2 2 0 9360.67 8008.1255 +E1JIE5 Wurmchen 1, isoform B 10.83 3 6 0 281878.987 364121.409 +E1JIH1 Uncoordinated 115a, isoform J 29.64 21 42 0 6795.806 5863.209 +E1JIK9 Myofilin, isoform I 85.65 27 210 1 119744.2587 136145.5646 +E1JIR1 Pseudouridylate synthase 1 homolog 8.37 4 4 0 25374.1323 33051.3657 +E1JIS1 Spermathreecae, isoform D 3.83 3 3 0 11291.6483 10529.788299999998 +E1JIY8 L antigen family member 3 20.72 3 5 3 176814.9346 225491.4867 +E1JJ33 Complexin, isoform U 71.33 11 97 2 16745883.04126 17188362.47416 +E1JJA4 Dynamin 38.05 35 64 0 2878600.72285 3828499.3723999998 +E1JJE4 protein-tyrosine-phosphatase 1.73 3 3 0 9765.5699 10588.971 +E1JJE6 Otopetrin-like a, isoform C 4.94 5 5 0 2303.2852 1884.7365 +E1JJG5 Phospholipase A2 7.53 2 2 1 25096.324 24457.6406 +E1JJH5 Discs large 1, isoform M 33.3 32 109 8 4621690.48022 5696961.9344 +E1JJK6 Retinal degeneration B, isoform H 4.67 7 9 0 67108.6214 91786.6664 +E2QCN9 pseudouridine 5'-phosphatase 36.36 10 21 6 440471.1495 470022.271 +E2QCY2 Long-chain-fatty-acid--CoA ligase 5.05 3 4 0 45151.6529 57691.8839 +E2QCY9 Synapsin, isoform D 31.8 30 61 0 1884055.9365 2433785.15286 +E2QCZ0 Synapsin, isoform E 39.7 23 54 1 110430.699 168550.02800000002 +E2QD54 Natalisin, isoform D 5.61 3 3 0 56105.56 71665.494 +E2QD66 Lipid droplet defective, isoform D 6.71 11 15 0 451755.2426 495747.3365 +E2QD98 Protein PALS1 8.22 17 22 0 258148.7395 249301.44756 +E6EK17 Calcium-transporting ATPase 10.45 11 13 0 147174.5323 194920.3315 +E8NH67 Asperous, isoform B 58.41 20 78 0 3887123.15091 4797111.74538 +F0JAP7 LP18071p 19.65 5 5 0 138496.3275 174999.989 +F2FB81 Wiskott-Aldrich syndrome protein family member 10.53 7 9 0 215169.65136000002 240622.0316 +G3JX32 Z band alternatively spliced PDZ-motif protein 52, isoform V 50.79 40 138 0 10121466.87293 12948452.51443 +H1UUB1 GEO12465p1 49.61 5 18 1 1145999.2071 1592564.3217 +H8F4T3 Regucalcin 46.08 10 21 0 507500.90335000004 702111.85544 +H9XVM9 Uncharacterized protein, isoform L 43.31 33 72 0 83876.72350000001 109242.245 +H9XVP2 Unc-13, isoform E 2.01 6 7 0 61680.715299999996 72557.80720000001 +L0MLR4 calcium/calmodulin-dependent protein kinase 42.34 19 43 0 2853110.2952 3653695.8646 +L0MPN7 Asator, isoform H 11.57 11 14 0 88892.0108 91196.569 +M9MRJ4 Muscle-specific protein 300 kDa, isoform G 2.94 21 23 0 155072.89744 209761.8282 +M9MRS6 Uncharacterized protein, isoform D 1.92 2 2 0 5771.9302 5100.9758999999995 +M9MRX0 Limpet, isoform J 28.01 28 72 0 6071655.13203 7587983.126089999 +M9MRX4 Ankyrin 2, isoform U 5.67 54 62 0 1541527.5293 1898472.68086 +M9MRY7 Uncharacterized protein, isoform C 41.16 9 14 0 288028.30569999997 319014.309 +M9MS47 Uncharacterized protein, isoform B 10.32 6 8 0 168726.0987 209888.5699 +M9MS48 Rbp1-like, isoform B 13.77 3 4 0 305745.4108 366893.925 +M9MS70 Uncharacterized protein, isoform C 14.49 4 4 2 4598.8765 12403.5321 +M9MS72 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform X 40.4 14 29 1 822368.3215 1351460.8684 +M9MSI3 Vajk1, isoform B 31.28 12 19 0 1846199.7284 2337884.6513 +M9MSK4 Sh3beta, isoform D 59.26 16 58 3 3733190.92346 6252304.83394 +M9MSM5 Dishevelled associated activator of morphogenesis, isoform D 2.26 4 4 0 19470.645 37675.3979 +M9NCP5 Uncharacterized protein, isoform C 8.09 3 3 0 38560.537 49632.199 +M9NCR4 Dumpy, isoform J 13.36 162 252 0 263090.84834 351089.8816 +M9NCS7 Uncharacterized protein, isoform G 26.64 25 30 0 1080030.55914 1338746.68176 +M9NCX5 Chitin deacetylase-like 5, isoform I 6.22 12 20 0 137151.3245 158794.8594 +M9ND42 Cdc42-interacting protein 4, isoform H 17.39 11 14 0 333740.8639 379201.769 +M9ND57 Large proline-rich protein BAG6 9.48 10 12 0 95321.80799999999 100878.3238 +M9ND67 Ca2+-channel-protein-beta-subunit, isoform Q 6.17 3 3 0 5670.923 7312.857 +M9ND89 Nuclear fallout, isoform J 15.53 7 12 0 178135.1837 231462.622 +M9ND95 Myosin heavy chain, isoform U 54.75 130 445 1 58807513.56844 69695351.16997 +M9NDB5 RNA-binding protein 6, isoform F 27.56 5 14 2 8387.1423 9966.038400000001 +M9NDC5 Uncharacterized protein, isoform B 5.05 1 1 0 3370.9019 2266.4675 +M9NDE0 pantothenate kinase 5.37 3 3 0 25708.483 30091.148999999998 +M9NDL7 RALBP1 associated Eps domain containing, isoform B 10.59 9 11 0 48547.8586 66380.39967 +M9NDS9 chitinase 0.98 4 4 0 41307.4388 33625.157100000004 +M9NDX8 Neurabin-1 3.12 6 6 0 25426.598400000003 30780.677000000003 +M9NE05 Neuromusculin, isoform E 2.97 7 7 0 140224.588 173743.8306 +M9NE56 Terribly reduced optic lobes, isoform AK 37.14 120 298 0 37647.06676 43101.30536 +M9NE59 Uncharacterized protein, isoform G 5.01 11 11 4 23413.1626 18056.645900000003 +M9NEF2 Histone deacetylase 3.95 3 4 0 3115.28134 3133.6423 +M9NEH6 Histone deacetylase 6, isoform F 0.68 1 1 0 19303.656 17783.424 +M9NEW0 LD39232p2 63.33 10 18 10 1081370.5995 1436350.9154 +M9NEX3 Cytochrome b5 63.21 7 22 0 3943271.79963 4628801.9045 +M9NF03 Uncharacterized protein, isoform F 14.24 5 10 0 94168.959 138076.304 +M9NF14 IGF-II mRNA-binding protein, isoform L 23.2 14 21 1 12068.6377 12769.7397 +M9NF32 Leucine carboxyl methyltransferase 1 13.2 5 6 0 64514.988 73217.4168 +M9NF47 Uncharacterized protein, isoform J 4.9 10 11 0 198259.7996 253224.69989999998 +M9NFC0 Troponin I 50.75 16 66 5 6801867.5465 8088813.1655 +M9NFF0 Uncharacterized protein, isoform H 15.67 4 5 0 530990.979 564496.5358 +M9NFH3 Lasp, isoform D 36.88 10 31 1 453509.3086 589363.654 +M9NFH8 Glutamate synthase [NADH] 16.17 34 41 0 844321.1585 1026046.5783 +M9NGY7 Hyperkinetic, isoform I 6.36 2 3 1 0.0 515.7227 +M9NH07 Upheld, isoform N 53.05 36 130 0 29310998.8024 34898925.1497 +M9NH46 Mind-meld, isoform E 16.95 20 25 1 292741.07992 380952.80172 +M9PAY6 Uncharacterized protein, isoform D 11.07 7 11 0 162536.26123 224841.4796 +M9PAY9 Uncharacterized protein, isoform B 5.61 2 2 0 30581.7745 29539.71 +M9PAZ4 IA-2 protein tyrosine phosphatase, isoform E 23.75 23 53 0 1451958.9065 1942755.03074 +M9PB37 Uncharacterized protein, isoform F 1.19 2 2 0 637.768 1931.919 +M9PB89 Uncharacterized protein, isoform B 10.92 1 5 0 126215.288 171161.94092 +M9PBA3 Uncharacterized protein, isoform A 32.91 2 2 2 16954.529000000002 18097.9576 +M9PBF6 Dynamin associated protein 160, isoform G 46.97 54 214 0 13133060.17456 17450351.96988 +M9PBG8 Rho guanine nucleotide exchange factor 3, isoform M 1.34 4 4 0 66264.18100000001 63555.3223 +M9PBM3 Cysteine protease 8.54 3 4 0 57014.262500000004 81256.1825 +M9PBN2 Apolipoprotein D 24.08 6 18 0 485243.70194 568139.82521 +M9PBR6 Uncharacterized protein, isoform F 13.61 10 25 0 621767.9223 823282.9528 +M9PBT2 Cornetto, isoform E 3.4 2 2 0 35272.316 31599.494 +M9PBU4 Sorting nexin 21, isoform B 7.5 2 2 0 24296.843999999997 25735.595 +M9PBU6 Liquid facets, isoform I 30.46 12 23 0 779832.6361 1006335.3248000001 +M9PBV2 nucleoside diphosphate phosphatase 24.81 10 23 0 851848.9819 1119679.24218 +M9PBV5 JNK-interacting protein 3 5.49 6 6 0 58651.3877 86780.17875 +M9PBW9 Rhea, isoform G 8.06 23 26 0 380201.45342000003 461301.1209 +M9PBZ2 RNA-binding protein 9, isoform J 20.03 11 25 0 537718.5239 588387.0806 +M9PC43 Glycerol-3-phosphate dehydrogenase [NAD(+)] 88.67 29 214 1 44017034.90844 57777082.04136 +M9PC64 Forkhead box K, isoform P 3.22 2 2 0 671.37634 1238.44531 +M9PC74 Reticulocalbin-3 24.48 10 18 0 969925.6633 1457301.779 +M9PC99 Secretory 24CD, isoform C 1.3 1 1 0 9728.522 9877.746 +M9PCA6 Beta galactosidase, isoform B 7.16 4 6 0 74868.1158 93930.5713 +M9PCA7 Sodium chloride cotransporter 69, isoform C 1.01 1 1 0 7096.604 7469.309 +M9PCC4 Sin3A-associated protein 130, isoform G 5.54 5 6 0 80454.2907 100472.68759999999 +M9PCD4 Liprin-alpha, isoform E 8.73 11 13 0 214441.9432 262984.0428 +M9PCE5 Hemolectin, isoform B 5.99 22 23 0 135655.8309 158558.19646 +M9PCI1 Uncharacterized protein, isoform B 4.75 3 5 0 27791.615400000002 38383.600600000005 +M9PCI6 Echinoid, isoform C 3.83 6 6 0 63540.375 76738.304 +M9PCT7 Bunched, isoform O 19.79 4 11 1 44541.1135 41646.6103 +M9PCU0 FI21215p1 31.45 40 59 2 391173.69 510315.37 +M9PD23 DnaJ homolog, isoform C 24.32 9 12 0 129154.30045 170116.1132 +M9PD73 TEP1-F 26.63 37 63 0 2574691.7774 3164207.08037 +M9PD88 Copper transport protein ATOX1 64.04 6 21 0 1618506.7257 1903282.0238 +M9PD94 Crooked legs, isoform F 1.98 2 2 0 6236.5573 6231.0584 +M9PDB2 Varicose, isoform E 8.51 6 6 0 76203.8073 104605.552 +M9PDB4 Cytoplasmic linker protein 190, isoform Q 35.69 10 29 2 1792385.8954999999 2258419.7138 +M9PDC7 Dynamin associated protein 160, isoform H 50.55 52 198 0 30403.351000000002 31407.045 +M9PDE6 Uncharacterized protein, isoform K 7.21 11 15 0 156294.72256000002 150655.5752 +M9PDL2 Aspartyl-tRNA synthetase, mitochondrial, isoform D 9.31 10 11 0 89799.349 115093.1729 +M9PDU4 Acyl carrier protein 19.34 5 38 3 27406917.537 28152165.18 +M9PDV2 Tetraspanin 12.89 3 5 0 99109.2678 117154.36170000001 +M9PDW8 Uncharacterized protein, isoform T 7.49 35 48 0 849109.74512 944717.01249 +M9PDX2 Uncharacterized protein, isoform B 18.61 6 12 1 239383.98930000002 383605.9506 +M9PDX8 Nervana 3, isoform E 41.21 11 63 1 9899373.510160001 15582730.251869999 +M9PE32 Fife, isoform D 14.76 16 27 1 348269.94277 401653.5745 +M9PE35 RabX6, isoform B 5.86 1 1 0 0.0 542.7436 +M9PE54 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 5.04 2 2 0 5166.135050000001 6801.542100000001 +M9PE74 No circadian temperature entrainment, isoform D 3.99 7 9 0 13341.64242 14178.45362 +M9PE93 Ensconsin, isoform K 12.81 11 12 0 253905.5502 274693.2607 +M9PE96 Uncharacterized protein, isoform B 2.44 4 4 0 58984.3422 83123.81659999999 +M9PEA2 CDK2-associated protein 1, isoform B 16.61 3 3 0 5975.5957 7658.714 +M9PEB1 Fiery mountain, isoform B 8.58 5 7 0 22331.66005 28372.139 +M9PEC1 IST1 homolog 22.5 9 19 0 843547.1318999999 1005399.4643 +M9PEE1 Smallminded, isoform H 10.14 9 12 0 357425.50125 352588.0351 +M9PEG1 Uncharacterized protein 34.58 16 38 16 5381768.35624 6374258.8992 +M9PEI1 Dumpy, isoform U 10.21 177 267 0 2901704.24184 4028476.30459 +M9PEJ9 Uncharacterized protein, isoform B 14.52 6 7 0 102084.2993 104206.5117 +M9PEL3 Quemao, isoform C 30.67 10 17 0 483698.09046 571213.807 +M9PEM1 Syntaxin 17, isoform B 15.03 7 8 0 103847.26629999999 110662.1397 +M9PET3 Simjang, isoform D 4.11 3 3 0 6722.5007000000005 5092.25319 +M9PEZ7 Z band alternatively spliced PDZ-motif protein 67, isoform E 6.62 5 5 0 10548.4947 13885.5336 +M9PF16 Spectrin beta chain 29.64 75 147 5 6444893.57434 7740316.2480999995 +M9PF36 Uncharacterized protein, isoform C 34.79 13 40 0 2547289.2018 2971454.4274 +M9PF85 CCR4-NOT transcription complex subunit 9 8.97 2 4 0 14172.862099999998 20796.115100000003 +M9PFF7 Uncharacterized protein, isoform E 13.48 6 7 1 40044.474 48932.45117 +M9PFH7 Tartan, isoform B 3.73 3 3 0 7306.29725 9698.8088 +M9PFR6 Multiprotein bridging factor 1, isoform E 11.7 2 2 0 10844.8275 12424.85216 +M9PFU5 Uncharacterized protein, isoform K 9.55 7 7 0 102726.6535 104294.39225 +M9PFV2 Myosin phosphatase targeting subunit 75D, isoform B 5.35 3 3 0 6559.40104 7502.139 +M9PFV4 Uncharacterized protein, isoform B 2.88 1 1 0 49982.938 69985.195 +M9PFV8 Regeneration, isoform B 3.47 3 5 0 33799.6793 27038.292139999998 +M9PFX4 Cuticular protein 76Bd, isoform C 20.47 15 23 0 334801.0075 402803.0684 +M9PG20 HP1 and insulator partner protein 1, isoform C 17.73 14 15 0 273249.96378 351021.29753000004 +M9PG87 Uncharacterized protein, isoform B 6.4 9 10 0 128119.9658 153306.0851 +M9PGA7 Alpha-actinin, sarcomeric 58.34 52 200 1 14800968.49041 17274471.70299 +M9PGB6 Uncharacterized protein, isoform B 23.84 5 5 0 160757.26929999999 186145.1289 +M9PGC4 Shaggy, isoform P 19.72 18 54 0 2283.2278 2178.9802 +M9PGD7 Uncharacterized protein, isoform B 5.83 3 3 0 106532.88599999998 99281.825 +M9PGG8 Uncharacterized protein, isoform B 36.81 6 14 5 3832525.0149999997 1332408.3699999999 +M9PHA0 Bifocal, isoform F 14.56 19 30 3 551381.92848 629414.61453 +M9PHI7 Uracil phosphoribosyltransferase homolog 6.13 2 2 0 48838.893 67462.079 +M9PHI8 Uncharacterized protein, isoform B 20.16 19 27 1 563604.3129 650648.1279 +M9PHK8 Discs large 1, isoform R 29.17 30 90 1 707172.1323 945183.218 +M9PHM9 Wurmchen 2, isoform A 38.6 3 3 3 145047.0534 162466.76799999998 +M9PHS8 Uncharacterized protein, isoform C 21.97 11 14 0 106214.95288 125411.96456000001 +M9PHX2 Visgun, isoform E 8.78 2 5 1 55421.81769999999 72097.3747 +M9PHY9 Uncharacterized protein, isoform B 7.01 1 1 0 20411.174 24435.1 +M9PI33 Inositol oxygenase 6.91 2 4 0 215132.539 236446.2688 +M9PI51 Dual specificity protein phosphatase 15 5.82 2 2 0 6305.3969 8043.0819 +M9PI97 Misexpression suppressor of ras 6, isoform B 5.17 3 3 0 24561.1781 29217.7637 +M9PIG4 Golgi complex-localized glycoprotein 1, isoform B 0.63 1 1 0 3333.142 4183.172 +M9PIL1 Juvenile hormone binding protein 6, isoform C 7.78 2 2 0 24140.788 34483.391 +M9PJJ5 Uncharacterized protein 18.41 5 5 4 109162.5955 96170.051 +M9PJM6 Upheld, isoform Q 52.58 35 114 1 8035.4805 39825.133 +M9PJQ5 Troponin I 49.46 15 70 0 2077921.1957999999 2806468.9077 +O15971 LD39986p 23.53 5 25 2 420317.2745 522796.468 +O16158 Calcium-binding protein 52.72 8 47 8 5028580.79197 6423078.37516 +O17452 LD20793p 27.83 6 24 4 1327977.3609500001 1904753.52388 +O18332 FI01544p 60.98 11 59 9 2006546.0823300001 2213527.23198 +O18335 Rab11 64.49 14 53 14 5303298.56525 6798469.8495000005 +O18336 Ras-related protein Rab-14 36.28 8 18 1 597833.4383 767685.35196 +O18338 LD44762p 33.33 7 28 1 15800.827000000001 19426.952 +O44226 Elongin-B 97.46 10 37 10 3197598.0153200002 3511921.66794 +O44434 QKR58E-3 22.08 7 9 6 121066.5665 162202.15399999998 +O46052 EG:152A3.3 protein 22.91 6 6 1 123400.622 134689.7574 +O46067 Hypoxia up-regulated protein 1 31.2 27 48 27 1533611.26263 2099649.39503 +O46079 Protein KTI12 homolog 7.69 3 3 2 587.4116 697.4466 +O46085 Peroxisomal targeting signal 1 receptor 9.61 6 6 0 106365.6322 113768.82740000001 +O61444 mitogen-activated protein kinase kinase 15.09 6 6 6 176251.5853 212759.405 +O61604 Fimbrin 32.5 22 57 2 2006696.58066 2836514.3027 +O62530 Adaptor protein complex 2, mu subunit, isoform A 17.62 9 9 9 132751.774 137278.2827 +O62602 mitogen-activated protein kinase kinase 15.27 5 5 5 56035.4367 75830.7767 +O76521 Importin subunit alpha 7.0 4 6 4 53758.9798 67278.27695 +O76752 Sepiapterin reductase 36.02 9 16 9 497070.9728 675596.7905 +O76877 EG:132E8.3 protein 20.62 3 8 3 704456.9356 718489.7424999999 +O77134 ATP synthase F(0) complex subunit e, mitochondrial 25.93 5 30 4 19208378.7121 21388711.903500002 +O77259 EG:115C2.5 protein 4.5 1 1 0 3408.7097 5032.738 +O77425 Ribokinase 19.41 5 5 5 50215.600600000005 95720.86505 +O77430 GEO01111p1 83.95 15 32 13 1727382.8665 1905872.1376 +O77434 EG:34F3.8 protein 34.6 6 12 1 456027.55666000006 551276.4721 +O77477 LD24471p 22.41 8 11 8 191784.24464 270561.03226 +O96299 Sorbitol dehydrogenase 21.94 8 11 2 20598.725 19185.592 +O96692 small monomeric GTPase 27.47 5 6 2 419640.1604 494988.81570000004 +O96824 Late endosomal/lysosomal adaptor and MAPK and MTOR activator 5 68.0 6 7 6 284902.3883 344758.21074999997 +O96880 General transcription factor IIE subunit 1 5.59 2 2 2 1827.5642 2387.771 +O96881 Transcription initiation factor IIE subunit beta 10.96 3 3 1 35529.5767 44957.1477 +O97059 Ccp84Ab 44.8 7 12 0 331927.73459999997 415127.2307 +O97062 Ccp84Ae 70.19 12 29 12 1290379.2102 1466826.7863 +O97064 Ccp84Ag 39.27 6 11 6 480071.5258 530219.7999 +O97066 Signal peptidase complex catalytic subunit SEC11 10.81 2 2 2 46725.573 66584.819 +O97102 Small ubiquitin-related modifier 44.44 5 35 5 4966178.6824 6079242.3936 +O97111 LD29223p 11.68 4 6 4 33185.0839 25089.615100000003 +O97183 DNA-directed RNA polymerase II subunit RPB3 6.91 1 1 1 885.0361 973.667 +O97365 BM-40 26.32 10 12 10 423467.66730000003 473832.629 +O97418 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 7 79.61 9 32 9 6761480.676 7746760.1273 +O97428 Ciboulot, isoform A 37.21 4 6 1 165810.3045 191136.6294 +O97454 Protein BUD31 homolog 21.53 4 5 4 81700.8979 65535.8329 +O97479 Sorbitol dehydrogenase 21.11 9 13 3 223270.08096999998 358242.57602 +P91941 Adult cuticle protein 65Aa 60.0 4 191 4 19249637.50178 20307447.59914 +P92181 Cuticle protein DCP2 37.61 3 10 3 179886.3344 202086.45703 +Q0E8E2 Phenoloxidase-activating factor 2 2.03 2 2 0 34559.524 34249.475 +Q0E8E8 Phosphate carrier protein, mitochondrial 49.16 16 84 13 7017225.7731 7271532.8841 +Q0E8G6 Cleavage and polyadenylation specificity factor subunit 5 30.38 7 11 1 388548.8601 515234.76660000003 +Q0E8H9 beta-N-acetylhexosaminidase 6.91 5 6 0 117246.45 144882.93 +Q0E8J0 MOG interacting and ectopic P-granules protein 1 4.86 4 5 4 5863.353800000001 6003.1101 +Q0E8J3 Zormin, isoform I 22.12 73 116 0 2679077.74185 3328238.461 +Q0E8P1 Uncharacterized protein, isoform B 6.87 1 1 0 21512.639 26689.31 +Q0E8P5 FI05614p 22.24 11 21 11 484552.82297 603956.73019 +Q0E8S7 Homer, isoform E 45.76 21 61 4 4644906.9124 5544704.1788 +Q0E8U4 FI09636p 17.67 5 6 5 88529.2151 114894.1405 +Q0E8V7 Mitochondrial import inner membrane translocase subunit 78.57 7 23 7 1050635.8306 1824525.93104 +Q0E8X6 Translation initiation factor eIF2B subunit delta 11.28 5 6 0 110024.8374 121968.6717 +Q0E8X7 Reduction of Rh1, isoform A 53.66 7 56 7 12743365.816 10483464.060700001 +Q0E8X8 ATP synthase F1 subunit epsilon 42.99 5 18 5 1269617.99967 1590509.9575 +Q0E980 Uncharacterized protein, isoform C 39.0 19 29 19 690557.87209 798532.0000700001 +Q0E9B7 DNAation factor-related protein 3, isoform A 15.04 3 3 3 24147.6172 32112.896999999997 +Q0E9E2 Pyruvate carboxylase 32.58 36 66 0 3393512.9877 4872637.4257 +Q0E9E6 RE33655p 5.43 3 3 1 56181.30444 62362.75044999999 +Q0E9F9 Zinc carboxypeptidase A 1 27.59 12 22 12 552771.9958 712054.49515 +Q0E9G4 CG1600-PA 14.96 4 7 0 119582.2402 200000.6097 +Q0KHQ6 6-phosphofructo-2-kinase, isoform A 26.68 13 15 0 554860.4566 632326.93235 +Q0KHR3 Bazooka, isoform B 2.37 2 2 0 3700.531 5128.498 +Q0KHR7 Septin 13.58 6 8 0 66658.8848 97533.8953 +Q0KHX7 FI18193p1 7.31 9 9 0 44401.68505 54646.451329999996 +Q0KHZ6 Electron transfer flavoprotein subunit beta 71.94 19 148 19 33647982.2842 44179877.89375 +Q0KI15 Complex III assembly factor LYRM7 29.93 5 5 5 56452.14200000001 50347.4046 +Q0KI25 Uncharacterized protein, isoform B 9.07 9 13 1 320751.3761 424348.8276 +Q0KI39 FI16806p1 18.15 3 5 1 2183.658 4246.3354 +Q0KI76 Uncharacterized protein, isoform A 25.0 12 25 0 1126151.9116 1366216.0054000001 +Q0KI81 protein-tyrosine-phosphatase 8.19 11 12 11 123133.81995 174269.9539 +Q0KI98 Tryptophan--tRNA ligase, cytoplasmic 11.4 5 7 5 242672.0515 335041.8145 +Q0KIB0 Sidestep III 0.95 1 1 1 6532.5225 7896.647 +Q0KIE7 Ankyrin, isoform B 4.71 7 7 5 241249.67599999998 174374.10499999998 +Q1RL12 IP16413p 55.9 15 82 2 274674.9747 250810.00600000002 +Q24090 GH08712p 12.43 5 7 5 90448.6769 112636.34539999999 +Q24253 AP complex subunit beta 20.63 16 21 16 547352.0254 698164.3624 +Q26459 EN protein binding protein 26.32 12 22 0 570525.66296 704472.61772 +Q29QY7 IP15859p 22.54 3 5 1 868298.387 872058.8028000001 +Q2MGK7 GEO13330p1 48.03 7 9 7 185348.4644 206124.2868 +Q2PDM3 Uncharacterized protein, isoform C 1.22 3 3 3 12691.204300000001 18751.93 +Q2PDR0 Dolichol-phosphate mannosyltransferase subunit 3 10.64 1 1 1 44115.07 58662.406 +Q3YMU0 Protein disulfide-isomerase (Fragment) 64.62 33 159 33 17884930.9746 22868009.9648 +Q494G8 F-box and leucine-rich repeat protein 6, isoform A 8.75 5 6 5 62617.30426 79023.7951 +Q4LDP7 NADH-cytochrome b5 reductase 31.01 11 21 0 777268.6961 1131673.1311599999 +Q4QPU3 Synaptic plasticity regulator PANTS 30.13 5 6 5 95316.3921 126310.93195999999 +Q4QQ49 IP09595p 7.43 2 3 2 10027.35323 9180.0593 +Q4QQ70 IP09819p 23.98 7 9 7 87977.7601 111186.5299 +Q4V429 Cytochrome c oxidase assembly factor 5 13.92 1 1 1 6550.985 11315.406 +Q4V5H1 Peptidyl-prolyl cis-trans isomerase 18.03 3 5 3 63328.91856 66817.5593 +Q4V619 IP07950p 27.16 5 6 1 42991.1682 44314.1816 +Q4V625 lysozyme 13.5 2 4 2 82359.18190000001 122370.3723 +Q4V6M1 Bis(5'-nucleosyl)-tetraphosphatase [asymmetrical] 57.75 7 16 7 1097303.8014 1210110.6398 +Q500Y7 GEO11443p1 54.39 4 28 4 2033249.4427999998 2401664.6915 +Q59DP4 Uncharacterized protein, isoform A 4.68 3 3 0 7810.7197 12127.6515 +Q59E01 FI02065p 7.44 5 6 0 28056.8433 31074.5861 +Q59E14 Neural cell adhesion molecule 2 8.12 4 5 4 32590.9434 41975.856 +Q5BIA9 RE10908p 0.99 1 1 1 28532.148 28049.156 +Q5LJT3 MIP01391p 25.1 4 10 4 234350.8098 295972.48329999996 +Q5U124 alpha-glucosidase 20.95 11 16 0 711515.5996 855057.4928 +Q5U126 GEO11286p1 59.42 7 33 7 6586321.3011 4988814.2019 +Q5U191 1-acylglycerol-3-phosphate O-acyltransferase ABHD5 25.11 8 12 1 113918.10560000001 143066.17543 +Q5U1B0 Beta hydroxy acid dehydrogenase 2 10.16 3 4 3 25892.4044 22302.0948 +Q6IDF5 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 4 55.75 8 29 8 2890904.35723 2909641.2561 +Q6IGM9 LYR motif-containing protein 2 28.89 3 4 3 78363.40142 92347.345 +Q6IGN6 HDC05827 50.0 4 7 4 312630.9165 403618.7583 +Q6IGW6 GEO13367p1 44.23 2 5 2 68225.6956 80051.80489999999 +Q6IHY5 Cytochrome c oxidase subunit 7A-like 2, isoform A 35.48 2 20 2 5162311.558 6621259.3527 +Q6IIF2 GEO11103p1 24.29 3 4 3 16659.04577 18025.6545 +Q6IL43 GEO11093p1 27.71 2 4 2 304446.207 433110.506 +Q6NL44 GH28815p 13.18 6 6 6 35805.148 43558.918600000005 +Q6NLJ9 AT19138p 53.41 5 6 5 83804.4908 88391.3996 +Q6NMY2 RH54371p 36.81 6 28 6 2226495.8079 2750288.7076000003 +Q6NNV2 RE44043p 5.5 2 2 0 116736.511 172175.103 +Q6NNV7 RH03309p 47.37 7 19 1 858214.6623 872272.52952 +Q6NP69 GST-containing FLYWCH zinc-finger protein 4.88 4 5 1 33645.5008 47104.369399999996 +Q6NP72 GEO09659p1 33.33 4 18 4 608879.43886 1176894.4011 +Q76NQ0 Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1 6.55 3 3 3 45766.958 59469.6248 +Q76NR6 Regucalcin 81.19 23 173 0 16158174.38942 23751242.63443 +Q7JMV3 Calcium/calmodulin-dependent protein kinase type 1 23.7 9 11 1 695010.8747 914513.2773000001 +Q7JMZ0 small monomeric GTPase 16.29 4 5 4 29721.58664 34666.36156 +Q7JNE1 Regulatory protein zeste 28.03 10 14 10 481243.7199 582640.6148 +Q7JPS2 Igloo, isoform A 55.83 12 29 4 3052082.3245 5485403.5745 +Q7JQH9 carnitine O-palmitoyltransferase 2.56 2 2 0 5581.2671 7885.4756 +Q7JQR3 Sulfhydryl oxidase 24.65 16 30 16 1045005.19936 1306341.7467 +Q7JQX9 FI14001p1 7.6 5 5 1 43069.4453 46863.33470000001 +Q7JR58 Probable enoyl-CoA hydratase, mitochondrial 56.61 15 119 15 22160401.54689 30394729.13978 +Q7JR69 Cuticular protein 49Ac, isoform C 37.65 10 18 0 673328.11497 819815.3813400001 +Q7JRB2 RH09039p 4.52 1 1 1 853.86554 1747.8214 +Q7JRC3 Epoxide hydrolase 5.7 3 4 2 165979.5943 221302.368 +Q7JRF1 RE48509p 8.67 2 3 1 11394.184000000001 26318.6827 +Q7JRH5 RE28271p 5.61 3 3 3 27797.448 31676.392999999996 +Q7JRL9 GH25289p 70.78 13 48 1 7036258.0927 8495904.078 +Q7JRN6 GH06388p 11.21 3 8 3 93893.482 99635.3227 +Q7JS69 FI04632p 40.84 11 75 1 1194881.2466 1742953.54 +Q7JUN9 Deoxyribonuclease TATDN1 11.0 3 3 3 7284.4915 8932.7726 +Q7JUS1 NADP-retinol dehydrogenase 9.97 3 6 2 9028.7932 15299.7613 +Q7JUS9 Phosphate carrier protein, mitochondrial 32.35 15 44 12 3240080.4811 3338291.3107 +Q7JV09 GH28348p 6.55 7 8 3 89146.1591 103619.4859 +Q7JV69 SD11922p 10.96 4 6 4 195667.33500000002 291980.48699999996 +Q7JVG2 diphosphoinositol-polyphosphate diphosphatase 23.73 3 4 3 101982.8316 113692.1716 +Q7JVH6 LD24696p 37.3 11 25 10 875853.9193000001 1117929.6753 +Q7JVI6 Glutathione S transferase E13, isoform A 18.58 4 12 4 251906.3024 321262.007 +Q7JVK6 Translin 22.13 5 11 5 640062.91689 609394.7221 +Q7JVK8 GEO08987p1 71.92 10 16 10 1100383.8032 1370481.5203 +Q7JVM1 GH25962p 11.79 3 6 3 67944.582 75553.41930000001 +Q7JVX3 Zinc carboxypeptidase A 1 13.28 6 7 0 139407.1969 205380.8027 +Q7JVZ8 Glutathione S transferase E11, isoform A 24.44 6 9 6 469751.7485 607961.162 +Q7JW03 Ubiquitin-conjugating enzyme E2 H 27.32 6 11 6 641295.26 694628.6328 +Q7JW07 LD08826p 5.63 1 1 1 2199.2563 1875.2473 +Q7JW48 RE12410p 2.23 1 2 1 31341.793 50326.68 +Q7JW66 LD21545p 4.83 2 2 2 52342.9885 49319.2497 +Q7JWD6 Elongin-C 63.25 7 34 7 3487060.936 3623134.9049000004 +Q7JWF1 Electron transfer flavoprotein-ubiquinone oxidoreductase 26.32 16 41 16 1767334.6134 2025930.06004 +Q7JWH5 RING-box protein 2 19.47 1 1 1 22090.963 29183.926 +Q7JWQ7 RE01730p 14.62 5 8 5 133595.99850000002 148545.2935 +Q7JWR4 GH19585p 9.09 1 1 1 22441.262 26513.59 +Q7JWU9 AT07420p 30.12 8 10 8 170984.6372 192612.892 +Q7JWX3 GH10112p 35.92 11 23 11 436704.7719 559107.42143 +Q7JX87 1-Cys peroxiredoxin 50.0 9 54 1 616904.2355000001 749726.1531 +Q7JX94 Phospholipase A2 15.61 3 4 3 8345.080399999999 6816.5753 +Q7JXB5 Phosphoenolpyruvate carboxykinase [GTP] 17.4 11 13 2 284063.8641 368221.54766 +Q7JXB9 Endonuclease 16.77 5 5 5 734652.061 544717.676 +Q7JXC4 CG6459 protein 35.74 7 44 7 8290671.7193 9936886.23844 +Q7JXW8 Off-track2 12.24 5 5 5 73289.11000000002 94921.151 +Q7JXZ2 cystathionine gamma-lyase 19.34 7 13 7 382750.3783 588379.7456 +Q7JYH3 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 11 28.24 4 8 4 749981.883 1115093.972 +Q7JYW9 Phosphotransferase 22.25 10 12 10 591240.755 727528.5769 +Q7JYX5 Vesicle-associated membrane protein 7 11.93 3 3 3 17834.95045 23340.1773 +Q7JYZ0 lysozyme 39.13 4 10 4 152849.2469 190367.5025 +Q7JYZ9 Glutathione S transferase E2 37.1 8 21 8 1095044.2528 1363043.0966400001 +Q7JZB1 RE49860p 3.58 1 1 1 21851.996 22800.328 +Q7JZD3 Eb1, isoform A 52.92 13 35 0 2579910.68356 3101572.3910000003 +Q7JZD5 Dorsal interacting protein 3 9.2 3 3 3 9593.52634 12334.253499999999 +Q7JZF5 DNA-directed RNA polymerases I, II, and III subunit RPABC1 15.24 3 4 3 144514.188 166388.66700000002 +Q7JZK1 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 6 64.52 12 40 12 6359844.1062900005 6993188.15969 +Q7JZN0 Protein transport protein Sec61 subunit beta 56.0 5 21 5 602955.01506 525448.4331 +Q7JZR5 asparagine--tRNA ligase 4.57 2 2 2 8813.1843 9345.3556 +Q7JZW0 Cuticular protein 51A 62.5 9 32 9 1231739.5939 1866012.68576 +Q7JZW2 40S ribosomal protein S15 61.49 7 32 2 5312617.2971 6559062.591639999 +Q7K012 Brahma associated protein 55kD 15.76 5 10 5 65405.77351 75421.0738 +Q7K076 GEO08269p1 34.35 3 4 0 121261.3019 171001.5293 +Q7K084 Odorant-binding protein 44a, isoform A 70.63 17 184 17 39542216.0717 49337496.04005 +Q7K0A0 Large ribosomal subunit protein mL42 8.06 1 1 1 14659.915 18618.559 +Q7K0B6 Glutathione S transferase T1 67.98 17 32 17 1872957.0235000001 2124567.1216 +Q7K0E6 Aspartate--tRNA ligase, cytoplasmic 22.79 9 13 9 159203.24688999998 203272.569 +Q7K0L5 5'-nucleotidase 2.17 1 1 1 785.8566 922.2892 +Q7K0P0 Juvenile hormone-inducible protein 26 8.2 4 4 4 43417.989199999996 61740.535 +Q7K0S1 LD39211p 3.66 2 2 2 30904.3465 49938.041 +Q7K0S5 UBX domain-containing protein 6 34.24 15 27 15 362330.87696 449869.55488 +Q7K0S6 LD36817p 27.56 10 14 10 299861.0005 358488.0511 +Q7K0T7 LD33470p 2.07 2 3 0 4721.492 6065.28117 +Q7K0W1 LD27406p 3.67 2 2 2 37007.257 47481.911 +Q7K0W4 LD27203p 57.93 19 64 18 9849673.265730001 10646491.3036 +Q7K0X9 LD23667p 28.72 6 13 6 281761.90013 379006.8918 +Q7K126 CCR4-NOT transcription complex subunit 3 5.33 4 5 4 138997.505 187122.552 +Q7K127 Alpha-galactosidase 35.97 13 22 13 645936.8283 818525.40603 +Q7K130 Dynactin subunit 4 13.04 5 6 5 19324.87174 26160.1048 +Q7K148 Proteasome subunit beta 17.73 5 7 5 106167.4166 127802.5389 +Q7K159 LD06557p 13.11 4 5 4 39988.8466 49992.9834 +Q7K180 LD02709p 23.18 10 13 10 280955.34996 447379.3089 +Q7K188 GEO05126p1 32.9 7 45 7 18379710.0007 26547479.005599998 +Q7K1C0 GH23780p 50.5 7 12 1 809632.2133000001 1307588.98 +Q7K1C3 Enoyl-CoA hydratase domain-containing protein 3, mitochondrial 18.25 6 10 6 352130.6442 381141.91260000004 +Q7K1C5 GH21176p 6.62 4 5 4 262589.2621 334421.51759999996 +Q7K1H0 GH09096p 20.37 6 7 6 214911.571 289011.752 +Q7K1M4 SD04017p 24.68 8 15 8 295716.97482 302293.3159 +Q7K1S1 Arginine-hydroxylase NDUFAF5, mitochondrial 7.81 3 4 3 61743.3214 69443.097 +Q7K1W5 LD35843p 35.11 14 28 14 1516247.32923 1925576.4654 +Q7K204 17S U2 SnRNP complex component HTATSF1 12.41 6 8 6 75788.00779999999 88303.5585 +Q7K221 Aspartate aminotransferase, cytoplasmic 34.62 13 30 1 1292984.5778 1601343.9278 +Q7K2E1 LD05247p 11.72 7 10 7 144873.0391 178455.4479 +Q7K2K2 FI04612p 7.06 2 3 1 18057.06393 27346.222199999997 +Q7K2L7 GH27120p 17.59 3 12 3 440156.9783 517547.4988 +Q7K2N0 Endoplasmic reticulum junction formation protein lunapark 14.73 6 6 6 111222.768 135096.9673 +Q7K2P1 Cuticular protein 50Cb 11.24 2 4 2 75050.6984 91517.8247 +Q7K2P3 GH20817p 63.91 15 37 1 1863172.6559 2029609.1456 +Q7K2Q8 Trafficking protein particle complex subunit 5 20.1 4 6 4 169564.29418 204126.66945 +Q7K2W6 tyrosinase 26.81 17 23 17 430350.36445 577080.6845 +Q7K332 GH17623p 30.96 8 10 7 183223.33010000002 215175.85570000001 +Q7K3D4 peptidylprolyl isomerase 29.97 12 18 12 611122.579 917040.1003 +Q7K3E2 LD34147p 66.97 33 68 33 3791539.1009 4965327.8451000005 +Q7K3H0 LD28067p 2.56 5 7 0 66508.77 97737.809 +Q7K3J0 T-complex protein 1 subunit theta 40.66 21 39 21 1189216.9311 1591806.95105 +Q7K3N4 GH26015p 15.98 7 11 7 150528.50144 183532.187 +Q7K3V6 Elongation factor Tu, mitochondrial 13.6 6 9 6 85149.7076 110933.11734000001 +Q7K3W2 Mitochondrial-processing peptidase subunit alpha 29.5 13 16 13 210633.5822 259863.4984 +Q7K3W4 GH08941p 26.81 8 27 8 1477934.6542999998 1939458.4349 +Q7K3Y9 Spondin-1 4.58 3 3 3 5263.257299999999 6062.7002 +Q7K3Z3 GH01724p 56.76 18 53 18 1662779.30879 2087782.65697 +Q7K485 Cathepsin D 28.83 8 27 8 1413119.1804 2263564.682 +Q7K4C7 choline-phosphate cytidylyltransferase 16.54 8 9 5 127575.8367 158599.4686 +Q7K4I5 UBX domain-containing protein 7 6.45 3 3 3 14037.332699999999 20577.273350000003 +Q7K4J7 LD36653p 7.38 2 3 2 56417.508400000006 78585.54699999999 +Q7K4Q9 Hydroxymethylglutaryl-CoA synthase 10.11 4 4 4 34425.5365 45327.393299999996 +Q7K4T8 LD23856p 6.99 3 4 3 13049.88099 11777.1485 +Q7K4Y0 Desaturase 1, isoform A 5.74 2 2 1 2597.97856 3152.0567 +Q7K511 D-2-hydroxyglutarate dehydrogenase, mitochondrial 14.63 7 10 7 418199.26910000003 367151.1223 +Q7K519 GH16429p 23.9 7 8 7 85280.62506 89355.7173 +Q7K533 GH14572p 5.48 2 2 2 29594.054699999997 26224.821 +Q7K549 GH13040p 21.35 8 10 8 40685.97481 51317.737499999996 +Q7K568 GH10642p 21.49 6 8 6 108407.738 172636.2506 +Q7K569 Glycerol-3-phosphate dehydrogenase 43.65 30 68 30 2116000.00753 2690119.09816 +Q7K5J8 Cuticular protein 57A, isoform A 38.59 7 21 7 386636.3659 403963.20097 +Q7K5M6 GH04176p 37.5 9 17 9 1062510.27543 1256086.56014 +Q7K7G0 Coatomer subunit delta 32.2 17 24 0 656691.7626 814419.49915 +Q7K860 FI07231p 39.22 6 19 6 476861.4395 724989.8315 +Q7K8X7 Glutathione S transferase E9 33.03 7 20 7 1136532.84094 1601262.1231499999 +Q7K9H6 Zinc finger FYVE domain-containing protein 3.8 4 5 4 16200.5407 19620.7853 +Q7KJ08 receptor protein-tyrosine kinase 2.7 4 5 4 23182.03554 31719.159200000002 +Q7KK54 MIP07328p 10.52 7 7 7 72859.3389 92709.84909999999 +Q7KK90 GH14654p 50.0 8 36 8 5135740.9012400005 5706238.14694 +Q7KKI0 T-complex protein 1 subunit epsilon 26.75 15 24 2 751390.1679 947383.9447 +Q7KLE5 Amphiphysin 37.04 23 65 2 6564955.82642 8129932.5096 +Q7KLW9 Pre-mRNA-processing factor 19 19.41 9 14 9 170638.4299 235230.4728 +Q7KLX3 Translocon-associated protein subunit delta 24.7 4 16 4 2316124.0053000003 2839153.3308 +Q7KM15 Transcription factor BTF3 36.09 4 5 4 363060.38029999996 395503.713 +Q7KMM4 Glucosidase II subunit alpha 5.09 5 5 5 75475.2965 72506.6746 +Q7KMP8 26S proteasome non-ATPase regulatory subunit 13 30.63 11 23 11 966578.66908 1187296.47114 +Q7KMQ0 26S proteasome regulatory subunit 7 54.97 25 67 23 2918372.30545 3377331.8628000002 +Q7KMQ6 Phosphatidylinositol 3,4,5-trisphosphate 3-phosphatase and dual-specificity protein phosphatase PTEN 6.42 3 3 0 8237.7924 10803.1085 +Q7KMS3 Dynein light chain roadblock 39.18 4 7 4 124683.42483999999 191141.9046 +Q7KN61 Farnesyl pyrophosphate synthase 3.82 2 2 2 5214.657499999999 4490.9125 +Q7KN75 Dodeca-satellite-binding protein 1, isoform A 22.83 27 37 27 1611517.18776 1977331.22065 +Q7KN94 Electron transfer flavoprotein subunit alpha 82.42 22 116 22 13082464.03617 17967269.44086 +Q7KND8 FI09619p 6.03 4 5 4 32875.3621 44353.3776 +Q7KNM2 Dorsal interacting protein 4 37.11 6 16 6 1729219.4674 2377797.3377 +Q7KRT4 GH07253p 2.47 1 1 0 8305.034 9821.525 +Q7KRZ3 Exocyst complex component 8 7.89 7 7 0 70574.57560000001 96081.6395 +Q7KS11 Uracil-DNA degrading factor, isoform B 11.71 4 7 4 291468.0203 404427.6397 +Q7KSD3 non-specific serine/threonine protein kinase 15.76 7 12 1 467952.13180000003 549309.8968999999 +Q7KSE4 GH05443p 2.78 2 2 2 11369.3073 13378.2417 +Q7KSM5 SUMO-activating enzyme subunit 1 28.78 10 18 10 475632.3943 565481.168 +Q7KSQ0 Citrate transport protein 30.91 11 33 11 2296522.5066 2558621.4711 +Q7KSQ2 Tyrosine-protein kinase 3.46 3 3 0 33136.7885 27709.336600000002 +Q7KSV7 Uncharacterized protein, isoform D 14.92 5 6 0 22087.36155 30136.602150000002 +Q7KSW3 pyridoxal 5'-phosphate synthase 47.68 12 33 1 1131741.44797 1359622.04945 +Q7KT11 Glyoxylate reductase/hydroxypyruvate reductase 64.72 16 55 0 4715557.08895 5930221.3871 +Q7KT58 GH08155p 4.4 1 1 1 1607.986 3876.344 +Q7KT70 FI18641p1 0.94 1 1 1 2698.5505 3251.3179 +Q7KTA1 HL01444p 20.67 8 10 8 166028.4683 207832.7207 +Q7KTG2 Apolipoprotein lipid transfer particle 5.42 25 26 25 280011.8105 310014.4412 +Q7KTJ7 Basigin, isoform G 28.55 19 80 6 6586117.10381 8912417.4442 +Q7KTN9 FI01009p 3.11 2 2 0 16544.044 18343.9374 +Q7KTP7 LP22840p 45.86 7 12 7 615562.0824000001 668966.68248 +Q7KTW5 Inositol-1-monophosphatase 58.63 20 90 20 6689276.28364 9104083.65159 +Q7KUA4 SUMO-activating enzyme subunit 23.0 15 33 15 1003479.5677 1326888.3839 +Q7KUB3 Ecdysone-inducible gene E1, isoform A 0.68 1 1 1 2871.7017 2857.5667 +Q7KUC2 Pyridoxal kinase 26.64 9 22 8 1022042.51596 1542473.6517 +Q7KUD4 phospholipase A2 6.43 6 7 0 68665.80780000001 83690.6167 +Q7KUK9 Uncharacterized protein, isoform B 8.51 13 14 7 136596.0525 182942.69728 +Q7KUL1 Dally-like, isoform C 2.23 2 2 0 1961.60368 1409.3732300000001 +Q7KUT5 Protein MIX23 26.89 3 3 0 63986.047399999996 67519.4887 +Q7KUU5 Sulfhydryl oxidase 19.16 5 6 0 225404.459 247693.32299999997 +Q7KUW2 5' nucleotidase B, isoform B 8.17 5 6 0 90318.2239 99934.40969999999 +Q7KUX7 Eukaryotic translation initiation factor 4H 47.21 15 38 0 628027.4779800001 664548.2032 +Q7KV27 alanine transaminase 54.93 32 121 0 10236320.88732 13437296.77325 +Q7KV34 Pinkman 57.32 33 64 33 3637477.38906 4104842.6506 +Q7KV94 Purine nucleoside phosphorylase 12.18 4 4 0 82340.375 118052.944 +Q7KVI9 Uncharacterized protein, isoform B 22.45 5 18 2 1156804.35466 1287648.329 +Q7KVL7 Vacuolar protein sorting-associated protein 35 4.73 4 4 0 54044.7834 53207.99829999999 +Q7KVX1 Pyruvate dehydrogenase E1 component subunit alpha 44.47 21 93 0 9746184.90126 12130906.6396 +Q7KY04 small monomeric GTPase 23.47 5 14 4 12881.2841 15346.1002 +Q7PL91 GEO11417p1 30.85 5 12 5 1809405.297 2493287.3047 +Q7PLE9 Ras-related protein Rab-21 18.02 4 4 0 4538.2476 7134.1658 +Q7PLI0 P120 catenin 17.03 14 17 14 353319.5512 409888.876 +Q7PLL3 Eukaryotic initiation factor 4B 28.98 15 27 3 765900.4386 989221.4068 +Q7PLS1 LD01937p 14.61 5 6 0 75956.6743 99761.3083 +Q7PLT4 Translocase of the inner mitochondrial membrane 17b, isoform A 19.65 3 5 3 31281.5965 52003.2954 +Q7YU88 SD08871p 4.1 3 3 0 5816.2503 5487.21887 +Q86B44 Glutathione synthetase 19.4 8 9 0 153098.39914000002 192670.09596 +Q86B74 WASp, isoform C 10.53 4 4 0 61011.0801 72031.0255 +Q86B93 Uncharacterized protein, isoform D 14.02 2 2 0 16343.2254 23816.7655 +Q86BG8 Terminal ADP-ribose protein glycohydrolase 2, isoform C 4.06 1 1 0 12829.828 22907.012 +Q86BI3 Zinc-finger protein at 72D, isoform B 16.06 12 16 3 450955.39465000003 529265.8697 +Q86BM0 Uncharacterized protein, isoform A 30.62 8 17 8 316911.0867 378220.375 +Q86BM5 A kinase anchor protein 200, isoform D 16.49 13 29 1 1555985.44816 2297555.2383 +Q86BP1 3-hydroxyisobutyryl-CoA hydrolase, mitochondrial 40.41 14 27 0 1084153.84724 1205596.3572 +Q86BQ4 Histidine triad nucleotide binding protein 1, isoform B 70.63 7 23 0 3103946.9669999997 3538313.564 +Q86BR8 Mitochondrial transcription factor A, isoform B 38.73 13 38 0 1885292.8886 2092050.2248 +Q86BS3 Chromator, isoform A 35.53 26 44 26 1524300.2934 1721998.45162 +Q86BS7 Glycogen debranching enzyme 2.2 4 4 0 36647.9663 33741.113 +Q86PD3 Persulfide dioxygenase ETHE1, mitochondrial 48.03 13 25 13 933333.3134 1327499.3714 +Q86PF5 PRKCA-binding protein 6.16 4 4 0 55299.1505 75320.6888 +Q8I077 BcDNA.LD22910 1.76 2 2 2 15647.380699999998 11883.843 +Q8I099 Uncharacterized protein, isoform A 21.75 7 10 7 186073.6276 259814.7705 +Q8I0D4 RE20510p 21.32 17 37 0 4993145.09043 6454927.1313000005 +Q8I0J3 Mitochondrial ribosomal protein S21, isoform A 44.83 4 5 4 57761.85 82519.5326 +Q8I0P9 acid phosphatase 9.67 4 4 0 88095.3443 80482.1146 +Q8I725 Glyoxylate reductase/hydroxypyruvate reductase 29.97 11 23 11 1054965.79735 1406248.7413 +Q8I930 GH14147p 3.57 3 4 0 27671.0884 32828.7267 +Q8I941 GH16843p 32.88 8 25 8 1369351.4709 1631851.3489 +Q8IG84 SD21996p 13.42 14 125 0 805.99396 1629.1798 +Q8IGI1 Misexpression suppressor of KSR 2, isoform J 22.86 9 15 1 19233.375 20558.3644 +Q8IGY1 RE08101p 33.19 42 295 0 38633107.57105 40476910.4797 +Q8IH23 GEO02102p1 67.41 6 14 6 1894874.3376 2174604.4537 +Q8IM93 FI18814p1 35.27 16 37 16 2281218.7964 2867581.1888 +Q8IMF4 RE24176p 6.68 3 3 0 16921.2366 30878.5415 +Q8IMJ0 VhaAC45-related protein, isoform A 33.07 13 38 1 1227959.71146 1464641.00632 +Q8IMK7 Alphabet, isoform B 7.28 3 4 0 28000.9004 32669.944 +Q8IMQ8 RH29536p 46.4 14 49 0 3754762.33766 4765798.15135 +Q8IMT3 IP12392p 10.71 4 5 4 107087.462 130268.965 +Q8IMT6 FI01822p 10.66 5 6 5 144023.001 168294.393 +Q8IMU2 RE10237p 19.18 4 5 0 116579.28670000001 142235.6586 +Q8IMV6 Scaffold attachment factor B, isoform B 5.82 4 4 3 75556.643 96937.756 +Q8IMX4 FI04408p 10.85 4 6 0 65157.7422 73001.4022 +Q8IMX8 U6 snRNA-associated Sm-like protein LSm3 40.78 4 13 4 263880.18257 565040.5739 +Q8IN49 MIP05539p 11.03 10 11 10 151950.7307 187060.0894 +Q8IN51 FI17609p1 37.59 7 14 7 360322.71157 468729.20075 +Q8IN95 Nuclear migration protein nudC 8.17 3 3 3 70288.021 94406.60800000001 +Q8INA9 Fasciclin 1, isoform C 50.08 31 171 2 66936.89929999999 90094.5443 +Q8ING0 Peptidase S1 domain-containing protein 11.35 5 5 5 30213.2923 34081.2272 +Q8INH5 Aminopeptidase 7.53 7 11 0 192224.0704 232837.2443 +Q8INQ9 LIM domain-containing protein 7.47 3 3 0 113567.11050000001 127269.0674 +Q8INU6 Glyoxylate reductase/hydroxypyruvate reductase 12.23 4 13 2 53585.051 77059.945 +Q8IP52 RE16941p 0.86 1 1 1 6907.765 9997.396 +Q8IP62 Small ribosomal subunit protein mS23 41.27 6 7 6 310334.97696 380939.78870000003 +Q8IP80 ethanolamine-phosphate cytidylyltransferase 38.58 15 20 1 774225.4205 996172.4492 +Q8IP94 threonine--tRNA ligase 7.54 6 6 0 120524.92169999999 141200.1513 +Q8IP97 Peroxin-19 35.62 9 32 9 3500079.3955 3757984.4675 +Q8IPA5 RE15581p 10.0 3 3 0 94123.283 107990.675 +Q8IPB1 Deoxyuridine 5'-triphosphate nucleotidohydrolase 21.84 4 4 0 35641.0683 42722.121999999996 +Q8IPD8 Cuticular protein 30F 60.96 7 14 7 1359367.9165 1589395.64 +Q8IPE8 Trifunctional enzyme subunit alpha, mitochondrial 61.69 39 102 1 6197951.09682 7952473.64251 +Q8IPG8 Uncharacterized protein 14.21 3 8 3 155391.2415 155106.38509999998 +Q8IPH0 protein-glutamine gamma-glutamyltransferase 1.95 2 2 0 30092.42 31937.605 +Q8IPK0 Stathmin, isoform B 11.59 3 3 0 23443.4185 31212.307 +Q8IPP8 Ketoreductase domain-containing protein 49.61 11 26 9 902538.8106000001 1168048.9681 +Q8IPQ6 Polymerase (DNA-directed), delta interacting protein 2, isoform B 13.69 4 5 0 41421.8442 61326.780600000006 +Q8IPT0 ER membrane protein complex subunit 10 14.54 3 7 0 102963.17050000001 136486.2305 +Q8IPT6 small monomeric GTPase 10.24 4 13 0 781.00287 408.28665 +Q8IPT9 SD05439p1 39.06 11 32 0 947551.83761 1244362.79818 +Q8IPU3 hydroxyacylglutathione hydrolase 31.32 9 53 0 3920158.1690599998 4856109.79596 +Q8IPU7 BNIP3, isoform C 16.95 3 3 0 8829.99712 11182.13467 +Q8IPW1 Arouser, isoform A 5.47 4 4 0 29775.8258 35113.0177 +Q8IPZ5 Uncharacterized protein, isoform B 12.42 6 7 0 71235.64259999999 74250.7651 +Q8IQ99 PAR-domain protein 1, isoform J 1.42 1 1 0 8368.28 10106.286 +Q8IQB7 MIP21654p 9.44 3 3 3 132492.5347 129321.76580000001 +Q8IQB8 Tequila, isoform D 6.07 9 12 0 287110.1639 334863.5454 +Q8IQC6 Small VCP interacting protein, isoform A 24.39 4 6 4 249871.4956 207821.2197 +Q8IQD3 Uncharacterized protein, isoform C 2.95 2 3 2 75411.574 91375.972 +Q8IQD7 Phospholipid scramblase 6.44 1 1 0 33693.992 39679.754 +Q8IQE6 Insulin receptor substrate 53 kDa, isoform A 9.29 10 11 1 166691.49953 242577.16203 +Q8IQH0 FI12817p 4.98 8 9 1 132796.2359 148720.59 +Q8IQM5 Uncharacterized protein, isoform A 12.62 4 9 1 321448.2174 367481.1532 +Q8IQQ0 2-oxoglutarate dehydrogenase, mitochondrial 22.03 20 26 1 1091040.30424 1386917.3646 +Q8IQT0 Gamma-glutamylcyclotransferase 12.31 3 3 0 16323.5893 16818.1257 +Q8IQU1 LD36620p 19.62 9 13 1 56837.1804 63007.044 +Q8IQV4 Lysosome-associated membrane glycoprotein 2-like luminal domain-containing protein 5.76 1 2 1 54891.354499999994 57641.2623 +Q8IQW5 RE23625p 70.83 13 77 3 8965814.36736 10424414.37188 +Q8IQX3 Uncharacterized protein, isoform A 50.54 5 6 5 78167.885 83940.4464 +Q8IR41 Uncharacterized protein, isoform C 3.51 3 3 0 55603.4923 54500.2496 +Q8IR72 FI19011p1 10.06 1 1 1 15048.631 19549.486 +Q8IR76 FAD synthase 16.33 4 4 0 43748.7199 43362.888 +Q8IRD0 RH17559p 42.86 3 8 3 650750.0973 847605.879 +Q8IRD3 Glutathione peroxidase 49.58 11 72 0 20794577.8776 25983102.4584 +Q8IRH0 Puromycin-sensitive aminopeptidase 13.58 16 21 0 470331.21493 562878.439 +Q8IRI5 Trio, isoform D 15.92 12 15 2 129296.8667 135916.23113 +Q8IRQ5 fumarate hydratase 74.52 29 154 0 17991349.37646 20937227.87244 +Q8MKK1 AaRS-interacting multifunctional protein 3 10.61 2 3 2 50923.127 63707.145000000004 +Q8MLP9 GEO08457p1 33.04 4 5 4 83116.12706 101947.9255 +Q8MLQ0 FI14118p 11.84 1 1 1 4249.003 4300.659 +Q8MLS1 5-formyltetrahydrofolate cyclo-ligase 23.88 6 13 6 1464666.477 1820776.1861 +Q8MLS2 ribose-5-phosphate isomerase 36.1 8 16 8 395486.73696999997 512105.58083 +Q8MLW0 Receptor protein-tyrosine kinase 2.69 3 3 2 38167.5034 45399.4115 +Q8MLW4 Uncharacterized protein, isoform A 34.53 9 14 9 727854.5157 917569.348 +Q8MMD2 Epidermal growth factor receptor pathway substrate clone 15, isoform B 35.23 38 108 0 6389604.17491 8317269.10004 +Q8MQP2 MIP16184p 2.67 1 1 0 43455.473 42233.41 +Q8MRI4 Diphthine--ammonia ligase 2.22 2 2 2 13949.685399999998 14915.702299999999 +Q8MRM0 GH16740p 27.0 6 9 6 867642.7079 1098579.1136 +Q8MRS5 AT03104p 0.71 1 1 0 13503.243 19374.31 +Q8MRT7 SD26038p 13.79 3 4 3 74937.7923 91507.899 +Q8MRW1 SD19278p 14.08 2 4 2 117212.577 122166.6834 +Q8MS69 tRNA (adenine(58)-N(1))-methyltransferase non-catalytic subunit TRM6 17.12 5 6 5 17485.9918 17181.17324 +Q8MSB1 E3 ubiquitin-protein transferase MAEA 2.54 1 1 1 6356.0264 6863.473 +Q8MSI2 GH15296p 85.19 22 138 22 5591497.07143 6521690.8981 +Q8MSS7 Small ribosomal subunit protein uS2m 13.26 3 6 3 46571.362 80094.5438 +Q8MST5 Tubulin beta chain 40.7 17 120 0 948962.89105 1236889.5943 +Q8MT58 Carnosine dipeptidase 2, isoform A 52.09 23 74 5 3457311.09388 4949395.14654 +Q8MZ07 GEO07581p1 6.16 1 1 1 45269.145 63884.59 +Q8MZI3 RNA helicase 14.91 11 20 5 254963.7216 324466.32462 +Q8SWS2 RE29468p 77.51 8 32 0 1765003.81867 1932542.0196500001 +Q8SWS3 RE26528p 17.13 2 6 2 165028.83382 207127.1947 +Q8SWZ6 RH51312p 15.35 3 7 3 21706.72098 28286.619099999996 +Q8SX06 GEO08318p1 15.43 2 2 2 7428.851 14168.137299999999 +Q8SX32 type I protein arginine methyltransferase 3.52 1 1 1 5822.009 6672.281 +Q8SX35 GEO07743p1 55.78 5 9 1 268230.53458 284528.287 +Q8SX50 RE04530p 17.6 6 7 0 164862.805 183953.85499999998 +Q8SX54 CLIP domain-containing serine protease 8.06 3 4 3 6102.6493 6406.2096 +Q8SX57 LD44221p 38.91 7 17 7 317429.8917 421910.12 +Q8SX78 LD05679p 21.72 9 9 9 125974.89749999999 174143.864 +Q8SX89 Kugelkern, isoform A 15.26 6 6 6 84164.06392 97131.5038 +Q8SXC2 FI04487p 9.56 5 5 5 66076.27560000001 76030.2552 +Q8SXD5 GH02216p 57.69 13 41 2 3284593.05387 4732081.517990001 +Q8SXE1 RH69521p 4.68 2 2 2 20042.7428 28734.237999999998 +Q8SXF0 Small ribosomal subunit protein uS9m 17.72 8 8 7 72471.64749999999 89013.8921 +Q8SXF2 RH40246p 8.18 4 4 4 80595.2537 89409.855 +Q8SXG7 tRNA selenocysteine-associated protein 1 5.06 2 2 2 58770.259000000005 54948.861 +Q8SXK0 RE18748p 6.55 2 2 2 29504.840200000002 38486.412 +Q8SXM8 Lysine--tRNA ligase 28.92 17 25 1 478527.08298 554252.08996 +Q8SXP8 TAR DNA-binding protein 43 12.24 5 8 2 29769.1646 25540.28 +Q8SXQ1 aldehyde dehydrogenase (NAD(+)) 25.56 14 20 14 954534.5056 1145117.7064 +Q8SXQ5 Glutaredoxin-related protein 5, mitochondrial 4.4 1 2 1 6110.507 2933.262 +Q8SXS0 RE40914p 16.23 5 6 5 109627.849 127227.224 +Q8SXX1 Phosphatidylinositol 5-phosphate 4-kinase, isoform A 40.59 16 31 16 1149930.6028500001 1507239.7115 +Q8SY13 Beaten path IIIc, isoform A 8.62 4 5 0 25810.6869 27168.3314 +Q8SY19 Microsomal glutathione S-transferase 1 14.47 3 8 1 472623.7912 581176.9750000001 +Q8SY58 Ketimine reductase mu-crystallin 1.97 1 1 1 5968.465 7290.9805 +Q8SY67 lysozyme 14.47 2 6 2 432012.107 491696.78040000005 +Q8SY69 MICOS complex subunit MIC10 25.0 2 7 2 868766.8539999999 1217949.32 +Q8SYC4 RE68566p 3.93 2 2 2 30692.568 37977.144 +Q8SYD9 Endophilin B, isoform A 44.87 17 82 0 5051834.0845 5778484.57635 +Q8SYG3 E2 ubiquitin-conjugating enzyme 53.57 11 27 1 2179514.5882 2597028.5812 +Q8SYH8 RE57644p 19.05 5 10 0 252183.9065 317391.4951 +Q8SYJ2 GEO09626p1 67.47 10 68 10 18925266.0444 25218462.84366 +Q8SYQ4 RE42475p 69.59 10 50 10 3960268.80203 4916202.99018 +Q8SYQ8 RE40412p 27.94 4 9 4 151281.0016 178029.3891 +Q8SZK5 RH26533p 16.4 3 4 3 127709.528 162581.28100000002 +Q8SZK9 HL04814p 59.31 15 64 15 6760233.0731999995 8353969.31063 +Q8SZM2 RH04334p 28.15 9 35 9 5825737.067 6268691.1456 +Q8SZN1 GEO08217p1 73.39 10 27 5 2947227.2514 4781551.2443 +Q8T0I9 GH27479p 28.88 11 16 1 371450.3963 504587.599 +Q8T0J5 GH26851p 40.42 12 39 0 4261809.1275 5176339.121 +Q8T0N5 GH17516p 19.54 8 15 8 431288.06200000003 627596.9602 +Q8T0U6 Serine/threonine-protein phosphatase 12.15 6 10 1 59100.0429 80699.0431 +Q8T0V2 GH02495p 25.5 11 20 0 250613.5887 307729.6602 +Q8T389 Endophilin B 43.12 16 71 0 12993.1135 16531.1867 +Q8T3V6 Large ribosomal subunit protein uL29m 16.61 5 5 4 39463.8949 50708.1071 +Q8T3W8 Venom allergen-1 12.6 4 6 0 46483.635899999994 58303.0603 +Q8T4C4 ATP synthase subunit beta 11.25 5 77 1 4920.5664 8132.637 +Q8T4G5 AFG3 like matrix AAA peptidase subunit 2, isoform A 25.42 23 36 2 1014010.2771 1124815.69245 +Q8T6I0 Achaete scute target 1, isoform B 64.98 32 81 0 3994002.27649 5175921.59483 +Q8T972 N-terminal E2 ubiquitin-conjugating enzyme 4.55 1 2 0 10683.4997 20966.484 +Q8WR19 AFGF intracellular binding protein 2.79 1 1 0 3777.865 8563.71 +Q94513 Boundary element associated factor 18.79 5 8 1 80937.11319999999 97456.1008 +Q94533 Ribosomal protein S6 kinase 6.12 3 3 3 22147.009 25625.318 +Q94883 DNA replication-related element factor, isoform A 4.23 3 3 3 101216.342 121725.661 +Q95NU8 GH16255p 14.82 7 11 7 325252.84599999996 302409.1544 +Q95NV8 Allatostatin C, isoform B 28.1 2 4 0 21290.88866 29664.45854 +Q95PE4 GEO07784p1 5.56 1 1 1 7873.702 10583.461 +Q95R34 GH16463p 12.62 4 5 4 72201.88029999999 71273.7789 +Q95R98 Protein phosphatase methylesterase 1 7.82 3 6 3 80914.3744 89568.9381 +Q95RB1 Pre-mRNA-splicing factor RBM22 18.66 8 9 8 54664.63575 65841.06184000001 +Q95RB2 Cuticular protein 49Ae 48.51 7 175 7 53313464.23162 41052303.30205 +Q95RC5 LD44506p 4.95 3 3 3 14000.5443 18786.9154 +Q95RE4 LD37574p 51.42 13 23 0 278524.4253 301459.01821 +Q95RF6 LD34461p 34.5 4 12 4 336366.27619999996 505173.36993 +Q95RI2 LD28549p 31.37 9 11 9 186998.1858 214202.3104 +Q95RI7 Survival of motor neuron-related-splicing factor 30 20.99 5 6 1 115272.156 130517.08080000001 +Q95RP1 LD18295p 10.71 2 2 2 22492.007999999998 26757.591 +Q95RQ1 LD16414p 3.32 2 2 2 8356.1736 8182.3164 +Q95RR6 LD15002p 64.6 18 79 0 84230.942 74649.254 +Q95RS6 Phenoloxidase-activating factor 2 15.2 5 8 5 153364.0636 184376.24300000002 +Q95RV5 Ribulose-phosphate 3-epimerase 15.38 3 8 3 986022.6741299999 1237579.6977300001 +Q95RY2 LD01461p 45.04 9 18 2 371117.36315 500686.7572 +Q95SH0 GH26463p 2.44 2 2 2 25911.4073 17191.3849 +Q95SH2 Charged multivesicular body protein 1, isoform A 30.54 8 28 8 1007938.791 1098815.4553 +Q95SH7 GH26007p 3.49 1 2 1 263685.005 326360.66000000003 +Q95SI7 GH23390p 75.09 18 61 18 4801663.0127 7223363.32623 +Q95SN8 GH12395p 15.49 4 7 4 149073.12720000002 188496.098 +Q95TK5 LD44914p 21.21 9 14 8 363078.0159 488882.37346 +Q95TL8 Endoplasmic reticulum protein 44, isoform A 33.5 15 31 0 2250021.7138 2942158.85863 +Q95TP0 LD34582p 4.51 2 2 2 14600.705 17602.982 +Q95TZ7 GH19182p 85.32 28 147 0 25083250.45974 26847704.78787 +Q95U15 GH14252p 83.65 34 259 0 7158585.268 9151693.03755 +Q95U34 GH11113p 30.82 13 27 13 1341975.2966 1668907.5661 +Q95WY3 Nucleolar protein 56 16.13 8 9 8 195246.8359 263069.4912 +Q960D4 SD06560p 20.91 13 13 0 484633.77824 576474.4569 +Q960M4 Peroxiredoxin-5 74.21 13 104 13 28499013.24658 37817302.94536 +Q960Y8 Aluminum tubes, isoform G 25.74 22 26 0 1401854.80875 1648777.0326999999 +Q961A8 LD25351p 2.07 1 1 0 6992.9253 5458.893 +Q961B3 5'-nucleotidase domain-containing protein 1 5.24 3 3 0 84011.8163 117457.23346 +Q961B9 LD24073p 3.72 2 2 2 25420.921000000002 35087.741 +Q961C8 LD22649p 9.84 4 4 0 82740.54699999999 93641.85399999999 +Q961E7 phosphorylase kinase 7.88 4 5 0 58065.312999999995 85968.737 +Q961K6 GH19047p 3.18 2 2 2 2552.4746 2647.3818 +Q961Q8 GH10454p 8.89 4 5 4 51076.9104 76541.0237 +Q961T9 GH07914p 32.94 6 12 6 749611.5187 666236.7826 +Q961X4 Combover, isoform B 17.43 11 13 0 104011.77408 108536.4407 +Q966T5 Paxillin, isoform D 28.93 7 20 4 95471.1026 139973.13880000002 +Q967S0 Amidophosphoribosyltransferase 11.33 6 8 0 176234.3061 282084.7163 +Q9I7H8 LD37276p 14.29 4 5 4 40985.25422 50551.32587 +Q9I7I3 GH12831p 12.97 4 4 4 55772.409999999996 66102.873 +Q9I7J0 GH21596p 72.19 11 40 11 5152825.11426 4572759.72127 +Q9I7K3 N-acyl-aliphatic-L-amino acid amidohydrolase 3.74 2 2 2 127774.01000000001 163480.664 +Q9I7L9 Uncharacterized protein, isoform A 14.01 5 5 0 49611.8434 68680.54147 +Q9I7M3 Uncharacterized protein, isoform A 48.17 12 25 1 863296.00674 953699.20807 +Q9I7Q5 Cuticular protein 65Au, isoform A 65.09 7 25 7 7647356.11224 8554235.07607 +Q9NCC3 Sorting nexin 15.58 8 10 8 267782.87 321580.4036 +Q9NF31 EG:BACN25G24.3 protein (Fbgn0004860;ph-d protein) 1.47 2 2 0 23129.0432 33268.034 +Q9NG60 Eukaryotic translation initiation factor 2D 4.97 2 2 2 9599.13705 9209.93522 +Q9U1K7 Thioredoxin domain-containing protein 17 37.78 6 8 6 331546.29449999996 486558.958 +Q9U1L2 EG:BACR7A4.14 protein 55.78 12 16 12 1045344.08003 1492478.438 +Q9U6P7 FI18813p1 10.55 5 7 5 175350.54200000002 226271.121 +Q9U6R9 Gamma-soluble NSF attachment protein 63.91 22 60 19 3086760.6295000003 3763708.7993 +Q9U9Q2 Neosin, isoform A 20.22 7 7 7 118268.73270000001 149015.6324 +Q9V393 Kurtz arrestin 5.32 2 3 2 31945.843 36207.163 +Q9V396 Carbonic anhydrase 58.15 15 45 15 2589453.65657 3232353.69205 +Q9V3A8 Ergic53, isoform A 4.88 3 3 3 45107.9348 73485.2313 +Q9V3C8 DShc protein 5.62 2 2 2 19688.494899999998 22544.5024 +Q9V3D9 Signal recognition particle 54 kDa protein 21.26 10 16 10 194633.48243 281987.71755 +Q9V3E3 Large ribosomal subunit protein mL50 19.05 4 5 4 102918.5195 127720.32 +Q9V3E7 LD24793p 42.86 14 26 14 749770.6311 905342.23956 +Q9V3E9 RNA polymerase II-associated protein 3 9.36 5 6 5 21057.734599999996 21698.9251 +Q9V3F8 Pyrroline-5-carboxylate reductase 25.71 5 14 5 354168.5109 380690.3389 +Q9V3I0 EG:BACR42I17.2 protein 12.18 3 8 3 248899.548 309395.868 +Q9V3L7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 11, mitochondrial 48.67 6 10 6 249559.88546 329332.2551 +Q9V3N7 dihydropyrimidinase 41.6 23 59 4 1996251.35608 2540385.01433 +Q9V3N9 B6 4.48 3 3 3 89548.4025 112714.9323 +Q9V3P3 LD45860p 39.18 10 21 10 1335781.6864 1785523.8285 +Q9V3Q4 thioredoxin-dependent peroxiredoxin 12.4 3 4 3 50242.2024 58725.836800000005 +Q9V3R3 GPN-loop GTPase 7.59 3 3 3 23409.5566 31272.784 +Q9V3T8 LD32469p 18.46 4 6 4 123154.17 207302.8157 +Q9V3U6 26-29kD-proteinase 24.77 13 38 13 5247271.2339 5943949.282 +Q9V3V2 peptidylprolyl isomerase 62.96 14 54 2 3997562.8822999997 5541958.494 +Q9V3V6 26S proteasome regulatory complex subunit p50 61.92 23 69 22 5296744.7873 6839039.39811 +Q9V3V9 Endonuclease G inhibitor, isoform A 57.38 16 34 16 1319483.31072 1632545.39489 +Q9V3W2 GM23292p 66.47 16 60 16 5942285.1044 7616857.3333 +Q9V3W7 LD40489p 52.16 11 26 11 1210423.9327 1460072.2552399999 +Q9V3W9 UV excision repair protein RAD23 41.3 13 33 5 844754.00289 911735.22135 +Q9V3Y4 LD43650p 20.57 5 8 5 562944.6114 789397.928 +Q9V3Y7 Uncharacterized protein, isoform A 60.36 15 32 15 1853128.97873 2302606.6334 +Q9V3Z4 GH11341p 30.28 14 31 14 604955.88997 726316.19487 +Q9V3Z9 HL02234p 42.6 17 39 17 3420766.94753 4165794.06446 +Q9V400 Integrin linked kinase, isoform A 9.38 5 5 4 68804.79980000001 86998.8864 +Q9V405 26S proteasome regulatory subunit 6B 58.84 29 53 19 2247062.3145 3286320.1533399997 +Q9V406 Activator protein 4 13.31 7 11 7 433339.17317 611466.2683 +Q9V420 FI02878p 15.83 8 12 8 328212.7362 392341.6186 +Q9V428 Ras suppressor protein 1 36.04 9 20 9 708071.56613 920742.0796 +Q9V434 Asparagine--tRNA ligase, cytoplasmic 8.78 4 5 4 100423.597 102917.08499999999 +Q9V436 26S proteasome non-ATPase regulatory subunit 8 31.06 9 19 9 1041011.0945 1125379.3599999999 +Q9V455 Importin subunit alpha 22.37 11 25 11 1438964.63533 1722840.8449000001 +Q9V470 Succinate--CoA ligase [GDP-forming] subunit beta, mitochondrial 45.91 19 44 19 1683530.17309 2501518.57766 +Q9V491 Plexin A, isoform A 1.44 3 3 0 26350.379399999998 30062.157 +Q9V4C1 Uncharacterized protein, isoform E 47.85 34 78 0 4033448.96405 5056835.50044 +Q9V4D9 Purine-rich binding protein-alpha, isoform B 64.73 19 82 0 6126787.7053000005 7326506.0609 +Q9V4E0 Complex I-49kD 31.41 12 19 11 966478.6522 961649.8324999999 +Q9V4E7 Transporter 9.12 6 7 3 448578.296 581581.872 +Q9V7W9 Nuclear inhibitor of protein phosphatase 1 6.01 2 3 2 8901.145700000001 10552.8832 +Q9V9M7 Large ribosomal subunit protein eL21 28.93 6 17 6 990413.1845 1185028.2133000002 +Q9V9Q4 LD43819p 30.23 12 26 12 469319.27853 650674.15153 +Q9V9S0 Lysosome-associated membrane glycoprotein 5 17.3 5 8 5 132440.4287 134226.46806 +Q9V9T5 GM14617p 13.75 10 10 0 94399.3992 121934.4764 +Q9V9T9 Beta-glucuronidase 2.92 2 2 2 18982.8125 22739.4 +Q9V9U0 RE35358p 4.79 1 2 1 74246.268 96690.668 +Q9V9U7 Tubulin-specific chaperone A 38.18 5 12 5 812889.6261 901254.3496000001 +Q9V9V0 Cleavage stimulation factor subunit 1 4.25 2 2 2 2701.313 4359.17982 +Q9V9V4 CRAL-TRIO domain-containing protein 33.89 10 21 10 563557.48793 693619.3434 +Q9V9W2 Large ribosomal subunit protein eL6 27.57 9 28 0 2987016.243 3563595.437 +Q9V9W4 GH08048p 1.69 1 1 1 3898.7314 6514.9463 +Q9V9Y6 Carbonic anhydrase 8.61 3 3 3 34766.691999999995 28505.457000000002 +Q9VA09 Guanylate cyclase soluble subunit beta-1 6.35 6 6 6 174972.106 223142.609 +Q9VA18 Coiled-coil-helix-coiled-coil-helix domain containing 3 78.03 20 85 20 8164883.25246 8288671.0629 +Q9VA32 Cuticular protein 100A 29.88 7 16 7 564296.75414 597776.0038000001 +Q9VA34 LP06141p 1.88 2 2 2 31039.903 44007.568 +Q9VA36 CIN85 and CD2AP related, isoform C 24.15 19 24 0 394967.78315 458454.17066 +Q9VA41 GEO08227p1 52.87 7 18 3 219338.6811 327248.4923 +Q9VA42 Niemann-Pick type C-2g, isoform A 49.69 7 27 4 2567430.8109 3283254.5016 +Q9VA56 GH23271p 63.77 23 81 2 74304.68699999999 84469.7615 +Q9VA69 procollagen-proline 4-dioxygenase 2.73 2 2 2 30473.832 33582.94 +Q9VA71 FI19924p1 4.52 1 2 1 2693.2959299999998 4007.4282 +Q9VA76 IP18706p 16.43 6 8 6 48825.5352 42477.851 +Q9VA81 GEO10172p1 29.29 5 5 5 138616.8978 167626.96050000002 +Q9VA95 Trafficking protein particle complex subunit 17.93 2 3 2 77009.7093 66627.074 +Q9VA97 Pyridoxal phosphate homeostasis protein 35.43 8 13 8 463705.71396 622314.9119 +Q9VAA6 GEO12235p1 19.62 3 7 3 239555.9564 262985.7587 +Q9VAA9 JIL-1 anchoring and stabilizing protein, isoform A 28.21 11 18 11 493608.5344 529287.5252 +Q9VAC1 GM14349p 45.49 17 130 17 13010256.04255 17056762.08475 +Q9VAC4 GEO09167p1 63.46 7 16 7 1142071.5048 1581698.4382 +Q9VAC9 Uncharacterized protein, isoform A 30.21 10 13 1 99223.13122000001 98394.25243000001 +Q9VAD4 Translation initiation factor eIF2B subunit alpha 8.17 3 3 3 10162.716 13344.612000000001 +Q9VAD7 RH37294p 18.5 3 3 3 15777.334799999999 30425.745 +Q9VAG3 trypsin 17.0 4 7 4 137870.8474 190574.2064 +Q9VAG9 3'(2'),5'-bisphosphate nucleotidase 1 40.85 10 16 10 561440.2863 732305.159 +Q9VAI9 GEO07291p1 62.25 8 60 5 6544013.44612 8244015.75206 +Q9VAJ9 Mitochondrial 2-oxoglutarate/malate carrier protein 33.75 12 15 12 613891.6156 787404.9061 +Q9VAL5 protein-tyrosine-phosphatase 0.86 1 1 0 420.79337 677.65564 +Q9VAL7 Calnexin 99A, isoform A 38.51 22 70 1 5001300.13013 5933884.2006 +Q9VAN7 Phosphoglycerate mutase 62.35 16 134 14 26364578.6061 31252855.9179 +Q9VAQ4 Peptidase S1 domain-containing protein 12.85 5 6 5 59743.2318 74933.2662 +Q9VAS1 Neprilysin-like 19 2.24 2 2 2 6586.0566 10288.133 +Q9VAU6 LD27564p 2.99 2 2 2 8848.628060000001 13907.7754 +Q9VAV2 FI21480p1 16.52 13 16 13 249476.2215 310417.5686 +Q9VAY0 Neprilysin 7 5.16 4 4 4 20569.5779 21134.2971 +Q9VAY2 Heat shock protein 83 37.87 32 96 31 3675687.29819 5070025.15731 +Q9VAY6 Pre-mRNA-splicing factor SPF27 17.99 4 5 4 58234.61 81198.125 +Q9VAY9 GH07821p 7.89 3 3 3 28819.661399999997 27672.348299999998 +Q9VB05 ALG-2 interacting protein X 26.2 26 47 26 1732578.7318 2327565.7365 +Q9VB10 Hydroxysteroid dehydrogenase-like protein 2 48.06 18 46 18 2426928.30788 3136318.011 +Q9VB17 IP11341p 7.98 3 3 3 70795.64 126073.83 +Q9VB22 LD33695p 14.29 8 11 8 325464.56440000003 404064.987 +Q9VB23 Serine/threonine protein phosphatase 2A regulatory subunit 22.33 13 26 1 663951.735 783050.0466 +Q9VB51 GEO08385p1 42.96 3 3 3 60618.49999999999 49366.641 +Q9VB64 Uridine diphosphate glucose pyrophosphatase NUDT14 47.17 9 29 9 399145.67379000003 576755.5148 +Q9VB66 CLIP domain-containing serine protease 6.04 3 4 3 22252.532 22250.6682 +Q9VB69 Malic enzyme 20.75 12 16 1 879102.547 1016010.728 +Q9VB76 Carbonic anhydrase 3.54 1 2 1 9764.702000000001 10514.5591 +Q9VB77 IP09938p 12.18 4 4 4 68481.669 86418.485 +Q9VB78 Eater 6.52 1 1 1 415.63257 0.0 +Q9VB79 IP09473p 24.22 8 17 8 609593.3341 764159.2696 +Q9VB81 Cuticular protein 97Eb 54.89 13 55 13 4941993.5783 7870841.1451 +Q9VB86 LP07342p 10.14 2 3 1 15452.989 20420.202299999997 +Q9VB96 Uncharacterized protein, isoform A 36.49 14 29 2 1212024.77204 1815258.5184000002 +Q9VBC1 Uncharacterized protein, isoform A 29.03 3 3 3 45329.651 51263.38740000001 +Q9VBC9 Beaten path VII 13.15 4 4 4 117898.0846 180288.968 +Q9VBI2 UMP-CMP kinase 54.55 16 95 16 10358993.73424 13693363.17291 +Q9VBI3 RH72336p 28.52 9 21 9 1874505.5624 2277337.4944 +Q9VBL3 GH01188p 13.79 7 7 7 68199.56906000001 82752.2983 +Q9VBN5 60S ribosomal protein L27 26.67 4 6 4 691738.868 706348.488 +Q9VBP5 Jing interacting gene regulatory 1, isoform A 4.76 2 2 1 45812.282999999996 54789.539000000004 +Q9VBP6 Succinate-semialdehyde dehydrogenase 68.96 32 141 32 20432728.67521 27938002.93013 +Q9VBR3 Astrocytic leucine-rich repeat molecule 1.7 1 1 1 10774.482 17591.494 +Q9VBS7 Uncharacterized protein, isoform B 34.35 12 24 12 710196.767 937828.08867 +Q9VBT1 CHK kinase-like domain-containing protein 12.95 6 9 6 143120.6484 200116.8395 +Q9VBT2 IP11926p 9.86 4 4 4 13633.6509 21302.233500000002 +Q9VBU0 Uncharacterized protein, isoform A 7.43 4 4 3 45578.5419 55913.0335 +Q9VBU9 40S ribosomal protein S27 38.1 3 9 3 3841167.658 5350654.1389999995 +Q9VBV4 Juvenile hormone binding protein 7 30.4 8 10 8 120726.4352 158251.13586 +Q9VBY7 Protein lin-7 homolog 63.08 12 50 1 4776277.3922999995 6087974.7717 +Q9VC05 Oxysterol-binding protein 9.44 6 7 6 46625.86176 64161.7702 +Q9VC06 LD37516p 15.21 10 15 10 122162.06212 158592.3295 +Q9VC10 Phosphatidylinositol glycan anchor biosynthesis class S 3.17 2 2 2 4668.853999999999 7351.9691 +Q9VC18 Bifunctional purine biosynthesis protein ATIC 28.64 15 23 15 562617.37263 850551.35144 +Q9VC30 RE05274p 8.06 1 2 1 8186.906400000001 6024.505569999999 +Q9VC31 Ras-related protein Rab-1 32.39 7 28 5 339361.36516 429975.2256 +Q9VC48 Methionine aminopeptidase 25.67 9 14 9 524493.13155 557613.2513 +Q9VC53 BolA-like protein DDB_G0274169 21.33 4 13 4 572309.0629 695852.097 +Q9VC58 Syntaxin-18 8.86 4 4 4 47359.6543 49328.4981 +Q9VC66 AT25567p 28.82 13 18 13 563849.157 604499.6839000001 +Q9VC67 Juvenile hormone binding protein 12 11.9 3 4 3 51193.437300000005 61867.5184 +Q9VC87 RE57978p 10.75 4 4 4 8571.9185 10174.9833 +Q9VCB9 FI08802p 26.23 6 12 6 735831.5178 1044960.75 +Q9VCD8 Structural maintenance of chromosomes protein 0.89 1 1 1 758.7195 934.63763 +Q9VCD9 Uncharacterized protein, isoform C 34.42 5 10 5 1272126.5938 1458883.7944 +Q9VCE0 Phosphatidylserine decarboxylase proenzyme, mitochondrial 11.41 5 5 5 97490.87599999999 144126.2615 +Q9VCF8 LD23561p 23.45 8 11 8 216915.37497 258403.33338999999 +Q9VCI4 LD32918p 3.55 3 3 3 62855.149000000005 90686.4095 +Q9VCI7 LD02979p 17.37 7 12 0 382667.2144 382500.9916 +Q9VCK6 LD34157p 20.89 8 10 8 223628.06698 266940.38622 +Q9VCR2 N-acyl-aliphatic-L-amino acid amidohydrolase 10.22 5 5 4 56571.3665 76579.531 +Q9VCR4 FI17836p1 7.58 6 7 6 134289.186 162258.00075 +Q9VCR9 RH48101p 39.61 11 25 11 651819.6598499999 873568.2574 +Q9VCT4 Klingon 6.06 3 4 3 17881.3221 36165.277 +Q9VCU0 GEO02312p1 34.17 4 8 4 608903.258 772532.7753 +Q9VCU1 FI07649p 1.31 1 1 1 25511.906 28171.299 +Q9VCU6 Heterochromatin protein 1c 14.35 3 3 3 85466.303 90071.194 +Q9VCW2 Cardinal 5.3 5 6 5 59397.13394 76991.474 +Q9VCW6 GCS light chain 36.14 13 31 13 1996693.5913 2276498.7781 +Q9VCZ2 FI07970p 2.48 1 1 1 38934.49 49153.938 +Q9VD00 FI07666p 23.74 6 12 6 267667.38685 323278.00203 +Q9VD01 LP12095p 18.75 3 3 3 14847.713 10365.1823 +Q9VD02 GH14779p 30.73 4 10 4 440575.0761 610441.2996 +Q9VD13 GH02671p 14.64 8 9 0 185257.06536 286195.5265 +Q9VD14 GH07286p 17.02 9 13 9 125426.55285000001 144347.2625 +Q9VD29 small monomeric GTPase 54.92 10 33 10 1989698.47964 2721008.0126300002 +Q9VD30 GH05294p 79.44 14 60 14 4799306.68171 5159915.8796999995 +Q9VD55 Holocytochrome c-type synthase 3.56 1 1 1 25239.59 23128.42 +Q9VD58 Isocitric dehydrogenase subunit beta 52.7 17 90 17 8208481.09055 10551721.2249 +Q9VD64 ADP-ribosylation factor-like protein 3 35.75 5 7 4 104871.2271 123411.2861 +Q9VD68 GH19849p 6.84 3 3 3 25965.8071 29362.892 +Q9VD72 Vacuolar-sorting protein SNF8 3.15 1 1 1 12098.586 34971.47 +Q9VDC0 GH01837p 24.0 5 14 5 442664.381 619209.031 +Q9VDC1 Deoxyribonuclease TATDN1 5.33 2 2 2 7184.6808 14978.2706 +Q9VDC2 isopentenyl-diphosphate Delta-isomerase 10.55 2 2 2 6087.9004 5269.4855 +Q9VDC3 AP complex subunit sigma 44.37 6 14 6 662810.3047999999 850005.6320999999 +Q9VDE2 oxaloacetate tautomerase 44.09 8 15 8 1035581.70508 1392707.9386 +Q9VDF4 Cortactin, isoform A 36.31 23 28 23 1457719.3646 1743100.7164 +Q9VDH3 GH08630p 58.77 13 36 13 1143425.7967 1385917.71961 +Q9VDI1 LD46328p 56.88 24 81 1 4255227.47313 4921819.73964 +Q9VDI3 Myosin-2 essential light chain 17.45 3 3 3 101415.96250000001 133183.8395 +Q9VDI5 Uncharacterized protein, isoform A 33.1 6 14 4 129026.64365 180637.66377 +Q9VDK2 GH15831p 3.87 3 3 2 59619.3637 65104.504 +Q9VDK7 Signal recognition particle subunit SRP72 36.62 21 30 21 450289.6554 532908.22905 +Q9VDK9 GH12359p 4.89 3 4 3 123171.031 153004.736 +Q9VDL0 Signal recognition particle 14 kDa protein 20.18 3 4 3 162381.399 186772.162 +Q9VDL5 GEO09602p1 52.24 3 3 3 88375.94099999999 75358.7252 +Q9VDP9 S-formylglutathione hydrolase 21.33 5 13 1 459440.87185 657552.6466399999 +Q9VDQ3 Identity crisis 8.06 4 4 4 32123.7516 48491.3077 +Q9VDT1 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 30.12 11 21 11 727049.9193 842846.4368 +Q9VDT4 Uncharacterized protein, isoform A 9.39 1 2 1 6629.1605 10198.311 +Q9VDT5 Carboxypeptidase 25.73 10 18 10 1054545.87514 1043635.9649 +Q9VDU1 Acyl-CoA synthetase X3 8.36 4 5 3 58071.472 63188.5993 +Q9VDU7 nicotinamidase 31.37 11 16 11 311937.742 381875.637 +Q9VDV2 AT06125p 8.26 4 4 3 54934.227999999996 75223.939 +Q9VDY8 MIP08680p 74.26 18 75 2 3556798.19379 4354710.5178 +Q9VDZ8 Mitochondrial import inner membrane translocase subunit TIM44 42.76 23 47 0 2971583.9731 4004016.1703999997 +Q9VE08 GH10002p 13.62 3 3 3 31818.31 52007.102600000006 +Q9VE12 LD27322p 19.44 7 8 7 83514.388 98080.69750000001 +Q9VE24 N-sulfoglucosamine sulfohydrolase 8.59 5 6 5 44364.86808 58307.4447 +Q9VE31 GEO12059p1 18.92 2 2 2 5126.7654 6502.205 +Q9VE52 Cleavage stimulation factor 64 kD subunit 14.08 6 8 6 76701.55750000001 101125.1257 +Q9VE56 FI17806p1 18.88 4 7 4 491713.81965 634016.8208 +Q9VE57 GEO10850p1 6.9 1 2 1 28271.496 41572.722 +Q9VE73 WD repeat-containing protein 37 3.49 2 2 2 12871.4058 15623.3865 +Q9VE75 V-type proton ATPase subunit a 2.28 3 3 3 29317.297 42075.933000000005 +Q9VE85 Nucleoporin 43kD 19.27 7 9 7 47705.677599999995 73377.9256 +Q9VE94 LD14127p 8.85 3 4 3 87953.0533 112971.6117 +Q9VEA1 Eukaryotic translation initiation factor 4C 31.08 6 15 6 681799.3299 819917.2091999999 +Q9VEA7 FI01460p 44.94 3 5 3 708316.8933 881030.1355 +Q9VEB1 Malate dehydrogenase, mitochondrial 85.12 28 305 28 48491647.42676 63739083.87049 +Q9VEB7 AT04491p 12.1 4 4 4 27525.182 32890.4118 +Q9VEC2 Proteasome assembly chaperone 2 36.44 8 9 8 120405.2427 159766.8387 +Q9VEC6 LD29902p 14.83 12 17 0 2828.3516 3109.6730000000002 +Q9VEC8 RE23139p1 26.15 3 3 3 203347.028 332852.344 +Q9VED8 Deoxyribonuclease II 10.11 4 7 4 99452.13035 131775.8516 +Q9VEF5 Inhibitor of growth protein 13.16 4 4 4 32507.016499999998 40768.4075 +Q9VEG8 RE59232p 10.8 2 2 2 39258.604999999996 56581.704699999995 +Q9VEH2 Transmembrane protein 192 17.31 4 4 4 243880.89805 311224.5674 +Q9VEJ3 Pyrroline-5-carboxylate reductase 45.79 9 30 2 2058487.5577 2917032.5274 +Q9VEJ9 Curly Su 2.39 2 2 2 7711.648 12585.389000000001 +Q9VEK7 Cellular repressor of E1A-stimulated genes, isoform A 23.7 4 7 0 130301.7548 181590.0078 +Q9VEK8 GH07711p 39.88 11 22 11 673039.6568 846515.4708 +Q9VEN3 non-specific serine/threonine protein kinase 24.14 15 18 15 480185.40342 623883.61375 +Q9VEN6 Mitochondrial ribosomal protein S11 5.0 1 1 1 8273.093 10503.593 +Q9VEN9 Protein associated with topo II related - 1, isoform A 5.27 5 6 5 33699.2298 36044.8169 +Q9VEP6 Adenylosuccinate lyase 22.25 11 27 11 562379.6529 783005.1761 +Q9VEP8 GH11385p 21.38 13 18 13 140520.86843 209149.25867 +Q9VEP9 Splicing factor 3A subunit 1 26.79 18 22 18 426176.06207 464206.8777 +Q9VEQ2 ER membrane protein complex subunit 2 22.34 6 8 1 146085.9705 180142.309 +Q9VES8 RE28913p 29.5 9 16 9 1245495.74355 1480539.4734 +Q9VET3 peptidyl-tRNA hydrolase 25.21 4 5 4 186908.576 172194.968 +Q9VEV3 Tetratricopeptide repeat protein 1 45.25 12 19 12 677037.6937299999 894083.9474 +Q9VEV6 Uncharacterized protein, isoform A 10.84 3 3 3 8824.3551 11039.203539999999 +Q9VEV7 Protein farnesyltransferase subunit beta 4.3 2 2 2 13739.3487 24664.5345 +Q9VEW1 Jiangshi, isoform A 8.01 5 5 5 154785.4773 157326.7495 +Q9VEY0 Uncharacterized protein, isoform C 44.74 14 31 6 599557.3452 707081.04506 +Q9VEY4 Growth hormone-regulated TBC protein 1 2.12 1 1 1 14332.569 16924.256 +Q9VEY5 MICOS complex subunit 62.39 12 34 12 3444959.9935 3871476.1341 +Q9VEY9 GH15759p 3.1 1 1 1 3037.901 4244.6934 +Q9VF03 Brahma associated protein 155 kDa 11.25 11 11 0 299764.1237 411390.8826 +Q9VF15 GEO09476p1 81.05 12 39 8 5939848.0279 7233156.5083 +Q9VF23 arginine kinase 12.25 6 7 6 50752.226800000004 65227.935 +Q9VF24 Crossveinless d 3.88 6 7 6 55323.3735 77327.6153 +Q9VF28 Actin-related protein 2/3 complex subunit 3 57.06 8 18 8 537688.6244399999 644158.42166 +Q9VF39 FI01459p 13.04 5 7 5 296075.49809999997 392180.41250000003 +Q9VF51 Aldehyde oxidase 3, isoform A 7.1 11 15 10 313289.759 464718.6518 +Q9VF70 Cerebral cavernous malformation 3 21.63 6 7 6 123887.5551 162016.5995 +Q9VF77 FI16517p1 10.74 4 5 4 91875.039 117808.0338 +Q9VF82 Trafficking protein particle complex subunit 6B 12.5 2 2 2 19981.071 30131.098 +Q9VF85 serine--tRNA ligase 7.19 3 3 3 28522.691400000003 38195.489 +Q9VF86 N-acetyl-D-glucosamine kinase 16.95 6 9 6 645576.3481000001 283075.31299999997 +Q9VF98 Cytochrome c oxidase assembly protein COX16 homolog, mitochondrial 40.95 4 5 4 56173.919 96698.4574 +Q9VFC7 Mf5 protein 84.93 39 273 0 25643935.48632 30184735.13004 +Q9VFE9 2-(3-amino-3-carboxypropyl)histidine synthase subunit 2 2.99 2 2 2 50019.2473 72838.9268 +Q9VFF0 Mitochondrial-processing peptidase subunit beta 62.34 26 158 26 13759897.32642 16840468.26365 +Q9VFI3 GEO08281p1 45.19 3 10 3 314215.47547 378351.753 +Q9VFM0 GH19262p 7.14 4 5 4 53268.110400000005 58059.869999999995 +Q9VFN7 GEO07678p1 27.67 5 18 5 792194.7132 1067784.57444 +Q9VFN9 GEO07882p1 54.84 7 9 7 101838.34175 134467.92436 +Q9VFP0 RH07106p 18.65 6 7 6 197081.80800000002 246180.212 +Q9VFP6 Inositol polyphosphate 1-phosphatase 39.73 14 43 14 2117465.1045999997 2811365.659 +Q9VFQ9 Dipeptidase B, isoform A 35.83 17 27 17 845284.6644 1120306.8091 +Q9VFS1 Adenosine deaminase 1.59 1 1 1 9010.139 10514.361 +Q9VFS4 Cilia- and flagella-associated protein 36 22.58 5 5 5 69965.362 115345.01900000001 +Q9VFT4 AT27578p 16.09 9 13 9 139724.7467 174564.75973999998 +Q9VFU7 Sidestep IV, isoform C 2.1 2 2 2 27501.2486 33909.803 +Q9VFV1 RE55542p 9.81 5 7 5 75833.1912 73153.21322 +Q9VFV9 DnaJ-like-2, isoform A 50.12 20 48 20 7556077.211300001 10083295.222 +Q9VFZ4 Methanethiol oxidase 7.41 3 4 3 100907.9906 157813.4984 +Q9VG00 Cytochrome c oxidase assembly protein COX20, mitochondrial 36.36 5 6 5 46505.5204 54800.4185 +Q9VG01 RE12073p 1.88 1 1 1 7405.435 10366.75 +Q9VG04 Protein MEMO1 2.71 1 1 1 8064.426 11284.914 +Q9VG06 peptidyl-tRNA hydrolase 15.83 2 3 2 28043.66688 36777.97076 +Q9VG23 GH22994p 69.3 12 69 1 7804279.68357 9554163.60764 +Q9VG26 MIP06012p 45.07 9 28 9 1935800.707 2325347.6201 +Q9VG28 Beaten path Vc 5.39 2 2 2 27941.898 41686.39 +Q9VG31 Malic enzyme 19.79 16 26 0 1986285.1491999999 2803374.8756 +Q9VG33 Sulfurtransferase 85.45 8 22 8 1975996.45064 2704797.9485 +Q9VG42 Glycine N-methyltransferase 17.3 5 8 5 34307.6596 44694.432 +Q9VG44 RE14195p 2.98 2 2 2 15020.419 10295.21 +Q9VG51 Sorting nexin-3 51.5 8 25 8 2095482.8512000002 2657664.05803 +Q9VG62 Toys are us 2.89 2 2 2 20804.4656 30030.239999999998 +Q9VG69 LP03547p 42.59 16 39 16 2019134.3315400002 3227407.90075 +Q9VG81 RH49330p 11.14 5 6 5 105789.5453 144211.5536 +Q9VG92 Glutathione S transferase D8 27.36 5 15 4 54571.835 62411.057 +Q9VGA0 Glutathione S transferase D9, isoform A 44.5 12 22 10 1371760.659 1265532.3523 +Q9VGA1 Glutathione S transferase D10, isoform A 14.76 4 14 2 76416.29000000001 104391.41 +Q9VGA3 LD12305p 36.82 8 23 7 1034216.7325599999 1249527.938 +Q9VGC2 Short-chain specific acyl-CoA dehydrogenase, mitochondrial 4.34 2 2 2 9223.4399 18222.479 +Q9VGE4 FI04457p 6.96 8 8 8 108077.2806 150509.9193 +Q9VGE7 Beta-galactosidase 5.97 3 4 3 37317.189 44100.412 +Q9VGF3 IP11040p 18.84 6 7 6 154956.4849 199822.2452 +Q9VGF7 Mitochondrial glutamate carrier 2 37.69 13 43 11 1840064.08079 2132771.24226 +Q9VGJ9 Heme oxygenase 20.61 6 6 6 440192.24199999997 449209.738 +Q9VGK3 peptidylprolyl isomerase 53.62 5 16 5 307663.32418 388701.08151 +Q9VGL0 LD43047p 2.61 3 3 3 18063.5071 21918.0029 +Q9VGM2 Fatty acid-binding protein, muscle 86.92 14 229 0 106947899.92021 132574023.34434 +Q9VGP7 Large ribosomal subunit protein mL40 18.88 4 4 4 139664.339 220508.424 +Q9VGQ1 Dihydrolipoyllysine-residue succinyltransferase component of 2-oxoglutarate dehydrogenase complex, mitochondrial 31.62 15 75 15 9662834.3515 10039483.248399999 +Q9VGQ8 Arfaptin 25.35 9 11 9 303836.44804 340607.167 +Q9VGR0 DnaJ homolog subfamily C member 17 12.37 3 3 3 35887.2472 44822.1094 +Q9VGR1 GRIP and coiled-coil domain containing 88 kDa 4.03 3 4 3 26961.4843 35665.9997 +Q9VGS3 RH44771p 23.39 4 22 4 398879.9467 704057.7266 +Q9VGT0 UDP-glucuronosyltransferase 3.88 2 2 2 55697.349 69463.545 +Q9VGT3 GM04645p 3.98 2 2 2 15294.5517 18925.554 +Q9VGT8 UDP-glucuronosyltransferase 16.25 7 8 7 84495.6997 100684.1722 +Q9VGU7 Arrestin C-terminal-like domain-containing protein 2.41 1 1 1 40222.016 35364.7 +Q9VGV9 palmitoyl-protein hydrolase 19.15 5 5 5 85353.5993 101558.401 +Q9VGW7 type I protein arginine methyltransferase 20.48 6 10 6 306599.06 360969.6541 +Q9VGY2 Peptide deformylase 5.88 2 3 1 29073.1512 28111.201 +Q9VGY8 Phytanoyl-CoA dioxygenase domain containing 1 20.14 4 6 4 63329.37239999999 107648.52600000001 +Q9VGZ3 Cytoplasmic aconitate hydratase 16.57 14 16 9 228630.72995 303571.6825 +Q9VH25 Gamma-soluble NSF attachment protein 29.33 9 12 6 139073.7713 230532.04349999997 +Q9VH26 Carbonic anhydrase 17.11 6 15 6 487527.7705 763535.8326999999 +Q9VH37 IP06524p 27.09 5 7 5 416200.042 483334.267 +Q9VH64 LD29322p 19.0 7 8 7 1301617.8316 1779586.5076 +Q9VH66 FI18258p1 24.89 5 9 5 81395.81507 86814.98125 +Q9VH72 TA01656p1 37.25 6 10 6 525929.5667 684260.439 +Q9VH76 Synaptosomal-associated protein 70.75 16 82 14 1836079.0087000001 1765472.6894 +Q9VH77 mannose-6-phosphate isomerase 13.13 5 7 5 81248.8039 121976.249 +Q9VH81 protein-serine/threonine phosphatase 9.42 4 4 4 25165.8991 33390.8291 +Q9VH98 Diuretic hormone 44, isoform A 23.6 5 10 5 136908.5904 120832.86979999999 +Q9VHA1 Spermidine synthase, isoform A 14.98 4 6 0 405526.4437 536795.6672 +Q9VHA8 LD25575p 15.06 10 12 10 518421.22939999995 665370.8096 +Q9VHB1 Mitochondrial pyruvate carrier 50.0 7 19 2 930847.61877 1120005.1731 +Q9VHB8 2-oxoisovalerate dehydrogenase subunit alpha 7.52 4 4 4 42947.741299999994 46298.1875 +Q9VHC3 Blistery, isoform A 29.17 18 23 18 381074.7456 376210.12799999997 +Q9VHC7 FI21236p1 34.65 17 32 9 853562.095 1200207.52483 +Q9VHC8 LD31448p 10.06 2 2 2 1967.2849 2828.083 +Q9VHE3 GH05665p 1.79 1 1 1 21303.736 27354.49 +Q9VHE4 omega-amidase 20.85 7 16 7 666002.9763 953590.1623 +Q9VHE5 Large ribosomal subunit protein eL34 13.1 3 7 0 398345.2394 376513.4584 +Q9VHF9 Uncharacterized protein, isoform B 10.11 2 7 2 459205.082 586990.273 +Q9VHG6 Insulator binding factor 2 18.46 4 5 4 71469.44536 140196.39907 +Q9VHH8 Beag 1.26 1 1 1 7488.324 7331.33 +Q9VHI1 Hyrax 8.36 4 4 4 19041.497 26193.7146 +Q9VHI8 Uncharacterized protein, isoform A 41.45 13 23 1 893777.0012 1270543.34964 +Q9VHJ2 LD32381p 9.12 3 3 3 44760.6531 55908.2355 +Q9VHJ5 Carbonic anhydrase 6.67 2 3 2 5528.3267 10608.793 +Q9VHJ7 LD41978p 4.48 3 3 3 53343.064900000005 89208.1637 +Q9VHL2 T-complex protein 1 subunit eta 46.69 23 50 23 2542884.76478 3162480.73198 +Q9VHM3 LD30467p 8.85 4 4 4 32225.4268 39610.587 +Q9VHN4 GH14121p 12.64 3 4 3 19240.65112 27005.584440000002 +Q9VHN7 transketolase 30.51 16 25 2 2129987.1864 2507316.6646000003 +Q9VHQ0 Large ribosomal subunit protein mL66 12.26 2 2 2 16534.464 23966.786500000002 +Q9VHR5 Veneno 2.96 2 2 2 4950.5327 6272.3057 +Q9VHT3 CG9617 protein 20.79 4 5 4 65957.48356 75409.2399 +Q9VHT5 Large ribosomal subunit protein uL1m 13.28 5 5 5 113233.9255 117020.571 +Q9VHX2 GH08043p 4.58 2 2 2 69241.195 79673.75 +Q9VHX4 LD24679p 77.51 23 101 23 13626111.86416 19006120.3004 +Q9VI04 Beta-ureidopropionase 30.83 9 14 9 215955.3444 320393.0297 +Q9VI09 GH14494p 52.48 7 29 7 1719489.9887299999 2371648.1573 +Q9VI21 Dementin, isoform D 2.98 2 2 0 21146.534 24977.6912 +Q9VI24 LD25151p 4.38 1 1 1 2230.367 4913.4365 +Q9VI53 LD44267p 19.43 7 13 7 115203.86466 125152.5254 +Q9VI57 Dephospho-CoA kinase domain-containing protein 9.75 2 4 2 62164.9982 63701.9574 +Q9VI64 LD30995p 46.46 14 42 14 2122644.64982 2612047.40184 +Q9VI66 GH28833p 15.54 4 6 4 202094.4344 330800.1006 +Q9VI80 Thawb 2.46 2 4 2 21473.2464 20816.8332 +Q9VIB5 Carboxylic ester hydrolase 9.97 5 6 4 177826.1326 259465.6313 +Q9VIE7 GMP synthase (glutamine-hydrolyzing) 8.64 5 6 5 100412.867 143805.4255 +Q9VIE8 Aconitate hydratase, mitochondrial 69.12 50 339 44 28627453.97712 37910040.492359996 +Q9VIF2 GM01519p 11.13 6 8 6 268479.7736 352823.235 +Q9VIG0 Malectin domain-containing protein 23.63 9 13 9 337768.03013 447207.255 +Q9VIH1 CG9273 protein 29.27 6 7 6 214197.536 229165.624 +Q9VII5 GEO08323p1 20.13 3 8 3 347198.85122 578594.2844 +Q9VII9 Glyoxylate reductase/hydroxypyruvate reductase 9.51 2 2 0 111469.8791 126593.77596 +Q9VIJ3 FI14214p 45.0 7 10 2 145373.77878999998 146550.762 +Q9VIJ5 GEO05038p1 20.15 2 3 2 28828.8025 32719.328500000003 +Q9VIK0 Alpha-methylacyl-CoA racemase, isoform A 11.53 4 4 4 6712.2626 9105.155200000001 +Q9VIK6 Centrocortin, isoform A 20.51 17 19 17 203020.48202 235595.43745 +Q9VIL2 LD19544p 23.14 4 5 4 68174.463 62627.763999999996 +Q9VIM0 Lysosomal Pro-X carboxypeptidase 14.95 6 12 6 513342.49220000004 614804.4323 +Q9VIN9 Small ribosomal subunit protein mS40 21.57 4 5 4 158759.6077 199767.9833 +Q9VIQ5 RH02620p 29.08 5 7 5 251223.87144 255734.70728 +Q9VIQ6 FI17342p1 17.68 4 5 4 49125.0854 69039.15000000001 +Q9VIQ8 Cytochrome c oxidase subunit 4 51.65 13 75 13 10825349.69412 11468239.8474 +Q9VIS4 tRNA-dihydrouridine(47) synthase [NAD(P)(+)] 5.3 3 3 3 17256.9281 21318.6546 +Q9VIU3 FI23988p1 3.98 2 2 2 16340.9043 17443.0433 +Q9VIV6 GH04973p 8.83 3 3 3 93210.2444 140598.1284 +Q9VIW6 small monomeric GTPase 7.42 2 2 2 31288.351 42468.56 +Q9VIW9 alkaline phosphatase 6.38 3 3 3 3354.4057 3235.365 +Q9VIX1 Galactose-specific C-type lectin, isoform A 20.43 3 5 3 228095.29661999998 424768.001 +Q9VIX7 Fondue, isoform B 20.62 7 19 1 488352.31405 656511.6892 +Q9VJ19 Large ribosomal subunit protein eL30 60.36 6 23 6 887601.6292 1152346.75623 +Q9VJ22 GH09876p 5.41 2 2 2 15264.632 25062.731 +Q9VJ25 Membrane magnesium transporter 16.51 2 3 2 248035.258 305570.48199999996 +Q9VJ28 L-2-hydroxyglutarate dehydrogenase, mitochondrial 24.18 11 20 11 472467.6732 669608.92706 +Q9VJ30 non-specific serine/threonine protein kinase 9.68 9 11 0 127616.6367 180283.8823 +Q9VJ43 Sterol carrier protein 2 30.15 14 37 7 1391439.6407 1740777.8337 +Q9VJ58 Fas-associated factor 2, isoform A 23.06 10 14 10 183294.1206 239482.4058 +Q9VJ59 PRA1 family protein 5.31 1 2 1 51852.484 76857.574 +Q9VJ60 GM16226p 17.29 3 4 3 230982.053 321631.314 +Q9VJ61 SD03870p 4.67 2 2 2 7324.2046 8140.0133000000005 +Q9VJ68 Hydroxylysine kinase 26.14 10 16 10 249568.1743 310293.2991 +Q9VJ80 LD42267p 8.46 10 12 10 125972.6641 157799.71839999998 +Q9VJ86 Leucine-rich PPR motif-containing protein, mitochondrial 10.41 14 16 13 257003.87896 352882.163 +Q9VJA9 GH07373p 7.69 5 6 0 32595.034 39908.1915 +Q9VJC0 GEO08203p1 37.96 5 8 5 375113.0376 508833.14639999997 +Q9VJD0 Mitochondrial inner membrane protease ATP23 21.2 5 6 5 132234.3592 174828.957 +Q9VJD1 Glucosidase 2 subunit beta 24.27 12 24 12 1413679.007 1680854.34125 +Q9VJD4 LD24721p 34.44 12 41 12 4692078.5489 5606222.0541 +Q9VJE3 LD24839p 11.63 6 8 6 73404.6824 89792.526 +Q9VJH8 FI03416p 3.13 2 2 2 9229.4189 11209.637999999999 +Q9VJI5 Protein yellow 16.56 8 9 8 421141.05306 515075.4238 +Q9VJI7 U6 snRNA-associated Sm-like protein LSm7 42.73 5 6 5 192265.78 210404.8725 +Q9VJJ0 Proteasome subunit beta 27.36 7 27 7 1405455.5938 1693400.5983 +Q9VJJ1 COX assembly mitochondrial protein 25.42 2 2 2 55119.285 64043.965 +Q9VJN0 Carboxypeptidase 17.8 7 10 7 379847.6583 457534.7256 +Q9VJQ3 Protein yellow 38.13 15 33 14 1511981.17597 2117497.4588 +Q9VJQ6 Dynactin subunit 5 14.29 3 3 3 14524.3727 15692.4978 +Q9VJU6 IP09831p 7.3 2 3 2 67776.908 80701.668 +Q9VJU8 GH23407p 10.27 5 6 5 54342.595199999996 68854.18286 +Q9VJZ1 FI21342p1 11.57 6 7 6 87676.8715 115020.03025000001 +Q9VJZ4 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 9 74.31 15 51 15 5275991.2536 5918620.945 +Q9VJZ5 LD07294p 26.58 8 14 8 260381.7046 400524.1579 +Q9VJZ6 LD40224p 76.39 13 40 13 2281711.0505 2852924.1682 +Q9VK00 Uncharacterized protein, isoform A 20.53 6 16 6 489437.6895 607592.547 +Q9VK11 GH15921p 22.65 6 13 6 823807.11346 1192406.3616 +Q9VK12 GH20621p 64.8 18 93 18 16129814.57567 18624844.93378 +Q9VK18 LD36945p 17.14 9 10 9 77544.5493 91311.9255 +Q9VK19 FI07225p 7.72 1 1 1 6443.177 10633.95 +Q9VK25 ethanolamine-phosphate cytidylyltransferase 37.91 15 20 1 5132.7718 2360.02668 +Q9VK31 LD35592p 5.19 2 2 2 2081.2292 4633.1235 +Q9VK39 FI09204p 52.83 5 23 5 757272.6677999999 954001.6082 +Q9VK43 LD10135p 7.71 3 3 3 30644.453 36930.5265 +Q9VK58 PIH1 domain containing 1, isoform D 8.14 6 7 6 203873.0348 222781.7553 +Q9VK59 LD23647p 33.58 28 46 28 618951.98804 831209.16168 +Q9VK60 GH25425p 52.14 13 50 13 3979485.29556 5293168.89907 +Q9VK69 T-complex protein 1 subunit delta 48.97 23 53 23 2841844.0158 3348747.6234 +Q9VK85 Eukaryotic translation release factor 3, isoform A 13.89 8 13 1 304759.4109 353006.8986 +Q9VK90 Heat shock factor-binding protein 1 94.19 6 12 1 266090.5146 291242.132 +Q9VK99 Atilla, isoform B 51.75 8 30 8 1528280.3508 1769218.33495 +Q9VKA1 FI02817p 16.23 4 6 4 47902.246 49156.63310000001 +Q9VKC7 Endoplasmic reticulum lectin 1 5.33 3 3 3 22512.9459 23650.278599999998 +Q9VKC8 FI03495p 14.26 8 10 8 128557.8171 143968.29812 +Q9VKD9 MIP16835p1 1.35 1 1 1 5125.525 5319.874 +Q9VKE2 Crystallin, isoform A 67.92 39 568 39 51177687.2977 51875757.4479 +Q9VKF0 Cyclin Y, isoform A 14.29 5 6 5 156748.36719999998 205887.8727 +Q9VKG4 BcDNA.GH07269 2.79 2 2 2 359370.186 443794.76399999997 +Q9VKI2 Buddy of Hmr 2, isoform A 10.71 2 2 2 285227.34 26831.28 +Q9VKI8 GH03305p 65.36 19 134 19 12166761.71467 14981430.35024 +Q9VKJ4 Csl4 18.14 3 4 3 84910.68800000001 101833.59400000001 +Q9VKM3 ATP synthase subunit g 54.55 7 69 7 12876461.28814 16609805.2245 +Q9VKM7 AT01533p 7.09 4 10 0 591686.3944 691915.7266 +Q9VKQ2 Uncharacterized protein, isoform A 75.51 5 16 5 193134.0535 218303.9006 +Q9VKQ5 GEO07393p1 16.94 2 4 2 445975.1 525392.19 +Q9VKR0 ER membrane protein complex subunit 3 10.12 2 4 2 31997.177000000003 31840.1244 +Q9VKR4 Aminomethyltransferase 30.62 10 21 10 1368696.3554 1868358.8123 +Q9VKU3 Large ribosomal subunit protein mL62 36.95 7 9 7 247445.3816 308110.364 +Q9VKU5 LD37206p 14.04 4 4 4 58187.1893 65006.589 +Q9VKV1 Alpha-mannosidase 25.65 24 42 2 2229790.49707 2696717.9281 +Q9VKV2 Alpha-mannosidase 3.89 4 5 4 50392.0739 63880.6017 +Q9VKV9 Methionine aminopeptidase 17.98 5 7 5 105942.7437 131497.189 +Q9VKW1 LD41958p 1.96 1 1 1 5742.7827 4115.2666 +Q9VKW5 Prolyl endopeptidase 16.01 14 17 14 747650.5174 900561.8901 +Q9VKW8 U6 snRNA-associated Sm-like protein LSm4 18.18 2 5 2 18275.647129999998 22954.3425 +Q9VKX2 Malate dehydrogenase 65.88 22 188 22 19319326.71872 25646617.29486 +Q9VKY3 ATP-dependent Clp protease proteolytic subunit 25.69 6 13 6 1265103.186 1751566.016 +Q9VKZ6 Uncharacterized protein, isoform A 20.99 12 14 1 214529.17609999998 241468.7444 +Q9VKZ8 Ubiquitin carboxyl-terminal hydrolase 34.11 14 33 14 495813.81286 615151.62975 +Q9VL01 Phenoloxidase-activating factor 2 52.96 17 47 17 2216610.82014 3174015.2752 +Q9VL02 GH08677p 19.51 7 7 2 51421.2103 68406.10095000001 +Q9VL10 Acylglycerol kinase, mitochondrial 16.42 7 12 7 229918.4743 332497.25480000005 +Q9VL11 Transcriptional regulatory protein 13.01 3 5 3 95025.4804 118215.2115 +Q9VL16 RE45833p 30.77 7 30 7 2964764.551 3198648.7144 +Q9VL24 Niemann-Pick type C-1a, isoform A 0.62 1 1 0 2014.2456 6439.189 +Q9VL27 Alpha-galactosidase 5.57 2 3 2 18702.5419 21829.5829 +Q9VL50 Translocation protein SEC62 2.89 1 1 0 3562.8997 5401.168 +Q9VL57 RE10231p 2.85 1 1 0 876.96124 1973.9237 +Q9VL66 Enoyl-CoA delta isomerase 1, mitochondrial 6.62 2 2 2 61124.8277 90438.526 +Q9VL67 Enoyl-CoA delta isomerase 1, mitochondrial 19.64 4 10 4 669364.4184 939688.1209999999 +Q9VL68 Enoyl-CoA delta isomerase 1, mitochondrial 28.83 10 34 10 2292002.4844 3876043.3899499997 +Q9VL70 HL08109p 80.9 30 111 30 23575106.6763 31946338.042519998 +Q9VL89 Methionine aminopeptidase 2 9.6 5 5 5 107474.0075 116668.92143 +Q9VL91 LD23102p 1.8 1 1 1 2472.8005 3874.1707 +Q9VL93 GEO07195p1 29.09 3 5 3 49587.7184 48854.8963 +Q9VLB1 Cuticular protein 30B 29.41 4 8 4 104835.3915 131809.376 +Q9VLB7 Rab GDP dissociation inhibitor 59.37 22 61 22 2131785.75277 3138983.62399 +Q9VLC5 aldehyde dehydrogenase (NAD(+)) 57.88 21 95 21 5519477.07011 8710529.16138 +Q9VLG9 Argininosuccinate lyase, isoform B 17.7 7 10 7 170962.6255 203862.56796 +Q9VLI4 Raw, isoform A 4.85 4 5 1 37004.7946 41274.5964 +Q9VLI9 Trafficking protein particle complex subunit 6.39 1 1 1 37314.418 50081.29 +Q9VLM9 Haloacid dehalogenase-like hydrolase domain-containing protein 2 29.41 7 17 7 960235.7566000001 1186576.31937 +Q9VLP0 IP04187p 32.09 5 7 5 203775.308 250691.2893 +Q9VLP1 GEO08095p1 37.84 6 18 6 1133069.8977 1197325.5217000002 +Q9VLP2 GEO08076p1 38.78 6 46 6 1671792.8999 2162126.37853 +Q9VLQ6 Uncharacterized protein, isoform A 21.3 3 6 3 442206.19 713258.9130000001 +Q9VLQ9 Sorting nexin 32.74 16 31 1 1455713.7874099999 1900517.6773299999 +Q9VLR3 Cytidine deaminase 9.49 2 3 2 239232.289 285054.402 +Q9VLS4 Acyl-CoA binding protein 1, isoform A 91.11 8 44 8 5158566.30132 6264884.32385 +Q9VLS5 LD29542p 6.53 3 4 3 15499.164999999999 23588.23284 +Q9VLS7 LD21067p 4.91 7 8 0 89279.46892 112031.26271 +Q9VLT3 LD23292p 15.23 26 42 26 581965.1269 777385.3940699999 +Q9VLT7 IP17351p 24.04 4 7 4 1091826.2259 1070095.8423000001 +Q9VLU3 IP09231p 8.63 2 3 0 33140.95136 38470.9931 +Q9VLV9 Proctolin 46.43 5 7 5 54053.1849 59302.4525 +Q9VLW8 LD06392p 5.79 2 2 2 67694.9867 86172.894 +Q9VLX6 HL01609p 16.49 4 4 0 94681.31049999999 121964.53089999998 +Q9VLY1 HL02931p 19.01 1 9 1 1873774.3232 1757891.8587 +Q9VLY7 TEP1-F 7.49 10 10 10 66986.2698 68237.4768 +Q9VLY9 CD109 antigen 28.88 39 63 2 2228904.4475000002 2859554.7341 +Q9VM07 RE43931p 27.85 5 10 4 219243.44 283183.958 +Q9VM10 Scavenger receptor acting in neural tissue and majority of rhodopsin is absent, isoform A 18.29 10 12 10 382964.8337 416089.626 +Q9VM11 HL01515p 30.55 11 14 11 306933.34092 443349.8689 +Q9VM12 MIP26555p1 25.85 8 19 8 660913.981 815764.201 +Q9VM14 dihydrolipoyllysine-residue acetyltransferase 47.27 31 215 0 22091912.1204 25486846.9364 +Q9VM18 Trehalose 6-phosphate phosphatase 77.9 22 125 22 16316292.17885 20579909.55925 +Q9VM22 MTOR-associated protein MEAK7 5.58 3 3 3 59434.601 75195.0 +Q9VM47 Menin 4.19 3 3 2 22356.1431 21793.1616 +Q9VM50 Ras-related protein Rab-30 25.11 5 15 4 9777.405050000001 12117.0768 +Q9VM58 hydroxymethylglutaryl-CoA lyase 33.44 9 11 9 543258.828 703794.9797 +Q9VM69 Nucleolar protein 58 9.59 4 5 4 215731.12930000003 233930.3633 +Q9VMB3 5'-deoxynucleotidase HDDC2 14.18 5 9 5 611343.8088 823972.7838999999 +Q9VMB4 Venom dipeptidyl peptidase 4 6.1 6 6 0 141149.6416 127153.28700000001 +Q9VMB9 Cytochrome c oxidase subunit 5B, isoform A 43.33 6 88 6 20185626.48682 25677264.03546 +Q9VMC3 LD35051p 17.28 5 6 5 21575.59057 26602.5723 +Q9VMC6 glutaryl-CoA dehydrogenase (ETF) 2.39 1 1 1 76943.12 102262.02 +Q9VMC7 LP11564p 13.92 9 10 3 79638.394 98617.053 +Q9VMD3 peptide chain release factor N(5)-glutamine methyltransferase 22.6 8 17 8 358619.6371 506887.5525 +Q9VME1 FI01864p 11.22 6 8 6 156386.445 208422.2183 +Q9VME3 Neprilysin-like 5 9.36 7 8 7 140271.74850000002 169125.8971 +Q9VMF0 FI04444p 5.9 3 3 3 25206.0726 37913.599 +Q9VMF1 Uncharacterized protein, isoform A 6.47 3 3 3 27919.041 40618.077 +Q9VMH2 Actin-related protein 2/3 complex subunit 4 29.76 5 11 5 358981.377 461716.40589999995 +Q9VMH8 GEO07746p1 38.1 6 19 6 769569.417 961421.5107 +Q9VMH9 Uncharacterized protein 56.57 12 31 12 1702441.6022 1911544.5717 +Q9VMI3 NADH dehydrogenase [ubiquinone] flavoprotein 1, mitochondrial 40.72 15 35 12 1060330.2329 1505238.8366 +Q9VMQ9 Thioredoxin domain-containing protein 17 84.92 12 49 12 13247526.96207 15336415.87847 +Q9VMR0 Mitochondrial import inner membrane translocase subunit Tim21 25.0 6 9 6 301324.1511 313533.04537 +Q9VMR6 Medium-chain acyl-CoA ligase ACSF2, mitochondrial 16.53 10 15 10 382678.8217 559456.2721000001 +Q9VMR9 acylphosphatase 14.85 2 2 2 32658.6486 56209.9677 +Q9VMS1 Cyclope, isoform A 62.34 7 72 7 21193998.5647 22203616.2485 +Q9VMT2 GEO07854p1 60.4 9 123 1 16977017.06828 23466236.42806 +Q9VMU0 NADH dehydrogenase [ubiquinone] iron-sulfur protein 6, mitochondrial 56.35 9 43 9 6755214.4807 9136764.7995 +Q9VMU2 4'-phosphopantetheine phosphatase 22.44 8 13 8 76630.0465 90677.092 +Q9VMV5 Viking, isoform A 9.07 15 21 15 693652.45045 908077.0932 +Q9VMX3 DNA-directed RNA polymerases I and III subunit RPAC1 8.11 2 2 2 2669.4984999999997 3019.4930000000004 +Q9VMX4 AT19154p 29.08 7 13 7 189142.5907 225937.185 +Q9VN01 GH23891p 11.66 7 7 7 55451.4882 70982.268 +Q9VN02 GH14561p 39.46 10 16 10 498531.6823 554287.9222 +Q9VN21 LD30155p 57.06 30 110 30 7594589.72696 9770742.39275 +Q9VN39 RE74585p 24.47 9 13 4 121246.52344 106812.32071 +Q9VN44 FI07923p 23.17 21 40 21 963448.40333 1009592.1185 +Q9VN71 Juvenile hormone binding protein 3, isoform A 41.06 7 13 7 344765.27465 424301.16860000003 +Q9VN73 Juvenile hormone binding protein 1 26.83 7 14 7 497348.3865 572055.0137 +Q9VN77 Geranylgeranyl transferase type-2 subunit alpha 2.52 1 1 1 4296.7114 5162.523 +Q9VN86 AT14148p 9.07 4 4 4 160245.017 209460.789 +Q9VN88 LD45836p 33.18 6 9 6 335137.37924 445623.779 +Q9VNA3 GH21273p 34.26 7 14 7 879174.95337 996588.8569 +Q9VNB9 Large ribosomal subunit protein eL33 26.75 5 14 5 799559.3251 742914.6157 +Q9VNC1 Large ribosomal subunit protein mL44 19.0 6 6 6 182878.41460000002 228102.8555 +Q9VND3 Phosphatidylinositol 4-kinase type 2 5.35 4 4 1 25617.2747 29499.1322 +Q9VND7 RNA-binding protein 42 11.59 3 3 3 11131.554199999999 8727.7421 +Q9VNF3 RE01652p 45.91 11 35 8 1151740.05023 1499446.4548 +Q9VNF5 3-oxoacyl-[acyl-carrier-protein] synthase 18.72 7 7 7 81098.0349 106967.3581 +Q9VNF9 Ethanol sensitive with low memory, isoform A 26.46 5 8 5 226595.9264 242847.53650000002 +Q9VNH5 m7GpppX diphosphatase 21.12 8 9 8 147788.1568 178954.5736 +Q9VNH7 Uncharacterized protein, isoform A 58.63 19 82 0 141081.38 237287.36 +Q9VNI4 Proteasome assembly chaperone 1 34.04 7 10 7 177515.4635 254374.3667 +Q9VNI8 Hpr1 10.84 8 8 8 96782.9805 122886.20430000001 +Q9VNI9 IP18173p 25.11 4 7 4 236396.15659999996 299312.539 +Q9VNL0 Gasp, isoform A 74.42 14 94 2 6265836.29302 8319028.38235 +Q9VNQ3 ER membrane protein complex subunit 4 44.58 6 8 6 96119.213 116838.7314 +Q9VNR6 Lethal (3) 04053 15.21 7 9 7 77546.31670000001 96498.96806 +Q9VNV2 GEO05133p1 15.82 2 3 2 97538.36499999999 116660.708 +Q9VNW0 GEO11142p1 17.97 2 2 2 31964.556 62085.337 +Q9VNW6 Delta-1-pyrroline-5-carboxylate synthase 36.73 25 87 25 8585154.5624 10888432.43641 +Q9VNX4 Multifunctional fusion protein 57.84 34 107 34 9209908.7096 10905291.8396 +Q9VNX9 Matrix-remodeling-associated protein 7 helical domain-containing protein 13.1 3 3 3 34007.398 40101.6213 +Q9VNZ3 DNA-directed RNA polymerases I, II, and III subunit RPABC3 20.13 3 4 3 24491.870199999998 19905.6429 +Q9VP02 Aldose 1-epimerase 3.78 2 2 2 12487.095 6336.964 +Q9VP13 Large ribosomal subunit protein mL64 8.62 2 2 2 4530.3195 5184.5698 +Q9VP18 V-type proton ATPase subunit 28.09 3 5 3 76757.71549999999 121505.2 +Q9VP51 LD40450p 2.79 1 1 0 436.29153 0.0 +Q9VP53 Cuticular protein 78Cc 10.08 1 8 1 259259.1318 289658.17 +Q9VP55 Cuticular protein 78Cb, isoform A 32.14 5 8 5 480346.84270000004 581887.781 +Q9VP57 LD15904p 25.8 20 45 20 1399584.2667399999 1961193.65669 +Q9VP77 LD23875p 10.53 6 6 6 180385.1674 222035.15110000002 +Q9VP78 GH23156p 11.92 4 5 4 54461.1294 56523.4947 +Q9VP84 IP06402p 10.05 2 2 2 54389.537 62428.709 +Q9VP87 Decaprenyl diphosphate synthase subunit 2, isoform A 7.37 3 3 3 8444.1295 10779.718 +Q9VPA7 Protein kinase, cAMP-dependent, regulatory subunit type 1, isoform O 28.73 14 28 0 36439.5693 55342.257 +Q9VPB8 Peroxisomal membrane protein PEX14 22.5 4 4 4 136038.644 120869.565 +Q9VPC2 Coiled-coil-helix-coiled-coil-helix domain-containing protein 7 22.35 2 2 2 44111.1343 46283.399000000005 +Q9VPE2 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 9, mitochondrial 45.67 16 40 16 1341639.807 1572301.0288 +Q9VPF3 4-hydroxyphenylpyruvate dioxygenase 12.11 4 6 2 50453.78683 95352.14913 +Q9VPF6 Large ribosomal subunit protein uL15m 12.24 3 3 3 48513.427 59508.7592 +Q9VPH6 LP10922p 8.04 4 5 0 228568.89500000002 242451.1055 +Q9VPJ0 RE58433p 16.84 6 7 2 200517.7779 268857.52 +Q9VPJ9 Uncharacterized protein, isoform B 4.15 3 3 1 59475.941000000006 69651.476 +Q9VPK3 AT24407p 12.35 5 7 1 158834.25805 150654.71473 +Q9VPL0 U5 small nuclear ribonucleoprotein 40 kDa protein 11.82 4 5 4 55002.2085 62966.0181 +Q9VPN5 Stress-induced-phosphoprotein 1 60.0 29 89 29 6913544.0600000005 8773143.8037 +Q9VPP7 AT13539p 22.7 4 4 4 106125.6 136384.057 +Q9VPR1 GH02075p 15.14 2 5 2 53231.418 4506.945 +Q9VPR5 Splicing factor 3B subunit 1 1.04 1 1 1 1645.6248 2524.025 +Q9VPT9 Integral membrane protein 2 23.51 8 10 0 827635.7042 1147553.0699 +Q9VPU4 FI17537p1 5.33 2 2 2 5919.795700000001 7997.0124 +Q9VPU6 Galectin 5.06 2 2 2 17342.3217 17632.491 +Q9VPX0 GH26159p 6.97 4 4 4 16900.1672 20026.6489 +Q9VPX5 Vacuolar protein sorting-associated protein 29 31.87 6 13 6 545451.1145 745201.3422000001 +Q9VPX6 Adenylyl cyclase-associated protein 41.63 27 77 5 5842545.9408 6704727.5218 +Q9VPX7 Capulet, isoform A 71.46 23 75 1 4353.42217 6605.3665 +Q9VPY7 LD42035p 2.2 1 1 1 7795.463 10046.052 +Q9VPZ5 GH04232p 25.41 14 33 14 730606.69492 811435.82267 +Q9VQ35 Mitochondrial ribosomal protein L48, isoform A 20.44 2 2 2 8694.4277 10371.1587 +Q9VQ61 Aspartate aminotransferase 64.39 26 135 1 13351987.97965 17573889.35376 +Q9VQ83 RE23541p 7.91 3 3 0 22599.797 33040.696 +Q9VQ88 Uncharacterized protein 27.27 3 6 3 305626.7268 366240.228 +Q9VQB4 Trans-1,2-dihydrobenzene-1,2-diol dehydrogenase 56.12 20 63 20 5121624.62097 7105209.43765 +Q9VQD7 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 12 42.25 6 29 6 7153320.529200001 9282011.2517 +Q9VQD8 Actin-related protein 2/3 complex subunit 5 50.99 8 15 8 335604.6177 375257.3531 +Q9VQE0 dynamin GTPase 20.82 15 21 15 364759.0128 494699.295 +Q9VQI5 Interferon-related developmental regulator 1 17.88 7 7 7 61185.2465 70407.02649999999 +Q9VQI6 LD25952p 19.75 7 9 7 165960.6278 184389.802 +Q9VQI7 1-Cys peroxiredoxin 53.6 12 26 12 1029929.3376399999 1286539.8664 +Q9VQJ8 Protein-lysine N-methyltransferase CG9643 16.44 3 3 3 50147.03 82414.342 +Q9VQK7 LD45152p 6.68 5 5 5 140964.472 168587.84530000002 +Q9VQK8 Histidine protein methyltransferase 1 homolog 3.58 1 1 1 3407.0571 4749.8125 +Q9VQL1 serine--tRNA ligase 39.72 18 36 18 1769847.77875 2299270.30925 +Q9VQM0 Toucan, isoform A 0.69 1 1 0 531.4216 0.0 +Q9VQM2 NADH dehydrogenase [ubiquinone] 1 subunit C2 64.66 7 20 7 1523360.86256 2154577.23762 +Q9VQQ6 FI18122p1 35.15 14 21 1 557079.6452 817823.4556 +Q9VQR0 FI04421p 4.49 2 3 2 148291.203 193622.516 +Q9VQR2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 10 76.1 13 61 13 7270318.9758 9711323.85967 +Q9VQR5 IP10807p 19.06 4 6 4 63150.7948 80405.86670000001 +Q9VQR9 PAT complex subunit CCDC47 18.7 9 12 9 333086.0345 432272.167 +Q9VQT7 RH15675p 14.63 1 2 1 6405.885759999999 8165.9145 +Q9VQT8 Immune induced molecule 33, isoform A 47.56 3 15 3 384148.8652 660624.481 +Q9VQV7 Centrosomal protein of 97 kDa 11.41 9 9 5 273307.98228 227212.20598 +Q9VQX3 HL05328p 18.38 6 6 6 166949.6914 182938.4595 +Q9VQZ3 Uncharacterized protein, isoform A 5.46 5 5 5 15152.21284 20058.4692 +Q9VR03 AT19250p 4.57 2 2 2 4210.4946 5690.8022 +Q9VR25 Factor of interpulse interval 19.11 8 11 8 242025.7138 344880.66896 +Q9VR30 RE58324p 25.27 9 9 9 165154.1869 205113.2875 +Q9VR31 Protein farnesyltransferase/geranylgeranyltransferase type-1 subunit alpha 15.11 6 10 6 372375.5399 429428.3503 +Q9VR62 GM14138p 5.53 3 3 3 20028.339 23204.916999999998 +Q9VR69 Chitin deacetylase-like 4 5.76 2 2 2 27284.845699999998 28553.233 +Q9VR79 LD43683p 35.86 11 30 11 1857286.9168 2021211.2844 +Q9VRA1 Uncharacterized protein, isoform B 3.7 2 2 0 8339.3379 11504.440999999999 +Q9VRD4 Uncharacterized protein, isoform A 53.47 10 33 10 1905442.4367 2427147.1665 +Q9VRD6 NTF2-related export protein 60.0 6 12 0 737462.9089 816365.7803 +Q9VRD9 Cystathionine beta-synthase 12.07 6 9 6 64901.280000000006 72386.1038 +Q9VRF7 GH09530p 19.59 5 13 0 547949.5908 694629.3439 +Q9VRG6 Acyl-CoA-binding domain-containing protein 6 13.58 3 6 3 126131.2925 149999.33490000002 +Q9VRG8 Pyridoxal-dependent decarboxylase domain-containing protein 1 15.02 10 15 10 146206.57755000002 190368.03819999998 +Q9VRJ4 Dehydrogenase/reductase 4 50.16 16 41 16 2951963.0421 4037657.4753500004 +Q9VRJ5 Charged multivesicular body protein 2b 32.55 7 12 7 381419.607 414591.8972 +Q9VRJ6 non-specific serine/threonine protein kinase 7.14 2 2 2 48522.403000000006 71105.01000000001 +Q9VRK9 Kinesin-like protein 1.77 1 1 1 9622.204 8110.6655 +Q9VRL0 Cytochrome c1, heme protein, mitochondrial 45.93 15 111 15 25899182.69748 26154355.55818 +Q9VRL1 GEO06356p1 53.1 8 42 2 2821421.0298 3869783.9056 +Q9VRM1 Uncharacterized protein, isoform A 4.04 1 1 1 3988.5571 2791.152 +Q9VRM8 alkaline phosphatase 4.2 2 2 2 3963.34566 3391.9902 +Q9VRM9 alkaline phosphatase 7.74 4 4 4 29947.7956 42386.579 +Q9VRP2 Uncharacterized protein, isoform A 42.71 17 47 17 2454590.56774 3309749.7212 +Q9VRP3 AT08565p 27.53 8 17 8 490479.4209 759842.5846 +Q9VRP4 Bifunctional coenzyme A synthase 14.67 7 9 7 145845.8172 187458.60215 +Q9VRR3 Uncharacterized protein, isoform A 43.98 12 26 12 3723459.146 4387972.5912 +Q9VRU1 Aldose 1-epimerase 15.11 6 7 6 264484.0635 270408.6433 +Q9VRY5 Ribosome maturation protein SBDS 23.81 8 8 8 188466.353 292891.227 +Q9VS02 Serine protease K12H4.7 15.75 8 15 8 413954.0808 518815.1095 +Q9VS11 lysozyme 16.35 4 4 4 148906.613 183954.92909999998 +Q9VS44 Uncharacterized protein 9.82 3 3 3 19997.4138 27728.87902 +Q9VS84 FI03225p 11.14 10 13 10 335571.7959 440405.2656 +Q9VSA9 CG7409 79.87 15 73 15 8996369.73046 12257848.63949 +Q9VSC3 Ribonuclease X25 20.62 8 11 8 227026.97444000002 298038.65885 +Q9VSC5 GM09977p 60.12 14 32 14 1327469.98427 1654409.9815 +Q9VSD6 D-Importin 7/RanBP7 9.34 10 10 10 249386.6597 309116.42829999997 +Q9VSE5 Uncharacterized protein, isoform C 17.88 3 9 1 469695.53170000005 514875.4882 +Q9VSH5 IP09562p 4.89 1 1 1 9226.941 14281.028 +Q9VSH7 Cuticular protein 66Cb 29.63 4 9 3 128323.516 195109.419 +Q9VSI1 LD21269p 7.99 5 5 5 36319.7866 53621.2325 +Q9VSK2 E3 ubiquitin-protein ligase CBL 2.73 2 3 1 12820.054 21880.8194 +Q9VSK4 Adipose-secreted signaling protein 63.33 10 25 10 1173600.8752000001 1956182.1499 +Q9VSL2 Glutathione S transferase O3 41.49 11 32 10 3962290.9356 4651736.4839 +Q9VSL4 Glutathione S transferase O2, isoform B 48.8 15 40 14 4200307.3094999995 5268503.58 +Q9VSL5 Glutathione S transferase O2, isoform A 21.51 5 9 5 198498.169 261512.35809999998 +Q9VSL6 Glutathione S transferase O1 16.93 5 13 4 67781.647 69748.351 +Q9VSL9 Isovaleryl-CoA dehydrogenase, mitochondrial 8.33 4 4 4 34886.5991 33770.5922 +Q9VSM8 TBC1 domain family member 13 3.23 1 1 1 2078.895 802.80493 +Q9VSN0 Z band alternatively spliced PDZ-motif protein 66, isoform G 64.85 12 80 1 1940725.9355 2820007.8062 +Q9VSN3 Cuticular protein 66D 59.63 15 68 15 6541963.99462 5689488.99116 +Q9VSN9 Signal recognition particle receptor subunit beta 15.57 4 5 4 157161.444 152062.18349999998 +Q9VSR5 GM03767p 52.2 8 27 8 3263589.05435 4478382.49341 +Q9VSR8 Amine oxidase domain-containing protein 15.55 8 9 8 230006.246 269838.2807 +Q9VST4 arginine kinase 6.96 3 3 3 11470.75685 15729.2924 +Q9VSU6 Dihydropteridine reductase 76.6 14 55 14 6898203.77188 10389542.04725 +Q9VSW2 UTP--glucose-1-phosphate uridylyltransferase 26.32 14 26 0 1542001.212 2507348.6136 +Q9VSW4 Ribosome-recycling factor, mitochondrial 10.24 3 3 3 250902.71000000002 169630.568 +Q9VSW7 LD21662p 3.33 1 1 1 28131.271 29052.143 +Q9VSX2 IP01061p 40.0 9 17 9 425958.73608 427611.1433 +Q9VSY0 Cuticular protein 67B 61.15 12 67 12 13132706.95519 15122804.98814 +Q9VSY8 Trafficking protein particle complex subunit 31.46 6 13 6 429969.9833 594715.06482 +Q9VT21 Cyclophilin 40, isoform A 4.96 2 2 2 3819.3950000000004 2730.90266 +Q9VT23 Peptidase S1 domain-containing protein 25.48 6 18 6 366528.55817 516491.28927 +Q9VT29 Calcineurin-like phosphoesterase domain-containing protein 4.33 1 2 1 5011.862 7281.6431 +Q9VT33 ribose-phosphate diphosphokinase 31.19 13 30 0 1308694.76397 1522095.5155 +Q9VT59 Ankyrin repeat domain-containing protein 54 5.31 2 2 2 22999.6475 21089.7 +Q9VT61 Ciz1 zinc finger protein, isoform A 4.24 3 3 3 19946.899 23025.481 +Q9VT68 Phosphatidylinositol-4,5-bisphosphate 4-phosphatase 9.52 2 2 0 33699.346 38672.3195 +Q9VT75 N-terminal amino-acid N(alpha)-acetyltransferase NatA 20.92 4 5 4 56990.7108 83481.2886 +Q9VTA8 RE35371p 7.59 2 2 2 7395.792 8816.41144 +Q9VTB0 LD35289p 21.62 8 11 8 237837.5024 402729.0628 +Q9VTB3 Guanylate kinase 51.07 13 30 13 1494750.60836 1994395.7213 +Q9VTB4 NADH dehydrogenase (Ubiquinone) 13 kDa B subunit 60.48 9 35 9 6177389.7362 7184396.2619 +Q9VTC1 ATP-dependent RNA helicase DDX42 10.49 5 6 5 45896.8447 72722.91566 +Q9VTC3 GH07049p 9.72 4 5 4 313549.4703 278430.287 +Q9VTF8 Mitochondrial ribosomal protein L2 3.74 1 3 1 45179.004700000005 60825.762800000004 +Q9VTL0 FI19917p1 7.45 3 3 3 63452.612 87669.14600000001 +Q9VTN9 2-amino-3-ketobutyrate coenzyme A ligase, mitochondrial 6.0 2 3 2 126563.501 142561.209 +Q9VTT2 LD20590p 7.93 4 4 4 77893.199 81390.5428 +Q9VTU2 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 5, mitochondrial 30.65 8 31 8 5162973.6912 7138550.0318 +Q9VTU8 carbonic anhydrase 24.48 8 16 3 502314.6473 642818.1717 +Q9VTV9 Delta-aminolevulinic acid dehydratase 10.09 4 6 4 85359.152 139010.303 +Q9VTW1 RE15265p 11.2 5 5 0 367675.976 433033.047 +Q9VTX5 ADP-ribosylation factor GTPase-activating protein 1 10.9 5 7 0 187656.0944 238939.395 +Q9VTY2 Uncharacterized protein, isoform A 46.69 17 58 16 5446874.273 6467041.265500001 +Q9VTZ4 Phosphoacetylglucosamine mutase 31.33 15 20 15 307218.4705 390211.61389 +Q9VU04 RE60105p 13.85 4 5 4 193226.289 245425.325 +Q9VU13 LD45603p 9.17 4 12 0 835917.6055 880349.8455 +Q9VU34 LD45758p 0.89 1 1 1 4160.5376 2747.1777 +Q9VU35 10 kDa heat shock protein, mitochondrial 72.82 10 80 8 25782776.0514 32006138.1462 +Q9VU36 Large ribosomal subunit protein bL20m 18.0 3 4 3 80047.32 91638.6204 +Q9VU38 Adenosine kinase 35.94 8 13 0 69547.106 90300.48465 +Q9VU45 LD27581p 21.48 5 15 5 1041541.7588 1120427.7057 +Q9VU53 Capricious, isoform A 5.0 3 3 1 16327.730000000001 21809.0342 +Q9VU75 RH45712p 61.73 12 38 12 1265322.3742 1125748.6769 +Q9VU92 Uncharacterized protein 29.76 7 16 7 180102.8139 254693.805 +Q9VUC1 Hsc70Cb, isoform A 52.74 35 100 1 3587927.87183 4407781.04369 +Q9VUE8 Big bang, isoform C 0.64 1 1 0 724.57916 0.0 +Q9VUH8 Survival of motor neuron-related-splicing factor 30 5.14 5 5 5 33189.4628 39622.427780000005 +Q9VUJ1 Proteasome subunit beta 43.75 14 32 12 1680746.9569 2161150.23 +Q9VUL8 Peroxisomal biogenesis factor 3 2.86 1 1 1 1546.7653 488.8199 +Q9VUM1 U4/U6 small nuclear ribonucleoprotein Prp31 14.57 5 6 5 73674.0993 132606.38809999998 +Q9VUM2 Reactive oxygen species modulator 1 31.65 2 4 2 247341.12730000002 312733.555 +Q9VUN9 ubiquitinyl hydrolase 1 21.79 7 8 7 126539.9525 179546.6104 +Q9VUQ7 RE36966p 10.4 6 11 6 75949.70047 111696.59532000001 +Q9VUV6 GXIVsPLA2, isoform A 16.96 4 6 4 62397.39437 85464.5853 +Q9VUW2 Inositol-1-monophosphatase 13.73 2 3 2 2065.7706 1941.6125 +Q9VUW4 Inositol-1-monophosphatase 10.42 2 2 2 16019.4847 25294.1414 +Q9VUX1 Small ribosomal subunit protein mS31 12.5 5 9 5 358504.9999 339273.80049999995 +Q9VUZ0 Translocon-associated protein subunit beta 19.47 2 5 2 452025.95800000004 542948.464 +Q9VUZ8 GEO07442p1 22.56 2 2 2 2327.0364 3000.758 +Q9VV13 GEO08383p1 10.71 1 5 1 289718.1065 417843.8974 +Q9VV31 Uncharacterized protein 19.35 2 5 2 282848.42600000004 393445.282 +Q9VV39 Mitochondrial ribosomal protein S34 35.11 7 12 7 406419.31465 543287.9079 +Q9VV40 Golgin 104 1.42 1 1 1 2451.4402 2907.8167 +Q9VV42 Fat body protein 2 83.09 26 202 0 35437119.1868 50942169.3722 +Q9VV46 Cuticular protein 72Ec 55.94 33 251 33 56505066.5245 66657688.2982 +Q9VV47 Fat body protein 2 45.17 9 18 7 1735802.0598 2528860.0607000003 +Q9VV60 Tyrosine--tRNA ligase 46.29 24 48 24 2037354.36224 2626737.83225 +Q9VV75 AT02348p 82.05 29 251 29 21897811.98994 27999986.77777 +Q9VV76 Syntaxin 8 37.07 6 10 6 206075.0427 322084.24769999995 +Q9VV89 Coatomer subunit zeta 27.01 4 12 0 81206.56207 101545.2691 +Q9VVA7 Tumor suppressor protein 101 19.61 7 9 7 169151.032 173355.66259999998 +Q9VVB5 LD46723p 30.59 16 56 1 15942.1864 17669.9902 +Q9VVB7 FI02842p 43.95 14 57 1 5563.65906 13511.527 +Q9VVC2 Uncharacterized protein 19.7 3 7 3 258033.8798 440988.7183 +Q9VVC3 Cuticular protein 73D, isoform B 46.57 23 57 2 3733867.2147999997 4512372.68535 +Q9VVC8 LD23434p 15.41 8 9 8 155839.8456 224812.9062 +Q9VVG0 Cadherin 74A, isoform A 13.85 22 27 22 635036.1587 739176.6939600001 +Q9VVH5 Cytochrome b-c1 complex subunit 8 44.94 6 37 6 23574433.7134 27463569.9587 +Q9VVJ7 Selenoprotein F 36.52 6 12 6 1165962.40196 1379376.0395 +Q9VVK5 Adenosine deaminase 8.68 4 4 4 53172.047099999996 78009.457 +Q9VVK7 Nucleobindin 1 14.76 9 13 9 556604.7144 803756.7736 +Q9VVL5 FI11325p 14.55 5 7 5 88000.47777 102276.49494 +Q9VVL7 Dihydrolipoyl dehydrogenase 67.06 28 170 28 18370395.63149 23149333.41465 +Q9VVL8 Tryptophan--tRNA ligase, mitochondrial 5.71 3 4 3 55184.8776 82636.0824 +Q9VVM1 Uncharacterized protein, isoform B 4.79 3 3 3 29927.773999999998 38350.5936 +Q9VVP9 Gamma-glutamylcyclotransferase 42.73 8 12 8 207460.7326 237665.70570000002 +Q9VVS6 Ubiquitin-like-conjugating enzyme ATG3 26.06 6 11 6 202311.22344 220156.9883 +Q9VVT6 Glutaredoxin-2, mitochondrial 68.42 7 31 7 3522056.6458 4468520.0808 +Q9VVU1 Short/branched chain specific acyl-CoA dehydrogenase, mitochondrial 52.9 18 71 18 11186375.90087 14523070.2003 +Q9VVU2 GEO07453p1 48.32 9 29 8 3582864.7475 4469904.6147 +Q9VVV6 LD45843p 6.76 5 5 0 153612.0166 181112.2372 +Q9VVW7 Canopy b 16.74 4 9 4 391022.2386 635762.358 +Q9VVX4 Large ribosomal subunit protein bL21m 6.97 2 2 2 12748.149000000001 14854.8395 +Q9VVY7 FI20154p1 10.79 14 19 0 252336.07022000002 317091.15453 +Q9VVZ4 Uncharacterized protein 56.79 4 14 4 138644.24380999999 139615.23869 +Q9VVZ6 GEO09638p1 25.95 2 3 0 10801.457 11910.1319 +Q9VW00 GH28721p 11.46 4 10 4 315585.2048 447585.7134 +Q9VW13 ATP-binding cassette sub-family F member 3 3.95 3 3 3 18158.9433 17700.0181 +Q9VW17 RE58036p 47.25 6 16 1 556095.7426 661496.9255 +Q9VW19 Phenoloxidase-activating factor 2 7.35 2 3 2 14800.90934 14047.896130000001 +Q9VW34 FI03450p 19.96 11 20 11 616374.4988000001 666353.9824 +Q9VW40 LD31235p 9.3 3 3 3 78547.06 104201.898 +Q9VW52 Precursor RNA processing 3, isoform A 4.18 2 2 0 15350.332400000001 16827.8498 +Q9VW54 26S proteasome non-ATPase regulatory subunit 2 7.51 7 8 7 76783.9418 85345.9495 +Q9VW57 Grasp65 12.61 6 9 6 190991.9798 182727.5917 +Q9VW58 LD33138p 35.32 6 11 6 82636.02453 152385.82815999998 +Q9VW59 Rho GDP-dissociation inhibitor 3 48.76 11 31 11 1396362.7339 1554039.8011999999 +Q9VW66 Uncharacterized protein, isoform A 56.45 8 61 4 4433535.7607 6249017.7105 +Q9VW68 (S)-3-amino-2-methylpropionate transaminase 69.34 32 126 32 6752421.3238 8484284.58366 +Q9VW73 Ragulator complex protein LAMTOR1 18.89 4 4 4 39595.985 47158.365000000005 +Q9VW90 Chitin-binding type-2 domain-containing protein 15.72 4 5 4 15688.59953 16135.298700000001 +Q9VWD0 GH23568p 16.89 6 14 6 576289.67144 847959.8543 +Q9VWD1 Cytochrome c oxidase subunit 90.62 12 95 3 16970032.7124 23634712.7877 +Q9VWD5 LD35087p 13.54 5 5 5 40241.7507 53861.75719999999 +Q9VWD9 Ubiquilin-like protein 54.11 19 41 19 1115521.68042 1596039.97009 +Q9VWF0 LP01149p 36.93 9 17 9 108744.2403 146397.2031 +Q9VWG1 LD37169p 71.04 12 73 2 498330.0325 554872.343 +Q9VWI3 28S ribosomal protein S14, mitochondrial 16.41 2 3 2 33364.006 45887.26 +Q9VWJ3 LD05272p 8.22 1 2 1 34449.64 31957.78043 +Q9VWL4 GH07340p 13.41 7 9 7 396137.95999999996 465356.5075 +Q9VWP2 RH57257p 57.02 12 25 12 2521384.7108 3468980.5217999998 +Q9VWQ3 LD35981p 6.96 3 3 0 111434.44399999999 124041.50300000001 +Q9VWQ7 Coactosin-like protein 38.04 7 8 2 140597.69896 134354.1281 +Q9VWS1 Houki 20.44 5 8 5 550282.49782 649447.4527 +Q9VWT1 histidine--tRNA ligase 37.36 19 30 1 1020386.6771 1284677.2478 +Q9VWT3 Gamma-glutamyl transpeptidase, isoform A 6.74 4 5 4 31216.5014 44256.703100000006 +Q9VWU0 FI18411p1 5.87 2 2 2 10460.125 19610.9405 +Q9VWV6 Transferrin 70.05 43 231 43 33109517.0036 43295085.28119 +Q9VWW2 GH13094p 20.52 10 18 10 399513.9323 190420.6227 +Q9VWY5 CHK kinase-like domain-containing protein 8.39 3 4 3 26033.67 35692.727 +Q9VX02 Mitochondrial fission process protein 1 25.0 4 9 4 273872.99700000003 340286.84206 +Q9VX15 Replication factor C subunit 2 7.08 3 3 3 16740.641 18113.4021 +Q9VX26 Chascon, isoform A 1.62 2 2 0 22618.1875 14642.0672 +Q9VX36 NADH dehydrogenase (Ubiquinone) 24 kDa subunit, isoform A 60.74 20 82 20 11091677.5254 14077142.5962 +Q9VX69 FI01450p 18.0 6 23 5 474451.0376 625218.345 +Q9VXA3 LP21163p 17.0 12 21 12 415347.47906 484305.95898 +Q9VXA9 RE04047p 6.57 2 3 2 59312.363 86810.895 +Q9VXC1 MIP06432p1 31.28 5 11 3 764584.1069 1063287.0944 +Q9VXC9 trypsin 52.99 10 17 10 620363.1937 820958.69095 +Q9VXE8 Ubiquitin-conjugating enzyme E2 G2 17.96 3 5 3 131890.1172 182446.8648 +Q9VXF9 AT13091p 26.2 10 17 10 403604.75403999997 523292.0909 +Q9VXG0 Cell division cycle 50, isoform A 14.57 6 8 0 161712.34556 205734.4582 +Q9VXG9 GH25683p 9.78 2 5 2 20363.14734 15417.9072 +Q9VXH4 RE16337p 28.43 2 3 2 336742.631 410935.875 +Q9VXH7 FI17510p1 10.63 3 5 3 330287.5614 407918.28250000003 +Q9VXI1 L-gulonate 3-dehydrogenase 42.54 10 36 10 2526272.6273 3475105.2167 +Q9VXI6 Cytochrome b-c1 complex subunit 7 63.06 10 46 9 13137871.9211 17854126.365199998 +Q9VXJ7 GH03748p1 9.2 9 11 9 80728.4852 110918.3146 +Q9VXK7 Probable NADH dehydrogenase [ubiquinone] iron-sulfur protein 7, mitochondrial 29.41 6 16 5 572821.3855 684332.8373 +Q9VXM4 LD12946p 62.9 13 34 13 2443579.75185 3337870.59075 +Q9VXN1 LD03728p 12.68 4 4 4 27637.033199999998 34915.5282 +Q9VXN3 LD07988p 29.8 10 15 10 317542.1696 371454.0963 +Q9VXP1 RING-type E3 ubiquitin transferase 13.0 2 2 1 20320.0585 24283.0694 +Q9VXP3 GH05406p 8.26 5 5 5 21242.118599999998 17797.17527 +Q9VXQ0 Large ribosomal subunit protein uL3m 8.29 2 2 2 15800.802 19136.579999999998 +Q9VXQ3 Diphosphomevalonate decarboxylase 5.67 2 2 2 16318.871500000001 18598.3083 +Q9VXQ5 Chaperonin containing TCP1 subunit 6 37.34 22 51 22 1593805.9648 1974991.9893 +Q9VXR9 FI03680p 15.76 6 6 6 119068.434 152703.64740000002 +Q9VXV1 RH52220p 4.39 1 1 1 12602.519 10457.11 +Q9VXY3 Dihydrolipoamide acetyltransferase component of pyruvate dehydrogenase complex 24.03 11 18 11 379541.5226 483498.4037 +Q9VXZ0 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 7 30.77 3 28 3 2400736.8905 2435128.31305 +Q9VXZ8 Luciferin 4-monooxygenase 20.6 11 17 11 331344.5153 423209.5655 +Q9VY05 GH11762p 12.84 8 13 8 1205612.2347000001 1776422.5913 +Q9VY16 Uncharacterized protein, isoform A 11.68 8 8 1 140398.393 191544.35199999998 +Q9VY24 Uncharacterized protein, isoform B 17.92 7 8 7 259627.9619 265333.026 +Q9VY27 Nucleoside diphosphate kinase 9.27 1 1 1 2188.7087 2373.4094 +Q9VY33 Defective proboscis extension response 8, isoform A 2.33 1 1 0 13270.032 11928.043 +Q9VY41 Plasminogen receptor (KT) 14.94 3 7 3 180324.3702 221332.0562 +Q9VY42 Tyrosine aminotransferase 9.78 5 5 5 125428.8052 130869.65469999998 +Q9VY76 AMP deaminase 10.25 8 10 0 149820.87904 217607.5581 +Q9VY87 Cathepsin B, isoform A 34.71 9 14 9 436044.9287 507283.09270000004 +Q9VY91 Programmed cell death protein 4 10.22 7 10 7 315763.315 252075.3634 +Q9VY92 GEO07753p1 73.91 8 44 8 10370794.8971 12009845.0036 +Q9VYA1 RE18811p 3.87 1 1 1 8505.707 11511.251 +Q9VYD5 Branched-chain-amino-acid aminotransferase 7.0 2 2 2 22325.6834 19777.52 +Q9VYF0 GM09012p 16.04 4 6 4 74478.4826 94443.4134 +Q9VYG8 CG15717-PA 10.71 3 5 3 49004.1543 50119.542 +Q9VYJ1 FI12805p 5.04 4 4 4 23777.9232 24803.383299999998 +Q9VYK6 Tomosyn, isoform C 2.79 5 5 1 105678.898 161212.0737 +Q9VYM0 CG2555-PA 13.2 2 3 1 9291.0361 6830.42684 +Q9VYN1 protein kinase C 0.84 2 14 1 6229633.47214 6392287.3448 +Q9VYR4 Furrowed, isoform A 0.6 1 1 1 2597.5479 3306.8096 +Q9VYS2 GH09980p 9.97 8 11 8 59334.9064 72765.1991 +Q9VYT0 RE04130p 37.34 9 17 8 315145.89812 383880.5156 +Q9VYT1 BLOC-1-related complex subunit 5 10.03 3 4 3 26723.4996 30140.9503 +Q9VYT3 FI23714p1 5.58 7 7 7 39785.8244 48416.8831 +Q9VYT6 P24-related-1, isoform A 13.33 4 6 4 82973.72099999999 89151.7289 +Q9VYU9 RH17287p 56.97 9 18 9 501398.1936 717790.6305 +Q9VYV4 Amun, isoform A 8.0 3 5 3 288413.68169999996 350828.3787 +Q9VYV6 GEO09033p1 28.07 3 3 3 21202.7677 30493.506999999998 +Q9VZ00 FI19420p1 18.03 16 21 0 249442.96063000002 295045.4633 +Q9VZ19 Antennal dehydrogenase 58.4 9 37 9 392024.82420000003 555937.1404 +Q9VZ20 Dynein light intermediate chain 26.57 12 19 3 458651.6571 624500.4526 +Q9VZ24 GEO11412p1 46.9 8 47 8 7748197.6402 10938337.4833 +Q9VZ25 Uncharacterized protein, isoform A 29.57 2 3 2 29754.7183 46383.459 +Q9VZ34 RH72958p 4.69 2 3 2 17994.9409 23360.4076 +Q9VZ37 Uncharacterized protein, isoform A 31.25 3 3 3 53187.710999999996 57163.03 +Q9VZ58 Purple acid phosphatase 14.22 7 11 7 256341.03 401396.7886 +Q9VZ66 SD22308p 42.86 5 9 5 528334.7616999999 604954.5304 +Q9VZ67 Uncharacterized protein 28.99 2 6 2 153158.9256 176226.46300000002 +Q9VZD9 Peroxisomal membrane protein 34, isoform A 11.46 3 3 3 61022.337499999994 68633.47020000001 +Q9VZE4 RE70333p 20.43 10 14 10 290753.3804 387804.5602 +Q9VZE9 V-type proton ATPase subunit 21.18 3 8 3 737084.5766 940622.186 +Q9VZF6 Sulfide:quinone oxidoreductase, mitochondrial 8.75 3 3 3 65276.045699999995 110779.619 +Q9VZF9 Cuticular protein 64Ad 36.84 7 39 7 1444042.3109 1611326.6051399999 +Q9VZG0 Cuticular protein 64Ac 56.91 10 50 10 3897503.78904 4721752.663 +Q9VZG1 Cuticular protein 64Ab 42.5 4 11 4 527395.3746 601692.796 +Q9VZG2 Cuticular protein 64Aa 76.04 11 55 11 6339816.12008 6731465.84046 +Q9VZH5 CLIP domain-containing serine protease 4.31 3 3 0 29841.65 37709.198000000004 +Q9VZI1 Transgelin 68.09 12 84 1 11894582.123 15292799.2739 +Q9VZI8 Fumarylacetoacetase 7.43 3 3 3 88592.569 125557.14 +Q9VZJ2 GH27759p 14.19 6 10 6 441879.2363 580797.3112 +Q9VZJ8 FGGY carbohydrate kinase domain-containing protein 6.02 3 4 3 52552.6012 62952.174 +Q9VZL1 Mitochondrial import receptor subunit TOM22 homolog 75.0 11 26 2 442356.89585000003 423267.38884 +Q9VZL3 very-long-chain enoyl-CoA reductase 10.6 4 5 4 88420.2515 104048.8161 +Q9VZS1 protein-serine/threonine phosphatase 15.36 5 5 4 80536.19834999999 102944.51449999999 +Q9VZU7 Ubiquitin carboxyl-terminal hydrolase 8.95 8 10 8 339887.1736 379457.4533 +Q9VZV2 Chitinase 7 4.64 5 6 5 41228.852399999996 58228.1935 +Q9VZW1 Phospholipid scramblase 11.03 3 5 3 57616.184 66945.5526 +Q9VZW7 Carnitine palmitoyltransferase 2 8.1 5 5 5 65423.7372 79181.22 +Q9VZX6 LD06441p 21.78 7 9 7 305280.0311 392554.2243 +Q9VZY0 LD45195p 11.48 3 4 3 469517.32899999997 602425.158 +Q9VZY9 Probable proline--tRNA ligase, mitochondrial 4.59 2 2 1 5909.7543 5669.232 +Q9VZZ5 GEO12033p1 34.27 6 8 6 1082202.6273 1193345.3983999998 +Q9VZZ6 CG16985 protein 38.26 5 11 5 703256.67516 1220970.6347 +Q9W022 GEO01508p1 62.68 8 41 8 10836063.9414 11661661.5644 +Q9W073 RH22148p 19.41 3 3 3 45769.6282 55619.3384 +Q9W077 Cuticular protein 62Bc, isoform A 32.78 4 25 4 6413572.81444 7737860.91046 +Q9W078 Cuticular protein 62Bb, isoform A 32.99 4 14 3 2150224.0387 2182125.481 +Q9W086 Large ribosomal subunit protein mL46 28.29 9 11 9 362098.9342 384370.81827 +Q9W087 U6 snRNA-associated Sm-like protein LSm8 42.11 4 7 3 260257.7122 317123.3114 +Q9W0A8 FI01658p 25.63 7 26 7 1092505.5554 1136781.3892 +Q9W0B3 Vacuolar protein sorting-associated protein VTA1 homolog 28.16 10 25 10 1525062.3494 1986430.9697 +Q9W0C3 GH11843p 38.78 11 19 11 592592.3782 621978.71496 +Q9W0D3 GH15728p 1.29 2 2 2 10666.143 5338.1386 +Q9W0D9 choline-phosphate cytidylyltransferase 11.55 5 6 2 41305.85 56269.832 +Q9W0G4 hydroxymethylbilane synthase 9.05 4 4 4 50059.98683 119817.86529999999 +Q9W0H6 Acetyl-CoA acetyltransferase 2 40.56 12 24 12 803260.274 1121505.4385 +Q9W0H8 Reticulocalbin-3 58.66 17 30 6 1159710.667 1785756.0962 +Q9W0H9 Rabaptin-5-associated exchange factor for Rab5 8.62 5 5 5 61478.28175 82176.9662 +Q9W0J9 GH07301p 34.47 8 12 7 139522.9997 194293.374 +Q9W0K9 LD10220p 23.21 4 4 4 27233.8007 28076.7744 +Q9W0L7 ubiquitinyl hydrolase 1 2.18 3 3 1 8978.3778 16720.7872 +Q9W0M4 Endoplasmic reticulum transmembrane protein 29.39 10 14 9 419650.91005 611997.3907 +Q9W0M5 Protein DPCD 14.41 3 3 3 11786.46936 13158.346 +Q9W0N6 LD27967p 9.57 3 3 3 48442.5733 62888.05677 +Q9W0P4 GEO05053p1 8.13 1 1 1 38934.188 60111.246 +Q9W0Q2 Peptidyl-prolyl cis-trans isomerase 18.18 3 5 3 27833.1961 27767.593699999998 +Q9W0Q3 BLOC-1 related complex subunit 6, isoform A 3.64 1 1 1 31576.533 40014.1 +Q9W0R0 Cell division cycle 5, isoform A 18.06 13 19 13 493110.9805 566881.813 +Q9W0S6 Large ribosomal subunit protein bL17m 22.73 4 4 4 46710.5423 55102.7448 +Q9W0U0 glycerol kinase 3.9 2 2 0 56514.477 69905.949 +Q9W0X0 Scavenger receptor class B member 1 14.7 8 12 0 196010.1254 277590.15339999995 +Q9W0X1 GH15894p 6.31 3 3 3 90943.9748 118445.1943 +Q9W0X2 GEO07322p1 28.1 3 4 3 169619.23 247479.42699999997 +Q9W0X3 LD24657p 22.81 4 4 1 94270.0886 134471.209 +Q9W0Z5 LP09747p 22.95 9 13 9 530737.6083 716744.3319 +Q9W114 IP05433p 28.33 3 4 3 67739.065 102118.61354 +Q9W125 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 8 81.14 13 55 13 7817009.9352 9861579.3253 +Q9W127 Isochorismatase domain-containing protein 1 34.62 6 19 6 1280139.8679 1633556.791 +Q9W136 Uncharacterized protein 19.81 4 18 4 731301.6106 877535.2042 +Q9W140 Regulatory protein zeste 3.53 2 3 2 110433.391 139323.154 +Q9W147 RNA polymerase II subunit A C-terminal domain phosphatase 6.25 4 6 4 63661.1595 70865.5884 +Q9W158 LD36772p 14.33 5 7 5 299455.75800000003 453839.59699999995 +Q9W199 GEO07594p1 21.29 4 5 4 419025.9685 560710.907 +Q9W1B9 Large ribosomal subunit protein uL11 55.15 9 32 9 5917670.3584 7202282.5487 +Q9W1C8 LD24355p 19.02 8 8 8 137371.412 151819.23369999998 +Q9W1E8 Adaptor protein complex AP-3 small chain sigma3 12.04 3 5 3 80078.3622 93754.801 +Q9W1F2 FI07217p 5.93 2 3 2 13120.84012 11106.201700000001 +Q9W1F7 IP15825p 34.97 12 28 12 1623766.33427 2193336.0945800003 +Q9W1F8 GEO08248p1 23.31 4 8 4 492672.554 670190.409 +Q9W1G7 LD21576p 34.32 13 22 13 687682.6186 820132.33813 +Q9W1H5 Decapping protein 1, isoform A 22.85 7 11 7 246326.99349999998 291132.0836 +Q9W1H6 GH04238p 13.85 3 9 3 342907.889 400117.56518000003 +Q9W1H8 acetyl-CoA C-acyltransferase 33.48 15 51 15 3815561.31475 5030404.0743 +Q9W1I8 LD03592p 39.08 9 25 9 643322.87365 817287.25536 +Q9W1L1 Large ribosomal subunit protein mL43 27.6 4 6 4 53717.4375 79274.88945 +Q9W1L8 GH11818p 2.66 1 1 1 12280.765 19543.258 +Q9W1M9 Exosome complex component RRP4 15.77 5 6 5 48649.49197 59877.5927 +Q9W1N3 Levy, isoform A 23.85 3 17 3 4252695.746 5234421.046 +Q9W1N4 Serine-threonine kinase receptor-associated protein 5.79 2 2 2 3072.0215 4080.702 +Q9W1R0 RH49821p 4.13 2 2 2 33065.1582 13387.876 +Q9W1R3 Golgin-245 12.09 17 20 17 418886.03594 498683.65726999997 +Q9W1V8 CG9893 protein 39.58 8 16 8 612014.3049 610916.6869999999 +Q9W1W4 RE45066p 18.58 6 11 6 430814.3763 486638.9905 +Q9W1X5 GH04942p 20.82 28 39 4 1126367.50606 1629034.61149 +Q9W227 Peptidyl-prolyl cis-trans isomerase 61.46 13 82 13 14258559.59861 17973485.53545 +Q9W229 40S ribosomal protein S24 31.3 4 17 4 542785.49517 864169.16896 +Q9W236 Vacuolar protein sorting 20, isoform A 37.74 8 12 8 395734.6825 523506.073 +Q9W253 Small ribosomal subunit protein mS29 14.8 6 8 6 75155.2202 104854.92420000001 +Q9W254 Quaking related 58E-2, isoform A 22.36 12 25 11 768339.46112 959154.9091 +Q9W257 RH13652p 6.99 2 4 2 208297.25900000002 191919.293 +Q9W258 Babos, isoform A 33.67 7 13 7 1363641.6354999999 1510562.0860000001 +Q9W259 FI23916p1 8.95 4 5 4 108591.70559999999 114465.9116 +Q9W260 GH03113p 15.4 8 12 8 347920.0046 347435.26073 +Q9W287 Cuticle protein 16.5-like 27.19 4 5 4 72595.01130000001 90573.0523 +Q9W289 Golgi matrix protein 130 kD 25.91 18 29 18 474356.75334 535333.12715 +Q9W298 Sugar phosphate phosphatase 6.69 3 3 3 10259.991 14647.6014 +Q9W299 Sugar phosphate phosphatase 6.65 3 4 3 83803.11570000001 117126.8305 +Q9W2E8 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 3 31.82 3 18 3 2132905.037 2703885.555 +Q9W2I2 Queuosine 5'-phosphate N-glycosylase/hydrolase 5.25 2 2 2 21050.433 30740.490400000002 +Q9W2J4 UDP-glucuronosyltransferase 5.45 3 3 3 95345.783 106531.706 +Q9W2J5 Uncharacterized protein, isoform A 32.11 11 15 1 244081.2535 356682.7537 +Q9W2K2 U6 snRNA-associated Sm-like protein LSm1 24.09 3 4 3 111400.50200000001 165558.3253 +Q9W2L6 RH02475p 33.73 20 58 20 3680593.36097 4750172.0098 +Q9W2M0 LD23155p 22.1 15 17 15 416622.29155 569136.4839999999 +Q9W2M4 Farnesoic acid O-methyl transferase domain-containing protein 44.93 11 54 11 10103306.85855 13642596.70984 +Q9W2M9 FI16623p1 14.71 2 2 2 231650.6574 388439.654 +Q9W2P5 U6 snRNA-associated Sm-like protein LSm6 24.05 2 3 2 2414.39968 3036.17326 +Q9W2S2 Autophagy-related 8a, isoform A 15.7 4 5 1 322833.012 421830.75549999997 +Q9W2U8 Neb-cGP, isoform A 45.83 2 21 2 1418313.355 1841565.3590000002 +Q9W2V2 FI20035p1 5.6 3 3 3 4944.4692 7642.713750000001 +Q9W2X6 ATP synthase F(1) complex subunit delta, mitochondrial 77.07 11 103 11 40850025.73058 50106250.55187 +Q9W2Z7 Uncharacterized protein, isoform B 25.55 9 23 0 488218.545 589378.35805 +Q9W2Z9 RE65233p 4.81 1 2 1 47107.577 64987.606999999996 +Q9W306 GEO08256p1 25.62 3 4 3 7474.002770000001 15161.80437 +Q9W308 GH05731p 16.18 2 5 2 410819.37499999994 525059.824 +Q9W309 GEO08445p1 33.95 7 11 7 1771129.343 1405352.841 +Q9W314 GH14088p 9.82 4 5 4 101771.8224 137118.703 +Q9W329 Golgi-localized, gamma-adaptin ear containing, ARF binding protein 11.97 8 9 8 179120.1465 214292.52649999998 +Q9W330 Phosphotransferase 29.76 15 32 2 1494049.40526 2051356.27478 +Q9W335 Translocon-associated protein subunit alpha 4.97 1 2 1 39110.4251 49598.2614 +Q9W337 GH19985p 44.95 7 14 7 1257628.7085 1810896.8351 +Q9W370 GEO12084p1 38.52 4 10 4 184026.4405 205577.10770000002 +Q9W373 SET and MYND domain containing, arthropod-specific, member 9, isoform A 3.4 2 2 2 8734.688 14399.685 +Q9W374 Dihydropyrimidine dehydrogenase [NADP(+)] 3.98 3 3 3 19981.639 23423.217 +Q9W392 T-complex protein 1 subunit beta 41.5 19 37 19 1042528.58805 1398667.1503 +Q9W396 FI06908p 14.17 4 7 4 337706.9531 402291.0693 +Q9W3B3 Uroporphyrinogen-III synthase 14.08 4 5 4 99689.5093 99136.4822 +Q9W3C3 LD10016p 12.94 6 8 6 425698.3722 543136.90614 +Q9W3C4 beta-N-acetylhexosaminidase 6.43 4 4 4 116380.02 99779.989 +Q9W3F6 Bleomycin hydrolase 19.26 8 15 1 614578.3145399999 687920.2843 +Q9W3G8 pyridoxal 5'-phosphate synthase 13.62 3 4 3 132638.63999999998 223783.3983 +Q9W3H4 LD36273p 66.8 13 29 13 1515694.2825 2202419.199 +Q9W3J1 G protein beta subunit 5 20.11 5 9 5 134431.42935 170852.42856 +Q9W3J6 FI06457p 8.64 3 4 3 30780.1604 48197.007 +Q9W3K6 LD35927p 4.99 4 5 4 90435.0716 125624.648 +Q9W3K9 Short-chain dehydrogenase/reductase 3 32.5 11 26 11 870394.0547 1126764.5367 +Q9W3L4 GH20802p 35.02 10 23 10 1832171.7654 2679939.3996 +Q9W3M7 RNA helicase 14.07 10 15 9 59191.41188 70608.7466 +Q9W3M8 LD34211p 47.74 8 17 8 538422.33523 739822.0769 +Q9W3N1 RH59310p 7.17 2 2 2 5950.919 10170.83227 +Q9W3N7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 1 37.5 3 10 2 1398081.1677 1530763.902 +Q9W3N9 Acetyl-CoA acetyltransferase 1, isoform A 43.41 16 40 16 2285564.58284 3169600.24167 +Q9W3Q0 FI07418p 23.39 5 14 4 32199.427799999998 39447.5384 +Q9W3Q1 GM14286p 8.84 3 3 3 18687.626 25102.3897 +Q9W3R8 sn-1-specific diacylglycerol lipase ABHD11 26.3 9 13 9 312950.3372 460878.5894 +Q9W3S3 LP10445p 15.68 2 3 2 13357.7088 11826.5331 +Q9W3T2 Coiled-coil domain-containing protein 25 22.49 5 7 5 149822.95586 203045.9935 +Q9W3T9 GM01152p 45.38 9 16 9 750135.3588 1001655.1664 +Q9W3U9 CG14434-PA 32.62 6 13 0 233508.17607 268380.7129 +Q9W3V2 FI19713p1 4.82 4 4 4 36415.061 41473.350999999995 +Q9W3V3 E3 ubiquitin-protein ligase ZNRF1 8.25 2 3 2 107041.9418 19918.5935 +Q9W3W4 5-demethoxyubiquinone hydroxylase, mitochondrial 11.87 3 4 3 37928.1126 157336.1487 +Q9W3X7 NADH dehydrogenase [ubiquinone] 1 beta subcomplex subunit 8, mitochondrial 56.57 10 60 10 9088579.4454 10386607.0981 +Q9W3X8 RH42690p 10.73 4 5 4 42624.87707 43774.581 +Q9W3Y3 Calcyclin-binding protein 47.83 11 20 11 591061.1205 819069.36675 +Q9W3Z4 GH18625p 3.75 1 1 1 980.1285 4072.4915 +Q9W402 NADH dehydrogenase [ubiquinone] 1 alpha subcomplex subunit 13 59.74 12 55 12 4065743.82329 5641847.357 +Q9W403 LD24968p 9.21 5 7 5 117731.1375 125164.05765 +Q9W404 GH10714p 31.03 9 12 8 166725.3133 189876.83213000002 +Q9W411 Uncharacterized protein, isoform A 9.4 2 3 2 45730.443 57981.8917 +Q9W414 Regulatory particle triple-A ATPase 4 34.01 13 26 8 585123.928 765977.9867 +Q9W425 Rabconnectin-3A 1.34 5 5 5 28659.264240000004 31042.075230000002 +Q9W457 Serine hydroxymethyltransferase 36.69 23 69 0 3959358.4777 4857574.7957 +Q9W461 LD23868p 18.22 7 8 7 101739.94183 152114.8993 +Q9W482 Lin-52, isoform A 33.12 4 11 4 119744.12530000001 165767.7953 +Q9W483 GH18971p 5.79 2 3 2 43913.825500000006 49214.222 +Q9W486 LD13361p 5.27 3 3 0 28424.3534 38800.295 +Q9W499 Large ribosomal subunit protein uL29 17.89 3 6 3 294439.331 413537.283 +Q9W4A0 GH11193p 19.8 4 5 4 187749.059 256258.276 +Q9W4A6 Otopetrin-like a, isoform A 9.28 7 8 3 209252.6661 245837.2181 +Q9W4C2 lysozyme 17.11 3 3 3 91524.553 138657.414 +Q9W4I3 Large ribosomal subunit protein uL30m 40.56 8 10 8 290857.3825 326984.0536 +Q9W4J7 Uncharacterized protein 13.82 4 5 4 21866.3211 23260.3808 +Q9W4K0 CHOp24, isoform A 42.79 8 31 8 1568953.9146 2305745.57054 +Q9W4N8 LD30122p 55.76 15 77 0 8308269.79529 9672232.78267 +Q9W4U2 RH09070p 41.37 8 24 8 1589774.89504 1972903.36354 +Q9W4W4 RING-type E3 ubiquitin transferase 3.04 2 2 2 9590.8985 15293.3953 +Q9W4W5 RE47284p 11.15 4 4 4 153210.9903 187656.279 +Q9W4W8 Paraplegin, isoform A 18.07 15 21 15 300488.60464 324882.35187 +Q9W4Y1 aralkylamine N-acetyltransferase 32.46 7 13 7 485992.8342 643685.9349999999 +Q9W4Z1 EG:BACH48C10.5 protein 2.59 2 2 0 37718.737 39670.762 +Q9W4Z2 Large ribosomal subunit protein uL14m 21.74 3 3 3 13489.865849999998 13123.1274 +Q9W503 RH61816p 38.61 11 14 11 415119.9549 534099.792 +Q9W5B4 GH18858p 31.97 10 21 10 1152036.87776 1386545.6893 +Q9W5B5 Gamma-butyrobetaine dioxygenase 6.4 2 2 2 35289.135 34134.3635 +Q9W5E2 EG:115C2.8 protein 7.35 2 3 2 13342.5719 17741.0586 +Q9W5G7 EG:BACR37P7.8 protein 7.84 2 5 0 67631.0958 108036.5345 +Q9W5R5 Sarcolemmal membrane-associated protein 5.8 5 6 5 117514.53099999999 160863.616 +Q9W5W7 GH19483p 2.57 2 3 2 18510.467 19186.928499999998 +Q9W5W8 Delta(3,5)-Delta(2,4)-dienoyl-CoA isomerase, mitochondrial 41.35 12 40 12 4394043.31063 5341831.6126 +Q9W5X0 LD21953p 26.87 6 25 1 124063.484 151833.7 +Q9XTL2 Jak pathway signal transduction adaptor molecule 9.58 6 10 6 271514.8936 323404.696 +Q9XYW6 E3 ubiquitin-protein ligase CHIP 35.29 9 12 9 105369.0822 172181.8716 +Q9XYZ9 Glutathione S transferase E12, isoform A 40.36 10 52 10 7711636.73021 9145980.4785 +Q9XZ19 Uncharacterized protein 20.24 5 7 5 86252.14097000001 140757.22156 +Q9XZ61 Ubiquitin carboxyl-terminal hydrolase 26.23 10 18 10 629183.0919 885717.8252 +Q9Y0Y5 Coatomer subunit epsilon 19.28 7 15 7 654915.429 735085.4815 +Q9Y112 BcDNA.GH10614 70.25 24 101 21 7304323.71019 9074526.70566 +Q9Y114 UBX domain-containing protein 4 35.21 22 29 22 557533.57675 677092.26438 +Q9Y119 BcDNA.GH08860 23.49 18 22 18 1182836.34443 1488627.4663 +Q9Y125 BcDNA.GH08312 31.27 32 108 2 14832840.08202 17674093.517950002 +Q9Y128 Ceramide transfer protein 5.66 4 4 2 18738.8897 21018.063739999998 +Q9Y136 Neprilysin-like 21 8.63 6 7 4 34563.8019 58521.728 +Q9Y143 BcDNA.GH05536 50.38 11 45 11 2524678.96124 3034476.3339 +Q9Y156 BcDNA.GH02976 31.45 9 14 9 201453.6375 345788.9105 +Q9Y162 vesicle-fusing ATPase 31.67 18 43 18 3055242.79527 3569848.13054 +Q9Y164 BcDNA.GH02439 54.35 18 81 0 6698589.77698 7366715.62443 +Q9Y165 E2 ubiquitin-conjugating enzyme 4.89 2 2 2 2993.1626 4067.4966 +Q9Y171 BcDNA.GH02220 4.54 2 4 2 140702.9148 181993.0479 +R9PY51 Uncharacterized protein 34.95 6 48 6 6420953.8151 8271572.3917 +X2J4C1 Synaptotagmin 1, isoform I 47.46 24 115 1 16579724.57186 19366695.3736 +X2J516 Trifunctional purine biosynthetic protein adenosine-3 5.99 9 12 0 242700.0281 303444.9499 +X2J979 Synaptotagmin 1, isoform H 48.2 24 114 1 398571.8687 489948.218 +X2JAT7 Fasciclin 3, isoform G 15.08 7 20 1 117927.5614 175369.99200000003 +X2JAZ3 mitogen-activated protein kinase kinase 17.3 7 7 1 114548.0695 203808.782 +X2JB48 ADP/ATP translocase 56.86 20 109 1 28781811.5192 32407946.3625 +X2JCY4 Stoned B, isoform H 21.51 19 33 1 615697.72272 781473.848 +X2JDJ5 Multiple edematous wings, isoform F 6.52 8 9 1 97300.37914 91141.64227 +X2JDM7 Guanine nucleotide-binding protein subunit gamma 25.63 13 141 0 30765376.5474 47468500.0852 +X2JEN5 Uncharacterized protein, isoform H 20.96 4 7 1 18410.516 27468.633 +X2JKC1 Lipid storage droplet-2, isoform E 46.87 14 29 0 19853.186 22277.054 +O46043 Poly(ADP-ribose) glycohydrolase 4.98 3 3 3 32567.172 20349.20846 +O76932 Serine/threonine-protein phosphatase 4 catalytic subunit 2.28 1 1 0 23391.428 61526.11 +P10674 Fasciclin-1 49.69 30 164 1 3054.6194 1009.6581 +P32865 G protein-coupled receptor kinase 1 1.43 1 1 0 4348.253 6642.3594 +Q08605 Transcription activator GAGA 1.2 1 1 0 44846.855 38117.504 +Q9V3H8 NTF2-related export protein 10.53 2 2 1 10705.749 10612.164 +Q9V770 Probable cytochrome P450 6a17 4.19 2 2 0 1563.6512 3029.6543 +Q9VES1 ADP-ribosylation factor-like protein 6-interacting protein 1 8.12 3 3 0 130841.432 116430.3095 +Q9VK68 PITH domain-containing protein CG6153 12.32 3 3 0 64496.209 65699.14199999999 +Q9VPD2 Cytosolic Fe-S cluster assembly factor Nubp2 homolog 3.46 1 1 1 7812.615 6398.307 +Q9VVW5 Dual specificity protein phosphatase Mpk3 1.95 1 1 0 3959.3765 2286.238 +Q9VWS2 Nucleoporin Nup35 6.95 3 3 3 21571.172 25402.9133 +Q9W568 Protein halfway 3.11 1 1 0 1919.9635 1901.7628 +Q9XZT1 Mediator of RNA polymerase II transcription subunit 18 4.61 1 1 1 4124.3115 4887.283 +A0A0B4JD15 Guanine nucleotide-binding protein subunit alpha 11.38 4 6 0 4047.483 3697.5544 +A0A0B4K7U4 Muscleblind, isoform H 5.68 5 8 0 91273.65639999999 124811.8291 +A0A0B4KFE3 Toutatis, isoform F 0.26 1 1 0 4453.2827 1871.5552 +A0A0B4KGN2 MICOS complex subunit MIC60 52.14 42 115 1 28086.32 37361.297 +A0ACD4DAB9 Bruchpilot, isoform R 54.49 113 340 0 106850.85 127873.91 +A1Z7M0 Space blanket 2.86 1 1 1 19732.727 19972.715 +A1ZA97 Carboxylic ester hydrolase 3.58 2 2 2 18629.8281 23684.988 +A8JNQ4 RNA-binding Fox protein 1, isoform I 6.41 4 6 0 217470.306 275071.4214 +E1JHJ9 Cytoplasmic linker protein 190, isoform M 34.29 53 96 1 17104.086 24922.688 +E1JIR4 Sodium/potassium-transporting ATPase subunit alpha 46.51 44 150 1 8999.0494 15361.437 +E1JJM0 FI20063p1 22.76 13 20 0 336725.29835 385982.21939000004 +E2QCF1 ATP-citrate synthase 11.14 11 15 1 4349.9375 4691.373 +E2QD26 Phosphopantothenoylcysteine synthetase, isoform C 4.83 2 2 0 14107.345 13983.617 +F0JAG6 Alpha-actinin, sarcomeric 57.75 51 192 1 10653.322 11818.739 +M9PEX2 Uncharacterized protein, isoform D 33.89 13 38 1 15411.959 12312.931 +M9PHI0 Hyperkinetic, isoform M 1.69 1 2 0 13069.5945 15214.103799999999 +Q0E8R1 FI07211p 34.57 13 35 0 240947.59 292380.53599999996 +Q6NLA3 V-type proton ATPase subunit a 9.15 7 10 0 173473.2775 207923.423 +Q7JWH6 RE61424p 5.65 2 2 2 7464.5474 10021.139 +Q7JXA2 LOBE 5.52 2 2 2 5458.8574 5247.7007 +Q7K1Q7 Ribosome assembly factor mrt4 5.86 2 3 2 152949.9886 157580.812 +Q7K1W4 Epoxide hydrolase 1.71 1 1 1 1694.507 2140.9521 +Q7KVW1 RE73736p 2.8 2 2 0 39026.049 46838.104 +Q7PLV6 FI02158p 0.85 1 2 1 2465.5325 2451.7174999999997 +Q8I062 GH23305p 83.33 21 152 1 39112.4 291967.5 +Q8I937 Ribosome biogenesis regulatory protein 5.16 2 2 2 30041.732799999998 41277.45 +Q8IPG9 Basigin, isoform A 48.68 14 69 1 4188.5796 9596.419 +Q8IRB4 Tumor protein p53 inducible nuclear protein, isoform C 6.59 2 2 0 12041.9964 11110.5522 +Q8MPN6 Serpin 4 27.18 9 11 0 9810.124 13851.385 +Q9I7N2 Nucleoporin NUP42 4.02 2 3 0 45203.7771 45489.7456 +Q9V3T2 Mitochondrial 2-oxodicarboxylate carrier 3.59 1 1 1 8349.661 6336.834 +Q9VCS2 Short-chain dehydrogenase/reductase 3 9.35 3 3 3 16808.8216 22329.17 +Q9VKC1 IP16805p 4.28 1 1 1 13837.773 15043.585 +Q9VM94 Homer, isoform B 49.62 17 57 1 16096.131 20171.19 +Q9VPY2 Phospholipase A2 activator protein, isoform A 1.14 1 1 1 31589.52 37628.67 +Q9VRT7 U6 snRNA-associated Sm-like protein LSm5 46.15 2 4 2 117353.44840000001 142606.2096 +Q9VSE8 UDP-glucuronic acid decarboxylase 1 2.04 1 1 1 31751.752 52600.29 +Q9VTE1 Immediate early response 3-interacting protein 1 26.25 2 2 2 32477.406000000003 30145.380999999998 +Q9VTW6 U6 snRNA-associated Sm-like protein LSm2 23.16 3 4 3 241026.9054 329080.3384 +Q9VTY1 LD40136p 5.69 2 2 2 29022.5064 43105.0153 +Q9VVU6 Pre-mRNA-processing factor 6 1.29 1 1 1 2099.374 6107.3115 +Q9VY48 Large ribosomal subunit protein mL38 7.21 3 3 3 11167.386129999999 12573.848999999998 +Q9W2N5 GH10162p 3.47 2 2 2 37226.2953 37938.873600000006 +Q9W362 La-related protein 7 1.85 1 1 1 1662.9598 2382.1877 +Q9W525 LD08195p 3.8 2 2 1 30125.173 39933.252 +P0C919 Molybdopterin synthase sulfur carrier subunit 23.33 2 2 2 28297.9544 29082.214 +Q9XYN7 Proteasome subunit beta type-3 15.12 3 3 3 32849.987 29345.11 +A0A0B4KGW5 Uncharacterized protein, isoform C 19.15 1 2 0 9909.5393 14508.8298 +A0A0B4LHR2 Uncharacterized protein, isoform F 10.18 6 6 0 23728.527 17115.547 +A0A6M3Q6Z1 Stambha A, isoform F 2.05 2 2 0 31439.225000000002 32520.8992 +A8E6R2 Alanine--glyoxylate aminotransferase 2, mitochondrial 3.09 2 2 0 17344.8667 21637.369599999998 +B7YZX9 Uncharacterized protein, isoform B 19.17 3 4 1 56823.126399999994 87213.926 +E1JJ83 Os-C, isoform B 16.34 2 2 1 649.5719 0.0 +M9MRG5 Taiman, isoform F 0.94 2 2 0 47940.091 35593.762 +M9PCB7 Trailer hitch, isoform G 33.75 14 27 0 255537.23072 318608.70797 +M9PG97 Female sterile (2) ltoPP43, isoform C 7.63 2 2 0 13519.261 12274.173 +O46231 FI18705p1 65.94 22 77 1 134341.52 146450.22 +Q6IDE2 GH07226p 2.0 1 1 1 12218.469 17974.922 +Q7JVH0 Splicing factor YJU2 4.8 1 1 1 5678.7334 5826.0044 +Q7JVK1 Large ribosomal subunit protein uL18m 11.83 2 2 2 7111.6152999999995 11206.821800000002 +Q7K527 Tetraspanin 4.61 1 1 1 5601.1685 6174.0103 +Q7KUV4 Uncharacterized protein, isoform A 16.67 1 1 1 400080.1 458097.16 +Q8IQ80 GH06117p 2.97 2 2 0 123966.037 171086.9706 +Q9VCT6 Uncharacterized protein 2.58 1 3 1 65776.0187 54702.54913 +Q9VHW5 LD38634p 17.32 2 3 2 29719.009700000002 30884.5357 +Q9VIZ1 Dynactin subunit 6 8.11 1 2 1 62697.312 66741.075 +Q9VJ44 propanoyl-CoA C-acyltransferase 22.36 8 23 1 8206.096 16705.227 +Q9VVG5 RH19679p 14.44 1 3 1 711229.1417 834017.8678000001 +P09956 Regulatory protein zeste 2.96 2 2 0 2907.6367 5073.988 +Q7K4H4 Bifunctional lysine-specific demethylase and histidyl-hydroxylase NO66 1.53 1 1 0 6148.8047 5614.371 +Q7KNS3 Lissencephaly-1 homolog 1.7 1 1 0 15032.392 23454.795 +Q8IN78 Mitochondrial import inner membrane translocase subunit Tim22 3.59 1 1 1 9890.688 15524.0 +Q9VMV6 Thioredoxin reductase-like selenoprotein T homolog CG3887 4.55 1 1 0 35692.875 47720.754 +Q9VPR7 UPAR/Ly6 domain-containing protein cold 9.15 1 1 1 11760.647 21056.885 +A0A0B4K838 Guanine nucleotide-binding protein subunit gamma 10.61 1 1 1 59031.95 77354.945 +B7Z0L1 Fasciclin 1, isoform E 50.48 29 163 0 12779020.49506 15205042.08375 +C1C3E7 MIP09364p 61.25 22 85 1 2767.2874 2890.2874 +E1JH70 Kank, isoform E 2.57 2 2 0 5660.638849999999 7433.00334 +Q7K231 RING-type E3 ubiquitin transferase 3.87 2 3 2 1977.04154 3624.389 +Q7YZ93 Uncharacterized protein, isoform B 4.31 2 2 0 16934.12 21561.393 +Q8IQH6 Nebulosa, isoform A 2.76 1 1 0 4744.686 4711.62 +Q8IRM1 Uncharacterized protein, isoform E 20.86 4 7 1 957.94727 1705.5537 +Q9VBS0 CHK domain ov2 4.89 2 2 2 21932.088 25513.835 +Q9VCH9 LD07883p 8.66 2 2 2 63979.7253 81514.265 +Q9VDJ8 Cuticular protein 92F 2.89 1 3 1 24890.7682 20320.754849999998 +Q9VFB5 DNA-directed RNA polymerase II subunit RPB7 11.56 2 2 2 18610.438 14552.068 +Q9VID7 Lethal (2) k14505, isoform A 2.87 1 1 1 6523.6665 7358.561 +Q9VL69 Translocon-associated protein subunit gamma 10.0 2 4 2 94391.4965 133221.2828 +Q9VLX9 Uncharacterized protein, isoform B 20.93 1 2 1 303230.52 269069.51 +Q9VMY3 FI19613p1 1.5 1 1 1 6790.0176 7687.964 +Q9VND4 Vacuolar ATPase assembly protein VMA22 14.84 2 2 2 8837.9633 12071.054 +Q9VS80 FI17864p1 2.34 1 1 1 5368.865 6470.2397 +Q9VWE8 Actin-related protein 10, isoform A 2.12 1 1 1 2347.7131 1810.0529 +Q9VZ69 IGF-II mRNA-binding protein 21.38 12 17 0 16653.379 29227.205 +Q9VZF0 LD44732p 7.73 2 2 2 19863.082000000002 20320.0514 +Q9VZX7 Autophagy-related protein 2 0.58 1 1 1 11284.739 11489.992 +Q9VFR1 Protein Abitram 14.95 2 2 2 2400.05324 3393.1836999999996 +A0A0B4K6A2 Glial cell line-derived neurotrophic family receptor-like, isoform I 0.6 1 1 0 25785.36 26073.57 +A0A0B4K6E6 Uncharacterized protein, isoform C 13.21 1 4 0 1083862.7957000001 1125409.567 +A0A0B4KFS3 Thiamine pyrophosphokinase 1 4.73 1 1 0 27208.027 36902.223 +A0A0B4KHR2 BRCA1-associated protein 1.61 1 1 0 9623.92 12471.205 +A0A6F7R657 Widerborst, isoform H 19.04 13 26 1 5607.0054 7522.416 +D1YSG8 calcium/calmodulin-dependent protein kinase 38.61 21 43 1 96341.08759999998 143509.0965 +M9PCQ3 Protein phosphatase 1 regulatory subunit 12B 14.31 15 17 0 8300.2712 9475.597600000001 +M9PG37 Cytoplasmic linker protein 190, isoform R 30.92 49 88 1 16593.605 15730.608 +Q0KHQ1 GEO13361p1 24.44 2 2 2 92975.5768 109479.22015 +Q4QPR8 GEO10187p1 9.76 1 2 1 96482.66 122245.23000000001 +Q7KB18 Epoxide hydrolase 11.45 3 3 2 15285.1335 11979.545300000002 +Q8IPL4 Lethal (2) 05714, isoform B 6.64 2 3 0 59921.21399999999 41159.638000000006 +Q9V415 HMG-coA reductase degradation 3, isoform A 1.95 2 2 2 6534.4995 9325.4913 +Q9VV37 GEO13385p1 10.1 1 6 1 192564.295 250206.37 +Q9VVX6 BET1 homolog 9.4 1 1 1 63074.13 68998.89 +Q9W152 RH33060p 16.9 1 1 1 693.37067 1651.5973 +P48613 Protein tipE 3.98 2 2 2 11464.5561 12148.0578 +Q9VGW1 Cadherin-86C 1.24 2 2 0 5014.680560000001 10188.4392 +Q9VSC1 Signal recognition particle 9 kDa protein 10.39 1 3 1 143969.785 211276.8428 +A0A0B4K7H1 Hulk, isoform M 11.15 12 21 0 27710.283 46334.242 +A1ZBL9 MAP/microtubule affinity-regulating kinase 3 18.12 18 21 1 632.1251 0.0 +E1JGW3 Ion transport peptide, isoform E 8.33 1 4 0 206144.4946 368358.8088 +O76895 Arginase 7.69 2 2 2 4548.7834 6690.9676 +Q8SYL1 Glutamate-rich WD repeat-containing protein 1 5.48 2 2 2 39386.176 65031.207 +Q9VAI3 FI06539p 10.08 1 1 1 9641.598 14139.931 +Q9VB09 IP04131p 12.1 2 2 2 53736.273 72893.92300000001 +Q9VV18 Cuticle protein 16.5 8.24 1 2 1 180240.94300000003 220479.22999999998 +Q9VZN6 Lipase domain-containing protein 4.36 1 2 1 1541.87655 3514.9599 +Q9W1X6 GH06673p 8.33 2 2 2 12980.9555 20703.114 +Q9W5E7 LP07417p 11.4 1 2 1 19830.5816 23607.230000000003 +Q9VMP9 Glucosamine-6-phosphate deaminase 10.99 3 4 0 38420.6739 49883.205 +A0A0B4KGZ0 Methyl-CpG binding domain protein-like, isoform C 2.65 1 1 0 3028.3623 1935.9458 +A1ZAU6 FI05912p 1.83 1 1 0 2211.603 3194.7915 +Q0KI97 Protein FMC1 homolog 15.84 2 3 2 109506.2565 139978.828 +Q7K3Z8 GH01208p 2.35 1 2 1 16600.0844 21811.233 +Q9VAN8 FI15955p1 6.46 1 1 1 13277.388 15612.471 +Q9VLL4 FI23523p1 4.52 2 2 2 14185.722000000002 16043.054 +Q9VP66 Uncharacterized protein, isoform L 12.13 5 5 1 19501.393 24303.438 +Q9VT55 Uncharacterized protein, isoform N 6.42 8 12 0 29677.914200000003 34048.5237 +Q9W542 LD07342p 1.62 1 1 1 9941.252 14585.945 +Q9Y124 BcDNA.GH08385 2.68 1 1 1 1682.1521 959.8182 +Q7JZM8 Large ribosomal subunit protein mL41 16.27 2 2 2 77083.87299999999 95573.48700000001 +Q8IRU4 3',5'-cyclic-AMP phosphodiesterase, isoform F 22.96 12 20 1 1287.4586 1771.3757 +Q9VTT0 Semaphorin 5c 1.92 2 2 2 16777.414 16100.2237 +Q9XZT7 Transcription initiation factor TFIID subunit 10b 14.38 2 2 2 32168.576699999998 29754.0887 +A0A0B4LF27 Uncharacterized protein, isoform C 4.29 2 2 0 29988.023999999998 26999.9313 +A1Z840 Cdc2-related kinase 4.13 2 3 2 22540.184 57196.58 +G3JX30 Z band alternatively spliced PDZ-motif protein 52, isoform U 57.54 33 110 1 17205.768 12485.837 +Q9W3S4 LD46272p 3.11 1 1 1 4782.2227 6749.678 +A8JQX3 Nocturnin 1.87 1 1 1 3368.333 7807.6763 +Q9GYV5 NF-kappa-B essential modulator 21.71 6 6 1 13492.099 12839.22 +Q9VUL1 CTP synthase 1.59 1 1 0 26505.234 31477.635 +A0A0B4KI71 Microtubule-associated protein 205, isoform C 26.6 22 40 1 913.1255 1970.218 +A8JNN5 GTPase activating protein and centrosome-associated, isoform B 0.67 1 1 0 1583.6743 899.26337 +B7Z0Z7 Venom dipeptidyl peptidase 4 9.54 9 11 0 183858.85354 262301.52926000004 +M9MRH8 CCR4-NOT transcription complex subunit 4 0.94 1 1 0 807.95557 483.7134 +O76857 BCL7-like 13.64 2 2 2 45636.441999999995 52373.282 +Q7JY89 RE35124p 15.0 1 1 1 3327.535 4982.338 +Q9VAN1 Reelin domain-containing protein 12.5 2 2 2 47246.156 67468.762 +A8JUP7 Serine protease Hayan 2.2 2 3 2 44234.095 39299.452 +P07664 Serendipity locus protein delta 4.16 2 2 2 33160.677 40247.648 +Q9VGP0 D-aminoacyl-tRNA deacylase 9.49 2 2 2 92331.76999999999 122785.69 +Q9VUR7 Phosducin-like protein 1 6.88 2 2 2 4910.0500600000005 4037.42115 +L0MPR2 Unc-13, isoform F 0.41 1 1 0 932.8777 448.06793 +M9MS21 Uncharacterized protein, isoform A 2.77 1 4 0 250413.78650000002 494660.6636 +Q8IQU7 825-Oak 26.36 2 3 0 12685.4592 15847.7731 +Q9VGM4 LD28119p 6.76 2 2 2 3658.1753 3790.8320999999996 +M9MRD1 Muscle-specific protein 300 kDa 2.65 29 30 0 102388.2099 112869.00844 +P11996 Larval serum protein 1 beta chain 0.89 1 1 0 5664.3447 12937.7705 +Q9VS38 Mediator of RNA polymerase II transcription subunit 4 3.49 1 1 1 11222.431 11817.168 +Q7K0D3 CG12909 protein 3.2 1 1 1 18039.754 24135.285 +Q962I2 small monomeric GTPase 59.39 10 28 1 131065.01500000001 231853.82 +Q9VSK1 GH09510p 2.72 2 2 2 1955.052 693.4082 +P18930 NADH-ubiquinone oxidoreductase chain 3 9.4 1 2 1 220726.965 252240.37399999998 +A0A0B4KGQ7 Uncharacterized protein, isoform D 2.96 1 2 0 4715.75315 7048.349 +M9NDS8 Protein phosphatase 1 regulatory subunit 12B 12.05 14 16 0 444302.71997999994 610552.3837 +Q29R09 LD28546p 5.79 2 2 2 3094.8368 3154.81113 +Q8I0P8 Cuticular protein 65Av 10.81 1 2 1 3499.5593 4225.545 +Q8SXC0 GH10306p 6.03 2 2 2 26724.15248 41130.086 +Q8SXK2 Probable arginine--tRNA ligase, mitochondrial 3.7 2 2 2 1729.0012 938.8342 +Q9VDC9 protein O-GlcNAcase 5.2 3 3 3 964.1358 1734.12466 +Q9W0A9 GM02612p 3.06 1 1 1 3941.75 4806.065 +Q9VTU4 Eukaryotic translation initiation factor 3 subunit L 1.67 1 1 1 26492.453 34432.293 +Q9I7C6 Cuticular protein 65Ax1 28.43 2 4 2 600571.6516 267066.2456 +Q9VKW3 Activator 1 subunit 5 2.11 1 1 1 15099.013 19079.129 +Q9VT02 Chitin-binding type-2 domain-containing protein 9.25 1 1 1 8330.401 10797.99 +Q9VV29 GEO12576p1 9.68 1 2 0 112971.367 136925.90399999998 +P45884 Attacin-A 5.36 1 2 0 41936.4485 59192.130999999994 +A8JNC7 Dpr-interacting protein delta, isoform D 1.92 1 1 0 884.5511 0.0 +Q8INE8 type I protein arginine methyltransferase 2.32 1 1 0 1169.4873 2825.7605 +Q9VI70 GPN-loop GTPase 3 3.18 1 1 1 26069.725 31347.146 +Q9VV27 MIP11526p 15.25 2 2 2 41354.217000000004 42488.0 +O76324 Discs overgrown protein kinase 2.27 1 1 0 866.5488 1591.9164 +Q8MUJ1 Tumor necrosis factor family member eiger 2.41 1 1 1 28692.818 6371.955 +Q9VFL9 FI07901p 6.08 2 2 2 4599.511 4724.3719 +A0A0B4JCW7 TBC1 domain family member 30 0.66 2 2 0 1714.4019 927.02124 +A0A0B4LGV1 ER membrane protein complex subunit 1 1.87 2 2 0 32586.8606 34880.6025 +A1ZAX7 Uncharacterized protein 18.25 2 3 2 74677.1678 138592.54859999998 +Q9VEQ0 Xylulose kinase 1.99 1 1 1 868.08295 734.4768 +Q9W2Y4 RNA-binding protein NOB1 2.54 1 1 1 11649.548 15021.795 +Q94900 Glutamate-gated chloride channel 2.19 1 1 0 49902.992 75018.71 +A0A0B4KI11 Uncharacterized protein, isoform E 1.24 1 1 0 4763.8037 7066.4673 +Q2PDU0 GEO11169p1 9.84 1 1 1 8734.022 11839.28 +Q9VF46 GH25158p 7.34 2 3 2 30294.1113 35967.528000000006 +Q9VSD8 IP10160p 6.67 2 2 2 8628.8126 8938.4326 +Q9VV95 Uncharacterized protein, isoform B 11.02 1 1 1 31621.916 41727.582 +Q9VDT6 rRNA methyltransferase 2, mitochondrial 3.6 1 1 1 19836.49 30254.117 +Q9VC49 DNA-directed RNA polymerases I, II, and III subunit RPABC5 13.43 1 2 1 57950.593 69183.205 +Q9VYX7 Peptidoglycan-recognition protein SA 5.42 1 1 0 3606.4912 4004.3152 +Q9VGD0 Defective proboscis extension response 15, isoform A 1.36 1 1 1 45188.113 25279.008 +Q9VCE6 N(6)-adenosine-methyltransferase MT-A70-like protein 1.48 1 1 1 1605.2302 665.4351 +A8JNU1 adenylate cyclase 1.02 1 1 0 6795.05 7994.8145 +Q9W2E3 Negative cofactor 2alpha 3.23 1 1 1 18173.348 23172.826 +Q7JW46 RE25483p 17.0 1 1 1 0.0 377.43182 +Q7K010 Tetraspanin 5.0 1 2 1 15736.7876 19817.926 +Q9VUR4 FI11905p 11.6 4 9 1 18683.38 18785.13 +Q9VIU7 Dolichol-phosphate mannosyltransferase subunit 1 9.54 2 2 2 3511.9148999999998 6440.9612 +A0A0B4LGA2 RRM domain-containing protein 1.97 1 1 1 4643.471 6192.0396 +A8DYU1 GRAM domain containing 1B, isoform D 0.66 1 1 0 4456.3965 5560.3433 +Q9VLR2 Cytidine deaminase 9.41 2 2 2 30883.445 31731.851000000002 +P52656 Transcription initiation factor IIA subunit 2 15.09 2 3 2 36105.715599999996 41262.28049999999 +Q9VX25 Ubiquitin-conjugating enzyme E2 S 3.35 1 1 0 1528.4631 1680.9347 +A8JNV2 Uncharacterized protein 10.71 1 2 1 19103.509 18518.2945 +Q9VRX7 LD29573p 1.32 1 1 1 3760.57 5195.6655 +Q9VMH7 Protein-lysine N-methyltransferase CG9154 4.93 1 1 0 49752.64 68540.13 +O46099 EG:8D8.2 protein 0.78 1 1 1 3648.7288 2759.1726 +Q8SWU4 RE25571p 17.3 6 12 1 80539.79 33837.375 +Q9VHW6 18S rRNA (guanine-N(7))-methyltransferase 8.33 2 2 2 10122.6232 14609.391 +Q9VRA0 Migration and invasion enhancer 1 7.37 1 2 1 55480.129 75252.88699999999 +P91943 Protein pangolin, isoforms A/H/I/S 1.46 1 1 0 2035.1924 2512.9998 +Q8T4E1 Putative GPI-anchor transamidase 2.54 1 1 1 16923.998 23122.43 +M9ND31 Glucosamine-6-phosphate isomerase 13.97 4 5 1 35568.598 31435.527 +Q9VEP0 Regulatory protein zeste 2.17 1 2 1 1976.7313 2330.6191 +Q8IRD6 Dro4 protein 33.8 2 2 2 142814.195 207882.778 +Q8SXW3 GV1, isoform B 4.44 1 2 0 42759.238 50609.612 +A1Z9M6 Vesicular inhibitory amino acid transporter 2.91 2 2 2 28395.955 32648.2736 +Q7JWE2 GH09427p 3.96 1 1 1 3041.4358 6248.0947 +Q8IRN0 FI06485p 10.84 2 2 2 18412.249 21272.845999999998 +Q9VHS6 Copper transport protein 5.75 1 1 1 2205.95 1733.9137 +D8FT19 MIP22288p 2.35 1 1 0 2766.8796 4614.713 +A0A0B4LIG1 Pre-mod(Mdg4)-C, isoform B 15.27 2 2 2 18534.789 21165.042 +Q8SYJ9 Threonylcarbamoyl-AMP synthase 5.24 1 1 1 0.0 593.9925 +Q8ML92 Protein aveugle 7.55 1 1 1 19614.924 36357.203 +Q9VEK6 Leucine-rich repeat protein soc-2 homolog 3.59 1 1 0 1532.3289 690.2527 +Q8MLR7 phosphatidylinositol-3,5-bisphosphate 3-phosphatase 1.18 1 1 0 5235.8843 5746.144 +Q9VT15 GH14734p 2.78 1 2 1 46810.128000000004 69802.998 +Q9W2M8 Large ribosomal subunit protein mL54 12.88 2 2 2 23825.5047 40930.4963 +A1A750 GEO11067p1 18.81 2 2 2 36331.4507 44540.932700000005 +Q9VF83 LD33178p 2.73 1 1 1 9926.059 14921.966 +X2JCX4 Uncharacterized protein, isoform A 18.52 1 1 1 4625.567 6117.0586 +Q9NHV9 Protein vav 3.66 3 3 0 8133.0005 6702.9097 +Q9W590 Large subunit GTPase 1 homolog 1.82 1 1 0 4073.0286 5236.4873 +A0A0B4KEC3 D4, isoform D 2.02 1 1 0 2103.5461 1603.717 +Q9V8I2 Ragulator complex protein LAMTOR2 homolog 7.2 1 3 1 69638.1094 59864.797999999995 +M9PCK0 Decima, isoform D 4.29 1 1 0 10905.242 13087.532 +Q9VPA9 LD24894p 0.92 1 1 1 7576.9756 12156.894 +Q9VSS4 IP05455p 10.32 1 1 1 17320.38 20425.379 +Q8SZ16 Succinate dehydrogenase assembly factor 3, mitochondrial 15.0 2 2 2 57924.92 80733.893 +Q9VT51 Insulin-like peptide 2 19.71 2 2 2 17718.998 14955.922 +A0A0B4JDB9 Eukaryotic translation initiation factor 4E homologous protein, isoform D 4.13 1 2 0 4255.6097 3778.9078 +Q7KV26 Kinase 2.6 1 1 1 3625.4788 4218.5845 +Q9VLJ0 Probable cGMP 3',5'-cyclic phosphodiesterase subunit delta 4.64 1 1 1 2992.947 3684.09 +Q9VXB3 Histone deacetylase complex subunit SAP30 homolog 5.78 1 1 0 8403.693 5128.069 +Q02427 RNA-binding protein 1 29.86 4 5 1 602691.2 778218.5 +M9PBB3 Uncharacterized protein, isoform D 1.57 1 1 0 7648.774 11172.715 +M9PD90 Discs large 5, isoform D 0.57 1 1 0 392.41785 0.0 +Q9VD48 Bomanin bicipital 3, isoform A 24.49 2 2 2 11876.437999999998 15237.5645 +Q9VDL4 LP04613p 2.72 1 2 1 4843.2782 6808.841699999999 +Q9VQ52 GH27779p 3.93 2 2 1 70354.14689999999 78056.3043 +B7Z0S9 Glutathione S transferase D11, isoform B 7.0 2 2 0 30457.700699999998 30997.339799999998 +M9PHV4 Uncharacterized protein, isoform F 3.18 2 2 0 16996.4811 22127.756800000003 +Q9VGE8 Tachykinins 6.57 2 4 0 38444.40964 64289.7631 +A0A0B4KFH9 Uncharacterized protein, isoform B 14.15 2 2 0 21934.174 38242.2036 +A1ZBH1 Uncharacterized protein, isoform D 5.57 2 2 0 37556.625 56543.032999999996 +Q29QQ9 Ribosomal RNA-processing protein 42 5.74 2 2 2 16392.306 16431.4174 +Q9W4K1 AP-3 complex subunit beta 0.86 1 1 1 2035.9373 2407.6272 +P42282 Protein tramtrack, alpha isoform 2.21 2 2 0 18009.734 17934.38 +Q7YU81 Protein charlatan 1.48 2 2 0 12810.685 16851.655 +Q9VHV3 FI02011p 3.75 2 2 2 11047.0901 15557.521499999999 +Q8T9L5 Serine/threonine-protein kinase STK11 1.76 1 1 1 4590.261 5155.7827 +Q9VN42 Dorsal interacting protein 2 7.08 2 2 2 11086.5046 11544.31 +Q9GYV9 Mediator of RNA polymerase II transcription subunit 7 3.64 1 1 1 8981.807 9915.891 +Q9V3A6 Ero1-like protein 2.28 1 1 1 947.237 3426.1072 +Q9VIQ4 GH03980p 10.75 2 2 2 34235.5567 44347.417499999996 +Q7KSP6 SET domain binding factor, isoform B 1.27 2 3 0 114851.614 144704.14500000002 +Q7K8Y3 IP16419p 26.28 9 11 0 389710.3264 482000.91842999996 +Q8STG9 DSec61alpha 1.89 1 1 1 27876.16 26660.191 +A0A0B4K763 superoxide dismutase 8.92 2 3 0 11186.494299999998 16696.1528 +Q9V439 Mediator of RNA polymerase II transcription subunit 22 5.59 1 1 1 14811.924 17174.617 +P22812 Protein Tube 3.9 2 2 2 4161.5374 4874.2887599999995 +Q9VZI2 Activated Cdc42 kinase Ack 1.03 1 1 1 44758.887 74631.5 +Q9XYQ2 Protein unc-119 homolog 9.06 2 2 0 19827.832 25949.328999999998 +Q7JV39 GH01142p 5.05 1 1 1 19760.365 22734.248 +A0A0B4LHI9 Inwardly rectifying potassium channel 2, isoform D 3.52 2 2 0 10690.945 11918.0693 +Q8IN02 diphthine methyl ester synthase 5.69 1 1 1 19497.766 18412.883 +Q27367 Protein croquemort 4.48 2 2 2 26326.494 31116.072 +Q7K2Y9 Protein N-terminal glutamine amidohydrolase 7.8 1 1 0 8489.36 9552.947 +Q9VTC2 Biogenesis of lysosome-related organelles complex 1 subunit 4 5.33 1 1 0 1972.0587 2159.8928 +Q0KI28 Biogenesis of lysosome-related organelles complex 1 subunit 5 6.25 1 1 0 3027.245 3095.6646 +A1Z814 Oxysterol-binding protein 2.81 2 2 0 25715.2896 25482.177 +Q9W4F9 IP01388p 3.65 2 2 0 16540.169 22127.911 +E1JJR2 Nicotinic acetylcholine receptor alpha7, isoform E 2.48 1 1 0 629.41125 893.2094 +Q7KMJ6 RNA-binding protein spenito 1.39 1 1 1 2245.8572 2645.202 +A0A0B4LHE6 Orcokinin, isoform B 6.3 1 1 1 2727.1885 2176.755 +F0JAQ9 MIP27169p 2.34 1 1 0 1907.1091 1796.1832 +P18289 Transcription factor Jra 3.81 1 1 0 3057.055 4248.337 +B7Z0W9 Proton channel OtopLc 0.7 1 1 1 12042.59 15942.149 +Q9VJ77 FI24106p1 2.07 1 1 0 2297.2485 2773.6628 +Q7K0F7 Carbonyl reductase, isoform A 2.54 1 1 1 33475.17 48064.64 +Q9VDN4 Uncharacterized protein, isoform A 2.34 1 1 1 10937.43 5976.9575 +Q9VR55 LD29159p 8.71 1 4 1 78960.3615 75915.202 +Q9VHH7 Adenosine deaminase-like protein 3.56 1 1 1 6736.939 8959.823 +M9MRP5 Ecdysone-induced protein 63F 1, isoform C 30.39 4 6 0 95699.31090000001 126264.6364 +P54194 General odorant-binding protein 84a 6.86 1 1 1 34099.043 36600.355 +Q24468 Receptor protein serine/threonine kinase put 1.74 1 1 1 5067.7505 6888.8745 +Q95RQ8 Zinc finger protein pita 2.34 2 2 2 126316.7585 155444.655 +Q8IR92 Uncharacterized protein, isoform A 6.03 6 6 0 2006.605 3148.0215 +A0A126GUV0 Juvenile hormone binding protein 5, isoform C 3.8 1 1 0 971.9358 2283.6494 +Q7KVT8 Orion, isoform B 1.7 1 1 0 606.47394 0.0 +Q9VV26 GEO12049p1 6.84 1 2 1 128874.79500000001 181710.407 +A0A0B4KEG0 NAD kinase 2, mitochondrial 2.18 1 1 0 610.6858 1673.0547 +Q9VPU0 RCC1-like domain-containing protein 4.19 1 1 1 3567.2559 3303.7417 +A1Z971 Uncharacterized protein, isoform A 2.29 1 1 1 2805.4443 7009.1143 +Q9VX14 RH64870p 8.82 2 2 1 8803.719799999999 13587.502 +Q24192 Ras-like GTP-binding protein RhoL 7.89 2 2 0 28122.2716 38395.522 +Q9W3C8 Carbonic anhydrase 3, isoform A 7.2 2 2 2 18676.622 20833.4767 +A1Z8Q0 Tweedlebeta 8.59 2 2 1 8754.767 17403.375 +A1ZAG3 Protein G12 2.9 1 1 1 64539.273 72039.69 +Q9W452 Peptidase S1 domain-containing protein 3.26 1 1 1 9940.304 9600.685 +Q9Y166 BcDNA.GH02431 5.71 2 2 2 34502.765 37398.901 +A0A0B4JCQ5 phosphatidate phosphatase 5.06 5 5 0 29909.765100000004 38586.7135 +Q86BP6 Enhanced level of genomic instability 1 3.01 1 1 1 1698.2698 1925.5955 +Q0E8W6 Small integral membrane protein 14 40.0 2 2 2 1696.7103 1604.3092 +Q6IJE8 HDC15077 11.85 1 1 1 60720.434 81553.84 +Q9VVI0 SD09427p 1.63 1 1 1 3038.172 2464.3582 +Q9V3D0 Large ribosomal subunit protein uL4m 8.11 2 2 2 25983.807 39967.355 +Q9VII3 UPAR/Ly6 domain-containing protein twit 6.63 2 2 2 4749.54653 12682.7837 +A0A0B4KH70 Trivet, isoform F 1.81 1 1 0 32957.29 39127.766 +E1JIN2 Beaten path IIb, isoform C 1.98 1 1 0 45578.15 61453.23 +Q9VYX5 Transmembrane protein 242 9.59 1 1 1 5213.914 7280.309 +Q9W494 Crossveinless 8.17 2 2 2 11632.343 28743.682 +Q9VXX8 Large ribosomal subunit protein eL37A 20.43 2 3 0 87119.8425 130730.58899999999 +Q9VEI2 Uncharacterized protein 5.32 2 2 2 7268.406999999999 5393.5684 +A0A0B4KHB7 AP complex subunit sigma 10.53 2 2 0 23693.609 30219.716999999997 +A1Z8I0 Trafficking protein particle complex subunit 2-like protein 13.04 2 2 2 17977.988 13810.384 +Q8IQB4 Z band alternatively spliced PDZ-motif protein 66, isoform E 70.7 25 131 0 9892.049 6678.501 +Q9V437 Pre-mRNA-splicing factor 18 3.53 1 1 1 73263.484 90202.37 +Q95NH6 Attacin-C 2.9 1 1 1 3631.5852 4206.9536 +Q8ST83 Polycomb protein PHO 2.31 1 2 1 472.19675 323.69022 +Q86B83 LD12611p 5.44 2 2 2 8214.252199999999 10221.9547 +Q8MRQ1 GH06222p 3.62 2 2 0 20012.08 21894.416 +Q4V6X9 IP01247p 3.24 1 1 1 2338.7856 2623.117 +Q9VKQ3 Ribosome biogenesis protein WDR12 homolog 3.1 1 1 0 2582.1194 3008.908 +Q9VPR6 Kinase 2.59 1 1 1 4769.622 6535.631 +Q9VF80 Cysteine protease 1.65 1 1 1 437.01843 371.23267 +Q7KRY6 Nucleosomal histone kinase 1 3.17 2 2 0 7996.2744 9393.519 +Q9V4B8 RE68558p 1.2 1 1 1 7353.2373 10762.275 +Q9VLW9 Homocysteine-induced endoplasmic reticulum protein, isoform A 6.02 1 1 1 401.1894 736.86035 +Q9W547 Large ribosomal subunit protein uL16m 2.88 1 1 1 23858.574 36684.656 +E1JI58 RNA polymerase III subunit E, isoform C 5.57 2 2 0 3825.5042 5081.1766 +Q8I0J1 RE43539p 2.51 1 1 0 14827.747 12953.922 +Q9VC27 Nicastrin 1.29 1 1 0 21092.268 20055.1 +Q9VR56 tRNA (guanine(9)-N(1))-methyltransferase Trmt10A 3.13 1 1 1 8355.96 7586.0767 +Q9VSP9 Acyl-CoA binding protein 5 10.98 1 1 1 913.92944 695.7312 +E1JIS4 Uncharacterized protein 5.93 1 1 1 560.76544 719.2659 +Q0E981 SNF-related serine/threonine-protein kinase 1.63 1 1 1 10166.988 2478.7227 +Q9W0I2 RE15268p 11.17 1 1 1 1147.7804 3107.7239 +A0A0B4KGW6 Sequence-specific single-stranded DNA-binding protein, isoform D 2.36 1 1 0 10114.183 8592.503 +Q961R9 GH09241p 1.8 1 1 1 34629.906 42396.695 +Q9VCC7 FI03681p 1.71 1 1 1 931.1484 590.822 +M9PDC4 Misexpression suppressor of ras 3, isoform B 3.01 1 1 0 3195.9631 3953.2224 +A0A0B4LFW1 non-specific serine/threonine protein kinase 0.89 1 1 0 1009.5731 1637.4788 +A0A0S0WIE7 Glutamate receptor IB, isoform D 2.53 2 2 0 6310.2907000000005 10414.47553 +Q9VFR4 GH09754p 6.64 1 1 1 30634.463 72779.695 +Q7K490 SD03973p 2.65 1 1 1 3878.354 5390.981 +Q7KE33 Odorant binding protein c 9.4 1 2 1 80590.643 79152.26999999999 +A1Z8N1 Trehalose transporter 1 2.1 1 1 1 522.3826 821.9086 +Q9VVT5 Dysbindin protein homolog 3.12 1 1 0 9209.676 16667.98 +B5A5T4 UPAR/Ly6 domain-containing protein qvr 13.29 2 3 0 92608.253 108357.421 +Q8IMK6 Uncharacterized protein 5.72 1 2 1 13204.973 15602.511999999999 +Q6NN09 ATPase protein 9 5.07 1 6 1 2597390.412 1304982.0804 +Q9Y149 Mediator of RNA polymerase II transcription subunit 15 2.4 2 2 2 5472.7593 5682.716 +O76874 SD17974p 1.14 1 1 1 3064.2546 5491.2676 +Q9VEB2 LD28404p 3.0 1 1 1 13868.95 17163.602 +P41964 Drosomycin 17.14 1 1 0 1203.2986 3938.534 +Q9VL21 LD11652p 6.22 1 1 1 7591.6816 11866.783 +Q9VBD8 RT02919p 4.37 1 1 0 426.4078 0.0 +A0A0B4K7P8 Short stop, isoform Z 7.01 38 41 0 5691.4067 7805.8916 +A0A0C4DHB8 WD repeat-containing protein 44 1.01 1 1 0 593.87994 874.6643 +P10735 Small ribosomal subunit protein uS12m 12.86 2 2 0 185066.97 191167.0 +Q8IRE4 tRNA (guanine(37)-N(1))-methyltransferase 1.97 1 1 1 2744.067 4846.742 +Q9VK20 LD18447p 1.79 1 1 1 9700.464 10793.593 +Q7K209 deoxyribose-phosphate aldolase 2.88 1 1 1 9247.685 10006.986 +Q9VA48 Serpin 100A 2.77 2 2 2 15072.372599999999 15794.247599999999 +Q9VP25 Carboxylic ester hydrolase 2.33 1 1 1 410.7007 0.0 +Q24574 Ubiquitin carboxyl-terminal hydrolase 47 0.64 1 1 1 4776.333 5449.583 +Q9VBK9 Protein FAM98B 3.08 1 1 1 28599.771 50514.51 +Q9VZC8 GEO12024p1 6.85 1 1 1 1716.8174 2683.6106 +Q9VTM0 Biogenesis of lysosome-related organelles complex 1 subunit 6 8.98 2 2 2 27319.9377 29289.01 +Q9V426 LD07162p 2.45 1 1 1 0.0 586.3295 +A0A0B4KH58 Uncharacterized protein, isoform C 1.19 1 1 0 23714.682 32412.072 +Q0E985 RH74701p 15.0 1 1 1 2309.4634 3018.9895 +Q9VCC2 RE50040p 4.86 2 2 2 132334.788 177459.335 +M9PEX7 Leucine-rich repeat-containing protein 59 3.06 1 1 0 15635.319 20261.127 +Q02926 Ribonucleoprotein RB97D 1.49 1 1 0 4146.742 4241.6123 +Q7K172 CAAX prenyl protease 3.33 1 1 1 10138.648 9992.744 +Q8MKK3 Phosphopantothenoylcysteine decarboxylase 3.66 1 1 1 41656.65 57241.04 +M9PB41 Uncharacterized protein, isoform C 10.88 2 2 0 7607.5386 15599.789 +M9PH32 Protein meiotic P26 1.99 1 1 0 0.0 765.4717 +O18645 non-specific serine/threonine protein kinase 2.41 2 2 2 54198.848 96805.814 +Q9V785 SH3 domain-binding protein 5 homolog 1.68 1 1 1 21027.402 25686.84 +E1JHX0 MIP29328p 3.76 1 1 1 4946.7183 5964.1826 +Q9VGH2 Uncharacterized protein, isoform A 1.65 1 1 1 4140.495 9180.758 +Q8MLV1 Lamin-B receptor 1.62 1 1 1 0.0 402.24496 +A0A126GV08 Uncharacterized protein, isoform G 5.3 2 2 0 454.37784 386.67392 +F9VMG5 GEO02462p1 41.07 2 2 2 26306.703999999998 31599.822 +A0A0B4LH25 Insulator su(Hw) mRNA adaptor, isoform D 1.07 1 1 0 0.0 407.46 +Q9I7I0 G2/mitotic-specific cyclin-B3 2.26 1 2 0 20642.3847 26785.6966 +Q9W391 Probable phosphorylase b kinase regulatory subunit alpha 0.64 1 1 0 20137.32 24703.29 +Q9V9R3 adenylate cyclase 1.29 2 2 2 9679.7085 7611.9046 +Q9VS39 FI19525p1 5.88 2 2 2 24001.3667 20975.6276 +Q9VK57 PIH1 domain-containing protein 1 4.18 1 1 1 6420.6924 8833.695 +Q9VYM5 Cuticular protein 11A 4.07 1 1 1 7875.0 9685.855 +Q9VUE5 LD17962p 0.77 1 1 0 42966.09 208253.61 +B8BPV3 Uncharacterized protein, isoform C 1.49 1 1 0 2396.9868 907.74646 +Q9VH14 Tissue inhibitor of metalloproteinase 7.14 2 2 2 12812.936300000001 12915.6924 +Q9VCZ7 Uncharacterized protein 7.86 2 2 2 17908.797499999997 23335.3106 +A0A0B4KF92 Holocarboxylase synthetase, isoform B 1.81 2 2 0 613.87946 684.27576 +M9PE65 Axotactin 0.69 1 1 1 3219.6052 4550.6025 +Q86PD7 Glutaminyl-peptide cyclotransferase 2.26 1 1 1 3610.603 3490.912 +Q8IRK0 GH04558p 5.41 2 2 2 92792.8685 126276.3014 +D5SHR0 BTB/POZ domain-containing protein Tiwaz 2.45 1 1 1 4839.166 5989.3193 +M9PDX4 Uncharacterized protein, isoform B 1.19 1 1 0 20489.898 21763.957 +Q5BI50 Cullin-4A 1.34 1 1 1 18041.137 5369.1904 +P29349 Tyrosine-protein phosphatase corkscrew 1.3 1 1 0 2645.7407 1556.1813 +Q9Y110 BcDNA.GH10711 1.33 1 1 1 1644.6599 1641.118 +Q9VLU6 Succinate dehydrogenase assembly factor 4, mitochondrial 22.88 1 1 1 1189.5743 2800.7756 +Q8SY97 Microsomal glutathione S-transferase 1 7.88 1 1 0 79131.05 123742.88 +P07186 Chorion protein S19 14.45 1 1 1 2082.8557 2728.055 +Q9VJ38 Large ribosomal subunit protein uL13m 6.18 1 1 1 3342.793 6069.5024 +Q9VJK9 GEO06505p1 9.52 1 1 1 1816.7225 965.8028 +Q9V444 DNA polymerase epsilon subunit 3 10.16 1 1 1 1930.5927 3478.4158 +Q9VL29 GEO11246p1 12.93 1 1 1 10374.397 12367.299 +Q9VDS3 Exit protein of rhodopsin and TRP A 10.34 1 1 1 641.54224 661.88257 +Q9W2F6 RE36793p 14.17 2 2 2 17887.4753 20780.028 +Q9VIL0 Protein brunelleschi 0.61 1 1 1 4705.366 6607.2295 +Q9VZ39 Uncharacterized protein 10.94 1 1 1 32293.092 37142.324 +Q8MKJ6 Peptidyl-prolyl cis-trans isomerase 8.7 1 1 1 5772.4844 6803.7124 +A0A1Z1CN86 Uncharacterized protein, isoform D 11.9 1 2 0 6116.7052 6396.2065999999995 +Q7JR99 RE31204p 5.59 1 1 1 6107.2114 7600.0684 +Q9VYK7 glutathione-specific gamma-glutamylcyclotransferase 3.54 1 1 1 1914.8962 2323.4292 +M9PC30 Uncharacterized protein, isoform Q 18.39 6 8 0 148614.0986 171033.7786 +B7YZZ0 GH19557p 12.64 1 1 1 19065.152 39608.77 +Q9VU02 Probable small nuclear ribonucleoprotein Sm D1 16.13 1 2 1 2829.9574399999997 3619.13614 +A1Z8D4 AT13868p 4.47 1 1 0 2305.2122 2262.5806 +E1JIQ5 Exit protein of rhodopsin and TRP B, isoform A 8.85 1 1 1 112749.3 142871.14 +A8DYV9 GEO02589p1 10.53 1 2 1 14557.7497 36640.869 +A8DZ02 ADAM10 endopeptidase 0.98 1 1 0 4382.8467 4392.8125 +Q9W1I6 U4/U6.U5 small nuclear ribonucleoprotein 27 kDa protein 13.4 1 1 1 722.4613 1953.3118 +Q7KSB7 Apoptotic signal-regulating kinase 1, isoform B 0.59 1 1 0 28594.117 132863.17 +A1ZAX2 TP53-regulated inhibitor of apoptosis 1 12.5 1 1 1 3372.4368 6111.059 +Q7K1H9 GH07575p 3.69 1 1 1 1765.71 3330.5032 +M9PF17 Defective proboscis extension response 10, isoform D 2.76 1 1 0 3252.0496 3675.6582 +O76513 Cyclin-H 3.7 1 1 1 4769.619 5944.556 +M9NDE4 Uncharacterized protein, isoform C 1.55 1 1 0 1937.9014 2303.3345 +Q7K3U4 Flavin-containing monooxygenase 2.1 1 1 1 12076.169 13244.606 +Q9W0U6 Sulfatase-modifying factor enzyme-like domain-containing protein 4.46 1 1 1 410.82614 0.0 +Q9V449 Met75Ca 23.53 1 1 1 6313.7188 6329.4067 +Q9VLA6 Brickwall, isoform A 3.22 1 1 1 0.0 573.7423 +Q9VWQ1 Autophagy-related protein 101 4.59 1 1 1 997.3073 2272.8042 +Q03445 Glutamate receptor 1 1.92 1 1 1 848.3249 1946.8481 +Q7KPG8 CDK-activating kinase assembly factor MAT1 4.38 1 1 1 5500.6934 7731.5728 +Q9W0B6 LD14179p 1.48 1 1 1 4503.541 8550.655 +Q4V4I9 Neuropeptide CCHamide-1 5.49 1 1 1 6333.9717 4622.237 +Q8IQJ4 Chitin-binding type-2 domain-containing protein 4.83 1 1 1 8685.626 12089.8545 +Q9VL14 REPTOR-binding partner 7.63 1 1 1 6725.3994 7640.9453 +Q9VT01 FI06792p 3.5 1 1 1 690.52954 550.82434 +Q9VIM8 RE22905p 2.85 2 2 2 4690.9517 5261.886 +Q9VRG7 CTD nuclear envelope phosphatase 1 homolog 4.94 1 1 0 2802.751 3238.0505 +Q8IPS9 Small integral membrane protein 8 10.59 1 2 1 27932.060100000002 31460.69186 +Q9VDR1 Mediator of RNA polymerase II transcription subunit 25 1.16 1 1 1 3576.7727 4789.2783 +M9PCM2 Uncharacterized protein, isoform B 5.93 1 1 1 139978.42 192561.8 +Q9VMM3 RE17389p 2.61 1 1 1 1922.0564 1852.0728 +A1Z8H4 Cuticular protein 47Ec 14.5 1 1 1 10700.318 9182.98 +Q9W551 GEO02601p1 8.49 1 1 1 2166.8862 1052.0745 +Q9V492 Mitochondrial inner membrane protein Mpv17 5.36 1 1 1 7645.07 12920.098 +Q9VAG4 Vacuolar protein sorting-associated protein 16B 2.01 1 1 1 2732.962 3694.0884 +Q0E8G5 Uncharacterized protein, isoform D 1.15 1 1 0 2505.71 3499.7144 +Q9Y122 BcDNA.GH08420 2.28 1 1 1 4194.8545 4233.94 +Q9VB20 Distracted, isoform B 0.68 1 1 1 0.0 493.22372 +Q9VA94 GH07782p 2.82 1 1 1 745.7424 2186.628 +Q9VX56 LD03052p 5.94 1 1 1 30269.979 24425.963 +Q7K3D8 DNA methyltransferase 1-associated protein 1 2.08 1 1 1 14289.072 8820.978 +A0A0B4K6Z5 GEO13417p1 6.1 1 2 0 39999.4463 52063.5193 +M9PFU2 CREB-regulated transcription coactivator, isoform B 1.24 1 1 0 2359.9097 2345.8083 +Q9VWI2 N(Alpha)-acetyltransferase 15/16, isoform A 1.57 1 1 1 4999.6885 6633.322 +Q7JY99 glycerol kinase 1.34 1 1 1 918.46106 1657.2458 +Q9VP08 IP11255p 2.36 1 1 1 3974.4636 4935.235 +Q8MYV9 GEO12865p1 11.04 1 2 1 49150.761 75169.225 +Q9VVV7 tRNA (uracil(54)-C(5))-methyltransferase 1.46 1 1 1 19094.648 9354.03 +Q9V6L9 F-box/SPRY domain-containing protein 1 4.31 1 1 1 423.55237 416.9601 +Q9W0K0 JNK-interacting protein 1 2.86 1 1 1 9075.501 3385.4294 +Q8IN94 Trithorax group protein osa 0.29 1 1 0 407.96933 550.81714 +Q7JZ37 WD repeat-containing protein 89 1.7 1 1 0 23089.56 30599.945 +Q9VKH6 Lysosomal thioesterase PPT2 homolog 2.43 1 3 1 429281.33999999997 237266.22499999998 +Q7JWV7 Tetraspanin 4.85 1 1 1 2358.6267 3271.9888 +H9XVM3 ADP-ribosylation factor-like protein 11 5.43 1 1 0 3977.3025 3753.1729 +Q9W1W9 PRADC1-like protein 9.69 1 1 0 1945.3467 3301.277 +Q8IRE5 RH23915p 21.54 1 1 1 929.9109 2088.1843 +Q9VWL7 Rho GTPase activating protein at 18B, isoform C 0.76 1 1 0 611.2113 4369.2495 +Q9VJ12 Acinus, isoform A 1.49 1 1 1 439.9596 402.6966 +Q9V9U9 Nucleolar protein 16 3.86 1 1 1 14721.22 17030.434 +Q9VBQ5 LD38433p 1.91 1 1 1 21147.578 27576.518 +Q9VZR5 RE46159p 11.06 2 2 2 18286.6287 27657.0654 +Q9VPB7 FI17508p1 1.3 1 1 1 2356.0193 2889.0884 +P52485 Ubiquitin-conjugating enzyme E2-24 kDa 8.62 1 1 0 640.8032 598.08813 +Q8T092 LD21421p 2.45 1 1 1 3700.6697 2499.662 +Q9V3E5 Tetraspanin 3.75 1 1 1 10198.637 14586.319 +E1JJN4 Uncharacterized protein, isoform B 0.86 1 1 0 1793.3964 3180.1228 +A0A0B4KF40 Sulfotransferase 3, isoform C 1.52 1 1 0 20938.541 23786.973 +Q7K4G8 LD40944p 1.7 1 1 1 4304.9688 6132.355 +Q8IRR5 NAD-dependent protein deacylase Sirt4 2.88 1 1 1 5633.024 7065.181 +Q9VHW4 FI21225p1 0.74 1 1 1 1892.8334 3111.956 +Q9VKE7 GH09228p1 10.39 1 1 1 481.26407 1656.8329 +O44424 Splicing factor ESS-2 homolog 2.2 1 1 1 8582.258 6605.1807 +Q9VMI5 CG9135 protein 1.44 1 1 1 3387.3801 4942.867 +Q6IGX9 Neuropeptide SIFamide 12.5 1 1 1 29949.924 38434.906 +Q9VVJ6 Keren 4.61 1 1 1 7033.906 7686.53 +Q9VV28 Neuropeptide-like 3 12.22 1 3 1 220103.49000000002 271117.216 +Q9VPT5 Peroxisome assembly protein 12 3.03 1 1 0 2419.0935 823.1925 +Q8SXY1 Hadley, isoform A 5.31 2 2 1 259218.7 341392.66 +M9MS42 Tyrosine-protein phosphatase non-receptor type 9 1.27 1 1 0 19412.473 21493.11 +Q9VV94 Uncharacterized protein 10.66 1 1 1 11306.547 18002.904 +A1ZBN7 DUF4817 domain-containing protein 10.75 1 1 1 2537.9133 1676.7305 +E1JH07 LD18062p1 8.0 1 1 1 30612.236 38153.855 +Q9VWG2 FI07430p 2.75 1 1 1 819.3984 2653.0654 +Q9VT99 RNA-binding Fox protein 1, isoform J 3.15 3 4 1 6302.4224 5425.3794 +Q9Y113 Negative elongation factor B 1.35 1 1 1 2930.0405 5773.757 +P36192 Defensin 8.7 1 1 1 3705.2075 2853.961 +A0A0B4K7P4 Straightjacket, isoform D 0.73 1 1 0 4820.4165 5912.7183 +Q9W1A3 Zinc finger protein RP-8, isoform A 2.31 1 1 1 5136.1577 6591.7314 +D5AEK7 1-Acylglycerol-3-phosphate O-acyltransferase 3, isoform E 2.02 1 1 0 6695.043 6689.5923 +Q9VAK8 Protein Diedel 8.7 1 1 1 2268.6177 2948.0022 +Q9VC61 Protein CREBRF homolog 1.99 1 1 0 8429.439 5080.5303 +A0A0B4KFX0 Uncharacterized protein, isoform A 21.54 1 1 1 0.0 382.9634 +M9PEV2 Ubiquitin-protein ligase E3B 0.74 1 1 0 0.0 4094.2183 +Q9VTT9 Differentially expressed in FDCP 8 homolog 2.03 1 1 1 6873.8975 7815.859 +Q9VAL0 Signal peptidase complex subunit 1 10.2 1 1 1 67280.69 87984.65 +Q0E908 Hillarin 0.86 1 1 1 2413.3389 1870.6577 +A1ZAV1 Coiled-coil and C2 domain-containing protein 2A 0.52 1 2 1 383522.903 459653.335 +Q9VPH4 FI03293p 2.31 1 1 1 3546.0994 3185.209 +Q5BIL9 SD21168p 1.63 1 1 0 21908.568 33104.465 +Q9V668 Protein transport protein Sec61 gamma-1 subunit 19.12 1 1 0 7981.9316 8729.698 +A0A0B4KI70 Partner of drosha, isoform B 2.59 1 1 0 6984.8086 6686.9043 +A1Z6H0 Kune-kune 2.65 1 1 1 39837.418 29661.225 +Q9W4L1 Large ribosomal subunit protein bL33m 18.75 1 1 1 2066.2456 2411.438 +M9MS77 Uncharacterized protein 7.56 1 1 1 7313.4526 3161.8357 +Q9VHJ4 GH04846p 2.25 1 1 1 5311.451 4981.1113 +Q9W226 GEO07239p1 5.88 1 1 1 8450.906 10196.114 +Q8IRJ8 THO complex protein 7 2.78 1 1 1 12728.335 22695.88 +Q9VC44 Allatostatin-A 4.64 1 1 0 4952.449 7008.9116 +Q8T0K1 F-box involved in polyQ pathogenesis, isoform B 1.76 1 1 0 6367.2153 5452.2334 +Q9VKJ0 Homogentisate 1,2-dioxygenase 2.28 1 1 1 13827.009 15432.383 +Q9XZ68 Geranylgeranyl transferase type-2 subunit beta 2.02 1 1 1 20982.652 24353.252 +Q9V412 STING ER exit protein 4.45 1 1 0 3443.9912 4696.115 +Q8MRQ2 GH05923p 2.74 1 1 0 7863.427 8766.296 +Q9VE99 GEO12060p1 16.67 1 1 1 3301.6592 4356.65 +Q6XPX3 Phospholipase A2 4.3 1 2 1 17882.6963 20463.22 +Q8SYR5 GEO07715p1 7.1 1 1 1 12700.761 15682.777 +Q8IMX7 Mitochondrial Rho GTPase 1.38 1 1 0 3864.6802 2992.46 +Q9VQE1 Uncharacterized protein, isoform C 4.4 1 1 1 4598.9136 4543.235 +Q9VNW1 DnaJ homolog subfamily B member 9 3.12 1 1 1 3866.8923 5695.1533 +Q9VV09 Uncharacterized protein, isoform B 1.39 1 1 1 4309.039 3507.6174 +A4IJ70 Dpr-interacting protein epsilon 1.71 1 1 1 8251.165 8086.777 +Q9VHB2 Mitochondrial pyruvate carrier 9.93 2 4 1 5716.9956 9414.471 +Q7PL72 LD05675p 5.85 1 1 0 2831.2617 2535.257 +Q9VG19 Beaten path Vb, isoform A 2.74 1 1 1 4134.0854 4468.9766 +Q9VXU7 UDP-N-acetylglucosamine transferase subunit ALG14 4.71 1 1 1 4859.9976 4886.6997 +Q9XZ16 Ubiquitin-like domain-containing CTD phosphatase 1 2.5 1 1 1 6255.7563 8863.964 +E1JIG6 BBSome interacting protein 1 13.16 1 1 1 4787.1504 5938.9756 +Q9VLK4 Diuretic hormone class 2 6.9 1 1 0 17983.75 19048.38 +Q7KTX7 E3 ubiquitin-protein ligase parkin 2.07 1 1 1 3571.5723 7202.035 +Q7KVH9 Protein salivary glands marred 5.32 1 1 0 3030.5498 4466.8535 +Q2MGN0 FI01014p 2.5 1 1 0 2916.9397 3156.478 +Q9VXY2 MAP kinase-activating death domain protein 0.82 2 2 0 6047.075999999999 3370.13114 +A1A6X2 IP16893p 12.07 1 1 1 45163.97 39947.66 +Q9VU77 Bifunctional peptidase and (3S)-lysyl hydroxylase JMJD7 2.85 1 1 1 9112.409 8272.543 +Q9VSG7 Uncharacterized protein, isoform A 2.61 1 1 1 2695.3494 2361.5579 +Q24320 DNA-directed RNA polymerases I, II, and III subunit RPABC2 5.34 1 2 1 45314.098 52977.803 +Q7JXE1 Bunker gear 4.75 1 1 1 0.0 650.5098 +Q9VKZ9 FI06463p 5.39 1 1 1 37040.344 9369.333 +Q7K105 LD20892p 1.3 1 1 1 3389.138 5284.956 +Q9VE10 Uncharacterized protein 2.69 1 1 1 7931.1562 9890.034 +Q9W352 CXXC-type zinc finger protein 1 1.66 1 1 0 715.9259 0.0 +Q9W081 AT01075p 2.34 1 1 1 2443.7092 811.65137 +A8JV29 Actin-related protein 2/3 complex subunit 3 4.46 1 1 1 9811.963 15947.184 +Q9I7W2 COMM domain-containing protein 3 3.79 1 1 1 11904.918 20182.521 +Q9W3C0 Probable U3 small nucleolar RNA-associated protein 11 3.38 1 1 1 9867.597 8208.307 +Q9Y0Y7 LanC-like protein 3 homolog 2.86 1 1 0 502.10785 619.6838 +Q8SXI2 Craniofacial development protein 1 2.9 1 1 1 7965.2383 12623.4 +Q9W009 GH12037p 3.17 1 1 1 36844.277 10664.352 +Q8SZ87 Thioredoxin-like protein 4.93 1 1 1 31028.326 35039.22 +Q0E906 GEO11031p1 11.69 1 1 1 12371.269 15818.173 +Q9VPC4 VWFC domain-containing protein 3.12 1 1 1 2649.7944 4212.8096 +Q9VBT7 GH13495p 1.9 1 1 1 8679.587 7877.6587 +Q7KU86 Ubiquitin-related modifier 1 homolog 6.93 1 1 1 64832.555 60991.2 +Q9Y1A7 LD25378p 2.0 1 1 1 21148.475 18517.76 +Q9W0P3 Mediator of RNA polymerase II transcription subunit 30 2.83 1 1 1 601.1195 1751.2394 +Q7JR91 GH12715p 3.19 1 1 0 5819.487 7980.124 +M9NEC4 Uncharacterized protein, isoform C 4.56 1 1 0 1500.7069 1703.2286 +B7YZH7 GM12693p 21.43 1 1 0 540.6847 678.5744 +Q0KI85 Sidestep VI, isoform B 1.2 1 1 1 345.27997 403.09882 +Q7JWG9 Large ribosomal subunit protein mL52 5.56 1 1 1 7782.4004 3885.4592 +A0A0B4KEY8 Anaphase-promoting complex subunit 13 12.5 1 1 0 2852.7478 4254.6826 +Q9VLL8 Peritrophin-15a 7.61 1 2 1 17367.898 19159.193 +Q9VJU2 Nimrod C3 3.12 1 1 1 8133.368 10247.198 +Q9W3Q2 SD08447p 1.26 1 1 1 14341.798 15996.866 +A1Z979 Salivary secreted peptide 6.25 1 1 0 21339.736 26157.832 +Q9W4F7 Heparan-alpha-glucosaminide N-acetyltransferase, isoform A 1.74 1 1 1 4672.493 5434.188 +A0A0B4LFH8 ATP-citrate synthase 8.76 10 14 0 339956.58164 405686.0185 +E1JI74 Z band alternatively spliced PDZ-motif protein 66, isoform O 65.95 18 93 0 161197.163 229774.41700000002 +M9MRN1 Supervillin, isoform AG 3.21 5 6 0 102108.37730000001 140856.5576 +M9MRN5 Supervillin, isoform G 2.19 4 5 0 57376.537 75182.2106 +M9PC24 Uncharacterized protein, isoform K 12.95 7 10 0 78207.0267 74607.7977 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_expression_matrix_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/TMT_expression_matrix_ms3fix.csv new file mode 100644 index 0000000..0101461 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_expression_matrix_ms3fix.csv @@ -0,0 +1,1669 @@ +"protein_id","Earth_F1","Earth_F2","Earth_F3","Earth_M1","Earth_M2","Earth_M3","SF1g_F1","SF1g_F2","SF1g_F3","SF1g_M1","SF1g_M2","SF1g_M3","SFug_F1","SFug_F2","SFug_F3","SFug_M1","SFug_M2","SFug_M3" +"A0A0B4K692",14.037240032759,15.7357971900809,17.6543359435988,13.6845027703483,15.8541494341468,17.7246162493948,14.1648261078672,15.8914914541735,17.7610926408992,14.0019483374587,15.8318911140651,17.7320414094911,14.165156617914,16.2146920328162,18.1769758288545,14.4063193910513,16.0923618156888,18.0036278914135 +"A0A0B4K7J2",15.3587116180192,15.6242096694441,16.9290431793959,14.989064187701,15.0460005630306,16.3559631874593,15.146988885336,15.162065305391,16.4674292690608,15.2290527346252,15.1170431520127,16.4318273477707,15.3344314177887,15.4545266848476,16.6662716422739,15.5599169637275,15.7481216162736,16.6731970202038 +"A0A0B4KGY6",20.5248901575634,21.3030869673414,22.8405182590124,20.8814231363393,21.542147860102,23.0844756912557,20.696147394954,21.3616046067982,23.018715292184,20.8478269932793,21.6380689735768,23.4279075372386,20.686338148939,21.3966016978775,22.8390881834122,20.8627875483588,21.6680733223335,23.2421191438671 +"A0A0B4KH34",22.5883610773756,23.7028767501254,24.0327121001698,22.4095172871074,23.6291182732395,24.0760804727598,22.5970213996363,23.7552379956835,23.88035100258,22.4743277862582,23.6297791185023,24.0955433285592,22.5372990059315,23.6380702894803,23.9625243559701,22.5028474446146,23.4706260088979,23.8775961744023 +"A0A0B4KHJ9",23.4968763033741,24.6525773907681,26.3301811924082,23.3140016677722,24.4092018368997,25.8819735318955,23.3796198764758,24.4250505896035,26.2788794819623,23.0661519962765,24.2191971694065,26.0153364505586,23.2500050243595,24.4019767353723,25.8710357558452,23.1975456787903,24.4122932930296,25.6246961652071 +"A0A0B4KI23",20.0036525723621,20.7138764969923,21.3954092959766,19.9185205306108,20.5980337948025,21.2371681586035,19.8154594799554,20.3784754762538,21.3224631254833,19.5749979936243,20.4471844591571,21.1365253614935,19.9831411574068,20.4759649017843,21.2516331143663,19.709332139293,20.4895179140763,21.0097243580233 +"A0A0B4LFA6",18.7137592574966,18.8236827556091,20.5692841430042,19.0881863387764,18.9663779697446,20.5202979826025,18.8890338830905,18.9291705123159,20.6962507647064,19.1093793956455,19.1066405297894,20.7095388203951,18.9492987250953,19.0144330989846,20.6969753942835,18.9689121397638,19.1456627286893,20.6484775125497 +"A0A0B7P9G0",14.5928202575015,12.4577101736729,15.9032729739396,14.2078452697683,12.6252317721446,15.8942016515332,14.6405827368957,12.8808621921004,15.7309379546453,14.6737655281844,12.8829315986479,16.0401341602005,15.1160316745909,13.5757005911733,16.4320948096328,14.9381441901571,13.7010843957103,16.473676992848 +"A0A126GUP6",16.1259169690665,17.3902934054597,18.1643908133209,16.0223950101516,17.2864289805526,17.9862360820398,15.9618717410184,17.2711610048282,18.0336028961272,15.8242349246042,17.1030939835971,17.8496304771478,15.2593731542736,17.0499928831809,17.6481121933974,16.0167001878307,17.2427098928545,17.7699353759704 +"A0A6H2EG56",19.9569217534871,20.5680580802085,22.4814377595333,19.9355489258234,20.6183870440023,22.1307620751317,19.9135764120341,20.50848396884,22.4262634659875,19.7502300917762,20.666025458142,22.2714382275695,19.6996297617628,20.6032276260265,22.0870292855573,20.1014597862797,20.7219081693161,21.9703570528223 +"A0A6H2EGA2",13.4765011388525,16.5556902493391,17.4812285890482,13.5180305480337,16.588571714877,17.5456479704549,13.5029153064511,16.3375859431499,17.4870607897443,13.4202911377221,16.6181062610495,17.779793831187,13.6772094027883,16.2753554613313,17.3431286674074,13.4315229464336,16.520354849318,17.3410954400448 +"A0AQH0",16.4560863425252,16.703312199031,17.3145394335605,16.2884827736285,16.7262636193522,17.2101999606723,16.3790294477212,16.8753042261283,17.4941113988942,16.6277893928358,17.0137391061263,17.5138130052355,16.3510426785485,16.9043675586808,17.6382919133881,15.8784860589703,17.0260717095491,17.7423098823376 +"A1Z6G9",13.5699644284857,14.6316653943782,14.2163233107023,13.6538931598653,14.4223851060239,14.5831850615972,13.7531565352411,14.5628461661978,14.4019719141467,14.2351046549447,14.5140445463424,14.8138551984468,13.922782968704,14.3890031884993,14.1976217673669,14.042855031992,14.2871673756081,14.350861952376 +"A1Z6L9",14.0764359961172,15.3690132464974,15.7317566358339,13.9231297971341,15.2773741447054,15.6300426923757,14.3421534431656,15.7693880047708,16.1354060946877,14.2694656409644,15.5403569070369,16.1063891487859,14.4158551626273,15.9323280380691,16.6094340317063,13.962760226545,15.3777789718309,16.2486574548531 +"A1Z6P3",16.327815022086,16.9776463484285,18.5956729917104,16.4379082037887,17.0339695892703,18.7348688679204,16.240302324189,16.7647036088622,18.3440450114017,16.2476481685412,16.9230893248356,18.655990558708,16.2080471077523,16.8044637229285,18.2655216470917,16.2907115654358,16.9058231508789,18.3450288227904 +"A1Z6R7",15.9221504514777,18.6892651122114,19.1324886819612,16.0679638256346,18.9701574873726,19.4632389085206,15.6243486041131,18.6398005544791,18.8198925087113,16.0524844525748,18.7606310684723,19.1566203426953,15.6714644619104,18.7070107195291,18.8843201152521,15.9048205006851,18.852712686642,19.287325827195 +"A1Z6S7",17.2777121896655,17.7130946130703,17.7610234393646,17.1128523420963,17.7609867688623,17.8099828721427,17.1357512961651,17.7225049987021,17.6487527201087,17.1637774705895,17.8311721433763,17.9376610726866,17.0040832558696,17.7874031999273,17.7014680532753,17.0528372454943,17.9113894827926,17.8118176688893 +"A1Z6V5",19.0597059463171,20.4577946442679,20.6635396311239,19.2780262113391,20.7000690321336,20.9500750243643,19.0598935045914,20.5131644520298,20.5331000449224,19.0863319039288,20.4777770529629,20.6744342503816,18.634428956894,20.2222448059705,20.3105222004377,19.0604076550468,20.5331020212567,20.6928911908302 +"A1Z6X6",18.2249835560681,18.7284788853504,19.1815243436642,18.0357423748362,18.5006635056739,18.9849757670863,18.0769413974575,18.7314007110413,19.0123618739766,18.1496767122777,18.385625448142,19.1635346737752,18.1389244564748,18.734637860318,18.8230302427174,17.9064508607982,18.5922132387361,18.8535158128923 +"A1Z729",15.1921907772887,17.0618967588039,17.847510140223,14.8489998248187,16.9535111576707,18.0637954663945,15.2152120880368,17.1490595647835,17.890337251231,15.07125601028,17.0732499085776,17.9070544107281,14.959613554738,17.2452779264659,18.0012998759559,15.19606786676,16.9115799782501,17.8524825952867 +"A1Z7B8",15.1945612620401,16.8118310794276,18.116033924864,15.2805493225516,17.0603242538398,18.1147848976364,15.4297496996371,17.2036049491291,18.2489343852175,15.5343095543886,17.1830063008825,18.1946144716818,15.4932931386511,17.4444642008959,18.3432958629968,16.0751265310283,17.5008343917623,18.4410639225618 +"A1Z7G2",17.8572624128023,19.1038185392217,21.4641823113576,17.9993968819145,19.2702736332901,21.4076937133554,17.96570097553,19.0925026790431,21.5318323920608,17.9154331066477,19.3507756701826,21.6055369167538,17.8872316180588,19.0221503021602,21.5097322297172,18.0217255781357,19.5065034698384,21.5265314707928 +"A1Z7H7",17.108946184006,17.8827925020272,18.4298540799601,17.0372937015171,17.9003830759532,18.4299816932408,17.2593144434671,18.0698189767311,18.5882362254771,17.0881589309811,17.9803208849507,18.5378746329615,17.0094085429117,17.9775805827658,18.3556417423522,17.2614517945817,18.0924742687029,18.6216245953724 +"A1Z7H8",14.5826587120733,15.1920608953389,15.1485901776769,14.1899677764587,14.9439595507555,14.5509496103357,14.5036172873459,14.9340211074574,14.7329426509491,14.4804481519245,14.9102667477932,14.6375210591355,13.9521296853656,15.0796418190846,14.5997201394368,14.1952563709686,15.0431415834452,14.678365851 +"A1Z7K6",14.9741243946813,16.0430411598156,15.6677907860765,15.0076006269126,16.3629984562714,15.4274261061469,15.0853980410543,16.1180498243544,15.5915532020391,15.0725198296736,16.3700804338652,15.569462211913,15.1673035809736,16.0265070183401,15.2689462341245,15.1514705753026,16.0719445108496,15.4609431256699 +"A1Z7K8",16.6147118575973,18.1174998797055,18.6139202722665,16.3976504408354,18.050646985053,18.4865481060458,16.4236896260187,17.9390339483366,18.4982432462149,16.4607441106235,18.0492354486461,18.5173389811449,16.2547248985924,17.9129669891143,18.3578235424157,16.1598821464533,17.9707790116475,18.1832394022634 +"A1Z7P1",11.2310979752152,15.4034622164991,17.0776781642906,11.5216713069878,15.1537811483383,16.9454414954004,11.868628291717,14.9132798785894,17.0623434588212,11.3313926983586,15.0424530564162,17.2009404348176,12.138160900802,14.9790196387649,17.1536046895558,12.3294415109763,14.6463789977696,17.1034713293662 +"A1Z7S3",19.0034976916024,20.4531373652627,20.6898218637681,18.8688270118014,20.4316261763359,20.7497850443838,18.9494041795116,20.4179660737524,20.4948111241392,18.8474540947125,20.4184281113873,20.5997180215715,18.9353562999248,20.5814370076418,20.7953401863384,19.081253190777,20.5479752459735,20.841057004347 +"A1Z7X8",16.6393722100755,16.7004347450612,16.8868259632061,16.8319002474429,16.776777750769,17.1964207830119,16.9630563580075,16.9085208854377,17.1415421946056,17.0958521018676,16.9433417069984,17.4046150703487,17.1117652253516,16.918793139476,17.3539825158039,17.3048717401179,17.083661053006,17.2840847949661 +"A1Z803",17.8277167660265,18.8294802064259,18.6078754713936,17.940309726905,19.0510329700835,18.5797969069716,18.4016481311947,19.4940079628799,19.1017438902999,18.2417314239631,19.5005800422163,19.113363598482,18.4600613505663,19.6687703798594,19.2905687698946,18.3245707379173,19.6561338292193,19.2138810136972 +"A1Z843",16.4193026654492,17.5728705655592,18.3217689216565,16.5395614917206,17.4164713911488,18.2791857086982,16.6903266540435,17.5699131363226,18.3830543642392,16.5482298175752,17.61543620904,18.5077667400026,16.9457724045111,17.814186848023,18.7935538309685,16.7812346600391,17.6765419952212,18.7088781779545 +"A1Z847",19.3832085857714,19.9453914348949,21.2238002713893,19.5564729876104,20.2252623376241,21.3367869179449,19.0924518794811,19.6709819340046,20.9147980414638,19.2817682809026,19.8746773790414,20.9880467272769,19.0006077212546,19.7540548606919,20.9090014490879,19.5139117281848,19.7706336123489,20.9729966357088 +"A1Z877",19.1539165171895,19.3835404601929,21.1222495656321,19.2247982365102,19.4438383444227,21.0498702796423,19.2711081627496,19.483371689193,21.1622100088242,19.2117099071964,19.406296873113,21.1223022229633,19.1792831632933,19.7199835052681,21.282584437972,19.4283707133709,19.589315973923,21.35818899995 +"A1Z8D0",10.5787734367458,15.5822563068711,16.3811967706391,9.06581080792838,15.526498091396,16.0228304365979,10.5814572848925,15.7661438921611,16.215661316893,9.31442654672228,15.3293724819996,15.9711961503807,9.20246148705085,15.741982451658,16.159481429709,9.61800226507392,15.251322876004,16.1690547283129 +"A1Z8D3",13.4222460083606,17.5161152917894,18.3988806576279,13.8092595587986,17.4357103064754,18.8846019674125,13.9041202329517,16.8611600022091,18.6000137950496,13.9055060990647,17.4356831379051,19.4120147610255,14.0805140771888,16.9587934699464,19.0406516631675,14.0113191804107,16.9535418107722,19.0766388229206 +"A1Z8H1",22.1010988378633,23.0011392195032,24.5577936341808,21.9926670017743,22.8829000150914,24.4647879109827,22.0319986924032,22.8858656050334,24.491753249242,21.7906333535896,22.7520258741184,24.2395378238075,22.0566085962628,23.1856774361987,24.5032485076627,22.0514950662759,22.747932720302,24.3539944015012 +"A1Z8H6",16.3472514327107,16.9853155681758,18.6381602999047,15.7021570165344,16.724818221492,18.2460211610976,15.4936273369762,16.3788820943044,17.9435894657686,15.8125373755325,16.5783264965717,17.947580475785,15.8523599264615,16.3777959713973,17.7455118098915,15.5591937734925,15.9119124986148,17.7274649775115 +"A1Z8Y3",15.0209181777654,15.0336278538899,15.4061555009102,15.1777498816982,15.2336009566491,15.3194006623191,15.0199814494975,14.8152585938492,15.3689623209933,15.1843853366428,14.8604367982547,15.2572304692694,14.6799156302118,14.8509376105678,14.8765223455134,14.9823205631421,14.6942834930323,14.9907535406278 +"A1Z8Z3",19.158047915647,19.8688986950681,21.3939178864488,19.1544641489838,19.8523260923968,21.3019034945534,19.0015611625169,19.5157779131442,21.1102722789672,18.7681295124783,19.5244640408406,20.9285157897331,18.9208633893172,19.8912696521173,20.9987921255734,19.2972077159965,19.8329499267279,21.0608047437439 +"A1Z8Z7",18.9884193100573,18.4907577415898,18.6022460692359,19.1707291432908,18.6943094278975,18.7377519976662,19.1093392769431,18.6673124923318,18.9334489420477,19.1235250712421,19.0452623330224,19.2336129555928,18.9003780471869,18.6047769892866,18.6374984893016,19.1926206833031,18.9514209725609,18.9379549428847 +"A1Z933",14.0163230337882,15.5559936060066,18.2412452908685,13.5889635000562,15.7900836746363,18.0467479247354,13.5478469017777,15.3576709587761,18.0123645770312,13.6940691508641,15.5470847044423,18.059028278941,13.4804259049807,15.5579432117611,17.6691786860598,14.0842844006284,15.7750231678589,18.0478234050547 +"A1Z934",17.8971058042169,19.439748751797,20.3944864536497,18.0074119643652,19.7442629300024,20.4794475944521,17.9937023778176,19.5389948142467,20.3265373715126,17.956232779062,19.6226618752785,20.3036507980945,17.9768956975876,19.6670454498778,20.2983738030678,17.8593494710747,19.5318891436939,20.3103920940769 +"A1Z968",16.7720275111103,16.9960319146529,18.1474295504951,16.7396337437155,16.8987365104219,18.1729423175203,16.8421372337331,16.9070815997759,18.0001987908191,16.754640108576,16.9152104422215,18.0495365476605,16.578218100123,16.795949860994,17.9721397140235,16.4739501163713,16.7797620377075,17.6263468058021 +"A1Z992",15.2596294477578,14.6643251552759,14.2460860291815,14.9351185274835,14.0503518207228,13.6925168478738,14.9150150797595,14.5063988997806,13.7782060236709,14.6351517830893,14.0745099355016,13.164706252225,14.264415347494,14.2033693153366,13.6653214801865,14.4961614248848,13.889798927627,13.2733530954623 +"A1Z9A8",15.4131407384272,16.496337477631,16.9559428198305,15.5597089260416,16.6793163028583,17.1147848725558,16.1738480800267,17.0501120605013,17.4756858326901,15.7749944274188,17.0902339303711,17.4971191158638,16.1512570804119,17.1400173518213,17.4199161446459,16.1110107263114,17.0333349534126,17.4997393903795 +"A1Z9B5",15.8663743012269,15.8163172302267,16.0936036807187,16.1086199995983,15.9963970848471,16.5503327415385,15.2999043917696,15.405777699863,15.7307208529694,15.6049684127846,15.7161628065737,16.305307355829,14.5154489908293,15.3684712574378,15.7308376030483,15.6853429943152,16.2085134890186,16.1169306790778 +"A1Z9E3",21.4240831040894,21.4411515195094,22.7024832967374,21.3974556403614,21.3769880551812,22.5933843354779,21.3992025288364,21.3876280150798,22.4702402562886,21.2038253117779,21.3073587668245,22.5786552160323,21.3532716287323,21.4495896122657,22.6067731275995,21.3963079948772,21.5428406797891,22.6693596441812 +"A1Z9I0",18.4536726353969,19.4812356217125,20.8635233795465,18.2725485281769,19.2614383653642,20.6973033671679,18.1590147664633,19.4123315961928,20.8074048355765,18.067186470853,19.2387868163574,20.598011473194,18.1594388672008,19.4493579761298,20.5897488883142,18.0017140692978,19.2243411884925,20.4744185312755 +"A1Z9J3",17.0459634902251,18.326829212969,18.439101151567,16.5003242383972,17.9561833584094,17.9924338093544,17.0665340243843,18.1208942400078,18.4009971321013,16.6661803063905,17.9664935586581,18.1028240880848,16.8179276790595,17.9790371470004,18.2750560874357,16.4848879567738,17.5384883001736,17.9497590379835 +"A1Z9M5",15.3318104927115,14.0402311861944,16.4485521723853,14.9079623523012,13.9431001283145,15.5684543516202,15.5179403152864,14.0485996015164,16.0632405371328,15.159899943394,14.0443278986426,16.1016021063684,15.0526780439129,13.9502904579356,15.8420012464355,15.1374530674163,14.2752153593889,15.8158857044856 +"A1ZA22",12.3434732164546,13.9936906225864,13.5520652662863,12.3392417808545,13.6202804255198,13.2197439283336,12.661761080962,14.116625158198,14.265973063836,13.0348222296037,14.2786570629365,14.2548077682136,12.6482317298073,14.0550318756175,14.2433762364166,13.7405363750504,14.6613254912234,13.727134024565 +"A1ZA23",17.4634043755078,18.1265344788909,19.3298517492922,17.7188262456455,18.4266205848685,19.573829166385,17.5237875631488,18.1860013477923,19.4565859448477,17.687598964884,18.551486244646,19.7223262381868,17.284707957881,18.0454006144436,19.0912948577745,17.4306335675235,18.2992941001504,19.333294372819 +"A1ZA83",15.6790213247074,16.914873130073,18.405216943784,15.7829329456723,16.9379987059357,18.486700508939,15.7827996126093,16.918940984297,18.225092132322,15.8603449356478,16.9000760921591,18.6004624684007,15.8430843249939,16.8933611256078,18.4187042542265,16.0247250039923,16.751954899477,18.5277666003309 +"A1ZAA9",16.7514733981429,15.7264019933201,16.8671352601997,16.8724796518734,15.7691232165355,17.1102445151366,16.7816113897345,15.8107757465635,16.6602712423174,16.9264502189126,15.7689366826232,17.0063388045775,16.9812587265976,16.0034636241371,17.2043948906213,16.962566954215,16.0568219598877,17.1831664336778 +"A1ZAL1",15.9404264840264,18.041907242395,18.0119785930435,16.0812877369276,18.3991155257727,18.0498214762864,15.5046059593378,17.7798779851209,17.7342788553071,15.6480057424187,18.1216745681624,17.8034704155925,15.6776766646311,17.9702959327831,17.7688861658844,15.5304035038133,18.4832615912268,17.9073132753442 +"A1ZB23",16.8568264669892,16.4148128108281,14.8366764694408,16.7936536769038,16.6286026436776,14.6547380041931,16.4195876967976,16.1844309308745,14.6715480742694,16.5793020673838,16.3449715527077,14.4175172733848,15.8502788727587,16.5041506757921,14.7313521663276,16.6118540611131,16.7661652460478,14.3454697691502 +"A1ZB68",18.4415210954078,19.7364271613102,20.070837379016,18.3266678498652,19.8720589438564,20.276843782923,18.0839493309887,19.6601645221884,19.8923677085051,18.2743401252608,19.7881849955591,20.113191597335,18.3277041379776,19.6738077706672,20.0580687597939,18.0616167506006,19.4600912226099,19.7761484942038 +"A1ZB69",19.4071756393768,19.6714227126288,22.6759848263411,19.0882750322242,19.571942249805,22.680299784189,19.2996622237011,19.8328800418658,22.565432688651,19.0531135707743,19.4555133732465,22.4419954728386,19.1442250094824,19.7275525774166,22.5099834638255,18.9704303189294,19.371002218876,22.0617916147047 +"A1ZB70",13.1742130237324,17.1599024506847,18.6928962961871,13.1321292029595,17.3629231762633,18.7875190665351,12.925873930863,16.9017792500264,18.4863188907838,12.9652061175671,16.9266736150879,18.4895626565815,12.5844834871988,16.8285856475281,18.1882004819464,12.6405458450023,16.5310170487714,18.0946260694106 +"A1ZB71",17.5077070137741,19.7016391029618,20.9545954368124,17.2935098221332,19.7498473558266,21.0658707717524,17.3804902588712,19.4970444686595,20.5580992794358,17.141098111288,19.3595817758956,20.7299195541462,17.3443573625162,19.5823714362927,20.8036044491817,17.3931151855909,19.3663905928099,20.4602639058132 +"A1ZB73",11.8369933261286,15.9706151069939,14.5835813191469,10.5118255253012,15.92061491339,14.4442870109406,11.5698711526112,15.6729872350483,14.061951571539,11.3496417420526,15.7304129656584,14.1452710910021,11.0609492013113,15.8500777749369,14.0250052755761,9.03365387934758,15.4644212793514,13.6611396729918 +"A1ZB79",20.0452626322503,20.3548871391802,22.1716218858281,20.039575028486,20.5372322030842,22.2491698173609,19.912355494055,20.2639552290855,22.0261088268681,19.8320107054647,20.3618339820774,22.0247688167223,19.891137757227,20.4044371249557,21.9261478539962,19.9814070224328,20.2561827893937,21.8334284538928 +"A1ZBA5",14.5401512556609,15.0290035494454,16.6939179742268,14.6645542457015,15.1955756369341,16.5437778684471,14.7658657457824,15.5869541505582,16.5913414673064,14.9131947871292,15.4484931704408,16.8843114287353,14.8421835306998,15.7339009402424,16.402474061946,15.4338331543442,15.7258909022537,16.5669319794773 +"A1ZBD8",11.3209556576026,14.2126726636143,16.2578105017325,11.2559497771196,14.2478687672791,16.5021770753478,11.7614594480682,14.185650806062,16.4116805875177,12.2536530592615,14.7334099670202,16.7593997210632,11.8648878323488,13.8204156568972,15.971274624732,12.0774465368379,14.5436616026094,16.531644429355 +"A1ZBJ2",17.9051125835532,19.4508171054886,20.4981196156444,17.7046865724278,19.3617698618723,20.2283980353396,17.9700998660865,19.7158877487153,20.5628889215306,17.6941187760456,19.3449987063172,20.2980827696926,18.3669727444398,20.3340339053716,21.366210346772,17.9796618573581,19.6459451565217,20.5343842647741 +"A1ZBK7",17.739381054219,16.950870048155,18.6059607836878,17.7782406241667,16.7563782080119,18.2809323595022,17.5690113878105,16.5626649967306,18.4632720964584,17.6508798059841,16.8639373404384,18.1375498339388,17.5361381980514,16.606009300426,18.3439100504494,17.8245777555683,16.5024032291563,18.3155705588682 +"A1ZBM2",17.3362958760143,18.5857614738153,19.5828984707542,17.499269554776,18.7693024970714,19.5858330254674,17.401254299978,18.7969647328709,19.395351201452,17.4202743252966,19.1291368794947,19.5134594168573,17.2482753088141,18.8698254468995,19.3015205432994,17.569042807756,19.0750816076958,19.4511324579417 +"A1ZBU5",16.7884689618155,17.2863553873104,16.6979927349549,16.8176911378535,17.3953734632059,16.4457351415987,16.3387060450012,17.156997393596,16.6342424779968,16.1906275132583,17.0768879058732,16.3304698461461,16.3435895988559,16.9139311909431,16.3170546142245,16.1382234201825,17.0323688924223,16.2109465238876 +"A1ZBU8",20.1460090622682,20.8400349420261,22.0420550695753,20.0663684671184,20.593380218004,21.7623197184592,20.1681439957724,20.7024848690639,22.1353813273329,19.5717292345434,20.3668387517381,21.5855367493547,20.0831728576108,20.6481798306437,21.8439216953767,19.8597917699501,20.2640194222007,21.372572642007 +"A8DRW0",20.7576006509019,21.2962232896295,23.2719742183887,20.5067298262783,21.1671426419403,22.818693496877,20.3949437344898,21.0072317058587,22.906702885357,20.33335978036,21.0881538878543,22.6946706190219,20.3743522775422,21.2791017529528,22.9264752375224,20.6687351993153,21.3476317708236,22.8544501907552 +"A8DYK6",15.2879618954036,17.1545315769912,17.0061395162843,15.3155803172778,17.2956371330336,17.1822972973457,15.3797176859165,17.2654279625961,16.8023547776361,15.4054536833823,17.9157771556929,17.2092314504721,15.3600942022919,17.2320627065732,17.0096125755934,15.5365987079913,17.3846869453718,17.0726683991814 +"A8DYP0",15.522649501512,16.1330351306016,15.8667857977434,14.7172231744476,15.7283409699323,15.479990121261,15.26091125487,15.4630660883264,15.0839122689458,14.5269149187324,15.6686160740345,15.181261488395,14.980058269537,15.6586145920735,15.3487460400067,14.2245478323934,15.1691972576086,14.5859805878781 +"A8DZ14",17.8787433045231,19.3899546283295,21.0447074009615,17.939364199589,19.509215673858,21.1000908145097,17.7884595737512,19.4958038745846,21.0635934902739,17.8609382976085,19.549439903749,21.2231316749074,17.6480933172278,19.4815824180379,20.9008087640282,17.8214008787983,19.6183675433032,21.0568649972099 +"A8E6W0",15.8199411802979,16.9227887093016,16.8540882416623,15.4297446951767,17.0316110130263,16.9213957793341,15.6628820249247,16.7661904968831,16.6548183343521,15.6004003622428,16.8803927167099,16.9722270175163,15.5245596100776,16.8165038261602,16.5571510222295,15.5386091492911,16.791077029978,16.8136654133334 +"A8JNG6",14.5329209982841,16.5258240401265,18.1789719787804,13.9294199078476,15.8408358438545,17.4610312554393,13.8397783020533,16.1442297813605,17.6587766451262,13.6764380624384,15.501580009238,17.0722206929467,12.588683403109,16.250755184367,17.3892023364996,13.2599787756073,15.7198850859281,16.8599286084105 +"A8JNP2",19.5910364976864,21.0401728841134,22.8654156629493,19.3190355026349,21.191755042664,23.0376672541431,19.5005683338414,21.1239722893744,22.6020870470381,19.5178038269688,21.1440991541535,22.7874089541252,19.6909161105011,21.0930862347743,22.7370788190808,19.2993578177287,20.8821204121252,22.7025884115339 +"A8JNT7",15.7114468070416,17.2204297676016,17.3807417949615,15.6137204988738,17.3621769640491,17.195631410969,15.7575265749958,17.2278792903314,17.3977800308858,15.8972755703191,17.5559336997381,17.486420481339,15.9581906946785,17.5212844879762,17.2540988055877,15.9737992436259,17.6441022450309,17.345332435216 +"A8JTM7",16.6216306699571,17.5094078034971,17.9316155559248,16.7943039677909,17.3624790604234,18.0374604725285,16.9762777219892,17.6622136339028,18.3122347389623,17.1579561501322,17.7444749370459,18.3993407673539,17.0480561390915,17.5382030621058,18.4375873356917,17.415755759586,18.045922428281,18.5279240837366 +"A8WH76",18.6162570134603,18.760937821213,19.6046519252918,18.7268102078051,18.9009094849088,19.4449100305814,18.6461282454036,18.7674496266052,19.4152356764728,18.6176263898257,18.855562249735,19.4034976837879,18.6801615971025,19.0390662055218,19.5993220806395,19.1053641740256,18.9930676687356,19.5862582559573 +"A8Y535",21.6654396359512,22.169464258499,22.6799625090257,21.6700259753105,22.2610751092888,22.5544042181162,21.3568156120273,21.9801132476875,22.507117078418,21.2377342080464,22.0947703896259,22.4887411341009,21.2948588341286,21.9365518914224,22.2930221584112,21.7374977891217,22.1862364936993,22.541018701878 +"B7YZN4",13.7640770316261,15.7738137690632,17.1978411063608,13.62212418568,15.7068972717845,17.0949226422852,13.6432437916141,15.9216868595246,16.6026767826833,13.7628930167164,15.4855854915984,16.8005944109983,13.0649281238132,15.581062197239,16.7437073764264,14.4819398047928,15.5041611857621,16.7865388173542 +"B7YZT2",18.1593545761951,18.8693255544718,18.8532225791175,17.8275617041426,18.44270374154,19.1697864880993,17.830522598216,18.2586259286458,18.7663197195938,17.6980255663519,18.3503756149237,19.1489527738591,17.8433587130803,18.1556317194043,18.9767236080589,17.9185916246062,18.4333429179346,18.9030009491144 +"B7Z0C9",14.6736192151079,16.1703844418202,17.2760985545505,14.8352838658241,16.1595233563797,17.452864281711,14.6442610409446,15.8707066246231,16.8396794682149,14.6067626064209,15.9437949811461,17.4712139182393,14.6411181369909,15.8948675213707,16.9990807883453,14.5640522120579,15.955834328122,17.1952508401426 +"B7Z0N0",11.9331566568888,12.2479298635119,14.7357906606306,12.1769415015285,12.3012560943997,14.992761913279,11.8908399129323,12.3025249601276,14.6274159097494,12.4818506592478,12.3744590210588,14.8728479903918,12.4001362058701,12.3797833513887,14.8735922478232,11.8607292693636,11.940275172961,14.8593176254242 +"B7Z0Q1",16.0238734469164,17.6895302130863,18.7723687789854,16.2239984178487,18.0026661509897,18.9353199823619,16.3267399310873,17.8468425604201,18.7844389674881,16.4348867258304,17.9978203401365,18.9329451678903,16.3265644177723,18.0945593334901,18.8862709892791,16.6935927753101,18.1390700762929,19.0589690286244 +"B7Z107",14.9178878954838,15.0727334446917,18.9776208036414,14.8985559104648,15.0166928953384,18.6949038629408,14.2863108866351,14.6036005859837,18.3844023418129,14.6589124706788,14.9526318394506,18.389016742467,13.492685162131,14.5226613126369,18.3398011145893,14.7299941809801,14.9388670776054,18.7466887421969 +"C0HK94",17.9098688467711,17.9651253133777,19.9468150465476,17.7889055733029,17.7140123673144,19.5603808745442,17.8287931926144,17.9659268419759,19.8286772765534,17.7627410432878,17.8808243993886,19.8130136793212,17.8526161086721,17.8442151882959,19.5946046363159,17.7676329978039,17.9279883276356,19.5765183899844 +"C0HK95",19.0318150320058,20.304522895187,21.3602844547944,18.796440274162,19.8652195472991,20.9548600210624,18.8263929360238,19.7750323359961,20.9586199318507,18.3079006363783,19.7492693975363,20.8330996589072,18.8207917337064,19.7184949008115,20.9912209006293,18.9104016449272,20.0936686097577,21.0406679655336 +"D0UGE6",14.2443244431818,16.1601170630933,16.1317136950024,14.4006574713383,16.0686174355407,15.5279935772737,14.0058125107969,15.8201594141337,15.9395740259129,13.9013534321049,15.7720113155058,15.5324570147205,13.7544110132562,15.8969336430412,15.5803964585301,14.3293995960426,16.2815255938686,15.5151303236675 +"E1JGR3",12.1080913481366,12.2205849046128,12.469252778947,11.9327918138666,12.0935130917135,12.1772046351793,12.1109800353979,12.0984669178865,12.7345285339533,11.8823056800158,12.2250291888575,12.477023733843,12.2961948470446,12.0398245762562,12.3540642014445,11.8476700454441,11.7505112165859,12.3299655942084 +"E1JIY8",15.5565656325433,17.309763514888,17.1338207760147,15.6855662202313,16.2939616007677,17.1691129997832,15.6585992475366,16.2710745647879,17.1840597643525,15.7468079880658,16.1719731258207,17.0641625839346,15.7097949328245,16.2429558423431,17.1178821525383,15.6924999623353,16.1741807950457,17.019825561553 +"E1JJH5",19.9060830358368,21.0204724303224,22.60526785925,20.028561035429,21.1391158700806,22.6318546793679,20.0031353298921,21.0831342192745,22.6137854672478,19.9705865075492,21.1280725985755,22.5864786483872,20.0196568816507,21.1573687258906,22.6338238170725,19.9902241679243,21.0984209921438,22.6511733481993 +"E2QCN9",16.695821745929,17.1107087636955,18.6409894780872,16.7282700119952,17.0585290376216,18.4390011258297,16.8001403036172,16.9416683314992,18.5421858865271,16.5120601826578,16.9889783698764,18.6602500817561,16.7897515755596,16.8687363302123,18.487714556535,16.4391703309101,16.7933490550304,18.2397990831462 +"M9MSK4",19.9704733289341,19.9899264382959,21.8282944716962,20.0304815648913,20.1793389152644,21.8931195974211,19.6445413408607,19.8682352123639,21.6050374646109,19.8069285202436,20.0677754333156,21.709546984156,19.7938001494429,19.9644292475763,21.5502881605379,20.207126571825,20.2602514176365,21.8708861379511 +"M9NDE3",15.476081840111,15.8166501662507,16.6954669506272,15.7613439978782,15.8881384576683,16.7461464020971,15.7236511323265,16.0060294190327,16.8594976961768,15.8238216113278,16.0257342279273,16.8876807105425,15.7208739312373,16.1142588445736,16.8354090110159,15.8940999276067,15.98228838977,16.884635295963 +"M9NEW0",17.4946210790894,18.0037626661785,19.7442298642331,17.3500652857992,18.1610503202041,19.8050074042177,17.3272778297178,18.0510762668418,19.6235339417933,17.1401752299992,17.9905456247526,19.4908767588584,17.3504430296755,18.0578251878507,19.5137538813502,17.2227335009247,17.9875180658247,19.5066111877751 +"M9NFC0",18.3129485294861,20.4121381859375,21.4980752560446,18.1616753401318,20.2321962143284,21.0637850208549,18.3977023704878,20.5073986738793,21.4843169622593,18.0071893942927,20.296055230781,21.1640238080597,17.9230207103341,20.4032804663012,21.2919905486995,17.7744987632208,19.9217457343688,20.7189264245524 +"M9PDU4",21.4519137600776,21.9493343493968,24.4752923171848,21.5624186363767,21.943241660484,24.4268407367416,21.4086562686461,21.7509228654252,24.3947194406383,21.3558811802887,21.7472528877803,24.3080213996824,21.3001901164967,21.825434769404,24.2243441344801,21.7261067379311,21.8018526491036,24.1301016154295 +"M9PEG1",19.9943940805014,20.2067344964977,21.5691536078121,20.0117227350873,20.1326054081943,21.3048652261492,19.5809449989986,19.6826001851454,21.1088148691579,19.7366523888436,19.751685507964,21.0100907888307,19.6012161313328,19.8627865330713,21.011183480517,20.1388949521626,19.8183690562527,21.0744484297779 +"M9PF16",20.3478120230412,21.5171385805956,22.3374000699192,19.807076650784,21.059865465949,21.7426996752429,20.2131587825419,21.4555926589295,22.1627989713167,19.8082398156591,21.0901840598539,21.8257756882462,20.5102493507336,21.7034550814884,22.5120712553054,20.0553577656442,21.2296533603934,22.0391450786249 +"M9PF61",22.2157722836341,22.4029414998782,23.869161881073,22.119310676838,22.3709582519138,23.7865969460726,21.9999393874334,22.3040587815432,23.5962244957338,21.9834053821296,22.2677656372373,23.6939516606894,21.8864787456847,22.3702737596513,23.6805031286816,21.9810393547994,22.2955902517066,23.61453907863 +"M9PFN0",17.0736346485328,16.2251695109294,17.1084145775036,16.9555829930401,16.1892613603537,17.118492601404,16.7793628323734,16.2777937914068,16.9590649272472,16.7360155579275,15.9622627599643,16.9523694960995,16.8844160658638,16.3611989387638,16.923731056596,16.6803746953241,16.1513111629386,16.9262726459497 +"M9PGG8",16.9485314830924,18.9893936352796,19.7296553863376,17.1055255902208,19.0285880442764,19.6757025954703,16.8488707552914,18.8860713392197,19.5168297586519,16.8897174655217,18.9944791791976,20.6868465592972,16.847801033413,18.8829815617232,19.2941639240541,16.9172915417012,18.9772138262177,19.3247860711812 +"M9PHA0",16.7184216298396,17.1942171911079,18.7515033291118,16.8067926040369,17.2938379761995,18.4988312908053,16.705342556988,17.0203396315587,18.4860929074036,16.5863787176381,17.0819740779083,18.3736889590244,16.7365104328946,17.0641469644612,18.4736273910303,16.3463635648606,17.27138857635,18.237945633281 +"O01666",21.6949897856092,22.6337748237039,23.4624619626326,21.6697528375903,22.5576761134195,23.4222303898619,21.8124648685036,22.7513073139656,23.6137674221481,21.641560626394,22.6235699397312,23.6739943289475,22.0628802839486,22.9859758800712,24.0279485199256,21.9609785063573,22.8488758785016,23.7859331008735 +"O02195",18.0212506862294,17.5843307288672,19.6278067532097,18.182757576673,17.7281508349632,19.7614088371826,18.4144804052025,17.9920405373943,19.9247277814533,18.3986475095245,17.9431240233752,20.1288496730266,18.2472401514488,17.9544704089434,19.9699933800975,18.5084635914247,17.9677809081053,20.2609185906081 +"O02649",22.6782685982161,22.9749798226071,24.4017192617102,22.8710214604172,23.2114986177855,24.456981296734,22.5024252958323,22.9119168358636,24.2873968173964,22.7653025105434,23.1844665808233,24.3433506688171,22.4155431925838,22.9236875464145,24.132080532315,22.4476469473969,23.005814365727,24.2351801961577 +"O15943",19.0002230869291,20.2634771546072,20.8170659698537,19.3380342374358,20.5217175979976,20.9842243752098,19.112721169333,20.2814029057634,20.7964577647278,19.2665403865258,20.5089449395432,20.993482114415,19.0844314531793,20.4161698544807,20.7179234378808,19.3677781086232,20.6521811693417,20.9821832582494 +"O15971",15.9568159839596,16.9486287560502,18.9018813071026,15.5186668111861,16.778573352071,18.7723888895717,15.7222299852587,16.7700300094832,18.5231354880383,15.7454892865545,16.980614314195,18.7199333022716,16.1209975773336,17.1847110722336,18.7617926810682,15.9013777669955,17.0614678600458,18.8342976687015 +"O16158",20.5196135248082,20.9520117897413,22.1964116678222,20.6612569453742,21.0985639621323,22.3403444996056,20.3708691223712,20.9558344620422,22.2118915503913,20.6395249503237,21.1019806841362,22.3356819527327,20.2584472393865,21.0961101000753,22.2714118340185,20.6848599863122,21.3481505529777,22.4041560599963 +"O16797",15.6684248030967,16.5027345988564,17.4399982865804,15.1949745780123,16.0562236113616,16.9452296855214,16.3762840156291,17.2593804319708,18.0431605642889,15.9971204737308,16.731996812548,17.5998031845437,16.0657033255279,16.9545913384774,17.858930831294,15.7721733979783,16.7331622583074,17.438706316743 +"O17444",15.0735426321919,14.0544715874933,15.5966306267583,15.440294010198,14.1918639847207,15.6155251660722,15.7014525048967,14.1305305765743,15.7084938955951,15.8658969879434,14.7689583542265,16.0853500501202,15.7720391186098,14.8925721517959,16.4262249800988,15.8597375607868,15.1089227170981,16.6203765551779 +"O17452",19.9587816551403,18.744485843417,20.5633196774926,20.0248832668676,18.8664262036899,20.8156661954835,20.0152139462667,18.6779745440624,20.80410500813,20.1646683360344,18.8259989107562,20.8967183320276,19.5255094236001,18.8719766294381,20.8148971722,19.9287043739586,19.2730884747944,20.8206449342882 +"O18332",19.8095542680181,20.2703283670177,21.5415614415687,19.8466740040275,20.2629226017951,21.557297915359,19.7838859459432,20.2913836171142,21.4941319659125,19.8653935536135,20.2686146848674,21.6900054909474,19.9033967846964,20.4767684100168,21.8060953650163,20.070535765004,20.8485006934664,21.7682644880212 +"O18333",15.2846752740165,17.9174415600972,19.00171330465,15.2877866645814,17.7508363816705,18.8908479201805,15.2931440420287,17.763550193653,18.8153877972946,15.6073533538089,18.1658938229497,19.0023663729663,15.857884650907,17.9668845930188,19.2441494089653,15.6493178038468,18.0439297012453,19.1026263326927 +"O18335",20.7877627786293,21.5784744345521,22.5646016463932,20.8785665156921,21.6104588774905,22.7437960431246,20.6952729918565,21.4952987066824,22.4719470569458,20.7473078877278,21.5438703878049,22.7601477161617,20.7608499386812,21.4843908500113,22.4857311653871,20.7840946417378,21.5714982897977,22.6817620525683 +"O18373",18.8778583746559,19.4054925396163,20.3285164403458,18.8524594905665,19.5524794007954,20.4507029640339,18.9403297491038,19.5584783404752,20.3343585406827,18.9765058649168,19.5260822284843,20.4794368102506,18.8547120876751,19.4152087229856,20.2524561436062,19.1405538181427,19.4846935183336,20.3110667464555 +"O18404",22.3081806967821,22.7738635717211,23.9771027864356,22.2492288917518,22.9363464573196,24.078588345346,22.2060838005048,22.8014381531274,23.8560840739296,22.2363264153277,22.8543583985691,23.985551079627,22.1630108974906,22.9894851601498,23.9833378766734,21.9946882914632,22.7346562206786,23.8802837825134 +"O18413",18.1268604316273,19.3890084115035,20.0972492289771,18.166165903488,19.4516648312829,20.2178127162644,18.3417218231904,19.7486152125332,20.2996340881482,18.4351426736058,19.7127065131717,20.4644415119581,18.3496376819201,19.7182974771863,20.3545588499623,18.3813229123625,19.8459713479049,20.4851429056615 +"O44226",18.8376256499285,20.4154583761869,21.2708864030235,19.0054842246513,20.474389018446,21.2848638245133,18.8223766948472,20.3843012180472,21.1968758760793,18.9728799029508,20.4565092733111,21.2667559231704,18.9077008995068,20.3184177794655,21.0802967178159,18.9317419510256,20.4312109280663,21.2820140306586 +"O44386",16.3013605936729,16.9856030890459,17.1179847658125,16.2400520469535,17.0150335874726,17.1947818227906,16.3169860546034,16.9367363425578,17.3449192474766,16.3719628708514,17.066714981003,17.4983341593312,16.3673273531791,16.9665712020194,17.1852197314758,16.488777386355,17.0658310858438,17.3814130805621 +"O44434",14.0482721330005,16.8285170498854,16.4470433023114,14.3636849383579,17.2014398559984,16.6098203643135,13.9855167564417,16.8123945375652,16.3494260578306,14.3518364114465,16.9481166238571,16.5396038032918,13.8819596972197,16.8488143598485,16.4436699610807,14.4870440452768,16.8835493260854,16.3745609028548 +"O46067",18.6055687747454,20.3544233086809,20.6197629194262,18.562536861689,20.2747908930179,20.497434958011,18.6276115360145,20.3216648762306,20.521128770317,18.3998270386624,20.0464545415874,20.3877337050768,18.5499634221747,20.2886265161213,20.4931315315998,18.3470833917713,19.9772834738576,20.2993225599828 +"O46098",16.5184417185136,17.9226406532695,19.9869138627539,16.4897674259995,17.9440382544173,19.8201197322198,16.3913629077077,17.8041889984891,19.5497948623216,16.4782678565286,17.8060419818659,19.7980013689414,16.3501957042347,17.8434110084741,19.486863760626,16.5482832918589,17.7867601108277,19.5925715400463 +"O46106",16.656576542088,16.4502405885073,17.9824895828134,16.7844987348358,16.585264364329,18.0441078330876,16.5151591046138,16.5125805510346,17.9106347689954,16.5153057086084,16.4296999776183,17.8180683252177,16.5605482028336,16.6311486257907,17.7850181726705,16.298502752224,16.6065673676578,17.8231041090747 +"O61443",14.2222149787524,17.5294844707469,17.3864535902563,13.8195405657471,17.6291795926274,17.5384832731086,14.7226593077258,17.956877913061,17.707524042037,14.3496795513976,17.5810108641823,17.6303879098342,14.5041885834188,17.9475385382885,17.5994341176261,14.3200685526561,17.6569386796214,17.6037962453207 +"O61444",14.4767219436387,17.5039939050887,17.1624797407774,15.1012587716372,17.6082165094853,17.0384248990404,14.6600397168135,17.4376398226762,17.2297182441049,14.779255143816,17.5556472840663,17.5441513135913,14.5918293815998,17.3058045548988,17.0562773162124,14.6104856556432,17.4662975004921,17.1372101858181 +"O61491",20.1833875160313,20.7869922726837,21.7761669696056,20.158680603604,20.7300845651745,21.6474090970661,20.291615566912,20.828398046848,21.7844628934884,20.1446211865294,20.6566285700639,21.7400150190671,20.3697270400065,20.9788347414781,21.8436962328118,20.2138565871279,20.9742375702131,21.8619810471966 +"O61604",19.7831171814066,20.8351644807259,21.8076737227475,19.9754468050468,20.9721140450871,21.9111315999871,19.9301092178287,21.0491076403219,21.9174479008325,19.8641139539699,20.9433332402532,21.916742199336,19.9156765108031,21.0764277722295,21.9363440881159,19.9953828096885,21.0729908444234,21.9240851289111 +"O61722",18.5448841068289,19.6354335390756,19.0494909868511,18.5692674646537,19.2669147760027,18.9755038018187,18.5799053495664,19.5435602350553,18.910825053482,18.3372741865838,19.1423913437091,19.0020318731067,18.5179699062078,19.3902403353917,19.0869245993149,18.3862233971076,19.1667944946761,18.8138363811742 +"O62530",15.9549490897404,15.4483139215823,16.4067280264015,15.7022727840957,15.0729577316458,15.9981132222366,15.7575291740432,15.311163113262,15.9014666315279,15.7030389174147,15.130346577881,16.2457920638409,15.7936195976731,15.1755820264536,16.1433911982181,15.7299834367373,14.8690868540896,15.9030668022157 +"O62602",13.8983197527634,14.7094979428115,15.1122300094635,13.4272383375092,14.7650877027828,14.9118155181471,13.6616052129661,14.9138377544188,15.0115017196866,13.7260068658972,15.0511046579334,14.8187613236419,14.0549591592519,15.0969073520072,15.4374022869895,14.0906175256884,15.0614191681646,14.8632141740675 +"O62619",21.4735740660737,21.9912336326056,23.1616781531848,21.2006567596368,21.8864820515301,22.9274371619119,21.3869831068917,22.1923127112812,23.149899842267,21.2298627511983,21.8690966871462,22.9293291995297,21.5576027455759,22.4990895377215,23.5088943242057,21.4413983597021,22.2728005327101,23.3076077920936 +"O62621",12.5923169118721,13.8702315427727,12.9754491207429,12.6931031829154,13.6351985283702,12.9892542439219,12.8888446026319,13.6487459344778,12.8891077905453,12.7346311182968,13.9989020138048,12.3973947217642,13.1627542015737,13.9727525328041,13.0304323503818,12.7177748055477,13.4753892659718,12.6931321405415 +"O76454",17.685908435642,18.0345477320537,18.9097391085755,17.0910651748668,17.7567036060709,18.6880230981613,17.3406610048145,17.9296760759539,18.7010977179715,17.3320321805879,18.0312497909922,18.6282825751556,17.6361467001194,17.9772146128198,18.5884245615284,17.2201865536446,17.691387137818,18.5219425323624 +"O76521",15.6948391334975,15.9154274872771,16.1479807384317,16.0295770387894,15.9205306047298,16.4550296741512,15.8032193490126,16.0604644332888,16.4788082811532,15.6783277635038,15.9453029334128,16.5784609856438,15.8247229783914,16.0496081015842,16.5000112325594,15.9106232360798,15.9806967806697,16.5834503419854 +"O76742",16.768767081851,18.0522054174508,18.7934961114487,16.479159788028,18.070412209015,18.8804838281256,16.7160101736977,18.2650182209861,18.858889859471,16.7842496036007,18.2130011592427,19.0344032960948,16.760366923407,18.5225417729222,19.1156798601814,17.1861580393997,18.5647046541679,19.1807149347216 +"O76752",16.6905506660588,18.3039232643557,19.0633842298685,16.4572211482745,18.1142758946557,18.7167586334537,16.7416068363428,18.2036087157815,18.9520694530149,16.4481153679715,17.9699153624551,18.5445136097432,16.7053179274406,18.3029714976147,18.9641820164184,16.7354787037438,18.2064745630648,18.817743829177 +"O76877",14.931966322311,18.2863952158604,19.3000741012569,14.7722129524118,17.9396957449276,19.290137857168,14.8208269723208,17.9633242405126,19.0822901087479,14.7544265511083,17.9902908410079,19.3093812614644,15.0331988788167,17.8608201698403,19.1090536017277,15.0248438747296,17.8987152029578,18.9730256239839 +"O76902",16.5217893455874,17.4193239296092,17.837101032031,16.4654846134889,17.1793477794034,17.5913163052705,16.4696324875385,17.4399117309927,17.6367101835606,16.4823814410787,17.1216733127272,17.7233366245539,16.7301820052492,17.564917291449,18.1402420885646,16.9510319137684,17.7260396347683,18.1883975997465 +"O77134",20.7118353064961,21.5076969412388,23.2117697583552,20.8235100288495,21.447163648743,23.0920465477843,20.6597953734106,21.2166428358769,23.0641082319034,20.4801142660426,21.2626963170176,23.0992370927617,20.6190445738975,21.267819214358,22.9124453798729,20.8167261344301,21.2258289688198,22.8947362208198 +"O77263",14.579231859729,15.9362681273792,16.2879339098813,14.461214116738,16.1250539227946,16.4551215983859,14.4044186279278,15.8557064815237,16.136436181766,14.2487619849941,16.0201049444849,16.3598369570176,14.401839645131,15.8107132976659,16.0971174147691,14.233546776837,15.7580077503297,16.2163313885142 +"O77410",12.0822496116424,15.3533670722966,15.5820380137794,11.449375188711,14.9933145137187,15.1889472116602,12.2879127015273,15.5357796178538,15.774605527806,11.6933205193255,15.244820178645,15.6191193192338,12.6264566739179,15.873184320047,15.9708984529064,11.8817043734179,15.3908762492026,15.7207698354626 +"O77430",18.4531279886686,19.5682282006118,20.6449737877427,18.4199042829307,19.476455458551,20.6748025219927,18.4225965197902,19.4998217685343,20.6830720886086,18.4646610145207,19.5693348316333,20.5708911170287,18.4353162210369,19.5417120347517,20.5908095692151,18.5146964710098,19.6851249510735,20.5605232728534 +"O77477",15.4902093779572,16.9835702601924,17.5089382260993,15.6146882183146,16.7167074557148,17.5443257031534,15.8393632358243,16.9854373648099,17.9195563714398,15.9275880164679,16.894008612032,17.7934722976309,15.935559914838,17.0887780929191,17.8375872497881,16.1167744965891,17.0667676056503,17.9950194856683 +"O96299",17.4166769396046,14.9065300204272,14.1664685162039,17.5308557603435,14.8885616891333,14.2992127525043,17.4001914338743,14.951262720904,14.5841529340194,17.3477174893107,15.1123907668371,14.9073095971924,17.6011784013535,14.9888408523765,14.9724743633239,17.4780957307112,15.0436694867973,14.8737109383504 +"O96824",16.1486108158006,16.9032869472112,17.8393722047492,16.0157568146089,16.350962984765,17.7780297528733,16.1295806277744,16.5816406111755,17.6844282061389,15.8829003041211,16.3485274348867,17.616549121537,15.9988715159794,16.5122626082238,17.506612163409,15.9219662989209,16.0945871536961,17.5386234055949 +"O97062",16.7808913864031,18.896968526612,20.1530203058344,16.8857219139011,18.7394526864274,19.9417908796354,16.7592588178551,18.7552279934819,20.0622208224859,16.6494978988933,18.7417908983691,19.7476477332762,16.8231552844936,18.6697324309688,19.8180146996585,16.5658256170364,18.6905634346662,19.7676586178271 +"O97064",15.3341552606208,15.8425358606769,18.4128561039353,15.1925585075566,15.86273360342,18.1307894393771,15.4199046020402,15.7923193876184,18.3364004026864,15.2344596992709,16.0340306546611,18.2525735083863,15.5095140575982,16.0053979673836,18.1440782182163,15.4221976287958,16.0985959569485,18.2805617762338 +"O97102",21.0135773234324,20.4845014178925,21.7109424954809,20.9552615713415,20.4413050184148,21.5643656858655,20.8102044401496,20.4308239230375,21.5575150494255,20.9752643452847,20.4815461148068,21.4528385444446,20.9302483056765,20.506927177293,21.6070380046465,21.2551311308202,20.9573787984796,21.7590017256842 +"O97111",13.7542208181303,15.4608336736169,14.7961410391257,13.6792854325944,15.4138644283961,15.3673866993875,13.8824328770853,15.250709397954,14.8386359550984,13.7994053970599,15.3174666191038,15.5896579478883,14.2791672910183,15.0682819313699,14.6578720049894,13.8407319010659,15.3394886603268,14.7653164373339 +"O97125",16.7867063014973,18.207622525478,19.3587745643769,16.9354152865233,18.3030410724351,19.226833887127,17.3523558313473,18.6486435251103,19.7985969954111,17.4313209382756,18.9446999097427,19.8700131898525,17.5251402319135,18.8459229243272,20.022137432014,17.4172991175083,19.0930142469633,19.8901304027166 +"O97365",17.2518670450295,17.9117869581308,18.8101617846003,17.3585208611658,17.7892144162085,18.756935144975,17.4998545580297,17.7257615661074,18.8266300552945,17.5657908513958,17.8972161892137,18.9302642569344,17.335699039683,17.5890600040175,18.6581077332451,17.481611259172,17.851046554317,18.7703509762316 +"O97418",20.486990680691,20.5500620624478,22.0848548375344,20.5782609746223,20.5600114672474,22.1745025145004,20.4237699994516,20.2731223758263,21.9817475334823,20.4175368125387,20.5105397761921,22.1697844211277,20.5401369283069,20.3513762029827,22.0341138458835,20.4848770928126,20.4778628683696,22.0317270761722 +"O97422",14.6065366266438,15.8033945884145,16.0171540089379,14.6218352785017,15.4851095298227,15.7463385172805,14.5378565544897,15.934265768919,15.885806244774,14.7621185302872,15.502301609385,15.7819718548715,14.0025040423434,16.4170711813278,15.8824370808548,14.5251055559207,15.8323004817848,15.9104202663442 +"O97454",11.6513169344841,14.7974922676642,15.7435288581946,11.5923010176729,14.9521737736779,15.8919623749169,11.3215207964202,15.1026945492043,15.7707554223062,11.4055524017177,15.0654304779698,16.275022421386,10.9791940379329,15.0130626970563,15.7396508838737,10.5278656618995,15.0017033618547,16.0722575498369 +"O97477",19.8933005655469,20.5718231855464,21.881710509303,19.9609023771,20.7674321673352,21.9613534998056,20.0971678965513,20.8861074122392,22.0959474230783,20.0086692694385,20.8325035484796,22.0845708319556,19.9989158242302,20.9649440006768,22.1430713546049,19.9193366914099,20.8765211853286,22.1225122727798 +"O97479",16.648645673576,18.384419823832,17.6964554982444,17.0901239610369,19.0753552286423,18.0298960671821,16.7415088971282,18.4748576497324,17.6990438767556,17.1254515009543,18.9846097912628,17.9830155303025,16.9559926760024,19.1596222428725,18.1598573435137,16.8833695742531,19.0699360503627,18.0912169065902 +"P00334",24.8192094033403,24.2417957089339,26.527175569075,25.0240985207751,24.3390825652126,26.6968208694157,24.6862391366085,24.1473317022457,26.2946604987969,24.7689133048884,24.3030821925729,26.6170984865066,24.7856541090569,24.316347054844,26.5795721101022,24.7880046274968,24.0915320725425,26.4764861757221 +"P00408",20.7355019956011,21.385776461182,21.8430189018703,20.7483881131527,21.3263418578018,21.876936142908,20.7259245879689,21.3790199191315,21.6902722418546,20.6987774214231,21.2202733870734,21.7151526819522,20.9403147592365,21.6260303331087,22.0680408961116,20.9286006223512,21.4614531326928,21.9620957019992 +"P02283",20.4905696631679,21.1652879267247,23.2612665405449,20.3114486098293,21.1112600377497,23.2586358807747,20.4136912402494,20.9541107882754,23.1508351563191,20.4991111570046,21.1222711537118,23.4758062464242,20.5556250963747,20.9527327478312,23.3206011158364,20.2811866039984,20.8373651978345,23.1123468109537 +"P02299",20.6735387795047,22.3312022856872,22.9491637762373,20.6786974775959,22.3687543114026,23.0082101746456,20.773621003514,22.4123934829463,23.1277558101228,20.6552139906827,22.3428287314704,23.1968194365134,20.785599467123,22.3051124895849,23.0985181322301,20.6715308613062,22.3207928856187,22.8490003702959 +"P02515",18.2424225822514,18.3392796970523,19.1669638833108,17.2548589041998,17.3740153947088,17.813957578281,17.9359316224807,18.0995528105195,18.7080277624094,17.4532539398875,17.7040125089029,18.2347499055799,18.3597736175952,18.6053079102489,19.1575406952488,17.2553114963948,17.1623356423412,17.7212958997513 +"P02572",25.4145148353135,26.3481478788281,28.1211751687636,25.5083558015365,26.3007967751341,27.9713710863218,25.5269687478329,26.3714120543893,28.1549236372195,25.2256822423569,26.1744314245524,27.9553142719214,25.4221168734846,26.3437992201656,27.9579717044515,25.4230129997608,26.1978567877911,27.9302455902618 +"P04359",18.3802958340893,19.1786062817208,19.3717055087827,17.9471938372235,18.962221577666,19.1537841711591,18.1840022990368,19.2080949594023,19.2532573511611,18.2629160281105,19.0282986902109,19.2795562274198,17.9302895386394,19.4369294654019,19.2143911739314,18.032045515835,18.9782728191513,18.9880374372948 +"P04388",15.6103766092625,15.585119737455,18.4831350128306,15.7479503060779,15.4192396037169,18.3999126610413,15.7599763590511,15.6807197535608,18.36752230738,15.7423106323565,15.9559420256349,18.1855251685426,15.2943018169796,15.7185294690363,18.4057337368448,15.6167687445125,15.5977474667759,18.0975469500322 +"P05031",14.0818852935585,12.6749520747168,13.2527870921993,13.3201805846068,12.9858556683702,13.3426262486444,13.6187640543869,12.9666880837406,13.0271047353349,13.865588139595,12.8745397381271,13.3061937211747,13.7838242909937,13.6662202050273,14.2887681128478,14.1048931240922,13.5295961990152,13.890004073667 +"P05205",17.5358224979572,16.9810822272231,19.6438229449473,17.9244805097223,17.1536071839567,19.8196483576564,17.6152565365199,16.8882905523822,19.5228807748931,17.7186244100665,17.1588980099151,19.719606420004,17.5794136452688,16.6300951193833,19.3797916948248,17.8347112738389,17.1431340924841,19.4582897917462 +"P05389",19.5647815361532,20.6764720145831,21.6487243812872,19.2701514013146,20.5962629310795,21.4652587912378,19.57060879692,20.6968416135092,21.6286549207629,19.4182814069401,20.6280554928635,21.4628641518693,19.535105390645,20.7772052945432,21.4693207080419,19.447265617641,20.6601024429429,21.3922684420686 +"P05812",13.5318591614277,16.0482922186947,17.2602590383846,14.0833836995145,16.334568454932,17.5147000390024,13.7990470397512,16.0013033457361,17.157726406707,14.0462126069944,16.1995045553343,17.350695827703,13.7701130058223,16.0998506924548,17.2568051473801,14.2137241336693,16.2776387751671,17.4620056374023 +"P06002",15.1142701164215,17.38837757453,18.9969532291905,14.5560988865692,16.9390013938098,18.3738199805237,14.4227960116694,16.7303284354806,18.0427164921666,14.5950733917566,16.7617627815284,18.4606759542103,15.5833348419645,17.8487111521044,19.3111808317638,15.6428945056137,17.8570212887428,19.3439750775524 +"P07486",20.8591351654688,22.4444346834446,23.2796150687161,20.9223312304988,22.3205565303469,23.0155046214049,20.8699180697764,22.2955042870039,23.2575176366924,20.6185026190026,22.1006348814971,23.008156002247,21.1020480419823,22.6083203253029,23.4545159896371,20.9081709341607,22.5757790544989,23.2999874552225 +"P07668",13.9182161686772,15.0878105220694,16.1464009624064,13.4086815748286,14.8510708790025,15.7048376386948,13.5077491049113,14.6891327004057,15.2964210136613,13.3510179792789,14.9610879353875,15.4007162736377,13.1350435764058,14.8366153823988,15.7718239605479,14.2856192958639,14.3804700981899,15.452542767992 +"P08120",18.0064416771013,17.5399271202755,19.2218671505561,18.1273846078221,17.617070157708,18.7320412680484,18.1036813943468,17.8178849350761,19.1528418517177,17.9228626700357,17.5753543467474,18.7466314615911,17.8186602917682,17.9403942794358,19.1611030984534,17.9931921124984,17.6456384892638,18.8398565011312 +"P08182",19.3207180879031,19.4148303250968,20.4320341815433,19.4708477318883,19.5921120370226,20.45124500392,19.2236622050901,19.3276170838885,20.2821010588947,19.2002649292763,19.3986021398958,20.2080977707267,19.0762221514696,19.3949457844911,20.1717362665766,19.2740357717851,19.4776175886553,20.1912012478331 +"P08646",16.8360792024022,19.4811481725989,20.0000130452091,16.7589409270532,19.696973356071,20.1333237311127,16.9307968059542,19.8994763946447,20.0395712445993,16.9706410837921,19.7557733173533,20.0686319603277,16.5131866294986,19.8569128862427,20.1117988155931,17.0478826922967,20.0137421970542,20.3401881718585 +"P08736",23.7408302292594,23.9437477211241,25.6252987920656,23.5598708244874,23.8299220838948,25.5284047618902,23.725191114145,23.9715303182501,25.4932231079812,23.4957970734706,23.866930607377,25.6591743661897,23.6384372281841,23.9344307566391,25.4721835369036,23.5393154855215,23.9781294024563,25.5611805805567 +"P08928",21.9413752730247,22.6024997364637,23.5393752698921,22.1161251093644,22.7223542530542,23.624185353593,21.9749399334409,22.6379637709382,23.5094555375829,21.9428437735283,22.7106456708369,23.5966381127423,21.9602618447677,22.6073085698126,23.4259274899572,21.8929322205785,22.7478414269688,23.4728994479809 +"P08985",19.7711969319243,20.4519017870405,22.0725163145431,19.8661414572843,20.2772346379702,21.9961283759138,19.665724858798,20.1833548990056,21.9738972320417,19.5674542129806,20.1629764337337,22.087952248676,19.7700167962042,20.1963707568582,22.085889122839,19.6123988262462,19.9823617506067,21.9486780177836 +"P09040",15.5611995607891,17.6627777649945,16.7632076818095,15.9564791468725,17.5832153830781,17.00175322173,14.8400530756827,17.2830376817856,16.4651208131823,14.9781633851443,17.4431909731492,16.801310572826,14.79629941396,17.4362283192161,16.5079431105018,15.802064738764,17.5504836757241,16.7440964880032 +"P09180",19.4366914540393,20.6041292456584,21.6209478163164,19.256576642774,20.4743632830959,21.5089410001274,19.7806291168714,20.9835699117238,21.9820601326108,19.6073875654751,20.7850505926947,21.9318408561037,19.6397957799988,20.8833172776919,21.9631002187385,19.4904045373673,20.5696188753041,21.604128557902 +"P09208",12.5531076050763,11.9105780023377,14.4712640343146,12.667304103558,11.1281717146549,14.0464902788894,13.063315316136,11.6405538639487,14.1435483967141,13.2140286066361,12.2136613819141,14.4371449596161,12.6183354155372,9.9111052024348,14.3810574382468,13.1253076024354,10.9196602426064,14.4984884513602 +"P0DKM0",16.6186609828818,16.8004874764709,17.2125938533978,16.958499597676,16.8572416279341,17.3164341474108,16.8310461490211,16.6508767531718,17.3854098203306,16.8045582981281,16.768515424076,17.6090602809203,16.7649006336192,16.5488479601291,17.4823620089177,16.9540585253281,16.8266597137427,17.5644484123097 +"P10676",19.3081102317358,20.5087710339919,21.6496788042245,18.854135632443,20.060840603694,21.0621134454014,18.5119268515425,19.611594501348,20.5719298101913,18.5277350637528,19.6833393562663,20.6040401340415,18.167049099586,19.3671315386327,20.2742893743794,17.9753021509631,19.2218423590264,20.0646647119353 +"P11046",20.0505916179758,20.7822382781868,21.9315397138403,20.1577174086054,20.8082277126234,21.9149562714369,20.0740325584982,21.008788850877,22.1221275780458,20.1187652735834,20.7762220023734,21.9517115126419,19.9339874386081,21.12626687701,22.1411100320258,20.2085964253408,21.1122458368965,22.154123092609 +"P12080",17.5287303270396,19.3108707346679,19.6840618656007,17.6828938389723,19.3600294146627,19.633684295703,17.9179475134744,19.6013860068916,20.0514010826122,17.8647713526134,19.5207252747855,19.9576168036159,17.7944037365534,19.5734725285612,20.006868385766,18.0107079935743,19.599093143222,20.0189510406951 +"P12370",19.7744071736803,20.3163075442123,21.752175601594,19.4137959412245,20.3670249773711,21.9961822740585,19.9057594622019,20.6158225977403,22.1086958298662,19.6226049666177,20.6990950082918,22.2271249167869,19.9067120016743,20.5130324000124,22.3472981583886,19.7366713598698,20.7466256401553,22.2017561249611 +"P13060",19.3977408352462,20.1732161189321,21.2925162138694,19.0208434368456,19.8232782580208,20.7838435973373,19.4703852442621,20.3530927628937,21.2740205478197,19.2581975458994,20.0613154003207,21.066367043205,19.468134529848,20.5049991178462,21.4451819700414,19.2923072021553,20.1901914821269,21.0903123997011 +"P13496",17.1481135786509,18.4786848804666,19.2354170334721,17.1753355957897,18.5387207203839,19.2339655774134,17.2127575626673,18.4592904895008,19.1314127970702,17.0579771296033,18.3432162008258,19.2483756929145,17.166245182018,18.5342208121212,19.2952270197179,17.0852337707324,18.3058729252011,19.1085046911237 +"P13677",16.1146616819498,17.9789208733274,18.5184079911593,15.478951178493,17.2281087567756,18.1187467102926,15.3513526624709,17.2272446467781,17.8609769123734,15.3614476777011,17.253676613577,17.8196013338814,15.5382889529594,17.6486745673274,18.3969628104866,15.1288001009445,17.4797126733239,17.8321002459679 +"P14199",17.7420647617995,18.3838064641565,19.7310422851667,17.849988055048,18.2508467225702,19.5675239001163,17.7352346025374,18.2777235897442,19.6946214276551,17.4812054119495,18.2013583132701,19.4778958498753,17.7920393219139,18.413382153887,19.5406124991337,17.7535679312914,18.3283669126547,19.3789261723578 +"P14318",21.7050074564398,21.8060262683049,24.1046975891975,21.259147069725,21.3403019031632,23.5993508680855,21.3901469736641,21.4965665106851,23.7468255230947,21.0525891206946,21.2267264620858,23.3781082187446,21.0837695891513,21.3187090857104,23.4126666026787,21.106908698337,21.2115591873677,23.3195832082079 +"P14484",18.34855434225,18.7799400448942,20.096704089651,18.5383016965596,18.8973685797493,20.2437066057886,18.5970469005558,18.7403592835177,20.290812233232,18.7057478441159,19.329466124936,20.507485574878,18.6298298538066,18.696622860043,20.2911550589175,18.7156389219819,19.0296957535866,20.2439092882951 +"P15425",17.0509357186877,16.5581640831672,17.6503030468249,16.9617871377759,16.2626544242868,17.3571846001303,17.0412521019108,16.587829499101,17.5121054640721,17.0391944740096,16.517668770648,17.3995586240718,17.0865426772336,16.8317714821844,17.7929909144417,17.1763187844401,16.6989029883671,17.593557338332 +"P16378",19.2056029021459,20.0146957299181,22.0879832577966,19.2071060074879,19.7831701120392,21.9355884989213,19.22639911882,19.9060468128306,22.0540844901768,19.1486384671954,19.9163311932485,22.0241389818501,19.5114056095017,20.2401629967129,22.478948713959,19.2150103755628,19.9951622457328,22.0913243767507 +"P16620",15.4430104914459,17.4658008922094,18.4216528685871,15.8666847149158,17.6716210114815,18.6083070814218,15.6019433042485,17.5908847165266,18.4977462664737,16.1140388976159,17.7292853189308,18.5962319113635,15.4769930143778,17.6316497217061,18.5116302945986,16.1318997528564,18.0289883361863,18.6425283579157 +"P17210",19.6335670337415,21.1642058823024,21.9903759930391,19.695279695198,21.1896773684696,21.9727646849354,19.5924446162551,21.110491488857,21.8557976354037,19.515405847573,20.9733547323504,21.7204728362356,19.5085421786198,21.0821461238656,21.8430445752624,19.5152096295866,21.007819076633,21.6228225398341 +"P17336",19.7601528853839,19.989402376142,21.5838429321134,19.8816047802014,19.9357121581707,21.3273554469004,20.3994298670133,20.5786690230988,22.1828694938565,20.2864693127257,20.4401152626075,21.9763249943054,20.3102624517137,20.3885103597926,22.0363163259853,20.010054170628,20.1438376455006,21.7008079908853 +"P17704",19.4834206844595,20.5581443308161,21.1041708840715,19.2620109994685,20.4252534391988,20.933165719189,19.4491867500657,20.7629864145546,21.1373643213525,19.2624304001848,20.5319570582603,20.8994843679394,19.4049610543823,20.7427654611826,21.1454694742324,19.1515663221867,20.486323136366,21.0090271044111 +"P18053",20.1050811390631,20.8346638506948,22.101537626164,20.1572620410397,20.8972273205223,22.2078982479809,20.15634060526,20.963638847214,22.1045137832831,20.1491538041787,20.9944467119176,22.4125836377643,20.0682072198237,20.9187986294638,22.0684139595594,20.0629890902731,20.8072778370196,22.0500450463438 +"P18432",22.9825852929721,23.6701925420048,25.5510335497476,22.7203548449811,23.3766008196105,25.0624689553748,22.7548212966897,23.5193939332832,25.3183248404072,22.1410606522253,23.033449787308,24.6001604802415,22.5638952677509,23.5096387041869,25.0126062515793,22.2897691092665,23.0248369960939,24.5820420813774 +"P19107",23.3978390331295,23.666286928936,25.2298612360669,23.2416042469873,23.6277987171953,25.1651464614644,23.2386708077876,23.579748179762,25.0173007629445,23.2409304796346,23.5616711026461,25.1300433204684,23.3010956715129,23.8789447208362,25.4146590757333,23.4500654673457,23.8283925029523,25.3141238785651 +"P19334",16.2344857870902,16.00734868945,15.6822138040204,15.8818915721234,15.385284384952,15.5086315175947,15.1240587100218,14.471236455691,14.7757142385733,15.4710215435318,15.1802096276133,15.0899585439889,15.4504818170871,14.7661533925419,14.4959624156838,14.967094473038,14.7431216151321,14.1542487831372 +"P20007",14.2839759075938,16.4584523621788,15.9288547329384,13.2916439245198,15.4232404555889,14.3726195373842,14.6148274588871,17.0656783949637,16.4010787496653,13.3649957739384,15.5655840401709,14.7742897478989,13.9813318116398,16.3527586293477,15.5308465462051,13.1774908408197,15.376059618862,14.5755287922086 +"P20240",16.2699236715928,16.9787412241275,18.1989984211352,16.8295951125876,17.2301046606894,18.3232602128138,16.8590555024555,17.0196280411416,18.3241868653709,16.888910685462,17.2157249231337,18.358119204531,16.6504114513118,16.8907538449256,18.1813906635866,16.916776136789,17.2460453268079,18.078947470302 +"P20348",17.239731206999,16.3092827418879,19.4907132011453,17.3057883728259,16.0531780423185,19.2424344182052,16.9962577665536,16.0434519105854,19.1201665351555,16.8015947752014,16.2186493897358,19.111318161894,16.7050529189094,16.1355330171588,18.9389766039569,16.6767275951321,16.2074603408896,18.8218856605654 +"P20351",12.5945296010295,13.0994602711717,15.3822414689,13.265007026769,13.5304080502433,15.8830427566887,12.7064448611482,13.4184893158295,15.4714079564462,13.1196990307553,13.2566272182115,16.0353812407188,12.4899777912362,13.5178958872775,15.5011827886853,13.1590274908979,13.2544418039496,15.9402869547169 +"P20432",23.3601017608889,23.0914568960123,24.6241428622248,23.295222196334,22.9057040745188,24.5951144482143,23.2063967414465,22.974572962471,24.4433366760516,23.1407762004885,22.9063904569101,24.7090165175332,23.2065708766641,22.8144750261951,24.5773207983948,23.0493016037722,22.8399609298081,24.3784435719198 +"P21187",16.5887102104625,18.949724181826,20.097075572187,16.6959027225049,19.0170093235508,19.9809493059264,17.3444806762137,19.525267562061,20.5833883275861,17.3818695784478,19.4699935033951,20.5096032903618,17.295440509148,19.521065526054,20.5439151201039,17.4962652858944,19.5587994472783,20.6393186077352 +"P21914",22.3404734533143,22.9526299781802,23.7712970832388,22.348688752321,22.8206481457642,23.731368673668,22.2558559310332,22.6940174853686,23.6712421845643,22.1105379278496,22.6453411101945,23.7193165500118,22.3005547336424,22.6745258733687,23.7635602830209,22.2076152075659,22.7366597139426,23.6425553077354 +"P22465",21.9074827222629,22.6496828673144,24.2035234650845,21.6291286169424,22.4573746595311,23.9207597587938,21.6548241469851,22.5491108670794,23.9040758863301,21.5153991325942,22.3654002065419,23.7284621966237,21.5341738763781,22.5505920747048,23.9169286130292,21.6874916066654,22.4504741790575,23.8817815079681 +"P22769",19.4300266623649,20.0034494835803,20.9489908664984,19.5538033380216,19.9571030743359,20.9891322350923,19.4004659893438,19.9898641890469,20.8363855780753,19.5903712381958,20.0218071457528,21.0534872921398,19.1443799785084,20.0745435826537,20.8384916547533,19.5102391816841,20.0974725414006,20.9903467927841 +"P22812",11.2017365068063,11.8389291425627,10.939360544069,11.8188293672157,11.085871280038,11.1721762358152,11.4043889766121,11.3311335918815,11.8409882526431,11.7530470631212,11.7534733163105,12.328519628341,12.1641714593977,10.651970856933,11.4730902575342,12.0495375254089,11.2625577962942,11.3775329985508 +"P22979",18.6354082969394,18.8998738228498,19.2988225343364,19.1405745508965,19.4152770707024,19.6037357430988,19.2000440957539,19.5576007262226,19.7543326941185,19.4165773510002,19.8610721272613,19.9979774885001,19.1121573115446,19.6317879464588,19.564540715767,19.2090426881826,19.9407459458132,19.9873620151692 +"P23128",15.1784345621696,13.0076268514124,15.7254345169926,14.576147082975,12.9806826924521,15.7328885834254,15.2088871474112,13.2991865135855,15.6741941278412,14.971663129421,13.1855150384431,15.9360113579796,15.3249991585301,13.1072551729702,16.1680564360314,14.4895076487872,13.7069052609813,15.6793737469339 +"P23625",22.0012139029888,21.6046590636084,23.0809541735621,21.9200607429545,21.5414990139768,23.1130806492124,21.9479894875648,21.5448558731367,23.0629087259679,21.795099812082,21.5010319827729,23.1875190253654,22.0178680840509,21.6871748972112,23.2321589326957,21.8626955492842,21.617189226331,23.0744257813172 +"P23779",20.5050761986773,21.1280735333303,21.9704801989287,20.5757593314007,21.24498740332,21.8923883548109,20.104085128433,20.8333812442552,21.6207914278548,20.1358240627411,20.8511215743597,21.6234329782001,20.04151811903,20.7355209032931,21.2902965476223,20.2246017814207,20.7337125183457,21.4656983233167 +"P25007",23.4969313258061,22.9707324826248,25.1934645879099,23.5468952289431,22.9685484456897,25.2305192682651,23.3666599140989,22.8546961379725,25.0692060847149,23.3980314367955,22.9475242622381,25.3048067093556,23.3784519149769,22.8612212184327,25.1614041783597,23.3106913790577,23.0016157715883,25.0652508410257 +"P25171",15.6051597663109,17.1832413084455,17.3444363510938,15.6793333950525,17.2516648201722,17.8216364710015,15.8654738519591,17.299735237939,17.2611605252841,15.7114285468891,17.1439247457939,17.5950450093378,15.3606097602839,17.0569669732738,17.1873806621445,15.8199932830411,17.0707870253415,17.4797186258387 +"P25455",14.9380568036615,15.0910072489001,17.2124888831514,14.939198844542,15.0698824583303,17.2774910242737,15.0176076348868,14.9368697294435,17.1654032563782,15.1832926988764,14.984150865933,17.2747883287135,15.2027062732498,15.5188821528468,17.4949927100182,15.0014542864283,15.1051258182455,17.2195042256322 +"P28668",14.8347345582548,15.1870391273295,16.2327609540716,14.4095439772575,15.2682233657533,16.1471038088844,15.0717721430907,15.4453589696575,16.5645726288001,15.0508872551518,15.4438129679706,16.7119479839185,14.6898739139861,15.2583223582441,16.3159917758755,14.949199857535,15.6323471791798,16.4252293421186 +"P29327",18.9066641280365,19.4899851369066,19.6651709151716,18.6955800309031,19.476723157003,19.8060243291193,19.2015499778168,19.9659126689439,20.0298650222145,18.9872636271155,19.6554432737525,20.0284057693292,19.0669490365818,19.8295128440357,20.0415066604722,18.9751066306821,19.870544280493,19.9499431106826 +"P29613",23.2769214730458,23.5834614297673,25.5611659432991,23.2519264992501,23.4875745931664,25.3569291457702,22.9341236612529,23.1144573406102,25.1251329320022,22.8757517596711,23.2517254774194,25.1786252173926,22.8852843214687,23.1921199483883,25.09695822226,22.779599257811,23.1641801741076,25.0703278036318 +"P29746",19.940678306946,20.8157365134814,22.1203458490879,20.3436755921485,21.143920083744,22.314211052374,20.1923436629541,20.8837515899075,22.3398477656143,20.4923606944703,21.2350523579663,22.5208811102107,20.2096084815433,20.9639457871438,22.0900465611449,20.5964582981247,21.1180891232638,22.2824094799196 +"P29829",20.8650464330555,21.2105304381426,22.1174335718685,20.5891577486857,20.9805948010058,21.9309127996134,20.6983461854103,21.2037434708452,22.0935006429934,20.6800352054288,21.0777694974255,22.1555896434995,20.7384540152485,21.5936468159196,22.5657613572333,20.6440931105852,21.3531215581293,22.2013508880531 +"P32234",15.7484890445799,16.8151343877854,17.8417589285007,15.9234073061492,16.7613421670531,17.6611771224401,16.1434460440334,16.7055352187513,17.6040907212134,15.8994217004148,16.7538165772582,17.5145672354896,15.6642273366458,16.6036557070179,17.6765932665395,15.5510400561249,16.5890438605703,17.3930779271567 +"P32392",16.1781386829781,17.4090207415485,18.3801662228557,16.2906810726775,17.5500733460212,18.467069288935,16.7751619874943,17.7107656716545,18.79296113042,16.9255744427458,17.8535148278105,18.9413895946756,16.7834113654615,17.7346556186793,18.8230509752496,16.6524191824876,17.801145026084,18.8165459888253 +"P32748",15.0390644597717,17.2162989387931,18.7995868655124,15.1236492754016,17.2959096144544,19.0686473715995,15.2087599629946,17.5949550000623,19.0940433680187,15.2905233504448,17.5767626002144,19.1026093630713,15.2385498897077,17.6053540310264,19.2471170439565,15.7114784400931,17.6661158127826,19.3066114890784 +"P35220",18.4693458766384,19.6966090835154,20.0383247203878,18.5465971867215,19.7546165865827,20.1562384813912,18.3078004089641,19.6382915460279,19.9498419097324,18.3839953455329,19.6545320686479,20.0868459138547,18.2269262493832,19.5866800222041,19.9647117960606,18.2498168735692,19.6738958331908,19.6703446250226 +"P35381",24.8476100613963,25.0429965321213,26.6036673169716,24.9305278672503,25.0446721354162,26.5097035985718,25.138476437412,25.2966503404174,26.9217723957464,24.8743367703953,25.1801997091592,26.7399929930984,25.2825796137373,25.4348024909425,27.0642012344401,25.1120523248369,25.4498097142595,26.9231201977938 +"P35992",14.8695144033613,16.184971439493,16.274115358536,14.8425142072361,16.2123965263471,16.2864723832221,14.8291601759064,16.2995212196112,16.2757211265566,15.1582765767242,16.5057897512139,16.4280876925063,14.9560807487647,16.3077360683991,16.208734370107,15.3511678446339,16.3876135809218,16.2906958053102 +"P36241",19.4128796694858,19.7259129880407,20.463898804522,19.2059563236863,19.605819983694,20.3193504064581,19.298934375435,19.9375243897179,20.6105494433929,19.3700973170182,19.7576900695596,20.4891999870298,19.0051546245787,19.8163493674727,20.4661386749659,18.8724953601596,19.6423677176266,20.2219759571101 +"P36951",19.4962601389492,20.3977136967192,21.4110470028824,19.4484871569922,20.1905940138275,21.1957402851095,19.7052805217014,20.3609463684497,21.3493928504324,19.3090749469193,20.0666542082127,21.2100367911324,19.6160265831202,20.2754871755503,21.376895122759,19.5351446645109,20.258015281505,21.2611517216711 +"P36975",21.6318956763202,21.7757744647507,23.422018187396,21.870215673631,22.091697178396,23.5362141191759,21.5326798764721,21.6578740245488,23.2407845175274,21.6981418278703,21.7349138206942,23.5297818328748,21.5415848375046,21.717987237172,23.218999202073,21.5861733711233,21.5384440616055,22.9159133292471 +"P38040",18.1193231912518,18.8144200496188,20.4080558761732,18.3415577628056,18.721020747813,20.2586846790577,17.9394034202421,18.6340580721169,20.1323689520256,18.3759688058441,18.9523990791309,20.4104381350139,17.7175015366155,18.4790041161766,19.9751425467047,18.1549898347561,19.1425456330228,19.9927615940746 +"P38979",21.024799390351,21.805712936108,23.518970784176,20.8814711692904,21.7883022503223,23.3922741138718,21.1507034996642,21.9593886253898,23.4462011067606,20.928032368645,21.7965773962984,23.4287613678024,21.0637737618784,21.9297602003513,23.4895417898992,20.8590865400402,21.8602893107136,23.3831234291239 +"P40301",17.766250694952,17.410691619056,17.8881964134543,17.5061714684119,17.5995207166924,17.8663968433688,17.7839449853654,17.8973801300738,18.1211175420576,17.8224016967126,17.7284171585367,18.119993196953,17.8847689228107,17.6779550736998,18.1013973330909,17.7858543735823,17.9307617611505,18.378325020201 +"P40304",17.6145259901144,18.845507447761,19.2662087651256,17.6226897176054,19.087798282326,19.3346484808763,17.840791631615,19.100428986257,19.3837032813755,17.7959116064461,19.2295119626967,19.6296536511539,18.076303875023,19.1681459896923,19.4788447889577,17.6877963099992,19.2174421514634,19.6923391705703 +"P40417",18.4615247435439,20.0510807013123,20.7016611076977,18.5050178065071,20.2004515564585,20.8643281587812,18.4171582816597,20.1580736515398,20.5473559476079,18.6324399603353,20.153099308141,20.861302111227,18.5894502823272,20.1356390740768,20.7584369208111,18.8188686402617,20.1941544115645,20.8381720209837 +"P40796",17.5368437644819,18.8459778541695,19.3215751433514,17.2832443751508,18.7101217767828,19.1210483029936,17.6552801893912,18.8073648804782,19.1464735062564,17.0250504306448,18.3773646975737,18.9713800484676,17.6778450164884,18.8835661034421,19.2104453552203,16.9453173924398,18.1401725957929,18.5301634887867 +"P40797",17.3048520891443,19.2077077786785,20.4460083053381,17.3883324189358,19.5888753779115,20.6774748760915,17.3688930883701,19.3783337068842,20.4230640256459,17.4307436069287,19.5433530299356,20.7126167436256,17.4897038156435,19.4376119487452,20.5174295360521,17.6147834047211,19.603282043737,20.787175891985 +"P41093",18.0194403443104,18.4430682390619,19.4412740678872,17.6896071738469,18.2144260611797,19.3354700333957,18.6768209848747,19.0337730957345,19.8871030193672,18.461809436146,18.8955998657055,19.9285629442286,18.7670500619164,18.8427094095765,19.9500322313813,18.5105317511203,19.0357453266072,19.7709975620327 +"P41094",20.5897102574258,20.9117626560117,22.0771710468574,20.3923098556855,20.8053457247283,22.0127069102705,20.702159618086,21.0178982988051,22.1790029539906,20.5143247078046,20.8926270064104,22.1854298714298,20.5443086701597,20.924125909609,22.1443100165344,20.4370243926868,20.9252939062524,21.9733962734803 +"P41375",16.7615844951646,16.2410311685935,17.7337927320925,16.802541546731,15.9211237176919,17.6639198506934,16.7611218779232,15.9864526089778,17.4885750388631,16.776798510307,15.8623798907016,17.7925841857957,16.5966889200209,15.6622885629657,17.5874454994632,16.6378224249675,15.3167368036334,17.5698954300822 +"P42207",14.743067554108,15.9883895420155,17.0763702667166,14.8149561551136,16.0732654846989,17.0029649755484,14.8121135758137,16.1199118357397,17.0613095943059,14.9369987385256,16.0433028511698,16.9336070596247,14.7234972224212,16.0976447649711,17.1249745241442,15.0968314590591,16.0224660890451,17.3966098286739 +"P42281",21.7485139569042,21.4276744632519,23.237668280707,21.6184227326581,21.4947471409603,22.9067328750477,21.2884792990797,20.9718874481942,22.7350256777774,21.2593151736908,21.2064257715635,22.7057096498283,21.2110371151981,21.1402547083002,22.5680684573877,21.3272733724509,21.1935677821483,22.4918111340713 +"P42325",19.6693156094032,19.638913711743,21.0481443491905,19.7807374788011,19.7059690849811,21.170267136772,19.490485495985,19.4426958540831,20.9755361577746,19.5647503816296,19.4742587070167,21.1032286258483,19.6434598542119,19.5632814950387,20.9890019951934,19.5612986138619,19.802210285708,20.9700115527689 +"P43332",16.2775128349607,16.8928128467047,17.9777290781434,16.5688411498655,16.9528733071302,18.2371886371522,16.4992838788838,16.786992998431,18.1605772978629,16.5315806154797,17.0459408697477,18.4430336054856,16.493609275659,16.3942209702091,18.1027069778063,16.8072608489576,17.0172370801549,18.0923833699774 +"P45437",15.5494039109042,15.4991284568465,16.329196579443,15.2087850889763,15.5574608314145,16.2624595928672,15.9169984923683,16.0924299726156,16.9383908229325,15.9460458069524,16.0285026452896,16.6102433308198,16.0540861389628,16.0020062642662,16.9256974730743,15.9983897801677,15.8914177630228,16.885888702685 +"P45594",22.5175727190338,22.4201002213247,24.1087231623095,22.5226575562737,22.4585664387054,24.2645456628625,22.382907157673,22.3288396664816,24.130899249709,22.5571370796297,22.5399047675697,24.5118308221016,22.268175768938,22.2048816240682,24.1526819426358,22.4663011044087,22.5619397008994,24.2785205240677 +"P45888",14.8990232796624,16.2534250971574,19.5634368169171,15.1925979495078,16.5326563427433,19.7138306687112,15.2116734733804,16.5619163186565,20.023249772478,15.231231133125,16.5006699521067,19.9118268172758,15.3146630551328,16.5593154993303,20.0508121656324,15.4036817528806,16.5936400950726,20.1099363265584 +"P45889",18.5905812513919,18.8002227199469,19.8021961399368,18.6717019324212,18.8242227283814,19.9238386851877,18.8091596276974,18.9099961656065,19.8738907616124,18.6676447759145,18.9017288044665,20.0582664854059,18.8421846449947,18.8606954248689,20.0411628247181,18.4710904071391,18.9134575478629,20.029463492606 +"P46415",16.6321669617115,18.2140710357432,19.2498458537361,16.2665807065104,17.974612399233,19.0693146569695,16.7113377240081,18.2274301247293,19.0505344671472,16.6418718583783,18.0499835032742,19.0601986360008,17.0375322897554,18.5802705493069,19.6008830429922,16.8769598100366,18.3354551620658,19.3249801409547 +"P48148",19.4224579188948,20.4266953395082,21.491381551645,19.5483716562549,20.417944224347,21.6694338390416,19.6059261197435,20.5763647479512,21.854101218676,19.6150598168503,20.6903458830334,22.1202892054368,19.5707840912313,20.408808520353,21.9265587470328,19.5048197090146,20.8798052361061,22.0861307268017 +"P48159",18.9721395234172,19.7840824447972,21.0754204866526,18.6909615625892,19.7208501496022,20.8750151598016,18.9186106917089,19.8860029286362,21.1581765472165,18.7876799322555,19.8022457106847,21.1543587854585,18.7915354744111,19.8690986624426,21.1664587053157,18.7176103687075,19.6634330921839,20.9789128273546 +"P48375",21.2097388499511,21.2750305411047,23.5737009399557,21.4187240971586,21.4005403912591,23.4888928348596,20.9354175389241,21.0030511047942,23.3081665667922,20.9544801754496,21.0914099759905,23.3005244164977,20.9767490916064,21.1230928895991,23.0265106056241,21.3532974799469,21.3056796906513,23.3239442558916 +"P48596",20.0576022573479,21.598738741831,22.765344027611,20.267771355284,21.8706899641375,23.1074380579195,20.4877345174518,22.0171247842342,23.1523754164589,20.7726544187974,22.3825796713362,23.6004539730356,20.3592455638264,21.9734605490898,23.044400172184,20.6087622038243,22.1287346604981,23.4142182298611 +"P48604",19.0990957665784,19.6843493524749,21.8582330383615,19.1191220507003,19.6684182019424,21.7609882736235,18.9812677010451,19.5426968782361,21.5784384328356,19.0053196989542,19.6352582772115,21.662570196811,18.939369852319,19.538257214888,21.4069544187447,19.1309887892032,19.6028980932332,21.5299797117028 +"P48609",15.054358586404,18.2687048660841,17.4281595400458,14.9989594441479,18.3118519199068,17.406817883234,15.2548913236905,18.5311211960381,17.5633776268357,15.0625158209896,18.3131386487497,17.6048181152632,14.9186731516242,18.5230616927086,17.5266464617858,15.1943200328533,18.3585912897914,17.4554070403756 +"P48611",19.0779100292027,20.0662705500366,20.9821268962576,19.0268425679634,20.3144917571053,21.0912680172949,18.984908082725,20.5331088212195,21.1728377234931,19.2018542137452,20.7118461755365,21.4110272264287,18.6536203690568,20.3866994685231,21.059696506844,19.0760997405315,20.4418512984747,21.2541885470088 +"P49028",17.7694458898411,14.7825872870897,16.2171137730787,18.0364835946895,15.0124525774796,16.0611564252708,17.6897636091614,15.2268161114327,16.2333384265493,17.7546772410405,15.1793963786005,16.1819176476682,17.6639422941655,15.134781720972,16.6489920717561,17.5416931410803,14.9751743492003,16.5334029378727 +"P49963",13.637015047518,14.6966993854606,16.1842767434504,13.4159872130521,14.898010507308,16.4118276315148,13.4535092388863,14.8827902433633,16.2324692189857,13.6645548323294,15.1697418138839,16.6120423577346,13.0325184161563,14.9000912838841,16.190758237192,13.5670469859944,15.0752237689369,16.469285122481 +"P50887",16.5351797294815,16.9878231249764,18.2540744809661,16.9073431453035,16.9945308033898,18.4364466572017,17.2201080218403,17.2317540857876,18.9612566163061,17.5100653605707,17.6046450489301,19.2394381343797,17.2157173422937,17.0405102981697,18.7892083735727,17.5741373788105,18.0837293331556,19.3723385568947 +"P51140",13.6395567369771,13.2353374000787,13.9598197978748,13.9646308666272,13.2094771000408,13.917685313142,13.7035669831675,13.1591109988808,13.5305085264135,14.0326745593772,13.3004933577528,13.6182584443938,13.5703073979347,13.0902011298342,13.8222643103879,14.1938542506251,13.3292991213787,13.8550801002971 +"P52029",16.5457838318708,19.5417531494238,20.1611160036142,16.2175305845608,19.0498287456577,19.5573287134278,16.1644383511219,19.1418492562042,19.7813708467106,15.9158241210533,18.9319299157674,19.4668587701871,16.7576446568236,19.4196097181869,20.1582074927337,16.0132024643036,18.4561454768208,19.4580475374803 +"P53034",14.5272928926171,15.5451604187219,17.1203794891965,14.9523376808057,15.8305309155062,17.1245074743049,14.7083915875938,15.6087692357789,16.6719896640925,14.7819896945664,15.6992364422438,16.9956824002742,14.5216422265588,15.5035318283357,16.634460239778,14.870526500734,15.5811272731181,16.5442478132858 +"P53501",23.0635308816334,25.1250160042722,26.3465710797995,22.6581915240896,24.7769862636829,25.9241436725005,23.0428600739186,25.1769926833413,26.2463127115523,22.5927420671199,24.7291720304162,25.9069709091255,22.9353526987034,25.0948934263549,26.2357941081184,22.7310282642448,24.7222789719776,25.9245924567167 +"P53997",16.4808624210262,17.5414561473018,19.0105805802771,15.9219051766528,17.4721059269056,19.0647981167679,15.0157100844809,17.4527542478426,18.9896994006438,15.4161055114804,17.5358122287759,19.1818126019705,14.9545418644664,17.5431271764862,18.9310564335596,15.8959770239163,17.3599748676209,18.9353388048326 +"P54185",17.0087367159408,17.4811771526895,17.6303712409745,17.2496179015274,17.9901475924264,17.8085966800749,17.2429043933386,17.7182053733533,17.8540048675404,17.2952906305547,17.8868092949552,17.7606586143304,16.9136410003279,17.4696985422208,17.1735731679554,16.9371044779557,17.3451685220951,17.0882861514355 +"P54192",23.689656638246,24.2116454463193,25.2874269390072,23.8919950627991,24.5531754705009,25.307528364733,23.7145642210363,24.0270797282132,25.28006598559,23.6584501814219,24.3454735850974,25.292349951447,23.493622634777,23.9165451023371,24.9098900095937,23.565529940104,23.9655607612905,24.7746475966387 +"P54195",17.180237730856,19.243767002461,19.4211547825721,17.2073925766749,19.2506583342267,19.4204774325324,17.8301501936784,19.1835545050329,19.6284431703633,17.9140329517486,19.4311056439802,19.857790435468,17.8679518548812,18.8578104128546,19.1904244651309,17.3532659642582,18.9200479870082,19.0804438419298 +"P54352",15.7060012625476,14.4495097771145,17.8876466044244,15.525019823196,14.7491711445127,17.7962167165909,15.6383337498354,14.9577544767085,17.9453359810202,15.4452519678295,14.5346668314122,18.0364007308273,15.5211342566056,14.9808281556069,18.0950264325412,15.8433965259233,14.8289839983886,18.0337030295154 +"P54353",18.1435156445224,18.4955536663132,20.0703625434319,18.4633838724517,18.6519432752,20.1393089321963,17.9523042520201,18.5165903687261,20.0908302572249,18.2261064407122,18.5393965959237,19.9381124068925,17.8922550660196,18.5697470849187,20.0591913102566,18.2824839828235,18.3335248731365,19.5644340240574 +"P54385",20.3880643964272,21.2272182504606,22.5496091414256,20.0629483037568,20.8846229399333,22.1451924836904,20.6827965421516,21.6066704311507,22.816375616221,20.4158891535761,21.3041583185784,22.7306700643511,20.9564550260506,21.9147779036992,23.3208629518727,20.4426934147676,21.3348553045764,22.5803248339979 +"P54397",12.9509399432484,15.5448149026509,16.6128227644963,12.3311543336061,15.2668545357035,16.2091596475209,13.01183038717,15.5033150458991,16.5037842945481,12.2397090374673,15.3014455202994,16.3490588219569,12.7134027067074,15.3152587194748,16.3979824438359,12.3634900786852,15.2870527221563,16.1607015337601 +"P54622",16.3762161022475,17.8224573805664,18.7653741606814,16.7506496094586,18.0653927426515,18.6864085772553,16.8140441220749,18.1521436801586,18.885861604587,16.9171823491733,18.0743134944524,18.8085878929238,16.7703037656801,18.2757830567754,19.1017975988119,17.1611801773104,18.3502415877151,19.2156042028861 +"P55828",18.3323148216643,20.0767850985939,21.5257791063145,18.5193454127446,20.0042813872126,21.3717476550428,18.4099667549277,20.2098253238567,21.4544494278387,18.1643789359679,20.0404921267486,21.4287947366166,18.2389263671808,20.1080670752943,21.5214343939804,18.4193288320689,20.1146585199883,21.4647516586872 +"P55830",21.3053484353933,22.0489984185711,23.0202476484892,21.1158400321514,21.9545193420276,22.7896944572744,21.2875920917383,22.0410775783193,23.0628419174324,21.1200677412605,21.9477289333397,22.9180880047678,21.0827459815752,22.0106325097706,22.9035698757118,20.984908505572,21.7369168867836,22.7531838519469 +"P55841",19.7045073743179,20.7008802525339,21.4092253182671,19.6413358016926,20.5421029726247,21.3320755009713,19.8322505673788,20.9506127990228,21.5858206794451,19.7139971115183,20.7046092537819,21.4661359015369,19.8721521477601,20.7471288726669,21.5386387348412,19.7061445755484,20.8147878486709,21.353091735969 +"P56538",16.1579657567885,16.9885121443409,18.0752196647055,16.2672145390253,16.9291976308486,17.8096209253494,16.3259535823139,17.1687252111515,17.9796282194584,16.1837740003082,16.9587205555735,17.6607453060284,16.4033163890898,17.3325137760273,18.0567159383061,16.3806958108076,17.1479307083089,17.8071433039794 +"P61851",23.2514845314026,23.3097746478713,24.2656552801344,23.2445357089811,23.4031883072043,24.3882182408619,22.9989078947898,23.2050397269353,24.179161805212,23.1802088156377,23.2771013800234,24.3017429098069,22.5722403935873,23.2160082685624,24.1490959663837,23.1299284853962,23.3950721860603,24.3064961475692 +"P80455",20.2905987912005,20.2584255456205,21.3078501314579,20.1655977575605,20.1852801861094,21.2362333219587,20.1351398430508,20.254857885145,21.3780206460539,20.0332382482104,20.152405620867,20.970142414604,19.7676430540692,20.4074071174334,21.3257044186978,20.0397790493277,20.4549116134895,21.2867376597841 +"P81900",21.1306335065592,22.2094433477724,23.71481740703,21.20943376489,22.4758932577667,23.7780432307173,21.0621923907827,22.3987563601249,23.6045203195434,21.176695597115,22.4149054193748,23.6318875319865,21.0592226970915,22.3300716395489,23.6497199927193,21.3291373301631,22.6397938294068,23.7916126481509 +"P82890",19.7053473579849,19.5311935295962,20.550732922375,19.8161916164268,19.4017863334312,20.3352389428016,19.2779119742607,19.3374150319789,20.1272889347451,19.3084587302142,19.1086438424501,19.9960697283726,19.251421637821,19.2896377525494,20.0782290871546,18.9434410801978,19.0901271277368,19.9597249775518 +"P83967",17.2210947271988,15.813561775711,18.5715570755374,18.3627988453218,17.4138263248876,19.6360339841952,17.2783871079805,16.2943594701973,18.8661859778947,17.3161491273271,16.1394657893144,18.7844280892833,16.7172763912103,15.62006411207,18.0452339752118,17.5330608991098,16.5917013374714,19.2150746817064 +"P91926",16.8456517929441,17.9089923697403,18.9152024065281,16.4103986485186,17.481470017301,18.4231885206288,16.4883513692583,17.5940617717676,18.6141827016771,16.7729861362562,17.7086013160947,18.7074808475337,16.7381942732236,17.6339395215198,18.9544154363008,16.7930246297497,17.6134741397463,18.7820656552664 +"P91927",18.1525409910733,19.5586497018518,21.2884848369582,17.9408676802082,19.2413617976187,20.9484953563928,17.9631585365414,19.1353216667059,20.9192568624935,17.5969478117883,18.9258968659512,20.5608845223199,17.9906172798726,19.2882073399683,20.9792870006447,17.4989808773319,18.7013914153376,20.0828617256871 +"P91941",22.4872388110296,23.1548780361271,23.9516846036075,22.3695374270847,23.0949321636441,23.7871467333282,22.3255736512476,23.030712032422,23.8754823428668,22.0930818164574,23.057364271372,23.9009242702119,22.5090442067575,23.2196568347248,23.9290766073689,22.1995385915802,22.9634257098075,23.5595396715792 +"P92177",23.5610006558118,23.7804921490344,25.2940123252552,23.5190442859254,23.9022871042605,25.3826932967757,23.2328682960542,23.7123250676836,25.1307631225848,23.5145974200161,23.8054027167943,25.3003770318118,22.9804423819471,23.701141857992,25.0833245860071,23.4756692691077,23.8246394618806,25.1512704160665 +"P92181",16.0279660805957,16.5631241006397,17.0532292319138,16.016046118991,16.4933345995882,17.008426918301,16.1363037943101,16.284527318551,16.9007390723031,15.97562725701,16.5826779673904,17.0822456034107,16.1604945905594,16.4356368821167,16.6973364291587,16.168444050504,16.5435199328207,16.9051385350929 +"P92204",14.2914805711778,16.0897518296284,17.0937005602467,14.6013208417986,16.3100717566426,17.3092470376973,14.1000595300173,16.3289640102146,17.0476830271961,14.4861220099608,16.0903999312923,17.0493993698033,13.6210255412361,16.223243659085,16.997850602469,14.5189670490345,16.2723707462224,17.1373610072846 +"Q00174",20.8377042562478,21.5880281801189,22.9439235060321,20.9735187709996,21.6751411297018,22.9443966897769,21.2361506534682,21.9322056048808,23.2896831157718,21.017395835503,21.749700440234,23.0689582186169,21.1926133878665,21.9413208391791,23.1803060169965,21.167980095502,21.9723376145206,23.2017303187174 +"Q01637",14.5647012065664,15.5711356109244,16.6804995518417,14.7047722124458,15.8440923380586,16.7437300207025,15.1000776804279,16.0930111953412,17.1360286406583,14.9896040868119,16.1286153790127,17.1058256917294,15.1758294879283,16.2015488360241,17.2153830138274,15.2489147233687,16.0981902772536,17.0795172398594 +"Q02748",17.9596180679771,19.4785294365585,21.5612078614944,17.6488362234066,19.2211646640265,21.1914638156292,17.8737124949956,19.4643951097816,21.3406006065778,17.7983854816479,19.3520977302484,21.3176937596428,18.0843066031323,19.7108787531386,21.8218455074666,17.8066342531079,19.3607945511592,21.2094442222635 +"Q02910",16.5298329843102,14.9460691621482,17.9804591772973,16.1575028967396,14.8053440997276,17.8107699683079,16.0865373625629,14.6437080334874,17.8047953512343,16.3016681391234,15.274933775952,18.0540471801526,16.5198135358058,13.8329424895055,17.9527036529726,16.1153519596338,14.5785106258686,17.8617261250651 +"Q03427",20.966571933348,21.3989276304866,23.0475374611147,21.0291541374649,21.4292284318215,22.9706754588762,20.9257570715878,21.3547146038257,22.9784120729263,20.7841913205431,21.3721130114191,22.9135155169838,20.8821579329737,21.3157201741808,22.8908475877911,20.8630366481158,21.226276116197,22.8214655216693 +"Q05856",14.5829965656219,11.2372018555522,15.1977140517333,14.3839685265673,11.0280111534733,15.2935094015715,14.6392551304787,11.0718360651067,15.3261290767166,14.5747969110049,11.4520223954431,15.390665515279,14.3620603451599,10.979902011139,14.944006456201,14.6447246875752,11.7906255492104,15.4827908886006 +"Q07093",13.9505634752689,14.8783861847169,15.2497445673386,13.7082119324613,14.5572929508784,15.024336912158,14.0252537625783,14.6695656213369,14.9367025495149,14.1302831623974,14.6424239195686,14.995819898156,13.8289001417244,15.0487333814775,15.4700927517482,13.8975807790541,14.6448044707162,14.6042262267726 +"Q08012",18.9362337563414,18.5141645417285,20.377042366649,18.5946384736481,18.4037283609229,20.2314943047026,18.7174038689817,18.6013931163512,20.3431008985065,18.6212947025426,18.4505997445389,20.007126066134,18.5924128728431,18.7119572581926,20.348154192451,18.7574235642445,18.7447572907832,20.3187154223276 +"Q09101",13.9185350091325,15.4223729154506,13.9218961522446,14.121069807908,15.7868975785607,14.2516186147793,14.0202014590952,15.5969636026122,13.9948103515701,14.0309848122637,15.7269805713993,14.3446222404197,13.7786116448475,15.8180205607675,14.3052609948323,14.1629655159074,16.0363506068715,14.6373839865868 +"Q0E8C8",15.4548970388924,18.0062400216786,19.3013796714345,15.5414300836209,17.8292429409342,19.2564397798554,15.5823151923435,18.1193342566949,19.1287556410133,15.3856081720481,17.8560015865179,19.205306437526,15.6503085935928,18.0334978952768,19.2599206618611,15.9827823746808,18.1747425348957,19.3239740889887 +"Q0E8E8",20.4627836173736,21.3698765473729,22.6830605109405,20.2028544657171,21.2884013970754,22.7003444943773,20.3396480804595,21.3161206599788,22.5534973098871,20.3654850443351,21.3198250683221,22.841819397851,21.0345960986489,21.8183706818631,23.4485464137876,20.7547371216297,21.8750399219295,23.2081996443605 +"Q0E8P5",18.1237310390637,16.4366935984191,18.8085897973326,18.0099503242082,16.5883151196547,18.8248584371798,17.9394132427398,16.3107354039466,18.6949815218784,17.881617208027,16.4247640164273,18.703471722766,17.8650487533767,16.518320467874,18.636891170616,18.1853879917437,16.3440458276853,18.7946488093732 +"Q0E8U4",15.3535627592389,17.1182274117281,16.8164066499365,15.0965864332377,16.9702543912972,16.6140523777436,15.0423492556485,17.0319797455896,16.6609615917379,15.2596657050788,16.9169277143605,16.5392880668152,14.4230827716139,17.0173698731926,16.8214258476804,14.5993289543996,16.9540083691769,16.6392098784227 +"Q0E8V7",19.9145972815406,18.9895930765375,20.6361624726478,20.184536847969,18.9534772654204,20.5064138080623,19.654263387378,18.8498521322103,20.4745434274493,19.9133797758655,18.9702775426941,20.3473755946039,19.0860892191066,18.9059861713767,20.3039886961906,19.6482896586689,18.9531479959094,20.3568480552374 +"Q0E8X7",19.2799967359401,21.3881022123121,22.4906899751791,19.2587047649428,21.2034062126709,22.5813607830516,19.5161349975223,21.0920796458692,22.4062561097126,19.2631781250982,21.2387993867141,22.861068248255,19.6495908148648,20.9454910632508,22.5327144534763,19.2024109651948,20.9916560651949,22.2871522240571 +"Q0E8X8",18.7057911582463,19.511382617622,20.4510753472575,19.0201261202746,19.8257877809681,20.648638615368,18.6101214279286,19.1443877618482,20.2460675837822,19.3701898848641,20.1196036123553,21.1711128252001,18.7341006793918,19.2943788588659,20.2303665147724,19.9099888040511,20.2036006984287,21.2391679801629 +"Q0E980",17.2962082843489,18.6199574585155,19.2591114565614,17.3437258579435,18.6205851971411,19.0307369703576,17.4723114080369,18.5568558279375,19.2797104176159,17.2730673956332,18.5666183875972,19.2327351446801,17.4001883510861,18.5332297057463,18.9519748546902,17.349222729102,18.7477825181772,19.1118331324982 +"Q0E9B6",17.1224924636491,19.2480649963589,20.2841911960024,17.007743506776,19.1046600159961,20.2342338733058,17.4893191167973,19.7242376636498,20.7493002413386,17.4776548661653,19.5598775394998,20.5637286375355,17.3398928530086,19.656812825108,20.8134825146998,17.5454916810885,19.5440723364586,20.59649388606 +"Q0E9B7",10.9573286349668,12.4940323556094,14.8324496713155,11.7532487988757,12.256254162621,14.9674697668305,11.56551468958,12.0030283470039,14.7650465463544,11.6322633300618,12.9233313415177,14.4201962902726,11.3177790477461,12.1002069034804,14.7067126003182,11.0799957043401,11.5955428328486,14.9206764552628 +"Q0E9F9",17.2399685572583,19.0135763461882,19.7075847673618,16.5365026296357,18.7673831808285,19.300416633056,17.1554907629712,19.1527994584732,19.7132437357371,16.8357472743506,18.7149273363964,19.4792245458264,16.9086672169219,18.9339497123444,19.3360116753992,16.8666024017267,19.0064132495686,19.476538925195 +"Q0KHZ6",22.2680295072584,22.7129285624781,24.5988865447243,22.426012914797,22.8196165441696,24.5406779759219,22.152372363757,22.6178252141477,24.3783137527589,22.1379678548967,22.609156941394,24.34353801487,22.1923663357391,22.7418347243035,24.384861710667,21.9801709439645,22.4061536918736,24.0227793262583 +"Q0KI15",15.4489327127709,16.2967244954805,15.1595678179725,15.5276012552289,16.1406255977653,15.1174360964439,15.3286250049676,16.1154671248434,15.056421213346,15.5014902210894,16.0765981283424,15.3731409390627,15.6401692787342,16.1614470595397,15.3412368105821,15.5167705017172,16.0226531644224,15.041870061235 +"Q0KI81",13.8578827408359,16.0213731596033,17.087943469625,14.1780174864403,16.0931967417729,17.1103439267536,13.5602688748891,15.9436771051619,17.0190898020182,13.73999432647,16.0041767367512,16.8809324305168,13.7516807323013,16.1024579324476,16.9838270458984,13.9854259103016,16.0022188759484,16.9323456531228 +"Q0KI98",15.5088711216707,16.3675961851743,18.0108536598792,15.2824643537603,16.4079086674825,17.8239478521814,15.442173554757,16.5143617595595,17.8123184182512,15.3726717242209,16.5588228655404,17.7823597461377,15.5621457468057,16.6863011829595,17.9799841923033,15.8197986507519,16.5439017794271,17.785966253812 +"Q0KIE7",12.5986218998658,13.007370420264,16.5278634717242,12.3513795484578,12.3489348139535,15.9909165041841,12.4239171251133,13.3126200947523,16.1579987958397,12.3287399618466,12.7838344497948,16.310555916285,12.8913984213632,14.0922199482,16.5502195507532,12.7590823110332,13.9305655107475,16.3870853494819 +"Q23970",21.0877907359998,21.2831522439044,22.1178060320744,21.373327924994,21.6103088834861,22.3807389820577,21.00587513264,21.3260284095003,22.2274689274232,21.1672443803448,21.4846796087332,22.2370725271993,20.5222813598904,21.2041096142037,21.6872254642426,20.8265234852921,21.1451706450881,21.6976837907807 +"Q23983",21.6324239031041,22.0592692083237,23.5413322782248,21.7139551000057,22.2273268412406,23.6250866776035,21.3540648514025,21.9505595619418,23.2871916222473,21.5246131768006,22.0067454940578,23.3763210256704,21.2599437565064,22.0663256703763,23.4145411773134,21.3806797217871,22.1775889418386,23.4433451650964 +"Q24050",15.1113916326325,16.6138331118824,18.2484902834213,15.0843926987644,16.71418629729,18.3150351174762,15.0672349237256,16.5549086984082,18.2475627753653,15.1044920955003,16.7057259779974,18.1608650803915,14.9309286162401,16.5860028433243,18.1234579633218,15.2102723816132,16.6319806520594,17.9858416370791 +"Q24090",14.7793127772266,15.3415863676534,16.7062658510821,15.2099296875984,15.6933494013214,16.8823274225621,14.7886336982264,15.5531598470576,16.7818072473121,15.3972085540852,15.7297891728128,16.8651295530011,14.7743293591309,15.724619911766,16.7405548838083,15.4651743250759,15.7859827266436,16.9571595418723 +"Q24185",17.79962245137,18.6122453932575,19.8886064777531,18.0041281209266,18.6384662722854,19.8106409876808,17.8291854659466,18.3944346498334,19.6586967019806,17.778768268487,18.5583905879683,19.6981425270174,17.9358821687792,18.4165111272681,19.5864542644086,17.9709711850823,18.432400230719,19.5376466141708 +"Q24238",14.966723469995,16.0482121092446,17.5344416449738,14.9164304149914,16.1623002247703,17.45390609422,15.175517064548,16.3426449493487,17.7301355628933,15.1908354196652,16.3809586093377,18.0025067949094,15.4233133727792,16.4905177097217,17.8441341820351,14.9781829329388,16.3475614846161,17.8308653734901 +"Q24253",17.1062835190602,19.2203921362543,19.3209888956523,16.7676431930477,19.2162424633473,19.371087603548,17.4336270498128,19.7075604754225,19.6295444793941,17.427828754015,19.669156743671,19.9000224175024,17.5390300574609,19.9877214336112,20.2153914072304,17.8879576748426,19.8768459360678,20.0325582423023 +"Q24276",18.0674848586373,18.5948973975908,20.4297740304861,18.1078806797422,18.4832366820008,20.2457491186043,17.6338273299658,18.203550408019,19.9924588103442,17.4455275923948,18.0861890961633,19.8525746207022,17.550876061341,18.3239977533435,19.811911640698,17.4329138064371,18.0377406960923,19.4875657440267 +"Q24297",16.8107907677953,16.0878165484327,17.5649733345329,16.9055509236234,16.1886954116657,17.8402129672248,17.0970763180922,16.2059847287322,17.5520284646518,17.0467664824725,16.339124043929,17.7446719987241,17.2099495953957,16.3442418006456,17.5696348279212,17.3334659840346,16.5302527675274,17.7913126995189 +"Q24298",17.8860170346339,19.5808119301392,20.6605030094669,17.8954538415167,19.7483439841157,20.6386297121766,17.7884271434787,19.533361219676,20.6044794678212,17.835161602568,19.7314292130208,20.7989614103347,17.6720487738002,19.665272694467,20.5705453052819,18.0094186976783,19.7932043925185,20.6617525374515 +"Q24319",13.145046612991,16.8135501690642,19.0103313071736,13.0316012108757,16.6404463417772,18.7227195466279,13.3135169802225,16.6752547615958,18.8422845177468,13.3159457211085,16.664629121669,18.726810992321,13.527267732596,17.2437330909595,19.328175177707,13.7066332376568,16.7252930643897,18.9963830464138 +"Q24372",15.0509223512034,16.544601540259,19.2919129382347,14.8860107924656,16.1093728925373,19.2693818765688,14.9217822190863,16.3651616833482,19.0116015535722,14.9637914417421,16.3468197410721,19.1921201417318,14.9774815147608,16.573243465155,19.5648093361141,15.0810121838652,16.8732644513057,19.3138489741938 +"Q24400",20.6346192389638,21.3039990313887,23.1651057236743,20.3496433645164,20.9314398182358,22.6101479176312,20.7248674124648,21.2660743972308,23.1339132557804,20.1805483904077,20.8350229677442,22.6763468312354,20.3913339659188,21.2487510089637,23.0359216541243,20.1614497665106,21.0351604714424,22.5865686360666 +"Q24439",23.1947471978891,24.1503778297038,26.0366619497846,23.0617760125902,24.0414746231726,26.0149755244528,23.0852270446899,24.0086221576459,25.8344105453205,22.9447354467063,23.8920193583276,25.8299467562125,23.0037747380214,23.9170241317706,25.8817016416016,22.8674137127986,23.7564408894807,25.6254115553821 +"Q24478",16.8643246525693,17.3149744907748,18.7467567790692,16.7962971611229,17.2530251715821,18.4880915578947,16.7206446446359,17.2429808483501,18.5166619380911,16.5413554992559,17.0952381285342,18.1045233042333,16.7979479920249,17.3003239286885,18.5789759377804,15.9488559341897,16.9360311462752,17.5815888139719 +"Q24492",14.7233662928802,14.866843306434,16.1144109480062,14.4276705332629,14.8520209449664,15.9574229751853,14.5901423926994,14.6613639787104,15.9112456875226,14.4886464014669,14.7360456520159,15.9066943556011,14.7980346794167,14.9539316003695,16.372542764584,14.7831522688304,14.6095281281797,16.2995667922162 +"Q24583",19.8431787650786,21.7024942747238,22.3769868123151,19.8127788106045,21.831726451973,22.4340009751098,19.6794765831931,21.4909949824781,22.2533130835093,19.8867141730611,21.6612536618023,22.4182745662148,19.7598495575479,21.49326413769,22.1439113124581,19.7787147849119,21.4911309645849,22.1984431335162 +"Q26377",15.5798634519193,16.9408256068042,18.1135797058738,15.6790836218433,16.9330542517094,17.9614660877491,15.267817448841,16.7128736581899,17.9192105147582,15.4502296260309,16.8707778266665,17.8479175569791,14.9988869781742,16.9669240126231,17.9125037273876,15.8390289357171,17.1747988277733,17.871641977106 +"Q27268",18.059944361475,19.1748050047873,19.3748339916387,18.0910822447087,19.1504217697133,19.4328187463391,18.1840318879708,19.3267173880617,19.3386898211652,18.1254876243465,19.3814332309893,19.5005701002564,18.0519824901014,19.4165692820516,19.608122562242,18.2461105895963,20.1208899463595,19.681345480645 +"Q27272",15.1672601484284,15.8124369644894,16.4553315275354,14.9964892529097,15.7765718541467,16.4083189895582,15.4114685915986,15.6593140094793,16.4468191757843,15.0544362880759,16.210948640711,16.4352150840873,14.9200332853575,15.3482163596641,15.9523673256113,14.5553930244318,15.6520665232039,16.1816778977524 +"Q27377",19.569679081327,19.7013881375687,20.9215857040248,19.8902701842079,20.1533694233606,21.001238700829,19.5590798086955,19.8870411512604,21.1057307369022,19.663312286895,19.8984096044708,20.7692398378483,19.050901477811,19.7587402725261,20.6568623556672,19.4192750117671,19.5434098513842,20.2714201103597 +"Q2MGK7",16.6319845066886,16.9440444435023,18.0464827106184,16.5667632828856,17.0543417978439,18.270720952295,16.3328746037179,16.694867636124,17.687192993768,16.6027210752007,16.7330123054521,17.9321618005677,16.4543109168354,16.5766026755802,17.5191802839174,16.6601287544349,16.6440506710663,18.0937458381476 +"Q3YMU0",22.553735973404,22.9526001522009,23.9976127948249,22.6074115596071,23.030440943904,23.9395207649914,22.5262046230822,22.9067973255758,23.95357148231,22.5571163642823,23.0319762222954,24.0507770338387,22.4888827501281,22.9573675527236,23.8921107145992,22.5226045996422,22.8811906541159,23.854212602179 +"Q494G8",13.5915852038791,15.2654074987531,16.5086176996943,13.8670534367455,15.5441186662101,16.4750533795712,13.4095367501123,15.3393386206389,16.1973993920252,13.6711049135838,15.261604640483,16.3346519039362,13.6990944642402,15.3280131369925,16.3626929907707,13.5952914538579,15.3401099094241,16.2645258094114 +"Q4QPU3",11.8342304312569,13.8489379221742,16.5473771291161,13.2300282299376,14.1853276855287,16.304941405072,12.6982838319663,14.1499054926769,16.3443408021584,12.6630258965,14.3882048097769,16.7408684450185,12.5892363352272,14.5605489571935,16.2188201056972,12.7279066130753,14.8582631742657,16.7174593653885 +"Q4QQ70",16.2199127705538,15.810108490183,16.3521917642678,16.3839851245539,16.087794999273,16.4699024326237,16.2755742675873,15.7109747797876,16.107394771904,16.2252023596296,16.0403371396205,16.2076280561819,16.1099051916553,15.9497604432612,15.8997026445253,16.2094201924982,16.0398062602615,15.9842399164419 +"Q4V5H1",14.6645286709892,13.8751168321505,16.0232776752885,14.6000254418926,13.9165814219596,15.9037436152615,14.6354164317064,14.1532253572112,16.3834696526801,14.9967461198285,14.1534925241857,16.1677213267238,14.4086877513206,14.2511314252556,16.3519116171661,14.8157978104277,13.997041914205,16.2473051411504 +"Q4V5I9",15.6921514843633,16.1295846152413,17.0974562857951,15.4201732918629,15.5859790045908,16.6874767615361,15.2005348426009,15.9560454358231,16.9543266958447,15.1281102425829,15.6756813540694,16.5372786539612,15.637540170905,16.0493271545823,16.734667610724,15.4384761203362,15.7930739241283,16.9887992804485 +"Q4V6M1",17.042916720237,17.8991079316616,19.7479832049376,17.0083857230881,17.9811020601621,19.8032934496504,17.0348980404386,17.8961248629156,19.632902840603,17.0601488730982,17.9649799572983,19.7477670386538,17.0519110104492,17.7893102400104,19.521497097223,17.2666154841791,17.9760714208556,19.5624220921803 +"Q500Y7",20.2158653917433,19.7534386047488,20.9075829411845,19.8237616095387,19.7141085060072,20.7994143871644,19.9319801277959,19.5731245539206,20.5928979971394,19.7506608051461,19.510089437017,20.4697497228087,19.8809652047025,19.5259086501436,20.6770186404073,19.8079218837263,19.4446105547869,20.565530472494 +"Q59E04",15.105646335722,16.0519194664558,17.1620070602585,15.44955008226,16.4363372208259,17.7838468949001,15.2317763631884,16.1771622020371,17.6039794577806,15.3751225337701,16.4008174000839,17.7774842890037,15.2256312982343,16.2186087203625,17.3512951795471,15.266604014076,16.8521317676546,17.5722231278354 +"Q59E14",13.5562221416517,15.0090343239125,14.6478773153688,13.1897593262769,15.4197144131154,14.8776088269902,13.5821161272862,15.43168962327,14.6358783766606,13.8124141573571,15.5127580460382,15.0312644750521,13.5688034849453,15.2539140366558,14.5425673537925,13.672748768419,15.6570722691119,14.9931140593546 +"Q5LJT3",16.5426453659855,16.5287430298944,18.4161675612351,16.6592479929262,16.3267903715771,18.1480316089449,16.4527735808093,16.6934007735366,18.1459303736413,16.3152930538306,16.4233184226031,18.0838743634759,16.4372944480242,16.8555135303545,18.384102370813,16.5592184804813,16.3017269830243,18.058966196574 +"Q5U117",13.2708262506677,15.2384488891054,15.3371254419461,13.2250915797642,14.4273620591546,15.0021591138408,13.3188412368693,15.1954135175665,15.2845798978505,13.0389289860366,14.9889450150415,15.2591513783097,13.9009744622799,15.554919845456,15.8404179964652,13.5834064682172,14.993278598731,15.4039986677539 +"Q5U126",20.4617895266313,21.5320215784815,22.4406311090872,20.9351455904443,21.8901545036738,22.81547170046,20.3985572008563,21.451785582143,22.516491103935,20.5173796728285,21.7477662301843,22.8872236315516,20.497436575219,21.5989133556859,22.3270213192754,20.6040122928017,21.843653753974,22.6535692636079 +"Q5U1B0",14.8966227782063,15.751818977697,14.8554590202122,14.3598768204726,14.883388944917,14.4449501140709,14.8182216720125,15.579698224297,14.377145781098,14.4683173168621,14.88484127397,14.424080910239,14.7171157761631,15.038137393144,14.0691184032333,14.5093248034451,14.654563260779,14.1191482100598 +"Q6AWN0",18.2113973139517,18.5423710514859,19.2456097950472,17.7322088742089,18.131934330465,18.7959548395755,18.0179897239141,18.5586583573165,19.2333026117243,17.6051402224557,18.0982808826717,18.5700170535914,17.9097990667864,18.5350950868825,19.1716064674761,17.9058719664091,18.2156189091869,18.711439836214 +"Q6IDF5",18.770132202278,19.6269869932745,20.8832461169102,18.705879166723,19.6624922524796,20.7043666015304,18.622689517313,19.4973524059511,20.7185402308496,18.3002883292981,19.6709687773311,20.6614781238526,18.7554048416879,19.5782447210771,20.7213544781363,18.2775617458411,19.5363090271855,20.3802089194402 +"Q6IGM9",14.7485475525511,15.9996020313374,15.4660648725465,14.7786489700902,14.5044199991918,15.4036274066236,14.6680614597165,14.1382553250085,14.984249460467,14.5040972444034,14.2357532141871,15.1125002125139,14.6354881115531,13.8931028147487,15.2313902641697,14.404446453712,13.7932822547188,14.9504293991555 +"Q6IGN6",15.6164254609112,16.6498814883734,17.9793523642176,15.7662309997925,16.728418821005,17.9528699947697,15.6297674837379,16.5574819723357,17.912457022247,15.5376000045957,16.7170511577853,17.959987812478,15.5514144948895,16.668919391117,17.8676437635762,15.3770792551838,17.4997195094304,17.7742840691807 +"Q6IGW6",15.4805873216172,15.7947478109252,15.8581708533712,15.0566340756784,15.8771424317728,15.880408237741,15.1215193194146,16.0392943241407,15.6816663562129,15.466848763013,16.1275245338879,16.1291819366328,15.3480146297678,15.9942184265905,15.8072446722541,15.1787185726665,15.9818180971506,15.5801406850149 +"Q6IHY5",20.1307196573957,20.8886308764122,22.1623830030475,20.1791048674321,20.8535275474609,22.1384155552667,20.0547069479931,20.6551317378397,21.9847623581882,19.6951987575948,20.4053369872889,21.8315410407601,19.9661018993515,20.6554872958936,21.899741199214,20.1117657439653,20.5225317988441,21.8842682853335 +"Q6NL44",13.775060615189,16.397159137381,15.4190138363948,13.3180751040597,16.5325611915734,15.7004777621347,13.7111129046895,16.5757369238581,15.324046083066,13.7145312449592,16.4543500591849,15.5648363327045,13.7732783833862,16.6139792125515,15.6215638863577,14.3675900323219,16.5294872575152,15.6734239630383 +"Q6NLJ9",14.7397899259978,14.6866094967881,16.4614008755458,14.6216173377769,14.9469500550076,16.4391703402794,14.643396325072,14.4271919899016,16.1056200506099,14.3656853129703,14.4831670878466,15.8758107300072,14.0393097418071,14.5784417123388,16.1043379543197,14.8586385397192,14.9930100754124,16.1993752144976 +"Q6NMY2",17.4557634275719,20.2134500201875,21.2593307241276,18.1053100001883,20.6193666529033,21.8459356497288,17.7897010067534,20.3729003417326,21.3101907915627,18.1166556960583,21.000286025071,22.0778251244102,18.0635459557306,20.8906430821067,21.9715519391805,18.1868469692872,20.8035260293427,21.9450125093704 +"Q6NP72",17.3601204810528,19.4545500867529,19.4420020485975,17.3727710996118,19.4111712971959,19.2736681066197,17.1712123243666,19.6068189982869,19.3946726180944,17.293223411429,19.4369464208082,19.3512961945796,16.9863933344747,19.8221548801871,19.4746013810327,17.3869885882395,19.7607964106843,19.3907316158138 +"Q6WV19",13.2242796210129,13.5527368226114,13.8437626629018,13.1127928577494,13.5817619068547,13.6521801344264,13.3072745463249,13.7840154845612,13.5474820207176,13.4274739623984,14.0315933011385,14.0169765485006,13.3588499402558,13.9580319580454,13.6381956601371,13.4981402214336,12.9574669046647,12.9951668167744 +"Q709R6",12.7708689593863,15.9104836195062,17.0972522834803,13.2637129607149,15.7515098154775,17.0317004363983,12.5264359492659,15.5235233066311,16.8312692054784,12.7334649352807,15.6395450083101,16.9569924668576,12.6922564531177,15.687971580225,16.9811078217179,12.3775176553105,15.1621165365349,16.843765779862 +"Q70PY2",16.0364822045292,17.2169377733913,17.3054601593184,16.3359023189605,17.6705848886989,17.7690992406363,16.8248623792729,17.8861701234576,18.1425942119977,16.4603683770186,17.7127922100701,17.9395082611979,16.698107152702,17.8388644374557,18.034282594371,16.0010881304314,17.1865749730245,17.2820037096585 +"Q76NQ0",13.1570852991421,14.8912197209157,15.7365231816837,12.1615307558256,14.5403731405965,15.4445833873752,12.8762495816066,15.0578906618449,15.6716630470245,12.8244202156043,15.0746216217827,15.8737506694606,12.6448744132362,15.3507469897921,16.0013210413688,12.6287477651655,15.113813283934,16.230887483455 +"Q7JNE1",16.5671705631531,17.9229370424859,18.8711227912554,16.7431035588226,18.1762011050564,18.9914240904039,16.5819051279133,17.9069875714478,18.8660438768847,16.5079570635988,17.9556088420774,18.8404348092523,16.4794661227641,17.9246608173077,18.6637712100581,16.578667719324,17.939444875212,18.8160225140063 +"Q7JPS2",20.2785958859571,20.3748388671967,21.7248933339691,20.6753682372133,20.6743402524323,21.8874084982803,19.8434685917325,19.9789336780526,21.1730436161954,20.1721789022134,20.2968820577766,21.3022695229265,19.6730305009431,20.2649494389644,21.2414581889678,20.5409273545948,20.6554859956024,21.7370476941699 +"Q7JQR3",18.1536817860875,19.3805832894658,20.470077250971,18.0915890101793,19.1980995637479,20.2057625188675,18.0081119981798,19.2770739775804,20.2434543725919,17.7826299759778,19.0435843019438,19.8731894213246,17.7444287955041,19.09751351468,20.0183710591327,17.8674309347265,19.0607408572951,19.9460613843445 +"Q7JQW6",13.6770419821026,15.9280406095022,18.1184727851075,13.7734885067685,15.9630281254484,17.9974611735849,13.7548838226737,15.8213867726448,17.9945971845169,13.4385463409302,15.8889252348552,17.9087433435485,13.799602662424,15.8758734826174,18.0485873495044,13.7262674759201,16.0524894795749,17.8649165913977 +"Q7JR49",17.8061482147417,18.8582814866442,20.199976571012,17.7529859968807,18.7931867302778,20.0892291346143,17.686672702919,18.936775166123,20.1637114150384,17.5372219637311,18.8848944963126,20.0088667649903,17.8272663364263,18.9405206420736,20.145450229664,17.324763533349,18.7168929091412,20.0217444105355 +"Q7JR58",21.8659156538437,22.4090769147915,24.2553992709769,21.9852719919255,22.6218285474093,24.4066289945514,21.6715041979327,22.3105544754682,23.9100866932508,22.0015586263811,22.5816677012518,24.247475856061,21.7780704421174,22.3579444470034,24.1176525701672,21.8326506957109,22.3054020837805,24.0128550605334 +"Q7JRN6",14.1708953419926,13.9860088379106,16.4486367034181,14.6199567375005,14.0693120970291,16.7963183382578,14.0235767461781,13.6677736231383,16.1785578926908,14.1490681633711,13.7740505762547,16.2955197263102,13.8591692515299,13.1742574797854,15.823820367738,13.8509416920386,14.1000169172337,16.0098021522678 +"Q7JUN9",13.7363016679393,14.1256416923289,13.5310370418139,12.5580361042967,14.1460147992141,13.5272187992613,12.5886938996581,14.0688255304168,13.205193762304,13.5332624791312,14.4628811447167,13.823341278751,11.8263061247489,14.1726058972062,13.3285837988339,12.105422877967,13.9961175508618,13.7153234881006 +"Q7JUS9",19.0448726505279,20.3058689683748,21.5443766072614,18.758692771099,20.0554028814292,21.3844028206593,19.2794643441061,20.4867921303964,21.6280372039588,18.728224130988,20.0200518242565,21.5256631011865,19.7344770837383,20.8692465557604,22.1973672236618,19.5309632966997,20.8658240388018,22.1617660527501 +"Q7JV09",14.6378041766119,14.6004672905155,16.3877698250634,14.7763803446388,14.4540631894018,16.2976409127623,14.8793375501825,14.378895783103,16.4650845093214,14.895119233073,14.5611120467914,16.2723085679138,14.6235163157986,14.4640649793677,16.2780407806304,14.5405087920917,14.1839581744896,16.1924604818919 +"Q7JV69",13.6420397302098,17.1178351080136,18.1269736795504,13.1696423292511,16.711809032044,17.976273347813,13.6067135280602,16.8865601563073,17.8753775523731,13.1772313005768,16.801780741252,17.9448414248306,13.899822349517,17.3297323342114,18.1922209687907,13.295118108415,16.9063336110175,18.0235314514552 +"Q7JVG2",14.1866111989626,13.5139401847136,16.3316075807697,14.8203876902014,13.6380599682607,16.2913181224184,14.6401156765899,13.870844171135,16.1124174150089,14.6463626767274,13.8540842448262,16.1977222292089,15.0065690772576,13.6312912432711,16.0500305889673,14.4834929231706,13.5530715748261,16.0561074074179 +"Q7JVH6",18.0207640810516,18.5724029917201,20.0742697248383,18.0050109490186,18.7287838264167,20.221719574844,18.0416180341615,18.7229752468919,20.1213163452172,17.9370514497462,18.746139685748,20.1908978515379,18.0423355373705,18.8908143938094,20.2727871800453,18.0941743327423,18.7416896641365,20.2685993996692 +"Q7JVI6",16.946674735844,16.5275415781981,18.4470164534889,17.0238728861341,16.5138528899429,18.5879991795493,17.2631448540767,16.8747393601067,18.5145203299744,17.368278762023,16.7517084133067,18.6747307919747,17.1920846396672,17.0591030542466,18.5063017232015,17.1121135326525,16.6985130134129,18.6215480056008 +"Q7JVK6",16.0951382932655,17.077540670465,18.4789367282888,15.9448326242724,17.0147498172369,18.5400242070198,16.0826822418606,17.2361738104785,18.6431415419,16.3551938844972,17.2604782281456,18.9523605623454,16.3114242364908,17.4564338912757,18.5321875127112,16.401938768004,17.51841924915,18.8465891998195 +"Q7JVK8",17.844749209584,19.7131770927481,19.8282808393431,18.0843834995531,19.7841856795343,19.8190541870127,17.9259594221659,19.613214989878,19.8343330343051,17.9247173640931,19.7050553128484,19.7912573127421,17.753288381101,19.8254528771466,19.6881919490803,18.0408107334366,19.748450113892,19.7508722852764 +"Q7JVM1",15.6104524720758,15.5462291825754,15.9210161825842,16.2031299299328,15.7768243760251,16.1643291636414,15.7148144243082,15.2281622835089,15.8235078681664,16.1277037151979,15.7833241602834,16.3437448195034,15.6556430925714,15.2952006493489,16.2087136901838,16.0163419775398,16.0410180200403,16.2072104409146 +"Q7JVZ8",12.5981446446244,17.1280578227827,18.8457645302973,12.0700486596058,17.2766130671933,18.8062387345368,12.5867897626152,17.2134336569554,18.6056324681854,12.2876352269689,17.1826292702722,18.7377660547715,12.1211352918491,17.0750035223164,18.6739177694038,11.6460758416037,16.9767921604347,18.5613724353184 +"Q7JW03",16.6950615175814,16.004545825588,19.0964630308963,16.7624315883175,16.0558137992356,18.7702621307307,16.9525566990271,15.9732424213328,18.7728941570285,16.8117795439173,16.1205180539958,18.5396194346026,16.4967894339267,16.0107815447856,18.5783767953228,16.8902310734059,16.1173305913464,18.4017779329548 +"Q7JWD3",15.1178878700993,18.7258379731076,18.2224987316038,14.7502254175265,18.7214465509099,18.1544916722204,14.7480332997738,18.6420041188427,17.6147820020211,14.6842706548112,18.5181775329499,17.7622986308525,14.871267067235,18.5203558926581,17.8077299449166,14.4710559604694,18.5972884240677,17.8619776180258 +"Q7JWD6",19.3357375287953,20.6613804722032,21.6526993780988,19.3044353269243,20.573470168868,21.6343513769041,19.292435678277,20.4767207767157,21.5692858152914,19.2423260917269,20.4787347910143,21.6789579609163,19.2084079110688,20.4097428215877,21.397994866009,19.3613416791716,20.5526696608533,21.5390654184965 +"Q7JWF1",19.068365314211,20.2350819382036,21.0667934496805,19.3438725196992,20.486323917525,21.35737796883,19.6924162649038,20.7667629161557,21.546419047739,19.7848187492028,20.7208611494191,21.8171137959178,19.7710561106138,20.7805095490778,21.6657093580454,19.6957928039587,20.6514130352518,21.6306209424452 +"Q7JWQ7",13.1456004569379,13.8417015810595,16.7369464736611,12.6824707601055,13.469502264539,16.1593350128809,12.984681262122,13.9560813644533,16.9490631292303,12.9573109244889,13.790019392004,16.5406833496836,12.3190226939213,13.9114287934571,16.6411621055547,12.2112674103655,13.2271311310444,16.1943773875193 +"Q7JWU9",14.8410840232837,14.8535894461757,17.1926879374123,15.0929431209618,15.1414480189755,17.0130442241205,14.584800637398,14.7516089241951,16.8642258187521,15.4520577295359,14.7143568719139,16.6234348587008,14.3695585658328,14.8562343068806,16.7183179968526,14.7488706356946,14.9719422922444,16.3859303798475 +"Q7JWX3",16.9082126532661,17.7900199019313,19.1035916843232,16.6971695885143,17.5410327641079,18.8431649186109,17.2057591589513,17.9878399322152,19.3805363596377,16.7353966167922,17.6303753550625,19.0218841018273,17.0528130340715,17.9914883090961,19.2684008251955,16.9341027001791,17.8234089080967,19.0944320584944 +"Q7JX94",11.5509379391658,13.4801351463991,11.7856860793675,10.9325794349376,12.6814912748078,11.7331513739083,12.3753277025115,13.6150415288254,12.4494012542902,11.1375605611823,13.3004129291035,12.4447790818929,11.2306556296646,13.2522695158757,12.0569866416174,11.6983694766702,13.1899585265382,12.7144578540311 +"Q7JXB9",13.2966857089033,16.1363602531521,19.1815467986946,13.2673065910523,16.0004204125482,18.9838325695429,13.5417826885424,15.8333282644048,19.5409251408249,13.5396199994405,15.9012060119507,19.3663667944777,13.5923150648279,15.7042641142649,19.63078815607,13.3462781878078,15.931506169141,19.1086094274443 +"Q7JXC4",20.8570152456016,21.2432087606156,23.2071031618631,20.7471359883681,21.2804339128851,23.1703389050038,20.6119713472867,21.1050831316052,23.0114811775074,20.5677574619115,21.1141422282988,22.8800962739115,20.6531457130516,21.2136805300697,22.887323370219,20.6434857831569,21.1095082662874,22.8376081739155 +"Q7JXF5",16.8281396919535,18.6258180144849,19.9671833836474,16.9526989288079,18.7702346803992,19.9319004536428,16.8854984659488,18.7900689237403,19.8987827262548,16.7483350692903,18.6982078504788,19.8412663169579,16.8566898058248,18.8544810947612,19.8019024252789,17.0019317852827,18.8190730676491,19.7805647477631 +"Q7JXF7",17.3043146524739,17.2919795639274,19.1681696598309,17.4199497507832,17.1042870531063,19.1049431363658,17.3076759235232,17.1444380743543,18.9647433640901,17.4923326322905,17.2192127012719,19.0429289689374,17.3077577799768,17.033359953472,18.9110811966269,17.6001488372694,17.0530883177602,18.9491295370859 +"Q7JXW8",14.5164193182616,13.7794743901773,16.2034194551524,14.8620143773626,13.471756934953,16.2806225435467,14.5223931928875,13.3498942392614,16.1717797327942,15.0492127366927,13.9523205133141,16.6463877005542,14.6660039392822,12.7437859251248,16.2062263641932,15.2028009397772,13.8276335490364,16.5003052474637 +"Q7JXZ2",16.5043421220449,16.5457143392438,18.7973067520659,16.235079564851,16.5920948688223,18.5135409258605,16.8653291198204,17.2488324308765,19.1534101509069,17.0960392507292,17.1428178285133,18.8012392940057,16.8948230197421,17.3003921975488,19.3441416428456,16.4174937015739,17.4231408725216,19.0441579717432 +"Q7JYH3",17.8057537651873,19.2418208153526,20.5626862129943,17.6835826654196,19.4938974700768,20.5678814798927,17.6822555517614,19.2419779040906,20.3035908052518,17.6261409044517,19.0819454248991,20.2382784355217,18.1119865041749,19.5836529882728,20.6124294629952,18.2387550803166,19.459594934259,20.7338657004952 +"Q7JYW9",15.2373622950224,17.7175192449837,18.3237045447808,14.7072521342566,17.2713730412898,18.0378095706339,15.7422176015709,18.1731661058182,18.9378046159801,15.0834590373984,17.6375281648742,18.3170085254399,15.7500493135037,18.3780042373512,19.0554119551883,15.422691746458,17.9667188388734,18.6308595696904 +"Q7JYX5",13.4756823743854,15.0887308989098,14.8414681495145,13.6813140809484,14.900578319228,15.1923179718265,13.9551373041284,15.2094879040272,15.290795447247,13.8457428124704,15.3307884406851,15.7308375910135,14.2800165078603,15.698588592563,15.9361485083389,14.29706390126,15.7285812421522,15.9999225773991 +"Q7JYZ0",15.5884347430718,18.0566766175665,17.4377949119816,14.9451266605981,18.0388873777856,17.5672287822507,15.203769772421,17.9254982535836,17.3571670192925,15.514684822199,17.9134785668789,17.3390139863186,14.3853723203211,17.6924589972908,17.2318137327201,15.6750134180031,17.9355305604444,17.3969932009768 +"Q7JYZ9",16.2638609592173,18.0145986480034,19.8716744080424,16.2704525214355,18.2737690214918,20.174006139975,16.1083197418338,18.025620015555,19.6786867388564,16.4481984576424,18.3168936761225,20.0427057953481,16.3074025192751,18.0983220535512,19.8485142315742,16.3128756449344,18.1337939694675,19.9691357491893 +"Q7JZF5",16.0776278434225,16.960903347811,17.7439638543719,15.9209318899275,17.0412202276757,17.8626008310133,16.0466905855417,17.0485447921034,17.6729596512132,15.9286602666183,16.9791345256486,17.9664290555415,16.0532021536511,17.0177516094619,17.7162984564614,15.9437233577086,16.9269793901902,17.8157768100237 +"Q7JZK1",20.6756823419337,21.7722015570653,22.4760865088691,20.433285836796,21.8090410191962,22.4738085694184,20.6266755258061,21.7434541938722,22.2168655709087,20.4834333158357,21.6224765276165,22.219160398283,20.5940484986723,21.6894486014926,22.3060719294959,20.480758713097,21.512920444607,22.0568372727746 +"Q7JZN0",15.603357632982,17.539886582303,17.9739670216828,15.1610034126628,16.9399824220802,17.4877539492869,15.4746478213291,17.2052080134774,17.7960619283882,15.4196875987302,17.1845412777058,17.7956830328467,15.6128238692803,17.3103962749124,17.8915708389377,15.6055389269256,17.1000652802961,17.6772542906704 +"Q7JZV0",13.1536060929743,16.176437771418,16.4895929522793,13.0233035260095,16.1689801664609,16.0307209589827,13.0632507734236,15.9886587868324,16.3989616194383,12.6404461754872,15.976541297743,15.9561137210211,13.5982532687032,16.7448051218816,16.6312110061202,13.0892866241258,15.8542035463964,16.0082019763141 +"Q7JZW0",18.9255066420699,19.4037452256021,20.717487865908,18.8960182280275,19.226998084289,20.6336706779326,19.2396110562948,19.3515755395903,20.9434274888013,19.0771134787905,19.4368186519282,20.8516221974475,19.3356598626706,19.3321793359329,20.8266596730019,19.368204799142,19.5671836606153,20.9006859332572 +"Q7JZW2",19.7063903871328,20.8060825132193,21.2428575105735,19.5655038587556,20.7440375097055,21.0306109464413,19.7593889630387,20.8741214422949,21.221794286531,19.553326829021,20.7358620766003,21.1128186540197,19.7872231562537,20.8439447789258,21.203412617066,19.6477135268057,20.6750537978801,21.0034348718205 +"Q7K012",14.6246255293021,14.6808402191964,16.6308967901863,14.7384074275618,14.9530891005656,16.7086094213091,14.7101126821531,15.1230930543535,16.8943937793266,14.6594641758706,15.2802971874499,16.9895039933015,14.6188823836203,14.9850692628817,16.9830368606842,15.2280746972746,15.2553258824933,17.2614096746469 +"Q7K084",22.3209379301148,23.4468256066776,24.804816736243,22.7251015437197,23.9857366684438,25.2030305158769,22.2697687069405,23.5476989378892,24.8980186942909,22.6839043132832,23.9431858980223,25.2665028508151,22.1978570828708,23.55371413909,24.7657694888204,22.4012064931118,23.7494796769075,24.9877815947704 +"Q7K0B6",19.5779309660533,20.3497122665468,20.6447839274078,19.7301035974431,20.3633183449507,20.7839694245553,19.5583310626074,20.3951458040565,20.557172694518,19.6079066201684,20.3488410748287,20.8914440019425,19.4543547004844,20.3594658734528,20.6445238954884,19.5504980442872,20.1290799902468,20.4561457131314 +"Q7K0D8",16.949268374506,17.0272692615851,17.7867024695954,17.137113096469,17.0714671226436,17.8504904946721,17.0649464397314,17.1399812742489,17.8709006584377,17.0278891465668,17.1467891380246,17.7857686456109,16.9089640170853,16.9821508800343,17.6832234966786,17.1146734199079,17.1982998764038,17.7254187037511 +"Q7K0E6",16.6404300678183,15.9632254130774,17.4517335319603,16.4161893666562,15.8575252848284,17.2632262361228,16.7681841704355,16.3036558694118,17.5806959429936,16.6730377968328,15.9091525284104,17.3402340038483,16.6225040922022,16.3901134866809,17.6452811420296,16.8425970591584,16.1160294637126,17.5055073925978 +"Q7K0P0",14.208112699751,16.0272429587319,15.9518440925317,14.1034434818864,16.0149979740965,15.9387431253463,14.0756118293121,16.0534152263169,15.4495871407415,13.7754506918458,15.8258873093048,15.513479533371,14.0207928683968,16.15673642883,16.0044620775002,14.090049597443,15.8940395029862,15.9333152544729 +"Q7K0S5",17.3809585856992,18.3948971347836,19.1511047441487,17.5324527416192,18.5122602695514,19.1658429620097,17.554107224468,18.3498406962252,19.0474864214896,17.3151308447598,18.3126043074377,18.9676807802323,17.5128847602221,18.4352667400732,19.1855668707929,17.4115921156414,18.2847763537387,18.9285794822773 +"Q7K0S6",15.8735007856118,17.4616693446013,18.6443752507157,15.8208095750165,17.4820216103302,18.6531244115553,16.2198321507993,17.940219213153,19.0439477042051,15.6911443201944,17.2818861736399,18.5016739512882,15.8307320853327,17.7285737758864,18.8137954942293,15.6975015108075,17.3402692495821,18.4117782076869 +"Q7K0W4",20.9644032372836,21.3229770825786,23.3028045020364,20.6447878920664,21.0675402289897,22.8434085104936,21.2073572467662,21.3646235470818,23.4877150844634,20.6369408158738,21.091279817437,22.9821413265927,21.0896843778257,21.2492553784159,23.0774956805733,20.7745932846628,20.9940099516612,22.7995754437838 +"Q7K0X9",15.2792279708551,16.9041661867844,18.0031271335393,15.5671835042118,16.9444818540615,17.8962887059821,15.2634062891379,16.8686352900326,17.8109859655385,15.1916619478713,16.9324766215878,17.8600623180761,15.4155350838109,16.9491709465482,17.8233144914282,15.0200807718001,16.707409394374,17.6098135820506 +"Q7K127",17.9830013386481,18.0688345098653,19.1870525199473,18.4604270498875,17.9442806498169,19.5691905672712,18.2382235095591,17.5552342095636,19.4494689035413,18.5648897235422,18.2276209455909,19.8448405382197,18.020031199602,17.2002867819588,19.4894254960159,18.5995576024305,17.9575697135073,19.7369307752997 +"Q7K148",16.507003850649,16.7067377289354,16.6253613334721,16.1294817068932,16.6328170655255,16.3735163183689,16.8188784252603,17.1997492206003,16.7497130311454,16.7042901856474,17.0868261444669,16.78817931012,17.0367314402654,17.3400990910991,17.1374154967693,17.1552096769941,17.3251700672153,16.9737639486762 +"Q7K159",13.1968679086806,16.1611618120438,15.1627931404587,12.9399496952015,15.862793956104,14.9464644973542,13.08720689275,16.2487486820959,14.8563125755544,12.8222215434456,16.0147608334872,14.6398363559485,12.3636746976296,16.2887507014384,14.7950107596961,12.8048540304741,15.9949614841284,14.7942506592639 +"Q7K180",14.2990787611445,17.0569568260314,17.8756677796537,13.9382928595395,17.2092440513623,17.8519400733534,14.1460579788479,17.0261994540658,17.7309393300298,14.2146360160009,17.0992347421923,17.6339501282115,14.206414165064,17.0949113649288,17.8063250213678,13.7823850749421,16.853346665435,17.4943088734285 +"Q7K188",20.9474467909724,21.4967122427217,23.7828783498106,20.9926070156708,21.4690812719146,24.0206585549544,20.7250735747096,21.2144218294807,23.4989008491596,20.8726603353106,21.3903453552534,23.9734973290616,20.4543104550906,21.2708579356797,23.6157280067563,20.7581760707718,21.4595896850481,23.7747288400675 +"Q7K1C3",15.4504988420001,16.9736676128939,18.5184327602905,15.9768306885912,17.0995048173471,18.9243863671874,15.4725408990933,16.8656420636132,18.5288887402834,15.8736897742594,17.132233571695,18.9099441068339,15.5405149898764,16.7977338043194,18.5851440355347,15.880558234513,16.806559759825,18.6566626342923 +"Q7K1C5",16.1007660316743,18.1076771579371,18.4115737829843,16.0816860461758,18.2832004047088,18.5497215240741,16.0208602730134,18.059103429659,18.3594444325183,16.1727468413812,18.0464671970099,18.3359723809185,16.0517383450682,18.1233395509545,18.2134240935926,15.8641017783832,17.9970014202929,18.2082080721313 +"Q7K1H0",15.2039004898995,16.3261934836648,17.5537846396199,15.2115788507175,16.5318821159173,17.5040525861853,15.2260923081022,16.2575914640433,17.3548815720738,15.2310498822866,16.406572227215,17.4893426009935,15.0939111142335,16.2332208876492,17.3458672001488,15.2396710354925,16.2170585177554,17.3176898661954 +"Q7K1M4",15.6698665049664,16.9227796830843,18.533846368129,15.7557808165078,17.1019938255416,18.5080173813724,15.8080071244164,17.1777749215737,18.5920513377972,15.6898560437085,17.1996130565498,18.5565034398119,15.554459956549,17.4977106355631,18.8424225252294,15.6727105093501,17.400442860738,18.7927155897821 +"Q7K1Q7",16.0488022191512,16.7509778963023,17.2034020895477,15.653610588033,16.6480236086771,17.0242283493259,15.9625030983877,16.7324950275755,17.0799214987347,15.6576370988915,16.5435478554788,17.0587881041502,15.8054749463896,16.7419022748855,17.2079290998315,15.8254834108293,16.6802084745263,16.9151229927653 +"Q7K1S1",16.0485325251286,16.8877183639406,16.0980149000554,15.876333693877,17.0589100756255,15.9512744573036,16.3566926116273,17.5354769233515,16.111627618607,16.3022762562942,17.1764001625451,16.2287532950586,16.4473362308712,17.7150978434337,16.3979911246977,16.3439724695037,17.8124512703532,16.1867053835169 +"Q7K1U0",15.2314057668603,17.0966598241865,18.3645550598538,14.9286230196668,16.8071459764722,18.1028704530047,15.1870138221849,17.0994092400457,18.1445509289258,14.8942487388207,17.1205523620847,17.7780516331437,15.1258529985243,16.9287091149301,18.0455587698757,14.9069488476349,16.7338368512277,17.7428198063754 +"Q7K1W5",18.7674264565276,19.4861687735223,21.0760832502746,19.0138980471103,19.6476950428042,21.2525331596417,18.6759114303541,19.3962287456612,20.9121469526842,18.8961938523679,19.5715109945261,21.230480889677,18.4768999691435,19.3647868984536,20.988509534887,18.7573324637176,19.588570568479,21.1073382022802 +"Q7K1Z5",15.5276632750858,15.6315652562367,17.589867396323,15.6691651572688,15.386356771891,17.6531318786572,15.5229255017609,15.0671530821196,17.180840244588,15.5776232634846,15.1803362675958,17.4916321186483,15.2055599648866,14.7817387677038,17.2508298804988,14.9554361052092,14.9101024588228,17.2268235208816 +"Q7K204",14.363717911064,15.3473759821655,15.9137310192429,14.1518126252637,15.4894687843329,15.685341755419,13.9993032071303,14.9982515039307,15.4032916327989,13.4666476240904,15.3889107337607,15.3673093104806,14.1974380835035,15.0830336566048,15.4128130042916,13.1744475384406,14.6746676976736,15.0848309454684 +"Q7K2D2",19.1569411138705,20.1612836429252,21.5862074617667,19.2473180472224,20.252685106844,21.6889035336225,19.1708338459297,20.1177703073016,21.5429929551251,19.4190212204126,20.3227311553692,21.7410921065719,19.2842711641164,20.09633243997,21.529924262758,19.1931122801546,20.3556378797232,21.5559448118886 +"Q7K2E1",16.3396930074405,17.9234533648538,16.9804382304034,16.4881078387926,18.0745719859631,17.1034915253264,17.0238922687143,18.3323980219115,17.5410606636537,16.7616629301474,18.2795742753246,17.7205612065538,16.9478518846381,18.4885086671371,17.7045825709883,16.7359632269695,18.2252910224124,17.2966197446955 +"Q7K2L7",16.8105715876026,19.5891409654316,19.1925875943209,16.680235971939,19.5472292827429,19.1426156632843,16.4074247597863,19.3274078669212,18.7553711819748,16.8423185892913,19.3882973690305,18.9462236890532,16.4690857576276,19.2438914797641,18.8592731835143,15.4820828998361,19.3487793115679,18.9009908249901 +"Q7K2N0",15.2783256203772,15.2049582043019,16.2892333915844,15.3321398358001,15.2166573147471,15.840356328148,15.1714845407314,14.9683235383061,16.2512870406539,14.9584221847763,15.2900415802109,15.8542216497634,15.2069288716857,15.0663103499573,15.9176435056725,15.1390967070345,14.8663396005646,15.9451207982098 +"Q7K2Q8",13.9647984482583,17.2394796552722,17.6778457377637,13.9551973544174,17.2860920786124,17.7218920442215,13.6212442823671,16.9962162376034,17.4191457788562,13.7630248164366,17.2720832345749,17.5768750188152,13.4262974163924,16.9769956832754,17.3310078855287,13.5026405775552,16.8501581767203,17.3678300687715 +"Q7K2W6",17.3605536614894,16.9782204128148,17.5823624826296,16.7412434540325,16.2945372883988,16.7347147920335,17.3060767232971,17.0231408127598,17.1766187655341,16.8380057641301,16.3062517983944,16.5311459952207,17.1334718487324,16.9092517201416,17.0982674593576,16.7811414400841,16.0896042760783,16.3534171112178 +"Q7K3D4",17.7532794143593,17.9374019524333,19.3633898993454,18.0498973439196,18.1274485062118,19.6419342011497,18.0303992116041,17.911922932611,19.3988835561775,18.1773524554514,18.1331751637663,19.6055454424791,17.7014938852061,18.1581862424255,19.6912105649607,18.2008151368662,18.3362160296086,19.6843512382691 +"Q7K3E2",19.370785482045,20.6586558017612,22.5125194987345,19.1223330462168,20.42556348827,22.0756880056703,19.1336375233239,20.5272887339066,22.161805973071,18.8455198689026,20.1524470396544,21.7488489153449,18.9117412651573,20.2962888999648,21.7909499353651,19.0384625865489,20.438918914536,21.9972451284364 +"Q7K3J0",19.3746538287088,20.3279918037683,20.9622678545731,19.5050147765504,20.3971066015765,20.9684140281022,19.6039406693476,20.4899502685296,21.0611383082842,19.4432398582071,20.4308120180697,21.0975411324529,19.5412319571483,20.5442911840625,21.1191758761189,19.8192822840137,20.6160660077848,21.2282318187724 +"Q7K3N4",16.3245298139391,17.0037778757018,17.6509655264138,16.1007543768657,16.8105994203855,17.538821034891,16.6041298326085,17.3139845745702,17.9860401485582,16.3972998433557,17.0138334977389,17.9287390465436,16.602961667223,17.4679187977298,18.05632752245,16.221904325327,17.2413437186189,17.777479199041 +"Q7K3V6",14.7635459756904,16.3372434727048,17.041742034074,14.4521388095035,16.3793742863196,17.1563024183876,14.9126373947054,16.6021465512033,17.1557780397839,15.0036858905163,16.5506295113748,17.3176858087211,15.0804169311214,16.657478501444,17.4441938193845,15.1193317899966,16.82729395164,17.8940873319002 +"Q7K3W2",16.3005742899109,17.4597866427628,18.2072495704132,16.5787080545167,17.6964216971723,18.4088556874752,16.6128319024493,17.8342038038375,18.4942252128175,16.5302007512217,17.8310858329877,18.5663577182734,16.5975416756859,17.852379100482,18.5489317253846,16.6401275736853,17.8482883984784,18.4841256118307 +"Q7K3W4",18.2401272475791,19.5032065972121,20.4515946512854,17.9761888590929,19.5396743462545,20.3858932224455,18.0246847848563,19.5491952060483,20.4837021961801,17.8791175161499,19.4646785774611,20.3163769908114,17.7779313159483,19.6033789623508,20.4362177551232,18.1887589985824,19.5098225326675,20.316277415983 +"Q7K3Z3",19.5534057617491,19.9124360546933,20.5687167979098,19.6546103781845,19.8636191395635,20.4834253298527,19.4378995940849,19.7177896129453,20.3445411861403,19.3665282502018,19.7609117380867,20.3053855159757,19.3622019634497,19.6714075734002,20.2278537455455,19.6101126679603,19.7136879374383,20.2522796458918 +"Q7K485",19.6680027095818,19.964229563704,21.1854610484914,19.6025118502683,20.0154152886442,21.2219835972159,19.9023270629211,20.4664630325022,21.4476173964495,20.0911326080362,20.3961452244897,21.5857772120014,19.8489162611949,20.5052106110682,21.8055784362307,20.0969471165071,20.5649103175447,21.6903612170344 +"Q7K486",16.3040111511474,17.5858892439215,19.0040032719353,16.1070417414053,17.6007892653813,19.0510311583293,16.4304977816237,17.7209329152811,18.91384681515,16.3846550945792,17.6529446378226,19.1531565400764,16.1989346462629,17.4334418890876,18.8165494478271,16.3025274387158,17.4903277633442,18.757069257435 +"Q7K4T8",13.7932697190729,13.9264413832469,12.8606372112233,13.4295490716318,13.5781873576105,12.5990608717918,13.9905155170953,14.3529429041685,13.2691497712201,13.6366672155097,14.0878058805892,12.9584822303783,14.2525573053718,14.9288319411921,13.8242534944241,13.9079231048688,14.3539564907086,12.8412124657049 +"Q7K4Z4",13.5187408916521,15.375285452094,15.7516756742439,13.7180005072722,15.415138521005,15.7929546177047,14.0433999345202,15.4035698863429,15.8008671423486,13.4617552419618,15.2859075944093,15.9080872164407,13.8781428672724,15.2433854348935,15.4835030962428,13.6443939062569,15.3730971154303,15.7055714571374 +"Q7K511",15.0766212546175,16.0503334533876,17.3926668087059,15.5348887336671,16.3922010835999,17.8370495841895,15.6156316537555,16.6176447618113,17.7332226259469,15.8732544880882,16.7341540056523,18.3246977348221,16.2209520375021,17.2443273508685,18.4487093563091,16.1471765396989,16.650498899365,17.9706030849292 +"Q7K519",13.7441828634953,15.915310894294,16.6836675059301,14.0205139826917,15.8184847649065,16.9075844063742,14.1251750267832,16.0156905194571,16.7624948255314,14.2995812357555,15.8146033611568,16.8828991294833,14.2630239777115,16.0313105781632,16.9462836891365,14.6114009815784,15.9541331945429,16.9742090973409 +"Q7K549",11.8416430828232,15.8333809604171,16.2635190233498,12.4994307873039,15.9331065684024,16.0149006888293,12.2247656037337,16.0141688492493,16.2039338643009,12.2862209957413,16.0046468626609,16.2209251828236,11.4561885915889,15.943571772704,15.918318084716,12.5646156209774,16.2177424960733,15.9425058244079 +"Q7K568",16.3356616992798,14.9221648859253,16.4011505794349,16.5528256537375,15.3295437053386,16.5441556533073,16.3046391312486,14.8185294187414,16.5052728390865,16.5520448254831,15.214195129478,17.1465473145739,16.5198395940956,15.3741069307663,16.3074213873103,17.1136972120012,15.4231822456686,16.6441844249337 +"Q7K569",19.0338500372693,20.1699914026839,21.4065510149941,19.002634143144,20.2259027982537,21.571920031004,19.4965601336065,20.8890612125109,22.0736061598259,19.2626867134199,20.4510460539623,21.8605363161269,19.4842150778162,20.8928776598187,22.26866411951,19.4599614343228,20.9644144753335,22.2229441989762 +"Q7K5J8",18.1684243806443,18.479899170609,18.4952547868,18.3391949320765,18.6152328609796,18.305612695617,17.9229149217243,18.0288324617816,18.2102484121051,18.0134979949721,18.2982241731239,18.1257203571158,18.0374251545676,18.2896417794828,18.1208893115223,18.2280635658715,18.3751072558969,18.2389630393687 +"Q7K5K3",21.8535999776624,22.2521245196666,23.775913119358,21.871160037971,22.2704398461732,23.7993294371038,22.0201485746471,22.5122216850525,23.9319833897033,21.7504292938445,22.2556701957007,23.6866653372953,22.1137778714801,22.7932323002972,24.1289185241253,22.0637475746877,22.5839134458413,24.0575159957905 +"Q7K5M0",16.7038306245164,16.8710488355139,17.4428515008148,16.5529462805775,16.4796261278242,17.1838640272147,16.2704090644397,16.6183226544884,17.3871805661803,16.0386883180619,16.211594432112,17.1344275360824,15.8568589120205,17.0010811008291,17.3869241455653,15.8547960988949,16.1447266469045,16.847538574786 +"Q7K5M6",17.4600414465209,17.7025193945966,20.0560872359205,17.4631649170123,17.6286226367444,20.0711162238868,17.2538170377136,17.552746444005,19.8508739208951,17.225862112839,17.2479029433366,19.8224912812695,17.1999944129361,17.5001048015675,19.771958310676,16.9815548070848,17.2570827344379,19.5461250859254 +"Q7K738",18.2033145551286,19.760009019777,21.6718754361257,18.1899887920008,19.7613327783796,21.5789332348694,18.1571665869656,19.6159541486459,21.4235814660003,18.0873908712752,19.6618922440092,21.410077739514,18.090401793671,19.7863103966261,21.4762358501104,18.0529340293719,19.6259692087849,21.3052676926068 +"Q7K860",19.0927688584704,19.6401779613716,22.0434330887784,20.0852889909281,20.8689422290828,22.9686632343916,19.3168476695865,20.0190264878368,22.3153828044586,19.0710263109387,19.8038465472646,21.8377131300997,18.7414731549185,19.5128644130953,21.4430760144319,19.6991104604641,20.5551903757901,22.4600548840518 +"Q7K8X7",18.8329605499845,18.1867721373276,20.8568458825451,18.8277354477436,18.3844362686959,21.1521497473241,19.0641713646527,18.3716632829515,20.989619959446,18.8887910783693,18.2592861554434,21.0775417145632,19.2431319597098,18.5538081753336,21.3555828842265,19.1039615009951,18.5847681615431,21.0687766725261 +"Q7K9H6",10.8296692526262,11.277490389476,13.8053177264065,11.2512934580216,10.4500934169859,13.4940640295681,11.2406983061124,11.3922192381215,13.5727014706608,11.4745678841925,10.6452816659099,13.978505021719,11.2176161460468,11.2773235135515,13.659280284851,10.7561689892836,10.2127920729038,13.5985954064205 +"Q7KJ08",12.9729178802802,15.0641980235588,15.1045196844378,12.8641684171989,15.3547741443949,15.3233355454571,13.1543120434655,15.2282472187913,15.2053825439878,13.152280750399,15.4738051348397,15.2222768482366,13.124570838636,15.460757840877,15.4990741663914,12.9009103223362,15.7266320045044,15.3781406389424 +"Q7KK90",20.1887380470025,20.9536829832362,22.3565916164181,20.1617049139123,20.8406956617993,22.4251654579744,20.0630696860093,20.8497013222859,22.2446481173215,20.1120929259321,20.8719026907611,22.3663713764468,20.2631070250554,20.7111845740149,22.2745291748647,20.0993386124524,20.7159323839534,22.1198016788545 +"Q7KLE5",20.9323267866365,21.415227761735,22.1959127361269,21.0419155076535,21.3947717142486,22.1198924612363,20.8737388123965,21.2307377776265,22.0380831974236,20.7632331079548,21.3362716467844,22.0755915486165,20.9063851635425,21.2550682341944,22.0256135254421,20.7178386671086,21.2138803383529,21.8648244915388 +"Q7KLW9",16.6371275080392,16.4731383420453,18.0221671130905,16.6634371267056,16.5213727369995,18.2874303234564,16.6945786431537,16.5943918373939,18.0543279703391,16.9847556462707,16.63648468905,18.4579435724526,16.8138376952694,16.6333341704594,18.2960637381655,16.994120550111,16.8621017419814,18.5666546020092 +"Q7KLX3",17.6937903845095,19.4398702664473,21.0187933689567,17.2959743083085,19.1534626878066,20.8468274183335,17.6684983924302,19.5215788245428,20.878580101839,17.6134405694665,19.3541321689878,20.9461143707751,17.501248379305,19.4362423822357,21.0314025909826,17.602160464321,19.295248387262,20.9255357801811 +"Q7KM15",16.2282072354168,17.6988799503799,17.4270793784169,16.3562622319375,17.6539736377089,17.4471626259484,15.9528769132684,17.3342472389097,17.1725116293513,16.0371861636512,17.5663896820666,17.4135233477093,16.1471791200075,17.6310558744397,17.1474177528816,16.3186398496881,17.8356946286324,17.4799625709892 +"Q7KML2",12.8116876508884,14.1015692083127,14.6257413279685,12.3199928295442,13.7737648274275,14.5472339988054,12.4210303298722,13.754260408269,14.5196196691237,12.6946430511178,13.7118423574791,14.4243387413344,13.1279973225016,13.9210875089863,14.8546240671326,10.938626419952,13.2675173459388,14.0446294439331 +"Q7KMM4",12.2686806244738,15.4635073465044,16.1065043497759,12.5143456034545,14.8917489446374,15.8372887333013,12.3502773481017,15.1336320358357,15.7677018019531,12.3578304856573,15.0159800786873,15.9392912830358,12.3326918964421,14.6905704960032,16.8202560365991,12.5536551978003,15.4494257906002,15.2451198302025 +"Q7KMP8",17.51252696729,19.0125539062113,20.7649704471556,17.4122204166152,19.0198052260765,20.9622552680686,17.6629792547622,19.2031033773798,20.7867558694819,17.809188026733,19.1262322446628,20.9909789010204,17.557496453549,19.1161917606054,20.905673378541,17.7295938131469,19.1342804557411,21.0213152780937 +"Q7KMQ0",20.0036010102593,20.648475563073,21.5869051726907,20.0059918943053,20.6388119562804,21.5427011640186,20.1088558723317,20.7482921907541,21.6961855893793,20.1336699086409,20.7330338304093,21.7185091899561,20.1450549261455,20.692699754861,21.6153892294572,19.8459772850611,20.5253224646354,21.4441098107808 +"Q7KMS3",13.8313619175184,16.3085359577644,17.054760834219,13.6901254787581,16.4194437220816,16.9456829522803,13.6881759373487,16.2329159624408,16.7531080196882,13.5607199284759,16.2196320829258,16.7305426586424,13.2322483908439,16.2229769494322,16.4819522584706,13.8568991296875,16.0737343247336,16.4069083689981 +"Q7KN75",17.8326140764234,19.5189664915502,20.7808077293616,17.6138427775498,19.4113594411423,20.3843060115175,18.123119930034,19.7069930612176,20.8217874029537,17.7588025790712,19.5029959203886,20.4143109320577,18.1664430283076,19.7862994135947,20.8185501837706,17.8452261513076,19.883403133116,20.5170494476209 +"Q7KN90",15.5678541016155,18.1964305876502,18.5054235844319,15.350895877896,18.1533802560308,18.3825474281305,15.4803913864091,18.1663922506398,18.349147425789,15.308506789335,18.0365621584246,18.2678491965494,15.3793442785153,18.1197947817657,18.2756707635805,15.2800950601663,18.0015638743906,17.9838123539361 +"Q7KN94",22.1303196444398,22.2422084034348,23.6987472792974,22.1907255839017,22.3135252743685,23.7479912781184,22.0406868509803,22.1072471301755,23.4725832863121,21.9873379760127,22.1708476635736,23.718301344994,22.1185400282796,22.1776612810472,23.5754410893244,21.9738945986629,22.0359815278234,23.5669106995061 +"Q7KND8",14.7870167044863,16.0573329003183,15.6611593318911,14.706351736111,16.1239096427741,15.6701094871608,14.8458767201554,16.1964305089367,15.4993567856612,14.6712383429802,16.1076965348864,15.6012377151828,14.6951779862494,16.1906646856238,15.2145983440977,14.5146094598368,16.094107861837,15.2797281568483 +"Q7KNM2",18.639430618964,19.2518493010106,20.7797139746238,18.8330630842284,19.4889028389232,21.027518068274,18.60194300272,19.3485259098654,20.6695413563706,18.721384558637,19.4640569371438,20.8816750047203,18.4663296893146,19.2549846720737,20.6444876207574,18.9544339789862,19.4671909089607,20.7294324512456 +"Q7KQM6",15.8721560907655,14.6310469576653,14.8654764108788,15.8715301209312,14.825754411885,14.9171488772952,15.9594880063063,14.9031103661072,14.8632536447032,15.7071734034246,14.7151387973121,14.9009975333683,15.7551798323663,14.6850573809339,14.8457462876061,15.9243940134847,14.853562462819,14.6789441213422 +"Q7KS11",14.1270682582092,15.5353891119606,17.397803619554,14.2452158490758,15.658298134315,17.374025621748,14.1646385203455,15.2711115197574,17.0735746343218,13.9202943223462,15.4457057640465,18.072863859203,14.3872547464698,15.7525906464723,17.1746881411832,13.9114819788405,15.3154015280391,16.9245664688767 +"Q7KSE4",14.0008245002274,14.1224903526512,13.2657114956276,14.0696766552719,14.4857071558694,13.4650003847921,14.2558389918486,14.3455862261801,13.2922909689503,13.9080796222146,14.1440602979739,13.3296233437717,13.8446725891626,14.1806728676919,12.8934166286204,14.0027109867553,14.1721524390708,13.0784621398166 +"Q7KSM5",17.4551070229528,19.769251190541,19.4948262016004,17.4975249869103,19.7165578951216,19.510091717398,17.5602710512968,19.715626173945,19.3848863118641,17.6902195385223,19.7500264948295,19.6164947640247,17.473352697445,19.6315798560919,19.4043067792316,17.6316658681618,19.77000189855,19.6778482444491 +"Q7KSQ0",19.8551805604757,20.6863681499794,21.7806895336853,19.6844157202676,20.7425243046767,21.9034993765219,19.9601588049172,20.8901690148242,21.8912098934128,19.8541574946791,20.7709940645763,22.0858132363646,20.0438940006043,21.0179976904374,22.1951030983329,20.067910402572,21.0806236843044,22.1012018195192 +"Q7KTA1",17.1768914404821,17.4192691854456,17.1855139162132,17.3699673334534,17.389264175999,17.06085374161,16.8193949734912,17.1950509584251,17.0064449290103,17.0165069057426,17.2121226292624,16.9677743837275,16.0586909554545,17.2356743028093,16.8024170634711,17.1058296466684,17.6841931058405,17.0664582241318 +"Q7KTG2",16.7367173109663,18.3237496487383,18.7482797554561,16.6446334490791,18.4124684201269,18.7284839474954,17.0833746451228,18.6851554057283,18.9595928590492,16.9831907981009,18.4223113162177,18.8258336309365,17.008970621906,18.4514469838785,18.8044692557114,17.1050059861844,18.6703375825359,18.9289802087217 +"Q7KTH8",16.8829685626782,17.7156433727537,18.1524579278064,17.0881907155074,17.7218693886711,18.1080019319493,17.0592184060464,17.5994445848571,18.1214936041919,17.093238769792,17.7456464986692,18.1892265300911,17.0968469285833,17.6035746622865,18.1165868251511,17.1535862735366,17.7314958181159,18.058608158523 +"Q7KTJ7",21.6061579105593,21.9006227792389,22.8258027062295,21.6480214669787,21.8289772681785,22.7065826805194,21.4773415231769,21.8024898068034,22.7341306489012,21.5588420001699,21.8896848872806,22.9328615722324,21.4473021067366,22.0123362006018,22.8086010267318,21.6122227946765,22.0029339710775,22.904727004858 +"Q7KTP7",17.1610888096487,17.8139457182208,18.6755655242329,17.1132701211996,17.733256047282,18.7230559375308,17.0564880203535,17.7311138755541,18.8144602232137,17.2516708652504,17.8038246552203,18.8864516138205,17.058435452922,17.7242294890985,18.7086039260586,17.0198087438028,17.6788889640084,18.7041141880584 +"Q7KTW5",21.0189297399385,21.1175075504933,22.7615697317342,21.0348320880843,21.1030765953937,22.6029732198832,21.070250101919,20.9212441486483,22.6447501759275,20.8812665181207,21.0932629069527,22.4604802893342,21.1630000475476,21.0403439876497,22.6556868793488,21.0879929147876,21.1058134324302,22.6411086116833 +"Q7KUA4",17.5696063333032,19.0117204733498,19.9774876601282,17.5342723607597,19.2067361841236,19.957248072301,17.4435051952274,19.0225046070556,19.8231509880068,17.4989630230455,19.0173586453609,19.886014123505,17.2588434732158,19.0191641596496,19.7336589801721,17.258267227951,18.9158541365004,19.7840412112605 +"Q7KUC2",18.7450061647329,19.4492458274053,20.2103536510214,18.5703085577645,19.2954806642485,20.2138496551569,18.5345629392979,19.4302049637874,19.9105066023726,18.7528204749051,19.4025455592639,20.1356797437326,18.426965720236,19.2919372809838,19.9833462664436,18.6499737593955,19.0830132598843,19.9719643910009 +"Q7KUK9",16.8147027828941,20.7974966893303,17.4295818718763,16.8088382833974,20.9013672948601,17.6211660113714,17.0395552875094,20.4172871948503,17.5117378780767,16.908388225584,20.7736051879581,17.8480606967968,17.0596769067229,20.5375148358049,17.7841835590926,16.8907872780754,20.5542627371204,17.7822447846956 +"Q7KUT2",16.9317710506149,18.1419461410069,18.766009280889,17.0455100719649,18.2994896727347,18.953196862444,17.4348764649944,18.5784390780777,19.1629033609341,17.215378079073,18.3913411142394,19.0708543368226,17.3143906866356,18.4932477071774,19.1940464825712,17.3182291713314,18.3110965149594,19.1696133124267 +"Q7KV34",20.0847760921053,20.5866688769211,21.9296961152269,19.8598845357753,20.3800621520608,21.7909012952166,20.2730639094861,20.7085185805117,22.1744097281563,19.9727391403715,20.4524431057599,21.981699575033,20.6528188361107,20.7717950322863,22.4662420448889,20.3088580032247,20.680383175668,22.1423513132796 +"Q7KVQ0",13.521420481826,15.9570084308342,16.9641865596775,13.3943304094173,16.1406677526498,16.6448873830402,14.0611897377821,16.5225188440747,17.2364403394329,13.7238631217332,16.5184328728879,17.1520907016016,13.702757440473,16.3879076704772,16.864716287633,14.0579636334631,16.6799665446164,17.1886050294828 +"Q7KW39",20.8300799946055,21.2964074878977,22.4295868468762,21.1147020872224,21.6239520456966,22.6805966885501,20.9908699642569,21.4549709942268,22.5379395832623,21.1148765580566,21.6502678578217,22.7105857666112,20.9315124072975,21.552843923108,22.5379730328612,21.1145302287195,21.468449967883,22.5721294897369 +"Q7KY04",14.0632747244971,13.7421770668712,13.8483876418013,14.1025578740829,13.9886819943567,13.7611622034599,14.2553315280082,13.8169912647763,13.9094284243498,14.2783489348964,14.2769449401795,13.9256014339087,14.4441603752773,14.5061756220837,14.1828685100164,14.5119755980377,13.8133955979151,13.9525040896141 +"Q7PL91",17.6791891357229,19.408299674302,20.236276134493,17.3703435350066,19.4404923303093,20.0909435545546,17.2880427751695,18.8598571148123,19.9897115193845,17.2669036675997,19.1478814714306,19.999741836929,17.4340368400904,19.0278892287115,20.0480916400593,17.4152710245899,18.770874244319,19.8880376352013 +"Q7PLI0",16.3102745367873,17.8357156042987,18.7989475917426,16.5555562673268,18.0554537988988,18.9462799546649,16.3996799051439,17.9633576695564,18.6655499328443,16.7492009412776,17.9739780516339,18.9859003193834,16.4410906116066,17.7751790714705,18.7007761644822,16.8607681558916,17.9636263821752,18.9651217347373 +"Q7PLT4",14.0394353190656,16.9599884779952,16.0476824027684,13.5921006101348,17.147030128187,16.3933953355566,14.2121998283599,17.0768208443555,15.7889019902256,14.7628566640435,17.253999584124,16.261930675703,14.4640130308735,16.9581487776319,16.2026463536786,13.8771236235783,17.0279273868687,16.3307034137728 +"Q7YTY6",15.6179341036288,18.7813819275797,21.0303155115049,15.4576747804555,18.8384131650691,21.1147943503017,15.6967645598076,18.7644455612041,20.7566010524046,15.5725058561928,18.65576438313,20.8773364783725,15.6441818921685,18.7008186126003,20.7285459991895,15.8357612651071,18.7575222244945,21.1403204057048 +"Q868Z9",19.7406718534348,20.3597137727132,21.8678208767901,19.4668841181926,19.976739451938,21.4370409514764,19.6509795456236,20.2302860501008,21.8400845420081,19.4000151463234,19.8580476324293,21.418967410225,19.2190180744346,20.3073014770069,21.8469541129464,19.1392470952729,19.9089576469614,21.2065148420654 +"Q86BI3",16.5958638931581,18.0998338332255,19.0364322821105,16.9122916855417,18.437349725398,19.2984411414617,16.7155511828394,18.1789746315142,19.0863850676648,16.9534535317102,18.3279562504086,19.0273057489476,16.8217655619521,18.2321842006314,18.9486306576418,16.9184226251318,18.3776053730794,19.0419453138226 +"Q86BL4",14.839848693969,13.4768116720885,16.3541979319152,14.9098879166657,13.7941588089073,16.410210619764,14.9037653148459,13.5508732889316,16.2715276628697,14.9936754575475,13.613369443858,16.2512308704274,14.9273519588522,13.6713067988995,16.0845039268154,15.2466079554526,13.934382394971,16.0041367713231 +"Q86BM0",16.9279565478236,17.6172181763589,18.3816114670912,16.7711163359605,17.4796935793682,18.1417401244417,16.8476231746234,17.460704113952,17.9863399126982,16.9197189669868,17.4297233471388,18.0876777067465,16.8534995100266,17.3397534834407,18.0927242989151,16.6285762455469,17.1406197858778,18.0595011475477 +"Q86BN8",13.7653477501451,16.4548246732552,12.7866592246739,13.6965929184983,16.7981880101362,12.6829977753062,13.7454765062491,16.4569740788747,12.1550538084281,13.4207796107756,16.3903968060301,11.9434494061898,13.900919156514,16.3462228468384,12.3337221679226,13.9404101916797,16.444405773791,12.3993508502038 +"Q86BS3",17.7106392006879,19.3424036360677,20.0526942943182,17.9023465292902,19.4691333693332,20.1190168878097,17.7283893419716,19.2129195852488,19.929417361755,17.5283455151199,19.1982558858602,19.9048366108543,17.718692607466,19.077898143288,19.8440619516639,17.5457226186601,19.1576030866218,19.6978901087804 +"Q86PD3",17.6129583637238,19.1260276812868,20.0320765347593,17.5344608475541,19.0258497424129,19.9569537145519,17.6068640753262,19.1757768262443,19.9840549225469,17.4736857723735,19.0633011284521,19.9397362558721,17.5752973265079,19.2215667136099,20.0765999164687,17.4474403227498,19.2028740085648,19.9928292493461 +"Q8I099",15.9370998126545,16.7160334843064,17.6864091055638,15.6596780801582,16.5665280702867,17.5222469145533,16.0388300648826,17.0002804909679,17.7243663180831,16.1514131387828,16.9781046276819,17.8998972228654,16.1723139457407,16.8617974105915,17.7463128898658,16.1202519716402,16.9214632582052,17.7651387111669 +"Q8I0J3",13.8734116837248,15.1482852128589,15.7475350627341,14.1193710929819,15.3593659131904,15.5965583147299,13.8579195254733,15.4444845815677,15.5913531653067,14.4308780424247,15.486847437518,15.6621084927616,13.6281107988647,15.3161446755579,15.6254029160933,14.5268736577775,15.4903939921839,15.5504040095036 +"Q8I725",16.5679268096907,18.991820640096,20.8086438827315,16.8185696633345,19.1095007729074,20.649646143924,16.8492450703366,19.2522661524973,20.8672456004116,16.9129028932779,19.2019640771791,20.7729729091736,16.5607268867337,19.3645078982863,20.7806038435585,16.9296168141137,19.4021001778795,20.754120114446 +"Q8I937",12.2011435871982,15.0949074651748,15.0866417944748,12.6595657417765,14.7106669514083,15.0271556142158,12.4935206612329,15.0463477991535,14.9491984654284,12.3289377408176,14.6751045432207,14.5435297193707,11.972619627188,14.7799335488152,14.9481504592829,13.0817915533305,14.2693544151417,14.3904057646227 +"Q8I941",17.8153946922626,19.5078393633161,20.1465535806657,17.6720852553973,19.4323225857839,20.1698324958547,17.7104134841146,19.3544376956294,19.8999246958617,17.6255360144086,19.3278307263286,20.0290354559281,17.7483702741921,19.4392530695919,20.0231127693544,17.848630890001,19.0718182802617,19.7384099393514 +"Q8IH18",15.1164122868663,14.7027978038311,16.8080338696674,15.4720724494763,14.6173085233128,16.9845568904302,15.3855217657945,14.7189896793522,16.9147632783622,15.3508170229379,14.6220416031327,17.0939552735239,15.1680101920471,14.7053849128631,16.7051512832102,15.4595176166044,14.9198566492511,17.0170092971842 +"Q8IH23",15.435928029675,18.6850218974976,20.4468094377918,15.6083572950257,18.8427890141834,20.2603453126976,15.6490196594563,18.7616229968322,20.5764791313483,15.5182878313342,18.7771888146263,20.2838732496461,15.4864650888643,18.8056022783364,20.205659652171,15.9484749511408,19.1953709620542,20.429307723069 +"Q8IM93",17.4966793959571,18.9588309705241,20.82599538038,17.9350733702876,19.1559863637242,20.8840820191016,17.2634032004889,18.7670391446377,20.5034056575022,17.531401139878,18.9559938343325,20.5332262820248,17.4233597073783,18.8992571158861,20.4211881917632,17.6232035979204,18.7891470029444,20.5311052915199 +"Q8IMT3",12.2051711652123,15.4265571556845,16.4706264409926,12.2238042021096,15.5497934161562,16.2997054371905,12.361845962688,15.5695237114163,16.4856780146135,12.4588231394772,15.4181116940537,16.2704794310251,12.873395234088,15.6984722683933,16.5571691828428,12.2458639387201,15.2678940389856,16.0929699389079 +"Q8IMT6",15.268548038437,15.860336143549,17.004273732488,14.899496455392,15.675765340076,17.2485058269407,15.5382942766087,15.8810058813714,17.0883903816441,15.2215662831072,15.6177582931418,17.1994727129152,15.7810348962585,15.9745773567365,17.5078880834548,15.6205042009668,15.5546368921681,17.0735294580377 +"Q8IMX8",16.4305119377098,16.559503226211,18.3807945756096,16.617390119846,16.7434486810361,18.4440745032234,16.5168291402123,16.6114352838814,18.2996616430054,16.3715035945248,16.8007344971251,18.2489392667374,16.3578094218602,16.7309113408551,18.2996339291568,16.4537720670368,16.6751803578885,18.4108085702849 +"Q8IN43",18.1871253164852,18.7519203242923,20.6529369817278,16.6404138295808,17.8445662670322,19.1052017645436,17.2814354642722,17.8867970295765,19.5105927135285,16.2039803650618,17.2687820575084,18.1372199566645,16.4682382053568,17.588972223865,18.5545888862134,16.2147865507398,17.2210154177625,18.4510160882607 +"Q8IN44",19.5780620662497,19.7786235019413,21.6993212832611,19.0849284762467,19.5288329694764,21.4091350788496,19.052604067605,19.2832448456594,21.1884933404131,18.6776811360345,19.0647361425649,20.9318159020495,18.8250397471665,19.2826051395209,20.9168530608549,18.8983110617557,19.3055671025693,21.1248796191182 +"Q8IN49",15.952120104278,16.517789429246,17.3529459402128,15.9718710592751,16.5205165122703,17.2605945396008,16.4446218271737,17.0582016828458,17.772496260496,16.2221834913448,17.0411518266859,17.8602880696867,16.5462121884031,17.0059373434557,17.8266665201737,16.5769631195338,16.9194290051322,17.7254834620673 +"Q8IN51",15.546120294233,17.6189659603823,19.3800678191571,15.0759753111454,17.2321525975112,18.6963647650329,15.0361992993755,17.4507502950607,18.9325910604237,15.0612749596515,17.0100154873245,18.4305419967907,14.8990640777504,17.4942039499747,18.9789432677331,15.1065249199585,17.2350269718939,18.71683551512 +"Q8ING0",14.5182208631548,14.6453568423142,15.2075791479501,13.988351378654,14.6312315754681,15.1334704025284,14.0812032360815,14.4162825834108,15.1927167641414,14.2270303017301,14.6171767007661,15.1061441865649,14.1977067163726,14.4567715400311,15.0115873248783,14.6426482250651,14.3772996085051,15.2088710853718 +"Q8IP62",12.509652253585,16.65495807966,17.7907991954663,12.2297269845594,16.9742964786318,17.8937314214695,12.7360686046613,16.9306076218787,17.9577453551242,12.9562415833708,17.1832745118362,18.0213709274762,11.930854112269,16.8964284050296,17.9098060248637,12.6353884042337,17.1600660324844,17.918414135381 +"Q8IP97",19.335036952764,19.1495528302633,21.4879640271682,19.4533398403595,19.0683208702792,21.4810071900596,19.3140113537829,18.8732853312279,21.5319055793182,19.3402438546086,18.9763148462343,21.682992388454,19.3970900924367,18.9264287026555,21.2578273624227,19.5395349418245,18.9655287619601,21.428739594267 +"Q8IPD8",17.472393287203,17.9012413995023,20.5953424265021,17.0030960723324,17.5188524927986,20.0634188977357,17.3495060984754,17.7753751398596,20.3636791653021,17.0407597875395,17.3173595483634,20.1112052665401,17.3514657201629,17.7691540470976,20.0610845781001,17.0200224550687,17.2824589749494,19.7202395268263 +"Q8IPG8",15.4487950254075,15.7468619644967,16.4213737618283,15.2073897291381,15.3172518303508,16.3724477337152,15.5039385183479,15.760480556446,16.4593119891588,15.6683183455882,16.0082231914707,16.881948226033,15.488448130876,15.1869704078754,16.4551353988396,15.849761410594,15.9926528885502,16.3778051048955 +"Q8IPP8",17.8838947926703,19.2234169092343,19.8478872938614,18.2424163320276,19.4887808779964,19.9904256184647,17.7883204501533,19.0879542205308,19.7606896432394,18.1465564243821,19.5743240234426,20.0243408709357,17.6682564326409,19.165233216193,19.9811652103155,18.061701882305,19.4564905291067,19.8814615130725 +"Q8IPW2",15.3163854628742,17.6469682315904,18.4934931119849,15.684609473654,17.8279815536881,18.6706774125938,15.4193186089101,17.5018236767636,18.3389161739833,15.5418731538474,17.6257379562893,18.7651917413308,15.2475092774793,17.487773315288,18.3036214121498,15.4271871600384,17.625923652662,18.5747558127383 +"Q8IPX7",12.0280779329889,16.3275703680199,17.7887591679039,11.3404912303184,16.3379607030138,17.5516475741891,12.0735236080912,16.3409528935755,17.8027961003782,12.2821535009099,16.2815508913119,17.6438908182435,11.8703941116503,16.2762234134696,17.3993241435535,11.0327318407449,16.2679467213439,17.5889928868584 +"Q8IQ70",17.3797014878046,17.6404556524272,18.4810790053983,17.4865437458097,17.8492383086117,18.4855640898869,17.5331482235294,17.8903768843737,18.4581238320776,17.4545427622885,17.8046862219054,18.4253878217017,17.6909753603906,18.2025981223627,18.7157976725608,17.8238586205377,17.8981704769374,18.7174172751778 +"Q8IQB7",10.3444591741629,15.6376059969221,17.3160284131225,9.71630461560197,15.6033970258566,17.1934680009813,10.3925997556133,15.4337225327831,17.1411492365558,10.6424754738747,15.8774025754822,17.4843624823031,10.0959357950189,15.7573786280981,17.2824892392345,10.5190341864122,15.7949272188096,17.5378323513693 +"Q8IQC6",15.2147501785413,15.8414097630874,16.925353789591,15.5304514997441,15.5845401822054,17.1379478081995,15.2356416631953,15.0983296500751,16.53191025592,15.120672069628,15.8060014958206,17.4892912059879,15.5296054442008,14.7795684933524,16.5893840492159,15.1800343430778,15.895170114516,16.9668975386893 +"Q8IQG9",19.1782134162295,21.1371790925095,22.0765242738764,18.9554484025208,21.0017968326409,21.7544034387115,18.7438244999147,20.9095259163613,21.6069497536278,18.8688779494343,20.7788128725878,21.4454775552054,18.7534502053387,20.8968320223369,21.4334470217037,18.620787813148,20.6827320138827,21.3550310031245 +"Q8IQW5",21.6479873288687,21.5981919888074,22.9766808985127,21.4476351402201,21.5028414806858,22.8080203327108,21.4571337273414,21.5316863073033,22.8768077594985,21.1543789526712,21.4455297921255,22.7313409240259,21.3810375068819,21.6519657342129,22.7217937012545,21.3446768780556,21.7012394457528,22.7004889237094 +"Q8IR45",14.8515454238138,13.6664743685932,16.1198429923777,14.8771199000898,13.6891246063116,16.253409391569,14.9239642655646,13.4930291892399,16.0094197034997,14.7101704733048,13.5172863021688,16.1802347906083,14.8046637691051,13.6686125809684,15.7447209109455,14.8602856383274,13.2557734534114,16.0508843177763 +"Q8IRD0",16.3762407491697,16.6465848105773,18.9066145747009,16.4932903158447,16.7290173231569,18.9967412461755,16.7920494514473,16.7661001563154,18.850889748323,16.8264603237262,16.9818673515455,19.2435053965032,16.6487895273783,16.9271852043965,19.1551572579976,16.9811904134594,17.1004801036712,19.1181453586874 +"Q8IRH5",14.3121296862521,15.1790783499534,14.4701793429409,14.5125467467791,14.9103961340811,13.9522707643405,14.3151537003508,14.9526457869039,14.2775660307336,14.0858886142129,14.7327642176846,14.1806670781451,14.0475614471219,14.862223767051,14.0478031309876,14.056371879192,14.6503843315162,13.9468233863475 +"Q8MKK0",12.2823030869979,17.6722701206469,19.2917632933519,11.0641855591923,17.1802265254708,18.9979160410532,11.3083517335431,17.4095484543829,19.0351209498356,11.3995770513253,16.8340589739029,18.6811537710265,9.98291548914444,17.5900193196936,18.9186788416529,11.2868092468786,16.8231641543076,18.7950469357515 +"Q8MKN0",17.0540849425141,15.4387808365501,17.2315470597961,16.69503219156,15.4177194159893,17.2113846113786,17.0479249911876,15.7877194547495,17.1958503060415,16.9260965884821,15.8039487957362,17.3883009729432,16.995905603851,15.9052010397456,17.1668598381091,16.9009203669336,15.9742229123975,17.0216852000366 +"Q8MLP9",13.5299008442075,15.5888388871039,16.2945514723191,13.1411285423752,15.6652698573155,16.4999558706061,13.204669525706,15.4227944194396,15.9694503241175,13.0595788328873,15.5804877901099,16.4778665166858,12.5700199958612,15.5790997083896,15.9451477892589,12.4399522077553,15.4967152448179,16.3017583025165 +"Q8MLS1",16.7724691393528,19.0411019164317,20.0180607778734,16.54127556709,19.0879927539385,19.9645954668712,16.6768806183672,19.0257884690391,19.7976490199747,16.596371748138,18.9487419131081,19.9163402077939,16.4512346048501,18.9252640723966,19.6514910517661,16.3682049579585,18.5796514430232,19.4112059757888 +"Q8MLS2",14.9866059190458,17.608371926136,19.154322678885,15.1346952032384,17.6942088313209,19.1919477226805,15.0909928417799,17.7728257402119,19.179784715597,15.2705903617455,17.8803590858708,19.4236763119324,15.3434069054904,17.8067375122042,19.3385856756038,15.2760158516521,17.8370595859138,19.4630948742186 +"Q8MLW4",17.450158210656,18.9941452501878,19.5683416668385,17.3746423985442,19.0577188355208,19.7293914195957,17.3221727633272,18.942732871393,19.4596503710503,17.4396856095001,19.0424987549097,19.7059822588832,17.2674432825635,18.9065164537403,19.417342808343,17.499547888188,18.8205090832132,19.435513439372 +"Q8MR62",17.2114954221702,17.5394415300947,18.6334655227543,17.3142454684271,17.533781521249,18.5938686729295,17.2480387891436,17.272790539484,18.3724833046965,17.1635107615766,17.2721689152195,18.3042524889847,17.1040658597117,17.3545183589588,18.2130247293184,17.2006986723113,17.1551736051262,18.2092736975026 +"Q8MRM0",16.8945833477133,19.1612007585026,19.9755689294709,16.8094170548524,19.0567190649113,19.9026094457684,16.8370270001787,19.0291214044619,19.8040891497454,16.7258152463265,19.1409968665802,20.1000773981712,16.7752572705534,18.8785312819203,19.7914994403554,16.4811764345529,19.0622474108816,19.5671312075308 +"Q8MRT7",15.3719020451783,14.7886022560354,16.3277677017885,15.3549915072795,14.3920396233319,16.3039797398059,15.4932813296068,14.4205585082406,16.1920761707155,15.4467393203877,14.6800441990051,16.3636867291865,15.2613419854795,14.6253550637263,16.1344538264425,15.7272652362175,14.6382637790482,16.114833969917 +"Q8MSI2",23.3055553573462,24.4470941975531,25.6957542928784,23.192374459746,24.4219967406025,25.5496798296717,22.4154757942056,23.6624753040329,24.7505967960836,22.8974941121724,24.1082357787401,25.2842092378699,22.5098219011904,23.6778399719813,24.774012587081,22.5939787340704,23.6532688225251,24.8330547715778 +"Q8MSS7",12.0183389856694,14.1656894298038,15.5535213418581,11.2264027682245,14.1650058432659,15.6404448894403,12.5320220549804,14.445366417438,15.6406802359636,12.8233560698839,14.7426690766881,15.9146633361845,12.7782949374029,14.3798893339908,15.7061555005379,12.0930547657209,14.6672061748718,15.8561480675246 +"Q8MSV2",16.6403900680121,17.7985507014832,19.5474468614748,16.9345881327001,17.7629670670774,19.9774801928624,17.006509116345,17.5630422886671,19.5744390769798,17.4180330676581,18.0530778457133,20.2048724561795,17.3105733273995,17.3503877970459,19.6513096056247,17.0763502684803,18.0567004622013,20.042571933903 +"Q8MT58",20.5491306907619,21.4321982327858,22.6440525864133,20.5530943495833,21.4456353600679,22.6092075894589,20.7689965391815,21.6861867342226,22.709224925313,20.6503758646488,21.4859498450425,22.6440710022189,20.6384791389742,21.6018947174077,22.686914412014,20.7843270784537,21.6398744008674,22.7438367358833 +"Q8MZI3",17.0244930829347,16.8637136340864,18.4443607984884,16.7351842611489,17.1770484065701,18.7147292240455,16.907430966772,17.6191171810673,18.8992319886549,17.0352688673056,17.6528060790259,19.155255838134,16.8269449141817,17.7126259594017,19.0321012001312,17.3936561485875,17.8382043859681,19.4517828116831 +"Q8SWS3",17.0460278234039,15.6385749005448,17.683646305581,16.8707729979051,15.6526238448056,17.3788006089219,16.646945379954,15.1786320374447,17.3555302204948,16.4957692924752,15.4257008639162,17.1352354128415,16.4327556669132,15.055469666563,17.0839528456076,16.732257404568,15.4458160561659,17.2776196503336 +"Q8SWZ6",11.9039204631305,14.9313490841556,15.0751758860108,11.9517973376865,15.0883104504257,15.1695934742933,11.4956042780848,14.8483599871197,14.951350940058,11.8947581489057,15.1167729848293,15.1681472734879,11.9027982435401,14.9306785139131,14.8918558868273,11.9111886721388,15.0445380784691,15.0060610664353 +"Q8SX57",17.3375264547523,18.1585164508071,18.8850683737326,17.2107552826859,18.0028583957322,18.5739254243418,17.2901346904052,18.054948588224,18.6509887916212,17.1083581942779,17.893603741864,18.5188399587436,17.1865774558904,18.0609516756862,18.5933186894037,17.1573441514515,17.980476849488,18.5350036875669 +"Q8SX68",15.9642108973883,17.3169244556222,19.5340763508372,16.1499628897239,17.5767448404392,19.5514607547724,15.6026512355775,17.3306771175046,19.3582268709496,16.0118885905764,17.3825649224665,19.3111705369211,15.7827369429321,17.373708306381,19.2702630912252,15.7992021058537,17.3966743713585,19.2679435887303 +"Q8SX78",14.6572980616956,15.7217196783026,17.4130149120643,14.9180323905499,16.018190717093,17.457232405758,14.6946176904058,15.8770881947923,17.2096655426046,14.6884179246137,15.8968213802892,17.4823173989334,14.6804763745287,15.9587961496025,17.3439906002968,14.4884078332047,15.8598547327453,17.2950374596218 +"Q8SX89",14.851769510548,15.6175050657996,16.4251596137681,14.9118849237496,15.8957795718685,16.4497523900571,14.5179324817686,15.5974274903871,16.1133967871158,14.8841807934971,15.6989625181326,16.1724858382257,14.6420746441241,15.5812298139091,15.6752568322419,14.7424319890548,15.4252733462195,15.7618405054062 +"Q8SXC2",13.0215278336321,15.946924105781,15.1554050545652,12.8818011435957,15.7474184361366,15.0134696805091,13.2658686768669,15.4795328198293,15.4432116292012,12.6329642874359,15.7650395992844,15.5988846621046,13.7074396910053,15.7765632245582,15.6983566302391,13.3755386046425,15.3285523688708,15.3065602207636 +"Q8SXD5",20.3318324620108,21.130331860908,22.4202549587178,19.862171489473,20.7359143524694,21.9834640692646,20.0336278585959,20.9439144605276,22.0381062222737,19.3156304446033,20.2978433848337,21.4584258156285,19.8322286341191,20.8330944293767,21.8462399416392,19.0909432691021,20.1892297759565,21.2677697936979 +"Q8SXF0",15.5304719757429,16.1182222014767,16.2582420638321,15.8073410891705,16.1651543942534,16.5613916864073,15.9993036085379,16.5721826024072,16.7020625067921,16.0200258498671,16.6100259892125,16.9086319183294,15.9182229570552,16.7225367817712,16.7538636167479,16.2159649517547,16.8963521807706,17.0617377183626 +"Q8SXF2",14.5304204250809,16.0855605335115,16.7175086108465,14.0990842694168,15.9388087413509,16.4727983473807,14.2459171911245,15.9064212988912,16.2585899436035,14.2250233802504,15.9626202721067,16.3986433257652,14.2243997150034,15.8632657379092,16.297339786688,14.334427478207,15.7961664387624,16.2465704896156 +"Q8SXG7",12.1370120147479,13.8097600597544,15.7358118162585,12.5176894935453,13.8856371505383,15.3543470788743,12.6529771336527,13.9827746524961,15.6404419916361,12.616936733637,13.8967868376626,15.3827455462048,12.1740962135344,13.9119798387258,15.5557392753512,12.8521269466331,14.0184391448486,15.4301205361284 +"Q8SXQ1",16.5682411588685,18.4960659270615,19.647205929128,16.8073466918016,18.7014227976342,19.9383330794018,16.9892548612436,18.7543740151085,19.8694201806976,17.0537426412222,18.9824358488767,20.3771865521532,17.3380016529827,19.0233983441203,20.2571788233458,17.1300849092093,19.0479325400467,20.3406932474849 +"Q8SXS0",13.1105962711598,14.7932041976065,15.9679856492192,12.5015619078937,14.8332983528504,16.0323239540413,13.115660076071,14.7373048792731,15.7974241766221,13.2619415147398,14.7873055296538,16.0373763302758,13.2089040681142,14.4950334998032,15.9161412632244,12.9657490778852,14.3728793052803,15.6324027501979 +"Q8SXX1",18.5925809829035,19.8946720607898,21.0541043666802,18.599866302779,20.0754698777659,21.2314588995541,18.4839858633516,19.9559877708909,21.0233048812157,18.4285123662626,19.9795448391014,21.1027500941131,18.6471103679224,19.9943444546544,21.143623135359,18.6084472681637,20.0912894396435,21.1374717893387 +"Q8SXY6",17.5692526760028,19.101705573642,20.5974991231374,17.6553403501051,18.9576999933466,20.4457741821536,17.7093561106405,19.1287101040609,20.6457967388934,17.4118035179398,19.001752582574,20.5268821919872,17.7374249398752,19.2483243726018,20.6608127148718,18.0256005715825,19.131125924548,20.7341215993869 +"Q8SY33",16.5033789530836,17.5524458853425,17.9636878901104,16.7237242516774,17.7564042535928,18.0502580553081,16.5224465638979,17.6151850449926,17.9775702339094,16.4914694635232,17.7141665440407,17.9864414960227,16.3823687770232,17.6532578653937,17.7948225033225,16.7818373289414,17.6490863806506,17.8918683078876 +"Q8SY67",16.1882412197346,14.0015796289404,18.6318893469559,15.9959536549182,13.7597615521432,18.347969495919,15.9294492421179,13.7307947937547,18.4400338539387,16.3994744116512,13.3753724705665,18.018347113345,15.4256421097515,13.8597289576845,18.4454261986843,16.0639430251343,13.6191229556065,18.3589595884612 +"Q8SY69",18.3528232027125,18.4485942325983,20.0951707647433,18.3883765301652,18.4791638149249,20.3481840006638,18.2087385094688,18.4636131414506,19.9181032837141,18.3552537328985,18.3248036661475,20.1910008061666,17.6601719717423,18.4559751224973,20.1359228711311,18.4243050561807,18.5095236865491,20.2322260696021 +"Q8SY96",19.0955281577609,17.7985479074866,19.6032513332566,18.8808150874652,17.708804097893,19.3397028101826,18.8935954300069,17.9330369346164,19.6869147948128,18.6756206086119,17.6869920102451,19.4527616744883,18.8299883946853,18.0058262234348,19.6707872712395,19.0093046919928,17.6849126645761,19.5853570373597 +"Q8SYD0",13.5587607455241,16.495426599369,16.784585619565,13.0339651588163,16.429887298982,16.4605927960023,13.5297156638288,16.5647800532708,16.4164353537662,13.3355221423459,16.5229998238789,16.3902225321665,13.385724470353,16.5519262067145,16.6662333321147,13.3316086101818,16.2744789309159,16.4068749013408 +"Q8SYJ2",21.8716711744732,22.5662359355356,23.6728286672654,21.826690193302,22.6293692426336,23.6322523150766,21.6569041516042,22.4602039966825,23.4278234253256,21.7165056587876,22.3640153415437,23.4249830202979,21.7325782182727,22.4771524483211,23.3359680736299,21.5886146609775,22.2225724884928,23.2288879235204 +"Q8SYQ4",20.4376379547514,20.8047990757325,22.1041734071967,20.3503506533665,20.8693566201124,22.0472727529016,20.1132120568859,20.6264130741016,21.920413669877,20.3231457348163,20.8083062654062,21.9828142701785,19.5728870672996,20.7330194126901,21.6952068517779,20.2682823322412,20.9175494630969,21.8092577655299 +"Q8SYQ8",15.5165502230686,15.8653919656369,17.1304300910184,15.6831112551193,15.8166603316805,17.0523289885529,15.1056923013828,15.3605295178769,16.7237893071753,15.6505098786828,15.9301487601677,17.0202639713766,14.9673035305415,15.057111432908,16.5676040700844,15.7484761755779,15.9197937221857,16.9415764753054 +"Q8SZ63",13.9504246214266,13.6746596494357,14.698580330219,14.0672692497401,13.6076915051781,14.4489422816885,13.9602323025989,13.341340993851,14.4304451718785,14.0186937218741,14.1053889822455,14.5253991964699,13.9284753090681,12.9646456214306,14.3452077902318,14.3929788882062,13.8141873653874,14.2650736063108 +"Q8SZA8",17.9285986116836,16.9942345123354,19.2701306700208,18.1713340771421,17.2059925923032,19.0661678405137,17.7515298410774,17.0152939951904,19.1956131583073,17.7485104679011,16.9882710152372,19.1796836275801,17.7761598596753,17.1093652211851,19.1382196417696,17.9722825132883,16.8231270662897,19.0966477942442 +"Q8SZK5",14.5744045744024,15.4907495463564,17.7526866777884,14.4274375787518,15.3157380801596,17.4024475130418,14.1362713750735,15.9176325805577,17.1684465935086,13.7290057835154,14.3002238310718,16.6132708569213,13.9496041290836,14.4401591752703,16.9208155636932,14.1261109189164,13.7178037028178,16.5267987375979 +"Q8SZK9",20.8984089922258,21.8825236628613,22.9711740173509,21.1994429058514,22.2014750697907,23.2135666055453,21.114935029307,22.1433004010121,23.096830807455,21.4111814947548,22.4844401540908,23.5466652719337,20.9839774501724,22.0783952395624,23.0517166165015,21.1355494465436,22.1365691136534,23.1568980967961 +"Q8SZM2",20.3337465139417,20.7313234479128,22.5593118114716,20.4401881806994,20.7776669098469,22.7114757298523,20.4169139848518,20.7625451049316,22.524062426706,20.5180656838242,20.9097765066293,22.9024237353666,20.3273414256632,20.4368861570284,22.3224775163271,20.5311665299679,20.7550067424464,22.6150915900582 +"Q8SZN1",19.9239552354415,19.895633830186,21.407899517216,20.1086831551959,19.9463146741462,21.5204823499115,19.5997903861965,19.5857326466628,20.9588808189686,19.4544507536626,19.4622830151707,20.9945034816074,19.2480206599392,19.5874608020725,20.8128279052983,19.5162677119805,19.2880839892575,20.6961837918707 +"Q8T0N5",17.8474834258963,18.5037918359058,19.467445191242,17.6250691701774,18.4803107925988,19.4967960996847,17.9413355901628,18.761186306276,19.4684239944694,17.6447733062442,18.4987560693595,19.4757501424231,18.0276387464435,18.5565864098603,19.5885271558217,17.6068187087393,18.4108458763487,19.2720607647983 +"Q8T0Q4",19.0754625086618,19.7326063815557,21.3484308255341,19.3008454181984,19.67647162932,21.2578374881099,19.049125123219,19.5701846155252,21.3062442429548,19.0360155457717,19.7600417831338,21.3244949876823,18.8417426034853,19.5282684932549,20.9461341395641,19.1030028404962,19.7206941455696,21.1547438220176 +"Q8T3L6",16.7739950490662,17.6255257195747,18.0980944819274,16.9765335159444,17.6699380768504,18.1609889614516,16.8483907083661,17.5446099617916,17.9913452068137,16.7390341049895,17.609527227647,17.874425217992,16.5921141124387,17.4873098206722,17.6737318799552,16.4577154580567,17.3124400282881,17.6646049451107 +"Q8T3X9",17.6813268857769,18.238241219394,19.4192507866918,17.4403566559103,18.3018796579277,19.4206338376001,17.3029420772001,18.1762538482681,19.0913429612928,17.172305643854,18.1350973305384,19.1439858457536,17.2939015699271,18.1608068366288,19.2572065553671,17.6985118896429,18.1079438274199,19.1817297473777 +"Q8T4G5",18.4534024935909,19.7014577807336,20.5422602369378,18.4207390872952,19.6936076071714,20.5501665979111,18.5497922319997,19.764972406412,20.5827233876884,18.5301447480738,19.7372448392959,20.6233536128149,18.7793252563618,19.8423564291883,20.7311327835681,18.8020716796019,19.9465297281069,20.7453489844797 +"Q8T9B6",18.2736496788546,19.4892050392424,20.7379958765147,18.4199147507938,19.5053413664549,20.8031684202963,18.1839353363332,19.3355121363639,20.6589231183988,18.5308712243824,19.8472125691433,20.6591066440592,18.2016119444384,19.395018804264,20.5071375133279,18.3854874589859,19.5583801005795,20.5306052538462 +"Q8WTC1",13.9513607512207,15.9568524744954,15.2168312604652,13.4957466165389,16.120994241598,14.9936031198232,13.7829061929671,16.1389834602978,15.2786899874891,13.8454085958136,16.2556537025007,15.2690450311858,13.8042011936435,16.193707408618,15.4280556593473,13.9736916236807,16.2105772186551,15.4039818056213 +"Q94516",22.7176386074478,22.9854905980294,24.7775499014576,22.6103185135186,23.0104450752311,24.6274618032131,22.4998688169452,22.925527983353,24.5720108550762,22.4577389024512,22.8804766328615,24.4969569070911,22.5171742320671,23.0750718207664,24.66646242778,22.400699125751,22.8790616123972,24.5023569520439 +"Q94522",23.0674250500901,23.1810253730381,24.3316496937805,23.1956578370713,23.3506535441068,24.3550606336082,22.8675463673986,23.0679886063386,24.2224164343578,22.9079013302641,23.1227584508376,24.2625254520447,22.7404345924709,23.2034942895834,24.2516127065493,22.8171116617928,23.2256871669698,24.288142455795 +"Q94523",19.4864608235794,19.9390711178119,21.5181394292738,19.0122319113694,19.5656039604435,21.081295150244,19.6127070241701,20.1065272859807,21.7050512838495,19.287949640089,19.8821247430955,21.3887173602842,20.0724708875296,20.4969774459266,22.2211729326491,19.7817050195946,19.8833085904741,21.6760812035498 +"Q94524",15.0339427788939,15.7110765990833,16.4979943736499,15.054890997967,16.0173180791874,16.538947882469,14.7682457288874,15.4458660354247,16.272323954967,14.9625639154295,15.6648059228731,16.3336466785848,14.6473384166228,15.3014536728166,16.3717447685854,15.4949918887094,15.9401839125392,16.564310544513 +"Q94529",19.3584912271776,19.3346895629748,20.4848062044484,19.3308603224922,19.343038006592,20.4034720213215,19.1797655477979,19.3584350671048,20.2594315355803,19.1426262685415,19.3217731576553,20.3217377404766,19.2521912022866,19.4605896648793,20.344931772127,19.1066029407174,19.2979689016196,20.2209150777457 +"Q94533",15.3749043226603,16.2869199530132,14.9647558372904,15.054093252418,16.1195620200984,14.3916609932398,15.2161548742308,16.1986910185023,14.8203829191527,15.0090993908561,16.1235180188516,14.2404690190014,15.0088756096605,16.2668786288996,14.741153638431,15.0571300174332,15.9768492925283,14.2731836101295 +"Q94901",17.3105410784285,19.0140071512171,19.3753221050549,17.6683097529831,19.3144407634075,19.6512584890749,17.6670119433333,19.3535311506671,19.7001603109404,17.8996753857151,19.6317918157751,20.1189896072925,17.4670935482509,19.2702833283406,19.6351430793124,17.9136527423007,19.5903983795789,19.9417026000094 +"Q94915",14.9873308097942,17.5877757039225,18.3491462431724,15.2544564816843,18.0939917128378,18.7733345458007,14.6975398680479,17.4822303627283,17.8539617099762,15.4027469491358,17.8948496893336,18.7129568096931,14.8126194836653,17.521900093519,18.0995656525784,14.9208436053515,17.3206379601347,17.8885900793699 +"Q95029",20.8075996791664,21.7175880306281,22.9893430132479,20.9782481023766,21.7035473016127,22.8674165534455,20.8005893337796,21.7049259952393,22.9849117887843,20.7889686960139,21.8084883486148,23.0519110024647,20.614910676702,21.7463582877423,22.746026950842,20.9124953741269,21.7726811199894,22.9086429946755 +"Q95083",18.8836106234303,19.5805025580815,20.9596731840875,18.7166096295589,19.7626683950071,20.9954936627301,18.860672680983,19.7600054767897,20.9856446699886,18.9228590609968,19.8135967797671,21.2083765949065,19.0503965660113,19.753725878661,21.0650741356584,18.8990295403844,19.8596722412454,21.077351000985 +"Q95NU8",17.0018206372312,17.2889825356208,17.8601422248084,17.2023100289053,17.5414499669313,17.9895840500755,16.5694095822018,17.1098054519211,17.72938840768,17.0685857519044,17.408373623642,17.8546995764235,16.4755110445505,17.1371072381169,17.6768554138307,17.1742452632324,17.5222119831407,17.8418969772817 +"Q95R34",13.6663504168413,15.6267597074007,16.8880639881256,12.9623142602941,15.4991676718189,16.6039496286161,13.8811866743184,15.8555178768729,16.7083288264132,13.4085414198791,15.3105581784242,16.5718770923132,13.8585947771315,15.8207789296909,16.9259158006748,13.4644385188223,15.4615963022038,16.788073132365 +"Q95R98",15.1744836639209,16.2605287386726,16.99616607631,15.1715460950721,16.1576741807233,17.1490412588909,15.3035880285909,16.351339641685,17.0347956306617,15.4676415738843,16.2880725291561,17.0941401547795,15.4317692040101,16.6690335063395,17.3672687427804,15.893694665766,16.5558403612241,17.4526279738094 +"Q95RA9",20.0762446454632,20.5699408416742,21.223603828542,20.02052417022,20.5503750430865,21.1776112494653,19.8585297664832,20.4739880236463,20.9853517835849,19.851577696023,20.5417724389982,21.0633004556627,19.8806868977481,20.5197669112805,20.9190796688211,19.8699791194588,20.4340947227486,21.0009994491857 +"Q95RB1",15.5565980968597,16.2203665303536,15.9649553300077,15.7345102478444,16.3117920396477,16.0119975743596,15.4658668727194,16.1515689891215,16.1740669964388,15.4614651725202,16.1783023825872,16.1110693899438,15.5063576801506,16.2956412736647,16.1848000697386,15.5633734759455,16.1696293465714,15.9231431061265 +"Q95RB2",23.8781099728772,24.2135165883349,25.1309450998849,23.847857868534,24.1396579035443,24.9346479468275,23.6924574062494,23.9392396679611,24.9907458815642,23.6187874262599,23.8250028925134,25.2200206714021,23.7910189671411,24.173198828161,24.8052246278131,24.0308486727374,24.034823167038,24.8690798523138 +"Q95RF6",15.4355451969088,17.8552891958354,18.1927803025827,15.6308135213767,17.8749026773516,18.2672692107804,16.0582525715564,18.0163969728373,18.3116892539143,15.7173142545097,17.8024258238316,18.0707719451915,15.9551644440024,18.0070337244609,18.5612930078587,15.4281272035037,17.8707355331734,18.4743396284907 +"Q95RG8",12.1556851612904,12.6186472771839,14.8130300526447,11.6827140471889,12.8269602599775,14.6630022499852,12.8727616478826,13.1316246219098,14.8344211671221,12.8120369698444,12.7505077624739,14.865362199257,12.4523050788986,13.0945784785563,14.602747842849,12.9729893015934,12.3005452322475,14.0106262496606 +"Q95RI2",15.9060721393295,17.7061675068239,17.6913335193787,15.4980967804002,17.4807982749316,17.5599136981343,15.3685892115501,17.1971634555013,17.3407701034946,15.4156104841552,17.245459196685,17.3872066499268,14.9603116418415,17.0542173395885,17.2743709779901,15.5275200251627,17.190604890781,17.2128859413652 +"Q95RN0",15.9473461359749,17.1114527820435,17.7402667866249,15.793812512182,17.2799436526537,17.7599454678148,15.7977033418041,17.0641768228794,17.6133566054545,15.8637113244883,17.2386306840022,17.683908810044,15.9624453673861,17.1879349885062,17.7064762370331,15.9508285545809,17.2139184201346,17.6482557359665 +"Q95RQ1",9.54072802601289,13.3682606830823,13.020616006834,8.87016068119866,13.0181234995813,12.6740850554009,10.5789097945132,13.2786745242839,12.87661170738,10.6295779462424,13.3606365022573,13.585998857138,9.77733361842236,13.1940469009746,12.7458539500115,9.41041512500474,13.2110322226775,12.5907029824182 +"Q95RQ8",13.8520896742855,13.7688563384077,15.3309793494929,12.7683893434995,13.7959578932025,14.8758135447126,13.480745745515,13.7327332948837,15.192247128,13.0094846920556,13.382881548027,15.3337263454898,13.8615119466391,13.757928230174,15.6616611919612,14.6713283698534,14.4396544326295,16.476188453885 +"Q95RS6",16.5353198721039,16.6166933697162,18.0353802572661,16.4371834926841,16.6886991756456,17.9394675879635,16.5598952776908,16.7564417367815,18.2866928679278,16.5393314404864,16.8082114664989,18.0391687658034,16.4616818331038,16.8290214252125,18.0403783864373,16.8385442351324,17.2312762767993,18.3787285647664 +"Q95SH0",13.0610065522533,13.7481965437148,14.4068500083747,13.2482459058154,13.9330875187354,15.0604538971953,12.9980111737472,13.5593825248147,12.8812542908113,13.0841489093502,13.7831937394758,15.3922036211038,12.8266861599905,13.5983616219792,12.8674877033649,13.2695824472881,13.8894566537274,17.3385441964758 +"Q95SH2",18.2426178831598,18.6647168086099,19.3976037162157,18.1236975480535,18.611119584613,19.3947103754698,18.2995391279258,18.5415243172699,19.4163058471844,18.0905301868471,18.5701412600377,19.5708533169373,18.3060592174958,18.4838918161931,19.4738689019585,17.9352817210528,18.5862952099776,19.2857808512772 +"Q95SI7",20.6042841723086,21.1723079064451,22.3151995717917,20.5628212773198,21.1626177624173,22.2253501948996,20.411706005599,21.0542149670184,22.0910057932747,20.3953136186352,21.0302115719088,22.024952450701,20.3647703400778,21.1756915047712,22.0980803645976,20.2368109865072,21.0067183103007,21.9351610879894 +"Q95SK3",16.0522194478843,17.0727203755814,18.8247828826217,16.0414137604173,17.0596956074243,18.7193507996756,16.0590441956848,17.1124248021595,18.548228724864,16.041012431632,16.9867478648865,18.6381678477794,15.9794637179716,17.0623758093789,18.5512523539161,15.9190895339747,16.7395164728943,18.5133245057357 +"Q95SN8",17.5011635042011,17.6182271108518,17.9992170583725,17.6135099688364,17.5125400004879,17.8226657835099,17.5278038683705,17.8349976069801,17.888901767382,17.4546298527967,17.5288668662028,17.8473001590526,16.926778695288,17.824272567053,17.82697654455,17.5805049012309,17.6012983541268,17.7722809032851 +"Q95SS8",13.0640172967685,16.1435045243402,16.2842146357383,13.4350089534309,16.4647619500774,16.6687179230325,13.5175945122246,16.4899052616277,16.6675496063819,13.7734070471128,16.7615889409082,16.8607710334702,13.3904611627657,16.5136816145906,16.5989540878167,13.9701745781734,16.5877748251428,16.9239214959359 +"Q95T12",14.3132817908463,16.0886434700736,17.2191283320435,14.2287886372641,16.2537307024101,17.379971836608,14.3454786820313,16.1912605493551,17.0297403907779,14.2487036059849,16.2556177732805,17.2326939542213,14.4793165684331,16.2813947330842,17.5397582014721,14.2347373214951,16.3206443857863,17.2294090569916 +"Q95TK5",16.2789502197887,16.7847581493623,18.4017255216914,16.1870031052473,16.7353236964543,18.2057046053963,16.3709963082986,16.7808018340258,18.1769542647645,16.1095018689344,16.6912483249423,18.0568375404564,16.7830435439977,17.2420027370568,18.623435790906,16.2555862350409,16.9693890245121,18.2365580710833 +"Q95TN1",14.0427534133853,15.0625896975181,12.7996385706247,13.6327018218284,14.9572941900403,12.6652179448641,14.0737166730656,14.9306206879125,13.0421624528248,14.1855845491372,14.9055813991053,13.3775455913135,14.2965277958492,15.0174886046023,13.2709292658428,14.5137784063324,15.1190644091439,13.1257721961502 +"Q95U34",18.1912425495838,19.2496302714171,20.6316935809046,18.2972151638745,19.4452337957045,20.8153367015947,18.1684744511446,19.5123172666959,20.7618759792524,18.2322612775823,19.3721087771726,20.8518635111044,18.1473867644117,19.5101602688152,20.7947111100811,18.3213386059111,19.3090681580125,20.7365055935132 +"Q95WY3",15.8124395516313,17.7276916448312,18.4625388632387,15.6227556711852,17.2796190587274,18.2236889967174,16.087911479783,17.8010360493114,18.4764790747971,15.8834787919666,17.4229286492613,18.0376219590627,15.9925420185562,17.604720136612,18.3845468379776,15.8288090476245,17.4567567566792,18.1500771819819 +"Q960M4",22.4792013238786,22.8982248713512,24.707604215819,22.6506565503245,22.9747306864015,24.5318646226847,22.256197135667,22.7227754724034,24.5077178406143,22.1662053749631,22.7051606923071,24.3387633263919,22.1476778408965,22.9644634300044,24.3973740814397,22.2740692030017,22.8325452923184,24.2595499045549 +"Q960W6",13.8101834897856,13.8249063368623,14.9078621067194,13.3317815195729,13.703350943483,14.6043155509943,14.1599455093033,13.8446769493965,14.5210913361551,13.7284327152498,13.5576585451135,14.7458842541627,14.5442113705331,14.3865444742177,15.0462255265975,13.9598417660148,13.2022809540833,14.1634719208571 +"Q960X8",17.7726649365205,18.7853255679243,18.7966467381275,17.9124148898426,18.8815107664705,18.6642585837352,17.6512048929538,18.8499257858249,18.5341992766366,17.8081776631035,18.9658988192109,18.7009046665785,17.4540339559709,18.6252059330252,18.4743396284907,17.909872646565,18.8694809955964,18.6785017745792 +"Q961B9",13.3083533722785,15.3140289441915,15.4439360888776,13.2332112250972,15.6165742762115,15.907380377384,13.1405144044314,15.675487394916,15.606748928564,13.7124270599202,15.6257785872496,15.6768776596176,13.4317668925317,15.705012300286,15.8259951817208,13.6706306623118,15.7607151361669,16.196686452777 +"Q961D9",12.4295206324021,10.5084198077099,14.846187039907,13.3077249097465,9.4203167853096,14.9225769873078,12.0278784343041,9.54495483450571,14.8350285875451,12.7664757524411,9.78277096804088,14.7956971078333,11.6898266169248,10.6578011268147,14.7698650811841,13.0801157032641,9.77579284772279,14.6981080895975 +"Q961Q8",14.4706199474422,15.3419737114198,15.8401090417144,14.6062003190489,15.3249318861637,16.0035906843275,14.9587114865975,15.3836425334107,16.135475378502,15.3668927996473,15.3203267395167,16.0421276939912,15.5484830694239,15.8680307811402,16.2402172048082,15.105834467782,15.3872455021903,16.0316204570123 +"Q961T9",16.6638513444894,18.2903928221088,19.4026174956602,16.1037540188373,17.8624373211628,18.8643006894641,16.7355365869201,18.2832312984961,19.2208113446382,16.5382991271517,18.0653090385988,18.9990835250181,16.6842848462889,17.8949946418581,18.8618195066952,16.7058409251285,18.1586819813355,19.0909413350995 +"Q966T5",15.8153243547461,17.1659538795324,16.9747970988361,15.5379829139255,16.9338706666423,16.7125093246012,15.8103007196452,17.344960991853,16.8222867494898,15.560961887063,16.9535207481335,16.7342468775673,15.7634904695746,17.4599289802951,16.653074489546,15.5175762016043,17.0354655572533,16.6827491227707 +"Q9GU68",21.1857371787408,21.9667739003106,23.3007745710685,21.1681842537468,21.9103872611733,23.300321782236,21.2500532972574,22.0955594810318,23.4066142398466,21.2840156191002,22.0499928284273,23.455576053644,21.0022900252037,22.1838314843345,23.3326101653178,21.2477398608892,22.3137310944807,23.4757385057656 +"Q9GYU8",10.1248617624172,13.4666845843522,14.4007328333151,8.85611881440072,13.3970175441108,14.4077860341145,9.39512880074549,13.6274717355388,14.0112886894151,8.29429367216926,13.5976848162892,14.6597925578659,10.3533835159321,13.745714023451,14.6198048681396,10.2303043924958,14.1952701194316,14.7945471263488 +"Q9I7C6",14.7292424756118,14.3976332354687,17.0216875717274,14.8310452068644,14.109521304402,16.9528513537622,14.6811485118957,13.819983356306,16.5286018676345,15.6996261388934,14.1567309297615,17.9416440870157,15.0036619014023,14.8990443597955,16.9933115514431,14.8461609170209,14.2601367386318,17.5589242662963 +"Q9I7I3",12.3363483981274,15.1612369737622,16.0115025888488,12.63766007742,15.2692019767402,15.7696586773191,12.613959022146,15.5958774871719,15.7963684405814,12.3840623293019,15.3874306314663,15.5401813442156,12.7725476334871,16.0360243857297,16.1426528007028,12.0931248242567,15.2144184225427,15.893130776048 +"Q9I7J0",20.8086083639444,20.8479583022063,22.0722701182546,20.5716988230563,20.6238574216865,21.8498076925735,20.5146972647053,20.3920896265546,21.685696226385,20.5164229141813,20.6691970741122,22.0093943622726,20.5390081301213,20.3207240508972,21.7100739370415,20.4569231393365,20.5725989126393,21.5145963133981 +"Q9I7K0",15.1982680466031,16.8418600015541,17.2739378336768,15.2343672359086,17.1897179700493,17.1454206722619,14.6472132975606,16.5375456162147,16.6911030190398,14.7701235600218,16.8247188810686,16.9131491195411,14.592586691787,16.4774515145304,16.4634896701958,14.7172158946646,16.8570180060865,16.8743469057157 +"Q9I7K6",13.1863904785134,17.164243558963,18.5215166479258,13.3197787132407,17.3978363210051,18.6069793775767,12.8365687758302,17.0231663716544,18.2898022050757,13.1070692666808,17.0993351919306,18.3559887001485,13.2143649444213,16.9821636690431,18.1344723364936,12.9714201445225,17.0613492326207,18.1602942039909 +"Q9I7Q5",20.91512615055,20.4189345283638,21.9256513181425,20.8142351205116,20.1947930785472,21.4887035118275,20.2452624822456,19.7882240926126,21.0426232931365,20.2756457374423,19.7402043912836,21.2298978636357,20.6215671927576,20.0846125874156,21.266358750379,20.4755385176124,19.8389509001013,21.221911260231 +"Q9I7T7",13.009421063613,14.6806875760077,15.5086459343994,12.9054679813075,14.7428709184345,15.5726895461276,13.4705695399063,14.680136190894,15.5535741017661,13.2119121426435,14.7980570077591,15.8028213103908,13.8639229980075,14.4402620757587,15.3824072305177,13.6136577492041,14.4434172538324,15.3870051317211 +"Q9I7X6",14.1015515259242,14.1791365657821,16.39330895762,13.9021548652758,13.8077426905289,16.2133724005875,14.2386865658943,14.2910621964045,16.0807141148041,14.0882779827723,13.7878483009928,15.9372936647454,14.2906819622525,14.6702223573914,16.1401132094116,14.5391563639515,14.0160975968092,16.1800192988943 +"Q9NBD7",13.35182581285,12.8991264101703,13.8067985917833,12.6674152336529,12.5333048847916,13.3716919813253,13.4038434180148,12.784317951563,13.2454894952486,13.2480462397189,12.6953657640763,13.0997438142761,13.0797778591227,13.4774849880077,13.9679707889085,13.3912699594389,13.5330800491497,13.5570685263569 +"Q9NCC3",16.4495851917194,16.7411564881173,18.6191261746838,16.4448128129885,17.0303742367844,18.66141567768,16.6163124173727,17.0658520680865,18.7245684805182,16.3156781713533,16.8339593172607,18.5347920493908,16.5555687624196,17.1612261352174,18.5396452618197,16.2978051612482,16.7913471587826,18.3656497843701 +"Q9NHA8",14.8484933233141,16.0732431963508,17.7611743193339,14.8694851562487,16.0537742269265,17.4373690180591,15.1297929996888,16.1523071436133,17.8700376477531,15.0864078036362,15.9568834241667,17.517711646957,15.1237492159259,16.1323850328626,17.7828282791111,15.0529479788174,16.805826555365,17.7395364714594 +"Q9NHD5",13.760430259391,17.0334720968921,18.4538303445738,13.7833785084085,17.2101537565593,18.6824818560397,14.0082069250792,17.1047352380062,18.6179809859765,13.6595820407091,17.2929394707851,18.7972291411296,14.1249157132438,17.1865229441738,18.6566729710791,13.7456111479784,17.2670069906462,19.0617423804449 +"Q9NHE5",15.3614837922575,16.151916926172,15.7391109056107,15.497915745405,15.5034458433978,15.6352630458395,15.3179744178567,15.6502955514804,15.3246998038762,15.4359449933601,15.7960844756977,15.5837100020032,15.523375715918,16.0191209135056,15.6961539985559,16.3392147290782,16.1604233388651,15.7399404632655 +"Q9NJH0",20.4307564303059,21.0443954266491,21.7581131819175,20.1688173504975,21.0162336581907,21.673882640488,20.6640462576766,21.2754294355281,21.9488914319642,20.4451832536705,21.2469902898055,21.814263736125,20.7179464451449,21.2865460503133,21.9963430779248,20.5524908282368,21.3480365150884,21.9927846464954 +"Q9NK57",15.0841944159919,15.798076643279,16.347956329416,14.9108630969506,15.6742329416254,16.2637976723038,14.7849734828985,15.6996463939763,16.054503367884,14.9424525505013,15.7619909611909,15.9840976408828,14.0960664469189,15.8049097964374,15.7712835079402,14.5572501842902,15.6443511677321,15.9827949404623 +"Q9TVP3",22.1721529618813,22.2206737628376,24.264080959122,22.4555516302391,22.552359484255,24.4207703820267,22.0344849926157,22.1553043444563,24.1890306132155,22.2719079054503,22.3357571255917,24.114921875943,21.7865442057962,22.2622597692883,23.9813221614151,22.4847589873906,22.5883721305372,24.252423468699 +"Q9U1K7",16.2468180181751,18.1503279032545,18.9192248971303,15.8359506299077,17.7815520489026,18.2172358021209,16.2203908675517,18.0566779188329,18.9002157797756,15.6878690006277,17.5286430048564,18.0944210927345,16.0476993278842,17.9880981934994,18.6225194705072,16.3516114473209,17.6109513209421,18.2658960695312 +"Q9U1L2",16.0769758311614,16.9405976959679,17.8030007218437,17.1699692834888,18.5083444900169,19.9567341800958,16.1344104449731,16.7903462009313,17.3678501226131,17.0299455654222,18.1379216685254,19.4581858778614,16.4642879361469,17.1999865268593,17.9984915967941,16.7982550429214,17.5952969398583,18.9201992241167 +"Q9U4G1",18.1808818508784,19.2078418981804,20.0995224350246,18.3353166928613,19.4088580477907,20.1744397754938,18.0995840537276,19.3886557419411,19.9918353145334,18.3382527492444,19.4617505942873,20.1645324776591,18.3594748395942,19.5870733932579,20.3888359712733,18.6332102861806,19.9374490112116,20.4374585872635 +"Q9U5L1",16.2799464642003,17.5778148831195,19.237293187678,16.1980534165058,17.657894689061,19.2377442430339,16.2135125751823,17.6184039835728,19.1121046457932,16.293071570988,17.6890196804127,19.1646929931134,16.2472248279559,17.6218407659705,19.1157200994689,16.344900959099,17.5472972331007,19.0984689861404 +"Q9U616",19.1872844190241,19.3957037820382,20.5857332315906,19.5203818897735,19.6857587848101,20.4709425528471,19.1227591009573,19.3704054538932,20.5237391995432,19.0448534617248,19.2697456957271,20.4796877160786,19.066691746451,19.7600566778701,20.5172469012641,19.1841818275884,19.3665880451427,20.2758439941567 +"Q9U6M0",16.5361418550541,15.5822537100301,16.6120038029282,16.6387712279014,15.6977400269176,16.7843336809967,16.5685577392957,15.6260675684873,16.4167747967142,16.6812489499322,15.6880426755398,16.6474317330687,16.4970686176125,15.8367590801586,16.6032774192825,16.4260353579555,15.7182641615334,16.4256564417287 +"Q9U6P7",15.5754764175854,17.225427456831,18.0404681967052,15.7988754907776,17.4494571220777,18.2884473009678,15.4853981608641,17.299096517471,17.8396685527898,15.5215852458618,17.3054288870412,18.2178360600854,15.4418249331628,17.265250351174,18.1103071123582,15.9542992197077,17.5215923235829,18.3108285286727 +"Q9U6R9",19.644441766013,21.0817258577955,21.233594518558,19.7762148753218,21.1366687526417,21.21728290514,19.4736936012457,20.933877604016,21.0203045476317,19.6242745761251,21.0056871787019,21.2409002788859,19.5793972169862,21.0437290093132,21.1072452909766,19.460673305354,20.9497440060774,21.0051817576889 +"Q9U915",20.5691767242943,20.9595956340133,21.9637660943038,20.627609213635,20.9510982398495,22.0456828184725,20.3675604564881,20.8104121101587,21.8466659856735,20.5726875465096,20.9426024953582,22.1536316251222,20.3940020206485,20.78688884792,21.8664877385461,20.3727424098989,20.9394478368429,21.8927304175012 +"Q9U9P7",15.4360412857477,16.4047533957293,18.2205921279984,15.3574304439683,16.5752829283463,18.3906560384315,15.1851952827347,16.3430355622438,17.9299455426099,15.2478519163182,16.3814966652163,18.0471756307402,14.7158747016223,16.402771135578,18.1997760372874,15.4274020292415,16.3613944853569,18.1420238062551 +"Q9U9Q2",14.5019016875429,15.3809578561236,17.0859568156486,14.5936209488855,15.4896360762399,17.0969201993437,14.38157718125,15.3590951520904,16.8785264246826,14.3981705920522,15.4577036602393,16.8939774818684,14.1972362989905,15.3555845563884,16.7394379723649,14.4124114212833,15.2534289030097,16.890198355113 +"Q9U9Q4",17.0011623663011,17.0782539342097,18.9381453025742,17.0999155197026,17.0585884889639,18.8117346303141,17.300821602074,17.5291701879136,19.1505008553149,17.1962101174222,17.3079254338567,19.0880486483819,17.4071088338951,17.6901697393157,19.2996929524366,17.5695392914521,17.6613489618756,19.2783327298647 +"Q9V393",16.5160639890825,15.4969115338551,15.1179136957572,16.2285809427971,15.6955166073425,14.9977519130308,16.5959617707828,15.7926020562605,14.8272842597728,16.1630780821731,15.696876005822,15.162430014952,16.8526890370881,16.3840234421859,15.2522792908316,16.6291457178099,16.0274382679347,15.1433970062963 +"Q9V396",19.7938448864803,20.8423395020285,21.1135052881656,20.0687090061762,20.9739115270503,21.2489651449632,20.0226241145895,20.9483911584311,21.3902174512641,20.1685726449681,21.0963241348167,21.5164807643115,20.2069317994071,21.2958129002994,21.6968370575451,20.3936817710981,21.1998792705182,21.7167590220799 +"Q9V3A8",15.1381482459592,15.653825294128,15.1806866448316,15.0360818921713,15.3903850476058,14.8649768907311,15.4120953722122,15.8543935967524,15.4220428325682,15.4517283575272,15.9877620119371,15.2092809838205,15.7929977084792,16.294644318596,15.6118033381259,15.7396433952364,16.3767028798095,15.5765336834679 +"Q9V3B6",13.6017986889661,13.2023345062424,13.7587874591045,13.7224838954655,13.5528405111934,13.840227769614,13.1691893799141,12.9360674972324,13.5883345570741,13.4473615809628,13.1536424543604,13.9588427128681,12.3811998795185,12.3518910780534,12.9359175931775,12.8353950204908,12.6959458307049,13.4835822372945 +"Q9V3D9",16.5170663218001,16.7186483225639,18.3288910546783,16.5699827587955,16.9265031745174,18.4513098852482,16.7458801842781,17.0480366388771,18.6196457723084,16.8032743862666,17.1414934909027,18.6488892430159,16.7738838914072,17.0433390863597,18.7251723019661,16.8948625236111,17.1009449691313,18.704964544085 +"Q9V3E3",12.7719426819164,15.6627365090747,16.3193478455833,12.3807999061628,15.6814817943796,16.2947937196586,12.8899021871459,15.8731770110891,16.512618672725,12.6372488569634,16.10950359084,16.8983913387295,12.9839506369656,15.5779835971058,16.4274458184933,12.7087777709433,16.116847851294,16.6487083290431 +"Q9V3E7",18.5059692895175,18.7749159674315,19.0734304969239,18.7982799432447,18.7287808725947,19.0124083164689,18.5359854455362,18.678150768619,19.0805285560173,18.313550257882,18.6316145148258,19.0328404656255,18.5743730921603,18.5109659136243,18.9919183101494,18.427639594323,18.4381194340164,18.9375094519868 +"Q9V3F3",13.9498162226058,14.3214330771982,15.3266707873964,13.9055002667756,14.3629513522097,15.3173743159609,14.2654779328431,14.4509705047284,15.0641722714431,14.2246867030558,14.4447930529173,15.2385767276089,14.0046947082511,14.4642214437443,15.4990130802399,14.1962106143702,14.9437753878514,14.9526312527024 +"Q9V3F8",17.8319804219691,18.843449787653,18.8731783253268,18.076839545267,18.9830551989214,19.0621333045391,17.7047412254401,18.6474026444645,18.8350776531742,17.8746229478399,18.9288208759056,19.1519320137145,17.7117234925589,18.6398422172392,18.8945002517661,17.9061869733972,18.7815663400788,18.96993282391 +"Q9V3G1",20.2670422029238,20.9148535271106,21.7912072484513,20.2291980373082,20.7871174475522,21.6173349923766,20.695188947653,21.2234820734168,22.0269364802748,20.2531656420433,21.0379485863512,21.9104005081867,20.6440069425281,21.0712030175927,21.9863161614377,20.2917788391744,21.162072419248,21.6599741618208 +"Q9V3G3",14.1420769880836,16.2884164446214,14.3556437105814,14.4595150773442,16.3880113707088,14.2731259108073,14.2067928653398,16.4157898492829,13.9353300508829,14.3479424209882,16.5088318423126,13.755612730446,13.8695316422913,16.3978284884512,13.5029331130875,14.8154058232523,16.40969116076,14.3905514929098 +"Q9V3G7",17.5011317140745,17.9178914804185,18.4970663499684,17.6174922044246,17.9424423856114,18.3738277072643,17.6396909797413,18.2352414695302,18.7506921388575,17.6295229799698,18.1194371876679,18.5211732734204,17.6115951595102,18.3731641984829,18.9539143407303,17.4244022295185,18.0454974242491,18.7402304340453 +"Q9V3H2",17.2423751233533,17.5692368274809,20.0942545499962,17.0791969904888,17.6450908413799,20.2784165658969,17.2416530200018,17.7724361172428,20.1815721399067,17.3435038968511,18.0367555012482,20.4784695153554,17.2404677193933,17.4983943424389,20.1341499989108,17.3482594928152,18.127739679944,20.4024882930905 +"Q9V3I0",14.8078645862721,15.5954717006786,18.1648118495311,14.6814739771771,15.347834293368,18.3015905155451,14.8367957136144,15.3904218991189,18.4985722618801,15.2682374232257,15.7644010741909,18.9939018052454,14.3070997434621,14.8580136217665,18.5511107936201,15.3328641039585,16.4606312646197,18.8695403882361 +"Q9V3I2",15.8941034977585,17.8737742089517,18.5789565768712,15.7285749042041,17.654396976665,18.4925721876968,15.9117192314987,17.958963141514,18.5139741177031,15.71743797428,17.6025543261914,18.4803184892051,16.2585184068701,18.0713578626633,18.9794661677822,16.2699745206028,17.968300308675,18.8694308421599 +"Q9V3J4",15.5861040537744,16.26313892853,18.0543895978796,15.6222137194812,16.279150671622,18.0810643231986,15.4458750581663,15.995895993914,17.8913050048928,15.6914604062646,16.2882181364366,17.9258881214661,15.5792279598706,16.2985293109248,18.0411682590814,15.8009578163847,16.5869459328025,18.0299929578579 +"Q9V3L6",14.3647883579908,16.2016627691647,16.3566020142835,14.2638281867183,16.2037400179698,16.5905014368196,14.4643876617001,16.3930903319909,16.4402668199325,14.8529677132251,16.3745433500366,17.0115355197724,14.5980684602202,16.3340510995249,16.72379107126,14.7331701895765,16.3249875977416,17.0103843666679 +"Q9V3L7",17.1657657100123,17.9223478574956,18.1978614267867,16.9567365657232,17.869884876195,18.0747320027226,16.9321545193701,17.9938634980398,18.1155160918407,16.7812770622052,17.9284960267382,17.869671153441,17.1064728040148,18.2858247031106,18.0722461649998,16.955509201208,18.3769106800676,18.1703902386339 +"Q9V3N1",17.0134533405112,18.7280713241629,19.7608053467308,17.1097035040987,18.597110860541,19.4272203779962,17.1730953748016,18.59939001169,19.5687064285586,16.9981523267273,18.4847566861346,19.4083034427235,17.1398037750732,18.5060506259746,19.5606622441275,17.1747460928878,18.4641347364622,19.3834476627748 +"Q9V3N7",19.4050969822907,20.1895563203673,20.9983698119132,19.5539988664754,20.2544183136449,21.0127993194355,19.8570034914032,20.5195480290094,21.3249188477351,19.8762585291516,20.6426692254981,21.5529654457062,20.1123613840606,20.7334488631755,21.6682620170463,20.0100220377086,20.8957654908409,21.62836205229 +"Q9V3P3",18.9582909003588,19.1825772970166,19.9940676278179,18.9557590865149,19.1742297867993,19.7703095725146,19.0972057466976,19.3993408705677,19.9839741802589,19.0069846150084,19.3226926396206,19.9551454648842,18.9998019784307,19.3616650828824,19.8777529124102,18.934374301508,19.1682627207922,19.9325275315122 +"Q9V3Q4",16.0669208363786,16.2770667239525,15.5132045807882,16.4095291112583,16.2260599599196,15.6037012554413,16.0649014675065,15.9359703026732,15.4944439938836,16.191704532739,16.3483970001306,15.9192083540996,16.3144394185614,15.7680211747854,15.4810918391092,16.3297377295298,16.3113843181869,15.5578259153032 +"Q9V3R3",12.7199029294595,13.2197571875926,14.8132962657915,13.2566952763457,13.2685951557516,14.8099673560396,13.0588671017561,12.9988179384648,14.7055192719447,12.9587477064983,12.9645249820273,14.7984246837053,12.9344572717922,13.1655991403435,14.825332483064,12.9780330484929,12.9938474045503,14.6093805353042 +"Q9V3T8",15.3676102266963,15.0594959535753,16.5843179331927,15.7201484071221,14.9957920340667,16.4981099900401,15.3864029604312,14.7658356936415,16.2169387623058,15.7201432390909,15.2228465790453,16.132914989073,15.3282818593678,14.5517703689785,15.7954183028617,15.7694590566566,15.1112929315015,16.2189861179611 +"Q9V3U6",20.4743150534009,20.6703799889145,22.0113737196677,20.496737508239,20.5564561931793,21.8737538188864,20.3794985859573,20.8029962806621,22.0934733351675,20.6489334204509,20.913370766703,22.39121488589,20.1734871451455,20.5792443783066,22.0021090070714,20.4154820865235,20.9057855544092,22.2271296671409 +"Q9V3V0",14.1182536952796,13.8081184773165,14.4993556610247,14.3491147764512,14.0791772702617,14.603188605315,14.4580739006208,14.0155846908481,14.4693738683912,14.7700346684312,14.3035894013984,15.087265725539,14.1896726619602,13.5964573612941,14.2927396783891,14.5162666236372,14.1437424975276,14.6649036844652 +"Q9V3V6",20.5767335087769,21.3903911349457,22.5230271873628,20.6199357856586,21.4322251608076,22.6113661510032,20.641847554658,21.518030716755,22.6014072340337,20.7489017205868,21.5302529705475,22.8053634374912,20.6080357584259,21.410215409955,22.4572379740112,20.790402146515,21.4771691283724,22.6474657331453 +"Q9V3V9",19.1996655964828,19.2784902364113,20.1597951153059,19.0893886845875,19.2699866915206,20.0668236851243,19.1367209398431,19.2977274646733,20.1373343872659,19.202859263609,19.2851472979759,20.1519467838243,19.0645120617658,19.3449541387079,20.0261174464079,19.2050842273699,19.2607376585853,19.9831896713478 +"Q9V3W0",19.5185070460184,20.4416296370508,22.8448639502847,19.6548102900733,20.5042694542914,22.9801241921802,19.3963510090249,20.3530901781991,22.7086984575737,19.2414390682741,20.398155024357,22.8535816896855,19.3374109115604,20.3904001281003,22.7440160182197,18.965156406054,20.2324331758635,22.4711546162167 +"Q9V3W2",21.276496240438,21.0789440996278,22.4440525054956,21.3689264926579,21.1212942457905,22.4652610468687,21.3365784843784,20.981372900062,22.4228010097986,21.0823725807736,20.8490860269521,22.2692440023056,21.3034321716878,21.0942362102683,22.4089492740109,21.193329401316,21.0176236155847,22.237401601313 +"Q9V3W7",17.6736847158897,17.1158838082722,19.124998303126,17.4501450176844,17.0598997892578,19.253580251333,17.5921994328826,17.1443997207211,19.1273419751111,17.1218416526577,17.0303961117674,19.1602116377321,17.6913691659641,17.4227600863307,19.0920246657928,17.097878720645,17.1881275291695,19.0713702091844 +"Q9V3W9",17.340982111589,18.5998943414513,19.7207693388107,17.3632033274386,18.7214313145203,19.5884015849691,17.3880927637053,18.551574413463,19.5293893625429,17.3275322465446,18.7326747055772,19.6300174478173,17.1946631346088,18.4790235354208,19.4668592065518,17.3412251553205,18.592626937382,19.51910033557 +"Q9V3Y0",14.9695272401491,15.9815741435444,18.3774392634645,15.052576678207,16.1423951192716,18.207887344017,14.9211862973148,15.7231281020439,18.1322865774726,15.1882323457423,15.930544042472,18.1282518510594,14.5742403793644,15.7005777204763,17.9901503966673,14.9492449332514,15.979834359771,17.9900383000646 +"Q9V3Y2",16.8596150750529,17.6408619937177,19.439951479504,16.7342022945217,17.6062080302311,19.2905510782581,16.8153862402034,17.5454503373055,19.3397089167143,16.8294181025043,17.5108416581348,19.1466357581362,16.6480106876411,17.5635621977559,19.2489524391897,16.9380101570636,17.3550274394588,19.2812270279036 +"Q9V3Y4",12.0392049750058,13.0537961672622,17.7165790410954,11.807028278757,12.7900836380861,17.1165213229343,11.8377781905386,12.9986430629376,17.5466111689419,11.5840027414513,12.8913704432462,17.1586162764371,11.6620400168049,13.4722604055133,17.9562547150453,11.3461632904251,12.8905870593576,17.2964845514144 +"Q9V3Y7",18.6091893064762,20.2666358786045,21.0734482743604,17.7606383356299,20.2259836834821,20.7974800629613,17.7300542197642,20.1956961940853,20.8214379967222,17.557441072243,19.961708798373,20.60657172125,17.4037745349533,19.9954575655891,20.4511701340778,17.6495484469303,19.9003467608985,20.4545357161735 +"Q9V3Z2",15.3896191140477,15.9688950749156,17.0865049694041,15.3242790968678,15.8541327443965,16.8676461257107,15.5277823088578,16.0952973798309,17.1689930171525,15.5764878824058,15.8931863660271,17.0384147707214,15.2900993555479,16.1602048200767,17.2864690795835,15.7201587247486,16.0138955867442,17.0591487527329 +"Q9V3Z4",17.1836655643021,18.9359312338683,19.9777041714413,17.201619621672,19.0356053937295,19.9785780781962,17.092772903322,19.0345443394696,19.9174943479517,17.3620996183234,19.0461228368437,19.9289241867089,17.0968654564808,19.0988274477799,20.2478935042367,17.2625622504604,19.3542757003059,20.3580753572664 +"Q9V3Z9",21.0942666938667,21.58948769818,21.9920400104373,21.3386962699643,21.7844210470001,22.2502620038991,21.2753568915508,21.6327141900283,22.0757350981868,21.4040293842086,21.9710866983215,22.5304471188224,21.0289823852401,21.3881747075225,21.7311560805541,21.3422356790019,21.8687650421863,22.1982747146532 +"Q9V400",14.2452906503928,14.4973921213132,15.4133587024418,13.4214251270068,14.0381498132318,14.8446706711588,13.9075179202837,14.2102863114683,14.8406533198154,13.4385225560095,14.1909384844375,14.4831650548071,14.0493264322176,14.4150211288049,15.2303549848655,13.6235469111443,13.7368807034634,14.6633662197199 +"Q9V405",19.2706356957588,19.7373511568338,21.3504397713212,19.4158675662338,19.8435951124731,21.4835066512483,19.2880322174565,19.8723659288325,21.3246607985112,19.401844022608,19.989529325884,21.5875919336502,19.2249814627898,19.8735990271935,21.2617423363398,19.6253491086913,20.0086819489609,21.4211655931011 +"Q9V406",15.5615486460163,17.17082354582,18.8391778527187,15.4116230755442,17.068898333859,18.8890807631927,15.5059676011111,16.92595521986,18.5820078135284,15.1472790521498,16.8752137112132,18.5735828748563,15.2206811591369,16.8716553898698,18.447126010943,15.54487314109,17.0918898990446,18.5331745646825 +"Q9V419",15.8427442205963,16.7927781197485,16.8744748877694,15.2538542439545,16.5166282152851,16.4718387411189,15.9298744284079,16.947074024009,16.9073223434489,15.6934614861956,16.8117845437175,16.5199506092451,16.2087406563553,17.2559715682547,17.187077392075,15.9496307833993,16.9829668091666,16.6219089378375 +"Q9V420",15.8279538226929,17.4403266453971,18.8107857671163,15.8884990762266,17.7762664101978,18.8510391112283,16.0158369700691,17.8454543414018,18.924990488374,16.1503757057831,17.7993498898392,18.8999581508496,16.0144784256083,17.8782123863187,18.9629575310317,15.8513772680998,17.6832852895281,18.7951849888513 +"Q9V428",17.6680627609301,19.0760267035122,19.7231309418399,17.5481533690864,18.9653326552399,19.6403816876128,17.6407944956735,19.0223249366264,19.5879599274413,17.5406869177358,18.9638211806827,19.5787343864976,17.5096399949572,19.1771324077279,19.5364611829698,17.7406605683658,18.7943165269652,19.5045854887946 +"Q9V429",21.7602677734497,21.5439429211717,23.8378771427778,21.7485480173217,21.6409219766294,23.7656506721236,21.6867520550674,21.469806842358,23.8145152883451,21.6720478375489,21.5017943836679,23.7999664678229,21.6639116421939,21.6074255825097,23.6461742371513,21.6520854235164,21.5434109422497,23.6439730336781 +"Q9V431",17.3052066511892,18.764080491718,19.7609536130408,17.2891416256851,18.7496952263109,19.6988124582221,17.3629263771421,18.7397707691336,19.7129226149178,17.406646615749,18.6516767478289,19.6558353878394,17.3237606372284,18.6271976263454,19.5668249482007,17.0251092660186,18.5181157390428,19.375946366954 +"Q9V434",14.6202937109113,15.3659137572137,15.6767992937249,14.4467382667773,14.7146301836082,15.289497893919,14.4366956171844,15.1628214028831,15.7069841807405,14.6218571330086,14.8746025623051,15.5241381511822,14.2206449325044,15.3508759054022,15.7256623982191,14.2448303193156,14.9097795752494,15.5058943085989 +"Q9V436",17.327211760042,19.9585618057298,19.8726496354316,17.5104590574757,19.9809157410997,19.9260020082513,17.398391740657,20.0656580632013,19.8707839172601,17.482462879611,20.021491144438,20.0400415065197,17.3196079180672,19.9346816400646,19.879551642912,17.3871403169175,19.9828812566916,19.9017331985292 +"Q9V438",17.214298818765,19.6395119578118,20.2696851051719,17.4132395847698,19.4823654244909,20.1231665885107,17.3878093441157,19.5774988402615,20.1919260110469,17.2953283244137,19.5227905896379,20.1491259339875,17.3499665503223,19.4824963036592,20.118196412462,17.0907689193348,19.2664017415499,19.904136599901 +"Q9V455",17.5165043249807,19.4978840495016,21.0421374609174,17.6163359804273,19.5225745357778,20.8953227587724,18.1055462251172,19.5029370020102,20.9441900726222,17.6565717847733,19.4059793652605,20.8187163956653,18.0103529417862,19.42200443636,20.8104682113089,17.2716550931036,19.3692381603789,20.821371047304 +"Q9V470",18.7206089169007,19.8105830499793,21.0951801086025,18.7733886355811,19.9802565078714,21.1500002228199,18.7442425425923,19.9007151625302,20.8520416670635,18.8571896688696,20.0442176834095,21.0927444437118,18.7592053280757,19.936818005241,20.968603276249,19.0105147167395,20.0119412761455,21.1465482477665 +"Q9V4C8",16.3016534916133,17.0604478626657,18.139830032755,16.5174744947533,17.3184815639113,18.1131440297821,16.2849949264004,17.1102689998609,18.0291235067279,16.5129608908069,17.3239842531083,18.0958102760748,16.3790657500054,17.1653740798395,17.8659336309089,16.5352577462425,17.4558744600753,18.0884754862303 +"Q9V4E0",18.0275242664258,18.7683476614465,19.2982994290925,16.9000334533547,18.4904785695531,18.796785136147,17.1899291007754,19.0762490557821,19.4075374522789,16.8731292266652,18.64353961673,19.0477632598065,17.5395530957451,19.4058052780017,19.8063773090832,16.9918652584174,18.8484405057828,19.0323074290543 +"Q9V4E7",13.2694067832316,14.899343178545,17.7154972178721,12.7984192613741,14.3611255566728,17.3371788118579,12.5071556792148,14.4594567588722,17.3728937421157,13.0149232090756,14.9031091565813,17.5561355698137,14.351528082651,16.2234923562763,18.5335178944355,14.4614485950952,16.1092166143037,18.5193437067139 +"Q9V4N3",19.2426693114286,19.577124362745,20.0614604170822,19.4315569401208,19.8993661953501,20.000809271604,19.1817755148301,19.9240215691936,20.1797940976671,19.3011434433093,19.7920470271373,19.6951654609365,19.1422711518222,20.0892772289298,20.1944490260065,19.2942058159552,20.0622352496666,20.1874542417601 +"Q9V4Q8",15.3893029928885,17.2458385599263,17.8598419266145,15.6232002630331,17.4172065594756,17.9169913119684,15.5549895169344,17.3892273404281,17.7952853966637,15.4618157459365,17.4227355454368,17.8595185244691,15.5565366836113,17.430017302332,17.7764763155423,15.2232056775158,17.4217558016264,17.7875676632774 +"Q9V4S8",15.9827988527986,17.747610861125,18.2400636610915,15.2929733606623,17.8052006295283,18.3132983262702,15.5942498277258,17.6817609689457,17.9494272224994,15.7280177651039,17.6720241716891,18.1610921535572,15.4618007033466,17.5797259325231,17.837256841588,15.1029648065432,17.6374856772825,17.9558393351299 +"Q9V4W1",11.9261855162779,13.4604622367772,15.679619171815,12.1101157141209,13.026105834226,15.632885749071,11.8658969940672,13.5201910462544,15.6443544450027,12.4231905228985,13.3345334407821,15.7169442506239,11.3917054862656,13.667021857172,15.3674832122161,11.2611392846556,13.4062999241477,15.4171857385875 +"Q9V521",16.6632200028824,18.8173358153278,19.814707843482,16.0171724647353,18.2672994916634,18.947013403024,16.2556701338126,18.2377942290282,19.0593831459622,15.705432459469,17.6873157437105,18.4277502691825,15.9616906596953,17.8562429181686,18.7666986666815,15.4976420045642,17.5803078840212,18.5263911950139 +"Q9V535",17.8667131101451,18.5737032226155,18.9729582539536,18.1552930179202,18.7040019894443,19.1485946684022,17.7640040645939,18.5648440299234,19.0863069077737,17.9710311541433,18.777375780312,19.4030408991861,17.8326562706392,18.6953280560055,18.9537899805135,18.1217517733354,18.9771068976487,19.2596340366562 +"Q9V564",12.9585935880679,14.169245939781,15.2071788334226,12.6511505488766,14.2918440046471,15.0206977685029,13.0397712484398,14.332880338808,14.8286563249224,12.9650587006411,14.5680515805419,15.0692077363206,13.0057832825722,14.1366525833298,14.8837832713271,12.9499345792396,14.2260592887898,14.8020236039897 +"Q9V595",17.4941502343862,18.4008914692569,19.6774838238863,17.623880027065,18.4146635265293,19.6723850179538,17.5063632782116,18.4009156178344,19.503384835094,17.7928206130881,18.4131863548277,19.6113334495531,17.6726979982424,18.2934654036824,19.5459368396393,17.4354647445117,18.2560604149263,19.5888489304387 +"Q9V597",20.1100858238225,19.592073269861,21.1798942837325,19.6489778791066,19.1931595990653,20.9160755306364,19.7731290798387,19.6676400861358,21.2015005491591,20.1132738425474,19.7392275227895,21.3217020073865,19.2318302419154,19.5487218190834,21.3559179842467,19.2658622098656,19.4300361325333,20.9349712773828 +"Q9V5C6",19.6164072196566,20.2538484589459,21.7607679696226,19.6636008149051,20.3995082464722,21.8761329596182,19.7170585522977,20.4714398254375,21.6195510902759,19.6924729159982,20.4937422015874,21.9004915973057,19.7448827610596,20.4821423046059,21.6609287007853,19.6509085757971,20.5190982630627,21.8025757977289 +"Q9V6B9",14.184173927596,16.235281545046,17.4999426856347,13.7953037121043,16.125589696287,17.3251514494415,14.3614365631603,16.262106663941,17.3694059922916,13.8705380597483,15.851347910906,17.1423624636227,14.4693822923565,16.3409049322129,17.1867619009717,14.0532646258508,16.0091428075811,17.0684719774978 +"Q9V6U9",20.7368363931038,21.8791738018822,23.1778372913958,20.6788623421851,22.0312246806738,23.3137089458518,20.7224377523335,21.7964983531838,22.9637504297041,20.611281585207,21.8064595999154,23.1168094959929,20.6616109421484,21.8419862187412,23.0649663486653,20.7020460417195,21.8653707927561,23.0943889648987 +"Q9V6Y3",14.5903738955979,14.5430574214954,15.8297928908986,14.6203828096506,14.7837347113398,16.0565500936171,14.6668735354858,15.0488439733607,16.2309828369653,14.6900514833538,15.2851761803996,16.488319421,14.8938852692642,14.8521943457775,15.9639708099543,14.6527843745655,15.2116135104638,16.1879061346232 +"Q9V773",14.8598090589049,15.3501224643403,16.9458492386745,14.790000879925,15.1838706120213,16.6538683362826,14.7028030958576,15.2433915158555,16.6421768283443,14.5000318281118,15.2977051171815,16.7849144864551,14.738881390532,15.228373528378,16.992355336999,14.4628580653112,15.0786049250421,16.4359281354274 +"Q9V784",14.5733644621746,13.975893758936,15.7952362307582,13.9537380994068,13.220432081378,15.4372350056585,13.9741615748661,13.5749003190846,15.1061101406995,14.0258272906135,13.7308331722215,14.9869734269508,14.1887577159328,13.3923067676524,15.1609437932993,13.5739827323166,12.7221771950046,14.4394510857931 +"Q9V7D2",20.292260511389,21.7257397200646,22.396887562996,20.1258877209639,21.7909043606592,22.4727580339849,20.2762566214332,21.6356439035384,22.1231857642369,20.0958140515193,21.5504990763643,22.2688819877116,20.3301088420389,21.5610587873239,22.2530956000164,20.0164628145915,21.3476565528045,22.0612516466273 +"Q9V8F5",15.2980645679004,15.9124347181142,17.8050628492704,15.1558894566232,15.7729319891998,17.495264417034,15.028545106105,15.7897335245851,17.4170744947246,14.6707390356461,15.305044914051,17.0887310632316,14.6793422981395,15.8047736468027,17.2678913659082,14.9300476020105,15.556093835191,17.166130490279 +"Q9V8M5",19.6437995013868,19.3185961015174,19.8936890358373,20.1444878145702,19.8112533569627,20.2933660822133,19.5149457036166,19.4341935133114,19.7848185973398,20.1579092032943,19.9187320079684,20.2953401725644,19.483968002965,19.6605743382341,20.0387122479032,19.8862048500825,19.9157556490996,20.1722027710028 +"Q9V8Y2",19.6044068608883,20.0792973503698,20.1840248629476,19.3335018857064,20.0263259536358,19.749982822145,19.5952078915339,20.2368999562542,20.1894259928105,19.5752477278355,20.1098126558426,20.108330878442,19.2492783982104,20.2055022774894,19.8699171652849,19.7998241277774,20.4426008840245,20.0945076886556 +"Q9V931",15.7401770578553,18.3423064976366,19.6000884063818,15.8285291406965,18.4187502507238,19.4041668363036,15.375299294927,18.308752125594,19.3301813217176,15.4369875228883,18.2283018726102,19.055372914369,13.8665930651778,18.5552968294977,19.3233089808876,15.0656219143997,18.544880988586,18.9245506449933 +"Q9V998",14.3111965251308,15.9182061915931,17.1866451695642,14.0125719690065,15.8521533501348,17.3420731718585,14.6011057811407,15.7804816637586,17.2898447055581,14.2041678341166,15.949626776965,17.612790321602,14.6833835587701,15.6764000407953,17.3561153602078,13.8041218101861,16.157663399957,17.3739257034828 +"Q9V9A7",13.6942000882315,16.795817792957,17.350332699556,13.9880103529262,15.523640028658,17.1414629507275,14.6264604806122,16.1254456911864,17.709710404603,14.9092762769729,16.3135011749101,18.1322927005182,14.5397054074813,16.1154629250086,17.400228556778,14.8754580161821,16.603041378356,17.5538000093727 +"Q9V9M7",16.5559703445514,18.478974652898,19.8212984678897,16.5027740228721,18.3946335875389,19.6608164162143,16.7904430711202,18.961962325451,20.1611411460404,16.820209403459,18.6806810531118,19.6631154907402,16.6567914179582,18.9413115060361,20.0748657283067,16.7073436133598,18.6827739065593,19.769688198674 +"Q9V9Q4",18.0806883184159,19.7860392811004,19.951857712812,18.2189823268219,19.8696050143373,19.8943373289638,17.957407169119,19.5662014397131,19.5765532985486,18.0546521365275,19.651701178784,19.5525563643516,17.9876378915338,19.3837442195646,19.5362366929592,18.0666827627893,19.5805046362594,19.5623910991755 +"Q9V9S0",16.9908558506843,17.2522934771449,17.3181095580042,16.7455277281859,17.3176902745434,17.317385449081,16.8022241685315,17.1418533521321,17.0368138164189,16.7209505914407,17.4672088590605,17.4817594901572,16.5343653368673,17.1385601444568,17.0890909358563,16.8502248176119,17.201531444383,17.435785152221 +"Q9V9S8",19.5796554608077,19.5487233754023,20.4064273310896,19.5988962386572,19.5780746690527,20.4800828056685,19.649073603574,19.8933960539487,20.4184353917679,19.6400800670345,19.7039664626803,20.7313353325611,19.5356937960376,19.819989853406,20.5737253995431,19.5573251562542,19.6196517919553,20.4218108776349 +"Q9V9T9",10.6907806981322,14.2574826110193,14.6212227657876,11.3595293392859,14.3464726091264,14.3033892631231,11.3440700375923,14.126779005565,14.7198987109118,11.5581267680672,14.5349214827747,14.6925367112777,11.4643814063481,14.2904181534169,14.4832003954004,11.4803783757694,14.7511895480288,14.7889729361615 +"Q9V9U4",14.0857288098154,16.8888132226487,17.076018003358,13.9167288216735,16.7944379324139,16.9175325165779,14.1842349082255,16.9406886875987,16.9551818642943,13.9992553475488,16.7433573740808,16.7805032875437,14.0536211230074,16.927153295665,16.8449268369102,13.8717093984497,16.8947754063124,16.7241664843553 +"Q9V9U7",16.2480513839652,17.8507846751156,19.0749133919905,16.1456731894954,17.9686232826444,19.3290516287329,16.3938573538917,17.9277808491056,19.1886645927558,16.0894472647487,17.974873785309,19.2671425533309,16.7343099355904,17.8620303031271,19.197881905798,16.4859351006104,17.9792361810373,19.214697236588 +"Q9V9V4",17.3268167622229,18.8328575408313,20.1148806571945,17.1015970087452,18.8335587857706,20.0677151530716,17.310641311323,19.0271403801675,20.121570064977,17.0263515016267,18.6810915066361,19.8692107018358,17.1161164836553,18.897653572613,19.9540330791376,16.9059882350332,18.4681013894965,19.6801689167942 +"Q9V9X4",17.7290375913045,18.9883708559342,20.3078441956211,17.400383524909,18.683819301255,19.7650707760022,17.6095040571707,19.0081284047884,20.0992686149544,17.1787715693298,18.4745054998609,19.5983018054542,17.5446485852646,18.846336490285,19.9276407182574,17.4455958169639,18.5360682868983,19.6641552786268 +"Q9VA09",15.0936396421709,15.3486249777658,17.4610495567237,15.4025628128839,15.3150782634847,17.4782142758385,15.7854783593474,15.7282422901301,17.9917630891986,15.8391979222212,15.6960726178753,18.0539946884199,15.9448119713412,16.0987126577165,18.3260684967805,15.8874144185988,16.0149493307244,18.134559414361 +"Q9VA18",21.272459077695,21.2553743710247,22.2213850600901,21.4394673524762,21.2429976050942,22.2676534486837,21.3653840257371,20.911961146558,22.2269392233854,21.2804550533135,21.1889405332406,22.5434018631874,21.3820968114829,20.8937407478027,22.2217903746466,21.1847534300382,21.1799361998847,22.2105277443427 +"Q9VA32",16.332265351969,16.2461015655852,18.5722626089799,16.7048276604166,16.0444668105973,18.7036619866755,16.6977053235808,16.2954923234447,18.771873453736,16.719409660107,16.3253941442963,19.1596970569947,16.749701632561,16.0202393108401,18.7851753874463,16.6368408009509,16.4793198379646,18.9473514644261 +"Q9VA34",13.8436239228436,14.5802229253612,14.805172017367,14.1795253653787,14.7242319705825,15.1612922261907,13.9888785335529,14.5816985466282,15.0652150178116,13.7551036379896,14.5944206153117,14.9840074011002,13.6117116209102,14.329863192934,14.8461633872645,13.5547763015031,14.2625220055436,14.8859701266853 +"Q9VA37",20.8524810914459,21.659508959449,23.4418892775481,20.8120396211345,21.6639290386152,23.4272960790471,20.3955240200102,21.4304059718161,23.1851397001027,20.5115087374715,21.4061076193392,23.1175023378086,20.3132848723983,21.6211833844565,23.1143926402873,20.4561923743214,21.4298836133639,23.0672457201954 +"Q9VA41",16.5336589679007,16.7004348097809,18.2065627289846,16.9934402237205,17.2381783867721,18.9102832898459,16.763280510507,16.823032068694,18.4413646390507,16.7382123849029,17.0910272217401,18.7493568576444,16.4693716102576,16.7608955825319,18.4764227525346,17.1774712762515,17.3661822356857,18.8446098889304 +"Q9VA42",19.6614619506114,20.2204437861831,22.0043374133846,19.8005288291573,20.3995181066953,22.1738892428725,19.1945907855763,19.8885540929354,21.470604828771,19.2115356495102,19.8379129529281,21.4931348708948,18.5698013744947,19.6175160738756,20.9968142777953,19.2519707491365,19.8908605921524,21.4003606133047 +"Q9VA76",14.2957210627104,15.3548432289225,15.5851020815639,14.2239023855882,15.5858040543234,16.0635879813133,14.4973350221428,15.2998124281718,15.8290604924127,14.3933783546406,15.4953254826181,15.9617445164576,14.3926406983694,15.4993538734561,15.8247095763565,14.3684557021446,15.4710093718304,15.6723757705243 +"Q9VA97",18.0227433296128,18.6223268304239,19.28953746375,17.8094221015714,18.6219455795594,19.344215432821,17.9424419477271,18.6422809483125,18.9548070063905,17.9502914893098,18.6195586390616,18.9539405169623,17.9878989083349,18.5076395386435,19.0585811285929,17.9773885063164,18.7033296676867,18.7814172108398 +"Q9VAA6",15.1831889712719,15.9915872947813,17.7980819965331,15.4059706912131,16.0571253349752,17.9505196035885,14.8311919503801,15.6714525457169,17.5542213433071,14.9411644413568,15.6228423685784,17.6649199137917,14.4794064004086,15.6712733161826,17.4547149350171,15.4692902585442,15.8919894102737,17.699514503068 +"Q9VAA9",16.0736615720155,16.8580647468098,18.7080615665064,16.2888244066653,16.8319112992976,18.488920708288,16.145646857021,16.8816658150828,18.3902792612749,16.2725628484866,16.75848137545,18.295821554984,15.9539181677405,16.7598885206237,18.2094047637438,16.0317391709489,16.6729814926205,18.2149439289969 +"Q9VAC1",22.7128975045282,22.8168523458366,24.1143785729165,22.5627381249146,22.7413313086287,24.0208600140603,23.0595758726182,23.2432516791186,24.4384537501585,22.8318210637507,23.0571810436829,24.3692671740952,22.9870374558562,23.2552319647074,24.4398045634048,22.7414969699849,22.9885555860761,24.2671352958599 +"Q9VAC4",18.0719681229744,19.7077592786857,20.0386238026076,18.2119645562904,19.8699181641517,20.0350954515004,18.2374173996891,19.7978254389826,20.0975094485125,18.2661072951499,19.8941750362434,20.1377282409644,18.2343653306405,19.8819417154228,20.1779067028507,18.3374727950706,19.9119524162473,20.0752721943936 +"Q9VAD4",12.3632210602155,13.7875390696358,13.5888805078739,12.2436577305011,13.7557470872942,13.2815641888745,12.3849382084717,14.003495740867,13.2432057654859,13.3838514822382,13.5267628231729,13.6780283476005,12.8776368952617,14.2738397819142,13.7392881824711,12.6284199828553,13.893287199207,13.4020537686818 +"Q9VAF5",15.1978131816498,15.7492115626413,16.4517147174006,15.5969040975068,16.0513590637704,16.5843099197577,15.2945813367208,15.9408554496202,16.4492636403662,15.6259381250592,16.3015258674532,16.8070923273007,15.2927844404258,15.8634178488027,16.3718825621724,15.49709337492,15.9632195257274,16.5695746209219 +"Q9VAG3",15.6676280374071,17.3209944916944,16.8853162187171,15.6813949203235,17.4854776398301,17.0233918003238,15.8668962852773,17.6763766161806,17.1595549027884,15.4491979144919,17.5186380046943,17.314011919994,15.9326486878427,17.8913509341645,17.5309582382654,15.6260021686593,17.5867364499036,17.1142740808258 +"Q9VAG9",15.1033482375546,18.3139371302693,19.5643792298171,14.8423226604572,18.1558692422358,19.4838504039914,14.873895989913,18.1694227044639,19.266658910367,14.7352933336462,18.0496626241597,19.3380326431439,14.7485532735779,18.1807091669101,19.3259711561828,14.5105781310536,17.9532183609291,19.194920157556 +"Q9VAI9",21.3334226483414,21.7900173191203,22.5350794853568,21.6475202694042,22.2340852794655,22.8793893432027,21.1276376083443,21.7976449111602,22.4742722326261,21.6194206552336,22.1793618370974,22.7403930257442,20.7892746691627,21.7513289963878,22.3043515351418,21.5134282134962,22.1476967447828,22.6467830557475 +"Q9VAJ9",16.3184832780629,17.1010273618297,18.3298941271375,16.1415356705485,17.2013796655668,18.2598794987025,16.6786027934287,17.5687640451992,18.5740072818223,16.5105651595456,17.4820615412078,18.7328489343151,17.2625042898213,18.238962329615,19.3377454855265,16.845606451723,17.9866127448096,18.9006001250311 +"Q9VAM6",21.6566168111394,21.8042310114422,23.4335672878655,21.6778646885646,21.8588111321302,23.24190344715,21.3402201048828,21.6020181218872,23.1097308438471,21.3016691706831,21.621404728087,23.0199476421423,21.3563157889158,21.7465885352114,23.0339959767314,21.2661533855236,21.5276784245611,22.9398510762812 +"Q9VAN0",19.0651781653436,20.530787425743,21.3288364358207,18.9944615073527,20.6508610102965,21.5112468367284,19.2480422555891,20.7792638939744,21.5050626879309,19.0838579078584,20.7453657308533,21.6012501604352,19.2103788355024,20.8500907370362,21.4918178618368,19.2259953367711,20.7651178962962,21.5566205078116 +"Q9VAN1",12.1777785770897,15.5172110254673,16.4794883494709,12.6523022082008,15.8076792191598,16.7611434922308,12.1040815262287,15.5327647869702,16.5442073833949,12.5997033653719,15.6523582143991,16.6469064728651,11.7322319563462,15.4062270231753,16.0346971596326,12.3341587328399,15.5113468040797,16.4945611102126 +"Q9VAN7",23.7588228658761,23.2575099671868,24.8277198503032,23.6495255583482,23.0506668077062,24.5553953478429,23.4922012322582,22.9973263281441,24.5784811698486,23.2131064697356,22.8785728498862,24.4406390451762,23.4620392761349,23.0346324368327,24.5498701897963,23.2676846874889,22.9998939539394,24.4857116345555 +"Q9VAP3",15.2907539272041,16.3636731623919,18.084637590773,14.7492016155682,15.9785007002886,18.0635281376722,14.7983531172606,16.2382350886068,18.2011943974606,15.4622992922596,16.4894353278749,18.0368001224539,14.689701463653,16.4459605931799,18.3231398969073,14.8707767953625,16.3825109326107,18.1812030058749 +"Q9VAQ4",16.2437889971522,16.0103711762345,16.5285702993203,15.9543794643056,15.8921270796038,16.2327295599312,15.9414215809477,15.8338387749338,16.1981496825841,15.3258357703544,15.6826092635713,15.7694502921068,16.0086700641588,15.8996595217057,16.4522240598379,15.6350154890679,16.0649466060424,16.1429400725194 +"Q9VAS1",12.1799123948653,13.2828776890516,13.7617778072844,11.7413205071171,13.137880249476,13.7213661041383,12.3901344330527,13.4485175090302,13.4968965201942,12.0670803339679,13.1149576538813,13.9551197240843,11.9579051221863,13.5553180907092,13.9683236333389,12.3303359635809,13.1514729304165,13.547513642155 +"Q9VAU6",13.3226022626296,13.623762436563,13.3666003212681,13.2769430288994,13.5166188322722,13.6901348581524,13.1804464168491,13.385551722199,13.2566239814988,13.0317804869881,13.3437218577427,13.2620250877744,13.3418257685644,13.6317345315425,13.2218942400738,12.9895873766736,13.5725975099286,14.2121050475194 +"Q9VAV2",16.5584138867326,18.09246864367,18.6408180333195,16.7136568636482,18.0722636861968,18.6918549140857,16.735985970223,18.0736728198268,18.575094332857,16.6122688586344,18.022535177312,18.5350551351485,16.6397762197928,17.9863203803137,18.4482035876716,16.8647373534241,18.0403557535974,18.5106207701006 +"Q9VAY0",12.9236726519618,14.576025115008,14.9843060721688,13.0271440454417,14.2522804918878,14.9389082378116,12.8089735360991,14.4204594403215,14.9534320081335,12.3554656180441,14.4475723978553,14.8511900111004,12.4418391072825,14.0944893291563,14.981811735323,12.5953562963312,14.7133338342352,15.10176178537 +"Q9VAY2",20.2810382228087,20.946500095693,22.2954339602228,20.2989623001664,20.9432495719242,22.2020486637417,20.3161549133157,20.986298487192,22.2095654850014,20.2252210850146,20.8960415667686,22.2169597550728,20.2131669371618,20.8674586766565,22.1679076732097,20.2278271385966,20.7881844318602,22.1616011312634 +"Q9VAY3",13.8281034858088,14.8842210589208,12.794004718608,13.7789094080628,14.6426481989774,13.0017204124849,13.9010444299967,14.8152084537732,12.5850869361481,13.663568855178,14.7846677828303,13.0764756349806,14.1589944629816,15.0649763623455,13.4172056700894,13.8178121958139,14.9672059666595,13.4138868409094 +"Q9VAY6",14.6240089223548,15.3413830929339,15.6882962641565,14.6351844695666,15.3825948990974,15.6846815172456,14.5464902681315,15.3070337724562,15.5452153309015,14.6731356740436,15.4661770273007,15.6081448308472,14.5391255393077,15.3987463958556,15.5254255629888,14.8231367280593,15.3076312100599,15.5002590976399 +"Q9VAY9",13.8624825450257,13.3830037430158,14.9440518352123,14.2269601124015,13.9037572851876,15.0816966568817,14.4580236488348,14.0988844637671,15.5402201395222,14.8014393645994,14.177007100055,15.5647373207436,14.5800538215567,14.1645116300032,15.321687324346,14.989355357316,14.128250577967,15.542101615816 +"Q9VB05",19.2889578570899,20.0460859804173,21.1926865581968,19.1909486158289,20.0493643246855,21.0679809829385,19.3719972989737,20.1568148701897,21.2182213650941,19.1912191844895,20.0670495344299,21.179651766877,19.4346473799434,20.2523849340977,21.2209581981605,19.310177689166,20.1291429351087,21.1968086902626 +"Q9VB10",20.2310937030074,20.5834968673501,21.9101900637986,20.2609279648408,20.7090850667409,22.0253458539761,20.2604686179033,20.6183721430856,21.9152829336527,20.3081424383875,20.7373782881943,22.1122890930385,20.3665104755779,20.7441911705716,22.0180648045919,20.2772902136626,20.8653325464758,21.918433517811 +"Q9VB17",14.4464345786812,15.5628981748782,16.7699442289624,14.4817759324608,15.6629419590906,16.5247897483108,14.5101105228484,15.6429726897371,16.5117087901076,14.4793779498838,15.6025773479229,16.487175464705,14.7363874119559,15.8811596518379,16.5430101985046,14.596371621992,15.718352588073,16.7610043964866 +"Q9VB22",17.431911542741,16.6526089551373,18.1143255408905,17.6450777204091,16.8007083389874,17.9797643676285,17.2456895299818,16.5173655541988,17.6925396639855,17.0879398093656,16.3397667836945,17.6709182980671,17.2140828257012,16.5285528917139,17.7471339307265,17.1452877351789,16.3736941959201,17.4205616607112 +"Q9VB46",14.3367025859038,14.922661253226,15.9864921096044,14.3813365807518,15.0144392655373,15.6780630037996,14.5120926582086,15.3488947881074,16.093280471038,14.7523687872336,15.0749423241656,15.830346818799,14.4666376890501,15.6142422407851,16.2314927975501,14.96201367573,15.2953469344886,16.1280200407727 +"Q9VB64",17.9978222067249,19.0594856432301,19.5372672959372,17.7089473193625,19.1104880953122,19.5700161171119,17.6331429820717,19.1667814638255,19.4328113045543,17.5961199835025,19.0250542009652,19.4274173310067,17.6015354988281,19.2354343867578,19.4705382255375,17.6265710153131,19.2015371296823,19.5187365098251 +"Q9VB68",15.1495025486295,15.1537949766736,16.3203769124661,14.9477879737646,14.9184972006515,16.3482087604967,15.1354382482075,15.0977886093398,16.3342271327955,15.1298884071839,14.961538247737,16.3651637273699,14.6243896321133,14.8727426225114,16.4806760365692,14.922394790438,15.2320209239739,16.2009445857967 +"Q9VB79",15.4753144675347,17.9411828665181,19.490664036767,15.3270270757884,18.0411913241007,19.5310111240075,15.4207301209195,18.1460827784596,19.3015539107127,15.5848376031341,18.1454443245219,19.5055941761423,15.2624444237482,18.1616923272626,19.3759755455019,15.3421109479822,18.1535075585679,19.3169426196621 +"Q9VB81",19.7137873439814,20.137076250319,22.377730349844,20.223892403428,20.4880694552477,22.5072421617659,19.9026955755723,20.3971246481032,22.597856818459,19.9656976222485,20.5110486762393,22.7273229308933,19.6823360208142,20.4427300835577,22.3587578628846,20.1987937274559,20.7697035003362,22.6594518275679 +"Q9VBC1",13.3034131705412,11.3942505317157,14.7282925740925,13.6335243525064,11.7099489512863,14.8160638755397,13.5697721147318,11.1932474735792,14.5917525935265,14.0269767698042,12.0701188793802,15.2957868768272,13.3815117139133,10.9148795253352,14.6128973663751,13.3649788854366,11.1956788237647,14.8349647597099 +"Q9VBC7",14.7242548294539,14.8028856174507,17.7520810834619,14.8626322127824,14.9676183448883,18.1139798131027,15.0440744590615,14.9372254081206,18.2560467139475,15.2728200360276,15.1567988377497,18.4882931741946,15.3008021470823,15.0170648188637,18.3870810576024,15.6913297287843,15.5701404925773,18.5037977531614 +"Q9VBC9",14.1874486078386,15.5619591398383,17.0134152527139,14.4388476020049,15.5622858185875,17.3706558586264,14.159387989873,14.913888334243,16.9488442937001,14.25728837204,15.4380303426112,17.3373594661372,14.0646092393812,14.8918510548743,16.9743865365025,14.4814373448925,14.8439103598294,17.1702182039513 +"Q9VBI2",21.280136471517,21.9194178639801,23.5889585026277,21.3138550172541,21.9844151744009,23.5024066979558,21.0924856293134,21.7338059974474,23.3272639084475,21.0627533302792,21.7599313487788,23.2883047336209,20.9982782810112,21.8710248854636,23.2464471539594,21.0169042591189,21.7162219480827,23.2589639906448 +"Q9VBI3",17.3054026551725,18.6570019824507,20.1852174280039,17.0470881138663,18.6783103150736,20.1708237621594,17.3557875380482,18.5553942413696,20.0215432357709,17.2672626401375,18.5751421145162,20.0199356985897,17.3054989621289,18.5908206154425,20.0169674255465,16.9810687085163,18.5196943510423,19.725360186817 +"Q9VBL3",13.5950483657098,14.6406750766981,16.1078571692737,12.5021269777174,14.7913391719272,15.849452260742,12.7618175021648,14.9622192893482,15.8033917469854,12.6468438460967,15.2673053317859,15.7836738544152,12.1239760828989,14.8417534364277,15.6766723814302,13.0390251983286,15.0549185640664,15.5345562674669 +"Q9VBP6",22.3478603523886,22.588989976822,24.5827766400656,22.5142432387252,22.7883015148051,24.6632559140879,22.1626725922991,22.4681292992592,24.373348139447,22.2134884379435,22.583608578579,24.5343759153637,22.133286391541,22.6037802320945,24.4650432199606,22.1884410308476,22.6192617230257,24.4809642593075 +"Q9VBP9",13.9319744379137,12.6051011828629,14.7906019565195,13.7178185304868,12.7279406248539,14.4675400064034,14.1071890179418,13.2447356013943,14.581616153931,13.944319220749,12.7696810772891,14.7602743475599,14.18425384622,13.1678649661298,15.207954488942,14.4295812764477,13.1801551036897,15.1790456606086 +"Q9VBS7",18.8151720835096,20.4365362113577,20.3284399375175,18.5092591198224,20.2658951542587,20.1946895915271,18.9630898142687,20.6176181782035,20.3691236521837,18.7423377976648,20.383899738166,20.2620556771981,18.8906993174423,20.531420370444,20.3839771546014,18.6639326035831,20.3379049590838,20.1597289622292 +"Q9VBT1",14.1021606482339,16.4936492201534,18.1313562745752,13.9000683182346,16.592274968153,18.2249066148662,14.291933383368,16.64994000666,18.1872781660352,14.0214820373081,16.576259750867,18.1590057960714,14.1135189459633,16.6703759730414,18.2173933046276,14.3356984517627,16.6522430149438,18.2646554461679 +"Q9VBT2",9.33360923717036,14.1197868618757,14.0849580598674,9.19541557516916,14.1060605457535,14.3570112995432,10.6486471747164,14.416331228643,14.3500516782726,10.915503325829,14.3982744019504,14.0661333131452,11.1960250793916,14.6318058447988,14.6778157863172,10.4398628227855,14.2492751136269,14.2890664388512 +"Q9VBU0",13.0960816684504,14.2788836631356,15.1239881278729,12.9167242149879,14.3743973821757,15.1239258579094,13.111224682704,14.160998519538,15.1411094337245,12.99044866459,13.7623899236944,15.3298100140022,13.6147054513012,14.6298301599446,15.6641332354838,13.0660432757853,14.1969508947984,15.3302121773108 +"Q9VBU9",19.3619666217301,21.2020619336274,21.8401775083223,19.1395037564792,21.2845918958646,21.7125993263255,19.3824470180206,21.4334972525409,21.870449641585,19.2195467532173,21.3363625240923,21.7519469714467,19.3671944101907,21.4976476301821,21.8927601817201,19.5513797178313,21.4678953699178,21.9070395484345 +"Q9VBV5",16.1444759213962,17.3503018625632,18.3021770343138,16.3656538673208,17.3454832294383,18.2269278059267,16.0666894498903,17.1748707483632,18.0437776374442,16.2381635765764,17.2757986628942,18.1422081133419,16.0868109084202,17.2026771781561,17.9386902479559,16.2046851498911,17.1376087574988,17.7825562563206 +"Q9VC05",14.8768066542404,14.7361611835101,15.7245057853161,14.6253457165065,14.3056779317333,15.3984481596469,14.5323067513237,14.5633103923375,15.4443746229001,14.5533760729693,14.8595334193093,15.3384717646406,14.1697565295058,14.6450253705759,15.5692725266646,14.4823478251608,14.5456739099712,15.3181444040329 +"Q9VC06",15.2011864869755,16.1861312382349,16.647158407117,15.0183870502222,16.1821527004299,16.4826896590096,15.8275658318998,16.9595865560161,17.4603459751674,15.5172891835996,16.7885307293453,17.0743182731662,16.0180775578317,17.1504462204013,17.6603564738099,15.8702036233164,16.8461064750619,17.3403844637141 +"Q9VC18",16.5872276347079,18.1204753177349,18.6208307398409,16.5907112202413,18.1850214289456,18.6333789910108,17.1837048667163,18.74713019427,19.2223446214373,17.4137147134828,18.937945045816,19.29682818142,17.4611258428107,18.9369591064636,19.6098258580726,17.4826279412436,18.8637924952769,19.4287194513126 +"Q9VC31",15.4396141650015,18.2119724959977,19.1015405266939,15.6221812607456,18.4347077710944,19.3420953572818,15.6512379332855,18.2802628372748,18.7732681825222,15.678391464564,18.3997323553245,19.1088028520122,15.6739369308908,18.3983606855739,18.9792585487109,15.4747160225367,18.4358278259877,19.0760360055196 +"Q9VC48",16.5966023839593,19.4009091985766,18.9005811643079,16.7704397453203,19.3490552951679,19.0402057577973,16.8669733517829,19.505320319101,19.0706517580637,16.8563604613471,19.3634668800601,19.2442602830588,16.8451710553954,19.5601021546883,19.0244005990916,17.0093274336052,19.372410273968,19.1683649843249 +"Q9VC53",17.0444618308264,17.9064694263292,18.9842831908675,17.029515864956,17.8104586760543,18.9390910618221,16.8985927393738,17.8411432001505,18.9585508451164,16.6025194653413,17.8503881296878,18.8400529122635,16.9518843152859,17.8074750201694,18.8767484722316,16.745495365093,17.8693923848459,18.7102373836714 +"Q9VC58",10.1466246108765,14.7123212079099,14.8493299351736,10.3000158830777,14.31092527223,14.6208271505477,10.8799724431157,14.4926821377993,14.5474516579568,9.90519626356986,14.4257590170521,15.0671946870009,10.204014820791,14.2993441638995,14.6696098782512,10.3104588959619,14.5219166070426,14.5354801656546 +"Q9VC66",16.7616535679563,17.9024293731494,18.5943139903238,16.966126817374,17.8692162477405,18.5950412976501,16.8329497366457,17.722146363276,18.437573616738,16.8084251327604,17.8519277089605,18.6773759258035,16.743583638738,17.7104483679942,18.353917267964,16.8701472597661,17.8302263998226,18.3781114686907 +"Q9VC67",13.9968030219614,16.4825439294509,15.7495429577744,13.6422021307977,15.9032548725988,15.3893769710753,14.1862971163824,16.3781445430166,15.5058153185928,13.8679231452207,16.1473447618247,15.109926526478,13.9969953007866,16.1540367145352,15.6542491058195,13.4221396678117,15.9314023723202,15.0473488276986 +"Q9VCA5",13.5696846251044,14.2334703317508,14.9771380936299,13.0173163931891,13.7013628153988,15.06665642786,13.6789511125118,14.1474439599409,15.2367906670651,13.4342320095865,13.9556865970721,15.4180418896422,13.8280850089259,14.4904337244429,15.3195461366449,13.2290202777936,13.6737407750699,15.1408291084978 +"Q9VCB9",14.6437123939472,17.0734048705896,19.6100390886777,14.5509461131166,16.9706934524779,19.4896865529731,14.6581828351897,16.8387072534036,19.5311169788567,14.3079410640452,17.0600116022608,19.3208949034976,14.4743105937399,16.9054348025625,19.2726840111225,14.5678434833635,16.9909126389345,19.2978523242905 +"Q9VCC0",16.4601342996922,17.2412863236965,18.865446622758,16.6981583216107,17.4280548898208,18.8961022581978,16.1681948580109,17.2024132390935,18.6571096975484,16.4567171840591,17.2279577073887,18.8136766792704,15.9343269521197,17.2316996195291,18.5190483551524,16.4489711461934,17.2250902991782,18.8233656055003 +"Q9VCD9",16.4352728453892,19.1734878928347,19.9657248111995,17.1393370614954,19.2596190277534,19.8996426898353,16.2247335652553,18.9854261005992,19.615372105842,16.8086963270766,19.0437400986173,19.8250143821518,16.3674369555246,19.0714789859705,19.6157835590713,17.3262564630534,19.2150120915169,19.7858151633173 +"Q9VCE0",13.9650766445823,17.7484582843952,16.6715624832524,13.7762280415491,17.5735123295698,16.6020769346254,13.7797296837389,17.3586848396952,16.0189187730174,13.4515425157282,17.3536757231824,16.4661766060518,13.9392438429939,17.2304715404945,15.7756459741898,13.7740211941423,17.0682688956982,16.0972644821736 +"Q9VCE1",11.5073499309616,14.4059960759113,15.4349955096475,11.8273725770381,14.3698913771665,15.5825537046741,11.4056839283852,14.3977808088863,15.5075940554858,11.1116697018266,14.249060307363,15.3619295248898,11.2302386581688,14.0422281989277,15.1149573432093,11.0951123622667,14.3440633479309,15.1002235021109 +"Q9VCF8",15.5763553269029,17.4610864649617,17.9761608756218,15.671147681686,17.3983531634217,17.9205628349691,15.4032286836428,17.5955735953662,17.8411786478228,15.4315208083211,17.4172820991998,17.7939394436075,15.4015203272545,17.4986253261031,17.7550199672792,15.5618101099292,17.5605597647622,17.9054328974638 +"Q9VCH5",17.214606566141,17.961846449406,18.968394152813,17.3445081263908,18.1735874008359,18.982770359515,17.2212527734793,17.9462846061188,18.8841880384662,17.2559904749415,18.0194742229544,18.8431340135368,17.0287264439832,17.8781320015228,18.7202875097709,17.1235826230146,17.9293307405945,18.8194177837562 +"Q9VCI0",11.5305616206962,16.8395898424914,15.8687062513874,11.50437732297,16.9369806527315,16.0334847049113,11.7470527049616,16.9939447709314,15.8365000154423,12.3560218661806,16.7230967007261,16.1873136675414,10.617144253238,16.9125882485529,16.0378214351086,11.6629666370224,16.7898217504781,16.0498445891887 +"Q9VCJ8",17.1347323833402,17.8546431293907,18.417313731188,17.2227656537106,17.8846548742765,18.4248701286738,17.3923210443567,17.9589324292725,18.492529298824,17.375955084039,17.9510738974202,18.6970063330378,17.2970572329448,17.8752379186972,18.4068048522304,17.3904280944422,17.9201996388637,18.5261726676654 +"Q9VCK0",16.4669907533868,18.6404521129769,19.0360282008505,16.4811918328657,18.5708525594846,19.0019188547302,16.9272276449635,18.6786852791552,19.4646208676418,16.8922390174954,18.7933351912378,19.4177451241166,16.8513701857832,18.6103550504155,19.3316577891832,17.0878422889379,18.6688321009007,19.5218401187775 +"Q9VCK6",14.6877034821477,16.2146543019209,17.1136031402134,15.2214267285339,16.8391864357672,17.8059276160506,15.1058344089709,16.4295866116989,17.3661737442936,15.4992870094792,17.1316230650656,18.184792904004,15.259833005328,16.7928650243524,17.8751747584388,15.3414630844502,17.1132430494854,17.9346169400478 +"Q9VCR2",15.2267781694078,15.1542846938869,15.9633541830203,15.0918017513771,14.8948999590247,15.8947756017112,15.1832167507257,15.2139140411659,15.9743834772983,15.1527540612671,15.279034360149,15.9827227940287,15.3145724089285,15.4080097891534,16.1404585854317,15.6773455464914,15.1370796086306,16.3326657225235 +"Q9VCR4",13.70476806979,15.4064859502166,16.7657131200942,13.4229334885165,15.3368117344699,16.4687714078583,13.3624119090468,15.2490482160228,16.4471259028024,13.4171559195294,15.3617642387902,16.4772414037185,13.0558370734902,15.3109732165169,16.2518896255337,12.7127707609465,15.2117571145979,16.2296626457157 +"Q9VCR9",18.0774998742644,19.4773672800564,20.5240193850202,18.242292711362,19.5931334537116,20.4318459181371,18.1138949330501,19.515278430857,20.4040262210629,18.1413504097163,19.3288358522955,20.2888093654695,17.9207928874572,19.5707607785133,20.4377288173128,17.9721132942542,19.5368588710862,20.3605535154684 +"Q9VCT4",11.3561505765879,13.4147046242348,14.2691918714921,11.5767395343347,14.0320322222129,14.5162300907625,11.7839921131185,13.4526195089195,14.5267376610978,12.5533549027591,13.9952846897954,14.7879935968008,11.1174589815265,13.6877132216806,13.7260222554918,12.6421508095861,14.9201920363969,14.9830656954442 +"Q9VCU0",15.173951759604,17.9080636650182,18.9768735556226,15.5358356873147,17.4768653416642,18.8792137446446,15.3023258836245,17.6476636437823,19.2037650761013,15.3206355786651,17.473837488034,18.9397546437706,15.3847732480055,17.9061427125382,19.0498471080959,16.0332464706732,17.6256585907668,18.7869717878121 +"Q9VCU6",14.660546565792,15.1303227674699,16.1535136067016,15.1433594801133,15.4644955568536,16.166397631555,14.7405795605171,15.2913273227745,16.2370683725427,14.8954076398954,15.423555127594,16.1126549336909,14.9499531388705,15.2543619504011,16.0822865447349,15.1519968147281,15.2084160768382,16.087677593138 +"Q9VCW2",13.7605969605152,16.1617714413789,16.0178143204849,13.4121054886306,15.9796022335876,15.9511309414916,14.0435893334871,16.0744877250694,16.1752225172288,14.099654739051,16.1439124277393,16.4399090104938,14.1790895245065,16.0995133714039,16.1272256614651,13.9712126355399,16.120209588557,16.2897198604173 +"Q9VCW6",18.2979572998833,20.4368773919206,21.2440375252874,17.9190889201216,20.1798024119118,20.8371309212648,18.2733594700245,20.4501506702563,21.0670540741724,17.9055337826327,20.0304365452902,20.7746741881919,18.2705371952607,20.4825804676291,21.0607940442546,18.2766285407956,20.2071290003255,20.809416743716 +"Q9VCX3",10.1165442902444,12.6201654591899,14.6956292059612,10.6395091778274,12.6972596403943,14.6513275180095,11.6304863482439,13.1236404338926,15.3831969740912,10.9502530267119,13.3795421929566,15.394554511186,11.0640306998128,13.3060614345233,15.1815725919793,10.5672156195035,13.4214255592272,14.9885486565467 +"Q9VCY3",16.4354749977471,18.5567192279047,18.4647660341889,16.3946868966165,18.728063816336,18.5361651211483,16.3179788435676,18.6782551063831,18.4122894601672,16.3270498729049,18.7686371584653,18.8094576755542,16.2652073022688,18.6954114903449,18.2533415808401,16.7087238747713,18.6989192489318,18.5595361093288 +"Q9VD00",16.8917130241071,18.8874718806176,18.2283523822723,16.8076845860496,18.874779200651,17.9970590321929,16.9389709320296,18.9163779207983,18.0550068665173,16.7659148362362,18.824614971552,18.0740181692154,16.8965586595615,18.9677251056588,18.0800142564508,16.7445466873364,18.7596995692517,17.812947408486 +"Q9VD02",18.1276081431346,18.2594226954157,18.8324717326507,18.1513402648716,18.2710753920499,18.7251787824808,17.7960362661659,18.0238022965728,18.4306702084919,17.9508371970838,18.1079788659931,18.5525682314149,17.9013571013676,18.2229610268258,18.3488978177544,17.8166175941049,18.1703386667769,18.4139154637343 +"Q9VD09",13.0880594180824,15.6071548641631,15.4427367140797,13.6219099212708,15.3952204946589,15.5767640653152,13.2349726823763,15.2746963982755,15.4293167499843,13.1088495090796,15.3425015455489,15.4996047964333,12.4747606374333,15.3594472323078,15.3106951274969,12.5509727642143,14.9737883570446,15.1460985688785 +"Q9VD14",17.5110520311548,17.693657733629,17.2919292749537,17.6196888090682,17.7732357615708,17.6282725965634,17.5866608396608,17.7417988686494,17.4819988677154,17.5965724704235,17.7619693020281,17.6885866516729,17.3000086441296,17.7747167051653,17.6495880384333,17.5281116891313,18.001210501129,17.61151235442 +"Q9VD26",15.6388096757385,16.5388377348203,16.4680204779785,15.8260520855188,16.3669003634005,16.5181118694401,15.8511104169981,16.3238772632414,16.4533710861085,15.5370256489395,16.5188011831222,16.6995881104068,15.6957558168286,16.15864910142,16.5451394119148,15.5249165597721,16.4889567566031,16.6487461946438 +"Q9VD29",20.9613135080595,20.5625228306136,21.1004485857841,20.694353696087,20.563405288507,21.1072546328455,20.6340414136622,20.445092999211,20.8537245201797,20.8299046298485,20.5008605435211,20.8890292981946,20.5101524164643,20.3495820085473,20.9377555008949,20.8542470457788,20.4164525312776,20.7552007128255 +"Q9VD30",21.0544156740195,20.7298765434736,22.7214022955371,20.6592153126256,20.5431128185,22.9035599564642,20.7475482700605,20.6256424997693,22.5325754740779,20.9206348258572,20.5211141428638,22.9524898137281,21.0373031303439,20.7100737325874,22.8951535367228,20.7573642167745,20.5108522365193,22.689892162401 +"Q9VD58",21.8360447043776,22.3825241460683,24.0087279623822,21.7968201810977,22.441106388551,23.9797499680154,21.8162146111629,22.4158312332156,23.9384584985561,21.7268837662314,22.3608241577605,23.9764572477333,21.7419915548109,22.4743768232501,24.0042136675242,21.7508894922286,22.3754498095642,23.9497351047296 +"Q9VD64",14.8802689211863,15.4730932416388,16.9684529870604,14.8879838902562,15.6831125220668,17.0824170288788,14.5271130408805,15.527699349127,16.858080331254,14.6741289499574,15.5719906343641,16.8661904899235,13.7207125254334,15.3889656335948,16.6658611051919,14.7679802311333,15.4948378243837,16.6581866925575 +"Q9VD68",13.7468025726063,15.0906366016959,15.3204159399489,13.9891493126374,15.144683509334,15.1406886858241,14.0854361376598,15.2099243932408,15.2397081112965,14.1997443567563,15.1963498528164,15.3269729134874,13.7351298169368,15.2633943834909,15.6398436609401,14.0172480382394,15.0279904198798,15.1062834476335 +"Q9VDC0",15.3262461121712,18.115386699345,19.0700434585989,15.5768756317352,18.3741948008449,19.2303913364969,15.3655505611677,18.0135941125948,18.8878418253909,15.6400763714655,18.2794016091692,19.1485794082686,15.5140117566615,18.3239573533161,19.0440631908971,15.2759062336706,18.1249278756732,18.9361313107626 +"Q9VDC3",18.7146678052424,19.2142907270292,20.0362799393178,18.556540293154,19.2880354593861,19.9919442989868,18.6290234974684,19.2641121502337,19.8203966047587,18.656252073144,19.3557960627833,19.9406229169875,18.7367521035109,19.1632089949844,19.9989938480606,18.4747978238132,19.2344683414279,19.9473025527802 +"Q9VDC6",16.1694802676717,16.8143257076318,17.6951350934962,15.9282478410247,16.6391430387452,17.5078356567701,15.8797210628836,17.133438158891,17.8797538789445,16.1583770297927,17.0956971024901,18.0888314339022,15.9837762300359,17.2792277286783,18.0547116989828,16.2429244643986,17.0790070563896,17.8618136725233 +"Q9VDD1",13.9304835090964,14.9153948824103,15.1233665431814,13.6659384396706,14.7806692954256,14.7969267434971,13.7960094654968,14.6475367145298,14.8429722648148,14.0445709848928,14.6442765567719,14.4494903226036,13.6936756929484,14.5644023079377,14.7060818377156,13.6992286741338,14.0109586434921,14.1602203504415 +"Q9VDE2",18.2754384006176,20.5841462451143,20.169445100584,18.165717769607,20.5664652297434,20.122267366107,18.0481272842638,20.4690243591177,19.9485051066431,17.9003421065814,20.3006549541416,19.9937790302977,18.130125664347,20.4312524470168,20.1086396136715,18.3782330991551,20.2267709052925,19.9817675255029 +"Q9VDF4",17.2710380698386,18.635961158622,20.0235535946573,17.404623699589,18.7186186083387,20.0790242381712,17.4165549600271,18.6392675844348,20.0903952953457,17.2243575914936,18.622951976902,20.0778019010659,17.3058751179835,18.6952673600325,19.9923696136242,17.3501798538304,18.6686217861923,19.9287600040658 +"Q9VDH3",19.8564172245767,20.1365668048144,21.0213008644251,19.9358048236997,20.3560359384634,21.3393711574804,20.0393093042877,20.3246825629741,21.1902621283331,20.1741736740903,20.3814235746787,21.4913501505423,20.1369708858618,20.3595443792755,21.4016647616298,20.2120033062968,20.4660003019286,21.5001629372534 +"Q9VDI3",13.2460052231225,15.5558784415675,16.5017246135794,12.7963132919329,15.5371471693615,16.349938694024,13.0120236464064,15.4685506368837,16.4196751177928,13.5224993242887,15.4713060692418,16.3685251539937,13.1160669104074,15.5423061921205,16.3444986026204,13.4308436740219,15.5999634577898,16.1380201465251 +"Q9VDI5",15.0545468363056,17.2729300012193,17.2457698663591,15.0156106982584,17.272903312039,17.4462714042126,15.287778704596,17.5215923235829,17.4396167057483,15.1465975869409,17.4729552854265,17.396758533995,15.1210421441293,17.6652563739469,17.0324588588258,15.3909060015761,17.830910495978,17.4492090940341 +"Q9VDK7",16.9124162832975,17.8120903573409,18.9283808671357,17.0076705946142,17.7560739122281,18.8272704217077,17.1035911737876,17.7876203645538,18.7990960090039,16.9236076522663,17.7272111727514,18.8334150935409,17.1363115358773,17.7458222640026,18.8448787248086,16.9889498172867,17.8568564888062,18.653547683528 +"Q9VDK9",15.1822532479915,14.2372094694302,16.8744365783925,15.0525877792857,14.0943681911126,16.8907005209856,15.3552744173814,14.235344964311,16.8529929173665,15.4203597168598,14.0474234480444,17.2940495602886,15.4895566624707,14.4095328062837,17.2192811681689,15.6156564007331,14.2971735366775,17.2025096038657 +"Q9VDL1",15.2164482934898,12.7884789781194,16.7454476441202,15.3064403991315,12.9727966782561,16.5882658708947,15.2893489866009,12.6240552643763,16.6968319392408,15.1114855511931,12.5796989057565,16.6487311515991,15.1070181759155,12.6888793087337,16.5576973589614,15.2684343663405,12.2959833471777,16.6781419661764 +"Q9VDQ3",10.9642589028468,14.7790801212532,15.0774806015041,10.310296695127,14.894524663033,15.0034634299029,10.6737934772463,14.7221330843395,14.9417088763816,11.1791775248378,14.623713848868,14.7694024068258,9.83842963592582,14.6209381631298,14.7789927681716,9.29015782848583,14.4010169352216,14.8589177062474 +"Q9VDT1",17.1855439574209,19.5053014943957,19.8917803935075,17.4038429999407,19.7124144941128,19.9440550284681,17.6594152952218,19.7354890068808,19.9825920892463,17.544469217105,19.7973232612266,20.2180377695905,17.9547359428506,19.9203004249307,20.1752606036801,17.8124512657827,19.8860167210828,20.1715773030025 +"Q9VDT5",18.0997335991164,19.6240177707082,19.6297738108971,17.8484159585968,19.5903776454292,19.9720134484243,18.0984505080135,19.3653263929055,19.5232544213705,18.1484992394512,19.7656646889404,20.0459479874564,18.1221594013769,19.2237944511976,19.4669657388941,17.7819298525155,19.4919175542179,19.588114556204 +"Q9VDU7",17.4435960378496,18.3955766473725,19.0964499814259,17.7309167177541,18.4627642765517,19.0660113163314,17.5391830946576,18.368959239322,19.0299636899272,17.6829049644723,18.456542530019,19.0937942182732,17.3139992842106,18.1798709688488,18.8974925732049,17.6895096775703,18.3837016005801,18.8301883683185 +"Q9VDV2",11.7205803627768,15.3193734695659,15.7129093169632,11.7780208674219,15.4031805915687,15.2133087848468,12.3687357113565,15.6430258050252,15.9325651693752,12.0409488024821,15.6864522169807,15.4354506979176,11.719667749243,15.7592466364148,16.137852506621,12.5270436312866,15.6135065904583,15.7518935487579 +"Q9VDV3",15.7326498061803,17.5215923235829,19.6619723114471,15.6125961370032,17.5330195584281,19.5673962957068,15.7209741065077,17.3695392102809,19.4947285074013,15.7118466357553,17.5215923235829,19.6296773101159,15.6880329449659,17.3129311445048,19.3666518361058,15.6261357372945,17.2365904210863,19.3524484154783 +"Q9VE08",12.3827935534582,16.179463279026,15.0076413119976,12.8373040817497,16.2186675098655,15.1088733064955,12.6906215008343,16.2046196748357,14.8561745735187,13.2235947358061,16.3335265718252,15.2090902430493,12.2168501239568,16.2414594531308,14.8053724419449,12.4004298379041,16.2240632452797,14.9014362683175 +"Q9VE12",15.1627320069879,15.9111063478148,16.0979193115466,15.2691753900341,15.8590201850488,15.995426434348,15.1250367514411,15.8005700159995,16.0114606853926,15.2287441794151,15.6303213404503,16.2561156503616,15.0674124392005,15.7015696267224,15.9163013811758,15.2297887492493,15.5092879205467,16.0820793650859 +"Q9VE24",14.1377298760852,16.2674240875454,16.1877414937853,14.7066861721079,16.6960811039221,16.5468516226291,14.5347901558454,16.6252073587762,16.1841397781342,15.0084832655826,17.1071196188476,16.8787546915908,14.4836019611561,16.4839793376874,16.0878818442168,14.6792619594452,16.7924122215681,16.5102990082823 +"Q9VE50",14.082976382853,15.245068616834,15.5992296333366,13.5256947677371,15.0558917439714,15.4999857818425,13.4418734509731,15.0434353687146,15.3166390343045,13.0518077008959,15.0173968886444,15.2416900429208,13.1153005076877,14.917925507387,15.1589662755871,13.424087748585,14.754232466553,15.2229004707315 +"Q9VE52",15.3714584228884,16.3569925416407,16.2181504347138,15.4249000616301,16.3576819501395,16.1971893065538,15.6121668444226,16.375871810606,16.1352617162111,15.4453075114975,16.4391683915584,16.1507441297317,15.1147707013324,16.2403710746292,15.8354645488349,15.2805375705164,16.4572473543332,16.100265079342 +"Q9VE56",16.1658001029024,17.4906452115575,18.7063950470134,16.0992923803899,17.7885358588203,18.800559761267,16.1848152173362,17.6642862609977,18.6877259208273,16.0020179753594,17.6917186001175,18.5778385070743,16.0476890616037,17.8074393108741,18.5899821962761,16.0601362522144,17.673812973549,18.5031566851029 +"Q9VE75",15.0291418397939,16.2292497502789,16.354380337946,14.5296907158952,15.6569238628986,15.7876936220425,14.5802221201317,15.7472553048679,15.9245774756879,14.1719488194582,15.5128133573728,15.8789133123208,14.9791046013785,16.1884804654905,16.2549239725473,14.2750179194562,15.6627034430624,15.2794634966801 +"Q9VE85",14.6685750384158,15.501249332466,16.5494074601481,15.1146461839798,15.6508843843994,16.6147397760763,15.2032113012568,15.5938974554092,16.528131092224,15.3380739011344,15.6336609470525,16.7631130071107,14.9803048362148,15.7772949082325,16.580897494998,15.4008440126658,15.9684759555831,16.8093590886335 +"Q9VE94",13.2399017462094,14.5171876678069,16.5958277141465,13.213516709134,14.4156462380942,16.1140904511299,13.4144215082027,14.624746730434,16.425299687657,13.0529284414437,14.2550161757842,16.0588094644538,13.1470611223046,14.4836212541407,16.2827309378843,13.6498522910501,14.6119735081146,15.9056469755095 +"Q9VEA1",17.6439177022053,17.8139151959927,19.0347583108278,17.624983014817,17.7125058639467,19.080840783313,17.668307241432,17.9386355189689,19.0932404140535,17.6166871565286,17.9512129220316,19.2601008173378,17.6709940376033,17.7664228253793,19.1063924574176,17.979341743328,17.9980244214086,19.1288989618909 +"Q9VEA5",13.026873836416,15.5765648030972,18.4207936553183,12.9586676650774,15.7365097940698,18.437653271875,13.0634754761617,15.4733807382426,18.3223878680669,13.0973285819642,15.6648879486284,18.3773117848857,12.5836524559701,15.4084750213214,18.1834417963807,13.4792867081848,15.3017329201562,18.349987523448 +"Q9VEB1",24.590150354629,24.9487834959233,26.2478143439515,24.6196916283528,24.8841338669923,26.1899971060929,24.3804616606326,24.76467606164,25.9952916900569,24.3438469270657,24.6984402949237,25.982359294311,24.4127058225794,24.8533903264042,26.098626620797,24.3771126479267,24.8892910383104,26.0442369112385 +"Q9VEB3",11.2622565326265,12.5834595252038,14.4868133963995,10.0675965712501,12.1847946412426,13.8477083824722,10.8843926059589,12.5388478117132,14.5874626279227,10.1773367479699,12.0940778104791,14.3686352879907,10.1730907169041,12.4482822688199,14.2084204717236,9.62787869418026,12.2609875388287,14.1054203831911 +"Q9VEC2",14.9741224278443,16.9662155529328,17.9918672054004,15.2115214697975,17.0848607612885,18.1248044507637,15.0306983607893,17.0168880230465,17.8215274603681,15.2142300179175,17.0383634825058,17.9704954019871,14.98798993732,17.0946605632364,17.8964092957694,15.0060609118797,17.0986671366829,17.9331988287119 +"Q9VEC8",14.8818031096794,17.0017666475171,17.8290986437282,14.8874215350216,17.1355753824813,17.8891744906985,14.733233213797,17.000860034472,17.774417237163,14.8811959465431,16.96790949908,17.6231772427918,14.6429714447052,16.9829698252354,17.6034930156112,14.9011687574296,16.8348468630984,17.4379296823486 +"Q9VED8",15.6747509608414,15.13473995646,16.4599223392974,16.2292890385939,15.4720802502638,16.9344731579718,16.4309168954642,15.7765565415933,17.0607116072845,16.6018432877462,15.8302626224724,17.5800377688284,16.2157455212046,15.9051428649936,17.0645221998734,16.7179981593299,16.0816886440981,17.3621283315606 +"Q9VEH2",14.3013649787215,16.0984254885415,17.8470402584904,14.0940680065867,15.9355773758076,17.4620386428254,14.144768044308,15.9517998920893,17.6602987998942,13.8666645263341,16.0598762950296,17.415769827894,14.1486157491689,16.2058908487496,17.6847218554779,14.0242725578398,15.9827560635766,17.5390742791524 +"Q9VEJ0",21.5322480979783,21.5519373157727,23.76380891511,21.6186472437839,21.6019018137103,23.8089501908085,21.3547233352885,21.5088452678487,23.6236988992079,21.3501046016049,21.3922376778887,23.6378659103147,21.3577689885372,21.5649201824495,23.6720883500005,21.4589655180134,21.4314939199794,23.6258496532721 +"Q9VEJ3",18.8086990232133,19.77225665976,20.1910939511306,19.6961820989618,20.4587941765843,20.9676739783748,19.0083513623544,19.8959301368458,20.3093192939852,19.4121086579987,20.4119384558354,20.9458840761553,19.1634129503921,20.273286422675,20.7061702573828,19.3496037486601,20.2514096157466,20.6558433161944 +"Q9VEK8",17.7398060445826,19.492238328021,19.4471586301277,17.784358827914,19.553699394287,19.3466809090357,17.8492958352455,19.4057680309424,19.2789405868691,17.8555531749644,19.5876989640525,19.3562336797207,17.6990975223882,19.491284116491,19.3382911740205,17.7797928035865,19.439440394579,19.2979643222449 +"Q9VEN3",16.5983420429118,17.5031748087634,19.008860682173,16.610747099871,17.6104527401429,18.9107410181036,16.3961412407598,17.3269020181248,18.6758031674233,16.4267723100647,17.4595254604659,18.8060146712663,16.494057266941,17.3101960372948,18.7836246957832,16.4004409463885,17.3010622275187,18.5574313582788 +"Q9VEN9",13.8284745021402,15.2757259943464,14.9582437049725,14.2679376089667,15.4854564897301,15.2132164096622,14.4282081373036,15.38334824472,15.1305082153736,14.0805645758251,15.3652188661281,15.2770649907912,14.3687191320808,15.3758880835581,15.0886164666875,13.9241008020743,15.4681451699038,14.9473347757031 +"Q9VEP6",17.4026434845707,19.4969146932827,19.3948975577581,17.2831007621097,19.2082428283175,19.3680621106325,17.5220953703665,19.4733001437401,19.2146526677232,17.2745637307175,19.1853179846292,19.3566638938151,17.2592907686129,19.2304717371576,19.1540963690345,17.1931240877304,19.0763213311851,19.1267115212859 +"Q9VEP8",15.7770340024606,17.8486273875114,18.2180692083747,15.6046207829738,17.8540125070947,18.02840932228,16.0097097848878,18.0281065991746,18.2712244923073,15.6576268579759,17.86033592637,17.9950700042616,15.7351337710212,17.8338370864217,17.9576679197639,15.6778896217422,17.8056103444744,17.91104499372 +"Q9VEP9",16.2077025007116,17.585970420593,18.8474042333996,16.5355025052721,17.6961279457511,18.7779442407898,16.4331486335102,17.5638001847465,18.7591636224424,16.3666988902978,17.5757736025759,18.6102804257492,16.4256408048695,17.4630287490383,18.4781656062621,16.4017709147914,17.5079182949441,18.5585237661499 +"Q9VER6",14.1238702898733,14.3343730259643,17.14264724662,13.8264606721418,14.0596902125229,16.9208185144778,14.1280658412547,14.3710843165941,16.9615058797198,13.821297069912,14.1502540727706,16.7737993420024,13.7556535541335,13.6707629213774,16.8026073272975,14.0262570297528,13.6555136519379,16.9099433362788 +"Q9VES8",15.0237583771951,18.5218801023944,20.1700247746082,15.2023658990796,18.8952244280683,20.3579493213694,15.0272663486242,18.4924935274685,20.3217569778137,15.1270190450847,18.7062881256423,20.1761441239119,15.0497232454939,18.5586858602709,20.0059765115291,15.1093415008347,18.8022337947246,20.251485971559 +"Q9VEV3",17.2965427637916,18.4869267467534,19.4272695654111,17.3900461569797,18.5226062497687,19.4383557060202,17.097578427663,18.1536805384921,19.1940615737945,17.1578183976373,18.3001903581588,19.2315816745617,17.094485226851,18.1036729383133,19.1173953394099,17.2432309511204,18.1700577083399,19.1043181594296 +"Q9VEV7",8.47058044808596,14.988020173093,14.1006152872426,8.84489262750284,14.9398704201448,14.1912987138732,9.42121150293133,15.2373833017771,14.2435762997855,11.2559152025051,15.2881053563089,13.6419783591844,9.86817921220268,15.6873098527472,14.3771268991958,9.33943046494132,15.6208385655071,14.2860655566688 +"Q9VEW1",13.5606860955959,13.8312822351999,16.9265568750939,13.3020405028309,14.2958357429777,16.3922394090209,12.8311585327494,13.6813030536072,16.7642544376507,13.6753151172049,14.4054967872359,16.2904574061271,13.0600689696279,13.8132946354899,16.5252761212218,13.8121172473311,14.1078466226908,16.0126475205411 +"Q9VEX6",19.8504859471518,20.7160858584068,21.9668566098163,19.8361894043416,20.7990588911448,21.9404083750587,19.8923178897148,20.7181195567569,21.8942530280497,19.645487046429,20.5718610426903,21.7589018083579,19.7678864409017,20.6265322359346,21.8585321092239,19.7000903580537,20.6171539813375,21.6299137736916 +"Q9VEY0",16.4461552261104,17.2685221284163,19.2303387172781,16.8719990823322,17.5709035709813,19.3731180531496,17.0036284924498,17.8416733862318,19.7497441258076,17.2671518734326,17.9793812230457,19.8478543856739,16.5789613115914,17.6717585408243,19.3286790830786,17.1821591609929,17.8141270217496,19.5964045261271 +"Q9VEY5",20.397034796088,20.7512474788065,21.4832832005731,20.3875134156036,20.7113260882162,21.5261475857599,20.3502893076283,20.6129998412306,21.3737900829092,20.2572210688127,20.616531288522,21.5994260135858,20.4521834449152,20.5279664276876,21.4753464348862,20.3418716303157,20.6614384695435,21.4927443547904 +"Q9VF15",20.5471503854934,20.5996650986659,21.9938799251469,20.3839049982229,20.5554843227283,21.82554433177,20.2778598065941,20.3728657832588,21.7621262427366,20.4794604109381,20.4927708295518,21.844940296124,20.5044055936602,20.3656364930794,21.5565555201193,20.0249882617859,20.2952478691401,21.4947521880718 +"Q9VF23",12.5922937563663,15.7389657269146,16.3925110307678,12.5178446501544,16.1674294828788,16.5599514385839,13.1135387238441,16.2350994937914,16.6723294060653,13.4351245582945,17.2217161737541,17.6003874954326,14.0640690271365,16.4235103332195,16.672572266221,12.9921339307085,16.0193754172275,16.5452606686404 +"Q9VF24",15.1502472715658,16.6347593163662,16.2325062952509,15.170105259498,16.5618059400568,16.1855891623524,15.5125712305301,16.6417982773002,16.4134898994158,15.2920747629355,16.6369756977028,16.292320498215,15.4230665337284,16.6185720974836,16.437482165582,15.8048774681877,16.7436479135742,16.6091006738928 +"Q9VF27",21.1615684806542,22.1927436676332,23.6325847045378,21.1133569493794,22.2009471340808,23.6768428996836,21.0181156231178,22.12549891313,23.5251232004756,21.0502387674663,21.9956802975096,23.5154449008922,21.1080278215149,22.1233352854111,23.494928931751,21.0317038495139,22.0194100130116,23.4323601743137 +"Q9VF28",16.1569537762725,18.3274615818965,18.7137588382384,16.0247969686516,18.2592199411454,18.8483439223774,16.3222934627994,18.1550364728029,18.6559489824067,16.3061688025491,18.2687091707188,19.0132355292679,16.4756398936064,18.0980971047218,18.8314280751179,15.9111439881865,18.3646202412347,18.7868068598382 +"Q9VF39",14.0873978297387,16.4701979488511,18.2551655297503,13.4294592859991,16.4995974841974,18.1551525494543,13.6576052635279,16.2942946569689,17.7793113120867,13.4496952959381,16.5381078779073,17.7240529258604,14.0501160827129,16.1803868831016,17.7712645457768,13.3218383038692,16.2009658979198,17.5021529581955 +"Q9VF51",16.899476265366,17.5225085466599,18.5404176920435,16.746980094625,17.5006839075809,18.4372239535834,17.1523578694626,17.5387892675519,18.4670566019499,16.9288092927353,17.6219420080156,18.6099880247106,17.2639036351847,17.5393211246892,18.5482722255664,17.0314734149343,17.4748430498374,18.4279577251371 +"Q9VF70",14.8863705871033,16.3753781332568,16.828920596368,14.765274783488,16.3214041655677,16.7812433425612,14.7838642726122,16.2695586804605,16.5606141330642,14.8792565904135,16.2874368448218,16.7379748940807,14.7500448925657,16.2919097801449,16.7657861720438,14.6564965930725,16.0689656535522,16.5074406196636 +"Q9VF77",14.2741507242451,16.4302253600019,16.2946814855084,14.1567485478681,16.5005431966203,16.536200421238,14.3837118306481,16.4480154607231,16.1927727978838,14.1173753412366,16.5920223503404,16.5944985857587,14.2867192640466,16.4992396398687,16.2951882815833,14.363084541962,16.4692255992561,16.3768640833296 +"Q9VF82",14.3048618181899,15.9758655395308,14.4374714788511,14.0941987609571,16.10852084252,14.4001108755002,14.3627422780463,15.9745414789188,14.3538521840529,14.4968054860118,16.1614702120524,14.319707381528,14.4150375588575,15.7713670879358,14.3704634852567,14.1825627861899,16.0536000039717,14.2665385386787 +"Q9VF86",16.8655393495588,17.3085846450306,17.8606643535066,16.9764092899087,17.3723277082686,18.0012269991285,16.9642238551846,17.4492069522325,18.0386071282266,17.2141525044752,17.558495604757,18.4048979602588,17.3566348931947,17.5899822758753,18.4318309326633,17.5593919978156,17.9073797188284,18.3622715681168 +"Q9VF89",13.3228089552883,13.2398983511137,16.0913105655507,12.0406942890301,13.3882938172395,15.9936370769694,13.0392448294391,13.738573972394,16.1570279243553,12.7833192962524,13.7669980576012,16.0289690078983,12.8304511999176,14.0281592653903,16.2170154704233,12.9136360245148,14.1730700211209,16.170962584943 +"Q9VFB2",14.8048664284161,15.5019999749516,18.5727273128827,14.7494015965263,15.7287602040709,18.4407418079167,15.0206681798479,15.8879703049155,18.5761573431253,15.0384541329729,15.9581431680467,18.7313411939372,15.1294703259138,15.7733182546207,18.6056318744155,15.3320545988066,15.6950477638175,18.4683660281888 +"Q9VFC2",18.1214707806436,19.9825175476075,21.3036699713355,17.8111148755012,19.896985356447,21.0599658506375,18.2736423093029,20.2989260238976,21.4322319564016,18.2000352779527,20.155663678593,21.273703339694,18.1693537196939,20.2201241135382,21.2781956840302,18.339360653251,20.3315280804625,21.5035033628626 +"Q9VFF0",22.6545860829873,23.1768891538909,24.5703281221754,22.8955173471914,23.3063202879022,24.5553771487943,22.9801029443915,23.5177610498996,24.838640930268,22.6743619979646,23.4535458909179,24.6991159589566,22.9266316457805,23.6406208791238,24.8452220533104,22.7484912230667,23.5990536712087,24.7295538294049 +"Q9VFJ2",12.8954682267368,15.1043154035036,13.2243378365916,12.8503360319396,15.0683743590452,13.5939101332469,13.1730496907623,15.1992178215405,13.2493062331854,13.5110250658619,15.5218873185969,13.5435229887198,13.1838183815376,15.1491207873109,13.7707449852988,12.8830870442248,15.1849484745312,13.3232052971346 +"Q9VFM0",11.9619558603812,14.4440144492519,16.2116773178399,12.5860737115748,14.517323454745,16.2764472953989,12.5100180956622,14.346023175466,16.2426435805658,12.3192555367091,14.4751928916733,16.1418225792118,12.694231174843,14.6520793166593,16.1481246399956,12.3115374280255,14.5060189346001,15.9778643647061 +"Q9VFM9",15.312790445621,17.5449349623742,18.3850276143334,15.4846818292071,17.8289643248558,18.4631230511716,15.154569769321,17.5316174002753,18.2337496352999,15.5040565829843,17.7280470906774,18.3074644024351,15.096831151927,17.6991270269342,18.3106104475516,15.52213020473,17.7119784712441,18.545147793003 +"Q9VFN7",18.5782521358125,18.4951550353996,19.4926856128568,18.694512577757,18.7478324868014,19.6159917944248,18.2080166727106,18.1219807108383,19.0871244037574,18.3594794166366,18.42967494509,19.360755508402,17.9770843335496,17.9527213185839,18.9913078598191,18.0659639892758,18.0258785112664,19.0818757307719 +"Q9VFN9",14.6436222768414,16.7040825126157,16.6024733355755,14.9580382275714,16.8156788880929,16.622384944457,14.6407114857339,16.5136084613602,16.4528841865845,14.8522735874617,16.8413794836841,16.7919482134404,14.4046463323284,16.5633874385572,16.4339293385422,15.2025468333498,16.9789121213093,16.7784774286715 +"Q9VFP0",16.1291204231939,16.4228385582883,17.2702590953549,16.2825036429438,16.2968602079669,17.3758885926522,16.0053915528267,15.9883107561481,17.1485612417673,16.1010854842433,16.4516129332682,17.2157008222488,15.86676914565,16.1864838052265,17.3411670026412,15.9561515632903,16.0991302096158,17.0382109467955 +"Q9VFP1",14.8009077757999,16.8814860869177,15.7494532702033,14.3449089053347,16.3103604171389,15.0731495722398,15.1135053947153,17.1152045551266,15.8686491423797,14.3870657290187,16.4813110566455,15.3576685210443,15.239951808669,17.3782052341228,16.2986592529827,14.4061744239788,17.4447009137215,15.1270567632122 +"Q9VFP6",19.6787344351326,19.9349224601861,21.3316621657856,19.6080528699261,19.9392943349358,21.286349981086,19.3919978476571,19.8821944815834,21.1185610779547,19.5437239978369,19.8138254728108,21.1330921606785,19.5482856226149,20.0360985280731,21.2116959522206,19.5089587303914,19.805092489453,21.2164672837954 +"Q9VFQ9",18.1796910717402,18.7557258583986,19.6830955700858,18.1325672513329,18.8445194029718,19.5921349437818,18.5906751948256,19.2145518552067,20.1432398947693,18.4847007579879,19.2149154300904,20.2114974272267,18.5492862048013,19.3026005394704,20.1578619250346,18.6161604975115,19.2335936362584,20.0204747472929 +"Q9VFR0",13.7750872571302,15.8781925426561,17.1716003944167,12.8078300307209,15.8342847361078,16.9842314320705,14.2713466936446,15.8405706121109,16.9324665319401,13.1872547906251,15.565443100288,16.8433041756558,13.6070824849718,15.9787755882523,16.9504427121083,12.5629002971019,15.4016262537438,16.629045972134 +"Q9VFS4",15.0584643797222,14.3019130014179,16.991834132383,15.2332619835604,14.3931230701328,17.0460195802229,14.7804659436058,14.0373563427443,16.6114302428494,14.9667168731315,14.2050060416827,16.6146441845926,14.9143474139939,13.8177079280157,16.4307720391459,15.1904207053861,13.781363359286,16.6398488958218 +"Q9VFS8",16.8715356731883,17.3526092636436,18.1706891288903,16.9092150333451,17.2143934385269,18.130403462564,16.6857205605377,16.8354011163104,17.9775606516367,16.9259695861596,17.2599496370614,18.1441299047092,16.5080429759379,16.7259726125752,17.7696314520954,16.851708595839,16.8894022392292,17.8476843662691 +"Q9VFT4",14.0051526795363,16.2035761205003,16.7086880318421,13.8814372799075,16.3693844035323,16.6104963939781,14.1314612586686,16.3959415077247,16.7155538131035,14.3812975564175,16.5583854616097,16.8807101161647,14.1201028749144,16.1936115437879,16.2913473122901,13.0660915420434,16.6989434335559,16.7958704181224 +"Q9VFU7",14.3065756760673,15.2491566194482,14.8858207238385,14.0398994133976,15.2924421787486,15.1395381007367,14.2397715968166,15.1472169532513,14.6511847605837,14.3321752067852,15.3418502914071,15.0650693638591,14.0992426065245,15.1502685670917,14.8663499933983,14.6240931159255,15.3640182514799,15.1264799781082 +"Q9VFV9",20.5193860365089,20.6932443425949,23.0396149633822,20.5166249967126,20.7768705174181,23.0901775666776,20.3117667936081,20.6443636923369,22.891177910547,20.4579974805884,20.8084163078511,22.9343130058914,20.2253034752055,20.5848280302955,22.8778871805508,20.3389640963354,20.9357653555063,22.8947471660493 +"Q9VFZ4",15.7738276564236,16.4439606921886,16.198771066525,15.8164341239338,16.405281234535,16.3257589373421,16.4229593327375,16.9642062323895,17.0832247435,16.3449360332172,16.9430493617617,17.0430354198117,16.3518259386883,17.0388175768356,17.0937642226608,16.676001303817,16.702654079441,17.1091204743357 +"Q9VG00",13.6105317297803,16.7313438331895,15.6847732498069,13.5865675735717,16.6696610262201,15.7586697439734,13.725861903485,16.2478881689801,15.6169711906435,13.4872611955945,16.4984313230197,15.8919077039695,13.840625804706,16.1244415910426,15.9096425800984,13.2297125318424,16.2339841753269,15.8516148429767 +"Q9VG26",18.7967183877657,19.8731903026342,20.2639598802854,19.0428783696032,20.076709799553,20.3778134070165,18.780418832375,19.8319988087185,20.1877464266219,18.8507422030484,20.0017323018149,20.3399161815029,18.7962171774901,19.9884953934017,20.2583993289793,18.7348599664579,20.2876511721237,20.2925043675719 +"Q9VG33",19.6523203501251,19.5006226482592,20.7224993402621,19.6949060446672,19.6188640223961,20.8602852019788,19.3220430865501,19.3771542563161,20.7922331657439,19.6962782624776,19.4983407556201,20.9404316828198,19.0382425843779,19.3451066190166,20.7218052183474,19.5089103745376,19.687600164167,20.9429827889582 +"Q9VG42",15.4386781519323,16.0306013232987,15.3063462156257,17.444215328182,18.2500398417417,17.3170416421504,14.8610670186518,15.4072750647123,14.648610851456,16.5180910979285,17.1427577974936,16.1522943060757,16.3028197948276,17.0683586120968,16.2605401804339,16.0819638402627,16.4051227115575,15.4601973521755 +"Q9VG51",17.3416616315245,19.348840679572,20.6780145828665,17.4203524551285,19.5278985123297,20.6608448549738,17.267242539079,19.3196111904475,20.5126890627456,17.3024409267501,20.5090470900923,20.6933836987433,17.3377553036314,19.3075896928474,20.5303490543043,17.3240806531652,19.2673994481663,20.4740212175859 +"Q9VG69",18.9470039298292,19.8404161562283,21.3749567349314,19.0209796966789,20.0278294816538,21.3203919743327,18.7681804570488,19.8030832500245,21.0949409565294,18.6678204389836,19.8287145452861,21.0246741126684,18.7087078930784,19.9209037305278,21.148799645993,18.7697994075199,19.6927698276437,21.1848325298466 +"Q9VG73",17.3972992300762,18.3022849993832,18.3763485012459,17.3103666392983,18.4871827315295,18.7069933961522,17.3769871416794,18.366541440379,18.2744273622189,17.2308974537294,18.4357318566455,18.7045720013983,17.2818893254301,18.2710942808925,18.1582907815902,17.2391370874363,18.3346863158515,18.5642731582405 +"Q9VG76",16.017464658168,14.7111791546612,16.5696604725277,16.1557624839964,14.6758347699246,16.699852552414,16.033859575503,14.5938467196482,16.4833201213629,16.0459086368627,14.8017836369103,16.7319022484505,16.0722991643399,14.7256439832557,16.2800552508711,16.4099330771228,14.4967966973695,16.4822443635859 +"Q9VG81",15.7294250782972,15.0310296581498,15.7597120060127,14.6613363145146,14.6648809412157,15.6639956449226,15.6245206559243,15.5152499926454,16.6503302762903,15.2323752138675,15.201430113049,16.1712858645026,15.9417998612598,15.9617768285515,17.1288343962479,15.4465282306478,15.2818468093386,16.6668592338248 +"Q9VG92",16.4729425736559,17.2270964727114,16.6559614220605,16.3583622599432,17.0772671825329,16.0699646061367,16.3624058141752,17.1693043667073,16.5292634077351,16.1475575100755,16.9406636849508,16.1403443469786,16.1504823575917,16.9747280440612,16.4410723923032,15.8337899544783,16.7363440893973,15.9917555421963 +"Q9VG97",19.160250341178,20.461863556315,20.4065247480306,19.2503548734496,20.6220256696381,20.6435131127342,19.1303334202332,20.5938864002802,20.4437509681948,19.3147666678009,20.6590741625066,20.6783209245228,19.0799430526739,20.4739608288029,20.4213709301462,19.2396125613953,20.3825239844254,20.4099282077877 +"Q9VGA0",18.6561403608626,19.0618798835057,20.7224124308646,18.5505049820867,19.1408035527201,21.0744429835262,18.2212791892009,18.8685543499341,20.2870956901634,18.4503102321776,18.8430595886527,20.6573973295459,18.2424909042059,18.7584413964486,20.4787237438654,18.3236657364928,18.6015967939434,20.3438807554032 +"Q9VGA3",18.421086793593,18.8350528488629,20.6476547029909,18.3908427184407,18.9722368000163,20.5917420409127,18.4987146509827,19.1332348384412,20.7692181198757,18.611582683252,19.2588722881812,20.9944600961291,18.2784006838899,19.0145349277746,20.7697967113891,18.6256808423441,19.1668921883269,20.9456847525308 +"Q9VGE4",15.4540085094502,15.2382026783319,16.8128159579332,15.1459035226606,15.1091183122323,16.6280189034149,15.3831178493134,15.1078523843276,16.5517292506171,15.1974518143993,15.1488574625688,16.5751699539036,15.2488200407752,14.9753164379103,16.5484582228369,15.2815140219245,15.0268813041227,16.5760965786365 +"Q9VGE7",13.347923142126,13.9970903244506,14.7823186225885,13.3567863849548,14.0620814009018,14.4523818753167,13.5289565809998,13.8139397077005,14.4694251093517,13.4695418216977,14.1509247004503,14.4972541980091,13.2026957684972,13.7231944616475,14.1384873571139,13.604155655026,13.1946912766625,14.2784390627149 +"Q9VGF3",13.7780781487303,16.3856346766734,16.9974057568477,13.5143614410999,16.5469234734382,16.8631041823358,13.6038611700241,16.4188429486348,16.8846101768295,13.6219958862164,16.5265604518716,17.2108358674673,13.6028129840619,16.5267746063092,16.9309419916741,13.5339689512199,16.3498930901689,17.0149822393946 +"Q9VGF7",18.0910871938723,20.2906713259513,21.6881069599723,18.2021837310785,20.4233354816904,21.8939866418178,18.0925483988568,20.1453519047972,21.4595971192927,18.2113552403677,20.243579579992,21.7130016020737,18.0204487833857,20.2112606231558,21.8443721644026,18.2702244235918,20.3563877577595,21.8022428431193 +"Q9VGG5",15.4504187863537,17.566413707301,17.6832403000849,15.646558778953,17.8790628079094,17.7609269260221,15.4412865304088,17.6634682563848,17.6906952153388,15.9594211951292,18.0838553980493,17.7500677390321,15.5651821528121,17.7026390790987,17.6312359396667,15.9185542148665,17.7594600386565,17.7537021019383 +"Q9VGJ9",16.8386505401109,18.4110096444355,18.8247649496345,16.8444036086166,18.3441832554131,18.7710672477915,16.7876166563281,18.4628086294781,18.6131675741159,16.7951518266343,18.3517415696962,18.4647956982635,16.9803894653603,18.5578790817523,18.9538679718277,16.9227479406618,18.2183756868823,18.8636977339885 +"Q9VGK3",16.8066827615832,16.9974638164574,17.7520014347186,16.7852361185828,16.9513098755248,17.7810574230092,16.6441719031768,16.9366244010214,17.6855014365016,16.521406210973,17.0435335209267,17.6444408096549,16.4560553259154,17.047906197249,17.4517934465302,16.4356541995534,17.1339807446985,17.656044490794 +"Q9VGL0",10.7001614058666,14.2654380475843,14.0255900184099,10.9207373798235,14.0308605683268,13.9801430136551,10.5977423144239,14.6131110457029,13.7387484493865,10.293111777018,14.6184749909694,13.9973561336976,10.6826854459722,13.884188385603,13.4702560036099,10.63040989311,13.9191059337291,13.601534384907 +"Q9VGP6",17.1308685665311,17.6895815796769,18.8327873131508,17.0772777428466,17.6166337174871,18.8537740374395,17.2491859387123,17.6507795891389,19.0877687709653,17.313788024676,17.8291779789417,19.0388502525335,17.1260752331497,17.671775862672,18.9684049493596,17.3611256855953,17.8001900282415,19.1263121482775 +"Q9VGP7",14.9404688417777,15.706402244629,16.4356584667533,14.9025738806895,15.7537494513064,16.6266306443096,15.0332941038472,15.848538382552,16.7483163915249,15.4230619293317,15.9309487435004,17.2996498958771,14.8570103976833,16.2656767271352,16.7174728743299,15.5229277320759,16.2893758921855,16.9260328624163 +"Q9VGQ1",21.5195862038908,22.1134862082342,23.6890457472686,21.5916496925773,22.1376716677328,23.7112625390839,21.622344678581,21.9917129575852,23.6508722742165,21.3409005715164,21.9746558591763,23.7030586119524,21.5363606869361,21.8851809248804,23.6383099424539,21.6467039344101,22.1758047352914,23.8737108627758 +"Q9VGQ8",14.6521385962488,16.022841403145,18.0967583104697,14.3828325953332,16.2796247417712,18.0401151863253,14.6978984093567,16.2155958826323,17.9106396855971,14.555534644718,16.3647528183042,18.1392049413098,14.4912945648301,16.204200124923,17.8598666670323,14.5547311880309,16.251160124479,17.8577747247977 +"Q9VGR1",12.4489531386397,15.0211115279681,15.2288717834128,12.6207552389317,14.81730915087,15.2347875822948,12.6403051357901,14.8132589168428,14.8891649178122,12.531599538776,15.0348906849812,15.2129682279088,12.903527871897,14.6193307185918,15.103923952747,12.0022616979592,14.6365176782604,15.0121308283968 +"Q9VGR2",14.1107684272241,15.0204473388896,17.7764691693178,13.9775318210483,15.4499572094012,17.7845488399777,14.1401690536459,15.0948507369764,17.8557612549994,14.1207123298155,15.0873022753397,17.8105500255953,13.9829841946495,15.0912272248104,17.7330313496048,14.0176012328555,15.1554465799483,17.6180245692205 +"Q9VGS3",18.848191588938,18.8287101774083,20.1395440647201,18.4450924239274,18.7900842682702,20.1337704744453,18.8742188781245,18.9080982523853,20.0523404390125,18.481701229692,18.7953537517504,20.0665542650442,19.1480305164794,19.2526079580128,20.4415656275115,18.8291424606137,19.2375798040825,20.2966276607967 +"Q9VGT8",14.1252846790735,15.9598822239301,15.5869499723069,14.1363492934643,15.9785838669178,15.5402656270743,14.0916217404146,16.1689912577116,15.8479881727866,14.3470222393791,15.9784850100388,15.7311723507365,14.3330561337374,16.1885139074156,16.051386650531,14.3734133487722,15.7664939202095,15.5356690643227 +"Q9VGU6",17.8998971665119,18.9008088403113,18.601001633945,17.8932983732588,19.0121591003697,18.6662180526421,17.9805802665073,19.0550486254283,18.6257985443099,18.1224235373121,19.1724967577673,18.900341971662,18.1635860342659,18.9236509201184,18.7140736490919,18.0875323362556,19.0447329968607,18.5969916259677 +"Q9VGV9",15.0336578034045,15.9882174069216,17.5150477473055,14.8433668095931,16.0731870207195,17.6121137743453,14.9775181557519,15.9737648800693,17.1323860923735,14.8992828359679,16.0655010387761,17.2575068871635,14.8935911079383,15.8600162218405,17.2420259394841,15.076692762194,15.6420455689957,17.1313431946702 +"Q9VGW7",15.2575183831866,16.0254975013232,18.5584622160303,15.1193793220279,16.0687229465672,18.3835340300351,15.6298306269614,16.1753167768053,18.4108045283256,15.4034587209721,16.0943699405277,18.3216651699008,15.7513206389004,16.3473742595549,18.698108668719,15.8647520705831,16.3723691850749,18.6244478459078 +"Q9VGZ3",16.9279899860714,17.0275137825994,17.6551935088535,16.6477978430161,16.5082627146986,16.948816454871,16.9171547556855,17.2096398197153,17.5338944901686,16.8106852524078,16.7113037361517,17.0758823571112,16.759551921875,16.7115878474584,17.0568155827285,16.4231461866873,16.0693008619167,16.4616510530789 +"Q9VH07",16.9956169676899,18.3442556698617,19.3013427483986,16.7953591151055,18.5079104126233,19.3459443593451,16.9613670948048,18.4716324174212,19.1144031653359,16.9177717768163,18.5845598058018,19.3743535886636,16.9132577158828,18.4578098768489,19.1858887833011,16.8851285721004,18.5106620755475,19.3644398567068 +"Q9VH19",13.2440825674713,13.1905170301106,15.4638732071748,13.4979531889213,13.0899792857507,15.369087045382,13.2900160234312,12.9964231012734,15.806346544571,13.4659737445237,12.6931128201531,15.5962978777899,13.214471857946,12.9483877135171,15.7411371125153,13.5363434300809,13.0818215160795,15.5688972762544 +"Q9VH25",15.4035038110034,16.0744559282526,16.862526228116,15.3644993658278,16.2307302481114,16.9440932095704,15.5760160312578,16.1798113069771,16.6481024168183,15.5731223183569,16.2671267710356,17.0299129866358,15.5349159085036,16.4249915910699,16.9136002077717,15.6279020859742,16.3020909044664,16.9148192138453 +"Q9VH26",17.3509054449218,17.8363243111102,19.2192713599895,18.0542366134632,18.0870576747693,19.8352811648306,17.4054457839333,17.6408806336128,19.0415136228138,17.7609068608711,18.0323292677058,19.7217928109546,17.3671252410226,17.4377462414562,18.9791261562801,17.9461983269057,18.0050794021843,19.4428144855103 +"Q9VH37",14.6198992063875,16.8371695942875,18.7817325345251,14.7988522956167,16.6484528830118,18.3726205014265,14.8024365379828,16.8084898723181,18.7687770256603,14.7021924148016,16.6003530881575,18.2210110974006,14.3524212922926,16.5848746719916,18.3474826089248,14.9937343910635,16.7849313800196,18.4102528914481 +"Q9VH39",16.7745091285332,20.0156373023487,19.5641696539248,16.0769447310304,18.9576232751951,19.5746323768283,16.7553113399811,19.8513488221878,19.5281407276045,15.9724765433014,18.7998871796409,19.5667629773532,16.389511085925,19.3980232985603,19.501491405521,16.0674894713071,19.048817590769,19.3342917012853 +"Q9VH64",16.0712861118306,18.3081037630853,19.2805326292779,16.0365978867393,18.1348194930785,19.0777090725389,15.8264084440502,17.9652464581474,18.931393592486,15.3718694266389,17.8383050340747,18.7193168702123,15.8597307318788,18.0806791752818,18.932393177991,15.2021552733443,17.4478238775801,18.4218093994561 +"Q9VH66",15.5207390936856,17.5711906079193,16.7305432854703,15.3450313760984,17.7073708789548,16.8360385419773,15.52134753865,17.7104331567069,16.590079835361,15.7022362987247,17.8224332585002,17.010510138887,15.5872352191922,17.9149460363808,16.9522539758469,15.8030311385054,17.9769742927541,17.2533203834749 +"Q9VH72",18.859597665981,18.2580858103727,19.329081899884,20.0137212672674,18.06738317826,19.356030075936,18.3007048648414,18.0599844987482,18.9168302542582,18.1264897548804,17.967101928349,19.0779781936387,18.2443530938525,18.055821348854,18.9361020601012,18.8392325595114,17.9431395420034,18.885617012033 +"Q9VH76",18.9076020629619,18.8798674614317,20.4625141877957,19.0143813106982,18.9276858371645,20.4054732563015,18.6972688848808,18.7581867792607,20.292079715128,18.7671297857344,18.7870294416555,20.4064752386246,18.5779272463436,18.7598942954689,20.0579985050517,18.8608532288695,18.8771181246163,20.2239476972035 +"Q9VH77",14.4089090389943,14.8869536753516,17.0801843100386,14.4535205835294,14.7660781847963,16.8985188938925,14.4395809590175,14.8938779830573,16.8437072828043,14.7136468766181,15.0787754509444,16.8265524927177,14.5964685164132,15.1256573182152,17.2548897729071,15.1140829283168,15.012827874058,17.2673054038083 +"Q9VH81",15.4269972105856,12.5368177608307,14.4881478649713,15.4291255722363,12.745031880175,14.5386525372202,15.9409983323239,13.0590931609525,14.7097891192565,15.6811852174168,13.0083643521932,14.5450058850818,16.1930423833872,13.1805120466703,15.1602057778102,15.9539080974745,13.3125405924121,14.8092651291784 +"Q9VH95",20.1349824994165,20.504107386611,22.5565337478069,20.0706798342468,20.5529499342012,22.5436548700209,19.9451370591165,20.4129887326488,22.2917671420615,19.9858591231759,20.4213686515433,22.404543300126,19.7436414031154,20.399930469719,22.1702462065651,19.8332247479009,20.3412414331505,22.0947590264866 +"Q9VH98",17.1219343056905,17.8470583384653,16.8136365892249,17.0642611692804,17.803044170637,16.6523167266009,16.9483432324147,17.4953168043851,16.3610278666377,16.9572485304666,17.5561057395071,16.477673373569,16.9900841411448,17.5583963843211,16.2371095747665,17.0475366886764,17.3998394428901,16.3075307988595 +"Q9VHA8",17.4625091334181,18.9470312546575,19.4217573512477,17.5159753279712,18.9481665824544,19.3479965246965,17.5731017162355,18.9651031979797,19.5133637894097,17.29348323894,18.9353498253517,19.3588391268143,17.3692766539527,19.0451526247329,19.4691881153465,17.387291639735,18.7979496742472,19.2212889969545 +"Q9VHB8",15.5609935020617,15.0567506006594,14.9162748228069,15.4685975262192,15.2832887441807,15.0813752836613,15.7698113104902,15.5002984607972,15.440662655402,15.6812757403261,15.5761497557072,15.9456399050971,15.8502594178976,15.5097008639243,15.8500026444796,15.7970916930672,15.6674428485246,15.7843502312303 +"Q9VHC3",16.3431800063881,16.5647753889167,18.1034715710209,16.1689588725273,16.449112303192,17.8895402742018,16.8549205437005,16.9426527347911,18.6155820463975,16.580521694922,16.9594250986915,18.3080313156975,16.7973389157898,16.8909641753564,18.3175288324597,16.7309499496687,17.0750812764661,18.3576312977643 +"Q9VHC7",19.9567135863829,19.7089207008959,20.1194470409366,20.1246429726984,19.8094419590823,20.2695192840201,19.8658686622712,19.6694386095779,20.0331858681973,20.0589345945604,19.7460746593105,20.273077148205,19.6214576399935,19.7135627260282,20.1055528236708,19.9222564218467,19.8163419287373,20.0996297793584 +"Q9VHD2",15.1148849954947,16.3491316869699,17.9017850083607,15.367623520045,16.5174077979755,18.1123093058425,15.3104752059056,16.3968277293755,17.9401551134612,15.5591388316847,16.6444351274969,18.0417968986764,15.0602887874051,16.459530374245,18.1180163407917,15.637880712434,16.2855779770451,18.0746833893416 +"Q9VHD3",14.6884715888088,15.5877508475142,16.5266268521307,14.7258603756661,15.4896749496435,16.472634808263,14.8444243913873,15.6393682122158,16.5369814445787,14.873468044431,15.644418954066,16.6575146435676,15.1361711515416,15.8093229902762,16.7866237168601,14.9253877209627,15.6277692905611,16.535691676166 +"Q9VHE4",15.8143571642891,18.2818392032673,19.6967277860671,15.8898223549427,18.399176567564,19.7131356429941,15.8392499358208,18.2450618313586,19.5255652682866,15.7692357808869,18.3264222632087,19.6318911756566,15.9003469382908,18.3129209797919,19.6596566910518,15.8262845280104,18.2205082747505,19.6015599380836 +"Q9VHF9",16.528352615566,15.3569960793663,18.5692761590065,16.8158329756083,15.8752570914541,18.6621203500828,16.6861838222819,15.4962002138948,18.3390470512523,17.0074523030957,16.0535558909615,18.539236293474,16.4329755655237,15.8798161868604,18.5950608194974,17.0843838225953,15.9553412087689,18.550897192904 +"Q9VHG4",17.5405010907644,18.0017464553057,19.338211171365,17.6259317337806,17.9916101006219,19.4173805460088,17.7981951801653,18.6344197139891,19.3345768497304,17.8863375124383,17.8839230476393,19.4689446363628,17.8419361030364,17.90959275582,19.139374799564,17.6883437037454,17.9570257747902,19.1953907103259 +"Q9VHG6",15.0292954474199,15.3739521937187,16.6627879112759,15.1232306690481,15.5256341644077,16.9238455722424,15.0516132315388,15.207626225322,16.4160912310423,15.0308968435326,15.3511593380812,16.3765007217102,15.0548175101275,15.2944709477502,16.9589998309333,15.0109146222502,15.2691017633437,17.0587905283049 +"Q9VHI1",13.6300139899262,14.1456179940918,14.6036720364665,13.3994368408025,14.4769405459204,14.4676441219745,13.5554088853581,14.4205523327915,14.7324235578294,13.6327437827498,14.6566084047421,14.6559423891703,13.5963202425539,14.4908710551936,14.5508853049144,13.5099790651612,14.7162032342659,14.8372086854 +"Q9VHI7",13.9564940682518,15.5301497681422,16.5099358012551,14.3611807262542,15.7777290962322,16.5438135889863,14.2769472885761,15.4845020286955,16.6087625349077,14.3011745140715,16.1520707397129,16.6342328904638,14.2249450326753,15.5990061492336,16.4689975569493,14.2761383971199,15.8462061371403,16.5212674546678 +"Q9VHJ7",13.0228905670928,15.3548761009654,15.7356789569189,13.2612327789534,14.7570938217422,16.2326090375477,13.1350838021561,14.7889440082469,15.7716854943138,13.4125425796709,14.7765176023165,16.2274701674759,13.4770711366082,14.8927748144342,15.9142289691696,13.3294342412438,15.6178365871754,16.0254731458254 +"Q9VHK6",17.0613762838295,17.8713568873913,19.1661877375898,17.2585401776247,17.6868721846466,19.4005080180669,17.1667776394049,17.6089111831968,19.197870909623,17.0525434742506,17.6527429849194,19.7150071978365,17.2987705870335,17.5424105135951,19.2013802698743,17.1238428255971,17.9310110145344,19.3440196706538 +"Q9VHL2",19.3314271209403,20.9271781759004,21.8250901734093,19.3341181251282,20.8889399712966,21.8240226353288,19.3187162669657,20.9648079718807,21.7179020042906,19.2703281432567,20.9175067970635,21.7962336864118,19.283326212115,20.8656262810995,21.726968312836,19.2610663234268,20.8236947296511,21.6950121984664 +"Q9VHM3",14.7207365139917,14.5807272136443,14.8509148382827,14.8584211682936,14.4420024806442,14.9441184987224,14.59336110536,14.4120514277786,14.8321581038425,14.4966290758901,14.4464883886205,15.0442411996758,14.3026537168339,14.3863806706558,15.1334920775885,14.8338520542879,14.9428596914349,15.2441918849488 +"Q9VHN4",12.971236050222,15.2910482247765,15.3824241144198,13.3522184861151,15.1827460641657,15.5561411656347,12.9045587290684,15.4868541828044,15.348544740968,12.9305509233019,15.3371460532128,15.5577546423791,12.7820815711413,15.3621475344006,15.6226641042766,12.661663074011,15.0878523010154,15.4003969583856 +"Q9VHN6",14.9688948899758,14.0924685093397,15.7025087409282,14.7038301083464,13.9466658237998,15.8644644887767,14.960150092441,14.2446518786488,16.1062009994207,14.8091865434815,14.543654098752,16.0796165158272,14.9033009840995,14.3408605467851,16.0823386687434,15.1458307144518,14.2160197097627,16.3235870269619 +"Q9VHR8",18.4634169502612,20.5301677597409,21.0546670139596,18.5695709786167,20.7135832098353,21.0934419398005,19.1451121692571,21.1803561456363,21.5944144602557,19.030567198215,21.0891106245858,21.5220794898598,18.9356624539833,21.1762166133572,21.5749204115305,19.0855963200914,21.2141121160059,21.5875105159378 +"Q9VHT3",14.2320203018832,17.1491082004515,16.7403362923236,13.9786420583095,17.2985018352267,16.8023026440375,13.727556789398,16.8277910557494,16.1542040126906,13.5432611402234,16.8575132181403,16.4397147977516,13.7028244919298,16.8139140527456,16.2001827908732,13.6290761781297,16.7993647424589,16.2781588739532 +"Q9VHT5",14.344523335021,15.591768431183,16.2866929361259,14.5870744104947,15.6128748459883,16.3959076334404,14.8493052715971,15.7633650045311,16.7391732869094,14.7321084995495,15.8709045478699,16.7152534707262,14.7535195256669,15.582452510539,16.699090158564,14.5615118920579,15.8067020030176,16.5111124619958 +"Q9VHX2",14.4144754438752,15.2378141468736,15.5858310615091,13.5283977775571,15.2033272460612,15.4339941145759,13.4021558205498,15.2747368256218,15.5432421077267,13.4721653451087,15.2157055552494,15.6335014292711,13.7287610638355,15.256768823635,15.5978451705278,13.3404721993712,15.2447804039417,15.3510204355713 +"Q9VHX4",22.1191397595882,23.0478683529524,23.7834886512733,22.0745761311447,23.0279728910792,23.6698791422971,21.9217418277099,22.9157666575055,23.576810219869,21.8918558096322,22.9190869993946,23.5463910952219,22.0134004371724,23.0333622094213,23.5884870014098,21.7668182025941,22.7536759356792,23.4340225020943 +"Q9VI04",14.5129903810883,16.6358319620409,18.3864648247078,14.1568356343529,16.2105397846541,17.6571899140595,14.5851579946076,16.9689220857585,18.5898228795338,14.1735121931837,16.5157598660537,17.7211532578309,14.052284008352,16.8088313065922,18.5608431736333,14.3784424067383,16.6764242228958,18.1929482744341 +"Q9VI09",19.8625845179882,20.2736711623948,21.0271295697997,19.6983155002745,20.2171886568865,20.7919249721843,19.6509200324898,20.0975451645704,20.866861957671,19.4097535112483,19.9455502362348,20.625623063597,19.3431128504357,20.0649381526338,20.5010908805073,19.6049577970867,19.8724459008154,20.632854117981 +"Q9VI10",17.0736085647915,17.1150392131719,17.012534038934,16.9616774652148,17.2886357194802,17.2028385719722,17.3849636049873,17.288507400191,17.1427770464568,16.9680449539213,17.3648379039538,17.3573670352751,17.4468287122006,17.2218174884889,17.2491932382284,17.1897561041366,17.2877151174109,16.9953942398814 +"Q9VI53",14.8373210310989,17.1528837408423,16.9183314922651,15.1725049486339,17.2036755290154,16.9542540983698,15.040971393665,17.0376109912897,16.7263897696518,15.038337631058,17.2564627064325,17.0390284712986,14.9520085717203,16.9952216701939,16.733692563407,15.291840320867,17.2297976991406,16.9346179301838 +"Q9VI64",20.101891823564,20.9114891592135,21.6333130312665,20.2446299711917,21.1101318729469,21.8167229317161,19.8336531481435,20.8567196173086,21.5147684376221,20.1245137536118,21.0298532791921,21.7166405652263,19.7979016608394,21.0607347241306,21.5877007879345,20.024952527701,21.1312013795583,21.7486918601785 +"Q9VI75",17.2412777075583,17.3334433511181,18.0466529232531,17.5601684110083,17.5132868141061,18.1499293422848,17.0346609720115,17.145376791679,17.8407604333299,16.896934285378,17.2623589579153,17.8591265409869,17.1317097720348,17.3156668334219,17.7456790829598,16.5809413920569,16.9766214973982,17.7056903202277 +"Q9VIB5",14.6262980183587,13.7145340193408,16.1128311256335,14.0901301772581,13.1932743063065,15.7820642604732,14.5154937065827,13.6692526871519,15.4565329450344,14.3225277881448,13.2292970835623,15.1988330085348,14.2365371171916,13.2551364282046,15.4418509330957,13.980412481245,12.8429419494736,14.908852629998 +"Q9VIE7",13.9696220406599,14.6035875406918,16.6062227495064,13.8847055303327,14.7220452978924,16.3877650643764,13.8486770972069,14.6716757664044,16.5340465051039,14.0971059150576,14.8432378662296,16.455979040627,13.7263048150422,14.5533186786894,16.4236509972498,13.7960189776547,14.562090675148,16.1128977075004 +"Q9VIE8",23.6422147668614,24.1203343824099,25.7073803294236,23.7451374006234,24.2990618021934,25.7863657339752,24.253739443741,24.8216887859277,26.395103586872,24.1125226824892,24.6824164213242,26.2775894527382,24.0836651310325,24.7111935004288,26.2108594001612,24.1224201347742,24.6797424739763,26.2369743206986 +"Q9VIF2",15.592554156837,17.6499259262692,18.4146503724765,15.6656034185516,17.6576055145858,18.4743396284907,15.8849442301869,17.9792741246665,18.8371812421851,15.799903250132,17.8473039970661,18.6725868338397,15.8141183325789,18.1484125498256,18.907161829093,16.1021170663283,18.1779561396746,18.8151847338911 +"Q9VIG0",16.0216603019101,17.2232415251927,18.8168458047456,15.9509144489104,17.4535438465164,18.9776489953338,15.8526778072088,17.3620091844635,18.7193234663655,15.9477221567184,17.4201552959212,18.8667063131392,15.7567882317496,17.1077708874816,18.6017762194705,16.1785540439365,17.4328710686494,18.8828452267434 +"Q9VIH1",14.2294544287282,15.3352869181681,17.2194700802921,14.5038218056108,15.5877986463083,17.2288812007769,14.3388761345851,15.3940426704866,17.2966308013852,14.7509433282281,15.5238758074992,17.4254180719377,14.4902782240496,15.6091586259556,17.2625282843249,14.4590863771503,15.5716521669648,17.3178447767306 +"Q9VIH3",13.1201646766313,14.1583764395956,14.5653028234473,13.2405832079939,14.1050410908877,14.1155488002369,12.8452014977545,14.0692560318941,14.141380335472,13.1232783414978,14.1102496806728,14.3246905424792,13.1221764680852,13.9852918946607,14.0536595476751,13.3481584937427,13.8587335310871,13.724902603923 +"Q9VIH9",18.1539870935631,19.0982886303417,20.9501272321499,18.111279713116,19.1785127293689,20.735551497533,17.6383873875185,19.0192598182745,20.706854155484,17.9120681825911,18.9795435783081,20.4595406684319,17.0153809727385,19.2368925927743,20.5682929192053,17.5098477853733,19.1585097186622,20.2458307443496 +"Q9VII1",18.8542707130174,19.1208053486665,20.6791170041645,18.6559948959296,18.9968862606817,20.6323088010554,18.5445123560643,18.9281022877449,20.3013212783172,18.6060507849292,19.0184397538716,20.4854855265152,17.7355717182336,19.1704128168849,20.4447624217955,18.0896156723888,19.1383612144583,20.3002044029127 +"Q9VII5",16.6056446186561,16.4315369648488,18.4727638777436,16.7735526650028,16.8144726449276,18.8282156481765,16.6906810354676,16.5957405196189,18.6651264082304,16.6632582994037,16.7126722061452,18.779062141866,16.3130794674646,16.4159492923216,18.5297705277095,16.8642754307416,17.0897516788147,19.0141969622898 +"Q9VIK0",11.4105976479627,13.5229620907139,13.4335164062448,10.6327051911438,13.7394518644309,13.6257688547532,11.4791663994724,14.0684577040352,13.1759817459036,11.1942040149738,13.9407795724944,13.2430131679866,10.3035281763122,14.0979974598234,13.6881505095081,10.8220112424008,14.2156468991282,13.5854346554128 +"Q9VIK6",15.7651545159545,16.6915775638233,17.5823229278587,15.9685815484698,16.8025132127411,17.7808617331718,15.6904521713098,16.5833897399752,17.2656189175177,15.6873021352953,16.4302604611842,17.4803498860096,15.5427278452829,16.5551749832466,17.2757250496096,15.8074454649217,16.3764112821778,17.3893886595443 +"Q9VIL2",15.6484120357656,17.5299635256645,15.4394522350293,15.9283830164013,16.8709424507055,15.2600276072037,15.750761896666,16.6912689482403,15.4712136145448,15.7787803554495,16.8078453776496,15.3803633978992,15.6554796794696,16.7832568996998,15.2153418203511,15.84833865135,16.8040834621316,15.1072308797092 +"Q9VIM0",16.9874103943966,17.7597205572948,19.2807367380529,17.1969824962182,17.6503566262906,19.1075225520704,17.2510816204592,17.8096849823427,19.347266838683,17.130699712565,17.81204958361,19.2792397943246,17.2060616076717,17.8743188174335,19.259251753131,17.1226474174447,17.8714682221526,19.275466243162 +"Q9VIN9",15.6076058470572,16.1713457804054,17.0554854357117,15.6655709836067,16.3413714470682,16.9084331090957,15.9619657782493,16.4534380622443,17.2845985554018,15.780094029231,16.4523316159738,17.3473173997754,15.8814901892953,16.2705687844999,17.2764461634002,15.7549926712075,16.4742666967331,17.4536036880065 +"Q9VIQ5",14.405098789096,17.5311182364012,18.3079247898101,14.7221823234385,17.4765049229324,18.088430920556,14.3280963748513,17.2523584825759,17.8340160854572,14.2556739136574,17.1564483287832,18.1115006641096,14.1279434702008,16.9849135061983,17.4824223790242,14.5246639156873,17.0862946214233,17.9004362555107 +"Q9VIQ8",20.3144375741877,20.8795568039302,23.1302151434948,20.1791565167591,20.7332404420323,22.8258902108997,20.1389878863165,20.7318092903416,23.0016794932878,20.0838951375782,20.6882380186941,22.9306612510372,20.3862296201162,20.8515065746075,23.0042552750835,20.41533085323,20.6987201518968,22.753775914315 +"Q9VIS4",14.1096300949849,13.9305751630912,14.347006437303,14.1763740728315,14.0396225879853,14.1134992997482,14.2816771417189,14.1418903925311,14.4946549143385,14.0720435523865,14.0592982564976,14.2715872788686,14.0778480985047,14.0326637056292,13.9848996443688,14.2578286515981,13.7410875055822,14.1193655947077 +"Q9VIT0",14.86618912106,15.054975061995,19.0951080624382,15.0452434674463,15.4254479081248,19.2475997508319,14.9243698982367,15.1621844412113,19.1146790904058,14.9696549003104,15.2684997374151,19.2106268450213,14.8978773844061,15.1853558072772,19.2857640895706,14.8803965903208,15.3226248741702,19.0518907575071 +"Q9VIU3",13.4984206362494,10.6135428040276,13.7864681026705,13.2528415640635,9.23709514251678,13.691468732747,13.1258171651035,10.5222686259999,13.239807330525,13.5732260157096,11.1611146758631,14.0427478565936,13.3222520585558,11.1760730883425,13.2305200152607,13.6306353292957,10.0406317157155,13.722316684159 +"Q9VIV6",8.20846013092993,16.8113978052663,17.1809935061964,9.79911248160025,17.1299177386294,17.6841612590896,9.20614962264617,17.4758389140557,17.6094629213987,10.5827134026649,17.5396344219569,17.9470393274351,9.91118588612235,17.3843281431504,17.7705270421186,10.3126444286892,17.4004802030702,17.9021566102388 +"Q9VIW6",14.396963807562,14.9291740752734,15.5003966825612,14.1504045259795,14.8481178218848,15.679905188529,14.2894183386775,15.1512200645048,15.601787791883,14.3270038150779,14.9883880977941,15.8016134624032,14.139254936278,15.1517723842189,15.7326342690435,14.9626803512882,14.8027537091215,15.8765410814989 +"Q9VIX1",16.1259473487717,17.7438012863588,19.1334481057544,16.0022389069183,17.5689133393688,18.6402049969839,15.6058424917298,17.7126888727522,18.6522215125643,15.537980554531,17.2434534709521,18.1272870705795,14.650233830679,17.4872504382397,18.478711797023,15.2151004123562,17.4051585714682,18.6733176011301 +"Q9VJ19",18.138528751816,19.278597668273,20.0385259746144,17.9712272045162,19.2271893447099,19.912176765605,17.8760382551478,19.376536496565,20.0000398461364,18.1517811519346,19.3738920026261,20.0081316040834,18.0572028917558,19.2458701003767,20.1242062451003,18.076366159623,19.3994689310457,20.0771573338657 +"Q9VJ22",11.5606919825043,12.9551446788606,14.1063160423236,10.5418748446555,13.3890471900411,14.4038381163661,11.9556450444892,12.9761603794272,14.3948375912309,12.2035349633631,13.8335935956815,15.038086252974,10.388207273052,13.2593160491105,14.6332826924288,11.5511384355859,13.985845184168,15.0047923720452 +"Q9VJ25",13.7208029947511,16.4589527715967,16.9160494710559,13.2979225259183,16.1996097999226,17.0458216352766,13.9997032120309,16.1784067911833,16.9949709073866,14.02909852851,16.599295118514,16.8177061804057,14.1872478478348,16.0334892342704,16.8440232093048,14.0140660013911,16.5216642960124,16.8624856888418 +"Q9VJ28",17.7706526592392,18.6741242145663,19.9269131846195,18.1678824296816,18.8709859596891,19.9796738339683,18.1336241907429,18.9022676030317,20.1395631601388,18.0808403608797,18.886500388938,20.0403324682484,17.9800915782974,18.9554256950471,19.9868252966088,18.2084990571308,18.8370085543234,20.0340084948068 +"Q9VJ31",15.6487392560485,17.4247855916959,18.6497039702874,15.2679800649165,17.3719864321708,18.6309991502703,15.5659571427916,17.5414771477571,18.5865577230519,15.4427189352147,17.4142142864545,18.6045789538005,15.7125173496794,17.5739516216375,18.7919509928316,15.6088898829962,17.7069630476861,18.6781374774645 +"Q9VJ43",19.311002889916,19.9920318275874,20.767527659068,19.503293871588,20.2242475248457,20.9962330211847,19.543861163791,20.1692798049034,20.8933098818163,19.6190270477057,20.4466400232132,21.2952000379592,19.6523710580239,20.245746168195,20.9272691371355,19.5437961662497,20.4590755315726,21.0305685695538 +"Q9VJ58",15.6724953879759,17.4985751103712,17.9316253371385,15.7686556067971,17.7358399366466,18.0001856352006,15.7499174241752,17.8184377435509,18.1605017339373,15.9237485232738,17.8024678605434,18.2384521977656,15.5564262918595,17.7555336260713,18.2303964272955,15.9048261727129,17.7366393651365,18.131841732024 +"Q9VJ60",15.1651354009632,16.7384201973671,17.6258412637703,15.5149887002637,16.831550417259,17.4152582413399,15.3327589275103,16.7823614799352,17.4864326509612,15.2328457574605,16.8530326753732,17.3223872771012,15.3900019331177,17.0064881047705,17.3832736637114,15.1350437339826,16.8034248031022,17.3115464520846 +"Q9VJ68",17.4990705423015,17.6103366702769,18.7781468530612,17.4044102517509,17.715514463767,18.8822076975897,17.3841562521767,17.4264515552902,18.5126755566784,17.6035994951709,17.4581946068579,18.8242809679724,17.4066914441542,17.1243650924262,18.3108030336996,17.4098182646504,17.0759558202967,18.4555239784746 +"Q9VJ80",15.3745480837951,16.0180343257948,17.4778347268196,15.6640307408557,16.2076005849503,17.3230343256964,15.7846839391211,16.314782432048,17.3420680679715,15.7795924711773,16.5101359992749,17.5167332566338,15.6542300524339,16.5601568893135,17.3859269662475,15.6629627759269,16.6168304403293,17.4298372127082 +"Q9VJ86",15.4282295111169,15.9178219204348,17.7578147351851,15.4504220852941,15.8552672994388,17.6270025757299,15.7793461062574,16.5433136984511,18.2122805685828,15.4736529278536,15.9193239033269,17.7970821195972,15.8627301760587,16.6758868397307,18.0702520582428,15.6023441886495,15.9680681492119,17.6238807483071 +"Q9VJC0",15.3552478748944,16.3602189912486,18.0728735671063,15.3689445905446,16.3220389359752,17.961187500388,15.3615014897257,16.2092226635557,17.9911195349108,15.3812959844858,16.2650843990174,17.8767105300931,15.4398170639241,16.4151364749127,17.9751187548932,15.496122561032,16.3694881931375,17.8474332077971 +"Q9VJC7",17.5213533786901,18.2375694454019,20.1566393743726,17.6162493559023,18.2017409193694,20.3066751849438,17.3114946318072,17.9807579176293,20.1258303774657,17.4643428820222,18.3118222157168,20.313784780808,17.2112734271357,17.7886202470719,20.3025479890052,17.2777749314964,18.3926475363838,20.3063995917812 +"Q9VJD0",15.0415031396457,16.1269077454293,16.8297871387681,15.1192807240468,16.0167982465596,16.6898858362167,15.0877010121273,16.1170772857147,16.8144364517497,15.4897938317593,16.473202836718,17.1095965316299,15.3185684126058,16.1698613359466,16.9506139118207,15.3707739578804,16.5180343017446,17.0353196560861 +"Q9VJD1",17.2847092177255,18.1176755946775,20.200133203026,17.4610551877162,18.1959017474145,20.2578648625995,17.2260594846793,18.122679418236,20.1428087194953,17.2626994121844,18.3764717580669,20.1687642565942,17.0544844032826,18.168184873346,19.9848017374288,17.3527001051019,18.3162650748412,20.0409426166288 +"Q9VJD4",19.9006152156566,20.5302047532016,22.0179997988637,19.9523979638169,20.6460757009403,22.0285148661446,19.8048149300634,20.3771440578925,21.9532724163049,19.7559952475468,20.5109658792087,21.9538775371941,19.6257293410016,20.4021011336881,21.7250125785128,19.9062303321924,20.5779407488776,21.9333503818464 +"Q9VJE3",14.8021953609462,15.3172605158662,16.2324058701652,15.0508285684609,15.3456469089053,16.4198473547861,14.6227962420811,14.8528760540082,15.867917434371,14.8399874381198,15.2586318904587,16.3551925604722,14.6294770563037,14.6956349867936,15.7761171477385,14.9403087613833,14.8934471420108,15.8290218724424 +"Q9VJG0",11.0850033397421,12.8464640500517,16.5819602145661,11.1362405428364,12.2644996881479,16.3237801357941,9.28760848186061,12.7059565314053,16.7253887701968,11.6466618123001,12.3940680941604,16.5713832182479,8.73239264560775,13.3206984309821,16.5584741554346,10.3349612517505,11.2388358791451,16.2459237919471 +"Q9VJH8",13.8697767369411,15.5680391263525,13.3087245697813,13.7497922687196,15.4047017311234,13.3816427613648,14.4721771021344,15.5538674932489,13.1861467870225,14.1507998305962,15.4046900658751,13.5019647122204,14.6815016298738,15.5239381546355,13.810828886783,14.102420312535,15.4965980091035,13.3496132151046 +"Q9VJI5",15.4773240266628,17.2624253720085,19.0202596487542,15.4931579967014,17.5486826158036,19.2596777722343,15.8691420938658,17.7460547077037,19.1115230538388,16.1748013234596,18.0324473820929,19.3320627274423,15.7079472529737,17.6035214719544,19.0567279701311,16.0746378125725,17.9186162408432,19.2077764123817 +"Q9VJI7",17.7959931267096,16.6903741906515,17.2935756293721,17.94423618989,16.6768531869455,17.6235933564478,17.7771563400426,16.621226771685,17.378632177149,18.0185404818594,16.7543479905635,17.7056042178826,17.7163903284701,16.3810986727961,17.4219821762704,18.2780405455395,16.9190436606671,17.5449593322054 +"Q9VJI9",17.5363978211842,16.9224169375266,19.0912466718629,17.400260138755,16.94468637031,19.1543353536119,16.7704217930752,16.835420926925,18.8769773296185,17.0062490261315,16.775430078281,18.9804831816927,16.2483139864338,16.8684399492185,18.8017846723667,17.0282522538427,16.8868229663402,18.7372062037624 +"Q9VJJ0",18.7017992767567,19.7039208983053,20.6411229997363,18.8079190005541,19.889488506689,20.6793970552041,18.6299170652926,19.9290077649612,20.5189197138198,18.9734146445257,19.9398454219184,20.7545586496417,18.6309433818145,19.8332101179142,20.5436666133663,18.7186018755751,19.7430594278806,20.6200892030556 +"Q9VJJ1",13.2829091534738,13.9822941407281,14.8936883441408,13.3598581345491,14.2921044644861,14.6888852287724,13.196696781735,14.2144942968569,15.1776596616217,13.374129255924,14.113360042303,14.8986732579626,13.5655118409424,13.7607049991994,14.6481902826675,13.3350964742053,13.6982857360963,14.7850252356783 +"Q9VJN0",16.3745133875693,17.9381490437204,19.2949393870675,16.0989864579805,17.6241914943509,18.7208015491566,16.292361618237,17.8355821804757,18.8940259825806,15.6081104717888,17.7414584081337,18.3463774490959,16.1777311169861,17.8244920347287,18.4564919096792,16.2026311526315,17.6038421914103,18.5632685865755 +"Q9VJQ3",19.2988649977811,20.0769114607181,21.3605603667545,19.3166583890286,20.2806094291439,21.4807439210029,19.5023783919744,20.4434401625102,21.5105939773619,19.5572939978492,20.5117314282167,21.7312524825443,19.6323624424551,20.5522669854306,21.7749962361036,19.9423893730177,20.6419979867547,21.9715975287165 +"Q9VJQ5",11.5755563544425,15.0024713435847,15.9402125194227,12.1872662275865,15.1245399353183,16.2813154959395,11.9953111652552,15.2141386008369,15.9207498655046,12.2701359437312,15.0803121954944,16.2751151653569,11.2866953635613,14.8411514018703,15.6832511277719,12.2685156991387,15.0818037374994,15.8410807878454 +"Q9VJQ6",15.1353883345277,13.4067182255617,14.1692521766103,15.1425354156562,13.7970828199636,14.1777461184227,15.3234469391693,13.3310266894223,14.1138286305048,15.2885521999434,13.6446501839727,14.6462842752657,15.389932475826,13.7515073019469,14.3867534947203,16.0480600911045,14.0915416039362,14.4480678759464 +"Q9VJU8",14.7714683091213,15.8944493813439,16.2345622660399,14.7593313285441,15.8655600858234,16.212948931736,14.8232824441681,15.8351773354789,15.9236783696578,14.8690743647376,15.9697662900297,16.0960271325514,14.6884913516864,15.839930203094,16.2070346858144,15.1735131045304,16.1781109345183,16.0129481038406 +"Q9VJZ1",13.3721718119363,15.4987597660989,16.9269997163779,13.5026980227445,15.7646969075686,16.9498444375597,13.7581509407025,15.6276426135374,16.8377308242889,14.0975064731583,15.6893079810579,16.9884058963797,13.695193964714,15.5609457863224,16.9031421936891,14.2471236852485,15.823425497525,17.0676920722456 +"Q9VJZ4",20.9299804670488,21.6915541046469,21.9535312103327,20.7483995743507,21.5866930059108,21.850431689514,20.6893462410353,21.5075770215827,21.7598127853285,20.4342132118175,21.3917464169239,21.6547591871717,20.6794329814589,21.5002387644374,21.822779611714,20.4641703770611,21.2476846398472,21.5486420155422 +"Q9VJZ5",15.7627367278829,17.1985402236844,18.3244310304855,15.8044299660912,17.3461333649135,18.328857939647,15.6036913435254,17.0584449744597,17.9459495891143,15.5841783166283,17.1794462869337,18.1044377696509,15.2877676020349,17.0924648826435,17.9506990926246,15.3929799158056,17.0722577929121,17.904899867407 +"Q9VJZ6",19.2453257823097,19.3584805826273,21.1925297433164,19.0045741862555,19.3624829211301,20.960961070729,18.8720498233963,19.3622855282342,21.0477123273108,18.9836435685347,19.104774894131,20.7580439812621,18.8709247918849,19.4166912078649,20.8960907816455,18.7609514096762,18.8111236638042,20.5890523628825 +"Q9VK00",16.3230044494198,18.5352931870679,19.0782446324897,15.6842958262533,17.4538140449269,17.9758733913537,16.3327736088628,18.4895746846225,18.9066691044233,15.9765772229491,18.0626745789667,18.5398464929182,16.3997680424683,18.6589730856195,19.0905481186414,16.9013323726296,18.7500894998578,19.3270771496663 +"Q9VK11",17.9549557148606,18.637945336069,19.729963439316,17.7100371672393,18.7752848172375,19.4858157660681,17.7736171287788,18.7825603009056,19.5384217834667,17.8842885383644,18.7074115196456,19.4020956051286,17.846983130938,18.9936601836736,19.819834323519,17.7437965684218,19.0289586495953,19.6589554731275 +"Q9VK12",21.17433765743,22.4528206285148,23.8530920634412,21.2305549359904,22.4149778994197,23.6584434206805,21.070115657992,22.2590835202062,23.5835795353387,20.9310145187912,22.1159795106982,23.5624718166465,21.1597147241341,22.3316347010996,23.5920342947667,20.8674444941613,22.0315389605937,23.2577459757524 +"Q9VK18",13.2265211332622,14.057208532517,16.1809051855312,13.7377822274864,14.1521209858421,16.4036441004168,13.3562453862428,14.1519537284426,16.1317551610206,13.5923468901773,14.2484789757332,16.3146144653224,13.2139676619833,14.1358974986819,15.9620842481836,13.123564904531,14.268192967813,16.1601218075536 +"Q9VK39",17.0374586457024,18.593863282657,19.5514239917431,17.0330555893784,18.5798492448781,19.3082369167229,16.7978331437733,18.2074202091462,19.253321871905,16.8625179547128,18.2457400994893,19.0165805293609,16.5716519903778,18.2177824638259,18.988560804016,16.6640686268981,18.4133657847512,19.0327846367836 +"Q9VK58",10.8359886729487,12.6171202917648,17.5118093035751,9.01947005721517,12.3242273555305,17.2842803269662,10.1340288129572,12.8338913077013,17.0708290137791,11.8134812300201,12.5588695243605,16.6127036864106,9.7439538967261,12.1239368442352,16.5425998287809,9.33278448731974,10.9752147715823,17.1223734373458 +"Q9VK59",18.203953283925,18.4466898024638,19.2878972687234,18.3764088886741,18.6858413751907,19.3465694679373,18.3572342567613,18.6257433340624,19.3469257395754,18.2321326794798,18.6820387564992,19.4492812437705,18.3811217321587,18.5940258118539,19.3114297680214,18.2428412520314,18.8197385873386,19.355313296769 +"Q9VK60",20.9867256503332,21.3316129646185,22.0734748453489,20.9363622093818,21.2688575256262,22.0436376533684,20.799525645954,21.2467124351623,21.9060170961916,20.7083931918396,21.1806106216681,21.877834700145,20.7427080825629,21.1710432540793,21.8732350572081,20.782445915169,21.34748778721,21.7151528754515 +"Q9VK69",19.5070690598902,19.6466526774109,21.7702425764612,19.4625877073281,19.5468680804355,21.7244101998342,19.5273570154674,19.516188103098,21.7213722882604,19.5408725689071,19.6542932847108,21.8919283143984,19.5137042926997,19.3535366247817,21.6154087609591,19.5435794061139,19.6247545599713,21.7265833345101 +"Q9VK99",19.4424919410427,19.557710773661,20.4263211254869,19.829534216993,19.6445530130506,20.7443123394716,19.6319873347339,19.5230775057015,20.6800364766879,19.9455658078544,19.8390215392649,21.0611724415416,19.1029946787249,19.5125652139848,20.7034194674829,19.4983676758791,19.9226947894187,20.7516720575133 +"Q9VKA1",12.1789039177419,16.7914929150536,15.4219426984437,9.92612532639798,16.8077649401822,15.4349179455113,11.7898428024612,16.7959946660623,15.1178295782807,11.976782489259,16.8556379176355,15.9222347695438,11.5235109699782,16.628885364157,15.4668116775864,11.0383065442844,16.5874145963246,15.5589968369423 +"Q9VKC7",13.3877694033469,13.9668660908075,14.0330799954311,12.7187418659445,13.7351568175733,13.6436125351649,13.3250647212016,13.8296150532678,14.174756985541,13.3945407406274,14.238302204638,14.4152029490246,13.6177639380151,13.9769218425666,14.1541926040026,13.2353303924355,13.6259375559495,14.5121263970823 +"Q9VKC8",17.3130310284665,17.7586180359487,17.8403498647846,17.1279607607537,17.5569734848122,17.8360010349482,17.4176307976189,17.8910504414992,17.9118975670402,17.2266825055982,17.812615273779,18.0624071434823,17.5013793735396,18.0088001830303,18.3287961857206,17.61499996275,18.3332705408943,18.3317560845647 +"Q9VKD3",17.5215442902054,18.0149367251579,19.5454047868043,17.6040373425039,18.1636015184372,19.6986190466413,17.8837895892962,18.5989851280543,19.9206426626995,17.9732352434162,18.5359392035389,19.9617105821495,17.8676146238187,18.7413853800254,20.073101000315,18.1285267790747,18.6354912824681,20.1015664802429 +"Q9VKE2",23.3796099068032,23.8051233595858,25.0515278694278,23.8013465104075,24.0952832817162,25.2475616655409,23.435651566286,23.6690866492487,25.0904515751438,23.4818482551551,23.8999111668844,25.2567784168806,23.4203374486818,23.7329730277528,24.8829584011444,22.9588297316168,23.478224892028,24.6973839526652 +"Q9VKF0",15.4586469542225,15.3014438696128,16.8077311295231,15.6434715497593,15.6313753988534,16.7918089371585,15.4988318542632,15.1217842718455,16.4475089313709,15.6452467938546,15.5480538976278,16.6500730538123,15.5484992743184,15.4004641846498,16.8393560637495,15.9509017815883,15.570483022842,16.6788437427996 +"Q9VKG4",15.2340278349768,15.3888018547331,17.5222557065874,15.3378483725317,15.4480104049606,17.5123473780996,14.9449052209938,15.1706069036317,17.1244846051394,15.189453070166,15.1216798453299,17.0548794478184,15.0150718421352,15.2636161174619,17.1619759825625,15.3413073438489,15.2912398442295,17.0614308938199 +"Q9VKI8",21.5798205438536,22.4073202274232,23.2529271513351,21.5381421547668,22.5012795703993,23.2713282803989,21.5027230805823,22.4357812939514,23.1740852584703,21.449814482447,22.3720632163875,23.2126078641561,21.3400172225384,22.4246968499081,23.1726918872065,21.3127149267385,22.3764248819349,23.0758775976674 +"Q9VKJ4",12.7279224792291,16.2500578191298,16.3580274577856,12.7610280017242,16.2200244509097,16.2400547010516,12.8136597987823,16.4655177822548,16.2438615952217,12.7552587013162,16.350331586463,16.1093489472981,13.136434406547,16.3578367708781,16.1052540959951,12.6982228353196,16.2944831663129,16.2695684343532 +"Q9VKK1",13.6176001187881,15.1342891222492,14.8933880069182,13.4015696331226,15.0588441706957,14.9937375369402,13.3038591417071,14.889583117624,14.9124479163444,13.7976298485274,15.1026135573807,14.9861209190348,13.585960520171,15.1488767443908,14.834331087318,13.3410614635877,15.6160238360445,14.912498466172 +"Q9VKM3",20.8473322065399,21.4754439632438,23.3795071484234,20.6324763842648,21.5164565525446,23.3221866678399,20.8058127730925,21.3718986080348,23.0857196452561,20.7103406560158,21.4094837632159,23.2412795346906,20.8568808823161,21.553707448403,23.2546671956965,20.4503101171156,21.2057257593886,23.0053315454715 +"Q9VKQ2",16.726077720632,13.5181057405376,17.6123426176291,17.02938402978,13.9315087087679,17.5219574328672,16.6039896982539,13.4558681381609,17.5420253363036,16.7595149843221,13.6510129616664,17.6507429283499,16.5291527337692,13.5512059661392,17.2179715263819,17.0277169459664,13.5966279538785,17.5061461915631 +"Q9VKR0",10.1822036073842,14.7147215065647,14.7862237988975,10.0251421152403,15.0122054683282,14.4808158002803,12.1674837798192,15.0132172964991,14.6106952133005,8.87951403103679,15.1316303385965,14.6313914330452,9.65551584661988,15.1789552390941,14.5460278608407,10.4567448245024,15.0960546542907,14.7268508885507 +"Q9VKR4",18.4257107749411,18.7507244365557,19.3065862846369,18.7687622652731,19.2784527400638,19.9738907547902,18.5232113211112,18.954927370806,19.6168881523457,18.9538425779199,19.3935438477046,20.2503301373876,18.6497016812061,19.1460011136449,19.7906692266702,18.8376449172539,19.1291825109979,19.9305008807723 +"Q9VKU3",14.0599563471009,14.1085513224472,17.8474613837705,14.231673848504,14.1690070455528,17.8741923682739,14.3896433861361,14.4368537139732,17.8493182312662,14.4474181528115,14.4949201693489,18.1990092900607,14.5151901951002,14.1456373538059,17.8617959408882,14.4902296789937,14.6010317136931,17.988244950045 +"Q9VKU5",11.2904955489563,14.337722587583,15.9751004668043,11.4556253932603,14.4466869038271,15.9590130276839,11.6836824583204,13.6075096506844,15.2622954757376,11.1488174126964,14.3413019649447,15.9185551839449,11.1046080615112,13.4218010571907,15.2672913596638,11.1908217396259,13.4135938029781,15.6810212741419 +"Q9VKV2",14.0888871809413,14.9831654721159,15.9143831650901,13.7765288546602,14.9212646588645,15.5101596783624,14.044806878596,15.12517983583,15.684291492809,14.3255392486109,14.9632230669428,16.3028950517815,14.0227331779231,15.0789451837773,15.6477908468336,14.2158341054563,15.0115755418857,15.7501508817004 +"Q9VKV9",13.8975776833444,15.8305686311652,16.7167998861894,13.8330135730089,16.2629599535109,16.6930030984489,13.9654883961727,16.0794656915953,16.7677875149729,14.1299547875093,16.1473308412695,16.6916976305136,13.9116051871365,16.1543340852254,16.8521873838216,14.3231112813724,16.036049752245,16.7844437986047 +"Q9VKW5",15.1853917739891,17.2327960269844,18.9375022821009,14.8957092135902,16.850218902707,18.4856787169996,15.3814178789627,17.2092863709936,18.5927018688891,15.2275776207058,17.0520813934399,18.7066724605434,15.6909439744487,17.4677999472777,18.8979409297732,15.2896734464534,17.0662377103453,18.2915542758293 +"Q9VKX2",22.6535727314034,22.8433011673181,24.0907901903785,22.5999366478563,22.8668771110868,23.9195164371002,22.5116673191258,22.8933687603804,24.0059900371744,22.3977480028894,22.7540821878876,23.8995173584139,22.484812260799,22.9790481559621,23.9691115624111,22.3878946360666,22.7967348146171,23.8909854370153 +"Q9VKY3",17.7726373708947,17.9435366334478,20.0994877229189,17.8588801984465,18.1780184550643,20.2508282145519,17.967674343955,18.1341897202572,20.1949634614612,17.8853183185707,18.2501944964415,20.3445803379174,18.1354412114763,18.2335878253114,20.2488998894265,17.886901746782,18.184038822389,20.199762379129 +"Q9VKZ8",17.4081246460614,18.896073260222,19.7380312072547,17.2768468851492,18.9087931270353,19.8418239512989,17.2896979004794,18.8377451426895,19.5229001316999,17.4873893417205,18.8875254827984,19.9510515207589,17.4410185493647,18.9792624050358,19.8482714641586,17.8111150401411,19.1221915308516,19.9809659693445 +"Q9VL00",14.4603803608495,15.6161574769402,17.9073369212925,14.7320437101994,15.5688613811093,18.034546744072,14.3427897681196,15.4378722868247,17.6680202566739,14.4092255595677,16.147552447,18.0092304992261,14.1842863091445,15.328166499098,17.7954561971224,14.9993469868916,15.3337570261629,17.8073240075855 +"Q9VL01",19.35946174207,20.916548122874,21.6694867310488,19.3063056070168,21.0045749161421,21.5948346334439,19.153003124787,20.8035236997628,21.4489342658399,19.0302797766824,20.9005310801731,21.2706358524009,18.7119544323552,20.6995623512212,21.2366192245359,19.1390395238695,20.7446022340641,21.4369958823983 +"Q9VL10",14.4891015651651,16.9175827642839,18.4686532409988,14.4134370189011,17.0664403503836,18.2276889973426,14.8557806361732,17.2683628060295,18.645800297478,14.6242546690614,17.2883498992064,18.3748084022617,14.8725339488507,17.3669481390652,18.6055128939072,14.5018412316635,17.1380715241014,18.1192027035618 +"Q9VL16",20.0097452737814,20.5992951727005,21.7505584163919,19.9616354492564,20.6669171093369,21.9583399469949,19.9058670888256,20.4612482204403,21.5807427641703,20.0347800078473,20.5751302301015,21.8640105905116,19.8797658874088,20.3476809904825,21.6041437695476,20.0335479116277,20.465241793984,21.638087511323 +"Q9VL18",19.9385784301254,20.7345276938613,22.1211851517799,19.8375475944665,20.5327525190968,21.9097699613584,20.0279307681206,20.6159800385199,22.1223803964572,19.8650412449393,20.7036685799201,22.0125476513884,20.07937684721,20.5955447926936,22.0370650844669,19.893207858139,20.6845825745577,21.8999602593514 +"Q9VL66",13.9664073180089,16.5056102672003,16.5785221189409,14.010808423208,16.6445881308764,16.6183669355011,14.1533478191865,16.5334604753622,16.3877217100377,13.9801583560545,16.5956920629738,16.6525951980613,13.984117749239,16.7615549165842,16.8119074487795,13.9636166065918,16.6692830404683,16.6298315538559 +"Q9VL68",20.1280795210823,20.9413250117674,21.2048555468904,20.228828396217,21.1162970605846,21.205587704533,20.118610096904,20.9491038353857,21.2288135499733,20.2084481244245,21.0716596329885,21.2482080256307,20.1129588826829,21.1092131887617,21.2644227078499,20.0897079850244,20.9901978848061,21.1665314401607 +"Q9VL69",15.7433223574914,16.2175148205644,16.2784296253685,15.3449083731523,15.7893333222562,16.2346573752494,15.4786042031129,15.9576314914335,16.5328083491927,15.3508083013896,16.1241973553269,16.6676581822537,15.7935921005891,15.9504964204973,16.7562510919502,15.6495851846666,16.0476167806675,16.8300317163592 +"Q9VL70",22.4073467223149,23.0516504558792,24.4971768637587,22.8276249829913,23.4077544265904,24.8111283428182,22.4695382906634,23.1277143908217,24.5922632433806,22.6759387021928,23.4597812519672,24.8773123662661,22.5425629221511,23.3020968723503,24.7029867502954,22.6487944531228,23.3223930167422,24.7254046765284 +"Q9VL89",16.0792981069617,17.3527375110276,17.1491667609914,16.0249753604179,17.3486691724154,17.1716483236128,16.0325317161624,17.4112559057302,17.1220471217242,16.0839650569631,17.531605710832,17.156109980337,16.0938382085721,17.4225525051765,17.135414479749,16.1348972600869,17.466247510312,17.1001889088059 +"Q9VL93",15.6788633044997,15.0755182417023,15.2769273249106,15.9583574762986,14.9591199118791,15.1061112559605,15.9172725750435,14.7691352625039,15.4813012985262,16.0091456554611,14.9914908492604,15.3530582100822,15.9777539050188,14.9832268750685,15.1132867614359,15.979751542805,14.8261687297247,15.0154267894404 +"Q9VLB1",15.9721457595063,16.7377125187555,17.3054702564952,15.6887856527511,16.7259017897616,17.1115104187899,15.8768543576696,17.04917707495,17.4223976739935,15.7111767243362,17.1146771489433,17.5672289296444,15.8903139116057,17.1550078859203,17.3017489325898,16.2512050385013,17.3212301540047,17.6432242517275 +"Q9VLB7",19.9273986476833,20.6985113212754,21.3375236954723,19.8129105037295,20.7876069182941,21.4673750164989,20.3162413042041,21.2791096481032,21.9351213860331,20.2403137845877,21.1536241710833,21.8792812733376,20.4073342081444,21.6192087163388,22.2548632482705,20.6755405224133,21.6383756830804,22.3235460188721 +"Q9VLC5",20.4870862698723,21.1679257347629,22.4898614573994,20.4990700667834,21.2909162949881,22.5760641768369,21.0492124390204,21.8402649836806,23.0532049336572,20.9170456450545,21.7714125493668,23.0783851336037,21.138246945194,22.064984054325,23.4205597629067,21.058270387998,21.8125719051766,23.2253384913204 +"Q9VLG9",14.0806187700648,16.0535265750155,16.7807680967949,14.3886591501523,16.2416577790139,16.988032035038,14.0830452971124,15.9313313513821,16.7906074762411,14.2192628324694,16.559691571561,17.1148903443561,14.0759387235433,16.2284180382541,16.9832253994916,14.1749946542329,16.0886812900951,16.756593667262 +"Q9VLM8",16.6870100458132,16.668872310731,17.6934157528317,16.2242398852031,16.5198992360305,17.0766982534878,16.8303091590799,16.7680922389479,17.7729078524047,16.3487921253007,16.4660296342881,17.243425544288,16.7464448857058,16.6745692318772,17.7079633096247,16.2769542309571,16.4569779226536,17.000031449521 +"Q9VLM9",15.4564390735051,19.5336706863726,20.0867936860708,15.4743156437487,19.6288096512107,20.2094624307446,15.5762383435645,19.4092738773405,19.8935964642892,15.7534727558022,19.5789621077541,20.330336890569,15.6903983937261,19.4103503554587,20.0225195272453,15.6451869775826,19.4896807228621,20.1376905405315 +"Q9VLP0",14.9321055521127,16.4934362053032,17.5501141676248,15.3028781511421,16.5333482825863,17.4368899570072,14.754756740751,16.189628980964,17.1068762461541,14.6813694517153,16.3136444587841,17.2312496951439,14.816087952878,16.0421707444292,17.0443456775412,14.5151390820843,16.1607876571735,17.0387490043177 +"Q9VLP1",17.3401965061297,18.400407974417,19.497752789425,17.4867704869246,18.4491024700769,19.5019952149063,17.2433540078443,18.3015368721311,19.4666098835683,17.6437739855803,18.6168370356101,19.5979480241998,16.5481951878512,18.6286614466641,19.4638389405656,17.3415830515868,18.6845712097401,19.3720475906447 +"Q9VLP2",17.8191190520542,19.7060379288103,20.5621370698374,18.0603111395572,19.7935031957452,20.6933042578328,17.571270853293,19.5165835173575,20.3886095475767,17.8633208741912,19.7009670207822,20.7336949445342,17.1657292892966,19.7010997378692,20.612138195645,17.4313761541387,20.0054318976536,20.6974841647915 +"Q9VLP3",17.2784885696641,17.4923363684874,17.9629283903887,17.4437436124727,17.6592161910895,17.9041942028951,17.1695390486344,17.224676245894,17.7652881307091,17.2601147751177,17.5215506334185,17.688704098613,16.7756507569394,17.4769060122362,17.6382731143262,17.3164543101572,17.745732603488,17.7656194108578 +"Q9VLR3",14.6695022363532,17.2980774022212,18.4329160381552,14.7899155158756,17.2385335072721,18.5637296726497,14.7493658453989,17.3379316585889,18.3259975016253,14.5502572642478,17.0983709049157,18.2139264244609,14.642984579476,17.1644401544071,18.2578299507898,15.0043143263965,17.3404275708318,17.97118570827 +"Q9VLR5",17.1268350987354,16.5199210688189,17.8665986529498,17.0731454256043,16.3536074829573,18.0318372252948,16.6764429747255,15.9723165151624,17.7431939574757,16.5525125477247,15.8975784973615,17.7196578422086,16.8791099706646,15.9008291958195,18.0503232504523,16.2286508332025,15.6531160517131,17.4698961866112 +"Q9VLS4",20.2789271375177,19.635902133101,22.2599374715018,20.2674090475753,19.6538119584917,22.0726413451198,19.9052265078798,19.5384844520363,22.1403209982782,19.9944219201875,19.6058598331772,21.9994111753771,19.7390287498325,19.7298812114926,21.8621220372176,20.0927786936364,19.764747141066,21.9976607571845 +"Q9VLS5",14.8201595105617,15.096248009186,14.1055594512457,14.6343893492921,15.2475327404225,14.1695389229858,14.7040668157144,15.2714763803486,13.8697847195687,14.7308883772462,15.3461418489269,14.1410405365701,14.6529143866026,14.9500938878585,13.683056012845,14.6913301945136,15.3322165162486,13.5779955471798 +"Q9VLS9",17.9261898686873,19.4097408404173,20.1192916354626,17.8151591608456,19.3711243025636,20.0592895924048,17.6979307277565,19.2820203105538,19.87794713939,17.6276136866303,19.3135354304061,20.0026226098104,17.5237609537704,19.3484260792239,19.9988836310146,17.2285869556469,19.1581968143526,19.6474861052531 +"Q9VLT3",18.2586350232821,19.4048737455813,20.1962643806926,18.2720658507774,19.5194054251737,20.3049118738274,18.3764491121031,19.6711853825254,20.2315295744794,18.3344514357226,19.6031200014054,20.3270531003956,18.404708092386,19.6901343221053,20.3283531236644,18.5462053891972,19.7105138190732,20.3744392213009 +"Q9VLT7",17.2204192031579,18.2174242394941,19.1444565813409,17.2053781149301,17.8132516752723,18.7004034399908,17.1689613940144,17.9595744757753,18.8436025291394,17.313775120025,17.9614240179411,19.2058225761025,17.2040987376902,17.6993628913508,18.8583000670446,17.5707818582169,18.095337663222,18.9683095862702 +"Q9VLT8",13.1457647968284,14.1796625694889,14.7991955031881,13.0541692825361,14.2674414658912,14.6322047352635,12.9098407881864,13.8528767661833,14.5938439925338,13.2130829766625,14.2653529516599,14.6227087260729,12.758526580534,14.1211519738597,14.3821467501906,13.1644173097129,14.653547584536,14.4994657875186 +"Q9VLU4",15.5227723289067,17.7756454536179,19.0476953269121,14.9728984443674,17.6631948047115,18.5339475764753,15.3770119898848,17.8255377302017,18.945845791859,14.9894577285068,17.440973223686,18.4527477204295,15.2776304865527,17.7086041122135,18.8609066293344,14.9620441316674,17.3272537210014,18.3206837039402 +"Q9VLV5",16.9072167257401,17.3292895470009,18.2186393560607,16.8081566761498,17.3425251317645,18.4094617714967,16.8942084113876,17.3266540999311,18.1963283637637,16.8009761017079,17.4386085688906,18.3755875106007,16.8305297576462,17.3208735542118,18.3017051077834,16.6566561351914,17.3095536927081,18.2083675879912 +"Q9VLW8",13.8475507270744,13.3774065671828,16.093094704276,13.8222540083537,12.6730289806682,15.8250300912494,13.8446383405507,13.0865286477202,15.7786579875211,13.9918349813266,12.8575364428526,15.6130639188308,13.8352238807412,12.7592812183362,15.7608779748944,13.9459086344751,12.0585640757494,15.6056936886048 +"Q9VLY7",13.2950278392377,15.8463069126098,16.4524674548818,13.402654447841,15.7967609332164,16.5542832439686,13.633678385143,16.0052407836268,16.7644403482126,13.5275641390866,16.0962520510273,16.8432173753395,13.7724328640546,16.0224068679494,16.996929306215,14.0492063573683,16.1336495497579,16.9117564144511 +"Q9VM07",14.8217385333015,16.4526430591209,18.5036602692809,15.3757997191521,16.7884996193322,18.622007599123,15.5910427174613,17.0703460510586,19.0916238728979,15.6854203516528,17.1248999500242,18.9746021425902,15.3046104625603,16.9238520521923,18.7229988966209,15.3729670114443,16.8579944941748,18.7237998997103 +"Q9VM10",16.1811057424848,16.7221237723822,17.9922834783146,15.9554608853907,16.5949169058341,17.7696503295335,16.1922615549576,16.7296755847647,17.8270910076225,16.2918379300111,16.7776798218406,18.052086176225,16.5510146692366,17.1985869670124,18.1674823635996,16.6514612322658,17.279074550834,18.3684001756344 +"Q9VM11",15.7173603545949,18.2440149077197,18.6376907501918,16.0513737619147,18.6233666814682,18.9649690473939,15.9669365696279,18.5322359173581,18.7078398765852,16.4308086313388,18.6094465495904,19.056299857576,16.0397214736636,18.5243340337423,19.0321675442496,15.9907299545347,18.3899611288056,18.8192109525228 +"Q9VM12",17.7473363702562,19.1694547688558,19.4395818561821,17.7067771188858,19.2334228282027,19.4706001446909,18.0594707436747,19.521228940397,19.7404762867931,17.8664955309737,19.3073052959497,19.6052022468231,17.9079243204921,19.6431799585903,19.803131867427,17.8747802438046,19.447535365079,19.5437920898792 +"Q9VM18",22.0025977580678,23.1816792648561,24.4720896982342,21.7177640638982,22.9296881275346,24.2401276661392,21.7365956950896,22.9526560805689,24.1297668623994,21.6353484938772,22.8325747002299,24.1457081248242,21.6789612535748,22.8516830000448,24.1383905851485,21.5693861365688,22.6176762123533,23.9138986158225 +"Q9VM33",12.4588380670367,14.2172329210276,15.172704114995,12.3059031908664,13.9984805689423,14.9628417122134,12.7151519487061,14.3417572657592,13.4823099441467,12.7076375924355,14.4588118381882,13.9248456442212,13.2943724126583,14.5652904359542,14.7749140821055,12.5267469549546,14.4359973039594,14.2183953778752 +"Q9VM50",12.0747958494586,14.531077770662,13.3756493060762,12.5730318824589,14.3189335210932,13.5341417435731,12.3858260442551,14.29273235883,13.3411693778999,12.5316199930458,14.887064023575,13.9069984991921,12.4408949721459,14.407499946983,13.5749987876832,12.3172052482867,14.8512619591267,13.748219065169 +"Q9VM58",15.10053937997,15.2313619376598,18.2223431552927,15.2610425773766,15.3183857596003,18.5316006463959,15.2666141845335,15.5050489736971,18.5692918973969,15.2736349967181,15.5968358854223,18.9661447349743,15.3515957808182,15.4741674396792,18.603798842943,15.1541855063551,15.6881859314037,18.7815594622961 +"Q9VM69",15.2533819544568,17.7355290435973,18.2345240625023,15.0521537360898,17.5502020888857,17.8199735335557,15.4419789437387,17.8533299391338,17.8871102287342,14.916923992668,17.5709869370676,17.7048586289881,15.1330225821065,17.6668246766146,17.7379859139787,14.9223089927985,17.4848217562098,17.206074398186 +"Q9VMB3",17.996760005826,19.3845223097173,19.3275935070755,17.7306359473815,19.1442273820268,18.7393665428464,18.0516049852347,19.3017641280239,19.1035022053482,17.7747446029388,19.2515919627032,18.8387898368817,17.8449595162434,19.3304669591048,18.9523475360955,17.8997690274226,19.1321268585848,18.7448454140384 +"Q9VMB9",21.3730276635297,22.3401103153729,24.20633709623,21.6739146398926,22.5039597405907,24.1071537509026,21.2736948088092,22.1645005133656,24.0224906413802,21.2388447716329,22.1977429896617,23.8106183052782,21.1671695177133,22.2959111403481,23.8947964840186,21.4181212324098,22.2850783960022,23.8960815154466 +"Q9VMC8",17.2575905269978,15.6700941410295,16.1098444134138,17.2168574385557,15.804251997493,16.2404364832286,17.2306866769843,15.5314131775167,16.0290996000106,17.1232478444279,15.8322984979531,16.4112880431029,17.3165482721155,15.3475751586644,16.1520298333962,17.2149091406548,15.7833028000533,16.2080270813398 +"Q9VMD3",15.1697100881625,18.1770247485348,18.8198620457739,15.5011006672572,18.7766922992343,19.1973438116009,15.4564940013922,18.5515343716469,19.045818940405,15.8653602850409,19.0101905322979,19.3414643450159,15.2353958918371,18.5983712478317,19.1092549718474,15.7379927683521,19.0734576226504,19.3789757930635 +"Q9VME1",16.5180825357478,16.5104364244024,17.4039693515456,16.6323283964218,16.3999482315006,17.3084777459525,16.1261055455284,16.1850803147392,16.6319248416854,16.2476222091219,16.2584639542531,17.0884801881475,16.1394047924274,15.9962837267831,16.612612161645,16.6757182517458,16.2719723375334,16.8492835933866 +"Q9VME3",14.0937458995635,15.2558641409647,17.6280622150516,14.0302247199922,15.1946768614684,17.8820366019064,14.3207974035305,15.2609758195645,17.7338148526576,14.3123383307619,15.1898361626647,18.1677474384683,14.1799432762744,15.1935554743623,17.557196297136,14.4962817688042,15.377168601933,17.7558610295959 +"Q9VMF0",13.4555983599203,13.9021586952656,14.2073595270125,13.2788455889134,14.0588963071631,14.2788393138178,13.0623507028417,13.7644545895734,14.1714729883535,13.2318608114403,13.7394783924341,14.2885765208076,13.0330686051833,13.8691053350576,14.6435946187217,13.1196846646266,14.3698357425348,14.2962886337816 +"Q9VMG0",11.1741091147367,15.5531016086102,18.1474429211319,9.64684730516738,15.6243192643216,18.4779701101358,10.2487795640036,15.4476355721366,17.9736176065495,11.3289306274847,15.4323318157893,18.3619689312138,10.3453089340672,15.3267366930832,17.9486565988346,10.7556718726314,15.3144545492587,18.1840562974426 +"Q9VMH2",16.2312582272737,17.591004304804,18.9658966899132,14.9789897392759,17.814475691454,19.0270232637826,15.0305060794286,17.7143358728864,18.9643169639333,15.3482389727447,17.9300090773596,18.9827046574443,14.6948078078621,17.7882709146135,18.9449559426137,15.1430003937501,17.8377843085814,18.9182634999898 +"Q9VMH8",18.4137550152404,18.6974971839606,19.2341206908443,18.4533564849068,18.7867061530243,19.195707138568,18.6004912805616,18.8385389480369,19.4200476137172,18.5434261717057,18.9989343791289,19.5157487847808,18.4943423642378,18.8395264354081,19.2913965202818,18.7421116325706,19.0116517407482,19.4769577476963 +"Q9VMH9",18.7907674824631,19.72426438447,21.2362347660184,18.8204880494319,19.9472669930276,21.3292267211492,18.9035805172888,19.9245242312313,21.3423616545723,18.8507919339002,19.9760065960669,21.5109625636929,18.805305782399,19.9667696915741,21.4977907164514,18.9866557156149,20.0600053710914,21.3268361974427 +"Q9VMI3",20.004780093071,19.5015500138246,20.5431910731688,20.0737978659507,19.4720394589449,20.4960070943927,20.2011661117783,19.8818627469834,20.7531444413623,20.0326565787886,19.5990911141115,20.6283628806042,20.1756926679955,20.0788043815947,21.0617359038716,20.3008208824392,19.8177466745328,20.9287829852379 +"Q9VMM6",17.368923839215,18.4678840450664,19.6708832881182,17.5008045079645,18.4047763007414,19.5195964454436,17.0818733770339,18.3284156181219,19.4360863748835,17.4539592701541,18.3816732874903,19.4418480238883,16.5680673163644,18.4743717836879,19.2658449327508,17.2532099538337,18.7268083052531,19.4075370854667 +"Q9VMQ5",12.0294337117732,13.9942752672045,13.8762125481888,11.907937105307,14.0885817269663,14.0131022347376,12.3902098674395,14.5319476064332,14.2122134726194,12.5779186692174,14.5255649619119,13.9626019565508,11.895090491741,14.7741798913149,14.3894491423357,12.2850937684218,14.0388711029969,14.2606374863418 +"Q9VMQ7",15.429963021612,15.7802770116419,16.6284023740084,15.3551542007379,15.5839563411664,16.6453260857598,15.5268749064886,15.8903271859698,16.5299874711339,15.5306992432986,15.5568195897839,16.6656674268418,15.5266419896695,15.7643759683884,16.5736649087034,15.9147810716208,15.3691994394062,16.2337770352994 +"Q9VMQ9",21.277385533549,21.6501385708312,23.274412259496,21.4814759202295,21.6602282020035,23.1395240601337,21.367146579523,21.5526269566311,23.3229929345399,21.4375882826354,21.7729014845755,23.2805432472655,21.3645634299583,21.7256075132982,23.1461877087853,21.6655050514913,21.7054640995121,23.2200542137851 +"Q9VMR0",16.6742640727299,16.5412329658622,18.4530920555877,16.6034148728109,16.5524344997096,18.6007576868453,16.859129763671,16.479463163598,18.4721970047774,16.9333665659926,16.5859669922914,18.7599423267966,16.8448133205944,16.6089182705143,18.5366089355766,17.1433645278662,16.4970718975553,18.5993729250421 +"Q9VMR6",17.6075187586033,19.4012999349812,20.1167631406779,17.5674629932813,19.5052714456281,20.0814484362769,17.400160266433,19.2297771141953,19.6608864009633,17.2153555639864,19.1215825405031,19.6437558340629,17.2566680527968,19.189280497589,19.6670153424538,17.1867913771191,18.9287785629284,19.4935774919609 +"Q9VMS1",21.0261839931964,22.4309653559798,23.908803407826,20.9646446544179,22.4070679336056,24.0773996327028,20.9423063576251,22.2890121622033,23.72483621093,20.8270101357031,22.3343055233885,24.0325625753569,20.8904882204351,22.1520144994902,23.9155623270754,20.9329560877081,22.3559175412703,23.8054883933383 +"Q9VMT5",16.1574725565245,16.5291098060486,16.1785731429425,16.0676265639013,16.7136497661663,16.2096276661674,16.2785193183796,16.9260472757598,16.2868954916068,16.1213272825239,16.9795424393388,16.3493011418276,16.3290704159303,17.2814207859332,16.6888705912158,16.2343086948429,16.9820029350718,16.3524683858903 +"Q9VMU0",19.1477410297662,21.5797360885275,22.8478890008276,19.3767065358163,21.7730396179624,22.8385246317945,18.9944891280663,21.5397496748832,22.7635392392818,19.0235951496012,21.488509048581,22.5148969798206,18.7862909307639,21.6172922564404,22.6183600965295,19.3040780596652,21.5829447904684,22.6234438896573 +"Q9VMU2",15.9360098976185,16.5451381827151,16.7153874082877,15.8372730553865,16.4273594710513,16.6361367067639,15.7662206951435,16.5262627439647,16.6046210523373,15.8843630833904,16.4156147379006,16.5428188508799,15.7020827424128,16.4503452894705,16.660559360959,15.7853377672823,16.4271050505588,16.415240066105 +"Q9VMV5",16.6272387557013,17.5508040423165,18.9830367122396,16.5215777662649,17.3457752080201,18.9376807912126,16.6890773380988,17.4705232344364,18.8609196959767,16.4247743633904,17.3335004451247,18.9921527961722,16.6369532929656,17.3551251052286,18.7874146541172,16.5451015169939,17.231788338979,18.7634630687909 +"Q9VMW7",18.4890362325264,19.5209780305219,20.8135278995557,18.5338322629332,19.4132552394231,20.630326929762,18.2931410031207,19.2821200839324,20.6332448872121,18.2444985039076,19.2639552093299,20.4703739317319,18.3445110714905,19.2666147954508,20.4706853107213,18.2237322632629,18.9878537404462,20.3726596066099 +"Q9VMX3",12.3327865118055,13.9416276010804,11.4062601086404,11.8889260834914,13.7555251326353,11.9517368377921,12.20076429186,13.7098398769987,11.6323191624574,11.9014146377496,13.9839892920842,11.2702277111554,12.1176862866985,13.8784466386883,11.7325862587938,12.0587086957891,13.786668759235,11.8256586867274 +"Q9VMX4",16.636225741205,17.8494141551907,18.1518266295977,16.4491297644237,17.6249010772407,17.8551753606662,16.518789660451,17.4765405856148,17.696114229141,16.4076501423243,17.6081903860511,17.9147151036607,16.2348540964355,17.1733563406634,17.8554043763341,16.6237034893708,17.4749628977467,17.7989961497059 +"Q9VMY1",13.5184609742366,15.6007584475835,16.9913964405027,13.4031665608712,15.8566007295604,17.1431143373664,13.7513171169319,15.8333574725436,17.2372993014052,13.9160765655869,16.2117953658019,17.5244300131651,13.1877637539785,15.7568644656663,17.2886162915306,13.1538649190854,15.9492520349705,17.4806956812589 +"Q9VMY9",14.410548561821,15.2866752296473,15.47019414632,14.1300516486321,15.2115711766412,14.8759871876049,14.9025629717254,15.3294227787095,15.3695317555892,14.557957911693,15.1295542563486,15.2517320163013,15.0431862272494,15.3566401609329,15.5099564657261,14.0140937321859,15.0660960413229,15.0274167569556 +"Q9VN01",14.5423430348132,16.6282510085484,16.458300850134,14.2799268707452,16.7684806899166,16.7144682371509,14.4308349322209,16.9482689212369,16.729874805975,14.6221171209195,16.9825460145082,16.8506564608971,14.5399406533479,17.0401211089872,16.8913862569711,14.6896436086451,17.0961369251123,16.923508131078 +"Q9VN02",16.2586970758501,17.818916888613,18.277453240118,16.3013471647864,17.6047377019485,18.26011359352,15.9947395803321,17.6077221816108,18.0652473770049,15.9496605770191,17.5599506275015,18.0379557611971,15.9998086697179,17.629012478624,18.2133254886872,16.0374774097494,17.4601735442791,17.8766060712631 +"Q9VN13",16.0655339966199,16.4808736372686,17.3394372637347,16.1609667300484,16.509745589958,17.4207883045587,16.5899774592112,16.8752820940449,17.8898659959367,16.6204715744256,17.0117838545513,17.9331171862362,17.0359577417402,17.1915525010422,18.2743559370704,16.7932310834252,17.0159038465307,17.9286063444065 +"Q9VN14",18.0569536896859,19.1002131502009,20.0534657136542,18.1653515360603,19.2273881187624,20.2421591334194,18.2812652273292,19.3657933829988,20.3362671498863,18.4911933592598,19.488833402199,20.4967930006769,18.226946884426,19.3702288788905,20.3983990342932,18.5600927082839,19.5087890565275,20.4757541995421 +"Q9VN21",20.9955860548284,21.6250723753724,23.3005653054156,20.923094521203,21.7049788604299,23.4053541338874,21.1219501993556,21.7066679518368,23.374788106348,21.0053753986177,21.7384135016867,23.4905070737521,21.0178739547769,21.7163302516497,23.3572000831801,21.097311237809,21.7501979783033,23.4489427846074 +"Q9VN25",14.8274465005617,15.7475044733162,14.5902824806786,14.6828133587395,15.6340126475154,13.6868266184894,15.1340163872323,16.0997691668859,14.4778854663836,14.7191207533618,15.7911400363903,13.8860552011923,14.9550499234614,16.0333140470907,14.2100613624236,14.9411005654481,15.5117278375837,13.852377228037 +"Q9VN44",17.84714990782,20.3489273062725,20.9681094394211,17.360625739069,20.1343605350662,20.7081607992578,17.7169824741524,20.4262592688635,20.8443179416183,17.514478281088,20.0615632597024,20.6777822606613,17.6500314593166,20.2599192333925,20.775529779744,17.5134916866841,19.8930260010672,20.3629949693906 +"Q9VN50",16.730361926168,17.8799653682897,18.6436904178912,16.4564082171852,17.8069676171484,18.8955038002776,16.6865360295229,18.1903743021996,18.8654861771176,16.6895217668732,18.2164550160885,19.1212270637196,16.7889850165226,17.9462756922492,18.8571820360154,16.6976405358452,18.0343995455251,18.9148070067293 +"Q9VN71",17.349385613783,18.7991660049489,19.7700873758157,17.36930597097,18.6437960844271,19.797406627875,17.6498383148268,18.8015260040166,19.5719209596293,17.4564737416483,18.5544750178707,19.7253483666226,17.7916215200504,18.5646764428459,19.7982446162511,17.2515018457695,18.671671436854,19.6518869125533 +"Q9VN73",16.8501603321325,18.8728861473303,19.4504506962087,16.684117876136,18.777660601251,19.1782081611865,17.0245175053104,18.9715078960409,19.3586117460934,16.89473324059,18.8808666966613,19.3613525641027,17.1998204786958,19.0415242382446,19.5012748242725,17.0791653652016,18.8991423798776,19.394353565096 +"Q9VN86",14.8342462736854,15.2064138123262,16.0798653816224,14.3943923631306,15.0485295763021,15.7399884363682,14.8095121953796,15.0375074511421,16.3312730957921,14.6015474453001,15.3197959910862,16.0924252649451,15.1615891235357,15.4496367164608,16.7111990886803,14.7702340513472,15.4008332345907,16.0802664687787 +"Q9VN88",16.1584059770846,16.7103925537877,18.4240853344669,16.4425115757604,16.8606170091868,18.2460922095236,15.912414924843,16.5379810318673,18.1923779755966,16.2262365274792,16.7810791687304,18.3396297830253,15.9326090984821,16.6887107511278,18.0781992028445,16.2808646734486,16.5208176914585,18.1429159534171 +"Q9VN91",18.5503569556933,19.2452423089981,20.4774217524008,18.5720072889864,19.4387052302669,20.6895746650954,18.5679646374547,19.3598247408744,20.5474400598566,18.8197486952363,19.615830781537,21.0810215632786,18.2484565690391,19.5534205701429,20.8857458285908,18.5969814700481,19.9146887019296,20.9441352413121 +"Q9VN93",19.6501626576789,20.0287132610158,21.2391755382361,19.6095745601395,20.0193903085321,21.1740161059828,19.606865015116,20.0411554494307,21.1723548277311,19.6792448398586,20.1239063371707,21.3648509143611,19.5976821233146,19.9933943134805,21.2805515656513,19.4216559381705,20.1314657746726,21.2901594931092 +"Q9VN95",17.0450490714097,17.5869546670762,19.0507142753207,16.9070181191263,17.6530770213514,19.1925220044516,17.0938259371142,17.4250365703326,19.1259210694098,17.1221263932206,17.6967804773463,19.3229106442439,17.1725022618628,17.3397936672072,19.191107041015,17.1158298014812,17.7568493775805,19.1833177737545 +"Q9VNA3",17.2136990256951,19.2933221315441,19.5409318184626,17.2185700365303,19.3351431285753,19.4557552579071,17.1566966426552,19.0478360422279,19.3706582130181,17.1926497555143,19.4790873404457,19.44330160539,17.1138156262147,19.1394328822002,19.378504344038,17.1986571428302,19.1508292974587,19.4499831884564 +"Q9VNA5",17.7742570659281,16.3018893155714,17.3162457712504,17.78272772702,16.6616753347128,17.3504636955098,17.8532694111716,16.8853869900488,17.4480467414573,17.7902586423477,16.8614404074185,17.6481519830541,17.8112105767799,16.6059472422309,17.414852070922,17.8234065092676,16.9731565774946,17.6431729209727 +"Q9VNB9",17.5496472177843,18.1414815118977,19.705241048502,17.3916923127159,18.1518318177221,19.8209663435332,18.3756831418109,18.7442312731656,20.2182734735856,18.4025942803696,18.8182950205895,20.6075010741018,18.412343220586,18.3222035497385,20.3558997540343,18.48013680913,19.0531791247531,20.5975603765266 +"Q9VNC1",13.7042185437274,15.1973749372358,17.3007754081018,13.3523500248923,15.1993777827206,17.4208868532059,13.8578849586804,15.2349773745336,17.6512238424652,13.9556750826092,15.5163165217766,17.7895805057946,14.0201959061981,15.0378099562235,17.5719165189086,14.780526222076,15.3165305983698,17.7155365512046 +"Q9VND7",15.5804946296315,13.1880393225834,13.0620058480655,15.9956933803604,13.3414484735717,13.0103366417822,15.7998077132639,13.2305723952636,12.8343107151799,15.7578605949678,13.5158503190892,12.7930809421905,15.7037322821406,13.2961787548223,12.7509674745654,15.6199304917652,12.974795644748,12.7138958545614 +"Q9VND8",17.694131314962,18.1483620546593,19.0385825101222,17.6884174614951,18.2705379811794,19.1282611743646,17.574599060872,17.7198743991573,18.9190954688412,17.7138517195297,18.3689368329358,19.1802333697787,17.7740037693303,17.9523465935561,19.3082517046058,18.8023869588063,19.9491701429682,19.4918948273921 +"Q9VNE2",18.0505643232723,19.2716366349172,19.9306185941692,17.8652577601555,19.1583033539248,19.8902694377844,18.1143935043194,19.2560499478837,19.7947649190469,18.0555220338964,19.3202239905261,19.9723090969563,18.1240882887618,19.236852073269,19.9045598480419,18.0026442076128,19.0910940582149,19.6301942729927 +"Q9VNE9",17.1385950857211,18.8706113530731,19.5760629557539,16.8451956905025,18.6996020115794,19.5152896940864,17.752442413398,19.5558661879482,20.3562314717124,17.4599586579674,19.2287496006279,20.265501572679,17.7124196474681,19.2047708418029,20.3004514749217,17.2578741863645,19.1965518248302,20.0287055231284 +"Q9VNF3",19.0562261405989,18.6362719585487,20.04767332389,18.9019541194883,18.6752962915983,19.7590758736957,18.949766092224,18.5993480567404,19.8119306594665,18.8841416830813,18.6006159183241,19.7909119078936,18.8963491207774,18.6923841796017,19.8254851308148,18.8983971332936,18.7463089460449,19.7268126080139 +"Q9VNF5",14.1594355662138,16.433939736128,17.1590876577617,14.0205137886993,16.6323734928286,17.2044487069826,14.2508827102771,16.615121450355,17.1941118456369,14.0881640509725,16.7334804167908,17.1152639449847,14.2240470219034,16.5344003867638,17.254860342674,13.8723961339072,16.6021134857609,17.0643691577683 +"Q9VNH5",15.9831339744137,17.0444210375602,17.4488673392872,16.220399039254,17.1995877210241,17.831927713216,16.17704283717,17.3476156902658,17.7542966390721,16.4527735808093,17.5144994552647,18.0101031585944,16.065549149139,17.3898264674158,17.5947473324492,16.4047712398766,17.5623778863683,18.0396143069773 +"Q9VNI4",15.4557362941468,16.3971457254703,17.9877345737083,15.5020905230751,16.4170662920432,17.9577986655931,15.0908369847981,16.437523317226,17.6840158511687,15.4693050602395,16.32408887645,17.7499911673443,15.2564169321282,16.4903502323329,17.7293925885091,15.0087322636238,16.1779220549012,17.8358447048239 +"Q9VNI8",14.5523061969535,15.8774499022607,16.9705530424562,14.2720952722642,15.9659187978425,17.0357045181208,14.4346067288839,15.9866329480086,16.7975981772955,14.4496277870118,15.8728119786963,16.8624659033747,14.254035649224,15.9650545558595,17.0202165472272,14.255086175119,15.8489731922101,16.9342023231817 +"Q9VNQ3",13.017342725767,16.0075752289475,16.3861201467406,12.6061234719026,16.2052629517572,16.380115776559,12.8207044537979,16.1815698912803,16.1606978660219,13.070866511338,16.2302045068835,16.4706117797573,12.9378918444886,16.2015109851225,16.2902659491828,12.4008388520645,16.0877539384281,16.325083410807 +"Q9VNR6",14.7693635270651,13.7569263805068,15.7227436103288,14.5158019077699,14.0015544591646,15.7265064129203,14.1291867749945,13.8709013168506,15.4901784403452,14.2744563707527,14.1745356177272,15.6853510815495,14.0312517247651,13.903630441362,15.3718790641444,14.6933662346037,14.2838093675013,15.4563884284787 +"Q9VNW0",14.4017620360009,15.3029418485279,15.3911108401576,14.1793675806965,15.1044281822518,15.393871696026,13.5537012558585,14.8909229561255,15.0077100843688,13.4729172454044,15.1406677878244,15.2339098603355,13.2731656757688,14.8621699587787,14.8994630720602,14.0513754161978,14.827673544708,14.6951769152094 +"Q9VNW6",19.9633459533339,21.2746518618896,22.0726951463864,20.1893529261176,21.0512867658311,22.1733219687918,20.8687301177643,21.7299405578098,23.0488561695026,20.7085363941337,21.6246517301599,22.8361603591655,21.2216089382493,22.1437224900938,23.5133877094229,20.643034929598,21.7184198191857,22.805089410984 +"Q9VNX4",20.2762945195278,20.8991650043924,22.0795588974836,19.8429663730472,20.4809702967128,21.6561063179504,20.0954874292066,20.913618713146,21.9575025545004,19.8227174235258,20.6063418959034,21.7191058858744,20.7366732344909,21.587146015101,22.6727874353667,20.0517137211001,20.6787079301371,21.8833959963689 +"Q9VNX9",11.9732879702328,14.2156282064209,14.9763209338533,11.8152356015749,14.0947800605182,14.0205066221734,11.8762736100872,14.1399398722286,14.7498265579315,12.0405108438206,14.8896094199439,14.3730522660189,11.9018407386858,14.2376955935314,14.4697017548976,11.7140558150242,14.480685905624,14.3002798674424 +"Q9VNZ3",13.6488793063894,16.106293809785,14.7646334600599,13.9992158321448,15.9148334921514,15.0097669483774,14.2935507723433,16.2859318820121,15.0771894362189,14.3864664567376,16.1756432324061,15.306914268782,14.3957611257485,16.0428210556744,15.2864855456992,14.8721803711818,17.9957233907233,16.1534351836928 +"Q9VP13",13.876727128407,11.2186643958394,11.1172105473567,13.2102371444662,10.9642073271366,10.853275302851,13.8878324026202,10.4160219258489,11.3782023139755,13.923126139598,11.0749990480159,11.3274499288461,13.7221370125026,9.62985065717347,10.3568979349128,13.911992034235,10.3283115775462,11.2988705668899 +"Q9VP18",17.3535050917783,17.1780643682856,17.0591443321023,17.1771960506087,17.3407034828317,16.8082660583546,17.4221136632851,17.3330248329446,16.8987424380051,17.2388529669736,17.3744990104749,16.711031415004,17.2779603539165,17.1751157430231,16.9197172609311,17.1041886987409,17.0746946118468,16.7738130090732 +"Q9VP55",14.6551922502393,17.5914100263924,18.7909794792486,14.6745073707684,17.5908872643555,18.8433300474673,15.1559617315011,17.6045238535361,19.0405534692067,14.8108628218124,17.6692787596769,18.9424354371483,14.9402727130567,17.7682605070613,18.748907479704,14.9267578357761,17.6848497683525,18.867691183292 +"Q9VP57",18.2546850841646,19.6706311325751,20.086902058782,18.6197839353006,19.9300829916346,20.1272539549271,18.4937820173158,19.7432172825395,20.1288354419679,18.360920007829,19.6140508409585,19.9624837505491,18.5011266830319,19.7908427087006,20.1132401042251,18.7959762791156,20.2586623397899,20.5004552946224 +"Q9VP77",12.6038924908088,16.6367042214884,17.2992644126394,12.4690763979268,16.5564210956906,17.0226539555626,12.6343393127645,16.6613953819636,17.1526388147777,12.4040702598405,16.4492917365255,16.8372329565844,12.6663197595317,16.5827343816494,16.8471911800729,12.6224727666256,16.3327783121095,16.599800622857 +"Q9VP78",13.6852565633642,15.3835046035252,15.6105927770404,13.7855899473654,15.4842758075371,15.6773905513024,13.6111663683863,15.3396999681131,15.4967465600185,13.7767688606805,15.35541150547,15.7160619391255,13.5957349855622,15.2356062736417,15.5703230838066,13.8286068789008,15.4912897927518,15.5485975079827 +"Q9VPB8",13.6676700598799,16.9062546317329,16.1402116420259,13.8010465529633,16.8265221352807,16.2473632609851,13.7713620611518,16.9287911938646,15.9550752279722,14.092400395342,16.9069369822194,16.6024698407536,13.5953665638372,16.8601447437616,16.1411168563433,13.8625624365571,16.8840886420923,15.9667586867011 +"Q9VPC1",15.2101993113033,16.0546756791614,17.0398654708183,15.662367049398,16.1707945397135,17.3092353711099,15.3503484342634,15.8169961947875,16.8601496824477,15.3819791142304,16.0696877290615,16.9474992608721,15.4180551796527,15.8371471070517,16.6072795282879,15.1308042779738,16.0176354475458,16.8269129742752 +"Q9VPC2",13.9244854386242,15.9079313835841,15.3651246286295,13.7268007670346,15.9684691601803,15.3837252091327,13.5234547365676,15.4911892327122,14.662397890438,13.6553275434466,15.6154025253922,14.9631471442452,13.1908486612994,15.5499014669957,14.6814555069666,13.937209466313,15.9495602913075,15.2036714030614 +"Q9VPE2",20.5377770317177,20.511286498137,20.5356458044506,20.7072275139143,20.5294164146531,20.7176278879378,20.9032501915151,20.9294685822299,21.083522875623,20.7530074330786,20.8630888806001,21.1167361825745,21.0655876046433,20.8850348103123,21.2223034840295,20.8951867153475,21.0349004211005,21.1302898789533 +"Q9VPF6",12.206998567346,14.0709651463726,14.7324771674673,12.5426222729987,13.9593465304836,15.1439932278317,12.4154408635799,14.2894498855494,15.5753930843696,12.7357149684253,14.4500113748017,15.5202659632101,12.5096967442682,14.2864716705402,15.0595927764273,12.7006181448154,14.6238523495763,15.2708321492376 +"Q9VPL0",13.764066269334,14.5602325579533,16.1087018988001,14.2169245068916,14.5117428670609,16.2411905288304,14.3008887068528,14.7488529394114,16.290720563136,14.3051219794974,14.9405120106448,16.6294677953765,14.1047064341079,14.8778887438677,16.4947834417747,14.7242122432439,15.1012058354625,16.6410117440243 +"Q9VPL3",14.7976298713742,15.2933004264834,16.4854959538992,15.0197502340468,15.361271704454,16.8943485531578,15.3223464865161,15.6178397363268,16.6477126559148,15.2554705786456,15.947402079873,17.2560291960575,15.3006229046778,15.0410520767718,16.538831892729,15.1288850823853,15.8907059466448,16.7961194333751 +"Q9VPN5",20.4316562399959,21.187450404825,22.8208415881448,20.396717663205,21.2830589319829,22.7323872293579,20.2989059981983,20.9360225077356,22.5322379632679,20.2920169232605,20.9776419342388,22.5399712834039,20.0934930588077,20.8201586495762,22.2650702526913,20.1333217013869,20.7882067913981,22.1644169234113 +"Q9VPQ2",13.9147265346175,17.2319041394348,18.0554310581215,14.0979829876534,17.190733127385,18.1485548937589,14.1353392814988,17.3427357970229,18.0660791315679,13.8116486306443,17.2368477565879,18.1761564326713,14.2529531873156,17.3165054939245,18.0736576930115,14.101779112934,17.2561642339416,17.7914279637713 +"Q9VPR1",14.1643735664729,14.7196995085651,12.8089073547562,13.5626559548827,14.5336560376445,12.5481275909994,14.0491429053971,14.5194995674133,12.330204287936,13.5767109927257,14.5843720812664,12.8168731232653,14.2222441998887,14.2604640099705,12.3229105011546,13.9768311832513,14.6889487709529,12.25885087127 +"Q9VPU4",13.095904323936,14.4230576007201,12.0064567416422,12.9668635174583,14.273904281331,12.0328914852144,12.818364806923,14.0626956208107,11.2224204524365,13.0529032413285,14.2117190201082,12.4297764526308,12.8789686580472,14.21892067004,11.0493271293773,12.5546708993918,13.9896731455862,11.8869534933541 +"Q9VPU6",13.9884677996193,16.3604488875104,15.7033832244795,14.0467972753295,16.2007543992469,15.7486292153647,14.1688236359493,16.3182434728652,15.6355594098377,14.1618739473029,16.3601611160391,15.989752016222,13.8765843298483,16.1830996026718,15.6118377110562,13.7669775606436,16.1633968774041,15.4880156264374 +"Q9VPX0",13.919944195912,15.5504039422101,14.5147498018965,13.0983429846821,14.9177087480604,13.1693261094208,14.3216708724475,15.9273008335295,14.4564647623636,13.1037888973666,15.2625216603904,13.3447429044931,14.3875329717007,15.9555772784029,14.3276706269013,13.4418023002822,15.5263435572327,13.7712992332407 +"Q9VPX5",17.3408077410563,18.9166583462194,19.9648729975575,17.3863429939147,18.9399667992124,20.1830604387399,17.3441720907846,18.870919780586,19.8773625303654,17.4848496491857,18.9538070055904,20.1572930106377,17.3907640141487,18.8307449198248,19.9701653418519,17.6731387894242,19.0194395494275,20.2357592334237 +"Q9VPX6",20.5092654951062,20.8938925716578,22.5272245654187,20.5429045216269,20.8400748210699,22.4551014354707,20.6202391370291,20.963915351896,22.5741710025229,20.5870128295382,21.9413617202348,22.6685792454645,20.7776387664456,21.0659118186933,22.77092018349,20.8675006612738,21.2977365483468,22.9976933681606 +"Q9VPZ5",16.6004835831274,18.93860867853,19.9420814878555,16.5614008412748,18.9458221681676,19.8424217165299,16.566168152322,18.8264578035489,19.7168881112945,16.4140208839505,18.7445979129685,19.8176792943414,16.3140145639928,18.6069908009577,19.4535161107907,16.5092973580623,18.9686877659445,19.6648268770415 +"Q9VQ29",21.5486265470054,22.0132229813243,22.8720954577009,21.4301206610415,21.9985081885002,22.9640732428408,21.4955022804809,22.1398617965484,22.7893783698859,21.339941438955,22.1601073801946,22.8503719631735,21.6174665230339,21.9704028054336,23.0576048094742,21.4459613790343,22.0169463149826,22.8773527338571 +"Q9VQ35",13.3491776739743,9.33654814295281,13.2119792247194,13.8465048126075,10.472744557158,12.95140963664,13.8470964071024,8.95139217244164,13.2121207790173,13.844252567423,9.72139613951758,13.3306075503281,13.7705035616555,9.46604241199863,13.2294883278611,14.2105613285279,10.3526407078008,13.4808270061604 +"Q9VQ62",19.4150486870515,19.7964363612797,20.1399065208753,19.3284528883704,19.8546949153513,20.0885160448908,19.056636161759,19.7548361526397,20.0267905113101,19.407638208528,19.6215110287227,19.9711831479378,18.3377701436305,20.0045709870715,20.0350986260021,19.0451354689424,20.0787781468737,20.0234511738343 +"Q9VQ88",15.0982728910822,16.1881260085985,17.5887128711969,15.3076431781963,16.3657373936246,17.939185125221,15.047552951461,16.151162144703,17.7969706969053,15.5531922859654,16.3004984479141,18.0643479734422,15.3074449457251,16.1081474194955,17.6350280040156,15.040690958784,16.2643777308048,17.8385613512788 +"Q9VQ91",14.244453082857,14.7188615514889,17.043701111223,13.9790046122358,14.5484556603294,16.889545734444,13.7654924065611,14.4022210691967,16.6095086830692,13.6425855435583,13.9946306730801,16.5881283052603,13.7456041593211,14.5085029170968,16.6037604439749,13.5519269827929,14.3601023290078,16.3179197747253 +"Q9VQ93",15.9854303389411,16.675035680387,17.8700639321948,15.5030612426274,16.7122233551546,17.9193241879865,15.8748782348457,16.4778149960016,17.8007057242594,15.8036600104152,16.5108325639536,17.8710690830584,15.7726144954081,16.2067957709538,17.9230365285773,15.6204373225255,16.5574528027723,17.499198033683 +"Q9VQB4",20.7200184266018,21.7829012942928,22.7446973138369,20.8701539405799,21.9752157581112,22.96120953335,20.5745973039082,21.7477095514111,22.5986325254975,20.7289748573664,21.8723900985718,22.9318960864809,20.5706961477665,21.7976171149142,22.733888104017,20.7104622532004,21.8984485220803,22.8127064246311 +"Q9VQD7",20.404370524536,20.7160487083543,22.3441993213,20.3110126136664,20.6436072852599,22.1340168755819,20.1930906851201,20.5483453608707,22.1663403093753,20.1354779649321,20.4634805894855,21.9447871552993,20.1720563591053,20.557065960736,22.1006112473021,20.2301006520431,20.3229742416173,22.0902906709791 +"Q9VQD8",17.3071425361668,17.4758732991729,18.0238989717955,17.1645383372632,17.3351850577368,17.9674255692743,16.7700649130761,17.0180752322483,17.8473315142579,17.3741300820922,17.4403619491114,18.2780115023398,17.0598571294608,16.8508307393553,17.9421003306334,17.9840618899598,17.9688883010794,18.0716475133589 +"Q9VQE0",15.9022054609028,17.0681671032218,18.2326680632614,15.6986313196999,16.9525722664489,18.0718454204168,16.5332912591855,17.5964039816846,18.6563154958936,16.4421103377551,17.582728651891,18.5888219891971,16.3618622542689,17.6305493668615,18.9274808276875,16.3544660277299,17.4831262803025,18.4631201251413 +"Q9VQF7",18.2145794750223,17.558685685949,19.6302631591418,18.7243784107502,18.0179744809183,20.03351940821,18.506326333483,17.7249201122016,19.9728703207988,18.4616620914962,17.8492625912522,19.6558802980958,18.0633291920005,17.8219397548805,19.7740357921477,18.7225292515681,18.1678024023986,20.1461514706453 +"Q9VQG4",17.9120498576075,18.9631947491891,20.3208646210401,18.0462793120533,19.0433587820223,20.5221579141165,18.1221253669131,19.0784983114934,20.3139445231724,17.961197709292,19.021294157205,20.3879748040798,18.2204708097591,19.1374572409088,20.5501853118989,18.0119961987032,19.0632260421357,20.2137483250708 +"Q9VQI6",15.2793662111719,16.1893046205801,16.9003489181243,15.1247527905218,16.155558451179,16.9055173017464,15.3031510780596,16.0857503013744,16.6905780334338,15.5536754721483,16.2212176736596,17.038423947825,15.4871437495206,15.8080467422076,16.8446744826247,14.942612462071,16.470185206162,17.4388722307584 +"Q9VQI7",18.6871476670298,18.9382278815551,20.1073113198414,18.6408223615644,19.0953992486989,20.2345803231453,18.5073911346619,18.9153556555147,19.9827257915254,18.5634821289779,18.856041404517,19.9969971683572,18.4384169076945,18.8659930033733,19.8079933587796,18.472958589342,18.7683981838803,19.9444777089711 +"Q9VQJ8",14.2674777332704,15.5465209862847,16.0048438866878,14.1805642410406,15.7757307314285,16.2626564689976,14.2744261005073,15.4666981290358,15.8253962580715,14.0018233875467,15.6689939874375,15.8199863260702,14.1015913265247,15.5136713687251,15.7678752143084,14.1844226848977,15.6593709611386,15.7893524372645 +"Q9VQL1",19.0310027374513,20.111422799727,21.3995875123557,18.9955489132892,20.0642736536635,21.2114151296457,19.0578135905197,20.1764771793849,21.3508485964972,18.9381957090961,19.9919040617695,21.0692696901113,18.9890629365102,20.161769595264,21.2245795695034,18.9597695687196,20.0361836063675,21.1146322117103 +"Q9VQM2",19.6090742655827,19.9847793998692,21.0298764159337,19.485290856183,19.9846433958218,21.1119760101047,19.428875223461,20.0025203552258,20.7706648494646,19.3352771620642,19.9498176609465,20.7824643664357,19.455585412085,19.9071779412586,20.9674885476246,19.3842041144373,20.0512482368614,20.93396082985 +"Q9VQQ0",18.1342709857721,18.201499164374,18.9450204855878,18.1217636972313,18.3077506636146,18.9694176431168,17.8802713222695,18.0278294665353,18.513193997163,17.9552813721076,18.0969115892577,18.7286703205219,17.940434983385,17.977457551804,18.524744997073,18.461460992004,17.8965855891696,18.4846442934257 +"Q9VQR2",20.9175603793537,20.7599270851886,22.6205715573957,20.8542752492436,20.7470186672789,22.6238028235971,20.70734958893,20.5119700379742,22.5171186003978,20.6461157246631,20.5954894616795,22.6074073796637,20.5446137099102,20.6631916971525,22.5191886402741,20.6803177481775,20.7193453967459,22.4690174132754 +"Q9VQR9",15.2281880004732,16.0449918993931,17.870812378914,15.3182275611312,15.7274957117573,17.773893027153,15.3075272005314,15.8362357846668,17.7880430832924,15.4012086355026,15.7590685008989,17.8782780534346,14.9321467754347,15.65908919853,17.8576536300729,15.1503125708785,15.3807156156872,17.4957465751243 +"Q9VQT8",16.7012866462782,18.3065391208191,19.7813470141915,16.4775146093141,18.3777106735801,19.4260860353922,16.2650522201194,18.1297696284568,19.2318884472003,16.3252659215815,18.1098390387139,18.9377704143426,15.6856381584722,18.1192454285421,19.2256822789552,16.4416063738484,18.8039413805027,19.8355884385114 +"Q9VQV7",15.5614415920694,15.7205228021446,17.5733084380451,15.7124203818033,15.8683765999743,17.3002653197379,15.707609970762,15.7156492684715,17.3726522523291,15.5731378588093,15.7415157995868,17.5462835187428,15.4603692319484,15.7153857322615,17.4505920996649,15.652904523281,15.7051400656511,17.2883943623589 +"Q9VQX3",13.5758254612472,16.5724083077023,17.4376878447941,12.9489580237822,16.2728994517111,16.7394661991986,13.1694438750994,16.1904063775658,16.6817765384368,12.6829855176221,16.3428573970791,16.0547591421057,12.7841754665118,16.2512618572867,16.4218649373253,13.0789872557908,16.1109215564656,16.1661952283523 +"Q9VR25",16.2222518501767,16.7165735184502,17.7150425923991,16.3277350727357,16.9283090831408,17.6530485845424,16.2743808629294,16.66692374464,17.5462331476263,16.2816505976,16.8465131910116,17.762009103562,16.5175023153349,17.0389362665242,17.9029358946875,16.4303458729874,16.9673146474778,17.8039723752008 +"Q9VR30",15.7439975727037,17.5320894013657,18.2318474864281,15.5975743409238,17.6677876358816,18.4534466212069,16.0204888135022,17.7770246898687,18.2758266754954,15.6177978307216,17.7041378430401,18.4507466579532,16.1265273622399,17.7718805053224,18.4133156956142,16.0449686362345,17.7160158012125,18.5700460399116 +"Q9VR31",15.7972490131477,17.4461473188027,18.8428608579915,15.7178524271738,17.4317282669715,18.8938037100654,15.702219873797,17.3864147024109,18.685276164681,15.5796283297923,17.3307765977483,19.0092606929375,15.816015236265,17.2769576906894,18.7093756928627,15.5291178686943,17.358175901993,18.6647595496306 +"Q9VR79",19.5259021886705,19.6981040009651,20.5333595480005,19.797685917735,19.6624732918792,20.5819049133039,19.9590052165129,19.9486694717956,21.1712553755903,20.2288915894618,20.3071858439199,21.3489578094065,19.5670818520593,19.974419348982,20.862725744033,20.2280695513306,20.1954889865342,21.0065807555626 +"Q9VR89",13.8060755843581,14.7717773949295,13.4810980099972,13.6974781682434,14.7226483183228,13.4132287540599,13.8150779361294,14.5646726331183,13.6060671752592,13.9406910882994,14.5616441922474,13.0731587299702,13.9464174854103,14.0940207318931,13.6365026453373,13.8784754088127,14.4778480556232,13.4231687943369 +"Q9VR94",14.5132307039066,17.9042713419418,16.7129914290233,14.113547129131,17.3732375415765,16.380637656408,15.0503951745899,17.9104483474168,16.7521956647277,14.4676548039456,17.7614077899809,16.7875502155343,14.6283610428465,17.5304634785309,16.6795693314473,13.9933299224996,17.3670318234678,16.1843868573863 +"Q9VRD4",19.5778183868615,20.1062189859846,21.6354784179799,19.3076071568544,19.990329999239,21.2701252598668,19.4587701479156,20.0541561033383,21.5929746301766,19.2933983964435,19.9069829574113,21.2557273195136,19.5466436883062,20.1617362666343,21.4585976467176,19.4762544052499,20.111288714987,21.4828108672259 +"Q9VRD9",14.3034311440147,16.5048710011574,16.2280650136776,15.2240675377632,17.2871568700335,17.1165926865481,14.3329145154418,16.7279647676532,16.34587026312,15.2113664150981,17.3899594761201,17.2702783299182,14.0928760576985,16.8012020463601,16.6459230729498,14.7285834304265,17.0304122905603,17.0854795533308 +"Q9VRG6",15.9987958609702,15.9142545417158,16.9792370925715,15.9964559099411,16.2405997547762,17.1658864690408,15.9397186042343,15.9901549152942,16.8270368155534,16.0651687564578,16.1464989409849,16.9888572610476,16.0316895971387,16.1023119730586,16.7584829624457,16.1326198813859,16.0741366564046,16.9165744929172 +"Q9VRG8",13.9085537985657,16.42485928945,18.3046290611069,13.4932225526518,16.5150361598205,18.1601446236525,14.1608029625871,16.5413674716774,18.3538001439334,13.9337216657116,16.4389096308361,18.1599409558745,14.0353251403855,16.5233479907641,18.2624549467891,13.546191803769,16.3456970085378,17.9613959437908 +"Q9VRJ4",19.971097015493,20.3306710840091,21.7136352899549,19.9979826660501,20.4874547181009,21.8393223152124,19.8558931867078,20.3146798914724,21.7202334573149,19.9470021947479,20.4043769125418,21.797455789031,19.9064617443534,20.4374206395877,21.7621922198651,19.8986428209631,20.4083524915078,21.7461803296393 +"Q9VRJ5",16.183317936657,17.8531675462001,18.0581384099823,16.39592863307,17.7958524561604,17.7711399387875,16.2571168091166,17.8191083414211,17.9685721975084,16.1190503339455,17.555637952387,17.7584886146119,16.1927101608499,17.810670483138,17.7834648464977,15.9572629296603,17.7523352771382,17.5434737576821 +"Q9VRJ6",14.3228656360738,17.0180830955978,16.1810094987217,14.2689148929328,17.1462592571441,16.3098849655422,14.2010632653624,17.1394693186168,15.8534211546112,14.0979810117473,16.8942366861201,16.16977331029,14.1924849189484,16.9534518071518,16.0207268413576,13.9219648512703,16.7492027524367,15.8698301446732 +"Q9VRL0",21.8932403389002,22.8226817694301,24.0357934288891,21.7747234160739,22.769408092142,23.8068556414115,21.7221343050884,22.7186567517902,23.8750357314859,21.4056886523528,22.7412937924299,23.7751265760359,21.7649108897022,22.8780551737916,23.9691348549934,21.4329901298782,22.5298675143498,23.6481991024134 +"Q9VRL1",19.7287277096394,19.868093857949,21.7733211810117,19.8852965160703,20.0421188063483,21.8467342810085,19.7326133229245,20.0343893071702,21.5781969854783,19.8940582861991,20.0088124861818,21.6685113966629,19.5449622383527,20.0899728935785,21.6682068403963,19.6519508679632,20.1148356864511,21.5429275707356 +"Q9VRL2",11.2712856951225,12.3239468312101,14.2999740949889,9.43977496286838,12.2466376404364,14.1437674310141,10.6747725031516,12.0431186002546,13.9266186850049,10.6170812320371,12.2092412568837,14.1859822867599,9.12127632961716,11.567039391022,13.9065552935008,9.44488211723477,11.7776440424442,13.7905250955474 +"Q9VRP2",19.5775918813851,20.3578517812698,21.3765971310682,19.4523731550454,20.1924047080057,21.2319981852781,19.713558930809,20.3655055740063,21.4055668909289,19.6065650370521,20.2785363113963,21.4556855616554,19.6733396115612,20.3060701147471,21.3662772147878,19.7228695015897,20.3710722645478,21.420696670253 +"Q9VRP3",16.673753593906,17.606333222534,19.3505933134785,16.6215119948148,17.6633909422266,19.2422482872706,16.7695302379572,17.8110465588869,19.3268064071375,16.8584561962559,17.9028048387484,19.4756501468605,17.0816079643614,17.8725143901288,19.7500594494922,16.6268702126209,17.8222429811526,19.7917893203436 +"Q9VRP4",13.3852163238723,12.3956028254104,17.0242159479163,12.977465682319,12.5036609275297,16.78767136262,13.9674622468294,12.9252621523718,17.0238272990246,13.4622643270251,12.8077328243,16.7194265794356,14.1480243133983,12.7691372296368,17.1578732572017,13.5180859167787,12.8725355787227,16.7398705891657 +"Q9VRQ9",13.2272847001034,16.2261403377368,14.685492631788,12.9292028388493,16.181275560142,14.5065303838536,13.3471646471494,16.4644903847783,14.7045867717049,13.2783185388235,16.32976269558,14.504495723616,13.3964195864365,16.576521970692,14.581051534612,13.3193253343848,16.5010879997319,14.5276913077099 +"Q9VRR3",18.5998788099837,19.7794589669862,21.1585947124241,18.6678679126918,19.9235551958444,21.1472018432862,18.5046625544341,19.8029449468574,21.0566819901878,18.3635126997117,19.7497682258667,21.0107711847664,18.6030318630968,19.7541895319259,20.9486084519184,18.100097074329,19.457779100606,20.6649826829228 +"Q9VRU1",16.2477747754383,17.2705263898308,18.0460964559216,16.2188288251874,16.8803848790161,18.1981964495087,16.3628150366162,17.3077786964908,18.2448230679685,16.2549429532973,17.0542259981667,18.7211959638059,16.2660190044225,16.8996323495138,18.2865158119711,16.365125093926,17.4362808870524,18.547767731145 +"Q9VRY5",15.6337205499168,17.0854308445154,18.1882344115105,15.5133220885005,17.156725400221,18.0579322140824,15.5773999701453,17.057732506944,17.9028336332011,15.4660381672178,16.9584972658296,18.0587040874942,15.2738953963663,17.1385323720434,17.9021088315101,15.3470411285941,16.9897653659997,18.0720529378518 +"Q9VRZ7",15.7848084124679,17.2912010833979,18.9425728367894,15.5491148116377,17.4937706068602,18.6835728728197,15.7767890998208,17.2629537037475,18.9368146743421,15.5717566817492,17.4112990874072,18.4743396284907,15.7517541452653,17.2373061713415,18.7483748444667,15.4375431679718,17.318781714709,18.4764965767005 +"Q9VS02",16.6495413403549,18.5818948416451,18.8840959754805,16.258717420264,18.5468931084542,18.8375881461792,16.4448119466475,18.817328472597,18.5486019381231,16.4853655130049,18.7281605078145,18.7563925879379,16.3266389784145,18.6124060503552,18.8845338099661,16.2115063776706,18.6006566558929,18.7088790634164 +"Q9VS11",13.2261149698255,14.7878874713425,16.1475608459523,13.7878457467898,15.0821856613425,16.2984786912155,13.5263594754028,14.8257285842804,16.3336989247365,13.5048809888168,15.2427386900841,16.5162749144317,13.368112900687,14.930741021014,16.2921232658395,13.4783833017294,14.8262124038984,16.2263695044603 +"Q9VS44",13.5351064236193,16.2888529268065,15.7952443087988,13.4834633500759,16.2229630327043,15.6970363578014,13.6101952954983,16.1624768829405,15.6277095316221,13.6151583132834,16.2430898225842,15.4790725878144,13.50358103941,16.1671978766067,15.5944944386958,13.1925551588965,16.3322802786391,15.6238437553339 +"Q9VS84",16.645093961661,17.1375257002226,18.7542455207675,16.6048804894854,17.097675509129,18.8258204647168,16.7156365160202,17.1054248404949,18.6806023583767,16.9526145409649,17.1382764637481,18.7385122373992,16.5373911319727,16.9803820791304,18.6146826839875,16.7865835685774,17.1402860814178,18.7226998338501 +"Q9VS97",14.3126963740425,14.8141498115773,15.7377639577981,14.8474549255521,15.10709305443,16.0884739941551,14.6381748424591,14.8752902162351,15.8970924434752,14.8829346554243,14.8579883884802,15.7149431211606,14.7849791756245,15.0985168935728,15.7821175889892,14.6023323365844,14.8536469352989,15.4494318169922 +"Q9VSA3",20.3150362058582,21.3539261364854,22.7691983273249,20.5126852986035,21.5742209068513,22.8975870740271,20.6133371418881,21.7085500761561,23.0308534402641,20.6363124612045,21.6888170659693,23.0827911609308,20.5808473174925,21.8038888240675,23.1844890643776,20.4921814673201,21.7374148611016,23.0050001542668 +"Q9VSA9",21.8074842063714,22.2319568705897,23.7197685274547,21.8769109191578,22.2126169748314,23.5025376143882,21.6261867255835,22.1430480203949,23.4747745518464,21.3410280971186,21.8808607890135,23.1705107297411,21.5216005502721,22.079437228542,23.4182937416481,21.1408313740181,21.7591616440045,23.0639991760149 +"Q9VSC3",16.3652216782465,17.7371565081358,18.2219845296763,16.0942603463257,17.6546487131487,18.0723491702696,16.5072546263923,18.0864346435156,18.3115926755392,16.5341057653042,18.0912608060925,18.4296533853565,16.1776753420474,18.147428394623,18.2645721041834,16.8831501551249,18.2525076341517,18.3964551790925 +"Q9VSC5",19.2925681654926,19.0479651069826,19.9592171337703,19.3980489254411,19.1470434426277,19.9854114106333,19.2839971949744,19.0945242189595,19.9627796520466,19.2883545224011,19.0919765758648,19.8804422381402,19.2079938935914,19.0809078089139,19.8195284433924,19.2602402307404,19.1497173790389,19.7518392920928 +"Q9VSD6",16.0095731755157,16.4098919371024,17.759445194876,15.6733155928646,16.1383583577502,17.4247322854255,15.9071261979291,16.2969807192247,17.5881856738948,15.6001632555116,15.7239871175756,17.1850813284582,16.094270046645,16.5136496744886,17.8286977613898,15.7330409379998,15.740506848932,17.0017077871093 +"Q9VSJ8",14.8362723265783,16.2637205159305,16.4918197328322,14.5879534219167,16.1532936569407,16.7080750032133,14.7506330201664,16.1544027610013,16.116658340134,14.7218655175159,16.1790336296867,16.4649725987316,15.0221142952425,16.1043478308083,16.5655502287761,14.4673401280655,15.8221354923907,16.1116915348723 +"Q9VSK4",18.5183725263924,19.8641285056853,20.8425459729944,18.5799051367692,19.8897464206734,21.027737752376,18.2955673020548,19.7986549223015,20.6729278503324,18.4864940547492,19.860454204645,20.7368148825782,18.4092308555643,19.8800758191672,20.9040823354442,18.7753501618689,19.9859106436751,20.797627827305 +"Q9VSK9",14.23116738701,15.4881949974474,14.0887033987146,14.285125427929,15.4703430522975,13.9567085072344,14.2961700302924,15.3779208724599,13.8263434230352,14.490190934945,15.2091140681815,14.1228111969761,14.1531877072096,15.289458082701,13.947436196967,14.0861246114392,15.2098036814896,13.6432173967779 +"Q9VSL2",19.2912674670911,20.5532246241159,21.9149886232237,19.1796445042404,20.5189700802475,21.8228263207359,19.156866830913,20.4660889032845,21.6453243966848,19.0837993599261,20.4222848946829,21.7904777265208,19.1045439259522,20.4325005839618,21.6692878213093,19.3446961838033,20.2304606077102,21.4885485829234 +"Q9VSL3",20.963881003568,22.054917222347,23.5834550104656,21.1430073724844,22.2507780876713,23.8844177933838,21.2040448355642,22.2672807663427,23.8008395524598,21.6297336732184,22.6389403526229,24.3286366854767,21.2277898767296,22.1124524872078,23.7684397539774,21.246434003427,22.259426241458,23.97475376582 +"Q9VSL4",20.1510749989446,20.9674575377959,22.0757654165947,20.0925407792042,20.8252755975946,22.0369700873358,19.8898353656137,20.748616340386,21.7590002242247,20.0400690870512,20.7321377533367,22.0215830989055,20.0264401866567,20.7359968573591,21.8474603665159,20.0745277285586,20.6746348412428,21.7428300420703 +"Q9VSL5",16.6693356703082,17.9498541745165,17.6715513048591,16.4622268841682,18.010781288096,17.7873866045302,16.8346819310899,18.1551750244057,17.7806666213479,16.7302233296111,18.1118868555621,17.9462019625478,16.9226893865517,18.2932432001935,17.9682884793198,17.0910412732339,18.0392848439158,17.9538023794102 +"Q9VSL6",11.8907124274884,15.8903704519476,16.347523751193,11.0748104140158,15.9402009190774,16.4534785387159,11.9061897915958,16.1099458488798,16.3201015420446,11.4422613035134,15.8733675809525,16.460686510843,12.3314908342585,15.9531749426422,16.4034757695482,10.8859457143745,15.5420098044878,15.9626338470962 +"Q9VSL9",13.3019079332279,15.2245575834382,14.5876724710094,13.4944941460553,15.6883832237305,14.1944515115225,13.8157814333164,15.2797128904986,14.8190682982374,13.6227676950907,15.4896964385178,14.6376341055948,14.3095670776146,15.2319122714712,15.2418077090243,14.310379924303,15.779766505494,14.8382568120132 +"Q9VSN3",20.2807489200288,20.1417868918438,22.1862687985995,20.6046837077831,20.4192707618192,22.3426243488414,20.2630017148502,20.0331615139483,22.156725656549,20.2762301161645,20.1118433717537,22.4001310030915,20.1233719759494,20.0273477387962,21.7718267360209,20.4262865593983,20.2032288587705,21.9901318434613 +"Q9VSN9",16.1261916724785,16.6383220962529,16.7298573074288,15.7032233488551,16.3942477229662,16.7059372495775,16.1682940281663,16.7707757662237,16.826541958612,16.0234221287498,16.4799411653827,17.0639081148096,16.3446435234923,16.7962452810084,17.0317446384369,16.061764342915,16.6133319845286,16.8835088971411 +"Q9VSR5",19.2756448723412,19.3849727451316,21.3150167161342,19.4443805719768,19.7011766624879,21.4754053915082,19.6702291784621,19.7412208756078,21.6543137506222,19.7228261066047,19.9402430950566,21.6350744421267,19.5132734565564,19.7321145458161,21.2995606093827,19.7299425369712,20.056001253517,21.5899200681542 +"Q9VSR8",13.5482755342561,15.5375296023765,17.199588020083,13.7395348735958,15.445934791033,17.015848420645,13.4089055757535,15.6891932509072,17.2746828083244,13.7732099431473,15.9323931350529,17.4786745552635,13.1389069419714,15.7280584394017,17.2942766248218,13.4468084302677,15.5448709190871,17.2607506719753 +"Q9VSS2",15.5037505602341,15.5063686024411,17.0023335158704,15.2217253087983,15.7106384692353,16.8891851589535,15.8257497533237,16.1438014496639,17.3504428126245,15.7717532252437,16.0772071516695,17.1079830029068,15.6966157258271,16.061044985852,17.3448158773103,15.8151460378761,16.0469787149807,17.0717122481583 +"Q9VSU6",21.2703657128681,21.2593916497867,22.6320614751098,21.1927536683525,21.2243953154135,22.4662864866629,21.1025203417918,21.3026171098494,22.4731942354017,21.013901411206,21.0690976218615,22.1757565216443,20.9756942414564,21.3127662319561,22.4516897343896,20.8934945917227,21.4523640060946,22.3994190144372 +"Q9VSU7",14.8257185955805,15.1687451856109,14.2431141244158,14.7654029332107,15.2133438944789,14.5890997817225,14.7398477909287,15.0477594704357,14.3446598709528,14.7783403027625,15.0967978904989,14.4729993363703,14.6531625543453,15.0574385425802,14.2710001187049,14.8370708333007,14.8019335278937,14.2413287026746 +"Q9VSW4",15.7054853367037,15.3855472519783,16.5815342683009,15.4924469047125,15.3622872736203,16.3293029266139,15.6058849840891,15.8930349577534,16.1835682286272,15.5459869803442,15.7931314468699,17.2425641203833,15.2855017094668,15.9370090874539,16.7421456831208,15.0300960015848,15.9497512809018,16.0813325331005 +"Q9VSX2",17.8801381551785,17.6360063435899,19.4039543192784,17.2746634807615,17.1862723979514,18.9560109703304,17.6348478452584,17.5142220659079,19.0507258901774,17.2694004166374,17.0946429706386,18.8304065494203,17.581093076933,17.3285101993863,19.0796116795318,17.32728234609,17.1093638046917,18.8458671676342 +"Q9VSY0",22.2565180670903,22.5980735369301,24.0886116458415,22.0452638823384,22.3847571386636,23.6277259155117,21.984696991329,22.1934719319995,23.8306185402154,21.5670372128402,21.8702601435407,23.3491639916091,21.9198198311243,22.2989929028318,23.5513871945536,21.8805147217408,22.1078197696204,23.425534280249 +"Q9VSY4",19.3384481736634,20.7219756276495,21.2112890803109,19.5117117614714,20.8006706686065,21.28912921741,19.2726773592952,20.6933682341953,21.0427259689194,19.3651927940443,20.7039508464239,21.1826314423653,19.3227850141176,20.7730981672948,21.1869551058521,19.3470005450284,20.7292087664826,21.1268188300804 +"Q9VSY6",16.8792334824887,17.7382171348313,17.7136175731994,16.9020471589887,18.0170902762467,17.887751775882,17.0817558176136,18.0490563487462,17.9992295719072,17.1737816988396,18.2497774884135,18.4870899023363,16.8822747300758,18.2416793398977,18.0853392897321,17.1387336819249,18.2852658248994,18.1913597280497 +"Q9VSY8",17.636324345782,17.8471620590824,18.9313877035824,17.4196099129656,17.8691041154219,19.0718702547435,17.5044741540195,17.6757421368341,18.6645292761361,17.2988159654122,17.7231074013438,19.0653471041093,17.4487324091228,17.599278915,18.5927909040155,17.5793653975328,17.7515445969022,18.9156255402517 +"Q9VT23",16.4353791208493,18.1905818576022,19.0125547179463,16.828345122395,18.5810262763993,19.2919055763094,16.7753043307784,18.6040861366639,19.3387471368154,16.9516030881804,18.76437540451,19.50755637298,16.9773360869263,18.9394783117155,19.7742263359013,17.0256669791289,18.8901589706072,19.5088742677106 +"Q9VT75",13.1754839673688,16.6128342083344,16.6916437950721,13.3467112236093,16.6690579798285,16.6686461324451,13.7254758108198,16.7404734553942,16.7051027888765,13.3878138336437,16.8036562724099,16.7321309292984,13.5121811163407,16.6408228936501,16.5548560488875,13.5691909185916,16.6991017227162,16.7288886030451 +"Q9VTB0",15.2997795907693,17.359073534068,18.5426171389529,15.2906686521566,17.3958607208394,18.4958166526789,15.3543928662935,17.2889962863605,18.3578287731023,15.6926919418256,17.4245537224782,18.3611171887233,15.0165890512708,17.2320228677112,18.3983964209738,15.3330535547342,17.0850610828217,18.2727610804689 +"Q9VTB3",19.5165088840496,18.8909920699917,20.9662468313777,19.4835191887079,19.1760280479668,20.9992684648115,19.3381254103474,18.8639791662215,20.6532986617141,19.3425858368921,18.9389242503585,20.7559559815613,19.3785468930855,19.0749597487482,20.8035245112481,19.1982810225388,18.8592446720205,20.7308926221351 +"Q9VTB4",19.7775124631725,20.2411932660763,21.9610561805351,19.86168463464,20.2640102107479,21.967577066341,19.5942288248609,20.1077638726858,21.8039290070015,19.7960912396776,20.1197467562919,22.1705505565026,19.8233141125193,20.1602286114589,21.9533300346552,19.5893967135493,20.2180721928872,21.8294978015281 +"Q9VTC1",14.3077422133116,16.3785658015506,16.5575328271792,14.700414351081,16.6700978101139,16.7906294377994,14.2829247669593,16.5852152899014,16.3418859789656,14.4386545618326,16.5293168122398,16.5208702353342,14.3262747868303,16.5583810546001,16.55795246681,14.3474267121681,16.4769040059905,16.4918017592085 +"Q9VTC3",16.7244162637417,17.3281113968239,17.7103078631417,17.1650851220547,17.1983406208368,17.4170889830131,16.4785316643727,16.8112782711554,17.4562521326622,16.9260379834242,17.2334823322702,17.2923616566414,16.7506627321383,16.7618708957984,17.2844316612296,17.1432918639974,17.589171925163,17.2905538046484 +"Q9VTF9",16.8519720205287,17.1727708095578,17.9147340341925,16.9149567203096,17.2168198288691,18.1131709406652,17.0089336782846,17.132315751147,17.9637312017406,16.9789435254901,17.3696131508902,18.3210032575079,16.8981087670209,17.0500053642851,17.9439111191453,16.7931994275499,17.4645389047633,18.2208523757002 +"Q9VTJ4",13.3529287453769,15.9938930543413,17.759318335068,13.267090249276,16.0096895279456,17.9431379398108,12.9959984648374,15.800407006844,17.4398718423029,13.4085114262099,16.0414136155186,17.8123744342494,13.0521857477085,15.7524744399723,17.5932042537841,13.2586360546401,15.8922568406042,17.7934905488839 +"Q9VTM6",16.4559549390219,15.9457887153322,15.9136696725461,16.4953047129034,15.8854862661791,16.403301800452,15.9386043386256,15.8302576360059,16.0071180750338,16.8960677517073,16.3706033786218,16.7737871536364,15.8030660457099,15.2844107618197,16.4676950219078,16.3198484875122,16.9210826614645,16.5690331932762 +"Q9VTP4",19.6385925936941,21.5281310312707,21.9035814075473,19.4946781076705,21.3538710046223,21.7301592966303,19.6502999996334,21.6699257603994,21.9688192214402,19.4485153645216,21.3480664614807,21.7278432064059,19.4426775965183,21.6219665949609,22.0277108947557,19.3909151024427,21.3926697725555,21.7022164106175 +"Q9VTT2",12.7384800556853,14.244479497656,15.8300712593569,12.7244208000829,14.180058443916,15.4366890382637,12.6692142092008,13.8112140277582,15.196141487847,13.4589110505259,13.3398309202515,15.2326024089453,13.077814654798,14.0731837139084,15.6391985484816,12.897002671273,13.4355038782932,14.7870170031688 +"Q9VTU2",19.933249668215,21.0353177581257,21.9309437406479,19.9431668491964,21.0684852989743,21.8790219490941,19.7475477430229,20.8242942444848,21.6675551500125,19.6277121744623,20.7886337527452,21.6508268004574,19.8117011735114,20.9686392983179,21.7328638910391,19.7807904469703,20.7368825934617,21.6244673020049 +"Q9VTV9",16.2718086046469,17.2917390177114,18.0954105723626,16.3460996945391,17.2947767414473,18.2145066300307,16.3612048364797,17.630788905881,18.1083366376807,16.165152226948,17.2502010702787,17.9075699663318,16.1832474445298,17.4562157499724,18.2221454538233,16.3791262348791,17.230583882675,17.9915941858711 +"Q9VTW6",13.3067830174074,17.1471609873513,18.6669681191251,12.7696577826269,16.9847732933858,18.9200354702684,12.9766550098713,17.1351687757185,18.393896333314,14.1966724925196,17.0316946102962,18.7691261316376,12.0474230697877,17.0709525883743,18.5435196086508,13.0405239615579,17.0955123413118,18.7367184371685 +"Q9VTY2",19.8841059989756,20.6837183823125,22.7417134512027,19.5039299739342,20.6861167147068,22.616547469166,19.3288594981446,20.491198659884,22.2159571457432,19.3528147373455,20.467590634052,22.2980960798349,19.3295395546889,20.5128061037437,22.1849961418129,19.1861862820998,20.4052109110247,22.0669752558782 +"Q9VTZ4",16.6655960013305,17.7488117519641,18.9031409845719,16.978728594794,17.9774198916159,19.1486217476825,17.2361168579924,18.3137940336378,19.3102854546506,17.116727284748,18.2583059937516,19.3210690407855,17.2072606459898,18.3464073840507,19.3444680723848,17.475129135161,18.4423737214753,19.5187175270454 +"Q9VTZ5",16.8699912905005,18.0504251158253,19.2321745798455,16.9057209079502,18.0393421854325,19.0815842731076,16.9250032615656,18.1909641441908,19.1460271943283,16.7156062489656,17.9830331397064,19.178211410427,16.8809533214683,18.3054469176411,19.1903248997066,16.8559166608372,18.0633909244196,19.1187278124707 +"Q9VTZ6",16.5782269473364,16.9321912450444,18.3720601576002,16.2119676894114,16.7983351522187,17.7097284502812,16.6522158663051,17.1064705545237,17.9054358889368,16.3147171720397,16.7776257281863,17.6444208781276,16.6000508393656,17.1206529181114,17.8311152180415,16.2353331905161,16.8131431616811,17.8092609547751 +"Q9VU04",15.7630421571119,16.6731764695782,17.5005994400777,16.4236976729507,16.7054922550968,17.6789849106668,15.7445113754665,16.4058385183121,17.1330541351808,15.869393749789,16.383150006192,17.3343923569457,15.6716824893337,16.0129126632251,17.2004533033458,15.9088966717779,16.4277756540436,17.2714476933818 +"Q9VU35",21.6305457803478,22.5609441526798,24.1188719004448,21.8153347338629,22.7123814476968,24.1966984281378,21.4831537308066,22.2077611291348,24.0132065958623,21.6348778968707,22.4741389249499,24.0883205411349,21.6126924723821,22.2968046280286,24.0371066923156,21.6342158584827,22.3704085446779,23.9400476870969 +"Q9VU45",15.3650046072141,18.8375129165962,19.5064867319328,15.5251835832834,18.6697348878988,19.419362754557,15.6203957418697,18.6246357069068,19.5621019011604,15.4519946246222,18.733673143891,19.7288110958965,15.5474048144249,18.5192161148077,19.7488834395476,14.8557423598568,18.7354407088671,19.4930064342832 +"Q9VU68",17.904511056992,19.455027620808,20.7260468136817,17.6326676155548,19.1355139321567,20.3674860542773,17.8215024912471,19.3160505926028,20.4350978168767,17.5989846241913,19.0261700838122,20.2951966359011,18.3861221823026,19.8998870281208,21.0899104246452,18.2583901301906,19.5364588403692,20.8738784472373 +"Q9VU70",14.525704416046,14.3162311106364,15.9087882440147,14.6287002904633,14.1013158461506,16.3726529358611,13.999958359016,13.3143437659452,15.4370800259394,14.3038728570115,14.3824972373294,16.2901143583297,14.3982108770372,13.5895046585891,15.6476126529809,13.9615946521573,14.224198298492,15.9964473788001 +"Q9VU75",16.7757299583543,18.50699799905,19.6604389862694,16.670327239494,18.2461411285374,19.3355322013372,16.8723231382449,18.4914000426117,19.7412051329414,16.6337808912985,18.4317131824541,19.4628878323655,16.9116609580477,18.5700064719776,19.5255630341171,16.6785158489356,18.4709656725434,19.5433495317339 +"Q9VU84",17.4989356353577,17.634064856118,19.7672765831209,17.7431605889461,17.7994298691656,19.8047489507103,17.6313876861805,17.6474946645507,19.8129738325211,17.6253852722407,17.9138487723982,19.9177665796935,17.6978144273919,17.7254702889669,19.7667642466653,17.6398529791546,18.0783964454208,19.8157858183567 +"Q9VU92",16.1813576753689,18.28760595879,17.9711186748946,16.6993879476515,18.4825823254317,18.0742533641404,16.4825453456764,18.3762708905889,18.03074763813,16.5906725422674,18.5450852229194,18.2667212228263,16.3444232607393,18.6172064192489,18.389624674607,16.5335447206437,18.880091419144,18.4059160967647 +"Q9VU95",17.5532426242468,15.6877505591808,17.4435924829755,15.4909229661871,15.5465372688205,17.2282486730668,16.4480487740255,16.508040199282,18.0065366626406,15.7464036196004,15.7989204662974,17.7410740104953,16.1970805614212,16.3501237745806,17.9395657474777,15.8096043048032,15.6042430949243,17.4608676423048 +"Q9VUH8",15.0736984575515,15.9578899053862,15.243518035221,15.0230918415954,16.0437750101205,15.2484662385382,15.2055084090837,15.879002398816,15.1058829962944,15.3845152937675,16.1276965520449,15.4470008727437,15.2871066496544,15.8406520939517,14.8914056892327,15.3341256795366,16.099487505194,15.314110349877 +"Q9VUJ1",19.0472186655281,19.1974813046853,21.2913852326691,19.0941885143207,19.3723780387707,21.3788661434833,19.2320738827599,19.4515199778252,21.3651843482322,19.2315682809226,19.5840363213248,21.6323075519884,19.0915222897991,19.3900105667515,21.4425653855628,19.3006606238523,19.7186909576365,21.5827266921613 +"Q9VUK8",19.6296449255889,20.5757311723614,21.9329841575385,19.6971443697826,20.6516160329791,21.8896888246309,19.8210658555884,20.6594161043781,21.8951183949252,19.7079828075857,20.583087567411,21.8274789542091,19.6376264571682,20.7114158409286,21.852600755524,19.7644117986476,20.6788420000574,21.9186985805838 +"Q9VUM1",15.4034211141036,17.2369251457251,16.7058592367543,15.7416392843094,17.3181244084146,16.9328923969626,15.5059122172543,17.348130310123,16.5182171321072,15.5102025076661,17.2991343621554,16.7671305023148,15.6371452751286,17.4168076332968,16.5798283364699,15.8421476074802,17.2169068860132,16.5189343595815 +"Q9VUN9",15.6390328861383,17.6427839967727,16.5014951409878,15.9117949049959,17.6844473936203,16.739897631235,15.9292321923011,17.6759385923585,16.7612111626566,16.0308573340965,17.7845104367984,16.9452233954741,15.8355706400835,17.6429182714564,16.6950310984296,16.1015414608505,17.7845419236112,16.8890649662006 +"Q9VUQ7",15.6471150042425,17.3032356330586,17.0871057577486,15.0826440234894,17.2043712109049,16.9339337130316,15.4300612931535,17.2697507723561,16.8160551501418,15.3144729883017,17.3351363900561,17.0032285265437,15.0372531140094,17.3204897698832,17.0124590927719,15.5014530425486,17.2488346641566,17.1150046177503 +"Q9VUV6",14.7016623006433,14.187563986391,16.0772254099648,14.6376306330968,13.8574235355736,15.7503728815761,14.5563619826921,14.0489836802256,15.7416563276176,14.5751685682643,14.1272125385846,15.7355357973234,14.5977587440489,14.073975011528,15.9784728858785,14.6947033457745,13.839574405988,15.5850183452437 +"Q9VUW2",14.9453278610087,16.888021960928,11.6400628786514,15.0143701548315,16.3438373820687,11.8852806659832,14.7892505401315,17.003973265716,10.5543951892972,14.8164827436348,16.274516666645,12.0898488685436,14.8342859835722,16.9541383850896,11.7121127091883,14.7673438312846,17.0357783667986,11.8443884689355 +"Q9VUW4",13.1862324171116,15.6529010727964,14.6195154646549,13.1367606327651,15.8882329326562,14.6569282407459,13.25960669675,15.6070397496654,14.6930998522348,13.2466021854009,15.82436573264,14.7978505354326,13.3970353410205,15.8311189170515,14.7993738695204,12.9355461076567,15.8654009641696,14.8224526025101 +"Q9VUX1",15.4218500539391,15.5264160453857,17.5826318506075,15.7956270115337,15.5420885094516,17.6409892721262,15.8748167575791,15.7115485124076,17.9835171634169,15.9697802442324,15.7622075082916,18.0815890297713,16.0043446997896,15.5135860199399,17.8083225752619,15.881809849056,15.5698804136191,17.9044253337967 +"Q9VUY9",18.4463780781447,19.4420713254995,20.9137552984628,18.1163970044914,19.3044090769397,20.7277845659209,18.7264399824063,19.8399543999351,21.0931906801773,18.4920378673229,19.485925035831,20.7997716327788,19.0267070494222,20.0754966546256,21.3773510096965,18.6520640205955,19.6566006679253,21.0599005213045 +"Q9VUZ0",18.1756271659764,16.2282100089215,18.7855023904185,18.1008714608445,16.2668861065402,18.5661085257464,17.6638416011613,16.5230103113611,18.6293004140181,18.087626742525,16.2827123806497,18.6587405901842,17.6899825800436,16.4269408168305,18.7217327853893,17.860186526605,16.3678968638596,18.6587994464688 +"Q9VV31",13.8802716571374,17.2166014138472,18.8292093752036,13.369061833691,16.8247007878886,18.0708715309514,12.7505500523664,16.6418819248187,17.8600141340388,12.0603903769161,16.2817816589228,17.1113236113683,12.3055671858383,16.3950465871226,17.2316919754535,11.5469055354708,15.8337274126356,17.0441320335786 +"Q9VV36",21.9407978014875,22.9980548391222,25.9067937469265,21.7133654327717,22.8391065813998,25.3589855965101,21.3302828791997,22.4068729684636,25.221271554156,21.2028312610453,22.4816127235918,24.9749773914141,21.3017976074846,22.6293962882524,25.0906586400184,21.1432512445393,22.4112066370567,24.8436021933966 +"Q9VV39",16.2209932068921,17.156413306179,18.4590217562644,16.2471784541127,17.3436979240413,18.5777902216845,16.5073087953989,17.459413839821,18.7525587366984,16.4260066178224,17.4951531154697,18.8341191409797,16.5038719478854,17.6404484432645,18.6651244442172,16.6985296322038,17.6206060390074,18.845774465172 +"Q9VV46",23.2169193432041,23.3860027797115,25.1874715089102,23.653654775182,23.7260524950618,25.3918036815283,23.3840227269704,23.4118939934991,25.3332128967635,23.2029800333862,23.3691574271466,25.1446419865113,23.1331441372351,23.2940604627873,24.9403018737052,22.8240598011679,22.9857008885331,24.5885343871065 +"Q9VV47",19.9469370200885,19.828963740975,20.939187462131,19.8809738400101,19.8950273409735,20.8657471964033,19.8304382809667,19.6936632143522,20.6181666786468,19.7729575773162,19.7590976304213,20.6582926770899,20.0583845770763,20.0037114736169,20.8724395740557,19.8271662496347,19.7961366936554,20.8062799985672 +"Q9VV60",18.6068346392905,20.4808280438596,21.4078654921138,18.5040724005492,20.3416810272033,21.1891726807178,18.7774036876081,20.5171087201061,21.298097034476,18.4208905271869,20.1870636239654,21.1056758880729,18.7417581090517,20.3576847033155,21.2044087964009,18.4764221598988,20.2292806393111,21.0531615267664 +"Q9VV72",18.356625931704,18.9993227180716,20.6098811864612,18.2314313959569,19.075156795314,20.7806489181355,18.3972605769757,19.1954951218315,20.7698900309514,18.3984158985888,19.2029481053707,20.7812010353021,18.020493153064,19.1913715890079,20.817935967381,18.6822163035655,19.2220846088215,20.6446625272789 +"Q9VV75",23.5513029709289,23.7861280344811,24.8706918137727,23.551661416752,23.7798231592125,24.8350203940205,23.4109417849088,23.7143965199417,24.7683209231971,23.2595496645716,23.6029075579331,24.7120107598732,23.458718651279,23.7604112344937,24.8023404492933,23.2690774926333,23.5819464481812,24.7227667478952 +"Q9VV76",13.7169301025215,17.3803259345972,17.9863066183576,13.9091727576937,17.5270711925548,17.8908964918067,13.766832126417,17.4013626010415,17.6059786801324,13.7863860432919,17.5811659076054,17.7729740906651,13.7066854845478,17.375459273057,17.5432278467878,13.4405825220138,17.8397598436773,17.6967840310914 +"Q9VVA6",18.7210522806588,19.3800609039294,20.0198896119164,18.7979584289604,19.2003685737418,19.960898443688,18.5729654050908,18.9973198357272,19.758249219796,18.6163228721971,19.1227733293671,19.9864869862227,18.5595602636825,18.9228919626834,19.7252377193524,18.7795936286837,19.1644824890697,19.7302949950364 +"Q9VVA7",16.3595703763547,17.9984663951711,17.6018443911163,16.5033739435852,18.1411566109506,17.9939131665293,16.5162772980559,18.1835822132568,17.7838992225648,16.494419876322,18.1686327808012,17.9997914269681,16.4899034369643,18.1634225712394,17.7733762654612,16.6211352112148,18.4830641675726,17.9805172467517 +"Q9VVB4",15.0241849748604,16.8705625995151,16.6541929943906,15.2327547604747,16.9126791396523,16.3745956707356,14.88536621753,16.6876319769832,16.4041743316155,14.8667135076251,16.7780317720807,16.5102112308011,14.5137735213229,16.6272798955074,16.3275765953745,14.6161604605674,16.4112415771789,16.2166766438983 +"Q9VVC8",15.3918098268012,17.0678170246704,17.2199760513851,15.7621486808093,17.2915811555024,17.4498787768278,15.329300261345,17.0306154909948,17.0587464187333,15.5161875661298,17.2639231898799,17.3759752472987,15.2819899745815,16.9981864559718,16.9374114511519,15.5829444846454,17.4409793337014,17.3188580166968 +"Q9VVE2",17.8816268901852,17.9491293597242,19.6094964782477,17.7219669783906,17.9170841531505,19.6382704554501,17.6734690644314,17.8879180429198,19.2958600967986,17.8761593892684,18.0548821727195,19.5449308561211,17.8151175376918,17.8537820410653,19.3326396039301,17.6276278148612,17.7619436684914,19.2266960590931 +"Q9VVG0",17.1149457464151,17.490904727643,19.286796351762,17.3041793622401,17.5433817151798,19.3125010093137,17.2972846709468,17.5620430439492,19.2802273453649,17.4024400718924,17.7555225689083,19.4239404941214,17.4323075336571,17.6665414407278,19.2378692664181,17.5432324398576,17.7260864796867,19.3831962554526 +"Q9VVH3",19.6456321040616,19.8455138497688,20.6302485065269,19.3909080181491,19.7632073590858,20.5650688330635,19.5699408011948,19.7970128813603,20.4468122056021,19.2207496834193,19.6391450066913,20.3795927189449,19.6707659412091,19.784979904214,20.5744022833643,19.350400342403,19.4808785542732,20.2566644376366 +"Q9VVH5",21.8855055971179,22.0914524556285,24.0535304169685,21.7275903489662,22.0456449185676,23.9726371364685,21.839038289282,21.8897340354453,23.864389471586,21.5343656266887,21.9313129429902,23.9155566415593,21.8614148551418,21.8736604375215,23.9701725543331,21.6642912251218,21.9208246473103,23.6923300003182 +"Q9VVI2",14.2304124545682,11.8153279597889,15.564922424105,13.843299737935,11.7253297007112,15.6139242875318,14.2157668727416,11.8634784607002,15.5069453515333,14.1776370608343,12.518392821376,15.8451563307855,14.1611161595761,11.2573813694013,15.4456200210412,13.9622386396894,10.2752207558957,15.6587902268454 +"Q9VVJ7",16.826858436463,17.9471326471895,19.8575082173458,16.9109556729756,17.9957456847049,19.787980453564,16.8414677623433,17.8779057717778,19.8105335710371,16.9810083493448,17.9045440948003,19.7620463096316,16.7879330117778,17.9179345330181,19.7317867722656,16.8409425745942,17.7269449966394,19.5116598698008 +"Q9VVK5",16.0938681538964,15.5072208009198,16.6706111552529,15.6558224444613,14.9608634844903,16.4871308989838,15.8662595142211,15.53390679591,16.4665065594962,15.6469229640382,15.1648754936826,16.4414063497679,15.5895493832167,15.4468038829614,16.4903656498614,15.7448930945516,15.282760354736,16.5219043560839 +"Q9VVK7",17.3090199362581,18.430654222806,18.8827334929367,17.4828667405241,18.4629872340144,19.0232768015501,17.4101221205942,18.3838188685024,18.9503796359756,17.2803428509582,18.3104243677392,18.9577413803157,17.2879196130648,18.3039148538243,18.506974658674,17.3278329092797,18.2013813271425,18.8571544425782 +"Q9VVL5",16.2593540387677,18.4829430086484,16.8942170951059,16.1827500921918,18.3308658474115,17.031917728521,16.2279707515359,18.5880183404874,17.0779981354623,16.1322228601313,18.4136321999034,17.0939736609668,16.397457778734,18.6383190441321,17.3316137448738,16.3088636465789,18.6948281329472,17.2227029437158 +"Q9VVL7",23.0352556530349,23.1575182843364,24.3612125793663,23.3115259886795,23.2216783579069,24.4181815016752,22.8413893393145,22.9907376565514,24.2814425902088,23.0162246686505,23.0846860043302,24.3205939941959,22.809568243606,23.0951846067378,24.3370948716322,22.9907426632332,23.1780391595529,24.3932343244051 +"Q9VVL8",14.371964483679,16.896361145337,16.4513381657782,14.6961316962306,17.098670326019,16.5789465970346,14.4044633822936,16.891239730576,16.2220975693605,14.3981262525879,16.7779384522936,16.3222293336921,14.5114679122404,16.8973964288917,16.033906915955,14.2686991822434,16.5418853999115,16.0981502237462 +"Q9VVM1",14.9408398724757,15.8707940572917,15.8881987658616,15.2633266645418,15.7487819615008,15.5997163886562,15.1217176816544,15.9029983621886,15.5401297277801,15.3426112238614,16.0603192186602,15.7533435033774,14.5980879248999,15.8355839859647,15.6776804437296,15.2391847928261,16.0787394003468,15.8617127839084 +"Q9VVN2",13.7149547383169,14.9607607544758,15.3678346002704,13.8667921330787,14.9201211028816,15.4760634847476,13.8174149950882,15.0873311129231,15.6879877590817,14.0628584820354,15.5533246458516,15.9240319527388,14.0178495961117,15.0927983649947,15.7424114006169,13.9362330981888,15.7885204286073,15.6679699114006 +"Q9VVP9",14.8006751386073,17.2322108727356,17.9980252638777,14.8909308743646,17.3072287207806,18.233378820967,15.0948031561065,17.2805165363447,17.9305913241614,14.9970144227195,17.2413071911564,18.1272115017591,14.5331590577538,16.8320478479655,17.5821790414064,14.9837586319948,17.0750038200929,18.0143875996761 +"Q9VVS6",15.5921807972317,16.6586219470637,17.5636401000716,15.6168612253511,16.4035172062533,17.4153633513814,15.5898921785113,16.4848831234633,17.3030450267041,15.5848566598255,16.6957784350461,17.2875147579931,15.9078127745059,16.2125991978015,17.2936118116333,15.9109092506104,16.5712722571181,17.2828580502041 +"Q9VVT6",19.1994498472254,20.9162689945209,21.6014407495249,19.2835774467445,20.9213240405509,21.5112766038509,19.04866008824,20.8321325813831,21.5300120020472,19.1225455132004,20.7454192246963,21.4827644465089,19.0584794392872,20.9125802772968,21.3865370761475,19.1130700797946,20.7186012128227,21.3315289287711 +"Q9VVU1",20.2446690571787,22.3609869605872,23.2000606032854,20.6132860457142,22.8458252039554,23.5209869147318,20.3951964819862,22.5531256092485,23.375552053727,20.7249785809047,22.8956571920713,23.7772826005322,20.7274936735985,22.9139029521567,23.665050449888,20.6760768137417,22.786020651674,23.565184751664 +"Q9VVU2",18.6808038344667,20.5605969968683,21.0589755250051,18.4692590442715,20.4579132689639,20.9430489328383,18.8717630059014,20.8228106661591,21.1959627169846,18.4475356202444,20.5557984097721,21.0508726508586,18.8361693751728,20.7209502156176,21.1530798981146,18.5475330845542,20.4231066534315,20.8265852804882 +"Q9VVU5",15.2353498409629,15.6856988015311,15.8899917621935,14.9134608197319,15.5722081439712,16.291417605997,15.2023512762958,15.4531379482734,15.5699919651406,15.1941867841544,15.4996515578197,16.1710557549232,15.2133422196406,15.6870734118525,15.8606542431498,15.5901865957564,15.7440319162103,16.2332282799009 +"Q9VVW3",14.1042848274452,17.1164595753595,17.7837925402797,14.0102171593596,17.3052068793807,17.8782943570774,14.3002195123848,17.288392134277,17.9032389852808,14.4966352533149,17.3135824064446,18.065943277377,14.8363057017396,17.4709504232216,18.0954670241526,14.7382767009079,17.5784220341838,18.0675590678905 +"Q9VVW7",14.2304726284777,17.3413954581627,18.4205890281446,14.3043112833754,17.5262481290636,18.5440657653563,14.0429229151643,17.1167303154944,18.273491877548,14.2252452149323,17.323834397802,18.4372956162516,13.8365030875956,17.1782689398222,18.1262967987954,14.0910067478462,17.3283552375715,18.142774407506 +"Q9VVW8",14.9674037854222,15.3027136450231,16.9729726081866,15.2202004020667,15.3889030163529,17.0032278751972,14.984556854948,15.3701243142774,17.0294010359898,14.9111395871224,15.3504085918308,16.9092246927777,15.1113089351388,15.4985724727852,17.0503789594514,14.5026787758368,15.2655319565398,16.789662125982 +"Q9VVZ4",16.0251236542307,14.6754836145749,17.149855915562,16.2661915600704,14.858890803218,17.0139085833102,15.8297641687537,14.6724115367467,16.7041222974896,15.7298968798638,15.1865270185638,16.9303957984616,15.7036281073902,14.9620743546326,16.5230999623756,15.3340071040163,14.5177591681721,16.5064400386148 +"Q9VW00",12.1965476617673,16.9492558367805,18.6022852364146,11.9106117830284,16.9163913573223,18.6824476102562,12.0321031651346,16.964339023033,18.5562881142334,11.5611782388544,16.6652269356226,18.4044207357441,11.91809685595,16.952800801197,18.6123653824243,11.6835811837067,16.9348923619484,18.3593385685989 +"Q9VW14",14.5795762167485,13.8026290307517,12.9136957889524,14.2949414754132,14.1163110854698,13.0961441993671,14.4719535539827,14.0893033659605,13.0407276630891,14.4207995531888,14.0048361472022,13.1025533566742,14.3328197218256,13.8292880968125,12.5784084556308,14.592511794547,13.5534280766046,12.7643212868998 +"Q9VW26",17.0267126934026,17.625870921643,17.8134102047537,16.9641957641396,17.6485013505673,17.6613985892337,17.1153669174213,17.8511407131551,17.9127528593069,17.1153202316015,17.8852117632531,17.8979682668858,17.0540081256066,17.7939276605035,17.9240411552865,16.9664941486864,17.6344952978493,17.6543168091482 +"Q9VW34",16.769975702397,18.6853024624455,19.3022220014748,16.7277422001787,18.7989366149827,19.2350171819948,17.0179285801407,18.8093291066287,19.6069671327195,17.088629469448,19.1014039760208,19.9554008089772,16.7840584402571,18.8686575581491,19.5872532234257,17.0674035346482,19.1617249850918,19.7510481258025 +"Q9VW40",13.7115870541538,14.9926560346881,15.560561160534,13.2578824128432,14.9481209453345,15.4780355803555,13.5221076839983,15.0875970540475,15.3428142429202,13.5344265597324,15.0667434686589,15.3863856869943,13.8583432638354,15.2061798026409,15.4846787145309,13.4163425380905,14.969313342547,15.2476387787232 +"Q9VW54",15.1265207575234,15.6934345281064,15.9970179912587,14.9461417409382,15.5911734490716,15.8345695148436,15.7755000388997,16.1268658476206,16.3488818502106,15.3929681930921,16.0609052282032,16.3447987673327,15.6941509948319,16.1172988181429,16.4533495111089,15.7010610488154,16.0933843185677,16.4935233626109 +"Q9VW57",15.0481189737161,16.4038358301339,17.7749234110914,15.1549527053217,16.5330911419386,17.9120902315194,15.3773706492403,16.4751805144778,17.6825234701166,15.4089607981932,16.6391793529472,18.0928986170546,15.2032677903164,16.526731119413,17.835230568934,15.5251147559161,16.57988857096,18.0066202947228 +"Q9VW58",14.8978202210974,13.1959260648739,16.7613879792917,14.5496365467631,12.9618749762625,16.8579792113501,14.4023699877594,13.3275979452626,16.6202853238683,14.5418640096693,13.4434417708224,16.6262731273569,14.0822798688818,13.6865439359521,16.8880895398317,14.1597550826418,13.6961362515346,16.9563659770426 +"Q9VW59",18.9441666969429,19.7682064939108,20.5657917960148,18.5972608003565,19.7040505867338,20.6052232880524,18.6805223353761,19.7371447160318,20.5016142549859,18.7248900912688,19.7709796283339,20.6767964083125,18.9062729211239,19.8333562116131,20.6789963919601,18.8954205400997,19.9659094969094,20.8404806453592 +"Q9VW66",20.6767487898122,21.2341187331813,22.3706688200326,20.7370424470723,21.4572164655548,22.5199327799139,20.387637992056,21.1428527370533,22.2294235763482,20.5067485131729,21.2795971730302,22.2769927514636,20.2412059540515,21.1460919181395,22.0775649743982,20.4448315363738,21.2873098132611,22.2142733289952 +"Q9VW68",22.0117462028848,22.6476518022661,23.3193050644413,22.0731894548138,22.8523034034132,23.5997776600174,22.3351945494411,23.0221338040665,23.6173112732292,22.2547731613268,23.0168388691225,23.8198902168678,22.3887755234622,23.16878904651,23.8583982634363,22.3018517379183,23.1121215562944,23.7849623607837 +"Q9VW73",14.405280094754,13.2049345732004,14.782359156494,14.1517783089343,13.1491845564994,14.8309270729546,14.5997270238834,13.2557527606088,14.6373087239807,14.7292764321573,13.313704302621,14.7031034788951,14.7196139262441,13.4137123511558,15.1131746142963,14.808629784315,13.1580569751185,15.0201083932756 +"Q9VW90",14.7260891781953,14.305368765856,17.0129362833746,13.9741791760991,13.3818274637281,16.274457771749,15.0398861378742,13.7537019001082,16.996909000233,14.5509667457936,13.6434555302157,16.2910855129007,16.1115679663976,14.7492673324048,17.7647626517287,13.6123948112541,12.4469028939785,15.4281251627851 +"Q9VWA8",14.3460996882291,13.3574785211545,15.652026010392,14.4746867469828,13.380224003763,15.7223370435667,14.3246897373845,13.397364190632,15.3550916861397,14.182034429884,13.7035686863349,15.635556738203,14.1734715237011,13.532081812326,15.4809729033083,15.0487162896021,13.3956319067499,15.4240526796042 +"Q9VWD0",17.6793977087118,17.9038874049904,19.4251465450644,17.4251089122582,17.7492607219279,19.498085753066,17.4106764182303,17.7689129891996,19.4433721260172,17.2664996845526,17.6007309310223,19.2891637498978,17.5218385720118,17.7000942720331,19.6022297912787,17.0922020701119,17.5007617662843,19.3612407323222 +"Q9VWD5",14.1368488238189,13.5504749713151,15.4597881376123,14.1065162290052,13.3333615010619,15.5235071463896,14.3036760454265,13.3066924359831,15.6537408836606,14.4060362490207,13.762847421185,15.4717476757147,14.3672175782593,13.3388338190281,15.4330716860114,14.628834014279,14.0108331430878,15.5519416484758 +"Q9VWD9",18.5215241836255,19.4308714500012,20.4210885893657,18.5531977371592,19.5333302000045,20.395105192306,18.4278173553079,19.4884110953166,20.317338431864,18.5557884838798,19.5407425315841,20.2939372283881,18.3908690321269,19.5615102567073,20.2155929195619,18.5174654673153,19.4343129359701,20.2783740974399 +"Q9VWF0",16.119364817611,16.5117668545907,17.0982749681184,16.1519970168308,16.402237875077,17.2614633925447,15.9865665821449,16.3052025557965,16.7594023865224,16.1911460985379,16.085418985517,17.1136284764584,15.7696209220466,16.3268975131138,17.0348554833623,16.0177634270067,16.1455115144968,17.1068092553334 +"Q9VWH4",23.8210062605574,24.2162427337803,25.5354808391785,23.817340803719,24.2170442012131,25.4373937691307,23.6369121054666,24.0680363385776,25.2870585465092,23.5556637019565,23.9925775346345,25.2475026684043,23.5963818256062,24.129646775897,25.3343550256186,23.540592246043,23.9548728605252,25.1854989116047 +"Q9VWI0",19.4553121861328,21.295482012672,22.6199839467457,19.4127922633419,21.4119153473202,22.4811680679033,19.310790094718,21.2339098938235,22.3061236514454,19.1547783468077,21.2241791678731,22.2768648318218,19.108257014705,21.2721079620175,22.3214850097369,19.1308511217239,21.1851224184591,22.132796530332 +"Q9VWL4",15.2414638097925,16.4159131991382,17.8291500334248,14.857897418656,16.087457124286,17.4719036328413,15.1552240920877,16.237577447456,17.6672797567622,14.913384879662,15.7546808963662,17.2369315918237,15.1101762288347,16.3262050889112,17.4713412931482,14.5212183122139,15.7443069462437,17.1068380969259 +"Q9VWP2",18.505722345932,19.9472547817063,21.2330480247738,18.3901020808154,20.0197309781649,21.1983931087088,18.1422512381325,19.7421809643293,20.6480134451189,18.1948509363612,19.7585297864837,20.8002032155281,18.1174974695905,19.7608273980944,20.7630087342049,18.0313882001741,19.6158234331687,20.5261051560534 +"Q9VWP4",12.915066850162,16.1272218296992,15.8306762664145,13.4149573071621,16.1894753601392,15.6381285741942,13.5085624951358,16.337456500351,15.6807917062541,13.3612342855259,16.3869898445484,16.0521399453417,13.4737340326894,16.4720032018748,15.7432877782935,13.624612598159,16.6424757782247,15.9957814379106 +"Q9VWS1",15.610061973361,16.9182515753857,18.8419839336301,15.7966526450181,17.1733375462302,18.8009499590254,15.7078002089297,17.102053084162,18.8112143234642,15.7296648908796,17.4700140024915,18.9224707974361,15.709536071812,17.0093120252779,18.5652863200681,15.5061133811297,17.2235806265548,18.7202982942811 +"Q9VWT3",14.8767046001389,13.699349179885,14.9463023132601,14.3245954383908,13.4243008895043,14.837640711815,14.7671518349568,13.5945444968405,14.8305511308394,14.4236186545165,13.3388948925452,14.8583903622415,14.4867821850411,13.3615176953086,14.8708370795732,14.4546964046125,13.4802901700003,14.796266335727 +"Q9VWU1",15.1893296354029,15.1120465196932,14.5299718162855,15.3714747073388,15.0608417601648,14.2164576078296,15.4250371460294,14.919364876139,14.0815155626513,15.3394017410908,15.2083435038198,14.5934105584219,14.9269964900985,15.1066004172037,14.257197967866,15.4563198798116,15.434160371226,14.3626587282514 +"Q9VWV6",23.0150137281624,23.4299509968868,24.8907736794803,23.5149083577214,23.7851485571282,25.222543199638,22.7018403814027,23.0814148988914,24.4532434663312,22.8172603687954,23.3078233254668,24.7426146897711,22.7356192088788,23.2375384061706,24.5510187111049,22.586940670464,23.0703579969868,24.3597283986722 +"Q9VWW2",14.3872490645379,15.0176152846848,16.5140174369214,14.7143675238535,14.6333912445469,16.5076764848386,14.2210424457306,14.4249059834719,16.2784827812358,15.2497698889784,14.5249540895699,17.1320835137615,14.2099504942317,14.4548573009499,16.2287893044251,14.0515269541736,14.70585665052,16.017842920318 +"Q9VWX8",19.9993391026272,20.0136969708359,21.7208469107541,19.9194713835521,20.219336434083,21.7444635609527,19.8992391486878,19.989905459881,21.6232553659258,19.7520164667105,20.1120351755291,21.5895115508394,19.912547866173,20.1227823641264,21.5290679161148,19.8982826838238,20.1085632345131,21.6024758783607 +"Q9VX02",15.7105284276996,17.1410258020061,18.5210382741457,15.7242177751103,17.1550894860249,18.7926037734912,15.8121114710162,17.2072181470901,18.4862795326174,15.7963563315135,17.1427765849734,18.7808141265145,16.1528124297343,17.1384387630723,18.6281851484889,15.8319794776144,17.0906867331555,18.7175918576894 +"Q9VX36",21.6891745275579,21.7900131582849,23.420974881242,21.7113153335267,21.8641834708807,23.443396840692,21.5137133455462,21.7011111141512,23.2655338570915,21.5645500183209,21.6940290884568,23.198552883958,21.4221110382342,21.8054081531059,23.2352426548722,21.5650641669962,21.7108878259404,23.2377526077018 +"Q9VX69",17.1447145048281,18.3337072672788,19.9402485127192,17.3079187234949,18.1742554749211,19.6459747313195,16.7946044768528,17.9333795043738,19.2345668639452,17.0680045007199,18.004483348362,19.4132114269392,16.5524651117774,17.7250106086899,19.0536428892891,17.1008254130423,18.0875778439188,19.3552288012612 +"Q9VX98",18.4250077183858,18.1331362019451,18.4216717267086,18.2210512725766,18.0716144512373,18.1385278824552,18.3118037701224,18.1062684795283,18.3419091568077,18.090799519969,18.010001407712,18.1505143332257,18.1630246997644,18.2553667947688,18.365104280909,18.3129803288064,18.0578154644749,18.5882360406295 +"Q9VXA3",16.6334448640095,17.6246373524526,18.9590086245294,16.9259900227455,17.762446348891,19.1747797411677,16.732683078291,17.5760802530865,18.7925257935852,16.9025690405636,17.7383984420293,19.069164469544,16.85730736721,17.4478277196514,18.9707052468015,16.7826387372793,17.6015766056453,18.8446751585389 +"Q9VXA9",12.4519045428789,14.0273920546479,16.3632617376341,12.0120243234626,13.9162357248179,16.3338587522751,12.5187177895176,14.0912837287587,16.3649666669485,12.6377546181361,13.9599298707021,16.2979004121623,12.7781976490054,13.9209984764666,16.304894041866,12.5905146650045,14.0306271133311,16.2838990788885 +"Q9VXB0",19.0234448680283,20.1539066821552,21.3961886744045,19.068894136471,20.2876963502369,21.5138369647674,18.9745981271703,20.1625593437027,21.4006903232075,19.1916091643755,20.3752598124184,21.7686371724507,18.9478125395593,19.9813924414334,21.3157454153126,19.2145663992281,20.3902251308685,21.6323396078596 +"Q9VXC1",17.1042153971417,18.5937700556815,19.5614550913811,17.0486236094226,18.5971104871013,19.4974593751978,16.9304875645512,18.4339264696938,19.4154878053355,17.0180707056119,18.4345249116936,19.4686943175141,16.8066720467346,18.5091514397415,19.7049461041491,16.729965275372,18.3995867820234,19.4744996996809 +"Q9VXC9",18.7027818015376,18.0300096606038,19.5809942841248,18.5651453082188,17.7615602547322,19.4285907048639,19.0323440113047,18.3914209820015,20.0761302460754,18.9510601145712,18.2130620316378,20.118419306544,18.6741192161642,18.5100330563825,20.4664074191071,19.025794993471,18.6838428306631,20.3739097655665 +"Q9VXE0",16.8849655643799,18.5009513090684,18.2715615984533,16.8826168780409,18.5554148750351,18.4021947052628,16.908653350482,18.4685697620407,18.1717831411787,17.3216019595289,18.7964147892348,18.7451309853077,17.1005920484308,18.5656423159635,18.2876503395245,17.2314334010958,18.8043513413042,18.5818444565682 +"Q9VXE5",14.1107764057934,14.6785337065925,14.9227238299103,14.0873378945882,14.6853185302832,15.037662131384,14.3295209712937,14.9217070986796,15.0093297597191,14.1312081506357,14.6527714399324,14.7838530625254,14.2193244174717,14.9887845601842,14.8400014704816,14.3951453965536,14.5356510434465,14.8733300141798 +"Q9VXE8",14.9759240538577,16.4750344456013,17.5369989489505,15.1949309197348,16.375074487773,17.6343351731963,14.8149316081891,16.2677318214568,17.0131659274801,14.8827191223615,16.3898430368989,17.4905200939863,14.7208341809234,16.4540125720031,17.2007390279184,15.1532840452139,16.4137935095154,17.2219704049365 +"Q9VXF9",15.9655768177171,17.7294059040672,18.8968166431842,16.0844245351334,17.7388533158519,18.8158072843029,16.0606709235899,17.6536516073655,18.771182285106,16.1083940134286,17.6920675164099,18.8102950529465,15.8439195333135,17.5970114111455,18.607917971775,15.7700162393639,17.6229384970881,18.7284239326996 +"Q9VXG4",19.0501554652655,20.1419794102034,21.165912536878,18.8142178872525,19.7925375486536,20.9959383908876,19.0339295987038,20.1188065068365,20.9750573779298,18.7209544796039,19.928544240894,21.1261714499802,18.9428732333724,19.8631957917694,20.923379853226,18.6846437352372,19.8209172629597,20.7803008523625 +"Q9VXH4",15.9100222884837,17.3875366880039,17.8283089929647,15.694078740099,17.5394211046218,17.9514704024749,15.6887249663241,17.6951660649887,17.9751782576324,15.8693681972203,17.7751036744217,18.1671680123091,15.6219217679976,17.8198901124296,18.1245509975623,15.666543708861,17.6597673666868,18.0388565432472 +"Q9VXH7",18.4331276614411,17.8397149066645,18.430142838034,18.1582672595268,18.0333931528716,18.4367036691296,18.1414588904297,17.9226750420104,18.2715145867318,18.1799585390328,18.1065771774078,18.0364473256423,18.0723839499781,18.0481343191981,18.3348939811334,18.1727709706966,18.3408497652893,18.1417382164188 +"Q9VXI1",18.0474947731048,19.3760803916283,20.7691144265328,18.3041544961453,19.9942650851851,21.3751315109241,17.8628445807312,19.1956706281277,20.4341898227492,18.314061302249,19.9074139057167,21.2928370312355,18.1658592678946,19.4564548751271,20.7674511350114,18.3396697051418,19.6598336527061,20.9708708328052 +"Q9VXI6",21.1942761674127,21.9483451126337,23.3925341609185,21.0445655392571,21.8593372136879,23.2678444059921,21.0033824375367,21.8406061169278,23.1663777351345,20.9288593037284,21.6730044190533,23.1460143115431,20.8402632166367,21.922121835377,23.3057008479426,21.0406505874234,21.739120894257,23.1278483385507 +"Q9VXJ7",14.4267221275407,14.7499268804615,15.8617821556413,14.3067298689871,15.0407612006974,15.6361186640047,14.3561622277915,14.8999244943843,15.8102152651442,14.713180146586,14.9058256074707,15.354485441499,14.4109201749363,14.9096896571036,15.6328359580463,14.3716186364737,14.5920127742691,15.4071797051774 +"Q9VXK6",16.6959695923113,18.67880668053,18.7381720899279,16.4888545430417,18.6466052201961,18.6400495318575,16.426762459439,18.5584251806862,18.4707714007864,16.2484705632806,18.4048666509259,18.2234092610658,16.516844350592,18.6396819728419,18.590591072041,16.0094730142644,18.3389363692747,17.8605444545385 +"Q9VXK7",16.7187402280791,18.5897785257232,18.7877729208136,16.655872028837,18.5981996233906,18.6694324041569,16.6942161239706,18.6631018032394,18.6402684959168,16.5490181952778,18.538713444522,18.6965193879964,16.9321563819788,18.8788911601877,19.0264105814694,16.958302918563,18.6905511819227,18.8083681773133 +"Q9VXM4",19.7624461760768,19.5102688575151,20.7731864976325,19.8707915103396,19.7862306916007,20.8224678302891,19.8260053531966,19.7034896591572,20.7265943271119,20.2581303576762,20.6356479820516,20.6677116964766,19.8404555256198,19.8165611163343,20.8105125833317,19.829641065336,19.9464845119096,20.7944209354976 +"Q9VXN1",12.694704659562,13.740014184437,15.0641299900652,12.0498925021028,13.7250063224051,15.2276447139369,12.1108450567136,13.5276826579724,14.6365480431046,12.3965290470125,13.5571566307385,15.0812272475867,12.0895465490818,13.4140090812326,14.7100515809646,12.4505482166553,13.8440448903578,15.079470208977 +"Q9VXN2",18.6244874930184,17.6566319145816,19.8142142875935,18.6643240085931,17.7238980072767,19.6247941773868,17.9615081466045,17.5999608071422,19.4743887795476,18.0542104520827,17.5760821192975,19.2652026191134,17.9858202772333,17.583395764011,19.2438807456031,18.4643007725796,17.2007645999446,19.3788062889986 +"Q9VXN3",16.2458302799451,17.0854537289329,18.0059205946864,16.1116074963704,17.0825247211034,17.9182295159303,16.0057436244458,17.002850578772,17.8668490230439,16.0502801648697,16.9766917908233,18.0949043937076,15.9567100401436,16.9935596002224,17.6321815352213,15.9693089390955,16.8506478312495,17.460910274312 +"Q9VXN4",14.9085296298504,13.7105187991433,15.6957793909701,15.0285031575742,13.945980796371,15.6589686096932,15.3409925158173,13.9295882754917,15.974487443499,15.208019387997,14.1768748500608,15.8751988764632,15.2200721953141,14.0258758520572,16.0438703582715,15.2928622276008,13.8904085622799,15.9651671106202 +"Q9VXP3",13.7494665495332,14.8662776358966,13.7337691236034,13.865265040868,14.9899197588589,13.9101435674878,14.3259637731537,15.3748295010002,14.4220999076155,14.6228693555583,15.5890368699929,14.8172150438071,14.2932022791636,15.4059899026704,14.4312217822965,14.5246910691324,15.7968047025065,14.5791433909151 +"Q9VXP4",15.8215299407524,18.2926774267834,19.8715978661747,15.8957743804373,18.345089769095,19.9067514180251,15.7936500950817,18.1065668890434,19.8507821195286,16.0068616182171,18.4526173314297,19.9032471974743,15.6330237535446,18.1481200237627,19.8011286194315,15.863068365075,18.2959701351951,19.768812471392 +"Q9VXQ0",14.9281524411664,14.5387731760958,14.2941569772105,15.1243166685401,14.7120177146545,14.2803774378513,15.6888002479226,15.2867482207246,15.1253445196795,15.6710409910641,15.1423720467294,14.8505239027662,15.4925746800945,15.0982220156462,14.6129242681617,15.814445298469,15.2007661533425,14.8547097130364 +"Q9VXQ5",18.9918808275704,20.5513202433059,21.1937354660206,19.1909654816917,20.5953353487996,21.2713130904076,19.1735176314129,20.6608553439813,21.2902629104146,19.1631175188625,20.6875548949304,21.4136598138357,19.0794391075519,20.6183423408922,21.2172299675048,19.2602328631093,20.6608147030997,21.3765452318425 +"Q9VXR9",14.1751272615217,14.4940071873802,17.0200193720917,13.6706832251861,14.1039554874326,16.672162118388,14.3227405299289,14.6688353970333,17.1064450508758,14.1780653500984,14.298540281168,16.8993288901965,14.3345208420348,14.8525363212499,17.2495683007348,14.4212038119015,14.5695164030271,17.064852105129 +"Q9VXY3",17.1164493604358,18.0717171497827,18.3584868264192,17.3034221759364,18.29450828553,18.6390828206732,17.4192748471222,18.302408905399,18.592216418029,17.4764901248051,18.5155380153849,18.8920225988116,17.3909326509276,18.2585375315292,18.6751100890971,17.4038531746304,18.3079932079433,18.735736780195 +"Q9VXZ0",18.6588673539991,19.5316595917648,21.2412332377743,18.4693273816755,19.666561399209,21.4363191364516,18.3886653450574,19.5077121503877,21.1118910655527,18.2290017322801,19.4281877241843,21.0543511280809,18.3979724851501,19.4584788364006,21.2059311146537,18.0875035124605,19.2994510371323,20.9719709002903 +"Q9VXZ8",16.8732245125951,17.7693669834962,18.0536479739363,17.1106918946098,17.8447277299194,17.9591126077131,17.43353930693,18.0430324865406,18.438297384393,17.306258817119,18.0253687316837,18.3351081171763,17.6416512808177,18.3498867986545,18.7196126085028,17.7934388915199,18.1365196619877,18.5714206682886 +"Q9VY05",16.6624889821597,18.7007100462774,19.69665198754,16.3106513228449,18.414288370014,19.2259420444149,16.8554283985407,18.859664435482,19.7917391863974,16.7864738396951,18.6364994140418,19.4757410904749,16.8917882563033,19.0825172821467,19.8611528018673,16.7173503613821,18.7044442340202,19.1777948282636 +"Q9VY24",16.8958099241009,17.564299624569,17.8452198445743,17.304104385884,18.0424206526751,18.4284967300356,17.2037179571316,17.9268809592725,17.940410980633,17.3602288038216,18.0129132509355,18.2469647386067,17.2739841625033,18.0925405462004,18.1929925650643,17.2025918616129,17.8518980190067,18.0440840621602 +"Q9VY28",14.4113956334307,15.0774707499216,15.6647530581881,14.4710176072908,15.32684361284,15.4641710189688,14.5727349493937,15.5339944342524,15.808678105942,14.6668727663397,15.6686383762541,15.7904963603493,14.5783287401562,15.488097442168,15.9349355069677,14.5351391686168,15.5303354002164,15.524051245615 +"Q9VY41",15.711771314987,17.0793659986522,17.5244397040856,15.6929745230274,16.2728957183402,17.2694428659731,15.7270910176447,16.3922732748624,17.1425691153165,15.9290583509243,16.5355465402728,17.1154850704789,15.9309481109185,15.9800529536803,17.314574258183,16.1815248867793,16.8406543242426,17.0762401730892 +"Q9VY42",13.8100733883309,14.2541814588935,17.2176921001656,13.9543367849034,14.1658750879462,17.197463086541,13.8469166311827,14.480571851149,17.3626169414294,13.9975761614008,14.3466417259909,17.3282789041277,13.975534987033,14.8531694062031,17.5402755011913,14.2587571872034,14.3695061452144,17.3375045127066 +"Q9VY78",17.3226925009895,19.2867533340891,20.1371341045959,17.0935320432228,19.2751044034008,20.1075044841045,16.9781317536726,19.3221978883663,19.847939564862,17.1288790269022,19.3484687332719,19.9433442562492,17.3536161791811,19.1642134452383,19.8623371813465,16.8905096129015,19.184241024641,19.7119675771514 +"Q9VY87",16.8732624728242,16.9283932971633,18.8468470904439,16.6616107894956,16.5999955101423,18.864001128722,16.7115300868103,16.7609599484658,19.0370429096251,16.8211352751638,17.0602417559902,19.2359056209026,16.8845819356046,16.7593893325865,19.2939334687355,17.0553831275915,17.5543230382179,19.4871612941408 +"Q9VY91",17.5278292756374,17.144326936048,17.3507793229548,16.6276702521839,16.9831808667857,17.5060858785283,16.3245168930406,16.941994496039,17.0701220753058,16.1291616863644,17.1739691660155,17.5947657456587,16.8969955897827,16.8153103544705,17.2013723721165,15.9134486568789,17.0093209812196,16.8380401918717 +"Q9VY92",19.9107510792818,20.9021760875595,22.8266684016349,20.3055192045453,21.2523584187753,22.9466839048254,19.9388261235513,20.903839372887,22.7746798108111,20.0716982367233,21.2523410934775,23.0682348910721,20.0278135196497,21.2457564723004,22.7025217164444,20.1348093829331,20.9989361934792,22.7310341661763 +"Q9VYF0",14.2763899548554,16.5718460897172,17.1323572140781,14.3643462105278,16.7619804399814,17.3618129061708,14.5046111577043,16.8580173459481,17.1834509624969,14.8904355586615,16.7874740127195,17.3836059716283,14.2669556136835,16.7531691367134,17.0848236468847,14.702832715258,16.9120016789423,17.4215993693561 +"Q9VYG8",14.8440571019859,14.5390730312768,15.8566601730961,14.5676525842782,14.2525022196153,15.6586599643583,15.0651356811563,14.3848389590354,15.710873464599,15.0132170824727,16.3610274992097,15.9939969798299,15.0431128072476,14.0593688004579,16.0771783692791,14.8927804020885,14.477378270611,15.8692821508342 +"Q9VYS2",15.3133476244012,14.2997486024655,15.9899381769386,14.7553198612728,14.369139245479,15.8119451534649,14.6419887440559,14.3477242259167,15.6905442019321,14.7442204280078,14.7369683823025,15.7030035337028,14.6734303571694,14.3558839444772,15.7456641944413,14.6716779528318,14.2606312332648,15.5608248602429 +"Q9VYS5",14.7658016105147,13.2280111901439,14.9677311920061,14.6336947654206,13.2015224858207,14.982986473125,14.8115974986554,13.4970973479791,15.0793380682823,14.7294222410797,12.9845117662786,14.8862063247909,14.7047479725512,13.5525193044391,15.1828787317117,14.620554631275,12.6905125136115,14.7971489441839 +"Q9VYT0",17.9234186204635,18.2243449812315,18.9181416023035,17.5792170103974,18.0177932617339,18.6810366686582,17.8922331165344,18.2584676894376,18.8114306072399,17.5342046840249,18.0567461038923,18.7115520052082,18.0651345115403,18.3946079998966,19.1168306141942,17.7074935258851,18.1523185739208,18.8438863536977 +"Q9VYT1",13.3568687510929,14.5791376831437,14.9309718508333,13.5312975380005,14.3563563132511,14.8449661737633,13.2529488691596,14.7197736851684,14.8204357995623,13.8957407389931,14.3018542544753,14.966309554945,13.4676242106017,14.5128160776591,14.7311761347941,13.6689651530198,14.5252957283708,14.7620466967417 +"Q9VYT3",13.3643197400442,14.8668104442283,15.1457842599231,13.2379770184769,14.7098894795169,15.1777888103136,13.1880034738666,14.7358232747412,14.6397332855877,13.3913980619712,14.9268290453127,15.1823690170426,13.393406115679,14.8349421150482,14.9585576143648,13.4595629612486,14.9115636632621,14.994016192141 +"Q9VYT6",17.0455436556287,16.072131023878,16.3898479321427,16.8385726707915,15.854436727562,16.2203299225861,16.6719839523188,15.8340251451551,16.0047760644004,16.777928195423,15.8806025212692,16.4347989063846,16.8318516379163,16.366968026413,16.580975750376,16.8035728324448,16.3028637462305,16.6304883891733 +"Q9VYU9",16.7386510773411,17.4836686284871,19.5649009090407,17.0550997929798,17.1814299085536,19.3339150670864,16.8873310928061,17.5198668488406,19.4589312595576,16.4987033508278,17.1848393851691,19.3907373365911,16.9304035009807,17.472467909298,19.564312381627,16.4527735808093,17.1883274683591,19.3470732798587 +"Q9VYV3",19.0868216431666,20.3015482244078,21.7864759808684,19.2258913431973,20.4770074464029,21.8262198566507,19.1416722513135,20.4422754664413,21.8642764662249,19.2139745424054,20.6860904705207,21.9549512912701,19.0324942545123,20.5646360964748,21.8221304304207,19.2509631354815,20.6287744114862,21.9319569897205 +"Q9VYV4",13.6806676817977,15.5004953226903,17.5899090131763,13.9528511909713,15.68507203217,17.4591986213202,13.6704341912628,15.3448016294541,17.3902393975645,13.8075417481928,15.428385137054,17.228904351711,13.6314295282172,15.6664276498359,17.261690502307,13.6200973850093,15.5003810918662,17.2300697353368 +"Q9VYY3",16.2331786243914,17.8678972037285,18.360167685581,16.2380497936446,17.7427688797505,18.194523243428,16.3950026066164,17.8929483871351,18.5255750441214,16.3606860341066,17.9257394222693,18.3288600196317,16.5133499224945,17.8914166814273,18.486134505353,16.49308155386,17.8630845487694,18.4871360232561 +"Q9VZ19",19.1593106724933,20.3956353624637,21.6417582035882,19.0706463605371,20.4469055221348,21.6989500486931,19.3988741880098,20.6492140596269,21.6163860769386,18.9852494703783,20.3411994666155,21.4150603446141,19.1271882252562,20.2897294988183,21.4952864833388,18.2936243695459,19.8216496815178,20.8920871335171 +"Q9VZ20",17.6535436387087,18.7691849624652,19.4574462516562,17.8685387801268,18.9159832189911,19.5619448055436,17.7634028738441,18.817096295631,19.4543247065271,17.8154417731447,18.8949546793183,19.5229756841211,17.6915823705375,18.8559785155441,19.4675055852351,17.8930287189772,18.9861216954193,19.4187113235652 +"Q9VZ24",21.6916476017331,21.0516006150304,22.9636863360916,21.9080754568125,21.1541666174246,23.0438091139109,21.4085782597855,20.8291485173152,22.8177642347105,21.6550933671519,21.0363046216999,22.7570642562188,20.9208975818422,21.1065207095842,22.7843681026738,21.7132197774739,21.5874122185851,22.945199987168 +"Q9VZ49",18.274084839012,18.6573967391501,19.4768826278096,18.5235480912844,18.70690440378,19.6097677205338,18.5361798401047,18.6581257077265,19.3769676607487,18.4300523634676,18.7104174094042,19.5148690483332,18.8285321023777,18.5527771791758,19.2429820092316,18.6462112250353,19.0253132269459,19.5636040049412 +"Q9VZ58",16.8870365393896,18.2531256510005,18.8804306644688,16.7726837378963,18.4410924527137,18.9050301141465,17.0833003699423,18.557248484706,18.8005760614427,17.2481424766458,18.5995241697168,19.0141748509904,16.9447951218187,18.5002760295677,18.7981348343109,17.0750990645002,18.531831817157,18.8618815468987 +"Q9VZ64",18.4016509594423,19.5749919660401,20.6732109781434,18.32040482177,19.5805761342493,20.6642172205659,18.1542264688433,19.6028014394592,20.3322175244849,18.1858566829741,19.5686236901638,20.4367592044254,18.0361021024365,19.5246614660267,20.4589931503079,18.0431104681426,19.4231600473475,20.3552044073669 +"Q9VZ66",15.7351207489132,16.8060297203182,18.7996612478878,15.7605656024847,16.8329435506261,18.5741210868271,15.8562806809235,16.8175855351217,18.6816410919234,15.679897736588,16.9152151692417,18.6312725750484,15.6040834396277,16.749206915287,18.4078041237821,15.630057690936,16.7889192614417,18.4392397654825 +"Q9VZ67",13.7727091788812,15.2065953180757,16.1217821612882,13.9439389700348,15.1420781606128,16.083658475689,13.6985161497921,15.4189095124266,16.2619919453466,14.1083689689769,15.2948270790264,16.4046438290936,13.8504465112128,15.5633219031677,16.2664609704313,13.9505171544778,15.3722927680306,16.2698119536327 +"Q9VZD8",12.923660193269,13.9836941222956,14.7937209790696,12.6528900157197,13.7118145470194,14.6959347200312,12.8940153401028,13.8049782585454,14.6743816810901,12.4283376033739,13.7148527430903,14.4758825691253,12.930209885999,13.8621979124162,14.9989936605276,12.426758076603,13.3403189816514,14.0035899111239 +"Q9VZD9",13.9066033845601,13.0661877208112,15.8049310775417,14.191090353646,12.5461075496582,15.8868819035147,14.5698471021144,13.2722005943276,15.7842899452894,14.4654808913027,13.0768933635973,16.2333547411733,14.6767875643825,12.9930746493653,16.3689241084852,14.6873611840635,13.4656833841474,16.1425996247103 +"Q9VZE4",16.0482611140847,17.5436659801467,18.8013067556442,16.3895102572698,17.5243269609993,18.9791414441955,16.2396473269393,17.6094920280049,18.8158712758178,16.3716414832017,17.7785864952992,19.2271858105299,16.2177604580775,17.6235123202425,18.9557486267338,16.6833046217426,18.0818490818685,19.2134330607661 +"Q9VZF6",12.4147610894653,15.9258933875519,15.8029142183639,12.3458928411153,15.9785521574775,15.8771196475658,13.1736824133863,16.4370189478795,16.6685456023429,12.8967638550783,16.4143376886324,16.5212022900843,13.0861952099766,16.4871326665596,16.3874397924153,12.9150463712415,16.4002897730772,16.376928639588 +"Q9VZF9",18.5137227098927,19.320184118717,20.121146727875,18.4961357086005,19.1912146872463,19.742630116089,18.3938269606354,19.1388960205588,19.9849418575744,18.2533866635399,19.0368196210585,19.6570698815207,18.2943675292273,19.2655205355245,19.6450929426319,18.3286750604195,18.9398151789204,19.4492484024555 +"Q9VZG0",21.0995932560173,20.6184207590236,22.4443339540587,21.5045433959964,21.1111249431289,22.8310628174906,21.1817793975465,20.7603304323138,22.6299168494362,21.5009722010626,21.1752992787895,22.9324176777853,21.3214620768523,20.9682123980165,22.4950045534089,21.6012734843048,21.2197277173023,22.8136160055405 +"Q9VZG1",17.4092115301458,17.6105721683695,18.9067086882981,17.512945244388,17.4149839436108,18.8216393822524,17.192556797043,17.2977243158126,18.7467754639574,17.0381793823328,17.1586338117117,18.4872016069797,17.2660296767559,17.3924310345675,18.5340107450731,17.2174519347613,17.1896536689655,18.4147930022796 +"Q9VZG2",20.6900561972158,21.3775432114426,22.6827171410758,21.5140598927186,21.9057409754861,23.354047046939,20.8734349470477,21.3163921209305,22.9260275613321,21.1747590032943,21.8217242753698,23.5213836301606,21.0067526525113,21.2505635843149,22.7553214357559,21.2008915967004,21.6876090927218,23.1882355567018 +"Q9VZI3",14.2501407772654,13.6563418539635,15.4064814258578,14.0778857775055,13.1480187503438,14.9425624702291,14.3849895793247,13.6866311778465,15.2855102484415,14.0452785711924,13.6021260020357,15.4062702149109,14.6394703660168,13.8844289347593,15.5138696552054,14.1268145870076,13.6418420023097,15.2593178889383 +"Q9VZI8",14.8089399395632,15.8988358061385,15.6926420799819,15.1190686843363,15.9642420042909,15.7213854625474,15.1512669777032,16.0161156288142,15.7946343280336,15.1468073919466,16.2250111464722,16.1051847684772,15.1604094138477,16.5212549787763,16.2409583564657,15.279130107277,16.444733776786,16.0825837942854 +"Q9VZJ2",16.0430258179083,17.2755218168142,19.1461852180084,16.1431350015085,17.3349031245503,19.2162854965912,15.9933479918603,17.1846597518179,18.9907389973703,15.8603480090964,17.1643776619447,18.9325381186143,15.6693626230861,17.1365903633853,18.746240395553,15.6768666301247,16.9658893302068,18.6286071749479 +"Q9VZJ8",13.6557132563945,14.9672574845198,15.0881116208489,13.4883186304135,15.0309925158358,15.6338589972944,14.1605410593784,15.1747149445818,15.5972899622021,14.2137888441945,15.0995333806106,15.3181194696972,14.4085024602346,15.4178902833101,15.6372068846986,14.0200078784409,15.2503797610882,15.58478383768 +"Q9VZS1",13.8504136893225,15.2383114657338,16.8734669669244,13.9266640339196,15.5749325242481,17.1766768493028,13.6349785568429,15.2651068984176,17.1016091134277,14.0319288887893,15.6254289100501,17.0907447133415,13.3263227488448,15.4711414706027,17.1905647322173,13.6554043857738,15.8423911765835,17.2789248667736 +"Q9VZS3",17.1133078045502,19.21199000992,18.8823537047438,17.0848349074508,19.1667447457282,19.1033315931961,16.9582406330178,19.3438297181803,18.8878566733525,16.9946313553092,19.188839694293,19.0383756880761,16.5237497778616,19.4819751981163,18.7497594033737,17.1258552732784,19.2309359359675,18.9210163285658 +"Q9VZU4",21.3880862409027,21.1492981283527,21.9775498256747,21.4865920552707,21.2557080002139,21.9922672682753,21.1455654433908,21.0850184422707,21.8751534041135,21.2132657499211,21.0212278328627,21.7744671323949,21.0369073258515,21.2342121049426,21.8396342063341,20.9926552453935,21.1382417420804,21.6301978741946 +"Q9VZU7",16.6677597879958,17.1375421465648,18.0853745945406,16.5397508809354,16.9405524087911,18.0374673849617,17.0645773009201,17.6024803559899,18.5505736585887,16.9683480213468,17.5067711197899,18.6167132548965,17.1866591435142,17.6551901373358,18.7040361009986,17.1426610660619,17.5228794265271,18.5042685905945 +"Q9VZV2",14.6798315879653,14.3019287995305,16.0160533741033,14.9125005083224,14.3645462682399,15.5862434822804,14.8282497369984,14.1310859941986,15.8648295204772,14.9675985118168,14.4870368323842,15.6939683206441,15.0083312506127,14.2028786015363,15.999436881724,14.9446961044703,14.6278460856504,15.7974586663284 +"Q9VZW1",12.2365463536103,17.620495509984,15.2232459491287,12.3326580871324,16.9674339139643,15.2181888846191,12.4666390399145,16.9120671300277,14.8030207917959,12.7415946393117,16.8807776813826,14.9299422040032,12.2808613268084,17.0709855754662,15.1861544282154,12.0597055314128,16.9160974399726,15.031029392979 +"Q9VZW7",14.6926736367238,13.4780706230014,14.4704753611971,14.0719686565515,13.4668004313668,13.7923240261644,14.4499978773049,13.4520052658623,14.046758346925,14.0531767920954,13.6351099344364,13.7493081260888,14.5413971119424,13.7250250815444,14.2423573049094,13.6636366020161,12.9199583341297,13.3722037208818 +"Q9VZX9",17.6569522276436,18.2211937835661,19.5973916080395,17.6366620285489,18.256068100767,19.4118112854389,17.5579647052386,18.1172734313186,19.2892662017088,17.2629202825346,18.0501871817085,19.1887607651292,17.8838399894314,18.5368996859921,19.7560902116197,17.757767118756,18.3529851710952,19.5151219082575 +"Q9VZY0",15.9700593129734,17.5840684406959,17.817867463746,16.2037970224487,17.7847489275382,17.956664624222,15.8014589568792,17.4783234146094,17.7053444193675,16.3204012061524,17.9505481204414,18.1237649406255,15.6241043982076,17.7178486122006,17.4412272503367,16.3122988135043,17.7644075817601,18.0194531384338 +"Q9VZZ5",17.5293948980168,18.471048159761,19.7679491196798,17.2181713415284,18.6113845276114,19.8145824667376,17.3445169757678,18.4507607937034,19.512046362078,17.1498845745132,18.3468418092357,19.7021827679404,17.33733630834,18.4738736893225,19.634380968318,17.2174023294854,18.3787626446044,19.3991620206867 +"Q9VZZ6",16.8533613818217,19.0054431222543,19.4516729564052,16.7698813989325,19.0760403437888,19.1670006160162,16.8608678212925,19.0764277573769,19.3115358876616,16.9484993865566,18.9417025055072,19.1156419408776,16.8894276533893,19.177379854866,19.3875858629383,17.0024959213468,19.1823531007924,19.4803398701296 +"Q9W022",20.0565250352626,20.6732371345219,23.0921606851582,20.0988011735014,20.7557198790195,22.9703305148887,19.7490862371041,20.5756682789427,23.0200148910866,19.8784316158858,20.6226361931388,22.8428902213913,19.8513935006955,20.7371045464949,22.9528531001495,20.036796568806,20.6927894080721,22.8415187645263 +"Q9W073",13.0755975985692,14.7807193058462,15.7610181442312,13.1563697010901,14.7615916441545,15.7717609147281,13.0741469565289,14.6157178976345,15.7035768460879,12.962429015401,14.9020534321605,16.0606900580431,13.1746043915766,14.8837094903135,15.6560817732788,13.0276846296386,15.0472057791384,16.1107002492334 +"Q9W074",12.1758518867139,13.9134395128496,15.0429204676643,12.3244762610477,13.4573944838772,14.5244417765312,12.3410471364072,13.5512019650998,14.6243771828667,12.0386773708932,13.7454038833963,14.6460590628752,12.8057443988558,13.7024428815904,14.9556228121691,12.2543367245172,13.6888044588372,14.8531505238835 +"Q9W077",19.5414253558701,20.3222291295726,22.6922431691906,19.7552356166826,20.5265489862985,22.6170435366693,19.5732921926994,20.3134605366714,22.5902973699027,19.3103241174545,20.3830696015217,22.4193550754559,19.5149934057113,20.4313733670671,22.4481895752519,19.5661736604621,20.3568551811162,22.4862354273729 +"Q9W078",18.3002778851786,19.0215206606767,20.9812035265496,18.2304353780678,19.2743294387961,21.0246030062664,18.2958153437142,19.0359972617225,20.9208419788602,18.3568441345352,19.2274695721781,20.7809726177849,18.1560495510588,19.1412935671614,20.6959047385661,18.4489992049027,19.0362637592221,20.8625678135291 +"Q9W086",15.0227476846766,16.6864243805588,18.2249180924569,15.0302257689891,16.941974479241,18.3399321863436,15.1284472704524,16.9628089315394,18.7194478374999,15.2224969211302,17.2930976211427,18.7342672590729,14.9234048286422,17.0156812148161,18.5174504162808,15.1872532294803,17.2035619372854,18.6050636595924 +"Q9W087",14.749433822225,17.0926344928019,18.4842111940771,14.5878110579226,17.2369342720154,18.0321656749341,14.8818182017778,17.2177714275432,18.0334747491049,14.9807153744996,17.3894060619377,18.0094290320897,14.7538802473438,17.2718341659676,17.7797769571641,14.9156197024793,17.3133837601486,18.0164547054607 +"Q9W0A8",17.4288308036535,19.2115777068177,20.2663278201216,17.1353201504715,18.9207911447009,20.0286659764967,17.6447142418042,19.5676422643763,20.3609170193402,17.1748270257409,19.0449494238283,20.1587479279116,17.5648845434016,19.2979987128371,20.2402477963491,17.3166966579048,18.9909731918861,19.9163144996934 +"Q9W0B3",18.4496128992857,19.0663939334378,20.3156915276432,18.3746016931162,18.947166002443,20.2649162296217,18.3750045509237,18.8452835970201,20.1020219461363,18.4127746517529,18.9463145199218,20.1661392048582,18.4637890814402,18.843292746887,20.0503513768272,18.1501809332509,19.0043267356803,20.0049271906251 +"Q9W0C1",19.9911675150564,21.8177890842755,21.9447735147347,19.9785103879206,21.9604512149136,22.06398195037,19.7633813895522,21.7634500726718,21.7734655858447,20.0962788660718,21.897353113377,22.0810137987646,20.0363506731573,21.7714060720506,22.1601674633096,20.1541270685834,22.0671154763636,22.1750823161846 +"Q9W0C3",18.3849533292946,17.4867025172889,19.1252134689704,18.5282039566291,17.7297220709548,19.4886487246956,18.1092490879541,17.4263991917988,19.2205535509152,18.6405854686722,18.2998236196752,19.9894385003274,17.894951780553,17.4161270476828,19.1605479975206,18.3537505548766,18.2630641426757,19.5861347041481 +"Q9W0D3",12.4556427362014,13.8147898708152,11.9828589472243,12.3473645398046,13.6438620104858,11.5758474233236,12.6463773045217,14.1736565447672,11.7534903625021,12.3724485833173,13.9518086298029,12.6216090125867,12.6958395894606,14.1590011208413,11.8489036044787,12.5409713298768,13.9336999322017,11.8691145011092 +"Q9W0H3",16.0884314242331,16.9678280625877,17.6368261034677,15.3717754869414,16.9110591408212,17.1940149923608,15.6899052553806,17.1587234934292,17.4414468130966,15.3349871214567,17.0144087783848,17.3944415496908,15.7791274561474,17.2884170823006,17.5801968311296,15.5669476536007,16.9902367645196,17.248974120915 +"Q9W0H6",16.4242080687057,18.0585734727535,20.0543885857719,16.7478647923994,18.1145171106264,19.89240066472,16.4450371837142,18.1252708469093,19.8912814441791,16.6645707017003,17.9776469740039,19.8717989778064,16.3229131534985,18.1265536425639,19.8444205882554,16.5596857554356,18.0555593758744,19.867292326002 +"Q9W0H8",18.3088201817822,19.4472918341252,20.7299691106068,18.2879671396173,19.6006989141969,20.6612037427277,18.3976442178447,19.3338360205579,20.4338280257113,18.3717502849206,19.4247375665208,20.4124055144864,18.1469396076868,19.3218407540914,20.3107267586024,18.498078492595,19.2568619751569,20.3830760316071 +"Q9W0J9",18.2494873539657,19.0500852707047,18.4743396284907,18.0938141635094,18.9263022137673,18.397470783885,18.1275521386771,18.9403552031534,18.1481003537183,17.9068254203926,18.7529492207433,18.1712224987907,17.8973930737081,18.9052928747269,18.1850564859223,18.096667941839,19.1130602685114,18.2143775282254 +"Q9W0K9",14.1007101389326,13.6940711889939,14.8980679847695,13.8459353183054,13.9730870338736,14.6750361886615,14.3960409651511,13.4907121655465,14.6515561543003,14.165554212258,13.5200290058997,14.8250218531857,14.1208904709342,13.5876486245049,14.979794488777,13.9964702826776,13.6528053215131,14.7255721297726 +"Q9W0M4",16.7201817890123,17.6729304686895,19.3413935659618,16.5041359966848,17.5601474362741,18.8873761166403,16.9984611013404,17.616374766428,19.1490165758533,16.7737440399871,17.8460241322763,19.0795844382132,16.7805081844276,17.5902116263073,19.0280427738954,16.568626042123,17.7671729672964,19.0799915295247 +"Q9W0M5",12.5417242491201,12.7349692931572,14.0888147404732,12.6840121176829,13.3073680382574,14.1083733848231,12.8345835048886,12.7523611764216,13.9700978927403,13.2273316828873,13.1218016469287,14.3072868663142,12.5482630371697,12.8584443656799,13.7575424796869,12.8208244466269,13.171198373034,14.117223636152 +"Q9W0N6",14.2461425949707,14.142279528738,15.0767704974337,14.187549903953,14.1435347640267,15.0361134995226,13.967754322579,14.0174445567459,15.3113859156534,14.5155681218116,14.367840583735,15.7713035286877,14.039097953152,13.6599165604756,14.8842611734197,14.4352689299027,14.4192191815873,15.0882107105848 +"Q9W0Q2",15.2339190223195,16.1608460241939,15.0620943993842,15.2477272443947,16.3846664434614,15.2150255672563,15.1554635898355,16.3405654036506,15.0376764662551,15.1504632129894,16.3501534896859,14.9709568880878,15.0904372441126,16.3853530319612,15.0308995364359,15.1052450042611,16.3411523671566,15.0247381664674 +"Q9W0R0",15.5676144375231,16.4253539430845,18.4299107109493,15.7571450730428,16.3660024142885,18.3385132659823,15.6122548426264,16.4927659254622,18.3628482218812,15.6267656302793,16.5195306890238,18.1465062312626,15.429548902172,16.3988237383189,18.1593342487035,15.3835616836801,16.2690988887325,17.9621404162214 +"Q9W0S7",16.0950252965399,17.7401138310131,19.7537568183872,15.7905229555141,17.318877967208,19.3839446602004,16.4816268912237,18.0775555115193,19.8818646572009,16.3394867710232,17.7537342953503,19.8138044845724,16.3713036617401,18.0671376099234,19.9383311827204,16.2520151528488,17.7269305195309,19.6659158439133 +"Q9W0X2",14.3863727869796,17.1966313310304,17.6071937643121,13.957669923153,16.4735094345529,17.1970474927769,14.319951081139,16.6073776346122,17.4809631127943,13.8937086065653,16.3578606261537,17.1020385233929,14.1257446291651,16.6877716621007,17.2077467997439,14.1266147754371,16.38548143596,17.1190691757879 +"Q9W0Y1",17.2412837854012,17.5595502519231,18.2151256291682,17.0406091776028,17.7448224590993,18.3720510365616,17.2092270016612,17.8601748848652,18.2372064981519,17.1354892450762,17.7565362504839,18.315983871758,17.2289184057717,17.6850054934422,18.185378033817,17.0858894953829,17.4041921553598,18.0099424494785 +"Q9W0Z5",15.5158468886361,17.3682432341404,18.249174840869,15.7182468778898,17.6695926306027,18.5486470383337,15.2372228421283,17.1072118331145,17.8253417121428,15.4599640877638,17.2412796699321,18.082333880897,15.1916054968377,17.2706210152345,17.742403972538,15.0399193065382,17.3122479442019,18.1701546132705 +"Q9W125",21.4812264291946,19.9707883951854,22.4673273998314,21.6884150260158,19.9997364630319,22.4497439887118,21.4725329090354,19.9694387115045,22.5510828780166,21.3664066764146,19.9791873596888,22.4852696829386,21.5725169261416,20.0329492754024,22.6058570647308,21.4384434544694,20.4678957434294,22.587967090442 +"Q9W127",17.4666315588959,18.5307190827321,20.2791361376313,17.4966245671192,18.4903249101658,20.184552893687,17.1671736595287,18.4497944705514,20.0359454907052,17.3438923394261,18.4616225203146,19.8754737461053,17.3342480421687,18.5530964196501,20.1379337942785,16.9648958337375,18.3558155627358,19.9320640539048 +"Q9W136",17.3973274035509,17.9488723404089,19.1339970786664,17.5738875918225,18.076011183724,19.3115464504376,17.2641108485578,17.8528398562094,19.0590144730519,17.4057517668118,17.9609188197634,19.2287846355604,17.1424140966309,18.0330023307975,18.9050386913134,17.735928715941,18.0111095369878,19.1712086756569 +"Q9W140",11.6060501757044,14.896220544813,15.6782855248166,11.9338555059274,15.0113457128836,15.5628188536747,11.0963179491189,14.7077195094906,15.2956700002193,11.0112190949035,15.0522409530804,15.6193259904257,10.7200480018776,14.6461503357051,15.7882637302865,10.1509690079947,14.7496798828371,15.7284198170468 +"Q9W141",20.9619177883084,20.9504616836419,23.9534638862612,20.9116889296139,20.8659907340255,23.8485917274342,20.9755041465656,20.9290461755965,23.8018693140876,20.7701763368179,20.7499918577997,23.7879012835298,20.9726545252772,21.0475958513686,23.7868982005082,20.8511998491775,20.7941192298868,23.5741283882394 +"Q9W147",12.129238723772,14.1968007885775,15.1734614986374,11.9997313196103,14.378865965264,15.0207503091162,11.9436677888545,14.1340158603537,14.8279577379096,12.2482503298051,14.2666478598915,14.9593658722826,12.0346016587898,14.4763385802069,15.0159476641085,11.885342891542,14.1449008884442,14.9420973244296 +"Q9W158",15.4994852273246,16.8223552616,18.1661255358906,15.5301652101689,17.201594745567,18.3548145209196,15.692480767866,16.9941807396554,18.2195807558681,15.7499682936337,17.3403417612213,18.4467216068496,15.3231753147711,17.1218887690235,18.1534074333745,15.8505829598258,17.0571071337,18.2344933471144 +"Q9W197",16.2515811174703,17.8183917185602,18.1822171527662,16.009146269988,17.7076957937639,18.0615522878566,16.2843681859829,17.7529176427414,18.1604301957801,16.1504637377842,17.8084365188174,18.0403827159864,16.1527934831586,17.6856628223812,18.2252381069542,16.0127434691625,17.9192068744564,18.1369088396343 +"Q9W199",12.5537852715875,16.2573735724064,17.800680095853,12.0289611542247,16.4721744887782,17.8537005393275,12.8526277134242,16.6439854271546,18.2480395938051,13.1449912758761,16.6717150367885,18.3806206590125,12.9970757325249,16.8065616790104,18.2224544732105,12.9374839457532,16.9315107882208,18.3592979532373 +"Q9W1B9",19.0833431631589,19.9206654251453,22.1883327349203,18.9773060867207,20.0490198714898,22.0433299741902,19.3276495320645,20.5238490784234,22.2750418527297,19.0297855410184,20.2131500786576,22.2547719779477,19.2981508390173,20.7006319808827,22.3718667689381,19.0361669858267,20.9594209619315,22.3873827981606 +"Q9W1C8",14.3380956806107,16.5371575162278,16.755117286673,14.565745269665,16.5413954115155,16.912342042139,14.5491175473352,16.4987219825209,16.4890355600452,14.1505130031187,16.3911257135529,17.0622453516059,14.2536357993807,16.5509275067317,16.4903589141518,14.3603203937625,16.4906177189938,18.4665682075882 +"Q9W1E8",15.4418252608721,14.7077346061975,16.4591044195023,15.395277206972,14.5952595157958,16.4359725066947,15.4836074219079,14.5525150853563,16.3922308742412,15.3687760029179,14.4865047582336,16.3329752959554,15.2397937850659,14.7911634825071,16.0691770180856,15.207375201347,14.529628954708,15.9240081990407 +"Q9W1F2",13.6681452283844,13.1438655882696,13.339618729732,14.4580994872734,12.9398000944795,13.3272284519883,14.1758040681104,13.12310387208,13.3397618042436,14.144403995058,13.4045499977057,13.5765198039663,14.5878265768811,12.8014714591462,13.8451517447928,14.4239091664449,13.807739328703,13.6516262898362 +"Q9W1F7",19.3724570127956,20.305421029284,21.2118446867181,19.1997215730332,20.3707176306956,21.3054290268992,19.3342368952975,20.4344972760868,21.122735251629,19.2691571285892,20.3868013038213,21.3284774432513,19.3980219563025,20.4452205823941,21.264249603933,19.3699956331532,20.3909740956926,21.4177747359676 +"Q9W1F8",16.2348403296646,17.9493755630688,19.0209862770289,16.3907846461466,18.1058656864928,19.1812933768986,15.9900337565433,17.6425150487707,18.8983982066055,15.8226024167951,17.8184402206354,18.8919873862697,15.898889859492,17.8352495736893,18.9130051799802,16.0740976504285,17.8711533938835,18.9536476404991 +"Q9W1G0",21.0935793147346,21.5739606649846,23.1610914334171,20.829247730002,21.3974340676829,23.0332108710228,20.8876195932389,21.4810048287946,22.9911738924793,20.7719773860512,21.340114487489,22.9818256747879,20.8393711007846,21.4790137875209,22.9490237054865,20.5169109039215,21.2675621969556,22.7085731349342 +"Q9W1G7",17.7759322087671,19.5797379155572,19.5960098502908,17.6883952279263,19.3894507035605,19.2953112960199,17.8607774567462,19.5676266009736,19.473499839706,17.5545092776932,19.2698853412333,19.4280863669889,17.9078877198346,19.6078983204095,19.6430042600987,17.81848214701,19.5105784345653,19.3991163402532 +"Q9W1H5",15.3691993870377,17.9824156377073,18.1683425785183,15.5772994103592,18.0167346268359,18.3033562005775,15.531015203586,18.0338058792421,18.3445787225515,15.5475585019775,17.9509839023437,18.5189095824826,15.5625351797214,17.757313957688,18.1360871107038,15.6291580261453,17.9570493327579,18.4403816565291 +"Q9W1H6",17.4691780622608,15.746417592078,18.4675950778929,17.2932697502431,15.7991767745515,18.3936553711222,17.350413224379,15.8424046437534,18.3611696382258,17.4131111155758,15.743885520332,18.3418234873566,17.2979064947144,15.9154397072928,18.4222611779123,17.3776818763959,15.4754125381227,18.1132438679791 +"Q9W1H8",18.9079699075851,20.3040856949314,21.7048547953948,18.6407050445424,20.3322915225853,21.6995652964224,19.2784564458553,20.7594188067233,22.2289861338535,19.0451588212377,20.5771426462546,22.0110487691478,19.4977523313492,20.9676809996174,22.5309207254555,19.1925179284579,20.7176381630658,22.1969491222851 +"Q9W1I8",16.2787923530138,18.4112736276723,19.2969321082318,16.4098446875555,18.5447550815099,19.3958654768628,16.1928522414799,18.2290311626906,19.1695597091682,16.1817858311912,18.4973083903767,19.2934807658006,15.9905073975183,18.0959436869478,18.9123501669684,16.3902802810795,18.2889113080305,19.0984495826706 +"Q9W1L1",14.1241699876836,14.3599695419448,15.1790978743397,14.1207783862732,14.4974439675003,15.3923188121599,14.244329144957,14.6662613301226,15.6682589282462,14.687817592866,14.9906322816376,16.049793805963,14.9286445693968,14.5707855055175,15.200801152308,14.690925659909,14.8702282893754,15.6646462990803 +"Q9W1M9",12.3837024913853,14.9115211341414,16.1188300415643,12.2098612098925,14.5067136420718,15.8864553128312,12.7704055612912,14.9260024759608,16.1780226813414,12.0263042149569,14.7322457007879,15.9423863488314,12.7100286483008,14.664774084903,15.9338489228834,11.2636608886756,14.2885215448662,15.8312961752133 +"Q9W1N3",19.8366638562005,20.6892756472827,21.5276665291573,19.8848208951798,20.7288129234752,21.3785233750319,19.6164875147761,20.512463217819,21.1955261655584,19.5939650471558,20.4591667966274,21.2515797142831,19.6867898613233,20.6588397810292,21.1868115800283,19.6198031538789,20.2137243147488,21.1897141247967 +"Q9W1R0",13.1300942883188,14.4242584567136,13.6752267654946,13.5389444463506,14.0883262876247,13.2640227803843,13.4618146068518,14.7530005009318,13.9889021991388,13.7594524901832,14.67227627615,14.5443432508767,13.3508941888558,14.9749660414915,14.1900104337648,14.9972640988914,14.9470068183446,14.2998566564101 +"Q9W1R3",16.6625458174225,16.8449047837554,18.2537707134091,16.6120616015464,16.7947461511495,18.0248542063442,16.3948089443543,16.571955139921,17.8141263764162,16.3305235128306,16.3246810511444,17.7341005491968,16.3152200143127,16.6302079849116,17.8094547684797,16.2938463400123,16.3102778393316,17.7018238361551 +"Q9W1V3",15.4976991771079,14.499545338401,18.9756965016382,15.5970596673257,14.3834830776238,18.6925470118013,15.7977739598835,14.8065507331433,19.0192580847144,15.5433455241876,14.5253555352815,18.8150810464949,15.7379373147212,14.7860969720208,18.6642006108861,15.7819953962839,14.6995584777174,19.060886961973 +"Q9W1W4",16.557908702038,17.0577794338945,18.2440186948092,16.7095124018583,17.03602658185,18.1742034052134,16.5336104451202,16.795000050238,18.0310750669616,16.7810861600528,17.1871109573403,18.4474683829072,16.3132477907203,16.7372509909993,18.1597849582706,16.8769932596708,17.2263132812954,18.3654378343704 +"Q9W1X4",13.0924714564298,15.977494108276,15.7550331900857,13.0028908171109,16.1104652592025,15.8276014050088,12.9543004982577,16.462247030266,16.0465620502582,13.3443280666914,16.2561975432877,16.0823456632912,12.7151974103286,16.5225179344823,15.9414128454051,13.3711774667201,16.5723796509351,16.2199342165904 +"Q9W1X5",17.7629615078895,19.4469808268462,20.6706612278679,17.9117787515503,19.4799087727467,20.7662668783304,17.9193445570291,19.4413515551497,20.8447684221988,18.0232490196347,19.6256652326695,20.9883447769463,17.8331861179933,19.4522817493376,20.843134735632,18.1123261866142,19.5716174194732,20.9409706025636 +"Q9W1X8",16.1764662066697,16.3143535267857,15.7342068736289,16.0100101034645,16.300834208427,15.7748947864476,16.3755164015614,16.4542908119667,15.770176746919,16.2257916719669,16.3055621448934,15.8603567890055,16.3068743405171,16.4379661714398,15.7930579104248,16.1028838681214,16.3160582900172,15.820576887238 +"Q9W1Y1",16.8451935933416,17.9310068207864,18.4579423949734,16.8971351437412,18.1401088350009,18.5387094595432,16.6879250337216,18.1177104215672,18.4611984665664,16.998481053493,18.2928857464065,18.4839112411553,16.5056003486254,18.1486667994599,18.4729262725673,16.8124770569797,18.4829321636897,18.6747486818247 +"Q9W227",20.5953798596295,22.0469665906285,23.6710360320531,20.4429722054375,21.9868009017011,23.5232165516804,20.4909252135633,21.9855293711271,23.537817267406,20.4106867291989,21.9047849405567,23.4644137511183,20.4195108408001,21.9224334093178,23.4115494339948,20.3555692825852,21.7343933220505,23.346424944173 +"Q9W229",19.0443491782607,18.719747495022,19.8539798291335,18.6739653113269,18.3615947154917,19.6440530211276,19.0656907428354,18.9363266004687,19.8737628156538,18.8039023526741,18.7520080705451,19.8909790102296,19.1022722737312,18.7299608965553,20.0758270159967,18.7000909137472,18.8150854435834,19.7898270180506 +"Q9W236",14.344886796212,17.3974145371117,18.0327893398871,14.3976392708588,17.5373219020982,18.0101189812025,14.2037802237998,17.3515868546445,17.7169855340729,14.3986138682342,17.2876492022024,17.971540564324,14.1942077489982,17.3508775002554,18.0903109220377,14.2954351472704,17.1253151347839,17.7219253874926 +"Q9W253",13.11423131079,14.9473375407415,16.5228923167667,12.9972925189794,15.1224726090841,16.4299430521446,13.4855025064436,15.5743970054962,16.8380547894216,13.7234362398769,15.6477933549258,16.8788967504091,13.3818876357772,15.7199068748534,16.9856100567045,13.4192180746651,15.7541646782622,16.9615175348074 +"Q9W254",16.9446317590591,18.2670151282466,19.1432018449662,17.1174441329694,18.3367489662507,19.240773115748,16.9939739434608,18.1493868231549,19.215856149372,17.0008054201764,18.3158731778261,19.3104115587968,17.0012400192186,18.0674794042163,19.1148600322703,17.1144970999252,18.2305466548465,19.1208154070069 +"Q9W257",17.1766965866922,16.2488606308826,17.2081479127696,17.4928058926638,16.3546183063197,17.8104860871467,16.845491111413,16.2444965654628,17.1644995961489,17.601623240744,16.5891031165451,17.8507004668539,16.4758514982122,16.3808277210208,17.5767128734357,17.637737724808,16.8064104424126,17.7203389589782 +"Q9W258",18.376022457963,19.1076086551553,20.1638795722649,18.3861065723153,19.4285178121616,20.3249374213123,18.4969010077834,19.1791670504201,20.2079821716652,18.3566081008753,19.3571512493668,20.4850446115774,18.4690553476044,19.2348505533478,20.0983216236894,18.495606829173,19.4019578683974,20.1436967979216 +"Q9W259",16.7233300759103,17.0551089573109,16.9279536255112,16.7214387386061,17.0978291676781,16.7792363049092,16.7744954489414,17.0032583904023,16.9065437595631,16.6778262380025,17.1915043435464,17.2903398381085,16.3170723747588,17.1353065979181,17.0578857907226,16.454922758613,17.3905662943593,16.8485120002065 +"Q9W260",16.4560467498613,17.1951595502709,17.9062067388672,16.5865434299001,17.2058624031079,18.2231116873834,16.5353535010854,17.0624028647672,18.2160760109951,16.7352505240319,17.3681197192245,18.6490048238163,16.6787312616674,17.1983525691767,18.2411053696479,16.8933853183577,17.593499651784,18.5453986383923 +"Q9W265",15.8577163472515,16.5625500704426,18.1665008644818,16.0629524326156,16.8210886863246,18.2463307989751,16.2113376961832,16.9356036885828,18.1571401314276,16.1457672064712,17.0067070974245,18.3224930593968,16.13159381673,16.8531381552454,18.2296332077369,15.9048043346337,16.639621530301,18.1188432532628 +"Q9W266",17.5786758576353,18.4481554789387,19.6246662853626,17.6811063151984,18.6807045088146,19.5350963689919,17.2575058029312,18.2176908901324,19.2680085234136,17.3576770765092,18.3434107926474,19.3660690344226,17.3119702277231,18.3905613903844,19.353815617001,17.3107230625444,18.4504789641811,19.2274624974298 +"Q9W289",16.5769524194113,17.757646143093,18.3784389891853,16.7475501930329,17.694526713691,18.2165113262923,16.5647531035065,17.5863449918969,18.2445425776522,16.3455030900303,17.6910373102115,18.0698367369578,16.5671570443774,17.6704250425221,18.0731131296747,16.4459158343708,17.9562303357465,17.8223979628674 +"Q9W299",13.0630238383173,14.5524680610714,15.6296798554132,13.1789806883317,14.3688498991126,15.4079015180146,13.4512921878302,15.0354376957521,16.0613902842643,13.6369077501247,14.4638562291029,15.5755796905794,13.8756355662119,15.485813660449,16.4329348687146,13.9563487917612,14.9754654700491,16.1534120587145 +"Q9W2D6",18.6822019251346,19.1790805301489,21.1368339606963,18.8062500205471,19.1898499199839,21.0965982112415,18.6856951283552,19.0304040178769,21.0886220065464,18.5157871258963,19.1251477594755,21.1043332703068,18.3990054808924,19.0414836620416,20.8985614982451,18.8219486956257,19.1174259254402,21.0362185267704 +"Q9W2D9",15.6406630279834,17.807177826039,19.5589575122668,15.2764136849399,17.5889567316891,19.5293793119795,15.7646537979851,17.7460170865431,19.4379256100414,15.8529561195189,17.9575974964339,19.6692458597292,15.7447923911824,17.4730019163592,19.7107618725495,15.4710114765775,18.100997506864,19.6822469096118 +"Q9W2E7",17.9428333808941,18.5307522587472,17.936458137154,18.1386482910648,18.8907206813131,18.2589807467082,18.4303271610385,18.9856339135715,18.4670963064484,18.348012615272,19.0680007260204,18.5970752579706,18.3021815408557,18.986025051787,18.3887042543704,18.5455353705729,19.1955379371028,18.5259355763125 +"Q9W2E8",18.0080293826548,20.0551347889053,20.4300410601837,17.7540869679158,20.1475003240039,20.2418282556463,17.5681559999502,20.0383903886535,20.1908196842318,17.8329830276294,20.0389260971547,20.0836046440833,17.7514658253078,20.2432661356612,20.247676444939,17.5025824860931,19.8844604269841,20.0523373798885 +"Q9W2J4",14.942250777853,15.8007894461466,15.7543012386124,14.5625663094106,15.2102531377327,15.4207006128755,14.8696208101619,15.609996868997,15.6148454488633,14.5122999778357,15.2940046171614,15.4305813847373,15.1535473989147,15.4735537573573,15.848096864936,14.4753265823632,15.1771139237017,15.1687854918848 +"Q9W2K2",13.9401823986291,15.8699890332437,16.9953046907156,13.6981131390577,15.9705179607034,17.7146674434586,13.6283973645362,15.8866362722795,16.7932361390783,13.9587506996643,16.0166453460987,17.4880929994175,13.7124118663118,15.9224226449693,16.8335878350706,14.265870259085,15.8395983980075,17.0219488294543 +"Q9W2L6",19.8852838970367,20.3222043816518,21.8949531737978,19.8006130491939,20.462211976747,22.0346413003904,19.70626515319,20.4490367426649,21.9254611058232,19.8982702432585,20.8149638933541,22.1073460266285,20.156292134275,20.8596737620755,22.4548008996827,20.3117860190592,20.8275853455157,22.3915204289281 +"Q9W2M0",16.85327127786,18.2510204909848,18.6522031791061,16.7639963911638,18.3000535142358,18.4379620343363,16.7432608971389,18.1157132414124,18.3569361636369,16.698157327081,18.2124405373188,18.3391571048984,16.7060128845319,18.2357463255062,18.2961030864775,16.5739391020266,18.0673760656483,18.1047609069251 +"Q9W2M4",21.8113884084704,22.4695310799914,23.9591517819558,21.825954969837,22.4784864087889,23.8549423857399,21.6500226901723,22.3966934893149,23.9513518419553,21.6427073944104,22.3904820700195,23.8397526833656,21.6327548612848,22.4351316085691,23.880742210497,21.7158519943914,22.2998804784832,23.6517964369733 +"Q9W2N0",14.0271644914143,16.1749825513736,17.9431719507477,13.8894887025188,16.1854449274391,17.8281482608443,13.8923362894273,16.2719924825885,18.0248030085484,13.9049791835973,16.1896310615934,17.8221728993678,14.4980496003243,16.6902159821851,18.3729595518405,14.5473346328616,16.7973929632946,18.3972724265029 +"Q9W2N5",12.2374556416478,9.68509682065196,15.5647971761821,11.9464160763169,11.0270368273143,15.8330879139933,12.5126628624647,11.6172846140258,15.6166704358279,12.4670089203578,10.8554370717111,15.6880632040656,12.2669658067615,11.28500417518,15.677791680436,11.9926315073256,11.0018685413411,15.6646528367171 +"Q9W2V2",14.6741137101138,15.161817997977,13.228227036699,14.481269314352,15.2321890770639,13.036758988247,14.6423436114098,15.1211793175948,12.6837000700883,14.3567771904613,15.619629073162,12.6288332179532,14.8131599632601,15.3795437533491,13.2972000918228,14.5294410442114,15.3632049005043,13.0669305291859 +"Q9W2X6",23.2458758060301,24.1656494056072,25.1446940835385,23.2482121610347,24.3065060680741,25.1212240636488,23.1868960505932,24.0536303853449,25.0761072853909,22.9586995377455,24.0402045709396,24.9550150247159,23.1507603925694,24.2594297158486,24.9791342825857,23.0844076045088,24.073419999521,24.8872415079006 +"Q9W2Y3",14.5760973854034,17.865362591533,17.6932455598886,13.8729157913571,17.5012440306148,17.5369923871205,14.065681787556,17.6550232875584,17.3206388597797,14.4210609542676,17.5973292207601,17.4575102204299,14.0665219950525,17.5434325492918,17.3674301405568,14.1271684918813,17.4938225696155,17.3502144421217 +"Q9W306",15.1559858380665,15.4150968691283,13.2293031135347,15.7438480412783,15.5252945895843,13.4851026081576,15.1944630977805,15.2391756739541,13.3149978516987,15.3431429818231,15.5587192620924,13.5326984529777,15.0100582508194,14.9023516426488,13.7029835931518,15.5169689051082,15.4121425683525,13.5797671382817 +"Q9W308",16.5780781645169,16.3098357960198,19.1686563907475,16.5252068122187,16.7138547222441,19.387020105848,16.3909051010621,16.0996316401226,18.7938048552437,16.3794245394717,16.2189050547687,18.8912396767431,16.0621667956711,15.9090552247311,18.5033841126815,16.3778670487589,15.9276713399421,18.3159345063828 +"Q9W309",17.661951423771,18.3613946021054,19.9438122351081,17.7035678684685,18.2910992919714,20.0891612888086,17.3282461559602,17.9955778367613,19.6118554444044,17.5422794873107,18.1445720955967,19.9956374287169,17.1785160992005,17.7772995931384,19.2394390075717,17.3104541376701,17.9657838999135,19.2165101952644 +"Q9W314",15.1597354544636,16.5735649343413,17.3650636244223,15.1204714034324,16.8216458162829,17.300673707274,14.9701948811851,16.566373128875,17.1328112448933,14.84993430396,16.4900252971934,17.1148917563085,14.2590568496184,16.4580233190137,16.8263466634574,15.1396059474999,16.5125417324773,17.0127303821416 +"Q9W329",15.4795227211124,16.74291456045,17.3396782934252,15.3175584538883,16.8561119538389,17.389489272141,15.1759648160162,16.650383301076,17.2986015032414,15.2643907871552,16.8534351830195,17.4717431419269,15.2608503038131,16.6048149833094,17.2526486121439,15.1087987876766,16.8639429354522,17.2610589525496 +"Q9W330",19.8024581558797,20.4593264999258,21.7220159009213,19.8074139907685,20.5485634691875,21.7424076120629,19.662094051777,20.5799676607473,21.6043346128935,19.7531563838702,20.5086933382528,21.6399317335284,19.5872966234153,20.6785061098961,21.8351529656578,19.85570211717,20.5979590435822,21.6856645942786 +"Q9W337",16.1021840445548,17.6145201998727,19.941414344486,16.0409222942309,17.8931440928043,20.0646100099921,15.8350450491773,17.2198287261778,19.5553369525565,15.9510584505841,17.5767450299737,19.659348519806,16.2120433154712,17.4928564246973,19.6029368566959,16.0737027320255,17.4175820299155,19.6212544739445 +"Q9W369",21.3368893889801,22.9009818997974,23.7274970050496,21.0880567210584,22.5529365242968,23.3012647566148,20.9104830401654,22.4311389814497,23.1751500720354,20.7119576947672,22.2796430761778,23.0766641638253,21.0847265687062,22.5111048358451,23.2183212213386,20.8820925597593,22.2756043302689,22.960310266342 +"Q9W370",17.9916522494945,17.9103959697525,18.2445550550151,17.9722406501993,17.8780422459723,18.1753589136433,18.5575862429018,18.5741341755063,18.7284312763895,18.6388469472313,18.5920473892953,18.5824837228696,18.2654188804298,18.0923085154721,18.1251284259578,18.7699154647635,18.8531748477549,18.6270477358698 +"Q9W379",14.6913228952973,16.506303507981,18.2199437603486,14.5160263012485,16.3056098191182,17.8618751290073,14.7122454019746,16.4564384949602,18.0419288955089,14.6510379736384,16.2451413005697,17.6452138697964,14.593872857346,16.4027510819274,18.0081297636047,14.8147697311802,16.1620464841714,17.9512026167557 +"Q9W380",18.3404052481277,18.6319928433364,18.1773962444656,18.3666260763302,18.3322631450906,18.1288848527067,18.4333371058613,18.4644357318269,18.1318543492686,18.5132665170071,18.7097293569561,18.328061558315,18.4446462860502,18.2568730315298,18.4928817749756,18.3040173551875,18.8718172728876,18.3081017807933 +"Q9W385",15.4023507684144,17.3108665791992,17.9156409680172,15.630375775779,17.4740484251409,18.0839909728226,15.1531047548027,17.0394123575981,17.7915705440754,15.8271062192078,17.3010509191784,17.9189678981474,15.2536126060646,17.2296332397186,17.5257279591575,15.6160288128714,17.0467994753942,17.7107813553709 +"Q9W392",19.0160741059286,19.8409844429459,20.7305149079726,19.0237462309694,19.9640786988141,20.7277062707644,19.1698303153478,20.0842731269564,20.9852705763237,19.169389422649,20.0597811401018,20.913127606282,19.031024130453,20.1553763239072,20.9325353897773,19.2069147366102,20.1361914894244,20.9956772542284 +"Q9W396",14.2691699263445,17.4266982314391,18.1151083191345,14.4720367824624,17.6412553843386,18.3004752651479,14.4042076987203,17.2824952974218,18.0318949466979,14.2694820025935,17.5336872658481,18.1663431496105,14.0924164207761,17.3775973225174,18.0273791047148,14.4616944935995,17.5905723523415,18.1477599605096 +"Q9W3B3",15.1395514205899,14.6733358830544,17.6749914744278,15.0792823917846,14.6993392153071,17.4891739544764,15.0733668258838,14.6605419927503,17.1389675519477,15.016492521452,14.8383882657924,17.2491480708562,14.851487492063,14.7060090223157,17.1588144725019,14.84581659755,14.6282259477637,17.110050530185 +"Q9W3C3",15.4155304960787,17.0158149234323,17.1968299440599,15.1334161381171,16.9363734420632,16.7911638624909,15.1767505905224,16.9202364138501,17.1803296210473,15.0296432733719,16.8011051727661,17.1255227692267,15.3092834118612,17.3094621959318,17.4366100276482,15.2043180164797,16.8155801220835,16.9239100773192 +"Q9W3C4",14.3057107219587,15.0107780235755,16.0275116006383,13.6275190813441,14.5182764854395,15.365308658856,13.9238781351876,14.9464653234881,15.5220127795716,13.966353540755,15.11304222149,15.4306660656636,13.9249811778994,14.722549685044,15.4353372053235,13.4648372721549,16.0265120845965,15.0836952081113 +"Q9W3E2",17.2138137759267,17.9373512117381,19.2259776008246,17.1369933735645,17.7966289149251,18.8594188150454,16.6648882254861,17.4757512150674,18.6183304831598,16.1909480586344,17.3029929521607,18.1114302653228,16.9055935216209,17.6312897463702,18.8842641567316,16.1687273975736,17.3750370334876,17.9404185578903 +"Q9W3G8",15.449718665603,15.9275204641115,16.6407988235313,14.8936949878374,15.4202993645334,16.1822020836919,15.4063598247357,15.6590272991009,16.9864382765302,14.8959863202628,15.3033493101795,16.4528952757654,14.9604071333507,15.6327199565911,17.1505197234179,14.7626099904148,15.2173601094081,16.7840058734903 +"Q9W3H4",19.1838536345707,19.4994460734501,20.7633605248827,18.9017537179282,19.3013372311648,20.3857616667719,18.9599840680348,19.3637182123786,20.4351111367699,18.5805609611078,19.0667365504661,20.2307842991854,18.8790821701179,19.3160662341883,20.4230127382611,18.5784491296565,19.2526049842261,20.0515278027887 +"Q9W3J1",15.5780287118186,15.8450848694662,16.718386900749,14.0787752476353,15.8540694121175,16.7559435012325,14.0543389198231,15.7077178585267,16.7726706905269,14.1962302486896,16.0055850588137,16.672665397376,14.2509702379808,16.0286224164404,17.0276908300632,14.307636608277,16.0402882665308,16.9327158684335 +"Q9W3J5",14.8041623774699,15.5265335256431,17.315922366822,14.6193715605864,15.1674636220989,16.9763791235047,15.379792041087,15.9445009144326,17.7618523451277,15.3077909919755,15.6215845778272,17.7422595870286,15.4690752638263,16.1504777680817,17.9525030856579,15.2453319882064,15.7989260756797,17.6283440973089 +"Q9W3K6",15.4566536933859,16.9409902676686,16.6819022320639,15.3267064137462,16.9399572722794,16.2634158384748,15.4576286820455,16.8450235458844,16.3071978605006,15.2527394523196,16.9025732990633,16.1863526150316,15.6218748244306,17.0694755744339,16.6423885312916,15.4737242111767,17.1338977785519,16.3596327516297 +"Q9W3K9",18.6953759066722,19.048610572227,19.1739708721549,18.9328889594055,19.5714324387931,19.697047422284,18.8891959267762,19.2890700606554,19.3162340787664,19.0765012420811,19.5597335593663,19.7547019809811,19.1826124453031,19.6713076719818,19.8739181624237,19.1387325309504,19.554921282091,19.7787267288662 +"Q9W3L4",15.0742568724138,18.0209991939077,19.7090628178376,15.1975990348401,18.1953930689774,19.9497784863831,14.8192324673407,18.1354101036902,19.6548169331582,14.7847382742552,17.9009660074669,19.5595049170716,15.1476345271371,18.5343950180735,20.1314601472495,15.101509120946,18.0937746580174,19.8050233714082 +"Q9W3M7",15.3172291400271,16.3538157258193,15.8673856393794,15.2420539675883,16.5808579276051,15.9395778531838,15.3613572043709,16.6188245126288,16.16946540975,15.5109640946588,16.8334490320518,16.4595369470527,15.4903342452246,16.7615799516325,16.2365494154925,15.4615953287428,16.7425003269017,16.2058359302163 +"Q9W3M8",17.3238529386203,18.2853688909113,19.6758344985334,17.4706618033872,18.3814490257635,19.6518621346189,17.5272196249401,18.4134464472416,19.705530820959,17.7257074873034,18.5513694050623,19.7998881271195,17.726689039832,18.4556770182008,19.7542442136129,17.9070922333844,18.6607914064131,19.8267322910079 +"Q9W3N6",15.3443271718997,16.1798797375758,16.5911562698638,15.238678836533,16.3312442636694,16.7387064074658,15.3563133241957,16.3900459857163,16.6683231720398,15.3808140588469,16.3971189373613,16.7110774678758,15.2862050504612,16.3731461050776,16.776089482364,15.5674960087513,16.311047576411,16.8192654680077 +"Q9W3N7",15.9652521192983,17.4860685402327,18.8250860750545,16.7640436641693,17.1664206350774,18.7155724771245,16.0510477548322,16.6626912762168,18.6059571155066,16.0094260230545,17.0997712926268,19.0736587177932,15.9322602125817,16.5686934026042,18.60834764788,15.7733920632686,16.5785922556683,18.6360464824739 +"Q9W3N9",18.6753913430781,20.4341253506643,21.3270507805125,18.8744378373602,20.6730711625554,21.4011832489651,18.8104582400453,20.4534979586403,21.260138353205,18.7631922901072,20.615569124963,21.3857863981944,18.6492588612717,20.5912535142127,21.3784090119598,18.2872189801155,20.5827326521824,21.3179125316442 +"Q9W3R8",16.122339724775,17.9778636035078,18.8575264986011,15.9593030750844,17.7533843060929,18.5991590969179,15.9307696211833,17.868520442844,18.5046425177434,15.7461696191226,17.3938666778503,18.1797236549363,15.8577920038215,17.8044199707195,18.3547835229891,15.6126858156651,17.2777386910384,18.0768937709511 +"Q9W3T2",15.4073373393019,17.2510838319149,17.0639920843114,14.9523425132085,16.8344539701004,16.7024002320735,15.2476527817311,17.0585750364404,16.8167026619831,14.9175227263585,16.7717434579442,16.5597302101604,15.152038664151,16.9643942384218,17.0086420523501,14.8687299180371,16.7277120373824,16.4585772296462 +"Q9W3T7",16.5574156566537,17.7774455827337,18.0028986227457,16.653015826206,17.7062666794941,17.8781627948443,16.5497093979397,17.6308288559484,17.9765047361525,16.5699378776134,17.7162085243063,18.0753502853461,16.5264610009494,17.629932460265,17.9992128139879,16.6054348630395,17.7883112673609,17.9562987324551 +"Q9W3T9",17.4802183990957,18.7504484265342,19.5671523355279,17.509488308354,18.9804056364806,19.8256381369406,17.3646446069028,18.6798235308249,19.4228725161342,17.5339973296191,18.9074523477725,19.8134617457893,17.3230775244975,18.6428092330116,19.5996033920966,17.5602173716915,18.8196808547283,19.5984816462586 +"Q9W3V3",11.105813162161,13.4150650051966,13.9401428989543,12.2628602275534,13.3541262635714,13.7673249716689,11.3882444424965,13.5603114952271,13.8174520049324,12.1428851589199,13.4395612818008,15.2682495864193,11.8076996043812,13.7157389003989,13.5314134073596,12.009201599586,14.1508649037635,13.6638929063072 +"Q9W3W4",15.144155094101,16.6000106343065,15.785791971136,15.0521043953369,16.3949825461122,15.7542848391567,15.3880390464021,16.7236831433288,15.7642477017232,15.3930971611124,16.5764248648842,15.6646191701897,15.3175626306007,16.7983733202952,16.0427284696994,15.575420273713,16.8374567305201,16.0976194766982 +"Q9W3X7",20.6339005207512,21.9167131964588,22.6953670791988,20.6747712983345,21.9092214741995,22.6342877573683,20.4587591361265,21.6634301657229,22.5144637076628,20.1991560958801,21.6669075320876,22.5365518447791,20.5455845858133,21.7548703006375,22.5166062064987,20.4635324285416,21.8248502740079,22.538551314943 +"Q9W3X8",12.9839834695127,14.0366682970105,14.4647653808617,12.8245292291088,14.0622908816974,14.633663744639,13.0855495915273,14.0853677198278,14.249459460972,13.1307432411168,14.0756839525895,15.0075167914835,13.5672849823475,14.0864700488491,14.5536730063846,12.6449037628578,14.2868949737456,14.2643967387021 +"Q9W3Y3",17.1914851540934,18.3723175264949,19.7167023398875,17.0255305306849,18.3487131992307,19.5868782575404,16.8213971894694,18.1752900892428,19.2374630928212,16.6132252940087,17.9576496576663,19.1789245345609,16.5715418065188,17.9655799022484,19.1685278797549,16.6673622371698,17.8261239009406,19.1470290141577 +"Q9W401",23.9500506190331,24.1000916913953,26.022542542471,23.7106098019524,23.8875457823235,25.7478111833911,23.8105394419583,23.9905420042082,25.8780223170761,23.4926994832088,23.7807240534166,25.6018884629764,23.5851572196756,23.96707187948,25.8699967293546,23.5709043608894,23.7708154750843,25.5611590879524 +"Q9W402",21.1877280164123,20.9625101708958,21.8633255122054,21.1649854533889,21.0467299174226,21.8149550327591,20.930087955874,20.868268231043,21.6593545499855,20.9190303216231,20.8705870067974,21.6484907775967,20.9825161150034,20.9847393788654,21.778798595876,21.0307115418601,20.8639743592362,21.5576495945367 +"Q9W403",14.2656239027644,15.525342392786,16.0590052648278,14.4016119845111,15.6429290358823,16.0742988911188,13.8233259560913,15.3668484418968,15.8909618672382,14.2794979014551,15.3914595349909,15.9623377465046,14.4366257170312,15.3615922205184,15.956101492259,14.53574643866,15.8870427636751,16.1657130019902 +"Q9W404",14.2005733609949,16.0801393435389,17.9044639667188,13.8625859679885,16.0073828159536,17.8106759546751,14.2073041902749,16.069049896292,17.7715159312899,14.1015521974037,16.0744241838489,17.6374544516352,13.7663893773826,16.0013862954498,17.6131436469846,14.2466448983916,16.4442686063845,17.3426794588544 +"Q9W414",18.7454174678802,19.639717368504,19.8356408496476,18.7243433431104,19.6711953360154,19.9110130065198,18.9570706604145,19.8972656052008,20.0080156520905,18.9697262813665,19.8950740984519,20.0497065071175,18.944260927512,19.9451719171589,20.1043008546449,18.9164176007043,19.881823726468,19.9323339438309 +"Q9W415",14.4756467539893,18.1587308813506,17.3179372620909,14.69736155397,18.1743233507913,17.5640154408117,14.8926041657004,18.0118967895422,17.1351114851884,14.6983421979624,18.0253242383605,17.4028586141003,14.4365141189828,18.2981677260103,17.7129496345103,14.2304192045187,18.3350198785252,17.6973335539562 +"Q9W425",13.477559757254,14.8505095888258,14.6991346641032,13.1290698521766,14.6289785906772,14.5930019441251,12.8466919269957,14.008678755428,14.7922162393341,12.5611371237373,14.1386722715034,14.7195216836351,13.2433341076368,13.9841344477636,14.6282529809811,13.0581721340317,13.7441838214186,14.6000082490857 +"Q9W436",14.1967188019471,13.2296597634526,15.477936327311,14.0121813430288,13.8814621148922,15.5334437163272,14.2223498307543,13.3552556467002,15.7354708707767,13.8561959561095,13.8680672999508,15.8806010642758,14.117413048811,13.5469505777242,15.5571373265521,13.8067868248578,13.7015151041712,15.6299949268876 +"Q9W445",15.6850939990038,17.3658768554316,17.0030600513736,15.3524035064322,17.1826823960218,16.6199529690496,15.5474418768975,17.3651690468993,16.7550101949741,15.252436390132,17.1884323961643,16.5656127184252,15.5298552824334,17.3872612404809,16.6476755286829,15.1827933057281,17.0451804344449,16.467454571138 +"Q9W461",14.9698691939002,16.8841262975768,17.3610889321753,15.0140946516309,16.9417251392119,17.4872911120313,14.8564465357184,16.837530965557,16.9752799087566,15.1673022061106,16.7352948132581,17.0380196795726,14.5487673478786,16.5585290969099,16.8284229666127,14.7385739219113,16.3816049547599,16.8502447837712 +"Q9W483",15.2126674773047,15.175665919465,15.5216927215311,15.242742240927,15.1294611328236,15.9657056141054,15.273416261813,15.4543723862672,15.8696755509169,15.5433297576227,15.4068872100354,16.3373543639479,15.4797522149435,15.6108323248176,15.7797308905055,15.3138281551948,15.9464908503535,16.0362172122242 +"Q9W499",16.3793324814359,17.5917818973904,17.0272925426704,15.9426551223979,17.3488750424756,16.8014768794145,16.3880481761715,18.0614306553777,16.6012920974754,16.4009348263052,17.5127590311257,17.0613983795925,16.6640048248284,17.723592509977,16.8042024371421,16.1214166687324,17.4485055528165,16.4831143003113 +"Q9W4A0",15.9098558708658,17.8675410261648,17.8433819739742,15.5979091609811,17.9673345615334,17.8328278992947,15.798585715549,17.8954423080934,17.5857002094924,15.7140138354021,17.8027310547577,17.6204130299683,15.7021040820893,17.9325462549182,17.7270405259553,15.6907475576674,17.8671924594724,17.6783402864552 +"Q9W4C2",15.6844087662348,16.1440119792147,16.7898447679702,15.4715335941861,15.8209819452367,16.3502623616948,15.7286419183612,15.9367619289715,16.4238212479378,15.7307778650655,15.4840367719897,16.0079864332617,15.4407467261909,15.4824184770889,15.9295205544754,15.5780933576653,15.567916488906,16.0118768960068 +"Q9W4I3",15.1374755867136,16.5895038715582,17.1375809599959,15.4134792310759,16.5990031391329,17.2625429428625,15.3678055360615,16.8564491512707,17.5103104110046,15.7236454082569,17.0851225249231,17.8888927115552,15.2229329974069,16.8144435020266,17.450134891525,15.7307330977496,17.0449121559184,17.6687778909262 +"Q9W4K0",18.5307792359926,19.3300672372904,21.0616036356356,18.509581802753,19.2985283742089,20.9639492805049,18.6182965142104,19.3666100352521,21.041832689465,18.5439216932482,19.3737930106755,21.2281287465966,18.6742371797638,19.5379770053447,21.1149156596145,18.9699570107809,19.6063383748166,21.1885708311734 +"Q9W4P5",19.881501666825,18.6896944506069,20.2106060381064,19.7505599562583,18.6633587677433,20.0397661223423,19.7396118949656,18.7152354957079,20.1245228196034,19.7363785951306,18.6133905486797,20.18352284285,19.9583480878682,18.9533720179856,20.6102841403976,19.8663568981742,18.8997418658799,20.3947635593832 +"Q9W4U2",16.3249965837104,19.4877741667749,20.3975513841517,16.5093407804805,19.3667224146451,19.9565563530222,16.2250838250214,19.3407583825294,20.4535369997975,16.1084277460339,19.2417686073599,19.8114392288786,16.2347398262735,19.4334530526345,20.0537401723059,16.4193580552209,19.1264665147774,19.8997056207006 +"Q9W4W5",16.4843808182055,17.2726427908319,17.5521316407361,16.7771516013766,17.6440790689353,17.7697619486927,16.5441831844467,17.2941567716397,17.6282183566198,16.7531687142323,17.4079984969412,17.664102450204,16.9903607423719,17.7344923607136,17.7469567414754,17.0312707574912,17.5695887235348,17.8798437700632 +"Q9W4W8",16.7170295239217,17.3234070388236,18.1489300727255,16.4436872330359,17.117511649988,17.9557143782564,16.9794084468888,17.4605127680815,18.1646081321579,16.5031758499588,17.1385727425721,17.9457191910147,17.4592359346367,17.5243669272161,18.3188479908081,16.865704799666,17.2245040659237,18.1277277683176 +"Q9W4X7",17.3254301080102,19.0713526266532,20.7967931196359,17.436087408201,19.0777471280114,20.8132033510392,17.5961554135148,19.0252507328618,20.8532161626726,17.6579994335134,19.1287908376959,21.006535192141,17.4629094050317,19.0134200038403,20.7349177034973,17.5038874378303,18.8971477864136,20.8435776454499 +"Q9W4Y1",15.7017945461945,17.6804927680227,19.1419287680279,15.8536864102744,18.2105998904441,19.3296550158362,15.4867316796964,17.6150889517616,18.9736307919584,15.8412809480072,17.9831842647137,19.1300853677553,15.1327729231629,17.8335852015061,19.0156193914498,16.0296496325025,17.9634441566272,19.0298891776743 +"Q9W4Z2",12.5881444813057,15.5525665048927,13.0829551515737,12.12684917236,15.6561206386,13.0337451265945,13.0040754612839,15.6021257566363,13.1491239651344,12.9754891389021,15.6350843827562,13.565087507598,12.8705224115269,15.3980788156723,13.2356403296525,12.0974058482277,15.7265767569625,13.3515560305894 +"Q9W503",16.3432006206452,18.7576970930456,18.6769692218998,16.2934579470309,18.6549865253261,18.6748182731942,16.472068790631,18.7675778916943,18.5893347699212,16.5489424054389,18.7446773385546,18.7874687602115,16.4404583122995,18.7810708307214,18.7894444322791,16.3261679365198,18.7603422450974,18.8262741580237 +"Q9W552",15.5860665266331,16.0805480961055,16.6047557203871,15.5855154570228,16.0976527811385,16.646588347925,15.6351973506529,16.1677827296511,16.5822579309112,15.7263421754289,16.2148599775388,16.8433620713087,15.7654223484823,16.3986810402581,16.8024540270658,16.0819558516607,16.5382061034691,16.8127727690207 +"Q9W5B4",19.0660293463041,17.7355145043939,20.0988396972577,18.807581643999,17.5142525493239,19.9711844541795,18.7422089604013,17.5547761074673,19.7676126094451,18.429087609529,17.1999223777117,19.7720960394673,18.101737782112,17.2254397311719,19.448261014982,18.6029247894708,17.3613023159326,19.8311626861386 +"Q9W5P1",12.1007530523693,15.4506365370433,15.2245225153759,11.9978109942071,15.64227297832,15.2465174749068,12.216640929519,15.4633606844011,14.8672469362061,11.8856800931765,15.6396595838913,15.1482267255027,11.9972596716191,15.5672855117018,14.83640891224,12.4539467236943,15.8054069546994,15.5108811605406 +"Q9W5R5",14.7885423666739,15.584048972654,17.1553588773761,15.1121379291676,15.6526212770178,17.218949348728,14.9141181831318,15.5420672695604,17.0383975320921,14.7817320022176,15.5606863765146,17.1280559281752,14.9620200146795,15.5456664042489,17.0805377943548,14.9665725653947,15.3831745767532,17.0806324231727 +"Q9W5W7",14.5027010513342,15.0234092374412,14.512819733024,14.7363025163015,15.0617509083941,14.4548105120689,15.1514122301071,15.3274338797137,14.7829127498405,15.0684499698661,15.4124755768847,14.8072958818114,15.1207715376575,15.1535620003283,14.6279967303771,15.1897506604715,15.5371234249339,14.6513080945562 +"Q9W5W8",19.7423971929227,19.851884170735,22.2848946215984,19.6979017502253,19.8146186677165,22.1024660276416,19.8374139012295,20.0168005764134,22.3011263474847,19.8104502657495,20.0882822564469,22.5649142562488,19.7885310910562,19.9909351049112,22.3325855542021,19.8128214663333,20.1629999108158,22.3420799881538 +"Q9XTL2",16.4071799032859,17.1259359874276,17.7155926409809,16.3235873887719,17.2380444231092,17.4166570400101,16.2612044519844,17.2791816651958,17.3729909428098,16.2231567257283,17.0948809929791,17.130488426286,16.2758429176456,17.1748910056929,17.1762082173214,16.1306615532882,17.0669827536942,16.9920004709889 +"Q9XY35",19.0351592451918,18.8174378174867,20.1575116490127,18.6640915803758,18.5229336656151,20.1622568526646,18.7835450779509,18.8816719115681,20.0110747179004,18.6486850432147,18.6048203439202,19.931027982537,18.9136834445269,18.8911744320533,20.2932493846599,18.7586281588684,18.7619711714126,20.0921677705954 +"Q9XYW6",15.7708319311519,16.7884754103258,17.1393413771678,15.9009473266241,16.8326427270562,17.1977933364192,15.7380436638098,16.880915822618,17.205945694555,15.8171596257192,16.9308412722497,17.3180136591282,15.340487691684,16.8718525268425,17.0400143647459,16.0713114360483,17.1114233045213,17.2104049348621 +"Q9XYZ5",15.3752672703037,15.9763299277833,16.3967345122839,15.1468372966258,15.9604606289409,16.314343924669,15.5468110305338,16.0923360211127,16.4333505193861,15.3740974403329,16.1911480233034,16.2107068079918,15.5575934937155,16.4311308407876,16.6743262514997,15.7495230751006,16.2048145942664,16.5717025876129 +"Q9XYZ9",20.9872054754214,22.5383238492489,22.3513062184277,20.905679857747,22.5152063189939,22.4006961136978,20.9184442823207,22.4147319144322,22.3122741628347,21.0315954906761,22.6543170932973,22.5779827310675,20.9994112692503,22.3884392208229,22.5530590120966,20.9968738848573,22.6369929806228,22.2675007867295 +"Q9XZ19",14.122837001997,16.7100769314115,17.3908516769932,14.4613178787954,16.8587718649701,17.6577397270926,13.8419365072551,16.7476348923332,17.1977060989116,14.2282483809767,16.7385776360821,17.535320643676,13.9782091712135,16.8074779409587,17.1061681067727,14.1550455370336,16.6842674182249,17.5389387915886 +"Q9XZ61",17.1379874782695,18.8122912187247,19.5198296969838,17.2032124156636,18.8714567970283,19.6716444571138,17.2874713065909,18.8666954080243,19.5605437696964,17.1778591363894,18.892956950751,19.7008714739752,17.2837518550382,18.8296176155269,19.5625588031179,17.2890539622351,18.6721620492586,19.5277680408925 +"Q9XZ63",18.166822272936,18.888329933632,20.1251754724928,18.2117680760518,18.841840387042,19.9541851453221,18.1157256626317,18.7771166474942,20.0318162177711,18.7964443403882,18.8247693163092,20.3339344662446,17.7902727347281,18.7870886086525,20.1183913807052,18.0330487083199,18.7731077969719,19.7021094868608 +"Q9Y0V3",14.7432184947418,15.6428167316259,15.111679626724,14.7428933729168,15.5594202095644,15.1770602286345,14.720218464711,15.7188906472659,15.1471627174604,14.87244810607,15.7204082943215,15.1104143707107,14.1747810306054,15.6634793716564,14.8526997802696,14.338704410041,15.6820053873317,14.9830121950044 +"Q9Y0Y2",19.7770512400373,19.3929722647421,20.1035698696216,19.3241297066956,19.2252242139884,19.5896270390922,19.5188789239555,19.3114368948435,19.8097082653955,19.4657019540062,19.122788724988,19.5598170457459,19.4423891052647,19.2310877804927,19.8082888919486,19.4439485588534,19.1450547867645,19.5805476418612 +"Q9Y0Y5",17.4789245953867,18.5583262971559,19.4641236948559,17.6064851779738,18.5002947988877,19.7134745970639,17.6463196912951,18.5445008707698,19.5947217238455,17.7742239056578,18.5892522249696,19.8691036117776,17.5717879015866,18.5314923828799,19.6622218876312,17.8592488813846,18.6034799891785,19.7268676094814 +"Q9Y105",18.0663705403368,14.5222390375287,18.5803266814626,17.6550017114926,15.110092635404,18.5681741940128,18.0157349559235,15.332581934893,18.4079126910994,17.4950691459468,14.8895339048865,17.6945296985754,17.3684681469501,15.7175990689164,18.7772579720463,17.6214101067648,15.8510877123291,18.6507003759266 +"Q9Y112",21.0748536828325,22.1628864818136,23.4008132918131,21.1647315972215,22.1892520069184,23.4233922176989,21.0912264889926,22.1886345107556,23.3275980264179,21.0881079157443,22.1543382001676,23.4654717953765,21.1141303230598,22.3039593489728,23.4754802541929,21.1199783753133,22.1739784913553,23.3630422205275 +"Q9Y114",18.1019889711474,18.993351642023,18.9343260250661,18.1843332921558,18.9677635731584,18.8518273558837,18.0411068425769,18.8680902871132,18.800978756546,18.0747667652937,18.9367861260825,18.9000915923322,18.0018712517757,18.7770318527212,18.7160617176092,18.0612846553818,18.964132882905,18.8119254438996 +"Q9Y119",17.660290955114,18.4718118846905,19.3594387679793,16.8962644050119,17.6891607225194,18.4462620807038,17.2669907916616,18.0697976659618,18.742860353121,16.5530277657946,17.5481974745181,18.0323663407446,16.7967396819812,17.5881538520076,18.47540703377,16.3450737357941,17.1204514422192,17.7854655340961 +"Q9Y125",22.1117509585878,22.5901769992141,23.8009550150391,21.9301157350266,22.4568296356859,23.5706479446967,21.9691990462589,22.3204743325141,23.6554652825298,22.0195105623688,22.2965055112737,23.5807919751679,21.5580077764018,22.4092989837381,23.4474564883958,21.8289744136486,22.3771375238944,23.3920457064767 +"Q9Y128",13.2199020006874,15.7104097580973,14.0854428045614,13.447511281545,15.4084877492507,13.5533204969668,13.3147770875328,15.7628413067672,13.7770766095147,13.4411060485105,15.8803237376973,13.8838452962614,13.3767206760931,15.8042239473401,13.7228162414547,13.5882529272204,15.9547686359888,13.4452010513178 +"Q9Y136",14.6365883413754,15.2524825500297,15.3117011805875,14.5451540599,15.3415611390613,15.4736381032745,14.644262694637,15.5527165968222,15.6544325046611,14.5618200875814,15.6271934608345,15.8135580009969,14.4672237473625,15.636268626759,15.860142157485,14.4941100788652,15.7206011357762,16.2045567449883 +"Q9Y143",21.1350655211888,20.9617894657418,21.212699459469,21.1431058857125,21.0191533704964,21.3030249196568,20.8547630573219,20.8668971956218,21.0146291095484,20.8470558643415,20.8381378061741,21.0203346614734,20.6578919988645,20.840811726256,21.0098008166848,20.7147412901818,20.6906078602414,20.9463975512102 +"Q9Y156",15.0072432797914,14.6965379140064,17.7408327564844,15.38162735743,14.8562225736149,17.7422254384693,15.3577197726439,15.0110442578852,18.0614955377784,15.8156396761509,15.1643555442846,18.1397288471071,14.9986374729262,15.0728347960669,17.9022373630235,16.045524036237,15.3005711170498,18.2087600655962 +"Q9Y162",18.7132131514679,20.7437818747689,21.5898204912596,18.4142417848918,20.6124933849477,21.6089737498655,18.5381158662259,20.6332838426924,21.41739508659,18.3808099233472,20.4598518496335,21.479835326965,18.6419608987312,20.6463937069867,21.4250946892676,18.3577071229579,20.3577920873906,21.345927721052 +"Q9Y171",11.3000627171692,15.422446912568,17.348173648017,11.933824297368,15.6116533111177,17.3938635300522,12.6054829884511,15.5952234242043,17.448073711558,12.8047075491347,15.4914168483629,17.4917911639141,12.5845839755926,15.6417375927057,17.5612048325265,11.9057487372955,15.898092190513,17.5968302654673 +"R9PY51",21.9972957955868,20.6411480913745,22.7711091149006,21.7095429931997,20.6263153392128,22.3862151920838,21.5107043558913,20.4168335679574,22.4348701618921,21.4771298227057,20.5336034035447,22.2279125684334,21.4005283961375,20.4618136465229,22.1750447325882,21.6598715443185,20.4784764485828,22.2442102349504 +"X2JAU8",20.7921389642778,21.7396598462604,23.1943387537045,21.0750638066186,21.8907462235813,23.261989447866,20.4647707314365,21.3716338703413,22.7400202039926,20.5361439330527,21.4220927685813,22.894183747073,20.5651268633651,21.4780307354565,22.9678652887237,20.6566462562053,21.4396789937025,22.842503236086 diff --git a/Mitochondria/OSD-514/Proteomics/TMT_expression_matrix_ms3fix_batch_corrected.csv b/Mitochondria/OSD-514/Proteomics/TMT_expression_matrix_ms3fix_batch_corrected.csv new file mode 100644 index 0000000..8d74d4a --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/TMT_expression_matrix_ms3fix_batch_corrected.csv @@ -0,0 +1,1669 @@ +"protein_id","Earth_F1","Earth_F2","Earth_F3","Earth_M1","Earth_M2","Earth_M3","SF1g_F1","SF1g_F2","SF1g_F3","SF1g_M1","SF1g_M2","SF1g_M3","SFug_F1","SFug_F2","SFug_F3","SFug_M1","SFug_M2","SFug_M3" +"A0A0B4K692",15.9124115044161,15.7509036978092,15.7640579642136,15.5596742420054,15.869255941875,15.8343382700095,16.0399975795242,15.9065979619018,15.8708146615139,15.8771198091157,15.8469976217933,15.8417634301059,16.040328089571,16.2297985405444,16.2866978494693,16.2814908627083,16.1074683234171,16.1133499120283 +"A0A0B4K7J2",15.8275653415064,16.0040965289643,16.0803025963886,15.4579179111881,15.4258874225507,15.507222604452,15.6158426088231,15.5419521649112,15.6186886860535,15.6979064581123,15.4969300115329,15.5830867647633,15.8032851412759,15.8344135443678,15.8175310592666,16.0287706872147,16.1280084757937,15.8244564371965 +"A0A0B4KGY6",21.5450890895707,21.5882575579161,21.5351487364304,21.9016220683466,21.8273184506767,21.7791061686736,21.7163463269613,21.646775197373,21.713345769602,21.8680259252866,21.9232395641516,22.1225380146565,21.7065370809463,21.6817722884522,21.5337186608301,21.8829864803661,21.9532439129082,21.936749621285 +"A0A0B4KH34",23.4512370700713,23.4463636703202,23.4263491872792,23.2723932798032,23.3726051934344,23.4697175598692,23.4598973923321,23.4987249158784,23.2739880896895,23.3372037789539,23.3732660386971,23.4891804156687,23.4001749986272,23.3815572096751,23.3561614430796,23.3657234373103,23.2141129290927,23.2712332615117 +"A0A0B4KHJ9",24.7809873310885,24.8006723404773,24.8979752149846,24.5981126954866,24.5572967866089,24.4497675544719,24.6637309041903,24.5731455393128,24.8466735045386,24.350263023991,24.3672921191157,24.5831304731349,24.5341160520739,24.5500716850816,24.4388297784216,24.4816567065047,24.5603882427388,24.1924901877835 +"A0A0B4KI23",20.6950841673903,20.7223165637182,20.6955376342225,20.609952125639,20.6064738615284,20.5372964968493,20.5068910749836,20.3869155429797,20.6225914637292,20.2664295886525,20.455624525883,20.4366536997394,20.674572752435,20.4844049685102,20.5517614526122,20.4007637343212,20.4979579808022,20.3098526962692 +"A0A0B4LFA6",19.2909621871043,19.356319376006,19.4594445929996,19.6653892683841,19.4990145901414,19.410458432598,19.4662368126981,19.4618071327128,19.5864112147018,19.6865823252531,19.6392771501863,19.5996992703906,19.526501654703,19.5470697193815,19.587135844279,19.5461150693715,19.6782993490862,19.5386379625452 +"A0A0B7P9G0",14.4961235881711,14.0352916599506,14.4223881569923,14.1111486004378,14.2028132584223,14.4133168345859,14.5438860675653,14.4584436783781,14.250053137698,14.577068858854,14.4605130849256,14.5592493432532,15.0193350052605,15.153282077451,14.9512099926856,14.8414475208267,15.278665881988,14.9927921759007 +"A0A126GUP6",17.2578394143213,17.1666844901265,17.2560772833993,17.1543174554064,17.0628200652194,17.0779225521182,17.0937941862732,17.047552089495,17.1252893662056,16.956157369859,16.8794850682639,16.9413169472262,16.3912955995284,16.8263839678477,16.7397986634758,17.1486226330856,17.0191009775213,16.8616218460488 +"A0A6H2EG56",20.9757353507544,20.8654177415804,21.1652645008942,20.9543625230906,20.9157467053742,20.8145888164925,20.9323900093013,20.8058436302119,21.1100902073483,20.7690436890435,20.9633851195139,20.9552649689303,20.71844335903,20.9005872873984,20.7708560269182,21.1202733835469,21.019267830688,20.6541837941832 +"A0A6H2EGA2",15.7998721836519,15.9008622943412,15.8126854992467,15.8414015928331,15.9337437598792,15.8771048806534,15.8262863512505,15.682757988152,15.8185176999428,15.7436621825214,15.9632783060516,16.1112507413855,16.0005804475876,15.6205275063335,15.6745855776059,15.754893991233,15.8655268943201,15.6725523502433 +"A0AQH0",17.0227802661084,16.7253158351745,16.7258418738339,16.8551766972116,16.7482672554956,16.6215024009457,16.9457233713044,16.8973078622717,16.9054138391676,17.1944833164189,17.0357427422698,16.9251154455089,16.9177366021317,16.9263711948243,17.0495943536615,16.4451799825535,17.0480753456926,17.153612322611 +"A1Z6G9",13.9597098408868,14.4165183071431,14.0417249855362,14.0436385722664,14.2072380187888,14.4085867364312,14.1429019476422,14.3476990789628,14.2273735889806,14.6248500673458,14.2988974591074,14.6392568732807,14.3125283811051,14.1738561012643,14.0230234422008,14.4326004443931,14.0720202883731,14.17626362721 +"A1Z6L9",15.1735651537864,15.0867358964404,14.9169048282217,15.0202589548033,14.9950967946485,14.8151908847634,15.4392826008348,15.4871106547139,15.3205542870754,15.3665947986336,15.25807955698,15.2915373411736,15.5129843202965,15.6500506880122,15.794582224094,15.0598893842142,15.0955016217739,15.4338056472408 +"A1Z6P3",17.2637016254883,17.3039890595956,17.3334436771411,17.3737948071909,17.3603123004374,17.4726395533511,17.1761889275913,17.0910463200293,17.0818156968324,17.1835347719435,17.2494320360027,17.3937612441387,17.1439337111546,17.1308064340956,17.0032923325223,17.2265981688381,17.232165862046,17.0827995082211 +"A1Z6R7",17.9708726414917,17.8419297468402,17.9311018573185,18.1166860156485,18.1228221220014,18.2618520838779,17.673070794127,17.7924651891079,17.6185056840686,18.1012066425887,17.9132957031011,17.9552335180526,17.7201866519243,17.8596753541579,17.6829332906094,17.953542690699,18.0053773212708,18.0859390025523 +"A1Z6S7",17.7167804915232,17.4889066804528,17.5461430701244,17.551920643954,17.5367988362449,17.5951025029025,17.5748195980227,17.4983170660847,17.4338723508685,17.6028457724471,17.6069842107588,17.7227807034465,17.4431515577272,17.5632152673099,17.4865876840352,17.491905547352,17.6872015501751,17.5969372996491 +"A1Z6V5",20.0803240571197,20.0241864499865,20.0765297146027,20.2986443221417,20.2664608378522,20.3630651078431,20.080511615394,20.0795562577483,19.9460901284012,20.1069500147314,20.0441688586815,20.0874243338604,19.6550470676966,19.7886366116891,19.7235122839165,20.0810257658494,20.0994938269753,20.105881274309 +"A1Z6X6",18.7042348698208,18.6843468172115,18.7464050980503,18.5149936885889,18.456531437535,18.5498565214725,18.5561927112102,18.6872686429025,18.5772426283627,18.6289280260304,18.3414933800032,18.7284154281613,18.6181757702275,18.6905057921792,18.3879109971035,18.3857021745509,18.5480811705973,18.4183965672784 +"A1Z729",16.8027671545402,16.6872672739505,16.6115632478249,16.4595762020701,16.5788816728172,16.8278485739965,16.8257884652883,16.77443007993,16.654390358833,16.6818323875315,16.6986204237241,16.6711075183301,16.5701899319894,16.8706484416125,16.7653529835579,16.8066442440115,16.5369504933967,16.6165357028887 +"A1Z7B8",16.674984241168,16.5928414472821,16.8546005778817,16.7609723016794,16.8413346216942,16.8533515506541,16.910172678765,16.9846153169836,16.9875010382351,17.0147325335165,16.9640166687369,16.9331811246995,16.973716117779,17.2254745687504,17.0818625160144,17.5555495101562,17.2818447596168,17.1796305755794 +"A1Z7G2",19.4738197562243,19.4371635958691,19.5142799112881,19.6159542253365,19.6036186899376,19.457791313286,19.582258318952,19.4258477356906,19.5819299919914,19.5319904500697,19.6841207268301,19.6556345166844,19.5037889614808,19.3554953588076,19.5598298296477,19.6382829215576,19.8398485264859,19.5766290707234 +"A1Z7H7",17.8499148543152,17.7672950567253,17.8043828549527,17.7782623718263,17.7848856306513,17.8045104682334,18.0002831137763,17.9543215314293,17.9627650004697,17.8291276012903,17.8648234396489,17.9124034079542,17.7503772132209,17.862083137464,17.7301705173448,18.0024204648909,17.9769768234011,17.9961533703651 +"A1Z7H8",14.9517156689697,14.8612822322789,15.1103118838405,14.5590247333551,14.6131808876956,14.5126713164992,14.8726742442423,14.6032424443975,14.6946643571126,14.849505108821,14.5794880847332,14.599242765299,14.3211866422621,14.7488631560247,14.5614418456003,14.564313327865,14.7123629203853,14.6400875571635 +"A1Z7K6",15.4775637820297,15.4574464880142,15.7499460705295,15.5110400142609,15.7774037844701,15.5095813905999,15.5888374284027,15.532455152553,15.6737084864921,15.5759592170219,15.7844857620638,15.6516174963661,15.6707429683219,15.4409123465388,15.3511015185775,15.654909962651,15.4863498390482,15.5430984101229 +"A1Z7K8",17.8410712827425,17.7223994411203,17.7826612857066,17.6240098659805,17.6555465464677,17.6552891194858,17.6500490511638,17.5439335097514,17.666984259655,17.6871035357687,17.6541350100609,17.686079994585,17.4810843237376,17.517866550529,17.5265645558558,17.3862415715985,17.5756785730623,17.3519804157034 +"A1Z7P1",14.1111573719105,14.9971912378076,14.6038897462868,14.4017307036831,14.7475101696468,14.4716530773965,14.7486876884123,14.5070088998979,14.5885550408173,14.2114520950539,14.6361820777248,14.7271520168137,15.0182202974973,14.5727486600734,14.679816271552,15.2095009076716,14.2401080190782,14.6296829113624 +"A1Z7S3",20.0951375965047,20.0173143514944,20.034004972634,19.9604669167037,19.9958031625676,20.0939681532497,20.041044084414,19.9821430599841,19.8389942330052,19.9390939996148,19.982605097619,19.9439011304375,20.0269962048271,20.1456139938735,20.1395232952044,20.1728930956793,20.1121522322052,20.1852401132129 +"A1Z7X8",16.6785591454624,16.8421697808006,16.7059039920798,16.8710871828298,16.9185127865084,17.0154988118856,17.0022432933944,17.0502559211771,16.9606202234793,17.1350390372546,17.0850767427378,17.2236930992224,17.1509521607385,17.0605281752153,17.1730605446776,17.3440586755048,17.2253960887454,17.1031628238398 +"A1Z803",18.4785589198197,18.3129944845338,18.4735190394924,18.5911518806982,18.5345472481914,18.4454404750704,19.0524902849879,18.9775222409878,18.9673874583988,18.8925735777563,18.9840943203243,18.9790071665809,19.1109035043595,19.1522846579674,19.1562123379934,18.9754128917105,19.1396481073273,19.0795245817961 +"A1Z843",17.3532344711246,17.5499702959053,17.4107373856351,17.473493297396,17.3935711214949,17.3681541726768,17.6242584597189,17.5470128666687,17.4720228282178,17.4821616232506,17.592535939386,17.5967352039812,17.8797042101865,17.791286578369,17.8825222949471,17.7151664657145,17.6536417255672,17.7978466419331 +"A1Z847",20.1570746543862,20.1504941076096,20.2448315300597,20.3303390562253,20.4303650103388,20.3578181766153,19.866317948096,19.8760846067193,19.9358293001342,20.0556343495175,20.0797800517561,20.0090779859473,19.7744737898694,19.9591575334067,19.9300327077583,20.2877777967997,19.9757362850636,19.9940278943792 +"A1Z877",19.8864375705493,19.8565348225856,19.9167341498796,19.9573192898701,19.9168327068154,19.8443548638898,20.0036292161094,19.9563660515857,19.9566945930717,19.9442309605563,19.8792912355056,19.9167868072108,19.9118042166531,20.1929778676608,20.0770690222195,20.1608917667307,20.0623103363157,20.1526735841975 +"A1Z8D0",14.6562808409566,13.8536563324693,14.0322893408302,13.1433182121392,13.7978981169941,13.6739230067889,14.6589646891033,14.0375439177593,13.866753887084,13.3919339509331,13.6007725075978,13.6222887205717,13.2799688912617,14.0133824772561,13.8105739999,13.6955096692847,13.5227229016021,13.8201472985039 +"A1Z8D3",16.2171279735134,16.9729907798884,16.147123204376,16.6041415239515,16.8925857945744,16.6328445141606,16.6990021981045,16.3180354903082,16.3482563417977,16.7003880642175,16.8925586260042,17.1602573077736,16.8753960423417,16.4156689580455,16.7888942099156,16.8062011455635,16.4104172988713,16.8248813696686 +"A1Z8H1",23.2131906879347,23.2080578492283,23.2387831543842,23.1047588518457,23.0898186448165,23.1457774311862,23.1440905424746,23.0927842347585,23.1727427694454,22.902725203661,22.9589445038436,22.9205273440109,23.1687004463342,23.3925960659238,23.1842380278662,23.1635869163473,22.9548513500271,23.0349839217046 +"A1Z8H6",17.328980616994,17.2687240876511,17.3730225961461,16.6838862008177,17.0082267409673,16.9808834573391,16.4753565212595,16.6622906137797,16.67845176201,16.7942665598158,16.861735016047,16.6824427720264,16.8340891107448,16.6612044908726,16.480374106133,16.5409229577758,16.19532101809,16.462327273753 +"A1Z8Y3",15.0529530704299,15.1618503686735,15.2458980934621,15.2097847743627,15.3618234714328,15.159143254871,15.0520163421619,14.9434811086328,15.2087049135452,15.2164202293073,14.9886593130383,15.0969730618213,14.7119505228763,14.9791601253514,14.7162649380653,15.0143554558066,14.8225060078159,14.8304961331797 +"A1Z8Z3",20.0846781906156,20.0979602241442,20.2382260824041,20.0810944239524,20.0813876214729,20.1462116905087,19.9281914374855,19.7448394422203,19.9545804749225,19.6947597874469,19.7535255699167,19.7728239856884,19.8474936642859,20.1203311811934,19.8431003215286,20.2238379909651,20.062011455804,19.9051129396992 +"A1Z8Z7",18.7976598816891,18.6385269091106,18.6452363300834,18.9799697149226,18.8420785954182,18.7807422585136,18.9185798485748,18.8150816598526,18.9764392028952,18.9327656428738,19.1930315005432,19.2766032164403,18.7096186188186,18.7525461568074,18.6804887501491,19.0018612549349,19.0991901400817,18.9809452037321 +"A1Z933",16.0627875727872,15.7404770731079,16.0102972847683,15.6354280390552,15.9745671417376,15.8157999186351,15.5943114407767,15.5421544258774,15.781416570931,15.740533689863,15.7315681715436,15.8280802728407,15.5268904439797,15.7424266788624,15.4382306799595,16.1307489396274,15.9595066349602,15.8168753989545 +"A1Z934",19.2457777426336,19.1461032117517,19.3394600552782,19.3560839027819,19.4506173899571,19.4244211960806,19.3423743162343,19.2453492742014,19.2715109731411,19.3049047174788,19.3290163352332,19.248624399723,19.3255676360044,19.3733999098325,19.2433474046964,19.2080214094915,19.2382436036486,19.2553656957054 +"A1Z968",17.2687026480456,17.3040127928975,17.3427735353153,17.2363088806509,17.2067173886665,17.3682863023404,17.3388123706684,17.2150624780205,17.1955427756392,17.2513152455113,17.223191320466,17.2448805324806,17.0748932370583,17.1039307392386,17.1674836988436,16.9706252533067,17.0877429159521,16.8216907906222 +"A1Z992",14.715071701197,14.6392236680859,14.8157452629323,14.3905607809228,14.0252503335328,14.2621760816245,14.3704573331987,14.4812974125906,14.3478652574216,14.0905940365286,14.0494084483116,13.7343654859757,13.7198576009333,14.1782678281466,14.2349807139372,13.9516036783241,13.864697440437,13.843012329213 +"A1Z9A8",16.2511751992764,16.2834732554872,16.330772581125,16.3977433868908,16.4664520807146,16.4896146338504,17.011882540876,16.8372478383575,16.8505155939846,16.6130288882681,16.8773697082273,16.8719488771583,16.9892915412611,16.9271531296775,16.7947459059405,16.9490451871606,16.8204707312689,16.8745691516741 +"A1Z9B5",16.1373773178991,15.8488235006584,15.7900943936146,16.3796230162706,16.0289033552789,16.2468234544345,15.5709074084418,15.4382839702948,15.4272115658654,15.8759714294568,15.7486690770055,16.0017980687249,14.7864520075016,15.4009775278696,15.4273283159443,15.9563460109875,16.2410197594504,15.8134213919737 +"A1Z9E3",21.8562031100682,21.8180364521589,21.8934783581091,21.8295756463401,21.7538729878307,21.7843793968496,21.8313225348151,21.7645129477294,21.6612353176603,21.6359453177566,21.6842436994741,21.769650277404,21.785391634711,21.8264745449153,21.7977681889712,21.8284280008559,21.9197256124386,21.8603547055529 +"A1Z9I0",19.6687143778717,19.5372913263772,19.592425932407,19.4875902706517,19.3174940700289,19.4262059200284,19.3740565089381,19.4683873008576,19.536307388437,19.2822282133278,19.2948425210221,19.3269140260545,19.3744806096756,19.5054136807945,19.3186514411747,19.2167558117726,19.2803968931572,19.203321084136 +"A1Z9J3",17.9284335865187,17.9916146222646,17.8918456459778,17.3827943346907,17.620968767705,17.4451783037652,17.9490041206779,17.7856796493034,17.8537416265121,17.548650402684,17.6312789679537,17.5555685824957,17.7003977753531,17.643822556296,17.7278005818466,17.3673580530674,17.2032737094692,17.4025035323944 +"A1Z9M5",15.2165889549546,15.0593395789425,15.5446653173941,14.7927408145443,14.9622085210626,14.664567496629,15.4027187775295,15.0677079942645,15.1593536821416,15.0446784056371,15.0634362913906,15.1977152513772,14.937456506156,14.9693988506837,14.9381143914444,15.0222315296594,15.294323752137,14.9119988494944 +"A1ZA22",13.146394221914,13.4703542574875,13.2724806259258,13.1421627863138,13.096944060421,12.9401592879732,13.4646820864213,13.5932887930991,13.9863884234755,13.837743235063,13.7553206978376,13.9752231278531,13.4511527352666,13.5316955105187,13.9637915960562,14.5434573805097,14.1379891261245,13.4475493842045 +"A1ZA23",18.3481045061142,18.2568381601305,18.3148479374462,18.603526376252,18.556924266108,18.558825354539,18.4084876937552,18.3163050290319,18.4415821330017,18.5722990954904,18.6817899258856,18.7073224263408,18.1694080884874,18.1757042956831,18.0762910459285,18.3153336981299,18.42959778139,18.318290560973 +"A1ZA83",16.9032064108356,17.08167541788,17.0142295698488,17.0071180318005,17.1048009937428,17.0957131350038,17.0069846987375,17.085743272104,16.8341047583868,17.0845300217759,17.0668783799661,17.2094750944655,17.067269411122,17.0601634134149,17.0277168802913,17.2489100901204,16.9187571872841,17.1367792263957 +"A1ZAA9",16.4523286031788,16.4506433844241,16.4420386640599,16.5733348569092,16.4933646076395,16.6851479189967,16.4824665947704,16.5350171376675,16.2351746461776,16.6273054239484,16.4931780737272,16.5812422084376,16.6821139316334,16.7277050152411,16.7792982944814,16.6634221592509,16.7810633509917,16.7580698375379 +"A1ZAL1",17.4574858976158,17.1566788636001,17.380147558249,17.598347150517,17.5138871469778,17.4179904414919,17.0216653729271,16.8946496063259,17.1024478205127,17.1650651560081,17.2364461893675,17.171639380798,17.1947360782205,17.0850675539882,17.13705513109,17.0474629174027,17.5980332124319,17.2754822405497 +"A1ZB23",16.205572574367,15.8082870818757,16.0944560910153,16.1423997842816,16.0220769147252,15.9125176257677,15.7683338041755,15.5779052019221,15.9293276958439,15.9280481747617,15.7384458237553,15.6752968949593,15.1990249801366,15.8976249468396,15.9891317879022,15.960600168491,16.1596395170953,15.6032493907248 +"A1ZB68",19.5163318597281,19.3654153712822,19.3670384047237,19.4014786141855,19.5010471538284,19.5730448086307,19.158760095309,19.2891527321603,19.1885687342128,19.3491508895812,19.417173205531,19.4093926230427,19.402514902298,19.3027959806391,19.3542697855015,19.136427514921,19.0890794325819,19.0723495199115 +"A1ZB69",20.6649554968998,20.4846306735933,20.6049970078538,20.3460548897472,20.3851502107694,20.6093119657016,20.557442081224,20.6460880028303,20.4944448701636,20.3108934282972,20.268721334211,20.3710076543512,20.4020048670053,20.5407605383811,20.4389956453381,20.2282101764523,20.1842101798405,19.9908037962174 +"A1ZB70",16.3744964367969,16.3121142669094,16.340401066898,16.3324126160239,16.5151349924879,16.435023837246,16.1261573439275,16.0539910662511,16.1338236614947,16.1654895306315,16.0788854313126,16.1370674272924,15.7847669002632,15.9807974637527,15.8357052526573,15.8408292580668,15.6832288649961,15.7421308401214 +"A1ZB71",19.3804110482874,19.3749103077631,19.4086201974977,19.1662138566466,19.4231185606279,19.5198955324377,19.2531942933846,19.1703156734608,19.0121240401212,19.0138021458014,19.0328529806969,19.1839443148315,19.2170613970295,19.255642641094,19.2576292098671,19.2658192201043,19.0396617976111,18.9142886664986 +"A1ZB73",14.5483541907436,13.8076102301712,14.0352253313546,13.2231863899162,13.7576100365673,13.8959310231483,14.2812320172262,13.5099823582256,13.5135955837467,14.0610026066676,13.5674080888357,13.5969151032098,13.7723100659263,13.6870728981142,13.4766492877838,11.7450147439626,13.3014164025287,13.1127836851995 +"A1ZB79",20.8789446790622,20.7757725480153,20.9170544301812,20.8732570752978,20.9581176119193,20.994602361714,20.7460375408669,20.6848406379206,20.7715413712212,20.6656927522765,20.7827193909124,20.7702013610754,20.7248198040389,20.8253225337908,20.6715803983493,20.8150890692446,20.6770681982287,20.5788609982459 +"A1ZBA5",15.3225405718486,15.2180535938736,15.722478613611,15.4469435618891,15.3846256813623,15.5723385078312,15.5482550619701,15.7760041949864,15.6199021066905,15.6955841033168,15.637543214869,15.9128720681195,15.6245728468874,15.9229509846706,15.4310347013301,16.2162224705319,15.9149409466819,15.5954926188614 +"A1ZBD8",13.7158979787556,14.07272712606,14.0028137181339,13.6508920982725,14.1079232297248,14.2471802917492,14.1564017692212,14.0457052685077,14.1566838039191,14.6485953804144,14.5934644294659,14.5044029374645,14.2598301535018,13.6804701193428,13.7162778411334,14.4723888579909,14.4037160650551,14.2766476457563 +"A1ZBJ2",19.3551254523431,19.1953632935492,19.3035605587939,19.1546994412177,19.1063160499329,19.0338389784891,19.4201127348764,19.4604339367759,19.3683298646801,19.1441316448354,19.0895448943778,19.1035237128421,19.8169856132297,20.0785800934322,20.1716512899215,19.429674726148,19.3904913445823,19.3398252079236 +"A1ZBK7",17.6389922294536,17.8264755072032,17.8307441494049,17.6778517994013,17.6319836670601,17.5057157252194,17.4686225630451,17.4382704557789,17.6880554621755,17.5504909812187,17.7395427994867,17.362333199656,17.435749373286,17.4816147594743,17.5686934161666,17.7241889308029,17.3780086882045,17.5403539245853 +"A1ZBM2",18.5089316209226,18.2997871411882,18.696237058473,18.6719052996843,18.4833281644442,18.6991716131862,18.5738900448863,18.5109904002437,18.5086897891708,18.5929100702049,18.8431625468675,18.6267980045761,18.4209110537224,18.5838511142724,18.4148591310183,18.7416785526644,18.7891072750687,18.5644710456605 +"A1ZBU5",17.0253435294947,16.8157953622589,16.9316781923272,17.0545657055327,16.9248134381545,16.6794205989709,16.5755806126804,16.6864373685445,16.867927935369,16.4275020809375,16.6063278808217,16.5641553035184,16.5804641665351,16.4433711658917,16.5507400715968,16.3750979878617,16.5618088673709,16.4446319812599 +"A1ZBU8",20.9441365323379,21.051541971027,21.0324205705047,20.8644959371882,20.8048872470049,20.7526852193886,20.9662714658422,20.9139918980648,21.1257468282623,20.3698567046131,20.578345780739,20.575902250284,20.8813003276806,20.8596868596446,20.8342871963061,20.6579192400199,20.4755264512016,20.3629381429363 +"A8DRW0",21.7902122486356,21.6372076240013,21.8983782862833,21.539341424012,21.508126976312,21.4450975647716,21.4275553322234,21.3482160402304,21.5331069532516,21.3659713780937,21.429138222226,21.3210746869165,21.4069638752759,21.6200860873246,21.552879305417,21.7013467970489,21.6886161051953,21.4808542586498 +"A8DYK6",16.5079404794172,16.3807239963389,16.5599685129229,16.5355589012914,16.5218295523813,16.7361262939844,16.5996962699301,16.4916203819439,16.3561837742748,16.6254322673959,17.1419695750406,16.7630604471108,16.5800727863055,16.4582551259209,16.563441572232,16.7565772920049,16.6108793647195,16.6264973958201 +"A8DYP0",15.9061459745021,15.751770743411,15.8645537119439,15.1007196474377,15.3470765827417,15.4777580354615,15.6444077278601,15.0818017011357,15.0816801831463,14.9104113917225,15.2873516868438,15.1790294025956,15.3635547425271,15.2773502048829,15.3465139542072,14.6080443053835,14.787932870418,14.5837485020786 +"A8DZ14",19.5209411956763,19.347591774422,19.4448723637159,19.5815620907422,19.4668528199504,19.5002557772641,19.4306574649043,19.4534410206771,19.4637584530283,19.5031361887617,19.5070770498415,19.6232966376618,19.290291208381,19.4392195641304,19.3009737267826,19.4635987699514,19.5760046893957,19.4570299599643 +"A8E6W0",16.6438098223238,16.4745862229861,16.478422085952,16.2536133372025,16.5834085267107,16.5457296236238,16.4867506669506,16.3179880105676,16.2791521786418,16.4242690042686,16.4321902303944,16.596560861806,16.3484282521034,16.3683013398447,16.1814848665191,16.3624777913169,16.3428745436625,16.4379992576231 +"A8JNG6",16.5856322518062,16.2192202110594,16.4328645543253,15.9821311613697,15.5342320147875,15.7149238309842,15.8924895555754,15.8376259522934,15.9126692206712,15.7291493159606,15.194976180171,15.3261132684917,14.6413946566311,15.9441513552999,15.6430949120446,15.3126900291294,15.4132812568611,15.1138211839554 +"A8JNP2",21.2227040525394,21.0790924509924,21.1948285412174,20.9507030574878,21.230674609543,21.3670801324111,21.1322358886943,21.1628918562534,20.9314999253062,21.1494713818217,21.1830187210325,21.1168218323933,21.322583665354,21.1320058016533,21.0664916973489,20.9310253725816,20.9210399790042,21.032001289802 +"A8JNT7",16.7541075089648,16.659782625326,16.898728235314,16.656381200797,16.8015298217735,16.7136178513214,16.8001872769189,16.6672321480558,16.9157664712382,16.9399362722422,16.9952865574625,17.0044069216914,17.0008513966016,16.9606373457006,16.7720852459402,17.0164599455491,17.0834551027553,16.8633188755685 +"A8JTM7",17.2594586178659,17.5057823319545,17.2974130795585,17.4321319156998,17.3588535888807,17.4032579961623,17.6141056698981,17.6585881623602,17.678032262596,17.7957840980411,17.7408494655033,17.7651382909877,17.6858840870004,17.5345775905632,17.8033848593254,18.0535837074948,18.0422969567384,17.8937216073703 +"A8WH76",18.9265999831383,18.9171732193749,19.1380735574518,19.0371531774831,19.0571448830707,18.9783316627415,18.9564712150816,18.9236850247672,18.9486573086328,18.9279693595037,19.0117976478969,18.936919315948,18.9905045667805,19.1953016036838,19.1327437127996,19.4157071437036,19.1493030668975,19.1196798881174 +"A8Y535",22.2080914737846,22.1011428737262,22.205632055965,22.2126778131439,22.192753724516,22.0800737650555,21.8994674498607,21.9117918629147,22.0327866253573,21.7803860458798,22.0264490048531,22.0144106810403,21.837510671962,21.8682305066496,21.8186917053506,22.2801496269551,22.1179151089265,22.0666882488173 +"B7YZN4",15.4596923651036,15.5304289657525,15.745610576194,15.3177395191575,15.4635124684738,15.6426921121184,15.3388591250916,15.6783020562139,15.1504462525166,15.4585083501939,15.2422006882877,15.3483638808315,14.7605434572907,15.3376773939283,15.2914768462596,16.1775551382703,15.2607763824514,15.3343082871874 +"B7YZT2",18.7023091333939,18.8735149959493,18.3060785804412,18.3705162613414,18.4468931830175,18.622642489423,18.3734771554148,18.2628153701233,18.2191757209175,18.2409801235508,18.3545650564012,18.6018087751827,18.3863132702791,18.1598211608818,18.4295796093826,18.461546181805,18.437532359412,18.355856950438 +"B7Z0C9",15.9680139345508,16.1264434652439,16.0256448116839,16.1296785852671,16.1155823798034,16.2024105388443,15.9386557603875,15.8267656480468,15.5892257253483,15.9011573258638,15.8998540045697,16.2207601753727,15.9355128564338,15.8509265447944,15.7486270454787,15.8584469315008,15.9118933515456,15.944797097276 +"B7Z0N0",12.8787481235045,13.0597589538582,12.9783701036685,13.1225329681443,13.113085184746,13.2353413563169,12.836431379548,13.1143540504739,12.8699953527873,13.4274421258636,13.1862881114051,13.1154274334297,13.3457276724859,13.191612441735,13.1161716908611,12.8063207359793,12.7521042633073,13.1018970684621 +"B7Z0Q1",17.4172895668894,17.4594741731176,17.6090086989811,17.6174145378217,17.7726101110209,17.7719599023576,17.7201560510603,17.6167865204514,17.6210788874838,17.8283028458034,17.7677643001678,17.769585087886,17.7199805377453,17.8645032935214,17.7229109092747,18.0870088952831,17.9090140363242,17.8956089486201 +"B7Z107",16.3996061038509,16.2006448781699,16.367991161796,16.3802741188319,16.1446043288167,16.0852742210954,15.7680290950022,15.7315120194619,15.7747726999675,16.1406306790459,16.0805432729289,15.7793871006216,14.9744033704981,15.6505727461151,15.730171472744,16.2117123893471,16.0667785110836,16.1370591003515 +"C0HK94",18.565257003235,18.5559243572523,18.7006278462091,18.4442937297668,18.304811411189,18.3141936742057,18.4841813490783,18.5567258858505,18.5824900762149,18.4181291997517,18.4716234432632,18.5668264789827,18.508004265136,18.4350142321705,18.3484174359775,18.4230211542679,18.5187873715102,18.3303311896459 +"C0HK95",20.1572303711702,20.294527329454,20.2448646813631,19.9218556133264,19.8552239815661,19.8394402476311,19.9518082751882,19.7650367702631,19.8432001584193,19.4333159755426,19.7392738318033,19.7176798854758,19.9462070728707,19.7084993350785,19.875801127198,20.0358169840915,20.0836730440247,19.9252481921023 +"D0UGE6",15.4084751446734,15.4303667648412,15.697313291763,15.5648081728299,15.3388671372885,15.0935931740342,15.1699632122885,15.0904091158816,15.5051736226735,15.0655041335965,15.0422610172536,15.098056611481,14.9185617147478,15.1671833447891,15.1459960552906,15.4935502975342,15.5517752956164,15.0807299204281 +"E1JGR3",12.2533081166742,12.3241523188159,12.2204685962063,12.0780085824042,12.1970805059167,11.9284204524385,12.2561968039355,12.2020343320897,12.4857443512125,12.0275224485533,12.3285966030606,12.2282395511023,12.4414116155822,12.1433919904593,12.1052800187038,11.9928868139817,11.854078630789,12.0811814114677 +"E1JIY8",16.2817381500298,17.2992567890217,16.4191549843946,16.4107387377177,16.2834548749014,16.454447208163,16.383771765023,16.2605678389217,16.4693939727324,16.4719805055522,16.1614663999544,16.3494967923145,16.4349674503109,16.2324491164768,16.4032163609181,16.4176724798217,16.1636740691794,16.3051597699328 +"E1JJH5",21.1567760769061,21.1531091583909,21.2219380901123,21.2792540764984,21.271752598149,21.2485249102301,21.2538283709615,21.215770947343,21.23045569811,21.2212795486185,21.2607093266439,21.2031488792494,21.27034992272,21.2900054539591,21.2504940479348,21.2409172089936,21.2310577202122,21.2678435790615 +"E2QCN9",17.4092374014001,17.5246651296221,17.5136174566895,17.4416856674662,17.4724854035483,17.311629104432,17.5135559590883,17.3556246974259,17.4148138651294,17.2254758381288,17.402934735803,17.5328780603584,17.5031672310306,17.282692696139,17.3603425351373,17.1525859863811,17.207305420957,17.1124270617485 +"M9MSK4",20.630497024958,20.5038492696107,20.6543479443576,20.6905052609152,20.6932617465792,20.7191730700824,20.3045650368846,20.3821580436786,20.4310909372723,20.4669522162675,20.5816982646304,20.5356004568173,20.4538238454668,20.478352078891,20.3763416331992,20.8671502678489,20.7741742489512,20.6969396106124 +"M9NDE3",15.9173146562593,16.0190118049432,16.0518724957864,16.2025768140266,16.0905000963607,16.1025519472563,16.1648839484749,16.2083910577252,16.215903241336,16.2650544274762,16.2280958666198,16.2440862557017,16.1621067473857,16.3166204832661,16.1918145561751,16.335332743755,16.1846500284625,16.2410408411221 +"M9NEW0",18.5037965935043,18.285194484519,18.4536225314777,18.3592408002141,18.4424821385446,18.5144000714623,18.3364533441327,18.3325080851823,18.3329266090379,18.1493507444141,18.271977443093,18.200269426103,18.3596185440904,18.3392570061912,18.2231465485948,18.2319090153396,18.2689498841652,18.2160038550197 +"M9NFC0",20.0818297689394,19.981722859117,20.1596093434118,19.9305565795851,19.8017808875079,19.725319108222,20.1665836099412,20.0769833470588,20.1458510496264,19.776070633746,19.8656399039605,19.8255578954268,19.6919019497874,19.9728651394807,19.9535246360666,19.5433800026741,19.4913304075483,19.3804605119196 +"M9PDU4",22.5278596170841,22.6564681261071,22.6922126834679,22.6383644933832,22.6503754371944,22.6437611030248,22.4846021256526,22.4580566421355,22.6116398069215,22.4318270372952,22.4543866644907,22.5249417659656,22.3761359735032,22.5325685461143,22.4412645007633,22.8020525949376,22.5089864258139,22.3470219817127 +"M9PEG1",20.4613766924746,20.6085577917711,20.7003477005656,20.4787053470605,20.5344287034677,20.4360593189026,20.0479276109718,20.0844234804187,20.2400089619114,20.2036350008168,20.1535088032373,20.1412848815842,20.068198743306,20.2646098283447,20.1423775732705,20.6058775641358,20.2201923515261,20.2056425225313 +"M9PF16",21.4140337546555,21.3643611757422,21.4239557431583,20.8732983823983,20.9070880610956,20.829255348482,21.2793805141561,21.3028152540762,21.2493546445557,20.8744615472734,20.9374066550005,20.9123313614853,21.5764710823479,21.550677676635,21.5986269285445,21.1215794972585,21.0768759555401,21.125700751864 +"M9PF61",22.8758097120659,22.7587052030748,22.8533607494446,22.7793481052698,22.7267219551104,22.7707958144442,22.6599768158652,22.6598224847398,22.5804233641054,22.6434428105614,22.6235293404338,22.678150529061,22.5465161741165,22.7260374628479,22.6647019970531,22.6410767832312,22.6513539549032,22.5987379470016 +"M9PFN0",16.9034440509235,16.7120437914376,16.7917308946046,16.7853923954309,16.676135640862,16.8018089185051,16.6091722347641,16.764668071915,16.6423812443483,16.5658249603183,16.4491370404726,16.6356858132005,16.7142254682546,16.848073219272,16.607047373697,16.5101840977148,16.6381854434469,16.6095889630508 +"M9PGG8",18.5524890465605,18.5598529126354,18.5552385455137,18.7094831536889,18.5990473216322,18.5012857546464,18.4528283187595,18.4565306165755,18.342412917828,18.4936750289897,18.5649384565534,19.5124297184733,18.451758596881,18.453440839079,18.1197470832302,18.5212491051692,18.5476731035735,18.1503692303573 +"M9PHA0",17.4933091251578,17.4647555345381,17.7060774903635,17.581680099355,17.5643763196296,17.453405452057,17.4802300523061,17.2908779749888,17.4406670686553,17.3612662129562,17.3525124213385,17.3282631202761,17.5113979282127,17.3346853078913,17.428201552282,17.1212510601787,17.5419269197802,17.1925197945327 +"O01666",22.6228932221079,22.6352527533709,22.5330805964669,22.5976562740889,22.5591540430865,22.4928490236962,22.7403683050023,22.7527852436326,22.6843860559824,22.5694640628927,22.6250478693982,22.7446129627818,22.9907837204472,22.9874538097382,23.0985671537599,22.888881942856,22.8503538081686,22.8565517347078 +"O02195",18.426690831575,18.4235946206885,18.3831027160428,18.5881977220186,18.5674147267845,18.5167048000157,18.8199205505481,18.8313044292156,18.6800237442864,18.8040876548701,18.7823879151965,18.8841456358597,18.6526802967943,18.7937343007647,18.7252893429306,18.9139037367703,18.8070447999266,19.0162145534412 +"O02649",23.3843050722368,23.2589903359225,23.4116722743741,23.5770579344378,23.4955091311009,23.4669343093978,23.208461769853,23.1959273491791,23.2973498300603,23.471338984564,23.4684770941388,23.353303681481,23.1215796666045,23.2076980597299,23.1420335449789,23.1536834214176,23.2898248790424,23.2451332088216 +"O15943",19.9777660679301,19.9953259389903,20.1076742044697,20.3155772184368,20.2535663823807,20.2748326098258,20.090264150334,20.0132516901465,20.0870659993437,20.2440833675268,20.2407937239263,20.2840903490309,20.0619744341803,20.1480186388638,20.0085316724968,20.3453210896242,20.3840299537247,20.2727914928654 +"O15971",17.3071659771961,17.1725707571549,17.3275893127615,16.8690168044226,17.0025153531757,17.1980968952305,17.0725799784952,16.9939720105879,16.9488434936971,17.095839279791,17.2045563152997,17.1456413079304,17.4713475705701,17.4086530733383,17.187500686727,17.251727760232,17.2854098611504,17.2600056743603 +"O16158",21.2998027236149,21.1625210247931,21.2057132339638,21.4414461441808,21.3090731971841,21.3496460657471,21.1510583211779,21.166343697094,21.2211931165329,21.4197141491303,21.312489919188,21.3449835188743,21.0386364381932,21.3066193351271,21.28071340016,21.4650491851188,21.5586597880295,21.4134576261378 +"O16797",16.5247890660157,16.4985307855177,16.587837837,16.0513388409314,16.0520197980229,16.093069235941,17.2326482785481,17.2551766186321,17.1910001147085,16.8534847366498,16.7277929992093,16.7476427349633,16.9220675884469,16.9503875251387,17.0067703817137,16.6285376608974,16.7289584449687,16.5865458671627 +"O17444",14.8387645775518,14.9139674399728,14.9719128289188,15.2055159555579,15.0513598372002,14.9908073682328,15.4666744502566,14.9900264290538,15.0837760977557,15.6311189333033,15.628454206706,15.4606322522808,15.5372610639697,15.7520680042754,15.8015071822594,15.6249595061467,15.9684185695777,15.9956587573385 +"O17452",19.8887694285873,19.7341086828155,19.6437090646471,19.9548710403145,19.8560490430884,19.896055582638,19.9452017197136,19.6675973834609,19.8844943952845,20.0946561094813,19.8156217501547,19.9771077191822,19.455497197047,19.8615994688366,19.8952865593546,19.8586921474055,20.2627113141929,19.9010343214428 +"O18332",20.5716095123791,20.5092039358828,20.5406306283426,20.6087292483884,20.5017981706602,20.5563671021329,20.5459411903042,20.5302591859793,20.4932011526864,20.6274487979744,20.5074902537325,20.6890746777213,20.6654520290573,20.7156439788819,20.8051645517902,20.832591009365,21.0873762623316,20.767333674795 +"O18333",17.2683032635168,17.4630071390233,17.4725197362236,17.2714146540817,17.2964019605966,17.3616543517541,17.276772031529,17.3091157725791,17.2861942288682,17.5909813433092,17.7114594018758,17.4731728045399,17.8415126404073,17.5124501719449,17.7149558405389,17.6329457933471,17.5894952801714,17.5734327642663 +"O18335",21.6591109851999,21.678133175787,21.5935946985878,21.7499147222626,21.7101176187254,21.7727890953192,21.5666211984271,21.5949574479173,21.5009401091403,21.6186560942983,21.6435291290397,21.7891407683563,21.6321981452517,21.5840495912461,21.5147242175817,21.6554428483084,21.6711570310326,21.7107551047628 +"O18373",19.5341991316528,19.5118307356749,19.5658374872904,19.5088002475633,19.658817596854,19.6880240109784,19.5966705061007,19.6648165365338,19.5716795876273,19.6328466219137,19.6324204245429,19.7167578571951,19.5110528446719,19.5215469190442,19.4897771905508,19.7968945751396,19.5910317143921,19.5483877934 +"O18404",23.1157394700849,22.9259841836497,23.0174234012043,23.0567876650545,23.0884670692481,23.1189089601146,23.0136425738076,22.953558765056,22.8964046886983,23.0438851886305,23.0064790104977,23.0258716943956,22.9705696707933,23.1416057720784,23.0236584914421,22.802247064766,22.8867768326071,22.920604397282 +"O18413",19.248160445081,19.1660730303924,19.1988845966345,19.2874659169417,19.2287294501718,19.3194480839218,19.463021836644,19.5256798314221,19.4012694558056,19.5564426870594,19.4897711320606,19.5660768796155,19.4709376953738,19.4953620960753,19.4561942176197,19.5026229258161,19.6230359667938,19.586778273319 +"O44226",20.1102012456487,20.1876210934716,20.2261480900186,20.2780598203715,20.2465517357308,20.2401255115084,20.0949522905674,20.156463935332,20.1521375630744,20.245455498671,20.2286719905958,20.2220176101655,20.180276495227,20.0905804967503,20.035558404811,20.2043175467458,20.203373645351,20.2372757176536 +"O44386",16.8339278427929,16.8598330077781,16.7111875979603,16.7726192960735,16.8892635062048,16.7879846549385,16.8495533037235,16.8109662612899,16.9381220796244,16.9045301199714,16.9409448997351,17.091536991479,16.8998946022992,16.8408011207516,16.7784225636236,17.021344635475,16.940061004576,16.9746159127099 +"O44434",15.717734809747,15.7638934313824,15.842204244068,16.0331476151044,16.1368162374954,16.00498130607,15.6549794331882,15.7477709190622,15.7445869995871,16.021299088193,15.8834930053542,15.9347647450484,15.5514223739662,15.7841907413455,15.8388309028372,16.1565067220233,15.8189257075824,15.7697218446113 +"O46067",19.8220452194007,19.8757909892631,19.8819187941887,19.7790133063442,19.7961585736001,19.7595908327735,19.8440879806698,19.8430325568128,19.7832846450796,19.6163034833177,19.5678222221696,19.6498895798393,19.7664398668299,19.8099941967035,19.7552874063623,19.5635598364266,19.4986511544398,19.5614784347453 +"O46098",18.0622588476562,18.0779974319954,18.2877399548855,18.0335845551421,18.0993950331432,18.1209458243514,17.9351800368503,17.9595457772149,17.8506209544532,18.0220849856712,17.9613987605917,18.098827461073,17.8940128333773,17.9987677871999,17.7876898527576,18.0921004210015,17.9421168895535,17.8933976321779 +"O46106",17.096451107443,16.9092967489066,17.0835588570591,17.2243733001908,17.0443205247283,17.1451771073333,16.9550336699688,16.9716367114339,17.0117040432411,16.9551802739634,16.8887561380176,16.9191375994634,17.0004227681886,17.09020478619,16.8860874469162,16.738377317579,17.0656235280571,16.9241733833204 +"O61443",16.4383486541588,16.351838393015,16.3479659925818,16.0356742411534,16.4515335148954,16.4999956754341,16.9387929831322,16.7792318353291,16.6690364443625,16.565813226804,16.4033647864504,16.5919003121598,16.7203222588252,16.7698924605566,16.5609465199516,16.5362022280625,16.4792926018895,16.5653086476462 +"O61444",16.2326486130807,16.4835857472709,16.4269612291533,16.8571854410792,16.5878083516675,16.3029063874164,16.4159663862555,16.4172316648583,16.4941997324809,16.535181813258,16.5352391262484,16.8086328019673,16.3477560510417,16.2853963970809,16.3207588045883,16.3664123250851,16.4458893426742,16.4016916741941 +"O61491",20.899228072991,20.9039516186017,20.9433670667279,20.8745211605637,20.8470439110925,20.8146091941884,21.0074561238717,20.945357392766,20.9516629906107,20.8604617434891,20.7735879159819,20.9072151161894,21.0855675969662,21.0957940873961,21.0108963299341,20.9296971440876,21.0911969161311,21.0291811443189 +"O61604",20.807276609489,20.7784419847588,20.8402367906322,20.9996062331293,20.91539154912,20.9436946678718,20.9542686459112,20.9923851443548,20.9500109687171,20.8882733820523,20.886610744286,20.9493052672207,20.9398359388855,21.0197052762624,20.9689071560006,21.0195422377709,21.0162683484563,20.9566481967958 +"O61722",18.9956006955935,19.2178484090131,19.0163595281491,19.0199840534183,18.8493296459401,18.9423723431167,19.0306219383309,19.1259751049928,18.87769359478,18.7879907753484,18.7248062136466,18.9689004144047,18.9686864949723,18.9726552053292,19.0537931406128,18.8369399858721,18.7492093646136,18.7807049224722 +"O62530",15.8617947658486,15.9608167268222,15.9873795450536,15.6091184602038,15.5854605368856,15.5787647408887,15.6643748501513,15.8236659185018,15.48211815018,15.6098845935228,15.6428493831208,15.826443582493,15.7004652737812,15.6880848316934,15.7240427168702,15.6368291128455,15.3815896593294,15.4837183208678 +"O62602",14.6780578584279,14.3660514278023,14.6759384188081,14.2069764431737,14.4216411877737,14.4755239274917,14.4413433186306,14.5703912394097,14.5752101290311,14.5057449715617,14.7076581429243,14.3824697329865,14.8346972649164,14.753460836998,15.001110696334,14.870355631353,14.7179726531555,14.4269225834121 +"O62619",22.3133355131865,22.0941721857324,22.2189781529452,22.0404182067496,21.9894206046569,21.9847371616724,22.2267445540045,22.2952512644079,22.2071998420274,22.0696241983111,21.972035240273,21.9866291992901,22.3973641926887,22.6020280908482,22.5661943239661,22.2811598068149,22.3757390858368,22.364907791854 +"O62621",12.9254913863401,13.2347735180134,13.2777326710342,13.0262776573834,12.9997405036108,13.2915377942132,13.2220190770999,13.0132879097185,13.1913913408366,13.0678055927648,13.3634439890454,12.6996782720555,13.4959286760417,13.3372945080448,13.3327159006731,13.0509492800157,12.8399312412125,12.9954156908328 +"O76454",18.2884800162038,18.1179894949434,18.223725765124,17.6936367554286,17.8401453689605,18.0020097547099,17.9432325853764,18.0131178388435,18.0150843745201,17.9346037611497,18.1146915538818,17.9422692317042,18.2387182806812,18.0606563757094,17.9024112180769,17.8227581342064,17.7748289007076,17.835929188911 +"O76521",15.9577920555163,16.0232602690146,15.7771950346755,16.2925299608082,16.0283633864673,16.0842439703949,16.0661722710314,16.1682972150263,16.108022577397,15.9412806855225,16.0531357151503,16.2076752818875,16.0876759004102,16.1574408833217,16.1292255288031,16.1735761580986,16.0885295624071,16.2126646382292 +"O76742",17.9999964209543,17.7845727859207,17.8298994038755,17.7103891271313,17.8027795774849,17.9168871205524,17.947239512801,17.9973855894559,17.8952931518978,18.015478942704,17.9453685277126,18.0708065885216,17.9915962625103,18.2549091413921,18.1520831526082,18.417387378503,18.2970720226377,18.2171182271484 +"O76752",17.9462862088332,18.0058456991142,18.1057262523356,17.7129566910489,17.8161983294142,17.7591006559208,17.9973423791172,17.90553115054,17.9944114754821,17.7038509107459,17.6718377972136,17.5868556322103,17.961053470215,18.0048939323732,18.0065240388855,17.9912142465182,17.9083969978233,17.8600858516441 +"O76877",17.394647037092,17.6487816200734,17.4750069822628,17.2348936671929,17.3020821491406,17.4650707381739,17.2835076871019,17.3257106447256,17.2572229897538,17.2171072658894,17.3526772452208,17.4843141424704,17.4958795935977,17.2232065740533,17.2839864827337,17.4875245895107,17.2611016071708,17.1479585049899 +"O76902",17.2066401177682,17.2990560564169,17.2725181330424,17.1503353856697,17.0590799062111,17.026733406282,17.1544832597194,17.3196438578004,17.0721272845721,17.1672322132595,17.0014054395349,17.1587537255654,17.41503277743,17.4446494182567,17.575659189576,17.6358826859492,17.605771761576,17.623814700758 +"O77134",21.7107319615683,21.870456555823,21.8501134886989,21.8224066839216,21.8099232633272,21.7303902781279,21.6586920284828,21.5794024504611,21.7024519622471,21.4790109211147,21.6254559316018,21.7375808231054,21.6179412289697,21.6305788289422,21.5507891102166,21.8156227895023,21.588588583404,21.5330799511635 +"O77263",15.7125988570512,15.5401615392311,15.5506735007073,15.5945811140601,15.7289473346466,15.7178611892118,15.5377856252499,15.4595998933756,15.399175772592,15.3821289823162,15.6239983563369,15.6225765478435,15.5352066424531,15.4146067095178,15.359857005595,15.3669137741592,15.3619011621817,15.4790709793402 +"O77410",14.4270097325051,14.303073379289,14.2875715859243,13.7941353095737,13.9430208207111,13.8944807838051,14.63267282239,14.4854859248462,14.480139099951,14.0380806401882,14.1945264856374,14.3246528913787,14.9712167947806,14.8228906270394,14.6764320250514,14.2264644942805,14.340582556195,14.4263034076075 +"O77430",19.5445249112621,19.5545626653389,19.5672424004222,19.5113012055242,19.4627899232781,19.5970711346721,19.5139934423837,19.4861562332613,19.605340701288,19.5560579371142,19.5556692963603,19.4931597297081,19.5267131436304,19.5280464994788,19.5130781818946,19.6060933936033,19.6714594158006,19.4827918855329 +"O77477",16.5171983893526,16.8753782496998,16.5901412251965,16.6416772297099,16.6085154452223,16.6255287022506,16.8663522472197,16.8772453543173,17.000759370537,16.9545770278632,16.7858166015394,16.8746752967281,16.9625489262333,16.9805860824266,16.9187902488854,17.1437635079844,16.9585755951577,17.0762224847655 +"O96299",15.6469632244754,15.6173930084184,15.2253192433419,15.7611420452143,15.5994246771244,15.3580634796423,15.6304777187451,15.6621257088952,15.6430036611575,15.5780037741815,15.8232537548283,15.9661603243305,15.8314646862243,15.6997038403677,16.0313250904619,15.7083820155819,15.7545324747885,15.9325616654885 +"O96824",16.8463613624589,17.1521072667441,16.892801338558,16.7135073612672,16.5997833042978,16.8314588866822,16.8273311744328,16.8304609307083,16.7378573399477,16.5806508507795,16.5973477544195,16.6699782553458,16.6966220626377,16.7610829277566,16.5600412972179,16.6197168455793,16.343407473229,16.5920525394038 +"O97062",18.5061906748519,18.6173703064037,18.7073192375941,18.6110212023499,18.4598544662191,18.496089811395,18.4845581063039,18.4756297732735,18.6165197542455,18.3747971873421,18.4621926781607,18.3019466650358,18.5484545729424,18.3901342107604,18.3723136314181,18.2911249054852,18.4109652144579,18.3219575495867 +"O97064",16.4990048921641,16.4202482130825,16.6702941199864,16.3574081390998,16.4404459558256,16.3882274554282,16.5847542335835,16.370031740024,16.5938384187376,16.3993093308142,16.6117430070667,16.5100115244375,16.6743636891415,16.5831103197892,16.4015162342674,16.587047260339,16.6763083093541,16.5379997922849 +"O97102",21.073288974658,20.9837471802483,21.1519850818995,21.0149732225672,20.9405507807705,21.0054082722841,20.8699160913753,20.9300696853933,20.9985576358441,21.0349759965103,20.9807918771625,20.8938811308632,20.9899599569022,21.0061729396487,21.0480805910651,21.3148427820458,21.4566245608354,21.2000443121028 +"O97111",14.6095078937238,14.8802205835748,14.5214670535743,14.5345725081879,14.8332513383541,15.0927127138361,14.7377199526788,14.6700963079119,14.563961969547,14.6546924726534,14.7368535290617,15.3149839623369,15.1344543666118,14.4876688413278,14.383198019438,14.6960189766593,14.7588755702847,14.4906424517825 +"O97125",18.0818704826875,18.0703356238364,18.2008972848283,18.2305794677135,18.1657541707935,18.0689566075784,18.6475200125375,18.5113566234686,18.6407197158625,18.7264851194658,18.807413008101,18.7121359103039,18.8203044131037,18.7086360226855,18.8642601524655,18.7124632986986,18.9557273453217,18.7322531231681 +"O97365",17.8368586233808,18.118321524229,18.0186356401508,17.9435124395171,17.9957489823066,17.9654090005255,18.0848461363811,17.9322961322055,18.035103910845,18.1507824297471,18.1037507553119,18.1387381124849,17.9206906180344,17.7955945701157,17.8665815887956,18.0666028375233,18.0575811204151,17.9788248317821 +"O97418",21.0056884587421,21.1035261297251,21.012692992206,21.0969587526734,21.1134755345247,21.1023406691719,20.9424677775028,20.8265864431037,20.9095856881539,20.9362345905898,21.0640038434694,21.0976225757992,21.058834706358,20.9048402702601,20.9619520005551,21.0035748708637,21.0313269356469,20.9595652308437 +"O97422",15.5002398464407,15.3773500463002,15.5494953312554,15.5155384982986,15.0590649877083,15.278679839598,15.4315597742866,15.5082212268047,15.4181475670914,15.6558217500841,15.0762570672706,15.314313177189,14.8962072621403,15.9910266392135,15.4147784031723,15.4188087757176,15.4062559396705,15.4427615886617 +"O97454",14.4552187643556,13.8589263846523,13.8781929113349,14.3962028475443,14.013607890666,14.0266264280573,14.1254226262916,14.1641286661925,13.9054194754465,14.2094542315891,14.126864594958,14.4096864745263,13.7830958678044,14.0744968140445,13.874314937014,13.331767491771,14.0631374788429,14.2069216029772 +"O97477",20.8617401290235,20.7034229364682,20.7816711949046,20.9293419405766,20.899031918257,20.8613141854072,21.0656074600279,21.017707163161,20.9959081086798,20.9771088329152,20.9641032994014,20.9845315175572,20.9673553877068,21.0965437515986,21.0430320402065,20.8877762548866,21.0081209362504,21.0224729583814 +"O97479",17.6440957537644,17.4292518200614,17.6561734218265,18.0855740412253,18.1201872248718,17.9896139907643,17.7369589773166,17.5196896459619,17.6587618003378,18.1209015811427,18.0294417874922,17.9427334538847,17.9514427561908,18.2044542391019,18.1195752670959,17.8788196544415,18.1147680465922,18.0509348301723 +"P00334",25.2018064478758,25.1965507211051,25.1898235123683,25.4066955653106,25.2938375773838,25.3594688127091,25.068836181144,25.1020867144168,24.9573084420903,25.1515103494238,25.2578372047441,25.2797464298,25.1682511535923,25.2711020670152,25.2422200533956,25.1706016720322,25.0462870847137,25.1391341190155 +"P00408",21.2910240321688,21.337733899207,21.3355394272777,21.3039101497205,21.2782992958267,21.3694566683154,21.2814466245366,21.3309773571564,21.1827927672619,21.2542994579909,21.1722308250984,21.2076732073595,21.4958367958042,21.5779877711336,21.5605614215189,21.4841226589189,21.4134105707178,21.4546162274065 +"P02283",21.636083822153,21.712236172126,21.5688041361586,21.4569627688144,21.658208283151,21.5661734763884,21.5592053992345,21.5010590336766,21.4583727519328,21.6446253159897,21.669219399113,21.7833438420378,21.7011392553598,21.4996809932325,21.62813871145,21.4267007629835,21.3843134432358,21.4198844065674 +"P02299",21.9976581532437,22.0148412249289,21.9414054632565,22.0028168513349,22.0523932506443,22.0004518616649,22.097740377253,22.0960324221881,22.119997497142,21.9793333644217,22.0264676707121,22.1890611235327,22.109718840862,21.9887514288267,22.0907598192494,21.9956502350452,22.0044318248605,21.8412420573151 +"P02515",18.5248634357367,18.4912285837103,18.7325741431675,17.5372997576852,17.5259642813668,17.3795678381377,18.2183724759661,18.2515016971774,18.2736380222661,17.7356947933728,17.8559613955609,17.8003601654366,18.6422144710805,18.7572567969069,18.7231509551055,17.5377523498801,17.3142845289991,17.286906159608 +"P02572",26.5693005352707,26.6336348053561,26.6809025422784,26.6631415014937,26.5862837016621,26.5310984598366,26.6817544477901,26.6568989809173,26.7146510107343,26.3804679423141,26.4599183510804,26.5150416454362,26.5769025734418,26.6292861466935,26.5176990779664,26.577798699718,26.4833437143191,26.4899729637766 +"P04359",19.0791663650578,18.8681966892529,18.9832445702822,18.646064368192,18.6518119851981,18.7653232326585,18.8828728300053,18.8976853669343,18.8647964126605,18.961786559079,18.717889097743,18.8910952889192,18.6291600696079,19.1265198729339,18.8259302354308,18.7309160468036,18.6678632266834,18.5995764987943 +"P04388",16.5188935512831,16.4627010814857,16.6970367267793,16.6564672480985,16.2968209477476,16.61381437499,16.6684933010717,16.5583010975914,16.5814240213287,16.6508275743771,16.8335233696655,16.3994268824913,16.2028187590002,16.596110813067,16.6196354507935,16.5252856865331,16.4753288108066,16.3114486639809 +"P05031",13.7627222368029,13.0353362710005,13.2115659526712,13.0010175278512,13.3462398646539,13.3014051091163,13.2996009976313,13.3270722800243,12.9858835958068,13.5464250828394,13.2349239344108,13.2649725816466,13.4646612342381,14.026604401311,14.2475469733197,13.7857300673366,13.8899803952989,13.8487829341389 +"P05205",17.9292963547721,18.0834230320429,18.1480082833125,18.3179543665373,18.2559479887765,18.3238336960216,18.0087303933349,17.990631357202,18.0270661132584,18.1120982668814,18.261238814735,18.2237917583693,17.9728875020838,17.7324359242031,17.8839770331901,18.2281851306538,18.2454748973039,17.9624751301115 +"P05389",20.6475394742399,20.5544390126852,20.6879994450983,20.3529093394013,20.4742299291817,20.5045338550489,20.6533667350068,20.5748086116114,20.667929984574,20.5010393450268,20.5060224909657,20.5021392156804,20.6178633287318,20.6551722926453,20.508595771853,20.5300235557278,20.5380694410451,20.4315435058797 +"P05812",15.4248964305688,15.6885264219792,15.726987565959,15.9764209686556,15.9748026582165,15.9814285665768,15.6920843088923,15.6415375490206,15.6244549342815,15.9392498761355,15.8397387586188,15.8174243552774,15.6631502749634,15.7400848957393,15.7235336749546,16.1067614028104,15.9178729784516,15.9287341649767 +"P06002",17.1268028210667,17.1324544671417,17.2403436319337,16.5686315912144,16.6830782864214,16.6172103832668,16.4353287163146,16.4744053280923,16.2861068949097,16.6076060964018,16.5058396741401,16.7040663569534,17.5958675466097,17.5927880447161,17.554571234507,17.6554272102588,17.6010981813545,17.5873654802955 +"P07486",22.1424859662597,22.2169315340346,22.2237674173352,22.2056820312896,22.0930533809369,21.959656970024,22.1532688705672,22.068001137594,22.2016699853115,21.9018534197934,21.8731317320872,21.9523083508661,22.3853988427732,22.380817175893,22.3986683382562,22.1915217349516,22.348275905089,22.2441398038416 +"P07668",14.9941203205918,14.9637380377359,15.1945692948252,14.4845857267432,14.7269983946691,14.7530059711136,14.5836532568259,14.5650602160723,14.3445893460801,14.4269221311935,14.8370154510541,14.4488846060566,14.2109477283204,14.7125428980653,14.8199922929668,15.3615234477785,14.2563976138564,14.5007111004108 +"P08120",18.2312286300379,18.0707063107231,18.4663010071719,18.3521715607587,18.1478493481557,17.9764751246642,18.3284683472834,18.3486641255237,18.3972757083334,18.1476496229723,18.106133537195,17.9910653182069,18.0434472447048,18.4711734698834,18.4055369550691,18.2179790654351,18.1764176797114,18.0842903577469 +"P08182",19.7213091286653,19.6420923522527,19.8041811136252,19.8714387726505,19.8193740641786,19.8233919360019,19.6242532458523,19.5548791110444,19.6542479909766,19.6008559700385,19.6258641670518,19.5802447028085,19.4768131922318,19.6222078116471,19.5438831986585,19.6746268125473,19.7048796158112,19.563348179915 +"P08646",18.9073291252173,18.611314931586,18.798596363407,18.8301908498683,18.8271401150581,18.9319070493105,19.0020467287693,19.0296431536318,18.8381545627971,19.0418910066071,18.8859400763404,18.8672152785255,18.5844365523137,18.9870796452298,18.9103821337909,19.1191326151118,19.1439089560413,19.1387714900563 +"P08736",24.4889009028812,24.387610238967,24.4333656006009,24.3079414981092,24.2737846017377,24.3364715704255,24.4732617877668,24.415392836093,24.3012899165165,24.2438677470924,24.3107931252199,24.467241174725,24.3865079018059,24.378293274482,24.2802503454389,24.2873861591433,24.4219919202992,24.369247389092 +"P08928",22.6936051802699,22.6547070981473,22.7349380009633,22.8683550166096,22.7745616147377,22.8197480846643,22.7271698406861,22.6901711326218,22.7050182686541,22.6950736807735,22.7628530325205,22.7922008438135,22.7124917520129,22.6595159314961,22.6214902210284,22.6451621278237,22.8000487886524,22.6684621790522 +"P08985",20.7108300102652,20.8913236684186,20.6934613548241,20.8057745356253,20.7166565193483,20.6170734161948,20.6053579371389,20.6227767803837,20.5948422723227,20.5070872913215,20.6023983151118,20.708897288957,20.7096498745451,20.6357926382362,20.70683416312,20.5520319045872,20.4217836319847,20.5696230580646 +"P09040",16.7486355076544,16.679434632404,16.5591148675348,17.1439150937378,16.5998722504876,16.7976604074553,16.027489022548,16.299694549195,16.2610279989075,16.1655993320096,16.4598478405587,16.5972177585512,15.9837353608253,16.4528851866255,16.3038502962271,16.9895006856293,16.5671405431336,16.5400036737285 +"P09180",20.5749190970902,20.5609295404354,20.5259198784885,20.3948042858249,20.431163577873,20.4139130622994,20.9188567599223,20.9403702065009,20.8870321947829,20.745615208526,20.7418508874718,20.8368129182758,20.7780234230496,20.8401175724689,20.8680722809105,20.6286321804182,20.5264191700811,20.5091006200741 +"P09208",12.5097146422029,13.4534630797114,12.9717719198143,12.6239111406846,12.6710567920286,12.546998164389,13.0199223532627,13.1834389413224,12.6440562822137,13.1706356437628,13.7565464592879,12.9376528451157,12.5749424526638,11.4539902798085,12.8815653237465,13.0819146395621,12.4625453199801,12.9989963368598 +"P0DKM0",16.7941881554097,17.0558638541872,16.7816903031536,17.1340267702039,17.1126180056503,16.8855305971666,17.0065733215491,16.906253130888,16.9545062700865,16.980085470656,17.0238918017922,17.1781567306762,16.9404278061471,16.8042243378453,17.0514584586735,17.129585697856,17.0820360914589,17.1335448620656 +"P10676",20.4187612102406,20.4345452853407,20.6132535743709,19.9647866109478,19.9866148550428,20.0256882155478,19.6225778300473,19.5373687526968,19.5355045803377,19.6383860422576,19.6091136076151,19.5676149041879,19.2777000780908,19.2929057899815,19.2378641445259,19.0859531294679,19.1476166103751,19.0282394820818 +"P11046",20.9807125242727,20.8673093785911,20.9163477071392,21.0878383149022,20.8932988130277,20.8997642647358,21.004153464795,21.0938599512813,21.1069355713446,21.0488861798803,20.8612931027777,20.9365195059407,20.864108344905,21.2113379774143,21.1259180253246,21.1387173316377,21.1973169373008,21.1389310859078 +"P12080",18.7909109410579,18.878697625259,18.8540543609913,18.9450744529906,18.9278563052537,18.8036767910937,19.1801281274927,19.1692128974826,19.2213935780029,19.1269519666317,19.0885521653765,19.1276092990066,19.0565843505717,19.1412994191523,19.1768608811567,19.2728886075926,19.166920033813,19.1889435360858 +"P12370",20.8394760216193,20.5650501817322,20.4383641161352,20.4788647891634,20.615767614891,20.6823707885997,20.9708283101409,20.8645652352601,20.7948843444074,20.6876738145567,20.9478376458116,20.9133134313281,20.9717808496132,20.7617750375323,21.0334866729297,20.8017402078088,20.9953682776752,20.8879446395023 +"P13060",20.3001362421129,20.2091974681515,20.3541394577832,19.9232388437123,19.8592596072403,19.8454668412512,20.3727806511289,20.3890741121131,20.3356437917336,20.1605929527661,20.0972967495401,20.1279902871189,20.3705299367148,20.5409804670656,20.5068052139552,20.194702609022,20.2261728313464,20.1519356436149 +"P13496",18.2715348676113,18.2997156345874,18.2909649903908,18.2987568847502,18.3597514745047,18.2895135343321,18.3361788516277,18.2803212436216,18.186960753989,18.1813984185637,18.1642469549466,18.3039236498333,18.2896664709785,18.355251566242,18.3507749766366,18.2086550596929,18.1269036793219,18.1640526480424 +"P13677",17.6377799945183,17.5282332064641,17.4459773454541,17.0020694910615,16.7774210899123,17.0463160645874,16.8744709750394,16.7765569799149,16.7885462666682,16.8845659902697,16.8029889467137,16.7471706881762,17.061407265528,17.1979869004641,17.3245321647814,16.651918413513,17.0290250064606,16.7596696002627 +"P14199",18.5497262129944,18.6079039033942,18.699283394734,18.6576495062429,18.474944161808,18.5357650096836,18.5428960537323,18.5018210289819,18.6628625372225,18.2888668631444,18.4254557525078,18.4461369594427,18.5997007731089,18.6374795931248,18.5088536087011,18.5612293824863,18.5524643518924,18.3471672819252 +"P14318",22.5253398792899,22.4926386062708,22.5977528283815,22.0794794925751,22.0269142411291,22.0924061072695,22.2104793965143,22.183178848651,22.2398807622787,21.8729215435448,21.9133388000517,21.8711634579285,21.9041020120014,22.0053214236763,21.9057218418627,21.9272411211872,21.8981715253336,21.8126384473918 +"P14484",19.0194980299694,19.1278282180374,19.0778722287883,19.209245384279,19.2452567528926,19.2248747449259,19.2679905882752,19.0882474566609,19.2719803723694,19.3766915318353,19.6773542980793,19.4886537140153,19.300773541526,19.0445110331862,19.2723231980548,19.3865826097013,19.3775839267298,19.2250774274324 +"P15425",17.0537484657717,17.044150104635,17.161504278273,16.9645998848598,16.7486404457547,16.8683858315784,17.0440648489948,17.0738155205688,17.0233066955202,17.0420072210936,17.0036547921159,16.9107598555199,17.0893554243176,17.3177575036523,17.3041921458898,17.1791315315241,17.1848890098349,17.1047585697802 +"P16378",20.4000091492853,20.4855342087627,20.4227385318126,20.4015122546273,20.2540085908838,20.2703437729372,20.4208053659594,20.3768852916753,20.3888397641927,20.3430447143348,20.3871696720932,20.358894255866,20.7058118566411,20.7110014755576,20.813703987975,20.4094166227022,20.4660007245775,20.4260796507667 +"P16620",17.0056319595837,17.1144790567505,17.2103532359082,17.4293061830536,17.3202991760226,17.3970074487429,17.1645647723863,17.2395628810677,17.2864466337948,17.6766603657537,17.3779634834719,17.3849322786846,17.0396144825156,17.2803278862471,17.3003306619197,17.6945212209942,17.6776665007274,17.4312287252369 +"P17210",20.8897934190326,20.9092246556762,20.9891308343742,20.9515060804892,20.9346961418434,20.9715195262704,20.8486710015462,20.8555102622308,20.8545524767388,20.7716322328641,20.7183735057242,20.7192276775707,20.7647685639109,20.8271648972394,20.8417994165975,20.7714360148777,20.7528378500068,20.6215773811692 +"P17336",20.3705871672743,20.4617910984246,20.5010199279404,20.4920390620918,20.4081008804534,20.2445324427274,21.0098641489036,21.0510577453814,21.1000464896835,20.896903594616,20.9125039848901,20.8935019901323,20.920696733604,20.8608990820753,20.9534933218122,20.6204884525183,20.6162263677833,20.6179849867123 +"P17704",20.4672517561306,20.2929997975487,20.3854843456678,20.2458420711395,20.1601089059314,20.2144791807853,20.4330178217367,20.4978418812872,20.4186777829488,20.2462614718559,20.2668125249928,20.1807978295357,20.3887921260534,20.4776209279152,20.4267829358287,20.1353973938578,20.2211786030986,20.2903405660075 +"P18053",21.0474687889881,20.9908816177542,21.0029322091795,21.0996496909647,21.0534450875817,21.1092928309965,21.0987282551851,21.1198566142734,21.0059083662986,21.0915414541037,21.150664478977,21.3139782207798,21.0105948697488,21.0750163965232,20.9698085425749,21.0053767401982,20.963495604079,20.9514396293593 +"P18432",24.0579061826078,23.9652423785403,24.1806628235764,23.7956757346169,23.6716506561459,23.6920982292035,23.8301421863255,23.8144437698187,23.947954114236,23.2163815418611,23.3284996238435,23.2297897540703,23.6392161573867,23.8046885407224,23.642235525408,23.3650899989023,23.3198868326294,23.2116713552061 +"P19107",24.1574815595059,24.0471567143241,24.0893489243025,24.0012467733637,24.0086685025833,24.0246341497,23.9983133341641,23.9606179651501,23.8767884511801,24.000573006011,23.9425408880341,23.9895310087039,24.0607381978893,24.2598145062242,24.2741467639689,24.2097079937221,24.2092622883403,24.1736115668007 +"P19334",15.9012644350121,16.1034072936239,15.9193765519246,15.5486702200453,15.4813429891259,15.7457942654989,14.7908373579437,14.5672950598649,15.0128769864776,15.1378001914537,15.2762682317872,15.3271212918931,15.1172604650089,14.8622119967158,14.7331251635881,14.6338731209599,14.8391802193059,14.3914115310414 +"P20007",15.5282236949613,15.4481155189274,15.6949437888222,14.5358917118873,14.4129036123375,14.138708593268,15.8590752462546,16.0553415517123,16.1671678055492,14.6092435613059,14.5552471969195,14.5403788037828,15.2255795990073,15.3424217860963,15.296935602089,14.4217386281872,14.3657227756106,14.3416178480924 +"P20240",16.8930656570466,17.2408289661434,17.3137686936655,17.4527370980413,17.4921924027053,17.4380304853441,17.4821974879093,17.2817157831575,17.4389571379012,17.5120526709158,17.4778126651497,17.4728894770613,17.2735534367655,17.1528415869415,17.2961609361169,17.5399181222427,17.5081330688238,17.1937177428323 +"P20348",17.6976614710132,17.5601458714097,17.7819198076093,17.7637186368401,17.3040411718403,17.5336410246692,17.4541880305678,17.2943150401071,17.4113731416196,17.2595250392156,17.4695125192575,17.4025247683581,17.1629831829236,17.3863961466806,17.2301832104209,17.1346578591462,17.4583234704114,17.1130922670294 +"P20351",13.6846126070943,13.7324371530954,13.6591815809115,14.3550900328338,14.1633849321669,14.1599828687002,13.796527867213,14.0514661977532,13.7483480684577,14.2097820368201,13.8896041001351,14.3123213527304,13.580060797301,14.1508727692012,13.7781229006968,14.2491104969627,13.8874186858733,14.2172270667284 +"P20432",23.7125015642814,23.7314915383513,23.6317084164933,23.6476219997265,23.5457387168578,23.6026800024828,23.558796544839,23.61460760481,23.4509022303201,23.493176003881,23.5464250992491,23.7165820718016,23.5589706800567,23.4545096685341,23.5848863526633,23.4017014071648,23.4799955721471,23.3860091261883 +"P21187",18.4104197550582,18.5649019661727,18.6601882432446,18.5176122671006,18.6321871078976,18.544061976984,19.1661902208094,19.1404453464078,19.1465009986436,19.2035791230435,19.0851712877418,19.0727159614193,19.1171500537437,19.1362433104007,19.1070277911614,19.3179748304901,19.173977231625,19.2024312787928 +"P21914",22.9902351409591,23.1090422823095,22.9651230914647,22.9984504399657,22.9770604498935,22.925194681894,22.9056176186779,22.8504297894979,22.8650681927903,22.7602996154944,22.8017534143238,22.9131425582377,22.9503164212871,22.8309381774981,22.9573862912468,22.8573768952106,22.8930720180719,22.8363813159613 +"P22465",22.9475475043964,22.8407251907143,22.9724163595511,22.6691933990758,22.6484169829311,22.6896526532604,22.6948889291186,22.7401531904794,22.6729687807967,22.5554639147277,22.5564425299418,22.4973550910903,22.5742386585115,22.7416343981048,22.6858215074958,22.7275563887989,22.6415165024575,22.6506744024347 +"P22769",20.1268323101358,20.114429526576,20.1412051757319,20.2506089857925,20.0680831173316,20.1813465443258,20.0972716371147,20.1008442320426,20.0285998873088,20.2871768859667,20.1327871887484,20.2457016013732,19.8411856262793,20.1855236256493,20.0307059639867,20.207044829455,20.2084525843963,20.1825611020176 +"P22812",10.9946355125758,12.0431239674225,10.9422667134399,11.6117283729851,11.2900661048977,11.1750824051861,11.1972879823815,11.5353284167413,11.8438944220139,11.5459460688906,11.9576681411703,12.3314257977119,11.9570704651671,10.8561656817927,11.475996426905,11.8424365311783,11.4667526211539,11.3804391679216 +"P22979",18.9734927548096,18.8058660565549,19.0547458427612,19.4786590087667,19.3212693044074,19.3596590515235,19.5381285536241,19.4635929599277,19.5102560025432,19.7546618088704,19.7670643609664,19.7539007969249,19.4502417694148,19.5377801801638,19.3204640241918,19.5471271460528,19.8467381795183,19.7432853235939 +"P23128",14.8842041644174,14.4571409869018,14.5701507792554,14.2819166852228,14.4301968279415,14.5776048456882,14.914656749659,14.7487006490749,14.518910390104,14.6774327316688,14.6350291739325,14.7807276202424,15.0307687607779,14.5567693084596,15.0127726982942,14.195277251035,15.1564193964707,14.5240900091967 +"P23625",22.2877473578392,22.2326121054402,22.1664676768799,22.2065941978049,22.1694520558085,22.1985941525302,22.2345229424152,22.1728089149685,22.1484222292857,22.0816332669324,22.1289850246047,22.2730325286832,22.3044015389013,22.3151279390429,22.3176724360135,22.1492290041346,22.2451422681628,22.1599392846351 +"P23779",21.1837515189124,21.1500934276985,21.2697849843254,21.2544346516358,21.2670072976882,21.1916931402076,20.7827604486681,20.8554011386234,20.9200962132515,20.8144993829762,20.873141468728,20.9227377635968,20.7201934392651,20.7575407976614,20.5896013330189,20.9032771016558,20.755732412714,20.7650031087133 +"P25007",23.9210239696295,23.8770456066368,23.8630588200745,23.9709878727665,23.8748615697017,23.9001135004297,23.7907525579222,23.7610092619846,23.7388003168794,23.8221240806189,23.8538373862502,23.9744009415202,23.8025445588003,23.7675343424447,23.8309984105242,23.734784022881,23.9079288956004,23.7348450731903 +"P25171",16.6946986856772,16.7787266432402,16.6594120969328,16.7688723144188,16.847150154967,17.1366122168405,16.9550127713254,16.8952205727337,16.5761362711231,16.8009674662554,16.7394100805887,16.9100207551768,16.4501486796502,16.6524523080686,16.5023564079835,16.9095322024074,16.6662723601362,16.7946943716777 +"P25455",15.7039431158046,15.7862932723675,15.7513165475408,15.7050851566852,15.7651684817977,15.8163186886631,15.78349394703,15.6321557529109,15.7042309207677,15.9491790110195,15.6794368894004,15.8136159931029,15.9685925853929,16.2141681763142,16.0338203744076,15.7673405985715,15.8004118417129,15.7583318900216 +"P28668",15.5358838388798,15.3500063641447,15.3686444366313,15.1106932578826,15.4311906025686,15.282987291444,15.7729214237158,15.6083262064728,15.7004561113598,15.7520365357769,15.6067802047859,15.8478314664781,15.3910231946112,15.4212895950594,15.4518752584351,15.6503491381601,15.7953144159951,15.5611128246782 +"P29327",19.4701535894727,19.3109732766764,19.2806933139656,19.2590694923393,19.2977112967727,19.4215467279133,19.765039439253,19.7869008087137,19.6453874210085,19.5507530885517,19.4764314135223,19.6439281681232,19.6304384980181,19.6505009838054,19.6570290592662,19.5385960921184,19.6915324202628,19.5654655094766 +"P29613",24.12000171098,24.1282230025416,24.1733241325906,24.0950067371843,24.0323361659407,23.9690873350618,23.7772038991871,23.6592189133845,23.7372911212937,23.7188319976053,23.7964870501936,23.7907834066841,23.7283645594029,23.7368815211626,23.7091164115515,23.6226794957453,23.7089417468819,23.6824859929233 +"P29746",20.8450109292507,20.9891740658995,21.0425756743652,21.2480082144532,21.3173576361621,21.2364408776512,21.0966762852588,21.0571891423256,21.2620775908916,21.396693316775,21.4084899103843,21.443110935488,21.113941103848,21.1373833395619,21.0122763864222,21.5007909204294,21.2915266756818,21.2046393051969 +"P29829",21.5346958823833,21.3461342402948,21.3121803203884,21.2588071980135,21.1161986031579,21.1256595481334,21.3679956347382,21.3393472729973,21.2882473915134,21.3496846547567,21.2133732995777,21.3503363920195,21.4081034645763,21.7292506180718,21.7605081057532,21.313742559913,21.4887253602815,21.3960976365731 +"P32234",16.6406962747954,16.8242588795862,16.9404272064842,16.8156145363648,16.7704666588539,16.7598454004237,17.035653274249,16.7146597105522,16.7027589991969,16.7916289306304,16.7629410690591,16.6132355134732,16.5564345668613,16.6127801988188,16.775261544523,16.4432472863404,16.5981683523712,16.4917462051403 +"P32392",17.2375600699265,17.3928107121713,17.3369548652846,17.3501024596258,17.5338633166439,17.4238579313639,17.8345833744426,17.6945556422772,17.7497497728489,17.9849958296942,17.8373047984333,17.8981782371045,17.8428327524098,17.7184455893021,17.7798396176785,17.7118405694359,17.7849349967068,17.7733346312542 +"P32748",17.0585067232019,17.01184609907,16.9845974418053,17.1430915388318,17.0914567747312,17.2536579478924,17.2282022264248,17.3905021603392,17.2790539443117,17.309965613875,17.3723097604913,17.2876199393643,17.2579921531379,17.4009011913033,17.4321276202495,17.7309207035232,17.4616629730595,17.4916220653713 +"P35220",19.4416774713606,19.3655834783444,19.3970187308367,19.5189287814437,19.4235909814117,19.51493249184,19.2801320036863,19.3072659408569,19.3085359201813,19.3563269402551,19.3235064634768,19.4455399243036,19.1992578441054,19.255654417033,19.3234058065095,19.2221484682914,19.3428702280198,19.0290386354715 +"P35381",25.5054113118897,25.4902064747334,25.4986561238661,25.5883291177437,25.4918820780283,25.4046924054663,25.7962776879055,25.7438602830296,25.8167612026409,25.5321380208888,25.6274096517714,25.6349817999928,25.9403808642308,25.8820124335546,25.9591900413345,25.7698535753304,25.8970196568716,25.8181090046883 +"P35992",15.7388714816374,15.7391094128759,15.8506203068769,15.7118712855122,15.76653449973,15.862977331563,15.6985172541826,15.8536591929941,15.8522260748975,16.0276336550003,16.0599277245968,16.0045926408472,15.8254378270409,15.861874041782,15.7852393184479,16.2205249229101,15.9417515543047,15.8672007536511 +"P36241",20.0087542499782,19.7684297609084,19.8255074511619,19.8018309041787,19.6483367565618,19.6809590530979,19.8948089559274,19.9800411625857,19.9721580900328,19.9659718975106,19.8002068424273,19.8508086336696,19.6010292050711,19.8588661403405,19.8277473216058,19.468369940652,19.6848844904943,19.58358460375 +"P36951",20.3369893886083,20.4985868243664,20.4694446255759,20.2892164066513,20.2914671414748,20.254137907803,20.5460097713606,20.461819496097,20.4077904731259,20.1498041965784,20.16752733586,20.2684344138259,20.4567558327793,20.3763603031976,20.4352927454526,20.3758739141701,20.3588884091523,20.3195493443646 +"P36975",22.2240634235212,22.2586089579108,22.3470159470349,22.462383420832,22.574531671556,22.4612118788148,22.1248476236731,22.1407085177088,22.1657822771663,22.2903095750713,22.2177483138543,22.4547795925137,22.1337525847056,22.2008217303321,22.1439969617119,22.1783411183243,22.0212785547655,21.840911088886 +"P38040",19.0428459900239,19.055492323997,19.2434608030229,19.2650805615777,18.9620930221911,19.0940896059074,18.8629262190142,18.875130346495,18.9677738788753,19.2994916046163,19.1934713535091,19.2458430618636,18.6410243353876,18.7200763905547,18.8105474735544,19.0785126335283,19.383617907401,18.8281665209244 +"P38979",22.1349754931887,22.0438617073933,22.1706459100529,21.9916472721281,22.0264510216077,22.0439492397487,22.2608796025019,22.1975373966751,22.0978762326375,22.0382084714827,22.0347261675837,22.0804364936793,22.1739498647161,22.1679089716367,22.1412169157762,21.9692626428779,22.0984380819989,22.0347985550008 +"P40301",17.8563267241001,17.551545261975,17.6572667413873,17.59624749756,17.7403743596114,17.6354671713017,17.8740210145134,18.0382337729928,17.8901878699905,17.9124777258607,17.8692708014557,17.889063524886,17.9748449519587,17.8188087166188,17.8704676610239,17.8759304027304,18.0716154040695,18.1473953481339 +"P40304",18.6233145843727,18.5191600937871,18.5837675248412,18.6314783118637,18.7614509283521,18.6522072405919,18.8495802258734,18.7740816322831,18.7012620410911,18.8047002007044,18.9031646087228,18.9472124108695,19.0850924692813,18.8417986357184,18.7964035486734,18.6965849042576,18.8910947974895,19.0098979302859 +"P40417",19.7179044958179,19.72945395551,19.7669081012261,19.7613975587811,19.8788248106561,19.9295751523096,19.6735380339337,19.8364469057374,19.6126029411363,19.8888197126093,19.8314725623387,19.9265491047554,19.8458300346012,19.8140123282745,19.8236839143395,20.0752483925357,19.8725276657621,19.903419014512 +"P40796",18.5267599542665,18.5623962540136,18.6152405537227,18.2731605649353,18.426540176627,18.4147137133649,18.6451963791757,18.5237832803223,18.4401389166277,18.0149666204293,18.0937830974179,18.265045458839,18.6677612062729,18.5999845032863,18.5041107655916,17.9352335822244,17.856590995637,17.8238288991581 +"P40797",19.0342030012078,18.9100827803839,19.0142823915691,19.1176833309993,19.291250379617,19.2457489623225,19.0982440004336,19.0807087085896,18.991338111877,19.1600945189922,19.245728031641,19.2808908298567,19.219054727707,19.1399869504506,19.0857036222832,19.3441343167846,19.3056570454424,19.355449978216 +"P41093",18.6043426971842,18.6379602176606,18.6614797364147,18.2745095267207,18.4093180397784,18.5556757019232,19.2617233377485,19.2286650743332,19.1073086878947,19.0467117890198,19.0904918443042,19.1487686127561,19.3519524147902,19.0376013881752,19.1702378999087,19.0954341039941,19.2306373052059,18.9912032305602 +"P41094",21.2391211224638,21.1783041877216,21.1612186501096,21.0417207207234,21.0718872564381,21.0967545135227,21.3515704831239,21.284439830515,21.2630505572428,21.1637355728426,21.1591685381202,21.269477474682,21.1937195351977,21.1906674413188,21.2283576197866,21.0864352577247,21.1918354379623,21.0574438767325 +"P41375",16.7700906029049,17.1406281134255,16.8256896795202,16.8110476544713,16.820720662524,16.755816798121,16.7696279856635,16.8860495538099,16.5804719862907,16.7853046180473,16.7619768355336,16.8844811332234,16.6051950277612,16.5618855077977,16.6793424468909,16.6463285327078,16.2163337484654,16.6617923775099 +"P42207",15.8922835211398,15.9346861986141,15.9808576430863,15.9641721221453,16.0195621412975,15.9074523519181,15.9613295428455,16.0662084923383,15.9657969706756,16.0862147055573,15.9895995077684,15.8380944359943,15.872713189453,16.0439414215697,16.0294619005139,16.2460474260909,15.9687627456437,16.3010972050436 +"P42281",22.1470411840861,21.9959490796944,22.2708664370826,22.01694995984,22.0630217574028,21.9399310314233,21.6870065262616,21.5401620646366,21.7682238341531,21.6578424008727,21.7747003880059,21.7389078062039,21.60956434238,21.7085293247427,21.6012666137634,21.7258005996328,21.7618423985908,21.5250092904469 +"P42325",20.1395058365328,20.1228903214263,20.0939775123776,20.2509277059307,20.1899456946644,20.2161002999591,19.9606757231146,19.9266724637664,20.0213693209617,20.0349406087592,19.9582353167,20.1490617890354,20.1136500813415,20.047258104722,20.0348351583805,20.0314888409915,20.2861868953913,20.015844715956 +"P43332",16.9301528255825,17.226787925898,16.9911140083283,17.2214811404873,17.2868483863235,17.2505735673371,17.1519238695056,17.1209680776243,17.1739622280478,17.1842206061015,17.379915948941,17.4564185356706,17.1462492662809,16.7281960494023,17.1160919079912,17.4599008395794,17.3512121593482,17.1057683001623 +"P45437",15.8647041330494,15.7482225598045,15.7648022543399,15.5240853111215,15.8065549343725,15.698065267764,16.2322987145135,16.3415240755735,16.3739964978294,16.2613460290976,16.2775967482476,16.0458490057167,16.369386361108,16.2511003672241,16.3613031479711,16.3136900023129,16.1405118659807,16.3214943775819 +"P45594",23.1026799974128,23.0386273275216,22.9050887777336,23.1077648346526,23.0770935449023,23.0609112782866,22.968014436052,22.9473667726785,22.9272648651331,23.1422443580086,23.1584318737667,23.3081964375257,22.853283047317,22.8234087302652,22.9490475580599,23.0514083827877,23.1804668070964,23.0748861394918 +"P45888",16.8917440899547,16.9546871305534,16.8694539732287,17.1853187598001,17.2339183761393,17.0198478250229,17.2043942836727,17.2631783520526,17.3292669287897,17.2239519434173,17.2019319855027,17.2178439735875,17.3073838654251,17.2605775327263,17.356829321944,17.3964025631729,17.2949021284686,17.4159534828701 +"P45889",19.081382168141,19.0980301781002,19.0135877650345,19.1625028491703,19.1220301865347,19.1352303102854,19.2999605444464,19.2078036237598,19.08528238671,19.1584456926635,19.1995362626198,19.2696581105036,19.3329855617437,19.1585028830222,19.2525544498158,18.9618913238881,19.2112650060163,19.2408551177037 +"P46415",17.9879825656756,18.0339910690486,18.0741102164667,17.6223963104744,17.7945324325384,17.8935790197002,18.0671533279721,18.0473501580346,17.8747988298779,17.9976874623423,17.8699035365795,17.8844629987314,18.3933478937194,18.4001905826122,18.4251474057229,18.2327754140007,18.1553751953711,18.1492445036853 +"P48148",20.5342923975589,20.516439044954,20.289803367535,20.660206134919,20.5076879297929,20.4678556549316,20.7177605984076,20.666108453397,20.652523034566,20.7268942955144,20.7800895884792,20.9187110213268,20.6826185698954,20.4985522257989,20.7249805629228,20.6166541876787,20.969548941552,20.8845525426918 +"P48159",20.0486384341932,19.8860521163636,19.8969519043103,19.7674604733652,19.8228198211686,19.6965465774592,19.9951096024848,19.9879726002026,19.9797079648741,19.8641788430314,19.9042153822511,19.9758902031162,19.8680343851871,19.971068334009,19.9879901229733,19.7941092794835,19.7654027637503,19.8004442450122 +"P48375",21.9610571692259,21.9679493003191,22.1294638614665,22.1700424164334,22.0934591504736,22.0446557563704,21.6867358581989,21.6959698640086,21.863929488303,21.7057984947244,21.7843287352049,21.8562873380084,21.7280674108812,21.8160116488135,21.5822735271349,22.1046157992217,21.9985984498657,21.8797071774023 +"P48596",21.499158791522,21.470702266906,21.451823968362,21.7093278894581,21.7426534892124,21.7939179986705,21.9292910516259,21.8890883093091,21.8388553572099,22.2142109529715,22.2545431964111,22.2869339137867,21.8008020980005,21.8454240741647,21.730880112935,22.0503187379984,22.000698185573,22.1006981706122 +"P48604",20.1501354539376,20.1692700133031,20.3222726901741,20.1701617380595,20.1533388627706,20.2250279254362,20.0323073884042,20.0276175390642,20.0424780846483,20.0563593863133,20.1201789380397,20.1266098486237,19.9904095396782,20.0231778757161,19.8709940705574,20.1820284765623,20.0878187540614,19.9940193635155 +"P48609",16.9612618953706,16.8718162994559,16.9181447977073,16.9058627531146,16.9149633532787,16.8968031408956,17.1617946326572,17.13423262941,17.0533628844973,16.9694191299563,16.9162500821215,17.0948033729247,16.8255764605908,17.1261731260804,17.0166317194474,17.10122334182,16.9617027231632,16.9453922980371 +"P48611",20.2658513059679,19.8487063155233,20.0117498540057,20.2147838447286,20.096927522592,20.120890975043,20.1728493594902,20.3155445867062,20.2024606812412,20.3897954905104,20.4942819410232,20.4406501841768,19.841561645822,20.1691352340098,20.0893194645921,20.2640410172967,20.2242870639614,20.2838115047569 +"P49028",16.3958413435641,16.0997822983466,16.2735233080988,16.6628790484125,16.3296475887365,16.1175659602909,16.3161590628844,16.5440111226896,16.2897479615694,16.3810726947635,16.4965913898574,16.2383271826883,16.2903377478885,16.4519767322289,16.7054016067762,16.1680885948033,16.2923693604572,16.5898124728928 +"P49963",15.0915679834248,14.6759314432174,14.7504917497868,14.8705401489589,14.8772425650647,14.9780426378512,14.9080621747931,14.8620223011201,14.7986842253222,15.1191077682362,15.1489738716406,15.1782573640711,14.4870713520631,14.8793233416409,14.7569732435285,15.0215999219012,15.0544558266936,15.0355001288174 +"P50887",17.150216038211,17.439452481021,17.1874088161921,17.5223794540329,17.4461601594344,17.3697809924276,17.8351443305697,17.6833834418322,17.894590951532,18.1251016693001,18.0562744049746,18.1727724696057,17.8307536510232,17.4921396542143,17.7225427087987,18.1891736875399,18.5353586892002,18.3056728921206 +"P51140",13.4072430709248,13.6331356818168,13.7943351821891,13.7323172005748,13.6072753817789,13.7522006974563,13.4712533171151,13.5569092806189,13.3650239107277,13.8003608933248,13.6982916394909,13.4527738287081,13.3379937318823,13.4879994115723,13.6567796947022,13.9615405845727,13.7270974031168,13.6895954846113 +"P52029",18.6510725878012,18.8259265299664,18.7716538671413,18.3228193404912,18.3340021262003,18.1678665769548,18.2697271070522,18.4260226367467,18.3919087102377,18.0211128769836,18.2161032963099,18.0773966337142,18.862933412754,18.7037830987295,18.7687453562608,18.118491220234,17.7403188573633,18.0685854010074 +"P53034",15.5348074497774,15.6516457207441,16.0063796300141,15.959852237966,15.9370162175283,16.0105076151225,15.7159061447541,15.715254537801,15.5579898049101,15.7895042517267,15.805721744266,15.8816825410918,15.5291567837191,15.6100171303578,15.5204603805956,15.8780410578943,15.6876125751403,15.4302479541034 +"P53501",24.85032606488,24.8115388757962,24.8732530250289,24.4449867073362,24.4635091352069,24.4508256177299,24.8296552571652,24.8635155548654,24.7729946567817,24.3795372503665,24.4156949019403,24.4336528543549,24.72214788195,24.7814162978789,24.7624760533478,24.5178234474914,24.4088018435016,24.4512744019461 +"P53997",18.2391019970783,17.4296743045357,17.3641228469912,17.680144752705,17.3603240841394,17.418340383482,16.773949660533,17.3409724050764,17.3432416673579,17.1743450875326,17.4240303860097,17.5353548686845,16.7127814405186,17.43134533372,17.2845987002737,17.6542165999684,17.2481930248547,17.2888810715466 +"P54185",17.3371871026498,17.2689756463826,17.5141223605725,17.5780682882364,17.7779460861194,17.6923477996728,17.5713547800475,17.5060038670464,17.7377559871384,17.6237410172637,17.6746077886483,17.6444097339284,17.2420913870369,17.2574970359139,17.0573242875534,17.2655548646646,17.1329670157882,16.9720372710335 +"P54192",24.3476428373571,24.3686880762014,24.4723981100141,24.5499812619102,24.7102181003829,24.4924995357399,24.3725504201473,24.1841223580952,24.4650371565968,24.3164363805329,24.5025162149794,24.4773211224539,24.1516088338881,24.0735877322192,24.0948611806005,24.2235161392151,24.1226033911726,23.9596187676456 +"P54195",18.3346608124874,18.8092046485147,18.701294054887,18.3618156583063,18.8160959802804,18.7006167048473,18.9845732753099,18.7489921510866,18.9085824426782,19.06845603338,18.9965432900339,19.1379297077829,19.0223749365126,18.4232480589083,18.4705637374457,18.5076890458896,18.4854856330619,18.3605831142447 +"P54352",16.2024995240359,15.8090452389684,16.0316128810823,16.0215180846842,16.1087066063666,15.9401829932488,16.1348320113236,16.3172899385624,16.0893022576781,15.9417502293177,15.8942022932661,16.1803670074852,16.0176325180938,16.3403636174608,16.2389927091991,16.3398947874115,16.1885194602424,16.1776693061733 +"P54353",18.8684543568101,18.8627079443228,18.9782695531346,19.1883225847394,19.0190975532096,19.047215941899,18.6772429643078,18.8837446467357,18.9987372669276,18.9510451529999,18.9065508739333,18.8460194165952,18.6171937783073,18.9369013629283,18.9670983199593,19.0074226951112,18.7006791511461,18.4723410337601 +"P54385",21.4168224278992,21.3687335633212,21.3793357970929,21.0917063352289,21.0261382527939,20.9749191393576,21.7115545736237,21.7481857440113,21.6461022718882,21.4446471850481,21.445673631439,21.5603967200184,21.9852130575227,22.0562932165599,22.15058960754,21.4714514462397,21.476370617437,21.4100514896652 +"P54397",15.1304509420558,14.9562900749084,15.0218365934315,14.5106653324135,14.678329707961,14.618173476456,15.1913413859774,14.9147902181566,14.9127981234832,14.4192200362747,14.7129206925569,14.758072650892,14.8929137055148,14.7267338917322,14.806996272771,14.5430010774926,14.6985278944138,14.5697153626952 +"P54622",17.5220390871128,17.6431543960359,17.7988541603466,17.8964725943239,17.8860897581211,17.7198885769204,17.9598671069402,17.9728406956281,17.9193416042522,18.0630053340386,17.8950105099219,17.842067892589,17.9161267505454,18.0964800722449,18.135277598477,18.3070031621757,18.1709386031846,18.2490842025512 +"P55828",19.9519006139457,19.951396156352,20.0315822562749,20.1389312050261,19.8788924449707,19.8775508050033,20.0295525472092,20.0844363816148,19.9602525777992,19.7839647282493,19.9151031845067,19.9345978865771,19.8585121594623,19.9826781330524,20.0272375439409,20.0389146243504,19.9892695777464,19.9705548086476 +"P55830",22.160598093674,22.0970195966649,22.1169768121146,21.9710896904321,22.0025405201215,21.8864236208998,22.142841750019,22.0890987564131,22.1595710810578,21.9753173995412,21.9957501114335,22.0148171683932,21.9379956398559,22.0586536878645,22.0002990393372,21.8401581638528,21.7849380648775,21.8499130155724 +"P55841",20.6047481917568,20.6028319997919,20.6070327535702,20.5415766191315,20.4440547198827,20.5298829362744,20.7324913848177,20.8525645462808,20.7836281147482,20.6142379289572,20.6065610010399,20.6639433368401,20.772392965199,20.649080619925,20.7364461701443,20.6063853929872,20.7167395959289,20.5508991712721 +"P56538",16.9622342694224,16.991667332322,17.2677959640905,17.0714830516593,16.9323528188297,17.0021972247344,17.1302220949478,17.1718803991325,17.1722045188434,16.9880425129421,16.9618757435546,16.8533216054134,17.2075849017238,17.3356689640083,17.249292237691,17.1849643234415,17.1510858962899,16.9997196033644 +"P61851",23.7315924873491,23.5517361560073,23.5435858160519,23.7246436649275,23.6451498153403,23.6661487767794,23.4790158507363,23.4470012350713,23.4570923411296,23.6603167715841,23.5190628881594,23.5796734457244,23.0523483495337,23.4579697766984,23.4270265023012,23.6100364413426,23.6370336941964,23.5844266834867 +"P80455",20.7547089619996,20.5089871788786,20.5931783274007,20.6297079283595,20.4358418193675,20.5215615179015,20.5992500138498,20.5054195184031,20.6633488419968,20.4973484190094,20.4029672541251,20.2554706105468,20.2317532248683,20.6579687506915,20.6110326146406,20.5038892201268,20.7054732467476,20.572065855727 +"P81900",22.3920131960558,22.2205649427035,22.4423161226023,22.4708134543866,22.4870148526978,22.5055419462896,22.3235720802793,22.409877955056,22.3320190351156,22.4380752866116,22.4260270143059,22.3593862475588,22.3206023865881,22.3411932344801,22.3772187082916,22.5905170196597,22.6509154243379,22.5191113637232 +"P82890",19.9387108811478,19.8552185159529,19.9933444128553,20.0495551395897,19.7258113197879,19.777850433282,19.5112754974236,19.6614400183356,19.5699004252255,19.5418222533771,19.4326688288068,19.438681218853,19.4847851609839,19.6136627389062,19.5208405776349,19.1768046033607,19.4141521140935,19.4023364680322 +"P83967",17.3396479714868,17.0247464014151,17.2418192055453,18.4813520896098,18.6250109505917,18.3062961142031,17.3969403522685,17.5055440959014,17.5364481079026,17.4347023716151,17.3506504150185,17.4546902192912,16.8358296354983,16.8312487377741,16.7154961052197,17.6516141433978,17.8028859631755,17.8853368117143 +"P91926",17.8589774042887,17.9403292667151,17.8705398982086,17.4237242598632,17.5128069142758,17.3785260123094,17.501676980603,17.6253986687424,17.5695201933577,17.7863117476008,17.7399382130695,17.6628183392143,17.7515198845683,17.6652764184946,17.9097529279814,17.8063502410944,17.6448110367211,17.737403146947 +"P91927",19.5605339209788,19.682023363321,19.7571182455835,19.3488606101136,19.3647354590878,19.4171287650182,19.3711514664468,19.258695328175,19.3878902711189,19.0049407416938,19.0492705274203,19.0295179309453,19.3986102097781,19.4115810014375,19.44792040927,18.9069738072374,18.8247650768068,18.5514951343125 +"P91941",23.2403940481822,23.1518741826229,23.2015332199592,23.1226926642373,23.0919283101399,23.0369953496799,23.0787288884001,23.0277081789178,23.1253309592185,22.8462370536099,23.0543604178678,23.1507728865635,23.2621994439101,23.2166529812206,23.1789252237205,22.9526938287328,22.9604218563033,22.8093882879309 +"P92177",24.3110831290574,24.1234636141495,24.2009583868944,24.2691267591711,24.2452585693757,24.2896393584149,23.9829507692999,24.0552965327987,24.037709184224,24.2646798932618,24.1483741819095,24.207323093451,23.7305248551927,24.0441133231072,23.9902706476463,24.2257517423533,24.1676109269957,24.0582164777057 +"P92181",16.449086792115,16.5812549939695,16.6139776270647,16.4371668305103,16.511465492918,16.5691753134519,16.5574245058293,16.3026582118808,16.461487467454,16.3967479685292,16.6008088607203,16.6429939985616,16.5816153020786,16.4537677754465,16.2580848243096,16.5895647620232,16.5616508261505,16.4658869302438 +"P92204",15.886596818474,15.7355636786146,15.8527724639643,16.1964370890948,15.9558836056288,16.0683189414148,15.6951757773135,15.9747758592008,15.8067549309137,16.081238257257,15.7362117802785,15.8084712735209,15.2161417885323,15.8690555080712,15.7569225061866,16.1140832963307,15.9181825952086,15.8964329110022 +"Q00174",21.761982349324,21.7734111383538,21.8342624547209,21.8977968640759,21.8605240879367,21.8347356384657,22.1604287465445,22.1175885631157,22.1800220644606,21.9416739285793,21.9350833984689,21.9592971673058,22.1168914809427,22.126703797414,22.0706449656853,22.0922581885782,22.1577205727555,22.0920692674063 +"Q01637",15.5830222621295,15.5640076266432,15.6693064805598,15.7230932680088,15.8369643537774,15.7325369494206,16.118398735991,16.08588321106,16.1248355693765,16.0079251423749,16.1214873947315,16.0946326204475,16.1941505434913,16.1944208517429,16.2041899425455,16.2672357789318,16.0910622929724,16.0683241685775 +"Q02748",19.6644586107245,19.6139754591982,19.7209212961073,19.3536767661539,19.3566106866663,19.351177250242,19.5785530377429,19.5998411324214,19.5003140411907,19.5032260243953,19.4875437528882,19.4774071942557,19.7891471458796,19.8463247757784,19.9815589420795,19.5114747958553,19.496240573799,19.3691576568763 +"Q02910",16.5367549779417,16.5578576043608,16.3617487414532,16.1644248903711,16.4171325419402,16.1920595324637,16.0934593561944,16.2554964757,16.1860849153902,16.3085901327549,16.8867222181646,16.4353367443084,16.5267355294373,15.4447309317181,16.3339932171284,16.1222739532654,16.1902990680812,16.243015689221 +"Q03427",21.7897772388605,21.7811144486829,21.8421453374059,21.8523594429774,21.8114152500178,21.7652833351674,21.7489623771003,21.736901422022,21.7730199492175,21.6073966260556,21.7542998296154,21.708123393275,21.7053632384862,21.6979069923771,21.6854554640823,21.6862419536283,21.6084629343933,21.6160733979605 +"Q05856",13.7395971260225,13.6651696053666,13.6131457415183,13.5405690869679,13.4559789032878,13.7089410913564,13.7958556908793,13.4998038149212,13.7415607665015,13.7313974714055,13.8799901452576,13.806097205064,13.5186609055605,13.4078697609535,13.3594381459859,13.8013252479758,14.2185932990249,13.8982225783855 +"Q07093",14.5972603045697,14.7083474681493,14.7730864546054,14.3549087617621,14.3872542343108,14.5476787994248,14.6719505918791,14.4995269047694,14.4600444367817,14.7769799916981,14.472385203001,14.5191617854228,14.4755969710252,14.8786946649099,14.993434639015,14.5442776083549,14.4747657541486,14.1275681140394 +"Q08012",19.4147570389017,19.1248223119695,19.2878613138477,19.0731617562084,19.0143861311638,19.1423132519014,19.195927151542,19.2120508865921,19.2539198457052,19.0998179851029,19.0612575147799,18.9179450133328,19.0709361554034,19.3226150284335,19.2589731396497,19.2359468468048,19.3554150610242,19.2295343695264 +"Q09101",14.5728928801206,14.3508611886875,14.3390500080196,14.7754276788961,14.7153858517976,14.6687724705544,14.6745593300833,14.525451875849,14.4119642073451,14.6853426832518,14.6554688446361,14.7617760961947,14.4329695158356,14.7465088340044,14.7224148506073,14.8173233868955,14.9648388801084,15.0545378423618 +"Q0E8C8",17.4715721836879,17.6192955363376,17.67164901198,17.5581052284165,17.4422984555931,17.6267091204008,17.5989903371391,17.7323897713539,17.4990249815588,17.4022833168437,17.4690571011768,17.5755757780715,17.6669837383883,17.6465534099357,17.6301900024066,17.9994575194763,17.7877980495547,17.6942434295341 +"Q0E8E8",21.5796110168968,21.5154489721665,21.4206606866237,21.3196818652403,21.4339738218689,21.4379446700605,21.4564754799827,21.4616930847724,21.2910974855703,21.4823124438583,21.4653974931157,21.5794195735342,22.1514234981722,21.9639431066567,22.1861465894708,21.8715645211529,22.0206123467231,21.9457998200438 +"Q0E8P5",17.8501765265545,17.7268514401019,17.7919864681589,17.7363958116991,17.8784729613375,17.8082551080061,17.6658587302306,17.6008932456295,17.6783781927047,17.6080626955178,17.7149218581101,17.6868683935923,17.5914942408675,17.8084783095569,17.6202878414423,17.9118334792345,17.6342036693682,17.7780454801996 +"Q0E8U4",16.6063938791971,16.3320265939983,16.3497763477081,16.3494175531959,16.1840535735674,16.1474220755152,16.2951803756066,16.2457789278598,16.1943312895095,16.5124968250369,16.1307268966307,16.0726577645869,15.675913891572,16.2311690554629,16.3547955454521,15.8521600743577,16.1678075514471,16.1725795761943 +"Q0E8V7",19.8837836091674,19.7552497352276,19.9013194863308,20.1537231755958,19.7191339241105,19.7715708217453,19.6234497150048,19.6155087909005,19.7397004411323,19.8825661034923,19.7359342013843,19.6125326082869,19.0552755467334,19.6716428300669,19.5691457098736,19.6174759862957,19.7188046545996,19.6220050689204 +"Q0E8X7",20.9288158233078,21.2553349359383,20.9746381641853,20.9075238523105,21.070638936297,21.0653089720578,21.16495408489,20.9593123694953,20.8902042987189,20.9119972124658,21.1060321103403,21.3450164372612,21.2984099022325,20.812723786877,21.0166626424825,20.8512300525624,20.8588887888211,20.7711004130633 +"Q0E8X8",19.4493986053084,19.6301861887955,19.5886643290218,19.7637335673368,19.9445913521416,19.7862275971323,19.3537288749907,19.2631913330217,19.3836565655466,20.1137973319262,20.2384071835289,20.3087018069645,19.4777081264539,19.4131824300394,19.3679554965368,20.6535962511132,20.3224042696022,20.3767569619273 +"Q0E980",18.3096351187498,18.3816667814224,18.4839752992535,18.3571526923444,18.382294520048,18.2556008130498,18.4857382424378,18.3185651508444,18.504574260308,18.2864942300341,18.3283277105041,18.4575989873723,18.413615185487,18.2949390286532,18.1768386973823,18.362649563503,18.5094918410841,18.3366969751903 +"Q0E9B6",18.906601727596,18.8896524453747,18.8584944830397,18.7918527707229,18.7462474650119,18.8085371603431,19.2734283807442,19.3658251126657,19.3236035283759,19.2617641301121,19.2014649885156,19.1380319245728,19.1240021169555,19.2984002741238,19.3877858017371,19.3296009450354,19.1856597854744,19.1707971730973 +"Q0E9B7",12.3669223495387,13.0592484472628,12.8576398650901,13.1628425134476,12.8214702542745,12.9926599606052,12.9751084041519,12.5682444386574,12.790236740129,13.0418570446337,13.4885474331712,12.4453864840472,12.727372762318,12.6654229951339,12.7319027940928,12.489589418912,12.1607589245021,12.9458666490375 +"Q0E9F9",18.7686414395164,18.5345708216238,18.6579174096681,18.0651755118938,18.2883776562641,18.2507492753623,18.6841636452293,18.6737939339088,18.6635763780434,18.3644201566087,18.2359218118321,18.4295571881327,18.43734009918,18.45494418778,18.2863443177054,18.3952752839848,18.5274077250043,18.4268715675013 +"Q0KHZ6",23.149292460744,23.1357588896381,23.2947932640787,23.3072758682827,23.2424468713296,23.2365846952762,23.0336353172427,23.0406555413077,23.0742204721133,23.0192308083823,23.031987268554,23.0394447342244,23.0736292892247,23.1646650514635,23.0807684300214,22.8614338974501,22.8289840190336,22.7186860456126 +"Q0KI15",15.5587110772164,15.7648484272785,15.5816655217291,15.6373796196744,15.6087495295633,15.5395338002004,15.4384033694131,15.5835910566414,15.4785189171025,15.6112685855349,15.5447220601403,15.7952386428192,15.7499476431797,15.6295709913376,15.7633345143387,15.6265488661628,15.4907770962203,15.4639677649916 +"Q0KI81",15.6376073373439,15.6187926760367,15.7107993566836,15.9577420829482,15.6906162582063,15.7331998138121,15.3399934713971,15.5410966215953,15.6419456890767,15.519718922978,15.6015962531847,15.5037883175753,15.5314053288093,15.699877448881,15.6066829329569,15.7651505068096,15.5996383923819,15.5552015401813 +"Q0KI98",16.6365418027138,16.4801389848545,16.7706401791559,16.4101350348034,16.5204514671628,16.583734371458,16.5698442358,16.6269045592398,16.5721049375278,16.5003424052639,16.6713656652206,16.5421462654144,16.6898164278487,16.7988439826398,16.73977071158,16.9474693317949,16.6564445791074,16.5457527730887 +"Q0KIE7",14.0816166937891,13.8032975525153,14.2489415455495,13.8343743423811,13.1448619462048,13.7119945780094,13.9069119190367,14.1085472270036,13.879076869665,13.81173475577,13.5797615820461,14.0316339901103,14.3743932152865,14.8881470804513,14.2712976245785,14.2420771049565,14.7264926429988,14.1081634233072 +"Q23970",21.556421796576,21.4067155735215,21.5256116418811,21.8419589855702,21.7338722131032,21.7885445918645,21.4745061932162,21.4495917391174,21.6352745372299,21.635875440921,21.6082429383502,21.644878137006,20.9909124204666,21.3276729438208,21.0950310740493,21.2951545458683,21.2687339747052,21.1054894005874 +"Q23983",22.4904390500331,22.3135951538906,22.4289911857289,22.5719702469347,22.4816527868075,22.5127455851076,22.2120799983315,22.2048855075087,22.1748505297514,22.3826283237296,22.2610714396247,22.2639799331745,22.1179589034354,22.3206516159432,22.3022000848175,22.238694868716,22.4319148874056,22.3310040726004 +"Q24050",16.6597508404694,16.6125381143051,16.7014260731617,16.6327519066013,16.7128912997126,16.7679709072166,16.6155941315625,16.5536137008309,16.7004985651057,16.6528513033372,16.7044309804201,16.6138008701319,16.4792878240771,16.584707845747,16.5763937530622,16.7586315894501,16.6306856544821,16.4387774268195 +"Q24090",15.5533436174603,15.5466340369019,15.7271873416,15.9839605278321,15.8983970705698,15.90324891308,15.5626645384601,15.758207516306,15.80272873783,16.1712393943189,15.9348368420612,15.886051043519,15.5483601993645,15.9296675810144,15.7614763743261,16.2392051653096,15.991030395892,15.9780810323902 +"Q24185",18.6104847021012,18.8007925438652,18.8891970764143,18.8149903716577,18.8270134228931,18.811231586342,18.6400477166777,18.5829818004411,18.6592873006417,18.5896305192181,18.7469377385761,18.6987331256786,18.7467444195103,18.6050582778759,18.5870448630697,18.7818334358134,18.6209473813267,18.5382372128319 +"Q24238",16.2370667694242,16.1316900066536,16.1806204481356,16.1867737144206,16.2457781221793,16.1000848973819,16.4458603639772,16.4261228467576,16.3763143660551,16.4611787190944,16.4644365067466,16.6486855980713,16.6936566722084,16.5739956071307,16.490312985197,16.248526232368,16.431039382025,16.477044176652 +"Q24253",18.6519930600338,18.5135101872055,18.4821613037276,18.3133527340213,18.5093605142984,18.5322600116232,18.9793365907864,19.0006785263736,18.7907168874693,18.9735382949886,18.9622747946221,19.0611948255776,19.0847395984345,19.2808394845624,19.3765638153057,19.4336672158162,19.1699639870189,19.1937306503775 +"Q24276",19.0159640442504,18.9615262990886,19.1146659433752,19.0563598653552,18.8498655834986,18.9306410314935,18.5823065155788,18.5701793095168,18.6773507232334,18.3940067780078,18.4528179976611,18.5374665335914,18.4993552469541,18.6906266548413,18.4968035535872,18.3813929920501,18.4043695975901,18.1724576569158 +"Q24297",16.7525546261664,16.8141612018839,16.8968648227106,16.8473147819944,16.9150400651169,17.1721044554025,17.0388401764633,16.9323293821834,16.8839199528295,16.9885303408435,17.0654686973803,17.0765634869018,17.1517134537668,17.0705864540969,16.9015263160989,17.2752298424057,17.2565974209787,17.1232041876967 +"Q24298",19.4312526284739,19.2983981339356,19.3976812118306,19.4406894353566,19.465930187912,19.3758079145404,19.3336627373186,19.2509474234723,19.341657670185,19.3803971964079,19.4490154168172,19.5361396126985,19.2172843676402,19.3828588982634,19.3077235076456,19.5546542915182,19.5107905963148,19.3989307398153 +"Q24319",16.1622459544657,16.3769336682048,16.4297484665584,16.0488005523504,16.2038298409178,16.1421367060126,16.3307163216972,16.2386382607364,16.2617016771315,16.3331450625832,16.2280126208095,16.1462281517058,16.5444670740707,16.8071165901001,16.7475923370918,16.7238325791315,16.2886765635302,16.4158002057986 +"Q24372",16.978374439417,16.9834764167137,16.9255859735663,16.8134628806793,16.548247768992,16.9030549119005,16.8492343073,16.8040365598029,16.6452745889038,16.8912435299558,16.7856946175268,16.8257931770635,16.9049336029745,17.0121183416096,17.1984823714458,17.0084642720789,17.3121393277604,16.9475220095255 +"Q24400",21.6870374298501,21.6600862962378,21.7566002679389,21.4020615554027,21.2875270830849,21.2016424618958,21.7772856033511,21.6221616620798,21.7254078000451,21.232966581294,21.1911102325933,21.2678413755,21.4437521568051,21.6048382738128,21.6274161983889,21.2138679573969,21.3912477362915,21.1780631803312 +"Q24439",24.4543982344149,24.475314726662,24.4520740163006,24.321427049116,24.3664115201308,24.4303875909688,24.3448780812157,24.3335590546041,24.2498226118365,24.2043864832321,24.2169562552858,24.2453588227286,24.2634257745472,24.2419610287288,24.2971137081177,24.1270647493244,24.0813777864388,24.0408236218981 +"Q24478",17.6321202235497,17.5039120900209,17.7900236088427,17.5640927321033,17.4419627708282,17.5313583876681,17.4884402156164,17.4319184475962,17.5599287678646,17.3091510702364,17.2841757277803,17.1477901340068,17.5657435630054,17.4892615279346,17.6222427675539,16.7166515051702,17.1249687455213,16.6248556437453 +"Q24492",15.2577880704735,15.256478243674,15.1903542331729,14.9620923108561,15.2416558822064,15.0333662603521,15.1245641702926,15.0509989159504,14.9871889726894,15.0230681790601,15.1256805892559,14.9826376407679,15.33245645701,15.3435665376095,15.4484860497507,15.3175740464236,14.9991630654197,15.375510077383 +"Q24583",21.2861992654998,21.3271561420024,21.3093044446153,21.2557993110257,21.4563883192517,21.36631860741,21.1224970836143,21.1156568497568,21.1856307158094,21.3297346734822,21.285915529081,21.350592198515,21.202870057969,21.1179260049687,21.0762289447582,21.2217352853331,21.1157928318636,21.1307607658163 +"Q26377",16.8907386535064,16.7876434548513,16.9558866562396,16.9899588234304,16.7798720997564,16.8037730381149,16.5786926504281,16.559691506237,16.761517465124,16.7611048276181,16.7175956747136,16.6902245073449,16.3097621797613,16.8137418606701,16.7548106777534,17.1499041373043,17.0216166758204,16.7139489274719 +"Q27268",18.9482743019112,18.7611020412628,18.9002070147269,18.9794121851449,18.7367188061889,18.9581917694274,19.072361828407,18.9130144245372,18.8640628442535,19.0138175647827,18.9677302674648,19.0259431233447,18.9403124305376,19.0028663185271,19.1334955853302,19.1344405300325,19.7071869828351,19.2067185037333 +"Q27272",15.8411003245628,15.7605315138084,15.833396802082,15.6703294290441,15.7246664034657,15.7863842641048,16.0853087677331,15.6074085587983,15.8248844503309,15.7282764642103,16.15904319003,15.8132803586339,15.5938734614919,15.2963109089831,15.3304326001579,15.2292332005662,15.6001610725229,15.5597431722989 +"Q27377",20.0898679804823,19.9232702717461,20.1795146706921,20.4104590833631,20.375251557538,20.2591676674964,20.0792687078508,20.1089232854378,20.3636597035695,20.1835011860503,20.1202917386482,20.0271688045157,19.5710903769663,19.9806224067035,19.9147913223345,19.9394639109224,19.7652919855616,19.529349077027 +"Q2MGK7",17.1708088305418,17.2498460357212,17.2018567945464,17.1055876067388,17.3601433900627,17.426095036223,16.871698927571,17.0006692283429,16.842567077696,17.1415453990538,17.038813897671,17.0875358844957,16.9931352406885,16.882404267799,16.6745543678454,17.1989530782881,16.9498522632852,17.2491199220756 +"Q3YMU0",23.1613063346966,23.1427676833819,23.1998749023513,23.2149819208997,23.220608475085,23.1417828725178,23.1337749843748,23.0969648567568,23.1558335898364,23.1646867255749,23.2221437534764,23.2530391413651,23.0964531114207,23.1475350839046,23.0943728221256,23.1301749609349,23.0713581852969,23.0564747097054 +"Q494G8",15.0668186040498,15.0331531905767,15.2656386077,15.3422868369163,15.3118643580337,15.2320742875769,14.884770150283,15.1070843124625,14.9544203000309,15.1463383137545,15.0293503323066,15.0916728119419,15.174327864411,15.0957588288161,15.1197138987764,15.0705248540286,15.1078556012477,15.0215467174171 +"Q4QPU3",13.6886511322647,13.9952791725732,14.5466151777093,15.0844489309454,14.3316689359277,14.3041794536652,14.552704532974,14.2962467430759,14.3435788507516,14.5174465975078,14.5345460601759,14.7401064936117,14.443657036235,14.7068902075925,14.2180581542904,14.5823273140831,15.0046044246647,14.7166974139817 +"Q4QQ70",16.0983484308524,15.9860804494969,16.2977841446553,16.2624207848525,16.2637669585868,16.4154948130113,16.154009927886,15.8869467391015,16.0529871522915,16.1036380199282,16.2163090989343,16.1532204365694,15.9883408519539,16.1257324025751,15.8452950249129,16.0878558527969,16.2157782195753,15.9298322968294 +"Q4V5H1",14.9523961182619,14.7920864046227,14.8184406555436,14.8878928891652,14.8335509944318,14.6989065955166,14.9232838789791,15.0701949296834,15.1786326329352,15.2846135671012,15.070462096658,14.9628843069789,14.6965551985932,15.1681009977279,15.1470745974212,15.1036652577004,14.9140114866772,15.0424681214055 +"Q4V5I9",16.311913954999,16.3038961965797,16.3033822338211,16.0399357624986,15.7602905859291,15.8934027095621,15.8202973132366,16.1303570171614,16.1602526438707,15.7478727132186,15.8499929354077,15.7432046019871,16.2573026415407,16.2236387359206,15.9405935587499,16.0582385909719,15.9673855054666,16.1947252284745 +"Q4V6M1",18.1869617476354,18.2028495221578,18.300196587043,18.1524307504865,18.2848436506582,18.3555068317558,18.178943067837,18.1998664534118,18.1851162227084,18.2041939004966,18.2687215477944,18.2999804207592,18.1959560378476,18.0930518305066,18.0737104793284,18.4106605115775,18.2798130113518,18.1146354742857 +"Q500Y7",20.3664856374387,20.2190379697823,20.2913633304556,19.9743818552341,20.1797078710407,20.1831947764355,20.0826003734913,20.0387239189541,19.9766783864105,19.9012810508414,19.9756888020505,19.8535301120798,20.0315854503978,19.9915080151771,20.0607990296785,19.9585421294217,19.9102099198204,19.9493108617651 +"Q59E04",16.2211547541799,16.0869868598856,16.0114312483707,16.5650585007179,16.4714046142557,16.6332710830123,16.3472847816464,16.2122295954669,16.4534036458928,16.4906309522281,16.4358847935137,16.6269084771159,16.3411397166923,16.2536761137923,16.2007193676593,16.382112432534,16.8871991610844,16.4216473159476 +"Q59E14",14.5700202031767,14.2058126010763,14.43730097668,14.2035573878019,14.6164926902791,14.6670324883014,14.5959141888112,14.6284679004337,14.4253020379718,14.8262122188821,14.7095363232019,14.8206881363634,14.5826015464703,14.4506923138195,14.3319910151038,14.686546829944,14.8538505462757,14.7825377206659 +"Q5LJT3",17.1222909071833,17.0812185396034,17.2840465103283,17.2388935341239,16.8792658812861,17.0159105580381,17.0324191220071,17.2458762832456,17.0138093227346,16.8949385950284,16.9757939323121,16.9517533125692,17.016939989222,17.4079890400635,17.2519813199063,17.1388640216791,16.8542024927332,16.9268451456673 +"Q5U117",14.4846963869761,14.7756025352105,14.5861016595326,14.4389617160726,13.9645157052597,14.2511353314274,14.5327113731777,14.7325671636715,14.533556115437,14.2527991223451,14.5260986611466,14.5081275958962,15.1148445985883,15.092073491561,15.0893942140518,14.7972766045257,14.5304322448361,14.6529748853404 +"Q5U126",21.5104596052145,21.4723626328378,21.4516199761477,21.9838156690275,21.83049555803,21.8264605675205,21.4472272794395,21.3921266364993,21.5274799709956,21.5660497514117,21.6881072845406,21.8982124986121,21.5461066538022,21.5392544100422,21.3380101863359,21.6526823713849,21.7839948083303,21.6645581306684 +"Q5U1B0",14.9823667881726,15.3337348363896,15.1877991515533,14.4456208304389,14.4653048036096,14.777290245412,14.9039656819788,15.1616140829896,14.709485912439,14.5540613268284,14.4667571326626,14.7564210415801,14.8028597861294,14.6200532518366,14.4014585345744,14.5950688134114,14.2364791194716,14.4514883414009 +"Q6AWN0",18.7139014742953,18.5949499701158,18.6905267160737,18.2347130345526,18.1845132490948,18.240871760602,18.5204938842577,18.6112372759464,18.6782195327509,18.1076443827994,18.1508598013015,18.0149339746179,18.4123032271301,18.5876740055124,18.6165233885027,18.4083761267527,18.2681978278168,18.1563567572405 +"Q6IDF5",19.8133342601523,19.6467893221224,19.8202417301881,19.7490812245972,19.6822945813275,19.6413622148083,19.6658915751873,19.5171547347991,19.6555358441275,19.3434903871723,19.6907711061791,19.5984737371305,19.7986068995621,19.5980470499251,19.6583500914142,19.3207638037153,19.5561113560334,19.317204532718 +"Q6IGM9",14.8726640898076,16.3195309273995,15.0220194392279,14.9027655073467,14.8243488952539,14.959581973305,14.7921779969729,14.4581842210706,14.5402040271485,14.6282137816598,14.5556821102492,14.6684547791953,14.7596046488096,14.2130317108108,14.7873448308512,14.5285629909684,14.1132111507809,14.506383965837 +"Q6IGN6",16.800371681372,16.6100019353448,16.8352856967853,16.9501772202534,16.6885392679764,16.8088033273374,16.8137137041988,16.5176024193072,16.7683903548147,16.7215462250565,16.6771716047568,16.8159211450457,16.7353607153503,16.6290398380885,16.723577096144,16.5610254756446,17.4598399564019,16.6302174017484 +"Q6IGW6",15.8943047105827,15.514728042839,15.7244732324919,15.470351464644,15.5971226636867,15.7467106168616,15.5352367083802,15.7592745560545,15.5479687353335,15.8805661519785,15.8475047658018,15.9954843157534,15.7617320187333,15.7141986585043,15.6735470513747,15.5924359616321,15.7017983290644,15.4464430641356 +"Q6IHY5",20.9977508761782,21.1151540335269,21.0688286271504,21.0461360862145,21.0800507045756,21.0448611793696,20.9217381667756,20.8816548949544,20.8912079822911,20.5622299763773,20.6318601444036,20.737986664863,20.833133118134,20.8820104530082,20.8061868233169,20.9787969627478,20.7490549559587,20.7907139094364 +"Q6NL44",15.2799127861084,15.1614070587239,15.1499137441325,14.8229272749791,15.2968091129164,15.4313776698723,15.2159650756089,15.3399848452011,15.0549459908037,15.2193834158785,15.2185979805278,15.2957362404421,15.2781305543056,15.3782271338945,15.3524637940954,15.8724422032413,15.2937351788582,15.4043238707759 +"Q6NLJ9",15.3378016602126,15.143465692011,15.406532946108,15.2196290719918,15.4038062502305,15.3843024108416,15.2414080592869,14.8840481851245,15.050752121172,14.9636970471852,14.9400232830695,14.8209428005694,14.637321476022,15.0352979075618,15.0494700248819,15.4566502739341,15.4498662706353,15.1445072850598 +"Q6NMY2",19.6154508041577,19.6760792141476,19.6370141535816,20.2649973767741,20.0819958468634,20.2236190791829,19.9493883833392,19.8355295356927,19.6878742210168,20.2763430726441,20.4629152190311,20.4555085538643,20.2232333323164,20.3532722760668,20.3492353686345,20.346534345873,20.2661552233029,20.3226959388244 +"Q6NP72",18.8422311244031,18.6163725876463,18.7980689043538,18.8548817429621,18.5729937980893,18.6297349623761,18.6533229677168,18.7686414991803,18.7507394738508,18.7753340547792,18.5987689217016,18.707363050336,18.4685039778249,18.9839773810805,18.8306682367891,18.8690992315898,18.9226189115777,18.7467984715702 +"Q6WV19",13.4299322834009,13.4355902802159,13.7552565429093,13.3184455201374,13.4646153644592,13.5636740144339,13.5129272087129,13.6668689421657,13.4589759007251,13.6331266247864,13.914446758743,13.9284704285081,13.5645026026438,13.8408854156499,13.5496895401447,13.7037928838215,12.8403203622692,12.9066606967819 +"Q709R6",15.1424647390711,15.3969305735896,15.2392095497121,15.6353087403998,15.2379567695609,15.1736577026301,14.8980317289507,15.0099702607145,14.9732264717101,15.1050607149656,15.1259919623935,15.0989497330894,15.0638522328026,15.1744185343084,15.1230650879496,14.7491134349953,14.6485634906183,14.9857230460938 +"Q70PY2",16.8848850632764,16.8728216582746,16.801173415688,17.1843051777077,17.3264687735821,17.2648124970059,17.67326523802,17.5420540083409,17.6383074683673,17.3087712357657,17.3686760949533,17.4352215175675,17.5465100114492,17.4947483223389,17.5299958507406,16.8494909891785,16.8424588579077,16.7777169660282 +"Q76NQ0",14.9571729751461,14.4020144988721,14.4256407277231,13.9616184318296,14.051167918553,14.1337009334147,14.6763372576107,14.5686854398013,14.3607805930639,14.6245078916083,14.5854163997392,14.5628682155001,14.4449620892402,14.8615417677485,14.6904385874083,14.4288354411696,14.6246080618905,14.9200050294945 +"Q7JNE1",17.7870660761695,17.7482375391671,17.8259267815577,17.962999071839,18.0015016017377,17.9462280807062,17.8018006409297,17.732288068129,17.8208478671871,17.7278525766153,17.7809093387586,17.7952387995546,17.6993616357805,17.7499613139889,17.6185752003604,17.7985632323405,17.7647453718933,17.7708265043086 +"Q7JPS2",20.775507674803,20.6947738531474,20.9080465591725,21.1722800260592,20.994275238383,21.0705617234837,20.3403803805784,20.2988686640034,20.3561968413988,20.6690906910593,20.6168170437274,20.4854227481299,20.1699422897889,20.5848844249151,20.4246114141712,21.0378391434407,20.9754209815532,20.9202009193733 +"Q7JQR3",19.2936132589005,19.2855609282692,19.4251681393546,19.2315204829924,19.1030772025513,19.160853407251,19.1480434709929,19.1820516163838,19.1985452609754,18.9225614487909,18.9485619407472,18.8282803097081,18.8843602683171,19.0024911534834,18.9734619475162,19.0073624075396,18.9657184960985,18.9011522727281 +"Q7JQW6",15.8505342349173,15.874880710013,15.9981404317821,15.9469807595832,15.9098682259591,15.8771288202595,15.9283760754884,15.7682268731556,15.8742648311915,15.6120385937449,15.835765335366,15.7884109902231,15.9730949152387,15.8227135831281,15.928254996179,15.8997597287348,15.9993295800857,15.7445842380723 +"Q7JR49",19.0222266847601,18.8751111762418,18.9670684113959,18.9690644668991,18.8100164198755,18.8563209749983,18.9027511729374,18.9536048557206,18.9308032554224,18.7533004337495,18.9017241859102,18.7759586053742,19.0433448064447,18.9573503316712,18.912542070048,18.5408420033674,18.7337225987389,18.7888362509194 +"Q7JR58",22.8251728427006,22.7930836766828,22.9121353202288,22.9445291807823,23.0058353093005,23.0633650438033,22.6307613867895,22.6945612373595,22.5668227425027,22.960815815238,22.9656744631431,22.9042119053129,22.7373276309742,22.7419512088946,22.7743886194192,22.7919078845678,22.6894088456718,22.6695911097853 +"Q7JRN6",14.7807208334822,14.91286572961,14.9119543202291,15.2297822289901,14.9961689887286,15.2596359550688,14.6334022376677,14.5946305148377,14.6418755095018,14.7588936548607,14.7009074679542,14.7588373431212,14.4689947430195,14.1011143714849,14.2871379845489,14.4607671835283,15.0268738089331,14.4731197690788 +"Q7JUN9",14.4811204721797,13.4331165864021,13.4787433435004,13.3028549085371,13.4534896932873,13.4749251009477,13.3335127038985,13.3763004244899,13.1529000639904,14.2780812833716,13.7703560387898,13.7710475804374,12.5711249289892,13.4800807912794,13.2762901005204,12.8502416822074,13.303592444935,13.6630297897871 +"Q7JUS9",20.3166176979823,20.3231986621859,20.2553018659959,20.0304378185533,20.0727325752402,20.0953280793938,20.5512093915605,20.5041218242074,20.3389624626934,19.9999691784424,20.0373815180676,20.2365883599211,21.0062221311926,20.8865762495714,20.9082924823964,20.8027083441541,20.8831537326128,20.8726913114847 +"Q7JV09",15.0728338275263,15.3205144328844,15.23269303178,15.2114099955532,15.1741103317708,15.1425641194789,15.3143672010969,15.098942925472,15.310007716038,15.3301488839874,15.2811591891604,15.1172317746304,15.058545966713,15.1841121217367,15.122963987347,14.9755384430061,14.9040053168586,15.0373836886086 +"Q7JV69",16.3260472144097,16.3079286527442,16.2528726506199,15.8536498134511,15.9019025767746,16.1021723188824,16.2907210122602,16.076653701038,16.0012765234425,15.8612387847767,15.9918742859826,16.0707403959,16.5838298337169,16.519825878942,16.3181199398602,15.9791255926149,16.0964271557481,16.1494304225246 +"Q7JVG2",14.3829121014628,14.6639490631933,14.9852977997897,15.0166885927016,14.7880688467405,14.9450083414384,14.8364165790902,15.0208530496148,14.7661076340289,14.8426635792276,15.0040931233059,14.8514124482289,15.2028699797579,14.7813001217508,14.7037208079873,14.6797938256709,14.7030804533058,14.7097976264379 +"Q7JVH6",18.9802355875346,18.8215659274311,18.8656352826444,18.9644824555015,18.9779467621277,19.0130851326501,19.0010895406444,18.9721381826029,18.9126819030233,18.8965229562292,18.995302621459,18.982263409344,19.0018070438535,19.1399773295204,19.0641527378514,19.0536458392252,18.9908525998475,19.0599649574752 +"Q7JVI6",17.2780767343,17.2723954268514,17.3707606063796,17.3552748845901,17.2587067385962,17.51174333244,17.5945468525327,17.61959320876,17.4382644828651,17.6996807604791,17.49656226196,17.5984749448654,17.5234866381232,17.8039569028999,17.4300458760922,17.4435155311085,17.4433668620662,17.5452921584915 +"Q7JVK6",17.2715058111575,17.1918105852968,17.1882992955651,17.1212001421644,17.1290197320687,17.249386774296,17.2590497597526,17.3504437253103,17.3525041091763,17.5315614023891,17.3747481429774,17.6617231296217,17.4877917543828,17.5707038061074,17.2415500799875,17.578306285896,17.6326891639817,17.5559517670957 +"Q7JVK8",19.0643996792474,19.1302229863924,19.1915844760354,19.3040339692164,19.2012315731787,19.182357823705,19.1456098918292,19.0302608835224,19.1976366709974,19.1443678337564,19.1221012064928,19.1545609494345,18.9729388507643,19.242498770791,19.0514955857726,19.2604612030999,19.1654960075364,19.1141759219687 +"Q7JVM1",15.5928474506049,15.8048453177452,15.6800050688853,16.1855249084619,16.0354405111949,15.9233180499426,15.6972094028373,15.4867784186786,15.5824967544675,16.110098693727,16.0419402954532,16.1027337058045,15.6380380711005,15.5538167845186,15.9677025764849,15.9987369560689,16.2996341552101,15.9661993272157 +"Q7JVZ8",16.4016759022874,16.0078057349978,16.1624853604192,15.8735799172687,16.1563609794083,16.1229595646588,16.3903210202782,16.0931815691704,15.9223532983074,16.0911664846319,16.0623771824873,16.0544868848935,15.9246665495121,15.9547514345314,15.9906385995258,15.4496070992667,15.8565400726498,15.8780932654403 +"Q7JW03",17.0963907401074,17.1269779847626,17.5727016491957,17.1637608108435,17.1782459584102,17.24650074903,17.3538859215531,17.0956745805075,17.2491327753279,17.2131087664433,17.2429502131704,17.015858052902,16.8981186564527,17.1332137039602,17.0546154136222,17.2915602959319,17.239762750521,16.8780165512542 +"Q7JWD3",17.443632789674,17.2045211889122,17.4180705962244,17.0759703371012,17.2001297667146,17.350063536841,17.0737782193486,17.1206873346473,16.8103538666417,17.010015574386,16.9968607487545,16.9578704954731,17.1970119868098,16.9990391084628,17.0033018095372,16.7968008800442,17.0759716398724,17.0575494826464 +"Q7JWD6",20.509943366297,20.6009138971585,20.5389601156418,20.478641164426,20.5130035938233,20.5206121144471,20.4666415157787,20.416254201671,20.4555465528344,20.4165319292286,20.4182682159696,20.5652186984593,20.3826137485705,20.349276246543,20.284255603552,20.5355475166733,20.4922030858086,20.4253261560395 +"Q7JWF1",20.0690510666061,20.1883292334248,20.1128604020642,20.3445582720943,20.4395712127462,20.4034449212137,20.6931020172989,20.7200102113768,20.5924860001227,20.7855045015979,20.6741084446403,20.8631807483015,20.7717418630089,20.733756844299,20.7117763104291,20.6964785563539,20.6046603304729,20.6766878948289 +"Q7JWQ7",14.7465296218937,14.460045576246,14.5176733135189,14.2833999250613,14.0878462597255,13.9400618527386,14.5856104270778,14.5744253596397,14.7297899690881,14.5582400894448,14.4083633871905,14.3214101895414,13.9199518588772,14.5297727886436,14.4218889454124,13.8121965753214,13.8454751262309,13.975104227377 +"Q7JWU9",15.502650226098,15.4818447910436,15.9028663897301,15.7545093237761,15.7697033638434,15.7232226764383,15.2463668402123,15.379864269063,15.5744042710699,16.1136239323502,15.3426122167818,15.3336133110186,15.0311247686471,15.4844896517486,15.4284964491703,15.4104368385089,15.6001976371123,15.0961088321653 +"Q7JWX3",17.930949742991,17.9409717552004,17.9299027413291,17.7199066782393,17.691984617377,17.6694759756168,18.2284962486763,18.1387917854844,18.2068474166436,17.7581337065172,17.7813272083317,17.8481951588332,18.0755501237965,18.1424401623652,18.0947118822014,17.9568397899041,17.9743607613658,17.9207431155003 +"Q7JX94",12.3760995901876,12.5396504345179,11.9010091402268,11.7577410859594,11.7410065629267,11.8484744347676,13.2004893535334,12.6745568169443,12.5647243151494,11.9627222122041,12.3599282172224,12.5601021427522,12.0558172806865,12.3117848039946,12.1723097024767,12.523531127692,12.2494738146571,12.8297809148904 +"Q7JXB9",16.0828622439793,16.4353539574135,16.0963765593572,16.0534831261283,16.2994141168096,15.8986623302056,16.3279592236184,16.1323219686662,16.4557549014875,16.3257965345165,16.2001997162121,16.2811965551404,16.3784915999039,16.0032578185263,16.5456179167327,16.1324547228838,16.2304998734024,16.0234391881069 +"Q7JXC4",21.7958477352366,21.6844503685197,21.8270290643241,21.685968478003,21.7216755207892,21.7902648074647,21.5508038369217,21.5463247395093,21.6314070799684,21.5065899515464,21.5553838362028,21.5000221763725,21.5919782026865,21.6549221379737,21.5072492726799,21.5823182727919,21.5507498741915,21.4575340763765 +"Q7JXF5",18.4521894803336,18.3691028221308,18.5998487876214,18.576748717188,18.5135194880451,18.5645658576168,18.5095482543289,18.5333537313862,18.5314481302288,18.3723848576704,18.4414926581247,18.4739317209319,18.480739594205,18.5977659024071,18.4345678292529,18.6259815736628,18.562357875295,18.4132301517371 +"Q7JXF7",17.7555925621514,18.0075597923424,18.0013115217384,17.8712276604607,17.8198672815213,17.9380849982733,17.7589538332007,17.8600183027693,17.7978852259976,17.943610541968,17.9347929296869,17.8760708308449,17.7590356896543,17.748940181887,17.7442230585344,18.0514267469469,17.7686685461752,17.7822713989934 +"Q7JXW8",14.5995258508752,15.1449107481903,14.7548765645258,14.9451209099761,14.837193292966,14.8320796529202,14.6054997255011,14.7153305972744,14.7232368421676,15.1323192693062,15.3177568713271,15.1978448099276,14.7491104718957,14.1092222831378,14.7576834735667,15.2859074723908,15.1930699070494,15.0517623568372 +"Q7JXZ2",17.3865963285688,17.0546542526402,17.4061126321455,17.1173337713749,17.1010347822188,17.1223468059401,17.7475833263443,17.757772344273,17.7622160309865,17.9782934572532,17.6517577419097,17.4100451740852,17.7770772262661,17.8093321109453,17.9529475229251,17.2997479080979,17.9320807859181,17.6529638518228 +"Q7JYH3",19.1849022480472,19.1285667872727,19.2967917582143,19.0627311482795,19.3806434419969,19.3019870251127,19.0614040346214,19.1287238760106,19.0376963504719,19.0052893873117,18.9686913968192,18.9723839807418,19.4911349870348,19.4703989601928,19.3465350082152,19.6179035631765,19.346340906179,19.4679712457153 +"Q7JYW9",17.1574091927159,17.1040198918472,17.0171570002238,16.6272990319502,16.6578736881533,16.7312620260769,17.6622644992644,17.5596667526817,17.6312570714231,17.003505935092,17.0240288117376,17.0104609808829,17.6700962111973,17.7645048842147,17.7488644106313,17.3427386441515,17.3532194857369,17.3243120251334 +"Q7JYX5",14.4689230233187,14.6783384784244,14.2586199210667,14.6745547298817,14.4901858987425,14.6094697433787,14.9483779530617,14.7990954835418,14.7079472187992,14.8389834614037,14.9203960201996,15.1479893625657,15.2732571567935,15.2881961720775,15.353300279891,15.2903045501932,15.3181888216668,15.4170743489513 +"Q7JYZ0",17.2144202171752,16.9743073188473,16.8941787365974,16.5711121347015,16.9565180790664,17.0236126068664,16.8297552465245,16.8431289548644,16.8135508439082,17.1406702963024,16.8311092681597,16.7953978109343,16.0113577944245,16.6100896985716,16.6881975573358,17.3009988921065,16.8531612617252,16.8533770255925 +"Q7JYZ9",18.0986110013562,17.9907007668335,18.0608222470734,18.1052025635743,18.2498711403218,18.3631539790061,17.9430697839727,18.001722134385,17.8678345778874,18.2829484997813,18.2929957949525,18.2318536343792,18.142152561414,18.0744241723812,18.0376620706052,18.1476256870733,18.1098960882976,18.1582835882203 +"Q7JZF5",17.0115661966323,16.894225401684,16.8767034472892,16.8548702431373,16.9745422815486,16.9953404239305,16.9806289387515,16.9818668459764,16.8056992441304,16.8625986198281,16.9124565795216,17.0991686484588,16.9871405068609,16.9510736633348,16.8490380493787,16.8776617109184,16.8603014440631,16.9485164029409 +"Q7JZK1",21.6373825713402,21.5912921011871,21.6952957353409,21.3949860662026,21.6281315633179,21.6930177958902,21.5883757552127,21.562544737994,21.4360747973804,21.4451335452422,21.4415670717382,21.4383696247547,21.5557487280788,21.5085391456143,21.5252811559676,21.4424589425035,21.3320109887287,21.2760464992463 +"Q7JZN0",16.9449272101357,17.147619394646,17.0246646321861,16.5025729898166,16.5477152344232,16.5384515597902,16.8162173984828,16.8129408258203,16.8467595388915,16.7612571758839,16.7922740900487,16.84638064335,16.9543934464341,16.9181290872554,16.942268449441,16.9471085040794,16.707798092639,16.7279519011737 +"Q7JZV0",15.2251692042766,15.1910875110521,15.4033801013429,15.0948666373118,15.183629906095,14.9445081080463,15.1348138847258,15.0033085264666,15.3127487685019,14.7120092867895,14.9911910373772,14.8699008700847,15.6698163800055,15.7594548615157,15.5449981551838,15.160849735428,14.8688532860305,14.9219891253777 +"Q7JZW0",19.5648303198652,19.797004498237,19.6849049154778,19.5353419058229,19.6202573569239,19.6010877275024,19.8789347340901,19.7448348122252,19.910844538371,19.7164371565858,19.8300779245631,19.8190392470173,19.9749835404659,19.7254386085678,19.7940767225717,20.0075284769373,19.9604429332502,19.868102982827 +"Q7JZW2",20.5649980295252,20.5547642560086,20.6355681253917,20.424111501148,20.4927192524948,20.4233215612596,20.6179966054311,20.6228031850842,20.6145049013493,20.4119344714134,20.4845438193896,20.505529268838,20.6458307986461,20.5926265217151,20.5961232318843,20.5063211691981,20.4237355406694,20.3961454866388 +"Q7K012",15.4349828312371,15.2081728859384,15.2932068215093,15.5487647294968,15.4804217673076,15.3709194526321,15.5204699840881,15.6504257210955,15.5567038106496,15.4698214778056,15.8076298541919,15.6518140246245,15.4292396855553,15.5124019296237,15.6453468920072,16.0384319992096,15.7826585492353,15.9237197059699 +"Q7K084",23.5962161894351,23.4507930564997,23.5255710271007,24.00037980304,23.9897041182659,23.9237848067345,23.5450469662608,23.5516663877112,23.6187729851486,23.9591825726035,23.9471533478443,23.9872571416728,23.4731353421911,23.5576815889121,23.4865237796781,23.6764847524322,23.7534471267295,23.7085358856281 +"Q7K0B6",20.1871172454443,20.2144921520981,20.1708177624656,20.3392898768341,20.2280982305019,20.310003259613,20.1675173419984,20.2599256896077,20.0832065295757,20.2170928995594,20.2136209603799,20.4174778370003,20.0635409798754,20.2242457590041,20.1705577305461,20.1596843236782,19.9938598757981,19.9821795481891 +"Q7K0D8",17.2194213207923,17.2369050314257,17.3069137534685,17.4072660427553,17.2811028924843,17.3707017785452,17.3350993860177,17.3496170440896,17.3911119423108,17.2980420928531,17.3564249078653,17.3059799294839,17.1791169633716,17.191786649875,17.2034347805516,17.3848263661942,17.4079356462444,17.2456299876242 +"Q7K0E6",16.718235356122,16.6115707858782,16.7255828708559,16.4939946549599,16.5058706576291,16.5370755750183,16.8459894587392,16.9520012422125,16.8545452818891,16.7508430851365,16.5574979012111,16.6140833427438,16.700309380506,17.0384588594816,16.9191304809251,16.9204023474622,16.7643748365134,16.7793567314934 +"Q7K0P0",15.4423809379154,15.3117014916245,15.4331173214747,15.3377117200508,15.2994565069891,15.4200163542893,15.3098800674766,15.3378737592094,14.9308603696845,15.0097189300102,15.1103458421974,14.994752762314,15.2550611065612,15.4411949617226,15.4857353064432,15.3243178356074,15.1784980358788,15.4145884834159 +"Q7K0S5",18.2321615978071,18.3156802753248,18.3791185914997,18.383655753727,18.4330434100926,18.3938568093607,18.4053102365758,18.2706238367663,18.2755002688406,18.1663338568676,18.2333874479788,18.1956946275834,18.3640877723299,18.3560498806143,18.413580718144,18.2627951277492,18.2055594942799,18.1565933296283 +"Q7K0S6",17.375517092909,17.2801658286601,17.3238624593598,17.3228258823137,17.3005180943889,17.3326116201994,17.7218484580965,17.7587156972117,17.7234349128492,17.1931606274915,17.1003826576986,17.1811611599323,17.3327483926299,17.5470702599451,17.4932827028735,17.1995178181047,17.1587657336408,17.091265416331 +"Q7K0W4",21.7948083953475,21.8580623820282,21.9373140445229,21.4751930501303,21.6026255284393,21.47791805298,22.0377624048302,21.8997088465315,22.1222246269499,21.4673459739378,21.6263651168866,21.6166508690792,21.9200895358896,21.7843406778656,21.7120052230598,21.6049984427267,21.5290952511108,21.4340849862703 +"Q7K0X9",16.6589913794456,16.6890554744246,16.8384744373085,16.9469469128023,16.7293711417018,16.7316360097513,16.6431696977284,16.6535245776729,16.6463332693077,16.5714253564618,16.7173659092281,16.6954096218453,16.7952984924014,16.7340602341885,16.6586617951974,16.3998441803906,16.4922986820142,16.4451608858198 +"Q7K127",18.2329166032736,18.8041337100519,18.2018380551352,18.710342314513,18.6795798500035,18.5839761024591,18.4881387741846,18.2905334097502,18.4642544387292,18.8148049881677,18.9629201457775,18.8596260734076,18.2699464642275,17.9355859821454,18.5042110312038,18.849472867056,18.6928689136939,18.7517163104876 +"Q7K148",16.6312348609254,16.5076680671896,16.7001999849414,16.2537127171697,16.4337474037797,16.4483549698383,16.9431094355367,17.0006795588545,16.8245516826147,16.8285211959238,16.8877564827212,16.8630179615893,17.1609624505418,17.1410294293533,17.2122541482386,17.2794406872705,17.1261004054696,17.0486026001455 +"Q7K159",14.9377732376367,14.6760000241473,14.9070495993991,14.6808550241576,14.3776321682074,14.6907209562947,14.8281122217061,14.7635868941993,14.6005690344948,14.5631268724017,14.5295990455906,14.3840928148889,14.1045800265857,14.8035889135418,14.5392672186365,14.5457593594302,14.5097996962318,14.5385071182043 +"Q7K180",16.4968173499768,16.2958573734509,16.4390286434018,16.1360314483718,16.4481445987818,16.4153009371015,16.3437965676803,16.2651000014854,16.2943001937779,16.4123746048333,16.3381352896118,16.1973109919595,16.4041527538964,16.3338119123484,16.3696858851159,15.9801236637744,16.0922472128546,16.0576697371766 +"Q7K188",22.1400496667978,22.0975261056183,21.9894616110886,22.1852098914962,22.0698951348112,22.2272418162324,21.9176764505349,21.8152356923774,21.7054841104376,22.0652632111359,21.9911592181501,22.1800805903396,21.646913330916,21.8716717985763,21.8223112680343,21.9507789465971,22.0604035479447,21.9813121013455 +"Q7K1C3",16.8621395874139,17.1385236580811,16.9419359696895,17.388471434005,17.2643608625342,17.3478895765865,16.8841816445071,17.0304981088003,16.9523919496824,17.2853305196732,17.2970896168821,17.3334473162329,16.9521557352902,16.9625898495066,17.0086472449338,17.2921989799269,16.9714158050121,17.0801658436913 +"Q7K1C5",17.5513957436404,17.5041585624254,17.5644626665299,17.5323157581418,17.6796818091971,17.7026104076197,17.4714899849794,17.4555848341474,17.5123333160639,17.6233765533473,17.4429486014983,17.488861264464,17.5023680570342,17.5198209554429,17.3663129771381,17.3147314903492,17.3934828247813,17.3610969556768 +"Q7K1H0",16.3219965898994,16.3165704144125,16.4453116088723,16.3296749507174,16.522259046665,16.3955795554377,16.3441884081021,16.247968394791,16.2464085413262,16.3491459822865,16.3969491579627,16.3808695702459,16.2120072142334,16.2235978183969,16.2373941694012,16.3577671354925,16.2074354485031,16.2092168354478 +"Q7K1M4",17.1601170446428,16.8880912181687,17.0782842933681,17.2460313561843,17.0673053606259,17.0524553066116,17.2982576640928,17.1430864566581,17.1364892630364,17.180106583385,17.1649245916342,17.100941365051,17.0447104962254,17.4630221706475,17.3868604504686,17.1629610490265,17.3657543958224,17.3371535150212 +"Q7K1Q7",16.7532202496199,16.5981219641438,16.6518399912375,16.3580286185017,16.4951676765186,16.4726662510158,16.6669211288563,16.579639095417,16.5283594004246,16.3620551293602,16.3906919233203,16.5072260058401,16.5098929768583,16.5890463427269,16.6563670015214,16.529901441298,16.5273525423678,16.3635608944551 +"Q7K1S1",16.4046510720111,16.1086851021652,16.5209296149484,16.2324522407595,16.27987681385,16.3741891721966,16.7128111585098,16.756443661576,16.5345423334999,16.6583948031767,16.3973669007697,16.6516680099515,16.8034547777537,16.9360645816582,16.8209058395906,16.7000910163862,17.0334180085778,16.6096200984099 +"Q7K1U0",16.865657635346,16.8122083301297,17.014754685425,16.5628748881525,16.5226944824154,16.7530700785758,16.8212656906705,16.8149577459889,16.794750554497,16.5285006073063,16.8361008680279,16.4282512587148,16.76010486701,16.6442576208733,16.6957583954468,16.5412007161206,16.4493853571708,16.3930194319465 +"Q7K1W5",19.7922447106636,19.7664372269542,19.7709965427067,20.0387163012464,19.927963496236,19.9474464520738,19.7007296844901,19.676497199093,19.6070602451163,19.921012106504,19.8517794479579,19.9253941821091,19.5017182232796,19.6450553518854,19.6834228273191,19.7821507178537,19.8688390219108,19.8022514947123 +"Q7K1Z5",16.1073094477844,16.4613982061563,16.1803882737047,16.2488113299674,16.2161897218106,16.243652756039,16.1025716744595,15.8969860320392,15.7713611219697,16.1572694361832,16.0101692175154,16.0821529960301,15.7852061375852,15.6115717176234,15.8413507578806,15.5350822779078,15.7399354087424,15.8173443982634 +"Q7K204",15.3160674692409,15.0283353121798,15.2804221310517,15.1041621834406,15.1704281143472,15.0520328672278,14.9516527653072,14.679210833945,14.7699827446077,14.4189971822674,15.069870063775,14.7340004222894,15.1497876416804,14.7639929866191,14.7795041161004,14.1267970966175,14.3556270276879,14.4515220572772 +"Q7K2D2",20.2685250205624,20.3003770728793,20.3355301251208,20.3589019539142,20.391778536798,20.4382261969766,20.2824177526216,20.2568637372557,20.2923156184792,20.5306051271045,20.4618245853232,20.490414769926,20.3958550708082,20.2354258699241,20.2792469261121,20.3046961868465,20.4947313096772,20.3052674752427 +"Q7K2E1",17.0661490610971,17.1454717216937,17.0319638199069,17.2145638924492,17.296590342803,17.1550171148299,17.7503483223709,17.5544163787514,17.5925862531572,17.488118983804,17.5015926321646,17.7720867960573,17.6743079382947,17.710527023977,17.7561081604918,17.4624192806261,17.4473093792523,17.348145334199 +"Q7K2L7",18.6360365476264,18.4557681405596,18.500495459169,18.5057009319629,18.4138564578709,18.4505235281325,18.2328897198102,18.1940350420492,18.0632790468229,18.6677835493152,18.2549245441585,18.2541315539013,18.2945507176515,18.1105186548921,18.1671810483624,17.30754785986,18.2154064866959,18.2088986898382 +"Q7K2N0",15.530419941561,15.536013720872,15.7060835538305,15.584234156984,15.5477128313172,15.2572064903941,15.4235788619152,15.2993790548762,15.6681372029,15.2105165059602,15.621097096781,15.2710718120094,15.4590231928695,15.3973658665274,15.3344936679186,15.3911910282184,15.1973951171347,15.3619709604559 +"Q7K2Q8",16.3675326598784,16.2442435051203,16.2703476762955,16.3579315660374,16.2908559284605,16.3143939827533,16.0239784939872,16.0009800874515,16.0116477173879,16.1657590280567,16.2768470844231,16.169376957347,15.8290316280125,15.9817595331236,15.9235098240605,15.9053747891752,15.8549220265684,15.9603320073032 +"Q7K2W6",17.1803618354366,17.2246096839584,17.5161650375389,16.5610516279797,16.5409265595423,16.6685173469427,17.1258848972443,17.2695300839033,17.1104213204434,16.6578139380773,16.5526410695379,16.4649485501299,16.9532800226796,17.1556409912851,17.0320700142669,16.6009496140313,16.3359935472219,16.2872196661271 +"Q7K3D4",18.317901127394,18.386838102193,18.349332036551,18.6145190569543,18.5768846559715,18.6278763383552,18.5950209246388,18.3613590823707,18.3848256933831,18.7419741684861,18.582611313526,18.5914875796847,18.2661155982408,18.6076223921852,18.6771527021662,18.7654368499009,18.7856521793683,18.6702933754746 +"Q7K3E2",20.8119666370631,20.7537231057963,20.9762710396814,20.5635142012349,20.520630792305,20.5394395466172,20.574818678342,20.6223560379416,20.6255575140178,20.2867010239207,20.2475143436895,20.2126004562918,20.3529224201755,20.3913562039999,20.2547014763119,20.479643741567,20.533986218571,20.4609966693832 +"Q7K3J0",20.1895571706057,20.2230860606959,20.2522702557487,20.3199181184472,20.2922008585041,20.2584164292777,20.4188440112445,20.3850445254572,20.3511407094598,20.2581432001039,20.3259062749973,20.3875435336284,20.3561352990452,20.4393854409901,20.4091782772945,20.6341856259105,20.5111602647124,20.5182342199479 +"Q7K3N4",17.0626781830505,16.9752799072422,16.9413151257621,16.8389027459771,16.7821014519259,16.8291706342393,17.3422782017199,17.2854866061106,17.2763897479065,17.1354482124671,16.9853355292792,17.2190886458919,17.3411100363344,17.4394208292701,17.3466771217983,16.9600526944384,17.2128457501592,17.0678287983892 +"Q7K3V6",16.135792761461,16.0390886779499,15.9676500430583,15.8243855952741,16.0812194915647,16.0822104273719,16.284884180476,16.3039917564484,16.0816860487682,16.3759326762868,16.2524747166199,16.2435938177055,16.452663716892,16.3593237066891,16.3701018283688,16.4915785757672,16.5291391568851,16.8199953408845 +"Q7K3W2",17.3401266514095,17.2889754662196,17.3385083854578,17.6182604160154,17.5256105206291,17.5401145025197,17.652384263948,17.6633926272943,17.625484027862,17.5697531127203,17.6602746564445,17.6976165333179,17.6370940371846,17.6815679239389,17.6801905404291,17.6796799351839,17.6774772219353,17.6153844268752 +"Q7K3W4",19.5393717481016,19.2885931811038,19.3669635668713,19.2754333596154,19.3250609301461,19.3012621380314,19.3239292853788,19.3345817899399,19.399071111766,19.1783620166724,19.2500651613527,19.2317459063973,19.0771758164708,19.3887655462424,19.3515866707091,19.4880034991049,19.2952091165591,19.2316463315689 +"Q7K3Z3",19.9341022643148,20.0172836505095,20.0831726995279,20.0353068807501,19.9684667353797,19.9978812314708,19.8185960966506,19.8226372087615,19.8589970877584,19.7472247527675,19.8657593339029,19.8198414175938,19.7428984660154,19.7762551692164,19.7423096471636,19.990809170526,19.8185355332545,19.7667355475099 +"Q7K485",20.3585292500461,20.2043333659277,20.2548307058033,20.2930383907326,20.2555190908679,20.2913532545279,20.5928536033854,20.7065668347259,20.5169870537615,20.7816591485005,20.6362490267134,20.6551468693134,20.5394428016592,20.7453144132919,20.8749480935427,20.7874736569714,20.8050141197684,20.7597308743464 +"Q7K486",17.6220470677097,17.6111488502999,17.6607077489945,17.4250776579677,17.6260488717596,17.7077356353886,17.7485336981861,17.7461925216595,17.5705512922092,17.7026910111415,17.678204244201,17.8098610171357,17.5169705628253,17.4587014954659,17.4732539248863,17.6205633552782,17.5155873697226,17.4137737344943 +"Q7K4T8",13.657714059915,13.4212717200947,13.5013625335333,13.2939934124739,13.0730176944584,13.2397861941019,13.8549598579374,13.8477732410164,13.9098750935302,13.5011115563518,13.5826362174371,13.5992075526884,14.1170016462139,14.4236622780399,14.4649788167342,13.7723674457109,13.8487868275565,13.481937788015 +"Q7K4Z4",14.7415284755644,14.9594145934665,14.9447589489592,14.9407880911846,14.9992676623775,14.98603789242,15.2661875184325,14.9876990277153,14.9939504170638,14.6845428258742,14.8700367357817,15.101170491156,15.1009304511847,14.8275145762659,14.6765863709581,14.8671814901692,14.9572262568028,14.8986547318526 +"Q7K511",16.1021245510024,16.20573094188,16.2117660238286,16.5603920300521,16.5475985720923,16.6561487993122,16.6411349501404,16.7730422503036,16.5523218410696,16.8987577844731,16.8895514941447,17.1437969499448,17.246455333887,17.3997248393608,17.2678085714318,17.1726798360838,16.8058963878574,16.7897023000519 +"Q7K519",15.2207892985112,15.6443081218924,15.4780638433159,15.4971204177075,15.5474819925049,15.7019807437599,15.6017814617991,15.7446877470555,15.5568911629172,15.7761876707714,15.5436005887552,15.677295466869,15.7396304127274,15.7603078057616,15.7406800265223,16.0880074165943,15.6831304221413,15.7686054347267 +"Q7K549",14.4396981280231,14.5858105343939,14.9130344041732,15.0974858325037,14.6855361423792,14.6644160696527,14.8228206489336,14.7665984232261,14.8534492451242,14.8842760409412,14.7570764366377,14.8704405636469,14.0542436367887,14.6960013466807,14.5678334655393,15.1626706661773,14.97017207005,14.5920212052312 +"Q7K568",15.8841638261061,15.8534979794062,15.9213153591277,16.1013277805638,16.2608767988195,16.0643204330001,15.8531412580749,15.7498625122222,16.0254376187793,16.1005469523094,16.1455282229588,16.6667120942667,16.0683417209219,16.3054400242472,15.8275861670032,16.6621993388275,16.3545153391495,16.1643492046265 +"Q7K569",20.3403889463716,20.1676326346223,20.1023708739534,20.3091730522463,20.2235440301921,20.2677398899633,20.8030990427088,20.8867024444492,20.7694260187852,20.5692256225223,20.4486872859006,20.5563561750862,20.7907539869186,20.890518891757,20.9644839784693,20.7665003434252,20.9620557072718,20.9187640579355 +"Q7K5J8",18.2886790697937,18.3705844010889,18.4843148671707,18.4594496212259,18.5059180914595,18.2946727759877,18.0431696108737,17.9195176922614,18.1993084924758,18.1337526841216,18.1889094036037,18.1147804374865,18.1576798437171,18.1803270099627,18.1099493918929,18.3483182550209,18.2657924863768,18.2280231197394 +"Q7K5K3",22.6703889296359,22.5697903612336,22.6414583258176,22.6879489899444,22.5881056877402,22.6648746435633,22.8369375266206,22.8298875266195,22.7975285961629,22.5672182458179,22.5733360372677,22.5522105437548,22.9305668234536,23.1108981418642,22.9944637305848,22.8805365266611,22.9015792874083,22.92306120225 +"Q7K5M0",17.1568377106994,16.98257750517,16.8783157449757,17.0059533667605,16.5911547974804,16.6193282713756,16.7234161506226,16.7298513241446,16.8226448103412,16.4916954042449,16.3231231017681,16.5698917802433,16.3098659982035,17.1126097704852,16.8223883897262,16.3078031850779,16.2562553165606,16.2830028189469 +"Q7K5M6",18.3955281990235,18.4205821103357,18.4025377676787,18.3986516695149,18.3466853524836,18.417566755645,18.1893037902162,18.2708091597441,18.1973244526533,18.1613488653417,17.9659656590757,18.1689418130277,18.1354811654388,18.2181675173066,18.1184088424342,17.9170415595875,17.975145450177,17.8925756176837 +"Q7K738",19.8430393306076,19.8280219339545,19.9641377464691,19.8297135674799,19.829345692557,19.8711955452129,19.7968913624447,19.6839670628233,19.7158437763438,19.7271156467543,19.7299051581866,19.7023400498575,19.73012656915,19.8543233108036,19.7684981604539,19.6926588048509,19.6939821229624,19.5975300029502 +"Q7K860",20.2847322073615,20.0998858820736,20.3917618191853,21.2772523398192,21.3286501497848,21.3169919647985,20.5088110184777,20.4787344085388,20.6637115348655,20.2629896598299,20.2635544679666,20.1860418605066,19.9334365038096,19.9725723337973,19.7914047448387,20.8910738093553,21.0148982964921,20.8083836144587 +"Q7K8X7",19.3285020632632,19.2856499372996,19.2624265692944,19.3232769610222,19.4833140686678,19.5577304340734,19.5597128779313,19.4705410829235,19.3952006461953,19.3843325916479,19.3581639554154,19.4831224013125,19.7386734729885,19.6526859753056,19.7611635709758,19.5995030142738,19.6836459615151,19.4743573592755 +"Q7K9H6",11.5976490395156,12.2979391329211,12.0168891960721,12.019273244911,11.470542160431,11.7056354992336,12.0086780930017,12.4126679815666,11.7842729403264,12.2425476710818,11.665730409355,12.1900764913845,11.9855959329361,12.2977722569966,11.8708517545165,11.5241487761729,11.2332408163489,11.810166876086 +"Q7KJ08",14.5119636186018,14.2467014094386,14.3829705602364,14.4032141555205,14.5372775302747,14.6017864212557,14.693357781787,14.4107506046711,14.4838334197865,14.6913264887205,14.6563085207195,14.5007277240352,14.6636165769575,14.6432612267568,14.7775250421901,14.4399560606578,14.9091353903842,14.6565915147411 +"Q7KK90",21.1306327479583,21.2197362832441,21.1486436154545,21.103599614868,21.1067489618072,21.2172174570108,21.004964386965,21.1157546222938,21.0367001163579,21.0539876268878,21.137955990769,21.1584233754832,21.2050017260111,20.9772378740228,21.066581173901,21.0412333134081,20.9819856839613,20.9118536778909 +"Q7KLE5",21.4709378612332,21.5187522650569,21.5537771582084,21.5805265822502,21.4982962175704,21.4777568833177,21.4123498869932,21.3342622809483,21.3959476195051,21.3018441825515,21.4397961501063,21.4334559706979,21.4449962381393,21.3585927375162,21.3834779475235,21.2564497417054,21.3174048416748,21.2226889136202 +"Q7KLW9",17.0721106468361,17.0859604227789,16.97436189356,17.0984202655024,17.1341948177331,17.239625103926,17.1295617819505,17.2072139181274,17.0065227508087,17.4197387850676,17.2493067697836,17.4101383529222,17.2488208340662,17.246156251193,17.2482585186351,17.4291036889079,17.4749238227149,17.5188493824787 +"Q7KLX3",19.4214327929355,19.3632756383831,19.3677455885948,19.0236167167345,19.0768680597424,19.1957796379717,19.3961408008562,19.4449841964786,19.2275323214772,19.3410829778926,19.2775375409236,19.2950665904132,19.228890787731,19.3596477541715,19.3803548106207,19.329802872747,19.2186537591978,19.2744879998193 +"Q7KM15",17.1019403070554,17.1259647723239,17.1262614848344,17.2299953035761,17.0810584596529,17.1463447323658,16.826609984907,16.7613320608537,16.8716937357687,16.9109192352898,16.9934745040105,17.1127054541267,17.0209121916461,17.0581406963837,16.8465998592991,17.1923729213267,17.2627794505764,17.1791446774066 +"Q7KML2",13.9738139673861,13.8943515160542,13.6708327037292,13.4821191460419,13.566547135169,13.5923253745662,13.5831566463699,13.5470427160105,13.5647110448845,13.8567693676155,13.5046246652206,13.4694301170952,14.2901236389993,13.7138698167278,13.8997154428934,12.1007527364497,13.0602996536803,13.0897208196939 +"Q7KMM4",14.3579064253225,14.8415025579633,14.6392833374683,14.6035714043032,14.2697441560964,14.3700677209937,14.4395031489504,14.5116272472947,14.3004807896455,14.447056286506,14.3939752901462,14.4720702707281,14.4219176972908,14.0685657074622,15.3530350242914,14.642880998649,14.8274210020591,13.7778988178949 +"Q7KMP8",19.1056439811147,19.1176439136059,19.0667634259362,19.00533743044,19.1248952334712,19.2640482468492,19.256096268587,19.3081933847744,19.0885488482625,19.4023050405578,19.2313222520574,19.292771879801,19.1506134673738,19.2212817680001,19.2074663573216,19.3227108269716,19.2393704631358,19.3231082568743 +"Q7KMQ0",20.7316084615264,20.7525688704619,20.7548044140347,20.7339993455724,20.7429052636693,20.7106004053626,20.8368633235989,20.852385498143,20.8640848307233,20.861677359908,20.8371271377982,20.8864084313001,20.8730623774126,20.7967930622499,20.7832884708012,20.5739847363282,20.6294157720243,20.6120090521248 +"Q7KMS3",15.7275359467635,15.6017586175519,15.8653641451864,15.5862995080032,15.7126663818691,15.7562862632477,15.5843499665938,15.5261386222282,15.5637113306557,15.456893957721,15.5128547427132,15.5411459696098,15.128422420089,15.5161996092196,15.2925555694381,15.7530731589326,15.3669569845211,15.2175116799656 +"Q7KN75",19.3252103032514,19.2665678986589,19.5406100954248,19.1064390043778,19.158960848251,19.1441083775808,19.615716156862,19.4545944683263,19.581589769017,19.2513988058992,19.2505973274973,19.174113298121,19.6590392551356,19.5339008207034,19.5783525498338,19.3378223781356,19.6310045402247,19.2768518136842 +"Q7KN90",17.4403207501402,17.3510578336809,17.4783296898765,17.2233625264207,17.3080075020615,17.3554535335752,17.3528580349338,17.3210194966704,17.3220535312337,17.1809734378597,17.1911894044552,17.2407553019941,17.25181092704,17.2744220277963,17.2485768690252,17.152561708691,17.1561911204212,16.9567184593807 +"Q7KN94",22.682788360741,22.6936826867117,22.6948042797194,22.7431943002029,22.7649995576454,22.7440482785404,22.5931555672815,22.5587214134523,22.468640286734,22.5398066923139,22.6223219468505,22.714358345416,22.6710087445808,22.629135564324,22.5714980897463,22.5263633149641,22.4874558111003,22.5629676999281 +"Q7KND8",15.5234494853519,15.3687871504243,15.6132723009195,15.4427845169765,15.4353638928801,15.6222224561892,15.5823095010209,15.5078847590427,15.4514697546897,15.4076711238457,15.4191507849924,15.5533506842112,15.4316107671149,15.5021189357298,15.1667113131261,15.2510422407024,15.405562111943,15.2318411258767 +"Q7KNM2",19.5602477955345,19.4961788717266,19.6145672273374,19.7538802607989,19.7332324096391,19.8623713209875,19.5227601792905,19.5928554805813,19.5043946090841,19.6422017352074,19.7083865078598,19.7165282574339,19.3871468658851,19.4993142427896,19.479340873471,19.8752511555566,19.7115204796766,19.5642857039591 +"Q7KQM6",15.1780113306188,15.0162773792779,15.1743907494129,15.1773853607845,15.2109848334976,15.2260632158293,15.2653432461596,15.2883407877199,15.1721679832373,15.0130286432779,15.1003692189248,15.2099118719024,15.0610350722196,15.0702878025465,15.1546606261402,15.2302492533379,15.2387928844316,14.9878584598763 +"Q7KS11",15.6539633525928,15.6918603681268,15.7144372690042,15.7721109434593,15.8147693904812,15.6906592711983,15.691533614729,15.4275827759236,15.3902082837721,15.4471894167297,15.6021770202127,16.3894975086532,15.9141498408534,15.9090619026385,15.4913217906335,15.438377073224,15.4718727842053,15.2412001183269 +"Q7KSE4",13.8125782563416,13.7060997764393,13.8703483157254,13.8814304113861,14.0693165796574,14.0696372048899,14.0675927479628,13.9291956499681,13.8969277890481,13.7198333783288,13.7276697217619,13.9342601638694,13.6564263452768,13.76428229148,13.4980534487182,13.8144647428695,13.7557618628588,13.6830989599144 +"Q7KSM5",18.8342856450122,18.9742794219687,18.9106193481133,18.8767036089697,18.9215861265493,18.9258848639109,18.9394496733561,18.9206544053728,18.800679458377,19.0693981605817,18.9550547262572,19.0322879105376,18.8525313195044,18.8366080875197,18.8200999257445,19.0108444902212,18.9750301299777,19.093641390962 +"Q7KSQ0",20.8671116660092,20.7444726012992,20.710653976832,20.6963468258011,20.8006287559965,20.8334638196687,20.9720899104507,20.9482734661439,20.8211743365595,20.8660886002126,20.8290985158961,21.0157776795113,21.0558251061378,21.0761021417571,21.1250675414796,21.0798415081055,21.1387281356242,21.0311662626659 +"Q7KTA1",17.3508066685577,17.1618022297729,17.2690656438103,17.5438825615291,17.1317972203264,17.144405469207,16.9933102015668,16.9375840027525,17.0899966566073,17.1904221338182,16.9546556735898,17.0513261113246,16.2326061835301,16.9782073471367,16.8859687910681,17.2797448747441,17.4267261501679,17.1500099517288 +"Q7KTG2",17.8943463882928,17.9141159684205,18.0002843584475,17.8022625264056,18.002834739809,17.9804885504868,18.2410037224493,18.2755217254104,18.2115974620405,18.1408198754274,18.0126776358998,18.0778382339279,18.1665996992325,18.0418133035606,18.0564738587028,18.2626350635109,18.2607039022181,18.1809848117131 +"Q7KTH8",17.4449657843881,17.6537031495954,17.6524009292549,17.6501879372173,17.6599291655128,17.6079449333977,17.6212156277563,17.5375043616987,17.6214366056403,17.6552359915019,17.6837062755108,17.6891695315396,17.6588441502932,17.5416344391282,17.6165298265995,17.7155834952466,17.6695555949575,17.5585511599714 +"Q7KTJ7",22.1422676298958,22.0888729800949,22.1014427860369,22.1841311863152,22.0172274690345,21.9822227603268,22.0134512425134,21.9907400076595,22.0097707287087,22.0949517195064,22.0779350881366,22.2085016520398,21.9834118260731,22.2005864014578,22.0842411065393,22.1483325140131,22.1911841719336,22.1803670846654 +"Q7KTP7",17.9208658172012,17.9363066030722,17.793427631829,17.8730471287521,17.8556169321334,17.840918045127,17.816265027906,17.8534747604054,17.9323223308099,18.0114478728029,17.9261855400716,18.0043137214167,17.8182124604745,17.8465903739499,17.8264660336548,17.7795857513553,17.8012498488597,17.8219762956546 +"Q7KTW5",21.5542227793098,21.6319710546696,21.7118131881866,21.5701251274556,21.61754009957,21.5532166763356,21.6055431412903,21.4357076528246,21.59499363238,21.416559557492,21.607726411129,21.4107237457866,21.6982930869189,21.554807491826,21.6059303358012,21.6232859541589,21.6202769366065,21.5913520681358 +"Q7KUA4",18.915607667437,18.7527417087274,18.8904650906168,18.8802736948935,18.9477574195012,18.8702255027896,18.7895065293612,18.7635258424331,18.7361284184955,18.8449643571793,18.7583798807385,18.7989915539936,18.6048448073496,18.7601853950272,18.6466364106607,18.6042685620848,18.656875371878,18.6970186417491 +"Q7KUC2",19.4682757554349,19.4603837615672,19.4759461261575,19.2935781484666,19.3066185984104,19.4794421302929,19.25783253,19.4413428979492,19.1760990775086,19.4760900656072,19.4136834934258,19.4012722188687,19.1502353109381,19.3030752151457,19.2489387415797,19.3732433500976,19.0941511940461,19.237556866137 +"Q7KUK9",18.3099589614201,18.5494886718995,18.1823337107812,18.3040944619233,18.6533592774292,18.3739178502763,18.5348114660353,18.1692791774194,18.2644897169816,18.4036444041099,18.5255971705272,18.6008125357017,18.5549330852488,18.289506818374,18.5369353979975,18.3860434566014,18.3062547196896,18.5349966236005 +"Q7KUT2",17.9324306514513,17.9833716245797,17.9239241964798,18.0461696728013,18.1409151563075,18.1111117780348,18.4355360658308,18.4198645616505,18.3208182765249,18.2160376799094,18.2327665978122,18.2287692524134,18.3150502874719,18.3346731907503,18.351961398162,18.3188887721677,18.1525219985322,18.3275282280175 +"Q7KV34",20.8492699788198,20.94654102928,20.8053300761535,20.6243784224899,20.7399343044197,20.6665352561432,21.0375577962006,21.0683907328705,21.0500436890829,20.7372330270861,20.8123152581187,20.8573335359596,21.4173127228253,21.1316671846452,21.3418760058155,21.0733518899392,21.0402553280269,21.0179852742062 +"Q7KVQ0",15.4844415244381,15.2958665916388,15.6623073562607,15.3573514520295,15.4795259134544,15.3430081796235,16.0242107803943,15.8613770048792,15.9345611360162,15.6868841643453,15.8572910336925,15.8502114981849,15.6657784830851,15.7267658312818,15.5628370842163,16.0209846760753,16.018824705421,15.8867258260661 +"Q7KW39",21.514666728173,21.4892740487193,21.5521335524871,21.7992888207899,21.8168186065182,21.803143394161,21.6754566978244,21.6478375550484,21.6604862888732,21.7994632916241,21.8431344186433,21.8331324722221,21.6160991408649,21.7457104839295,21.6605197384721,21.799116962287,21.6613165287046,21.6946761953478 +"Q7KY04",13.8639980978156,13.7947808649593,13.9950604703947,13.9032812474014,14.0412857924448,13.9078350320533,14.0560549013267,13.8695950628644,14.0561012529432,14.0790723082149,14.3295487382675,14.0722742625022,14.2448837485958,14.5587794201717,14.3295413386099,14.3126989713563,13.8659993960031,14.0991769182075 +"Q7PL91",19.1236626039533,19.1525219615815,19.047580378983,18.8148170032371,19.1847146175888,18.9022477990447,18.7325162433999,18.6040794020918,18.8010157638745,18.7113771358302,18.8921037587101,18.811046081419,18.8785103083208,18.7721115159911,18.8593958845493,18.8597444928204,18.5150965315985,18.6993418796913 +"Q7PLI0",17.5323159501106,17.6826336576222,17.7299881250958,17.7775976806501,17.9023718522222,17.8773204880181,17.6217213184673,17.8102757228798,17.5965904661975,17.971242354601,17.8208961049573,17.9169408527367,17.66313202493,17.6220971247939,17.6318166978354,18.082809569215,17.8105444354986,17.8961622680905 +"Q7PLT4",15.6813084978854,15.6891639696305,15.6766337323133,15.2339737889546,15.8762056198224,16.0223466651015,15.8540730071797,15.8059963359908,15.4178533197705,16.4047298428633,15.9831750757593,15.8908820052479,16.1058862096933,15.6873242692672,15.8315976832235,15.5189968023981,15.757102878504,15.9596547433177 +"Q7YTY6",18.4233015901196,18.4744955112843,18.5318344413094,18.2630422669464,18.5315267487737,18.6163132801063,18.5021320462984,18.4575591449087,18.2581199822091,18.3778733426837,18.3488779668346,18.3788554081771,18.4495493786594,18.393932196305,18.2300649289941,18.641128751598,18.4506358081991,18.6418393355094 +"Q868Z9",20.6864939145513,20.6348308008517,20.646881787535,20.4127061793091,20.2518564800766,20.2161018622214,20.5968016067401,20.5054030782394,20.619145452753,20.3458372074399,20.1331646605679,20.1980283209699,20.1648401355511,20.5824185051455,20.6260150236913,20.0850691563894,20.1840746751,19.9855757528104 +"Q86BI3",17.832438741227,17.8803160923071,18.0193751749601,18.1488665336105,18.2178319844796,18.2813840343113,17.9521260309083,17.9594568905958,18.0693279605144,18.1900283797791,18.1084385094902,18.0102486417972,18.058340410021,18.0126664597129,17.9315735504914,18.1549974732007,18.158087632161,18.0248882066722 +"Q86BL4",14.827317338197,14.7609861312627,15.082554828513,14.8973565608937,15.0783332680816,15.1385675163617,14.8912339590739,14.8350477481058,14.9998845594674,14.9811441017755,14.8975439030323,14.9795877670251,14.9148206030803,14.9554812580737,14.8128608234131,15.2340765996806,15.2185568541452,14.7324936679208 +"Q86BM0",17.5568635245814,17.6595882022553,17.7103344644369,17.4000233127183,17.5220636052647,17.4704631217874,17.4765301513813,17.5030741398484,17.3150629100439,17.5486259437446,17.4720933730352,17.4164007040922,17.4824064867845,17.3821235093371,17.4214472962609,17.2574832223048,17.1829898117742,17.3882241448935 +"Q86BN8",14.2238584809188,14.1764210615183,14.6065521056372,14.155103649272,14.5197843983993,14.5028906562694,14.2039872370228,14.1785704671377,13.9749466893914,13.8792903415493,14.1119931942931,13.763342287153,14.3594298872877,14.0678192351014,14.1536150488859,14.3989209224534,14.1660021620541,14.219243731167 +"Q86BS3",18.9738536059773,19.0516050591532,19.0802784659433,19.1655609345797,19.1783347924187,19.1466010594349,18.991603747261,18.9221210083343,18.9570015333801,18.7915599204093,18.9074573089456,18.9324207824794,18.9819070127554,18.7870995663734,18.8716461232891,18.8089370239495,18.8668045097072,18.7254742804056 +"Q86PD3",18.9627491013708,18.8817035202111,18.926609958188,18.884251585201,18.7815255813373,18.8514871379806,18.9566548129731,18.9314526651687,18.8785883459755,18.8234765100205,18.8189769673764,18.8342696793008,18.9250880641548,18.9772425525343,18.9711333398974,18.7972310603968,18.9585498474891,18.8873626727748 +"Q8I099",16.7831778391223,16.7346747894108,16.8216897739917,16.505756106626,16.5851693753911,16.6575275829812,16.8849080913504,17.0189217960722,16.859646986511,16.9974911652506,16.9967459327863,17.0351778912933,17.0183919722085,16.8804387156958,16.8815935582937,16.966329998108,16.9401045633095,16.9004193795948 +"Q8I0J3",14.8259535821421,14.7993342760046,15.143944101171,15.0719129913992,15.0104149763361,14.9929673531669,14.8104614238906,15.0955336447134,14.9877622037436,15.3834199408421,15.1378965006637,15.0585175311986,14.580652697282,14.9671937387036,15.0218119545302,15.4794155561948,15.1414430553296,14.9468130479406 +"Q8I725",18.7166721395861,18.6933707064316,18.9583484865005,18.9673149932299,18.811050839243,18.799350747693,18.997990400232,18.9538162188329,19.0169502041806,19.0616482231732,18.9035141435147,18.9226775129427,18.709472216629,19.066057964622,18.9303084473275,19.078362144009,19.1036502442151,18.903824718215 +"Q8I937",13.7592679603772,14.3465758697921,14.2768490166786,14.2176901149555,13.9623353560256,14.2173628364195,14.0516450344119,14.2980162037707,14.1394056876321,13.8870621139966,13.9267729478379,13.7337369415745,13.530744000367,14.0316019534325,14.1383576814866,14.6399159265095,13.521022819759,13.5806129868265 +"Q8I941",19.1098118832168,19.183411369181,19.1765643838466,18.9665024463515,19.1078945916489,19.1998432990355,19.0048306750688,19.0300097014943,18.9299354990425,18.9199532053628,19.0034027321936,19.059046259109,19.0427874651463,19.1148250754568,19.0531235725353,19.1430480809552,18.7473902861266,18.7684207425323 +"Q8IH18",15.4444759755701,15.6418568528655,15.5409111319293,15.8001361381801,15.5563675723471,15.7174341526921,15.7135854544983,15.6580487283866,15.6476405406241,15.6788807116417,15.5611006521671,15.8268325357857,15.4960738807509,15.6444439618975,15.4380285454721,15.7875813053082,15.8589156982855,15.7498865594461 +"Q8IH23",18.1013171829673,18.1135671994509,18.3528749825462,18.273746448318,18.2713343161367,18.166410857452,18.3144088127485,18.1901682987855,18.4825446761026,18.1836769846265,18.2057341165796,18.1899387944005,18.1518542421566,18.2341475802898,18.1117251969254,18.6138641044331,18.6239162640076,18.3353732678234 +"Q8IM93",18.9788469754305,19.0654762133077,19.2371825581231,19.417240949761,19.2626316065078,19.2952691968447,18.7455707799623,18.8736843874212,18.9145928352453,19.0135687193513,19.0626390771161,18.9444134597679,18.9055272868516,19.0059023586697,18.8323753695063,19.1053711773937,18.8957922457279,18.942292469263 +"Q8IMT3",14.5590141344163,14.6868253511561,14.856515276317,14.5776471713135,14.8100616116278,14.6855942725149,14.715688931892,14.8297919068879,14.8715668499379,14.8126661086812,14.6783798895253,14.6563682663495,15.227238203292,14.9587404638648,14.9430580181672,14.5997069079241,14.5281622344571,14.4788587742323 +"Q8IMT6",15.9922842496027,16.2116330620026,15.9292406028687,15.6232326665577,16.0270622585297,16.1734726973213,16.2620304877744,16.232302799825,16.0133572520248,15.9453024942729,15.9690552115954,16.1244395832959,16.5047711074242,16.3258742751901,16.4328549538355,16.3442404121325,15.9059338106217,15.9984963284183 +"Q8IMX8",17.1365948995229,17.0366866703895,17.197528169618,17.3234730816591,17.2206321252146,17.2608080972319,17.2229121020253,17.0886187280599,17.1163952370138,17.0775865563378,17.2779179413036,17.0656728607459,17.0638923836733,17.2080947850337,17.1163675231652,17.1598550288498,17.152363802067,17.2275421642934 +"Q8IN43",19.2416614413731,18.8787775177568,19.4715436633754,17.6949499544687,17.9714234604967,17.9238084461912,18.3359715891601,18.013654223041,18.329199395176,17.2585164899497,17.3956392509729,16.9558266383121,17.5227743302447,17.7158294173295,17.373195567861,17.2693226756277,17.347872611227,17.2696227699083 +"Q8IN44",20.4269984482587,20.273062692838,20.3559457103554,19.9338648582558,20.0232721603731,20.0657595059439,19.901540449614,19.7776840365561,19.8451177675074,19.5266175180435,19.5591753334615,19.5884403291438,19.6739761291755,19.7770443304176,19.5734774879492,19.7472474437647,19.8000062934659,19.7815040462125 +"Q8IN49",16.5873177160478,16.5948113727446,16.6407263849445,16.6070686710449,16.5975384557688,16.5483749843324,17.0798194389435,17.1352236263444,17.0602767052276,16.8573811031146,17.1181737701844,17.1480685144184,17.1814098001729,17.0829592869542,17.1144469649054,17.2121607313036,16.9964509486307,17.013263906799 +"Q8IN51",17.5309059587984,17.3844255582755,17.6298225566985,17.0607609757107,16.9976121954044,16.9461195025744,17.0209849639409,17.2162098929539,17.1823457979652,17.0460606242169,16.7754750852177,16.6802967343322,16.8838497423157,17.2596635478678,17.2286980052746,17.0913105845238,17.000486569787,16.9665902526615 +"Q8ING0",14.8901189920334,14.7690952829532,14.7119425784325,14.3602495075326,14.7549700161071,14.6378338330108,14.45310136496,14.5400210240498,14.6970801946238,14.5989284306086,14.7409151414051,14.6105076170473,14.5696048452511,14.5805099806702,14.5159507553608,15.0145463539437,14.5010380491441,14.7132345158542 +"Q8IP62",15.8038541593596,15.482210120961,15.6693452483906,15.523928890334,15.8015485199328,15.7722774743938,16.030270510436,15.7578596631797,15.8362914080485,16.2504434891454,16.0105265531372,15.8999169804005,15.2250560180436,15.7236804463307,15.788352077788,15.9295903100083,15.9873180737854,15.7969601883053 +"Q8IP97",19.8945565868061,20.1123767464981,19.9656204768914,20.0128594744016,20.031144786514,19.9586636397827,19.873530987825,19.8361092474627,20.0095620290414,19.8997634886507,19.939138762469,20.1606488381772,19.9566097264788,19.8892526188902,19.7354838121459,20.0990545758666,19.9283526781948,19.9063960439902 +"Q8IPD8",18.583777988426,18.6247597370938,18.7604393876876,18.1144807735554,18.2423708303901,18.2285158589213,18.4608907996983,18.4988934774511,18.5287761264876,18.1521444887624,18.0408778859549,18.2763022277256,18.4628504213859,18.4926723846891,18.2261815392857,18.1314071562917,18.0059773125409,17.8853364880118 +"Q8IPG8",15.8180817328384,15.9751837253879,15.8237652935061,15.576676436569,15.545573591242,15.774839265393,15.8732252257788,15.9888023173372,15.8617035208366,16.0376050530191,16.2365449523619,16.2843397577108,15.857734838307,15.4152921687667,15.8575269305175,16.2190481180249,16.2209746494415,15.7801966365733 +"Q8IPP8",18.98944353145,18.9614567376266,19.0042987266895,19.3479650708073,19.2268207063887,19.1468370512928,18.893869188933,18.8259940489231,18.9171010760674,19.2521051631618,19.3123638518349,19.1807523037637,18.7738051714205,18.9032730445853,19.1375766431435,19.1672506210847,19.1945303574989,19.0378729459005 +"Q8IPW2",17.0713353393995,17.2220305665361,17.163480900514,17.4395593501793,17.4030438886338,17.3406652011229,17.1742684854354,17.0768860117092,17.0089039625124,17.2968230303727,17.200800291235,17.4351795298599,17.0024591540046,17.0628356502336,16.9736092006788,17.1821370365637,17.2009859876076,17.2447436012674 +"Q8IPX7",15.4921263347919,15.2574799754844,15.3948011586364,14.8045396321214,15.2678703104783,15.1576895649216,15.5375720098942,15.27086250104,15.4088380911107,15.7462019027129,15.2114604987764,15.249932808976,15.3344425134533,15.2061330209341,15.005366134286,14.4967802425479,15.1978563288084,15.1950348775909 +"Q8IQ70",17.8147767635101,17.7560716837565,17.9303876983635,17.9216190215153,17.964854339941,17.934872782852,17.968223499235,18.005992915703,17.9074325250427,17.889618037994,17.9203022532347,17.8746965146668,18.1260506360961,18.318214153692,18.1651063655259,18.2589338962433,18.0137865082666,18.166725968143 +"Q8IQB7",14.4910228241713,14.3852321507192,14.4218386093171,13.8628682656103,14.3510231796537,14.2992781971759,14.5391634056217,14.1813486865802,14.2469594327504,14.7890391238831,14.6250287292793,14.5901726784977,14.2424994450273,14.5050047818951,14.3882994354291,14.6655978364206,14.5425533726067,14.6436425475639 +"Q8IQC6",15.8271665090905,16.2548486768584,15.8994985452708,16.1428678302934,15.9979790959763,16.1120925638793,15.8480579937445,15.5117685638461,15.5060550115999,15.7330884001772,16.2194404095915,16.4634359616677,16.14202177475,15.1930074071233,15.5635288048957,15.792450673627,16.308609028287,15.9410422943692 +"Q8IQG9",20.7802971508626,20.6915500831871,20.9200695485657,20.5575321371539,20.5561678233185,20.5979487134007,20.3459082345479,20.4638969070389,20.4504950283171,20.4709616840674,20.3331838632654,20.2890228298946,20.3555339399719,20.4512030130145,20.276992296393,20.2228715477811,20.2371030045603,20.1985762778138 +"Q8IQW5",22.1691477855643,21.9529182430282,22.1007941875962,21.9687955969158,21.8575677349066,21.9321336217943,21.9782941840371,21.8864125615241,22.000921048582,21.6755394093669,21.8002560463464,21.8554542131094,21.9021979635776,22.0066919884338,21.845906990338,21.8658373347512,22.0559656999737,21.8246022127929 +"Q8IR45",14.8289517386504,14.9334555116819,14.8754555344525,14.8545262149264,14.9561057494003,15.0090219336437,14.9013705804012,14.7600103323285,14.7650322455744,14.6875767881414,14.7842674452574,14.9358473326831,14.7820700839417,14.9355937240571,14.5003334530203,14.837691953164,14.5227545965,14.8064968598511 +"Q8IRD0",17.2199211363919,17.31806283636,17.3914561616961,17.3369707030669,17.4004953489395,17.4815828331707,17.6357298386695,17.437578182098,17.3357313353182,17.6701407109484,17.6533453773281,17.7283469834983,17.4924699146005,17.5986632301792,17.6399988449927,17.8248708006816,17.7719581294538,17.6029869456826 +"Q8IRH5",14.5067684736336,14.714077051788,14.7405418537247,14.7071855341606,14.4453948359157,14.2226332751243,14.5097924877323,14.4876444887385,14.5479285415175,14.2805274015945,14.2677629195192,14.4510295889289,14.2422002345034,14.3972224688856,14.3181656417714,14.2510106665736,14.1853830333509,14.2171858971313 +"Q8MKK0",16.8701188118264,16.2292282819216,16.1469894072487,15.6520012840208,15.7371846867454,15.8531421549501,15.8961674583716,15.9665066156576,15.8903470637324,15.9873927761538,15.3910171351775,15.5363798849233,14.5707312139729,16.1469774809683,15.7739049555497,15.8746249717071,15.3801223155822,15.6502730496484 +"Q8MKN0",16.737601113315,16.3376923789111,16.6491193466342,16.3785483623609,16.3166309583503,16.6289568982168,16.7314411619885,16.6866309971104,16.6134225928797,16.609612759283,16.7028603380971,16.8058732597814,16.6794217746519,16.8041125821066,16.5844321249472,16.5844365377345,16.8731344547585,16.4392574868747 +"Q8MLP9",15.4705361933795,14.9648149098786,14.9779401003725,15.0817638915472,15.0412458800901,15.1833444986595,15.145304874878,14.7987704422143,14.6528389521708,15.0002141820592,14.9564638128845,15.1612551447392,14.5106553450332,14.9550757311642,14.6285364173123,14.3805875569272,14.8726912675925,14.9851469305699 +"Q8MLS1",18.636636350269,18.5382518053179,18.6567436780711,18.4054427780062,18.5851426428246,18.6032783670689,18.5410478292834,18.5229383579252,18.4363319201724,18.4605389590543,18.4458918019942,18.5550231079915,18.3154018157663,18.4224139612827,18.2901739519637,18.2323721688747,18.0768013319093,18.0498888759865 +"Q8MLS2",17.2169592798609,17.2558493538334,17.2764918903725,17.3650485640535,17.3416862590184,17.314116934168,17.3213462025949,17.4203031679094,17.3019539270845,17.5009437225605,17.5278365135683,17.5458455234199,17.5737602663054,17.4542149399017,17.4607548870914,17.5063692124671,17.4845370136113,17.5852640857061 +"Q8MLW4",18.6931050388499,18.6686802290174,18.6508598598151,18.6175892267381,18.7322538143503,18.8119096125723,18.565119591521,18.6172678502225,18.5421685640269,18.682632437694,18.7170337337393,18.7885004518598,18.5103901107573,18.5810514325699,18.4998610013196,18.7424947163819,18.4950440620428,18.5180316323486 +"Q8MR62",17.6542805854833,17.8345901106092,17.8955317789265,17.7570306317403,17.8289301017635,17.8559349291018,17.6908239524567,17.5679391199986,17.6345495608687,17.6062959248898,17.5673174957341,17.566318745157,17.5468510230249,17.6496669394734,17.4750909854907,17.6434838356245,17.4503221856407,17.4713399536748 +"Q8MRM0",18.6958744393769,18.6615684446528,18.673910151657,18.6107081465161,18.5570867510615,18.6009506679546,18.6383180918424,18.5294890906121,18.5024303719315,18.5271063379902,18.6413645527304,18.7984186203574,18.576548362217,18.3788989680705,18.4898406625416,18.2824675262165,18.5626150970318,18.265472429717 +"Q8MRT7",15.3536030851196,15.6220796284371,15.5125892894454,15.3366925472208,15.2255169957336,15.4888013274628,15.4749823695482,15.2540358806423,15.3768977583725,15.4284403603291,15.5135215714067,15.5485083168434,15.2430430254208,15.458832436128,15.3192754140995,15.7089662761589,15.4717411514498,15.2996555575739 +"Q8MSI2",24.4738230025204,24.4393267666099,24.5352540786474,24.3606421049202,24.4142293096594,24.3891796154406,23.5837434393797,23.6547078730898,23.5900965818525,24.0657617573466,24.100468347797,24.1237090236389,23.6780895463646,23.6700725410381,23.6135123728499,23.7622463792446,23.645501391582,23.6725545573468 +"Q8MSS7",13.9035890125474,13.868546674319,13.9654140704649,13.1116527951024,13.8678630877811,14.0523376180471,14.4172720818583,14.1482236619532,14.0525729645704,14.7086060967619,14.4455263212033,14.3265560647913,14.6635449642809,14.082746578506,14.1180482291447,13.9783047925989,14.3700634193871,14.2680407961314 +"Q8MSV2",17.7964988640133,18.2549458005523,17.9349429664045,18.0906969287014,18.2193621661465,18.3649762977921,18.1626179123462,18.0194373877361,17.9619351819095,18.5741418636593,18.5094729447824,18.5923685611092,18.4666821234007,17.8067828961149,18.0388057105544,18.2324590644816,18.5130955612703,18.4300680388327 +"Q8MT58",21.5180328695668,21.5098778067923,21.5974708336019,21.5219965283882,21.5233149340744,21.5626258366475,21.7378987179864,21.7638663082291,21.6626431725016,21.6192780434537,21.563629419049,21.5974892494075,21.6073813177791,21.6795742914142,21.6403326592026,21.7532292572586,21.7175539748739,21.6972549830719 +"Q8MZI3",17.8419942510122,17.1911252346324,17.2994480298648,17.5526854292264,17.5044600071161,17.5698164554219,17.7249321348495,17.9465287816133,17.7543192200313,17.8527700353831,17.9802176795719,18.0103430695105,17.6444460822593,18.0400375599478,17.8871884315077,18.2111573166651,18.1656159865141,18.3068700430595 +"Q8SWS3",16.8161692280029,16.7133348377737,16.8387449637532,16.6409144025041,16.7273837820345,16.533899267094,16.417086784553,16.2533919746735,16.5106288786669,16.2659106970742,16.5004608011451,16.2903340710137,16.2028970715122,16.1302296037918,16.2390515037798,16.502398809167,16.5205759933948,16.4327183085057 +"Q8SWZ6",14.0207015375223,13.898139832643,13.9916040631316,14.0685784120783,14.0551011989131,14.0860216514141,13.6123853524766,13.8151507356072,13.8677791171788,14.0115392232975,14.0835637333168,14.0845754506086,14.0195793179319,13.8974692624006,13.8082840639481,14.0279697465306,14.0113288269566,13.922489243556 +"Q8SX57",18.0779213529903,18.0888014369887,18.2143884893129,17.951150180924,17.9331433819138,17.9032455399221,18.0305295886433,17.9852335744057,17.9803089072015,17.848753092516,17.8238887280457,17.8481600743239,17.9269723541284,17.9912366618679,17.922638804984,17.8977390496896,17.9107618356697,17.8643238031472 +"Q8SX68",17.6336070020051,17.4752136682858,17.7063910335568,17.8193589943408,17.7350340531027,17.7237754374919,17.2720473401944,17.4889663301682,17.5305415536692,17.6812846951933,17.54085413513,17.4834852196407,17.452133047549,17.5319975190446,17.4425777739448,17.4685982104706,17.5549635840221,17.4402582714499 +"Q8SX78",15.9505885407016,15.8141400610041,16.0273040503569,16.2113228695559,16.1106110997945,16.0715215440505,15.9879081694118,15.9695085774939,15.8239546808971,15.9817084036196,15.9892417629908,16.0966065372259,15.9737668535346,16.051216532304,15.9582797385893,15.7816983122107,15.9522751154468,15.9093265979143 +"Q8SX89",15.5914095709728,15.4794945489621,15.8235300701808,15.6515249841744,15.7577690550309,15.8481228464698,15.2575725421934,15.4594169735495,15.5117672435285,15.6238208539219,15.5609520012951,15.5708562946384,15.3817147045489,15.4432192970715,15.0736272886546,15.4820720494796,15.287262829382,15.1602109618189 +"Q8SXC2",14.6042854979369,15.0032000505389,14.5163714455026,14.4645588079005,14.8036943808944,14.3744360714465,14.8486263411717,14.5358087645871,14.8041780201386,14.2157219517407,14.8213155440422,14.959851053042,15.2901973553101,14.832839169316,15.0593230211765,14.9582962689473,14.3848283136287,14.667526611701 +"Q8SXD5",21.3435947258711,21.1981117737404,21.3407127820252,20.8739337533333,20.8036942653018,20.903921892572,21.0453901224562,21.0116943733599,20.958564045581,20.3273927084636,20.365623297666,20.3788836389359,20.8439908979794,20.900874342209,20.7666977649466,20.1027055329624,20.2570096887888,20.1882276170052 +"Q8SXF0",15.9942354644155,15.9831284038554,15.9295723727809,16.2711045778431,16.0300605966321,16.232721995356,16.4630670972105,16.4370888047859,16.3733928157408,16.4837893385397,16.4749321915912,16.5799622272781,16.3819864457278,16.5874429841499,16.4251939256966,16.6797284404272,16.7612583831493,16.7330680273113 +"Q8SXF2",15.7874064588734,15.6936181400626,15.852464970503,15.3560703032093,15.5468663479019,15.6077547070371,15.502903224917,15.5144789054422,15.3935463032599,15.4820094140429,15.5706778786577,15.5335996854217,15.4813857487959,15.4713233444602,15.4322961463445,15.5914135119995,15.4042240453135,15.381526849272 +"Q8SXG7",13.6205068401356,13.8674983604295,14.1945786901957,14.001184318933,13.9433754512134,13.8131139528115,14.1364719590404,14.0405129531712,14.0992088655733,14.1004315590246,13.9545251383377,13.841512420142,13.657591038922,13.9697181394009,14.0145061492884,14.3356217720207,14.0761774455237,13.8888874100656 +"Q8SXQ1",18.2161469063354,18.2908120816083,18.2045540271143,18.4552524392685,18.4961689521811,18.4956811773881,18.6371606087105,18.5491201696554,18.4267682786839,18.701648388689,18.7771820034235,18.9345346501395,18.9859074004495,18.8181444986672,18.8145269213321,18.7779906566761,18.8426786945935,18.8980413454712 +"Q8SXS0",14.6146992742888,14.6548717259681,14.6022151177286,14.0056649110226,14.6949658812121,14.6665534225507,14.6197630791999,14.5989724076347,14.4316536451315,14.7660445178687,14.6489730580154,14.6716057987852,14.7130070712431,14.3567010281649,14.5503707317339,14.4698520810142,14.234546833642,14.2666322187074 +"Q8SXX1",19.9238596110336,19.7874831403427,19.8300146589973,19.9311449309091,19.9682809573188,20.0073691918712,19.8152644914817,19.8487988504438,19.7992151735327,19.7597909943927,19.8723559186543,19.8786603864302,19.9783889960524,19.8871555342072,19.9195334276761,19.9397258962937,19.9841005191964,19.9133820816558 +"Q8SXY6",19.0116220520534,19.1339848855881,19.1228504351407,19.0977097261557,18.9899793052927,18.9711254941568,19.1517254866912,19.160989416007,19.1711480508967,18.8541728939905,19.0340318945202,19.0522335039904,19.1797943159259,19.2806036845479,19.1861640268751,19.4679699476331,19.1634052364941,19.2594729113902 +"Q8SY33",17.3253091633214,17.2851559896026,17.4090475756125,17.5456544619152,17.4891143578529,17.4956177408103,17.3443767741357,17.3478951492527,17.4229299194115,17.313399673761,17.4468766483008,17.4318011815248,17.204298987261,17.3859679696538,17.2401821888247,17.6037675391791,17.3817964849107,17.3372279933897 +"Q8SY67",16.2206622547004,16.3100578813415,16.290990059589,16.028374689884,16.0682398045443,16.007070208552,15.9618702770837,16.0392730461558,16.0991345665717,16.431895446617,15.6838507229676,15.6774478259781,15.4580631447173,16.1682072100856,16.1045269113174,16.0963640601001,15.9276012080076,16.0180603010943 +"Q8SY69",19.0652089501487,18.945645869868,18.8857333800374,19.1007622776015,18.9762154521945,19.1387466159579,18.921124256905,18.9606647787203,18.7086658990082,19.0676394803347,18.8218553034171,18.9815634214607,18.3725577191785,18.9530267597669,18.9264854864252,19.1366908036169,19.0065753238187,19.0227886848961 +"Q8SY96",18.9503720476801,18.747847219451,18.7991081313731,18.7356589773844,18.6581034098574,18.535559608299,18.7484393199261,18.8823362465808,18.8827715929292,18.5304644985311,18.6362913222094,18.6486184726048,18.6848322846045,18.9551255353992,18.8666440693559,18.864148581912,18.6342119765405,18.7812138354762 +"Q8SYD0",15.6484190714122,15.4743845715769,15.7159693214689,15.1236234847045,15.4088452711899,15.3919764979061,15.6193739897169,15.5437380254787,15.3478190556701,15.4251804682341,15.5019577960868,15.3216062340704,15.4753827962411,15.5308841789225,15.5976170340186,15.4212669360699,15.2534369031239,15.3382586032447 +"Q8SYJ2",22.6859136613338,22.6593808564309,22.7654412595096,22.6409326801626,22.7225141635289,22.7248649073207,22.4711466384648,22.5533489175778,22.5204360175698,22.5307481456482,22.4571602624389,22.5175956125421,22.5468207051333,22.5702973692163,22.4285806658741,22.4028571478381,22.315717409388,22.3215005157646 +"Q8SYQ4",21.2258352341892,20.9773416698738,21.1434335336177,21.1385479328042,21.0418992142537,21.0865328793226,20.9014093363237,20.7989556682429,20.9596737962979,21.1113430142541,20.9808488595475,21.0220743965995,20.3610843467373,20.9055620068314,20.7344669781988,21.056479611679,21.0900920572382,20.8485178919509 +"Q8SYQ8",16.074458106692,16.2103011215799,16.2276130514519,16.2410191387428,16.1615694876235,16.1495119489864,15.6636001850063,15.7054386738199,15.8209722676088,16.2084177623063,16.2750579161107,16.1174469318101,15.525211414165,15.4020205888511,15.6647870305179,16.3063840592014,16.2647028781288,16.0387594357389 +"Q8SZ63",13.9273920830099,14.1199871069166,14.2762854111549,14.0442367113233,14.0530189626589,14.0266473626244,13.9371997641822,13.7866684513319,14.0081502528143,13.9956611834574,14.5507164397264,14.1031042774058,13.9054427706514,13.4099730789115,13.9229128711676,14.3699463497895,14.2595148228683,13.8427786872467 +"Q8SZA8",18.0611495224303,17.9954739177866,18.1363403538229,18.3038849878888,18.2072319977543,17.9323775243157,17.8840807518241,18.0165334006415,18.0618228421093,17.8810613786478,17.9895104206884,18.0458933113822,17.908710770422,18.1106046266362,18.0044293255717,18.104833424035,17.8243664717409,17.9628574780463 +"Q8SZK5",15.778910359919,15.9886765724579,16.0502538661703,15.6319433642683,15.8136651062611,15.7000147014237,15.3407771605901,16.4155596066592,15.4660137818905,14.933511569032,14.7981508571733,14.9108380453032,15.1541099146002,14.9380862013718,15.2183827520751,15.330616704433,14.2157307289193,14.8243659259798 +"Q8SZK9",21.9248847932727,21.8784647435555,21.9487571356099,22.2259187068982,22.197416150485,22.1911497238043,22.1414108303539,22.1392414817063,22.0744139257139,22.4376572958017,22.480381234785,22.5242483901926,22.0104532512192,22.0743363202567,22.0292997347605,22.1620252475904,22.1325101943477,22.134481215055 +"Q8SZM2",21.1600355717573,21.2566487474205,21.2076974541482,21.266477238515,21.3029922093546,21.359861372529,21.2432030426674,21.2878704044393,21.1724480693827,21.3443547416398,21.4351018061371,21.5508093780433,21.1536304834788,20.9622114565361,20.9708631590038,21.3574555877835,21.2803320419542,21.2634772327349 +"Q8SZN1",20.3936191808601,20.3795742664248,20.4542951355586,20.5783471006146,20.4302551103849,20.5668779682541,20.0694543316151,20.0696730829016,20.0052764373112,19.9241146990812,19.9462234514094,20.04089909995,19.7176846053578,20.0714012383112,19.8592235236409,19.9859316573992,19.7720244254963,19.7425794102133 +"Q8T0N5",18.6582746894219,18.5615233756505,18.5989223879716,18.435860433703,18.5380423323435,18.6282732964144,18.7521268536885,18.8189178460207,18.5999011911991,18.4555645697698,18.5564876091042,18.6072273391528,18.8384300099691,18.614317949605,18.7200043525514,18.417609972265,18.4685774160934,18.403537961528 +"Q8T0Q4",19.9928938683594,20.0530255731655,20.1105802742267,20.218276777896,19.9968908209298,20.0199869368025,19.9665564829166,19.890603807135,20.0683936916473,19.9534469054693,20.0804609747436,20.0866444363749,19.7591739631829,19.8486876848648,19.7082835882567,20.0204342001938,20.0411133371795,19.9168932707101 +"Q8T3L6",17.4371603618635,17.4784297180449,17.5820251706599,17.6396988287417,17.5228420753206,17.644919650184,17.5115560211634,17.3975139602619,17.4752758955461,17.4021994177868,17.4624312261172,17.3583559067245,17.255279425236,17.3402138191424,17.1576625686876,17.120880770854,17.1653440267583,17.1485356338432 +"Q8T3X9",18.5399759418679,18.3417439425074,18.4570990074874,18.2990057120012,18.405382381041,18.4584820583958,18.1615911332911,18.2797565713815,18.1291911820885,18.030954699945,18.2386000536517,18.1818340665492,18.1525506260181,18.2643095597422,18.2950547761627,18.5571609457338,18.2114465505332,18.2195779681733 +"Q8T4G5",19.5306360158388,19.5869090873173,19.5795754081062,19.4979726095431,19.5790589137551,19.5874817690795,19.6270257542475,19.6504237129957,19.6200385588568,19.6073782703217,19.6226961458796,19.6606687839833,19.8565587786097,19.727807735772,19.7684479547365,19.8793052018497,19.8319810346906,19.7826641556481 +"Q8T9B6",19.442353348572,19.4687087719166,19.589788474123,19.5886184205113,19.4848450991291,19.6549610179047,19.3526390060507,19.3150158690381,19.5107157160071,19.6995748940999,19.8267163018175,19.5108992416675,19.3703156141558,19.3745225369382,19.3589301109363,19.5541911287034,19.5378838332537,19.3823978514545 +"Q8WTC1",15.2158243857967,14.884073853688,15.0251462466966,14.7602102511149,15.0482156207906,14.8019181060546,15.0473698275431,15.0662048394903,15.0870049737205,15.1098722303896,15.1828750816933,15.0773600174172,15.0686648282195,15.1209287878105,15.2363706455787,15.2381552582567,15.1377985978476,15.2122967918528 +"Q94516",23.5505272837221,23.3929400202275,23.5372118029851,23.443207189793,23.4178944974292,23.3871237047406,23.3327574932196,23.3329774055511,23.3316727566038,23.2906275787256,23.2879260550596,23.2566188086187,23.3500629083414,23.4825212429645,23.4261243293075,23.2335878020254,23.2865110345952,23.2620188535715 +"Q94522",23.6046951128031,23.45904033712,23.5163646669856,23.7329278997843,23.6286685081887,23.5397756068132,23.4048164301117,23.3460035704205,23.4071314075629,23.4451713929771,23.4007734149196,23.4472404252498,23.2777046551839,23.4815092536653,23.4363276797544,23.3543817245058,23.5037021310518,23.4728574290001 +"Q94523",20.3174063730749,20.333335361074,20.2929296365162,19.8431774608648,19.9598682037056,19.8560853574864,20.4436525736655,20.5007915292428,20.4798414910919,20.1188951895845,20.2763889863576,20.1635075675266,20.9034164370251,20.8912416891887,20.9959631398916,20.6126505690901,20.2775728337362,20.4508714107922 +"Q94524",15.741483055098,15.7321617927183,15.7693689038108,15.7624312741711,16.0384032728224,15.8103224126299,15.4757860050915,15.4669512290598,15.5436984851279,15.6701041916336,15.6858911165082,15.6050212087457,15.3548786928268,15.3225388664516,15.6431192987463,16.2025321649135,15.9612691061742,15.8356850746739 +"Q94529",19.7701975435386,19.6220697373671,19.7857197136951,19.7425666388533,19.6304181809843,19.7043855305682,19.591471864159,19.6458152414971,19.5603450448269,19.5543325849026,19.6091533320476,19.6226512497233,19.6638975186476,19.7479698392716,19.6458452813737,19.5183092570784,19.5853490760119,19.5218285869923 +"Q94533",15.539543767917,15.4095324874975,15.6775038575494,15.2187326976747,15.2421745545826,15.1044090134988,15.3807943194875,15.3213035529866,15.5331309394117,15.1737388361128,15.2461305533358,14.9532170392605,15.1735150549172,15.3894911633839,15.4539016586901,15.2217694626899,15.0994618270126,14.9859316303885 +"Q94901",18.5741221827978,18.5695602325906,18.5561879193121,18.9318908573524,18.8699938447811,18.8321243033321,18.9305930477026,18.9090842320406,18.8810261251975,19.1632564900844,19.1873448971487,19.2998554215496,18.7306746526202,18.8258364097141,18.8160088935696,19.17723384667,19.1459514609524,19.1225684142665 +"Q94915",16.9555455968891,16.9183491035513,17.0503580564486,17.2226712687792,17.4245651124666,17.474546359077,16.6657546551429,16.812803762357,16.5551735232525,17.3709617362307,17.2254230889624,17.4141686229694,16.7808342707602,16.8524734931478,16.8007774658547,16.8890583924464,16.6512113597635,16.5898018926462 +"Q95029",21.8185006604417,21.8033594749599,21.8926705876408,21.9891490836519,21.7893187459445,21.7707441278384,21.811490315055,21.7906974395711,21.8882393631772,21.7998696772892,21.8942597929466,21.9552385768576,21.6258116579773,21.8321297320741,21.6493545252349,21.9233963554022,21.8584525643212,21.8119705690684 +"Q95083",19.8922455331624,19.7229719297825,19.8085689026545,19.725244539291,19.9051377667081,19.844389381297,19.8693075907152,19.9024748484906,19.8345403885555,19.931493970729,19.9560661514681,20.0572723134734,20.0590314757435,19.896195250362,19.9139698542253,19.9076644501165,20.0021416129464,19.9262467195519 +"Q95NU8",17.4449724613101,17.3127929444752,17.393179991875,17.6454618529843,17.5652603757857,17.5226218171421,17.0125614062808,17.1336158607756,17.2624261747466,17.5117375759834,17.4321840324964,17.3877373434901,16.9186628686295,17.1609176469713,17.2098931808973,17.6173970873114,17.5460223919952,17.3749347443483 +"Q95R34",15.4206690279717,15.3255862186769,15.4349188657191,14.7166328714244,15.1979941830952,15.1508045062096,15.6355052854488,15.5543443881491,15.2551837040066,15.1628600310094,15.0093846897004,15.1187319699067,15.6129133882618,15.5196054409671,15.4727706782683,15.2187571299527,15.1604228134801,15.3349280099584 +"Q95R98",16.0906549046178,16.2034056916101,16.1371178826756,16.0877173357689,16.1005511336608,16.2899930652565,16.2197592692878,16.2942165946225,16.1757474370273,16.3838128145812,16.2309494820936,16.2350919611451,16.347940444707,16.611910459277,16.508220549146,16.8098659064629,16.4987173141616,16.593579780175 +"Q95RA9",20.6509557469023,20.5559193287736,20.6629142400036,20.5952352716591,20.5363535301859,20.6169216609268,20.4332408679223,20.4599665107457,20.4246621950464,20.4262887974621,20.5277509260976,20.5026108671242,20.4553979991872,20.5057453983799,20.3583900802826,20.4446902208979,20.420073209848,20.4403098606472 +"Q95RB1",15.9522086488864,15.9427889130627,15.8469223952719,16.1301207998711,16.0342144223567,15.8939646396238,15.8614774247462,15.8739913718305,16.056034061703,15.857075724547,15.9007247652962,15.9930364552081,15.9019682321773,16.0180636563738,16.0667671350028,15.9589840279723,15.8920517292804,15.8051101713907 +"Q95RB2",24.3535512228639,24.4445647160293,24.4244557222038,24.3232991185207,24.3707060312387,24.2281585691464,24.167898656236,24.1702877956555,24.2842565038831,24.0942286762465,24.0560510202078,24.513531293721,24.2664602171278,24.4042469558554,24.098735250132,24.5062899227241,24.2658712947324,24.1625904746328 +"Q95RF6",17.0385725798306,17.2580554561518,17.1869866593445,17.2338409042985,17.2776689376681,17.2614755675421,17.6612799544782,17.4191632331537,17.3058956106761,17.3203416374316,17.205192084148,17.0649783019532,17.5581918269242,17.4097999847773,17.5554993646204,17.0311545864256,17.2735017934898,17.4685459852524 +"Q95RG8",12.9676334379833,13.1348669829349,13.4848620702008,12.4946623238817,13.3431799657285,13.3348342675413,13.6847099245754,13.6478443276609,13.5062531846783,13.6239852465372,13.266727468225,13.5371942168131,13.2642533555914,13.6107981843074,13.2745798604051,13.7849375782863,12.8167649379986,12.6824582672167 +"Q95RI2",17.1832105276474,17.1169374981632,17.0034251397215,16.7752351687182,16.8915682662708,16.8720053184771,16.645727599868,16.6079334468405,16.6528617238375,16.6927488724731,16.6562291880243,16.6992982702696,16.2374500301594,16.4649873309277,16.586462598333,16.8046584134806,16.6013748821202,16.524977561708 +"Q95RN0",16.9816001648818,16.8490051253165,16.9684604144449,16.8280665410889,17.0174959959267,16.9881390956348,16.831957370711,16.8017291661525,16.8415502332746,16.8979653533952,16.9761830272752,16.912102437864,16.996699396293,16.9254873317792,16.9346698648531,16.9850825834879,16.9514707634076,16.8764493637865 +"Q95RQ1",11.7246387209713,12.1148965211303,12.0900694738277,11.054071376157,11.7647593376293,11.7435385223946,12.7628204894716,12.0253103623318,11.9460651743737,12.8134886412008,12.1072723403052,12.6554523241316,11.9612443133807,11.9406827390225,11.8153074170052,11.5943258199631,11.9576680607255,11.6601564494119 +"Q95RQ8",14.544396796906,14.2554198001155,14.1521087651646,13.46069646612,14.2825213549103,13.6969429603842,14.1730528681355,14.2192967565915,14.0133765436717,13.7017918146762,13.8694450097348,14.1548557611615,14.5538190692596,14.2444916918818,14.4827906076328,15.3636354924739,14.9262178943374,15.2973178695566 +"Q95RS6",17.1412225153492,16.9628647963861,17.0833061873509,17.0430861359294,17.0348706023155,16.9873935180483,17.1657979209361,17.1026131634513,17.3346187980126,17.1452340837317,17.1543828931687,17.0870946958882,17.0675844763491,17.1751928518824,17.0883043165221,17.4444468783778,17.5774477034692,17.4266544948512 +"Q95SH0",13.8100682201913,13.826591969319,13.5793929148325,13.9973075737534,14.0114829443396,14.2329968036531,13.7470728416852,13.637777950419,12.0537971972691,13.8332105772882,13.86158916508,14.5647465275616,13.5757478279284,13.6767570475834,12.0400306098227,14.0186441152261,13.9678520793316,16.5110871029336 +"Q95SH2",18.7982490296417,18.8103540697308,18.6963353086129,18.6793286945354,18.7567568457338,18.6934419678671,18.8551702744077,18.6871615783908,18.7150374395816,18.646161333329,18.7157785211585,18.8695849093345,18.8616903639777,18.629529077314,18.7726004943557,18.4909128675347,18.7319324710985,18.5845124436744 +"Q95SI7",21.3898452103764,21.2868596741106,21.4150867660584,21.3483823153876,21.2771695300828,21.3252373891664,21.1972670436668,21.1687667346838,21.1908929875414,21.180874656703,21.1447633395742,21.1248396449678,21.1503313781456,21.2902432724367,21.1979675588643,21.022372024575,21.1212700779662,21.0350482822561 +"Q95SK3",17.2546695518725,17.2849641721096,17.4100889821053,17.2438638644055,17.2719394039525,17.3046568991592,17.261494299673,17.3246685986877,17.1335348243476,17.2434625356202,17.1989916614147,17.223473947263,17.1819138219598,17.2746196059071,17.1365584533997,17.1215396379629,16.9517602694225,17.0986306052193 +"Q95SN8",17.7160947897793,17.6138564439335,17.7886564397126,17.8284412544145,17.5081693335696,17.6121051648501,17.7427351539487,17.8306269400618,17.6783411487221,17.6695611383749,17.5244961992845,17.6367395403927,17.1417099808662,17.8199019001348,17.6164159258901,17.7954361868091,17.5969276872085,17.5617202846252 +"Q95SS8",15.1009072299968,15.2119688632001,15.17886036365,15.4718988866593,15.5332262889372,15.5633636509443,15.5544844454529,15.5583696004876,15.5621953342937,15.8102969803411,15.830053279768,15.7554167613819,15.427351095994,15.5821459534505,15.4935998157285,16.0070645114018,15.6562391640027,15.8185672238476 +"Q95T12",15.9422473560683,15.794111533973,15.8846947029222,15.857754202486,15.9591987663095,16.0455382074866,15.9744442472532,15.8967286132545,15.6953067616566,15.8776691712068,15.96108583718,15.8982603251,16.108282133655,15.9868627969836,16.2053245723508,15.863702886717,16.0261124496857,15.8949754278702 +"Q95TK5",17.1086489419019,17.0780497906344,17.2787351583062,17.0167018273605,17.0286153377265,17.0827142420111,17.2006950304117,17.0740934752979,17.0539639013793,16.9392005910475,16.9845399662144,16.9338471770711,17.6127422661108,17.535294378329,17.5004454275207,17.0852849571541,17.2626806657842,17.113567707698 +"Q95TN1",13.9751856184268,14.1204258477721,13.8093702153292,13.5651340268699,14.0151303402944,13.6749495895686,14.0061488781071,13.9884568381666,14.0518940975293,14.1180167541786,13.9634175493593,14.387277236018,14.2289600008906,14.0753247548564,14.2806609105472,14.4462106113739,14.176900559398,14.1355038408547 +"Q95U34",19.4287240712089,19.3136785054906,19.330163825206,19.5346966854996,19.509282029778,19.5138069458961,19.4059559727697,19.5763655007694,19.4603462235538,19.4697427992075,19.4361570112461,19.5503337554058,19.3848682860368,19.5742085028887,19.4931813543825,19.5588201275363,19.373116392086,19.4349758378146 +"Q95WY3",17.1775413342815,17.4153241383689,17.4098045870508,16.9878574538354,16.967251552265,17.1709547205296,17.4530132624332,17.488668542849,17.4237447986092,17.2485805746169,17.1105611427989,16.9848876828748,17.3576438012064,17.2923526301497,17.3318125617897,17.1939108302748,17.1443892502168,17.0973429057941 +"Q960M4",23.3621324115912,23.2605071230547,23.4623908764028,23.5335876380372,23.3370129381051,23.2866512832685,23.1391282233797,23.0850577241069,23.2625045011981,23.0491364626757,23.0674429440107,23.0935499869757,23.0306089286091,23.326745681708,23.1521607420235,23.1570002907143,23.194827544022,23.0143365651387 +"Q960W6",14.001265498548,14.1851513735086,14.3565350613107,13.5228635283353,14.0635959801293,14.0529885055856,14.3510275180657,14.2049219860428,13.9697642907464,13.9195147240122,13.9179035817598,14.194557208754,14.7352933792955,14.746789510864,14.4948984811888,14.1509237747772,13.5625259907296,13.6121448754484 +"Q960X8",18.428746079092,18.3632435633132,18.5626476001671,18.5684960324141,18.4594287618594,18.4302594457748,18.3072860355253,18.4278437812137,18.3002001386762,18.464258805675,18.5438168145998,18.4669055286181,18.1101150985425,18.2031239284141,18.2403404905303,18.5659537891365,18.4473989909852,18.4445026366188 +"Q961B9",14.8284319331018,14.6339920012731,14.6038944709726,14.7532897859206,14.9365373332931,15.067338759479,14.6605929652548,14.9954504519976,14.766707310659,15.2325056207435,14.9457416443312,14.8368360417126,14.9518454533551,15.0249753573676,14.9859535638158,15.1907092231352,15.0806781932485,15.356644834872 +"Q961D9",12.3158781415861,12.9966915967238,12.4715577417091,13.1940824189305,11.9085885743235,12.5479476891099,11.9142359434882,12.0332266235196,12.4603992893472,12.6528332616251,12.2710427570548,12.4210678096354,11.5761841261089,13.1460729158286,12.3952357829861,12.9664732124482,12.2640646367367,12.3234787913995 +"Q961Q8",14.9598314715708,15.4029503915651,15.2899208374406,15.0954118431774,15.385908566309,15.4534024800538,15.447923010726,15.4446192135559,15.5852871742282,15.8561043237758,15.381303419662,15.4919394897174,16.0376945935525,15.9290074612855,15.6900290005345,15.5950459919105,15.4482221823356,15.4814322527385 +"Q961T9",18.0044895279618,18.1104509631239,18.2419211711727,17.4443922023097,17.6824954621779,17.7036043649766,18.0761747703925,18.1032894395111,18.0601150201507,17.8789373106241,17.8853671796138,17.8383872005306,18.0249230297613,17.7150527828731,17.7011231822077,18.0464791086009,17.9787401223506,17.930245010612 +"Q966T5",16.6743294321574,16.5436149107518,16.7381309902053,16.3969879913368,16.3115316978618,16.4758432159705,16.6693057970565,16.7226220230725,16.585620640859,16.4199669644742,16.331181779353,16.4975807689365,16.6224955469859,16.8375900115145,16.4164083809152,16.3765812790156,16.4131265884728,16.44608301414 +"Q9GU68",22.2143966730609,22.0983907588273,22.1404982182318,22.1968437480669,22.04200411969,22.1400454293993,22.2787127915774,22.2271763395485,22.2463378870099,22.3126751134202,22.181609686944,22.2952997008073,22.0309495195237,22.3154483428512,22.1723338124811,22.2763993552092,22.4453479529974,22.315462152929 +"Q9GYU8",13.14795137442,12.3604822188529,12.4838455868116,11.8792084264036,12.2908151786115,12.4908987876109,12.4182184127483,12.5212693700395,12.0944014429116,11.3173832841721,12.4914824507898,12.7429053113623,13.3764731279349,12.6395116579517,12.7029176216361,13.2533940044987,13.0890677539323,12.8776598798453 +"Q9I7C6",15.2324813822155,15.5921780132929,15.3239038872994,15.3342841134681,15.3040660822263,15.2550676693342,15.1843874184994,15.0145281341303,14.8308181832065,16.2028650454972,15.3512757075857,16.2438604025877,15.5069008080061,16.0935891376198,15.295527867015,15.3493998236247,15.4546815164561,15.8611405818682 +"Q9I7I3",14.455363950108,14.3091712602971,14.7445527503333,14.7566756294006,14.4171362632751,14.5027088388036,14.7329745741266,14.7438117737069,14.5294186020659,14.5030778812825,14.5353649180012,14.2732315057001,14.8915631854677,15.1839586722646,14.8757029621873,14.2121403762372,14.3623527090777,14.6261809375324 +"Q9I7J0",21.2226942954628,21.2588664415996,21.247276047343,20.9857847545747,21.0347655610797,21.0248136216619,20.9287831962237,20.8029977659479,20.8607021554734,20.9305088456997,21.0801052135055,21.184400291361,20.9530940616397,20.7316321902904,20.8850798661299,20.8710090708549,20.9835070520326,20.6896022424864 +"Q9I7K0",16.5188352553166,16.2343376664413,16.5608929600761,16.5549344446221,16.5821956349365,16.4323757986612,15.9677805062742,15.9300232811019,15.9780581454391,16.0906907687353,16.2171965459558,16.2001042459404,15.9131539005005,15.8699291794176,15.7504447965951,16.0377831033781,16.2494956709737,16.1613020321149 +"Q9I7K6",16.2711662101807,16.2336022869623,16.3673821882593,16.4045544449079,16.4671950490043,16.4528449179102,15.9213445074975,16.0925250996537,16.1356677454092,16.191844998348,16.1686939199298,16.2018542404821,16.2991406760886,16.0515223970424,15.9803378768272,16.0561958761898,16.1307079606199,16.0061597443244 +"Q9I7Q5",21.0010214379632,21.0517724195762,21.2069181395169,20.9001304079248,20.8276309697596,20.7699703332019,20.3311577696588,20.421061983825,20.3238901145109,20.3615410248555,20.373042282496,20.5111646850101,20.7074624801708,20.717450478628,20.5476255717534,20.5614338050256,20.4717887913137,20.5031780816054 +"Q9I7T7",14.1673472485156,14.5535338362428,14.4778734892618,14.06339416621,14.6157171786696,14.54191710099,14.6284957248088,14.5529824511291,14.5228016566285,14.369838327546,14.6709032679942,14.7720488652532,15.02184918291,14.3131083359938,14.3516347853801,14.7715839341066,14.3162635140675,14.3562326865835 +"Q9I7X6",14.7335466826926,14.8791983155774,15.0612520510563,14.5341500220442,14.5078044403242,14.8813154940238,14.8706817226627,14.9911239461999,14.7486572082405,14.7202731395407,14.4879100507881,14.6052367581817,14.9226771190208,15.3702841071867,14.8080563028479,15.1711515207199,14.7161593466045,14.8479623923306 +"Q9NBD7",13.3899972684089,13.1405476115691,13.5272059348255,12.7055866892118,12.7747260861905,13.0920993243675,13.4420148735738,13.0257391529619,12.9658968382908,13.2862176952778,12.9367869654752,12.8201511573183,13.1179493146817,13.7189061894066,13.6883781319507,13.4294414149978,13.7745012505486,13.277475869399 +"Q9NCC3",17.3223400694143,17.1232192179543,17.3643085671519,17.3175676906834,17.4124369666215,17.4065980701481,17.4890672950676,17.4479147979236,17.4697508729862,17.1884330490482,17.2160220470977,17.2799744418589,17.4283236401145,17.5432888650544,17.2848276542878,17.1705600389431,17.1734098886196,17.1108321768381 +"Q9NHA8",16.1296779903528,16.1771706797805,16.3760621688655,16.1506698232874,16.1577017103562,16.0522568675906,16.4109776667275,16.2562346270431,16.4849254972847,16.3675924706749,16.0608109075964,16.1325994964886,16.4049338829646,16.2363125162923,16.3977161286427,16.3341326458561,16.9097540387947,16.354424320991 +"Q9NHD5",16.493792425318,16.4313832791104,16.3225569964286,16.5167406743355,16.6080649387775,16.5512085078944,16.7415690910063,16.5026464202244,16.4867076378312,16.3929442066361,16.6908506530033,16.6659557929844,16.8582778791708,16.584434126392,16.5253996229339,16.4789733139054,16.6649181728645,16.9304690322997 +"Q9NHE5",15.475280818953,15.9648176769936,15.8124131280936,15.6117127721005,15.3163465942194,15.7085652683224,15.4317714445522,15.4631963023021,15.3980020263591,15.5497420200555,15.6089852265193,15.6570122244861,15.6371727426135,15.8320216643272,15.7694562210388,16.4530117557736,15.9733240896867,15.8132426857484 +"Q9NJH0",21.1220580391629,21.0292985671656,21.081908432544,20.8601189593545,21.0011367987072,20.9976778911145,21.3553478665335,21.2603325760446,21.2726866825908,21.1364848625274,21.231893430322,21.1380589867515,21.4092480540019,21.2714491908298,21.3201383285514,21.2437924370938,21.3329396556049,21.3165798971219 +"Q9NK57",15.8639744719934,15.5766220781655,15.7896308385279,15.6906431529521,15.452778376512,15.7054721814157,15.5647535389,15.4781918288629,15.4961778769959,15.7222326065028,15.5405363960775,15.4257721499947,14.8758465029204,15.5834552313239,15.2129580170521,15.3370302402918,15.4228966026186,15.4244694495742 +"Q9TVP3",22.8902904458058,22.7872569244966,22.9793603135385,23.1736891141636,23.118942645914,23.1360497364432,22.7526224765402,22.7218875061153,22.904309967632,22.9900453893749,22.9023402872507,22.8302012303595,22.5046816897207,22.8288429309473,22.6966015158316,23.2028964713151,23.1549552921962,22.9677028231154 +"Q9U1K7",17.655433847017,17.7712918822929,17.8896450892501,17.2445664587495,17.402516027941,17.1876559942406,17.6290066963935,17.6776418978713,17.8706359718954,17.0964848294695,17.1496069838948,17.0648412848543,17.4563151567261,17.6090621725378,17.5929396626269,17.7602272761627,17.2319152999805,17.236316261651 +"Q9U1L2",17.0397128887867,16.986893183919,16.7939681762673,18.1327063411142,18.5546399779681,18.9477016345193,17.0971475025985,16.8366416888825,16.3588175770366,17.9926826230475,18.1842171564765,18.4491533322849,17.4270249937723,17.2462820148104,16.9894590512176,17.7609921005467,17.6415924278095,17.9111666785402 +"Q9U4G1",19.2005936454864,19.053402323758,19.2342502148391,19.3550284874693,19.2544184733682,19.3091675553082,19.1192958483356,19.2342161675187,19.1265630943478,19.3579645438523,19.3073110198649,19.2992602574735,19.3791866342022,19.4326338188355,19.5235637510878,19.6529220807886,19.7830094367892,19.572186367078 +"Q9U5L1",17.6979951176782,17.6399366330464,17.7571227842732,17.6161020699838,17.7200164389879,17.757573839629,17.6315612286602,17.6805257334997,17.6319342423884,17.7111202244659,17.7511414303396,17.6845225897086,17.6652734814338,17.6839625158974,17.635549696064,17.762949612577,17.6094189830277,17.6182985827356 +"Q9U616",19.712237038131,19.6336387354846,19.8228456590372,20.0453345088803,19.9236937382566,19.7080549802937,19.6477117200641,19.6083404073396,19.7608516269899,19.5698060808317,19.5076806491736,19.7168001435252,19.5916443655578,19.9979916313166,19.7543593287107,19.7091344466952,19.6045229985892,19.5129564216033 +"Q9U6M0",16.2551950551587,16.1677563309822,16.3074479818716,16.357824428006,16.2832426478696,16.47977785994,16.2876109394003,16.2115701894394,16.1122189756575,16.4003021500368,16.2735452964918,16.3428759120121,16.2161218177172,16.4222617011106,16.2987215982259,16.1450885580601,16.3037667824855,16.121100620672 +"Q9U6P7",16.9820813883542,16.9172335625634,16.942057120204,17.2054804615464,17.1412632278101,17.1900362244667,16.8920031316329,16.9909026232033,16.7412574762886,16.9281902166306,16.9972349927736,17.1194249835842,16.8484299039316,16.9570564569064,17.0118960358571,17.3609041904765,17.2133984293153,17.2124174521716 +"Q9U6R9",20.6365834896428,20.6417447368419,20.6814339158819,20.7683565989515,20.6966876316881,20.6651223024639,20.4658353248754,20.4938964830624,20.4681439449556,20.6164162997548,20.5657060577483,20.6887396762097,20.5715389406159,20.6037478883596,20.5550846883005,20.4528150289837,20.5097628851239,20.4530211550127 +"Q9U915",21.1998130076728,21.1758541186137,21.1168713263248,21.2582454970135,21.1673567244499,21.1987880504935,20.9981967398666,21.0266705947592,20.9997712176945,21.2033238298881,21.1588609799587,21.3067368571432,21.024638304027,21.0031473325205,21.0195929705671,21.0033786932774,21.1557063214434,21.0458356495222 +"Q9U9P7",16.8060030655547,16.59155875673,16.6638249871905,16.7273922237754,16.7620882893471,16.8338888976236,16.5551570625418,16.5298409232445,16.373178401802,16.6178136961253,16.5683020262171,16.4904084899323,16.0858364814294,16.5895764965787,16.6430088964795,16.7973638090486,16.5481998463577,16.5852566654472 +"Q9U9Q2",15.6636565316042,15.5741313545038,15.7310284732071,15.7553757929468,15.68280957462,15.7419918569022,15.5433320253113,15.5522686504706,15.5235980822411,15.5599254361135,15.6508771586195,15.539049139427,15.3589911430518,15.5487580547685,15.3845096299234,15.5741662653446,15.4466024013899,15.5352700126715 +"Q9U9Q4",17.6535177220415,17.6054927874021,17.7585510936414,17.752270875443,17.5858273421563,17.6321404213813,17.9531769578145,18.0564090411059,17.9709066463821,17.8485654731626,17.8351642870491,17.9084544394491,18.0594641896355,18.2174085925081,18.1200987435038,18.2218946471925,18.188587815068,18.0987385209319 +"Q9V393",15.82847426767,15.4580137501647,15.8444012008601,15.5409912213845,15.6566188236521,15.7242394181337,15.9083720493703,15.7537042725701,15.5537717648757,15.4754883607606,15.6579782221316,15.8889175200549,16.1650993156755,16.3451256584954,15.9787667959345,15.9415559963974,15.9885404842443,15.8698845113993 +"Q9V396",20.5566612629266,20.6547735000707,20.538254913677,20.8315253826226,20.7863455250925,20.6737147704745,20.7854404910359,20.7608251564733,20.8149670767755,20.9313890214145,20.9087581328589,20.9412303898229,20.9697481758535,21.1082468983416,21.1215866830565,21.1564981475445,21.0123132685605,21.1415086475913 +"Q9V3A8",15.2649064448038,15.2827471300987,15.4250066100162,15.1628400910159,15.0193068835765,15.1092968559158,15.5388535710568,15.4833154327231,15.6663627977529,15.5784865563718,15.6166838479078,15.4536009490052,15.9197559073238,15.9235661545668,15.8561233033106,15.866401594081,16.0056247157802,15.8208536486526 +"Q9V3B6",13.6653296509819,13.47664989618,13.4209411071511,13.7860148574813,13.827155901131,13.5023814176606,13.2327203419299,13.21038288717,13.2504882051208,13.5108925429786,13.427957844298,13.6209963609147,12.4447308415342,12.626206467991,12.5980712412241,12.8989259825065,12.9702612206425,13.1457358853411 +"Q9V3D9",17.2308406746521,17.153420072717,17.1803449516731,17.2837571116476,17.3612749246705,17.3027637822431,17.4596545371301,17.4828083890302,17.4710996693032,17.5170487391187,17.5762652410558,17.5003431400108,17.4876582442593,17.4781108365128,17.5766261989609,17.6086368764631,17.5357167192845,17.5564184410798 +"Q9V3E3",15.0707089040176,14.8533180122282,14.8300001203286,14.679566128264,14.8720632975331,14.8054459944039,15.1886684092471,15.0637585142427,15.0232709474702,14.9360150790646,15.3000850939936,15.4090436134748,15.2827168590667,14.7685651002594,14.9380980932386,15.0075439930445,15.3074293544475,15.1593606037884 +"Q9V3E7",18.7048352796818,18.8726569828544,18.7768234913368,18.9971459334089,18.8265218880176,18.7158013108818,18.7348514357005,18.7758917840419,18.7839215504302,18.5124162480462,18.7293555302487,18.7362334600384,18.7732390823245,18.6087069290472,18.6953113045623,18.6265055844872,18.5358604494393,18.6409024463997 +"Q9V3F3",14.4661390202834,14.4307961464179,14.700984920499,14.4218230644533,14.4723144214294,14.6916884490636,14.7818007305208,14.5603335739481,14.4384864045457,14.7410095007334,14.554156122137,14.6128908607116,14.5210175059287,14.573584512964,14.8733272133425,14.7125334120478,15.0531384570711,14.3269453858051 +"Q9V3F8",18.5207972121774,18.5792595015629,18.4485518212087,18.7656563354752,18.7188649128313,18.6375068004209,18.3935580156483,18.3832123583744,18.4104511490561,18.5634397380482,18.6646305898155,18.7273055095963,18.4005402827671,18.3756519311491,18.4698737476479,18.5950037636055,18.5173760539887,18.5453063197918 +"Q9V3G1",20.9574913918437,20.9692533060904,21.0463582805517,20.9196472262281,20.841517226532,20.8724860244769,21.3856381365729,21.2778818523966,21.2820875123752,20.9436148309632,21.092348365331,21.1655515402871,21.3344561314479,21.1256027965725,21.241467193538,20.9822280280943,21.2164721982278,20.9151251939212 +"Q9V3G3",14.7498123508754,14.8016010842736,15.2347237081373,15.067250440136,14.9011960103611,15.1522059083632,14.8145282281316,14.9289744889351,14.8144100484388,14.95567778378,15.0220164819649,14.6346927280019,14.4772670050831,14.9110131281034,14.3820131106434,15.4231411860442,14.9228758004122,15.2696314904657 +"Q9V3G7",18.0357377060616,17.9175243259521,17.9628275124477,18.1520981964117,17.942075231145,17.8395888697436,18.1742969717285,18.2348743150638,18.2164533013367,18.164128971957,18.1190700332016,17.9869344358997,18.1462011514973,18.3727970440165,18.4196755032096,17.9590082215057,18.0451302697828,18.2059915965245 +"Q9V3H2",18.4217135615246,18.2228757545137,18.261277184792,18.2585354286601,18.2987297684127,18.4454392006927,18.4209914581732,18.4260750442756,18.3485947747025,18.5228423350224,18.690394428281,18.6454921501512,18.4198061575646,18.1520332694717,18.3011726337067,18.5275979309865,18.7813786069768,18.5695109278863 +"Q9V3I0",16.270510718071,16.3610447814721,15.9365926369387,16.144120108976,16.1134073741615,16.0733713029527,16.2994418454133,16.1559949799124,16.2703530492877,16.7308835550246,16.5299741549844,16.765682592653,15.769745875261,15.62358670256,16.3228915810277,16.7955102357574,17.2262043454131,16.6413211756437 +"Q9V3I2",17.4209595052947,17.5091271682468,17.41674761004,17.2554309117402,17.2897499359601,17.3303632208656,17.4385752390348,17.5943161008091,17.3517651508719,17.2442939818162,17.2379072854865,17.3181095223739,17.7853744144062,17.7067108219584,17.817257200951,17.796830528139,17.6036532679701,17.7072218753287 +"Q9V3J4",16.601882343259,16.6145772246332,16.6871730122917,16.6379920089658,16.6305889677252,16.7138477376107,16.4616533476509,16.3473342900172,16.5240884193049,16.7072386957492,16.6396564325399,16.5586715358783,16.5950062493552,16.649967607028,16.6739516734936,16.8167361058693,16.9383842289057,16.66277637227 +"Q9V3L6",15.6653847611187,15.743115072793,15.5145533075272,15.5644245898462,15.7451923215981,15.7484527300634,15.764984064828,15.9345426356192,15.5982181131763,16.153564116353,15.9159956536649,16.1694868130161,15.8986648633481,15.8755034031532,15.8817423645037,16.0337665927044,15.8664399013699,16.1683356599117 +"Q9V3L7",17.8925386541792,17.569218838477,17.8242175016384,17.6835095098901,17.5167558571763,17.7010880775743,17.658927463537,17.6407344790212,17.7418721666924,17.5080500063721,17.5753670077196,17.4960272282928,17.8332457481817,17.932695684092,17.6986022398515,17.6822821453749,18.0237816610489,17.7967463134857 +"Q9V3N1",18.3062728360488,18.5591308478896,18.6369263274665,18.4025229996363,18.4281703842677,18.3033413587319,18.4659148703392,18.4304495354167,18.4448274092942,18.2909718222649,18.3158162098613,18.2844244234592,18.4326232706108,18.3371101497013,18.4367832248632,18.4675655884254,18.2951942601889,18.2595686435105 +"Q9V3N7",20.1712970464286,20.2189788925976,20.202747175545,20.3201989306133,20.2838408858751,20.2171766830674,20.6232035555411,20.5489706012396,20.529296211367,20.6424585932895,20.6720917977283,20.7573428093381,20.8785614481985,20.7628714354058,20.8726393806782,20.7762221018465,20.9251880630711,20.8327394159219 +"Q9V3P3",19.3592749242499,19.3075026927143,19.4681582082291,19.356743110406,19.299155182497,19.2444001529258,19.4981897705887,19.5242662662654,19.4580647606701,19.4079686388995,19.4476180353183,19.4292360452954,19.4007860023218,19.4865904785801,19.3518434928214,19.3353583253991,19.2931881164899,19.4066181119234 +"Q9V3Q4",15.8270269045078,16.1222283948026,15.9079368418089,16.1696351793875,16.0712216307697,15.9984335164619,15.8250075356357,15.7811319735233,15.8891762549042,15.9518106008682,16.1935586709807,16.3139406151203,16.0745454866907,15.6131828456355,15.8758241001299,16.089843797659,16.1565459890371,15.9525581763238 +"Q9V3R3",13.3509949147867,13.7334427605223,13.6685187075346,13.8877872616729,13.7822807286812,13.6651897977827,13.6899590870833,13.5125035113944,13.5607417136879,13.5898396918256,13.478210554957,13.6536471254484,13.5655492571194,13.6792847132732,13.6805549248072,13.6091250338201,13.5075329774799,13.4646029770473 +"Q9V3T8",15.399256235447,15.688643993752,15.9235238842652,15.7517944158728,15.6249400742435,15.8373159411125,15.418048969182,15.3949837338183,15.5561447133783,15.7517892478416,15.851994619222,15.4721209401455,15.3599278681185,15.1809184091553,15.1346242539342,15.8011050654073,15.7404409716782,15.5581920690336 +"Q9V3U6",21.1326694976545,21.0221045394251,21.0012947249035,21.1550919524925,20.9081807436899,20.8636748241222,21.0378530302109,21.1547208311728,21.0833943404033,21.3072878647045,21.2650953172136,21.3811358911258,20.8318415893991,20.9309689288173,20.9920300123071,21.0738365307771,21.2575101049198,21.2170506723767 +"Q9V3V0",14.0494017102247,14.1483909302172,14.227935193179,14.2802627913962,14.4194497231624,14.3317681374694,14.3892219155658,14.3558571437487,14.1979534005455,14.7011826833762,14.643861854299,14.8158452576933,14.1208206769052,13.9367298141947,14.0213192105435,14.4474146385822,14.4840149504282,14.3934832166195 +"Q9V3V6",21.4896468026207,21.5078997543291,21.4926052741356,21.5328490795023,21.5497337801911,21.580944237776,21.5547608485018,21.6355393361385,21.5709853208065,21.6618150144306,21.6477615899309,21.774941524264,21.5209490522697,21.5277240293385,21.426816060784,21.7033154403588,21.5946777477559,21.6170438199181 +"Q9V3V9",19.5588760981403,19.4978986190327,19.5811762310271,19.4485991862449,19.489395074142,19.4882048008455,19.4959314415006,19.5171358472948,19.558715502987,19.5620697652664,19.5045556805973,19.5733278995454,19.4237225634232,19.5643625213293,19.447498562129,19.5642947290274,19.4801460412068,19.404570787069 +"Q9V3W0",21.0015663271302,20.8903051070197,20.9131291992039,21.1378695711851,20.9529449242604,21.0483894410994,20.8794102901367,20.8017656481681,20.7769637064929,20.7244983493859,20.846830494326,20.9218469386047,20.8204701926722,20.8390755980692,20.812281267139,20.4482156871658,20.6811086458324,20.5394198651359 +"Q9V3W2",21.5691626735255,21.6080402448763,21.6222899271596,21.6615929257453,21.650390391039,21.6434984685327,21.6292449174659,21.5104690453105,21.6010384314626,21.3750390138611,21.3781821722006,21.4474814239696,21.5960986047753,21.6233323555168,21.5871866956749,21.4859958344035,21.5467197608332,21.415639022977 +"Q9V3W7",18.147948975687,17.8677566781036,17.8988611734973,17.9244092774817,17.8117726590892,18.0274431217043,18.0664636926798,17.8962725905525,17.9012048454824,17.596105912455,17.7822689815988,17.9340745081034,18.1656334257613,18.1746329561621,17.8658875361641,17.5721429804423,17.9400003990009,17.8452330795557 +"Q9V3W9",18.5198912807925,18.4918824258868,18.6498720851717,18.542112496642,18.6134193989558,18.5175043313301,18.5670019329088,18.4435624978985,18.4584921089039,18.5064414157481,18.6246627900127,18.5591201941783,18.3735723038123,18.3710116198563,18.3959619529128,18.520134324524,18.4846150218175,18.448203081931 +"Q9V3Y0",16.3569767663861,16.4018494008564,16.5697144799155,16.4400262044441,16.5626703765836,16.400162560468,16.3086358235518,16.1434033593559,16.3245617939236,16.5756818719794,16.350819299784,16.3205270675103,15.9616899056014,16.1208529777883,16.1824256131183,16.3366944594884,16.400109617083,16.1823135165155 +"Q9V3Y2",17.9329313662938,17.9812934350225,18.0262037469584,17.8075185857625,17.9466394715358,17.8768033457125,17.8887025314443,17.8858817786102,17.9259611841687,17.9027343937452,17.8512730994396,17.7328880255906,17.721326978882,17.9039936390606,17.8352047066441,18.0113264483045,17.6954588807635,17.867479295358 +"Q9V3Y4",14.391170134245,14.1023407792647,14.3160692698536,14.1589934379962,13.8386282500886,13.7160115516926,14.1897433497778,14.0471876749401,14.1461013977002,13.9359679006905,13.9399150552487,13.7581065051954,14.0140051760442,14.5208050175158,14.5557449438036,13.6981284496643,13.9391316713601,13.8959747801727 +"Q9V3Y7",20.3496993595087,19.701282104131,19.8982919958015,19.5011483886623,19.6606299090086,19.6223237844024,19.4705642727966,19.6303424196118,19.6462817181633,19.2979511252754,19.3963550238995,19.431415442691,19.1442845879858,19.4301037911156,19.2760138555189,19.3900584999627,19.334992986425,19.2793794376145 +"Q9V3Z2",16.1027266541779,16.15580503346,16.1864874707295,16.0373866369981,16.0410427029408,15.9676286270361,16.2408898489881,16.2822073383752,16.2689755184778,16.289595422536,16.0800963245715,16.1383972720467,16.0032068956782,16.3471147786211,16.3864515809088,16.4332662648789,16.2008055452886,16.1591312540583 +"Q9V3Z4",18.7678214403397,18.6358001869998,18.6936793422721,18.7857754977096,18.7354743468611,18.6945532490271,18.6769287793596,18.7344132926012,18.6334695187826,18.946255494361,18.7459917899753,18.6448993575398,18.6810213325184,18.7986964009115,18.9638686750676,18.846718126498,19.0541446534375,19.0740505280973 +"Q9V3Z9",21.5412350162071,21.5779423406194,21.5566170456576,21.7856645923047,21.7728756894394,21.8148390391194,21.7223252138911,21.6211688324676,21.6403121334071,21.850997706549,21.9595413407608,22.0950241540427,21.4759507075805,21.3766293499619,21.2957331157744,21.7892040013422,21.8572196846257,21.7628517498735 +"Q9V400",14.7560116682493,14.6076066448923,14.792423161006,13.9321461448634,14.148364336811,14.223735129723,14.4182389381402,14.3205008350475,14.2197177783797,13.9492435738661,14.3011530080167,13.8622295133714,14.5600474500741,14.5252356523841,14.6094194434298,14.1342679290009,13.8470952270425,14.0424306782842 +"Q9V405",20.1206806644962,20.0709940544646,20.166751904953,20.2659125349712,20.1772380101039,20.2998187848801,20.1380771861939,20.2060088264633,20.140972932143,20.2518889913454,20.3231722235148,20.403904067282,20.0750264315272,20.2072419248243,20.0780544699716,20.4753940774287,20.3423248465917,20.2374777267329 +"Q9V406",17.1773620143214,17.1845596766887,17.2096283535449,17.0274364438493,17.0826344647277,17.2595312640189,17.1217809694161,16.9396913507287,16.9524583143546,16.7630924204549,16.8889498420819,16.9440333756825,16.836494527442,16.8853915207385,16.8175765117692,17.1606865093951,17.1056260299133,16.9036250655087 +"Q9V419",16.5168089180328,16.395359906973,16.5978284031084,15.9279189413911,16.1192100025096,16.1951922564579,16.6039391258445,16.5496558112335,16.6306758587878,16.3675261836321,16.414366330942,16.243304124584,16.8828053537919,16.8585533554792,16.9104309074139,16.6236954808359,16.5855485963911,16.3452624531764 +"Q9V420",17.3929965150915,17.2263070554285,17.4597626646864,17.4535417686252,17.5622468202292,17.5000160087983,17.5808796624676,17.6314347514332,17.573967385944,17.7154183981817,17.5853302998706,17.5489350484196,17.5795211180069,17.6641927963501,17.6119344286017,17.4164199604984,17.4692656995595,17.4441618864213 +"Q9V428",18.7944078616197,18.8105457535342,18.8622667911283,18.674498469776,18.6998517052619,18.7795175369012,18.7671395963631,18.7568439866484,18.7270957767297,18.6670320184254,18.6983402307047,18.717870235786,18.6359850956467,18.9116514577499,18.6755970322582,18.8670056690554,18.5288355769872,18.643721338083 +"Q9V429",22.3962807730213,22.3260076041619,22.419799460216,22.3845610168933,22.4229866596197,22.3475729895617,22.3227650546391,22.2518715253483,22.3964376057833,22.3080608371205,22.2838590666581,22.3818887852611,22.2999246417655,22.3894902654999,22.2280965545894,22.2880984230881,22.32547562524,22.2258953511162 +"Q9V431",18.5494427424964,18.6186923451307,18.6621056683209,18.5333777169923,18.6043070797236,18.5999645135022,18.6071624684493,18.5943826225463,18.6140746701979,18.6508827070562,18.5062886012415,18.5569874431195,18.5679967285356,18.4818094797581,18.4679770034809,18.2693453573258,18.3727275924555,18.2770984222341 +"Q9V434",15.2105981361137,15.3249576145894,15.1274510111469,15.0370426919797,14.6736740409839,14.7401496113409,15.0270000423868,15.1218652602589,15.1576358981624,15.212161558211,14.8336464196808,14.9747898686041,14.8109493577068,15.3099197627779,15.176314115641,14.835134744518,14.8688234326251,14.9565460260208 +"Q9V436",19.0263453275192,19.0712093767978,19.0608684968864,19.2095926249528,19.0935633121678,19.1142208697061,19.0975253081341,19.1783056342693,19.059002778715,19.1815964470881,19.134138715506,19.2282603679745,19.0187414855443,19.0473292111326,19.0677705043669,19.0862738843946,19.0955288277596,19.0899520599841 +"Q9V438",18.8934365090455,19.1153740954773,19.1146852772259,19.0923772750503,18.9582275621564,18.9681667605647,19.0669470343962,19.053360977927,19.0369261831009,18.9744660146942,18.9986527273034,18.9941261060415,19.0291042406028,18.9583584413247,18.963196584516,18.7699066096152,18.7422638792154,18.749136771955 +"Q9V455",19.1664427025087,19.3905472271794,19.4995359057116,19.2662743579552,19.4152377134556,19.3527212035667,19.7554846026451,19.395600179688,19.4015885174164,19.3065101623013,19.2986425429383,19.2761148404595,19.6602913193141,19.3146676140378,19.2678666561031,18.9215934706315,19.2619013380567,19.2787694920983 +"Q9V470",19.8461283632269,19.7995388502359,19.9807048620197,19.8989080819073,19.969212308128,20.0355249762371,19.8697619889186,19.8896709627868,19.7375664204807,19.9827091151958,20.0331734836661,19.978269197129,19.884724774402,19.9257738054976,19.8541280296662,20.1360341630658,20.000897076402,20.0320730011837 +"Q9V4C8",17.1185386906298,17.060162408409,17.3232302879953,17.3343596937697,17.3181961096546,17.2965442850224,17.1018801254169,17.1099835456041,17.2125237619682,17.3298460898234,17.3236987988516,17.2792105313151,17.1959509490219,17.1650886255828,17.0493338861491,17.352142945259,17.4555890058185,17.2718757414705 +"Q9V4E0",19.2262943719809,18.3486467193495,18.5192302656344,18.0988035589097,18.0707776274561,18.0177159726889,18.3886992063304,18.656548113685,18.6284682888209,18.0718993322203,18.223838674633,18.2686940963485,18.7383232013002,18.9861043359047,19.0273081456251,18.1906353639725,18.4287395636858,18.2532382655962 +"Q9V4E7",15.3352149689414,15.2063410291533,15.3426911815541,14.8642274470838,14.6681234072811,14.9643727755399,14.5729638649246,14.7664546094804,15.0000877057977,15.0807313947854,15.2101070071896,15.1833295334957,16.4173362683608,16.5304902068846,16.1607118581175,16.527256780805,16.4162144649119,16.1465376703959 +"Q9V4N3",19.7135559666034,19.4229361086604,19.744762015992,19.9024435952956,19.7451779412655,19.6841108705138,19.6526621700049,19.769833315109,19.8630956965768,19.7720300984841,19.6378587730528,19.3784670598463,19.613157806997,19.9350889748452,19.8777506249162,19.76509247113,19.908046995582,19.8707558406699 +"Q9V4Q8",16.8173230199952,16.7542368821487,16.9234235772853,17.0512202901398,16.9256048816981,16.9805729626392,16.9830095440412,16.8976256626506,16.8588670473345,16.8898357730432,16.9311338676592,16.9231001751398,16.984556710718,16.9384156245545,16.8400579662131,16.6512257046225,16.9301541238489,16.8511493139482 +"Q9V4S8",17.5525308055135,17.1571756596877,17.2607669098138,16.8627053133772,17.214765428091,17.3340015749925,17.1639817804407,17.0913257675085,16.9701304712217,17.2977497178188,17.0815889702518,17.1817954022796,17.0315326560616,16.9892907310858,16.8579600903103,16.6726967592582,17.0470504758452,16.9765425838522 +"Q9V4W1",13.6993310646171,13.6608776482707,13.7060582119824,13.88326126246,13.2265212457195,13.6593247892384,13.6390425424063,13.7206064577479,13.6707934851701,14.1963360712376,13.5349488522756,13.7433832907913,13.1648510346048,13.8674372686655,13.3939222523834,13.0342848329947,13.6067153356412,13.4436247787549 +"Q9V521",18.3180302892684,18.4145680422536,18.5626653301701,17.6719827511213,17.8645317185893,17.6949708897121,17.9104804201986,17.8350264559541,17.8073406326504,17.360242745855,17.2845479706364,17.1757077558706,17.6165009460813,17.4534751450944,17.5146561533696,17.1524522909502,17.1775401109471,17.274348681702 +"Q9V535",18.5163678846385,18.4598728995802,18.4371338024956,18.8049477924136,18.590171666409,18.6127702169442,18.4136588390873,18.4510137068881,18.5504824563157,18.6206859286366,18.6635454572767,18.8672164477281,18.4823110451325,18.5814977329701,18.4179655290555,18.7714065478288,18.8632765746133,18.7238095851982 +"Q9V564",14.0916878868851,13.9432666072547,14.3000638671317,13.7842448476937,14.0658646721208,14.113582802212,14.172865547257,14.1069010062818,13.9215413586315,14.0981529994582,14.3420722480156,14.1620927700297,14.1388775813894,13.9106732508035,13.9766683050362,14.0830288780567,14.0000799562635,13.8949086376988 +"Q9V595",18.4234725617536,18.5545794813656,18.5944734844103,18.5532023544323,18.568351538638,18.5893746784777,18.4356856055789,18.5546036299431,18.420374495618,18.7221429404554,18.5668743669364,18.5283231100771,18.6020203256097,18.4471534157911,18.4629265001633,18.364787071879,18.409748427035,18.5058385909627 +"Q9V597",20.5431192631458,20.1871568171223,20.1517772971479,20.08201131843,19.7882431463267,19.8879585440518,20.206162519162,20.2627236333971,20.1733835625745,20.5463072818707,20.3343110700508,20.2935850208019,19.6648636812388,20.1438053663447,20.3278009976621,19.6988956491889,20.0251196797946,19.9068542907981 +"Q9V5C6",20.5647164272133,20.4464162564363,20.6198909645755,20.6119100224617,20.5920760439626,20.7352559545711,20.6653677598544,20.664007622928,20.4786740852289,20.6407821235548,20.6863099990778,20.7596145922586,20.6931919686162,20.6747101020963,20.5200516957382,20.5992177833538,20.7116660605531,20.6616987926819 +"Q9V6B9",15.9035223533628,15.9395842416197,16.0762915632941,15.514652137871,15.8298923928608,15.901500327101,16.0807849889271,15.9664093605148,15.9457548699511,15.5898864855151,15.5556506074798,15.7187113412822,16.1887307181232,16.0452076287867,15.7631107786312,15.7726130516176,15.7134455041549,15.6448208551572 +"Q9V6U9",21.9438377714519,21.9015687818211,21.9484409331087,21.8858637205332,22.0536196606128,22.0843125875647,21.9294391306816,21.8188933331227,21.7343540714171,21.8182829635552,21.8288545798543,21.8874131377058,21.8686123204966,21.8643811986802,21.8355699903782,21.9090474200677,21.8877657726951,21.8649926066116 +"Q9V6Y3",15.1600094286012,14.8443148253455,14.9588999540452,15.1900183426539,15.0849921151899,15.1856571567637,15.2365090684891,15.3501013772109,15.3600899001118,15.2596870163571,15.5864335842498,15.6174264841465,15.4635208022676,15.1534517496276,15.0930778731009,15.2224199075688,15.512870914314,15.3170131977697 +"Q9V773",15.7336086082225,15.6693080396285,15.7528641140687,15.6638004292426,15.5030561873095,15.4608832116768,15.5766026451752,15.5625770911438,15.4491917037385,15.3738313774293,15.6168906924697,15.5919293618493,15.6126809398496,15.5475591036662,15.7993702123932,15.3366576146288,15.3977905003303,15.2429430108216 +"Q9V784",14.7379660858866,14.7527101461535,14.8538182198287,14.1183397231188,13.9972484685956,14.495816994729,14.1387631985781,14.3517167063021,14.16469212977,14.1904289143255,14.507649559439,14.0455554160213,14.3533593396448,14.1691231548699,14.2195257823697,13.7385843560286,13.4989935822222,13.4980330748636 +"Q9V7D2",21.4541483931922,21.4751756287313,21.4855637725263,21.287775602767,21.5403402693258,21.5614342435152,21.4381445032364,21.3850798122051,21.2118619737671,21.2577019333224,21.2999349850309,21.3575581972419,21.4919967238421,21.3104946959905,21.3417718095467,21.1783506963946,21.0970924614712,21.1499278561576 +"Q9V8F5",16.3456151887638,16.2302545787244,16.4396923677967,16.2034400774867,16.0907518498101,16.1298939355602,16.0760957269684,16.1075533851954,16.0517040132509,15.7182896565095,15.6228647746613,15.7233605817578,15.726892919003,16.122593507413,15.9025208844344,15.977598222874,15.8739136958013,15.8007600088053 +"Q9V8M5",19.6923885970604,19.4958868819946,19.6678091596866,20.1930769102437,19.9885441374399,20.0674862060626,19.5635347992901,19.6114842937886,19.5589387211891,20.2064982989678,20.0960227884456,20.0694602964137,19.5325570986386,19.8378651187113,19.8128323717525,19.934793945756,20.0930464295767,19.9463228948521 +"Q9V8Y2",19.9922787888882,19.8100072474256,20.0654430378919,19.7213738137063,19.7570358506916,19.6314009970893,19.9830798195338,19.96760985331,20.0708441677548,19.9631196558354,19.8405225528985,19.9897490533863,19.6371503262103,19.9362121745453,19.7513353402292,20.1876960557772,20.1733107810803,19.9759258635998 +"Q9V931",18.151818262156,17.5731009404866,17.9576527592311,18.2401703449972,17.6495446935739,17.7617311891529,17.7869404992276,17.539546568444,17.6877456745669,17.848628727189,17.4590963154602,17.4129372672183,16.2782342694785,17.7860912723478,17.6808733337369,17.4772631187004,17.7756754314361,17.2821149978426 +"Q9V998",15.881353797285,15.8686994729384,15.6659946160646,15.5827292411607,15.8026466314801,15.8214226183589,16.1712630532949,15.730974945104,15.7691941520585,15.7743251062708,15.9001200583104,16.0921397681024,16.2535408309243,15.6268933221407,15.8354648067082,15.3742790823402,16.1081566813024,15.8532751499833 +"Q9V9A7",15.3330064808881,16.627324457502,15.8800196423544,15.6268167455828,15.355146693203,15.6711498935259,16.2652668732688,15.9569523557314,16.2393973474014,16.5480826696295,16.145007839455,16.6619796433166,16.1785118001379,15.9469695895536,15.9299154995764,16.5142644088387,16.4345480429009,16.0834869521711 +"Q9V9M7",18.2906480519303,18.1958515005644,18.3697439128444,18.237451730251,18.1115104352053,18.209261861169,18.525120778499,18.6788391731175,18.7095865909952,18.5548871108378,18.3975579007782,18.2115609356949,18.391469125337,18.6581883537025,18.6233111732615,18.4420213207387,18.3996507542258,18.3181336436287 +"Q9V9Q4",19.1462231548689,19.2729499234616,19.3994122339979,19.2845171632749,19.3565156566985,19.3418918501496,19.0229420055721,19.0531120820742,19.0241078197344,19.1201869729805,19.1386118211451,19.0001108855374,19.0531727279869,18.8706548619257,18.983791214145,19.1322175992423,19.0674152786205,19.0099456203613 +"Q9V9S0",17.3191772377296,17.1014500211238,17.14063162698,17.0738491152312,17.1668468185222,17.1399075180569,17.1305455555769,16.9910098961109,16.8593358853948,17.0492719784861,17.3163654030393,17.3042815591331,16.8626867239126,16.9877166884356,16.9116130048321,17.1785462046573,17.0506879883618,17.2583072211968 +"Q9V9S8",19.9171093885844,19.7856643224989,19.8320324562163,19.9363501664338,19.8150156161493,19.9056879307952,19.9865275313507,20.1303370010454,19.8440405168946,19.9775339948112,19.940907409777,20.1569404576878,19.8731477238143,20.0569308005026,19.9993305246698,19.8947790840308,19.8565927390519,19.8474160027616 +"Q9V9T9",12.8086668615879,13.307035977019,13.4537832363322,13.4774155027416,13.3960259751261,13.1359497336677,13.461956201048,13.1763323715647,13.5524591814563,13.6760129315229,13.5844748487744,13.5250971818222,13.5822675698038,13.3399715194166,13.315760865945,13.5982645392252,13.8007429140285,13.621533406706 +"Q9V9U4",15.9893398150553,15.9460996428887,16.1151205778781,15.8203398269134,15.851724352654,15.9566350910979,16.0878459134654,15.9979751078388,15.9942844388143,15.9028663527887,15.8006437943208,15.8196058620637,15.9572321282473,15.984439715905,15.8840294114303,15.7753204036896,15.9520618265524,15.7632690588753 +"Q9V9U7",17.7281142689058,17.75317175205,17.6924634301154,17.6257360744361,17.8710103595788,17.9466016668578,17.8739202388323,17.83016792604,17.8062146308808,17.5695101496893,17.8772608622434,17.8846925914558,18.214372820531,17.7644173800615,17.8154319439229,17.965997985551,17.8816232579717,17.8322472747129 +"Q9V9V4",18.8253144924069,18.6725399588639,18.7767005089778,18.6000947389293,18.6732412038032,18.7295350048549,18.8091390415071,18.8668227982001,18.7833899167603,18.5248492318108,18.5207739246687,18.5310305536191,18.6146142138393,18.7373359906456,18.615852930921,18.4044859652173,18.3077838075291,18.3419887685776 +"Q9V9X4",18.9559058100852,18.9436911257017,19.1256557070729,18.6272517436897,18.6391395710225,18.582882287454,18.8363722759514,18.9634486745559,18.9170801264062,18.4056397881105,18.4298257696284,18.416113316906,18.7715168040453,18.8016567600525,18.7454522297092,18.6724640357447,18.4913885566657,18.4819667900786 +"Q9VA09",15.8570351647205,16.0705913317932,15.9756876801468,16.1659583354334,16.037044617512,15.9928523992616,16.5488738818969,16.4502086441574,16.5064012126217,16.6025934447708,16.4180389719027,16.568632811843,16.7082074938908,16.8206790117438,16.8407066202036,16.6508099411484,16.7369156847518,16.6491975377841 +"Q9VA18",21.5233155674981,21.7148417186841,21.5110612226277,21.6903238422792,21.7024649527536,21.5573296112213,21.6162405155402,21.3714284942174,21.516615385923,21.5313115431166,21.6484078809,21.833078025725,21.6329533012859,21.3532080954621,21.5114665371841,21.4356099198413,21.6394035475441,21.5002039068802 +"Q9VA32",16.9250173015144,17.2438095879401,16.9818026370797,17.2975796099619,17.0421748329521,17.1132020147753,17.2904572731261,17.2932003457995,17.1814134818358,17.3121616096523,17.3231021666511,17.5692370850945,17.3424535821063,17.017947333195,17.1947154155461,17.2295927504962,17.4770278603195,17.3568914925259 +"Q9VA34",14.4521539599783,14.4988629834654,14.2780019221281,14.7880554025134,14.6428720286867,14.6341221309519,14.5974085706875,14.5003386047324,14.5380449225727,14.3636336751243,14.5130606734159,14.4568373058613,14.2202416580448,14.2485032510382,14.3189932920257,14.1633063386378,14.1811620636477,14.3588000314464 +"Q9VA37",22.0681712530273,21.8968678093208,21.988840266095,22.0277297827159,21.9012878884869,21.9742470675939,21.6112141815917,21.6677648216878,21.7320906886496,21.7271988990529,21.6434664692109,21.6644533263555,21.5289750339798,21.8585422343283,21.6613436288341,21.6718825359028,21.6672424632356,21.6141967087423 +"Q9VA41",17.2146301076293,17.1640200608987,17.0620063381381,17.6744113634491,17.7017636378899,17.7657268989994,17.4442516502356,17.2866173198118,17.2968082482042,17.4191835246315,17.5546124728579,17.6048004667979,17.1503427499862,17.2244808336498,17.3318663616881,17.8584424159801,17.8297674868036,17.7000534980839 +"Q9VA42",20.6622490714348,20.5270781959592,20.6969158827852,20.8013159499807,20.7061525164714,20.8664677122731,20.1953779063996,20.1951885027115,20.1631832981716,20.2123227703335,20.1445473627042,20.1857133402954,19.570588495318,19.9241504836517,19.6893927471959,20.2527578699598,20.1974950019284,20.0929390827053 +"Q9VA76",15.1457134186414,15.1157163825658,14.9742365719895,15.0738947415192,15.3466772079667,15.4527224717389,15.3473273780738,15.0606855818151,15.2181949828383,15.2433707105716,15.2561986362614,15.3508790068832,15.2426330543005,15.2602270270995,15.2138440667822,15.2184480580756,15.2318825254737,15.0615102609499 +"Q9VA97",18.618254851685,18.5466891990269,18.7696635730749,18.4049336236436,18.5463079481624,18.8243415421459,18.5379534697993,18.5666433169155,18.4349331157153,18.545803011382,18.5439210076646,18.4340666262871,18.5834104304071,18.4320019072465,18.5387072379177,18.5729000283886,18.6276920362897,18.2615433201646 +"Q9VAA6",16.3169565901311,16.3593453207515,16.2965563517037,16.5397383100722,16.4248833609454,16.4489939587591,15.9649595692392,16.0392105716871,16.0526956984777,16.0749320602159,15.9906003945486,16.1633942689624,15.6131740192677,16.0390313421529,15.9531892901877,16.6030578774033,16.2597474362439,16.1979888582387 +"Q9VAA9",17.0479792935668,17.16627576386,17.4255328279049,17.2631421282166,17.1401223163478,17.2063919696866,17.1199645785723,17.1898768321329,17.1077505226734,17.2468805700378,17.0666923925002,17.0132928163826,16.9282358892918,17.0680995376739,16.9268760251424,17.0060568925002,16.9811925096706,16.9324151903955 +"Q9VAC1",23.2662957998193,23.1691111517281,23.2087214717339,23.1161364202057,23.0935901145202,23.1152029128777,23.6129741679093,23.5955104850101,23.5327966489759,23.3852193590418,23.4094398495744,23.4636100729126,23.5404357511473,23.6074907705989,23.5341474622221,23.294895265276,23.3408143919677,23.3614781946773 +"Q9VAC4",19.2334746169151,19.25188634764,19.3329902397126,19.3734710502311,19.414045233106,19.3294618886054,19.3989238936298,19.3419525079369,19.3918758856175,19.4276137890906,19.4383021051977,19.4320946780694,19.3958718245812,19.4260687843771,19.4722731399557,19.4989792890113,19.4560794852015,19.3696386314986 +"Q9VAD4",13.0526789348817,13.2505058872108,13.4364558156328,12.9331156051673,13.2187139048691,13.1291394966334,13.074396083138,13.466462558442,13.0907810732448,14.0733093569044,12.9897296407478,13.5256036553594,13.5670947699279,13.7368065994892,13.5868634902299,13.3178778575215,13.3562540167819,13.2496290764406 +"Q9VAF5",15.7585464035037,15.7491989908731,15.890994067315,16.1576373193607,16.0513464920021,16.023589269672,15.8553145585747,15.9408428778519,15.8885429902805,16.186671346913,16.301513295685,16.246371677215,15.8535176622797,15.8634052770345,15.8111619120868,16.0578265967739,15.9632069539591,16.0088539708363 +"Q9VAG3",16.7820472190392,16.5594459862489,16.5324455425305,16.7958141019557,16.7239291343846,16.6705211241372,16.9813154669095,16.9148281107351,16.8066842266017,16.563617096124,16.7570894992488,16.9611412438074,17.0470678694748,17.1298024287191,17.1780875620787,16.7404213502914,16.8251879444581,16.7614034046392 +"Q9VAG9",17.7349398196446,17.6107241118985,17.6360006660979,17.4739142425473,17.452656223865,17.5554718402722,17.5054875720031,17.466209686093,17.3382803466478,17.3668849157363,17.3464496057888,17.4096540794246,17.380144855668,17.4774961485393,17.3975925924636,17.1421697131436,17.2500053425583,17.2665415938368 +"Q9VAI9",21.9678112948897,21.7795007949967,21.9112073629323,22.2819089159524,22.2235687553418,22.2555172207782,21.7620262548926,21.7871283870365,21.8504001102015,22.2538093017818,22.1688453129737,22.1165209033196,21.4236633157109,21.7408124722641,21.6804794127173,22.1478168600444,22.1371802206591,22.022910933323 +"Q9VAJ9",17.3295492699798,17.1418416795635,17.2780138174868,17.1526016624654,17.2421939833006,17.2079991890518,17.6896687853456,17.6095783629331,17.5221269721716,17.5216311514624,17.5228758589416,17.6809686246644,18.2735702817381,18.2797766473488,18.2858651758759,17.8566724436398,18.0274270625434,17.8487198153805 +"Q9VAM6",22.308952829357,22.1962516957249,22.3892105853651,22.3302007067823,22.2508318164129,22.1975467446497,21.9925561231005,21.9940388061699,22.0653741413468,21.9540051889007,22.0134254123697,21.9755909396419,22.0086518071335,22.1386092194941,21.989639274231,21.9184894037413,21.9196991088438,21.8954943737808 +"Q9VAN0",20.3796500080063,20.2629971541086,20.2821548647923,20.3089333500154,20.3830707386622,20.4645652657,20.5625140982518,20.51147362234,20.4583811169026,20.3983297505211,20.477575459219,20.5545685894068,20.524850678165,20.5823004654018,20.4451362908085,20.5404671794338,20.4973276246618,20.5099389367832 +"Q9VAN1",14.6882273720288,14.723104702544,14.763145877455,15.1627510031399,15.0135728962365,15.0448010202149,14.6145303211678,14.738658464047,14.8278649113791,15.110152160311,14.8582518914758,14.9305640008493,14.2426807512853,14.612120700252,14.3183546876167,14.844607527779,14.7172404811564,14.7782186381967 +"Q9VAN7",23.9793594992946,23.9155095582965,23.949183625775,23.8700621917668,23.7086663988158,23.6768591233146,23.7127378656768,23.6553259192538,23.6999449453204,23.4336431031542,23.5365724409959,23.562102820648,23.6825759095535,23.6926320279423,23.671333965268,23.4882213209075,23.657893545049,23.6071754100273 +"Q9VAP3",16.7944565123973,16.5278374819777,16.4167706859939,16.2529042007615,16.1426650198744,16.3956612328931,16.3020557024539,16.4023994081926,16.5333274926815,16.9660018774529,16.6535996474607,16.3689332176749,16.1934040488462,16.6101249127657,16.6552729921282,16.3744793805558,16.5466752521965,16.5133361010958 +"Q9VAQ4",16.382088644731,16.1029306477958,16.2977111801802,16.0926791118844,15.9846865511651,16.0018704407911,16.0797212285265,15.9263982464951,15.9672905634441,15.4641354179332,15.7751687351326,15.5385911729668,16.1469697117376,15.992218993267,16.2213649406979,15.7733151366466,16.1575060776037,15.9120809533793 +"Q9VAS1",13.1137259528775,13.0459686857647,13.0648732525591,12.6751340651293,12.9009712461891,13.024461549413,13.3239479910649,13.2116085057433,12.7999919654689,13.0008938919801,12.8780486505944,13.258215169359,12.8917186801985,13.3184090874223,13.2714190786137,13.2641495215931,12.9145639271296,12.8506090874297 +"Q9VAU6",13.5335466929255,13.512906608585,13.2665117189502,13.4878874591953,13.4057630042941,13.5900462558345,13.391390847145,13.274695894221,13.1565353791809,13.242724917284,13.2328660297647,13.1619364854565,13.5527701988603,13.5208787035644,13.121805637756,13.2005318069695,13.4617416819505,14.1120164452015 +"Q9VAV2",17.6383908272431,17.8119826994369,17.841327037042,17.7936338041587,17.7917777419637,17.8923639178083,17.8159629107335,17.7931868755937,17.7756033365796,17.692245799145,17.742049233079,17.735564138871,17.7197531603033,17.7058344360807,17.6487125913941,17.9447142939347,17.7598698093643,17.7111297738231 +"Q9VAY0",14.2575986490757,14.1846662199046,14.0417389701583,14.3610700425556,13.8609215967844,13.996341135801,14.142899533213,14.0291005452181,14.010864906123,13.689391615158,14.056213502752,13.9086229090898,13.7757651043964,13.703130434053,14.0392446333124,13.9292822934451,14.3219749391318,14.1591946833594 +"Q9VAY2",21.1452886841686,21.1665235182145,21.2111600763414,21.1632127615264,21.1632729944457,21.1177747798603,21.1804053746756,21.2063219097135,21.1252916011199,21.0894715463745,21.1160649892901,21.1326858711914,21.0774173985217,21.087482099178,21.0836337893283,21.0920775999565,21.0082078543816,21.077327247382 +"Q9VAY3",13.8920169503112,13.9463853591457,13.6679269538807,13.8428228725652,13.7048124992023,13.8756426477576,13.9649578944991,13.8773727539981,13.4590091714207,13.7274823196804,13.8468320830553,13.9503978702532,14.222907927484,14.1271406625704,14.2911279053621,13.8817256603163,14.0293702668844,14.287809076182 +"Q9VAY6",15.1836436889412,15.173937060147,15.296107530357,15.194819236153,15.2151488663105,15.292492783446,15.1061250347179,15.1395877396693,15.153026597102,15.2327704406301,15.2987309945138,15.2159560970477,15.0987603058941,15.2313003630687,15.1332368291893,15.3827714946458,15.140185177273,15.1080703638403 +"Q9VAY9",13.9743314335284,14.0053359731416,14.2098707165838,14.3388090009042,14.5260895153134,14.3475155382532,14.5698725373375,14.7212166938929,14.8060390208936,14.9132882531021,14.7993393301808,14.8305562021151,14.6919027100595,14.786843860129,14.5875062057175,15.1012042458188,14.7505828080928,14.8079204971874 +"Q9VB05",20.1890275287274,20.1273398931486,20.211362973828,20.0910182874665,20.1306182374168,20.0866573985697,20.2720669706112,20.238068782921,20.2368977807253,20.091288856127,20.1483034471612,20.1983281825082,20.3347170515809,20.333638846829,20.2396346137916,20.2102473608035,20.21039684784,20.2154851058938 +"Q9VB10",20.9393490098145,20.8661817293174,20.9192498950242,20.9691832716479,20.9917699287082,21.0344056852017,20.9687239247104,20.9010570050529,20.9243427648783,21.0163977451946,21.0200631501616,21.121348924264,21.074765782385,21.0268760325389,21.0271246358174,20.9855455204697,21.1480174084431,20.9274933490365 +"Q9VB17",15.5113023121797,15.4910251760904,15.7769494942517,15.5466436659593,15.5910689603028,15.5317950136001,15.5749782563469,15.5710996909493,15.5187140553969,15.5442456833823,15.5307043491351,15.4941807299943,15.8012551454544,15.8092866530501,15.5500154637939,15.6612393554905,15.6464795892852,15.7680096617759 +"Q9VB22",17.3373538680135,17.3176000210308,17.5438921497245,17.5505200456816,17.4656994048809,17.4093309764624,17.1511318552543,17.1823566200923,17.1221062728195,16.9933821346382,17.004757849588,17.100484906901,17.1195251509738,17.1935439576074,17.1767005395604,17.0507300604515,17.0386852618136,16.8501282695452 +"Q9VB46",15.0253647022437,14.9680942313272,15.2523970151633,15.0699986970917,15.0598722436385,14.9439679093585,15.2007547745485,15.3943277662086,15.3591853765969,15.4410309035735,15.1203753022668,15.0962517243579,15.15529980539,15.6596752188863,15.497397703109,15.6506757920699,15.3407799125898,15.3939249463316 +"Q9VB64",19.0771160785105,18.6996725293539,18.8177865380278,18.7882411911481,18.7506749814361,18.8505353592025,18.7124368538572,18.8069683499494,18.7133305466449,18.675413855288,18.665241087089,18.7079365730973,18.6808293706137,18.8756212728817,18.7510574676281,18.7058648870987,18.8417240158062,18.7992557519157 +"Q9VB68",15.6199012450577,15.5696968430101,15.4340763497014,15.4181866701928,15.334399066988,15.461908197732,15.6058369446357,15.5136904756763,15.4479265700308,15.6002871036121,15.3774401140734,15.4788631646052,15.0947883285415,15.2886444888479,15.5943754738045,15.3927934868662,15.6479227903103,15.314644023032 +"Q9VB79",17.7134207627575,17.4831830716869,17.7105575363754,17.5651333710112,17.5831915292696,17.7509046236159,17.6588364161423,17.6880829836284,17.5214474103211,17.8229438983569,17.6874445296907,17.7254876757507,17.500550718971,17.7036925324314,17.5958690451103,17.580217243205,17.6955077637367,17.5368361192705 +"Q9VB81",20.747104520549,20.6606351068362,20.8208543167592,21.2572095799957,21.0116283117649,20.9503661286811,20.93601275214,20.9206835046203,21.0409807853743,20.9990147988161,21.0346075327565,21.1704468978086,20.7156531973818,20.9662889400748,20.8018818297998,21.2321109040235,21.2932623568534,21.1025757944832 +"Q9VBC1",13.0143869603893,13.2388997918758,13.1726695240844,13.3444981423544,13.5545982114464,13.2604408255315,13.2807459045799,13.0378967337393,13.0361295435184,13.7379505596523,13.9147681395403,13.740163826819,13.0924855037614,12.7595287854954,13.0572743163669,13.0759526752847,13.0403280839248,13.2793417097017 +"Q9VBC7",15.7332096232726,15.8858703935264,15.6601415135675,15.8715870066011,16.050603120964,16.0220402432083,16.0530292528802,16.0202101841963,16.1641071440531,16.2817748298463,16.2397836138253,16.3963536043002,16.309756940901,16.1000495949394,16.2951414877081,16.700284522603,16.653125268653,16.411858183267 +"Q9VBC9",15.4568245161472,15.8941840658213,15.4118144184223,15.7082235103135,15.8945107445705,15.7690550243348,15.4287638981816,15.246113260226,15.3472434594085,15.5266642803486,15.7702552685942,15.7357586318456,15.3339851476898,15.2240759808573,15.3727857022109,15.7508132532011,15.1761352858124,15.5686173696597 +"Q9VBI2",22.2617107064294,22.1975913939492,22.3292107377463,22.2954292521664,22.2625887043699,22.2426589330744,22.0740598642258,22.0119795274164,22.0675161435662,22.0443275651915,22.0381048787478,22.0285569687395,21.9798525159236,22.1491984154327,21.9866993890781,21.9984784940312,21.9943954780518,21.9992162257634 +"Q9VBI3",18.7049578841193,18.6708480443933,18.7718161371144,18.4466433428131,18.6921563770162,18.75742247127,18.7553427669951,18.5692403033122,18.6081419448814,18.6668178690843,18.5889881764588,18.6065344077003,18.7050541910758,18.6046666773852,18.6035661346571,18.3806239374631,18.533540412985,18.3119588959276 +"Q9VBL3",15.3159449548617,14.2133428496272,14.8142928071928,14.2230235668693,14.3640069448562,14.555887898661,14.4827140913167,14.5348870622772,14.5098273849045,14.3677404352486,14.839973104715,14.4901094923343,13.8448726720508,14.4144212093567,14.3831080193492,14.7599217874805,14.6275863369954,14.240991905386 +"Q9VBP6",23.2162965371291,23.1087462814223,23.1945841507248,23.3826794234656,23.3080578194054,23.2750634247471,23.0311087770395,22.9878856038596,22.9851556501062,23.0819246226839,23.1033648831794,23.1461834260229,23.0017225762815,23.1235365366948,23.0768507306199,23.0568772155881,23.1390180276261,23.0927717699667 +"Q9VBP9",13.823765466284,13.6001685068232,13.9037436041889,13.6096095588572,13.7230079488141,13.5806816540728,13.9989800463122,14.2398029253545,13.6947578016005,13.8361102491194,13.7647484012493,13.8734159952294,14.0760448745904,14.1629322900901,14.3210961366115,14.321372304818,14.1752224276499,14.292187308278 +"Q9VBS7",19.8764114231867,19.8329782384978,19.8707585707003,19.5704984594996,19.6623371813987,19.7370082247099,20.0243291539459,20.0140602053435,19.9114422853665,19.803577137342,19.7803417653061,19.8043743103809,19.9519386571195,19.9278623975841,19.9262957877843,19.7251719432602,19.7343469862238,19.702047595412 +"Q9VBT1",16.2849170352573,16.1980920823521,16.2441570253531,16.082824705258,16.2967178303517,16.3377073656441,16.4746897703914,16.3543828688587,16.3000789168131,16.2042384243314,16.2807026130657,16.2718065468493,16.2962753329867,16.3748188352401,16.3301940554055,16.518454838786,16.3566858771425,16.3774561969458 +"Q9VBT2",12.0163005784215,12.7703997395291,12.7516538409627,11.8781069164203,12.7566734234069,13.0237070806386,13.3313385159676,13.0669441062965,13.016747459368,13.5981946670801,13.0488872796038,12.7328290942405,13.8787164206428,13.2824187224523,13.3445115674126,13.1225541640366,12.8998879912803,12.9557622199466 +"Q9VBU0",14.1808690836699,14.2623006474439,14.055783728345,14.0015116302075,14.357814366484,14.0557214583815,14.1960120979236,14.1444155038463,14.0729050341966,14.0752360798096,13.7458069080026,14.2616056144743,14.6994928665208,14.6132471442528,14.5959288359559,14.1508306910049,14.1803678791067,14.262007777783 +"Q9VBU9",20.8704640233479,20.6772229471193,20.8565190932127,20.648001158097,20.7597529093565,20.7289409112158,20.8909444196384,20.9086582660327,20.8867912264753,20.7280441548351,20.8115235375841,20.7682885563371,20.8756918118085,20.972808643674,20.9091017666104,21.0598771194492,20.9430563834096,20.9233811333249 +"Q9VBV5",17.128371465131,17.2708204787282,17.3977628744139,17.3495494110556,17.2660018456033,17.3225136460269,17.0505849936251,17.0953893645282,17.1393634775443,17.2220591203112,17.1963172790593,17.237793953442,17.070706452155,17.1231957943211,17.034276088056,17.188580693626,17.0581273736638,16.8781420964208 +"Q9VC05",15.2084022304196,14.9985163167341,15.1305550759128,14.9569412926857,14.5680330649574,14.8044974502437,14.8639023275029,14.8256655255616,14.8504239134968,14.8849716491485,15.1218885525334,14.7445210552373,14.501352105685,14.9073805037999,14.9753218172614,14.81394340134,14.8080290431953,14.7241936946297 +"Q9VC06",16.0830080260746,15.9579120797266,15.9935560265262,15.9002085893212,15.9539335419216,15.8290872784189,16.7093873709989,16.7313673975078,16.8067435945766,16.3991107226987,16.560311570837,16.4207158925755,16.8998990969308,16.922227061893,17.0067540932191,16.7520251624155,16.6178873165536,16.6867820831234 +"Q9VC18",17.7630624676632,17.7842749224729,17.7811963021477,17.7665460531966,17.8488210336835,17.7937445533175,18.3595396996716,18.4109297990079,18.382710183744,18.5895495464381,18.6017446505539,18.4571937437268,18.636960675766,18.6007587112015,18.7701914203793,18.6584627741989,18.5275921000148,18.5890850136194 +"Q9VC31",17.5208202699985,17.5230475686232,17.7092593490714,17.7033873657425,17.7457828437198,17.9498141796593,17.7324440382824,17.5913379099003,17.3809870048997,17.759597569561,17.71080742795,17.7165216743898,17.7551430358877,17.7094357581994,17.5869773710884,17.5559221275337,17.7469028986132,17.6837548278972 +"Q9VC48",18.2138234842585,18.4170653505172,18.2672039120681,18.3876608456195,18.3652114471085,18.4068285055575,18.4841944520821,18.5214764710416,18.4372745058239,18.4735815616463,18.3796230320007,18.610883030819,18.4623921556946,18.5762583066289,18.3910233468518,18.6265485339044,18.3885664259086,18.5349877320851 +"Q9VC53",18.0360924720185,17.9292905247945,17.9698314512102,18.021146506148,17.8332797745195,17.9246393221648,17.8902233805658,17.8639642986157,17.9440991054591,17.5941501065333,17.873209228153,17.8256011726062,17.9435149564779,17.8302961186347,17.8622967325743,17.7371260062851,17.8922134833112,17.6957856440141 +"Q9VC58",13.011084391195,13.4073367401383,13.2898546226267,13.1644756633962,13.0059408044583,13.0613518380008,13.7444322234342,13.1876976700276,12.98797634541,12.7696560438884,13.1207745492805,13.507719374454,13.0684746011095,12.9943596961279,13.1101345657044,13.1749186762804,13.216932139271,12.9760048531077 +"Q9VC66",17.648151108047,17.8050088619563,17.8052369614262,17.8526243574647,17.7717957365474,17.8059642687525,17.7194472767364,17.6247258520829,17.6484965878404,17.6949226728511,17.7545071977674,17.8882988969059,17.6300811788287,17.6130278568011,17.5648402390664,17.7566447998568,17.7328058886294,17.5890344397931 +"Q9VC67",15.2872622516983,15.4589420240568,15.4826856334316,14.9326613605346,14.8796529672047,15.1225196467325,15.4767563461193,15.3545426376225,15.23895799425,15.1583823749576,15.1237428564306,14.8430692021352,15.2874545305235,15.1304348091411,15.3873917814767,14.7125988975486,14.9078004669261,14.7804915033558 +"Q9VCA5",14.3389380513707,14.4285822952563,14.012772703858,13.7865698194554,13.8964747789043,14.1022910380882,14.4482045387781,14.3425559234465,14.2724252772932,14.2034854358527,14.1507985605777,14.4536764998704,14.5973384351921,14.6855456879485,14.355180746873,13.9982737040598,13.8688527385755,14.176463718726 +"Q9VCB9",17.0856882557719,17.0760093762764,17.1654587211663,16.9929219749412,16.9732979581647,17.0451061854617,17.1001586970143,16.8413117590904,17.0865366113453,16.7499169258698,17.0626161079476,16.8763145359862,16.9162864555645,16.9080393082493,16.8281036436111,17.0098193451881,16.9935171446213,16.8532719567791 +"Q9VCC0",17.5600368426789,17.4428556471799,17.5639747562879,17.7980608645975,17.6296242133041,17.5946303917276,17.2680974009977,17.4039825625768,17.3556378310783,17.5566197270459,17.429527030872,17.5122048128003,17.0342294951065,17.4332689430124,17.2175764886823,17.5488736891802,17.4266596226615,17.5218937390302 +"Q9VCD9",18.2604200938959,18.5907966447585,18.723268810769,18.964484310002,18.6769277796771,18.6571866894049,18.049880813762,18.4027348525229,18.3729161054115,18.6338435755833,18.4610488505411,18.5825583817214,18.1925842040313,18.4887877378942,18.3733275586408,19.1514037115601,18.6323208434407,18.5433591628869 +"Q9VCE0",15.9980229235199,16.1735329482827,16.2135415404273,15.8091743204867,15.9985869934572,16.1440559918003,15.8126759626764,15.7837595035827,15.5608978301923,15.4844887946657,15.7787503870699,16.0081556632267,15.9721901219315,15.655546204382,15.3176250313647,15.8069674730798,15.4933435595857,15.6392435393486 +"Q9VCE1",13.8160398997899,13.7760872184832,13.7562143982474,14.1360625458664,13.7399825197383,13.903772593274,13.7143738972134,13.7678719514582,13.8288129440857,13.4203596706549,13.6191514499348,13.6831484134897,13.5389286269971,13.4123193414996,13.4361762318092,13.403802331095,13.7141544905027,13.4214423907108 +"Q9VCF8",17.0226113938533,16.9263596192323,17.0646316544008,17.1174037486363,16.8636263176923,17.0090336137482,16.8494847505932,17.0608467496369,16.9296494266018,16.8777768752714,16.8825552534705,16.8824102223866,16.8477763942049,16.9638984803738,16.8434907460582,17.0080661768796,17.0258329190328,16.9939036762428 +"Q9VCH5",18.0340239696627,17.9945991173473,18.1162240813501,18.1639255299124,18.2063400687772,18.1306002880521,18.040670177001,17.9790372740602,18.0320179670032,18.0754078784631,18.0522268908957,17.9909639420738,17.8481438475049,17.9108846694641,17.8681174383079,17.9430000265362,17.9620834085358,17.9672477122932 +"Q9VCI0",14.7735307217714,14.7862426834262,14.6790843093775,14.7473464240452,14.8836334936663,14.8438627629014,14.9900218060368,14.9405976118662,14.6468780734323,15.5989909672558,14.6697495416608,14.9976917255314,13.8601133543132,14.8592410894877,14.8481994930987,14.9059357380976,14.7364745914129,14.8602226471787 +"Q9VCJ8",17.7337834896665,17.8484471698691,17.8244585843834,17.8218167600369,17.8784589147549,17.8320149818691,17.991372150683,17.9527364697509,17.8996741520193,17.9750061903653,17.9448779378986,18.1041511862331,17.8961083392711,17.8690419591756,17.8139497054257,17.9894792007685,17.9140036793421,17.9333175208607 +"Q9VCK0",17.9293574090871,18.2268770068875,17.9872366512396,17.943558488566,18.1572774533952,17.9531273051193,18.3895943006638,18.2651101730658,18.4158293180309,18.3546056731957,18.3797600851484,18.3689535745057,18.3137368414835,18.1967799443261,18.2828662395723,18.5502089446382,18.2552569948113,18.4730485691666 +"Q9VCK6",16.052723046232,16.0120720711086,15.9511658069414,16.5864462926183,16.6366042049548,16.6434902827786,16.4708539730553,16.2270043808865,16.2037364110216,16.8643065735636,16.9290408342533,17.022355570732,16.6248525694124,16.59028279354,16.7127374251669,16.7064826485346,16.9106608186731,16.7721796067758 +"Q9VCR2",15.4535918049428,15.474306035453,15.4165192059193,15.318615386912,15.2149213005908,15.3479406246101,15.4100303862607,15.533935382732,15.4275485001972,15.379567696802,15.5990557017151,15.4358878169276,15.5413860444634,15.7280311307195,15.5936236083306,15.9041591820263,15.4571009501968,15.7858307454224 +"Q9VCR4",15.4361841883288,15.1044081938729,15.3363747578991,15.1543496070553,15.0347339781262,15.0394330456632,15.0938280275856,14.9469704596791,15.0177875406073,15.1485720380682,15.0596864824465,15.0479030415234,14.787253192029,15.0088954601732,14.8225512633386,14.4441868794853,14.9096793582542,14.8003242835206 +"Q9VCR9",19.3293515225301,19.3035038355862,19.4460311812247,19.4941443596277,19.4192700092413,19.3538577143417,19.3657465813158,19.3414149863867,19.3260380172675,19.393202057982,19.1549724078252,19.2108211616741,19.1726445357229,19.396897334043,19.3597406135173,19.2239649425199,19.362995426616,19.282565311673 +"Q9VCT4",12.9257113342825,12.9054821510416,13.2088535869906,13.1463002920294,13.5228097490196,13.4558918062611,13.3535528708132,12.9433970357262,13.4663993765963,14.1229156604537,13.4860622166021,13.7276553122994,12.6870197392211,13.1784907484874,12.6656839709903,14.2117115672807,14.4109695632036,13.9227274109428 +"Q9VCU0",17.0835695430528,17.6031043128141,17.3722151243779,17.4454534707634,17.1719059894601,17.2745553134,17.2119436670732,17.3427042915783,17.5991066448567,17.2302533621138,17.1688781358299,17.335096212526,17.2943910314543,17.6011833603341,17.4451886768512,17.9428642541219,17.3206992385628,17.1823133565675 +"Q9VCU6",15.1899016260399,15.287905227382,15.4665760865417,15.6727145403612,15.6220780167656,15.4794601113951,15.269934620765,15.4489097826866,15.5501308523828,15.4247627001432,15.5811375875061,15.425717413531,15.4793081991184,15.4119444103132,15.395349024575,15.681351874976,15.3659985367502,15.4007400729781 +"Q9VCW2",15.2410426125073,15.45667574237,15.2424643675017,14.8925511406227,15.2745065345787,15.1757809885085,15.5240349854792,15.3693920260605,15.3998725642457,15.580100391043,15.4388167287304,15.6645590575107,15.6595351764986,15.3944176723949,15.3518757084819,15.4516582875319,15.4151138895481,15.5143699074341 +"Q9VCW6",19.9476169424824,19.9458918214172,20.0853634531917,19.5687485627207,19.6888168414084,19.6784568491691,19.9230191126236,19.9591650997529,19.9083800020767,19.5551934252317,19.5394509747868,19.6160001160962,19.9201968378598,19.9915948971256,19.9021199721589,19.9262881833947,19.7161434298221,19.6507426716203 +"Q9VCX3",12.2780357265372,12.5183143025094,12.635988926349,12.8010006141202,12.5954084837137,12.5916872383973,13.7919777845367,13.021789277212,13.323556694479,13.1117444630047,13.2776910362761,13.3349142315738,13.2255221361056,13.2042102778427,13.1219323123671,12.7287070557963,13.3195744025467,12.9289083769345 +"Q9VCY3",17.8945482451827,17.7363117652587,17.8261002493993,17.8537601440521,17.90765635369,17.8974993363587,17.7770520910032,17.8578476437371,17.7736236753776,17.7861231203405,17.9482296958194,18.1707918907646,17.7242805497044,17.8750040276989,17.6146757960505,18.1677971222069,17.8785117862858,17.9208703245392 +"Q9VD00",17.9687846526084,17.9336635219174,18.1050891124712,17.8847562145509,17.9209708419508,17.8737957623919,18.0160425605309,17.9625695620981,17.9317435967162,17.8429864647375,17.8708066128518,17.9507548994144,17.9736302880628,18.0139167469586,17.9567509866497,17.8216183158377,17.8058912105515,17.6896841386849 +"Q9VD02",18.3982574790627,18.3114416351927,18.5098034569456,18.4219896007997,18.323094331827,18.4025105067758,18.0666856020939,18.0758212363499,18.1080019327868,18.2214865330118,18.1599978057702,18.2298999557098,18.1720064372956,18.2749799666029,18.0262295420493,18.0872669300329,18.2223576065539,18.0912471880292 +"Q9VD09",14.654669143042,14.8615505958657,14.6217312574175,15.1885196462304,14.6496162263615,14.755758608653,14.8015824073359,14.5290921299781,14.608311293322,14.6754592340393,14.5968972772515,14.6785993397711,14.0413703623929,14.6138429640104,14.4896896708346,14.1175824891739,14.2281840887472,14.3250931122162 +"Q9VD14",17.6118457916434,17.5270357626837,17.3577574854105,17.7204825695567,17.6066137906255,17.6941008070202,17.6874546001494,17.5751768977041,17.5478270781722,17.697366230912,17.5953473310827,17.7544148621297,17.4008024046182,17.60809473422,17.7154162488901,17.6289054496199,17.8345885301836,17.6773405648768 +"Q9VD26",16.1711240727112,16.3507600986577,16.1237837171684,16.3583664824915,16.1788227272379,16.17387510863,16.3834248139708,16.1357996270787,16.1091343252984,16.0693400459122,16.3307235469596,16.3553513495967,16.2280702138013,15.9705714652574,16.2009026511047,16.0572309567448,16.3008791204405,16.3045094338337 +"Q9VD29",20.934274843204,20.8098335837952,20.880176497458,20.6673150312315,20.8107160416886,20.8869825445193,20.6070027488067,20.6924037523926,20.6334524318535,20.802865964993,20.7481712967028,20.6687572098685,20.4831137516088,20.5968927617289,20.7174834125687,20.8272083809234,20.6637632844592,20.5349286244994 +"Q9VD30",21.6090146936463,21.5404438057617,21.3562360136223,21.2138143322524,21.3536800807881,21.5383936745494,21.3021472896873,21.4362097620574,21.1674091921631,21.475233845484,21.3316814051519,21.5873235318132,21.5919021499707,21.5206409948755,21.5299872548079,21.3119632364013,21.3214194988074,21.3247258804861 +"Q9VD58",22.7788095036849,22.6950775706256,22.7534097385176,22.7395849804051,22.7536598131083,22.7244317441508,22.7589794104703,22.7283846577729,22.6831402746915,22.6696485655387,22.6733775823178,22.7211390238687,22.6847563541183,22.7869302478073,22.7488954436596,22.693654291536,22.6880032341214,22.694416880865 +"Q9VD64",15.9537418502056,15.5996475629367,15.7684257367431,15.9614568192755,15.8096668433647,15.8823897785616,15.6005859698998,15.6542536704249,15.6580530809368,15.7476018789767,15.6985449556621,15.6661632396063,14.7941854544527,15.5155199548927,15.4658338548747,15.8414531601526,15.6213921456817,15.4581594422403 +"Q9VD68",14.5890176531572,14.7396068613099,14.8292305997841,14.8313643931883,14.7936537689479,14.6495033456592,14.9276512182107,14.8588946528548,14.7485227711317,15.0419594373072,14.8453201124304,14.8357875733226,14.5773448974877,14.9123646431049,15.1486583207752,14.8594631187903,14.6769606794937,14.6150981074687 +"Q9VDC0",17.4457560925943,17.4794307157561,17.5864894617647,17.6963856121582,17.738238817256,17.7468373396627,17.4850605415907,17.3776381290059,17.4042878285567,17.7595863518885,17.6434456255803,17.6650254114345,17.6335217370845,17.6880013697272,17.5605091940629,17.3954162140937,17.4889718920844,17.4525773139284 +"Q9VDC3",19.3657447332463,19.2400546317812,19.3594391065619,19.2076172211579,19.3137993641381,19.3151034662309,19.2801004254723,19.2898760549856,19.1435557720028,19.3073290011479,19.3815599675353,19.2637820842317,19.3878290315148,19.1889728997363,19.3221530153047,19.1258747518171,19.2602322461799,19.2704617200244 +"Q9VDC6",17.0808061807734,16.7792663045637,16.8188685834626,16.8395737541264,16.6040836356771,16.6315691467365,16.7910469759853,17.0983787558229,17.0034873689109,17.0697029428944,17.060637699422,17.2125649238686,16.8951021431376,17.2441683256102,17.1784451889491,17.1542503775003,17.0439476533215,16.9855471624897 +"Q9VDD1",14.4850658941155,14.681088661708,14.8030903788646,14.2205208246897,14.5463630747232,14.4766505791803,14.3505918505159,14.4132304938275,14.522696100498,14.5991533699119,14.4099703360696,14.1292141582868,14.2482580779675,14.3300960872353,14.3858056733989,14.253811059153,13.7766524227898,13.8399441861248 +"Q9VDE2",19.6702578025114,19.6989106776991,19.6598612661054,19.5605371715008,19.6812296623281,19.6126835316284,19.4429466861576,19.5837887917025,19.4389212721646,19.2951615084752,19.4154193867264,19.4841951958192,19.5249450662408,19.5460168796015,19.5990557791929,19.7730525010489,19.3415353378773,19.4721836910243 +"Q9VDF4",18.6170010996124,18.6472476581024,18.6663040654031,18.7505867293628,18.7299051078191,18.721774708917,18.7625179898009,18.6505540839153,18.7331457660915,18.5703206212674,18.6342384763824,18.7205523718117,18.6518381477572,18.7065538595129,18.63512008437,18.6961428836042,18.6799082856727,18.5715104748116 +"Q9VDH3",20.370806509253,20.3726936989371,20.2707846856262,20.450194108376,20.5921628325861,20.5888549786815,20.553698588964,20.5608094570967,20.4397459495342,20.6885629587666,20.6175504688013,20.7408339717433,20.6513601705381,20.5956712733982,20.6511485828309,20.726392590973,20.7021271960512,20.7496467584545 +"Q9VDI3",15.0821180095192,15.0500912451667,15.1713990235835,14.6324260783296,15.0313599729607,15.0196131040281,14.8481364328031,14.9627634404829,15.0893495277969,15.3586121106854,14.965518872841,15.0381995639978,14.9521796968041,15.0365189957197,15.0141730126245,15.2669564604186,15.094176261389,14.8076945565292 +"Q9VDI5",16.5553061869586,16.4370117151413,16.5809288017841,16.5163700489115,16.436985025961,16.7814303396375,16.7885380552491,16.6856740375049,16.7747756411732,16.647356937594,16.6370369993485,16.7319174694199,16.6218014947823,16.8293380878689,16.3676177942507,16.8916653522291,16.9949922099,16.7843680294591 +"Q9VDK7",17.7694812413613,17.9003007316458,17.9831055347669,17.864735552678,17.844284286533,17.8819950893389,17.9606561318514,17.8758307388587,17.8538206766352,17.7806726103301,17.8154215470563,17.8881397611722,17.9933764939411,17.8340326383075,17.8996033924399,17.8460147753505,17.9450668631111,17.7082723511593 +"Q9VDK9",15.3724558210739,15.5598513439897,15.3615921307506,15.2427903523681,15.4170100656721,15.3778560733437,15.5454769904638,15.5579868388705,15.3401484697246,15.6105622899422,15.3700653226039,15.7812051126468,15.6797592355531,15.7321746808432,15.706436720527,15.8058589738155,15.619815411237,15.6896651562239 +"Q9VDL1",14.8423736750492,14.9726182413874,14.9353829992927,14.9323657806909,15.1569359415242,14.7782012260673,14.9152743681603,14.8081945276444,14.8867672944134,14.7374109327526,14.7638381690245,14.8386665067716,14.7329435574749,14.8730185720017,14.747632714134,14.8943597478999,14.4801226104457,14.8680773213489 +"Q9VDQ3",13.9064335959546,13.423706022465,13.4906800071845,13.2524713882348,13.5391505642449,13.4166628355833,13.6159681703541,13.3667589855513,13.354908282062,14.1213522179455,13.2683397500798,13.1826018125063,12.7806043290336,13.2655640643416,13.1921921738521,12.2323325215936,13.0456428364334,13.2721171119278 +"Q9VDT1",18.7310568037254,18.8847498866489,18.9668191549498,18.9493558462451,19.091862886366,19.0190937899104,19.2049281415263,19.114937399134,19.0576308506886,19.0899820634094,19.1767716534798,19.2930765310328,19.5002487891551,19.2997488171839,19.2502993651223,19.3579641120872,19.265465113336,19.2466160644448 +"Q9VDT5",19.1602220073667,19.1908545215704,19.0024486517847,18.908904366847,19.1572143962914,19.3446882893119,19.1589389162638,18.9321631437677,18.895929262258,19.2089876477014,19.3325014398026,19.418622828344,19.1826478096271,18.7906312020598,18.8396405797817,18.8424182607658,19.0587543050801,18.9607893970915 +"Q9VDU7",18.19143469658,18.3355310584062,18.4086569116618,18.4787553764844,18.4027186875854,18.3782182465673,18.287021753388,18.3089136503558,18.3421706201631,18.4307436232027,18.3964969410528,18.4060011485092,18.0618379429409,18.1198253798825,18.2096995034408,18.4373483363007,18.3236560116139,18.1423952985544 +"Q9VDV2",14.1260676452969,14.1798960545115,14.4468994494975,14.183508149942,14.2637031765143,13.947298917381,14.7742229938765,14.5035483899708,14.6665553019095,14.4464360850022,14.5469748019264,14.1694408304519,14.1251550317631,14.6197692213604,14.8718426391552,14.9325309138067,14.4740291754039,14.4858836812922 +"Q9VDV3",17.5872980796418,17.6424023280846,17.6865140334839,17.4672444104647,17.6538295629297,17.5919380177436,17.5756223799692,17.4903492147826,17.5192702294381,17.5664949092168,17.6424023280846,17.6542190321527,17.5426812184274,17.4337411490065,17.3911935581426,17.480784010756,17.357400425588,17.3769901375151 +"Q9VE08",14.3709713430064,14.5592734185319,14.6396533829435,14.8254818712979,14.5984776493715,14.7408853774413,14.6787992903825,14.5844298143417,14.4881866444645,15.2117725253544,14.7133367113311,14.8411023139952,14.205027913505,14.6212695926367,14.4373845128907,14.3886076274523,14.6038733847856,14.5334483392633 +"Q9VE12",15.6408097420899,15.8343530962078,15.6965948280516,15.7472531251362,15.7822669334418,15.5941019508529,15.6031144865431,15.7238167643924,15.6101362018976,15.7068219145171,15.5535680888433,15.8547911668666,15.5454901743025,15.6248163751154,15.5149768976808,15.7078664843514,15.4325346689396,15.6807548815909 +"Q9VE24",15.4303290642264,15.4897448859991,15.6728215071904,15.999285360249,15.9184019023759,16.0319316360342,15.8273893439865,15.84752815723,15.6692197915393,16.3010824537237,16.3294404173014,16.3638347049959,15.7762011492972,15.7063001361411,15.5729618576219,15.9718611475864,16.0147330200218,15.9953790216874 +"Q9VE50",15.2379697558177,14.8346936509032,14.8546112263028,14.6806881407018,14.6455167780406,14.7553673748087,14.5968668239377,14.6330604027838,14.5720206272706,14.2068010738606,14.6070219227136,14.4970716358869,14.2702938806523,14.5075505414562,14.4143478685532,14.5790811215496,14.3438575006222,14.4782820636977 +"Q9VE52",15.9473543180951,15.9365231017441,16.0627239794038,16.0007959568367,15.9372125102429,16.0417628512438,16.1880627396292,15.9554023707094,15.9798352609011,16.0212034067041,16.0186989516618,15.9953176744217,15.6906665965391,15.8199016347326,15.6800380935249,15.8564334657231,16.0367779144366,15.944838624032 +"Q9VE56",17.5470553447838,17.2791192490872,17.5366657676023,17.4805476222713,17.57700989635,17.6308304818559,17.5660704592176,17.4527602985275,17.5179966414161,17.3832732172408,17.4801926376472,17.4081092276632,17.4289443034851,17.5959133484038,17.420252916865,17.4413914940958,17.4622870110787,17.3334274056918 +"Q9VE75",15.8817599714033,15.8431511872454,15.8878607693702,15.3823088475045,15.270825299865,15.3211740534667,15.432840251741,15.3611567418344,15.4580579071121,15.0245669510676,15.1267147943393,15.412393743745,15.8317227329879,15.8023819024569,15.7884044039715,15.1276360510655,15.2766048800289,14.8129439281043 +"Q9VE85",15.3663417248046,15.6290480672756,15.7238420389497,15.8124128703686,15.778683119209,15.7891743548779,15.9009779876456,15.7216961902188,15.7025656710256,16.0358405875232,15.7614596818621,15.9375475859123,15.6780715226036,15.9050936430421,15.7553320737996,16.0986106990546,16.0962746903927,15.9837936674351 +"Q9VE94",14.6207480333465,14.6996156622722,15.0325534325441,14.594362996271,14.5980742325595,14.5508161695275,14.7952677953397,14.8071747248993,14.8620254060547,14.4337747285807,14.4374441702496,14.4955351828514,14.5279074094417,14.6660492486061,14.7194566562819,15.0306985781871,14.79440150258,14.3423726939071 +"Q9VEA1",18.1703891855797,18.1776390373982,18.1445629860478,18.1514544981914,18.0762297053522,18.190645458533,18.1947787248065,18.3023593603744,18.2030450892735,18.1431586399031,18.3149367634372,18.3699054925579,18.1974655209778,18.1301466667848,18.2161971326377,18.5058132267024,18.3617482628141,18.238703637111 +"Q9VEA5",15.6287937074128,15.6864402571371,15.7089983302817,15.5605875360742,15.8463852481097,15.7258579468383,15.6653953471584,15.5832561922824,15.6105925430303,15.699248452961,15.7747634026683,15.6655164598491,15.1855723269668,15.5183504753613,15.4716464713441,16.0812065791816,15.4116083741961,15.6381921984113 +"Q9VEB1",25.2651005195329,25.2379426536592,25.2837050213118,25.2946417932566,25.1732930247282,25.2258877834531,25.0554118255365,25.0538352193759,25.0311823674171,25.0187970919696,24.9875994526596,25.0182499716712,25.0876559874832,25.1425494841401,25.1345172981573,25.0520628128305,25.1784501960463,25.0801275885988 +"Q9VEB3",13.2250235553047,12.5599102599825,12.5475956389427,12.0303635939283,12.1612453760212,11.9084906250154,12.847159628637,12.5152985464918,12.6482448704659,12.1401037706481,12.0705285452577,12.4294175305339,12.1358577395823,12.4247330035985,12.2692027142668,11.5906457168585,12.2374382736073,12.1662026257343 +"Q9VEC2",16.5957175340442,16.6086385934419,16.7278490586915,16.8331165759974,16.7272838017976,16.8607863040548,16.6522934669892,16.6593110635556,16.5575093136592,16.8358251241173,16.6807865230148,16.7064772552782,16.6095850435198,16.7370836037454,16.6323911490605,16.6276560180795,16.741090177192,16.669180682003 +"Q9VEC8",16.5610048068947,16.5149459706143,16.6367176234158,16.5666232322368,16.6487547055785,16.6967934703862,16.4124349110122,16.5140393575692,16.5820362168507,16.5603976437583,16.4810888221772,16.4307962224794,16.3221731419204,16.4961491483325,16.4111119952988,16.5803704546449,16.3480261861956,16.2455486620363 +"Q9VED8",15.7259275474156,15.7975953735841,15.745890335599,16.2804656251682,16.1349356673879,16.2204411542734,16.4820934820385,16.4394119587174,16.3466796035861,16.6530198743204,16.4931180395965,16.86600576513,16.2669221077789,16.5679982821177,16.350490196175,16.7691747459042,16.7445440612222,16.6480963278622 +"Q9VEH2",16.117129528811,15.9717613551585,16.157939841784,15.9098325566762,15.8089132424246,15.772938226119,15.9605325943975,15.8251357587062,15.9711983831878,15.6824290764235,15.9332121616465,15.7266694111876,15.9643802992584,16.0792267153666,15.9956214387715,15.8400371079292,15.8560919301935,15.849973862446 +"Q9VEJ0",22.3010637938645,22.2576066129183,22.2893239220782,22.3874629396701,22.307571110856,22.3344651977768,22.1235390311747,22.2145145649944,22.1492139061761,22.118920297491,22.0979069750343,22.163380917283,22.1265846844233,22.2705894795952,22.1976033569687,22.2277812138996,22.137163217125,22.1513646602403 +"Q9VEJ3",19.5844148375193,19.6104295364216,19.5772052601629,20.4718979132679,20.2969670532459,20.3537852874071,19.7840671766605,19.7341030135074,19.6954306030175,20.1878244723048,20.250111332497,20.3319953851876,19.9391287646982,20.1114592993367,20.0922815664151,20.1253195629662,20.0895824924083,20.0419546252267 +"Q9VEK8",18.8297832730842,18.8718447199074,18.9775750097398,18.8743360564156,18.9333057861733,18.8770972886477,18.9392730637471,18.7853744228288,18.8093569664811,18.945530403466,18.9673053559388,18.8866500593328,18.7890747508899,18.8708905083773,18.8687075536325,18.8697700320882,18.8190467864653,18.828380701857 +"Q9VEN3",17.6761635468821,17.6501942485047,17.7840197384614,17.6885686038413,17.7574721798842,17.685900074392,17.4739627447301,17.4739214578661,17.4509622237117,17.504593814035,17.6065449002073,17.5811737275547,17.5718787709113,17.4572154770362,17.5587837520716,17.4782624503588,17.44808166726,17.3325904145672 +"Q9VEN9",14.5602943851844,14.7649161957246,14.7372336205501,14.9997574920109,14.9746466911083,14.9922063252398,15.1600280203478,14.8725384460982,14.9094981309512,14.8123844588693,14.8544090675063,15.0560549063688,15.1005390151249,14.8650782849363,14.8676063822651,14.6559206851185,14.957335371282,14.7263246912807 +"Q9VEP6",18.7035332862566,18.8418460759346,18.7490763734204,18.5839905637956,18.5531742109694,18.7222409262947,18.8229851720524,18.8182315263919,18.5688314833855,18.5754535324034,18.530249367281,18.7108427094774,18.5601805702988,18.5754031198094,18.5082751846968,18.4940138894163,18.4212527138369,18.4808903369482 +"Q9VEP8",17.2596998996623,17.2032074463823,17.3808232523021,17.0872866801756,17.2085925659656,17.1911633662074,17.4923756820895,17.3826866580455,17.4339785362347,17.1402927551776,17.2149159852408,17.157824048189,17.2177996682229,17.1884171452925,17.1204219636913,17.160555518944,17.1601904033452,17.0737990376474 +"Q9VEP9",17.356767644797,17.5646764066457,17.7196331032616,17.6845676493575,17.6748339318038,17.6501731106518,17.5822137775956,17.5425061707991,17.6313924923044,17.5157640343832,17.5544795886285,17.4825092956111,17.5747059489548,17.441734735091,17.3503944761241,17.5508360588768,17.4866242809968,17.4307526360119 +"Q9VER6",15.1455253417304,15.2626824538049,15.1926827669224,14.8481157239988,14.9879996403634,14.9708540347802,15.1497208931118,15.2993937444346,15.0115414000221,14.8429521217691,15.0785635006112,14.8238348623048,14.7773086059905,14.5990723492179,14.8526428475999,15.0479120816099,14.5838230797784,14.9599788565811 +"Q9VES8",17.9227136375693,17.8479467923925,17.9450028242359,18.1013211594538,18.2212911180664,18.1329273709971,17.9262216089984,17.8185602174666,18.0967350274414,18.0259743054589,18.0323548156404,17.9511221735396,17.9486785058682,17.884752550269,17.7809545611568,18.0082967612089,18.1283004847227,18.0264640211867 +"Q9VEV3",18.3349156921453,18.44906090581,18.4267624780008,18.4284190853335,18.4847404088252,18.4378486186099,18.1359513560167,18.1158146975486,18.1935544863842,18.196191325991,18.2623245172153,18.2310745871514,18.1328581552047,18.0658070973699,18.1168882519997,18.2816038794742,18.1321918673965,18.1038110720194 +"Q9VEV7",11.9262343297076,12.6834543528132,12.9495272259007,12.3005465091245,12.635304599865,13.0402106525314,12.876865384553,12.9328174814973,13.0924882384437,14.7115690841268,12.9835395360291,12.4908902978425,13.3238330938243,13.3827440324674,13.226038837854,12.795084346563,13.3162727452273,13.1349774953269 +"Q9VEW1",14.8142259798279,14.4358766841217,15.06842254194,14.555580387063,14.9004301918995,14.5341050758671,14.0846984169814,14.285897502529,14.9061201044969,14.928855001437,15.0100912361577,14.4323230729733,14.3136088538599,14.4178890844117,14.6671417880679,15.0656571315631,14.7124410716127,14.1545131873872 +"Q9VEX6",20.8345283414454,20.8074025060873,20.8914975678423,20.8202317986352,20.8903755388253,20.8650493330847,20.8763602840083,20.8094362044374,20.8188939860756,20.6295294407225,20.6631776903708,20.6835427663839,20.7519288351953,20.7178488836151,20.7831730672499,20.6841327523472,20.708470629018,20.5545547317176 +"Q9VEY0",17.5890660299184,17.6120478115011,17.7439022303852,18.0149098861402,17.9144292540661,17.8866815662568,18.1465392962579,18.1851990693166,18.2633076389148,18.4100626772406,18.3229069061305,18.361417898781,17.7218721153995,18.0152842239091,17.8422425961857,18.325069964801,18.1576527048344,18.1099680392342 +"Q9VEY5",20.8670359038538,20.9386825981318,20.825846973482,20.8575145233693,20.8987612075415,20.8687113586689,20.8202904153941,20.8004349605559,20.7163538558181,20.7272221765785,20.8039664078473,20.9419897864948,20.922184552681,20.7154015470129,20.8179102077951,20.8118727380814,20.8488735888688,20.8353081276993 +"Q9VF15",21.0318131625492,21.0070110524334,21.1018711943237,20.8685677752786,20.9628302764957,20.9335356009467,20.7625225836498,20.7802117370263,20.8701175119133,20.9641231879938,20.9001167833192,20.9529315653007,20.989068370716,20.7729824468469,20.664546789296,20.5096510388416,20.7025938229076,20.6027434572485 +"Q9VF23",14.8600215141712,14.8248448211726,15.0389041787049,14.7855724079593,15.2533085771368,15.2063445865211,15.381266481649,15.3209785880494,15.3187225540025,15.7028523160994,16.3075952680121,16.2467806433697,16.3317967849414,15.5093894274775,15.3189654141581,15.2598616885134,15.1052545114855,15.1916538165775 +"Q9VF24",15.8892563206936,16.1263322461543,16.0019243163348,15.9091143086259,16.0533788698449,15.9550071834363,16.2515802796579,16.1333712070883,16.1829079204998,16.0310838120634,16.1285486274909,16.0617385192989,16.1620755828563,16.1101450272718,16.2069001866659,16.5438865173156,16.2352208433624,16.3785186949768 +"Q9VF27",22.3265060994952,22.3285806499525,22.3318101033776,22.2782945682203,22.3367841164001,22.3760682985233,22.1830532419587,22.2613358954493,22.2243485993153,22.2151763863073,22.131517279829,22.214670299732,22.2729654403559,22.2591722677304,22.1941543305908,22.1966414683549,22.1552469953309,22.1315855731534 +"Q9VF28",17.7085467171411,17.833029919356,17.6565975599102,17.5763899095203,17.764788278605,17.7911826440492,17.873886403668,17.6606048102625,17.5987877040785,17.8577617434178,17.7742775081784,17.9560742509397,18.0272328344751,17.6036654421813,17.7742667967897,17.4627369290551,17.8701885786942,17.72964558151 +"Q9VF39",16.3861992989886,16.071092970241,16.3554690391105,15.728260755249,16.1004925055873,16.2554560588145,15.9564067327778,15.8951896783588,15.879614821447,15.748496765188,16.1390028992971,15.8243564352206,16.3489175519628,15.7812819044914,15.871568055137,15.6206397731191,15.8018609193097,15.6024564675557 +"Q9VF51",17.5763097644054,17.6701608236948,17.7159319159691,17.4238135936645,17.6483361846159,17.6127381775091,17.8291913685021,17.6864415445868,17.6425708258755,17.6056427917747,17.7695942850506,17.7855022486362,17.9407371342241,17.6869734017241,17.723786449492,17.7083069139738,17.6224953268724,17.6034719490627 +"Q9VF70",16.0171493413853,16.0239326311139,16.0495873442289,15.8960535377699,15.9699586634249,16.0019100904221,15.9146430268942,15.9181131783176,15.7812808809251,16.0100353446954,15.935991342679,15.9586416419416,15.8808236468477,15.9404642780021,15.9864529199047,15.7872753473545,15.7175201514093,15.7281073675245 +"Q9VF77",15.7222560999173,15.6520838428734,15.6247176269647,15.6048539235403,15.7224016794918,15.8662365626943,15.8318172063203,15.6698739435946,15.5228089393401,15.5654807169087,15.8138808332119,15.924534727215,15.7348246397188,15.7210981227402,15.6252244230396,15.8111899176341,15.6910840821276,15.7069002247858 +"Q9VF82",14.8871446922062,14.8599556674342,14.9710984769315,14.6764816349733,14.9926109704234,14.9337378735806,14.9450251520625,14.8586316068222,14.8874791821332,15.0790883600281,15.0455603399557,14.8533343796084,14.9973204328737,14.6554572158392,14.9040904833371,14.7648456602061,14.9376901318751,14.800165536759 +"Q9VF86",17.332915575482,17.4010233684781,17.300849404136,17.4437855158319,17.464766431716,17.4414120497579,17.4316000811079,17.5416456756799,17.478792178856,17.6815287303984,17.6509343282044,17.8450830108881,17.8240111191179,17.6824209993227,17.8720159832927,18.0267682237388,17.9998184422759,17.8024566187462 +"Q9VF89",14.7191204511836,13.7354033652728,14.1994940554964,13.4370057849254,13.8837988313985,14.1018205669151,14.4355563253344,14.2340789865531,14.265211414301,14.1796307921477,14.2625030717603,14.1371524978439,14.2267626958129,14.5236642795493,14.3251989603689,14.3099475204101,14.66857503528,14.2791460748886 +"Q9VFB2",16.2376650231895,16.1897445017352,16.4521841913257,16.1822001912997,16.4165047308545,16.3201986863597,16.4534667746213,16.575714831699,16.4556142215683,16.4712527277464,16.6458876948302,16.6107980723802,16.5622689206872,16.4610627814043,16.4850887528585,16.76485319358,16.382792290601,16.3478229066318 +"Q9VFC2",19.838529654689,19.7044485576194,19.8646800872782,19.5281737495466,19.618916366459,19.6209759665802,19.9907011833482,20.0208570339096,19.9932420723443,19.9170941519981,19.877594688605,19.8347134556367,19.8864125937393,19.9420551235501,19.8392057999729,20.0564195272964,20.0534590904745,20.0645134788053 +"Q9VFF0",23.4975331103811,23.3840862326912,23.5201840159813,23.7384643745852,23.5135173667025,23.5052330426002,23.8230499717853,23.7249581286999,23.7884968240738,23.5173090253584,23.6607429697182,23.6489718527625,23.7695786731743,23.8478179579241,23.7950779471163,23.5914382504605,23.806250750009,23.6794097232108 +"Q9VFJ2",13.7254306021023,13.8124311582916,13.6862597064382,13.6802984073051,13.7764901138332,14.0558320030934,14.0030120661278,13.9073335763285,13.7112281030319,14.3409874412274,14.2300030733848,14.0054448585663,14.0137807569031,13.8572365420989,14.2326668551453,13.7130494195903,13.8930642293192,13.7851271669811 +"Q9VFM0",13.9160163262546,14.3051448459254,14.396486455293,14.5401341774483,14.3784538514185,14.4612564328519,14.4640785615357,14.2071535721395,14.4274527180189,14.2733160025825,14.3363232883467,14.3266317166648,14.6482916407165,14.5132097133328,14.3329337774486,14.265597893899,14.3671493312735,14.1626735021592 +"Q9VFM9",17.0983277929863,17.002204094311,17.1422211350313,17.2702191765724,17.2862334567926,17.2203165718695,16.9401071166863,16.9888865322121,16.9909431559978,17.2895939303496,17.1853162226143,17.064657923133,16.8823684992923,17.1563961588711,17.0678039682495,17.3076675520953,17.1692476031809,17.3023413137009 +"Q9VFN7",18.8913835617307,18.8266308142782,18.84807840806,19.0076440036752,19.07930826568,18.971384589628,18.5211480986288,18.4534564897169,18.4425171989606,18.6726108425548,18.7611507239686,18.7161483036052,18.2902157594678,18.2841970974625,18.3467006550223,18.379095415194,18.357354290145,18.4372685259751 +"Q9VFN9",15.9044816583035,16.0124068670223,16.0332895997069,16.2188976090335,16.1240032424995,16.0532012085883,15.901570867196,15.8219328157668,15.8837004507158,16.1131329689238,16.1497038380907,16.2227644775717,15.6655057137904,15.8717117929638,15.8647456026735,16.4634062148119,16.2872364757159,16.2092936928028 +"Q9VFP0",16.5820637869538,16.6917461456539,16.5484081442295,16.7354470067036,16.5657677953325,16.6540376415267,16.4583349165865,16.2572183435137,16.4267102906418,16.5540288480032,16.7205205206338,16.4938498711234,16.3197125094099,16.4553913925921,16.6193160515158,16.4090949270502,16.3680377969813,16.3163599956701 +"Q9VFP1",15.8287342597278,15.6895201998195,15.9135926733736,15.3727353892626,15.1183945300407,15.2372889754101,16.1413318786431,15.9232386680284,16.03278854555,15.4148922129466,15.2893451695473,15.5218079242146,16.2677782925969,16.1862393470246,16.462798656153,15.4340009079067,16.2527350266233,15.2911961663825 +"Q9VFP6",20.3537205118795,20.2546294930192,20.3369690562056,20.2830389466731,20.2590013677689,20.291656871506,20.066983924404,20.2019015144165,20.1238679683747,20.2187100745839,20.1335325056439,20.1383990510985,20.2232716993619,20.3558055609061,20.2170028426406,20.1839448071383,20.1247995222861,20.2217741742154 +"Q9VFQ9",18.9168049203062,18.8240354162651,18.8776721636532,18.869681099899,18.9128289608384,18.7867115373492,19.3277890433916,19.2828614130732,19.3378164883367,19.2218146065539,19.2832249879569,19.4060740207941,19.2864000533673,19.370910097337,19.352438518602,19.3532743460775,19.3019031941249,19.2150513408603 +"Q9VFR0",15.7521417539688,15.4740151596673,15.5987232805669,14.7848845275596,15.4301073531191,15.4113543182206,16.2484011904832,15.4363932291222,15.3595894180902,15.1643092874637,15.1612657172993,15.2704270618059,15.5841369818104,15.5745982052635,15.3775655982584,14.5399547939406,14.997448870755,15.0561688582842 +"Q9VFS4",15.3131123919164,15.4910956062988,15.5480035153079,15.4879099957546,15.5823056750138,15.6021889631478,15.0351139558,15.2265389476252,15.1675996257743,15.2213648853257,15.3941886465636,15.1708135675174,15.1689954261881,15.0068905328966,14.9869414220708,15.4450687175803,14.970545964167,15.1960182787467 +"Q9VFS8",17.3611713633826,17.5879889734479,17.4456737288917,17.3988507235393,17.4497731483313,17.4053880625654,17.1753562507319,17.0707808261147,17.2525452516381,17.4156052763538,17.4953293468658,17.4191145047106,16.9976786661321,16.9613523223796,17.0446160520967,17.3413442860333,17.1247819490336,17.1226689662705 +"Q9VFT4",15.7413428002716,15.4673830280318,15.7086910035753,15.6176274006429,15.6331913110638,15.6104993657112,15.8676513794039,15.6597484152562,15.7155567848366,16.1174876771529,15.8221923691412,15.8807130878978,15.8562929956498,15.4574184513194,15.2913502840232,14.8022816627787,15.9627503410874,15.7958733898556 +"Q9VFU7",14.8619023733405,14.8206174424031,14.7590332036104,14.5952261106708,14.8639030017034,15.0127505805086,14.7950982940899,14.7186777762062,14.5243972403556,14.8875019040584,14.9133111143619,14.938281843631,14.6545693037977,14.7217293900466,14.7395624731703,15.1794198131987,14.9354790744347,14.9996924578801 +"Q9VFV9",21.4877927187968,21.3160767970422,21.4483758266469,21.4850316790005,21.3997029718655,21.4989384299423,21.2801734758961,21.2671961467842,21.2999387738117,21.4264041628763,21.4312487622984,21.3430738691561,21.1937101574935,21.2076604847428,21.2866480438155,21.3073707786233,21.5585978099536,21.3035080293141 +"Q9VFZ4",16.1393651710731,16.2908340754492,15.9863601686149,16.1819716385833,16.2521546177955,16.113348039432,16.7884968473871,16.81107961565,16.8708138455898,16.7104735478667,16.7899227450223,16.8306245219016,16.7173634533378,16.8856909600961,16.8813533247507,17.0415388184665,16.5495274627015,16.8967095764256 +"Q9VG00",15.2915432826296,15.5748238229056,15.1602817072414,15.267579126421,15.5131410159362,15.234178201408,15.4068734563343,15.0913681586962,15.092479648078,15.1682727484438,15.3419113127358,15.3674161614041,15.5216373575553,14.9679215807587,15.3851510375329,14.9107240846917,15.0774641650431,15.3271233004112 +"Q9VG26",19.6731876931403,19.5733358010912,19.6873450764538,19.9193476749779,19.77685529801,19.8011986031849,19.6568881377496,19.5321443071755,19.6111316227902,19.727211508423,19.7018778002719,19.7633013776712,19.6726864828647,19.6886408918587,19.6817845251476,19.6113292718325,19.9877966705808,19.7158895637403 +"Q9VG33",20.1069050422592,19.93604271322,19.8324945831671,20.1494907368013,20.054284087357,19.9702804448838,19.7766277786842,19.812574321277,19.9022284086489,20.1508629546117,19.9337608205809,20.0504269257248,19.4928272765121,19.7805266839775,19.8318004612524,19.9634950666717,20.1230202291278,20.0529780318632 +"Q9VG42",15.558429009446,15.5407988276265,15.6763978537841,17.5639661856958,17.7602373460696,17.6870932803087,14.9808178761656,14.9174725690401,15.0186624896144,16.6378419554422,16.6529553018214,16.5223459442341,16.4225706523414,16.5785561164246,16.6305918185923,16.2017146977765,15.9153202158853,15.8302489903339 +"Q9VG51",19.1662517463088,18.9589552769935,19.2433098706607,19.2449425699128,19.1380131097513,19.226140142768,19.0918326538633,18.929725787869,19.0779843505397,19.1270310415344,20.1191616875138,19.2586789865375,19.1623454184157,18.9177042902689,19.0956443420985,19.1486707679495,18.8775140455878,19.03931650538 +"Q9VG69",20.0857444464619,19.9406191448235,20.1360132297036,20.1597202133116,20.1280324702489,20.081448469105,19.9069209736815,19.9032862386196,19.8559974513016,19.8065609556163,19.9289175338812,19.7857306074407,19.8474484097111,20.021106719123,19.9098561407653,19.9085399241526,19.7929728162388,19.9458890246188 +"Q9VG73",18.1367032895333,17.9815316010018,17.9576978401702,18.0497706987554,18.166429333148,18.2883427350766,18.1163912011365,18.0457880419975,17.8557767011433,17.9703015131865,18.114978458264,18.2859213403227,18.0212933848872,17.950340882511,17.7396401205146,17.9785411468934,18.01393291747,18.1456224971649 +"Q9VG76",15.6720015903344,15.8207398591981,15.8055628358242,15.8102994161628,15.7853954744616,15.9357549157106,15.6883965076694,15.7034074241852,15.7192224846595,15.7004455690291,15.9113443414473,15.9678046117471,15.7268360965064,15.8352046877927,15.5159576141676,16.0644700092893,15.6063574019065,15.7181467268825 +"Q9VG81",15.9752729147265,15.4401726631727,15.1047211645605,14.907184150944,15.0740239462386,15.0090048034704,15.8703684923536,15.9243929976683,15.9953394348381,15.4782230502968,15.6105731180719,15.5162950230504,16.1876476976892,16.3709198335744,16.4738435547956,15.6923760670772,15.6909898143615,16.0118683923725 +"Q9VG92",16.767536163541,16.7217128341896,16.8667514706972,16.6529558498282,16.5718835440111,16.2807546547734,16.6569994040603,16.6639207281855,16.7400534563717,16.4421510999606,16.4352800464291,16.3511343956153,16.4450759474768,16.4693444055395,16.6518624409399,16.1283835443634,16.2309604508755,16.2025455908329 +"Q9VG97",20.0405959889515,20.0058635898823,19.9821790666899,20.1307005212231,20.1660257032054,20.2191674313935,20.0106790680067,20.1378864338474,20.0194052868541,20.1951123155744,20.2030741960738,20.253975243182,19.9602887004474,20.0179608623702,19.9970252488054,20.1199582091688,19.9265240179927,19.985582526447 +"Q9VGA0",19.5422240102248,19.4763061728382,19.4219024921698,19.436588631449,19.5552298420526,19.7739330448314,19.1073628385631,19.2829806392667,18.9865857514686,19.3363938815398,19.2574858779853,19.3568873908511,19.1285745535681,19.1728676857811,19.1782138051706,19.2097493858551,19.0160230832759,19.0433708167084 +"Q9VGA3",19.3903514363944,19.211898238481,19.3015446705714,19.3601073612422,19.3490821896343,19.2456320084932,19.4679792937842,19.5100802280592,19.4231080874562,19.5808473260535,19.6357176777992,19.6483500637096,19.2476653266914,19.3913803173927,19.4236866789696,19.5949454851456,19.5437375779449,19.5995747201113 +"Q9VGE4",15.8360577277719,15.8043497598251,15.8646196581183,15.5279527409822,15.6752653937255,15.6798226036,15.765167067635,15.6739994658208,15.6035329508022,15.579501032721,15.715004544062,15.6269736540887,15.6308692590969,15.5414635194035,15.600261923022,15.6635632402461,15.593028385616,15.6279002788217 +"Q9VGE7",13.8223736638096,14.0662304263822,14.2387279989732,13.8312369066385,14.1312215028335,13.9087912517014,14.0034071026834,13.8830798096322,13.9258344857365,13.9439923433813,14.2200648023819,13.9536635743938,13.6771462901808,13.7923345635792,13.5948967334986,14.0786061767096,13.2638313785941,13.7348484390997 +"Q9VGF3",15.8528754986714,15.6105069156573,15.6977361679227,15.589158791041,15.7717957124221,15.5634345934109,15.6786585199652,15.6437151876186,15.5849405879045,15.6967932361575,15.7514326908555,15.9111662785424,15.6776103340031,15.7516468452931,15.6312724027491,15.608766301161,15.5747653291527,15.7153126504697 +"Q9VGF7",19.9964315528566,20.0655592012367,20.0078747257024,20.1075280900629,20.1982233569759,20.2137544075479,19.9978927578412,19.9202397800827,19.7793648850228,20.1166995993521,20.0184674552775,20.0327693678039,19.9257931423701,19.9861484984413,20.1641399301327,20.1755687825762,20.131275633045,20.1220106088494 +"Q9VGG5",16.8371923526001,16.840941002068,17.0219394390714,17.0333323451994,17.1535901026765,17.0996260650086,16.8280600966553,16.9379955511518,17.0293943543253,17.3461947613756,17.3583826928163,17.0887668780186,16.9519557190585,16.9771663738658,16.9699350786532,17.3053277811129,17.0339873334236,17.0924012409248 +"Q9VGJ9",17.9775082605473,18.020361059881,18.0765558137526,17.983261329053,17.9535346708586,18.0228581119096,17.9264743767645,18.0721600449236,17.864958438234,17.9340095470707,17.9610929851417,17.7165865623817,18.1192471857966,18.1672304971978,18.2056588359458,18.0616056610982,17.8277271023277,18.1154885981066 +"Q9VGK3",17.2946407925564,17.0751531747484,17.1863540454545,17.273194149556,17.0289992338157,17.2154100337451,17.13212993415,17.0143137593124,17.1198540472375,17.0093642419462,17.1212228792176,17.0787934203907,16.9440133568886,17.12559555554,16.886146057266,16.9236122305266,17.2116701029895,17.0903971015298 +"Q9VGL0",12.9498897693751,12.9307779518092,13.1105217506764,13.170465743332,12.6962004725517,13.0650747459216,12.8474706779324,13.2784509499279,12.823680181653,12.5428401405265,13.2838148951944,13.0822878659642,12.9324138094807,12.549528289828,12.5551877358764,12.8801382566185,12.584445837954,12.6864661171735 +"Q9VGP6",17.889168224579,17.947911643617,17.8161575911628,17.8355774008945,17.8749637814272,17.8371443154515,18.0074855967602,17.909109653079,18.0711390489773,18.0720876827239,18.0875080428817,18.0222205305456,17.8843748911976,17.930105926612,17.9517752273717,18.1194253436432,18.0585200921815,18.1096824262895 +"Q9VGP7",15.7843454420949,15.6977197522956,15.6004643587695,15.7464504810067,15.7450669589731,15.7914365363258,15.8771707041644,15.8398558902187,15.9131222835411,16.2669385296489,15.922266251167,16.4644557878933,15.7008869980004,16.2569942348018,15.8822787663461,16.3668043323931,16.2806933998522,16.0908387544325 +"Q9VGQ1",22.4101240258257,22.5005295993376,22.4114645342303,22.4821875145122,22.5247150588363,22.4336813260456,22.5128825005159,22.3787563486887,22.3732910611782,22.2314383934513,22.3616992502797,22.425477398914,22.426898508871,22.2722243159839,22.3607287294156,22.537241756345,22.5628481263949,22.5961296497374 +"Q9VGQ8",16.3506760747905,16.0540880322305,16.3669742028424,16.0813700738749,16.3108713708567,16.310331078698,16.3964358878984,16.2468425117179,16.1808555779698,16.2540721232597,16.3959994473898,16.4094208336825,16.1898320433719,16.2354467540085,16.130082559405,16.2532686665726,16.2824067535646,16.1279906171704 +"Q9VGR1",14.078367623423,14.3513566701647,14.269212156433,14.250169723715,14.1475542930665,14.275127955315,14.2697196205734,14.1435040590394,13.9295052908324,14.1610140235593,14.3651358271777,14.253308600929,14.5329423566803,13.9495758607883,14.1442643257672,13.6316761827425,13.966762820457,14.052471201417 +"Q9VGR2",15.7095507858688,15.5276523131798,15.670481836383,15.5763141796929,15.9571621836914,15.6785615070429,15.7389514122905,15.6020557112665,15.7497739220646,15.7194946884602,15.5945072496299,15.7045626926605,15.5817665532941,15.5984321991006,15.62704401667,15.6163835915001,15.6626515542384,15.5120372362857 +"Q9VGS3",19.3865295082652,19.1693719110464,19.2605444117548,18.9834303432546,19.1307460019083,19.25477082148,19.4125567974517,19.2487599860234,19.1733407860472,19.0200391490192,19.1360154853885,19.1875546120788,19.6863684358066,19.5932696916509,19.5625659745461,19.3674803799409,19.5782415377207,19.4176280078314 +"Q9VGT8",15.2097784098679,15.2720088294942,15.1903296359485,15.2208430242587,15.2907104724818,15.1436452907159,15.176115471209,15.4811178632756,15.4513678364282,15.4315159701735,15.2906116156028,15.3345520143781,15.4175498645318,15.5006405129796,15.6547663141726,15.4579070795666,15.0786205257735,15.1390487279643 +"Q9VGU6",18.4509353493036,18.4582504353123,18.4925218561523,18.4443365560505,18.5696006953708,18.5577382748493,18.531618449299,18.6124902204293,18.5173187665171,18.6734617201038,18.7299383527683,18.7918621938692,18.7146242170576,18.4810925151194,18.6055938712991,18.6385705190474,18.6021745918617,18.4885118481749 +"Q9VGV9",16.1472654046804,16.122054564452,16.2676029884993,15.9569744108689,16.2070241782498,16.3646690155391,16.0911257570277,16.1076020375997,15.8849413335673,16.0128904372438,16.1993381963064,16.0100621283573,16.0071987092142,15.9938533793709,15.9945811806779,16.1903003634698,15.7758827265261,15.883898435864 +"Q9VGW7",16.4813046911593,16.5730520014256,16.7871214079551,16.3431656300006,16.6162774466696,16.6121932219599,16.8536169349341,16.7228712769077,16.6394637202505,16.6272450289448,16.6419244406302,16.5503243618257,16.9751069468731,16.8949287596573,16.9267678606439,17.0885383785558,16.9199236851773,16.8531070378326 +"Q9VGZ3",17.0389461148417,17.1799227752369,17.3918283874457,16.7587539717865,16.6606717073361,16.6854513334632,17.0281108844558,17.3620488123527,17.2705293687609,16.9216413811781,16.8637127287892,16.8125172357034,16.8705080506453,16.8639968400958,16.7934504613207,16.5341023154576,16.2217098545542,16.1982859316712 +"Q9VH07",18.3081836496375,18.0887675158585,18.2442642204542,18.1079257970531,18.2524222586201,18.2888658314008,18.2739337767523,18.2161442634179,18.0573246373916,18.2303384587638,18.3290716517986,18.3172750607193,18.2258243978304,18.2023217228457,18.1288102553568,18.197695254048,18.2551739215443,18.3073613287625 +"Q9VH19",13.8578713955726,14.1790724157936,13.8615289933906,14.1117420170225,14.0785346714337,13.7667428315977,13.9038048515325,13.9849784869563,14.2040023307868,14.079762572625,13.681668205836,13.9939536640057,13.8282606860473,13.9369430992,14.1387928987311,14.1501322581822,14.0703769017625,13.9665530624702 +"Q9VH25",16.1053005871602,16.0430448329112,16.1921405473005,16.0662961419847,16.19931915277,16.273707528755,16.2778128074146,16.1484002116357,15.9777167360029,16.2749190945137,16.2357156756942,16.3595273058203,16.2367126846605,16.3935804957286,16.2432145269562,16.3296988621311,16.270679809125,16.2444335330299 +"Q9VH26",17.9903265887541,18.2833122449891,18.1328622822783,18.6936577572955,18.5340456086481,18.7488720871194,18.0448669277656,18.0878685674917,17.9551045451026,18.4003280047034,18.4793172015846,18.6353837332434,18.0065463848549,17.884734175335,17.8927170785689,18.5856194707381,18.4520673360632,18.3564054077991 +"Q9VH37",16.5436256437698,16.761773473063,16.9334022183673,16.722578732999,16.5730567617873,16.5242901852687,16.7261629753651,16.7330937510935,16.9204467095025,16.6259188521839,16.5249569669329,16.3726807812428,16.276147729675,16.509478550767,16.499152292767,16.9174608284458,16.709535258795,16.5619225752904 +"Q9VH39",18.8338614458144,19.0691404248593,18.4513142141329,18.1362970483117,18.0111263977058,18.4617769370364,18.8146636572623,18.9048519446985,18.4152852878126,18.0318288605826,17.8533903021515,18.4539075375613,18.4488634032063,18.4515264210709,18.3886359657291,18.1268417885884,18.1023207132796,18.2214362614934 +"Q9VH64",17.8713992670665,17.8737285971936,17.9147946399338,17.8367110419751,17.7004443271868,17.7119710831947,17.6265215992861,17.5308712922556,17.5656556031419,17.1719825818747,17.4039298681829,17.3535788808681,17.6598438871147,17.6463040093901,17.5666551886468,17.0022684285802,17.0134487116884,17.056071410112 +"Q9VH66",16.693897597159,16.5403945169994,16.5881808729169,16.5181898795718,16.6765747880349,16.6936761294238,16.6945060421234,16.6796370657869,16.4477174228075,16.8753948021981,16.7916371675802,16.8681477263335,16.7603937226656,16.8841499454609,16.8098915632935,16.9761896419788,16.9461782018342,17.1109579709215 +"Q9VH72",18.7532064098571,18.8237917042067,18.8697672621739,19.9073300111435,18.6330890720939,18.896715438226,18.1943136087175,18.6256903925821,18.4575156165482,18.0200984987565,18.5328078221829,18.6186635559287,18.1379618377286,18.6215272426879,18.4767874223911,18.7328413033875,18.5088454358373,18.4263023743229 +"Q9VH76",19.4180434796689,19.3628723081205,19.4690679243999,19.5248227274052,19.4106906838533,19.4120269929058,19.2077103015878,19.2411916259495,19.2986334517322,19.2775712024413,19.2700342883443,19.4130289752288,19.0883686630506,19.2428991421577,19.0645522416559,19.3712946455765,19.3601229713051,19.2305014338078 +"Q9VH77",15.3246263077062,15.4630106801412,15.5884100365372,15.3692378522412,15.3421351895859,15.4067446203911,15.3552982277293,15.4699349878468,15.3519330093029,15.62936414533,15.6548324557339,15.3347782192164,15.512185785125,15.7017143230047,15.7631154994057,16.0298001970286,15.5888848788476,15.7755311303069 +"Q9VH81",14.1404923483581,14.0474624019682,14.2640080860613,14.1426207100087,14.2556765213125,14.3145127583103,14.6544934700963,14.56973780209,14.4856493403466,14.3946803551892,14.5190089933307,14.3208661061718,14.9065375211596,14.6911566878078,14.9360659989003,14.6674032352469,14.8231852335496,14.5851253502685 +"Q9VH95",21.0942625864719,20.9768771501827,21.1244838971798,21.0299599213022,21.025719697773,21.1116050193938,20.9044171461719,20.8857584962206,20.8597172914344,20.9451392102312,20.894138415115,20.9724934494989,20.7029214901708,20.8727002332908,20.738196355938,20.7925048349563,20.8140111967223,20.6627091758595 +"Q9VH98",17.1358365098303,17.2725684071831,17.3742243163672,17.0781633734203,17.2285542393548,17.2129044537433,16.9622454365546,16.9208268731029,16.92161559378,16.9711507346064,16.9816158082249,17.0382611007113,17.0039863452847,16.9839064530389,16.7976973019088,17.0614388928163,16.8253495116079,16.8681185260019 +"Q9VHA8",18.6162820024952,18.5946182155394,18.6203975212887,18.6697481970483,18.5957535433363,18.5466366947375,18.7268745853126,18.6126901588616,18.7120039594507,18.4472561080171,18.5829367862337,18.5574792968553,18.5230495230298,18.6927395856149,18.6678282853875,18.5410645088121,18.4455366351292,18.4199291669955 +"Q9VHB8",15.4140978596365,15.165587944279,14.9543331216125,15.321701883794,15.3921260878002,15.1194335824669,15.622915668065,15.6091358044168,15.4787209542076,15.5343800979009,15.6849870993268,15.9836982039027,15.7033637754724,15.6185382075438,15.8880609432852,15.650196050642,15.7762801921442,15.8224085300359 +"Q9VHC3",16.9832942479972,16.9705327981229,17.0575999202058,16.8090731141364,16.8548697123981,16.8436686233866,17.4950347853095,17.3484101439972,17.5697103955824,17.220635936531,17.3651825078977,17.2621596648823,17.4374531573989,17.2967215845625,17.2716571816446,17.3710641912778,17.4808386856722,17.3117596469491 +"Q9VHC7",19.9714049626337,19.9046276261669,19.9090487394148,20.1393343489492,20.0051488843532,20.0591209824983,19.8805600385219,19.8651455348489,19.8227875666756,20.0736259708112,19.9417815845814,20.0626788466833,19.6361490162443,19.9092696512991,19.8951545221491,19.9369477980975,20.0120488540083,19.8892314778367 +"Q9VHD2",16.3782779201416,16.5120881715936,16.4754355990901,16.6310164446919,16.6803642825993,16.6859598965719,16.5738681305525,16.5597842139992,16.5138057041905,16.8225317563316,16.8073916121207,16.6154474894058,16.323681712052,16.6224868588688,16.6916669315211,16.9012736370808,16.4485344616688,16.648333980071 +"Q9VHD3",15.517738913267,15.6495978433926,15.6355125317941,15.5551277001243,15.5515219455219,15.5815204879264,15.6736917158455,15.7012152080941,15.6458671242422,15.7027353688892,15.7062659499443,15.766400323231,15.9654384759998,15.8711699861545,15.8955093965236,15.7546550454209,15.6896162864395,15.6445773558295 +"Q9VHE4",17.8996833986002,17.9093933679616,17.9838473870616,17.9751485892537,18.0267307322584,18.0002552439887,17.9245761701319,17.8726159960529,17.8126848692812,17.8545620151979,17.9539764279031,17.9190107766512,17.9856731726019,17.9404751444862,17.9467762920464,17.9116107623215,17.8480624394449,17.8886795390782 +"Q9VHF9",16.7929327449094,16.6112452809372,17.0504468280922,17.0804131049517,17.1295062930249,17.1432910191685,16.9507639516253,16.7504494154657,16.820217720338,17.2720324324391,17.3078050925324,17.0204069625597,16.6975556948671,17.1340653884312,17.0762314885831,17.3489639519387,17.2095904103398,17.0320678619897 +"Q9VHG4",18.1799291970789,18.3083291409143,18.3922003794418,18.2653598400952,18.2981927862305,18.4713697540856,18.4376232864798,18.9410023995977,18.3885660578073,18.5257656187529,18.1905057332479,18.5229338444396,18.481364209351,18.2161754414286,18.1933640076408,18.32777181006,18.2636084603988,18.2493799184028 +"Q9VHG6",15.6858189907698,15.7436130189509,15.6366035426938,15.779754212398,15.8952949896399,15.8976612036603,15.7081367748887,15.5772870505541,15.3899068624602,15.6874203868824,15.7208201633134,15.3503163531281,15.7113410534774,15.6641317729823,15.9328154623512,15.6674381656001,15.6387625885759,16.0326061597228 +"Q9VHI1",14.3026119926849,13.8877342034416,14.188957824358,14.0720348435612,14.2190567552702,14.052929909866,14.2280068881168,14.1626685421413,14.3177093457209,14.3053417855085,14.3987246140919,14.2412281770618,14.2689182453126,14.2329872645434,14.1361710928059,14.1825770679199,14.4583194436157,14.4224944732915 +"Q9VHI7",15.2277670511678,15.3026254356903,15.466187150791,15.6324537091702,15.5502047637803,15.5000649385222,15.5482202714922,15.2569776962435,15.5650138844436,15.5724474969876,15.9245464072609,15.5904842399996,15.4962180155914,15.3714818167817,15.4252489064852,15.547411380036,15.6186818046884,15.4775188042037 +"Q9VHJ7",14.5128171501306,15.0865047124774,14.514123762369,14.7511593619912,14.4887224332542,15.0110538429979,14.625010385194,14.5205726197588,14.550130299764,14.9024691627088,14.5081462138285,15.005914972926,14.966997719646,14.6244034259461,14.6926737746198,14.8193608242817,15.3494651986874,14.8039179512755 +"Q9VHK6",17.9721860947433,18.2269244015478,17.8998104125195,18.1693499885384,18.0424396988031,18.1341306929966,18.0775874503186,17.9644786973533,17.9314935845528,17.9633532851644,18.008310499076,18.4486298727662,18.2095803979473,17.8979780277516,17.9350029448041,18.0346526365109,18.2865785286909,18.0776423455836 +"Q9VHL2",20.685594818383,20.6832172508333,20.7148834010336,20.6882858225709,20.6449790462295,20.7138158629532,20.6728839644084,20.7208470468136,20.607695231915,20.6244958406995,20.6735458719964,20.6860269140362,20.6374939095578,20.6216653560324,20.6167615404603,20.6152340208696,20.579733804584,20.5848054260908 +"Q9VHM3",14.812309803243,14.7714911298755,14.5685776328001,14.949994457545,14.6327663968754,14.6617812932398,14.6849343946114,14.6028153440098,14.54982089836,14.5882023651415,14.6372523048517,14.7619039941932,14.3942270060853,14.577144586887,14.8511548721059,14.9254253435393,15.1336236076661,14.9618546794663 +"Q9VHN4",14.6051861845953,14.5674174380639,14.4721047667591,14.9861686204884,14.459115277453,14.645821817974,14.5385088634417,14.7632233960918,14.4382253933073,14.5645010576752,14.6135152665001,14.6474352947184,14.4160317055146,14.6385167476879,14.7123447566159,14.2956132083843,14.3642215143028,14.4900776107249 +"Q9VHN6",15.1111532423177,14.9192056559662,14.7335132419597,14.8460884606883,14.7734029704264,14.8954689898082,15.1024084447829,15.0713890252753,15.1372055004522,14.9514448958234,15.3703912453786,15.1106210168588,15.0455593364414,15.1675976934117,15.113343169775,15.2880890667937,15.0427568563893,15.3545915279935 +"Q9VHR8",20.0117907369087,19.9662714799324,20.0701895071206,20.1179447652643,20.1496869300268,20.1089644329615,20.6934859559046,20.6164598658277,20.6099369534167,20.5789409848626,20.5252143447772,20.5376019830208,20.4840362406309,20.6123203335486,20.5904429046915,20.6339701067389,20.6502158361973,20.6030330090988 +"Q9VHT3",16.1617053350307,15.9233245427825,16.0364349168451,15.908327091457,16.0727181775577,16.0984012685589,15.6572418225455,15.6020073980805,15.450302637212,15.4729461733709,15.6317295604714,15.7358134222731,15.6325095250773,15.5881303950766,15.4962814153947,15.5587612112772,15.5735810847899,15.5742574984747 +"Q9VHT5",15.3400350806941,15.5206094420658,15.3623401795699,15.5825861561678,15.5417158568711,15.4715548768845,15.8448170172702,15.6922060154139,15.8148205303534,15.7276202452227,15.7997455587527,15.7909007141702,15.74903127134,15.5112935214218,15.7747374020081,15.5570236377311,15.7355430139004,15.5867597054398 +"Q9VHX2",15.5703483338735,14.8025694783577,14.8652028400267,14.6842706675554,14.7680825775453,14.7133658930935,14.5580287105481,14.8394921571059,14.8226138862443,14.628038235107,14.7804608867335,14.9128732077886,14.8846339538338,14.8215241551191,14.8772169490454,14.4963450893695,14.8095357354258,14.6303922140889 +"Q9VHX4",22.9925701663946,22.9362652800603,23.021661317359,22.9480065379511,22.9163698181871,22.9080518083829,22.7951722345163,22.8041635846134,22.8149828859547,22.7652862164386,22.8074839265025,22.7845637613077,22.8868308439788,22.9217591365292,22.8266596674955,22.6402486094004,22.6420728627871,22.67219516818 +"Q9VI04",16.5800062875077,16.3766667668482,16.5786141134811,16.2238515407723,15.9513745894614,15.8493392028328,16.652173901027,16.7097568905658,16.7819721683071,16.2405280996031,16.256594670861,15.9133025466042,16.1192999147714,16.5496661113996,16.7529924624066,16.4454583131576,16.4172590277031,16.3850975632074 +"Q9VI09",20.405780930001,20.3332517304055,20.4243525897763,20.2415119122872,20.2767692248971,20.1891479921609,20.1941164445026,20.1571257325811,20.2640849776476,19.952949923261,20.0051308042454,20.0228460835735,19.8863092624484,20.1245187206445,19.8983139004839,20.1481542090995,19.9320264688261,20.0300771379576 +"Q9VI10",17.1001029093993,17.051254651539,17.0498242559592,16.9881718098226,17.2248511578472,17.2401287889973,17.4114579495951,17.224722838558,17.180067263482,16.9945392985291,17.3010533423208,17.3946572523002,17.4733230568084,17.1580329268559,17.2864834552535,17.2162504487444,17.2239305557779,17.0326844569066 +"Q9VI53",16.1437654126547,16.3688833824195,16.3958874691321,16.4789493301897,16.4196751705927,16.4318100752367,16.3474157752208,16.253610632867,16.2039457465187,16.3447820126138,16.4724623480097,16.5165844481655,16.2584529532761,16.2112213117711,16.211248540274,16.5982847024228,16.4457973407178,16.4121739070508 +"Q9VI64",20.9831630389079,20.797329183341,20.866201791795,21.1259011865357,20.9959718970744,21.0496116922446,20.7149243634875,20.7425596414361,20.7476571981507,21.0057849689557,20.9156933033196,20.9495293257549,20.6791728761834,20.9465747482582,20.820589548463,20.906223743045,21.0170414036858,20.981580620707 +"Q9VI75",17.5747892524797,17.4834446117744,17.5631401176754,17.8936799559297,17.6632880747623,17.6664165367072,17.3681725169329,17.2953780523353,17.3572476277522,17.2304458302994,17.4123602185715,17.3756137354092,17.4652213169562,17.4656680940782,17.2621662773821,16.9144529369782,17.1266227580545,17.22217751465 +"Q9VIB5",14.6964426183169,14.7625057550892,14.9947147899269,14.1602747772163,14.2412460420549,14.6639479247667,14.5856383065409,14.7172244229003,14.3384166093278,14.392672388103,14.2772688193107,14.0807166728282,14.3066817171497,14.303108163953,14.3237345973891,14.0505570812032,13.890913685222,13.7907362942914 +"Q9VIE7",15.0713803260772,14.9330922512588,15.1749597535221,14.98646381575,15.0515500084595,14.9565020683921,14.9504353826243,15.0011804769714,15.1027835091196,15.1988642004749,15.1727425767967,15.0247160446427,14.8280631004595,14.8828233892564,14.9923880012655,14.897777263072,14.8915953857151,14.681634711516 +"Q9VIE8",24.5316209374773,24.450617585236,24.4876909559816,24.6345435712393,24.6293450050195,24.5666763605333,25.1431456143569,25.1519719887538,25.1754142134301,25.0019288531051,25.0126996241503,25.0579000792962,24.9730713016484,25.0414767032549,24.9911700267192,25.0118263053901,25.0100256768024,25.0172849472566 +"Q9VIF2",17.2516153781056,17.2087808479589,17.1967342295182,17.3246646398201,17.2164604362755,17.2564234855324,17.5440054514555,17.5381290463562,17.6192650992268,17.4589644714006,17.4061589187558,17.4546706908814,17.4731795538475,17.7072674715153,17.6892456861346,17.7611782875969,17.7368110613643,17.5972685909328 +"Q9VIG0",17.4354438493076,17.2551459362917,17.3711578462491,17.3646979963079,17.4854482576154,17.5319610368373,17.2664613546063,17.3939135955625,17.273635507869,17.3615057041159,17.4520597070202,17.4210183546427,17.1705717791471,17.1396752985806,17.156088260974,17.592337591334,17.4647754797484,17.4371572682469 +"Q9VIH1",15.5198803984019,15.5841537983366,15.6801772304499,15.7942477752845,15.8366655264769,15.6895883509347,15.6293021042588,15.6429095506551,15.7573379515429,16.0413692979017,15.7727426876678,15.8861252220955,15.7807041937233,15.8580255061242,15.7232354344827,15.749512346824,15.8205190471334,15.7785519268884 +"Q9VIH3",13.7653484516658,13.8889958841146,14.1894996038938,13.8857669830284,13.8356605354068,13.7397455806834,13.490385272789,13.7998754764131,13.7655771159185,13.7684621165323,13.8408691251919,13.9488873229256,13.7673602431197,13.7159113391797,13.6778563281215,13.9933422687771,13.5893529756062,13.3490993843695 +"Q9VIH9",19.5792816499566,19.1352405312636,19.4878807748345,19.5365742695094,19.2154646302908,19.2733050402176,19.0636819439119,19.0562117191965,19.2446076981686,19.3373627389846,19.01649547923,18.9972942111165,18.440675529132,19.2738444936962,19.1060464618899,18.9351423417668,19.1954616195841,18.7835842870342 +"Q9VII1",19.7567248705698,19.3754275825947,19.5220406126839,19.558449053482,19.2515084946099,19.4752324095748,19.4469665136167,19.1827245216731,19.1442448868366,19.5085049424816,19.2730619877998,19.3284091350346,18.638025875786,19.4250350508131,19.287686030315,18.9920698299411,19.3929834483865,19.1431280114321 +"Q9VII5",17.3016599430571,17.1026136575931,17.1056718605981,17.4695679894039,17.4855493376719,17.4611236310311,17.3866963598687,17.2668172123633,17.298034391085,17.3592736238048,17.3837488988896,17.4119701247205,17.0090947918657,17.087025985066,17.162678510564,17.5602907551427,17.7608283715591,17.6471049451443 +"Q9VIK0",13.2246385138462,12.379822470204,12.7626151608711,12.4467460570274,12.5963122439211,12.9548676093795,13.2932072653559,12.9253180835253,12.5050805005299,13.0082448808574,12.7976399519846,12.5721119226129,12.1175690421958,12.9548578393136,13.0172492641344,12.6360521082844,13.0725072786184,12.9145334100392 +"Q9VIK6",16.6146137967541,16.7114262509705,16.713014959912,16.8180408292694,16.8223618998882,16.9115537652251,16.5399114521094,16.6032384271224,16.396310949571,16.5367614160949,16.4501091483314,16.6110419180629,16.3921871260825,16.5750236703938,16.4064170816628,16.6569047457213,16.396259969325,16.5200806915976 +"Q9VIL2",15.8784497551337,16.6138004068676,16.1255776344581,16.1584207357693,15.9547793319086,15.9461530066325,15.980799616034,15.7751058294434,16.1573390139737,16.0088180748175,15.8916822588527,16.066488797328,15.8855173988377,15.867093780903,15.9014672197799,16.078376370718,15.8879203433348,15.793356279138 +"Q9VIM0",17.9061501838987,18.0313410900687,18.0903764157769,18.1157222857203,17.9219771590646,17.9171622297944,18.1698214099613,18.0813055151167,18.156906516407,18.0494395020671,18.083670116384,18.0888794720486,18.1248013971738,18.1459393502074,18.068891430855,18.0413872069468,18.1430887549265,18.085105920886 +"Q9VIN9",16.2845929437807,16.2630657290826,16.2867783903111,16.3425580803301,16.4330913957453,16.1397260636951,16.6389528749727,16.5451580109214,16.5158915100012,16.4570811259544,16.5440515646509,16.5786103543748,16.5584772860187,16.3622887331771,16.5077391179996,16.431979767931,16.5659866454102,16.6848966426059 +"Q9VIQ5",16.5431572123693,16.8151801077774,16.8858044951607,16.8602407467118,16.7605667943086,16.6663106259066,16.4661547981246,16.536420353952,16.4118957908077,16.3937323369307,16.4405102001593,16.6893803694601,16.2660018934741,16.2689753775745,16.0603020843747,16.6627223389606,16.3703564927994,16.4783159608613 +"Q9VIQ8",21.3807416515902,21.4350219324469,21.5084459375756,21.2454605941616,21.288705570549,21.2041210049805,21.205291963719,21.2872744188583,21.3799102873686,21.1501992149807,21.2437031472108,21.308892045118,21.4525336975187,21.4069717031242,21.3824860691643,21.4816349306325,21.2541852804135,21.1320067083958 +"Q9VIS4",14.072149403685,14.064805138576,14.2502571531181,14.1388933815316,14.17385256347,14.0167500155633,14.244196450419,14.2761203680159,14.3979056301536,14.0345628610866,14.1935282319823,14.1748379946837,14.0403674072048,14.166893681114,13.8881503601839,14.2203479602983,13.875317481067,14.0226163105228 +"Q9VIT0",16.3804832156382,16.2633764118377,16.3724126180173,16.5595375620245,16.6338492579675,16.524904306411,16.438663992815,16.3705857910539,16.3919836459849,16.4839489948886,16.4769010872578,16.4879314006004,16.4121714789843,16.3937571571199,16.5630686451497,16.394690684899,16.5310262240129,16.3291953130862 +"Q9VIU3",12.5905133716087,12.6477133254722,12.6602048458667,12.3449342994227,11.2712656639614,12.5652054759431,12.2179099004627,12.5564391474444,12.1135440737212,12.6653187510688,13.1952851973077,12.9164845997898,12.414344793915,13.2102436097871,12.1042567584569,12.7227280646549,12.0748022371601,12.5960534273552 +"Q9VIV6",13.4193160191133,14.402031814537,14.3795036087424,15.0099683697836,14.7205517479001,14.8826713616356,14.4170055108295,15.0664729233264,14.8079730239446,15.7935692908483,15.1302684312276,15.1455494299811,15.1220417743057,14.9749621524211,14.9690371446646,15.5235003168725,14.9911142123408,15.1006667127848 +"Q9VIW6",15.0376778675059,14.9689380722282,14.8199186256625,14.7911185859234,14.8878818188397,14.9994271316303,14.9301323986214,15.1909840614597,14.9213097349842,14.9677178750218,15.0281520947489,15.1211354055045,14.7799689962219,15.1915363811737,15.0521562121447,15.6033944112321,14.8425177060763,15.1960630246002 +"Q9VIX1",17.8254901250608,17.4393569902889,17.7383496255353,17.7017816832074,17.2644690432989,17.2451065167648,17.3053852680188,17.4082445766823,17.2571230323452,17.2375233308201,16.9390091748822,16.7321885903603,16.3497766069681,17.1828061421698,17.0836133168039,16.9146431886453,17.1007142753983,17.278219120911 +"Q9VJ19",19.2229456120057,19.0912795069956,19.1414272757022,19.0556440647059,19.0398711834325,19.0150780666927,18.9604551153375,19.1892183352875,19.1029411472242,19.2361980121243,19.1865738413486,19.1110329051711,19.1416197519455,19.0585519390993,19.227107546188,19.1607830198127,19.2121507697682,19.1800586349534 +"Q9VJ22",13.3150294856908,12.676479759774,12.6306434582237,12.2962123478421,13.1103822709545,12.9281655322662,13.7099825476757,12.6974954603406,12.919165007131,13.9578724665496,13.5549286765949,13.5624136688741,12.1425447762385,12.9806511300239,13.1576101083289,13.3054759387724,13.7071802650814,13.5291197879453 +"Q9VJ25",15.5527359326899,15.8337895593583,15.7092797453555,15.1298554638571,15.5744465876842,15.8390519095762,15.8316361499697,15.5532435789449,15.7882011816862,15.8610314664488,15.9741319062756,15.6109364547053,16.0191807857737,15.408326022032,15.6372534836044,15.8459989393299,15.896501083774,15.6557159631414 +"Q9VJ28",18.6901220093527,18.7961398747425,18.8854281743298,19.0873517797951,18.9930016198653,18.9381888236787,19.0530935408564,19.0242832632079,19.0980781498491,19.0003097109932,19.0085160491141,18.9988474579587,18.8995609284109,19.0774413552233,18.9453402863192,19.1279684072443,18.9590242144996,18.9925234845171 +"Q9VJ31",17.3421670967049,17.1537841830597,17.2272775382672,16.9614079055728,17.1009850235347,17.2085727182501,17.259384983448,17.270475739121,17.1641312910317,17.136146775871,17.1432128778183,17.1821525217803,17.4059451903358,17.3029502130013,17.3695245608114,17.3023177236525,17.43596163905,17.2557110454443 +"Q9VJ43",20.0388042672763,19.9925550911072,20.0392030181878,20.2310952489483,20.2247707883655,20.2679083803045,20.2716625411514,20.1698030684233,20.1649852409361,20.346828425066,20.447163286733,20.566875397079,20.3801724353842,20.2462694317149,20.1989444962553,20.2715975436101,20.4595987950924,20.3022439286736 +"Q9VJ58",17.1107374930921,16.9749131762332,17.0170451661602,17.2068977119133,17.2121780025086,17.0856054642224,17.1881595292914,17.2947758094129,17.245921562959,17.3619906283901,17.2788059264054,17.3238720267874,16.9946683969758,17.2318716919333,17.3158162563172,17.3430682778292,17.2129774309985,17.2172615610458 +"Q9VJ60",16.3883836409732,16.4209178999589,16.7200953211686,16.7382369402737,16.5140481198508,16.5095122987381,16.5560071675203,16.464859182527,16.5806867083594,16.4560939974705,16.535530377965,16.4166413344994,16.6132501731276,16.6889858073623,16.4775277211097,16.3582919739926,16.485922505694,16.4058005094828 +"Q9VJ68",17.8745685309672,18.0353226658242,17.9776628688483,17.7799082404165,18.1405004593143,18.0817237133768,17.7596542408424,17.8514375508375,17.7121915724655,17.9790974838366,17.8831806024052,18.0237969837595,17.7821894328198,17.5493510879735,17.5103190494867,17.785316253316,17.500941815844,17.6550399942617 +"Q9VJ80",16.2002635894155,16.1258343966817,16.5443191503122,16.4897462464761,16.3154006558373,16.389518749189,16.6103994447416,16.4225825029349,16.4085524914641,16.6053079767977,16.6179360701619,16.5832176801264,16.4799455580544,16.6679569602005,16.4524113897401,16.4886782815473,16.7246305112163,16.4963216362008 +"Q9VJ86",16.3601486569935,16.3025815970841,16.4411359126592,16.3823412311707,16.2400269760881,16.3103237532041,16.711265252134,16.9280733751004,16.895601746057,16.4055720737302,16.3040835799762,16.4804032970714,16.7946493219353,17.06064651638,16.753573235717,16.5342633345261,16.3528278258612,16.3072019257813 +"Q9VJC0",16.5141241873289,16.5960519548098,16.6781642911105,16.5278209029792,16.5578718995364,16.5664782243923,16.5203778021603,16.4450556271168,16.596410258915,16.5401722969203,16.5009173625786,16.4820012540974,16.5986933763587,16.6509694384739,16.5804094788975,16.6549988734666,16.6053211566986,16.4527239318014 +"Q9VJC7",18.722467732348,18.6869055199732,18.5061889461434,18.8173637095602,18.6510769939408,18.6562247567146,18.512608985465,18.4300939922006,18.4753799492364,18.6654572356801,18.7611582902882,18.6633343525788,18.4123877807936,18.2379563216433,18.652097560776,18.4788892851543,18.8419836109551,18.6559491635519 +"Q9VJD0",15.9301853131042,16.0165464732132,16.0514662375256,16.0079628975053,15.9064369743435,15.9115649349742,15.9763831855859,16.0067160134986,16.0361155505073,16.3784760052178,16.3628415645019,16.3312756303875,16.2072505860643,16.0595000637306,16.1722930105783,16.2594561313389,16.4076730295286,16.2569987548436 +"Q9VJD1",18.551880231113,18.4422681654163,18.6083696188997,18.7282262011037,18.5204943181533,18.6661012784732,18.4932304980668,18.4472719889748,18.551045135369,18.5298704255719,18.7010643288057,18.5770006724679,18.3216554166701,18.4927774440848,18.3930381533025,18.6198711184893,18.64085764558,18.4491790325025 +"Q9VJD4",20.8319982041077,20.7784795343975,20.8383420292166,20.883780952268,20.8943504821363,20.8488570964976,20.7361979185145,20.6254188390885,20.7736146466579,20.6873782359979,20.7592406604046,20.7742197675471,20.5571123294527,20.650375914884,20.5453548088658,20.8376133206435,20.8262155300735,20.7536926121994 +"Q9VJE3",15.3062405211366,15.574988330932,15.4706328949089,15.5548737286513,15.6033747239711,15.6580743795299,15.1268414022716,15.1106038690741,15.1061444591148,15.3440325983103,15.5163597055246,15.5934195852159,15.1335222164941,14.9533628018594,15.0143441724823,15.4443539215737,15.1511749570766,15.0672488971861 +"Q9VJG0",13.8256531626246,13.4958381063016,13.1919363354337,13.8768903657188,12.9138737443978,12.9337562566617,12.0282583047431,13.3553305876552,13.3353648910644,14.3873116351826,13.0434421504103,13.1813593391155,11.4730424684902,13.9700724872321,13.1684502763022,13.0756110746329,11.888209935395,12.8558999128147 +"Q9VJH8",14.0607667231086,14.4381346625969,14.2476390473694,13.9407822548871,14.2747972673678,14.3205572389529,14.6631670883019,14.4239630294933,14.1250612646106,14.3417898167638,14.2747856021195,14.4408791898085,14.8724916160413,14.3940336908799,14.7497433643711,14.2934102987025,14.3666935453479,14.2885276926927 +"Q9VJI5",17.2276437134804,17.1269555114643,17.4054098224807,17.243477683519,17.4132127552594,17.6448279459608,17.6194617806834,17.6105848471595,17.4966732275653,17.9251210102772,17.8969775215488,17.7172129011688,17.4582669397913,17.4680516114103,17.4418781438576,17.8249574993901,17.7831463802991,17.5929265861082 +"Q9VJI7",17.2376918676881,17.3799750214971,17.1622760575479,17.3859349308686,17.3664540177911,17.4922937846236,17.2188550810211,17.3108276025306,17.2473326053249,17.4602392228379,17.4439488214091,17.5743046460585,17.1580890694486,17.0706995036417,17.2906826044462,17.719739286518,17.6086444915128,17.4136597603813 +"Q9VJI9",18.1417011879993,17.6538332694785,17.7545269730959,18.0055635055701,17.6761027022619,17.8176156548449,17.3757251598903,17.5668372588769,17.5402576308514,17.6115523929466,17.506846410233,17.6437634829257,16.8536173532488,17.5998562811704,17.4650649735997,17.6335556206578,17.6182392982921,17.4004865049954 +"Q9VJJ0",19.6946379369486,19.6007700763056,19.751435161544,19.8007576607461,19.7863376846893,19.7897092170119,19.6227557254846,19.8258569429615,19.6292318756276,19.9662533047177,19.8366945999187,19.8648708114495,19.6237820420065,19.7300592959145,19.6539787751741,19.711440535767,19.6399086058809,19.7304013648634 +"Q9VJJ1",14.0009626206324,14.04250726808,14.1154217496304,14.0779116017077,14.352317591838,13.910618634262,13.9147502488936,14.2747074242087,14.3993930671113,14.0921827230826,14.1735731696549,14.1204066634522,14.2835653081009,13.8209181265513,13.8699236881571,14.0531499413639,13.7584988634482,14.0067586411679 +"Q9VJN0",17.7820107101576,17.7100828417043,18.1155082664954,17.5064837805688,17.3961252923347,17.5413704285845,17.6998589408252,17.6075159784595,17.7145948620085,17.015607794377,17.5133922061175,17.1669463285238,17.5852284395743,17.5964258327126,17.2770607891071,17.6101284752198,17.3757759893941,17.3838374660034 +"Q9VJQ3",20.2897987078392,20.1916768606648,20.2548612567497,20.3075920990867,20.3953748290906,20.375044810998,20.4933121020325,20.558205562457,20.404894867357,20.5482277079073,20.6264968281635,20.6255533725395,20.6232961525132,20.6670323853773,20.6692971260987,20.9333230830758,20.7567633867014,20.8658984187117 +"Q9VJQ5",13.97106639161,14.2711586372708,14.2760151885693,14.582776264754,14.3932272290043,14.617118165086,14.3908212024227,14.4828258945229,14.2565525346511,14.6656459808986,14.3489994891804,14.6109178345034,13.6822054007288,14.1098386955563,14.0190537969184,14.6640257363061,14.3504910311854,14.1768834569919 +"Q9VJQ6",14.2080899169622,14.1969845799,14.3062842398375,14.2152369980906,14.587349174302,14.31477818165,14.3961485216037,14.1212930437607,14.250860693732,14.3612537823778,14.4349165383111,14.783316338493,14.4626340582604,14.5417736562853,14.5237855579475,15.1207616735389,14.8818079582745,14.5850999391736 +"Q9VJU8",15.5547945265853,15.5948033775579,15.7508820523619,15.5426575460081,15.5659140820374,15.7292687180579,15.6066086616321,15.5355313316929,15.4399981559798,15.6524005822016,15.6701202862437,15.6123469188734,15.4718175691504,15.5402841993079,15.7233544721364,15.9568393219944,15.8784649307323,15.5292678901625 +"Q9VJZ1",15.0551109172498,15.2997099291447,15.4431104480186,15.185637128058,15.5656470706144,15.4659551692004,15.441090046016,15.4285927765832,15.3538415559296,15.7804455784718,15.4902581441037,15.5045166280204,15.3781330700275,15.3618959493683,15.4192529253298,15.930062790562,15.6243756605708,15.5838028038863 +"Q9VJZ4",21.5757785085715,21.5073602960735,21.4919269773835,21.3941976158733,21.4024991973373,21.3888274565648,21.335144282558,21.3233832130092,21.2982085523794,21.0800112533401,21.2075526083505,21.1931549542225,21.3252310229815,21.3160449558639,21.3611753787649,21.1099684185837,21.0634908312737,21.087037782593 +"Q9VJZ5",17.1313475651351,16.9819004520068,17.1724599649109,17.1730408033434,17.1294935932359,17.1768868740724,16.9723021807776,16.8418052027822,16.7939785235396,16.9527891538805,16.9628065152561,16.9524667040763,16.6563784392871,16.8758251109659,16.7987280270499,16.7615907530578,16.8556180212345,16.7529288018324 +"Q9VJZ6",19.9889530012443,19.8223795956062,19.9850035114029,19.7482014051902,19.8263819341091,19.7534348388155,19.615677042331,19.8261845412131,19.8401860953973,19.7272707874693,19.5686739071099,19.5505177493486,19.6145520108195,19.8805902208438,19.6885645497319,19.5045786286108,19.2750226767831,19.3815261309689 +"Q9VK00",17.8581808341636,18.0150249787319,18.0633364560819,17.2194722109971,16.9335458365909,16.9609652149459,17.8679499936066,17.9693064762866,17.8917609280154,17.5117536076929,17.5424063706307,17.5249383165104,17.9349444272121,18.1387048772836,18.0756399422336,18.4365087573734,18.2298212915219,18.3121689732585 +"Q9VK11",18.8845974204465,18.565563281901,18.8727037878981,18.6396788728252,18.7029027630695,18.6285561146502,18.7032588343648,18.7101782467375,18.6811621320488,18.8139302439503,18.6350294654776,18.5448359537107,18.7766248365239,18.9212781295055,18.9625746721011,18.6734382740077,18.9565765954273,18.8016958217096 +"Q9VK12",22.4102842324389,22.4932916648515,22.5766744520956,22.4665015109993,22.4554489357564,22.3820258093349,22.3060622330009,22.2995545565429,22.3071619239931,22.1669610938001,22.156450547035,22.2860542053009,22.395661299143,22.3721057374363,22.3156166834211,22.1033910691702,22.0720099969304,21.9813283644068 +"Q9VK18",14.4301945360228,14.4669778543866,14.567462460901,14.941455630247,14.5618903077116,14.7902013757866,14.5599187890035,14.5617230503121,14.5183124363904,14.7960202929379,14.6582482976027,14.7011717406922,14.417641064744,14.5456668205515,14.3486415235534,14.3272383072917,14.6779622896825,14.5466790829234 +"Q9VK39",18.3416674197909,18.3494995344281,18.4915789658835,18.337264363467,18.3354854966491,18.2483918908633,18.1020419178618,17.9630564609173,18.1934768460454,18.1667267288013,18.0013763512603,17.9567355035013,17.8758607644663,17.9734187155969,17.9287157781564,17.9682774009867,18.1690020365223,17.972939610924 +"Q9VK58",13.8259020828186,13.5147748786367,13.6242413068333,12.0093834670851,13.2218819424025,13.3967123302243,13.1239422228271,13.7315458945733,13.1832610170373,14.80339463989,13.4565241112325,12.7251356896687,12.733867306596,13.0215914311072,12.655031832039,12.3226978971896,11.8728693584543,13.234805440604 +"Q9VK59",18.6686260764886,18.5679649992977,18.7019492793259,18.8410816812377,18.8071165720246,18.7606214785398,18.8219070493249,18.7470185308963,18.7609777501779,18.6968054720434,18.8033139533331,18.863333254373,18.8457945247223,18.7153010086877,18.7254817786239,18.707514044595,18.9410137841725,18.7693653073715 +"Q9VK60",21.493578729533,21.406772061631,21.4914626691365,21.4432152885816,21.3440166226387,21.4616254771561,21.3063787251538,21.3218715321749,21.3240049199793,21.2152462710395,21.2557697186806,21.2958225239327,21.2495611617627,21.2462023510918,21.2912228809958,21.2892989943689,21.4226468842225,21.1331406992391 +"Q9VK69",20.2627300990024,20.3611265031895,20.3001077115705,20.2182487464402,20.261341906214,20.2542753349435,20.2830180545795,20.2306619288765,20.2512374233697,20.2965336080193,20.3687671104893,20.4217934495077,20.2693653318119,20.0680104505602,20.1452738960684,20.2992404452261,20.3392283857498,20.2564484696195 +"Q9VK99",19.8571960206432,19.8809679899527,19.6883598295947,20.2442382965935,19.9678102293422,20.0063510435795,20.0466914143345,19.8463347219931,19.9420751807958,20.3602698874549,20.1622787555565,20.3232111456494,19.5176987583254,19.8358224302765,19.9654581715908,19.9130717554797,20.2459520057103,20.0137107616211 +"Q9VKA1",15.3190694624907,14.5927054015869,14.4805646671615,13.0662908711468,14.6089774267156,14.4935399142291,14.9300083472099,14.5972071525957,14.1764515469986,15.1169480340078,14.6568504041688,14.9808567382617,14.6636765147269,14.4300978506903,14.5254336463043,14.1784720890332,14.388627082858,14.6176188056602 +"Q9VKC7",13.8848443426751,13.8483429462637,13.6545282006467,13.2158168052727,13.6166336730296,13.2650607403805,13.8221396605297,13.711091908724,13.7962051907566,13.8916156799556,14.1197790600942,14.0366511542402,14.1148388773433,13.8583986980228,13.7756408092182,13.7324053317637,13.5074144114057,14.1335746022979 +"Q9VKC8",17.716873638636,17.635853390912,17.5592718996518,17.5318033709231,17.4342088397755,17.5549230698154,17.8214734077884,17.7682857964625,17.6308196019074,17.6305251157677,17.6898506287423,17.7813291783495,17.9052219837091,17.8860355379937,18.0477182205878,18.0188425729194,18.2105058958576,18.0506781194319 +"Q9VKD3",18.412315849089,18.2871097224804,18.3824602305983,18.4948089013875,18.4357745157596,18.5356744904353,18.7745611481798,18.8711581253768,18.7576981064935,18.8640068022998,18.8081122008613,18.7987660259435,18.7583861827022,19.0135583773479,18.910156444109,19.0192983379582,18.9076642797905,18.9386219240369 +"Q9VKE2",24.0436108745875,24.1019611676592,24.09068909357,24.4653474781918,24.3921210897896,24.2867228896831,24.0996525340703,23.9659244573221,24.1296127992861,24.1458492229394,24.1967489749578,24.2959396410229,24.0843384164661,24.0298108358262,23.9221196252867,23.6228306994011,23.7750627001014,23.7365451768075 +"Q9VKF0",15.7529652924354,15.7910944682548,16.0237621926681,15.9377898879722,16.1210259974955,16.0078400003035,15.7931501924761,15.6114348704876,15.6635399945159,15.9395651320675,16.0377044962699,15.8661041169573,15.8428176125313,15.8901147832919,16.0553871268945,16.2452201198012,16.060133621484,15.8948748059445 +"Q9VKG4",15.9560334802584,16.0072506190656,16.1818012969732,16.0598540178133,16.0664591692932,16.1718929684854,15.6669108662754,15.7890556679643,15.7840301955252,15.9114587154476,15.7401286096625,15.7144250382042,15.7370774874168,15.8820648817945,15.8215215729483,16.0633129891305,15.9096886085621,15.7209764842057 +"Q9VKI8",22.4815216137083,22.343299025765,22.4152472831386,22.4398432246215,22.4372583687411,22.4336484122023,22.4044241504371,22.3717600922932,22.3364053902737,22.3515155523017,22.3080420147292,22.3749279959596,22.2417182923932,22.3606756482498,22.33501201901,22.2144159965932,22.3124036802766,22.2381977294709 +"Q9VKJ4",15.0323288326634,15.0468432803924,15.2568356430887,15.0654343551584,15.0168099121723,15.1388628863547,15.1180661522166,15.2623032435174,15.1426697805248,15.0596650547504,15.1471170477256,15.0081571326012,15.4408407599813,15.1546222321407,15.0040622812982,15.0026291887539,15.0912686275755,15.1683766196563 +"Q9VKK1",14.6391219537495,14.5053859867971,14.500769307409,14.423091468084,14.4299410352436,14.601118837431,14.3253809766684,14.2606799821718,14.5198292168352,14.8191516834888,14.4737104219286,14.5935022195255,14.6074823551324,14.5199736089387,14.4417123878087,14.362583298549,14.9871207005923,14.5198797666628 +"Q9VKM3",21.9148378617355,21.8380224391917,21.94942301728,21.6999820394603,21.8790350284925,21.8921025366965,21.873318428288,21.7344770839826,21.6556355141127,21.7778463112113,21.7720622391637,21.8111954035472,21.9243865375117,21.9162859243509,21.8245830645531,21.5178157723111,21.5683042353365,21.5752474143282 +"Q9VKQ2",15.9151801248986,15.869125918733,16.0722200351671,16.2184864340465,16.2825288869633,15.9818348504052,15.7930921025205,15.8068883163563,16.0019027538416,15.9486173885887,16.0020331398618,16.1106203458879,15.7182551380357,15.9022261443346,15.6778489439199,16.2168193502329,15.9476481320739,15.9660236091011 +"Q9VKR0",13.2486247789999,12.9844459617187,13.4500781721278,13.091563286856,13.2819299234822,13.1446701735106,15.2339049514349,13.282941751653,13.2745495865308,11.9459352026525,13.4013547937505,13.2952458062756,12.7219370182356,13.448679694248,13.2098822340711,13.5231659961181,13.3657791094447,13.390705261781 +"Q9VKR4",18.9370413516614,18.8463952662648,18.6995848782076,19.2800928419934,19.3741235697728,19.3668893483609,19.0345418978315,19.050598200515,19.0098867459164,19.4651731546402,19.4892146774136,19.6433287309583,19.1610322579264,19.2416719433539,19.1836678202409,19.3489754939742,19.2248533407069,19.323499474343 +"Q9VKU3",15.243723028536,15.3220030521865,15.450242972596,15.4154405299391,15.3824587752921,15.4769739570994,15.5734100675712,15.6503054437126,15.4520998200917,15.6311848342467,15.7083718990882,15.8017908788862,15.6989568765354,15.3590890835453,15.4645775297136,15.6739963604288,15.8144834434324,15.5910265388704 +"Q9VKU5",13.617372855981,14.0488390024681,13.9371067448946,13.7825027002849,14.1578033187121,13.9210193057742,14.0105597653451,13.3186260655694,13.2243017538279,13.475694719721,14.0524183798298,13.8805614620352,13.4314853685358,13.1329174720758,13.2292976377541,13.5176990466505,13.1247102178632,13.6430275522322 +"Q9VKV2",14.9746852911423,14.9341261967788,15.0776243302262,14.6623269648612,14.8722253835274,14.6734008434985,14.930604988797,15.0761405604929,14.8475326579451,15.2113373588119,14.9141837916057,15.4661362169176,14.9085312881241,15.0299059084402,14.8110320119697,15.1016322156573,14.9625362665486,14.9133920468365 +"Q9VKV9",15.5028624861485,15.3608604262248,15.5812232883257,15.438298375813,15.7932517485705,15.5574265005852,15.5707731989768,15.6097574866549,15.6322109171092,15.7352395903134,15.6776226363291,15.5561210326499,15.5168899899406,15.684625880285,15.7166107859579,15.9283960841765,15.5663415473046,15.648867200741 +"Q9VKW5",16.9325608334104,17.1120140124727,17.3111152371913,16.6428782730115,16.7294368881953,16.85929167209,17.128586938384,17.088504356482,16.9663148239795,16.9747466801271,16.9312993789282,17.0802854156337,17.43811303387,17.347017932766,17.2715538848636,17.0368425058747,16.9454556958336,16.6651672309197 +"Q9VKX2",23.2556871771514,23.0957855132141,23.2361913987344,23.2020510936043,23.1193614569829,23.0649176454561,23.1137817648738,23.1458531062765,23.1513912455303,22.9998624486374,23.0065665337837,23.0449185667698,23.086926706547,23.2315325018582,23.114512770767,22.9900090818147,23.0492191605132,23.0363866453712 +"Q9VKY3",18.6197696807872,18.5545501495427,18.6413418969315,18.7060125083391,18.7890319711591,18.7926823885645,18.8148066538475,18.745203236352,18.7368176354738,18.7324506284633,18.8612080125364,18.88643451193,18.9825735213688,18.8446013414063,18.7907540634391,18.7340340566745,18.7950523384839,18.7416165531416 +"Q9VKZ8",18.6906941164678,18.6924096330091,18.6591253640613,18.5594163555556,18.7051294998223,18.7629181081055,18.5722673708858,18.6340815154765,18.4439942885065,18.7699588121269,18.6838618555855,18.8721456775655,18.7235880197711,18.7755987778229,18.7693656209651,19.0936845105475,18.9185279036386,18.902060126151 +"Q9VL00",15.926943491603,16.0320048706333,16.0249263968459,16.1986068409529,15.9847087748024,16.1521362196255,15.8093528988731,15.8537196805177,15.7856097322274,15.8757886903212,16.563399840693,16.1268199747796,15.650849439898,15.744013892791,15.9130456726758,16.4659101176451,15.7496044198559,15.924913483139 +"Q9VL01",20.7109484409779,20.5398184555392,20.6947296994756,20.6577923059248,20.6278452488074,20.6200776018707,20.504489823695,20.426794032428,20.4741772342668,20.3817664755903,20.5238014128383,20.2958788208277,20.0634411312632,20.3228326838865,20.2618621929628,20.4905262227774,20.3678725667293,20.4622388508251 +"Q9VL10",16.5987417806645,16.4790885775742,16.797507212209,16.5230772344005,16.6279461636739,16.5565429685529,16.9654208516726,16.8298686193198,16.9746542686883,16.7338948845609,16.8498557124967,16.703662373472,16.9821741643501,16.9284539523554,16.9343668651175,16.611481447163,16.6995773373917,16.448056674772 +"Q9VL16",20.7797849003642,20.8209728162336,20.758841146276,20.7316750758392,20.88859475287,20.9666226768791,20.6759067154084,20.6829258639733,20.5890254940545,20.8048196344301,20.7968078736346,20.8722933203957,20.6498055139916,20.5693586340156,20.6124264994317,20.8035875382105,20.6869194375171,20.6463702412072 +"Q9VL18",20.8656117199837,20.9573320744448,20.971347481338,20.7645808843248,20.7555568996804,20.7599322909165,20.9549640579789,20.8387844191034,20.9725427260153,20.7920745347977,20.9264729605037,20.8627099809465,21.0064101370683,20.8183491732772,20.887227414025,20.8202411479974,20.9073869551413,20.7501225889095 +"Q9VL66",15.7037529465681,15.63433379223,15.7124529653521,15.7481540517671,15.7733116559061,15.7522977819123,15.8906934477456,15.6621840003919,15.5216525564489,15.7175039846136,15.7244155880035,15.7865260444725,15.7214633777981,15.8902784416139,15.9458382951907,15.7009622351509,15.798006565498,15.763762400267 +"Q9VL68",20.7793544975635,20.7107393869221,20.7841661952544,20.8801033726982,20.8857114357393,20.7848983528971,20.7698850733852,20.7185182105404,20.8081241983374,20.8597231009057,20.8410740081432,20.8275186739947,20.7642338591641,20.8786275639164,20.843733356214,20.7409829615056,20.7596122599608,20.7458420885247 +"Q9VL69",16.2247104402867,16.2445746249691,15.7699817381685,15.8262964559476,15.8163931266608,15.7262094880494,15.9599922859082,15.9846912958382,16.0243604619927,15.8321963841849,16.1512571597315,16.1592102950537,16.2749801833844,15.977556224902,16.2478032047503,16.1309732674619,16.0746765850722,16.3215838291592 +"Q9VL70",23.3370161951218,23.2980558718671,23.3211019749639,23.7572944557983,23.6541598425783,23.6350534540234,23.3992077634704,23.3741198068096,23.4161883545857,23.6056081749998,23.7061866679551,23.7012374774713,23.4722323949581,23.5485022883381,23.5269118615005,23.5784639259298,23.5687984327301,23.5493297877335 +"Q9VL89",16.8831110220942,16.8092899917719,16.8888013651146,16.8287882755504,16.8052216531597,16.911282927736,16.8363446312949,16.8678083864745,16.8616817258474,16.8877779720956,16.9881581915763,16.8957445844601,16.8976511237046,16.8791049859208,16.8750490838722,16.9387101752195,16.9227999910563,16.8398235129291 +"Q9VL93",15.1182234485131,15.500959150547,15.4121262720525,15.397717620312,15.3845608207238,15.2413102031024,15.3566327190569,15.1945761713486,15.6165002456681,15.4485057994745,15.4169317581051,15.4882571572241,15.4171140490322,15.4086677839132,15.2484857085778,15.4191116868184,15.2516096385694,15.1506257365823 +"Q9VLB1",16.8429415454416,16.4896374500299,16.6827495392855,16.5595814386864,16.477826721036,16.4887897015802,16.7476501436049,16.8011020062245,16.7996769567838,16.5819725102715,16.8666020802177,16.9445082124347,16.761109697541,16.9069328171947,16.6790282153801,17.1220008244366,17.0731550852791,17.0205035345178 +"Q9VLB7",20.794880267413,20.599876693103,20.568676703915,20.6803921234592,20.6889722901217,20.6985280249416,21.1837229239338,21.1804750199307,21.1662743944758,21.1077954043174,21.0549895429109,21.1104342817803,21.2748158278741,21.5205740881664,21.4860162567132,21.543022142143,21.539741054908,21.5546990273148 +"Q9VLC5",21.4589543793267,21.3399365494877,21.3459825332201,21.4709381762378,21.4629271097129,21.4321852526577,22.0210805484748,22.0122757984054,21.909326009478,21.8889137545088,21.9434233640916,21.9345062094245,22.1101150546484,22.2369948690498,22.2766808387275,22.0301384974524,21.9845827199014,22.0814595671412 +"Q9VLG9",15.6624179239178,15.6218611992442,15.6306343187132,15.9704583040053,15.8099924032426,15.8378982569563,15.6648444509655,15.4996659756107,15.6404736981594,15.8010619863225,16.1280261957897,15.9647565662744,15.6577378773964,15.7967526624827,15.8330916214099,15.756793808086,15.6570159143237,15.6064598891803 +"Q9VLM8",17.0104201609558,16.9188340521289,17.1200438962913,16.5476500003457,16.7698609774284,16.5033263969474,17.1537192742225,17.0180539803457,17.1995359958643,16.6722022404433,16.7159913756859,16.6700536877476,17.0698550008484,16.924530973275,17.1345914530843,16.6003643460996,16.7069396640515,16.4266595929805 +"Q9VLM9",18.2641637715379,18.4322793488938,18.3804603255167,18.2820403417815,18.5274183137319,18.5031290701905,18.3839630415974,18.3078825398617,18.1872631037351,18.561197453835,18.4775707702753,18.624003530015,18.4981230917589,18.3089590179799,18.3161861666912,18.4529116756154,18.3882893853834,18.4313571799775 +"Q9VLP0",16.2174703974272,16.323687817525,16.4344977100885,16.5882429964567,16.363599894808,16.3212734994708,16.0401215860656,16.0198805931858,15.9912597886178,15.9667342970299,16.1438960710058,16.1156332376075,16.1014527981925,15.872422356651,15.9287292200049,15.8005039273989,15.9910392693952,15.9231325467814 +"Q9VLP1",18.4942833394695,18.3082875106363,18.435786419866,18.6408573202643,18.3569820062963,18.4400288453472,18.397440841184,18.2094164083504,18.4046435140092,18.7978608189201,18.5247165718294,18.5359816546407,17.702282021191,18.5365409828834,18.4018725710065,18.4956698849265,18.5924507459595,18.3100812210856 +"Q9VLP2",19.5018266494639,19.3033295369387,19.2821378642993,19.7430187369668,19.3907948038737,19.4133050522947,19.2539784507026,19.113875125486,19.1086103420386,19.5460284716008,19.2982586289106,19.4536957389961,18.8484368867062,19.2983913459977,19.3321389901068,19.1140837515484,19.6027235057821,19.4174849592534 +"Q9VLP3",17.5761243061326,17.4772342746845,17.6803947477231,17.7413793489412,17.6441140972866,17.6216605602295,17.4671747851028,17.2095741520911,17.4827544880435,17.5577505115861,17.5064485396157,17.4061704559474,17.0732864934079,17.4618039184333,17.3557394716606,17.6140900466257,17.7306305096852,17.4830857681922 +"Q9VLR3",16.6934292896139,16.8100975504004,16.8969688367154,16.8138425691362,16.7505536554512,17.0277824712099,16.7732928986595,16.8499518067681,16.7900503001855,16.5741843175085,16.6103910530949,16.677979223021,16.6669116327367,16.6764603025863,16.7218827493499,17.0282413796571,16.852447719011,16.4352385068302 +"Q9VLR5",17.243806333486,17.3434469767069,16.9261015103112,17.1901166603549,17.1771333908453,17.0913400826561,16.7934142094761,16.7958424230504,16.8026968148371,16.6694837824753,16.7211044052495,16.77916069957,16.9960812054152,16.7243551037074,17.1098261078137,16.3456220679531,16.4766419596011,16.5293990439726 +"Q9VLS4",20.8181047153392,20.5665972654665,20.7900647613149,20.8065866253967,20.5845070908572,20.6027686349329,20.4444040857012,20.4691795844018,20.6704482880913,20.5335994980089,20.5365549655427,20.5295384651902,20.2782063276539,20.6605763438581,20.3922493270308,20.6319562714578,20.6954422734315,20.5277880469976 +"Q9VLS5",14.7270032497575,14.5014316235384,14.7935320976974,14.5412330884879,14.6527163547749,14.8575115694376,14.6109105549103,14.676659994701,14.5577573660204,14.637732116442,14.7513254632793,14.8290131830218,14.5597581257984,14.3552775022109,14.3710286592967,14.5981739337094,14.737400130601,14.2659681936315 +"Q9VLS9",19.2567499678084,19.0630005355083,19.1354718412506,19.1457192599667,19.0243839976546,19.0754697981927,19.0284908268775,18.9352800056448,18.8941273451779,18.9581737857513,18.9667951254971,19.0188028155984,18.8543210528914,19.0016857743149,19.0150638368026,18.5591470547679,18.8114565094436,18.6636663110411 +"Q9VLT3",19.3128991434647,19.2246849003646,19.3221891057266,19.3263299709601,19.3392165799571,19.4308365988614,19.4307132322857,19.4909965373087,19.3574542995134,19.3887155559053,19.4229311561887,19.4529778254296,19.4589722125687,19.5099454768886,19.4542778486984,19.6004695093799,19.5303249738566,19.5003639463349 +"Q9VLT7",18.0037770302065,18.3236219773725,18.2549010164139,17.9887359419787,17.9194494131507,17.8108478750638,17.952319221063,18.0657722136537,17.9540469642124,18.0971329470736,18.0676217558195,18.3162670111754,17.9874565647388,17.8055606292292,17.9687445021176,18.3541396852655,18.2015354011005,18.0787540213432 +"Q9VLT8",14.0556534266876,13.9071792698217,14.1617901729961,13.9640579123953,13.994958166224,13.9947994050716,13.8197294180456,13.5803934665161,13.9564386623418,14.1229716065218,13.9928696519926,13.9853033958809,13.6684152103932,13.8486686741925,13.7447414199986,14.0743059395721,14.3810642848688,13.8620604573266 +"Q9VLU4",17.5060726386073,17.3190467740608,17.5209936967686,16.956198754068,17.2065961251545,17.0072459463317,17.3603122995854,17.3689390506446,17.4191441617155,16.9727580382074,16.9843745441289,16.926046090286,17.2609307962533,17.2520054326564,17.3342049991909,16.945344441368,16.8706550414443,16.7939820737967 +"Q9VLV5",17.5728893188822,17.4666686756957,17.4155876342239,17.4738292692919,17.4799042604592,17.6064100496599,17.5598810045297,17.4640332286259,17.3932766419269,17.46664869485,17.5759876975853,17.5725357887639,17.4962023507883,17.4582526829065,17.4986533859465,17.3223287283335,17.4469328214028,17.4053158661544 +"Q9VLW8",14.120547568899,14.7295808490094,14.4679235806248,14.0952508501783,14.0252032624948,14.1998589675982,14.1176351823753,14.4387029295469,14.1534868638698,14.2648318231512,14.2097107246792,13.9878927951796,14.1082207225658,14.1114555001628,14.1357068512432,14.2189054762997,13.410738357576,13.9805225649536 +"Q9VLY7",15.1318380156707,15.3131082448,15.1488559462585,15.239464624274,15.2635622654066,15.2506717353454,15.470488561576,15.472042115817,15.4608288395894,15.3643743155196,15.5630533832176,15.5396058667163,15.6092430404876,15.4892082001396,15.6933177975918,15.8860165338012,15.6004508819482,15.6081449058278 +"Q9VM07",16.4636146619116,16.5834097826759,16.7310174171159,17.0176758477622,16.9192663428872,16.849364746958,17.2329188460714,17.2011127746135,17.3189810207328,17.3272964802629,17.2556666735792,17.2019592904252,16.9464865911704,17.0546187757473,16.9503560444559,17.0148431400543,16.9887612177298,16.9511570475452 +"Q9VM10",16.9495928038683,16.9107915690456,17.0351286202677,16.7239479467743,16.7835847024974,16.8124954714865,16.9607486163412,16.918343381428,16.8699361495756,17.0603249913947,16.9663476185039,17.0949313181781,17.3195017306201,17.3872547636757,17.2103275055527,17.4199482936494,17.4677423474973,17.4112453175875 +"Q9VM11",17.481120118809,17.5533699264322,17.5645759672651,17.8151335261288,17.9327217001808,17.8918542644672,17.730696333842,17.8415909360706,17.6347250936586,18.1945683955529,17.9188015683029,17.9831850746494,17.8034812378777,17.8336890524548,17.9590527613229,17.7544897187488,17.6993161475181,17.7460961695962 +"Q9VM12",18.8361887587393,18.7317500191743,18.7884342173805,18.7956295073689,18.7957180785212,18.8194525058893,19.1483231321578,19.0835241907155,19.0893286479915,18.9553479194568,18.8696005462682,18.9540546080215,18.9967767089752,19.2054752089088,19.1519842286253,18.9636326322877,19.0098306153975,18.8926444510776 +"Q9VM18",23.2095217656235,23.2177192749933,23.2291256805413,22.9246880714539,22.9657281376717,22.9971636484463,22.9435197026453,22.9886960907061,22.8868028447065,22.842272501433,22.8686147103671,22.9027441071313,22.8858852611305,22.887723010182,22.8954265674556,22.7763101441245,22.6537162224905,22.6709345981296 +"Q9VM33",13.5997425601518,13.6899840529472,14.5590484899602,13.4468076839816,13.4712317008619,14.3491860871786,13.8560564418213,13.8145083976788,12.8686543191119,13.8485420855506,13.9315629701078,13.3111900191865,14.4352769057734,14.0380415678738,14.1612584570708,13.6676514480698,13.908748435879,13.6047397528404 +"Q9VM50",13.1927402039342,13.4881561933678,13.3006265288948,13.6909762369345,13.276011943799,13.4591189663916,13.5037703987307,13.2498107815358,13.2661466007184,13.6495643475214,13.8441424462808,13.8319757220107,13.5588393266216,13.3645783696888,13.4999760105018,13.4351496027623,13.8083403818325,13.6731962879875 +"Q9VM58",16.3046227030377,16.2010496771123,16.0485720927725,16.4651259004443,16.2880734990528,16.3578295838757,16.4706975076012,16.4747367131496,16.3955208348766,16.4777183197858,16.5665236248748,16.7923736724541,16.5556791038859,16.4438551791317,16.4300277804228,16.3582688294227,16.6578736708563,16.6077883997759 +"Q9VM69",16.9763086657756,16.9348017149743,17.3123246798066,16.7750804474085,16.7494747602626,16.89777415086,17.1649056550574,17.0526026105108,16.9649108460385,16.6398507039868,16.7702596084446,16.7826592462924,16.8559492934252,16.8660973479916,16.815786531283,16.6452357041172,16.6840944275868,16.2838750154903 +"Q9VMB3",18.8108820320678,18.8242734167735,19.0737203737775,18.5447579736233,18.583978489083,18.4854934095485,18.8657270114765,18.7415152350801,18.8496290720503,18.5888666291806,18.6913430697594,18.5849167035837,18.6590815424852,18.770218066161,18.6984744027975,18.7138910536644,18.5718779656409,18.4909722807404 +"Q9VMB9",22.5638740868976,22.5905349951819,22.7650659930531,22.8647610632605,22.7543844203996,22.6658826477258,22.4645412321771,22.4149251931746,22.5812195382033,22.4296911950008,22.4481676694706,22.3693472021013,22.3580159410812,22.546335820157,22.4535253808417,22.6089676557777,22.5355030758112,22.4548104122697 +"Q9VMC8",16.3909228285383,16.3685771304077,16.2780291224951,16.3501897400962,16.5027349868712,16.4086211923099,16.3640189785248,16.2298961668949,16.1972843090918,16.2565801459685,16.5307814873313,16.5794727521841,16.449880573656,16.0460581480426,16.3202145424774,16.3482414421954,16.4817857894315,16.376211790421 +"Q9VMD3",17.4557036062636,17.2594820799435,17.4514111962641,17.7870941853582,17.859149630643,17.8288929620912,17.7424875194932,17.6339917030556,17.6773680908953,18.1513538031419,18.0926478637066,17.9730134955061,17.5213894099381,17.6808285792404,17.7408041223377,18.0239862864532,18.1559149540591,18.0105249435537 +"Q9VME1",16.6757719473916,16.7876386263431,16.9690777379612,16.7900178080656,16.6771504334413,16.873586132368,16.2837949571722,16.4622825166799,16.197033228101,16.4053116207657,16.5356661561937,16.653588574563,16.2970942040712,16.2734859287238,16.1777205480605,16.8334076633896,16.5491745394741,16.4143919798022 +"Q9VME3",15.6120866050035,15.7677472360662,15.5978384145101,15.5485654254322,15.7065599565699,15.8518128013648,15.8391381089705,15.772858914666,15.7035910521161,15.8306790362019,15.7017192577663,16.1375236379268,15.6982839817144,15.7054385694638,15.5269724965945,16.0146224742442,15.8890516970345,15.7256372290544 +"Q9VMF0",14.0793340931799,13.7721410403413,13.7136414486772,13.9025813221729,13.9288786522389,13.7851212354825,13.6860864361012,13.6344369346491,13.6777549100182,13.8555965446999,13.6094607375098,13.7948584424723,13.6568043384429,13.7390876801333,14.1498765403864,13.7434203978861,14.2398180876105,13.8025705554463 +"Q9VMG0",15.3292756220881,14.8417794351102,14.7035985872804,13.8020138125188,14.9129970908216,15.0341257762844,14.4039460713551,14.7363133986366,14.529773272698,15.4840971348361,14.7210096422893,14.9181245973624,14.5004754414186,14.6154145195832,14.5048122649832,14.9108383799829,14.6031323757586,14.7402119635912 +"Q9VMH2",18.3215603798684,17.1397932991714,17.326805542951,17.0692918918707,17.3632646858214,17.3879321168204,17.1208082320234,17.2631248672539,17.3252258169711,17.4385411253394,17.4787980717271,17.3436135104821,16.7851099604569,17.3370599089809,17.3058647956515,17.2333025463448,17.3865733029489,17.2791723530276 +"Q9VMH8",18.7921920951154,18.7550389486549,18.798141846275,18.8317935647818,18.8442479177186,18.7597282939988,18.9789283604366,18.8960807127312,18.9840687691479,18.9218632515806,19.0564761438232,19.0797699402115,18.8727794441128,18.8970682001024,18.8554176757125,19.1205487124456,19.0691935054425,19.040978903127 +"Q9VMH9",19.9867158671627,19.8466714714423,19.9178792943465,20.0164364341315,20.06967408,20.0108712494772,20.0995289019884,20.0469313182037,20.0240061829004,20.0467403185998,20.0984136830392,20.192607092021,20.0012541670986,20.0891767785464,20.1794352447795,20.1826041003145,20.1824124580638,20.0084807257708 +"Q9VMI3",20.0705851135478,19.9736583359733,20.0052777305433,20.1396028864275,19.9441477810937,19.9580937517672,20.2669711322551,20.3539710691321,20.2152310987367,20.0984615992654,20.0711994362602,20.0904495379787,20.2414976884723,20.5509127037434,20.5238225612461,20.3666259029161,20.2898549966815,20.3908696426123 +"Q9VMM6",18.5395932259806,18.3790382525328,18.5890596938863,18.6714738947301,18.3159305082078,18.4377728512117,18.2525427637995,18.2395698255883,18.3542627806515,18.6246286569197,18.2928274949567,18.3600244296563,17.73873670313,18.3855259911542,18.1840213385188,18.4238793405993,18.6379625127195,18.3257134912347 +"Q9VMQ5",13.3903376100955,13.2105563417055,13.2990275753654,13.2688410036293,13.3048628014673,13.4359172619142,13.7511137657618,13.7482286809343,13.6350284997961,13.9388225675397,13.7418460364129,13.3854169837274,13.2559943900633,13.9904609658159,13.8122641695123,13.6459976667442,13.2551521774979,13.6834525135184 +"Q9VMQ7",15.7996047977925,16.0397786040008,15.999259005469,15.7247959769183,15.8434579335254,16.0161827172204,15.8965166826691,16.1498287783287,15.9008441025945,15.9003410194791,15.8163211821429,16.0365240583024,15.89628376585,16.0238775607473,15.944521540164,16.2844228478013,15.6287010317651,15.60463366676 +"Q9VMQ9",21.9586828477759,22.0858855468139,22.1573679692864,22.1627732344564,22.0959751779862,22.0224797699241,22.0484438937499,21.9883739326138,22.2059486443303,22.1188855968623,22.2086484605582,22.1634989570559,22.0458607441851,22.1613544892809,22.0291434185757,22.3468023657182,22.1412110754948,22.1030099235755 +"Q9VMR0",17.1503947658869,17.3162412147083,17.2019531135846,17.0795455659679,17.3274427485557,17.3496187448422,17.335260456828,17.2544714124441,17.2210580627743,17.4094972591497,17.3609752411374,17.5088033847935,17.3209440137515,17.3839265193603,17.2854699935735,17.6194952210232,17.2720801464014,17.348233983039 +"Q9VMR6",19.0281589095911,18.9649345720348,19.1324883526365,18.9881031442691,19.0689060826817,19.0971736482354,18.8208004174208,18.7934117512489,18.6766116129218,18.6359957149742,18.6852171775567,18.6594810460214,18.6773082037846,18.7529151346426,18.6827405544123,18.607431528107,18.492413199982,18.5093027039194 +"Q9VMS1",22.4854482523628,22.4926140206709,22.3878904839685,22.4239089135843,22.4687165982967,22.5564867088453,22.4015706167915,22.3506608268944,22.2039232870725,22.2862743948695,22.3959541880796,22.5116496514994,22.3497524796015,22.2136631641813,22.3946494032178,22.3922203468745,22.4175662059614,22.2845754694808 +"Q9VMT5",16.4408536545113,16.1085828746662,16.3157189763381,16.3510076618882,16.2931228347839,16.3467734995629,16.5619004163665,16.5055203443774,16.4240413250024,16.4047083805108,16.5590155079563,16.4864469752232,16.6124515139172,16.8608938545508,16.8260164246113,16.5176897928298,16.5614760036893,16.4896142192859 +"Q9VMU0",21.1767478990671,21.1173478506311,21.2812703694231,21.4057134051172,21.310651380066,21.27190600039,21.0234959973672,21.0773614369868,21.1969206078773,21.0526020189021,21.0261208106846,20.9482783484161,20.8152978000648,21.154904018544,21.0517414651251,21.3330849289661,21.120556552572,21.0568252582529 +"Q9VMU2",16.4106773664255,16.3730492791176,16.4128088430782,16.3119405241935,16.2552705674538,16.3335581415544,16.2408881639505,16.3541738403672,16.3020424871278,16.3590305521974,16.2435258343031,16.2402402856705,16.1767502112198,16.278256385873,16.3579807957496,16.2600052360893,16.2550161469613,16.1126615008955 +"Q9VMV5",17.6673908682449,17.7838239314117,17.7098647106008,17.5617298788085,17.5787950971153,17.6645087895738,17.7292294506424,17.7035431235316,17.5877476943379,17.464926475934,17.5665203342199,17.7189807945334,17.6771054055092,17.5881449943238,17.5142426524784,17.5852536295375,17.4648082280741,17.4902910671521 +"Q9VMW7",19.5372636208717,19.63486779189,19.6514107498424,19.5820596512784,19.5271450007912,19.4682097800487,19.341368391466,19.3960098453005,19.4711277374988,19.2927258922528,19.377844970698,19.3082567820186,19.3927384598357,19.3805045568189,19.3085681610079,19.2719596516082,19.1017435018143,19.2105424568966 +"Q9VMX3",12.770248348,12.6197876383869,12.2906382351394,12.3263879196858,12.4336851699418,12.8361149642911,12.6382261280544,12.3879999143052,12.5166972889565,12.338876473944,12.6621493293907,12.1546058376545,12.555148122893,12.5566066759948,12.6169643852929,12.4961705319836,12.4648287965414,12.7100368132265 +"Q9VMX4",17.4550530469379,17.6120727028741,17.5703407761814,17.2679570701566,17.3875596249241,17.2736895072499,17.3376169661839,17.2391991332982,17.1146283757247,17.2264774480572,17.3708489337345,17.3332292502444,17.0536814021684,16.9360148883468,17.2739185229178,17.4425307951037,17.2376214454301,17.2175102962895 +"Q9VMY1",15.5747321297907,15.2773664988984,15.2585172336337,15.4594377164253,15.5332087808752,15.4102351304975,15.807588272486,15.5099655238584,15.5044200945363,15.9723477211411,15.8884034171168,15.7915508062962,15.2440349095326,15.4334725169812,15.5557370846617,15.2101360746395,15.6258600862854,15.74781647439 +"Q9VMY9",14.8976583321257,15.0535252349028,15.2162343707597,14.6171614189368,14.9784211818967,14.6220274120446,15.3896727420302,15.096272783965,15.1155719800289,15.0450676819978,14.8964042616041,14.997772240741,15.5302959975542,15.1234901661884,15.2559966901658,14.5012035024907,14.8329460465784,14.7734569813954 +"Q9VN01",16.0880311997649,15.7807727655639,15.7600909281667,15.825615035697,15.9210024469321,16.0162583151836,15.9765230971727,16.1007906782524,16.0316648840078,16.1678052858713,16.1350677715236,16.1524465389298,16.0856288182997,16.1926428660027,16.1931763350038,16.2353317735969,16.2486586821278,16.2252982091107 +"Q9VN02",17.4435722980421,17.4806616199515,17.4308332865875,17.4862223869785,17.2664824332869,17.4134936399895,17.1796148025242,17.2694669129492,17.2186274234744,17.1345357992112,17.2216953588399,17.1913358076666,17.1846838919099,17.2907572099624,17.3667055351567,17.2223526319415,17.1219182756175,17.0299861177326 +"Q9VN13",16.5843692957531,16.696541780081,16.6049338217892,16.6798020291816,16.7254137327703,16.6862848626132,17.1088127583444,17.0909502368573,17.1553625539911,17.1393068735588,17.2274519973637,17.1986137442906,17.5547930408735,17.4072206438545,17.5398524951249,17.3120663825584,17.2315719893431,17.1941029024609 +"Q9VN14",19.0847579902948,19.0814436867208,19.0444308765253,19.1931558366693,19.2086186552823,19.2331242962905,19.3090695279382,19.3470239195187,19.3272323127574,19.5189976598687,19.4700639387189,19.487758163548,19.2547511850349,19.3514594154105,19.3893641971643,19.5878970088928,19.4900195930475,19.4667193624132 +"Q9VN21",22.0120658144555,21.9614738762181,21.9476840449428,21.9395742808301,22.0413803612757,22.0524728734145,22.1384299589828,22.0430694526826,22.0219068458751,22.0218551582448,22.0748150025325,22.1376258132792,22.0343537144041,22.0527317524955,22.0043188227072,22.1137909974361,22.086599479149,22.0960615241345 +"Q9VN25",14.8831054776938,14.8768433304521,15.4052846464107,14.7384723358716,14.7633515046512,14.5018287842215,15.1896753643644,15.2291080240217,15.2928876321157,14.7747797304939,14.9204788935262,14.7010573669244,15.0107089005934,15.1626529042265,15.0250635281558,14.9967595425802,14.6410666947195,14.6673793937691 +"Q9VN44",19.7502294466087,19.6651241690222,19.7488330378826,19.2637052778577,19.4505573978159,19.4888843977194,19.6200620129411,19.7424561316132,19.6250415400799,19.4175578198767,19.3777601224521,19.4585058591229,19.5531109981054,19.5761160961423,19.5562533782055,19.4165712254729,19.2092228638169,19.1437185678522 +"Q9VN50",17.9122189850022,17.7243250855601,17.6174736417865,17.6382652760194,17.6513273344188,17.8692870241729,17.8683930883571,18.0347340194699,17.8392694010129,17.8713788257075,18.0608147333588,18.095010287615,17.9708420753568,17.7906354095196,17.8309652599107,17.8794975946795,17.8787592627955,17.8885902306246 +"Q9VN71",18.494605160206,18.7498548873861,18.6741789469556,18.514525517393,18.5944849668643,18.7014981990148,18.7950578612499,18.7522148864537,18.4760125307692,18.6016932880713,18.5051639003079,18.6294399377624,18.9368410664734,18.5153653252831,18.702336187391,18.3967213921925,18.6223603192911,18.5559784836931 +"Q9VN73",18.3069831054788,18.3778633937867,18.4886506764061,18.1409406494823,18.2826378477074,18.2164081413839,18.4813402786567,18.4764851424972,18.3968117262908,18.3515560139362,18.3858439431177,18.3995525443,18.656643252042,18.546501484701,18.5394748044698,18.5359881385479,18.4041196263339,18.4325535452933 +"Q9VN86",15.4650624744264,15.3553641248123,15.3000988683954,15.0252085638716,15.1974798887882,14.9602219231411,15.4403283961206,15.1864577636282,15.5515065825651,15.2323636460411,15.4687463035723,15.3126587517181,15.7924053242766,15.5985870289469,15.9314325754533,15.4010502520882,15.5497835470767,15.3004999555516 +"Q9VN88",17.0260067054644,17.0535673773241,17.2133097825507,17.3101123041402,17.2037918327232,17.0353166576074,16.7800156532228,16.8811558554036,16.9816024236804,17.0938372558591,17.1242539922668,17.1288542311091,16.8002098268619,17.0318855746642,16.8674236509283,17.1484654018284,16.8639925149948,16.9321404015009 +"Q9VN91",19.6082469674359,19.3410995345256,19.3236745151307,19.629897300729,19.5345624557943,19.5358274278253,19.6258546491974,19.4556819664018,19.3936928225865,19.877638706979,19.7116880070645,19.9272743260085,19.3063465807818,19.6492777956704,19.7319985913207,19.6548714817907,20.0105459274571,19.790388004042 +"Q9VN93",20.3573161921688,20.273726743835,20.2870085209271,20.3167280946294,20.2644037913513,20.2218490886738,20.3140185496058,20.2861689322499,20.2201878104221,20.3863983743485,20.3689198199899,20.4126838970521,20.3048356578045,20.2384077962997,20.3283845483422,20.1288094726603,20.3764792574917,20.3379924758002 +"Q9VN95",17.9123980392241,17.9539469354441,17.8163730391384,17.7743670869407,18.0200692897193,17.9581807682693,17.9611749049287,17.7920288387004,17.8915798332274,17.9894753610351,18.0637727457142,18.0885694080615,18.0398512296772,17.7067859355751,17.9567658048326,17.9831787692957,18.1238416459484,17.9489765375722 +"Q9VNA3",18.6523995140753,18.6734288544223,18.7221246072041,18.6572705249105,18.7152498514535,18.6369480466486,18.5953971310354,18.4279427651062,18.5518510017596,18.6313502438945,18.8591940633239,18.6244943941316,18.552516114595,18.5195396050784,18.5596971327795,18.6373576312105,18.530936020337,18.6311759771979 +"Q9VNA5",17.2987109095733,16.9172821700563,17.1763990731204,17.3071815706652,17.2770681891977,17.2106169973797,17.3777232548168,17.5007798445336,17.3082000433272,17.3147124859929,17.4768332619033,17.508305284924,17.3356644204251,17.2213400967158,17.275005372792,17.3478603529128,17.5885494319794,17.5033262228427 +"Q9VNB9",18.4003400179708,18.5556534261726,18.4403763340407,18.2423851129024,18.5660037319969,18.5561016290719,19.2263759419974,19.1584031874405,18.9534087591243,19.2532870805561,19.2324669348644,19.3426363596404,19.2630360207725,18.7363754640133,19.091035039573,19.3308296093165,19.467351039028,19.3326956620653 +"Q9VNC1",15.349252175626,15.5371524970216,15.3159642164175,14.9973836567908,15.5391553425064,15.4360756615216,15.502918590579,15.5747549343194,15.6664126507808,15.6007087145077,15.8560940815624,15.8047693141103,15.6652295380966,15.3775875160093,15.5871053272243,16.4255598539745,15.6563081581556,15.7307253595203 +"Q9VND7",13.7914081964184,13.8840585863788,14.1550730174832,14.2066069471473,14.0374677373671,14.1034038111998,14.0107212800508,13.926591659059,13.9273778845975,13.9687741617547,14.2118695828846,13.8861481116082,13.9146458489275,13.9921980186177,13.8440346439831,13.8308440585521,13.6708149085434,13.806963023979 +"Q9VND8",18.3041738977159,18.2314316841697,18.3454702978579,18.298460044249,18.3536076106899,18.4351489621003,18.1846416436259,17.8029440286677,18.2259832565769,18.3238943022835,18.4520064624463,18.4871211575144,18.3840463520842,18.0354162230665,18.6151394923415,19.4124295415602,20.0322397724786,18.7987826151278 +"Q9VNE2",19.0523385450329,19.0864625332249,19.1140184741009,18.8670319819161,18.9731292522325,19.0736693177161,19.11616772608,19.0708758461914,18.9781647989786,19.057296255657,19.1350498888338,19.155708976888,19.1258625105224,19.0516779715767,19.0879597279736,19.0044184293734,18.9059199565226,18.8135941529244 +"Q9VNE9",18.6088963717933,18.5759682827386,18.4004047400162,18.3154969765747,18.404958941245,18.3396314783486,19.2227436994703,19.2612231176138,19.1805732559747,18.9302599440397,18.9341065302935,19.0898433569412,19.1827209335404,18.9101277714684,19.1247932591839,18.7281754724367,18.9019087544958,18.8530473073906 +"Q9VNF3",19.2639176003603,19.1167315747444,19.3595222479329,19.1096455792497,19.155755907794,19.0709247977386,19.1574575519855,19.0798076729361,19.1237795835094,19.0918331428427,19.0810755345198,19.1027608319365,19.1040405805388,19.1728437957973,19.1373340548577,19.106088593055,19.2267685622406,19.0386615320568 +"Q9VNF5",16.0101406817965,15.7953132356017,15.9470090427052,15.871218904282,15.9937469923023,15.9923700919261,16.1015878258598,15.9764949498288,15.9820332305804,15.9388691665552,16.0948539162645,15.9031853299283,16.0747521374862,15.8957738862375,16.0427817276176,15.7231012494899,15.9634869852347,15.8522905427119 +"Q9VNH5",16.8792753692009,16.8147860261413,16.7823609559189,17.1165404340412,16.9699527096052,17.1654213298476,17.0731842319572,17.117980678847,17.0877902557037,17.3489149755965,17.2848644438459,17.343596775226,16.9616905439262,17.160191455997,16.9282409490808,17.3009126346638,17.3327428749495,17.3731079236089 +"Q9VNI4",16.6569939571217,16.5215736483765,16.6620489878272,16.70334818605,16.5414942149494,16.632113079712,16.292094647773,16.5619512401322,16.3583302652876,16.6705627232144,16.4485167993562,16.4243055814632,16.4576745951031,16.6147781552391,16.403707002628,16.2099899265987,16.3023499778074,16.5101591189428 +"Q9VNI8",15.9246432118213,15.699939656225,15.7757262736241,15.644432287132,15.7884085518067,15.8408777492887,15.8069437437517,15.8091227019729,15.6027714084634,15.8219648018796,15.6953017326606,15.6676391345426,15.6263726640918,15.7875443098238,15.825389778395,15.6274231899868,15.6714629461744,15.7393755543496 +"Q9VNQ3",15.3073003209209,14.9541812169246,15.1495565636095,14.8960810670565,15.1518689397344,15.143552193428,15.1106620489518,15.1281758792575,14.9241342828908,15.3608241064919,15.1768104948606,15.2340481966262,15.2278494396425,15.1481169730997,15.0537023660517,14.6907964472184,15.0343599264053,15.0885198276759 +"Q9VNR6",15.0258941682305,14.4171351811453,14.8060041685249,14.7723325489353,14.6617632598031,14.8097669711163,14.3857174161599,14.5311101174891,14.5734389985413,14.5309870119181,14.8347444183657,14.7686116397456,14.2877823659305,14.5638392420005,14.4551396223405,14.9498968757691,14.9440181681398,14.5396489866748 +"Q9VNW0",15.2287324985853,14.9304931330641,14.936589093037,15.0063380432809,14.731979466788,14.9393499489053,14.380671718443,14.5184742406617,14.5531883372482,14.2998877079889,14.7682190723607,14.7793881132148,14.1001361383532,14.4897212433149,14.4449413249395,14.8783458787823,14.4552248292442,14.2406551680888 +"Q9VNW6",21.0079551461578,21.327917060418,20.9748207550342,21.2339621189414,21.1045519643594,21.0754475774396,21.9133393105882,21.7832057563382,21.9509817781504,21.7531455869576,21.6779169286882,21.7382859678133,22.2662181310731,22.1969876886221,22.4155133180707,21.6876441224219,21.7716850177141,21.7072150196318 +"Q9VNX4",21.1364446051467,21.0359655642623,21.0826082519949,20.7031164586661,20.6177708565826,20.6591556724617,20.9556375148255,21.0504192730158,20.9605519090116,20.6828675091447,20.7431424557733,20.7221552403857,21.5968233201098,21.7239465749709,21.6758367898779,20.9118638067191,20.8155084900069,20.8864453508802 +"Q9VNX9",13.656933409218,13.4430845655992,14.0652191356899,13.4988810405601,13.3222364196964,13.10940482401,13.5599190490723,13.3673962314069,13.8387247597681,13.7241562828057,14.1170657791221,13.4619504678555,13.585486177671,13.4651519527097,13.5585999567342,13.3977012540094,13.7081422648023,13.389178069279 +"Q9VNZ3",14.7004106384167,15.0036263087778,14.8157696290397,15.0507471641721,14.8121659911442,15.0609031173572,15.3450821043706,15.183264381005,15.1283256051988,15.437997788765,15.0729757313989,15.3580504377619,15.4472924577759,14.9401535546673,15.3376217146791,15.9237117032091,16.8930558897162,16.2045713526727 +"Q9VP13",11.9267192285589,12.4186559843694,11.8672268586748,11.2602292446181,12.1641989156666,11.6032916141691,11.9378245027721,11.6160135143789,12.1282186252936,11.9731182397499,12.2749906365459,12.0774662401641,11.7721291126545,10.8298422457035,11.1069142462309,11.961984134387,11.5283031660762,12.048886878208 +"Q9VP18",17.2145708091267,17.0554158816167,17.3207271014228,17.0382617679571,17.2180549961628,17.0698488276751,17.2831793806335,17.2103763462758,17.1603252073256,17.099918684322,17.251850523806,16.9726141843245,17.1390260712648,17.0524672563542,17.1813000302516,16.9652544160893,16.9520461251779,17.0353957783937 +"Q9VP55",16.9227476851912,17.0680228853075,17.0468111853816,16.9420628057203,17.0675001232706,17.0991617536004,17.423517166453,17.0811367124512,17.2963851753397,17.0784182567643,17.145891618592,17.1982671432814,17.2078281480085,17.2448733659764,17.0047391858371,17.194313270728,17.1614626272676,17.1235228894251 +"Q9VP57",19.24769118904,19.3334350225437,19.4310920639381,19.612790040176,19.5928868816032,19.4714439600831,19.4867881221912,19.4060211725081,19.473025447124,19.3539261127044,19.2768547309271,19.3066737557051,19.4941327879073,19.4536465986692,19.4574301093811,19.788982383991,19.9214662297585,19.8446452997785 +"Q9VP77",15.3915461073046,15.4544988143294,15.6938162033026,15.2567300144226,15.3742156885316,15.4172057462258,15.4219929292604,15.4791899748046,15.5471906054408,15.1917238763363,15.2670863293665,15.2317847472476,15.4539733760276,15.4005289744904,15.2417429707361,15.4101263831214,15.1505729049505,14.9943524135202 +"Q9VP78",14.8709928501306,14.9014634991617,14.9068975946374,14.9713262341319,15.0022347031736,14.9736953688994,14.7969026551527,14.8576588637496,14.7930513776155,14.9625051474469,14.8733704011065,15.0123667567225,14.7814712723287,14.7535651692782,14.8666279014036,15.0143431656673,15.0092486883883,14.8449023255797 +"Q9VPB8",15.4890543767838,15.6405839054335,15.5844980514215,15.6224308698672,15.5608514089812,15.6916496703806,15.5927463780557,15.6631204675651,15.3993616373678,15.9137847122459,15.6412662559199,16.0467562501492,15.4167508807411,15.5944740174621,15.5854032657389,15.6839467534609,15.6184179157928,15.4110450960966 +"Q9VPC1",15.9463311030527,16.1552769158275,16.2031324424028,16.3984988411474,16.2713957763796,16.4725023426944,16.0864802260128,15.9175974314536,16.0234166540322,16.1181109059798,16.1702889657276,16.1107662324566,16.1541869714021,15.9377483437178,15.7705464998724,15.8669360697232,16.1182366842119,15.9901799458596 +"Q9VPC2",15.0814700284061,14.9775280655516,15.1385433568801,14.8837853568165,15.0380658421478,15.1571439373832,14.6804393263495,14.5607859146797,14.4358166186886,14.8123121332286,14.6849992073597,14.7365658724958,14.3478332510813,14.6194981489632,14.4548742352172,15.0941940560949,15.019156973275,14.977090131312 +"Q9VPE2",20.5841797395049,20.5758293531214,20.4247002416791,20.7536302217014,20.5939592696375,20.6066823251662,20.9496528993022,20.9940114372143,20.9725773128514,20.7994101408657,20.9276317355845,21.005790619803,21.1119903124304,20.9495776652967,21.1113579212579,20.9415894231347,21.0994432760849,21.0193443161817 +"Q9VPF6",13.6936912452904,13.796156925002,13.5205927108934,14.0293149509432,13.684538309113,13.9321087712578,13.9021335415243,14.0146416641788,14.3635086277957,14.2224076463698,14.1752031534311,14.3083815066363,13.9963894222127,14.0116634491696,13.8477083198534,14.1873108227598,14.3490441282057,14.0589476926637 +"Q9VPL0",14.6704257496944,14.9125062359015,14.8500687404915,15.123283987252,14.8640165450091,14.9825573705218,15.2072481872132,15.1011266173596,15.0320874048273,15.2114814598578,15.292785688593,15.3708346370678,15.0110659144683,15.230162421816,15.236150283466,15.6305717236043,15.4534795134108,15.3823785857156 +"Q9VPL3",15.4710020569517,15.5788614765763,15.5265627182288,15.6931224196243,15.6468327545469,15.9354153174874,15.9957186720936,15.9034007864197,15.6887794202444,15.9288427642232,16.2329631299659,16.2970959603871,15.9739950902554,15.3266131268647,15.5798986570586,15.8022572679629,16.1762669967377,15.8371861977047 +"Q9VPN5",21.4180585339028,21.4494480929149,21.5724416061479,21.3831199571119,21.5450566200728,21.4839872473611,21.2853082921053,21.1980201958255,21.283837981271,21.2784192171675,21.2396396223287,21.2915713014071,21.0798953527147,21.0821563376661,21.0166702706944,21.1197239952938,21.050204479488,20.9160169414145 +"Q9VPQ2",16.3179119930548,16.4250127955999,16.459136943519,16.5011684460907,16.3838417835501,16.5522607791564,16.5385247399361,16.535844453188,16.4697850169655,16.2148340890816,16.4299564127531,16.5798623180688,16.656138645753,16.5096141500897,16.477363578409,16.5049645713713,16.4492728901068,16.1951338491689 +"Q9VPR1",13.9026289053595,13.8321746519193,13.9581768725156,13.3009112937692,13.6461311809986,13.6973971087587,13.7873982442836,13.6319747107674,13.4794738056954,13.3149663316122,13.6968472246206,13.9661426410246,13.9604995387753,13.3729391533247,13.4721800189139,13.7150865221378,13.8014239143071,13.4081203890293 +"Q9VPU4",13.1554846127739,13.1805887409727,13.1893453125516,13.0264438062962,13.0314354215837,13.2157800561239,12.8779450957609,12.8202267610634,12.405309023346,13.1124835301664,12.9692501603609,13.6126650235403,12.9385489468851,12.9764518102927,12.2322157002868,12.6142511882297,12.7472042858388,13.0698420642636 +"Q9VPU6",15.307591825272,15.416809611989,15.3278984743481,15.3659213009823,15.2571151237255,15.3731444652333,15.487947661602,15.3746041973438,15.2600746597063,15.4809979729556,15.4165218405177,15.6142672660907,15.195708355501,15.2394603271505,15.2363529609248,15.0861015862963,15.2197576018828,15.1125308763061 +"Q9VPX0",14.5964966966542,14.4158274767132,14.9727737666512,13.7748954854243,13.7831322825635,13.6273500741756,14.9982233731897,14.7927243680325,14.9144887271183,13.7803413981088,14.1279451948935,13.8027668692478,15.064085472443,14.821000812906,14.7856945916561,14.1183548010244,14.3917670917358,14.2293231979954 +"Q9VPX5",18.711913263079,18.8025203478511,18.7079054739032,18.7574485159374,18.825828800844,18.9260929150856,18.7152776128072,18.7567817822177,18.6203950067111,18.8559551712084,18.839669007222,18.9003254869834,18.7618695361714,18.7166069214564,18.7131978181976,19.0442443114469,18.9053015510591,18.9787917097694 +"Q9VPX6",21.3530132623499,21.2212517687551,21.3561176010778,21.3866522888706,21.1674340181671,21.2839944711298,21.4639869042728,21.2912745489933,21.403064038182,21.4307605967819,22.268720917332,21.4974722811236,21.6213865336893,21.3932710157906,21.5998132191491,21.7112484285175,21.625095745444,21.8265864038197 +"Q9VPZ5",18.4636951366002,18.4575236074383,18.5599550054744,18.4246123947476,18.4647370970758,18.4602952341487,18.4293797057948,18.3453727324572,18.3347616289134,18.2772324374233,18.2635128418768,18.4355528119603,18.1772261174657,18.125905729866,18.0713896284096,18.3725089115352,18.4876026948527,18.2827003946604 +"Q9VQ29",22.2127759017173,22.107133896464,22.1140351878493,22.0942700157534,22.09241910364,22.2060129729891,22.1596516351928,22.2337727116882,22.0313181000342,22.0040907936669,22.2540182953344,22.0923116933218,22.2816158777458,22.0643137205734,22.2995445396225,22.1101107337462,22.1108572301224,22.1192924640054 +"Q9VQ35",11.7925667825307,11.8744926214127,12.2306456377031,12.2898939211638,13.0106890356179,11.9700760496238,12.2904855156588,11.4893366509015,12.230787192001,12.2876416759794,12.2593406179775,12.3492739633118,12.2138926702119,12.0039868904585,12.2481547408449,12.6539504370842,12.8905851862607,12.4994934191442 +"Q9VQ62",19.9825159370641,19.6105459390161,19.7583296931264,19.8959201383829,19.6688044930877,19.7069392171419,19.6241034117715,19.5689457303761,19.6452136835612,19.9751054585405,19.4356206064591,19.5896063201889,18.905237393643,19.8186805648079,19.6535217982532,19.6126027189549,19.8928877246101,19.6418743460854 +"Q9VQ88",16.2944540435695,16.3804318387648,16.2002258885433,16.5038243306836,16.5580432237909,16.5506981425674,16.2437341039484,16.3434679748692,16.4084837142517,16.7493734384527,16.4928042780803,16.6758609907886,16.5036260982125,16.3004532496618,16.246541021362,16.2368721112713,16.456683560971,16.4500743686252 +"Q9VQ91",15.3959644538706,15.2697550203569,15.3412962713415,15.1305159832494,15.0993491291974,15.1871408945625,14.9170037775747,14.9531145380646,14.9071038431877,14.7940969145718,14.5455241419481,14.8857234653788,14.8971155303347,15.0593963859648,14.9013556040934,14.7034383538064,14.9109957978758,14.6155149348437 +"Q9VQ93",16.9245075261331,16.850767280169,16.7552551452208,16.4421384298194,16.8879549549367,16.8045154010125,16.8139554220377,16.6535465957836,16.6858969372853,16.7427371976073,16.6865641637357,16.7562602960843,16.7116916826001,16.3825273707358,16.8082277416032,16.5595145097175,16.7331844025544,16.3843892467089 +"Q9VQB4",21.8037687859545,21.7167550853191,21.7270931634579,21.9539042999326,21.9090695491375,21.943605382971,21.6583476632609,21.6815633424375,21.5810283751185,21.8127252167191,21.8062438895981,21.9142919361019,21.6544465071192,21.7314709059405,21.716283953638,21.7942126125531,21.8323023131066,21.7951022742521 +"Q9VQD7",21.1343455316113,21.1451214909428,21.1851515316362,21.0409876207417,21.0726800678484,20.9749690859181,20.9230656921954,20.9774181434593,21.0072925197115,20.8654529720074,20.892553372074,20.7857393656355,20.9020313661806,20.9861387433245,20.9415634576383,20.9600756591184,20.7520470242058,20.9312428813153 +"Q9VQD8",17.5793669919627,17.6765278065213,17.5510200086512,17.4367627930591,17.5358395650852,17.4945466061301,17.042289368872,17.2187297395967,17.3744525511136,17.6463545378881,17.6410164564598,17.8051325391955,17.3320815852567,17.0514852467037,17.4692213674892,18.2562863457557,18.1695428084277,17.5987685502147 +"Q9VQE0",17.0504646971763,17.0462628410173,17.1063130891924,16.8468905559734,16.9306680042444,16.9454904463477,17.681550495459,17.5744997194801,17.5299605218246,17.5903695740286,17.5608243896865,17.462467015128,17.5101214905425,17.608645104657,17.8011258536184,17.5027252640035,17.461222018098,17.3367651510722 +"Q9VQF7",18.4905625843556,18.4267054164023,18.4862603193553,19.0003615200834,18.8859942113716,18.8895165684234,18.7823094428163,18.5929398426549,18.8288674810122,18.7376452008295,18.7172823217055,18.5118774583093,18.3393123013338,18.6899594853338,18.6300329523611,18.9985123609013,19.0358221328519,19.0021486308587 +"Q9VQG4",19.0269202061451,19.0725800929556,19.096608928736,19.1611496605909,19.1527441257888,19.2979022218123,19.2369957154507,19.18788365526,19.0896888308682,19.0760680578296,19.1306795009716,19.1637191117757,19.3353411582967,19.2468425846753,19.3259296195948,19.1268665472408,19.1726113859023,18.9894926327667 +"Q9VQI6",16.1330925657657,16.169804103229,16.0661230808816,15.9784791451156,16.1360579338279,16.0712914645037,16.1568774326534,16.0662497840233,15.856352196191,16.4074018267421,16.2017171563085,16.2041981105822,16.3408701041145,15.7885462248565,16.010448645382,15.7963388166648,16.4506846888109,16.6046463935156 +"Q9VQI7",19.2923178597864,19.1885319762669,19.2518370323731,19.2459925543209,19.3457033434107,19.379106035677,19.1125613274185,19.1656597502265,19.1272515040571,19.1686523217345,19.1063454992288,19.1415228808888,19.0435871004511,19.1162970980851,18.9525190713112,19.0781287820986,19.0187022785921,19.0890034215028 +"Q9VQJ8",15.3275047225968,15.1697678605673,15.3215700230788,15.240591230367,15.3989776057111,15.5793826053886,15.3344530898337,15.0899450033184,15.1421223944625,15.0618503768731,15.2922408617201,15.1367124624612,15.1616183158511,15.1369182430077,15.0846013506994,15.2444496742241,15.2826178354212,15.1060785736555 +"Q9VQL1",20.1404236649418,20.1257374871191,20.2758518974732,20.1049698407796,20.0785883410555,20.0876795147632,20.1672345180101,20.190791866777,20.2271129816147,20.0476166365865,20.0062187491615,19.9455340752288,20.0984838640006,20.176084282656,20.1008439546209,20.06919049621,20.0504982937596,19.9908965968278 +"Q9VQM2",20.280185595681,20.1255774039392,20.2179670817654,20.1564021862813,20.1254413998918,20.3000666759364,20.0999865535594,20.1433183592958,19.9587555152962,20.0063884921625,20.0906156650165,19.9705550322674,20.1266967421834,20.0479759453286,20.1555792134562,20.0553154445356,20.1920462409314,20.1220514956816 +"Q9VQQ0",18.3390909333334,18.4038939999378,18.5378057024627,18.3265836447926,18.5101454991783,18.5622028599917,18.0850912698309,18.230224302099,18.1059792140379,18.1601013196689,18.2993064248214,18.3214555373968,18.1452549309463,18.1798523873677,18.1175302139479,18.6662809395654,18.0989804247334,18.0774295103006 +"Q9VQR2",21.509426154913,21.4106745364576,21.3779583305674,21.4461410248029,21.3977661185479,21.3811895967688,21.2992153644893,21.1627174892433,21.2745053735694,21.2379815002224,21.2462369129485,21.3647941528354,21.1364794854695,21.3139391484215,21.2765754134458,21.2721835237368,21.370092848015,21.226404186447 +"Q9VQR9",16.2502325544189,16.5553721255084,16.338387598853,16.3402721150768,16.2378759378726,16.241468247092,16.329571754477,16.3466160107821,16.2556183032314,16.4232531894482,16.2694487270143,16.3458532733736,15.9541913293804,16.1694694246454,16.3252288500119,16.1723571248241,15.8910958418025,15.9633217950633 +"Q9VQT8",18.3953244262771,18.0087966773178,18.3850516776939,18.171552389313,18.0799682300788,18.0297906988945,17.9590900001183,17.8320271849555,17.8355931107026,18.0193037015804,17.8120965952126,17.5414750778449,17.3796759384711,17.8215029850409,17.8293869424575,18.1356441538473,18.5061989370015,18.4392931020138 +"Q9VQV7",16.2093482110484,16.2353116362209,16.4106129849899,16.3603270007823,16.3831654340506,16.1375698666827,16.355516589741,16.2304381025478,16.2099567992739,16.2210444777883,16.2563046336631,16.3835880656875,16.1082758509274,16.2301745663377,16.2878966466097,16.30081114226,16.2199288997274,16.1256989093036 +"Q9VQX3",15.8403673300204,15.5868869518492,16.158667331874,15.2134998925553,15.2873780958581,15.4604456862786,15.4339857438725,15.2048850217127,15.4027560255167,14.9475273863953,15.357336041226,14.7757386291856,15.048717335285,15.2657405014337,15.1428444244052,15.3435291245639,15.1254002006126,14.8871747154322 +"Q9VR25",16.8578117949397,16.8336828166332,16.9623733494532,16.9632950174988,17.0454183813238,16.9003793415964,16.9099408076924,16.7840330428229,16.7935639046803,16.917210542363,16.9636224891946,17.009339860616,17.153062260098,17.1560455647071,17.1502666517415,17.0659058177504,17.0844239456607,17.0513031322548 +"Q9VR30",17.2029673471842,17.154795622452,17.1501714908613,17.0565441154043,17.2904938569679,17.3717706256402,17.4794585879827,17.399730910955,17.1941506799286,17.0767676052021,17.3268440641264,17.3690706623864,17.5854971367204,17.3945867264087,17.3316397000474,17.503938410715,17.3387220222988,17.4883700443448 +"Q9VR31",17.3945474380946,17.362092788792,17.3296169630553,17.3151508521207,17.3476737369608,17.3805598151292,17.2995182987439,17.3023601724001,17.1720322697448,17.1769267547392,17.2467220677376,17.4960167980013,17.4133136612119,17.1929031606787,17.1961317979265,17.1264162936412,17.2741213719823,17.1515156546944 +"Q9VR79",19.8968939919168,19.9891450328271,19.8713267128923,20.1686777209812,19.9535143237411,19.9198720781957,20.3299970197591,20.2397105036575,20.5092225404821,20.5998833927081,20.5982268757818,20.6869249742983,19.9380736553056,20.2654603808439,20.2006929089248,20.5990613545768,20.4865300183962,20.3445479204544 +"Q9VR89",13.8981535895019,14.1791227909265,13.9816746088564,13.7895561733872,14.1299937143198,13.9138053529191,13.9071559412732,13.9720180291153,14.1066437741185,14.0327690934432,13.9689895882444,13.5737353288294,14.0384954905541,13.5013661278901,14.1370792441965,13.9705534139565,13.8851934516202,13.9237453931962 +"Q9VR94",16.2805170329957,16.4915007466983,16.3584756951778,15.8808334582201,15.960466946333,16.0261219225625,16.817681503679,16.4976777521733,16.3976799308822,16.2349411330347,16.3486371947374,16.4330344816888,16.3956473719355,16.1176928832874,16.3250535976017,15.7606162515887,15.9542612282243,15.8298711235408 +"Q9VRD4",20.4503429871844,20.3670401119803,20.5021326916613,20.1801317571773,20.2511511252347,20.1367795335482,20.3312947482385,20.314977229334,20.4596289038579,20.1659229967664,20.167804083407,20.122381593195,20.4191682886292,20.42255739263,20.325251920399,20.3487790055728,20.3721098409827,20.3494651409073 +"Q9VRD9",15.7838365423782,15.6772218409473,15.5753087755242,16.7044729361267,16.4595077098234,16.4638364483947,15.8133199138053,15.9003156074431,15.6931140249666,16.6917718134617,16.5623103159099,16.6175220917648,15.5732814560621,15.97355288615,15.9931668347964,16.20898882879,16.2027631303502,16.4327233151774 +"Q9VRG6",16.3196366751677,16.1845106605622,16.3881401595276,16.3172967241386,16.5108558736227,16.5747895359969,16.2605594184318,16.2604110341406,16.2359398825096,16.3860095706552,16.4167550598313,16.3977603280037,16.3525304113362,16.372568091905,16.1673860294018,16.4534606955833,16.344392775251,16.3254775598733 +"Q9VRG8",16.232773097393,16.1305119837081,16.2747570680215,15.8174418514791,16.2206888540786,16.130272630567,16.4850222614144,16.2470201659355,16.323928150848,16.2579409645389,16.1445623250942,16.1300689627891,16.3595444392128,16.2290006850222,16.2325829537036,15.8704111025963,16.0513497027959,15.9315239507053 +"Q9VRJ4",20.7381978978044,20.6301259481699,20.6470795434827,20.7650835483616,20.7869095822617,20.7727665687402,20.6229940690193,20.6141347556332,20.6536777108426,20.7141030770594,20.7038317767025,20.7309000425587,20.6735626266649,20.7368755037484,20.6956364733929,20.6657437032746,20.7078073556686,20.6796245831671 +"Q9VRJ5",17.2532777263745,17.3428964603934,17.4984497060714,17.4658884227875,17.2855813703537,17.2114512348766,17.3270765988342,17.3088372556144,17.4088834935976,17.1890101236631,17.0453668665803,17.198799910701,17.2626699505674,17.3003993973313,17.2237761425868,17.0272227193779,17.2420641913315,16.9837850537713 +"Q9VRJ6",15.8947989516067,15.7741116876754,15.8530475911111,15.8408482084658,15.9022878492217,15.9819230579316,15.7729965808954,15.8954979106944,15.5254592470007,15.6699143272803,15.6502652781977,15.8418114026795,15.7644182344814,15.7094803992293,15.6927649337471,15.4938981668032,15.5052313445143,15.5418682370626 +"Q9VRL0",22.9811699480764,22.8328988182833,22.9376467708597,22.8626530252501,22.7796251409952,22.7087089833821,22.8100639142646,22.7288738006434,22.7768890734565,22.493618261529,22.7515108412831,22.6769799180065,22.8528404988784,22.8882722226448,22.870988196964,22.5209197390544,22.540084563203,22.550052444384 +"Q9VRL1",20.4710001213435,20.3235972535648,20.5755453736918,20.6275689277744,20.4976222019641,20.6489584736886,20.4748857346286,20.489892702786,20.3804211781584,20.6363306979032,20.4643158817976,20.470735589343,20.2872346500568,20.5454762891943,20.4704310330764,20.3942232796673,20.5703390820669,20.3451517634157 +"Q9VRL2",13.2314470822894,12.3510157313404,12.3127438076917,11.3999363500352,12.2737065405667,12.1565371437169,12.6349338903185,12.0701875003849,11.9393883977077,12.577242619204,12.236310157014,12.1987519994627,11.081437716784,11.5941082911523,11.9193250062036,11.4050435044016,11.8047129425745,11.8032948082502 +"Q9VRP2",20.3906844465551,20.4834205736847,20.4379357734834,20.2654657202154,20.3179735004206,20.2933368276932,20.526651495979,20.4910743664212,20.466905533344,20.4196576022221,20.4041051038112,20.5170242040705,20.4864321767312,20.431638907162,20.427615857203,20.5359620667596,20.4966410569626,20.4820353126682 +"Q9VRP3",17.9155324527076,17.8403449590421,17.8748027181689,17.8632908536164,17.8974026787346,17.766457691961,18.0113090967587,18.045058295395,17.8510158118279,18.1002350550574,18.1368165752564,17.999859551551,18.323386823163,18.1065261266368,18.2742688541826,17.8686490714224,18.0562547176606,18.3159987250341 +"Q9VRP4",14.2079818212551,14.0824662015017,14.5145870744422,13.8002311797018,14.190524303621,14.2780424891459,14.7902277442122,14.6121255284632,14.5141984255505,14.2850298244079,14.4945962003914,14.2097977059615,14.9707898107811,14.4560006057282,14.6482443837276,14.3408514141615,14.559398954814,14.2302417156917 +"Q9VRQ9",14.7158233673507,14.5844184544984,14.8386758477791,14.4177415060966,14.5395536769036,14.6597135998446,14.8357033143967,14.82276850154,14.857769987696,14.7668572060708,14.6880408123416,14.6576789396071,14.8849582536838,14.9348000874536,14.7342347506031,14.8078640016321,14.8593661164935,14.6808745237009 +"Q9VRR3",19.8652363102669,19.7733756249629,19.8993205541642,19.933225412975,19.917471853821,19.8879276850263,19.7700200547173,19.796861604834,19.7974078319279,19.6288701999949,19.7436848838433,19.7514970265065,19.86838936338,19.7481061899026,19.6893342936586,19.3654545746123,19.4516957585826,19.4057085246629 +"Q9VRU1",17.2179088478059,17.3851065436679,16.9613822297169,17.1889628975549,16.9949650328532,17.1134822233041,17.3329491089837,17.4223588503278,17.1601088417639,17.2250770256649,17.1688061520038,17.6364817376013,17.23615307679,17.0142125033508,17.2018015857665,17.3352591662935,17.5508610408895,17.4630535049404 +"Q9VRY5",17.0195936204569,16.8754261725868,17.012366012899,16.8991951590406,16.9467207282924,16.8820638154709,16.9632730406854,16.8477278350154,16.7269652345896,16.8519112377578,16.748492593901,16.8828356888827,16.6597684669064,16.9285277001147,16.7262404328986,16.7329141991342,16.7797606940711,16.8961845392404 +"Q9VRZ7",17.3700279215371,17.1858295843754,17.4627248267426,17.134334320707,17.3883991078377,17.2037248627729,17.3620086088901,17.157582204725,17.4569666642953,17.1569761908185,17.3059275883848,16.9944916184439,17.3369736543346,17.131934672319,17.26852683442,17.022762677041,17.2134102156865,16.9966485666537 +"Q9VS02",18.1914451184187,17.8720056096419,18.0520814294199,17.8006211983279,17.837003876451,18.0055736001186,17.9867157247114,18.1074392405937,17.7165873920625,18.0272692910687,18.0182712758113,17.9243780418773,17.8685427564783,17.9025168183519,18.0525192639055,17.7534101557345,17.8907674238897,17.8768645173558 +"Q9VS11",14.6553708149419,14.7498439083405,14.756348563838,15.2171015919062,15.0441420983405,14.9072664091011,14.9556153205192,14.7876850212783,14.9424866426221,14.9341368339332,15.2046951270821,15.1250626323173,14.7973687458034,14.8926974580119,14.9009109837252,14.9076391468458,14.7881688408963,14.835157222346 +"Q9VS44",15.1658921257738,15.1735050890446,15.2798064444061,15.1142490522304,15.1076151949425,15.1815984934087,15.2409809976528,15.0471290451787,15.1122716672294,15.2459440154379,15.1277419848224,14.9636347234218,15.1343667415645,15.0518500388449,15.0790565743031,14.823340861051,15.2169324408773,15.1084058909413 +"Q9VS84",17.4479680369876,17.5475046979723,17.5413924476914,17.4077545648119,17.5076545068786,17.6129673916407,17.5185105913467,17.5154038382446,17.4677492853005,17.7554886162914,17.5482554614978,17.525659164323,17.3402652072992,17.39036107688,17.4018296109113,17.589457643904,17.5502650791675,17.5098467607739 +"Q9VS97",14.7648832408642,15.0099845134144,15.0897423891392,15.2996417923738,15.3029277562671,15.4404524254962,15.0903617092808,15.0711249180723,15.2490708748163,15.335121522246,15.0538230903174,15.0669215525017,15.2371660424463,15.2943515954099,15.1340960203304,15.0545192034061,15.049481637136,14.8014102483333 +"Q9VSA3",21.5114771673631,21.430964101613,21.4957194006925,21.7091262601085,21.6512588719789,21.6241081473947,21.809778103393,21.7855880412836,21.7573745136316,21.8327534227094,21.7658550310968,21.8093122342983,21.7772882789974,21.880926789195,21.9110101377451,21.6886224288251,21.8144528262292,21.7315212276343 +"Q9VSA9",22.5868665465618,22.5124992683043,22.6598437895497,22.6562932593481,22.493159372546,22.4426128764833,22.4055690657738,22.4235904181095,22.4148498139415,22.120410437309,22.1614031867281,22.1105859918361,22.3009828904624,22.3599796262566,22.3583690037431,21.9202137142085,22.0397040417191,22.0040744381099 +"Q9VSC3",17.5064832291855,17.3104565947038,17.5074228921693,17.2355218972647,17.2279487997167,17.3577875327625,17.6485161773313,17.6597347300836,17.5970310380322,17.6753673162432,17.6645608926605,17.7150917478494,17.3189368929865,17.720728481191,17.5500104666763,18.0244117060639,17.8258077207197,17.6818935415854 +"Q9VSC5",19.4319541008915,19.3738624424238,19.4939338629302,19.53743486084,19.4729407780689,19.5201281397932,19.4233831303734,19.4204215544008,19.4974963812064,19.4277404578,19.417873911306,19.4151589673,19.3473798289904,19.4068051443551,19.3542451725522,19.3996261661393,19.4756147144801,19.2865560212526 +"Q9VSD6",16.6526979684766,16.752035821962,16.7741765170556,16.3164403858254,16.4805022426098,16.4394636076051,16.55025099089,16.6391246040842,16.6029169960744,16.2432880484725,16.0661310024352,16.1998126506377,16.7373948396058,16.8557935593482,16.8434290835693,16.3761657309606,16.0826507337916,16.0164391092889 +"Q9VSJ8",15.8564580991531,15.9021137589598,15.833240717228,15.6081391944915,15.79168689997,16.0494959876091,15.7708187927413,15.7927960040307,15.4580793245298,15.7420512900907,15.817426872716,15.8063935831274,16.0423000678173,15.7427410738377,15.9069712131719,15.4875259006403,15.46052873542,15.4531125192681 +"Q9VSK4",19.7478651409691,19.7246127071371,19.7525691569658,19.8093977513459,19.7502306221253,19.9377609363474,19.5250599166315,19.6591391237534,19.5829510343039,19.7159866693259,19.7209384060969,19.6468380665496,19.6387234701409,19.740560020619,19.8141055194156,20.0048427764455,19.846394845127,19.7076510112764 +"Q9VSK9",14.483729757934,14.6569459257461,14.667390099492,14.537687798853,14.6390939805962,14.5353952080117,14.5487324012164,14.5466718007586,14.4050301238125,14.742753305869,14.3778649964802,14.7014978977534,14.4057500781336,14.4582090109997,14.5261228977443,14.3386869823632,14.3785546097883,14.2219040975553 +"Q9VSL2",20.5486756127327,20.5668475327447,20.6439575689533,20.4370526498819,20.5325929888763,20.5517952664655,20.4142749765545,20.4797118119133,20.3742933424144,20.3412075055677,20.4359078033117,20.5194466722504,20.3619520715938,20.4461234925906,20.3982567670389,20.6021043294449,20.244083516339,20.217517528653 +"Q9VSL3",22.1913563474152,22.2542418340846,22.1566550548809,22.3704827163316,22.4501026994088,22.4576178377991,22.4315201794114,22.4666053780803,22.374039596875,22.8572090170656,22.8382649643605,22.901836729892,22.4552652205769,22.3117770989453,22.3416397983927,22.4739093472742,22.4587508531955,22.5479538102353 +"Q9VSL4",21.0187834362393,21.1002275114762,21.0752870056197,20.9602492164988,20.9580455712749,21.0364916763608,20.7575438029084,20.8813863140663,20.7585218132497,20.9077775243458,20.864907727017,21.0211046879305,20.8941486239514,20.8687668310395,20.8469819555409,20.9422361658532,20.8074048149231,20.7423516310953 +"Q9VSL5",17.460875991907,17.4330566774942,17.3968084802826,17.253767205767,17.4939837910737,17.5126437799537,17.6262222526887,17.6383775273834,17.5059237967714,17.5217636512099,17.5950893585398,17.6714591379712,17.7142297081505,17.7764457031712,17.6935456547433,17.8825815948327,17.5224873468935,17.6790595548337 +"Q9VSL6",14.9014984573181,14.6048799713205,14.6222282019903,14.0855964438455,14.6547104384503,14.7281829895132,14.9169758214256,14.8244553682528,14.5948059928419,14.4530473333432,14.5878771003254,14.7353909616404,15.3422768640883,14.6676844620151,14.6781802203455,13.8967317442042,14.2565193238608,14.2373382978935 +"Q9VSL9",14.1520814555244,14.4348759884776,14.5271805436736,14.3446676683517,14.8987016287699,14.1339595841867,14.6659549556128,14.490031295538,14.7585763709016,14.4729412173872,14.7000148435572,14.5771421782589,15.159740599911,14.4422306765106,15.1813157816885,15.1605534465994,14.9900849105334,14.7777648846773 +"Q9VSN3",20.8271767830925,20.861162064448,20.9204657629316,21.1511115708469,21.1386459344233,21.0768213131736,20.8094295779139,20.7525366865524,20.8909226208811,20.8226579792282,20.8312185443578,21.1343279674237,20.6697998390131,20.7467229114004,20.5060237003531,20.972714422462,20.9226040313747,20.7243288077935 +"Q9VSN9",16.5750407887593,16.5429503839161,16.3763799034848,16.1520724651359,16.2988760106294,16.3524598456334,16.6171431444471,16.6754040538869,16.473064554668,16.4722712450305,16.3845694530459,16.7104307108656,16.7934926397731,16.7008735686716,16.6782672344929,16.5106134591958,16.5179602721919,16.5300314931971 +"Q9VSR5",19.9874463562145,19.8968688198875,20.091319157505,20.1561820558502,20.2130727372438,20.2517078328789,20.3820306623355,20.2531169503637,20.4306161919929,20.4346275904781,20.4521391698125,20.4113768834974,20.2250749404297,20.2440106205721,20.0758630507534,20.4417440208446,20.5678973282729,20.3662225095249 +"Q9VSR8",15.5088599031998,15.3610574981758,15.4154757553399,15.7001192425396,15.2694626868324,15.2317361559019,15.3694899446973,15.5127211467066,15.4905705435813,15.733794312091,15.7559210308522,15.6945622905204,15.0994913109152,15.551586335201,15.5101643600787,15.4073927992115,15.3683988148864,15.4766384072322 +"Q9VSS2",16.095030047293,15.8124316290768,16.1049910021759,15.8130047958572,16.016701495871,15.9918426452589,16.4170292403826,16.4498644762995,16.4531002989299,16.3630327123026,16.3832701783052,16.2106404892122,16.287895212886,16.3671080124876,16.4474733636158,16.406425524935,16.3530417416163,16.1743697344637 +"Q9VSU6",21.7882312388577,21.5819401811823,21.7916474177247,21.7106191943421,21.5469438468091,21.6258724292778,21.6203858677813,21.6251656412449,21.6327801780166,21.5317669371956,21.391646153257,21.3353424642592,21.4935597674459,21.6353147633516,21.6112756770045,21.4113601177123,21.7749125374901,21.5590049570521 +"Q9VSU7",14.7895593970295,14.8348400701649,14.6131784384127,14.7292437346598,14.879438779033,14.9591640957194,14.7036885923777,14.7138543549897,14.7147241849497,14.7421811042115,14.7628927750529,14.8430636503673,14.6170033557943,14.7235334271343,14.6410644327019,14.8009116347497,14.4680284124477,14.6113930166715 +"Q9VSW4",16.1582856269772,15.5624543119723,15.9518269180334,15.945247194986,15.5391943336144,15.6995955763465,16.0586852743625,16.0699420177475,15.5538608783597,15.9987872706177,15.9700385068639,16.6128567701158,15.7383019997402,16.1139161474479,16.1124383328533,15.4828962918582,16.1266583408958,15.451625182833 +"Q9VSX2",18.3301794727796,18.2691155843065,18.3208037609607,17.7247047983627,17.8193816386681,17.8728604120126,18.0848891628595,18.1473313066246,17.9675753318596,17.7194417342385,17.7277522113553,17.7472559911025,18.0311343945341,17.961619440103,17.996461121214,17.7773236636912,17.7424730454083,17.7627166093164 +"Q9VSY0",22.9242244881259,22.9658591717786,23.0531195899576,22.712970303374,22.752542773512,22.5922338596277,22.6524034123646,22.5612575668479,22.7951264843314,22.2347436338758,22.2380457783891,22.3136719357251,22.5875262521599,22.6667785376802,22.5158951386697,22.5482211427764,22.4756054044689,22.3900422243651 +"Q9VSY4",20.4021254325717,20.4082434427191,20.4613440063329,20.5753890203798,20.4869384836761,20.539184143432,20.3363546182035,20.3796360492649,20.2927808949414,20.4288700529526,20.3902186614935,20.4326863683874,20.386462273026,20.4593659823645,20.4370100318741,20.4106778039367,20.4154765815522,20.3768737561024 +"Q9VSY6",17.5920013221708,17.3637750006629,17.3752918676857,17.6148149986709,17.6426481420782,17.5494260703682,17.7945236572957,17.6746142145778,17.6609038663934,17.8865495385218,17.8753353542451,18.1487641968226,17.595042569758,17.8672372057293,17.7470135842184,17.851501521607,17.910823690731,17.8530340225359 +"Q9VSY8",18.1881491034349,18.135883976777,18.0908410282348,17.9714346706186,18.1578260331166,18.2313235793958,18.0562989116724,17.9644640545288,17.8239826007884,17.8506407230652,18.0118293190385,18.2248004287616,18.0005571667758,17.8880008326947,17.7522442286679,18.1311901551857,18.0402665145969,18.0750788649041 +"Q9VT23",17.9029514491073,17.8288088143203,17.9067554329702,18.295917450653,18.2192532331173,18.1861062913333,18.2428766590364,18.2423130933819,18.2329478518393,18.4191754164384,18.4026023612281,18.4017570880039,18.4449084151843,18.5777052684336,18.6684270509252,18.4932393073869,18.5283859273252,18.4030749827345 +"Q9VT75",15.331789583436,15.5276248807417,15.6205475065975,15.5030168396765,15.5838486522358,15.5975498439705,15.881781426887,15.6552641278016,15.634006500402,15.544119449711,15.7184469448173,15.6610346408238,15.6684867324079,15.5556135660574,15.483759760413,15.7254965346588,15.6138923951236,15.6577923145705 +"Q9VTB0",16.9797659327181,17.0726611164787,17.1490432145934,16.9706549941054,17.1094483032501,17.1022427283194,17.0343792082423,17.0025838687712,16.9642548487428,17.3726782837744,17.1381413048889,16.9675432643638,16.6965753932197,16.9456104501219,17.0048224966143,17.013039896683,16.7986486652324,16.8791871561094 +"Q9VTB3",19.8608522483225,19.6442419809836,19.8686535561129,19.8278625529808,19.9292779589587,19.9016751895466,19.6824687746203,19.6172290772135,19.5557053864493,19.686929201165,19.6921741613504,19.6583627062964,19.7228902573584,19.8282096597401,19.7059312359833,19.5426243868117,19.6124945830124,19.6332993468702 +"Q9VTB4",20.6615402176098,20.6804232002256,20.6377984919485,20.7457123890773,20.7032401448972,20.6443193777544,20.4782565792983,20.5469938068351,20.4806713184148,20.6801189941149,20.5589766904411,20.8472928679159,20.7073418669566,20.5994585456082,20.6300723460685,20.4734244679867,20.6573021270365,20.5062401129415 +"Q9VTC1",15.7328688074964,15.6711851653666,15.8397868691784,16.1255409452659,15.9627171739299,16.0728834797986,15.7080513611442,15.8778346537173,15.6241400209648,15.8637811560174,15.8219361760558,15.8031242773334,15.7514013810152,15.8510004184161,15.8402065088092,15.772553306353,15.7695233698064,15.7740558012077 +"Q9VTC3",17.0020385017376,17.3166953327667,17.4441016892031,17.4427073600506,17.1869245567796,17.1508828090744,16.7561539023686,16.7998622070982,17.1900459587236,17.2036602214201,17.222066268213,17.0261554827027,17.0282849701341,16.7504548317412,17.0182254872909,17.4209141019933,17.5777558611058,17.0243476307097 +"Q9VTF9",17.3514852683119,17.3456257789528,17.2423658170143,17.4144699680927,17.3896747982641,17.440802723487,17.5084469260678,17.305170720542,17.2913629845624,17.4784567732732,17.5424681202852,17.6486350403297,17.397622014804,17.2228603336801,17.2715429019672,17.292712675333,17.6373938741584,17.548484158522 +"Q9VTJ4",15.7507526600007,15.6992530027689,15.6561344720167,15.6649141638997,15.7150494763732,15.8399540767595,15.3938223794612,15.5057669552715,15.3366879792516,15.8063353408337,15.7467735639462,15.7091905711981,15.4500096623322,15.4578343883998,15.4900203907328,15.6564599692638,15.5976167890317,15.6903066858326 +"Q9VTM6",16.3756517048727,16.1440216238592,15.7957399981683,16.4150014787542,16.0837191747062,16.2853721260742,15.8583011044764,16.0284905445329,15.889188400656,16.8157645175582,16.5688362871488,16.6558574792586,15.7227628115607,15.4826436703467,16.3497653475299,16.239545253363,17.1193155699915,16.4511035188984 +"Q9VTP4",21.0743483455677,20.9890614730095,21.0068952139348,20.9304338595441,20.8148014463611,20.8334731030179,21.086055751507,21.1308562021382,21.0721330278278,20.8842711163952,20.8089969032195,20.8311570127935,20.878433348392,21.0828970366997,21.1310247011432,20.8266708543164,20.8536002142943,20.8055302170051 +"Q9VTT2",13.8537191303917,14.4399807323261,14.5193309499804,13.8396598747893,14.3755596785861,14.1259487288872,13.7844532839072,14.0067152624284,13.8854011784704,14.5741501252323,13.5353321549216,13.9218620995688,14.1930537295043,14.2686849485786,14.328458239105,14.0122417459794,13.6310051129633,13.4762766937923 +"Q9VTU2",20.9454494275821,20.9511700357043,21.0028917037022,20.9553666085636,20.9843375765529,20.9509699121483,20.7597475023901,20.7401465220634,20.7395031130667,20.6399119338295,20.7044860303238,20.7227747635117,20.8239009328785,20.8844915758965,20.8048118540933,20.7929902063375,20.6527348710403,20.6964152650591 +"Q9VTV9",17.2318414229814,17.177160781722,17.2499559900175,17.3061325128736,17.1801985054579,17.3690520476856,17.3212376548142,17.5162106698917,17.2628820553356,17.1251850452825,17.1356228342894,17.0621153839868,17.1432802628643,17.341637513983,17.3766908714782,17.3391590532136,17.1160056466856,17.146139603526 +"Q9VTW6",16.5190105745774,16.3381306674101,16.2637708818962,15.981885339797,16.1757429734447,16.5168382330395,16.1888825670414,16.3261384557774,15.9906990960851,17.4089000496897,16.222664290355,16.3659288944087,15.2596506269578,16.2619222684331,16.1403223714219,16.2527515187279,16.2864820213707,16.3335211999396 +"Q9VTY2",21.2285534911414,20.9179649810558,21.1630193602936,20.8483774661,20.9203633134501,21.0378533782569,20.6733069903104,20.7254452586273,20.6372630548342,20.6972622295113,20.7018372327952,20.7194019889258,20.6739870468547,20.747052702487,20.6063020509038,20.5306337742656,20.6394575097679,20.4882811649691 +"Q9VTZ4",17.7363903659741,17.7516804071944,17.829477964698,18.0495229594376,17.9802885468462,18.0749587278086,18.306911222636,18.3166626888682,18.2366224347767,18.1875216493916,18.2611746489819,18.2474060209116,18.2780550106334,18.349276039281,18.2708050525109,18.5459234998046,18.4452423767056,18.4450545071715 +"Q9VTZ5",18.0518395801964,17.9857049495332,18.1150464564417,18.0875691976461,17.9746220191404,17.9644561497038,18.1068515512615,18.1262439778986,18.0288990709245,17.8974545386616,17.9183129734143,18.0610832870232,18.0628016111642,18.240726751349,18.0731967763028,18.0377649505332,17.9986707581275,18.0015996890669 +"Q9VTZ6",17.224638997202,17.0859521191114,17.5718872336677,16.858379739277,16.9520960262857,16.9095555263487,17.2986279161707,17.2602314285907,17.1052629650043,16.9611292219052,16.9313866022533,16.8442479541952,17.2464628892312,17.2744137921784,17.030942294109,16.8817452403816,16.9669040357481,17.0090880308426 +"Q9VU04",16.4277548889556,16.8000356264189,16.7090275513932,17.0884104047944,16.8323514119375,16.8874130219824,16.4092241073102,16.5326976751528,16.3414822464964,16.5341064816327,16.5100091630327,16.5428204682613,16.3363952211774,16.1397718200658,16.4088814146614,16.5736094036216,16.5546348108843,16.4798758046973 +"Q9VU35",22.7080485429397,22.8365105228692,22.7658027676635,22.8928374964548,22.9879478178862,22.8436292953565,22.5606564933985,22.4833274993242,22.660137463081,22.7123806594626,22.7497052951393,22.7352514083535,22.690195234974,22.572370998218,22.6840375595343,22.7117186210746,22.6459749148674,22.5869785543156 +"Q9VU45",17.8565276279809,18.036621312747,17.8158553150152,18.0167066040502,17.8688432840496,17.7287313376394,18.1119187626366,17.8237441030575,17.8714704842428,17.943517645389,17.9327815400418,18.0381796789789,18.0389278351917,17.7183245109584,18.0582520226301,17.3472653806236,17.9345491050178,17.8023750173657 +"Q9VU68",19.2907537286327,19.3801152928835,19.4147164699655,19.0189102871955,19.0606016042322,19.0561557105612,19.2077451628878,19.2411382646783,19.1237674731606,18.985227295832,18.9512577558876,18.983866292185,19.7723648539432,19.8249747001963,19.7785800809291,19.6446328018313,19.4615465124447,19.5625481035211 +"Q9VU70",14.9670768388019,15.072595289157,14.7110516427382,15.0700727132192,14.8576800246713,15.1749163345845,14.4413307817719,14.0707079444659,14.2393434246629,14.7452452797674,15.1388614158501,15.0923777570531,14.8395832997931,14.3458688371097,14.4498760517043,14.4029670749132,14.9805624770126,14.7987107775236 +"Q9VU75",18.2702591331981,18.3057127634273,18.3671950470483,18.1648564143378,18.0448558929147,18.0422882621161,18.3668523130887,18.290114806989,18.4479611937203,18.1283100661423,18.2304279468314,18.1696438931444,18.4061901328915,18.3687212363549,18.232319094896,18.1730450237794,18.2696804369207,18.2501055925128 +"Q9VU84",18.2773216203102,18.2520894565124,18.370865997774,18.5215465738986,18.41745446956,18.4083383653634,18.409773671133,18.2655192649451,18.4165632471742,18.4037712571932,18.5318733727926,18.5213559943466,18.4762004123444,18.3434948893613,18.3703536613185,18.4182389641071,18.6964210458152,18.4193752330098 +"Q9VU92",17.4404332821906,17.4871964416491,17.5124525852137,17.9584635544732,17.6821728082908,17.6155872744595,17.7416209524982,17.575861373448,17.5720815484491,17.8497481490892,17.7446757057785,17.8080551331454,17.6034988675611,17.8167969021081,17.9309585849261,17.7926203274654,18.0796819020031,17.9472500070838 +"Q9VU95",17.9324034509955,16.3585259671293,16.3936562482781,15.8700837929359,16.217312676769,16.1783124383695,16.8272096007743,17.1788156072305,16.9566004279433,16.1255644463492,16.4696958742459,16.691137775798,16.57624138817,17.0208991825291,16.8896295127804,16.1887651315519,16.2750185028729,16.4109314076075 +"Q9VUH8",15.3282981789428,15.4390801043901,15.5077281148259,15.2776915629867,15.5249652091244,15.5126763181431,15.4601081304749,15.3601925978199,15.3700930758994,15.6391150151587,15.6088867510487,15.7112109523486,15.5417063710456,15.3218422929556,15.1556157688376,15.5887254009278,15.5806777041979,15.5783204294819 +"Q9VUJ1",19.9034791103462,19.7675942645349,19.8650118280015,19.9504489591388,19.9424909986203,19.9524927388156,20.088334327578,20.0216329376747,19.9388109435646,20.0878287257407,20.1541492811744,20.2059341473208,19.9477827346172,19.960123526601,20.0161919808952,20.1569210686704,20.288803917486,20.1563532874937 +"Q9VUK8",20.6663630343003,20.6787438637804,20.7932533574082,20.7338624784939,20.7546287243981,20.7499580245006,20.8577839642997,20.762428795797,20.7553875947948,20.744700916297,20.68610025883,20.6877481540787,20.6743445658796,20.8144285323476,20.7128699553937,20.801129907359,20.7818546914764,20.7789677804535 +"Q9VUM1",16.3244185973277,16.4586625056516,16.5631243936037,16.6626367675335,16.5398617683411,16.7901575538121,16.4269097004784,16.5698676700495,16.3754822889567,16.4311999908903,16.5208717220818,16.6243956591643,16.5581427583528,16.6385449932233,16.4370934933193,16.7631450907043,16.4386442459397,16.3761995164309 +"Q9VUN9",16.51964428462,16.7288768625624,16.5347908767164,16.7924063034775,16.77054025941,16.7731933669637,16.8098435907827,16.7620314581482,16.7945068983853,16.9114687325781,16.8706033025881,16.9785191312027,16.7161820385651,16.7290111372461,16.7283268341582,16.9821528593322,16.8706347894009,16.9223607019293 +"Q9VUQ7",16.848426469071,16.559743935442,16.6292859905367,16.2839554883179,16.4608795132883,16.4761139458197,16.631372757982,16.5262590747396,16.3582353829298,16.5157844531302,16.5916446924395,16.5454087593317,16.2385645788379,16.5769980722667,16.55463932556,16.7027645073771,16.50534296654,16.6571848505383 +"Q9VUV6",14.8947980593575,14.9854584811434,15.0861951564982,14.8307663918109,14.655318030326,14.7593426281096,14.7494977414062,14.846878174978,14.7506260741511,14.7683043269785,14.925107033337,14.7445055438569,14.7908945027631,14.8718695062803,14.987442632412,14.8878391044887,14.6374689007403,14.5939880917772 +"Q9VUW2",14.4948963376153,14.5487229520708,14.429793410902,14.5639386314381,14.0045383732115,14.6750111982338,14.3388190167381,14.6646742568588,13.3441257215478,14.3660512202414,13.9352176577878,14.8795794007942,14.3838544601788,14.6148393762324,14.5018432414389,14.3169123078912,14.6964793579414,14.6341190011861 +"Q9VUW4",14.5603831489265,14.4425058065656,14.4557599990708,14.51091136458,14.6778376664254,14.4931727751618,14.6337574285649,14.3966444834346,14.5293443866507,14.6207529172158,14.6139704664092,14.6340950698485,14.7711860728354,14.6207236508206,14.6356184039363,14.3096968394716,14.6550056979388,14.658697136926 +"Q9VUX1",16.01800255404,16.3429854799923,16.1699099159,16.3917795116346,16.3586579440582,16.2282673374187,16.47096925768,16.5281179470142,16.5707952287094,16.5659327443333,16.5787769428983,16.6688670950638,16.6004971998905,16.3301554545465,16.3956006405544,16.4779623491569,16.3864498482258,16.4917033990891 +"Q9VUY9",19.6050537928298,19.543341513789,19.6538093954882,19.2750727191764,19.4056792652292,19.4678386629463,19.8851156970913,19.9412245882246,19.8332447772027,19.650713582008,19.5871952241206,19.5398257298042,20.1853827641073,20.1767668429151,20.1174051067219,19.8107397352806,19.7578708562149,19.79995461833 +"Q9VUZ0",17.8956031929806,17.528599300758,17.7651370715778,17.8208474878488,17.5672753983766,17.5457432069057,17.3838176281656,17.8233996031975,17.6089350951774,17.8076027695293,17.5831016724862,17.6383752713435,17.4099586070478,17.727330108667,17.7013674665486,17.5801625536092,17.668286155696,17.6384341276282 +"Q9VV31",16.8533543884146,16.3095186211551,16.7632094366185,16.3421445649682,15.9176179951966,16.0048715923663,15.7236327836436,15.7347991321266,15.7940141954537,15.0334731081933,15.3746988662307,15.0453236727831,15.2786499171155,15.4879637944305,15.1656920368683,14.519988266748,14.9266446199436,14.9781320949934 +"Q9VV36",23.6017915074459,23.4700612431876,23.7737936369027,23.3743591387302,23.3111129854652,23.2259854864863,22.9912765851582,22.878879372529,23.0882714441322,22.8638249670038,22.9536191276572,22.8419772813903,22.9627913134431,23.1014026923178,22.9576585299946,22.8042449504977,22.883213041122,22.7106020833728 +"Q9VV39",17.3122345471237,17.2290139774993,17.2951797447125,17.3384197943443,17.4162985953616,17.4139482101326,17.5985501356305,17.5320145111413,17.5887167251465,17.517247958054,17.5677537867901,17.6702771294278,17.595113288117,17.7130491145848,17.5012824326653,17.7897709724354,17.6932067103277,17.6819324536201 +"Q9VV46",23.879656718036,23.9223922829443,23.9883446308455,24.3163921500138,24.2624419982947,24.1926768034636,24.0467601018022,23.948283496732,24.1340860186988,23.8657174082181,23.9055469303795,23.9455151084466,23.7958815120669,23.8304499660202,23.7411749956405,23.4867971759997,23.5220903917659,23.3894075090418 +"Q9VV47",20.2304369417942,20.1691732378638,20.3154780435365,20.1644737617158,20.2352368378623,20.2420377778088,20.1139382026725,20.0338727112409,19.9944572600523,20.0564574990219,20.09930712731,20.0345832584954,20.341884498782,20.3439209705057,20.2487301554612,20.1106661713404,20.1363461905441,20.1825705799727 +"Q9VV60",20.0689049242426,20.1785207897824,20.2481024612388,19.9661426855013,20.0393737731262,20.0294096498428,20.2394739725602,20.2148014660289,20.138334003601,19.8829608121391,19.8847563698882,19.9459128571979,20.2038283940038,20.0553774492383,20.044645765526,19.9384924448509,19.9269733852339,19.8933984958914 +"Q9VV72",19.4187210474938,19.261428554101,19.2856802346419,19.2935265117467,19.3372626313435,19.4564479663162,19.4593556927656,19.457600957861,19.4456890791321,19.4605110143787,19.4650539414002,19.4570000834827,19.0825882688539,19.4534774250374,19.4937350155616,19.7443114193554,19.484190444851,19.3204615754596 +"Q9VV75",24.1032063087149,24.0506378767388,24.054278633729,24.103564754538,24.0443330014702,24.0186072139768,23.9628451226948,23.9789063621994,23.9519077431534,23.8114530023576,23.8674174001908,23.8955975798295,24.010621989065,24.0249210767515,23.9859272692495,23.8209808304193,23.8464562904389,23.9063535678514 +"Q9VV76",16.3251597935439,16.192129672945,16.5662731889875,16.5174024487161,16.3388749309026,16.4708630624365,16.3750618174394,16.2131663393892,16.1859452507622,16.3946157343143,16.3929696459532,16.3529406612949,16.3149151755702,16.1872630114048,16.1231944174177,16.0488122130362,16.6515635820251,16.2767506017212 +"Q9VVA6",19.2696105202134,19.4718784409432,19.379513835348,19.346516668515,19.2921861107556,19.3205226671196,19.1215236446454,19.089137372741,19.1178734432275,19.1648811117518,19.2145908663809,19.3461112096542,19.1081185032372,19.0147094996972,19.084861942784,19.3281518682383,19.2563000260834,19.089919218468 +"Q9VVA7",17.3763651637652,17.3229870831658,17.260528915711,17.5201687309957,17.4656772989453,17.652597691124,17.5330720854664,17.5081029012515,17.4425837471596,17.5112146637325,17.4931534687959,17.6584759515629,17.5066982243748,17.4879432592341,17.4320607900559,17.6379299986254,17.8075848555673,17.6392017713465 +"Q9VVB4",16.1629042828033,16.1512029877019,16.2348332982609,16.3714740684176,16.193319527839,15.955235974606,16.0240855254729,15.9682723651699,15.9848146354859,16.005432815568,16.0586721602674,16.0908515346715,15.6524928292658,15.9079202836941,15.9082168992449,15.7548797685103,15.6918819653656,15.7973169477687 +"Q9VVC8",16.5432091059229,16.514429327724,16.6219644692099,16.913547959931,16.738193458556,16.8518671946526,16.4806995404667,16.4772277940483,16.4607348365581,16.6675868452515,16.7105354929335,16.7779636651235,16.4333892537031,16.4447987590254,16.3393998689766,16.7343437637671,16.887591636755,16.7208464345216 +"Q9VVE2",18.4861100922994,18.4154839346313,18.5386587012265,18.3264501805047,18.3834387280576,18.5674326784289,18.2779522665455,18.354272617827,18.2250223197774,18.4806425913826,18.5212367476267,18.4740930790999,18.4196007398059,18.3201366159724,18.2618018269089,18.2321110169754,18.2282982433985,18.1558582820719 +"Q9VVG0",17.8638474713323,17.9647914273792,18.0640079271086,18.0530810871573,18.017268414916,18.0897125846603,18.0461863958639,18.0359297436855,18.0574389207115,18.1513417968096,18.2294092686446,18.201152069468,18.1812092585743,18.140428140464,18.0150808417647,18.2921341647748,18.199973179423,18.1604078307992 +"Q9VVH3",20.0604505907093,20.016608892257,20.044334977391,19.8057265047968,19.934302401574,19.9791553039276,19.9847592878424,19.9681079238486,19.8608986764662,19.635568170067,19.8102400491795,19.793679189809,20.0855844278568,19.9560749467023,19.9884887542284,19.7652188290506,19.6519735967614,19.6707509085007 +"Q9VVH5",22.6742185845657,22.6734281938854,22.6828416912638,22.5163033364139,22.6276206568245,22.6019484107638,22.6277512767298,22.4717097737022,22.4937007458812,22.3230786141365,22.5132886812471,22.5448679158546,22.6501278425896,22.4556361757785,22.5994838286283,22.4530042125696,22.5028003855673,22.3216412746134 +"Q9VVI2",13.8920540022919,13.9995261504244,13.7190826857457,13.5049412856587,13.9095278913468,13.7680845491725,13.8774084204653,14.0476766513357,13.661105613174,13.8392786085579,14.7025910120116,13.9993165924263,13.8227577072998,13.4415795600369,13.599780282682,13.6238801874131,12.4594189465313,13.8129504884861 +"Q9VVJ7",18.1298246201728,18.2199251774608,18.2817495033646,18.2139218566855,18.2685382149762,18.2122217395828,18.1444339460531,18.1506983020491,18.2347748570559,18.2839745330547,18.1773366250716,18.1862875956504,18.0908991954876,18.1907270632895,18.1560280582844,18.143908758304,17.9997375269107,17.9359011558196 +"Q9VVK5",16.1927417468617,16.0562418508327,16.0227165123747,15.7546960374266,15.5098845344032,15.8392362561057,15.9651331071864,16.0829278458228,15.818611916618,15.7457965570035,15.7138965435955,15.7935117068898,15.6884229761821,15.9958249328742,15.8424710069833,15.8437666875169,15.8317814046488,15.8740097132057 +"Q9VVK7",18.1465328776304,18.26898771362,18.2068870607504,18.3203796818964,18.3013207248284,18.3474303693638,18.2476350619664,18.2221523593164,18.2745332037893,18.1178557923305,18.1487578585532,18.2818949481295,18.1254325544371,18.1422483446383,17.8311282264877,18.165345850652,18.0397148179565,18.181308010392 +"Q9VVL5",17.3028980135619,17.2531557491776,17.0804603797825,17.2262940669861,17.1010785879407,17.2181610131976,17.2715147263301,17.3582310810166,17.2642414201389,17.1757668349256,17.1838449404326,17.2802169456434,17.4410017535283,17.4085317846613,17.5178570295504,17.3524076213731,17.4650408734764,17.4089462283924 +"Q9VVL7",23.5258218095828,23.5275615220681,23.5006031850867,23.8020921452274,23.5917215956386,23.5575721073956,23.3319554958623,23.3607808942831,23.4208331959292,23.5067908251984,23.4547292420619,23.4599845999163,23.3001344001539,23.4652278444695,23.4764854773526,23.481308819781,23.5480823972846,23.5326249301255 +"Q9VVL8",15.789100843126,15.9047244091584,16.0258385425099,16.1132680556776,16.1070335898404,16.1534469737663,15.8215997417406,15.8996029943973,15.7965979460922,15.8152626120349,15.7863017161149,15.8967297104238,15.9286042716874,15.905759692713,15.6084072926867,15.6858355416904,15.5502486637328,15.6726506004779 +"Q9VVM1",15.4300877768505,15.528133824051,15.7416110947275,15.7525745689167,15.4061217282601,15.453128717522,15.6109655860293,15.5603381289479,15.393542056646,15.8318591282363,15.7176589854195,15.6067558322432,15.0873358292747,15.492923752724,15.5310927725955,15.728432697201,15.7360791671061,15.7151251127743 +"Q9VVN2",14.7392297068142,14.6539101618206,14.6504102244282,14.891067101576,14.6132705102264,14.7586391089055,14.8416899635854,14.780480520268,14.9705633832396,15.0871334505326,15.2464740531964,15.2066075768966,15.042124564609,14.7859477723395,15.0249870247748,14.960508066686,15.4816698359522,14.9505455355584 +"Q9VVP9",16.5925310262645,16.7460711424713,16.6923091064847,16.6827867620219,16.8210889905163,16.9276626635741,16.8866590437638,16.7943768060805,16.6248751667684,16.7888703103768,16.7551674608921,16.8214953443661,16.325014945411,16.3459081177012,16.2764628840135,16.775614519652,16.5888640898286,16.7086714422832 +"Q9VVS6",16.4126074357129,16.6750220387598,16.7268133698942,16.4372878638324,16.4199172979495,16.578536621204,16.4103188169925,16.5012832151595,16.4662182965267,16.4052832983067,16.7121785267423,16.4506880278157,16.7282394129871,16.2289992894977,16.4567850814559,16.7313358890916,16.5876723488143,16.4460313200267 +"Q9VVT6",20.5460232532886,20.5594184144543,20.6117179235284,20.6301508528077,20.5644734604843,20.5215537778543,20.3952334943031,20.4752820013165,20.5402891760506,20.4691189192636,20.3885686446297,20.4930416205124,20.4050528453504,20.5557296972302,20.396814250151,20.4596434858578,20.3617506327561,20.3418061027745 +"Q9VVU1",21.9500154259161,21.9040303432298,21.9516708519054,22.3186324144516,22.388868586598,22.2725971633518,22.1005428507236,22.096168991891,22.127162302347,22.4303249496421,22.4387005747139,22.5288928491522,22.4328400423359,22.4569463347992,22.416660698508,22.3814231824791,22.3290640343166,22.316795000284 +"Q9VVU2",20.1287801281267,20.0605545828281,20.1110416453854,19.9172353379315,19.9578708549236,19.9951150532185,20.3197392995614,20.3227682521189,20.2480288373649,19.8955119139044,20.0557559957318,20.1029387712388,20.2841456688328,20.2209078015773,20.2051460184949,19.9955093782142,19.9230642393913,19.8786514008685 +"Q9VVU5",15.622037969734,15.6902328897828,15.4987695451707,15.3001489485029,15.5767422322229,15.9001953889743,15.5890394050668,15.4576720365251,15.1787697481178,15.5808749129255,15.5041856460714,15.7798335379004,15.6000303484117,15.6916075001042,15.469432026127,15.9768747245275,15.748566004462,15.8420060628781 +"Q9VVW3",16.2651420715908,16.3461377698859,16.3932571016077,16.1710744035052,16.5348850739071,16.4877589184053,16.4610767565305,16.5180703288035,16.5127035466087,16.6574924974605,16.543260600971,16.6754078387049,16.9971629458852,16.700628617748,16.7049315854805,16.8991339450535,16.8081002287102,16.6770236292185 +"Q9VVW7",16.691496084963,16.6216904812272,16.6792705485948,16.7653347398607,16.8065431521281,16.8027472858065,16.5039463716496,16.3970253385589,16.5321733979983,16.6862686714176,16.6041294208664,16.6959771367019,16.2975265440809,16.4585639628867,16.3849783192456,16.5520302043315,16.608650260636,16.4014559279562 +"Q9VVW8",15.7749895972736,15.697138514162,15.7709619271963,16.027786213918,15.7833278854919,15.8012171942069,15.7921426667993,15.7645491834164,15.8273903549995,15.7187253989737,15.7448334609697,15.7072140117874,15.9188947469901,15.8929973419241,15.8483682784611,15.3102645876881,15.6599568256787,15.5876514449917 +"Q9VVZ4",16.0208873288458,15.6738247855928,16.155751069929,16.2619552346855,15.8572319742359,16.0198037376771,15.8255278433688,15.6707527077646,15.7100174518566,15.7256605544789,16.1848681895817,15.9362909528286,15.6993917820053,15.9604155256505,15.5289951167426,15.3297707786314,15.5161003391901,15.5123351929817 +"Q9VW00",16.0852040054724,15.8244476092419,15.8384371202481,15.7992681267335,15.7915831297837,15.9185994940897,15.9207595088398,15.8395307954944,15.7924399980668,15.4498345825595,15.540418708084,15.6405726195775,15.8067531996551,15.8279925736584,15.8485172662577,15.5722375274119,15.8100841344098,15.5954904524323 +"Q9VW14",13.8854896568598,13.6580102230138,13.7524011565791,13.6008549155245,13.9716922777318,13.9348495669937,13.777866994094,13.9446845582225,13.8794330307158,13.7267129933001,13.8602173394642,13.9412587243009,13.6387331619369,13.6846692890746,13.4171138232575,13.8984252346583,13.4088092688666,13.6030266545264 +"Q9VW26",17.5166482395065,17.4162981633947,17.5330474168981,17.4541313102435,17.438928592319,17.3810358013782,17.6053024635252,17.6415679549068,17.6323900714514,17.6052557777054,17.6756390050047,17.6176054790302,17.5439436717105,17.5843549022552,17.6436783674309,17.4564296947903,17.424922539601,17.3739540212926 +"Q9VW34",18.3228527759288,18.2432434066026,18.1914039837858,18.2806192737106,18.3568775591398,18.1241991643059,18.5708056536726,18.3672700507857,18.4961491150306,18.6415065429799,18.6593449201779,18.8445827912883,18.336935513789,18.4265985023061,18.4764352057368,18.6202806081801,18.7196659292489,18.6402301081136 +"Q9VW40",14.8321062645243,14.6181883891813,14.8145095956704,14.3784016232136,14.5736532998277,14.7319840154919,14.6426268943687,14.7131294085407,14.5967626780565,14.6549457701029,14.6922758231522,14.6403341221306,14.9788624742058,14.8317121571341,14.7386271496672,14.5368617484609,14.5948456970402,14.5015872138596 +"Q9VW54",15.5644384041277,15.6235656054421,15.6289692673188,15.3840593875424,15.5213045264072,15.4665207909037,16.213417685504,16.0569969249563,15.9808331262707,15.8308858396963,15.9910363055388,15.9767500433928,16.1320686414361,16.0474298954785,16.085300787169,16.1389786954196,16.0235153959033,16.125474638671 +"Q9VW57",16.3273757391551,16.4430724527118,16.4564300230745,16.4342094707607,16.5723277645165,16.5935968435026,16.6566274146793,16.5144171370557,16.3640300820997,16.6882175636322,16.6784159755251,16.7744052290378,16.4825245557554,16.5659677419909,16.5167371809172,16.8043715213551,16.6191251935379,16.688126906706 +"Q9VW58",15.3286230360876,14.6804296752148,14.8460815539605,14.9804393617533,14.4463785866035,14.9426727860188,14.8331728027496,14.8121015556036,14.7049788985371,14.9726668246596,14.9279453811633,14.7109667020257,14.513082683872,15.1710475462931,14.9727831145005,14.590557897632,15.1806398618756,15.0410595517114 +"Q9VW59",19.8970268718252,19.7158810440656,19.6652570709776,19.5501209752388,19.6517251368886,19.7046885630152,19.6333825102584,19.6848192661867,19.6010795299487,19.6777502661511,19.7186541784888,19.7762616832753,19.8591330960062,19.7810307617679,19.7784616669229,19.8482807149821,19.9135840470642,19.939945920322 +"Q9VW66",21.5238383790508,21.3223797211396,21.4353182428357,21.5841320363108,21.5454774535131,21.584582202717,21.2347275812946,21.2311137250116,21.2940729991512,21.3538381024114,21.3678581609885,21.3416421742667,21.0882955432901,21.2343529060978,21.1422143972013,21.2919211256124,21.3755708012194,21.2789227517983 +"Q9VW68",22.7388807618156,22.6324017192259,22.6074205885506,22.8003240137446,22.8370533203731,22.8878931841268,23.0623291083719,23.0068837210264,22.9054267973386,22.9819077202576,23.0015887860824,23.1080057409771,23.115910082393,23.1535389634699,23.1465137875457,23.0289862968491,23.0968714732542,23.073077884893 +"Q9VW73",14.0582643068942,14.1777454605213,14.1565640570328,13.8047625210746,14.1219954438203,14.2051319734934,14.2527112360237,14.2285636479297,14.0115136245196,14.3822606442975,14.286515189942,14.077308379434,14.3725981383843,14.3865232384767,14.4873795148352,14.4616139964552,14.1308678624394,14.3943132938144 +"Q9VW90",15.0604576358528,15.5954972450673,15.3884393465058,14.3085476337566,14.6719559429394,14.6499608348802,15.3742545955317,15.0438303793194,15.3724120633643,14.885335203451,14.9335840094269,14.666588576032,16.445936424055,16.039395811616,16.14026571486,13.9467632689116,13.7370313731897,13.8036282259164 +"Q9VWA8",14.3981546521517,14.3734250342143,14.5840245334096,14.5267417109054,14.3961705168228,14.6543355665843,14.3767447013071,14.4133107036918,14.2870902091573,14.2340893938066,14.7195151993948,14.5675552612206,14.2255264876237,14.5480283253859,14.4129714263258,15.1007712535247,14.4115784198098,14.3560512026218 +"Q9VWD0",18.4600332671202,18.3798688434686,18.1685295481778,18.2057444706666,18.2252421604062,18.2414687561794,18.1913119766387,18.2448944276778,18.1867551291306,18.0471352429609,18.0767123695005,18.0325467530113,18.3024741304201,18.1760757105113,18.3456127943921,17.8728376285202,17.9767432047625,18.1046237354357 +"Q9VWD5",14.2756589677026,14.4636327232235,14.4078202418202,14.2453263728888,14.2465192529703,14.4715392505975,14.4424861893102,14.2198501878915,14.6017729878684,14.5448463929044,14.6760051730934,14.4197797799226,14.5060277221429,14.2519915709365,14.3811037902192,14.7676441581626,14.9239908949963,14.4999737526837 +"Q9VWD9",19.4647069841633,19.3703015488441,19.538475689985,19.496380537697,19.4727602988474,19.5124922929253,19.3710001558457,19.4278411941595,19.4347255324833,19.4989712844176,19.480172630427,19.4113243290073,19.3340518326646,19.5009403555503,19.3329800201812,19.4606482678531,19.373743034813,19.3957611980592 +"Q9VWF0",16.5459510138652,16.6815903117759,16.5018653146789,16.578583213085,16.5720613322622,16.6650537391052,16.4131527783991,16.4750260129817,16.162992733083,16.6177322947921,16.2552424427023,16.517218823019,16.1962071183008,16.496720970299,16.4384458299229,16.4443496232609,16.315334971682,16.510399601894 +"Q9VWH4",24.5248905004672,24.4850397234769,24.5627996095721,24.5212250436288,24.4858411909097,24.4647125395243,24.3407963453764,24.3368333282742,24.3143773169028,24.2595479418663,24.2613745243312,24.2748214387979,24.3002660655159,24.3984437655936,24.3616737960122,24.2444764859528,24.2236698502218,24.2128176819982 +"Q9VWI0",21.1561775630935,20.98802476051,21.226575821947,21.1136576403025,21.1044580951582,21.0877599431047,21.0116554716787,20.9264526416615,20.9127155266468,20.8556437237684,20.9167219157111,20.8834567070232,20.8091223916657,20.9646507098555,20.9280768849383,20.8317164986846,20.8776651662971,20.7393884055334 +"Q9VWL4",16.4498446778388,16.4964980736588,16.5401842908579,16.0662782867023,16.1680419988066,16.1829378902744,16.363604960134,16.3181623219766,16.3783140141953,16.1217657477083,15.8352657708867,15.9479658492568,16.318557096881,16.4067899634318,16.1823755505813,15.7295991802602,15.8248918207643,15.817872354359 +"Q9VWP2",19.9084720395056,19.7729152967896,20.004637816117,19.7928517743889,19.8453914932482,19.969982900052,19.545000931706,19.5678414794126,19.419603236462,19.5976006299347,19.584190301567,19.5717930068712,19.5202471631641,19.5864879131777,19.534598525548,19.4341378937477,19.4414839482519,19.2976949473966 +"Q9VWP4",14.7206275771385,14.9565400656753,15.195797303462,15.2205180341386,15.0187935961152,15.0032496112416,15.3141232221123,15.166774736327,15.0459127433016,15.1667950125025,15.2163080805244,15.4172609823892,15.2792947596659,15.3013214378508,15.1084088153409,15.4301733251356,15.4717940142007,15.3609024749581 +"Q9VWS1",17.1344560925691,16.9698590797652,17.2659823100424,17.3210467642262,17.2249450506097,17.2249483354377,17.2321943281379,17.1536605885415,17.2352126998765,17.2540590100878,17.521621506871,17.3464691738485,17.2339301910201,17.0609195296574,16.9892846964805,17.0305075003379,17.2751881309343,17.1442966706934 +"Q9VWT3",14.6195816569293,14.5146682022708,14.3881062340839,14.0674724951812,14.2396199118902,14.2794446326388,14.5100288917472,14.4098635192264,14.2723550516631,14.1664957113069,14.154213914931,14.3001942830653,14.2296592418315,14.1768367176944,14.3126410003969,14.1975734614029,14.2956091923861,14.2380702565508 +"Q9VWU1",14.82629910707,14.8935496832813,15.1114991810303,15.0084441790059,14.8423449237528,14.7979849725745,15.0620066176965,14.7008680397271,14.6630429273962,14.9763712127579,14.9898466674079,15.1749379231667,14.5639659617656,14.8881035807917,14.8387253326108,15.0932893514787,15.215663534814,14.9441860929963 +"Q9VWV6",23.7588465557001,23.7503419134069,23.8265499354226,24.2587411852591,24.1055394736483,24.1583194555802,23.4456732089404,23.4018058154114,23.3890197222734,23.5610931963332,23.6282142419869,23.6783909457133,23.4794520364165,23.5579293226907,23.4867949670471,23.3307734980017,23.3907489135069,23.2955046546144 +"Q9VWW2",15.0968413007731,15.5725951572136,15.2494453281575,15.4239597600886,15.1883711170758,15.2431043760746,14.9306346819657,14.9798858560008,15.0139106724718,15.9593621252136,15.0799339620987,15.8675114049975,14.9195427304668,15.0098371734787,14.9642171956612,14.7611191904087,15.2608365230489,14.753270811554 +"Q9VWX8",20.6445695203365,20.4613568906461,20.6279565732346,20.5647018012614,20.6669963538933,20.6515732234332,20.5444695663971,20.4375653796913,20.5303650284062,20.3972468844198,20.5596950953394,20.4966212133198,20.5577782838823,20.5704422839367,20.4361775785953,20.543513101533,20.5562231543234,20.5095855408411 +"Q9VX02",17.0852915612492,17.20791733495,17.0793836076521,17.0989809086599,17.2219810189688,17.3509491069977,17.1868746045658,17.2741096800341,17.0446248661238,17.1711194650631,17.2096681179174,17.339159460021,17.5275755632839,17.2053302960162,17.1865304819954,17.206742611164,17.1575782660994,17.2759371911958 +"Q9VX36",22.3244650651142,22.2420196324016,22.333677869569,22.346605871083,22.3161899449973,22.3560998290191,22.1490038831025,22.1531175882679,22.1782368454186,22.1998405558772,22.1460355625735,22.1112558722851,22.0574015757905,22.2574146272225,22.1479456431993,22.2003547045525,22.1628943000571,22.1504555960289 +"Q9VX69",18.3093934943607,18.4500727040066,18.6592040864588,18.4725977130275,18.2906209116489,18.3649303050591,17.9592834663854,18.0497449411015,17.9535224376848,18.2326834902525,18.1208487850898,18.1321670006788,17.71714410131,17.8413760454177,17.7725984630287,18.2655044025749,18.2039432806466,18.0741843750008 +"Q9VX98",18.4022761406721,18.2588153758911,18.3187241304764,18.1983196948628,18.1972936251832,18.0355802862229,18.2890721924087,18.2319476534743,18.2389615605755,18.0680679422553,18.135680581658,18.0475667369935,18.1402931220507,18.3810459687147,18.2621566846767,18.2902487510927,18.1834946384209,18.4852884443973 +"Q9VXA3",17.6274759493276,17.7992795024945,17.7903353891695,17.9200211080636,17.9370884989328,18.0061065058078,17.726714163609,17.7507224031283,17.6238525582253,17.8966001258817,17.9130405920712,17.9004912341841,17.8513384525281,17.6224698696933,17.8020320114415,17.7766698225974,17.7762187556871,17.676001923179 +"Q9VXA9",14.2250723474616,14.3076676291107,14.3098183585886,13.7851921280453,14.1965112992807,14.2804153732296,14.2918855941003,14.3715593032216,14.311523287903,14.4109224227188,14.240205445165,14.2444570331167,14.5513654535881,14.2012740509294,14.2514506628204,14.3636824695872,14.310902687794,14.230455699843 +"Q9VXB0",20.219924170759,20.1953668972222,20.1582491566069,20.2653734392017,20.3291565653038,20.2758974469698,20.171077429901,20.2040195587697,20.1627508054099,20.3880884671062,20.4167200274853,20.5306976546531,20.14429184229,20.0228526565003,20.077805897515,20.4110457019588,20.4316853459354,20.394400090062 +"Q9VXC1",18.4828011383375,18.4173498723605,18.3592895335062,18.4272093506184,18.4206903037803,18.2952938173229,18.309073305747,18.2575062863728,18.2133222474607,18.3966564468078,18.2581047283727,18.2665287596392,18.1852577879304,18.3327312564205,18.5027805462742,18.1085510165679,18.2231665987024,18.272334141806 +"Q9VXC9",18.9101090044136,18.7975563016876,18.6061204401651,18.7724725110947,18.529106895816,18.4537168609042,19.2396712141806,19.1589676230852,19.1012564021156,19.1583873174472,18.9806086727216,19.1435454625843,18.8814464190402,19.2775796974663,19.4915335751474,19.233122196347,19.4513894717468,19.3990359216068 +"Q9VXE0",17.856731298548,17.9124701781218,17.8882769952319,17.854382612209,17.9669337440885,18.0189101020413,17.8804190846501,17.880088631094,17.7884985379573,18.293367693697,18.2079336582882,18.3618463820863,18.0723577825989,17.9771611850169,17.9043657363031,18.2031991352638,18.2158702103575,18.1985598533468 +"Q9VXE5",14.5209453043849,14.5571270813869,14.6339615565244,14.4975067931796,14.5639119050776,14.7488998579981,14.7396898698851,14.800300473474,14.7205674863332,14.5413770492272,14.5313648147268,14.4950907891396,14.6294933160632,14.8673779349787,14.5512391970957,14.805314295145,14.4142444182409,14.5845677407939 +"Q9VXE8",16.2530335865885,16.3133329878375,16.4215908739834,16.4720404524657,16.2133730300092,16.5189270982292,16.09204114092,16.106030363693,15.897757852513,16.1598286550924,16.2281415791351,16.3751120190192,15.9979437136543,16.2923111142393,16.0853309529514,16.4303935779447,16.2520920517516,16.1065623299694 +"Q9VXF9",17.4654861119866,17.5291608334396,17.5971524195423,17.5843338294028,17.5386082452244,17.516143060661,17.5605802178593,17.453406536738,17.4715180614641,17.608303307698,17.4918224457824,17.5106308293046,17.3438288275829,17.3967663405179,17.3082537481331,17.2699255336333,17.4226934264606,17.4287597090577 +"Q9VXG4",20.1134439332493,20.135400151207,20.1092033278904,19.8775063552364,19.7859582896573,19.9392291819,20.0972180666877,20.1122272478402,19.9183481689423,19.7842429475878,19.9219649818977,20.0694622409926,20.0061617013563,19.8566165327731,19.8666706442384,19.7479322032211,19.8143380039634,19.7235916433749 +"Q9VXH4",17.3023055595599,16.875449068719,16.9481133411734,17.0863620111752,17.0273334853369,17.0712747506836,17.0810082374003,17.1830784457038,17.0949826058411,17.2616514682965,17.2630160551368,17.2869723605178,17.0142050390738,17.3078024931446,17.244355345771,17.0588269799372,17.1476797474019,17.1586608914559 +"Q9VXH7",18.4123971302368,17.9634215267374,18.3271667491655,18.1375367283224,18.1570997729445,18.3337275802611,18.1207283592253,18.0463816620833,18.1685384978633,18.1592280078284,18.2302837974807,17.9334712367738,18.0516534187737,18.1718409392709,18.2319178922649,18.1520404394922,18.4645563853621,18.0387621275503 +"Q9VXI1",19.4436694979501,19.3463160476029,19.4027040457128,19.7003292209907,19.9645007411597,20.0087211301041,19.2590193055765,19.1659062841023,19.0677794419293,19.7102360270943,19.8776495616913,19.9264266504156,19.5620339927399,19.4266905311017,19.4010407541914,19.7358444299871,19.6300693086807,19.6044604519853 +"Q9VXI6",22.2101017723032,22.1424143275339,22.1826393411279,22.0603911441475,22.053406428588,22.0579495862014,22.0192080424272,22.034675331828,21.9564829153439,21.9446849086188,21.8670736339534,21.9361194917525,21.8560888215271,22.1161910502772,22.0958060281519,22.0564761923139,21.9331901091572,21.9179535187601 +"Q9VXJ7",14.9617272075001,14.8661307217423,15.2105732344011,14.8417349489465,15.1569650419783,14.9849097427644,14.8911673077509,15.0161283356651,15.159006343904,15.2481852265454,15.0220294487515,14.7032765202587,14.9459252548957,15.0258934983845,14.9816270368061,14.9066237164331,14.7082166155499,14.7559707839372 +"Q9VXK6",18.0858646389121,17.9218771352098,18.1052065886473,17.8787495896425,17.8896756748759,18.0070840305769,17.8166575060398,17.8014956353659,17.8378058995059,17.6383656098814,17.6479371056057,17.5904437597852,17.9067393971928,17.8827524275217,17.9576255707604,17.3993680608651,17.5820068239545,17.2275789532579 +"Q9VXK7",18.0282622254813,17.9908122127455,18.0772172363891,17.9653940262392,17.9992333104129,17.9588767197324,18.0037381213728,18.0641354902617,17.9297128114923,17.85854019268,17.9397471315444,17.9859637035719,18.241678379381,18.27992484721,18.3158548970449,18.2678249159652,18.091584868945,18.0978124928888 +"Q9VXM4",20.0523704378778,19.7983243142621,20.1952067790844,20.1607157721406,20.0742861483477,20.2444881117411,20.1159296149976,19.9915451159042,20.1486146085639,20.5480546194772,20.9237034387987,20.0897319779285,20.1303797874208,20.1046165730814,20.2325328647836,20.119565327137,20.2345399686567,20.2164412169495 +"Q9VXN1",14.0293076312021,13.7386425334079,13.7308986694542,13.3844954737429,13.723634671376,13.8944133933259,13.4454480283538,13.5263110069433,13.3033167224936,13.7311320186527,13.5557849797094,13.7479959269756,13.424149520722,13.4126374302035,13.3768202603536,13.7851511882954,13.8426732393287,13.746238888366 +"Q9VXN2",18.7707495935891,18.5385470047954,18.786037096809,18.8105861091639,18.6058130974904,18.5966169866023,18.1077702471753,18.4818758973559,18.4462115887631,18.2004725526535,18.4579972095113,18.237025428329,18.132082377804,18.4653108542248,18.2157035548186,18.6105628731504,18.0826796901583,18.3506290982141 +"Q9VXN3",17.1509281965154,17.0485103611309,17.1377660459181,17.0167054129407,17.0455813533015,17.050074967162,16.9108415410161,16.96590721097,16.9986944742756,16.95537808144,16.9397484230214,17.2267498449393,16.8618079567139,16.9566162324205,16.764026986453,16.8744068556658,16.8137044634475,16.5927557255437 +"Q9VXN4",14.7360163352178,14.7579608343024,14.8208506504436,14.8559898629416,14.99342283153,14.7840398691667,15.1684792211847,14.9770303106508,15.0995587029725,15.0355060933644,15.2243168852199,15.0002701359367,15.0475589006816,15.0733178872163,15.168941617745,15.1203489329683,14.9378505974389,15.0902383700937 +"Q9VXP3",14.1468851635239,14.1567961993013,14.0458319462081,14.2626836548587,14.2804383222636,14.2222063900925,14.7233823871444,14.6653480644048,14.7341627302202,15.020287969549,14.8795554333975,15.1292778664118,14.6906208931544,14.696508466075,14.7432846049012,14.9221096831231,15.0873232659112,14.8912062135197 +"Q9VXP4",17.9723935497035,18.0056854653676,18.0077262186394,18.0466379893883,18.0580978076792,18.0428797704898,17.9445137040328,17.8195749276276,17.9869104719933,18.1577252271681,18.1656253700139,18.039375549939,17.7838873624957,17.8611280623469,17.9372569718962,18.0139319740261,18.0089781737793,17.9049408238567 +"Q9VXQ0",14.5147233017989,14.5820825367389,14.6642767559348,14.7108875291726,14.7553270752976,14.6504972165756,15.2753711085551,15.3300575813677,15.4954642984039,15.2576118516966,15.1856814073725,15.2206436814906,15.079145540727,15.1415313762894,14.9830440468861,15.4010161591015,15.2440755139857,15.2248294917607 +"Q9VXQ5",20.2040287439392,20.2776232522063,20.2552845407515,20.4031133980605,20.3216383577,20.3328621651385,20.3856655477816,20.3871583528816,20.3518119851455,20.3752654352313,20.4138579038307,20.4752088885666,20.2915870239206,20.3446453497926,20.2787790422357,20.472380779478,20.3871177120001,20.4380943065734 +"Q9VXR9",15.2192986433753,15.2240035597971,15.2458516178212,14.7148546070397,14.8339518598496,14.8979943641175,15.3669119117825,15.3988317694503,15.3322772966053,15.222236731952,15.028536653585,15.125161135926,15.3786922238883,15.5825326936668,15.4754005464643,15.4653751937551,15.2995127754441,15.2906843508585 +"Q9VXY3",17.8621445804958,17.8773655762241,17.8071431799179,18.0491173959963,18.1001567119714,18.0877391741719,18.1649700671821,18.1080573318404,18.0408727715277,18.2221853448651,18.3211864418262,18.3406789523103,18.1366278709876,18.0641859579706,18.1237664425958,18.1495483946903,18.1136416343846,18.1843931336937 +"Q9VXZ0",19.9617046707011,19.7243780870575,19.7456774257796,19.7721646983776,19.8592798945017,19.9407633244569,19.6915026617595,19.7004306456804,19.6163352535579,19.5318390489822,19.620906219477,19.5587953160862,19.7008098018522,19.6511973316933,19.710375302659,19.3903408291625,19.492169532425,19.4764150882955 +"Q9VXZ8",17.4248074206567,17.652600276776,17.6188317725948,17.6622748026714,17.7279610231993,17.5242964063717,17.9851222149916,17.9262657798204,18.0034811830515,17.8578417251806,17.9086020249636,17.9002919158348,18.1932341888793,18.2331200919343,18.2847964071613,18.3450217995815,18.0197529552676,18.1366044669471 +"Q9VY05",18.2835325043313,18.2927631316062,18.4835553800396,17.9316948450165,18.0063414553428,18.0128454369144,18.4764719207122,18.4517175208109,18.5786425788969,18.4075173618667,18.2285524993707,18.2626444829744,18.5128317784749,18.6745703674756,18.6480561943668,18.3383938835537,18.2964973193491,17.9646982207632 +"Q9VY24",17.4351570231912,17.3952273973918,17.4749449726612,17.8434514849742,17.8733484254979,18.0582218581225,17.7430650562219,17.7578087320953,17.57013610872,17.8995759029119,17.8438410237583,17.8766898666936,17.8133312615935,17.9234683190231,17.8227176931513,17.7419389607031,17.6828257918294,17.6738091902472 +"Q9VY28",15.0970338323877,14.8647937571412,15.1917918520113,15.1566558062479,15.1141666200597,14.991209812792,15.2583731483508,15.321317441472,15.3357168997652,15.3525109652968,15.4559613834737,15.3175351541726,15.2639669391133,15.2754204493877,15.461974300791,15.2207773675739,15.317658407436,15.0510900394382 +"Q9VY41",16.3893715143545,17.1023960970581,16.8238094063122,16.3705747223948,16.2959258167461,16.5688125681997,16.4046912170122,16.4153033732683,16.4419388175431,16.6066585502917,16.5585766386787,16.4148547727055,16.608548310286,16.0030830520862,16.6139439604096,16.8591250861468,16.8636844226485,16.3756098753158 +"Q9VY42",15.0749281906337,15.0812445053058,15.1257742514505,15.2191915872062,14.9929381343585,15.1055452378259,15.1117714334855,15.3076348975613,15.2706990927143,15.2624309637036,15.1737047724032,15.2363610554126,15.2403897893358,15.6802324526154,15.4483576524762,15.5236119895062,15.1965691916267,15.2455866639915 +"Q9VY78",18.9702749322994,18.798732813376,18.9775721939991,18.7411144745327,18.7870838826877,18.9479425735077,18.6257141849824,18.8341773676532,18.6883776542653,18.7764614582121,18.8604482125588,18.7837823456525,19.001198610491,18.6761929245253,18.7027752707498,18.5380920442113,18.6962205039279,18.5524056665547 +"Q9VY87",17.6739950850551,17.6198260435482,17.3546817318281,17.4623434017264,17.2914282565272,17.3718357701063,17.5122626990412,17.4523926948507,17.5448775510094,17.6218678873947,17.7516745023751,17.7437402622868,17.6853145478355,17.4508220789714,17.8017681101197,17.8561157398224,18.2457557846028,17.994995935525 +"Q9VY91",17.9050528133728,17.0801370660017,17.0377456552657,17.0048937899194,16.9189909967394,17.1930522108391,16.7017404307761,16.8778046259927,16.7570884076166,16.5063852240998,17.1097792959693,17.2817320779695,17.2742191275182,16.7511204844243,16.8883387044273,16.2906721946144,16.9451311111733,16.5250065241825 +"Q9VY92",21.1788841590637,21.1426441520423,21.3180672573702,21.5736522843272,21.4928264832581,21.4380827605607,21.2069592033332,21.1443074373698,21.2660786665464,21.3398313165052,21.4928091579603,21.5596337468074,21.2959465994316,21.4862245367832,21.1939205721796,21.402942462715,21.2394042579621,21.2224330219116 +"Q9VYF0",15.9542230855919,15.9765263048984,16.0498438681604,16.0421793412642,16.1666606551626,16.2792995602531,16.1824442884407,16.2626975611293,16.1009376165793,16.568268689398,16.1921542279007,16.3010926257106,15.94478874442,16.1578493518946,16.0023103009671,16.3806658459944,16.3166818941234,16.3390860234385 +"Q9VYG8",15.0878864666384,15.0081968757665,15.143706963954,14.8114819489307,14.721626064105,14.9457067552162,15.3089650458087,14.853962803525,14.9979202554569,15.2570464471251,16.8301513436994,15.2810437706878,15.2869421719001,14.5284926449475,15.364225160137,15.136609766741,14.9465021151006,15.1563289416921 +"Q9VYS2",15.4951279476873,14.8865104813905,15.2213959747275,14.9371001845589,14.9559011244041,15.0434029512537,14.8237690673421,14.9344861048417,14.9220019997209,14.9260007512939,15.3237302612275,14.9344613314916,14.8552106804556,14.9426458234022,14.9771219922301,14.8534582761179,14.8473931121898,14.7922826580318 +"Q9VYS5",14.3501808829247,14.3309978144245,14.2803652953155,14.2180740378305,14.3045091101013,14.2956205764344,14.3959767710654,14.6000839722596,14.3919721715917,14.3138015134897,14.0874983905592,14.1988404281004,14.2891272449612,14.6555059287197,14.4955128350211,14.2049339036849,13.7934991378921,14.1097830474933 +"Q9VYT0",18.411404927337,18.3119017645605,18.342598512101,18.0672033172709,18.1053500450629,18.1054935784557,18.3802194234079,18.3460244727666,18.2358875170374,18.0221909908984,18.1443028872213,18.1360089150057,18.5531208184138,18.4821647832256,18.5412875239917,18.1954798327586,18.2398753572498,18.2683432634952 +"Q9VYT1",14.1182159417025,14.3701867935532,14.3785755498142,14.2926447286101,14.1474054236605,14.2925698727442,14.0142960597692,14.5108227955779,14.2680394985432,14.6570879296027,14.0929033648847,14.413913253926,14.2289714012113,14.3038651880685,14.178779833775,14.4303123436294,14.3163448387802,14.2096503957226 +"Q9VYT3",14.4206959877614,14.431321583475,14.5248968729592,14.2943532661941,14.2744006187636,14.5569014233497,14.2443797215838,14.3003344139879,14.0188458986238,14.4477743096884,14.4913401845594,14.5614816300787,14.4497823633961,14.3994532542949,14.337670227401,14.5159392089658,14.4760748025088,14.3731288051772 +"Q9VYT6",16.6362846704356,16.4392763310208,16.431961610193,16.4293136855985,16.2215820347048,16.2624436006364,16.2627249671257,16.2011704522979,16.0468897424507,16.3686692102299,16.247747828412,16.4769125844348,16.4225926527232,16.7341133335558,16.6230894284262,16.3943138472518,16.6700090533733,16.6726020672236 +"Q9VYU9",17.82557027684,17.9926482024922,17.9690021355368,18.1420189924786,17.6904094825586,17.7380162935825,17.9742502923049,18.0288464228457,17.8630324860536,17.5856225503267,17.6938189591741,17.7948385630872,18.0173227004795,17.9814474833031,17.9684136081231,17.5396927803082,17.6973070423642,17.7511745063548 +"Q9VYV3",20.4414165759852,20.2980573329503,20.4353719395073,20.5804862760159,20.4735165549454,20.4751158152895,20.4962671841322,20.4387845749837,20.5131724248638,20.568569475224,20.6825995790631,20.603847249909,20.3870891873309,20.5611452050173,20.4710263890596,20.6055580683002,20.6252835200287,20.5808529483593 +"Q9VYV4",15.4895305169968,15.5156013016195,15.765940199048,15.7617140261705,15.7001780110992,15.6352298071918,15.4792970264619,15.3599076083833,15.5662705834362,15.616404583392,15.4434911159832,15.4049355375827,15.4402923634163,15.6815336287652,15.4377216881787,15.4289602202084,15.5154870707955,15.4061009212085 +"Q9VYY3",17.4053761007372,17.5483435820799,17.5075238308839,17.4102472699904,17.4232152581018,17.3418793887308,17.5672000829621,17.5733947654864,17.6729311894243,17.5328835104524,17.6061858006206,17.4762161649345,17.6855473988403,17.5718630597787,17.6334906506558,17.6652790302058,17.5435309271208,17.6344921685589 +"Q9VZ19",20.4167593007948,20.334843939939,20.4451009978115,20.3280949888385,20.3861140996102,20.5022928429164,20.6563228163112,20.5884226371023,20.4197288711618,20.2426980986797,20.2804080440909,20.2184031388373,20.3846368535576,20.2289380762936,20.298629277562,19.5510729978473,19.7608582589932,19.6954299277403 +"Q9VZ20",18.584163161672,18.6075076167568,18.6885040744013,18.7991583030901,18.7543058732827,18.7930026282886,18.6940223968074,18.6554189499226,18.6853825292721,18.746061296108,18.7332773336099,18.7540335068662,18.6222018935008,18.6943011698358,18.6985634079802,18.8236482419405,18.8244443497109,18.6497691463103 +"Q9VZ24",21.9962043373339,21.7782171414912,21.93251307403,22.2126321924133,21.8807831438854,22.0126358518494,21.7131349953863,21.555765043776,21.7865909726489,21.9596501027527,21.7629211481607,21.7258909941572,21.225454317443,21.8331372360449,21.7531948406122,22.0177765130747,22.3140287450458,21.9140267251064 +"Q9VZ49",18.6417954398574,18.8463863058454,18.9201824602689,18.8912586921298,18.8958939704753,19.0530675529931,18.9038904409501,18.8471152744218,18.8202674932081,18.797762964313,18.8994069760994,18.9581688807926,19.1962427032231,18.741766745871,18.6862818416909,19.0139218258807,19.2143027936412,19.0069038374005 +"Q9VZ58",18.0048816536526,17.892297216152,18.1234139850543,17.8905288521593,18.0802640178652,18.148013434732,18.2011454842053,18.1964200498575,18.0435593820282,18.3659875909088,18.2386957348683,18.2571581715759,18.0626402360817,18.1394475947193,18.0411181548964,18.1929441787632,18.1710033823085,18.1048648674842 +"Q9VZ64",19.6190239717403,19.4367877717251,19.5940421601604,19.5377778340679,19.4423719399343,19.585048402583,19.3715994811413,19.4645972451442,19.2530487065019,19.403229695272,19.4304194958488,19.3575903864424,19.2534751147345,19.3864572717117,19.3798243323249,19.2604834804406,19.2849558530325,19.276035589384 +"Q9VZ66",17.0635445402489,17.0271378028933,17.2501293739771,17.0889893938203,17.0540516332012,17.0245892129163,17.1847044722592,17.0386936176968,17.1321092180126,17.0083215279236,17.1363232518168,17.0817407011377,16.9325072309634,16.9703149978621,16.8582722498714,16.9584814822716,17.0100273440168,16.8897078915718 +"Q9VZ67",15.0370080794406,15.0253062506411,15.0387723281633,15.2082378705943,14.9607890931782,15.0006486425641,14.9628150503515,15.237620444992,15.1789821122218,15.3726678695364,15.1135380115918,15.3216339959687,15.1147454117723,15.3820328357331,15.1834511373065,15.2148160550373,15.1910037005961,15.1868021205079 +"Q9VZD8",13.898583407483,13.9316197615177,13.8708721256335,13.6278132299337,13.6597401862416,13.7730858665951,13.8689385543167,13.7529038977675,13.751532827654,13.4032608175878,13.6627783823124,13.5530337156892,13.9051331002129,13.8101235516383,14.0761448070915,13.401681290817,13.2882446208736,13.0807410576878 +"Q9VZD9",13.9980915902537,14.5038464628651,14.2757841297943,14.2825785593395,13.9837662917121,14.3577349557673,14.6613353078079,14.7098593363814,14.255142997542,14.5569690969962,14.5145521056512,14.7042077934259,14.768275770076,14.4307333914192,14.8397771607378,14.778849389757,14.9033421262013,14.6134526769629 +"Q9VZE4",17.3956982983968,17.5225518969178,17.474983654561,17.7369474415819,17.5032128777705,17.6528183431123,17.5870845112513,17.588377944776,17.4895481747346,17.7190786675138,17.7574724120703,17.9008627094467,17.5651976423896,17.6023982370137,17.6294255256506,18.0307418060546,18.0607349986397,17.8871099596829 +"Q9VZF6",14.7265772700771,14.7692290946778,14.6477623306262,14.6577090217271,14.8218878646035,14.7219677598281,15.485498593998,15.2803546550054,15.5133937146052,15.20858003569,15.2576733957584,15.3660504023465,15.3980113905884,15.3304683736856,15.2322879046776,15.2268625518532,15.2436254802031,15.2217767518503 +"Q9VZF9",19.232186644645,19.2699254651843,19.4529414466555,19.2145996433529,19.1409560337135,19.0744248348695,19.1122908953877,19.0886373670261,19.3167365763548,18.9718505982922,18.9865609675258,18.9888646003011,19.0128314639796,19.2152618819917,18.9768876614124,19.0471389951718,18.8895565253877,18.7810431212359 +"Q9VZG0",21.4096054650581,21.3211843485987,21.4315581554428,21.8145556050373,21.813888532704,21.8182870188747,21.4917916065873,21.4630940218888,21.6171410508204,21.8109844101034,21.8780628683646,21.9196418791694,21.6314742858931,21.6709759875916,21.482228754793,21.9112856933456,21.9224913068773,21.8008402069246 +"Q9VZG1",17.892677013536,18.0227669221579,18.0110484511195,17.9964107277783,17.8271786973992,17.9259791450737,17.6760222804332,17.7099190696011,17.8511152267787,17.521644865723,17.5708285655001,17.5915413698011,17.7494951601462,17.8046257883559,17.6383505078944,17.7009174181515,17.6018484227539,17.5191327651009 +"Q9VZG2",21.5160227001744,21.7202398859383,21.5140539636215,22.3400263956772,22.2484376499818,22.1853838694848,21.6994014500063,21.6590887954262,21.7573643838779,22.0007255062529,22.1644209498654,22.3527204527063,21.8327191554698,21.5932602588106,21.5866582583016,22.026858099659,22.0303057672175,22.0195723792475 +"Q9VZI3",14.3825986277219,14.4396648605957,14.4907005687692,14.210343627962,13.931341756976,14.0267816131404,14.5174474297812,14.4699541844786,14.3697293913529,14.1777364216489,14.3854490086678,14.4904893578223,14.7719282164733,14.6677519413914,14.5980887981168,14.2592724374641,14.4251650089418,14.3435370318497 +"Q9VZI8",15.4409586674366,15.4634260629112,15.4960330953358,15.7510874122097,15.5288322610636,15.5247764779012,15.7832857055766,15.5807058855869,15.5980253433875,15.77882611982,15.789601403245,15.9085757838311,15.7924281417211,16.0858452355491,16.0443493718196,15.9111488351504,16.0093240335587,15.8859748096392 +"Q9VZJ2",17.4847127791658,17.4378994488826,17.5421206246825,17.584821962766,17.4972807566187,17.6122209032653,17.4350349531178,17.3470373838863,17.3866744040444,17.3020349703539,17.3267552940131,17.3284735252884,17.1110495843437,17.2989679954537,17.142175802227,17.1185535913822,17.1282669622752,17.0245425816219 +"Q9VZJ8",14.5394018610753,14.685296715719,14.486383784969,14.3720072350943,14.749031747035,15.0321311614144,15.0442296640592,14.892754175781,14.9955621263221,15.0974774488753,14.8175726118097,14.7163916338172,15.2921910649155,15.1359295145093,15.0354790488186,14.9036964831217,14.9684189922873,14.9830560018 +"Q9VZS1",15.5658511938023,15.1884822798565,15.2078586483218,15.6421015383995,15.5251033383708,15.5110685307002,15.3504160613228,15.2152777125403,15.4360007948252,15.7473663932691,15.5755997241728,15.4251363947389,15.0417602533246,15.4213122847254,15.5249564136148,15.3708418902536,15.7925619907062,15.6133165481711 +"Q9VZS3",18.5358505373601,18.3305834842736,18.3412174975803,18.5073776402606,18.2853382200818,18.5621953860326,18.3807833658277,18.462423192534,18.346720466189,18.4171740881191,18.3074331686467,18.4972394809126,17.9462925106714,18.6005686724699,18.2086231962102,18.5483980060882,18.3495294103211,18.3798801214023 +"Q9VZU4",21.5795768986943,21.4040164211456,21.5313408750902,21.6780827130624,21.5104262930068,21.5460583176908,21.3370561011824,21.3397367350635,21.428944453529,21.4047564077127,21.2759461256556,21.3282581818104,21.2283979836431,21.4889303977355,21.3934252557496,21.1841459031852,21.3929600348733,21.1839889236101 +"Q9VZU7",17.3191118312197,17.322950957418,17.2486137404635,17.1911029241594,17.1259612196443,17.2007065308846,17.715929344144,17.7878891668431,17.7138128045116,17.6197000645708,17.6921799306431,17.7799524008193,17.8380111867381,17.840598948189,17.8672752469215,17.7940131092858,17.7082882373803,17.6675077365174 +"Q9VZV2",14.8126592227834,14.9724039541229,15.2127505846928,15.0453281431404,15.0350214228323,14.7829406928699,14.9610773718165,14.801561148791,15.0615267310667,15.1004261466349,15.1575119869766,14.8906655312336,15.1411588854307,14.8733537561287,15.1961340923135,15.0775237392884,15.2983212402428,14.9941558769179 +"Q9VZW1",14.7100701838969,15.3857106281694,14.9845070006567,14.806181917419,14.7326490321497,14.9794499361472,14.9401628702011,14.677282248213,14.564281843324,15.2151184695983,14.6459927995679,14.6912032555312,14.754385157095,14.8362006936516,14.9474154797435,14.5332293616993,14.681312558158,14.792290444507 +"Q9VZW7",14.3262678146816,13.910978302008,14.4039735042328,13.7055628345093,13.8997081103734,13.7258221692001,14.0835920552626,13.8849129448689,13.9802564899606,13.6867709700531,14.0680176134429,13.6828062691245,14.1749912899002,14.157932760551,14.1758554479451,13.2972307799738,13.3528660131363,13.3057018639175 +"Q9VZX9",18.4781098182177,18.4126012070912,18.5848265939403,18.4578196191231,18.4474755242921,18.3992462713396,18.3791222958127,18.3086808548436,18.2767011876096,18.0840778731088,18.2415946052336,18.1761957510299,18.7049975800055,18.7283071095172,18.7435251975205,18.5789247093302,18.5443925946203,18.5025568941582 +"Q9VZY0",17.1300608415093,17.0694324047184,17.1725019711876,17.3637985509845,17.2701128915608,17.3112991316636,16.9614604854151,16.9636873786319,17.0599789268091,17.4804027346883,17.435912084464,17.478399448067,16.7841059267435,17.2032125762232,16.7958617577782,17.4723003420401,17.2497715457826,17.3740876458754 +"Q9VZZ5",18.6943705910376,18.4800296533508,18.5939919330692,18.3831470345493,18.6203660212011,18.640625280127,18.5094926687887,18.4597422872932,18.3380891754674,18.314860267534,18.3558233028254,18.5282255813298,18.5023120013609,18.4828551829122,18.4604237817074,18.3823780225063,18.3877441381941,18.225204834076 +"Q9VZZ6",18.3935867535959,18.3565329738208,18.5603577330646,18.3101067707067,18.4271301953553,18.2756853926755,18.4010931930667,18.4275176089433,18.4202206643209,18.4887247583308,18.2927923570737,18.2243267175369,18.4296530251635,18.5284697064325,18.4962706395977,18.542721293121,18.5334429523589,18.5890246467889 +"Q9W022",21.3029058883115,21.1885977694151,21.3304191972162,21.3451820265503,21.2710805139126,21.2085890269467,20.995467090153,21.0910289138359,21.2582734031446,21.1248124689347,21.1379968280319,21.0811487334494,21.0977743537444,21.252465181388,21.1911116122075,21.2831774218548,21.2081500429652,21.0797772765843 +"Q9W073",14.5818843179715,14.5336451491746,14.5018055815005,14.6626564204924,14.5145174874829,14.5125483519974,14.5804336759312,14.3686437409629,14.4443642833572,14.4687157348033,14.6549792754889,14.8014774953124,14.6808911109789,14.636635333642,14.3968692105481,14.5339713490409,14.8001316224668,14.8514876865027 +"Q9W074",13.4439069675345,13.8284023591343,13.859902540559,13.5925313418683,13.3723573301619,13.3414238494259,13.6091022172278,13.4661648113845,13.4413592557615,13.3067324517138,13.660366729681,13.46304113577,14.0737994796764,13.6174057278751,13.7726048850639,13.5223918053378,13.6037673051219,13.6701325967783 +"Q9W077",20.8227593702218,20.7582144016964,20.9749238827151,21.0365696310343,20.9625342584223,20.8997242501938,20.8546262070511,20.7494458087952,20.8729780834272,20.5916581318062,20.8190548736455,20.7020357889804,20.796327420063,20.8673586391909,20.7308702887764,20.8475076748138,20.79284045324,20.7689161408974 +"Q9W078",19.4350626044229,19.3315632528711,19.5363762151108,19.3652200973122,19.5843720309906,19.5797756948276,19.4306000629586,19.346039853917,19.4760146674214,19.4916288537796,19.5375121643725,19.3361453063461,19.2908342703031,19.4513361593558,19.2510774271273,19.5837839241471,19.3463063514165,19.4177405020903 +"Q9W086",16.8124963851815,16.5446776041949,16.5769161683159,16.819974469494,16.8002277028772,16.6919302622026,16.9181959709573,16.8210621551755,17.0714459133589,17.0122456216351,17.1513508447788,17.0862653349318,16.7131535291471,16.8739344384523,16.8694484921398,16.9770019299852,17.0618151609215,16.9570617354513 +"Q9W087",16.6460404711555,16.547126846038,17.1331121919105,16.4844177068531,16.6914266252515,16.6810666727675,16.7784248507083,16.6722637807793,16.6823757469383,16.8773220234301,16.8438984151738,16.6583300299231,16.6504868962743,16.7263265192037,16.4286779549976,16.8122263514098,16.7678761133847,16.6653557032941 +"Q9W0A8",18.9551978391205,18.9431682387063,19.0083702527659,18.6616871859385,18.6523816765896,18.770708409141,19.1710812772712,19.299232796265,19.1029594519845,18.7011940612079,18.776539955717,18.9007903605559,19.0912515788686,19.0295892447258,18.9822902289934,18.8430636933718,18.7225637237748,18.6583569323377 +"Q9W0B3",19.233218309928,19.2788637231434,19.3196163272953,19.1582071037586,19.1596357921487,19.2688410292737,19.1586099615661,19.0577533867258,19.1059467457883,19.1963800623953,19.1587843096274,19.1700640045102,19.2473944920826,19.0557625365927,19.0542761764792,18.9337863438933,19.2167965253859,19.0088519902771 +"Q9W0C1",21.2931907296217,21.2435207766225,21.2170186078224,21.280533602486,21.3861829072606,21.3362270434577,21.0654046041176,21.1891817650188,21.0457106789324,21.3983020806372,21.323084805724,21.3532588918523,21.3383738877227,21.1971377643976,21.4324125563972,21.4561502831488,21.4928471687106,21.4473274092722 +"Q9W0C3",18.5721192837776,18.2221777364225,18.2025722953538,18.7153699111121,18.4651972900884,18.566007551079,18.2964150424371,18.1618744109324,18.2979123772986,18.8277514231552,19.0352988388088,19.0667973267108,18.0821177350361,18.1516022668163,18.237906823904,18.5409165093596,18.9985393618093,18.6634935305315 +"Q9W0D3",12.7451623914111,12.6679471884029,12.8401819744269,12.6368841950143,12.4970193280735,12.4331704505262,12.9358969597314,13.0268138623549,12.6108133897048,12.6619682385269,12.8049659473906,13.4789320397894,12.9853592446702,13.012158438429,12.7062266316813,12.8304909850864,12.7868572497894,12.7264375283118 +"Q9W0H3",17.15311058741,16.6159240717174,16.9240509311612,16.4364546501183,16.5591551499508,16.4812398200542,16.7545844185575,16.8068195025589,16.7286716407901,16.3996662846335,16.6625047875145,16.6816663773843,16.8438066193242,16.9365130914303,16.867421658823,16.6316268167776,16.6383327736493,16.5361989486084 +"Q9W0H6",18.0659383297367,18.1513301059049,18.3199016915894,18.3895950534304,18.2072737437778,18.1579137705376,18.0867674447453,18.2180274800607,18.1567945499966,18.3063009627313,18.0704036071553,18.1373120836239,17.9646434145295,18.2193102757153,18.1099336940729,18.2014160164667,18.1483160090258,18.1328054318196 +"Q9W0H8",19.3807133150876,19.4568404440635,19.648527367363,19.3598602729227,19.6102475241352,19.5797619994839,19.4695373511501,19.3433846304962,19.3523862824676,19.443643418226,19.4342861764591,19.3309637712426,19.2188327409922,19.3313893640298,19.2292850153586,19.5699716259004,19.2664105850953,19.3016342883634 +"Q9W0J9",18.612550250991,18.5270973411442,18.634264661026,18.4568770605347,18.4033142842067,18.5573958164203,18.4906150357024,18.4173672735929,18.3080253862535,18.2698883174179,18.2299612911828,18.3311475313259,18.2604559707334,18.3823049451663,18.3449815184575,18.4597308388643,18.5900723389509,18.3743025607606 +"Q9W0K9",14.1797212146704,14.2242902727195,14.288837825306,13.9249463940432,14.5033061175993,14.065806029198,14.4750520408889,14.0209312492722,14.0423259948368,14.2445652879958,14.0502480896253,14.2157916937222,14.199901546672,14.1178677082306,14.3705643293136,14.0754813584154,14.1830244052387,14.1163419703091 +"Q9W0M4",17.8272346829128,17.8287826553074,18.0784884854435,17.6111888905853,17.7159996228919,17.6244710361219,18.105513995241,17.7722269530458,17.8861114953349,17.8807969338876,18.0018763188941,17.8166793576948,17.8875610783282,17.7460638129251,17.765137693377,17.6756789360235,17.9230251539143,17.8170864490063 +"Q9W0M5",13.0407244611711,13.019068862691,13.3057149588885,13.1830123297338,13.5914676077911,13.3252736032384,13.3335837169396,13.0364607459554,13.1869981111556,13.7263318949383,13.4059012164625,13.5241870847295,13.0472632492207,13.1425439352136,12.9744426981021,13.3198246586779,13.4552979425678,13.3341238545673 +"Q9W0N6",14.5314490865191,14.5344437954632,14.3992997391601,14.4728563955015,14.5356990307519,14.3586427412489,14.2530608141275,14.4096088234712,14.6339151573797,14.8008746133601,14.7600048504602,15.093832770414,14.3244044447005,14.0520808272008,14.206790415146,14.7205754214512,14.8113834483125,14.4107399523111 +"Q9W0Q2",15.5860088638846,15.3496889587262,15.5211616232869,15.5998170859597,15.5735093779937,15.6740927911591,15.5075534314006,15.5294083381829,15.4967436901579,15.5025530545544,15.5389964242181,15.4300241119905,15.4425270856777,15.5741959664934,15.4899667603387,15.4573348458261,15.5299953016888,15.4838053903701 +"Q9W0R0",16.7407837461489,16.7494090801125,16.9326862652956,16.9303143816685,16.6900575513164,16.8412888203286,16.7854241512521,16.8168210624901,16.8656237762275,16.7999349389051,16.8435858260518,16.6492817856089,16.6027182107977,16.7228788753468,16.6621098030498,16.5567309923058,16.5931540257605,16.4649159705677 +"Q9W0S7",17.787358958971,17.8733859925017,17.9281509944675,17.4828566179452,17.4521501286966,17.5583388362807,18.1739605536548,18.2108276730079,18.0562588332812,18.0318204334543,17.8870064568389,17.9881986606527,18.0636373241712,18.200409771412,18.1127253588008,17.9443488152799,17.8602026810195,17.8403100199936 +"Q9W0X2",16.2642931974429,16.5914566878319,16.3344479970473,15.8355903336164,15.8683347913544,15.9243017255121,16.1978714916023,16.0022029914137,16.2082173455295,15.7716290170286,15.7526859829552,15.8292927561281,16.0036650396284,16.0825970189023,15.9350010324791,16.0045351859004,15.7803067927616,15.8463234085231 +"Q9W0Y1",17.7670134960855,17.5738025652278,17.6751436051793,17.566338888287,17.759074772404,17.8320690125727,17.7349567123455,17.8744271981699,17.6972244741629,17.6612189557605,17.7707885637886,17.7760018477691,17.754648116456,17.6992578067469,17.6453960098281,17.6116192060671,17.4184444686645,17.4699604254895 +"Q9W0Z5",17.08593807673,16.9706026176623,17.0767242692534,17.2883380659837,17.2719520141245,17.376196466718,16.8073140302222,16.7095712166363,16.6528911405271,17.0300552758576,16.8436390534539,16.9098833092813,16.7616966849315,16.8729803987563,16.5699534009224,16.610010494632,16.9146073277237,16.9977040416548 +"Q9W125",21.343902051993,21.266721596822,21.3087185753964,21.5510906488142,21.2956696646685,21.2911351642769,21.3352085318337,21.2653719131411,21.3924740535817,21.229082299213,21.2751205613253,21.3266608585037,21.43519254894,21.3288824770389,21.4472482402959,21.3011190772678,21.763828945066,21.4293582660071 +"Q9W127",18.785495285602,18.671598315226,18.8193931784314,18.8154882938253,18.6312041426596,18.7248099344871,18.4860373862348,18.5906737030452,18.5762025315053,18.6627560661322,18.6025017528084,18.4157307869054,18.6531117688748,18.6939756521439,18.6781908350786,18.2837595604436,18.4966947952296,18.4723210947049 +"Q9W136",18.155855360548,18.1468446899767,18.1774967721015,18.3324155488196,18.2739835332918,18.3550461438728,18.0226388055549,18.0508122057771,18.1025141664871,18.1642797238089,18.1588911693311,18.2722843289955,17.900942053628,18.2309746803652,17.9485383847485,18.494456672938,18.2090818865556,18.2147083690921 +"Q9W140",14.3671180303836,13.8998055322784,13.913632682672,14.6949233606066,14.014930700349,13.7981660115301,13.8573858037982,13.711304496956,13.5310171580747,13.7722869495828,14.0558259405458,13.8546731482811,13.4811158565569,13.6497353231704,14.0236108881419,12.912036862674,13.7532648703025,13.9637669749022 +"Q9W141",21.9176830761339,21.9238829787076,22.02427730337,21.8674542174393,21.8394120290912,21.919405144543,21.931269434391,21.9024674706622,21.8726827311964,21.7259416246433,21.7234131528654,21.8587147006386,21.9284198131027,22.0210171464343,21.857711617617,21.806965137003,21.7675405249525,21.6449418053483 +"Q9W147",13.8545434417984,13.6959826348766,13.9489749343121,13.7250360376367,13.878047811563,13.7962637447909,13.6689725068808,13.6331977066528,13.6034711735842,13.9735550478314,13.7658297061905,13.7348793079572,13.7599063768161,13.9755204265059,13.7914610997832,13.6106476095684,13.6440827347432,13.7176107601042 +"Q9W158",16.8784238975248,16.7193588256041,16.8901833016863,16.9091038803691,17.098598309571,17.0788722867153,17.0714194380662,16.8911843036594,16.9436385216638,17.1289069638339,17.2373453252253,17.1707793726454,16.7021139849713,17.0188923330275,16.8774651991702,17.229521630026,16.954110697704,16.9585511129102 +"Q9W197",17.4614060142817,17.3896807641759,17.401103210339,17.2189711667994,17.2789848393797,17.2804383454295,17.4941930827943,17.3242066883572,17.3793162533529,17.3602886345956,17.3797255644332,17.2592687735593,17.36261837997,17.2569518679969,17.444124164527,17.2225683659739,17.4904959200722,17.3557948972072 +"Q9W199",15.6436888338111,15.4692111514686,15.4989389545673,15.1188647164483,15.6840120678403,15.5519593980419,15.9425312756477,15.8558230062168,15.9462984525194,16.2348948380996,15.8835526158506,16.0788795177269,16.0869792947484,16.0183992580726,15.9207133319248,16.0273875079768,16.1433483672829,16.0575568119516 +"Q9W1B9",20.5490464524813,20.1173128396804,20.5259820310627,20.4430093760431,20.245667286025,20.3809792703327,20.793352821387,20.7204964929585,20.6126911488722,20.4954888303408,20.4097974931927,20.5924212740902,20.7638541283397,20.8972793954179,20.7095160650805,20.5018702751492,21.1560683764667,20.725032094303 +"Q9W1C8",15.9353600041662,16.0023354805051,15.6926749988401,16.1630095932205,16.0065733757928,15.8498997543062,16.1463818708908,15.9638999467982,15.4265932722123,15.7477773266743,15.8563036778301,15.9998030637731,15.8509001229363,16.016105471009,15.4279166263189,15.957584717318,15.955795683271,17.4041259197554 +"Q9W1E8",15.497545536325,15.5090962943645,15.6020224558823,15.4509974824249,15.3966212039628,15.5788905430748,15.5393276973608,15.3538767735233,15.5351489106212,15.4244962783709,15.2878664464006,15.4758933323355,15.2955140605188,15.5925251706741,15.2120950544656,15.2630954767999,15.330990642875,15.0669262354208 +"Q9W1F2",13.0783707906421,13.5937008474887,13.4795579082552,13.8683250495311,13.3896353536986,13.4671676305115,13.5860296303681,13.5729391312991,13.4797009827668,13.5546295573157,13.8543852569247,13.7164589824895,13.9980521391388,13.2513067183653,13.985090923316,13.8341347287026,14.2575745879221,13.7915654683595 +"Q9W1F7",20.377843805464,20.2458008688185,20.2660780545153,20.2051083657015,20.3110974702301,20.3596623946964,20.3396236879659,20.3748771156213,20.1769686194262,20.2745439212575,20.3271811433557,20.3827108110485,20.4034087489709,20.3856004219286,20.3184829717302,20.3753824258215,20.3313539352271,20.4720081037647 +"Q9W1F8",17.8048081205358,17.7174515493617,17.6829424998648,17.9607524370178,17.8739416727856,17.8432495997345,17.5600015474145,17.4105910350635,17.5603544294414,17.3925702076663,17.5865162069283,17.5539436091056,17.4688576503632,17.6033255599822,17.5749614028161,17.6440654412998,17.6392293801763,17.6156038633351 +"Q9W1G0",22.0095002418507,21.8898175913182,21.9293135799674,21.7451686571181,21.7132909940165,21.8014330175731,21.803540520355,21.7968617551282,21.7593960390295,21.6878983131673,21.6559714138227,21.7500478213381,21.7552920279007,21.7948707138545,21.7172458520368,21.4328318310376,21.5834191232892,21.4767952814845 +"Q9W1G7",18.9175009417506,19.0014411021537,19.0327379307109,18.8299639609098,18.8111538901569,18.73203937644,19.0023461897296,18.9893297875701,18.9102279201261,18.6960780106766,18.6915885278297,18.864814447409,19.049456452818,19.0296015070059,19.0797323405188,18.9600508799934,18.9322816211617,18.8358444206733 +"Q9W1H5",17.1012231520534,17.3008497980984,17.1178846531114,17.309323175375,17.335168787227,17.2528982751706,17.2630389686018,17.3522400396332,17.2941207971446,17.2795822669932,17.2694180627348,17.4684516570757,17.2945589447372,17.0757481180791,17.0856291852969,17.3611817911611,17.275483493149,17.3899237311222 +"Q9W1H6",17.2591427483431,17.1495195694001,17.2745284144886,17.0832344363254,17.2022787518735,17.2005887077178,17.1403779104613,17.2455066210755,17.1681029748214,17.2030758016581,17.146987497654,17.1487568239522,17.0878711807967,17.3185416846149,17.2291945145079,17.1676465624782,16.8785145154447,16.9201772045747 +"Q9W1H8",20.4027177807896,20.2828840091109,20.2313086080107,20.1354529177469,20.3110898367648,20.2260191090383,20.7732043190598,20.7382171209028,20.7554399464694,20.5399066944422,20.5559409604341,20.5375025817637,20.9925002045538,20.9464793137969,21.0573745380715,20.6872658016625,20.6964364772453,20.7234029349011 +"Q9W1I8",17.9646665465279,17.9932877436214,18.0290437987685,18.0957188810696,18.1267691974591,18.1279771673995,17.878726434994,17.8110452786398,17.9016713997049,17.8676600247053,18.0793225063258,18.0255924563374,17.6763815910323,17.6779578028969,17.6444618575051,18.0761544745936,17.8709254239797,17.8305612732073 +"Q9W1L1",14.5417759380183,14.5844662297774,14.5369952361725,14.5383843366079,14.7219406553329,14.7502161739927,14.6619350952917,14.8907580179551,15.0261562900789,15.1054235432006,15.2151289694702,15.4076911677958,15.3462505197315,14.7952821933501,14.5586985141408,15.1085316102437,15.094724977208,15.0225436609131 +"Q9W1M9",14.4499631600737,14.5334792081251,14.4306112988922,14.2761218785809,14.1286717160554,14.1982365701592,14.8366662299797,14.5479605499444,14.4898039386694,14.0925648836454,14.3542037747716,14.2541676061594,14.7762893169893,14.2867321588866,14.2456301802114,13.329921557364,13.9104796188499,14.1430774325413 +"Q9W1N3",20.6430551624677,20.6583748948053,20.7521759753676,20.691212201447,20.6979121709978,20.6030328212422,20.4228788210433,20.4815624653415,20.4200356117687,20.400356353423,20.4282660441499,20.4760891604934,20.4931811675905,20.6279390285517,20.4113210262386,20.4261944601461,20.1828235622713,20.414223571007 +"Q9W1R0",13.5381647454534,13.8954338702141,13.7959808948596,13.9470149034852,13.5595017011252,13.3847769097493,13.8698850639864,14.2241759144322,14.1096563285038,14.1675229473177,14.1434516896504,14.6650973802416,13.7589646459903,14.446141454992,14.3107645631298,15.405334556026,14.4181822318451,14.420610785775 +"Q9W1R3",17.195706425159,17.2334376048694,17.3320772845586,17.1452222092829,17.1832789722636,17.1031607774936,16.9279695520908,16.9604879610351,16.8924329475656,16.8636841205671,16.7132138722585,16.8124071203463,16.8483806220491,17.0187408060257,16.8877613396291,16.8270069477488,16.6988106604457,16.7801304073046 +"Q9W1V3",16.2208457478121,16.2652287266589,16.486866542676,16.32020623803,16.1491664658817,16.2037170528391,16.5209205305877,16.5722341214012,16.5304281257523,16.2664920948918,16.2910389235394,16.3262510875328,16.4610838854254,16.5517803602787,16.175370651924,16.5051419669881,16.4652418659753,16.5720570030108 +"Q9W1W4",17.2199504864396,17.3419674622699,17.2977888820322,17.3715541862599,17.3202146102254,17.2279735924364,17.1956522295218,17.0791880786134,17.0848452541845,17.4431279444544,17.4712989857157,17.5012385701301,16.9752895751219,17.0214390193747,17.2135551454936,17.5390350440724,17.5105013096709,17.4192080215933 +"Q9W1X4",15.137663648986,14.7858636656803,14.9014714401251,15.0480830096671,14.9188348166068,14.9740396550482,14.9994926908139,15.2706165876704,15.1930003002976,15.3895202592476,15.0645671006921,15.2287839133306,14.7603896028848,15.3308874918867,15.0878510954445,15.4163696592763,15.3807492083395,15.3663724666298 +"Q9W1X5",19.2599759477973,19.368168697502,19.2524589173044,19.4087931914581,19.4010966434025,19.3480645677668,19.4163589969368,19.3625394258055,19.4265661116353,19.5202634595424,19.5468531033253,19.5701424663827,19.3302005579011,19.3734696199934,19.4249324250685,19.609340626522,19.492805290129,19.5227682920001 +"Q9W1X8",16.0924245379248,16.075058097836,16.0575439713236,15.9259684347196,16.0615387794773,16.0982318841422,16.2914747328165,16.214995383017,16.0935138446136,16.141750003222,16.0662667159437,16.1836938867001,16.2228326717721,16.1986707424901,16.1163950081194,16.0188421993765,16.0767628610675,16.1439139849326 +"Q9W1Y1",17.8845893068824,17.5759861081592,17.7735673940596,17.9365308572821,17.7850881223738,17.8543344586295,17.7273207472624,17.7626897089401,17.7768234656526,18.0378767670339,17.9378650337794,17.7995362402416,17.5449960621663,17.7936460868328,17.7885512716535,17.8518727705206,18.1279114510625,17.9903736809109 +"Q9W227",22.1012286514838,22.0751713151217,22.1369825157056,21.9488209972919,22.0150056261943,21.9891630353329,21.9967740054177,22.0137340956203,22.0037637510585,21.9165355210533,21.9329896650498,21.9303602347708,21.9253596326545,21.950638133811,21.8774959176473,21.8614180744395,21.7625980465436,21.8123714278255 +"Q9W229",19.3033830886333,19.1580393305461,19.1566540832367,18.9329992216995,18.7998865510159,18.9467272752308,19.3247246532079,19.3746184359928,19.176437069757,19.0629362630467,19.1902999060692,19.1936532643329,19.3613061841038,19.1682527320795,19.3785012700999,18.9591248241198,19.2533772791075,19.0925012721538 +"Q9W236",16.5629262267323,16.5795202883449,16.6326441581336,16.6156787013792,16.7194276533314,16.609973799449,16.4218196543201,16.5336926058777,16.3168403523193,16.6166532987545,16.4697549534356,16.5713953825705,16.4122471795186,16.5329832514886,16.6901657402841,16.5134745777907,16.3074208860171,16.321780205739 +"Q9W253",14.955334088043,14.6810230218559,14.9481040583993,14.8383952962323,14.8561580901986,14.8551547937772,15.3266052836965,15.3080824866106,15.2632665310542,15.5645390171298,15.3814788360402,15.3041084920418,15.2229904130301,15.4535923559678,15.4108217983372,15.260320851918,15.4878501593766,15.38672927644 +"Q9W254",18.0650641764526,18.1883712490181,18.1014133068012,18.2378765503629,18.2581050870222,18.1989845775831,18.1144063608542,18.0707429439265,18.174067611207,18.1212378375699,18.2372292985976,18.2686230206318,18.1216724366121,17.9888355249879,18.0730714941053,18.2349295173187,18.151902775618,18.0790268688419 +"Q9W257",17.037518284965,16.877330541137,16.7188563042425,17.3536275909366,16.9830882165741,17.3211944786195,16.7063128096858,16.8729664757172,16.6752079876217,17.4624449390168,17.2175730267995,17.3614088583267,16.336673196485,17.0092976312752,17.0874212649085,17.4985594230808,17.434880352667,17.231047350451 +"Q9W258",19.2633843888436,19.1401451071801,19.2439811893594,19.2734685031959,19.4610542641864,19.4050390384068,19.384262938664,19.211703502445,19.2880837887597,19.2439700317559,19.3896877013916,19.565146228672,19.356417278485,19.2673870053726,19.1784232407839,19.3829687600536,19.4344943204222,19.2237984150161 +"Q9W259",17.020323064831,16.8180205935011,16.8680490004004,17.0184317275268,16.8607408038683,16.7193316797983,17.0714884378621,16.7661700265925,16.8466391344522,16.9748192269232,16.9544159797366,17.2304352129977,16.6140653636794,16.8982182341082,16.9979811656118,16.7519157475337,17.1534779305495,16.7886073750957 +"Q9W260",17.2134733308405,17.3295718023456,17.0143679058134,17.3439700108793,17.3402746551826,17.3312728543296,17.2927800820647,17.1968151168418,17.3242371779412,17.4926771050111,17.5025319712991,17.7571659907624,17.4361578426466,17.3327648212514,17.3492665365941,17.6508118993369,17.7279119038586,17.6535598053385 +"Q9W265",16.8261222847977,16.7801997755828,16.9804452217953,17.0313583701618,17.0387383914649,17.0602751562886,17.1797436337294,17.1532533937231,16.9710844887412,17.1141731440174,17.2243568025647,17.1364374167104,17.0999997542762,17.0707878603857,17.0435775650505,16.8732102721799,16.8572712354413,16.9327876105763 +"Q9W266",18.5737205057818,18.4376428466591,18.6401342694958,18.6761509633449,18.6701918765349,18.5505643531251,18.2525504510777,18.2071782578528,18.2834765075468,18.3527217246557,18.3328981603677,18.3815370185558,18.3070148758696,18.3800487581047,18.3692836011342,18.3057677106909,18.4399663319014,18.242930481563 +"Q9W289",17.5028073022076,17.4987712171506,17.7114590323315,17.6734050758291,17.4356517877486,17.5495313694385,17.4906079863027,17.3274700659545,17.5775626207983,17.2713579728266,17.4321623842691,17.4028567801039,17.4930119271736,17.4115501165797,17.4061331728209,17.371770717167,17.6973554098041,17.1554180060135 +"Q9W299",14.2751578186553,14.4779850092493,14.4920289268972,14.3911146686697,14.2943668472905,14.2702505894987,14.6634261681682,14.9609546439301,14.9237393557483,14.8490417304627,14.3893731772809,14.4379287620634,15.0877695465499,15.411330608627,15.2952839401987,15.1684827720992,14.9009824182271,15.0157611301985 +"Q9W2D6",19.6390231771274,19.6738178757224,19.6852753631299,19.7630712725399,19.6845872655574,19.6450396136751,19.6425163803481,19.5251413634504,19.63706340898,19.4726083778891,19.619885105049,19.6527746727404,19.3558267328852,19.5362210076152,19.4470029006787,19.7787699476185,19.6121632710137,19.5846599292041 +"Q9W2D9",17.6829566193018,17.6955950730673,17.6282466739201,17.3187072762584,17.4773739787173,17.5986684736328,17.8069473893036,17.6344343335714,17.5072147716947,17.8952497108373,17.8460147434622,17.7385350213825,17.7870859825009,17.3614191633875,17.7800510342028,17.513305067896,17.9894147538923,17.751536071265 +"Q9W2E7",18.188158054678,18.1178882310571,18.1039974910602,18.3839729648487,18.477856653623,18.4265201006143,18.6756518348224,18.5727698858814,18.6346356603546,18.5933372890559,18.6551366983303,18.7646146118768,18.5475062146396,18.5731610240969,18.5562436082766,18.7908600443568,18.7826739094127,18.6934749302187 +"Q9W2E8",19.6091059521677,19.324482279783,19.559616999793,19.3551635374287,19.4168478148815,19.3714041952556,19.1692325694632,19.3077378795312,19.3203956238412,19.4340595971423,19.3082735880324,19.2131805836927,19.3525423948208,19.5126136265389,19.3772523845483,19.1036590556061,19.1538079178618,19.1819133194979 +"Q9W2J4",15.4295729489601,15.6130949681608,15.4546735454911,15.0498884805177,15.0225586597468,15.1210729197542,15.356942981269,15.4223023910111,15.3152177557421,14.9996221489428,15.1063101391756,15.130953691616,15.6408695700218,15.2858592793715,15.5484691718147,14.9626487534703,14.9894194457158,14.8691577987635 +"Q9W2K2",15.714915517403,15.5943748306812,15.4961857745043,15.4728462578315,15.6949037581409,16.2155485272473,15.40313048331,15.611022069717,15.294117222867,15.7334838184381,15.7410311435362,15.9889740832062,15.4871449850856,15.6468084424068,15.3344689188593,16.0406033778589,15.563984195445,15.522829913243 +"Q9W2L6",20.8312493439941,20.6053088942766,20.6658832142156,20.7465784961513,20.7453164893718,20.8055713408082,20.6522306001474,20.7321412552897,20.696391146241,20.8442356902159,21.0980684059788,20.8782760670463,21.1022575812324,21.1427782747003,21.2257309401006,21.2577514660166,21.1106898581405,21.1624504693459 +"Q9W2M0",17.8917266606868,17.8155238245942,18.0492444626698,17.8024517739906,17.8645568478452,17.8350033179,17.7817162799657,17.6802165750218,17.7539774472007,17.7366127099078,17.7769438709283,17.7361983884622,17.7444682673587,17.8002496591157,17.6931443700412,17.6123944848534,17.6318793992577,17.5018021904889 +"Q9W2M4",22.758642955055,22.7181981571425,22.7632301582202,22.7732095164215,22.7271534859399,22.6590207620044,22.5972772367569,22.645360566466,22.7554302182197,22.5899619409949,22.6391491471706,22.64383105963,22.5800094078693,22.6837986857201,22.6848205867614,22.6631065409759,22.5485475556343,22.4558748132377 +"Q9W2N0",16.092691283972,15.9821248325428,16.0705028770207,15.9550154950765,15.9925872086084,15.9554791871174,15.957863081985,16.0791347637578,16.1521339348214,15.970505976155,15.9967733427626,15.9495038256409,16.563576392882,16.4973582633544,16.5002904781135,16.6128614254193,16.6045352444638,16.5246033527759 +"Q9W2N5",12.9413728454088,11.714249485188,12.8317273078851,12.6503332800779,13.0561894918503,13.1000180456964,13.2165800662256,13.6464372785618,12.883600567531,13.1709261241188,12.8845897362471,12.9549933357686,12.9708830105225,13.3141568397159,12.944721812139,12.6965487110866,13.0310212058771,12.9315829684201 +"Q9W2V2",14.3866139537822,14.1442416940049,14.5333030970027,14.1937695580204,14.2146127730918,14.3418350485508,14.3548438550781,14.1036030136227,13.988776130392,14.0692774341297,14.60205276919,13.9339092782569,14.5256602069284,14.3619674493771,14.6022761521265,14.2419412878798,14.3456285965322,14.3720065894896 +"Q9W2X6",24.2076843220386,24.1234598228067,24.2250751503305,24.2100206770432,24.2643164852736,24.2016051304409,24.1487045666017,24.0114408025444,24.1564883521829,23.9205080537539,23.9980149881391,24.0353960915079,24.1125689085779,24.2172401330481,24.0595153493777,24.0462161205173,24.0312304167205,23.9676225746926 +"Q9W2Y3",16.8051725547498,16.6733097869035,16.6562231951718,16.1019909607035,16.3091912259852,16.4999700224037,16.2947569569024,16.4629704829288,16.2836164950629,16.650136123614,16.4052764161305,16.4204878557131,16.2955971643989,16.3513797446622,16.33040777584,16.3562436612277,16.3017697649859,16.3131920774048 +"Q9W306",14.5431357899448,14.7875279058593,14.4697221249253,15.1309979931567,14.8977256263153,14.7255216195483,14.5816130496589,14.6116067106851,14.5554168630893,14.7302929337014,14.9311502988233,14.7731174643683,14.3972082026978,14.2747826793797,14.9434026045425,14.9041188569865,14.7845736050834,14.8201861496724 +"Q9W308",17.3342835257433,17.2551569378914,17.4671298876495,17.2814121734452,17.6591758641157,17.6854936027499,17.1471104622886,17.0449527819942,17.0922783521457,17.1356299006982,17.1642261966403,17.189713173645,16.8183721568975,16.8543763666027,16.8018576095834,17.1340724099853,16.8729924818137,16.6144080032847 +"Q9W309",18.6165132334709,18.680837720621,18.6698073068925,18.6581296781684,18.610542410487,18.815156360593,18.2828079656601,18.315020955277,18.3378505161888,18.4968412970106,18.4640152141123,18.7216325005013,18.1330779089004,18.0967427116541,17.9654340793561,18.2650159473701,18.2852270184291,17.9425052670489 +"Q9W314",16.4473295614837,16.2072964766907,16.4437379750528,16.4080655104525,16.4553773586323,16.3793480579045,16.2577889882053,16.2001046712245,16.2114855955238,16.1375284109801,16.1237568395428,16.193566106939,15.5466509566385,16.0917548613631,15.9050210140879,16.42720005452,16.1462732748267,16.0914047327721 +"Q9W329",16.6667811074041,16.436086772161,16.4592476954225,16.50481684018,16.5492841655499,16.5090586741383,16.3632232023078,16.343555512787,16.4181709052387,16.4516491734469,16.5466073947305,16.5913125439242,16.4481086901047,16.2979871950204,16.3722180141412,16.2960571739683,16.5571151471632,16.3806283545469 +"Q9W330",20.7283626500559,20.5677485276502,20.6876893790206,20.7333184849447,20.6569854969119,20.7080810901622,20.5879985459533,20.6883896884717,20.5700080909928,20.6790608780465,20.6171153659772,20.6056052116277,20.5132011175916,20.7869281376205,20.8008264437571,20.7816066113463,20.7063810713066,20.6513380723779 +"Q9W337",17.8371654828234,17.8495482019084,17.9714049041818,17.7759037324994,18.12817209484,18.0946005696878,17.5700264874458,17.4548567282135,17.5853275122522,17.6860398888527,17.8117730320094,17.6893390795017,17.9470247537398,17.7278844267329,17.6329274163916,17.8086841702941,17.6526100319511,17.6512450336403 +"Q9W369",22.5803452326561,22.6549037977402,22.7301192634308,22.3315125647344,22.3068584222397,22.303887014996,22.1539388838414,22.1850608793925,22.1777723304166,21.9554135384432,22.0335649741206,22.0792864222064,22.3281824123822,22.2650267337879,22.2209434797198,22.1255484034353,22.0295262282117,21.9629325247231 +"Q9W370",17.9911959941311,17.9591992629335,18.1962080171975,17.9717843948359,17.9268455391533,18.1270118758257,18.5571299875384,18.6229374686873,18.6800842385719,18.6383906918678,18.6408506824763,18.534136685052,18.2649626250663,18.1411118086531,18.0767813881402,18.7694592094,18.901978140936,18.5787006980522 +"Q9W379",16.3495470287628,16.4813583867727,16.5866647480914,16.174250434714,16.2806646979099,16.2285961167501,16.3704695354402,16.4314933737519,16.4086498832516,16.3092621071039,16.2201961793614,16.0119348575392,16.2520969908115,16.3778059607191,16.3748507513474,16.4729938646457,16.1371013629631,16.3179236044985 +"Q9W380",18.3420549572957,18.4895070869939,18.3182322916402,18.3682757854982,18.189777388748,18.2697208998813,18.4349868150293,18.3219499754844,18.2726903964431,18.5149162261751,18.5672436006135,18.4688976054896,18.4462959952182,18.1143872751873,18.6337178221501,18.3056670643555,18.729331516545,18.4489378279678 +"Q9W385",16.7680914806111,16.9234019482143,16.9373648868054,16.9961164879757,17.086583794156,17.1057148916108,16.5188454669994,16.6519477266132,16.8132944628636,17.1928469314045,16.9135862881935,16.9406918169355,16.6193533182613,16.8421686087337,16.5474518779457,16.9817695250681,16.6593348444093,16.7325052741591 +"Q9W392",19.9211607361276,19.808786693113,19.8576260276065,19.9288328611684,19.9318809489811,19.8548173903984,20.0749169455468,20.0520753771235,20.1123816959577,20.074476052848,20.0275833902688,20.040238725916,19.936110760652,20.1231785740743,20.0596465094113,20.1120013668092,20.1039937395914,20.1227883738623 +"Q9W396",16.5860172569405,16.5963291404668,16.6286300795108,16.7888841130585,16.8108862933663,16.8139970255242,16.7210550293164,16.4521262064495,16.5454167070741,16.5863293331895,16.7033181748758,16.6798649099867,16.4092637513722,16.5472282315451,16.5409008650911,16.7785418241956,16.7602032613692,16.6612817208858 +"Q9W3B3",15.8070509696306,15.6408615858184,16.0399662226232,15.7467819408253,15.6668649180711,15.8541487026718,15.7408663749244,15.6280676955142,15.5039423001431,15.6839920704927,15.8059139685564,15.6141228190516,15.5189870411037,15.6735347250796,15.5237892206973,15.5133161465906,15.5957516505276,15.4750252783804 +"Q9W3C3",16.6330335360263,16.4783795727639,16.5167622547806,16.3509191780647,16.3989380913948,16.1110961732116,16.39425363047,16.3828010631817,16.5002619317681,16.2471463133195,16.2636698220978,16.4454550799475,16.5267864518089,16.7720268452635,16.756542338369,16.4218210564273,16.2781447714151,16.24384238804 +"Q9W3C4",15.2376882488031,14.7553649013642,15.3509471960052,14.5594966081885,14.2628633632283,14.688744254223,14.855855662032,14.6910522012768,14.8454483749385,14.8983310675993,14.8576290992787,14.7541016610305,14.8569587047438,14.4671365628327,14.7587728006904,14.3968147989992,15.7710989623853,14.4071308034783 +"Q9W3E2",18.1358672340995,17.9863902164204,18.2548851379694,18.0590468317374,17.8456679196075,17.8883263521902,17.5869416836589,17.5247902197498,17.6472380203046,17.1130015168073,17.352031956843,17.1403378024676,17.8276469797937,17.6803287510526,17.9131716938764,17.0907808557464,17.42407603817,16.9693260950351 +"Q9W3G8",16.1508065942665,16.1633584624883,15.703872896491,15.5947829165009,15.6561373629102,15.2452761566516,16.1074477533992,15.8948652974777,16.04951234949,15.5970742489262,15.5391873085563,15.5159693487251,15.6614950620142,15.8685579549679,16.2135937963776,15.4636979190783,15.4531981077849,15.84707994645 +"Q9W3H4",19.8461925285542,19.7090807000239,19.8913870043255,19.5640926119117,19.5109718577386,19.5137881462147,19.6223229620183,19.5733528389523,19.5631376162127,19.2428998550912,19.2763711770399,19.3588107786282,19.5414210641013,19.525700860762,19.5510392177039,19.2407880236399,19.4622396107998,19.1795542822315 +"Q9W3J1",16.8796665519202,15.6441580582892,15.6176758718245,15.3804130877368,15.6531426009406,15.6552324723079,15.3559767599246,15.5067910473497,15.6719596616023,15.4978680887911,15.8046582476368,15.5719543684514,15.5526080780823,15.8276956052635,15.9269798011386,15.6092744483786,15.8393614553538,15.8320048395089 +"Q9W3J5",15.8005900798538,15.958967517925,15.8870606721562,15.6157992629703,15.5998976143809,15.5475174288389,16.3762197434708,16.3769349067145,16.3329906504619,16.3042186943594,16.0540185701091,16.3133978923628,16.4655029662102,16.5829117603637,16.5236413909921,16.2417596905903,16.2313600679617,16.1994824026431 +"Q9W3K6",16.2952177496451,16.2391225804649,16.5452058630084,16.1652704700054,16.2380895850758,16.1267194694194,16.2961927383047,16.1431558586807,16.1705014914452,16.0913035085788,16.2007056118597,16.0496562459762,16.4604388806898,16.3676078872303,16.5056921622362,16.3122882674359,16.4320300913482,16.2229363825743 +"Q9W3K9",19.0542126182396,18.9441525214734,18.919592211341,19.291725670973,19.4669743880395,19.4426687614701,19.2480326383436,19.1846120099019,19.0618554179526,19.4353379536485,19.4552755086128,19.5003233201672,19.5414491568706,19.5668496212282,19.6195395016098,19.4975692425178,19.4504632313374,19.5243480680523 +"Q9W3L4",17.7098482129347,17.5305959088952,17.5638747623293,17.833190375361,17.7049897839649,17.8045904308748,17.4548238078616,17.6450068186777,17.5096288776498,17.4203296147761,17.4105627224544,17.4143168615632,17.783225867658,18.043991733061,17.9862720917412,17.7371004614668,17.6033713730049,17.6598353158998 +"Q9W3M7",15.9840241794987,15.7693618492864,15.7850444764407,15.9088490070599,15.9964040510723,15.857236690245,16.0281522438425,16.0343706360959,16.0871242468112,16.1777591341304,16.248995155519,16.3771957841139,16.1571292846962,16.1771260750996,16.1542082525537,16.1283903682144,16.1580464503689,16.1234947672775 +"Q9W3M8",18.3127278288708,18.4297639368076,18.5425645623866,18.4595366936377,18.5258440716599,18.518592198472,18.5160945151906,18.5578414931379,18.5722608848121,18.7145823775539,18.6957644509586,18.6666181909726,18.7155639300825,18.6000720640971,18.620974277466,18.895967123635,18.8051864523094,18.693462354861 +"Q9W3N6",16.1187400592359,15.9861845990582,16.0104385210452,16.0130917238693,16.1375491251517,16.1579886586472,16.1307262115319,16.1963508471986,16.0876054232212,16.1552269461832,16.2034237988436,16.1303597190572,16.0606179377975,16.17945096656,16.1953717335454,16.3419088960876,16.1173524378933,16.2385477191891 +"Q9W3N7",17.1339222439566,17.8102694040207,17.3322150866081,17.9327137888276,17.4906214988654,17.2227014886781,17.2197178794905,16.9868921400049,17.1130861270602,17.1780961477128,17.4239721564148,17.5807877293468,17.10093033724,16.8928942663923,17.1154766594337,16.9420621879269,16.9027931194564,17.1431754940276 +"Q9W3N9",20.1921032866194,20.0691219256656,20.17534226197,20.3911497809015,20.3080677375567,20.2494747304225,20.3271701835866,20.0884945336416,20.1084298346625,20.2799042336485,20.2505656999643,20.2340778796519,20.165970804813,20.2262500892139,20.2267004934172,19.8039309236568,20.2177292271837,20.1662040131016 +"Q9W3R8",17.5773621156021,17.6250970222681,17.7552706890137,17.4143254659115,17.4006177248532,17.4969032873305,17.3857920120104,17.5157538616042,17.402386708156,17.2011920099497,17.0411000966106,17.0774678453489,17.3128143946486,17.4516533894798,17.2525277134017,17.0677082064922,16.9249721097987,16.9746379613638 +"Q9W3T2",16.5810461813659,16.5810695690762,16.560297505086,16.1260513552725,16.1644397072618,16.1987056528481,16.4213616237952,16.3885607736017,16.3130080827577,16.0912315684226,16.1017291951056,16.056035630935,16.325747506215,16.2943799755832,16.5049474731247,16.0424387601011,16.0576977745437,15.9548826504208 +"Q9W3T7",17.4026085517001,17.4914686864957,17.4436826239372,17.4982087212525,17.4202897832562,17.3189467960357,17.3949022929862,17.3448519597104,17.4172887373439,17.4151307726598,17.4302316280683,17.5161342865376,17.3716538959959,17.343955564027,17.4399968151794,17.450627758086,17.5023343711229,17.3970827336466 +"Q9W3T9",18.6504707725279,18.585871385101,18.5614770035289,18.6797406817861,18.8158285950475,18.8199628049416,18.5348969803349,18.5152464893918,18.4171971841352,18.7042497030512,18.7428753063393,18.8077864137903,18.4933298979296,18.4782321915785,18.5939280600976,18.7304697451237,18.6551038132952,18.5928063142597 +"Q9W3V3",12.4497428974612,12.9391674646867,13.0721107041639,13.6067899628537,12.8782287230616,12.8992927768785,12.7321741777967,13.0844139547173,12.949419810142,13.4868148942201,12.963663741291,14.4002173916289,13.1516293396814,13.2398413598891,12.6633812125692,13.3531313348862,13.6749673632537,12.7958607115168 +"Q9W3W4",15.7719031866298,15.8843332871384,15.8737212257753,15.6798524878657,15.6793051989442,15.842214093796,16.0157871389308,16.0080057961608,15.8521769563624,16.0208452536412,15.8607475177162,15.7525484248289,15.9453107231295,16.0826959731271,16.1306577243387,16.2031683662418,16.1217793833521,16.1855487313375 +"Q9W3X7",21.7572567831218,21.7466879792182,21.7420360340688,21.7981275607051,21.7391962569589,21.6809567122383,21.5821153984971,21.4934049484823,21.5611326625328,21.3225123582507,21.496882314847,21.5832207996491,21.6689408481838,21.5848450833969,21.5632751613687,21.5868886909122,21.6548250567673,21.585220269813 +"Q9W3X8",13.8358091608361,13.8224303887923,13.8271775977564,13.6763549204322,13.8480529734793,13.9960759615337,13.9373752828507,13.8711298116097,13.6118716778667,13.9825689324402,13.8614460443714,14.3699290083782,14.4191106736709,13.872232140631,13.9160852232794,13.4967294541812,14.0726570655275,13.6268089555969 +"Q9W3Y3",18.4637137635743,18.3520241253293,18.4647671315722,18.2977591401658,18.3284197980652,18.3349430492251,18.0936257989503,18.1549966880773,17.9855278845058,17.8854539034896,17.9373562565008,17.9269893262456,17.8437704159997,17.9452865010828,17.9165926714395,17.9395908466507,17.8058304997751,17.8950938058423 +"Q9W401",24.7244000276828,24.6449694401799,24.7033153850367,24.4849592106021,24.4324235311081,24.4285840259568,24.584888850608,24.5354197529928,24.5587951596418,24.2670488918585,24.3256018022013,24.2826613055421,24.3595066283253,24.5119496282646,24.5507695719203,24.3452537695391,24.3156932238689,24.2419319305181 +"Q9W402",21.3815760341288,21.2593999119292,21.3725877534556,21.3588334711054,21.3436196584559,21.3242172740093,21.1239359735904,21.1651579720763,21.1686167912357,21.1128783393395,21.1674767478308,21.1577530188469,21.1763641327198,21.2816291198988,21.2880608371262,21.2245595595765,21.1608641002696,21.0669118357869 +"Q9W403",15.2544443945789,15.2753658030611,15.3201613627381,15.3904324763257,15.3929524461574,15.3354549890291,14.8121464479058,15.1168718521719,15.1521179651485,15.2683183932696,15.141482945266,15.2234938444149,15.4254462088458,15.1116156307935,15.2172575901693,15.5245669304745,15.6370661739503,15.4268690999005 +"Q9W404",16.0887113924812,15.91967718352,16.1767880952515,15.7507239994748,15.8469206559346,16.0830000832077,16.0954422217611,15.9085877362731,16.0438400598225,15.98969022889,15.91396202383,15.9097785801678,15.6545274088689,15.8409241354308,15.8854677755173,16.1347829298779,16.2838064463656,15.6150035873871 +"Q9W414",19.4263500403066,19.3751479791285,19.4192776665967,19.4052759155367,19.4066259466399,19.4946498234689,19.6380032328409,19.6326962158253,19.5916524690397,19.6506588537929,19.6305047090764,19.6333433240666,19.6251934999383,19.6806025277834,19.687937671594,19.5973501731306,19.6172543370925,19.51597076078 +"Q9W415",16.6407519131555,16.7284068956073,16.583156088668,16.8624667131362,16.7439993650481,16.8292342673888,17.0577093248665,16.581572803799,16.4003303117656,16.8634473571286,16.5950002526172,16.6680774406774,16.6016192781489,16.8678437402671,16.9781684610874,16.3955243636849,16.904695892782,16.9625523805333 +"Q9W425",14.4084132813216,14.608164350596,14.0106263782654,14.0599233762442,14.3866333524474,13.9044936582874,13.7775454510633,13.7663335171982,14.1037079534963,13.4919906478049,13.8963270332736,14.0310133977973,14.1741876317044,13.7417892095338,13.9397446951433,13.9890256580993,13.5018385831888,13.911499963248 +"Q9W436",14.5841745312807,14.0552380425557,14.2649023188743,14.3996370723624,14.7070403939953,14.3204097078905,14.6098055600879,14.1808339258034,14.52243686234,14.2436516854431,14.693645579054,14.6675670558391,14.5048687781445,14.3725288568273,14.3441033181154,14.1942425541914,14.5270933832744,14.4169609184509 +"Q9W445",16.7125006479945,16.562520502953,16.7790097548616,16.3798101554229,16.3793260435432,16.3959026725376,16.5748485258882,16.5618126944207,16.5309598984621,16.2798430391227,16.3850760436857,16.3415624219131,16.557261931424,16.5839048880023,16.4236252321709,16.2101999547188,16.2418240819663,16.243404274626 +"Q9W461",16.319260912561,16.392891781217,16.5029317298744,16.3634863702917,16.450490622852,16.6291339097304,16.2058382543791,16.3462964491971,16.1171227064557,16.5166939247713,16.2440602968983,16.1798624772718,15.8981590665393,16.06729458055,15.9702657643118,16.087965640572,15.8903704384,15.9920875814703 +"Q9W483",15.4405904751592,15.2939266313268,15.1755090118147,15.4706652387815,15.2477218446853,15.6195219043891,15.5013392596676,15.572633098129,15.5234918412006,15.7712527554773,15.5251479218972,15.9911706542316,15.707675212798,15.7290930366794,15.4335471807891,15.5417511530493,16.0647515622153,15.6900335025078 +"Q9W499",16.9722734328818,16.8862974172877,17.1398360713271,16.5355960738438,16.6433905623729,16.9140204080713,16.9809891276174,17.3559461752751,16.7138356261322,16.9938757777511,16.8072745510231,17.1739419082493,17.2569457762743,17.0181080298743,16.9167459657989,16.7143576201783,16.7430210727138,16.5956578289681 +"Q9W4A0",17.2873036011419,17.0917268493767,17.2417484204861,16.9753568912573,17.1915203847453,17.2311943458066,17.1760334458251,17.1196281313053,16.9840666560043,17.0914615656782,17.0269168779697,17.0187794764802,17.0795518123654,17.1567320781302,17.1254069724672,17.0681952879436,17.0913782826844,17.0767067329671 +"Q9W4C2",15.9444662883096,16.2704152740055,16.4033839511045,15.7315911162609,15.9473852400276,15.9638015448292,15.988699440436,16.0631652237624,16.0373604310721,15.9908353871403,15.6104400667805,15.621525616396,15.7008042482657,15.6088217718797,15.5430597376097,15.8381508797401,15.6943197836969,15.6254160791411 +"Q9W4I3",16.2883383888342,16.3414729257512,16.2347491036824,16.5643420331965,16.3509721933259,16.3597110865489,16.5186683381821,16.6084182054637,16.6074785546911,16.8745082103775,16.8370915791161,16.9860608552416,16.3737957995275,16.5664125562196,16.5473030352114,16.8815958998702,16.7968812101114,16.7659460346126 +"Q9W4K0",19.6095996808304,19.6311309153216,19.6817195127666,19.5884022475908,19.5995920522401,19.5840651576358,19.6971169590482,19.6676737132833,19.661948566596,19.622742138086,19.6748566887068,19.8482446237276,19.7530576246015,19.839040683376,19.7350315367455,20.0487774556187,19.9074020528479,19.8086867083044 +"Q9W4P5",19.6722096929829,19.5467298022012,19.5628626603541,19.5412679824162,19.5203941193377,19.3920227445901,19.5303199211235,19.5722708473022,19.4767794418511,19.5270866212885,19.470425900274,19.5357794650978,19.7490561140261,19.8104073695799,19.9625407626453,19.6570649243321,19.7567772174743,19.7470201816309 +"Q9W4U2",18.5986398761602,18.7322514055613,18.8794308529155,18.7829840729303,18.6111996534314,18.438435821786,18.4987271174712,18.5852356213157,18.9354164685613,18.3820710384837,18.4862458461463,18.2933186976424,18.5083831187233,18.6779302914209,18.5356196410697,18.6930013476707,18.3709437535638,18.3815850894644 +"Q9W4W5",17.0400997895465,17.1046213630942,17.1644340971326,17.3328705727176,17.4760576411977,17.3820644050893,17.0999021557878,17.1261353439021,17.2405208130164,17.3088876855733,17.2399770692036,17.2764049066005,17.546079713713,17.5664709329759,17.359259197872,17.5869897288323,17.4015672957971,17.4921462264598 +"Q9W4W8",17.3011372544589,17.4374092019446,17.4508201790674,17.0277949635731,17.231513813109,17.2576044845982,17.563516177426,17.5745149312025,17.4664982384997,17.087283580496,17.2525749056931,17.2476092973565,18.0433436651739,17.6383690903371,17.6207380971499,17.4498125302032,17.3385062290447,17.4296178746594 +"Q9W4X7",18.9530419901052,19.1604245238523,19.0801093403418,19.0636992902959,19.1668190252105,19.0965195717451,19.2237672956098,19.114322630061,19.1365323833785,19.2856113156084,19.2178627348951,19.2898514128469,19.0905212871267,19.1024919010395,19.0182339242032,19.1314993199252,18.9862196836128,19.1268938661558 +"Q9W4Y1",17.5804262943113,17.3523780005999,17.591411787334,17.7323181583912,17.8824851230213,17.7791380351422,17.3653634278131,17.2869741843387,17.4231138112645,17.719912696124,17.6550694972908,17.5795683870614,17.0114046712797,17.5054704340832,17.4651024107559,17.9082813806192,17.6353293892043,17.4793721969804 +"Q9W4Z2",13.791682700164,13.7714270000988,13.6605564375093,13.3303873912183,13.874981133806,13.6113464125301,14.2076136801422,13.8209862518424,13.72672525107,14.1790273577604,13.8539448779622,14.1426887935336,14.0740606303853,13.6169393108784,13.8132416155882,13.300944067086,13.9454372521685,13.9291573165251 +"Q9W503",17.8966489270251,17.9708027474465,17.910415261119,17.8469062534108,17.868092179727,17.9082643124135,18.0255170970109,17.9806835460952,17.8227808091404,18.1023907118188,17.9577829929555,18.0209147994307,17.9939066186794,17.9941764851223,18.0228904714983,17.8796162428997,17.9734478994983,18.0597201972429 +"Q9W552",16.0876733141341,16.0626163805598,16.1210806484318,16.0871222445238,16.0797210655928,16.1629132759697,16.1368041381539,16.1498510141054,16.0985828589559,16.2279489629299,16.1969282619931,16.3596869993534,16.2670291359833,16.3807493247124,16.3187789551105,16.5835626391617,16.5202743879234,16.3290976970654 +"Q9W5B4",19.0649862254063,18.9275318077985,18.9078655147508,18.8065385231012,18.7062698527285,18.7802102716727,18.7411658395034,18.7467934108719,18.5766384269383,18.4280444886312,18.3919396811163,18.5811218569605,18.1006946612141,18.4174570345766,18.2572868324751,18.6018816685729,18.5533196193373,18.6401885036318 +"Q9W5P1",14.272877666017,14.1366726864458,14.3663617523258,14.1699356078548,14.3283091277224,14.3883567118567,14.3887655431666,14.1493968338035,14.009086173156,14.0578047068242,14.3256957332937,14.2900659624526,14.1693842852668,14.2533216611043,13.9782481491899,14.626071337342,14.4914431041018,14.6527203974905 +"Q9W5R5",15.7285396254582,15.900189262191,15.8992213290548,16.0521351879519,15.9687615665548,15.9628118004066,15.8541154419161,15.8582075590974,15.7822599837708,15.7217292610019,15.8768266660516,15.8719183798539,15.9020172734638,15.8618066937859,15.8244002460335,15.906569824179,15.6993148662902,15.8244948748514 +"Q9W5W7",14.4923745401063,14.7220215492203,14.8245339324727,14.7259760050736,14.7603632201733,14.7665247115177,15.1410857188792,15.0260461914928,15.0946269492892,15.0581234586383,15.1110878886638,15.1190100812602,15.1104450264296,14.8521743121074,14.9397109298259,15.1794241492436,15.235735736713,14.963022294005 +"Q9W5W8",20.6576503122191,20.5611364534443,20.6603892195927,20.6131548695217,20.5238709504258,20.4779606256358,20.7526670205259,20.7260528591228,20.6766209454789,20.7257033850459,20.7975345391562,20.940408854243,20.7037842103526,20.7001873876206,20.7080801521963,20.7280745856297,20.8722521935252,20.7175745861481 +"Q9XTL2",17.0483237191241,16.8740324887001,17.3263523238703,16.9647312046101,16.9861409243817,17.0274167228995,16.9023482678226,17.0272781664683,16.9837506256992,16.8643005415665,16.8429774942515,16.7412481091754,16.9169867334838,16.9229875069653,16.7869679002108,16.7718053691264,16.8150792549666,16.6027601538783 +"Q9XY35",19.4529210562567,19.2891634965637,19.2680241588708,19.0818533914408,18.9946593446921,19.2727693625227,19.2013068890158,19.3533975906451,19.1215872277584,19.0664468542797,19.0765460229972,19.041540492395,19.3314452555918,19.3629001111303,19.4037618945179,19.1763899699333,19.2336968504897,19.2026802804534 +"Q9XYW6",16.6180597689528,16.5061416833641,16.5744472663286,16.748175164425,16.5503090000945,16.63289922558,16.5852715016108,16.5985820956563,16.6410515837158,16.6643874635201,16.6485075452879,16.753119548289,16.187715529485,16.5895187998807,16.4751202539067,16.9185392738492,16.8290895775595,16.6455108240229 +"Q9XYZ5",15.9284409051045,15.8451551576537,15.9747356476128,15.7000109314265,15.8292858588113,15.8923450599979,16.0999846653345,15.9611612509831,16.011351654715,15.9272710751336,16.0599732531738,15.7887079433207,16.1107671285162,16.299956070658,16.2523273868285,16.3026967099013,16.0736398241368,16.1497037229418 +"Q9XYZ9",21.9834504688506,21.9831019898206,21.9102830844268,21.9019248511763,21.9599844595656,21.9596729796968,21.91468927575,21.8595100550039,21.8712510288338,22.0278404841054,22.0990952338691,22.1369595970666,21.9956562626795,21.8332173613946,22.1120358780956,21.9931188782865,22.0817711211945,21.8264776527286 +"Q9XZ19",16.0894116005788,16.0501161622085,16.0842378476144,16.4278924773772,16.198811095767,16.3511258977138,15.808511105837,16.0876741231302,15.8910922695329,16.1948229795586,16.078616866879,16.2287068142972,15.9447837697953,16.1475171717557,15.799554277394,16.1216201356154,16.0243066490219,16.2323249622099 +"Q9XZ61",18.456305476754,18.5363019030213,18.4775010142027,18.521530414148,18.5954674813249,18.6293157743328,18.6057893050753,18.5907060923209,18.5182150869154,18.4961771348739,18.6169676350476,18.6585427911942,18.6020698535226,18.5536282998235,18.5202301203368,18.6073719607196,18.3961727335552,18.4854393581115 +"Q9XZ63",18.9962501212353,19.0880626327569,19.0960149250686,19.0411959243511,19.0415730861669,18.9250245978979,18.945153510931,18.9768493466191,19.0026556703469,19.6258721886875,19.0245020154342,19.3047739188204,18.6197005830273,18.9868213077775,19.089230833281,18.8624765566192,18.9728404960969,18.6729489394366 +"Q9Y0V3",15.2534697059861,15.0872751490902,15.1569699980154,15.2531445841612,15.0038786270288,15.2223505999259,15.2304696759553,15.1633490647302,15.1924530887518,15.3826993173143,15.1648667117858,15.155704742002,14.6850322418497,15.1079377891207,14.897990151561,14.8489556212853,15.126463804796,15.0283025662957 +"Q9Y0Y2",19.7734914868072,19.6466683153443,19.8534335722495,19.3205699534655,19.4789202645906,19.3394907417201,19.5153191707254,19.5651329454457,19.5595719680234,19.4621422007762,19.3764847755902,19.3096807483738,19.4388293520347,19.4847838310949,19.5581525945765,19.4403888056234,19.3987508373667,19.3304113444891 +"Q9Y0Y5",18.4502512277161,18.6312601943924,18.4198631652901,18.5778118103031,18.5732286961242,18.6692140674981,18.6176463236244,18.6174347680064,18.5504611942796,18.7455505379871,18.6621861222061,18.8248430822117,18.5431145339159,18.6044262801164,18.6179613580654,18.8305755137139,18.676413886415,18.6826070799156 +"Q9Y105",17.4918109121286,16.4141661282299,17.2629592189696,17.0804420832844,17.0020197261053,17.2508067315198,17.4411753277153,17.2245090255943,17.0905452286064,16.9205095177385,16.7814609955877,16.3771622360824,16.7939085187419,17.6095261596177,17.4598905095533,17.0468504785565,17.7430148030303,17.3333329134336 +"Q9Y112",22.2038975761482,22.2052602656594,22.2293956146517,22.2937754905372,22.2316257907642,22.2519745405374,22.2202703823083,22.2310082946014,22.1561803492565,22.2171518090599,22.1967119840134,22.294054118215,22.2431742163754,22.3463331328186,22.3040625770314,22.249022268629,22.2163522752011,22.1916245433661 +"Q9Y114",18.6348591766295,18.6859210832264,18.7088863783806,18.7172034976379,18.6603330143618,18.6263877091982,18.5739770480589,18.5606597283166,18.5755391098605,18.6076369707758,18.629355567286,18.6746519456467,18.5347414572578,18.4696012939246,18.4906220709237,18.5941548608639,18.6567023241084,18.5864857972141 +"Q9Y119",18.4543242040927,18.4376475159093,18.5995698877818,17.6902976539906,17.6549963537382,17.6863932005063,18.0610240406403,18.0356332971807,17.9829914729234,17.3470610147733,17.5140331057369,17.2724974605471,17.5907729309599,17.5539894832265,17.7155381535725,17.1391069847728,17.0862870734381,17.0255966538986 +"Q9Y125",22.8374547593679,22.8104033843229,22.8550248291503,22.6558195358067,22.6770560207947,22.6247177588079,22.694902847039,22.5407007176229,22.709535096641,22.7452143631488,22.5167318963825,22.634861789279,22.2837115771819,22.6295253688469,22.501526302507,22.5546782144287,22.5973639090032,22.4461155205878 +"Q9Y128",14.1205807558007,14.2556243276186,14.6395494799268,14.3481900366584,13.953702318772,14.1074271723322,14.2154558426462,14.3080558762885,14.3311832848801,14.3417848036238,14.4255383072186,14.4379519716267,14.2773994312064,14.3494385168614,14.2769229168201,14.4889316823337,14.4999832055101,13.9993077266832 +"Q9Y136",15.3449513514772,14.9972348102046,14.8585859103107,15.2535170700019,15.0863133992363,15.0205228329977,15.3526257047389,15.2974688569972,15.2013172343843,15.2701830976833,15.3719457210095,15.3604427307201,15.1755867574644,15.3810208869339,15.4070268872083,15.202473088967,15.4653533959511,15.7514414747115 +"Q9Y143",21.1916786715972,21.0409403149968,21.0769354598055,21.199719036121,21.0983042197515,21.1672609199933,20.9113762077304,20.9460480448768,20.878865109885,20.90366901475,20.9172886554291,20.8845706618099,20.714505149273,20.919962575511,20.8740368170213,20.7713544405902,20.7697587094965,20.8106335515467 +"Q9Y156",15.7119134476252,15.8186789805521,15.9140215221049,16.0862975252638,15.9783636401606,15.9154142040898,16.0623899404777,16.1331853244309,16.2346843033989,16.5203098439847,16.2864966108303,16.3129176127276,15.70330764076,16.1949758626126,16.075426128644,16.7501942040708,16.4227121835955,16.3819488312167 +"Q9Y162",20.3925768356999,20.3552208925346,20.299017789262,20.0936054691238,20.2239324027133,20.3181710478678,20.2174795504579,20.244722860458,20.1265923845924,20.0601736075792,20.0712908673992,20.1890326249673,20.3213245829631,20.2578327247524,20.1342919872699,20.0370708071898,19.9692311051562,20.0551250190543 +"Q9Y171",14.2018231005572,14.9031806268793,14.9656795503177,14.835584680756,15.092387025429,15.0113694323529,15.5072433718391,15.0759571385155,15.0655796138587,15.7064679325227,14.9721505626742,15.1092970662148,15.4863443589806,15.1224713070169,15.1787107348272,14.8075091206835,15.3788259048243,15.214336167768 +"R9PY51",21.8799295003849,21.6232621979466,21.9063613035304,21.5921766979978,21.6084294457849,21.5214673807137,21.3933380606893,21.3989476745294,21.570122350522,21.3597635275037,21.5157175101168,21.3631647570633,21.2831621009356,21.443927753095,21.310296921218,21.5425052491165,21.4605905551549,21.3794624235803 +"X2JAU8",21.8511924090255,21.9233879771801,21.9515571780372,22.1341172513662,22.0744743545011,22.0192078721986,21.5238241761841,21.555362001261,21.4972386283253,21.5951973778003,21.6058208995011,21.6514021714056,21.6241803081127,21.6617588663762,21.7250837130564,21.7156997009529,21.6234071246223,21.5997216604187 diff --git a/Mitochondria/OSD-514/Proteomics/a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt b/Mitochondria/OSD-514/Proteomics/a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt new file mode 100644 index 0000000..25298ce --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt @@ -0,0 +1,19 @@ +Sample Name Protocol REF Protocol REF Labeled Extract Name Parameter Value[Run Number] Label Term Source REF Term Accession Number Protocol REF Parameter Value[Instrument] Parameter Value[Chromatography] Parameter Value[Ion Source] Parameter Value[Dissociation] Parameter Value[Detector] Parameter Value[Analyzer] MS Assay Name Raw Spectral Data File Protocol REF Derived Spectral Data File +SFug_M1 protein extraction Labeling SFug_M1 TMTa 127N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTA_20191221.zip Data Transformation GLDS-514_proteomics_TMTa.tar.gz +SFug_M2 protein extraction Labeling SFug_M2 TMTb 127N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTB_20200104.zip Data Transformation GLDS-514_proteomics_TMTb.tar.gz +SFug_M3 protein extraction Labeling SFug_M3 TMTc 127N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTC_20200109.zip Data Transformation GLDS-514_proteomics_TMTc.tar.gz +SFug_F1 protein extraction Labeling SFug_F1 TMTa 126 Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTA_20191221.zip Data Transformation GLDS-514_proteomics_TMTa.tar.gz +SFug_F2 protein extraction Labeling SFug_F2 TMTb 126 Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTB_20200104.zip Data Transformation GLDS-514_proteomics_TMTb.tar.gz +SFug_F3 protein extraction Labeling SFug_F3 TMTc 126 Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTC_20200109.zip Data Transformation GLDS-514_proteomics_TMTc.tar.gz +SF1g_M1 protein extraction Labeling SF1g_M1 TMTa 128N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTA_20191221.zip Data Transformation GLDS-514_proteomics_TMTa.tar.gz +SF1g_M2 protein extraction Labeling SF1g_M2 TMTb 128N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTB_20200104.zip Data Transformation GLDS-514_proteomics_TMTb.tar.gz +SF1g_M3 protein extraction Labeling SF1g_M3 TMTc 128N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTC_20200109.zip Data Transformation GLDS-514_proteomics_TMTc.tar.gz +SF1g_F1 protein extraction Labeling SF1g_F1 TMTa 127C Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTA_20191221.zip Data Transformation GLDS-514_proteomics_TMTa.tar.gz +SF1g_F2 protein extraction Labeling SF1g_F2 TMTb 127C Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTB_20200104.zip Data Transformation GLDS-514_proteomics_TMTb.tar.gz +SF1g_F3 protein extraction Labeling SF1g_F3 TMTc 127C Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTC_20200109.zip Data Transformation GLDS-514_proteomics_TMTc.tar.gz +Earth_M1 protein extraction Labeling Earth_M1 TMTa 129N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTA_20191221.zip Data Transformation GLDS-514_proteomics_TMTa.tar.gz +Earth_M2 protein extraction Labeling Earth_M2 TMTb 129N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTB_20200104.zip Data Transformation GLDS-514_proteomics_TMTb.tar.gz +Earth_M3 protein extraction Labeling Earth_M3 TMTc 129N Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTC_20200109.zip Data Transformation GLDS-514_proteomics_TMTc.tar.gz +Earth_F1 protein extraction Labeling Earth_F1 TMTa 128C Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTA_20191221.zip Data Transformation GLDS-514_proteomics_TMTa.tar.gz +Earth_F2 protein extraction Labeling Earth_F2 TMTb 128C Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTB_20200104.zip Data Transformation GLDS-514_proteomics_TMTb.tar.gz +Earth_F3 protein extraction Labeling Earth_F3 TMTc 128C Mass Spectrometry Orbitrap Fusion UltiMate 3000 RSLCnano system PicoView nanospray source high energy collision-induced dissociation (HCD) Orbitrap SEQUEST and Proteome Discoverer proteomics GLDS-514_proteomics_Flies_TMTC_20200109.zip Data Transformation GLDS-514_proteomics_TMTc.tar.gz diff --git a/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/README.md b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/README.md new file mode 100644 index 0000000..56053e1 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/README.md @@ -0,0 +1,59 @@ +# FragPipe D. melanogaster TMT configuration (brain_awg) + +This folder contains a reproducible **TMT-focused** FragPipe run for your `mzML` files. + +It is designed to avoid the high zero inflation you saw from per-file LFQ by using TMT quantification (`TMT10.workflow` + `TMT-Integrator`). + +## Upstream quant coverage fix (important) + +If protein coverage is very sparse (e.g., only ~500 proteins), use an **MS3 reporter-ion workflow**: + +- Workflow template: `TMT10-MS3.workflow` (not `TMT10.workflow`) +- `tmtintegrator.ms1_int=false` (reporter-ion mode) +- `tmtintegrator.log2transformed=false` +- Relax summarization gates for recovery: + - `tmtintegrator.min_pep_prob=0.0` + - `tmtintegrator.max_pep_prob_thres=1.0` + - `tmtintegrator.min_percent=0.0` + +The runner now defaults to `WORKFLOW_TEMPLATE=TMT10-MS3.workflow` and patches these settings automatically. + +## What this run does + +1. Reuses your D. melanogaster target-decoy FASTA. +2. Builds a TMT manifest grouping files by plex (`TMTA`, `TMTB`, `TMTC`). +3. Auto-generates TMT experiment annotation from assay metadata (`a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt`). +4. Runs FragPipe headless using built-in `TMT10` workflow template. +5. Extracts a clean protein abundance matrix from the TMT output. +6. Exports per-sample `TMT_all`-like text files using PD-like aggregation from `psm.tsv`. + +## Files + +- `run_fragpipe_dmel_tmt.sh` – end-to-end TMT runner. +- `build_tmt_annotation.py` – builds per-plex annotation files from assay metadata (fallback: `TMT_all` headers). +- `extract_tmt_protein_matrix.py` – extracts protein matrix from FragPipe TMT report. +- `export_tmt_all_like_from_psm.py` – high-coverage PD-like export from `psm.tsv` (recommended). +- `export_tmt_all_like.py` – legacy export from `tmt-report` table (lower coverage, not recommended for this dataset). + +## Expected outputs + +- Main FragPipe output directory: + - `work/results/` +- FragPipe run log: + - `logs/fragpipe_tmt_run.log` +- Final protein matrix for downstream DE: + - `work/protein_abundance_tmt_matrix.tsv` +- TMT_all-like per-sample files: + - `/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/TMT_all_from_psm_pdlike_/` + +## How the authors likely processed `TMT_all` + +Based on `i_Investigation.txt` and assay metadata, the published `TMT_all` files were produced with: + +- Thermo **Proteome Discoverer 2.1** +- **SequestHT** database search +- Reporter Ions Quantifier with TMT10 settings (MS3 multi-notch method) +- No cross-channel normalization/scaling in PD export + +This repo reproduces analogous outputs with FragPipe and exports them in the same per-sample text layout. + diff --git a/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/build_tmt_annotation.py b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/build_tmt_annotation.py new file mode 100644 index 0000000..f1f4aee --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/build_tmt_annotation.py @@ -0,0 +1,165 @@ +#!/usr/bin/env python3 +import argparse +import glob +import os +import re +from pathlib import Path +import csv + + +def plex_from_filename(name: str) -> str: + up = name.upper() + if "TMTA" in up: + return "TMTA" + if "TMTB" in up: + return "TMTB" + if "TMTC" in up: + return "TMTC" + raise ValueError(f"Cannot infer plex from filename: {name}") + + +def replicate_from_plex(plex: str) -> int: + return {"TMTA": 1, "TMTB": 2, "TMTC": 3}[plex] + + +def infer_condition(sample_name: str) -> str: + s = sample_name.lower() + if "spaceug" in s: + return "SPACEFLIGHT_MICROGRAVITY" + if "space1g" in s: + return "SPACEFLIGHT_1G" + if "agc" in s: + return "EARTH" + if "pool" in s: + return "BRIDGE_POOL" + return "UNKNOWN" + + +def infer_sample_id(sample_name: str, plex: str) -> str: + # Stable, compact sample ID used by TMT-Integrator. + return f"{sample_name}_{plex}".replace(" ", "_") + + +def canonical_plex(raw: str) -> str: + s = str(raw).strip().upper() + if s in {"TMTA", "TMTA"}: + return "TMTA" + if s in {"TMTB"}: + return "TMTB" + if s in {"TMTC"}: + return "TMTC" + return s + + +def parse_assay_labels(assay_file: str): + plex_to_channel_to_sample = {} + with open(assay_file, "r", errors="ignore", newline="") as f: + reader = csv.DictReader(f, delimiter="\t") + for row in reader: + sample_name = (row.get("Sample Name") or row.get("Labeled Extract Name") or "").strip() + # Some ISA-Tab exports place plex in Run Number and channel in Label. + plex_raw = (row.get("Parameter Value[Run Number]") or row.get("Run Number") or row.get("Label") or "").strip() + channel = (row.get("Label") or row.get("Term Accession Number") or "").strip().upper() + if not sample_name or not plex_raw or not channel: + continue + + plex = canonical_plex(plex_raw) + if plex not in {"TMTA", "TMTB", "TMTC"}: + continue + + sample = infer_sample_id(sample_name, plex) + plex_map = plex_to_channel_to_sample.setdefault(plex, {}) + plex_map.setdefault(channel, sample) + return plex_to_channel_to_sample + + +def parse_tmt_all_headers(tmt_all_dir: str): + tmt_files = sorted(glob.glob(os.path.join(tmt_all_dir, "*.txt"))) + if not tmt_files: + raise SystemExit(f"No .txt files found in {tmt_all_dir}") + + # Extract all entries matching: Abundance: F#: CHANNEL, Sample, n/a, SAMPLE_NAME + patt = re.compile(r"Abundance:\s*[^:]*:\s*([^,]+),\s*Sample,\s*n/a,\s*([^\"\t]+)") + + # FragPipe auto-discovered *annotation.txt format expects 2 whitespace-separated columns: + # + # where labels are channels like 126, 127N, ... and sample_name can be NA to ignore a channel. + plex_to_channel_to_sample = {} + for fp in tmt_files: + fn = os.path.basename(fp) + plex = plex_from_filename(fn) + with open(fp, "r", errors="ignore") as f: + header = f.readline().strip() + + matches = patt.findall(header) + if not matches: + continue + + for channel_raw, sample_raw in matches: + channel = channel_raw.strip().upper() + sample_name = sample_raw.strip() + sample = infer_sample_id(sample_name, plex) + + plex_map = plex_to_channel_to_sample.setdefault(plex, {}) + plex_map.setdefault(channel, sample) + + return plex_to_channel_to_sample + + +def main() -> None: + ap = argparse.ArgumentParser(description="Build FragPipe TMT annotation from TMT_all header files") + ap.add_argument("--tmt-all-dir", required=True) + ap.add_argument("--assay-file", required=False, help="OSD assay metadata TSV for authoritative labeling") + ap.add_argument("--out", required=False, help="Optional single annotation output file") + ap.add_argument("--mzml-dir", required=False, help="If set, write per-plex files: _annotation.txt") + args = ap.parse_args() + + plex_to_channel_to_sample = {} + if args.assay_file and os.path.isfile(args.assay_file): + plex_to_channel_to_sample = parse_assay_labels(args.assay_file) + print(f"Using assay metadata labels from: {args.assay_file}") + + if not plex_to_channel_to_sample: + plex_to_channel_to_sample = parse_tmt_all_headers(args.tmt_all_dir) + print("Using labels parsed from TMT_all headers") + + if not plex_to_channel_to_sample: + raise SystemExit("No abundance descriptors parsed from TMT_all headers.") + + # TMT10 labels in canonical order; missing labels are set to NA so they are ignored. + ordered_labels = ["126", "127N", "127C", "128N", "128C", "129N", "129C", "130N", "130C", "131N"] + wrote = [] + + # Optional single output (uses TMTA if available, otherwise first plex). + if args.out: + pref = "TMTA" if "TMTA" in plex_to_channel_to_sample else sorted(plex_to_channel_to_sample.keys())[0] + rows = [(label, plex_to_channel_to_sample[pref].get(label, "NA")) for label in ordered_labels] + out = Path(args.out) + out.parent.mkdir(parents=True, exist_ok=True) + with out.open("w") as w: + for r in rows: + w.write("\t".join(map(str, r)) + "\n") + wrote.append(str(out)) + + # Preferred mode: one file per plex, e.g. TMTA_annotation.txt. + if args.mzml_dir: + mzml_dir = Path(args.mzml_dir) + mzml_dir.mkdir(parents=True, exist_ok=True) + for plex in sorted(plex_to_channel_to_sample.keys()): + rows = [(label, plex_to_channel_to_sample[plex].get(label, "NA")) for label in ordered_labels] + out = mzml_dir / f"{plex}_annotation.txt" + with out.open("w") as w: + for r in rows: + w.write("\t".join(map(str, r)) + "\n") + wrote.append(str(out)) + + if not wrote: + raise SystemExit("Please provide --out and/or --mzml-dir") + + print("Wrote annotation files:") + for p in wrote: + print(f" - {p}") + + +if __name__ == "__main__": + main() diff --git a/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/export_tmt_all_like.py b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/export_tmt_all_like.py new file mode 100644 index 0000000..63835c2 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/export_tmt_all_like.py @@ -0,0 +1,186 @@ +#!/usr/bin/env python3 +import argparse +from pathlib import Path +import pandas as pd + + +def normalize_plex(label: str) -> str: + s = str(label).strip().upper() + if s == "TMTA": + return "TMTA" + if s == "TMTB": + return "TMTB" + if s == "TMTC": + return "TMTC" + raise ValueError(f"Unknown plex label: {label}") + + +def plex_to_display(plex: str) -> str: + return {"TMTA": "TMTa", "TMTB": "TMTb", "TMTC": "TMTc"}[plex] + + +def plex_to_fraction(plex: str) -> str: + # Mirrors author header style seen in TMT_all. + return {"TMTA": "F5", "TMTB": "F5", "TMTC": "F8"}[plex] + + +def accession_from_protein(protein: str) -> str: + if pd.isna(protein): + return "" + first = str(protein).split(";")[0] + parts = first.split("|") + if len(parts) >= 3: + return parts[1] + return first + + +def load_plex_protein_metrics(results_dir: Path, plex: str) -> pd.DataFrame: + fp = results_dir / plex / "protein.tsv" + if not fp.exists(): + raise FileNotFoundError(fp) + + cols = [ + "Protein", + "Protein Description", + "Coverage", + "Total Peptides", + "Total Spectral Count", + "Unique Peptides", + ] + df = pd.read_csv(fp, sep="\t", usecols=cols) + return df + + +def build_sample_mapping(assay_file: Path) -> pd.DataFrame: + m = pd.read_csv(assay_file, sep="\t") + out = m[["Sample Name", "Parameter Value[Run Number]", "Label"]].copy() + out = out.rename( + columns={ + "Sample Name": "sample", + "Parameter Value[Run Number]": "plex_display", + "Label": "channel", + } + ) + out["plex"] = out["plex_display"].str.upper().map({"TMTA": "TMTA", "TMTB": "TMTB", "TMTC": "TMTC"}) + out["channel"] = out["channel"].astype(str).str.upper() + out = out.dropna(subset=["sample", "plex", "channel"]).copy() + + # Add the two bridge pool channels per plex to mimic author outputs. + pools = [] + for plex in ["TMTA", "TMTB", "TMTC"]: + pools.append({"sample": "pool_1", "plex": plex, "channel": "130C"}) + pools.append({"sample": "pool_2", "plex": plex, "channel": "131N"}) + out = pd.concat([out, pd.DataFrame(pools)], ignore_index=True) + + return out + + +def write_non_pool_file(df: pd.DataFrame, out_file: Path, frac: str, channel: str, sample: str): + abundance_col = f"Abundance: {frac}: {channel}, Sample, n/a, {sample}" + count_col = f"Abundances Count: {frac}: {channel}, Sample, n/a, {sample}" + + out = pd.DataFrame( + { + "Accession": df["Accession"], + "Description": df["Protein Description"], + "Coverage [%]": df["Coverage"], + "# Peptides": df["Total Peptides"], + "# PSMs": df["Total Spectral Count"], + "# Unique Peptides": df["Unique Peptides"], + abundance_col: df["ABUNDANCE"], + count_col: df["NumberPSM"], + "Modifications": "", + } + ) + out.to_csv(out_file, sep="\t", index=False) + + +def write_pool_file(df: pd.DataFrame, out_file: Path, frac: str): + c1 = "130C" + c2 = "131N" + h1 = f"Abundance: {frac}: {c1}, Sample, n/a, ctrl_pool_1" + h2 = f"Abundance: {frac}: {c2}, Sample, n/a, ctrl_pool_2" + + out = pd.DataFrame( + { + "Accession": df["Accession"], + "Description": df["Protein Description"], + "Coverage [%]": df["Coverage"], + "# Peptides": df["Total Peptides"], + "# PSMs": df["Total Spectral Count"], + "# Unique Peptides": df["Unique Peptides"], + h1: df.get("ABUNDANCE_130C", pd.NA), + h2: df.get("ABUNDANCE_131N", pd.NA), + "Modifications": "", + } + ) + out.to_csv(out_file, sep="\t", index=False) + + +def main(): + ap = argparse.ArgumentParser(description="Export FragPipe results into TMT_all-like per-sample TXT tables") + ap.add_argument("--results-dir", type=Path, required=True) + ap.add_argument("--assay-file", type=Path, required=True) + ap.add_argument("--out-dir", type=Path, required=True) + args = ap.parse_args() + + ab_file = args.results_dir / "tmt-report" / "abundance_protein_MD.tsv" + if not ab_file.exists(): + raise SystemExit(f"Missing abundance table: {ab_file}") + + ab = pd.read_csv(ab_file, sep="\t") + ab["Accession"] = ab["Protein"].map(accession_from_protein) + + sample_map = build_sample_mapping(args.assay_file) + args.out_dir.mkdir(parents=True, exist_ok=True) + + written = [] + + for plex in ["TMTA", "TMTB", "TMTC"]: + frac = plex_to_fraction(plex) + disp = plex_to_display(plex) + + metrics = load_plex_protein_metrics(args.results_dir, plex) + merged = ab.merge(metrics, on="Protein", how="left", suffixes=("", "_metrics")) + + # Write 6 biological sample files for this plex. + sub = sample_map[(sample_map["plex"] == plex) & (~sample_map["sample"].str.startswith("pool_"))] + for _, r in sub.iterrows(): + ch = r["channel"] + sample = str(r["sample"]) + ch_col = f"{plex}_{ch}" + if ch_col not in merged.columns: + continue + + tmp = merged.copy() + tmp["ABUNDANCE"] = pd.to_numeric(tmp[ch_col], errors="coerce") + tmp = tmp[tmp["ABUNDANCE"].notna()].copy() + if tmp.empty: + continue + + out_file = args.out_dir / f"{sample}_{disp}.txt" + write_non_pool_file(tmp, out_file, frac, ch, sample) + written.append(out_file) + + # Write one pool file per plex (two abundance columns). + ch1 = f"{plex}_130C" + ch2 = f"{plex}_131N" + tmp = merged.copy() + if ch1 in tmp.columns: + tmp["ABUNDANCE_130C"] = pd.to_numeric(tmp[ch1], errors="coerce") + if ch2 in tmp.columns: + tmp["ABUNDANCE_131N"] = pd.to_numeric(tmp[ch2], errors="coerce") + keep = tmp[[c for c in ["ABUNDANCE_130C", "ABUNDANCE_131N"] if c in tmp.columns]].notna().any(axis=1) + tmp = tmp[keep].copy() + if not tmp.empty: + out_file = args.out_dir / f"pool_{disp}.txt" + write_pool_file(tmp, out_file, frac) + written.append(out_file) + + print(f"Wrote {len(written)} files to: {args.out_dir}") + for p in sorted(written): + print(f" - {p.name}") + + +if __name__ == "__main__": + main() diff --git a/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py new file mode 100644 index 0000000..141cf12 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py @@ -0,0 +1,194 @@ +#!/usr/bin/env python3 +import argparse +from pathlib import Path +import pandas as pd + + +def accession_from_protein(protein: str) -> str: + if pd.isna(protein): + return "" + first = str(protein).split(";")[0] + parts = first.split("|") + if len(parts) >= 3: + return parts[1] + return first + + +def plex_to_display(plex: str) -> str: + return {"TMTA": "TMTa", "TMTB": "TMTb", "TMTC": "TMTc"}[plex] + + +def plex_to_fraction(plex: str) -> str: + # Mirror author headers in TMT_all. + return {"TMTA": "F5", "TMTB": "F5", "TMTC": "F8"}[plex] + + +def channel_display(ch: str) -> str: + # Author files use 131 (not 131N) in header text. + return "131" if str(ch).upper() == "131N" else str(ch).upper() + + +def load_mapping(assay_file: Path) -> pd.DataFrame: + m = pd.read_csv(assay_file, sep="\t") + out = m[["Sample Name", "Parameter Value[Run Number]", "Label"]].copy() + out.columns = ["sample", "plex_display", "channel"] + out["plex"] = out["plex_display"].str.upper() + out["channel"] = out["channel"].astype(str).str.upper() + + # Add bridge pools per plex, as seen in author files. + pools = [] + for plex in ["TMTA", "TMTB", "TMTC"]: + pools.append({"sample": "ctrl_pool_1", "plex": plex, "channel": "130C"}) + pools.append({"sample": "ctrl_pool_2", "plex": plex, "channel": "131N"}) + out = pd.concat([out[["sample", "plex", "channel"]], pd.DataFrame(pools)], ignore_index=True) + return out + + +def load_protein_metrics(results_dir: Path, plex: str) -> pd.DataFrame: + fp = results_dir / plex / "protein.tsv" + cols = [ + "Protein", + "Protein Description", + "Coverage", + "Total Peptides", + "Total Spectral Count", + "Unique Peptides", + ] + m = pd.read_csv(fp, sep="\t", usecols=cols) + return m + + +def aggregate_psm_to_protein(results_dir: Path, plex: str, q_cut: float, p_cut: float, purity_cut: float) -> pd.DataFrame: + psm = pd.read_csv(results_dir / plex / "psm.tsv", sep="\t") + + # PD-like quality filters. + filt = (psm["Qvalue"] <= q_cut) & (psm["Probability"] >= p_cut) + if "Purity" in psm.columns: + filt &= psm["Purity"].fillna(0) >= purity_cut + psm = psm[filt].copy() + + reporter_cols = [f"Intensity {plex}_{c}" for c in ["126", "127N", "127C", "128N", "128C", "129N", "129C", "130N", "130C", "131N"]] + existing_reporters = [c for c in reporter_cols if c in psm.columns] + + keep_cols = ["Protein", "Qvalue", "Probability"] + existing_reporters + psm = psm[keep_cols].copy() + + # Sum reporter intensities per protein. + agg_sum = psm.groupby("Protein", as_index=False)[existing_reporters].sum(min_count=1) + + # Per-channel contributing-PSM count (non-null, >0). + counts = psm[["Protein"] + existing_reporters].copy() + for c in existing_reporters: + counts[c] = pd.to_numeric(counts[c], errors="coerce").fillna(0) > 0 + agg_count = counts.groupby("Protein", as_index=False)[existing_reporters].sum() + agg_count = agg_count.rename(columns={c: c.replace("Intensity ", "Count ") for c in existing_reporters}) + + out = agg_sum.merge(agg_count, on="Protein", how="left") + return out + + +def write_non_pool(df: pd.DataFrame, out_file: Path, frac: str, ch: str, sample: str): + ch_disp = channel_display(ch) + abundance_col = f"Abundance: {frac}: {ch_disp}, Sample, n/a, {sample}" + count_col = f"Abundances Count: {frac}: {ch_disp}, Sample, n/a, {sample}" + + out = pd.DataFrame( + { + "Accession": df["Accession"], + "Description": df["Protein Description"], + "Coverage [%]": df["Coverage"], + "# Peptides": df["Total Peptides"], + "# PSMs": df["Total Spectral Count"], + "# Unique Peptides": df["Unique Peptides"], + abundance_col: df["ABUNDANCE"], + count_col: df["ABUND_COUNT"], + "Modifications": "", + } + ) + out.to_csv(out_file, sep="\t", index=False) + + +def write_pool(df: pd.DataFrame, out_file: Path, frac: str): + h1 = f"Abundance: {frac}: 130C, Sample, n/a, ctrl_pool_1" + h2 = f"Abundance: {frac}: 131, Sample, n/a, ctrl_pool_2" + + out = pd.DataFrame( + { + "Accession": df["Accession"], + "Description": df["Protein Description"], + "Coverage [%]": df["Coverage"], + "# Peptides": df["Total Peptides"], + "# PSMs": df["Total Spectral Count"], + "# Unique Peptides": df["Unique Peptides"], + h1: df["ABUNDANCE_130C"], + h2: df["ABUNDANCE_131N"], + "Modifications": "", + } + ) + out.to_csv(out_file, sep="\t", index=False) + + +def main(): + ap = argparse.ArgumentParser(description="Export TMT_all-like files using PD-like aggregation from psm.tsv") + ap.add_argument("--results-dir", type=Path, required=True) + ap.add_argument("--assay-file", type=Path, required=True) + ap.add_argument("--out-dir", type=Path, required=True) + ap.add_argument("--qvalue", type=float, default=0.01) + ap.add_argument("--probability", type=float, default=0.90) + ap.add_argument("--purity", type=float, default=0.50) + args = ap.parse_args() + + mapping = load_mapping(args.assay_file) + args.out_dir.mkdir(parents=True, exist_ok=True) + + written = [] + for plex in ["TMTA", "TMTB", "TMTC"]: + disp = plex_to_display(plex) + frac = plex_to_fraction(plex) + + agg = aggregate_psm_to_protein(args.results_dir, plex, args.qvalue, args.probability, args.purity) + metrics = load_protein_metrics(args.results_dir, plex) + merged = metrics.merge(agg, on="Protein", how="left") + merged["Accession"] = merged["Protein"].map(accession_from_protein) + + # Biological sample files. + smap = mapping[(mapping["plex"] == plex) & (~mapping["sample"].str.startswith("ctrl_pool"))] + for _, r in smap.iterrows(): + sample = str(r["sample"]) + ch = str(r["channel"]).upper() + i_col = f"Intensity {plex}_{ch}" + c_col = f"Count {plex}_{ch}" + if i_col not in merged.columns: + continue + + tmp = merged.copy() + tmp["ABUNDANCE"] = pd.to_numeric(tmp[i_col], errors="coerce") + tmp["ABUND_COUNT"] = pd.to_numeric(tmp.get(c_col, 0), errors="coerce").fillna(0).astype(int) + tmp = tmp[tmp["ABUNDANCE"].notna() & (tmp["ABUNDANCE"] > 0)].copy() + if tmp.empty: + continue + + out_file = args.out_dir / f"{sample}_{disp}.txt" + write_non_pool(tmp, out_file, frac, ch, sample) + written.append(out_file) + + # Pool file (130C + 131N columns). + c1 = f"Intensity {plex}_130C" + c2 = f"Intensity {plex}_131N" + if c1 in merged.columns and c2 in merged.columns: + tmp = merged.copy() + tmp["ABUNDANCE_130C"] = pd.to_numeric(tmp[c1], errors="coerce") + tmp["ABUNDANCE_131N"] = pd.to_numeric(tmp[c2], errors="coerce") + tmp = tmp[(tmp["ABUNDANCE_130C"].fillna(0) > 0) | (tmp["ABUNDANCE_131N"].fillna(0) > 0)].copy() + if not tmp.empty: + out_file = args.out_dir / f"pool_{disp}.txt" + write_pool(tmp, out_file, frac) + written.append(out_file) + + print(f"Wrote {len(written)} files to {args.out_dir}") + for p in sorted(written): + print(f" - {p.name}") + + +if __name__ == "__main__": + main() diff --git a/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/extract_tmt_protein_matrix.py b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/extract_tmt_protein_matrix.py new file mode 100644 index 0000000..459ae68 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/extract_tmt_protein_matrix.py @@ -0,0 +1,126 @@ +#!/usr/bin/env python3 +import argparse +import csv +import re +from pathlib import Path + + +def find_tmt_protein_table(workdir: Path): + candidates = [] + patterns = [ + "*abundance_protein*.tsv", # e.g. tmt-report/abundance_protein_MD.tsv + "*ratio_protein*.tsv", # e.g. tmt-report/ratio_protein_MD.tsv + "*protein*report*.tsv", + "*tmt*protein*.tsv", + "*protein*.tsv", + ] + for pat in patterns: + candidates.extend(workdir.rglob(pat)) + + # Keep TSV files only and prioritize abundance protein table from tmt-report. + uniq = [] + seen = set() + for p in candidates: + if p.suffix.lower() != ".tsv": + continue + s = str(p) + if s in seen: + continue + seen.add(s) + uniq.append(p) + + def rank(p: Path): + n = p.name.lower() + full = str(p).lower() + return ( + "abundance_protein" not in n, + "tmt-report" not in full, + "ratio_" in n, + "combined_" in n, + len(full), + full, + ) + + candidates = sorted(uniq, key=rank) + return candidates[0] if candidates else None + + +def load_channel_rename_map(workdir: Path): + channel_map = {} + for plex in ("TMTA", "TMTB", "TMTC"): + ann = workdir / plex / f"{plex}_annotation.txt" + if not ann.exists(): + continue + with ann.open() as f: + for line in f: + line = line.strip() + if not line: + continue + parts = re.split(r"\s+", line) + if len(parts) < 2: + continue + label = parts[0].strip().upper() + sample = parts[1].strip() + if sample.upper() == "NA": + continue + channel_map[f"{plex}_{label}"] = sample + return channel_map + + +def main(): + ap = argparse.ArgumentParser(description="Extract a clean protein x sample matrix from FragPipe TMT output") + ap.add_argument("--workdir", required=True, type=Path) + ap.add_argument("--out", required=True, type=Path) + args = ap.parse_args() + + inp = find_tmt_protein_table(args.workdir) + if inp is None: + raise SystemExit(f"ERROR: could not find TMT protein table under {args.workdir}") + + rename_map = load_channel_rename_map(args.workdir) + + with inp.open(newline="") as f: + r = csv.DictReader(f, delimiter="\t") + if not r.fieldnames: + raise SystemExit(f"ERROR: no header in {inp}") + + fields = r.fieldnames + id_col = "Protein" if "Protein" in fields else fields[0] + gene_col = "Gene" if "Gene" in fields else ("Mapped Genes" if "Mapped Genes" in fields else None) + + # Keep abundance/intensity-like sample columns. + tmt_channel_re = re.compile(r"^(TMT[A-Z0-9]+)_(126|127N|127C|128N|128C|129N|129C|130N|130C|131N?|132N|132C|133N|133C|134N)$", re.IGNORECASE) + sample_cols = [] + for c in fields: + cl = c.lower() + if "count" in cl: + continue + if any(k in cl for k in ["abundance", "intensity", "reporter", "ratio"]): + sample_cols.append(c) + continue + if tmt_channel_re.match(c): + sample_cols.append(c) + + if not sample_cols: + raise SystemExit("ERROR: no abundance/intensity-like columns found in TMT table") + + rows = list(r) + + args.out.parent.mkdir(parents=True, exist_ok=True) + with args.out.open("w", newline="") as w: + wr = csv.writer(w, delimiter="\t") + matrix_cols = [id_col] + ([gene_col] if gene_col else []) + sample_cols + out_head = [id_col] + ([gene_col] if gene_col else []) + [rename_map.get(c, c) for c in sample_cols] + wr.writerow(out_head) + for row in rows: + wr.writerow([row.get(c, "") for c in matrix_cols]) + + print(f"Input table: {inp}") + print(f"Output matrix: {args.out}") + print(f"Rows: {len(rows)} | Sample columns: {len(sample_cols)}") + if rename_map: + print(f"Applied metadata label remap for {len(rename_map)} channels from annotation files") + + +if __name__ == "__main__": + main() diff --git a/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh new file mode 100644 index 0000000..87ea2f1 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh @@ -0,0 +1,207 @@ +#!/usr/bin/env bash +set -euo pipefail + +# ----------------------------- +# User-configurable paths +# ----------------------------- +BASE_DIR="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt" +MZML_DIR="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/mzML" +TMT_ALL_DIR="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/TMT_all" +ASSAY_LABEL_FILE="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt" +TOOLS_DIR="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/syn52065646_LongRead/jaquino_analysis/fragpipe_tools" +SIF="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/syn52065646_LongRead/jaquino_analysis/brain_cDNA_discovery/singularity_containers/fragpipe_latest.sif" +THREADS="${THREADS:-24}" +WORKFLOW_TEMPLATE="${WORKFLOW_TEMPLATE:-TMT10-MS3.workflow}" + +# Reuse FASTA from LFQ setup if already present. +FALLBACK_DB="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_lfq/db/dmel_UP000000803_uniprot_target_decoy.fasta" + +MANIFEST_DIR="${BASE_DIR}/manifests" +DB_DIR="${BASE_DIR}/db" +WORK_DIR="${BASE_DIR}/work" +LOG_DIR="${BASE_DIR}/logs" +RUN_SUBDIR="${RUN_SUBDIR:-results}" +OUT_DIR="${WORK_DIR}/${RUN_SUBDIR}" +CACHE_BIND_DIR="${WORK_DIR}/fragpipe_cache" +JOBS_BIND_DIR="${WORK_DIR}/fragpipe_jobs" + +TARGET_DECOY_FASTA="${DB_DIR}/dmel_UP000000803_uniprot_target_decoy.fasta" +MANIFEST_FILE="${MANIFEST_DIR}/brain_awg_tmt.fp-manifest" +WORKFLOW_FILE="${MANIFEST_DIR}/brain_awg_dmel_tmt10.workflow" + +mkdir -p "${MANIFEST_DIR}" "${DB_DIR}" "${WORK_DIR}" "${OUT_DIR}" "${LOG_DIR}" "${CACHE_BIND_DIR}" "${JOBS_BIND_DIR}" + +if [[ ! -f "${SIF}" ]]; then + echo "ERROR: FragPipe container not found: ${SIF}" >&2 + exit 1 +fi +if [[ ! -d "${TOOLS_DIR}" ]]; then + echo "ERROR: FragPipe tools folder not found: ${TOOLS_DIR}" >&2 + exit 1 +fi + +# 1) FASTA +if [[ -s "${TARGET_DECOY_FASTA}" ]]; then + echo "[1/6] Using existing FASTA: ${TARGET_DECOY_FASTA}" +elif [[ -s "${FALLBACK_DB}" ]]; then + echo "[1/6] Copying FASTA from LFQ setup" + cp -f "${FALLBACK_DB}" "${TARGET_DECOY_FASTA}" +else + echo "ERROR: target-decoy FASTA not found. Expected one of:" >&2 + echo " - ${TARGET_DECOY_FASTA}" >&2 + echo " - ${FALLBACK_DB}" >&2 + exit 1 +fi + +# 2) Manifest: all mzML files grouped by plex (TMTA/TMTB/TMTC) +echo "[2/6] Generating TMT manifest..." +python3 - << 'PY' +from pathlib import Path +import re + +mzml_dir = Path('/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/mzML') +out = Path('/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt/manifests/brain_awg_tmt.fp-manifest') + +rows = [] +for p in sorted(mzml_dir.glob('*.mzML')): + n = p.name.upper() + if 'TMTA' in n: + plex = 'TMTA' + elif 'TMTB' in n: + plex = 'TMTB' + elif 'TMTC' in n: + plex = 'TMTC' + else: + continue + rows.append((str(p), plex)) + +if not rows: + raise SystemExit('No TMTA/TMTB/TMTC mzML files found') + +with out.open('w') as w: + for p, plex in rows: + w.write(f"{p}\t{plex}\n") + +print(f"Wrote {len(rows)} manifest rows -> {out}") +PY + +# 3) Build per-plex TMT annotation files in mzML folder (FragPipe expects _annotation.txt) +echo "[3/6] Generating TMT annotation file..." +# Clear old annotation files to avoid parser ambiguity +find "${MZML_DIR}" -maxdepth 1 -type f -name '*annotation.txt' -delete + +python3 "/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt/build_tmt_annotation.py" \ + --tmt-all-dir "${TMT_ALL_DIR}" \ + --assay-file "${ASSAY_LABEL_FILE}" \ + --mzml-dir "${MZML_DIR}" + +# Ensure expected per-plex annotation files exist. +for plex in TMTA TMTB TMTC; do + if [[ ! -s "${MZML_DIR}/${plex}_annotation.txt" ]]; then + echo "ERROR: missing annotation file ${MZML_DIR}/${plex}_annotation.txt" >&2 + exit 1 + fi + + # Headless FragPipe expects annotation paths under workdir//_annotation.txt. + mkdir -p "${OUT_DIR}/${plex}" + cp -f "${MZML_DIR}/${plex}_annotation.txt" "${OUT_DIR}/${plex}/${plex}_annotation.txt" +done + +extra_ann_count=$(find "${MZML_DIR}" -maxdepth 1 -type f -name '*annotation.txt' | wc -l) +if [[ "${extra_ann_count}" -lt 3 ]]; then + echo "ERROR: expected at least 3 per-plex annotation files in ${MZML_DIR}, found ${extra_ann_count}" >&2 + find "${MZML_DIR}" -maxdepth 1 -type f -name '*annotation.txt' -print >&2 || true + exit 1 +fi + +# 4) Build workflow from FragPipe TMT template and patch database/ref tag +echo "[4/7] Creating workflow from FragPipe ${WORKFLOW_TEMPLATE} template..." +singularity exec "${SIF}" bash -lc \ + "cat /fragpipe_bin/fragpipe-24.0/fragpipe-24.0/workflows/${WORKFLOW_TEMPLATE}" > "${WORKFLOW_FILE}" + +python3 - << 'PY' +from pathlib import Path +wf = Path('/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt/manifests/brain_awg_dmel_tmt10.workflow') +db = '/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt/db/dmel_UP000000803_uniprot_target_decoy.fasta' +lines = wf.read_text().splitlines() +out = [] +set_db = False +set_ref = False +for line in lines: + if line.startswith('database.db-path='): + out.append(f'database.db-path={db}') + set_db = True + elif line.startswith('tmtintegrator.ref_tag='): + out.append('tmtintegrator.ref_tag=ctrl_pool') + set_ref = True + elif line.startswith('tmtintegrator.ms1_int='): + out.append('tmtintegrator.ms1_int=false') + elif line.startswith('tmtintegrator.log2transformed='): + out.append('tmtintegrator.log2transformed=false') + elif line.startswith('tmtintegrator.min_percent='): + out.append('tmtintegrator.min_percent=0.0') + elif line.startswith('tmtintegrator.max_pep_prob_thres='): + out.append('tmtintegrator.max_pep_prob_thres=1.0') + elif line.startswith('tmtintegrator.min_pep_prob='): + out.append('tmtintegrator.min_pep_prob=0.0') + else: + out.append(line) +if not set_db: + out.insert(0, f'database.db-path={db}') +if not set_ref: + out.append('tmtintegrator.ref_tag=ctrl_pool') +# Ensure reporter-ion quant mode settings are present even if missing in template. +if not any(l.startswith('tmtintegrator.ms1_int=') for l in out): + out.append('tmtintegrator.ms1_int=false') +if not any(l.startswith('tmtintegrator.log2transformed=') for l in out): + out.append('tmtintegrator.log2transformed=false') +if not any(l.startswith('tmtintegrator.min_percent=') for l in out): + out.append('tmtintegrator.min_percent=0.0') +if not any(l.startswith('tmtintegrator.max_pep_prob_thres=') for l in out): + out.append('tmtintegrator.max_pep_prob_thres=1.0') +if not any(l.startswith('tmtintegrator.min_pep_prob=') for l in out): + out.append('tmtintegrator.min_pep_prob=0.0') +wf.write_text('\n'.join(out) + '\n') +print(f'Patched workflow: {wf}') +PY + +# 5) Run FragPipe headless +# Keep MZML + annotation path bound and set locale for MSFragger runtime stability. +echo "[5/7] Running FragPipe TMT headless (this can take many hours)..." +set -x +singularity exec \ + --cleanenv \ + --bind "/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/" \ + --bind "${CACHE_BIND_DIR}:/fragpipe_bin/fragpipe-24.0/fragpipe-24.0/cache" \ + --bind "${JOBS_BIND_DIR}:/fragpipe_bin/fragpipe-24.0/fragpipe-24.0/jobs" \ + --env "LC_ALL=C.utf8" \ + --env "LANG=C.utf8" \ + "${SIF}" \ + /fragpipe_bin/fragpipe-24.0/fragpipe-24.0/bin/fragpipe --headless \ + --workflow "${WORKFLOW_FILE}" \ + --manifest "${MANIFEST_FILE}" \ + --workdir "${OUT_DIR}" \ + --config-tools-folder "${TOOLS_DIR}" \ + --threads "${THREADS}" \ + |& tee "${LOG_DIR}/fragpipe_tmt_run.log" +set +x + +# 6) Extract a clean protein matrix from TMT report +echo "[6/7] Extracting protein matrix from TMT output..." +python3 "/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt/extract_tmt_protein_matrix.py" \ + --workdir "${OUT_DIR}" \ + --out "${WORK_DIR}/protein_abundance_tmt_matrix.tsv" + +# 7) Export per-sample files in TMT_all-like format +echo "[7/7] Exporting TMT_all-like per-sample txt files..." +TMT_ALL_EXPORT_DIR="/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/TMT_all_from_psm_pdlike_${RUN_SUBDIR}" +python3 "/home/AD.UNLV.EDU/Shared_Data/AlternativeSplicing/brain_awg/proteomics/fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py" \ + --results-dir "${OUT_DIR}" \ + --assay-file "${ASSAY_LABEL_FILE}" \ + --out-dir "${TMT_ALL_EXPORT_DIR}" + +echo "Done. Outputs:" +echo " - FragPipe result dir: ${OUT_DIR}" +echo " - Run log: ${LOG_DIR}/fragpipe_tmt_run.log" +echo " - Protein abundance matrix: ${WORK_DIR}/protein_abundance_tmt_matrix.tsv" +echo " - TMT_all-like files (PD-like PSM aggregation): ${TMT_ALL_EXPORT_DIR}" diff --git a/Mitochondria/OSD-514/Proteomics/sample_metadata_ms3fix.csv b/Mitochondria/OSD-514/Proteomics/sample_metadata_ms3fix.csv new file mode 100644 index 0000000..9cef400 --- /dev/null +++ b/Mitochondria/OSD-514/Proteomics/sample_metadata_ms3fix.csv @@ -0,0 +1,19 @@ +"sample","tmt_run","condition","sex" +"Earth_F1","TMTa","Earth","Female" +"Earth_F2","TMTb","Earth","Female" +"Earth_F3","TMTc","Earth","Female" +"Earth_M1","TMTa","Earth","Male" +"Earth_M2","TMTb","Earth","Male" +"Earth_M3","TMTc","Earth","Male" +"SF1g_F1","TMTa","SF1g","Female" +"SF1g_F2","TMTb","SF1g","Female" +"SF1g_F3","TMTc","SF1g","Female" +"SF1g_M1","TMTa","SF1g","Male" +"SF1g_M2","TMTb","SF1g","Male" +"SF1g_M3","TMTc","SF1g","Male" +"SFug_F1","TMTa","SFug","Female" +"SFug_F2","TMTb","SFug","Female" +"SFug_F3","TMTc","SFug","Female" +"SFug_M1","TMTa","SFug","Male" +"SFug_M2","TMTb","SFug","Male" +"SFug_M3","TMTc","SFug","Male" diff --git a/Mitochondria/README.md b/Mitochondria/README.md index 42d5e3b..74d1298 100644 --- a/Mitochondria/README.md +++ b/Mitochondria/README.md @@ -1,11 +1,407 @@ -# Mitochondria Subgroup +# OSD514 TMT proteomics processing workflow -Stressors present in spaceflight such as microgravity and cosmic radiation have been shown to drive immune dysregulation, musculoskeletal atrophy, and increased cancer risk. Spaceflight-induced mitochondrial dysfunction also plays an established role in Alzheimer’s disease (AD) pathology. A multi-omics approach integrating RNA-seq, proteomics, and GSEA was used to assess concordance in mitochondrial pathway enrichment across three Drosophila datasets: spaceflight-exposed flies (OSD-514), a Tau-driven neurodegeneration model (EmoryTau), and a gamma radiation dataset included as a specificity control. +This repository documents and preserves the processing workflow used to generate +the files in `RESULTS_OSD514_ms3fix` from the NASA/OSD514 Drosophila TMT +proteomics raw data. -This directory holds information and code used in the Brain AWG Mitochondria subgroup projects. Click on a specific dataset below to learn more. +The workflow starts from Thermo RAW files named like `NASA_Flies_TMT*.raw`, +converts them to `mzML`, processes the multiplexed TMT data with FragPipe, exports +Proteome Discoverer-like per-sample protein abundance tables, and then performs +limma differential expression and GO enrichment analysis in R. -## Dataset Directory: +## Repository layout -- [OSD-514](OSD-514) : Drosophila melanogaster (Spaceflight condition) -- [syn2580853](syn2580853): Drosophila melanogaster (AD condition) -- [PRJNA747152](PRJNA747152): Drosophila melanogaster (Radiation condition) +```text +. +|-- a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt +|-- fragpipe_dmel_tmt/ +| |-- run_fragpipe_dmel_tmt.sh +| |-- build_tmt_annotation.py +| |-- extract_tmt_protein_matrix.py +| `-- export_tmt_all_like_from_psm.py +|-- TMT_all_from_psm_pdlike_ms3fix/ +|-- TMT_expression_matrix_ms3fix.csv +|-- TMT_expression_matrix_ms3fix_batch_corrected.csv +|-- sample_metadata_ms3fix.csv +|-- GEN_PROTEOMICS_SCRIPT_ms3fix.r +`-- RESULTS_OSD514_ms3fix/ +``` + +## Inputs + +The workflow uses these main inputs: + +- `NASA_Flies_TMT*.raw`: Thermo Orbitrap Fusion raw files for the TMT plexes. + These raw files are not stored in this repository. +- `mzML/*.mzML`: RAW files converted to mzML, for example with + ThermoRawFileParser. The FragPipe runner expects the file names to contain + `TMTA`, `TMTB`, or `TMTC` so files can be assigned to the correct TMT plex. +- `a_OSD-514_protein-expression-profiling_mass-spectrometry_Orbitrap Fusion.txt`: + assay metadata mapping each sample to its TMT run and reporter channel. +- `dmel_UP000000803_uniprot_target_decoy.fasta`: D. melanogaster target-decoy + FASTA used by FragPipe. + +## Processing overview + +```text +NASA_Flies_TMT*.raw + -> mzML conversion with ThermoRawFileParser + -> FragPipe TMT10-MS3 workflow + -> FragPipe per-plex protein.tsv and psm.tsv + -> PD-like per-sample TMT_all files + -> protein x sample expression matrix + -> limma differential expression + -> PCA, heatmap, volcano plots, fgsea, FlyEnrichr outputs + -> RESULTS_OSD514_ms3fix/ +``` + +## 1. Convert RAW files to mzML + +The raw-to-mzML conversion is required before running FragPipe, but this +conversion step is not currently scripted in this repository. Thermo RAW files +can be converted with ThermoRawFileParser, which supports Thermo `.raw` input +and mzML output on Linux, macOS, and Windows. + +Directory conversion: + +```bash +mkdir -p mzML + +ThermoRawFileParser \ + -d=/path/to/NASA_Flies_raw_files \ + -o=/path/to/mzML \ + -f=1 +``` + +The downstream FragPipe script assumes converted files are in an `mzML` +directory and that each filename identifies the TMT plex, for example `TMTA`, +`TMTB`, or `TMTC`. + +## 2. Run FragPipe TMT processing + +FragPipe processing is configured in: + +```text +fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh +``` + +Important implementation details: + +- The runner uses the built-in FragPipe `TMT10-MS3.workflow` template. +- The workflow is patched to use reporter-ion mode: + - `tmtintegrator.ms1_int=false` + - `tmtintegrator.log2transformed=false` + - `tmtintegrator.ref_tag=ctrl_pool` + - relaxed TMT-Integrator peptide summarization gates +- `build_tmt_annotation.py` reads the assay metadata and writes one annotation + file per plex: + - `TMTA_annotation.txt` + - `TMTB_annotation.txt` + - `TMTC_annotation.txt` +- A FragPipe manifest is built by assigning every `.mzML` file to `TMTA`, + `TMTB`, or `TMTC` from the filename. + +Before rerunning elsewhere, update the path variables at the top of +`fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh`, especially `BASE_DIR`, +`MZML_DIR`, `ASSAY_LABEL_FILE`, `TOOLS_DIR`, `SIF`, and `FALLBACK_DB`. + +Run: + +```bash +bash fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh +``` + +Expected FragPipe-stage outputs: + +```text +fragpipe_dmel_tmt/work/results/ +fragpipe_dmel_tmt/logs/fragpipe_tmt_run.log +fragpipe_dmel_tmt/work/protein_abundance_tmt_matrix.tsv +TMT_all_from_psm_pdlike_ms3fix/ +``` + +## 3. Export PD-like per-sample TMT files + +The final step of `run_fragpipe_dmel_tmt.sh` calls: + +```text +fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py +``` + +This script converts FragPipe outputs into per-sample tables that mimic the +published `TMT_all`/Proteome Discoverer layout. It reads each plex's +`psm.tsv` and `protein.tsv`, applies PD-like PSM filters, aggregates reporter +ion intensities to the protein level, and writes one text file per biological +sample plus one pool file per plex. + +Default PSM filters: + +- `Qvalue <= 0.01` +- `Probability >= 0.90` +- `Purity >= 0.50` when a `Purity` column is present + +The resulting directory in this repository is: + +```text +TMT_all_from_psm_pdlike_ms3fix/ +``` + +It contains 18 biological sample files and 3 pool files: + +```text +Earth_F1_TMTa.txt Earth_M1_TMTa.txt +Earth_F2_TMTb.txt Earth_M2_TMTb.txt +Earth_F3_TMTc.txt Earth_M3_TMTc.txt +SF1g_F1_TMTa.txt SF1g_M1_TMTa.txt +SF1g_F2_TMTb.txt SF1g_M2_TMTb.txt +SF1g_F3_TMTc.txt SF1g_M3_TMTc.txt +SFug_F1_TMTa.txt SFug_M1_TMTa.txt +SFug_F2_TMTb.txt SFug_M2_TMTb.txt +SFug_F3_TMTc.txt SFug_M3_TMTc.txt +pool_TMTa.txt pool_TMTb.txt pool_TMTc.txt +``` + +Each sample table includes protein accession, description, coverage, peptide +counts, PSM counts, unique peptide counts, reporter abundance, and reporter +abundance count. + +## 4. Build the expression matrix + +The downstream R workflow is: + +```text +GEN_PROTEOMICS_SCRIPT_ms3fix.r +``` + +This script reads the assay metadata and all files in +`TMT_all_from_psm_pdlike_ms3fix/`, then builds a protein x sample matrix using +these processing rules: + +1. Remove pool files from the analysis matrix. +2. Keep proteins with at least 2 unique peptides in each source table. +3. Keep finite, positive abundance values. +4. Collapse duplicate protein/sample/run rows using the median abundance. +5. Keep proteins observed in all three TMT runs. +6. Apply within-run median scaling by sample. +7. Keep only complete-case proteins across the 18 biological samples. +8. Transform abundance values with `log2(value + 1)`. + +The resulting matrix has 1,668 proteins and 18 biological samples. + +Outputs: + +```text +RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix.csv +RESULTS_OSD514_ms3fix/tables/sample_metadata_ms3fix.csv +TMT_expression_matrix_ms3fix.csv +sample_metadata_ms3fix.csv +``` + +The repository-level copies are convenience copies of the same processed matrix +and metadata. + +## 5. PCA and batch-corrected matrix + +The R script generates PCA plots from the raw log2 matrix and a batch-corrected +matrix. Batch correction uses: + +```r +limma::removeBatchEffect( + expr_limma, + batch = meta_limma$tmt_run, + design = model.matrix(~ condition + sex, data = meta_limma) +) +``` + +Outputs: + +```text +RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_raw.png +RESULTS_OSD514_ms3fix/figs/PCA_TMT_condition_batch_ms3fix_batch_corrected.png +RESULTS_OSD514_ms3fix/tables/TMT_expression_matrix_ms3fix_batch_corrected.csv +TMT_expression_matrix_ms3fix_batch_corrected.csv +``` + +The batch-corrected matrix is used for visualization/export. Differential +expression is modeled with limma design matrices that include batch terms rather +than using the batch-corrected matrix directly. + +## 6. limma differential expression + +The R script tests three condition-level contrasts: + +- `SF1g_vs_Earth` +- `SFug_vs_Earth` +- `SF1g_vs_SFug` + +It runs three model specifications: + +```text +condition_only ~0 + condition +condition_batch ~0 + condition + tmt_run +condition_batch_sex ~0 + condition + tmt_run + sex +``` + +For each model and contrast, the script writes: + +- the limma design matrix +- the model metadata +- the full limma result table from `topTable` +- significant proteins +- a volcano plot +- a per-model significant-count summary + +Model-specific outputs are stored under: + +```text +RESULTS_OSD514_ms3fix/tables/model_outputs/ +RESULTS_OSD514_ms3fix/figs/model_outputs/ +``` + +Model-output significance uses: + +```text +adj.P.Val < 0.05 and abs(logFC) >= 0.5 +``` + +The primary model for top-level results is: + +```text +condition_batch_sex +``` + +Primary-model tables are copied to: + +```text +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_results.csv +RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_results.csv +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_results.csv +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_Earth_significant.csv +RESULTS_OSD514_ms3fix/tables/Limma_SFug_vs_Earth_significant.csv +RESULTS_OSD514_ms3fix/tables/Limma_SF1g_vs_SFug_significant.csv +``` + +The top-level primary-model significant files use a stricter fold-change cutoff: + +```text +adj.P.Val < 0.05 and abs(logFC) >= 1 +``` + +## 7. Sex-stratified limma models + +The R script also runs sex-stratified contrasts with a group model: + +```text +~0 + group + tmt_run +``` + +Contrasts: + +- `SFug_females_vs_Earth_females` +- `SFug_males_vs_Earth_males` +- `SF1g_females_vs_Earth_females` +- `SF1g_males_vs_Earth_males` + +Outputs: + +```text +RESULTS_OSD514_ms3fix/tables/model_outputs/sex_stratified_condition_batch/ +RESULTS_OSD514_ms3fix/figs/model_outputs/sex_stratified_condition_batch/ +RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_summary.csv +RESULTS_OSD514_ms3fix/tables/sex_stratified_significant_counts_direction_summary.csv +``` + +The sex-stratified output includes both FDR-only significant tables and +FDR-plus-fold-change significant tables. + +## 8. Heatmap + +The heatmap uses the top 50 proteins from the primary `SF1g_vs_Earth` limma +results, ordered by adjusted p-value. Values are row-scaled z-scores from the +raw log2 expression matrix, with columns ordered by condition, sex, and TMT run. + +Output: + +```text +RESULTS_OSD514_ms3fix/figs/Heatmap_Top50_ms3fix.png +``` + +## 9. GSEA and FlyEnrichr enrichment + +The R script runs GO enrichment analyses for: + +- `SF1g_vs_Earth` +- `SFug_vs_Earth` +- `SF1g_vs_SFug` + +Ranked gene lists are built from limma results as: + +```text +sign(logFC) * -log10(P.Value) +``` + +The script then: + +1. maps protein IDs through `org.Dm.eg.db` using `UNIPROT` +2. builds GO Biological Process gene sets +3. runs `fgseaMultilevel` +4. saves fgsea result tables and plots +5. selects significant proteins using `adj.P.Val < 0.05` and `abs(logFC) >= 1` +6. maps UniProt IDs to fly gene symbols +7. submits those gene lists to FlyEnrichr GO libraries +8. writes FlyEnrichr tables and biological-process network plots + +Outputs: + +```text +RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_Earth.csv +RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SFug_vs_Earth.csv +RESULTS_OSD514_ms3fix/GSEA/tables/fgsea_SF1g_vs_SFug.csv +RESULTS_OSD514_ms3fix/GSEA/tables/*GO*.csv +RESULTS_OSD514_ms3fix/GSEA/figs/fgsea_*.png +RESULTS_OSD514_ms3fix/GSEA/figs/enrichment_*.png +RESULTS_OSD514_ms3fix/GSEA/figs/network_*.png +``` + +FlyEnrichr requires network access when rerunning the enrichment step. + +## Reproducing `RESULTS_OSD514_ms3fix` + +After the FragPipe stage has produced `TMT_all_from_psm_pdlike_ms3fix/`, run: + +```bash +Rscript GEN_PROTEOMICS_SCRIPT_ms3fix.r +``` + +Before rerunning on a new machine, update the `BASE_DIR` value near the top of +`GEN_PROTEOMICS_SCRIPT_ms3fix.r`. The current script also installs missing CRAN +and Bioconductor packages automatically. + +The script writes: + +```text +RESULTS_OSD514_ms3fix/tables/ +RESULTS_OSD514_ms3fix/figs/ +RESULTS_OSD514_ms3fix/GSEA/ +``` + +## Notes on retained output files + +Some files in `RESULTS_OSD514_ms3fix/tables/` have `_ms3fix` in the filename +and some do not. The current main R script writes the expression-matrix files +with `_ms3fix` names, while the primary limma result files are written without +the suffix and are copied from the `condition_batch_sex` model output. The +`_ms3fix`-suffixed limma tables are retained analysis artifacts from the same +MS3-fixed workflow. + +## Key scripts + +- `fragpipe_dmel_tmt/run_fragpipe_dmel_tmt.sh`: end-to-end FragPipe TMT runner. +- `fragpipe_dmel_tmt/build_tmt_annotation.py`: creates per-plex TMT reporter + annotation files from the assay metadata. +- `fragpipe_dmel_tmt/export_tmt_all_like_from_psm.py`: exports FragPipe PSM + reporter intensities into PD-like per-sample protein abundance tables. +- `fragpipe_dmel_tmt/extract_tmt_protein_matrix.py`: extracts a sample matrix + from FragPipe TMT protein report output. +- `GEN_PROTEOMICS_SCRIPT_ms3fix.r`: builds the final expression matrix, runs + limma models, generates plots, and runs GO enrichment.